From 27c2cb7956fd94d80ffe7daa2f956e18dcd04b0d Mon Sep 17 00:00:00 2001 From: szymonj98 Date: Wed, 27 Apr 2022 19:42:20 +0200 Subject: [PATCH] prepare --- Dockerfile | 12 - Jenkinsfile | 41 - Jenkinsfile2 | 21 - biblioteki_dl.py | 121 - data.txt | 23 - dataset_download.sh | 6 - dataset_stats.sh | 1 - kagle.py | 79 - steam-200k.csv | 200000 ----------------------------------------- 9 files changed, 200304 deletions(-) delete mode 100644 Dockerfile delete mode 100644 Jenkinsfile delete mode 100644 Jenkinsfile2 delete mode 100644 biblioteki_dl.py delete mode 100644 data.txt delete mode 100644 dataset_download.sh delete mode 100644 dataset_stats.sh delete mode 100644 kagle.py delete mode 100644 steam-200k.csv diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 7f87558..0000000 --- a/Dockerfile +++ /dev/null @@ -1,12 +0,0 @@ -FROM ubuntu:latest -WORKDIR /ium -RUN apt update && apt install -y python3-pip -RUN apt install unzip -RUN pip3 install kaggle -RUN mkdir /.kaggle && chmod o+w /.kaggle -RUN pip3 install pandas -RUN pip3 install numpy -RUN pip3 install sklearn -RUN pip3 install tensorflow -COPY ./steam-200k.csv ./ -COPY ./biblioteki_dl.py ./ \ No newline at end of file diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index 00b2560..0000000 --- a/Jenkinsfile +++ /dev/null @@ -1,41 +0,0 @@ -pipeline { - parameters { - string( - defaultValue: 'szymonjadczak', - description: 'Kaggle username', - name: 'KAGGLE_USERNAME', - trim: false - ) - password( - defaultValue: '', - description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials', - name: 'KAGGLE_KEY' - ) - string( - defaultValue: '', - description: 'Value for head command', - name: 'CUTOFF' - ) - } - environment { - KAGGLE_USERNAME="$params.KAGGLE_USERNAME" - KAGGLE_KEY="$params.KAGGLE_KEY" - CUTOFF="$params.CUTOFF" - } - agent { - dockerfile { - additionalBuildArgs "-t ium" - } - } - stages { - stage('Stage 1') { - steps { - echo 'Hello world!!!' - checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s444386/ium_444386']]]) - sh "chmod u+x ./dataset_download.sh" - sh "KAGGLE_USERNAME=${KAGGLE_USERNAME} KAGGLE_KEY=${KAGGLE_KEY} CUTOFF=${CUTOFF} ./dataset_download.sh" - archiveArtifacts 'data.csv' - } - } - } -} diff --git a/Jenkinsfile2 b/Jenkinsfile2 deleted file mode 100644 index cdf29f7..0000000 --- a/Jenkinsfile2 +++ /dev/null @@ -1,21 +0,0 @@ -pipeline{ - agent { - docker { image 'ium' } - } - parameters { - buildSelector( - defaultSelector: lastSuccessful(), - description: 'Which build to use for copying artifacts', - name: 'BUILD_SELECTOR') - } - stages{ - stage('copy artefacts') { - steps { - copyArtifacts filter: 'data.csv', fingerprintArtifacts: true, projectName: 's444386-create-dataset', selector: lastSuccessful() - sh 'chmod u+x ./kagle.py' - sh 'python3 kagle.py' - } - } - } - -} diff --git a/biblioteki_dl.py b/biblioteki_dl.py deleted file mode 100644 index 6411384..0000000 --- a/biblioteki_dl.py +++ /dev/null @@ -1,121 +0,0 @@ -import tensorflow as tf -import os -import pandas as pd -import numpy as np -import csv -from sklearn.model_selection import train_test_split - -os.system("kaggle datasets download -d tamber/steam-video-games") -os.system("unzip -o steam-video-games.zip") - -steam=pd.read_csv('steam-200k.csv',usecols=[0,1,2,3],names=['userId','game','behavior','hoursPlayed']) -steam.isnull().values.any() -steam['userId'] = steam.userId.astype(str) -purchaseCount = steam[steam["behavior"] != "play"]["game"].value_counts() -playCount = steam[steam["behavior"] != "purchase"]["game"].value_counts() - -playerPurchaseCount = steam[steam["behavior"] != "play"]["userId"].value_counts() -playerPlayCount = steam[steam["behavior"] != "purchase"]["userId"].value_counts() - -steam = steam[steam['behavior'] != 'purchase'] -steam = steam.groupby("game").filter(lambda x: len(x)>10) -size=int(len(steam)/10) - -meanGame = steam[steam["behavior"] != "purchase"].groupby("game").mean() -meanGame = meanGame.to_dict() -meanGame = meanGame['hoursPlayed'] - -purchaseCount = purchaseCount.to_dict() -playCount = playCount.to_dict() -playerPurchaseCount = playerPurchaseCount.to_dict() -playerPlayCount = playerPlayCount.to_dict() - -steam['meanTime'] = 0; -steam['purchaseCount'] = 0; -steam['playCount'] = 0; -steam['playerPurchaseCount'] =0; -steam['playerPlayCount'] =0; -steam['playPercent'] =0; - -for i in steam.index: - steam.at[i,'meanTime'] = meanGame[steam.at[i,'game']] - steam.at[i,'purchaseCount'] = purchaseCount[steam.at[i,'game']] - steam.at[i,'playCount'] = playCount[steam.at[i,'game']] - steam.at[i,'playerPurchaseCount'] = playerPurchaseCount[steam.at[i,'userId']] - steam.at[i,'playerPlayCount'] = playerPlayCount[steam.at[i,'userId']] - steam.at[i,'playPercent'] = playerPlayCount[steam.at[i,'userId']]/playerPurchaseCount[steam.at[i,'userId']] - - -steam_train, steam_test = train_test_split(steam, test_size=size, random_state=1, stratify=steam["game"]) -steam_train, steam_dev = train_test_split(steam_train, test_size=size, random_state=1, stratify=steam_train["game"]) - -print(steam) - -games = {} -for i in steam['game']: - games[i] = 0 - -j=0 -for key,game in games.items(): - games[key]=j - j=j+1 - -for i in steam['game']: - i = games[i] - -invGames = {v: k for k, v in games.items()} - -x_train = steam_train[['hoursPlayed','purchaseCount','playCount','playerPlayCount','playerPurchaseCount']] -y_train = steam_train['game'] - -x_test = steam_test[['hoursPlayed','purchaseCount','playCount','playerPlayCount','playerPurchaseCount']] -y_test = steam_test['game'] - -x_train = np.array(x_train) -y_train = np.array(y_train) -x_test = np.array(x_test) -y_test = np.array(y_test) - -for i,j in enumerate(y_train): - y_train[i] = games[j] - -for i,j in enumerate(y_test): - y_test[i] = games[j] - - - -model = tf.keras.models.Sequential([ - tf.keras.layers.Flatten(input_shape=(5,1)), - tf.keras.layers.Dense(256, activation='relu'), - tf.keras.layers.Dropout(0.01), - tf.keras.layers.Dense(1000, activation='softmax') -]) - - - -model.compile(optimizer='adam', - loss='sparse_categorical_crossentropy', - metrics=['accuracy']) - -y_train = np.array(y_train).astype(np.float32) -y_test = np.array(y_test).astype(np.float32) - - - -model.fit(x_train, y_train, epochs=100) -model.evaluate(x_test, y_test) -prediction = model.predict(x_test) -classes_x=np.argmax(prediction,axis=1) - -rows = [] - -for j,i in enumerate(classes_x): - row = [invGames[i],invGames[y_test[j]]] - rows.append(row) -with open('results.csv','w',encoding='UTF-8',newline='') as f: - writer = csv.writer(f) - writer.writerow(["predicted", "expected"]) - for row in rows: - writer.writerow(row) - - diff --git a/data.txt b/data.txt deleted file mode 100644 index 1fb47c1..0000000 --- a/data.txt +++ /dev/null @@ -1,23 +0,0 @@ -151603712,"The Elder Scrolls V Skyrim",purchase,1.0,0 -151603712,"The Elder Scrolls V Skyrim",play,273.0,0 -151603712,"Fallout 4",purchase,1.0,0 -151603712,"Fallout 4",play,87.0,0 -151603712,"Spore",purchase,1.0,0 -151603712,"Spore",play,14.9,0 -151603712,"Fallout New Vegas",purchase,1.0,0 -151603712,"Fallout New Vegas",play,12.1,0 -151603712,"Left 4 Dead 2",purchase,1.0,0 -151603712,"Left 4 Dead 2",play,8.9,0 -151603712,"HuniePop",purchase,1.0,0 -151603712,"HuniePop",play,8.5,0 -151603712,"Path of Exile",purchase,1.0,0 -151603712,"Path of Exile",play,8.1,0 -151603712,"Poly Bridge",purchase,1.0,0 -151603712,"Poly Bridge",play,7.5,0 -151603712,"Left 4 Dead",purchase,1.0,0 -151603712,"Left 4 Dead",play,3.3,0 -151603712,"Team Fortress 2",purchase,1.0,0 -151603712,"Team Fortress 2",play,2.8,0 -151603712,"Tomb Raider",purchase,1.0,0 -151603712,"Tomb Raider",play,2.5,0 -151603712,"The Banner Saga",purchase,1.0,0 diff --git a/dataset_download.sh b/dataset_download.sh deleted file mode 100644 index 385f131..0000000 --- a/dataset_download.sh +++ /dev/null @@ -1,6 +0,0 @@ - -kaggle datasets download -d tamber/steam-video-games -unzip -o steam-video-games.zip -> data.csv -head -n $CUTOFF steam-200k.csv >> data.csv - diff --git a/dataset_stats.sh b/dataset_stats.sh deleted file mode 100644 index 9a1bbf3..0000000 --- a/dataset_stats.sh +++ /dev/null @@ -1 +0,0 @@ -wc -l data.csv >> number_of_lines.txt \ No newline at end of file diff --git a/kagle.py b/kagle.py deleted file mode 100644 index 3041ebd..0000000 --- a/kagle.py +++ /dev/null @@ -1,79 +0,0 @@ -import os -import pandas as pd -from sklearn.model_selection import train_test_split - -#os.system("kaggle datasets download -d tamber/steam-video-games") -#os.system("unzip -o steam-video-games.zip") - -steam=pd.read_csv('data.csv',usecols=[0,1,2,3],names=['userId','game','behavior','hoursPlayed']) -steam.isnull().values.any() -steam['userId'] = steam.userId.astype(str) - -print("Zbior danych:") -print(steam) - -print("Describe:") -print(steam.describe(include='all'),"\n\n") - -print("Gracze z najwieksza aktywnoscia:") -print(steam["userId"].value_counts(),"\n\n") - -print("Gracze z najwieksza liczba kupionych gier:") -print(steam[steam["behavior"] != "play"]["userId"].value_counts()) -print("Mediana:") -print(steam[steam["behavior"] != "play"]["userId"].value_counts().median(),"\n\n") - -print("Gracze ktorzy zagrali w najwieksza liczbe gier:") -print(steam[steam["behavior"] != "purchase"]["userId"].value_counts()) -print("Mediana:") -print(steam[steam["behavior"] != "purchase"]["userId"].value_counts().median(),"\n\n") - - -print("Gry:") -print(steam["game"].value_counts(),"\n\n") - -print("Sredni czas grania w grania w dana gre") -print(steam[steam["behavior"] != "purchase"].groupby("game").mean().sort_values(by="hoursPlayed",ascending=False)) -print("Mediana:") -print(steam[steam["behavior"] != "purchase"].groupby("game").mean().sort_values(by="hoursPlayed",ascending=False).median(),"\n\n") - -print("Najczesciej kupowana gra") -print(steam[steam["behavior"] != "play"]["game"].value_counts()) -print("Mediana:") -print(steam[steam["behavior"] != "play"]["game"].value_counts().median(),"\n\n") - -print("Gra w ktora zagralo najwiecej graczy") -print(steam[steam["behavior"] != "purchase"]["game"].value_counts()) -print("Mediana:") -print(steam[steam["behavior"] != "purchase"]["game"].value_counts().median(),"\n\n") - -print("Liczba kupionych gier i liczba gier w ktore gracze zagrali") -print(steam["behavior"].value_counts(),"\n\n") - - -print("Gra z najwieksza liczba godzin dla jednego gracza") -print(steam[steam["behavior"] != "purchase"][["userId","hoursPlayed","game"]].sort_values(by="hoursPlayed",ascending=False)) -print("Mediana:") -print(steam[steam["behavior"] != "purchase"]["hoursPlayed"].sort_values(ascending=False).median(),"\n\n") - -print("Suma rozegranych godzin dla danej gry") -print(steam[steam["behavior"] != "purchase"].groupby("game").sum().sort_values(by="hoursPlayed",ascending=False)) -print("Mediana:") -print(steam[steam["behavior"] != "purchase"].groupby("game").sum().sort_values(by="hoursPlayed",ascending=False).median(),"\n\n") - -#odrzucenie gier dla których jest mniej niż 10 wierszy -steam = steam.groupby("game").filter(lambda x: len(x)>10) -#rozmiar zbioru testowego i dev proporcje 8:1:1 -size=int(len(steam)/10) - -steam_train, steam_test = train_test_split(steam, test_size=size, random_state=1, stratify=steam["game"]) -steam_train, steam_dev = train_test_split(steam_train, test_size=size, random_state=1, stratify=steam_train["game"]) - -print("Zbior trenujacy") -print(steam_train["game"].value_counts(),"\n") - -print("Zbior testujacy") -print(steam_test["game"].value_counts(),"\n") - -print("Zbior dev") -print(steam_dev["game"].value_counts(),"\n") \ No newline at end of file diff --git a/steam-200k.csv b/steam-200k.csv deleted file mode 100644 index e14d067..0000000 --- a/steam-200k.csv +++ /dev/null @@ -1,200000 +0,0 @@ -151603712,"The Elder Scrolls V Skyrim",purchase,1.0,0 -151603712,"The Elder Scrolls V Skyrim",play,273.0,0 -151603712,"Fallout 4",purchase,1.0,0 -151603712,"Fallout 4",play,87.0,0 -151603712,"Spore",purchase,1.0,0 -151603712,"Spore",play,14.9,0 -151603712,"Fallout New Vegas",purchase,1.0,0 -151603712,"Fallout New Vegas",play,12.1,0 -151603712,"Left 4 Dead 2",purchase,1.0,0 -151603712,"Left 4 Dead 2",play,8.9,0 -151603712,"HuniePop",purchase,1.0,0 -151603712,"HuniePop",play,8.5,0 -151603712,"Path of Exile",purchase,1.0,0 -151603712,"Path of Exile",play,8.1,0 -151603712,"Poly Bridge",purchase,1.0,0 -151603712,"Poly Bridge",play,7.5,0 -151603712,"Left 4 Dead",purchase,1.0,0 -151603712,"Left 4 Dead",play,3.3,0 -151603712,"Team Fortress 2",purchase,1.0,0 -151603712,"Team Fortress 2",play,2.8,0 -151603712,"Tomb Raider",purchase,1.0,0 -151603712,"Tomb Raider",play,2.5,0 -151603712,"The Banner Saga",purchase,1.0,0 -151603712,"The Banner Saga",play,2.0,0 -151603712,"Dead Island Epidemic",purchase,1.0,0 -151603712,"Dead Island Epidemic",play,1.4,0 -151603712,"BioShock Infinite",purchase,1.0,0 -151603712,"BioShock Infinite",play,1.3,0 -151603712,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -151603712,"Dragon Age Origins - Ultimate Edition",play,1.3,0 -151603712,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -151603712,"Fallout 3 - Game of the Year Edition",play,0.8,0 -151603712,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -151603712,"SEGA Genesis & Mega Drive Classics",play,0.8,0 -151603712,"Grand Theft Auto IV",purchase,1.0,0 -151603712,"Grand Theft Auto IV",play,0.6,0 -151603712,"Realm of the Mad God",purchase,1.0,0 -151603712,"Realm of the Mad God",play,0.5,0 -151603712,"Marvel Heroes 2015",purchase,1.0,0 -151603712,"Marvel Heroes 2015",play,0.5,0 -151603712,"Eldevin",purchase,1.0,0 -151603712,"Eldevin",play,0.5,0 -151603712,"Dota 2",purchase,1.0,0 -151603712,"Dota 2",play,0.5,0 -151603712,"BioShock",purchase,1.0,0 -151603712,"BioShock",play,0.5,0 -151603712,"Robocraft",purchase,1.0,0 -151603712,"Robocraft",play,0.4,0 -151603712,"Garry's Mod",purchase,1.0,0 -151603712,"Garry's Mod",play,0.1,0 -151603712,"Jazzpunk",purchase,1.0,0 -151603712,"Jazzpunk",play,0.1,0 -151603712,"Alan Wake",purchase,1.0,0 -151603712,"BioShock 2",purchase,1.0,0 -151603712,"Fallen Earth",purchase,1.0,0 -151603712,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -151603712,"Fallout New Vegas Dead Money",purchase,1.0,0 -151603712,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -151603712,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -151603712,"Hitman Absolution",purchase,1.0,0 -151603712,"HuniePop Official Digital Art Collection",purchase,1.0,0 -151603712,"HuniePop Original Soundtrack",purchase,1.0,0 -151603712,"The Banner Saga - Mod Content",purchase,1.0,0 -151603712,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -151603712,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -151603712,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -187131847,"Dota 2",purchase,1.0,0 -187131847,"Dota 2",play,2.3,0 -59945701,"Ultra Street Fighter IV",purchase,1.0,0 -59945701,"Ultra Street Fighter IV",play,238.0,0 -59945701,"FINAL FANTASY XIII",purchase,1.0,0 -59945701,"FINAL FANTASY XIII",play,84.0,0 -59945701,"The Elder Scrolls V Skyrim",purchase,1.0,0 -59945701,"The Elder Scrolls V Skyrim",play,58.0,0 -59945701,"Sid Meier's Civilization V",purchase,1.0,0 -59945701,"Sid Meier's Civilization V",play,22.0,0 -59945701,"L.A. Noire",purchase,1.0,0 -59945701,"L.A. Noire",play,13.8,0 -59945701,"Company of Heroes Tales of Valor",purchase,1.0,0 -59945701,"Company of Heroes Tales of Valor",play,10.2,0 -59945701,"7 Days to Die",purchase,1.0,0 -59945701,"7 Days to Die",play,7.8,0 -59945701,"Divekick",purchase,1.0,0 -59945701,"Divekick",play,7.0,0 -59945701,"FINAL FANTASY VII",purchase,1.0,0 -59945701,"FINAL FANTASY VII",play,5.2,0 -59945701,"Orcs Must Die! 2",purchase,1.0,0 -59945701,"Orcs Must Die! 2",play,4.8,0 -59945701,"Killing Floor",purchase,1.0,0 -59945701,"Killing Floor",play,3.4,0 -59945701,"Company of Heroes",purchase,1.0,0 -59945701,"Company of Heroes",play,3.2,0 -59945701,"Bastion",purchase,1.0,0 -59945701,"Bastion",play,2.8,0 -59945701,"Undertale",purchase,1.0,0 -59945701,"Undertale",play,2.6,0 -59945701,"Counter-Strike Global Offensive",purchase,1.0,0 -59945701,"Counter-Strike Global Offensive",play,2.3,0 -59945701,"Orcs Must Die!",purchase,1.0,0 -59945701,"Orcs Must Die!",play,0.7,0 -59945701,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -59945701,"THE KING OF FIGHTERS XIII STEAM EDITION",play,0.6,0 -59945701,"GUILTY GEAR XX ACCENT CORE PLUS R",purchase,1.0,0 -59945701,"GUILTY GEAR XX ACCENT CORE PLUS R",play,0.5,0 -59945701,"Skullgirls",purchase,1.0,0 -59945701,"Skullgirls",play,0.4,0 -59945701,"Assassin's Creed II",purchase,1.0,0 -59945701,"Assassin's Creed II",play,0.3,0 -59945701,"Company of Heroes Opposing Fronts",purchase,1.0,0 -59945701,"Company of Heroes Opposing Fronts",play,0.1,0 -59945701,"Team Fortress 2",purchase,1.0,0 -59945701,"Team Fortress 2",play,0.1,0 -59945701,"Guilty Gear X2 #Reload",purchase,1.0,0 -59945701,"Left 4 Dead 2",purchase,1.0,0 -59945701,"Psychonauts",purchase,1.0,0 -59945701,"Cities in Motion 2",purchase,1.0,0 -59945701,"Company of Heroes (New Steam Version)",purchase,1.0,0 -59945701,"Company of Heroes 2",purchase,1.0,0 -59945701,"Fallout New Vegas",purchase,1.0,0 -59945701,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -59945701,"Fallout New Vegas Dead Money",purchase,1.0,0 -59945701,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -59945701,"Garry's Mod",purchase,1.0,0 -59945701,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -59945701,"Magicka",purchase,1.0,0 -59945701,"Magicka Vietnam",purchase,1.0,0 -59945701,"Natural Selection 2",purchase,1.0,0 -59945701,"Psychonauts Demo",purchase,1.0,0 -59945701,"Sanctum",purchase,1.0,0 -59945701,"Sanctum 2",purchase,1.0,0 -59945701,"Serious Sam 3 BFE",purchase,1.0,0 -59945701,"Skullgirls Endless Beta",purchase,1.0,0 -59945701,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -53875128,"Grand Theft Auto V",purchase,1.0,0 -53875128,"Grand Theft Auto V",play,86.0,0 -53875128,"Insurgency",purchase,1.0,0 -53875128,"Insurgency",play,72.0,0 -53875128,"Left 4 Dead 2",purchase,1.0,0 -53875128,"Left 4 Dead 2",play,71.0,0 -53875128,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -53875128,"METAL GEAR SOLID V THE PHANTOM PAIN",play,59.0,0 -53875128,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -53875128,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,54.0,0 -53875128,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -53875128,"S.T.A.L.K.E.R. Call of Pripyat",play,50.0,0 -53875128,"Saints Row The Third",purchase,1.0,0 -53875128,"Saints Row The Third",play,35.0,0 -53875128,"Far Cry 3",purchase,1.0,0 -53875128,"Far Cry 3",play,35.0,0 -53875128,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -53875128,"S.T.A.L.K.E.R. Clear Sky",play,35.0,0 -53875128,"Rocket League",purchase,1.0,0 -53875128,"Rocket League",play,34.0,0 -53875128,"Assassin's Creed II",purchase,1.0,0 -53875128,"Assassin's Creed II",play,33.0,0 -53875128,"Far Cry 4",purchase,1.0,0 -53875128,"Far Cry 4",play,32.0,0 -53875128,"Prototype",purchase,1.0,0 -53875128,"Prototype",play,25.0,0 -53875128,"Space Pirates and Zombies",purchase,1.0,0 -53875128,"Space Pirates and Zombies",play,24.0,0 -53875128,"Dying Light",purchase,1.0,0 -53875128,"Dying Light",play,23.0,0 -53875128,"Just Cause 2",purchase,1.0,0 -53875128,"Just Cause 2",play,23.0,0 -53875128,"Mirror's Edge",purchase,1.0,0 -53875128,"Mirror's Edge",play,23.0,0 -53875128,"Mad Max",purchase,1.0,0 -53875128,"Mad Max",play,22.0,0 -53875128,"Portal 2",purchase,1.0,0 -53875128,"Portal 2",play,21.0,0 -53875128,"Deus Ex Human Revolution",purchase,1.0,0 -53875128,"Deus Ex Human Revolution",play,21.0,0 -53875128,"Middle-earth Shadow of Mordor",purchase,1.0,0 -53875128,"Middle-earth Shadow of Mordor",play,19.6,0 -53875128,"RUNNING WITH RIFLES",purchase,1.0,0 -53875128,"RUNNING WITH RIFLES",play,18.5,0 -53875128,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -53875128,"Deus Ex Human Revolution - Director's Cut",play,18.3,0 -53875128,"Batman Arkham City GOTY",purchase,1.0,0 -53875128,"Batman Arkham City GOTY",play,16.9,0 -53875128,"Tropico 4",purchase,1.0,0 -53875128,"Tropico 4",play,14.3,0 -53875128,"Cave Story+",purchase,1.0,0 -53875128,"Cave Story+",play,13.7,0 -53875128,"Dust An Elysian Tail",purchase,1.0,0 -53875128,"Dust An Elysian Tail",play,13.4,0 -53875128,"F.E.A.R.",purchase,1.0,0 -53875128,"F.E.A.R.",play,12.5,0 -53875128,"South Park The Stick of Truth",purchase,1.0,0 -53875128,"South Park The Stick of Truth",play,12.2,0 -53875128,"Sleeping Dogs",purchase,1.0,0 -53875128,"Sleeping Dogs",play,11.5,0 -53875128,"Watch_Dogs",purchase,1.0,0 -53875128,"Watch_Dogs",play,11.2,0 -53875128,"Saints Row IV",purchase,1.0,0 -53875128,"Saints Row IV",play,11.1,0 -53875128,"DayZ",purchase,1.0,0 -53875128,"DayZ",play,11.0,0 -53875128,"Half-Life 2",purchase,1.0,0 -53875128,"Half-Life 2",play,10.2,0 -53875128,"Reassembly",purchase,1.0,0 -53875128,"Reassembly",play,10.1,0 -53875128,"Sid Meier's Civilization III Complete",purchase,1.0,0 -53875128,"Sid Meier's Civilization III Complete",play,9.8,0 -53875128,"The Talos Principle",purchase,1.0,0 -53875128,"The Talos Principle",play,9.8,0 -53875128,"DiRT 3",purchase,1.0,0 -53875128,"DiRT 3",play,9.7,0 -53875128,"FTL Faster Than Light",purchase,1.0,0 -53875128,"FTL Faster Than Light",play,9.7,0 -53875128,"Bastion",purchase,1.0,0 -53875128,"Bastion",play,9.6,0 -53875128,"Age of Empires II HD Edition",purchase,1.0,0 -53875128,"Age of Empires II HD Edition",play,9.0,0 -53875128,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -53875128,"Batman Arkham Asylum GOTY Edition",play,8.9,0 -53875128,"Gunpoint",purchase,1.0,0 -53875128,"Gunpoint",play,8.6,0 -53875128,"Rebuild 3 Gangs of Deadsville",purchase,1.0,0 -53875128,"Rebuild 3 Gangs of Deadsville",play,8.4,0 -53875128,"Recettear An Item Shop's Tale",purchase,1.0,0 -53875128,"Recettear An Item Shop's Tale",play,8.3,0 -53875128,"Metro 2033",purchase,1.0,0 -53875128,"Metro 2033",play,7.8,0 -53875128,"Monaco",purchase,1.0,0 -53875128,"Monaco",play,7.6,0 -53875128,"Fallout New Vegas",purchase,1.0,0 -53875128,"Fallout New Vegas",play,7.5,0 -53875128,"Overgrowth",purchase,1.0,0 -53875128,"Overgrowth",play,7.3,0 -53875128,"Assassin's Creed III",purchase,1.0,0 -53875128,"Assassin's Creed III",play,7.2,0 -53875128,"Ori and the Blind Forest",purchase,1.0,0 -53875128,"Ori and the Blind Forest",play,7.0,0 -53875128,"Far Cry 3 Blood Dragon",purchase,1.0,0 -53875128,"Far Cry 3 Blood Dragon",play,6.7,0 -53875128,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -53875128,"Burnout Paradise The Ultimate Box",play,6.6,0 -53875128,"PROTOTYPE 2",purchase,1.0,0 -53875128,"PROTOTYPE 2",play,6.4,0 -53875128,"Game Dev Tycoon",purchase,1.0,0 -53875128,"Game Dev Tycoon",play,6.4,0 -53875128,"Sniper Elite 3",purchase,1.0,0 -53875128,"Sniper Elite 3",play,6.2,0 -53875128,"Gratuitous Space Battles",purchase,1.0,0 -53875128,"Gratuitous Space Battles",play,6.0,0 -53875128,"Sid Meier's Civilization V",purchase,1.0,0 -53875128,"Sid Meier's Civilization V",play,5.9,0 -53875128,"Rogue Legacy",purchase,1.0,0 -53875128,"Rogue Legacy",play,5.7,0 -53875128,"Plague Inc Evolved",purchase,1.0,0 -53875128,"Plague Inc Evolved",play,5.6,0 -53875128,"From Dust",purchase,1.0,0 -53875128,"From Dust",play,5.6,0 -53875128,"Next Car Game Wreckfest",purchase,1.0,0 -53875128,"Next Car Game Wreckfest",play,5.5,0 -53875128,"Rivals of Aether",purchase,1.0,0 -53875128,"Rivals of Aether",play,5.5,0 -53875128,"Half-Life 2 Episode Two",purchase,1.0,0 -53875128,"Half-Life 2 Episode Two",play,5.5,0 -53875128,"Rise of Nations Extended Edition",purchase,1.0,0 -53875128,"Rise of Nations Extended Edition",play,5.2,0 -53875128,"Nidhogg",purchase,1.0,0 -53875128,"Nidhogg",play,4.9,0 -53875128,"Spec Ops The Line",purchase,1.0,0 -53875128,"Spec Ops The Line",play,4.4,0 -53875128,"Dishonored",purchase,1.0,0 -53875128,"Dishonored",play,4.3,0 -53875128,"Half-Life 2 Episode One",purchase,1.0,0 -53875128,"Half-Life 2 Episode One",play,4.2,0 -53875128,"Wolfenstein The New Order",purchase,1.0,0 -53875128,"Wolfenstein The New Order",play,4.0,0 -53875128,"Distance",purchase,1.0,0 -53875128,"Distance",play,4.0,0 -53875128,"Epic Battle Fantasy 4",purchase,1.0,0 -53875128,"Epic Battle Fantasy 4",play,4.0,0 -53875128,"Metro Last Light",purchase,1.0,0 -53875128,"Metro Last Light",play,3.7,0 -53875128,"Miasmata",purchase,1.0,0 -53875128,"Miasmata",play,3.4,0 -53875128,"Dead Space",purchase,1.0,0 -53875128,"Dead Space",play,3.3,0 -53875128,"Hotline Miami",purchase,1.0,0 -53875128,"Hotline Miami",play,3.2,0 -53875128,"NOT A HERO",purchase,1.0,0 -53875128,"NOT A HERO",play,3.0,0 -53875128,"Receiver",purchase,1.0,0 -53875128,"Receiver",play,2.9,0 -53875128,"Crypt of the NecroDancer",purchase,1.0,0 -53875128,"Crypt of the NecroDancer",play,2.8,0 -53875128,"Portal",purchase,1.0,0 -53875128,"Portal",play,2.8,0 -53875128,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -53875128,"F.E.A.R. 2 Project Origin",play,2.8,0 -53875128,"NaissanceE",purchase,1.0,0 -53875128,"NaissanceE",play,2.7,0 -53875128,"SteamWorld Dig",purchase,1.0,0 -53875128,"SteamWorld Dig",play,2.6,0 -53875128,"Kairo",purchase,1.0,0 -53875128,"Kairo",play,2.5,0 -53875128,"SNOW",purchase,1.0,0 -53875128,"SNOW",play,2.5,0 -53875128,"The Binding of Isaac",purchase,1.0,0 -53875128,"The Binding of Isaac",play,2.4,0 -53875128,"LEGO The Lord of the Rings",purchase,1.0,0 -53875128,"LEGO The Lord of the Rings",play,2.2,0 -53875128,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -53875128,"METAL GEAR RISING REVENGEANCE",play,2.2,0 -53875128,"Starpoint Gemini 2",purchase,1.0,0 -53875128,"Starpoint Gemini 2",play,2.0,0 -53875128,"The Vanishing of Ethan Carter",purchase,1.0,0 -53875128,"The Vanishing of Ethan Carter",play,1.9,0 -53875128,"Goat Simulator",purchase,1.0,0 -53875128,"Goat Simulator",play,1.9,0 -53875128,"Mass Effect",purchase,1.0,0 -53875128,"Mass Effect",play,1.9,0 -53875128,"Arma 2 Operation Arrowhead",purchase,1.0,0 -53875128,"Arma 2 Operation Arrowhead",play,1.8,0 -53875128,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -53875128,"METAL GEAR SOLID V GROUND ZEROES",play,1.8,0 -53875128,"Banished",purchase,1.0,0 -53875128,"Banished",play,1.8,0 -53875128,"DiRT Showdown",purchase,1.0,0 -53875128,"DiRT Showdown",play,1.7,0 -53875128,"Left 4 Dead",purchase,1.0,0 -53875128,"Left 4 Dead",play,1.7,0 -53875128,"Sonic Adventure 2 ",purchase,1.0,0 -53875128,"Sonic Adventure 2 ",play,1.6,0 -53875128,"Grand Theft Auto IV",purchase,1.0,0 -53875128,"Grand Theft Auto IV",play,1.5,0 -53875128,"Battlestations Midway",purchase,1.0,0 -53875128,"Battlestations Midway",play,1.4,0 -53875128,"HOARD",purchase,1.0,0 -53875128,"HOARD",play,1.4,0 -53875128,"Sunless Sea",purchase,1.0,0 -53875128,"Sunless Sea",play,1.3,0 -53875128,"Mark of the Ninja",purchase,1.0,0 -53875128,"Mark of the Ninja",play,1.3,0 -53875128,"L.A. Noire",purchase,1.0,0 -53875128,"L.A. Noire",play,1.3,0 -53875128,"Creeper World 3 Arc Eternal",purchase,1.0,0 -53875128,"Creeper World 3 Arc Eternal",play,1.1,0 -53875128,"Turbo Dismount",purchase,1.0,0 -53875128,"Turbo Dismount",play,1.1,0 -53875128,"Floating Point",purchase,1.0,0 -53875128,"Floating Point",play,1.1,0 -53875128,"Grow Home",purchase,1.0,0 -53875128,"Grow Home",play,1.1,0 -53875128,"LUFTRAUSERS",purchase,1.0,0 -53875128,"LUFTRAUSERS",play,1.0,0 -53875128,"Arma 2",purchase,1.0,0 -53875128,"Arma 2",play,1.0,0 -53875128,"No Time To Explain Remastered",purchase,1.0,0 -53875128,"No Time To Explain Remastered",play,0.9,0 -53875128,"FEZ",purchase,1.0,0 -53875128,"FEZ",play,0.9,0 -53875128,"Delver",purchase,1.0,0 -53875128,"Delver",play,0.9,0 -53875128,"The Legend of Heroes Trails in the Sky",purchase,1.0,0 -53875128,"The Legend of Heroes Trails in the Sky",play,0.9,0 -53875128,"Evoland",purchase,1.0,0 -53875128,"Evoland",play,0.9,0 -53875128,"Bleed",purchase,1.0,0 -53875128,"Bleed",play,0.8,0 -53875128,"Borderlands 2",purchase,1.0,0 -53875128,"Borderlands 2",play,0.8,0 -53875128,"Race The Sun",purchase,1.0,0 -53875128,"Race The Sun",play,0.8,0 -53875128,"Shadowgrounds",purchase,1.0,0 -53875128,"Shadowgrounds",play,0.8,0 -53875128,"They Bleed Pixels",purchase,1.0,0 -53875128,"They Bleed Pixels",play,0.8,0 -53875128,"BioShock",purchase,1.0,0 -53875128,"BioShock",play,0.8,0 -53875128,"Trine",purchase,1.0,0 -53875128,"Trine",play,0.8,0 -53875128,"Sir, You Are Being Hunted",purchase,1.0,0 -53875128,"Sir, You Are Being Hunted",play,0.8,0 -53875128,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -53875128,"Next Car Game Sneak Peek 2.0",play,0.7,0 -53875128,"Symphony",purchase,1.0,0 -53875128,"Symphony",play,0.7,0 -53875128,"DLC Quest",purchase,1.0,0 -53875128,"DLC Quest",play,0.7,0 -53875128,"Far Cry 2",purchase,1.0,0 -53875128,"Far Cry 2",play,0.7,0 -53875128,"The Stanley Parable",purchase,1.0,0 -53875128,"The Stanley Parable",play,0.6,0 -53875128,"Freedom Planet",purchase,1.0,0 -53875128,"Freedom Planet",play,0.6,0 -53875128,"KHOLAT",purchase,1.0,0 -53875128,"KHOLAT",play,0.6,0 -53875128,"Osmos",purchase,1.0,0 -53875128,"Osmos",play,0.6,0 -53875128,"Secrets of Rtikon",purchase,1.0,0 -53875128,"Secrets of Rtikon",play,0.6,0 -53875128,"Oil Rush",purchase,1.0,0 -53875128,"Oil Rush",play,0.6,0 -53875128,"Unepic",purchase,1.0,0 -53875128,"Unepic",play,0.6,0 -53875128,"FINAL FANTASY VII",purchase,1.0,0 -53875128,"FINAL FANTASY VII",play,0.6,0 -53875128,"The Legend of Korra",purchase,1.0,0 -53875128,"The Legend of Korra",play,0.5,0 -53875128,"404Sight",purchase,1.0,0 -53875128,"404Sight",play,0.5,0 -53875128,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -53875128,"Dark Souls Prepare to Die Edition",play,0.5,0 -53875128,"Gravity Ghost",purchase,1.0,0 -53875128,"Gravity Ghost",play,0.5,0 -53875128,"Psychonauts",purchase,1.0,0 -53875128,"Psychonauts",play,0.5,0 -53875128,"Rock of Ages",purchase,1.0,0 -53875128,"Rock of Ages",play,0.5,0 -53875128,"Spore",purchase,1.0,0 -53875128,"Spore",play,0.5,0 -53875128,"Half-Life 2 Lost Coast",purchase,1.0,0 -53875128,"Half-Life 2 Lost Coast",play,0.5,0 -53875128,"Galcon Legends",purchase,1.0,0 -53875128,"Galcon Legends",play,0.5,0 -53875128,"Air Brawl",purchase,1.0,0 -53875128,"Air Brawl",play,0.5,0 -53875128,"Cat Goes Fishing",purchase,1.0,0 -53875128,"Cat Goes Fishing",play,0.5,0 -53875128,"One Finger Death Punch",purchase,1.0,0 -53875128,"One Finger Death Punch",play,0.5,0 -53875128,"Mind Path to Thalamus Enhanced Edition",purchase,1.0,0 -53875128,"Mind Path to Thalamus Enhanced Edition",play,0.4,0 -53875128,"INK",purchase,1.0,0 -53875128,"INK",play,0.4,0 -53875128,"Intrusion 2",purchase,1.0,0 -53875128,"Intrusion 2",play,0.4,0 -53875128,"Amnesia The Dark Descent",purchase,1.0,0 -53875128,"Amnesia The Dark Descent",play,0.4,0 -53875128,"Fieldrunners",purchase,1.0,0 -53875128,"Fieldrunners",play,0.4,0 -53875128,"Out There Somewhere",purchase,1.0,0 -53875128,"Out There Somewhere",play,0.4,0 -53875128,"KAMI",purchase,1.0,0 -53875128,"KAMI",play,0.4,0 -53875128,"Lone Survivor The Director's Cut",purchase,1.0,0 -53875128,"Lone Survivor The Director's Cut",play,0.4,0 -53875128,"NightSky",purchase,1.0,0 -53875128,"NightSky",play,0.4,0 -53875128,"Frozen Synapse",purchase,1.0,0 -53875128,"Frozen Synapse",play,0.4,0 -53875128,"Hammerfight",purchase,1.0,0 -53875128,"Hammerfight",play,0.4,0 -53875128,"Spintires",purchase,1.0,0 -53875128,"Spintires",play,0.4,0 -53875128,"Ziggurat",purchase,1.0,0 -53875128,"Ziggurat",play,0.4,0 -53875128,"AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome",purchase,1.0,0 -53875128,"AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome",play,0.4,0 -53875128,"Dead Island",purchase,1.0,0 -53875128,"Dead Island",play,0.3,0 -53875128,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -53875128,"Superbrothers Sword & Sworcery EP",play,0.3,0 -53875128,"GRID 2",purchase,1.0,0 -53875128,"GRID 2",play,0.3,0 -53875128,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -53875128,"Sonic & All-Stars Racing Transformed",play,0.3,0 -53875128,"Call of Juarez Gunslinger",purchase,1.0,0 -53875128,"Call of Juarez Gunslinger",play,0.3,0 -53875128,"Crysis 2 Maximum Edition",purchase,1.0,0 -53875128,"Crysis 2 Maximum Edition",play,0.3,0 -53875128,"Strike Vector",purchase,1.0,0 -53875128,"Strike Vector",play,0.3,0 -53875128,"Prison Architect",purchase,1.0,0 -53875128,"Prison Architect",play,0.3,0 -53875128,"Lego Harry Potter",purchase,1.0,0 -53875128,"Lego Harry Potter",play,0.3,0 -53875128,"Outlast",purchase,1.0,0 -53875128,"Outlast",play,0.3,0 -53875128,"Super Hexagon",purchase,1.0,0 -53875128,"Super Hexagon",play,0.2,0 -53875128,"WRC 4 FIA WORLD RALLY CHAMPIONSHIP",purchase,1.0,0 -53875128,"WRC 4 FIA WORLD RALLY CHAMPIONSHIP",play,0.2,0 -53875128,"Valkyria Chronicles",purchase,1.0,0 -53875128,"Valkyria Chronicles",play,0.2,0 -53875128,"Shatter",purchase,1.0,0 -53875128,"Shatter",play,0.2,0 -53875128,"Proteus",purchase,1.0,0 -53875128,"Proteus",play,0.2,0 -53875128,"Jamestown",purchase,1.0,0 -53875128,"Jamestown",play,0.2,0 -53875128,"Spelunky",purchase,1.0,0 -53875128,"Spelunky",play,0.2,0 -53875128,"Astebreed",purchase,1.0,0 -53875128,"Astebreed",play,0.2,0 -53875128,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -53875128,"STAR WARS Knights of the Old Republic II The Sith Lords",play,0.2,0 -53875128,"Phantom Breaker Battle Grounds",purchase,1.0,0 -53875128,"Phantom Breaker Battle Grounds",play,0.2,0 -53875128,"Tom Clancy's Splinter Cell Chaos Theory",purchase,1.0,0 -53875128,"Tom Clancy's Splinter Cell Chaos Theory",play,0.2,0 -53875128,"The Witcher Enhanced Edition",purchase,1.0,0 -53875128,"The Witcher Enhanced Edition",play,0.2,0 -53875128,"Risk of Rain",purchase,1.0,0 -53875128,"Risk of Rain",play,0.2,0 -53875128,"Survarium",purchase,1.0,0 -53875128,"Survarium",play,0.2,0 -53875128,"Afterlife Empire",purchase,1.0,0 -53875128,"Afterlife Empire",play,0.2,0 -53875128,"BattleBlock Theater",purchase,1.0,0 -53875128,"BattleBlock Theater",play,0.2,0 -53875128,"Need for Speed Hot Pursuit",purchase,1.0,0 -53875128,"Need for Speed Hot Pursuit",play,0.2,0 -53875128,"BIT.TRIP RUNNER",purchase,1.0,0 -53875128,"BIT.TRIP RUNNER",play,0.1,0 -53875128,"Coin Crypt",purchase,1.0,0 -53875128,"Coin Crypt",play,0.1,0 -53875128,"Skullgirls",purchase,1.0,0 -53875128,"Skullgirls",play,0.1,0 -53875128,"The Crew",purchase,1.0,0 -53875128,"The Crew",play,0.1,0 -53875128,"Metro Last Light Redux",purchase,1.0,0 -53875128,"Metro Last Light Redux",play,0.1,0 -53875128,"Crimzon Clover WORLD IGNITION",purchase,1.0,0 -53875128,"Crimzon Clover WORLD IGNITION",play,0.1,0 -53875128,"Sonic Generations",purchase,1.0,0 -53875128,"Sonic Generations",play,0.1,0 -53875128,"Ethan Meteor Hunter",purchase,1.0,0 -53875128,"Ethan Meteor Hunter",play,0.1,0 -53875128,"Reus",purchase,1.0,0 -53875128,"Reus",play,0.1,0 -53875128,"Kill The Bad Guy",purchase,1.0,0 -53875128,"Freaking Meatbags",purchase,1.0,0 -53875128,"Saints Row 2",purchase,1.0,0 -53875128,"Dyad",purchase,1.0,0 -53875128,"Starseed Pilgrim",purchase,1.0,0 -53875128,"Camera Obscura",purchase,1.0,0 -53875128,"The Floor is Jelly",purchase,1.0,0 -53875128,"Super Meat Boy",purchase,1.0,0 -53875128,"Dustforce",purchase,1.0,0 -53875128,"Goats on a Bridge",purchase,1.0,0 -53875128,"System Shock 2",purchase,1.0,0 -53875128,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -53875128,"PixelJunk Shooter",purchase,1.0,0 -53875128,"And Yet It Moves",purchase,1.0,0 -53875128,"Arma 2 British Armed Forces",purchase,1.0,0 -53875128,"Battlefield Bad Company 2",purchase,1.0,0 -53875128,"Cogs",purchase,1.0,0 -53875128,"Assassin's Creed IV Black Flag",purchase,1.0,0 -53875128,"SimCity 4 Deluxe",purchase,1.0,0 -53875128,"Half-Life Deathmatch Source",purchase,1.0,0 -53875128,"Arma 2 DayZ Mod",purchase,1.0,0 -53875128,"Call of Duty Modern Warfare 2",purchase,1.0,0 -53875128,"Rodina",purchase,1.0,0 -53875128,"140",purchase,1.0,0 -53875128,"Age of Empires II HD The Forgotten",purchase,1.0,0 -53875128,"Age of Empires III Complete Collection",purchase,1.0,0 -53875128,"Age of Mythology Extended Edition",purchase,1.0,0 -53875128,"Alan Wake",purchase,1.0,0 -53875128,"Alice Madness Returns",purchase,1.0,0 -53875128,"Alien Isolation",purchase,1.0,0 -53875128,"America's Army 3",purchase,1.0,0 -53875128,"America's Army Proving Grounds",purchase,1.0,0 -53875128,"Amnesia A Machine for Pigs",purchase,1.0,0 -53875128,"Anachronox",purchase,1.0,0 -53875128,"Antichamber",purchase,1.0,0 -53875128,"App Game Kit",purchase,1.0,0 -53875128,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -53875128,"Arma 2 Private Military Company",purchase,1.0,0 -53875128,"A Story About My Uncle",purchase,1.0,0 -53875128,"Audiosurf",purchase,1.0,0 -53875128,"Aveyond 3-1 Lord of Twilight",purchase,1.0,0 -53875128,"Awesomenauts",purchase,1.0,0 -53875128,"Axis Game Factory's AGFPRO - Drone Kombat FPS Multi-Player DLC",purchase,1.0,0 -53875128,"Axis Game Factory's AGFPRO - Zombie Survival Pack DLC",purchase,1.0,0 -53875128,"Axis Game Factory's AGFPRO 3.0",purchase,1.0,0 -53875128,"Ballpoint Universe Infinite",purchase,1.0,0 -53875128,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -53875128,"Beat Hazard",purchase,1.0,0 -53875128,"BEEP",purchase,1.0,0 -53875128,"Betrayer",purchase,1.0,0 -53875128,"BioShock 2",purchase,1.0,0 -53875128,"BioShock Infinite",purchase,1.0,0 -53875128,"BlazBlue Calamity Trigger",purchase,1.0,0 -53875128,"BlazBlue Continuum Shift Extend",purchase,1.0,0 -53875128,"Blockland",purchase,1.0,0 -53875128,"Borderlands",purchase,1.0,0 -53875128,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -53875128,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -53875128,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -53875128,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -53875128,"Braid",purchase,1.0,0 -53875128,"Breach & Clear",purchase,1.0,0 -53875128,"Breath of Death VII ",purchase,1.0,0 -53875128,"Broken Age",purchase,1.0,0 -53875128,"Brothers - A Tale of Two Sons",purchase,1.0,0 -53875128,"Bulletstorm",purchase,1.0,0 -53875128,"Capsized",purchase,1.0,0 -53875128,"Castle Crashers",purchase,1.0,0 -53875128,"Child of Light",purchase,1.0,0 -53875128,"Cinders",purchase,1.0,0 -53875128,"Cities Skylines",purchase,1.0,0 -53875128,"Cloudbuilt",purchase,1.0,0 -53875128,"Command and Conquer 3 Kane's Wrath",purchase,1.0,0 -53875128,"Command and Conquer 3 Tiberium Wars",purchase,1.0,0 -53875128,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -53875128,"Company of Heroes",purchase,1.0,0 -53875128,"Company of Heroes (New Steam Version)",purchase,1.0,0 -53875128,"Company of Heroes Opposing Fronts",purchase,1.0,0 -53875128,"Company of Heroes Tales of Valor",purchase,1.0,0 -53875128,"Contagion",purchase,1.0,0 -53875128,"Cook, Serve, Delicious!",purchase,1.0,0 -53875128,"Crayon Physics Deluxe",purchase,1.0,0 -53875128,"Cry of Fear",purchase,1.0,0 -53875128,"Cthulhu Saves the World ",purchase,1.0,0 -53875128,"Daikatana",purchase,1.0,0 -53875128,"Darksiders",purchase,1.0,0 -53875128,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -53875128,"Dead Island Epidemic",purchase,1.0,0 -53875128,"Dead Island Riptide",purchase,1.0,0 -53875128,"Deadlight",purchase,1.0,0 -53875128,"Deadlight Original Soundtrack",purchase,1.0,0 -53875128,"Dead Space 2",purchase,1.0,0 -53875128,"Dear Esther",purchase,1.0,0 -53875128,"Democracy 3",purchase,1.0,0 -53875128,"Deus Ex Game of the Year Edition",purchase,1.0,0 -53875128,"Deus Ex Invisible War",purchase,1.0,0 -53875128,"Deus Ex The Fall",purchase,1.0,0 -53875128,"Devil May Cry 4",purchase,1.0,0 -53875128,"DiRT 3 Complete Edition",purchase,1.0,0 -53875128,"DmC Devil May Cry",purchase,1.0,0 -53875128,"Door Kickers",purchase,1.0,0 -53875128,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -53875128,"Draw a Stickman EPIC",purchase,1.0,0 -53875128,"E.Y.E Divine Cybermancy",purchase,1.0,0 -53875128,"Endless Space",purchase,1.0,0 -53875128,"English Country Tune",purchase,1.0,0 -53875128,"F.E.A.R. 3",purchase,1.0,0 -53875128,"F.E.A.R. Extraction Point",purchase,1.0,0 -53875128,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -53875128,"Fallen Enchantress Legendary Heroes",purchase,1.0,0 -53875128,"Fallout 3",purchase,1.0,0 -53875128,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -53875128,"Fallout New Vegas Dead Money",purchase,1.0,0 -53875128,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -53875128,"Far Cry",purchase,1.0,0 -53875128,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -53875128,"FarSky",purchase,1.0,0 -53875128,"Fieldrunners 2",purchase,1.0,0 -53875128,"FINAL FANTASY III",purchase,1.0,0 -53875128,"FINAL FANTASY VIII",purchase,1.0,0 -53875128,"Finding Teddy",purchase,1.0,0 -53875128,"Finding Teddy Soundtrack",purchase,1.0,0 -53875128,"FRACT OSC",purchase,1.0,0 -53875128,"Galcon Fusion",purchase,1.0,0 -53875128,"Game Character Hub",purchase,1.0,0 -53875128,"GameGuru",purchase,1.0,0 -53875128,"GameGuru - Buildings Pack",purchase,1.0,0 -53875128,"Geometry Dash",purchase,1.0,0 -53875128,"Giana Sisters Twisted Dreams",purchase,1.0,0 -53875128,"Giana Sisters Twisted Dreams - Rise of the Owlverlord",purchase,1.0,0 -53875128,"Gigantic Army",purchase,1.0,0 -53875128,"Gods Will Be Watching",purchase,1.0,0 -53875128,"Gone Home",purchase,1.0,0 -53875128,"Gotham City Impostors Free To Play",purchase,1.0,0 -53875128,"Gothic",purchase,1.0,0 -53875128,"Gothic 3",purchase,1.0,0 -53875128,"Gothic II Gold Edition",purchase,1.0,0 -53875128,"GRID",purchase,1.0,0 -53875128,"GRID 2 GTR Racing Pack",purchase,1.0,0 -53875128,"Guacamelee! Gold Edition",purchase,1.0,0 -53875128,"Guardians of Middle-earth",purchase,1.0,0 -53875128,"Half-Life",purchase,1.0,0 -53875128,"Half-Life 2 Deathmatch",purchase,1.0,0 -53875128,"Half-Life 2 Update",purchase,1.0,0 -53875128,"Half-Life Source",purchase,1.0,0 -53875128,"Hammerwatch",purchase,1.0,0 -53875128,"Hero Siege",purchase,1.0,0 -53875128,"Hitman 2 Silent Assassin",purchase,1.0,0 -53875128,"Hitman Absolution",purchase,1.0,0 -53875128,"Hitman Blood Money",purchase,1.0,0 -53875128,"Hitman Codename 47",purchase,1.0,0 -53875128,"Hitman Contracts",purchase,1.0,0 -53875128,"Hitman Sniper Challenge",purchase,1.0,0 -53875128,"How to Survive",purchase,1.0,0 -53875128,"I am Bread",purchase,1.0,0 -53875128,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -53875128,"INK - Soundtrack + Art",purchase,1.0,0 -53875128,"Ittle Dew",purchase,1.0,0 -53875128,"Jack Lumber",purchase,1.0,0 -53875128,"Jazzpunk",purchase,1.0,0 -53875128,"Just Cause",purchase,1.0,0 -53875128,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -53875128,"Kerbal Space Program",purchase,1.0,0 -53875128,"Killer is Dead",purchase,1.0,0 -53875128,"Killing Floor",purchase,1.0,0 -53875128,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -53875128,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -53875128,"Labyrinthine Dreams",purchase,1.0,0 -53875128,"Lara Croft and the Guardian of Light",purchase,1.0,0 -53875128,"Last Word",purchase,1.0,0 -53875128,"Legends of Persia",purchase,1.0,0 -53875128,"LEGO Batman The Videogame",purchase,1.0,0 -53875128,"LEGO Harry Potter Years 5-7",purchase,1.0,0 -53875128,"LEGO MARVEL Super Heroes",purchase,1.0,0 -53875128,"LIMBO",purchase,1.0,0 -53875128,"LISA",purchase,1.0,0 -53875128,"Little Inferno",purchase,1.0,0 -53875128,"Magicka",purchase,1.0,0 -53875128,"Mass Effect 2",purchase,1.0,0 -53875128,"Max Payne 3",purchase,1.0,0 -53875128,"Mechanic Escape",purchase,1.0,0 -53875128,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -53875128,"Medal of Honor(TM) Single Player",purchase,1.0,0 -53875128,"Medal of Honor Pre-Order",purchase,1.0,0 -53875128,"Mercenary Kings",purchase,1.0,0 -53875128,"METAL SLUG 3",purchase,1.0,0 -53875128,"Metro 2033 Redux",purchase,1.0,0 -53875128,"Mini Ninjas",purchase,1.0,0 -53875128,"Mitsurugi Kamui Hikae",purchase,1.0,0 -53875128,"Mortal Kombat Kollection",purchase,1.0,0 -53875128,"MURDERED SOUL SUSPECT",purchase,1.0,0 -53875128,"Need for Speed Undercover",purchase,1.0,0 -53875128,"Never Alone (Kisima Ingitchuna)",purchase,1.0,0 -53875128,"Never Alone Original Soundtrack",purchase,1.0,0 -53875128,"Neverending Nightmares",purchase,1.0,0 -53875128,"Nosgoth",purchase,1.0,0 -53875128,"One Way Heroics",purchase,1.0,0 -53875128,"Ori and the Blind Forest (Original Soundtrack)",purchase,1.0,0 -53875128,"Outland",purchase,1.0,0 -53875128,"Papers, Please",purchase,1.0,0 -53875128,"PAYDAY 2",purchase,1.0,0 -53875128,"PAYDAY The Heist",purchase,1.0,0 -53875128,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",purchase,1.0,0 -53875128,"Pixel Heroes Byte & Magic",purchase,1.0,0 -53875128,"Pixel Piracy",purchase,1.0,0 -53875128,"Polarity",purchase,1.0,0 -53875128,"POSTAL 2",purchase,1.0,0 -53875128,"Project Temporality",purchase,1.0,0 -53875128,"Psychonauts Demo",purchase,1.0,0 -53875128,"RAGE",purchase,1.0,0 -53875128,"Rebuild Gangs of Deadsville - Deluxe DLC",purchase,1.0,0 -53875128,"Red Faction Armageddon",purchase,1.0,0 -53875128,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -53875128,"Remember Me",purchase,1.0,0 -53875128,"Remnants Of Isolation",purchase,1.0,0 -53875128,"resident evil 4 / biohazard 4",purchase,1.0,0 -53875128,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -53875128,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -53875128,"Rochard",purchase,1.0,0 -53875128,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -53875128,"RPG Maker Luna Engine",purchase,1.0,0 -53875128,"RPG Maker VX Ace",purchase,1.0,0 -53875128,"Saints Row Gat out of Hell",purchase,1.0,0 -53875128,"Screencheat",purchase,1.0,0 -53875128,"Scribblenauts Unlimited",purchase,1.0,0 -53875128,"Serious Sam 3 BFE",purchase,1.0,0 -53875128,"Shadowgrounds Survivor",purchase,1.0,0 -53875128,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -53875128,"Shadowrun Returns",purchase,1.0,0 -53875128,"Shadow Warrior",purchase,1.0,0 -53875128,"Shank",purchase,1.0,0 -53875128,"Shantae Risky's Revenge - Director's Cut",purchase,1.0,0 -53875128,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -53875128,"Sins of a Solar Empire Rebellion Soundtrack",purchase,1.0,0 -53875128,"Skullgirls Endless Beta",purchase,1.0,0 -53875128,"Skulls of the Shogun",purchase,1.0,0 -53875128,"Sonic Adventure 2 Battle Mode DLC",purchase,1.0,0 -53875128,"Sonic CD",purchase,1.0,0 -53875128,"Space Engineers",purchase,1.0,0 -53875128,"Spiral Knights",purchase,1.0,0 -53875128,"Sprite Lamp",purchase,1.0,0 -53875128,"Spriter Pro",purchase,1.0,0 -53875128,"Star Wars - Battlefront II",purchase,1.0,0 -53875128,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -53875128,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -53875128,"Star Wars Dark Forces",purchase,1.0,0 -53875128,"Star Wars Empire at War Gold",purchase,1.0,0 -53875128,"Star Wars Knights of the Old Republic",purchase,1.0,0 -53875128,"Star Wars The Force Unleashed II",purchase,1.0,0 -53875128,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -53875128,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -53875128,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -53875128,"Star Wars Republic Commando",purchase,1.0,0 -53875128,"Star Wars Starfighter",purchase,1.0,0 -53875128,"Star Wars The Clone Wars Republic Heroes",purchase,1.0,0 -53875128,"State of Decay",purchase,1.0,0 -53875128,"Survivalist",purchase,1.0,0 -53875128,"Syberia",purchase,1.0,0 -53875128,"Syberia 2",purchase,1.0,0 -53875128,"Terraria",purchase,1.0,0 -53875128,"The Banner Saga",purchase,1.0,0 -53875128,"The Banner Saga - Mod Content",purchase,1.0,0 -53875128,"The Beginner's Guide",purchase,1.0,0 -53875128,"The Binding of Isaac Rebirth",purchase,1.0,0 -53875128,"The Bridge",purchase,1.0,0 -53875128,"The Cat Lady",purchase,1.0,0 -53875128,"The Elder Scrolls V Skyrim",purchase,1.0,0 -53875128,"The Incredible Adventures of Van Helsing II",purchase,1.0,0 -53875128,"The Last Remnant",purchase,1.0,0 -53875128,"The Long Dark",purchase,1.0,0 -53875128,"The Lord of the Rings War in the North",purchase,1.0,0 -53875128,"The Swapper",purchase,1.0,0 -53875128,"The Talos Principle Road To Gehenna",purchase,1.0,0 -53875128,"The Vanishing of Ethan Carter Redux",purchase,1.0,0 -53875128,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -53875128,"The Witcher 3 Wild Hunt",purchase,1.0,0 -53875128,"The Wolf Among Us",purchase,1.0,0 -53875128,"Thief",purchase,1.0,0 -53875128,"Thief Gold",purchase,1.0,0 -53875128,"This War of Mine",purchase,1.0,0 -53875128,"Thomas Was Alone",purchase,1.0,0 -53875128,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -53875128,"Titan Quest",purchase,1.0,0 -53875128,"Titan Quest Immortal Throne",purchase,1.0,0 -53875128,"Tomb Raider",purchase,1.0,0 -53875128,"Torchlight",purchase,1.0,0 -53875128,"Toribash",purchase,1.0,0 -53875128,"Total War SHOGUN 2",purchase,1.0,0 -53875128,"Transistor",purchase,1.0,0 -53875128,"Transistor Soundtrack",purchase,1.0,0 -53875128,"TRI Of Friendship and Madness",purchase,1.0,0 -53875128,"TypeRider",purchase,1.0,0 -53875128,"Undertale",purchase,1.0,0 -53875128,"Unholy Heights",purchase,1.0,0 -53875128,"Unturned",purchase,1.0,0 -53875128,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -53875128,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -53875128,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -53875128,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -53875128,"Vessel",purchase,1.0,0 -53875128,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -53875128,"VVVVVV",purchase,1.0,0 -53875128,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -53875128,"Whisper of a Rose",purchase,1.0,0 -53875128,"Wizorb",purchase,1.0,0 -53875128,"Wrack",purchase,1.0,0 -53875128,"Ys Origin",purchase,1.0,0 -53875128,"Zen Bound 2",purchase,1.0,0 -234941318,"Strife",purchase,1.0,0 -140954425,"Team Fortress 2",purchase,1.0,0 -140954425,"Team Fortress 2",play,13.0,0 -26122540,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -26122540,"Call of Duty Modern Warfare 2 - Multiplayer",play,92.0,0 -26122540,"Call of Duty Modern Warfare 2",purchase,1.0,0 -26122540,"Call of Duty Modern Warfare 2",play,47.0,0 -26122540,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -26122540,"Call of Duty Black Ops - Multiplayer",play,22.0,0 -26122540,"Counter-Strike Source",purchase,1.0,0 -26122540,"Counter-Strike Source",play,10.3,0 -26122540,"Dungeon Defenders",purchase,1.0,0 -26122540,"Dungeon Defenders",play,6.8,0 -26122540,"Call of Duty Black Ops",purchase,1.0,0 -26122540,"Call of Duty Black Ops",play,3.1,0 -26122540,"Day of Defeat Source",purchase,1.0,0 -26122540,"Day of Defeat Source",play,1.1,0 -26122540,"ArcheAge",purchase,1.0,0 -26122540,"Half-Life 2 Deathmatch",purchase,1.0,0 -26122540,"Half-Life 2 Lost Coast",purchase,1.0,0 -176410694,"Dota 2",purchase,1.0,0 -176410694,"Dota 2",play,9.1,0 -197278511,"Dota 2",purchase,1.0,0 -197278511,"Dota 2",play,0.5,0 -150128162,"Team Fortress 2",purchase,1.0,0 -150128162,"Team Fortress 2",play,42.0,0 -197455089,"Dota 2",purchase,1.0,0 -197455089,"Dota 2",play,3.4,0 -63024728,"Empire Total War",purchase,1.0,0 -63024728,"Empire Total War",play,42.0,0 -297811211,"ARK Survival Evolved",purchase,1.0,0 -297811211,"ARK Survival Evolved",play,29.0,0 -297811211,"Team Fortress 2",purchase,1.0,0 -297811211,"Team Fortress 2",play,10.1,0 -297811211,"Unturned",purchase,1.0,0 -297811211,"Unturned",play,5.6,0 -76933274,"Alien Swarm",purchase,1.0,0 -76933274,"Alien Swarm",play,1.0,0 -218323237,"Dota 2",purchase,1.0,0 -218323237,"Dota 2",play,14.8,0 -218323237,"Tomb Raider",purchase,1.0,0 -218323237,"Tomb Raider",play,8.8,0 -218323237,"TERA",purchase,1.0,0 -218323237,"TERA",play,0.9,0 -302186258,"Dota 2",purchase,1.0,0 -302186258,"Dota 2",play,4.2,0 -126340495,"Dota 2",purchase,1.0,0 -126340495,"Dota 2",play,1784.0,0 -126340495,"Counter-Strike Global Offensive",purchase,1.0,0 -126340495,"Counter-Strike Global Offensive",play,626.0,0 -126340495,"Counter-Strike Source",purchase,1.0,0 -126340495,"Counter-Strike Source",play,176.0,0 -126340495,"Rust",purchase,1.0,0 -126340495,"Rust",play,69.0,0 -126340495,"Saints Row IV",purchase,1.0,0 -126340495,"Saints Row IV",play,48.0,0 -126340495,"Team Fortress 2",purchase,1.0,0 -126340495,"Team Fortress 2",play,16.1,0 -126340495,"Dead Island Riptide",purchase,1.0,0 -126340495,"Dead Island Riptide",play,13.6,0 -126340495,"Flatout 3",purchase,1.0,0 -126340495,"Flatout 3",play,11.7,0 -126340495,"Garry's Mod",purchase,1.0,0 -126340495,"Garry's Mod",play,10.2,0 -126340495,"Counter-Strike Nexon Zombies",purchase,1.0,0 -126340495,"Counter-Strike Nexon Zombies",play,5.8,0 -126340495,"Outlast",purchase,1.0,0 -126340495,"Outlast",play,4.1,0 -126340495,"Robocraft",purchase,1.0,0 -126340495,"Robocraft",play,2.3,0 -126340495,"Far Cry 3",purchase,1.0,0 -126340495,"Far Cry 3",play,2.2,0 -126340495,"Everlasting Summer",purchase,1.0,0 -126340495,"Everlasting Summer",play,0.6,0 -126340495,"Dead Island Epidemic",purchase,1.0,0 -126340495,"Dead Island Epidemic",play,0.6,0 -126340495,"War Thunder",purchase,1.0,0 -126340495,"War Thunder",play,0.4,0 -126340495,"DCS World",purchase,1.0,0 -126340495,"DCS World",play,0.3,0 -126340495,"Fishing Planet",purchase,1.0,0 -126340495,"Cannons Lasers Rockets",purchase,1.0,0 -126340495,"Dragon Nest Europe",purchase,1.0,0 -126340495,"Loadout",purchase,1.0,0 -126340495,"Neverwinter",purchase,1.0,0 -126340495,"No More Room in Hell",purchase,1.0,0 -126340495,"Nosgoth",purchase,1.0,0 -126340495,"RIFT",purchase,1.0,0 -126340495,"Tactical Intervention",purchase,1.0,0 -126340495,"Unturned",purchase,1.0,0 -126340495,"Warframe",purchase,1.0,0 -126340495,"Zombies Monsters Robots",purchase,1.0,0 -256193015,"Toribash",purchase,1.0,0 -194895541,"Dota 2",purchase,1.0,0 -194895541,"Dota 2",play,1.1,0 -194895541,"Tactical Intervention",purchase,1.0,0 -194895541,"Tactical Intervention",play,0.4,0 -30007387,"Half-Life 2 Deathmatch",purchase,1.0,0 -30007387,"Half-Life 2 Lost Coast",purchase,1.0,0 -170625356,"Dota 2",purchase,1.0,0 -170625356,"Dota 2",play,7.4,0 -159538705,"Left 4 Dead 2",purchase,1.0,0 -167362888,"Dota 2",purchase,1.0,0 -167362888,"Dota 2",play,135.0,0 -208649703,"Counter-Strike Global Offensive",purchase,1.0,0 -208649703,"Counter-Strike Global Offensive",play,125.0,0 -208649703,"Counter-Strike Nexon Zombies",purchase,1.0,0 -208649703,"Clicker Heroes",purchase,1.0,0 -208649703,"Unturned",purchase,1.0,0 -299889828,"Crusaders of the Lost Idols",purchase,1.0,0 -299889828,"GASP",purchase,1.0,0 -225987202,"Dota 2",purchase,1.0,0 -225987202,"Dota 2",play,3.8,0 -195071563,"Dota 2",purchase,1.0,0 -195071563,"Dota 2",play,6.2,0 -254906420,"Team Fortress 2",purchase,1.0,0 -254906420,"Team Fortress 2",play,1.2,0 -247160953,"Dota 2",purchase,1.0,0 -247160953,"Dota 2",play,1.9,0 -308653033,"Unturned",purchase,1.0,0 -308653033,"Unturned",play,0.6,0 -308653033,"theHunter",purchase,1.0,0 -144138643,"Dota 2",purchase,1.0,0 -144138643,"Dota 2",play,5.2,0 -197902002,"Unturned",purchase,1.0,0 -97298878,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -97298878,"Medal of Honor(TM) Multiplayer",play,44.0,0 -97298878,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -97298878,"Max Payne 2 The Fall of Max Payne",play,32.0,0 -97298878,"Middle-earth Shadow of Mordor",purchase,1.0,0 -97298878,"Middle-earth Shadow of Mordor",play,26.0,0 -97298878,"Mafia II",purchase,1.0,0 -97298878,"Mafia II",play,15.9,0 -97298878,"Nosgoth",purchase,1.0,0 -97298878,"Nosgoth",play,15.8,0 -97298878,"Race The Sun",purchase,1.0,0 -97298878,"Race The Sun",play,10.5,0 -97298878,"Space Pirates and Zombies",purchase,1.0,0 -97298878,"Space Pirates and Zombies",play,9.5,0 -97298878,"Revenge of the Titans",purchase,1.0,0 -97298878,"Revenge of the Titans",play,9.2,0 -97298878,"Team Fortress 2",purchase,1.0,0 -97298878,"Team Fortress 2",play,9.0,0 -97298878,"Dota 2",purchase,1.0,0 -97298878,"Dota 2",play,8.6,0 -97298878,"A Virus Named TOM",purchase,1.0,0 -97298878,"A Virus Named TOM",play,8.3,0 -97298878,"Europa Universalis III",purchase,1.0,0 -97298878,"Europa Universalis III",play,8.3,0 -97298878,"Awesomenauts",purchase,1.0,0 -97298878,"Awesomenauts",play,8.2,0 -97298878,"Super Puzzle Platformer Deluxe",purchase,1.0,0 -97298878,"Super Puzzle Platformer Deluxe",play,5.9,0 -97298878,"Super Meat Boy",purchase,1.0,0 -97298878,"Super Meat Boy",play,4.7,0 -97298878,"LIMBO",purchase,1.0,0 -97298878,"LIMBO",play,1.3,0 -97298878,"Mark of the Ninja",purchase,1.0,0 -97298878,"Mark of the Ninja",play,0.9,0 -97298878,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -97298878,"Burnout Paradise The Ultimate Box",play,0.6,0 -97298878,"Mirror's Edge",purchase,1.0,0 -97298878,"Mirror's Edge",play,0.5,0 -97298878,"Crysis 2 Maximum Edition",purchase,1.0,0 -97298878,"Crysis 2 Maximum Edition",play,0.5,0 -97298878,"Painkiller Overdose",purchase,1.0,0 -97298878,"Painkiller Overdose",play,0.4,0 -97298878,"Cogs",purchase,1.0,0 -97298878,"Cogs",play,0.2,0 -97298878,"Crayon Physics Deluxe",purchase,1.0,0 -97298878,"Crayon Physics Deluxe",play,0.2,0 -97298878,"Osmos",purchase,1.0,0 -97298878,"Osmos",play,0.1,0 -97298878,"99 Levels To Hell",purchase,1.0,0 -97298878,"Adventures of Shuggy",purchase,1.0,0 -97298878,"And Yet It Moves",purchase,1.0,0 -97298878,"Arma Cold War Assault",purchase,1.0,0 -97298878,"Bastion",purchase,1.0,0 -97298878,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -97298878,"Batman Arkham Origins",purchase,1.0,0 -97298878,"BIT.TRIP RUNNER",purchase,1.0,0 -97298878,"Braid",purchase,1.0,0 -97298878,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -97298878,"Commando Jack",purchase,1.0,0 -97298878,"Cortex Command",purchase,1.0,0 -97298878,"Deadbreed",purchase,1.0,0 -97298878,"Deadbreed Undertaker Beta Pack",purchase,1.0,0 -97298878,"Dead Island Epidemic",purchase,1.0,0 -97298878,"Dead Space",purchase,1.0,0 -97298878,"Dino D-Day",purchase,1.0,0 -97298878,"Eets Munchies",purchase,1.0,0 -97298878,"Enclave",purchase,1.0,0 -97298878,"FEZ",purchase,1.0,0 -97298878,"GTR Evolution",purchase,1.0,0 -97298878,"Guardians of Middle-earth",purchase,1.0,0 -97298878,"Hammerfight",purchase,1.0,0 -97298878,"Indie Game The Movie",purchase,1.0,0 -97298878,"Little Inferno",purchase,1.0,0 -97298878,"Lone Survivor The Director's Cut",purchase,1.0,0 -97298878,"Machinarium",purchase,1.0,0 -97298878,"Medal of Honor(TM) Single Player",purchase,1.0,0 -97298878,"Medal of Honor Pre-Order",purchase,1.0,0 -97298878,"Metro 2033",purchase,1.0,0 -97298878,"RACE 07",purchase,1.0,0 -97298878,"RaceRoom Racing Experience ",purchase,1.0,0 -97298878,"Sid Meier's Civilization III Complete",purchase,1.0,0 -97298878,"Thief Gold",purchase,1.0,0 -97298878,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -97298878,"VVVVVV",purchase,1.0,0 -97298878,"Woodle Tree Adventures",purchase,1.0,0 -97298878,"X-Tension",purchase,1.0,0 -97298878,"X2 The Threat",purchase,1.0,0 -97298878,"X3 Albion Prelude",purchase,1.0,0 -97298878,"X3 Reunion",purchase,1.0,0 -97298878,"X3 Terran Conflict",purchase,1.0,0 -97298878,"X Beyond the Frontier",purchase,1.0,0 -173909336,"America's Army Proving Grounds",purchase,1.0,0 -173909336,"America's Army Proving Grounds",play,1118.0,0 -173909336,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -173909336,"Tom Clancy's Ghost Recon Phantoms - NA",play,17.2,0 -173909336,"APB Reloaded",purchase,1.0,0 -173909336,"APB Reloaded",play,5.9,0 -173909336,"America's Army 3",purchase,1.0,0 -173909336,"War Inc. Battlezone",purchase,1.0,0 -198572546,"Dota 2",purchase,1.0,0 -198572546,"Dota 2",play,12.7,0 -219509107,"Dota 2",purchase,1.0,0 -219509107,"Dota 2",play,2.1,0 -202906503,"Dota 2",purchase,1.0,0 -202906503,"Dota 2",play,10.4,0 -92107940,"The Elder Scrolls V Skyrim",purchase,1.0,0 -92107940,"The Elder Scrolls V Skyrim",play,110.0,0 -92107940,"7 Days to Die",purchase,1.0,0 -92107940,"7 Days to Die",play,99.0,0 -92107940,"Garry's Mod",purchase,1.0,0 -92107940,"Garry's Mod",play,40.0,0 -92107940,"Far Cry 3 Blood Dragon",purchase,1.0,0 -92107940,"Far Cry 3 Blood Dragon",play,30.0,0 -92107940,"ORION Prelude",purchase,1.0,0 -92107940,"ORION Prelude",play,10.0,0 -92107940,"Hotline Miami",purchase,1.0,0 -92107940,"Hotline Miami",play,8.4,0 -92107940,"Goat Simulator",purchase,1.0,0 -92107940,"Goat Simulator",play,1.9,0 -92107940,"Hotline Miami 2 Wrong Number",purchase,1.0,0 -92107940,"Hotline Miami 2 Wrong Number",play,0.8,0 -92107940,"Amnesia A Machine for Pigs",purchase,1.0,0 -92107940,"Amnesia A Machine for Pigs",play,0.5,0 -92107940,"BioShock Infinite",purchase,1.0,0 -92107940,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -251431515,"Dota 2",purchase,1.0,0 -251431515,"Dota 2",play,0.9,0 -233558010,"Batman Arkham City GOTY",purchase,1.0,0 -233558010,"Batman Arkham City GOTY",play,79.0,0 -233558010,"Deadpool",purchase,1.0,0 -233558010,"Deadpool",play,34.0,0 -99189757,"Team Fortress 2",purchase,1.0,0 -99189757,"Team Fortress 2",play,1085.0,0 -99189757,"Loadout",purchase,1.0,0 -30695285,"Counter-Strike Condition Zero",purchase,1.0,0 -30695285,"Counter-Strike Condition Zero",play,36.0,0 -30695285,"Counter-Strike",purchase,1.0,0 -30695285,"Counter-Strike",play,0.2,0 -30695285,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -30695285,"Day of Defeat",purchase,1.0,0 -30695285,"Deathmatch Classic",purchase,1.0,0 -30695285,"Ricochet",purchase,1.0,0 -259648553,"Mad Max",purchase,1.0,0 -259648553,"Mad Max",play,16.9,0 -201069271,"Dota 2",purchase,1.0,0 -201069271,"Dota 2",play,4.8,0 -48845802,"Counter-Strike",purchase,1.0,0 -48845802,"Counter-Strike",play,211.0,0 -48845802,"Mount & Blade Warband",purchase,1.0,0 -48845802,"Mount & Blade Warband",play,78.0,0 -48845802,"Counter-Strike Condition Zero",purchase,1.0,0 -48845802,"Counter-Strike Condition Zero",play,60.0,0 -48845802,"Castle Crashers",purchase,1.0,0 -48845802,"Castle Crashers",play,31.0,0 -48845802,"Call of Duty Black Ops",purchase,1.0,0 -48845802,"Call of Duty Black Ops",play,11.3,0 -48845802,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -48845802,"Call of Duty Black Ops - Multiplayer",play,10.0,0 -48845802,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -48845802,"Tom Clancy's Ghost Recon Phantoms - EU",play,7.8,0 -48845802,"Left 4 Dead",purchase,1.0,0 -48845802,"Left 4 Dead",play,1.1,0 -48845802,"SMITE",purchase,1.0,0 -48845802,"SMITE",play,0.9,0 -48845802,"Ricochet",purchase,1.0,0 -48845802,"Ricochet",play,0.3,0 -48845802,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -48845802,"Kane & Lynch 2 Dog Days",play,0.2,0 -48845802,"Amnesia The Dark Descent",purchase,1.0,0 -48845802,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -48845802,"Day of Defeat",purchase,1.0,0 -48845802,"Deathmatch Classic",purchase,1.0,0 -226212066,"Counter-Strike Global Offensive",purchase,1.0,0 -226212066,"Counter-Strike Global Offensive",play,94.0,0 -226212066,"Unturned",purchase,1.0,0 -226212066,"Unturned",play,15.0,0 -226212066,"Garry's Mod",purchase,1.0,0 -226212066,"Garry's Mod",play,10.8,0 -226212066,"PAYDAY 2",purchase,1.0,0 -226212066,"PAYDAY 2",play,6.7,0 -226212066,"Team Fortress 2",purchase,1.0,0 -226212066,"Team Fortress 2",play,3.6,0 -226212066,"Infinite Crisis",purchase,1.0,0 -226212066,"Infinite Crisis",play,2.4,0 -226212066,"AdVenture Capitalist",purchase,1.0,0 -226212066,"AdVenture Capitalist",play,2.1,0 -226212066,"DiggerOnline",purchase,1.0,0 -226212066,"DiggerOnline",play,0.9,0 -226212066,"Survarium",purchase,1.0,0 -226212066,"Survarium",play,0.7,0 -226212066,"Heroes & Generals",purchase,1.0,0 -226212066,"Heroes & Generals",play,0.2,0 -226212066,"My Lands",purchase,1.0,0 -226212066,"Brick-Force",purchase,1.0,0 -226212066,"theHunter",purchase,1.0,0 -221430493,"Dota 2",purchase,1.0,0 -221430493,"Dota 2",play,5.3,0 -221430493,"Archeblade",purchase,1.0,0 -62923086,"Counter-Strike",purchase,1.0,0 -62923086,"Counter-Strike",play,91.0,0 -62923086,"Day of Defeat",purchase,1.0,0 -62923086,"Deathmatch Classic",purchase,1.0,0 -62923086,"Half-Life",purchase,1.0,0 -62923086,"Half-Life Blue Shift",purchase,1.0,0 -62923086,"Half-Life Opposing Force",purchase,1.0,0 -62923086,"Ricochet",purchase,1.0,0 -62923086,"Team Fortress Classic",purchase,1.0,0 -250006052,"The Elder Scrolls V Skyrim",purchase,1.0,0 -250006052,"The Elder Scrolls V Skyrim",play,465.0,0 -250006052,"Project CARS",purchase,1.0,0 -250006052,"Project CARS",play,40.0,0 -250006052,"Project CARS - Modified Car Pack ",purchase,1.0,0 -250006052,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -250006052,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -250006052,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -65117175,"Defense Grid The Awakening",purchase,1.0,0 -65117175,"Defense Grid The Awakening",play,66.0,0 -65117175,"Broken Age",purchase,1.0,0 -65117175,"Broken Age",play,35.0,0 -65117175,"Cloud Chamber",purchase,1.0,0 -65117175,"Cloud Chamber",play,22.0,0 -65117175,"Stacking",purchase,1.0,0 -65117175,"Stacking",play,19.6,0 -65117175,"Ghostbusters The Video Game",purchase,1.0,0 -65117175,"Ghostbusters The Video Game",play,16.3,0 -65117175,"Faerie Solitaire",purchase,1.0,0 -65117175,"Faerie Solitaire",play,14.7,0 -65117175,"Dreamfall Chapters",purchase,1.0,0 -65117175,"Dreamfall Chapters",play,14.6,0 -65117175,"Portal Stories Mel",purchase,1.0,0 -65117175,"Portal Stories Mel",play,14.3,0 -65117175,"Universe Sandbox",purchase,1.0,0 -65117175,"Universe Sandbox",play,13.3,0 -65117175,"Portal 2",purchase,1.0,0 -65117175,"Portal 2",play,11.3,0 -65117175,"Toki Tori",purchase,1.0,0 -65117175,"Toki Tori",play,11.2,0 -65117175,"The Wonderful End of the World",purchase,1.0,0 -65117175,"The Wonderful End of the World",play,10.5,0 -65117175,"Hacker Evolution",purchase,1.0,0 -65117175,"Hacker Evolution",play,9.5,0 -65117175,"Portal",purchase,1.0,0 -65117175,"Portal",play,9.1,0 -65117175,"Thomas Was Alone",purchase,1.0,0 -65117175,"Thomas Was Alone",play,9.0,0 -65117175,"Little Inferno",purchase,1.0,0 -65117175,"Little Inferno",play,8.9,0 -65117175,"BIT.TRIP RUNNER",purchase,1.0,0 -65117175,"BIT.TRIP RUNNER",play,8.6,0 -65117175,"The Stanley Parable",purchase,1.0,0 -65117175,"The Stanley Parable",play,7.1,0 -65117175,"Costume Quest",purchase,1.0,0 -65117175,"Costume Quest",play,7.1,0 -65117175,"RUSH",purchase,1.0,0 -65117175,"RUSH",play,7.1,0 -65117175,"Return to Mysterious Island 2",purchase,1.0,0 -65117175,"Return to Mysterious Island 2",play,5.9,0 -65117175,"World of Goo",purchase,1.0,0 -65117175,"World of Goo",play,5.9,0 -65117175,"Deus Ex Game of the Year Edition",purchase,1.0,0 -65117175,"Deus Ex Game of the Year Edition",play,5.6,0 -65117175,"Portal 2 - The Final Hours",purchase,1.0,0 -65117175,"Portal 2 - The Final Hours",play,5.6,0 -65117175,"AaAaAA!!! - A Reckless Disregard for Gravity",purchase,1.0,0 -65117175,"AaAaAA!!! - A Reckless Disregard for Gravity",play,5.3,0 -65117175,"Audiosurf",purchase,1.0,0 -65117175,"Audiosurf",play,5.2,0 -65117175,"Machinarium",purchase,1.0,0 -65117175,"Machinarium",play,5.1,0 -65117175,"VVVVVV",purchase,1.0,0 -65117175,"VVVVVV",play,5.1,0 -65117175,"GEARCRACK Arena",purchase,1.0,0 -65117175,"GEARCRACK Arena",play,4.7,0 -65117175,"Quantum Conundrum",purchase,1.0,0 -65117175,"Quantum Conundrum",play,4.3,0 -65117175,"Mission Control NanoMech",purchase,1.0,0 -65117175,"Mission Control NanoMech",play,4.1,0 -65117175,"Defense Grid 2 A Matter of Endurance",purchase,1.0,0 -65117175,"Defense Grid 2 A Matter of Endurance",play,4.1,0 -65117175,"Alan Wake's American Nightmare",purchase,1.0,0 -65117175,"Alan Wake's American Nightmare",play,3.7,0 -65117175,"Sam & Max 101 Culture Shock",purchase,1.0,0 -65117175,"Sam & Max 101 Culture Shock",play,3.7,0 -65117175,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -65117175,"Back to the Future Ep 2 - Get Tannen!",play,3.6,0 -65117175,"The Ball",purchase,1.0,0 -65117175,"The Ball",play,3.6,0 -65117175,"Torchlight II",purchase,1.0,0 -65117175,"Torchlight II",play,3.6,0 -65117175,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -65117175,"Back to the Future Ep 5 - OUTATIME",play,3.4,0 -65117175,"Amnesia The Dark Descent",purchase,1.0,0 -65117175,"Amnesia The Dark Descent",play,3.3,0 -65117175,"Sam & Max 102 Situation Comedy",purchase,1.0,0 -65117175,"Sam & Max 102 Situation Comedy",play,3.2,0 -65117175,"Jamestown",purchase,1.0,0 -65117175,"Jamestown",play,3.2,0 -65117175,"Oozi Earth Adventure",purchase,1.0,0 -65117175,"Oozi Earth Adventure",play,3.1,0 -65117175,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -65117175,"Back to the Future Ep 1 - It's About Time",play,2.9,0 -65117175,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -65117175,"Back to the Future Ep 4 - Double Visions",play,2.8,0 -65117175,"Organ Trail Director's Cut",purchase,1.0,0 -65117175,"Organ Trail Director's Cut",play,2.7,0 -65117175,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -65117175,"Back to the Future Ep 3 - Citizen Brown",play,2.6,0 -65117175,"Fester Mudd Curse of the Gold - Episode 1",purchase,1.0,0 -65117175,"Fester Mudd Curse of the Gold - Episode 1",play,2.3,0 -65117175,"BIT.TRIP BEAT",purchase,1.0,0 -65117175,"BIT.TRIP BEAT",play,2.2,0 -65117175,"Braid",purchase,1.0,0 -65117175,"Braid",play,2.2,0 -65117175,"A Virus Named TOM",purchase,1.0,0 -65117175,"A Virus Named TOM",play,2.1,0 -65117175,"FTL Faster Than Light",purchase,1.0,0 -65117175,"FTL Faster Than Light",play,2.0,0 -65117175,"Atom Zombie Smasher ",purchase,1.0,0 -65117175,"Atom Zombie Smasher ",play,2.0,0 -65117175,"Team Fortress 2",purchase,1.0,0 -65117175,"Team Fortress 2",play,1.3,0 -65117175,"Super Meat Boy",purchase,1.0,0 -65117175,"Super Meat Boy",play,1.2,0 -65117175,"1... 2... 3... KICK IT! (Drop That Beat Like an Ugly Baby)",purchase,1.0,0 -65117175,"1... 2... 3... KICK IT! (Drop That Beat Like an Ugly Baby)",play,1.2,0 -65117175,"Bastion",purchase,1.0,0 -65117175,"Bastion",play,1.1,0 -65117175,"Osmos",purchase,1.0,0 -65117175,"Osmos",play,1.0,0 -65117175,"Cogs",purchase,1.0,0 -65117175,"Cogs",play,1.0,0 -65117175,"Botanicula",purchase,1.0,0 -65117175,"Botanicula",play,0.9,0 -65117175,"Killing Floor",purchase,1.0,0 -65117175,"Killing Floor",play,0.9,0 -65117175,"And Yet It Moves",purchase,1.0,0 -65117175,"And Yet It Moves",play,0.8,0 -65117175,"NightSky",purchase,1.0,0 -65117175,"NightSky",play,0.6,0 -65117175,"Ticket to Ride",purchase,1.0,0 -65117175,"Ticket to Ride",play,0.5,0 -65117175,"Penumbra Overture",purchase,1.0,0 -65117175,"Penumbra Overture",play,0.4,0 -65117175,"Dear Esther",purchase,1.0,0 -65117175,"Dear Esther",play,0.3,0 -65117175,"Crayon Physics Deluxe",purchase,1.0,0 -65117175,"Crayon Physics Deluxe",play,0.3,0 -65117175,"Lucid",purchase,1.0,0 -65117175,"Lucid",play,0.2,0 -65117175,"Critical Mass",purchase,1.0,0 -65117175,"Critical Mass",play,0.1,0 -65117175,"TypeRider",purchase,1.0,0 -65117175,"Pixel Puzzles Japan",purchase,1.0,0 -65117175,"LEGO MARVEL Super Heroes",purchase,1.0,0 -65117175,"Leviathan The Last Day of the Decade",purchase,1.0,0 -65117175,"Gish",purchase,1.0,0 -65117175,"Alien Breed 2 Assault",purchase,1.0,0 -65117175,"Amerzone The Explorer's Legacy",purchase,1.0,0 -65117175,"Aquaria",purchase,1.0,0 -65117175,"Costume Quest 2",purchase,1.0,0 -65117175,"Dead Bits",purchase,1.0,0 -65117175,"Defense Grid 2",purchase,1.0,0 -65117175,"Defense Grid Containment DLC",purchase,1.0,0 -65117175,"Defense Grid Resurgence Map Pack 1",purchase,1.0,0 -65117175,"Defense Grid Resurgence Map Pack 2 ",purchase,1.0,0 -65117175,"Defense Grid Resurgence Map Pack 3",purchase,1.0,0 -65117175,"Defense Grid Resurgence Map Pack 4",purchase,1.0,0 -65117175,"Defy Gravity",purchase,1.0,0 -65117175,"Five Nights at Freddy's 2",purchase,1.0,0 -65117175,"Hammerfight",purchase,1.0,0 -65117175,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -65117175,"Left 4 Dead 2",purchase,1.0,0 -65117175,"Lugaru HD ",purchase,1.0,0 -65117175,"Mechanic Escape",purchase,1.0,0 -65117175,"Midnight Club II",purchase,1.0,0 -65117175,"Oddworld Abe's Oddysee",purchase,1.0,0 -65117175,"PAYDAY The Heist",purchase,1.0,0 -65117175,"Polarity",purchase,1.0,0 -65117175,"Psychonauts",purchase,1.0,0 -65117175,"Psychonauts Demo",purchase,1.0,0 -65117175,"Race The Sun",purchase,1.0,0 -65117175,"Really Big Sky",purchase,1.0,0 -65117175,"Revenge of the Titans",purchase,1.0,0 -65117175,"Rift's Cave",purchase,1.0,0 -65117175,"RoboBlitz",purchase,1.0,0 -65117175,"Salammbo Battle for Carthage",purchase,1.0,0 -65117175,"Sam & Max 103 The Mole, the Mob and the Meatball",purchase,1.0,0 -65117175,"Sam & Max 105 Reality 2.0",purchase,1.0,0 -65117175,"Sam & Max 106 Bright Side of the Moon",purchase,1.0,0 -65117175,"Sam & Max 201 Ice Station Santa",purchase,1.0,0 -65117175,"Sam & Max 202 Moai Better Blues",purchase,1.0,0 -65117175,"Sam & Max 203 Night of the Raving Dead",purchase,1.0,0 -65117175,"Sam & Max 204 Chariots of the Dogs",purchase,1.0,0 -65117175,"Sam & Max 205 What's New Beelzebub?",purchase,1.0,0 -65117175,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -65117175,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -65117175,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -65117175,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -65117175,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -65117175,"Samorost 2",purchase,1.0,0 -65117175,"Sanctum 2",purchase,1.0,0 -65117175,"Shank",purchase,1.0,0 -65117175,"SolForge",purchase,1.0,0 -65117175,"Steel Storm Burning Retribution",purchase,1.0,0 -65117175,"Stick It To The Man!",purchase,1.0,0 -65117175,"Talisman Prologue",purchase,1.0,0 -65117175,"Teleglitch Die More Edition",purchase,1.0,0 -65117175,"The Talos Principle",purchase,1.0,0 -65117175,"Ticket to Ride - Europe",purchase,1.0,0 -65117175,"Ticket to Ride - USA 1910",purchase,1.0,0 -227944885,"Dota 2",purchase,1.0,0 -227944885,"Dota 2",play,62.0,0 -144004384,"Dota 2",purchase,1.0,0 -144004384,"Dota 2",play,22.0,0 -236557903,"Team Fortress 2",purchase,1.0,0 -236557903,"Team Fortress 2",play,2.0,0 -236557903,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -236557903,"S.K.I.L.L. - Special Force 2",play,0.9,0 -236557903,"BLOCKADE 3D",purchase,1.0,0 -236557903,"BLOCKADE 3D",play,0.3,0 -236557903,"Counter-Strike Nexon Zombies",purchase,1.0,0 -11373749,"Team Fortress 2",purchase,1.0,0 -11373749,"Team Fortress 2",play,762.0,0 -11373749,"Rocket League",purchase,1.0,0 -11373749,"Rocket League",play,348.0,0 -11373749,"Left 4 Dead 2",purchase,1.0,0 -11373749,"Left 4 Dead 2",play,270.0,0 -11373749,"The Elder Scrolls V Skyrim",purchase,1.0,0 -11373749,"The Elder Scrolls V Skyrim",play,220.0,0 -11373749,"Audiosurf",purchase,1.0,0 -11373749,"Audiosurf",play,113.0,0 -11373749,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -11373749,"Fallout 3 - Game of the Year Edition",play,105.0,0 -11373749,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -11373749,"The Elder Scrolls IV Oblivion ",play,99.0,0 -11373749,"Terraria",purchase,1.0,0 -11373749,"Terraria",play,84.0,0 -11373749,"Assassin's Creed Brotherhood",purchase,1.0,0 -11373749,"Assassin's Creed Brotherhood",play,62.0,0 -11373749,"Grand Theft Auto V",purchase,1.0,0 -11373749,"Grand Theft Auto V",play,61.0,0 -11373749,"Saints Row 2",purchase,1.0,0 -11373749,"Saints Row 2",play,58.0,0 -11373749,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -11373749,"Grand Theft Auto Episodes from Liberty City",play,57.0,0 -11373749,"The Witcher Enhanced Edition",purchase,1.0,0 -11373749,"The Witcher Enhanced Edition",play,56.0,0 -11373749,"Super Meat Boy",purchase,1.0,0 -11373749,"Super Meat Boy",play,46.0,0 -11373749,"Left 4 Dead",purchase,1.0,0 -11373749,"Left 4 Dead",play,44.0,0 -11373749,"Saints Row The Third",purchase,1.0,0 -11373749,"Saints Row The Third",play,44.0,0 -11373749,"Batman Arkham Origins",purchase,1.0,0 -11373749,"Batman Arkham Origins",play,41.0,0 -11373749,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -11373749,"The Witcher 2 Assassins of Kings Enhanced Edition",play,39.0,0 -11373749,"The Elder Scrolls III Morrowind",purchase,1.0,0 -11373749,"The Elder Scrolls III Morrowind",play,38.0,0 -11373749,"Bookworm Adventures Deluxe",purchase,1.0,0 -11373749,"Bookworm Adventures Deluxe",play,38.0,0 -11373749,"Star Wars Knights of the Old Republic",purchase,1.0,0 -11373749,"Star Wars Knights of the Old Republic",play,36.0,0 -11373749,"Watch_Dogs",purchase,1.0,0 -11373749,"Watch_Dogs",play,32.0,0 -11373749,"Sleeping Dogs",purchase,1.0,0 -11373749,"Sleeping Dogs",play,31.0,0 -11373749,"GRID",purchase,1.0,0 -11373749,"GRID",play,31.0,0 -11373749,"Hidden Object Bundle 4 in 1",purchase,1.0,0 -11373749,"Hidden Object Bundle 4 in 1",play,27.0,0 -11373749,"Darksiders",purchase,1.0,0 -11373749,"Darksiders",play,24.0,0 -11373749,"Worms Reloaded",purchase,1.0,0 -11373749,"Worms Reloaded",play,23.0,0 -11373749,"FlatOut Ultimate Carnage",purchase,1.0,0 -11373749,"FlatOut Ultimate Carnage",play,23.0,0 -11373749,"SimCity 4 Deluxe",purchase,1.0,0 -11373749,"SimCity 4 Deluxe",play,23.0,0 -11373749,"Portal 2",purchase,1.0,0 -11373749,"Portal 2",play,22.0,0 -11373749,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -11373749,"Call of Duty Black Ops - Multiplayer",play,21.0,0 -11373749,"Rogue Legacy",purchase,1.0,0 -11373749,"Rogue Legacy",play,21.0,0 -11373749,"Trine",purchase,1.0,0 -11373749,"Trine",play,21.0,0 -11373749,"Chivalry Medieval Warfare",purchase,1.0,0 -11373749,"Chivalry Medieval Warfare",play,19.9,0 -11373749,"Spelunky",purchase,1.0,0 -11373749,"Spelunky",play,19.8,0 -11373749,"Ghost Master",purchase,1.0,0 -11373749,"Ghost Master",play,19.7,0 -11373749,"Peggle Deluxe",purchase,1.0,0 -11373749,"Peggle Deluxe",play,19.7,0 -11373749,"Alan Wake",purchase,1.0,0 -11373749,"Alan Wake",play,19.5,0 -11373749,"Peggle Nights",purchase,1.0,0 -11373749,"Peggle Nights",play,19.5,0 -11373749,"Sherlock Holmes Nemesis",purchase,1.0,0 -11373749,"Sherlock Holmes Nemesis",play,19.4,0 -11373749,"Puzzler World 2",purchase,1.0,0 -11373749,"Puzzler World 2",play,19.1,0 -11373749,"Tomb Raider",purchase,1.0,0 -11373749,"Tomb Raider",play,18.3,0 -11373749,"Bejeweled 3",purchase,1.0,0 -11373749,"Bejeweled 3",play,18.2,0 -11373749,"Half-Life 2",purchase,1.0,0 -11373749,"Half-Life 2",play,18.1,0 -11373749,"Alice Madness Returns",purchase,1.0,0 -11373749,"Alice Madness Returns",play,17.3,0 -11373749,"BioShock",purchase,1.0,0 -11373749,"BioShock",play,17.1,0 -11373749,"The Book of Unwritten Tales",purchase,1.0,0 -11373749,"The Book of Unwritten Tales",play,15.4,0 -11373749,"FEZ",purchase,1.0,0 -11373749,"FEZ",play,15.0,0 -11373749,"The Movies",purchase,1.0,0 -11373749,"The Movies",play,14.5,0 -11373749,"Guacamelee! Gold Edition",purchase,1.0,0 -11373749,"Guacamelee! Gold Edition",play,14.4,0 -11373749,"The Walking Dead",purchase,1.0,0 -11373749,"The Walking Dead",play,14.0,0 -11373749,"MacGuffin's Curse",purchase,1.0,0 -11373749,"MacGuffin's Curse",play,13.8,0 -11373749,"The Testament of Sherlock Holmes",purchase,1.0,0 -11373749,"The Testament of Sherlock Holmes",play,13.8,0 -11373749,"Bully Scholarship Edition",purchase,1.0,0 -11373749,"Bully Scholarship Edition",play,13.5,0 -11373749,"Indigo Prophecy",purchase,1.0,0 -11373749,"Indigo Prophecy",play,12.8,0 -11373749,"Just Cause 2",purchase,1.0,0 -11373749,"Just Cause 2",play,12.7,0 -11373749,"Crazy Machines 2",purchase,1.0,0 -11373749,"Crazy Machines 2",play,12.6,0 -11373749,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -11373749,"The Secret of Monkey Island Special Edition",play,12.4,0 -11373749,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -11373749,"Kingdoms of Amalur Reckoning",play,12.4,0 -11373749,"Cook, Serve, Delicious!",purchase,1.0,0 -11373749,"Cook, Serve, Delicious!",play,11.6,0 -11373749,"Deponia The Complete Journey",purchase,1.0,0 -11373749,"Deponia The Complete Journey",play,11.3,0 -11373749,"Game Dev Tycoon",purchase,1.0,0 -11373749,"Game Dev Tycoon",play,11.3,0 -11373749,"Prison Architect",purchase,1.0,0 -11373749,"Prison Architect",play,11.2,0 -11373749,"Bastion",purchase,1.0,0 -11373749,"Bastion",play,11.1,0 -11373749,"Call of Duty Modern Warfare 2",purchase,1.0,0 -11373749,"Call of Duty Modern Warfare 2",play,11.0,0 -11373749,"Tales of Monkey Island Chapter 1 - Launch of the Screaming Narwhal",purchase,1.0,0 -11373749,"Tales of Monkey Island Chapter 1 - Launch of the Screaming Narwhal",play,10.7,0 -11373749,"DiRT 2",purchase,1.0,0 -11373749,"DiRT 2",play,10.5,0 -11373749,"Worms Clan Wars",purchase,1.0,0 -11373749,"Worms Clan Wars",play,10.4,0 -11373749,"Ghostbusters The Video Game",purchase,1.0,0 -11373749,"Ghostbusters The Video Game",play,10.1,0 -11373749,"Monkey Island 2 Special Edition",purchase,1.0,0 -11373749,"Monkey Island 2 Special Edition",play,9.8,0 -11373749,"Vessel",purchase,1.0,0 -11373749,"Vessel",play,9.7,0 -11373749,"Dishonored",purchase,1.0,0 -11373749,"Dishonored",play,9.7,0 -11373749,"4 Elements",purchase,1.0,0 -11373749,"4 Elements",play,9.4,0 -11373749,"Cryostasis",purchase,1.0,0 -11373749,"Cryostasis",play,9.3,0 -11373749,"The Ball",purchase,1.0,0 -11373749,"The Ball",play,9.0,0 -11373749,"TrackMania Stadium",purchase,1.0,0 -11373749,"TrackMania Stadium",play,8.8,0 -11373749,"Aura Fate of the Ages",purchase,1.0,0 -11373749,"Aura Fate of the Ages",play,8.4,0 -11373749,"Cave Story+",purchase,1.0,0 -11373749,"Cave Story+",play,7.9,0 -11373749,"Scribblenauts Unlimited",purchase,1.0,0 -11373749,"Scribblenauts Unlimited",play,7.8,0 -11373749,"Eets",purchase,1.0,0 -11373749,"Eets",play,7.8,0 -11373749,"Trials 2 Second Edition",purchase,1.0,0 -11373749,"Trials 2 Second Edition",play,7.7,0 -11373749,"Grim Legends The Forsaken Bride",purchase,1.0,0 -11373749,"Grim Legends The Forsaken Bride",play,7.7,0 -11373749,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -11373749,"Call of Duty Modern Warfare 2 - Multiplayer",play,7.7,0 -11373749,"Machinarium",purchase,1.0,0 -11373749,"Machinarium",play,7.6,0 -11373749,"Call of Duty Black Ops",purchase,1.0,0 -11373749,"Call of Duty Black Ops",play,7.5,0 -11373749,"Nightmares from the Deep 2 The Siren`s Call",purchase,1.0,0 -11373749,"Nightmares from the Deep 2 The Siren`s Call",play,7.4,0 -11373749,"Banished",purchase,1.0,0 -11373749,"Banished",play,7.2,0 -11373749,"Lara Croft and the Guardian of Light",purchase,1.0,0 -11373749,"Lara Croft and the Guardian of Light",play,7.2,0 -11373749,"Antichamber",purchase,1.0,0 -11373749,"Antichamber",play,7.2,0 -11373749,"Goat Simulator",purchase,1.0,0 -11373749,"Goat Simulator",play,7.0,0 -11373749,"Tales of Monkey Island Chapter 2 - The Siege of Spinner Cay ",purchase,1.0,0 -11373749,"Tales of Monkey Island Chapter 2 - The Siege of Spinner Cay ",play,7.0,0 -11373749,"The Jackbox Party Pack",purchase,1.0,0 -11373749,"The Jackbox Party Pack",play,7.0,0 -11373749,"Abyss The Wraiths of Eden",purchase,1.0,0 -11373749,"Abyss The Wraiths of Eden",play,6.8,0 -11373749,"Anodyne",purchase,1.0,0 -11373749,"Anodyne",play,6.7,0 -11373749,"Tales of Monkey Island Chapter 3 - Lair of the Leviathan ",purchase,1.0,0 -11373749,"Tales of Monkey Island Chapter 3 - Lair of the Leviathan ",play,6.7,0 -11373749,"Penumbra Overture",purchase,1.0,0 -11373749,"Penumbra Overture",play,6.6,0 -11373749,"Singularity",purchase,1.0,0 -11373749,"Singularity",play,6.6,0 -11373749,"Osmos",purchase,1.0,0 -11373749,"Osmos",play,6.5,0 -11373749,"The Maw",purchase,1.0,0 -11373749,"The Maw",play,6.5,0 -11373749,"Psychonauts",purchase,1.0,0 -11373749,"Psychonauts",play,6.1,0 -11373749,"Poker Night at the Inventory",purchase,1.0,0 -11373749,"Poker Night at the Inventory",play,5.9,0 -11373749,"Penumbra Black Plague",purchase,1.0,0 -11373749,"Penumbra Black Plague",play,5.7,0 -11373749,"Sinister City",purchase,1.0,0 -11373749,"Sinister City",play,5.6,0 -11373749,"Puzzle Agent",purchase,1.0,0 -11373749,"Puzzle Agent",play,5.6,0 -11373749,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -11373749,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,5.5,0 -11373749,"Counter-Strike Global Offensive",purchase,1.0,0 -11373749,"Counter-Strike Global Offensive",play,5.5,0 -11373749,"Cargo! - The quest for gravity",purchase,1.0,0 -11373749,"Cargo! - The quest for gravity",play,5.4,0 -11373749,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -11373749,"Rocketbirds Hardboiled Chicken",play,5.3,0 -11373749,"Atom Zombie Smasher ",purchase,1.0,0 -11373749,"Atom Zombie Smasher ",play,5.3,0 -11373749,"Nightmares from the Deep The Cursed Heart",purchase,1.0,0 -11373749,"Nightmares from the Deep The Cursed Heart",play,5.3,0 -11373749,"Papers, Please",purchase,1.0,0 -11373749,"Papers, Please",play,5.2,0 -11373749,"Insanely Twisted Shadow Planet",purchase,1.0,0 -11373749,"Insanely Twisted Shadow Planet",play,5.1,0 -11373749,"Surgeon Simulator",purchase,1.0,0 -11373749,"Surgeon Simulator",play,4.9,0 -11373749,"Cities Skylines",purchase,1.0,0 -11373749,"Cities Skylines",play,4.7,0 -11373749,"Alchemy Mysteries Prague Legends",purchase,1.0,0 -11373749,"Alchemy Mysteries Prague Legends",play,4.6,0 -11373749,"Clockwork Tales Of Glass and Ink",purchase,1.0,0 -11373749,"Clockwork Tales Of Glass and Ink",play,4.5,0 -11373749,"CID The Dummy",purchase,1.0,0 -11373749,"CID The Dummy",play,4.4,0 -11373749,"Tales of Monkey Island Chapter 4 - The Trial and Execution of Guybrush Threepwood ",purchase,1.0,0 -11373749,"Tales of Monkey Island Chapter 4 - The Trial and Execution of Guybrush Threepwood ",play,4.4,0 -11373749,"Portal",purchase,1.0,0 -11373749,"Portal",play,4.4,0 -11373749,"Puzzle Agent 2",purchase,1.0,0 -11373749,"Puzzle Agent 2",play,4.3,0 -11373749,"Torchlight II",purchase,1.0,0 -11373749,"Torchlight II",play,4.2,0 -11373749,"9 Clues The Secret of Serpent Creek",purchase,1.0,0 -11373749,"9 Clues The Secret of Serpent Creek",play,4.2,0 -11373749,"The Tiny Bang Story",purchase,1.0,0 -11373749,"The Tiny Bang Story",play,4.2,0 -11373749,"Braid",purchase,1.0,0 -11373749,"Braid",play,4.1,0 -11373749,"VVVVVV",purchase,1.0,0 -11373749,"VVVVVV",play,4.0,0 -11373749,"And Yet It Moves",purchase,1.0,0 -11373749,"And Yet It Moves",play,4.0,0 -11373749,"Broken Age",purchase,1.0,0 -11373749,"Broken Age",play,3.9,0 -11373749,"Wallace & Gromit Ep 1 Fright of the Bumblebees",purchase,1.0,0 -11373749,"Wallace & Gromit Ep 1 Fright of the Bumblebees",play,3.8,0 -11373749,"Shoppe Keep",purchase,1.0,0 -11373749,"Shoppe Keep",play,3.6,0 -11373749,"Gone Home",purchase,1.0,0 -11373749,"Gone Home",play,3.4,0 -11373749,"Windosill",purchase,1.0,0 -11373749,"Windosill",play,3.4,0 -11373749,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -11373749,"Plants vs. Zombies Game of the Year",play,3.4,0 -11373749,"Sam & Max 105 Reality 2.0",purchase,1.0,0 -11373749,"Sam & Max 105 Reality 2.0",play,3.3,0 -11373749,"Tales of Monkey Island Chapter 5 - Rise of the Pirate God",purchase,1.0,0 -11373749,"Tales of Monkey Island Chapter 5 - Rise of the Pirate God",play,3.2,0 -11373749,"ibb & obb",purchase,1.0,0 -11373749,"ibb & obb",play,3.2,0 -11373749,"Botanicula",purchase,1.0,0 -11373749,"Botanicula",play,3.2,0 -11373749,"Monaco",purchase,1.0,0 -11373749,"Monaco",play,3.1,0 -11373749,"Obulis",purchase,1.0,0 -11373749,"Obulis",play,2.9,0 -11373749,"Nidhogg",purchase,1.0,0 -11373749,"Nidhogg",play,2.9,0 -11373749,"Sam & Max 106 Bright Side of the Moon",purchase,1.0,0 -11373749,"Sam & Max 106 Bright Side of the Moon",play,2.8,0 -11373749,"Alien Swarm",purchase,1.0,0 -11373749,"Alien Swarm",play,2.7,0 -11373749,"Chime",purchase,1.0,0 -11373749,"Chime",play,2.7,0 -11373749,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -11373749,"RollerCoaster Tycoon 3 Platinum!",play,2.6,0 -11373749,"Sam & Max 101 Culture Shock",purchase,1.0,0 -11373749,"Sam & Max 101 Culture Shock",play,2.6,0 -11373749,"Sam & Max 104 Abe Lincoln Must Die!",purchase,1.0,0 -11373749,"Sam & Max 104 Abe Lincoln Must Die!",play,2.5,0 -11373749,"Ben There, Dan That!",purchase,1.0,0 -11373749,"Ben There, Dan That!",play,2.5,0 -11373749,"Hector Ep 1",purchase,1.0,0 -11373749,"Hector Ep 1",play,2.4,0 -11373749,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -11373749,"Resident Evil 5 / Biohazard 5",play,2.4,0 -11373749,"Dungeon Defenders",purchase,1.0,0 -11373749,"Dungeon Defenders",play,2.3,0 -11373749,"The Wolf Among Us",purchase,1.0,0 -11373749,"The Wolf Among Us",play,2.3,0 -11373749,"Fate of the World",purchase,1.0,0 -11373749,"Fate of the World",play,2.3,0 -11373749,"State of Decay",purchase,1.0,0 -11373749,"State of Decay",play,2.3,0 -11373749,"Dota 2",purchase,1.0,0 -11373749,"Dota 2",play,2.2,0 -11373749,"Contagion",purchase,1.0,0 -11373749,"Contagion",play,2.1,0 -11373749,"Shatter",purchase,1.0,0 -11373749,"Shatter",play,2.0,0 -11373749,"World of Goo",purchase,1.0,0 -11373749,"World of Goo",play,2.0,0 -11373749,"Toki Tori",purchase,1.0,0 -11373749,"Toki Tori",play,1.9,0 -11373749,"The Beginner's Guide",purchase,1.0,0 -11373749,"The Beginner's Guide",play,1.9,0 -11373749,"Octodad Dadliest Catch",purchase,1.0,0 -11373749,"Octodad Dadliest Catch",play,1.8,0 -11373749,"TRAUMA",purchase,1.0,0 -11373749,"TRAUMA",play,1.8,0 -11373749,"Trials Evolution Gold Edition",purchase,1.0,0 -11373749,"Trials Evolution Gold Edition",play,1.5,0 -11373749,"Half-Life",purchase,1.0,0 -11373749,"Half-Life",play,1.5,0 -11373749,"Sam & Max 103 The Mole, the Mob and the Meatball",purchase,1.0,0 -11373749,"Sam & Max 103 The Mole, the Mob and the Meatball",play,1.5,0 -11373749,"Penumbra Requiem",purchase,1.0,0 -11373749,"Penumbra Requiem",play,1.5,0 -11373749,"Spectraball",purchase,1.0,0 -11373749,"Spectraball",play,1.5,0 -11373749,"Plain Sight",purchase,1.0,0 -11373749,"Plain Sight",play,1.4,0 -11373749,"The Cave",purchase,1.0,0 -11373749,"The Cave",play,1.4,0 -11373749,"Crayon Physics Deluxe",purchase,1.0,0 -11373749,"Crayon Physics Deluxe",play,1.4,0 -11373749,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -11373749,"Sonic & All-Stars Racing Transformed",play,1.4,0 -11373749,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -11373749,"Just Cause 2 Multiplayer Mod",play,1.3,0 -11373749,"Garry's Mod",purchase,1.0,0 -11373749,"Garry's Mod",play,1.3,0 -11373749,"Blocks That Matter",purchase,1.0,0 -11373749,"Blocks That Matter",play,1.1,0 -11373749,"Time Gentlemen, Please!",purchase,1.0,0 -11373749,"Time Gentlemen, Please!",play,1.0,0 -11373749,"Trine 2",purchase,1.0,0 -11373749,"Trine 2",play,1.0,0 -11373749,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -11373749,"F.E.A.R. 2 Project Origin",play,0.9,0 -11373749,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -11373749,"Dark Souls Prepare to Die Edition",play,0.9,0 -11373749,"Blur",purchase,1.0,0 -11373749,"Blur",play,0.9,0 -11373749,"YOU DON'T KNOW JACK Vol. 1 XL",purchase,1.0,0 -11373749,"YOU DON'T KNOW JACK Vol. 1 XL",play,0.8,0 -11373749,"Unturned",purchase,1.0,0 -11373749,"Unturned",play,0.8,0 -11373749,"Port of Call",purchase,1.0,0 -11373749,"Port of Call",play,0.8,0 -11373749,"Magicka",purchase,1.0,0 -11373749,"Magicka",play,0.7,0 -11373749,"The Stanley Parable",purchase,1.0,0 -11373749,"The Stanley Parable",play,0.7,0 -11373749,"Sam & Max 102 Situation Comedy",purchase,1.0,0 -11373749,"Sam & Max 102 Situation Comedy",play,0.7,0 -11373749,"LEGO Worlds",purchase,1.0,0 -11373749,"LEGO Worlds",play,0.7,0 -11373749,"Zeno Clash",purchase,1.0,0 -11373749,"Zeno Clash",play,0.7,0 -11373749,"FORCED",purchase,1.0,0 -11373749,"FORCED",play,0.6,0 -11373749,"Hydrophobia Prophecy",purchase,1.0,0 -11373749,"Hydrophobia Prophecy",play,0.6,0 -11373749,"Gravilon",purchase,1.0,0 -11373749,"Gravilon",play,0.6,0 -11373749,"The Longest Journey",purchase,1.0,0 -11373749,"The Longest Journey",play,0.6,0 -11373749,"Shadow Puppeteer",purchase,1.0,0 -11373749,"Shadow Puppeteer",play,0.6,0 -11373749,"The Path - Prologue",purchase,1.0,0 -11373749,"The Path - Prologue",play,0.6,0 -11373749,"The Misadventures of P.B. Winterbottom",purchase,1.0,0 -11373749,"The Misadventures of P.B. Winterbottom",play,0.4,0 -11373749,"Vertiginous Golf",purchase,1.0,0 -11373749,"Vertiginous Golf",play,0.4,0 -11373749,"Counter-Strike Source",purchase,1.0,0 -11373749,"Counter-Strike Source",play,0.4,0 -11373749,"BattleBlock Theater",purchase,1.0,0 -11373749,"BattleBlock Theater",play,0.4,0 -11373749,"EDGE",purchase,1.0,0 -11373749,"EDGE",play,0.4,0 -11373749,"Shank 2",purchase,1.0,0 -11373749,"Shank 2",play,0.3,0 -11373749,"Jolly Rover",purchase,1.0,0 -11373749,"Jolly Rover",play,0.3,0 -11373749,"Fallout New Vegas",purchase,1.0,0 -11373749,"Fallout New Vegas",play,0.3,0 -11373749,"Team Fortress Classic",purchase,1.0,0 -11373749,"Team Fortress Classic",play,0.3,0 -11373749,"Orcs Must Die!",purchase,1.0,0 -11373749,"Orcs Must Die!",play,0.3,0 -11373749,"Tomb Raider I",purchase,1.0,0 -11373749,"Tomb Raider I",play,0.3,0 -11373749,"RUSH",purchase,1.0,0 -11373749,"RUSH",play,0.2,0 -11373749,"Sid Meier's Civilization IV",purchase,1.0,0 -11373749,"Sid Meier's Civilization IV",play,0.1,0 -11373749,"Half-Life 2 Episode Two",purchase,1.0,0 -11373749,"Borderlands",purchase,1.0,0 -11373749,"Frozen Synapse",purchase,1.0,0 -11373749,"The Movies Stunts and Effects",purchase,1.0,0 -11373749,"Prince of Persia",purchase,1.0,0 -11373749,"Hitman Codename 47",purchase,1.0,0 -11373749,"Blue Toad Murder Files - The Mysteries of Little Riddle",purchase,1.0,0 -11373749,"7 Grand Steps, Step 1 What Ancients Begat",purchase,1.0,0 -11373749,"Afterfall InSanity Extended Edition",purchase,1.0,0 -11373749,"AirBuccaneers",purchase,1.0,0 -11373749,"Alan Wake's American Nightmare",purchase,1.0,0 -11373749,"Aliens vs. Predator",purchase,1.0,0 -11373749,"Alter Ego",purchase,1.0,0 -11373749,"Always Sometimes Monsters",purchase,1.0,0 -11373749,"Amnesia The Dark Descent",purchase,1.0,0 -11373749,"Anomaly Korea",purchase,1.0,0 -11373749,"Awesomenauts",purchase,1.0,0 -11373749,"Back to Bed",purchase,1.0,0 -11373749,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -11373749,"BEEP",purchase,1.0,0 -11373749,"Beware Planet Earth",purchase,1.0,0 -11373749,"BioShock 2",purchase,1.0,0 -11373749,"BioShock Infinite",purchase,1.0,0 -11373749,"Blackwell Epiphany",purchase,1.0,0 -11373749,"Borderlands 2",purchase,1.0,0 -11373749,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -11373749,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -11373749,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -11373749,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -11373749,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -11373749,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -11373749,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -11373749,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -11373749,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -11373749,"Broken Sword 5 - the Serpent's Curse",purchase,1.0,0 -11373749,"Brtal Legend",purchase,1.0,0 -11373749,"Call of Juarez Gunslinger",purchase,1.0,0 -11373749,"Capsized",purchase,1.0,0 -11373749,"Chaser",purchase,1.0,0 -11373749,"Child of Light",purchase,1.0,0 -11373749,"Chucks Challenge 3D",purchase,1.0,0 -11373749,"Closure",purchase,1.0,0 -11373749,"Cogs",purchase,1.0,0 -11373749,"Company of Heroes",purchase,1.0,0 -11373749,"Company of Heroes (New Steam Version)",purchase,1.0,0 -11373749,"Company of Heroes Opposing Fronts",purchase,1.0,0 -11373749,"Company of Heroes Tales of Valor",purchase,1.0,0 -11373749,"Cortex Command",purchase,1.0,0 -11373749,"Counter-Strike",purchase,1.0,0 -11373749,"Crash Time II",purchase,1.0,0 -11373749,"Crazy Machines Elements",purchase,1.0,0 -11373749,"Damned",purchase,1.0,0 -11373749,"Darkout",purchase,1.0,0 -11373749,"Darksiders II",purchase,1.0,0 -11373749,"Day of Defeat",purchase,1.0,0 -11373749,"Dead Island",purchase,1.0,0 -11373749,"Deadlight",purchase,1.0,0 -11373749,"Deadlight Original Soundtrack",purchase,1.0,0 -11373749,"Dead Space 2",purchase,1.0,0 -11373749,"Dear Esther",purchase,1.0,0 -11373749,"Deathmatch Classic",purchase,1.0,0 -11373749,"Deep Under the Sky",purchase,1.0,0 -11373749,"Deponia",purchase,1.0,0 -11373749,"Depth Hunter 2 Deep Dive",purchase,1.0,0 -11373749,"DETOUR",purchase,1.0,0 -11373749,"Deus Ex Human Revolution",purchase,1.0,0 -11373749,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -11373749,"Dogfight 1942",purchase,1.0,0 -11373749,"Dogfight 1942 Fire over Africa",purchase,1.0,0 -11373749,"Dogfight 1942 Russia under Siege",purchase,1.0,0 -11373749,"Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald A Whirlwind Heist",purchase,1.0,0 -11373749,"Dreamfall The Longest Journey",purchase,1.0,0 -11373749,"Dreamfall Chapters",purchase,1.0,0 -11373749,"Driver San Francisco",purchase,1.0,0 -11373749,"Duke Nukem Forever",purchase,1.0,0 -11373749,"Dust An Elysian Tail",purchase,1.0,0 -11373749,"Dustforce",purchase,1.0,0 -11373749,"English Country Tune",purchase,1.0,0 -11373749,"F.E.A.R.",purchase,1.0,0 -11373749,"F.E.A.R. 3",purchase,1.0,0 -11373749,"F.E.A.R. Extraction Point",purchase,1.0,0 -11373749,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -11373749,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -11373749,"Fallout New Vegas Dead Money",purchase,1.0,0 -11373749,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -11373749,"Forge",purchase,1.0,0 -11373749,"From Dust",purchase,1.0,0 -11373749,"Genesis Rising",purchase,1.0,0 -11373749,"Giana Sisters Twisted Dreams",purchase,1.0,0 -11373749,"Gish",purchase,1.0,0 -11373749,"Gravi",purchase,1.0,0 -11373749,"Greed Corp",purchase,1.0,0 -11373749,"Grow Home",purchase,1.0,0 -11373749,"Half-Life 2 Deathmatch",purchase,1.0,0 -11373749,"Half-Life 2 Episode One",purchase,1.0,0 -11373749,"Half-Life 2 Lost Coast",purchase,1.0,0 -11373749,"Half-Life Blue Shift",purchase,1.0,0 -11373749,"Half-Life Opposing Force",purchase,1.0,0 -11373749,"Hammerfight",purchase,1.0,0 -11373749,"Hammerwatch",purchase,1.0,0 -11373749,"Hard Reset",purchase,1.0,0 -11373749,"Hard Reset Exile DLC",purchase,1.0,0 -11373749,"Hector Ep 2",purchase,1.0,0 -11373749,"Hector Ep 3",purchase,1.0,0 -11373749,"Helldorado",purchase,1.0,0 -11373749,"Hero Siege",purchase,1.0,0 -11373749,"Hitman 2 Silent Assassin",purchase,1.0,0 -11373749,"Hitman Absolution",purchase,1.0,0 -11373749,"Hitman Blood Money",purchase,1.0,0 -11373749,"Home",purchase,1.0,0 -11373749,"Homefront",purchase,1.0,0 -11373749,"Hotline Miami",purchase,1.0,0 -11373749,"Ichi",purchase,1.0,0 -11373749,"Incredipede",purchase,1.0,0 -11373749,"Intrusion 2",purchase,1.0,0 -11373749,"Iron Brigade",purchase,1.0,0 -11373749,"Jurassic Park The Game",purchase,1.0,0 -11373749,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -11373749,"Kane & Lynch Dead Men",purchase,1.0,0 -11373749,"Legend of Grimrock",purchase,1.0,0 -11373749,"LEGO The Lord of the Rings",purchase,1.0,0 -11373749,"LIMBO",purchase,1.0,0 -11373749,"Little Inferno",purchase,1.0,0 -11373749,"Magicka Final Frontier",purchase,1.0,0 -11373749,"Magicka Frozen Lake",purchase,1.0,0 -11373749,"Magicka Nippon",purchase,1.0,0 -11373749,"Magicka Party Robes",purchase,1.0,0 -11373749,"Magicka The Watchtower",purchase,1.0,0 -11373749,"Magicka Vietnam",purchase,1.0,0 -11373749,"Magicka Wizard's Survival Kit",purchase,1.0,0 -11373749,"Maia",purchase,1.0,0 -11373749,"Mark of the Ninja",purchase,1.0,0 -11373749,"Mata Hari",purchase,1.0,0 -11373749,"Megabyte Punch",purchase,1.0,0 -11373749,"Men of War Condemned Heroes",purchase,1.0,0 -11373749,"Metro 2033",purchase,1.0,0 -11373749,"Metro 2033 Redux",purchase,1.0,0 -11373749,"Metro Last Light Redux",purchase,1.0,0 -11373749,"Midnight Club II",purchase,1.0,0 -11373749,"MURDERED SOUL SUSPECT",purchase,1.0,0 -11373749,"NightSky",purchase,1.0,0 -11373749,"Nikopol Secrets of the Immortals",purchase,1.0,0 -11373749,"Nimbus",purchase,1.0,0 -11373749,"Numen Contest of Heroes",purchase,1.0,0 -11373749,"Offspring Fling!",purchase,1.0,0 -11373749,"Oil Rush",purchase,1.0,0 -11373749,"Organ Trail Director's Cut",purchase,1.0,0 -11373749,"Papo & Yo",purchase,1.0,0 -11373749,"Patch testing for Chivalry",purchase,1.0,0 -11373749,"PAYDAY 2",purchase,1.0,0 -11373749,"Pid ",purchase,1.0,0 -11373749,"Potatoman Seeks the Troof",purchase,1.0,0 -11373749,"Pressure",purchase,1.0,0 -11373749,"Primordia",purchase,1.0,0 -11373749,"Proteus",purchase,1.0,0 -11373749,"Psychonauts Demo",purchase,1.0,0 -11373749,"Quantum Conundrum",purchase,1.0,0 -11373749,"RAGE",purchase,1.0,0 -11373749,"Really Big Sky",purchase,1.0,0 -11373749,"Red Faction Armageddon",purchase,1.0,0 -11373749,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -11373749,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -11373749,"Revenge of the Titans",purchase,1.0,0 -11373749,"Ricochet",purchase,1.0,0 -11373749,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -11373749,"Rock of Ages",purchase,1.0,0 -11373749,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -11373749,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -11373749,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -11373749,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -11373749,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -11373749,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -11373749,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -11373749,"Samorost 2",purchase,1.0,0 -11373749,"Scoregasm",purchase,1.0,0 -11373749,"Secret Files Tunguska",purchase,1.0,0 -11373749,"Shadowgrounds",purchase,1.0,0 -11373749,"Shadowgrounds Survivor",purchase,1.0,0 -11373749,"Sideway",purchase,1.0,0 -11373749,"Sid Meier's Civilization IV",purchase,1.0,0 -11373749,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -11373749,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -11373749,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -11373749,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -11373749,"Sid Meier's Civilization V",purchase,1.0,0 -11373749,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -11373749,"Snapshot",purchase,1.0,0 -11373749,"Sniper Ghost Warrior",purchase,1.0,0 -11373749,"Sniper Elite V2",purchase,1.0,0 -11373749,"South Park The Stick of Truth",purchase,1.0,0 -11373749,"SpaceChem",purchase,1.0,0 -11373749,"Spec Ops The Line",purchase,1.0,0 -11373749,"Starseed Pilgrim",purchase,1.0,0 -11373749,"State of Decay - Breakdown",purchase,1.0,0 -11373749,"Steel Storm Burning Retribution",purchase,1.0,0 -11373749,"Still Life",purchase,1.0,0 -11373749,"STORM Frontline Nation",purchase,1.0,0 -11373749,"Supreme Commander 2",purchase,1.0,0 -11373749,"Tengami",purchase,1.0,0 -11373749,"The Bard's Tale",purchase,1.0,0 -11373749,"The Basement Collection",purchase,1.0,0 -11373749,"The Binding of Isaac",purchase,1.0,0 -11373749,"The Book of Unwritten Tales The Critter Chronicles",purchase,1.0,0 -11373749,"The Chronicles of Riddick Assault on Dark Athena",purchase,1.0,0 -11373749,"The Dead Linger",purchase,1.0,0 -11373749,"The Dream Machine",purchase,1.0,0 -11373749,"The Dream Machine Chapter 3",purchase,1.0,0 -11373749,"The Dream Machine Chapter 4",purchase,1.0,0 -11373749,"The Dream Machine Chapter 5",purchase,1.0,0 -11373749,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -11373749,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -11373749,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -11373749,"The Maw Brute Force",purchase,1.0,0 -11373749,"The Maw River Redirect",purchase,1.0,0 -11373749,"The Night of the Rabbit",purchase,1.0,0 -11373749,"The Novelist",purchase,1.0,0 -11373749,"The Raven - Legacy of a Master Thief",purchase,1.0,0 -11373749,"The Swapper",purchase,1.0,0 -11373749,"The Whispered World",purchase,1.0,0 -11373749,"The Whispered World Special Edition",purchase,1.0,0 -11373749,"Thief",purchase,1.0,0 -11373749,"Thomas Was Alone",purchase,1.0,0 -11373749,"Ticket to Ride",purchase,1.0,0 -11373749,"Ticket to Ride - USA 1910",purchase,1.0,0 -11373749,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -11373749,"Titan Quest",purchase,1.0,0 -11373749,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -11373749,"Tomb Raider Anniversary",purchase,1.0,0 -11373749,"Tomb Raider Chronicles",purchase,1.0,0 -11373749,"Tomb Raider Legend",purchase,1.0,0 -11373749,"Tomb Raider The Last Revelation",purchase,1.0,0 -11373749,"Tomb Raider Underworld",purchase,1.0,0 -11373749,"Tomb Raider II",purchase,1.0,0 -11373749,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -11373749,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -11373749,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -11373749,"Tower Wars",purchase,1.0,0 -11373749,"Towns",purchase,1.0,0 -11373749,"Toy Soldiers",purchase,1.0,0 -11373749,"Unepic",purchase,1.0,0 -11373749,"Valdis Story Abyssal City",purchase,1.0,0 -11373749,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -11373749,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -11373749,"Wasteland Angel",purchase,1.0,0 -11373749,"Where is my Heart?",purchase,1.0,0 -11373749,"Wolfenstein",purchase,1.0,0 -11373749,"Xotic",purchase,1.0,0 -11373749,"YOU DON'T KNOW JACK HEADRUSH",purchase,1.0,0 -11373749,"YOU DON'T KNOW JACK MOVIES",purchase,1.0,0 -11373749,"YOU DON'T KNOW JACK SPORTS",purchase,1.0,0 -11373749,"YOU DON'T KNOW JACK TELEVISION",purchase,1.0,0 -11373749,"YOU DON'T KNOW JACK Vol. 2",purchase,1.0,0 -11373749,"YOU DON'T KNOW JACK Vol. 3",purchase,1.0,0 -11373749,"YOU DON'T KNOW JACK Vol. 4 The Ride",purchase,1.0,0 -140293612,"Dota 2",purchase,1.0,0 -140293612,"Dota 2",play,278.0,0 -187851224,"Dota 2",purchase,1.0,0 -187851224,"Dota 2",play,240.0,0 -187851224,"Simply Chess",purchase,1.0,0 -192921532,"Dota 2",purchase,1.0,0 -192921532,"Dota 2",play,6.9,0 -192921532,"Unturned",purchase,1.0,0 -192921532,"Unturned",play,1.2,0 -54103616,"Counter-Strike Global Offensive",purchase,1.0,0 -54103616,"Counter-Strike Global Offensive",play,1028.0,0 -54103616,"Counter-Strike",purchase,1.0,0 -54103616,"Counter-Strike",play,1008.0,0 -54103616,"Left 4 Dead",purchase,1.0,0 -54103616,"Left 4 Dead",play,148.0,0 -54103616,"The Sims(TM) 3",purchase,1.0,0 -54103616,"The Sims(TM) 3",play,108.0,0 -54103616,"Team Fortress 2",purchase,1.0,0 -54103616,"Team Fortress 2",play,72.0,0 -54103616,"H1Z1",purchase,1.0,0 -54103616,"H1Z1",play,36.0,0 -54103616,"The Elder Scrolls V Skyrim",purchase,1.0,0 -54103616,"The Elder Scrolls V Skyrim",play,35.0,0 -54103616,"Counter-Strike Source",purchase,1.0,0 -54103616,"Counter-Strike Source",play,32.0,0 -54103616,"Borderlands 2",purchase,1.0,0 -54103616,"Borderlands 2",play,21.0,0 -54103616,"PAYDAY The Heist",purchase,1.0,0 -54103616,"PAYDAY The Heist",play,16.0,0 -54103616,"Left 4 Dead 2",purchase,1.0,0 -54103616,"Left 4 Dead 2",play,15.8,0 -54103616,"Need for Speed Undercover",purchase,1.0,0 -54103616,"Need for Speed Undercover",play,15.8,0 -54103616,"Battlefield Bad Company 2",purchase,1.0,0 -54103616,"Battlefield Bad Company 2",play,8.6,0 -54103616,"EasyAntiCheat eSports",purchase,1.0,0 -54103616,"EasyAntiCheat eSports",play,7.8,0 -54103616,"Portal 2",purchase,1.0,0 -54103616,"Portal 2",play,7.3,0 -54103616,"Dota 2",purchase,1.0,0 -54103616,"Dota 2",play,3.1,0 -54103616,"Alien Swarm",purchase,1.0,0 -54103616,"Alien Swarm",play,1.9,0 -54103616,"Terraria",purchase,1.0,0 -54103616,"Terraria",play,1.7,0 -54103616,"Commandos 3 Destination Berlin",purchase,1.0,0 -54103616,"Commandos 3 Destination Berlin",play,1.1,0 -54103616,"Age of Chivalry",purchase,1.0,0 -54103616,"Age of Chivalry",play,0.6,0 -54103616,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -54103616,"Counter-Strike Condition Zero Deleted Scenes",play,0.4,0 -54103616,"Counter-Strike Condition Zero",purchase,1.0,0 -54103616,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -54103616,"Clans",purchase,1.0,0 -54103616,"Dead Island Epidemic",purchase,1.0,0 -54103616,"H1Z1 Test Server",purchase,1.0,0 -54103616,"Half-Life 2 Deathmatch",purchase,1.0,0 -54103616,"Half-Life 2 Lost Coast",purchase,1.0,0 -54103616,"Killing Floor",purchase,1.0,0 -54103616,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -54103616,"Uncrowded",purchase,1.0,0 -222277839,"Dota 2",purchase,1.0,0 -222277839,"Dota 2",play,86.0,0 -298547051,"SMITE",purchase,1.0,0 -298547051,"SMITE",play,33.0,0 -298547051,"Team Fortress 2",purchase,1.0,0 -298547051,"Team Fortress 2",play,3.3,0 -298547051,"Dota 2",purchase,1.0,0 -298547051,"Dota 2",play,0.3,0 -298547051,"Warface",purchase,1.0,0 -264253640,"Dota 2",purchase,1.0,0 -264253640,"Dota 2",play,142.0,0 -264253640,"War Inc. Battlezone",purchase,1.0,0 -264253640,"War Inc. Battlezone",play,6.4,0 -264253640,"Labyronia RPG",purchase,1.0,0 -264253640,"Labyronia RPG",play,5.9,0 -264253640,"Aftermath",purchase,1.0,0 -264253640,"Aftermath",play,4.9,0 -264253640,"Warframe",purchase,1.0,0 -264253640,"Warframe",play,4.2,0 -264253640,"sZone-Online",purchase,1.0,0 -264253640,"sZone-Online",play,1.9,0 -264253640,"Archeblade",purchase,1.0,0 -264253640,"Archeblade",play,1.9,0 -264253640,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -264253640,"Tom Clancy's Ghost Recon Phantoms - NA",play,1.1,0 -264253640,"Fishing Planet",purchase,1.0,0 -264253640,"Fishing Planet",play,0.9,0 -264253640,"Happy Wars",purchase,1.0,0 -264253640,"Happy Wars",play,0.7,0 -264253640,"DiggerOnline",purchase,1.0,0 -264253640,"DiggerOnline",play,0.4,0 -264253640,"the static speaks my name",purchase,1.0,0 -264253640,"the static speaks my name",play,0.2,0 -264253640,"Pyramid Raid",purchase,1.0,0 -264253640,"Aura Kingdom",purchase,1.0,0 -264253640,"Strife",purchase,1.0,0 -264253640,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -125718844,"Dota 2",purchase,1.0,0 -125718844,"Dota 2",play,1.1,0 -230599183,"Dota 2",purchase,1.0,0 -230599183,"Dota 2",play,2.3,0 -280061602,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -280061602,"METAL GEAR SOLID V GROUND ZEROES",play,3.0,0 -38763767,"Counter-Strike",purchase,1.0,0 -38763767,"Counter-Strike",play,0.8,0 -38763767,"Counter-Strike Condition Zero",purchase,1.0,0 -38763767,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -38763767,"Day of Defeat",purchase,1.0,0 -38763767,"Deathmatch Classic",purchase,1.0,0 -38763767,"Ricochet",purchase,1.0,0 -164543231,"Garry's Mod",purchase,1.0,0 -164543231,"Garry's Mod",play,105.0,0 -164543231,"Team Fortress 2",purchase,1.0,0 -164543231,"Team Fortress 2",play,30.0,0 -164543231,"No More Room in Hell",purchase,1.0,0 -164543231,"No More Room in Hell",play,25.0,0 -164543231,"Unturned",purchase,1.0,0 -164543231,"Unturned",play,14.9,0 -164543231,"Arma 2",purchase,1.0,0 -164543231,"Arma 2",play,10.9,0 -164543231,"Counter-Strike Global Offensive",purchase,1.0,0 -164543231,"Counter-Strike Global Offensive",play,7.4,0 -164543231,"Tactical Intervention",purchase,1.0,0 -164543231,"Tactical Intervention",play,7.4,0 -164543231,"Robocraft",purchase,1.0,0 -164543231,"Robocraft",play,5.6,0 -164543231,"Saints Row The Third",purchase,1.0,0 -164543231,"Saints Row The Third",play,3.4,0 -164543231,"Heroes & Generals",purchase,1.0,0 -164543231,"Heroes & Generals",play,2.0,0 -164543231,"Dota 2",purchase,1.0,0 -164543231,"Dota 2",play,0.4,0 -211277578,"The Way of Life Free Edition",purchase,1.0,0 -214167822,"Bad Rats",purchase,1.0,0 -163617342,"Dota 2",purchase,1.0,0 -163617342,"Dota 2",play,891.0,0 -163617342,"Counter-Strike Global Offensive",purchase,1.0,0 -163617342,"Counter-Strike Global Offensive",play,853.0,0 -163617342,"Heroes & Generals",purchase,1.0,0 -163617342,"Heroes & Generals",play,3.3,0 -163617342,"Loadout",purchase,1.0,0 -163617342,"Loadout",play,3.1,0 -163617342,"Fishing Planet",purchase,1.0,0 -163617342,"Fishing Planet",play,1.9,0 -163617342,"World of Guns Gun Disassembly",purchase,1.0,0 -163617342,"World of Guns Gun Disassembly",play,0.8,0 -163617342,"sZone-Online",purchase,1.0,0 -163617342,"sZone-Online",play,0.8,0 -163617342,"Quake Live",purchase,1.0,0 -163617342,"Quake Live",play,0.2,0 -163617342,"Fractured Space",purchase,1.0,0 -163617342,"Fractured Space",play,0.2,0 -163617342,"Soccer Manager 2016",purchase,1.0,0 -163617342,"Cry of Fear",purchase,1.0,0 -163617342,"Dead Island Epidemic",purchase,1.0,0 -163617342,"Fistful of Frags",purchase,1.0,0 -163617342,"Gotham City Impostors Free To Play",purchase,1.0,0 -163617342,"No More Room in Hell",purchase,1.0,0 -163617342,"Ragnarok",purchase,1.0,0 -163617342,"Ragnarok Online 2",purchase,1.0,0 -163617342,"Survarium",purchase,1.0,0 -163617342,"theHunter",purchase,1.0,0 -163617342,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -163617342,"Tribes Ascend",purchase,1.0,0 -163617342,"Velvet Assassin",purchase,1.0,0 -295931968,"Team Fortress 2",purchase,1.0,0 -295931968,"Team Fortress 2",play,6.6,0 -196354657,"APB Reloaded",purchase,1.0,0 -165034415,"Dota 2",purchase,1.0,0 -165034415,"Dota 2",play,3.6,0 -298389371,"Counter-Strike Global Offensive",purchase,1.0,0 -298389371,"Counter-Strike Global Offensive",play,231.0,0 -298389371,"H1Z1",purchase,1.0,0 -298389371,"H1Z1",play,6.6,0 -298389371,"H1Z1 Test Server",purchase,1.0,0 -27543430,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -27543430,"F.E.A.R. 2 Project Origin",play,13.6,0 -27543430,"Counter-Strike Source",purchase,1.0,0 -27543430,"Day of Defeat Source",purchase,1.0,0 -27543430,"Half-Life 2 Deathmatch",purchase,1.0,0 -27543430,"Half-Life 2 Lost Coast",purchase,1.0,0 -126640783,"Dota 2",purchase,1.0,0 -126640783,"Dota 2",play,9.9,0 -119410870,"Team Fortress 2",purchase,1.0,0 -119410870,"Team Fortress 2",play,4.5,0 -243440565,"Counter-Strike Nexon Zombies",purchase,1.0,0 -243440565,"Counter-Strike Nexon Zombies",play,42.0,0 -243440565,"Dota 2",purchase,1.0,0 -243440565,"Dota 2",play,0.5,0 -157694162,"Dota 2",purchase,1.0,0 -157694162,"Dota 2",play,2.0,0 -154868247,"Infinite Crisis",purchase,1.0,0 -154868247,"Infinite Crisis",play,0.6,0 -154868247,"Counter-Strike Nexon Zombies",purchase,1.0,0 -154868247,"Black Fire",purchase,1.0,0 -154868247,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -263856756,"Grand Theft Auto V",purchase,1.0,0 -263856756,"Grand Theft Auto V",play,499.0,0 -263856756,"Narcissu 1st & 2nd",purchase,1.0,0 -263856756,"Kung Fury",purchase,1.0,0 -124395695,"Team Fortress 2",purchase,1.0,0 -124395695,"Team Fortress 2",play,29.0,0 -126656629,"Dota 2",purchase,1.0,0 -126656629,"Dota 2",play,2.4,0 -197821092,"Dota 2",purchase,1.0,0 -197821092,"Dota 2",play,1.5,0 -294797577,"Dota 2",purchase,1.0,0 -294797577,"Dota 2",play,10.1,0 -228507886,"Dota 2",purchase,1.0,0 -228507886,"Dota 2",play,6.5,0 -272425320,"Nosgoth",purchase,1.0,0 -272425320,"Nosgoth",play,5.4,0 -272425320,"Spiral Knights",purchase,1.0,0 -49769103,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -49769103,"Call of Duty Modern Warfare 2 - Multiplayer",play,153.0,0 -49769103,"Counter-Strike Source",purchase,1.0,0 -49769103,"Counter-Strike Source",play,63.0,0 -49769103,"Call of Duty Modern Warfare 2",purchase,1.0,0 -49769103,"Call of Duty Modern Warfare 2",play,26.0,0 -49769103,"Arma 2",purchase,1.0,0 -49769103,"Arma 2",play,22.0,0 -49769103,"Left 4 Dead 2",purchase,1.0,0 -49769103,"Left 4 Dead 2",play,1.4,0 -202742019,"Sleeping Dogs",purchase,1.0,0 -202742019,"Sleeping Dogs",play,104.0,0 -202742019,"Mortal Kombat Komplete Edition",purchase,1.0,0 -202742019,"Mortal Kombat Komplete Edition",play,6.3,0 -202742019,"Call of Duty Advanced Warfare",purchase,1.0,0 -202742019,"Call of Duty Advanced Warfare",play,1.5,0 -202742019,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -239397807,"Dota 2",purchase,1.0,0 -239397807,"Dota 2",play,0.4,0 -65758675,"Metro 2033",purchase,1.0,0 -239921853,"Ascend Hand of Kul",purchase,1.0,0 -239921853,"Blender 2.76b",purchase,1.0,0 -239921853,"Heroes & Generals",purchase,1.0,0 -239921853,"Nosgoth",purchase,1.0,0 -239921853,"Solstice Arena",purchase,1.0,0 -239921853,"TERA",purchase,1.0,0 -300601393,"Counter-Strike Global Offensive",purchase,1.0,0 -300601393,"Counter-Strike Global Offensive",play,13.4,0 -300601393,"Euro Truck Simulator 2",purchase,1.0,0 -300601393,"Euro Truck Simulator 2",play,12.0,0 -109278470,"Counter-Strike Global Offensive",purchase,1.0,0 -109278470,"Counter-Strike Global Offensive",play,75.0,0 -109278470,"Half-Life 2 Episode Two",purchase,1.0,0 -109278470,"Half-Life 2 Episode Two",play,0.5,0 -109278470,"Team Fortress 2",purchase,1.0,0 -109278470,"Team Fortress 2",play,0.5,0 -109278470,"Counter-Strike Nexon Zombies",purchase,1.0,0 -109278470,"Realm of the Mad God",purchase,1.0,0 -109278470,"theHunter",purchase,1.0,0 -109278470,"Unturned",purchase,1.0,0 -109278470,"War Thunder",purchase,1.0,0 -109278470,"You Have to Win the Game",purchase,1.0,0 -197509386,"Dota 2",purchase,1.0,0 -197509386,"Dota 2",play,550.0,0 -197509386,"GunZ 2 The Second Duel",purchase,1.0,0 -197509386,"Loadout",purchase,1.0,0 -92842632,"Team Fortress 2",purchase,1.0,0 -92842632,"Team Fortress 2",play,27.0,0 -92842632,"Dungeon Defenders",purchase,1.0,0 -92842632,"Dungeon Defenders",play,16.8,0 -92842632,"Chivalry Medieval Warfare",purchase,1.0,0 -92842632,"Chivalry Medieval Warfare",play,6.9,0 -92842632,"Patch testing for Chivalry",purchase,1.0,0 -103973922,"Empire Total War",purchase,1.0,0 -103973922,"Empire Total War",play,303.0,0 -103973922,"Napoleon Total War",purchase,1.0,0 -103973922,"Napoleon Total War",play,3.5,0 -5270060,"Counter-Strike Source",purchase,1.0,0 -5270060,"Counter-Strike Source",play,12.2,0 -5270060,"Battlefield Bad Company 2",purchase,1.0,0 -5270060,"Battlefield Bad Company 2",play,2.9,0 -5270060,"Team Fortress 2",purchase,1.0,0 -5270060,"Team Fortress 2",play,0.9,0 -5270060,"Pyroblazer",purchase,1.0,0 -5270060,"Pyroblazer",play,0.2,0 -5270060,"Counter-Strike",purchase,1.0,0 -5270060,"Counter-Strike",play,0.1,0 -5270060,"Aion",purchase,1.0,0 -5270060,"Counter-Strike Condition Zero",purchase,1.0,0 -5270060,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -5270060,"Day of Defeat",purchase,1.0,0 -5270060,"Day of Defeat Source",purchase,1.0,0 -5270060,"Deathmatch Classic",purchase,1.0,0 -5270060,"Half-Life",purchase,1.0,0 -5270060,"Half-Life 2 Deathmatch",purchase,1.0,0 -5270060,"Half-Life 2 Lost Coast",purchase,1.0,0 -5270060,"Half-Life Blue Shift",purchase,1.0,0 -5270060,"Half-Life Opposing Force",purchase,1.0,0 -5270060,"Ricochet",purchase,1.0,0 -5270060,"Team Fortress Classic",purchase,1.0,0 -171847029,"Counter-Strike Global Offensive",purchase,1.0,0 -171847029,"Counter-Strike Global Offensive",play,639.0,0 -171847029,"DayZ",purchase,1.0,0 -171847029,"DayZ",play,479.0,0 -171847029,"Heroes & Generals",purchase,1.0,0 -171847029,"Heroes & Generals",play,70.0,0 -171847029,"PAYDAY 2",purchase,1.0,0 -171847029,"PAYDAY 2",play,65.0,0 -171847029,"Grand Theft Auto V",purchase,1.0,0 -171847029,"Grand Theft Auto V",play,33.0,0 -171847029,"War Thunder",purchase,1.0,0 -171847029,"War Thunder",play,30.0,0 -171847029,"Arma 3",purchase,1.0,0 -171847029,"Arma 3",play,19.8,0 -171847029,"Just Cause",purchase,1.0,0 -171847029,"Just Cause",play,16.2,0 -171847029,"H1Z1",purchase,1.0,0 -171847029,"H1Z1",play,11.3,0 -171847029,"Arma 2 Operation Arrowhead",purchase,1.0,0 -171847029,"Arma 2 Operation Arrowhead",play,4.2,0 -171847029,"This War of Mine",purchase,1.0,0 -171847029,"This War of Mine",play,3.9,0 -171847029,"Arma 2",purchase,1.0,0 -171847029,"Arma 2",play,2.3,0 -171847029,"Sniper Elite V2",purchase,1.0,0 -171847029,"Sniper Elite V2",play,1.7,0 -171847029,"Team Fortress 2",purchase,1.0,0 -171847029,"Team Fortress 2",play,1.0,0 -171847029,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -171847029,"Rising Storm/Red Orchestra 2 Multiplayer",play,0.8,0 -171847029,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -171847029,"Just Cause 2 Multiplayer Mod",play,0.8,0 -171847029,"Arma 2 Private Military Company",purchase,1.0,0 -171847029,"Arma 2 Private Military Company",play,0.7,0 -171847029,"Just Cause 2",purchase,1.0,0 -171847029,"Just Cause 2",play,0.7,0 -171847029,"Robocraft",purchase,1.0,0 -171847029,"Robocraft",play,0.5,0 -171847029,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -171847029,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,0.3,0 -171847029,"Arma Cold War Assault",purchase,1.0,0 -171847029,"Arma Cold War Assault",play,0.3,0 -171847029,"Arma 2 DayZ Mod",purchase,1.0,0 -171847029,"Arma 2 British Armed Forces",purchase,1.0,0 -171847029,"Arma 3 Zeus",purchase,1.0,0 -171847029,"H1Z1 Test Server",purchase,1.0,0 -171847029,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -171847029,"This War of Mine - War Child Charity DLC",purchase,1.0,0 -111479516,"Dota 2",purchase,1.0,0 -111479516,"Dota 2",play,865.0,0 -64350600,"Counter-Strike",purchase,1.0,0 -64350600,"Counter-Strike",play,271.0,0 -64350600,"Heroes & Generals",purchase,1.0,0 -64350600,"Heroes & Generals",play,16.7,0 -64350600,"Unturned",purchase,1.0,0 -64350600,"Unturned",play,10.7,0 -64350600,"Left 4 Dead 2",purchase,1.0,0 -64350600,"Left 4 Dead 2",play,8.6,0 -64350600,"La Tale",purchase,1.0,0 -64350600,"La Tale",play,8.4,0 -64350600,"Dota 2",purchase,1.0,0 -64350600,"Dota 2",play,2.4,0 -64350600,"Endless Sky",purchase,1.0,0 -64350600,"Endless Sky",play,2.0,0 -64350600,"Amazing World",purchase,1.0,0 -64350600,"Amazing World",play,1.2,0 -64350600,"Hazard Ops",purchase,1.0,0 -64350600,"Hazard Ops",play,0.7,0 -64350600,"Codename CURE",purchase,1.0,0 -64350600,"Codename CURE",play,0.3,0 -64350600,"Blacklight Retribution",purchase,1.0,0 -64350600,"Blacklight Retribution",play,0.3,0 -64350600,"Arma 2",purchase,1.0,0 -64350600,"Arma 2",play,0.2,0 -64350600,"Quake Live",purchase,1.0,0 -64350600,"Quake Live",play,0.2,0 -64350600,"Electric Highways",purchase,1.0,0 -64350600,"Eternal Fate",purchase,1.0,0 -64350600,"Uebergame",purchase,1.0,0 -64350600,"Curse of Mermos",purchase,1.0,0 -64350600,"Darkest Hour Europe '44-'45",purchase,1.0,0 -64350600,"Day of Defeat",purchase,1.0,0 -64350600,"Deathmatch Classic",purchase,1.0,0 -64350600,"Epic Cards Battle(TCG)",purchase,1.0,0 -64350600,"Gun Monkeys",purchase,1.0,0 -64350600,"Half-Life",purchase,1.0,0 -64350600,"Half-Life Blue Shift",purchase,1.0,0 -64350600,"Half-Life Opposing Force",purchase,1.0,0 -64350600,"Magicka",purchase,1.0,0 -64350600,"Mare Nostrum",purchase,1.0,0 -64350600,"Pirates of Black Cove Gold",purchase,1.0,0 -64350600,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -64350600,"Ricochet",purchase,1.0,0 -64350600,"Sanctum",purchase,1.0,0 -64350600,"Team Fortress Classic",purchase,1.0,0 -64350600,"Trove",purchase,1.0,0 -117217039,"Dota 2",purchase,1.0,0 -117217039,"Dota 2",play,60.0,0 -117217039,"Path of Exile",purchase,1.0,0 -208164637,"Warframe",purchase,1.0,0 -208164637,"Dizzel",purchase,1.0,0 -208164637,"Counter-Strike Nexon Zombies",purchase,1.0,0 -208164637,"Dead Island Epidemic",purchase,1.0,0 -93085014,"R.U.S.E",purchase,1.0,0 -93085014,"R.U.S.E",play,60.0,0 -93085014,"Total War ROME II - Emperor Edition",purchase,1.0,0 -93085014,"Total War ROME II - Emperor Edition",play,31.0,0 -93085014,"Star Wars - Battlefront II",purchase,1.0,0 -93085014,"Star Wars - Battlefront II",play,7.0,0 -93085014,"Stronghold 3",purchase,1.0,0 -93085014,"Stronghold 3",play,3.0,0 -93085014,"R.U.S.E.",purchase,1.0,0 -93085014,"Stronghold HD",purchase,1.0,0 -180331040,"Dota 2",purchase,1.0,0 -180331040,"Dota 2",play,1256.0,0 -180331040,"Warframe",purchase,1.0,0 -180331040,"Cry of Fear",purchase,1.0,0 -180331040,"Nosgoth",purchase,1.0,0 -180596443,"PAYDAY The Heist",purchase,1.0,0 -180596443,"PAYDAY The Heist",play,8.8,0 -180596443,"Pixel Puzzles Japan",purchase,1.0,0 -180596443,"Pixel Puzzles Japan",play,8.8,0 -180596443,"Afterfall InSanity Extended Edition",purchase,1.0,0 -180596443,"Afterfall InSanity Extended Edition",play,2.6,0 -180596443,"Marvel Heroes 2015",purchase,1.0,0 -180596443,"Marvel Heroes 2015",play,1.5,0 -180596443,"Anomaly Warzone Earth",purchase,1.0,0 -180596443,"Anomaly Warzone Earth",play,1.2,0 -180596443,"Woodle Tree Adventures",purchase,1.0,0 -180596443,"Woodle Tree Adventures",play,0.8,0 -180596443,"Deadbreed",purchase,1.0,0 -180596443,"Nosgoth",purchase,1.0,0 -303032390,"XCOM Enemy Unknown",purchase,1.0,0 -303032390,"XCOM Enemy Unknown",play,110.0,0 -150103338,"Dota 2",purchase,1.0,0 -150103338,"Dota 2",play,1.9,0 -289573472,"Free to Play",purchase,1.0,0 -289573472,"GunZ 2 The Second Duel",purchase,1.0,0 -92173524,"Starpoint Gemini 2",purchase,1.0,0 -92173524,"Starpoint Gemini 2",play,1.0,0 -92173524,"Torchlight II",purchase,1.0,0 -92173524,"Torchlight II",play,0.4,0 -92173524,"Dungeon Defenders",purchase,1.0,0 -92173524,"Dungeon Defenders",play,0.3,0 -151229648,"WAKFU",purchase,1.0,0 -151229648,"WAKFU",play,912.0,0 -151229648,"Starbound",purchase,1.0,0 -151229648,"Starbound",play,153.0,0 -151229648,"DayZ",purchase,1.0,0 -151229648,"DayZ",play,79.0,0 -151229648,"Mass Effect 2",purchase,1.0,0 -151229648,"Mass Effect 2",play,29.0,0 -151229648,"Mass Effect",purchase,1.0,0 -151229648,"Mass Effect",play,19.7,0 -151229648,"Clicker Heroes",purchase,1.0,0 -151229648,"Clicker Heroes",play,13.3,0 -151229648,"H1Z1",purchase,1.0,0 -151229648,"H1Z1",play,12.3,0 -151229648,"PlanetSide 2",purchase,1.0,0 -151229648,"PlanetSide 2",play,6.4,0 -151229648,"Marvel Heroes 2015",purchase,1.0,0 -151229648,"Marvel Heroes 2015",play,4.6,0 -151229648,"Left 4 Dead 2",purchase,1.0,0 -151229648,"Left 4 Dead 2",play,2.7,0 -151229648,"PAYDAY The Heist",purchase,1.0,0 -151229648,"PAYDAY The Heist",play,2.6,0 -151229648,"Batman Arkham City GOTY",purchase,1.0,0 -151229648,"Batman Arkham City GOTY",play,2.3,0 -151229648,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -151229648,"S.K.I.L.L. - Special Force 2",play,1.6,0 -151229648,"Warface",purchase,1.0,0 -151229648,"Warface",play,1.4,0 -151229648,"Dirty Bomb",purchase,1.0,0 -151229648,"Dirty Bomb",play,1.0,0 -151229648,"Nosgoth",purchase,1.0,0 -151229648,"Nosgoth",play,0.9,0 -151229648,"Heroes & Generals",purchase,1.0,0 -151229648,"Heroes & Generals",play,0.9,0 -151229648,"Dead Space",purchase,1.0,0 -151229648,"Dead Space",play,0.3,0 -151229648,"Survarium",purchase,1.0,0 -151229648,"Survarium",play,0.3,0 -151229648,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -151229648,"Batman Arkham Asylum GOTY Edition",play,0.3,0 -151229648,"Borderlands",purchase,1.0,0 -151229648,"Borderlands",play,0.3,0 -151229648,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -151229648,"Injustice Gods Among Us Ultimate Edition",play,0.2,0 -151229648,"Path of Exile",purchase,1.0,0 -151229648,"Path of Exile",play,0.2,0 -151229648,"Metro 2033",purchase,1.0,0 -151229648,"Unturned",purchase,1.0,0 -151229648,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -151229648,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -151229648,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -151229648,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -151229648,"Dead Space 2",purchase,1.0,0 -151229648,"H1Z1 Test Server",purchase,1.0,0 -151229648,"Starbound - Unstable",purchase,1.0,0 -151229648,"Warframe",purchase,1.0,0 -253773352,"Unturned",purchase,1.0,0 -253773352,"Unturned",play,0.3,0 -253773352,"APB Reloaded",purchase,1.0,0 -253773352,"Piercing Blow",purchase,1.0,0 -250870371,"Dota 2",purchase,1.0,0 -250870371,"Dota 2",play,0.3,0 -243036117,"AdVenture Capitalist",purchase,1.0,0 -243036117,"Clicker Heroes",purchase,1.0,0 -243036117,"UberStrike",purchase,1.0,0 -175143479,"Dota 2",purchase,1.0,0 -175143479,"Dota 2",play,1.9,0 -56038151,"Marvel Puzzle Quest",purchase,1.0,0 -56038151,"Marvel Puzzle Quest",play,128.0,0 -56038151,"Sid Meier's Civilization V",purchase,1.0,0 -56038151,"Sid Meier's Civilization V",play,72.0,0 -56038151,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -56038151,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,59.0,0 -56038151,"Don't Starve",purchase,1.0,0 -56038151,"Don't Starve",play,58.0,0 -56038151,"Batman Arkham City",purchase,1.0,0 -56038151,"Batman Arkham City",play,46.0,0 -56038151,"The Sims(TM) Medieval",purchase,1.0,0 -56038151,"The Sims(TM) Medieval",play,41.0,0 -56038151,"Bejeweled 3",purchase,1.0,0 -56038151,"Bejeweled 3",play,41.0,0 -56038151,"EVE Online",purchase,1.0,0 -56038151,"EVE Online",play,35.0,0 -56038151,"Borderlands 2",purchase,1.0,0 -56038151,"Borderlands 2",play,21.0,0 -56038151,"Deus Ex Human Revolution",purchase,1.0,0 -56038151,"Deus Ex Human Revolution",play,14.6,0 -56038151,"The Elder Scrolls V Skyrim",purchase,1.0,0 -56038151,"The Elder Scrolls V Skyrim",play,14.6,0 -56038151,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -56038151,"Batman Arkham Asylum GOTY Edition",play,14.5,0 -56038151,"Dead Island",purchase,1.0,0 -56038151,"Dead Island",play,12.9,0 -56038151,"Darksiders",purchase,1.0,0 -56038151,"Darksiders",play,7.0,0 -56038151,"BioShock Infinite",purchase,1.0,0 -56038151,"BioShock Infinite",play,6.6,0 -56038151,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -56038151,"Tom Clancy's Splinter Cell Conviction",play,6.3,0 -56038151,"EDGE",purchase,1.0,0 -56038151,"EDGE",play,5.8,0 -56038151,"The Walking Dead",purchase,1.0,0 -56038151,"The Walking Dead",play,5.7,0 -56038151,"DC Universe Online",purchase,1.0,0 -56038151,"DC Universe Online",play,3.8,0 -56038151,"RIFT",purchase,1.0,0 -56038151,"RIFT",play,3.3,0 -56038151,"Don't Starve Together Beta",purchase,1.0,0 -56038151,"Don't Starve Together Beta",play,3.2,0 -56038151,"Darksiders II",purchase,1.0,0 -56038151,"Darksiders II",play,3.1,0 -56038151,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -56038151,"Star Wars The Force Unleashed Ultimate Sith Edition",play,3.0,0 -56038151,"Command and Conquer 4 Tiberian Twilight",purchase,1.0,0 -56038151,"Command and Conquer 4 Tiberian Twilight",play,2.9,0 -56038151,"Trine 2",purchase,1.0,0 -56038151,"Trine 2",play,2.8,0 -56038151,"Universe Sandbox",purchase,1.0,0 -56038151,"Universe Sandbox",play,2.8,0 -56038151,"Anno 2070",purchase,1.0,0 -56038151,"Anno 2070",play,2.8,0 -56038151,"RAGE",purchase,1.0,0 -56038151,"RAGE",play,2.7,0 -56038151,"Borderlands",purchase,1.0,0 -56038151,"Borderlands",play,2.5,0 -56038151,"LIMBO",purchase,1.0,0 -56038151,"LIMBO",play,2.2,0 -56038151,"SpaceChem",purchase,1.0,0 -56038151,"SpaceChem",play,1.9,0 -56038151,"Transistor",purchase,1.0,0 -56038151,"Transistor",play,1.8,0 -56038151,"Chessmaster",purchase,1.0,0 -56038151,"Chessmaster",play,1.8,0 -56038151,"Age of Empires III Complete Collection",purchase,1.0,0 -56038151,"Age of Empires III Complete Collection",play,1.6,0 -56038151,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -56038151,"Injustice Gods Among Us Ultimate Edition",play,1.5,0 -56038151,"Transformers Fall of Cybertron",purchase,1.0,0 -56038151,"Transformers Fall of Cybertron",play,1.3,0 -56038151,"Audiosurf",purchase,1.0,0 -56038151,"Audiosurf",play,1.2,0 -56038151,"Beat Hazard",purchase,1.0,0 -56038151,"Beat Hazard",play,1.2,0 -56038151,"Brtal Legend",purchase,1.0,0 -56038151,"Brtal Legend",play,1.1,0 -56038151,"Left 4 Dead",purchase,1.0,0 -56038151,"Left 4 Dead",play,1.0,0 -56038151,"Might & Magic Heroes VI",purchase,1.0,0 -56038151,"Might & Magic Heroes VI",play,0.9,0 -56038151,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -56038151,"Warhammer 40,000 Dawn of War II",play,0.8,0 -56038151,"Portal 2",purchase,1.0,0 -56038151,"Portal 2",play,0.8,0 -56038151,"Star Wars The Clone Wars Republic Heroes",purchase,1.0,0 -56038151,"Star Wars The Clone Wars Republic Heroes",play,0.7,0 -56038151,"Prototype",purchase,1.0,0 -56038151,"Prototype",play,0.7,0 -56038151,"Bastion",purchase,1.0,0 -56038151,"Bastion",play,0.5,0 -56038151,"Left 4 Dead 2",purchase,1.0,0 -56038151,"Left 4 Dead 2",play,0.5,0 -56038151,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -56038151,"Star Wars Jedi Knight Jedi Academy",play,0.5,0 -56038151,"DEFCON",purchase,1.0,0 -56038151,"DEFCON",play,0.4,0 -56038151,"Mark of the Ninja",purchase,1.0,0 -56038151,"Mark of the Ninja",play,0.4,0 -56038151,"Mirror's Edge",purchase,1.0,0 -56038151,"Mirror's Edge",play,0.3,0 -56038151,"Dungeon Siege 2",purchase,1.0,0 -56038151,"Dungeon Siege 2",play,0.3,0 -56038151,"Warhammer 40,000 Space Marine",purchase,1.0,0 -56038151,"Warhammer 40,000 Space Marine",play,0.3,0 -56038151,"The Polynomial",purchase,1.0,0 -56038151,"The Polynomial",play,0.3,0 -56038151,"Achron",purchase,1.0,0 -56038151,"Achron",play,0.3,0 -56038151,"Space Pirates and Zombies",purchase,1.0,0 -56038151,"Space Pirates and Zombies",play,0.3,0 -56038151,"Anomaly Warzone Earth",purchase,1.0,0 -56038151,"Anomaly Warzone Earth",play,0.2,0 -56038151,"Star Wars Empire at War Gold",purchase,1.0,0 -56038151,"Star Wars Empire at War Gold",play,0.2,0 -56038151,"Halo Spartan Assault",purchase,1.0,0 -56038151,"Halo Spartan Assault",play,0.2,0 -56038151,"Trapped Dead",purchase,1.0,0 -56038151,"Trapped Dead",play,0.2,0 -56038151,"Tom Clancy's H.A.W.X. 2",purchase,1.0,0 -56038151,"Tom Clancy's H.A.W.X. 2",play,0.2,0 -56038151,"Super Meat Boy",purchase,1.0,0 -56038151,"Super Meat Boy",play,0.2,0 -56038151,"Metro 2033",purchase,1.0,0 -56038151,"Dungeon Siege",purchase,1.0,0 -56038151,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -56038151,"Alan Wake",purchase,1.0,0 -56038151,"Alan Wake's American Nightmare",purchase,1.0,0 -56038151,"Alice Madness Returns",purchase,1.0,0 -56038151,"Aliens vs. Predator",purchase,1.0,0 -56038151,"Alpha Protocol",purchase,1.0,0 -56038151,"A Story About My Uncle",purchase,1.0,0 -56038151,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -56038151,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -56038151,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -56038151,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -56038151,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -56038151,"Batman Arkham City GOTY",purchase,1.0,0 -56038151,"BioShock",purchase,1.0,0 -56038151,"BioShock 2",purchase,1.0,0 -56038151,"BioShock Infinite - Season Pass",purchase,1.0,0 -56038151,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -56038151,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -56038151,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -56038151,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -56038151,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -56038151,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -56038151,"Braid",purchase,1.0,0 -56038151,"BRINK",purchase,1.0,0 -56038151,"Counter-Strike Source",purchase,1.0,0 -56038151,"Crysis",purchase,1.0,0 -56038151,"Crysis Warhead",purchase,1.0,0 -56038151,"Crysis Wars",purchase,1.0,0 -56038151,"Darkspore",purchase,1.0,0 -56038151,"Dead Space",purchase,1.0,0 -56038151,"Dead Space 2",purchase,1.0,0 -56038151,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -56038151,"Dishonored",purchase,1.0,0 -56038151,"Don't Starve Reign of Giants",purchase,1.0,0 -56038151,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -56038151,"Duke Nukem Forever",purchase,1.0,0 -56038151,"Dungeon Siege III",purchase,1.0,0 -56038151,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -56038151,"Fallout New Vegas",purchase,1.0,0 -56038151,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -56038151,"Fallout New Vegas Dead Money",purchase,1.0,0 -56038151,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -56038151,"Far Cry",purchase,1.0,0 -56038151,"Far Cry 2",purchase,1.0,0 -56038151,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -56038151,"Garry's Mod",purchase,1.0,0 -56038151,"Grand Theft Auto",purchase,1.0,0 -56038151,"Grand Theft Auto 2",purchase,1.0,0 -56038151,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -56038151,"Grand Theft Auto San Andreas",purchase,1.0,0 -56038151,"Grand Theft Auto San Andreas",purchase,1.0,0 -56038151,"Grand Theft Auto Vice City",purchase,1.0,0 -56038151,"Grand Theft Auto Vice City",purchase,1.0,0 -56038151,"Grand Theft Auto III",purchase,1.0,0 -56038151,"Grand Theft Auto III",purchase,1.0,0 -56038151,"Grand Theft Auto IV",purchase,1.0,0 -56038151,"Hitman 2 Silent Assassin",purchase,1.0,0 -56038151,"Hitman Absolution",purchase,1.0,0 -56038151,"Hitman Blood Money",purchase,1.0,0 -56038151,"Hitman Codename 47",purchase,1.0,0 -56038151,"Hitman Sniper Challenge",purchase,1.0,0 -56038151,"Hydrophobia Prophecy",purchase,1.0,0 -56038151,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -56038151,"Kane & Lynch Dead Men",purchase,1.0,0 -56038151,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -56038151,"L.A. Noire",purchase,1.0,0 -56038151,"Mass Effect",purchase,1.0,0 -56038151,"Mass Effect 2",purchase,1.0,0 -56038151,"Metro Last Light",purchase,1.0,0 -56038151,"Monkey Island 2 Special Edition",purchase,1.0,0 -56038151,"Need for Speed Hot Pursuit",purchase,1.0,0 -56038151,"Need for Speed SHIFT",purchase,1.0,0 -56038151,"Overlord",purchase,1.0,0 -56038151,"Overlord Raising Hell",purchase,1.0,0 -56038151,"Overlord II",purchase,1.0,0 -56038151,"Perimeter 2 New Earth",purchase,1.0,0 -56038151,"Portal",purchase,1.0,0 -56038151,"Red Faction",purchase,1.0,0 -56038151,"Red Faction Armageddon",purchase,1.0,0 -56038151,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -56038151,"Red Faction II",purchase,1.0,0 -56038151,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -56038151,"Saints Row The Third",purchase,1.0,0 -56038151,"Sanctum 2",purchase,1.0,0 -56038151,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -56038151,"Star Wars - Battlefront II",purchase,1.0,0 -56038151,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -56038151,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -56038151,"Star Wars Dark Forces",purchase,1.0,0 -56038151,"Star Wars Knights of the Old Republic",purchase,1.0,0 -56038151,"Star Wars The Force Unleashed II",purchase,1.0,0 -56038151,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -56038151,"Star Wars Republic Commando",purchase,1.0,0 -56038151,"Star Wars Starfighter",purchase,1.0,0 -56038151,"STORM Frontline Nation",purchase,1.0,0 -56038151,"The Chronicles of Riddick Assault on Dark Athena",purchase,1.0,0 -56038151,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -56038151,"The Walking Dead Season Two",purchase,1.0,0 -56038151,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -56038151,"Tom Clancy's Ghost Recon Advanced Warfighter 2",purchase,1.0,0 -56038151,"Tropico 4",purchase,1.0,0 -56038151,"Two Worlds 2 - Pirates of the Flying Fortress ",purchase,1.0,0 -56038151,"Two Worlds Epic Edition",purchase,1.0,0 -56038151,"Two Worlds II",purchase,1.0,0 -56038151,"Two Worlds II Castle Defense",purchase,1.0,0 -56038151,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -56038151,"Wolfenstein",purchase,1.0,0 -56038151,"X-Tension",purchase,1.0,0 -56038151,"X2 The Threat",purchase,1.0,0 -56038151,"X3 Albion Prelude",purchase,1.0,0 -56038151,"X3 Reunion",purchase,1.0,0 -56038151,"X3 Terran Conflict",purchase,1.0,0 -56038151,"X Beyond the Frontier",purchase,1.0,0 -124884511,"Dota 2",purchase,1.0,0 -124884511,"Dota 2",play,1447.0,0 -124884511,"Unturned",purchase,1.0,0 -124884511,"Unturned",play,0.3,0 -124884511,"Heroes & Generals",purchase,1.0,0 -124884511,"theHunter",purchase,1.0,0 -148928721,"Dota 2",purchase,1.0,0 -148928721,"Dota 2",play,2594.0,0 -148928721,"Counter-Strike Global Offensive",purchase,1.0,0 -148928721,"Counter-Strike Global Offensive",play,51.0,0 -148928721,"SMITE",purchase,1.0,0 -148928721,"SMITE",play,51.0,0 -148928721,"Saints Row IV",purchase,1.0,0 -148928721,"Saints Row IV",play,14.8,0 -148928721,"Quake Live",purchase,1.0,0 -148928721,"Quake Live",play,3.4,0 -148928721,"Tactical Intervention",purchase,1.0,0 -148928721,"Tactical Intervention",play,2.4,0 -148928721,"Archeblade",purchase,1.0,0 -148928721,"Archeblade",play,2.1,0 -148928721,"Team Fortress 2",purchase,1.0,0 -148928721,"Team Fortress 2",play,1.0,0 -148928721,"PAYDAY The Heist",purchase,1.0,0 -148928721,"PAYDAY The Heist",play,0.4,0 -148928721,"War Thunder",purchase,1.0,0 -148928721,"War Thunder",play,0.4,0 -148928721,"Forge",purchase,1.0,0 -148928721,"Forge",play,0.4,0 -148928721,"Free to Play",purchase,1.0,0 -148928721,"Free to Play",play,0.2,0 -148928721,"Panzar",purchase,1.0,0 -148928721,"Unturned",purchase,1.0,0 -150965343,"Dota 2",purchase,1.0,0 -150965343,"Dota 2",play,5.3,0 -46759859,"Counter-Strike Condition Zero",purchase,1.0,0 -46759859,"Counter-Strike Condition Zero",play,490.0,0 -46759859,"Counter-Strike",purchase,1.0,0 -46759859,"Counter-Strike",play,316.0,0 -46759859,"Day of Defeat",purchase,1.0,0 -46759859,"Day of Defeat",play,5.8,0 -46759859,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -46759859,"Counter-Strike Condition Zero Deleted Scenes",play,1.0,0 -46759859,"Deathmatch Classic",purchase,1.0,0 -46759859,"Ricochet",purchase,1.0,0 -268158408,"Unturned",purchase,1.0,0 -268158408,"Unturned",play,5.7,0 -268158408,"War Thunder",purchase,1.0,0 -257377008,"Counter-Strike Global Offensive",purchase,1.0,0 -257377008,"Counter-Strike Global Offensive",play,27.0,0 -257377008,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -257377008,"Call of Duty Black Ops II - Multiplayer",play,4.4,0 -257377008,"Brick-Force",purchase,1.0,0 -257377008,"Brick-Force",play,1.3,0 -257377008,"Call of Duty Black Ops II",purchase,1.0,0 -257377008,"Call of Duty Black Ops II",play,0.3,0 -257377008,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -133262375,"Dota 2",purchase,1.0,0 -133262375,"Dota 2",play,290.0,0 -202092286,"Garry's Mod",purchase,1.0,0 -202092286,"Garry's Mod",play,7.6,0 -136554467,"Dota 2",purchase,1.0,0 -136554467,"Dota 2",play,101.0,0 -136554467,"Counter-Strike Global Offensive",purchase,1.0,0 -136554467,"Counter-Strike Global Offensive",play,63.0,0 -185040259,"Total War ROME II - Emperor Edition",purchase,1.0,0 -185040259,"Total War ROME II - Emperor Edition",play,4.5,0 -287943546,"Team Fortress 2",purchase,1.0,0 -287943546,"Team Fortress 2",play,1.9,0 -287943546,"Heroes of Scene",purchase,1.0,0 -136246724,"Dota 2",purchase,1.0,0 -136246724,"Dota 2",play,0.2,0 -189191657,"Robocraft",purchase,1.0,0 -189191657,"Robocraft",play,133.0,0 -189191657,"Unturned",purchase,1.0,0 -189191657,"Unturned",play,21.0,0 -189191657,"Team Fortress 2",purchase,1.0,0 -189191657,"Team Fortress 2",play,18.3,0 -189191657,"Heroes & Generals",purchase,1.0,0 -189191657,"Heroes & Generals",play,4.4,0 -189191657,"Gear Up",purchase,1.0,0 -189191657,"Gear Up",play,4.3,0 -189191657,"Guns and Robots",purchase,1.0,0 -189191657,"Guns and Robots",play,3.6,0 -189191657,"BLOCKADE 3D",purchase,1.0,0 -235076531,"Empire Total War",purchase,1.0,0 -235076531,"Medieval II Total War",purchase,1.0,0 -41917762,"Counter-Strike Source",purchase,1.0,0 -41917762,"Day of Defeat Source",purchase,1.0,0 -41917762,"Half-Life 2 Deathmatch",purchase,1.0,0 -41917762,"Half-Life 2 Lost Coast",purchase,1.0,0 -57234698,"Dota 2",purchase,1.0,0 -57234698,"Dota 2",play,2.6,0 -57234698,"Dead Island",purchase,1.0,0 -57234698,"Dead Island",play,1.2,0 -57234698,"Torchlight",purchase,1.0,0 -57234698,"Torchlight",play,0.9,0 -57234698,"Titan Quest Immortal Throne",purchase,1.0,0 -57234698,"Titan Quest Immortal Throne",play,0.8,0 -57234698,"Titan Quest",purchase,1.0,0 -57234698,"Titan Quest",play,0.4,0 -198201128,"Middle-earth Shadow of Mordor",purchase,1.0,0 -198201128,"Middle-earth Shadow of Mordor",play,19.2,0 -307949159,"MechWarrior Online",purchase,1.0,0 -55446861,"Counter-Strike Source",purchase,1.0,0 -55446861,"Counter-Strike Source",play,22.0,0 -55446861,"Day of Defeat Source",purchase,1.0,0 -55446861,"Half-Life 2 Deathmatch",purchase,1.0,0 -55446861,"Half-Life 2 Lost Coast",purchase,1.0,0 -2428602,"Dota 2",purchase,1.0,0 -2428602,"Dota 2",play,473.0,0 -2428602,"Counter-Strike",purchase,1.0,0 -2428602,"Counter-Strike",play,1.4,0 -2428602,"Half-Life",purchase,1.0,0 -2428602,"Day of Defeat",purchase,1.0,0 -2428602,"Dead Island Epidemic",purchase,1.0,0 -2428602,"Deathmatch Classic",purchase,1.0,0 -2428602,"Defiance",purchase,1.0,0 -2428602,"Half-Life Blue Shift",purchase,1.0,0 -2428602,"Half-Life Opposing Force",purchase,1.0,0 -2428602,"HAWKEN",purchase,1.0,0 -2428602,"Marvel Heroes 2015",purchase,1.0,0 -2428602,"Ricochet",purchase,1.0,0 -2428602,"Robocraft",purchase,1.0,0 -2428602,"Team Fortress Classic",purchase,1.0,0 -2428602,"Warframe",purchase,1.0,0 -104077418,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -104077418,"Warhammer 40,000 Dawn of War II",play,2.2,0 -252438345,"No More Room in Hell",purchase,1.0,0 -252438345,"No More Room in Hell",play,2.7,0 -252438345,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -252438345,"S.K.I.L.L. - Special Force 2",play,0.6,0 -252438345,"Trove",purchase,1.0,0 -164927653,"Dota 2",purchase,1.0,0 -164927653,"Dota 2",play,0.2,0 -272820556,"Sleeping Dogs",purchase,1.0,0 -272820556,"Sleeping Dogs",play,0.7,0 -272820556,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -272820556,"Hitman Absolution",purchase,1.0,0 -272820556,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -272820556,"Kane & Lynch Dead Men",purchase,1.0,0 -272820556,"Lara Croft and the Guardian of Light",purchase,1.0,0 -272820556,"MURDERED SOUL SUSPECT",purchase,1.0,0 -272820556,"Startopia",purchase,1.0,0 -272820556,"Supreme Commander 2",purchase,1.0,0 -272820556,"Thief",purchase,1.0,0 -272820556,"Tomb Raider",purchase,1.0,0 -9544834,"Counter-Strike",purchase,1.0,0 -9544834,"Counter-Strike",play,101.0,0 -9544834,"Half-Life Blue Shift",purchase,1.0,0 -9544834,"Half-Life Blue Shift",play,0.3,0 -9544834,"Half-Life 2 Deathmatch",purchase,1.0,0 -9544834,"Half-Life 2 Deathmatch",play,0.3,0 -9544834,"Half-Life",purchase,1.0,0 -9544834,"Day of Defeat",purchase,1.0,0 -9544834,"Deathmatch Classic",purchase,1.0,0 -9544834,"Half-Life 2 Lost Coast",purchase,1.0,0 -9544834,"Half-Life Opposing Force",purchase,1.0,0 -9544834,"Ricochet",purchase,1.0,0 -9544834,"Team Fortress Classic",purchase,1.0,0 -287061478,"ARK Survival Evolved",purchase,1.0,0 -287061478,"ARK Survival Evolved",play,409.0,0 -32592631,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -32592631,"Call of Duty Modern Warfare 2 - Multiplayer",play,110.0,0 -32592631,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -32592631,"Call of Duty Black Ops - Multiplayer",play,74.0,0 -32592631,"Sniper Elite V2",purchase,1.0,0 -32592631,"Sniper Elite V2",play,20.0,0 -32592631,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -32592631,"Call of Duty Modern Warfare 3 - Multiplayer",play,18.6,0 -32592631,"Mafia II",purchase,1.0,0 -32592631,"Mafia II",play,16.8,0 -32592631,"Call of Duty Modern Warfare 2",purchase,1.0,0 -32592631,"Call of Duty Modern Warfare 2",play,16.0,0 -32592631,"Call of Duty Black Ops",purchase,1.0,0 -32592631,"Call of Duty Black Ops",play,13.5,0 -32592631,"Duke Nukem Forever",purchase,1.0,0 -32592631,"Duke Nukem Forever",play,8.8,0 -32592631,"Call of Duty Modern Warfare 3",purchase,1.0,0 -32592631,"Call of Duty Modern Warfare 3",play,7.0,0 -32592631,"Sniper Ghost Warrior",purchase,1.0,0 -32592631,"Sniper Ghost Warrior",play,2.0,0 -57103808,"Mount & Blade Warband",purchase,1.0,0 -57103808,"Mount & Blade Warband",play,128.0,0 -57103808,"Company of Heroes",purchase,1.0,0 -57103808,"Company of Heroes",play,89.0,0 -57103808,"Empire Total War",purchase,1.0,0 -57103808,"Empire Total War",play,83.0,0 -57103808,"Company of Heroes 2",purchase,1.0,0 -57103808,"Company of Heroes 2",play,65.0,0 -57103808,"XCOM Enemy Unknown",purchase,1.0,0 -57103808,"XCOM Enemy Unknown",play,60.0,0 -57103808,"Terraria",purchase,1.0,0 -57103808,"Terraria",play,59.0,0 -57103808,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -57103808,"Sins of a Solar Empire Rebellion",play,57.0,0 -57103808,"Sins of a Solar Empire Trinity",purchase,1.0,0 -57103808,"Sins of a Solar Empire Trinity",play,57.0,0 -57103808,"Total War ROME II - Emperor Edition",purchase,1.0,0 -57103808,"Total War ROME II - Emperor Edition",play,57.0,0 -57103808,"Battlefield 2",purchase,1.0,0 -57103808,"Battlefield 2",play,54.0,0 -57103808,"Arma 3",purchase,1.0,0 -57103808,"Arma 3",play,43.0,0 -57103808,"Men of War",purchase,1.0,0 -57103808,"Men of War",play,39.0,0 -57103808,"War Thunder",purchase,1.0,0 -57103808,"War Thunder",play,36.0,0 -57103808,"Sid Meier's Civilization V",purchase,1.0,0 -57103808,"Sid Meier's Civilization V",play,35.0,0 -57103808,"Wargame Red Dragon",purchase,1.0,0 -57103808,"Wargame Red Dragon",play,28.0,0 -57103808,"Arma 2 Operation Arrowhead",purchase,1.0,0 -57103808,"Arma 2 Operation Arrowhead",play,28.0,0 -57103808,"Insurgency",purchase,1.0,0 -57103808,"Insurgency",play,27.0,0 -57103808,"Wargame European Escalation",purchase,1.0,0 -57103808,"Wargame European Escalation",play,27.0,0 -57103808,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -57103808,"Rising Storm/Red Orchestra 2 Multiplayer",play,27.0,0 -57103808,"America's Army 3",purchase,1.0,0 -57103808,"America's Army 3",play,25.0,0 -57103808,"Heroes & Generals",purchase,1.0,0 -57103808,"Heroes & Generals",play,19.4,0 -57103808,"Napoleon Total War",purchase,1.0,0 -57103808,"Napoleon Total War",play,17.4,0 -57103808,"PlanetSide 2",purchase,1.0,0 -57103808,"PlanetSide 2",play,16.6,0 -57103808,"Stronghold 3",purchase,1.0,0 -57103808,"Stronghold 3",play,14.7,0 -57103808,"Banished",purchase,1.0,0 -57103808,"Banished",play,13.3,0 -57103808,"Counter-Strike Source",purchase,1.0,0 -57103808,"Counter-Strike Source",play,13.2,0 -57103808,"Full Spectrum Warrior",purchase,1.0,0 -57103808,"Full Spectrum Warrior",play,12.9,0 -57103808,"FTL Faster Than Light",purchase,1.0,0 -57103808,"FTL Faster Than Light",play,11.8,0 -57103808,"Garry's Mod",purchase,1.0,0 -57103808,"Garry's Mod",play,11.5,0 -57103808,"Insurgency Modern Infantry Combat",purchase,1.0,0 -57103808,"Insurgency Modern Infantry Combat",play,11.5,0 -57103808,"Company of Heroes Opposing Fronts",purchase,1.0,0 -57103808,"Company of Heroes Opposing Fronts",play,9.6,0 -57103808,"Robocraft",purchase,1.0,0 -57103808,"Robocraft",play,9.5,0 -57103808,"Killing Floor",purchase,1.0,0 -57103808,"Killing Floor",play,8.0,0 -57103808,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -57103808,"Red Orchestra Ostfront 41-45",play,7.3,0 -57103808,"This War of Mine",purchase,1.0,0 -57103808,"This War of Mine",play,6.6,0 -57103808,"Age of Empires III Complete Collection",purchase,1.0,0 -57103808,"Age of Empires III Complete Collection",play,6.2,0 -57103808,"DiRT Rally",purchase,1.0,0 -57103808,"DiRT Rally",play,5.6,0 -57103808,"Half-Life 2",purchase,1.0,0 -57103808,"Half-Life 2",play,5.2,0 -57103808,"Men of War Assault Squad 2",purchase,1.0,0 -57103808,"Men of War Assault Squad 2",play,5.0,0 -57103808,"Counter-Strike Global Offensive",purchase,1.0,0 -57103808,"Counter-Strike Global Offensive",play,4.9,0 -57103808,"Command and Conquer 4 Tiberian Twilight",purchase,1.0,0 -57103808,"Command and Conquer 4 Tiberian Twilight",play,4.7,0 -57103808,"Command and Conquer Red Alert 3",purchase,1.0,0 -57103808,"Command and Conquer Red Alert 3",play,3.9,0 -57103808,"Defiance",purchase,1.0,0 -57103808,"Defiance",play,3.9,0 -57103808,"Darkest Hour Europe '44-'45",purchase,1.0,0 -57103808,"Darkest Hour Europe '44-'45",play,3.8,0 -57103808,"America's Army Proving Grounds",purchase,1.0,0 -57103808,"America's Army Proving Grounds",play,3.7,0 -57103808,"Arma 2",purchase,1.0,0 -57103808,"Arma 2",play,3.3,0 -57103808,"Full Spectrum Warrior Ten Hammers",purchase,1.0,0 -57103808,"Full Spectrum Warrior Ten Hammers",play,2.6,0 -57103808,"Verdun",purchase,1.0,0 -57103808,"Verdun",play,2.1,0 -57103808,"Sid Meier's Civilization IV",purchase,1.0,0 -57103808,"Sid Meier's Civilization IV",play,2.0,0 -57103808,"Portal",purchase,1.0,0 -57103808,"Portal",play,1.9,0 -57103808,"Team Fortress 2",purchase,1.0,0 -57103808,"Team Fortress 2",play,1.8,0 -57103808,"No More Room in Hell",purchase,1.0,0 -57103808,"No More Room in Hell",play,1.5,0 -57103808,"Don't Starve",purchase,1.0,0 -57103808,"Don't Starve",play,1.2,0 -57103808,"Omerta - City of Gangsters",purchase,1.0,0 -57103808,"Omerta - City of Gangsters",play,1.1,0 -57103808,"A Game of Thrones - Genesis",purchase,1.0,0 -57103808,"A Game of Thrones - Genesis",play,0.9,0 -57103808,"Stronghold HD",purchase,1.0,0 -57103808,"Stronghold HD",play,0.9,0 -57103808,"Mare Nostrum",purchase,1.0,0 -57103808,"Mare Nostrum",play,0.7,0 -57103808,"The Ship Single Player",purchase,1.0,0 -57103808,"The Ship Single Player",play,0.6,0 -57103808,"Company of Heroes Tales of Valor",purchase,1.0,0 -57103808,"Company of Heroes Tales of Valor",play,0.4,0 -57103808,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -57103808,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,0.4,0 -57103808,"The Ship Tutorial",purchase,1.0,0 -57103808,"The Ship Tutorial",play,0.4,0 -57103808,"Tactical Intervention",purchase,1.0,0 -57103808,"Tactical Intervention",play,0.3,0 -57103808,"Arma 2 DayZ Mod",purchase,1.0,0 -57103808,"Arma 2 DayZ Mod",play,0.2,0 -57103808,"Prison Architect",purchase,1.0,0 -57103808,"Prison Architect",play,0.2,0 -57103808,"Magicka",purchase,1.0,0 -57103808,"Arma 2 British Armed Forces",purchase,1.0,0 -57103808,"The Ship",purchase,1.0,0 -57103808,"Half-Life 2 Episode One",purchase,1.0,0 -57103808,"Half-Life 2 Lost Coast",purchase,1.0,0 -57103808,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -57103808,"Arma 2 Private Military Company",purchase,1.0,0 -57103808,"Arma 3 Zeus",purchase,1.0,0 -57103808,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -57103808,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -57103808,"Company of Heroes (New Steam Version)",purchase,1.0,0 -57103808,"Company of Heroes 2 - Ardennes Assault",purchase,1.0,0 -57103808,"Don't Starve Together Beta",purchase,1.0,0 -57103808,"Half-Life 2 Episode Two",purchase,1.0,0 -57103808,"Hitman Blood Money",purchase,1.0,0 -57103808,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -57103808,"Magicka Final Frontier",purchase,1.0,0 -57103808,"Magicka Frozen Lake",purchase,1.0,0 -57103808,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -57103808,"Magicka Nippon",purchase,1.0,0 -57103808,"Magicka Party Robes",purchase,1.0,0 -57103808,"Magicka The Watchtower",purchase,1.0,0 -57103808,"Magicka Vietnam",purchase,1.0,0 -57103808,"Magicka Wizard's Survival Kit",purchase,1.0,0 -57103808,"Men of War Assault Squad",purchase,1.0,0 -57103808,"Men of War Red Tide",purchase,1.0,0 -57103808,"Men of War Vietnam",purchase,1.0,0 -57103808,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -57103808,"Omerta - City of Gangsters The Bulgarian Colossus",purchase,1.0,0 -57103808,"Omerta - Damsel in Distress",purchase,1.0,0 -57103808,"Omerta - The Con Artist",purchase,1.0,0 -57103808,"Omerta - The Japanese Incentive",purchase,1.0,0 -57103808,"Red Crucible Firestorm",purchase,1.0,0 -57103808,"Sid Meier's Civilization IV",purchase,1.0,0 -57103808,"XCOM Enemy Within",purchase,1.0,0 -215578265,"Dota 2",purchase,1.0,0 -215578265,"Dota 2",play,1.2,0 -197172884,"Unturned",purchase,1.0,0 -197172884,"Unturned",play,0.4,0 -242349023,"Dota 2",purchase,1.0,0 -242349023,"Dota 2",play,56.0,0 -242349023,"Ragnarok Online 2",purchase,1.0,0 -242349023,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -99609673,"Team Fortress 2",purchase,1.0,0 -99609673,"Team Fortress 2",play,1.0,0 -63276972,"Prison Architect",purchase,1.0,0 -63276972,"Prison Architect",play,100.0,0 -63276972,"Don't Starve",purchase,1.0,0 -63276972,"Don't Starve",play,88.0,0 -63276972,"Sid Meier's Civilization V",purchase,1.0,0 -63276972,"Sid Meier's Civilization V",play,79.0,0 -63276972,"Banished",purchase,1.0,0 -63276972,"Banished",play,72.0,0 -63276972,"Cities Skylines",purchase,1.0,0 -63276972,"Cities Skylines",play,39.0,0 -63276972,"Democracy 3",purchase,1.0,0 -63276972,"Democracy 3",play,14.7,0 -63276972,"Rust",purchase,1.0,0 -63276972,"Rust",play,13.4,0 -63276972,"This War of Mine",purchase,1.0,0 -63276972,"This War of Mine",play,12.8,0 -63276972,"Tropico 5",purchase,1.0,0 -63276972,"Tropico 5",play,9.9,0 -63276972,"AdVenture Capitalist",purchase,1.0,0 -63276972,"AdVenture Capitalist",play,5.4,0 -63276972,"Left 4 Dead 2",purchase,1.0,0 -63276972,"Left 4 Dead 2",play,3.6,0 -63276972,"Half-Life 2",purchase,1.0,0 -63276972,"Half-Life 2",play,3.4,0 -63276972,"Surgeon Simulator",purchase,1.0,0 -63276972,"Surgeon Simulator",play,3.3,0 -63276972,"Papers, Please",purchase,1.0,0 -63276972,"Papers, Please",play,1.9,0 -63276972,"Portal",purchase,1.0,0 -63276972,"Portal",play,0.2,0 -63276972,"Life Is Strange",purchase,1.0,0 -63276972,"Life Is Strange",play,0.2,0 -63276972,"Don't Starve Together Beta",purchase,1.0,0 -63276972,"Half-Life 2 Lost Coast",purchase,1.0,0 -63276972,"Left 4 Dead",purchase,1.0,0 -63276972,"Oil Rush",purchase,1.0,0 -63276972,"Section 8",purchase,1.0,0 -183005527,"Dota 2",purchase,1.0,0 -183005527,"Dota 2",play,6.4,0 -92342574,"Call of Duty Modern Warfare 3",purchase,1.0,0 -92342574,"Call of Duty Modern Warfare 3",play,0.8,0 -92342574,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -92342574,"Call of Duty Modern Warfare 3 - Multiplayer",play,0.3,0 -255168531,"Lost Saga North America",purchase,1.0,0 -255168531,"Lost Saga North America",play,3.0,0 -255168531,"Trove",purchase,1.0,0 -87445402,"Fallout 4",purchase,1.0,0 -87445402,"Fallout 4",play,83.0,0 -87445402,"Risen 2 - Dark Waters",purchase,1.0,0 -87445402,"Risen 2 - Dark Waters",play,31.0,0 -87445402,"Hitman Absolution",purchase,1.0,0 -87445402,"Hitman Absolution",play,16.9,0 -87445402,"Killing Floor 2",purchase,1.0,0 -87445402,"Killing Floor 2",play,4.7,0 -87445402,"Spooky's House of Jump Scares",purchase,1.0,0 -87445402,"Spooky's House of Jump Scares",play,0.6,0 -87445402,"Killing Floor",purchase,1.0,0 -248613483,"Primal Carnage Extinction",purchase,1.0,0 -248613483,"Primal Carnage Extinction",play,192.0,0 -248613483,"ARK Survival Evolved",purchase,1.0,0 -248613483,"ARK Survival Evolved",play,139.0,0 -248613483,"Rocket League",purchase,1.0,0 -248613483,"Rocket League",play,39.0,0 -248613483,"Dino D-Day",purchase,1.0,0 -248613483,"Dino D-Day",play,8.7,0 -248613483,"theHunter",purchase,1.0,0 -248613483,"theHunter",play,1.3,0 -306860604,"GunZ 2 The Second Duel",purchase,1.0,0 -107948398,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -107948398,"Warhammer 40,000 Dawn of War Dark Crusade",play,228.0,0 -107948398,"Age of Empires III Complete Collection",purchase,1.0,0 -107948398,"Age of Empires III Complete Collection",play,51.0,0 -107948398,"Warhammer 40,000 Space Marine",purchase,1.0,0 -107948398,"Warhammer 40,000 Space Marine",play,37.0,0 -107948398,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -107948398,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -84668956,"Team Fortress 2",purchase,1.0,0 -84668956,"Team Fortress 2",play,2.4,0 -226130045,"Neverwinter",purchase,1.0,0 -226130045,"Neverwinter",play,8.7,0 -226130045,"The Expendabros",purchase,1.0,0 -145904806,"Team Fortress 2",purchase,1.0,0 -145904806,"Team Fortress 2",play,1.4,0 -164591420,"Team Fortress 2",purchase,1.0,0 -164591420,"Team Fortress 2",play,2.6,0 -171982044,"Dota 2",purchase,1.0,0 -171982044,"Dota 2",play,1.6,0 -187533357,"Wargame European Escalation",purchase,1.0,0 -187533357,"Wargame European Escalation",play,2.6,0 -187533357,"Sid Meier's Civilization V",purchase,1.0,0 -187533357,"Unturned",purchase,1.0,0 -94088853,"The Elder Scrolls V Skyrim",purchase,1.0,0 -94088853,"The Elder Scrolls V Skyrim",play,320.0,0 -94088853,"Sid Meier's Civilization V",purchase,1.0,0 -94088853,"Sid Meier's Civilization V",play,253.0,0 -94088853,"Banished",purchase,1.0,0 -94088853,"Banished",play,45.0,0 -94088853,"Far Cry 3",purchase,1.0,0 -94088853,"Far Cry 3",play,29.0,0 -94088853,"Age of Empires II HD Edition",purchase,1.0,0 -94088853,"Age of Empires II HD Edition",play,27.0,0 -94088853,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -94088853,"RollerCoaster Tycoon 3 Platinum!",play,26.0,0 -94088853,"Reus",purchase,1.0,0 -94088853,"Reus",play,26.0,0 -94088853,"Borderlands 2",purchase,1.0,0 -94088853,"Borderlands 2",play,25.0,0 -94088853,"Need for Speed Hot Pursuit",purchase,1.0,0 -94088853,"Need for Speed Hot Pursuit",play,23.0,0 -94088853,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -94088853,"DARK SOULS II Scholar of the First Sin",play,18.0,0 -94088853,"Unturned",purchase,1.0,0 -94088853,"Unturned",play,16.8,0 -94088853,"Dota 2",purchase,1.0,0 -94088853,"Dota 2",play,15.6,0 -94088853,"Dungeon Defenders",purchase,1.0,0 -94088853,"Dungeon Defenders",play,14.3,0 -94088853,"ORION Prelude",purchase,1.0,0 -94088853,"ORION Prelude",play,13.5,0 -94088853,"The Forest",purchase,1.0,0 -94088853,"The Forest",play,12.6,0 -94088853,"Terraria",purchase,1.0,0 -94088853,"Terraria",play,11.2,0 -94088853,"Portal 2",purchase,1.0,0 -94088853,"Portal 2",play,8.1,0 -94088853,"Realm of the Mad God",purchase,1.0,0 -94088853,"Realm of the Mad God",play,7.0,0 -94088853,"FINAL FANTASY III",purchase,1.0,0 -94088853,"FINAL FANTASY III",play,6.5,0 -94088853,"Goat Simulator",purchase,1.0,0 -94088853,"Goat Simulator",play,6.2,0 -94088853,"Mirror's Edge",purchase,1.0,0 -94088853,"Mirror's Edge",play,5.4,0 -94088853,"Knights of Pen and Paper +1",purchase,1.0,0 -94088853,"Knights of Pen and Paper +1",play,5.1,0 -94088853,"FINAL FANTASY VII",purchase,1.0,0 -94088853,"FINAL FANTASY VII",play,3.8,0 -94088853,"Super Meat Boy",purchase,1.0,0 -94088853,"Super Meat Boy",play,1.2,0 -94088853,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -94088853,"Dark Souls Prepare to Die Edition",play,0.6,0 -94088853,"Dead Space",purchase,1.0,0 -94088853,"Dead Space",play,0.3,0 -94088853,"Crysis 2 Maximum Edition",purchase,1.0,0 -94088853,"Crysis 2 Maximum Edition",play,0.2,0 -94088853,"GRID",purchase,1.0,0 -94088853,"Mortal Kombat Kollection",purchase,1.0,0 -94088853,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -94088853,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -94088853,"Medal of Honor(TM) Single Player",purchase,1.0,0 -94088853,"Medal of Honor Pre-Order",purchase,1.0,0 -94088853,"Portal",purchase,1.0,0 -94088853,"Sid Meier's Civilization III Complete",purchase,1.0,0 -48058475,"Counter-Strike Source",purchase,1.0,0 -48058475,"Counter-Strike Source",play,543.0,0 -48058475,"Half-Life 2 Deathmatch",purchase,1.0,0 -48058475,"Half-Life 2 Deathmatch",play,81.0,0 -48058475,"DC Universe Online",purchase,1.0,0 -48058475,"DC Universe Online",play,77.0,0 -48058475,"Left 4 Dead",purchase,1.0,0 -48058475,"Left 4 Dead",play,21.0,0 -48058475,"Alien Swarm",purchase,1.0,0 -48058475,"Alien Swarm",play,18.8,0 -48058475,"Duke Nukem Forever",purchase,1.0,0 -48058475,"Duke Nukem Forever",play,18.6,0 -48058475,"Smashball",purchase,1.0,0 -48058475,"Smashball",play,7.3,0 -48058475,"Portal",purchase,1.0,0 -48058475,"Portal",play,5.3,0 -48058475,"Day of Defeat Source",purchase,1.0,0 -48058475,"Day of Defeat Source",play,2.2,0 -48058475,"Half-Life 2 Lost Coast",purchase,1.0,0 -48058475,"Half-Life 2 Lost Coast",play,0.7,0 -170095814,"AdVenture Capitalist",purchase,1.0,0 -170095814,"AdVenture Capitalist",play,85.0,0 -170095814,"War Thunder",purchase,1.0,0 -170095814,"War Thunder",play,60.0,0 -170095814,"King's Quest",purchase,1.0,0 -170095814,"King's Quest",play,24.0,0 -170095814,"Tomb Raider",purchase,1.0,0 -170095814,"Tomb Raider",play,19.6,0 -170095814,"ArcheAge",purchase,1.0,0 -170095814,"ArcheAge",play,11.7,0 -170095814,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -170095814,"School of Dragons How to Train Your Dragon",play,8.0,0 -170095814,"Dota 2",purchase,1.0,0 -170095814,"Dota 2",play,7.0,0 -170095814,"TERA",purchase,1.0,0 -170095814,"TERA",play,3.9,0 -170095814,"Neverwinter",purchase,1.0,0 -170095814,"Neverwinter",play,1.9,0 -170095814,"Robocraft",purchase,1.0,0 -170095814,"Robocraft",play,1.6,0 -170095814,"Star Conflict",purchase,1.0,0 -170095814,"Star Conflict",play,0.8,0 -170095814,"MechWarrior Online",purchase,1.0,0 -170095814,"MechWarrior Online",play,0.8,0 -170095814,"Wind of Luck Arena",purchase,1.0,0 -170095814,"Wind of Luck Arena",play,0.6,0 -170095814,"Firefall",purchase,1.0,0 -170095814,"Firefall",play,0.3,0 -170095814,"Let the Cat In",purchase,1.0,0 -170095814,"Let the Cat In",play,0.2,0 -170095814,"SMITE",purchase,1.0,0 -170095814,"Path of Exile",purchase,1.0,0 -212751581,"Counter-Strike Global Offensive",purchase,1.0,0 -212751581,"Counter-Strike Global Offensive",play,432.0,0 -212751581,"Unturned",purchase,1.0,0 -212751581,"Unturned",play,0.6,0 -212751581,"Echoes+",purchase,1.0,0 -212751581,"Echoes+",play,0.1,0 -212751581,"Cakewalk Loop Manager",purchase,1.0,0 -212751581,"Chaos Heroes Online",purchase,1.0,0 -212751581,"Floating Point",purchase,1.0,0 -212751581,"Fork Parker's Holiday Profit Hike",purchase,1.0,0 -212751581,"FreeStyle2 Street Basketball",purchase,1.0,0 -212751581,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -301883131,"Dota 2",purchase,1.0,0 -301883131,"Dota 2",play,0.3,0 -31887051,"Football Manager 2013",purchase,1.0,0 -31887051,"Football Manager 2013",play,145.0,0 -116085629,"The Elder Scrolls V Skyrim",purchase,1.0,0 -116085629,"The Elder Scrolls V Skyrim",play,80.0,0 -116085629,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -116085629,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -106238372,"Ys Origin",purchase,1.0,0 -106238372,"Ys Origin",play,18.4,0 -106238372,"Mark of the Ninja",purchase,1.0,0 -106238372,"Mark of the Ninja",play,7.8,0 -106238372,"Dust An Elysian Tail",purchase,1.0,0 -106238372,"Dust An Elysian Tail",play,1.2,0 -217834203,"Unturned",purchase,1.0,0 -202395275,"Dota 2",purchase,1.0,0 -202395275,"Dota 2",play,4.3,0 -248444377,"Garry's Mod",purchase,1.0,0 -248444377,"Garry's Mod",play,213.0,0 -248444377,"Counter-Strike Global Offensive",purchase,1.0,0 -248444377,"Counter-Strike Global Offensive",play,60.0,0 -248444377,"Synergy",purchase,1.0,0 -248444377,"Synergy",play,4.8,0 -248444377,"Break Into Zatwor",purchase,1.0,0 -248444377,"Break Into Zatwor",play,0.3,0 -248444377,"Woodle Tree Adventures",purchase,1.0,0 -248444377,"Woodle Tree Adventures",play,0.1,0 -248444377,"Relic Hunters Zero",purchase,1.0,0 -248444377,"Relic Hunters Zero",play,0.1,0 -248444377,"Two Worlds II",purchase,1.0,0 -248444377,"Two Worlds II",play,0.1,0 -248444377,"Quake Live",purchase,1.0,0 -248444377,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -248444377,"Age of Empires Online",purchase,1.0,0 -248444377,"Amazing World",purchase,1.0,0 -248444377,"America's Army 3",purchase,1.0,0 -248444377,"America's Army Proving Grounds",purchase,1.0,0 -248444377,"APB Reloaded",purchase,1.0,0 -248444377,"Arcane Saga Online",purchase,1.0,0 -248444377,"Archeblade",purchase,1.0,0 -248444377,"Arctic Combat",purchase,1.0,0 -248444377,"Arma 2 Free",purchase,1.0,0 -248444377,"Atlantica Online",purchase,1.0,0 -248444377,"Aura Kingdom",purchase,1.0,0 -248444377,"Bloodline Champions",purchase,1.0,0 -248444377,"Brawl Busters",purchase,1.0,0 -248444377,"Bullet Run",purchase,1.0,0 -248444377,"C9",purchase,1.0,0 -248444377,"Cakewalk Loop Manager",purchase,1.0,0 -248444377,"Champions Online",purchase,1.0,0 -248444377,"Construct 2 Free",purchase,1.0,0 -248444377,"Counter-Strike Nexon Zombies",purchase,1.0,0 -248444377,"CrimeCraft GangWars",purchase,1.0,0 -248444377,"Cry of Fear",purchase,1.0,0 -248444377,"Defiance",purchase,1.0,0 -248444377,"District 187",purchase,1.0,0 -248444377,"Dragon Nest",purchase,1.0,0 -248444377,"Dragon Nest Europe",purchase,1.0,0 -248444377,"Dragons and Titans",purchase,1.0,0 -248444377,"Dungeon Fighter Online",purchase,1.0,0 -248444377,"Dungeonland",purchase,1.0,0 -248444377,"Dungeon Party",purchase,1.0,0 -248444377,"Dwarfs F2P",purchase,1.0,0 -248444377,"EverQuest Free-to-Play",purchase,1.0,0 -248444377,"EverQuest II",purchase,1.0,0 -248444377,"EVGA PrecisionX 16",purchase,1.0,0 -248444377,"F.E.A.R. Online",purchase,1.0,0 -248444377,"Face of Mankind",purchase,1.0,0 -248444377,"Fallen Earth",purchase,1.0,0 -248444377,"Fiesta Online",purchase,1.0,0 -248444377,"Fiesta Online NA",purchase,1.0,0 -248444377,"Firefall",purchase,1.0,0 -248444377,"Floating Point",purchase,1.0,0 -248444377,"Football Superstars",purchase,1.0,0 -248444377,"Forsaken World ",purchase,1.0,0 -248444377,"Frontline Tactics",purchase,1.0,0 -248444377,"Gotham City Impostors Free To Play",purchase,1.0,0 -248444377,"Grand Chase",purchase,1.0,0 -248444377,"Guns and Robots",purchase,1.0,0 -248444377,"Happy Wars",purchase,1.0,0 -248444377,"Heroes & Generals",purchase,1.0,0 -248444377,"HOMEFRONT Demo",purchase,1.0,0 -248444377,"La Tale",purchase,1.0,0 -248444377,"Loadout",purchase,1.0,0 -248444377,"Mabinogi",purchase,1.0,0 -248444377,"Magic The Gathering Tactics",purchase,1.0,0 -248444377,"March of War",purchase,1.0,0 -248444377,"Marvel Heroes 2015",purchase,1.0,0 -248444377,"Memoir '44 Online",purchase,1.0,0 -248444377,"MicroVolts Surge",purchase,1.0,0 -248444377,"Moon Breakers",purchase,1.0,0 -248444377,"NEOTOKYO",purchase,1.0,0 -248444377,"Neverwinter",purchase,1.0,0 -248444377,"Nosgoth",purchase,1.0,0 -248444377,"Pandora Saga Weapons of Balance",purchase,1.0,0 -248444377,"Panzar",purchase,1.0,0 -248444377,"Path of Exile",purchase,1.0,0 -248444377,"Pinball Arcade",purchase,1.0,0 -248444377,"PlanetSide 2",purchase,1.0,0 -248444377,"Pox Nora",purchase,1.0,0 -248444377,"Puzzle Pirates",purchase,1.0,0 -248444377,"Quantum Rush Online",purchase,1.0,0 -248444377,"RaceRoom Racing Experience ",purchase,1.0,0 -248444377,"Ragnarok Online 2",purchase,1.0,0 -248444377,"Realm of the Mad God",purchase,1.0,0 -248444377,"Reversion - The Escape",purchase,1.0,0 -248444377,"Rise of Incarnates",purchase,1.0,0 -248444377,"Robocraft",purchase,1.0,0 -248444377,"ROSE Online",purchase,1.0,0 -248444377,"Royal Quest",purchase,1.0,0 -248444377,"Rusty Hearts",purchase,1.0,0 -248444377,"Saira",purchase,1.0,0 -248444377,"Shadow Warrior Classic (1997)",purchase,1.0,0 -248444377,"Spiral Knights",purchase,1.0,0 -248444377,"Star Conflict",purchase,1.0,0 -248444377,"Star Trek Online",purchase,1.0,0 -248444377,"Stronghold Kingdoms",purchase,1.0,0 -248444377,"Sunrider Mask of Arcadius",purchase,1.0,0 -248444377,"Super Crate Box",purchase,1.0,0 -248444377,"Super Monday Night Combat",purchase,1.0,0 -248444377,"Survarium",purchase,1.0,0 -248444377,"Tactical Intervention",purchase,1.0,0 -248444377,"The Banner Saga Factions",purchase,1.0,0 -248444377,"The Expendabros",purchase,1.0,0 -248444377,"The Forgotten Ones",purchase,1.0,0 -248444377,"The Lord of the Rings Online",purchase,1.0,0 -248444377,"Thinking with Time Machine",purchase,1.0,0 -248444377,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -248444377,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -248444377,"Tribes Ascend",purchase,1.0,0 -248444377,"Uncharted Waters Online",purchase,1.0,0 -248444377,"Unturned",purchase,1.0,0 -248444377,"Velvet Sundown",purchase,1.0,0 -248444377,"Vindictus",purchase,1.0,0 -248444377,"Warface",purchase,1.0,0 -248444377,"Warframe",purchase,1.0,0 -248444377,"War Inc. Battlezone",purchase,1.0,0 -248444377,"War Thunder",purchase,1.0,0 -248444377,"World of Battles",purchase,1.0,0 -248444377,"World of Guns Gun Disassembly",purchase,1.0,0 -248444377,"Xam",purchase,1.0,0 -25941262,"Counter-Strike Source",purchase,1.0,0 -25941262,"Counter-Strike Source",play,89.0,0 -25941262,"Counter-Strike",purchase,1.0,0 -25941262,"Counter-Strike",play,0.8,0 -25941262,"Counter-Strike Condition Zero",purchase,1.0,0 -25941262,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -148510973,"Mount & Blade Warband",purchase,1.0,0 -148510973,"Mount & Blade Warband",play,1056.0,0 -148510973,"Counter-Strike Global Offensive",purchase,1.0,0 -148510973,"Counter-Strike Global Offensive",play,488.0,0 -148510973,"Team Fortress 2",purchase,1.0,0 -148510973,"Team Fortress 2",play,75.0,0 -148510973,"The Elder Scrolls V Skyrim",purchase,1.0,0 -148510973,"The Elder Scrolls V Skyrim",play,73.0,0 -148510973,"Mount & Blade With Fire and Sword",purchase,1.0,0 -148510973,"Mount & Blade With Fire and Sword",play,50.0,0 -148510973,"Middle-earth Shadow of Mordor",purchase,1.0,0 -148510973,"Middle-earth Shadow of Mordor",play,22.0,0 -148510973,"Counter-Strike Nexon Zombies",purchase,1.0,0 -148510973,"Counter-Strike Nexon Zombies",play,8.9,0 -148510973,"Unturned",purchase,1.0,0 -148510973,"Unturned",play,6.0,0 -148510973,"Assassin's Creed III",purchase,1.0,0 -148510973,"Assassin's Creed III",play,2.9,0 -148510973,"Left 4 Dead 2",purchase,1.0,0 -148510973,"Left 4 Dead 2",play,2.4,0 -148510973,"Rust",purchase,1.0,0 -148510973,"Rust",play,1.5,0 -148510973,"Chivalry Medieval Warfare",purchase,1.0,0 -148510973,"Chivalry Medieval Warfare",play,1.4,0 -148510973,"Grand Theft Auto San Andreas",purchase,1.0,0 -148510973,"Grand Theft Auto San Andreas",play,0.9,0 -148510973,"Rocket League",purchase,1.0,0 -148510973,"Rocket League",play,0.7,0 -148510973,"SpeedRunners",purchase,1.0,0 -148510973,"SpeedRunners",play,0.6,0 -148510973,"Portal 2",purchase,1.0,0 -148510973,"Portal 2",play,0.6,0 -148510973,"Mafia II",purchase,1.0,0 -148510973,"Mafia II",play,0.5,0 -148510973,"Terraria",purchase,1.0,0 -148510973,"Terraria",play,0.3,0 -148510973,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -148510973,"Portal",purchase,1.0,0 -148510973,"Ricochet",purchase,1.0,0 -148510973,"Left 4 Dead",purchase,1.0,0 -148510973,"Half-Life Opposing Force",purchase,1.0,0 -148510973,"Half-Life Source",purchase,1.0,0 -148510973,"Counter-Strike",purchase,1.0,0 -148510973,"Don't Starve Together Beta",purchase,1.0,0 -148510973,"Grand Theft Auto Vice City",purchase,1.0,0 -148510973,"Team Fortress Classic",purchase,1.0,0 -148510973,"Grand Theft Auto III",purchase,1.0,0 -148510973,"Half-Life 2 Episode Two",purchase,1.0,0 -148510973,"Day of Defeat Source",purchase,1.0,0 -148510973,"Day of Defeat",purchase,1.0,0 -148510973,"Counter-Strike Source",purchase,1.0,0 -148510973,"Grand Theft Auto III",purchase,1.0,0 -148510973,"Grand Theft Auto IV",purchase,1.0,0 -148510973,"Half-Life 2 Deathmatch",purchase,1.0,0 -148510973,"Half-Life 2 Episode One",purchase,1.0,0 -148510973,"Half-Life 2",purchase,1.0,0 -148510973,"Half-Life",purchase,1.0,0 -148510973,"Grand Theft Auto San Andreas",purchase,1.0,0 -148510973,"Age of Empires II HD Edition",purchase,1.0,0 -148510973,"Assassin's Creed Freedom Cry",purchase,1.0,0 -148510973,"Assassin's Creed Revelations",purchase,1.0,0 -148510973,"Counter-Strike Condition Zero",purchase,1.0,0 -148510973,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -148510973,"Crysis",purchase,1.0,0 -148510973,"Crysis 2 Maximum Edition",purchase,1.0,0 -148510973,"Crysis Warhead",purchase,1.0,0 -148510973,"Crysis Wars",purchase,1.0,0 -148510973,"Deathmatch Classic",purchase,1.0,0 -148510973,"Euro Truck Simulator 2",purchase,1.0,0 -148510973,"Goat Simulator",purchase,1.0,0 -148510973,"Grand Theft Auto Vice City",purchase,1.0,0 -148510973,"Half-Life 2 Lost Coast",purchase,1.0,0 -148510973,"Half-Life Blue Shift",purchase,1.0,0 -148510973,"Half-Life Deathmatch Source",purchase,1.0,0 -148510973,"Hitman Absolution",purchase,1.0,0 -148510973,"Hitman Sniper Challenge",purchase,1.0,0 -148510973,"Medieval II Total War",purchase,1.0,0 -148510973,"Medieval II Total War Kingdoms",purchase,1.0,0 -148510973,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -148510973,"Mount & Blade Warband - Viking Conquest Reforged Edition",purchase,1.0,0 -148510973,"Patch testing for Chivalry",purchase,1.0,0 -148510973,"PAYDAY 2",purchase,1.0,0 -148510973,"Quake Live",purchase,1.0,0 -148510973,"Robocraft",purchase,1.0,0 -148510973,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -148510973,"Transformice",purchase,1.0,0 -148510973,"Warface",purchase,1.0,0 -64369759,"Mass Effect",purchase,1.0,0 -64369759,"Mass Effect",play,53.0,0 -64369759,"Assassin's Creed III",purchase,1.0,0 -64369759,"Assassin's Creed III",play,49.0,0 -64369759,"LEGO MARVEL Super Heroes",purchase,1.0,0 -64369759,"LEGO MARVEL Super Heroes",play,43.0,0 -64369759,"DC Universe Online",purchase,1.0,0 -64369759,"DC Universe Online",play,43.0,0 -64369759,"Batman Arkham Origins",purchase,1.0,0 -64369759,"Batman Arkham Origins",play,32.0,0 -64369759,"Darksiders II",purchase,1.0,0 -64369759,"Darksiders II",play,27.0,0 -64369759,"Transformers Fall of Cybertron",purchase,1.0,0 -64369759,"Transformers Fall of Cybertron",play,25.0,0 -64369759,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -64369759,"Warhammer 40,000 Dawn of War II",play,23.0,0 -64369759,"Dota 2",purchase,1.0,0 -64369759,"Dota 2",play,19.6,0 -64369759,"Alan Wake",purchase,1.0,0 -64369759,"Alan Wake",play,18.2,0 -64369759,"Darksiders",purchase,1.0,0 -64369759,"Darksiders",play,18.1,0 -64369759,"Tomb Raider",purchase,1.0,0 -64369759,"Tomb Raider",play,17.3,0 -64369759,"LEGO Batman 3 Beyond Gotham",purchase,1.0,0 -64369759,"LEGO Batman 3 Beyond Gotham",play,16.7,0 -64369759,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -64369759,"Batman Arkham Asylum GOTY Edition",play,16.2,0 -64369759,"LEGO Batman 2",purchase,1.0,0 -64369759,"LEGO Batman 2",play,15.6,0 -64369759,"LEGO The Hobbit",purchase,1.0,0 -64369759,"LEGO The Hobbit",play,15.0,0 -64369759,"Teenage Mutant Ninja Turtles Out of the Shadows",purchase,1.0,0 -64369759,"Teenage Mutant Ninja Turtles Out of the Shadows",play,14.9,0 -64369759,"Borderlands",purchase,1.0,0 -64369759,"Borderlands",play,12.1,0 -64369759,"Marvel Heroes 2015",purchase,1.0,0 -64369759,"Marvel Heroes 2015",play,9.5,0 -64369759,"Borderlands 2",purchase,1.0,0 -64369759,"Borderlands 2",play,9.4,0 -64369759,"BioShock",purchase,1.0,0 -64369759,"BioShock",play,9.3,0 -64369759,"LEGO Jurassic World",purchase,1.0,0 -64369759,"LEGO Jurassic World",play,9.3,0 -64369759,"Lego Star Wars 3 The Clone Wars",purchase,1.0,0 -64369759,"Lego Star Wars 3 The Clone Wars",play,8.6,0 -64369759,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -64369759,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,8.4,0 -64369759,"Batman Arkham City",purchase,1.0,0 -64369759,"Batman Arkham City",play,8.2,0 -64369759,"Aliens vs. Predator",purchase,1.0,0 -64369759,"Aliens vs. Predator",play,7.3,0 -64369759,"Castlevania Lords of Shadow - Ultimate Edition",purchase,1.0,0 -64369759,"Castlevania Lords of Shadow - Ultimate Edition",play,5.7,0 -64369759,"Far Cry 3",purchase,1.0,0 -64369759,"Far Cry 3",play,4.9,0 -64369759,"DmC Devil May Cry",purchase,1.0,0 -64369759,"DmC Devil May Cry",play,4.5,0 -64369759,"SimCity 4 Deluxe",purchase,1.0,0 -64369759,"SimCity 4 Deluxe",play,3.6,0 -64369759,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -64369759,"The Witcher 2 Assassins of Kings Enhanced Edition",play,3.5,0 -64369759,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -64369759,"Sonic & All-Stars Racing Transformed",play,3.3,0 -64369759,"Portal",purchase,1.0,0 -64369759,"Portal",play,3.2,0 -64369759,"Of Orcs And Men",purchase,1.0,0 -64369759,"Of Orcs And Men",play,2.4,0 -64369759,"Torchlight",purchase,1.0,0 -64369759,"Torchlight",play,2.1,0 -64369759,"Need for Speed Hot Pursuit",purchase,1.0,0 -64369759,"Need for Speed Hot Pursuit",play,1.9,0 -64369759,"Portal 2",purchase,1.0,0 -64369759,"Portal 2",play,1.9,0 -64369759,"Magic 2014 ",purchase,1.0,0 -64369759,"Magic 2014 ",play,1.5,0 -64369759,"Gotham City Impostors",purchase,1.0,0 -64369759,"Gotham City Impostors",play,1.5,0 -64369759,"The Witcher Enhanced Edition",purchase,1.0,0 -64369759,"The Witcher Enhanced Edition",play,1.4,0 -64369759,"Trine",purchase,1.0,0 -64369759,"Trine",play,1.4,0 -64369759,"Infinite Crisis",purchase,1.0,0 -64369759,"Infinite Crisis",play,1.2,0 -64369759,"Warhammer 40,000 Space Marine",purchase,1.0,0 -64369759,"Warhammer 40,000 Space Marine",play,1.2,0 -64369759,"Sonic Generations",purchase,1.0,0 -64369759,"Sonic Generations",play,0.9,0 -64369759,"Tomb Raider Anniversary",purchase,1.0,0 -64369759,"Tomb Raider Anniversary",play,0.8,0 -64369759,"SONIC THE HEDGEHOG 4 Episode II",purchase,1.0,0 -64369759,"SONIC THE HEDGEHOG 4 Episode II",play,0.8,0 -64369759,"FINAL FANTASY VII",purchase,1.0,0 -64369759,"FINAL FANTASY VII",play,0.5,0 -64369759,"Trine 2",purchase,1.0,0 -64369759,"Trine 2",play,0.4,0 -64369759,"LEGO Batman The Videogame",purchase,1.0,0 -64369759,"LEGO Batman The Videogame",play,0.4,0 -64369759,"Tomb Raider Legend",purchase,1.0,0 -64369759,"Tomb Raider Legend",play,0.4,0 -64369759,"SONIC THE HEDGEHOG 4 Episode I",purchase,1.0,0 -64369759,"SONIC THE HEDGEHOG 4 Episode I",play,0.3,0 -64369759,"BioShock 2",purchase,1.0,0 -64369759,"BioShock 2",play,0.3,0 -64369759,"Ghostbusters The Video Game",purchase,1.0,0 -64369759,"Ghostbusters The Video Game",play,0.2,0 -64369759,"Sonic Adventure DX",purchase,1.0,0 -64369759,"Sonic Adventure DX",play,0.2,0 -64369759,"Sonic Adventure 2 ",purchase,1.0,0 -64369759,"Sonic Adventure 2 ",play,0.2,0 -64369759,"Sonic and SEGA All Stars Racing",purchase,1.0,0 -64369759,"Sonic and SEGA All Stars Racing",play,0.2,0 -64369759,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -64369759,"SEGA Genesis & Mega Drive Classics",play,0.1,0 -64369759,"Alan Wake's American Nightmare",purchase,1.0,0 -64369759,"Batman Arkham City GOTY",purchase,1.0,0 -64369759,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -64369759,"Batman Arkham Origins - Initiation",purchase,1.0,0 -64369759,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -64369759,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -64369759,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -64369759,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -64369759,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -64369759,"Gotham City Impostors Free To Play",purchase,1.0,0 -64369759,"Mortal Kombat Legacy - Ep. 3 Johnny Cage",purchase,1.0,0 -64369759,"Mortal Kombat Legacy - Ep. 4 Kitana & Mileena (Part 1)",purchase,1.0,0 -64369759,"Mortal Kombat Legacy - Ep. 5 Kitana & Mileena (Part 2)",purchase,1.0,0 -64369759,"Mortal Kombat Legacy - Ep. 6 Raiden",purchase,1.0,0 -64369759,"Mortal Kombat Legacy - Ep. 7 Scorpion and Sub-Zero (Part 1)",purchase,1.0,0 -64369759,"Mortal Kombat Legacy - Ep. 8 Scorpion and Sub-Zero (Part 2)",purchase,1.0,0 -64369759,"Mortal Kombat Legacy - Ep. 9 Cyrax & Sektor",purchase,1.0,0 -64369759,"Sonic Adventure 2 Battle Mode DLC",purchase,1.0,0 -64369759,"Sonic CD",purchase,1.0,0 -64369759,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -64369759,"Tomb Raider Chronicles",purchase,1.0,0 -64369759,"Tomb Raider The Last Revelation",purchase,1.0,0 -64369759,"Tomb Raider Underworld",purchase,1.0,0 -64369759,"Tomb Raider I",purchase,1.0,0 -64369759,"Tomb Raider II",purchase,1.0,0 -64369759,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -64369759,"Torchlight II",purchase,1.0,0 -64369759,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -289893544,"Dota 2",purchase,1.0,0 -289893544,"Dota 2",play,4.8,0 -289893544,"Warframe",purchase,1.0,0 -289893544,"War Thunder",purchase,1.0,0 -223471406,"Dota 2",purchase,1.0,0 -223471406,"Dota 2",play,2.7,0 -223827574,"BloodRealm Battlegrounds",purchase,1.0,0 -210778610,"Dota 2",purchase,1.0,0 -210778610,"Dota 2",play,5.7,0 -210778610,"Quake Live",purchase,1.0,0 -116407650,"Dishonored (RU)",purchase,1.0,0 -125699277,"DC Universe Online",purchase,1.0,0 -125699277,"DC Universe Online",play,57.0,0 -173857208,"Dota 2",purchase,1.0,0 -173857208,"Dota 2",play,0.6,0 -9823354,"Total War SHOGUN 2",purchase,1.0,0 -9823354,"Total War SHOGUN 2",play,243.0,0 -9823354,"Total War ROME II - Emperor Edition",purchase,1.0,0 -9823354,"Total War ROME II - Emperor Edition",play,218.0,0 -9823354,"Empire Total War",purchase,1.0,0 -9823354,"Empire Total War",play,193.0,0 -9823354,"Sid Meier's Civilization V",purchase,1.0,0 -9823354,"Sid Meier's Civilization V",play,153.0,0 -9823354,"The Elder Scrolls V Skyrim",purchase,1.0,0 -9823354,"The Elder Scrolls V Skyrim",play,143.0,0 -9823354,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -9823354,"The Witcher 2 Assassins of Kings Enhanced Edition",play,136.0,0 -9823354,"Medieval II Total War",purchase,1.0,0 -9823354,"Medieval II Total War",play,86.0,0 -9823354,"The Witcher 3 Wild Hunt",purchase,1.0,0 -9823354,"The Witcher 3 Wild Hunt",play,83.0,0 -9823354,"Mass Effect",purchase,1.0,0 -9823354,"Mass Effect",play,68.0,0 -9823354,"XCOM Enemy Unknown",purchase,1.0,0 -9823354,"XCOM Enemy Unknown",play,65.0,0 -9823354,"Mass Effect 2",purchase,1.0,0 -9823354,"Mass Effect 2",play,64.0,0 -9823354,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -9823354,"Fallout 3 - Game of the Year Edition",play,62.0,0 -9823354,"The Witcher Enhanced Edition",purchase,1.0,0 -9823354,"The Witcher Enhanced Edition",play,61.0,0 -9823354,"Galactic Civilizations III",purchase,1.0,0 -9823354,"Galactic Civilizations III",play,55.0,0 -9823354,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -9823354,"The Elder Scrolls IV Oblivion ",play,42.0,0 -9823354,"Total War ATTILA",purchase,1.0,0 -9823354,"Total War ATTILA",play,35.0,0 -9823354,"FTL Faster Than Light",purchase,1.0,0 -9823354,"FTL Faster Than Light",play,32.0,0 -9823354,"Endless Legend",purchase,1.0,0 -9823354,"Endless Legend",play,32.0,0 -9823354,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -9823354,"Dragon Age Origins - Ultimate Edition",play,31.0,0 -9823354,"Anno 2070",purchase,1.0,0 -9823354,"Anno 2070",play,30.0,0 -9823354,"Prison Architect",purchase,1.0,0 -9823354,"Prison Architect",play,28.0,0 -9823354,"BioShock",purchase,1.0,0 -9823354,"BioShock",play,26.0,0 -9823354,"Batman Arkham City GOTY",purchase,1.0,0 -9823354,"Batman Arkham City GOTY",play,26.0,0 -9823354,"Half-Life 2",purchase,1.0,0 -9823354,"Half-Life 2",play,24.0,0 -9823354,"Defense Grid The Awakening",purchase,1.0,0 -9823354,"Defense Grid The Awakening",play,24.0,0 -9823354,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -9823354,"Sins of a Solar Empire Rebellion",play,22.0,0 -9823354,"Far Cry 3",purchase,1.0,0 -9823354,"Far Cry 3",play,22.0,0 -9823354,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -9823354,"Sid Meier's Civilization IV Beyond the Sword",play,21.0,0 -9823354,"Sid Meier's Civilization IV",purchase,1.0,0 -9823354,"Sid Meier's Civilization IV",play,21.0,0 -9823354,"Franchise Hockey Manager 2014",purchase,1.0,0 -9823354,"Franchise Hockey Manager 2014",play,21.0,0 -9823354,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -9823354,"Dark Messiah of Might & Magic Single Player",play,21.0,0 -9823354,"Company of Heroes 2",purchase,1.0,0 -9823354,"Company of Heroes 2",play,19.8,0 -9823354,"HAWKEN",purchase,1.0,0 -9823354,"HAWKEN",play,19.7,0 -9823354,"Dishonored",purchase,1.0,0 -9823354,"Dishonored",play,19.7,0 -9823354,"R.U.S.E",purchase,1.0,0 -9823354,"R.U.S.E",play,19.1,0 -9823354,"Tomb Raider",purchase,1.0,0 -9823354,"Tomb Raider",play,19.1,0 -9823354,"Alien Isolation",purchase,1.0,0 -9823354,"Alien Isolation",play,18.8,0 -9823354,"Homeworld Remastered Collection",purchase,1.0,0 -9823354,"Homeworld Remastered Collection",play,17.2,0 -9823354,"Portal 2",purchase,1.0,0 -9823354,"Portal 2",play,16.9,0 -9823354,"Wolfenstein The New Order",purchase,1.0,0 -9823354,"Wolfenstein The New Order",play,16.6,0 -9823354,"Dead Space",purchase,1.0,0 -9823354,"Dead Space",play,16.5,0 -9823354,"BioShock Infinite",purchase,1.0,0 -9823354,"BioShock Infinite",play,15.6,0 -9823354,"State of Decay",purchase,1.0,0 -9823354,"State of Decay",play,15.2,0 -9823354,"Banished",purchase,1.0,0 -9823354,"Banished",play,15.2,0 -9823354,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -9823354,"Red Faction Guerrilla Steam Edition",play,14.8,0 -9823354,"Amnesia The Dark Descent",purchase,1.0,0 -9823354,"Amnesia The Dark Descent",play,14.8,0 -9823354,"Metro Last Light",purchase,1.0,0 -9823354,"Metro Last Light",play,14.0,0 -9823354,"The Walking Dead",purchase,1.0,0 -9823354,"The Walking Dead",play,13.8,0 -9823354,"Half-Life 2 Episode Two",purchase,1.0,0 -9823354,"Half-Life 2 Episode Two",play,13.2,0 -9823354,"PlanetSide 2",purchase,1.0,0 -9823354,"PlanetSide 2",play,13.1,0 -9823354,"Team Fortress 2",purchase,1.0,0 -9823354,"Team Fortress 2",play,12.6,0 -9823354,"Crysis 2 Maximum Edition",purchase,1.0,0 -9823354,"Crysis 2 Maximum Edition",play,12.5,0 -9823354,"Dead Space 2",purchase,1.0,0 -9823354,"Dead Space 2",play,12.5,0 -9823354,"Star Wars Knights of the Old Republic",purchase,1.0,0 -9823354,"Star Wars Knights of the Old Republic",play,12.1,0 -9823354,"South Park The Stick of Truth",purchase,1.0,0 -9823354,"South Park The Stick of Truth",play,12.0,0 -9823354,"Plague Inc Evolved",purchase,1.0,0 -9823354,"Plague Inc Evolved",play,12.0,0 -9823354,"Crysis",purchase,1.0,0 -9823354,"Crysis",play,11.4,0 -9823354,"Medieval II Total War Kingdoms",purchase,1.0,0 -9823354,"Medieval II Total War Kingdoms",play,11.1,0 -9823354,"Need for Speed Hot Pursuit",purchase,1.0,0 -9823354,"Need for Speed Hot Pursuit",play,11.0,0 -9823354,"Metro 2033",purchase,1.0,0 -9823354,"Metro 2033",play,11.0,0 -9823354,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -9823354,"Game of Thrones - A Telltale Games Series",play,9.3,0 -9823354,"Outlast",purchase,1.0,0 -9823354,"Outlast",play,9.2,0 -9823354,"Darwinia",purchase,1.0,0 -9823354,"Darwinia",play,9.0,0 -9823354,"Castle Crashers",purchase,1.0,0 -9823354,"Castle Crashers",play,9.0,0 -9823354,"Sins of a Solar Empire Trinity",purchase,1.0,0 -9823354,"Sins of a Solar Empire Trinity",play,8.9,0 -9823354,"Portal",purchase,1.0,0 -9823354,"Portal",play,8.2,0 -9823354,"Counter-Strike Source",purchase,1.0,0 -9823354,"Counter-Strike Source",play,7.9,0 -9823354,"F.E.A.R.",purchase,1.0,0 -9823354,"F.E.A.R.",play,7.9,0 -9823354,"Deus Ex Human Revolution",purchase,1.0,0 -9823354,"Deus Ex Human Revolution",play,7.4,0 -9823354,"Infested Planet",purchase,1.0,0 -9823354,"Infested Planet",play,7.4,0 -9823354,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -9823354,"F.E.A.R. 2 Project Origin",play,7.2,0 -9823354,"RISK Factions",purchase,1.0,0 -9823354,"RISK Factions",play,7.2,0 -9823354,"BioShock 2",purchase,1.0,0 -9823354,"BioShock 2",play,7.2,0 -9823354,"Crusader Kings II",purchase,1.0,0 -9823354,"Crusader Kings II",play,6.7,0 -9823354,"Half-Life Source",purchase,1.0,0 -9823354,"Half-Life Source",play,6.6,0 -9823354,"SpaceChem",purchase,1.0,0 -9823354,"SpaceChem",play,6.5,0 -9823354,"Prey",purchase,1.0,0 -9823354,"Prey",play,5.4,0 -9823354,"Half-Life 2 Episode One",purchase,1.0,0 -9823354,"Half-Life 2 Episode One",play,5.2,0 -9823354,"Amnesia A Machine for Pigs",purchase,1.0,0 -9823354,"Amnesia A Machine for Pigs",play,4.9,0 -9823354,"Fate of the World",purchase,1.0,0 -9823354,"Fate of the World",play,4.7,0 -9823354,"Alan Wake",purchase,1.0,0 -9823354,"Alan Wake",play,4.6,0 -9823354,"F.E.A.R. 3",purchase,1.0,0 -9823354,"F.E.A.R. 3",play,4.0,0 -9823354,"Audiosurf",purchase,1.0,0 -9823354,"Audiosurf",play,3.8,0 -9823354,"ORION Prelude",purchase,1.0,0 -9823354,"ORION Prelude",play,3.5,0 -9823354,"Supreme Commander Forged Alliance",purchase,1.0,0 -9823354,"Supreme Commander Forged Alliance",play,3.4,0 -9823354,"Ticket to Ride",purchase,1.0,0 -9823354,"Ticket to Ride",play,3.3,0 -9823354,"Worms Reloaded",purchase,1.0,0 -9823354,"Worms Reloaded",play,3.3,0 -9823354,"LIMBO",purchase,1.0,0 -9823354,"LIMBO",play,3.2,0 -9823354,"Left 4 Dead 2",purchase,1.0,0 -9823354,"Left 4 Dead 2",play,2.7,0 -9823354,"Borderlands 2",purchase,1.0,0 -9823354,"Borderlands 2",play,2.2,0 -9823354,"Wings of Prey",purchase,1.0,0 -9823354,"Wings of Prey",play,2.2,0 -9823354,"Counter-Strike",purchase,1.0,0 -9823354,"Counter-Strike",play,2.2,0 -9823354,"Half-Life Blue Shift",purchase,1.0,0 -9823354,"Half-Life Blue Shift",play,2.1,0 -9823354,"Europa Universalis IV",purchase,1.0,0 -9823354,"Europa Universalis IV",play,2.1,0 -9823354,"Earth 2160",purchase,1.0,0 -9823354,"Earth 2160",play,2.1,0 -9823354,"Wasteland 2 Director's Cut",purchase,1.0,0 -9823354,"Wasteland 2 Director's Cut",play,1.8,0 -9823354,"Dead Island",purchase,1.0,0 -9823354,"Dead Island",play,1.8,0 -9823354,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",purchase,1.0,0 -9823354,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",play,1.7,0 -9823354,"Wargame AirLand Battle",purchase,1.0,0 -9823354,"Wargame AirLand Battle",play,1.6,0 -9823354,"The Forest",purchase,1.0,0 -9823354,"The Forest",play,1.5,0 -9823354,"Transistor",purchase,1.0,0 -9823354,"Transistor",play,1.4,0 -9823354,"Fallout New Vegas",purchase,1.0,0 -9823354,"Fallout New Vegas",play,1.4,0 -9823354,"Star Wars Empire at War Gold",purchase,1.0,0 -9823354,"Star Wars Empire at War Gold",play,1.2,0 -9823354,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -9823354,"Rising Storm/Red Orchestra 2 Multiplayer",play,1.2,0 -9823354,"DEFCON",purchase,1.0,0 -9823354,"DEFCON",play,1.1,0 -9823354,"X3 Reunion",purchase,1.0,0 -9823354,"X3 Reunion",play,1.1,0 -9823354,"Alien Swarm",purchase,1.0,0 -9823354,"Alien Swarm",play,1.1,0 -9823354,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -9823354,"Counter-Strike Condition Zero Deleted Scenes",play,1.1,0 -9823354,"Penumbra Black Plague",purchase,1.0,0 -9823354,"Penumbra Black Plague",play,1.1,0 -9823354,"Mirror's Edge",purchase,1.0,0 -9823354,"Mirror's Edge",play,1.0,0 -9823354,"The Stanley Parable",purchase,1.0,0 -9823354,"The Stanley Parable",play,1.0,0 -9823354,"PAYDAY 2",purchase,1.0,0 -9823354,"PAYDAY 2",play,0.9,0 -9823354,"L.A. Noire",purchase,1.0,0 -9823354,"L.A. Noire",play,0.8,0 -9823354,"The Long Dark",purchase,1.0,0 -9823354,"The Long Dark",play,0.7,0 -9823354,"Papers, Please",purchase,1.0,0 -9823354,"Papers, Please",play,0.7,0 -9823354,"Alien Breed 2 Assault",purchase,1.0,0 -9823354,"Alien Breed 2 Assault",play,0.6,0 -9823354,"Assassin's Creed II",purchase,1.0,0 -9823354,"Assassin's Creed II",play,0.6,0 -9823354,"Planetary Annihilation",purchase,1.0,0 -9823354,"Planetary Annihilation",play,0.6,0 -9823354,"Among the Sleep",purchase,1.0,0 -9823354,"Among the Sleep",play,0.5,0 -9823354,"SiN Episodes Emergence",purchase,1.0,0 -9823354,"SiN Episodes Emergence",play,0.5,0 -9823354,"Cities Skylines",purchase,1.0,0 -9823354,"Cities Skylines",play,0.4,0 -9823354,"Half-Life 2 Lost Coast",purchase,1.0,0 -9823354,"Half-Life 2 Lost Coast",play,0.4,0 -9823354,"Panzer Corps",purchase,1.0,0 -9823354,"Panzer Corps",play,0.3,0 -9823354,"3DMark",purchase,1.0,0 -9823354,"3DMark",play,0.3,0 -9823354,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -9823354,"F.E.A.R. Perseus Mandate",play,0.2,0 -9823354,"Day of Defeat Source",purchase,1.0,0 -9823354,"Day of Defeat Source",play,0.2,0 -9823354,"Team Fortress Classic",purchase,1.0,0 -9823354,"Team Fortress Classic",play,0.1,0 -9823354,"Half-Life 2 Deathmatch",purchase,1.0,0 -9823354,"Half-Life 2 Deathmatch",play,0.1,0 -9823354,"Space Empires IV Deluxe",purchase,1.0,0 -9823354,"Space Empires IV Deluxe",play,0.1,0 -9823354,"Out of the Park Baseball 15",purchase,1.0,0 -9823354,"EVGA PrecisionX 16",purchase,1.0,0 -9823354,"Supreme Ruler Ultimate",purchase,1.0,0 -9823354,"The Walking Dead Season Two",purchase,1.0,0 -9823354,"DOOM 3 Resurrection of Evil",purchase,1.0,0 -9823354,"3DMark API Overhead feature test",purchase,1.0,0 -9823354,"3DMark Cloud Gate benchmark",purchase,1.0,0 -9823354,"3DMark Fire Strike benchmark",purchase,1.0,0 -9823354,"3DMark Ice Storm benchmark",purchase,1.0,0 -9823354,"3DMark Sky Diver benchmark",purchase,1.0,0 -9823354,"Alan Wake's American Nightmare",purchase,1.0,0 -9823354,"Call of Juarez Gunslinger",purchase,1.0,0 -9823354,"Company of Heroes 2 - Ardennes Assault",purchase,1.0,0 -9823354,"Counter-Strike Condition Zero",purchase,1.0,0 -9823354,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -9823354,"Day of Defeat",purchase,1.0,0 -9823354,"Deathmatch Classic",purchase,1.0,0 -9823354,"Defense Grid Resurgence Map Pack 1",purchase,1.0,0 -9823354,"Defense Grid Resurgence Map Pack 2 ",purchase,1.0,0 -9823354,"Defense Grid Resurgence Map Pack 3",purchase,1.0,0 -9823354,"Defense Grid Resurgence Map Pack 4",purchase,1.0,0 -9823354,"Distance",purchase,1.0,0 -9823354,"DOOM 3",purchase,1.0,0 -9823354,"F.E.A.R. Extraction Point",purchase,1.0,0 -9823354,"Fractured Space",purchase,1.0,0 -9823354,"Garry's Mod",purchase,1.0,0 -9823354,"Half-Life",purchase,1.0,0 -9823354,"Half-Life Opposing Force",purchase,1.0,0 -9823354,"Half-Life Deathmatch Source",purchase,1.0,0 -9823354,"HAWKEN - Mercenary Bundle",purchase,1.0,0 -9823354,"Outlast Whistleblower DLC",purchase,1.0,0 -9823354,"Penumbra Overture",purchase,1.0,0 -9823354,"Penumbra Requiem",purchase,1.0,0 -9823354,"R.U.S.E.",purchase,1.0,0 -9823354,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -9823354,"Ricochet",purchase,1.0,0 -9823354,"Sid Meier's Civilization IV",purchase,1.0,0 -9823354,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -9823354,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -9823354,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -9823354,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -9823354,"SiN",purchase,1.0,0 -9823354,"SiN Multiplayer",purchase,1.0,0 -9823354,"Sins of a Solar Empire Rebellion - Stellar Phenomena DLC",purchase,1.0,0 -9823354,"Sins of a Solar Empire Rebellion Forbidden Worlds",purchase,1.0,0 -9823354,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -9823354,"Sniper Elite V2",purchase,1.0,0 -9823354,"State of Decay - Breakdown",purchase,1.0,0 -9823354,"State of Decay - Lifeline",purchase,1.0,0 -9823354,"Supreme Commander",purchase,1.0,0 -9823354,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -9823354,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -9823354,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -9823354,"Ticket to Ride - Europe",purchase,1.0,0 -9823354,"Ticket to Ride - Legendary Asia",purchase,1.0,0 -9823354,"Ticket to Ride - Switzerland",purchase,1.0,0 -9823354,"Ticket to Ride - USA 1910",purchase,1.0,0 -9823354,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -9823354,"Wasteland 1 - The Original Classic",purchase,1.0,0 -9823354,"Wasteland 2",purchase,1.0,0 -9823354,"XCOM Enemy Within",purchase,1.0,0 -304467587,"Heroes & Generals",purchase,1.0,0 -165269326,"Dota 2",purchase,1.0,0 -165269326,"Dota 2",play,26.0,0 -226033921,"Grand Theft Auto V",purchase,1.0,0 -226033921,"Grand Theft Auto V",play,86.0,0 -226033921,"Marvel Heroes 2015",purchase,1.0,0 -226033921,"Marvel Heroes 2015",play,6.1,0 -226033921,"Dota 2",purchase,1.0,0 -226033921,"Dota 2",play,1.8,0 -226033921,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -226033921,"Navy Field 2 Conqueror of the Ocean",play,0.1,0 -226033921,"Narcissu 1st & 2nd",purchase,1.0,0 -226033921,"Warframe",purchase,1.0,0 -232064401,"Dota 2",purchase,1.0,0 -232064401,"Dota 2",play,4.5,0 -141593973,"Dota 2",purchase,1.0,0 -141593973,"Dota 2",play,423.0,0 -174965596,"Dota 2",purchase,1.0,0 -174965596,"Dota 2",play,6.6,0 -100519466,"Arma 3",purchase,1.0,0 -100519466,"Arma 3",play,2484.0,0 -100519466,"Garry's Mod",purchase,1.0,0 -100519466,"Garry's Mod",play,188.0,0 -100519466,"ARK Survival Evolved",purchase,1.0,0 -100519466,"ARK Survival Evolved",play,183.0,0 -100519466,"Arma 2 Operation Arrowhead",purchase,1.0,0 -100519466,"Arma 2 Operation Arrowhead",play,147.0,0 -100519466,"Saints Row The Third",purchase,1.0,0 -100519466,"Saints Row The Third",play,114.0,0 -100519466,"Space Engineers",purchase,1.0,0 -100519466,"Space Engineers",play,83.0,0 -100519466,"Robocraft",purchase,1.0,0 -100519466,"Robocraft",play,73.0,0 -100519466,"Team Fortress 2",purchase,1.0,0 -100519466,"Team Fortress 2",play,36.0,0 -100519466,"Sniper Ghost Warrior",purchase,1.0,0 -100519466,"Sniper Ghost Warrior",play,32.0,0 -100519466,"PAYDAY 2",purchase,1.0,0 -100519466,"PAYDAY 2",play,30.0,0 -100519466,"Euro Truck Simulator 2",purchase,1.0,0 -100519466,"Euro Truck Simulator 2",play,29.0,0 -100519466,"Farming Simulator 15",purchase,1.0,0 -100519466,"Farming Simulator 15",play,25.0,0 -100519466,"Sniper Ghost Warrior 2",purchase,1.0,0 -100519466,"Sniper Ghost Warrior 2",play,24.0,0 -100519466,"BLOCKADE 3D",purchase,1.0,0 -100519466,"BLOCKADE 3D",play,19.4,0 -100519466,"HAWKEN",purchase,1.0,0 -100519466,"HAWKEN",play,17.7,0 -100519466,"Borderlands 2",purchase,1.0,0 -100519466,"Borderlands 2",play,15.6,0 -100519466,"Portal 2",purchase,1.0,0 -100519466,"Portal 2",play,15.0,0 -100519466,"Dishonored",purchase,1.0,0 -100519466,"Dishonored",play,14.8,0 -100519466,"Rocket League",purchase,1.0,0 -100519466,"Rocket League",play,9.7,0 -100519466,"Dead Island",purchase,1.0,0 -100519466,"Dead Island",play,6.9,0 -100519466,"Rise of Nations Extended Edition",purchase,1.0,0 -100519466,"Rise of Nations Extended Edition",play,6.7,0 -100519466,"Warframe",purchase,1.0,0 -100519466,"Warframe",play,6.6,0 -100519466,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -100519466,"Sid Meier's Civilization Beyond Earth",play,5.3,0 -100519466,"Don't Starve",purchase,1.0,0 -100519466,"Don't Starve",play,3.6,0 -100519466,"The Elder Scrolls V Skyrim",purchase,1.0,0 -100519466,"The Elder Scrolls V Skyrim",play,3.5,0 -100519466,"PlanetSide 2",purchase,1.0,0 -100519466,"PlanetSide 2",play,3.4,0 -100519466,"Need for Speed SHIFT",purchase,1.0,0 -100519466,"Need for Speed SHIFT",play,1.8,0 -100519466,"War Thunder",purchase,1.0,0 -100519466,"War Thunder",play,1.6,0 -100519466,"APB Reloaded",purchase,1.0,0 -100519466,"APB Reloaded",play,1.4,0 -100519466,"SpeedRunners",purchase,1.0,0 -100519466,"SpeedRunners",play,1.2,0 -100519466,"Arma 2",purchase,1.0,0 -100519466,"Arma 2",play,0.8,0 -100519466,"Saints Row IV",purchase,1.0,0 -100519466,"Saints Row IV",play,0.6,0 -100519466,"Toribash",purchase,1.0,0 -100519466,"Toribash",play,0.4,0 -100519466,"Tactical Intervention",purchase,1.0,0 -100519466,"Tactical Intervention",play,0.3,0 -100519466,"SimCity 4 Deluxe",purchase,1.0,0 -100519466,"Arma 2 DayZ Mod",purchase,1.0,0 -100519466,"Age of Empires II HD Edition",purchase,1.0,0 -100519466,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -100519466,"Arma 3 Helicopters",purchase,1.0,0 -100519466,"Arma 3 Karts",purchase,1.0,0 -100519466,"Arma 3 Marksmen",purchase,1.0,0 -100519466,"Arma 3 Zeus",purchase,1.0,0 -100519466,"Arma Cold War Assault",purchase,1.0,0 -100519466,"Clicker Heroes",purchase,1.0,0 -100519466,"Don't Starve Together Beta",purchase,1.0,0 -100519466,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -100519466,"Loadout",purchase,1.0,0 -100519466,"Marvel Heroes 2015",purchase,1.0,0 -100519466,"Pid ",purchase,1.0,0 -100519466,"RADical ROACH Deluxe Edition",purchase,1.0,0 -100519466,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -100519466,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -100519466,"Stronghold HD",purchase,1.0,0 -100519466,"The Mighty Quest For Epic Loot",purchase,1.0,0 -107886872,"Left 4 Dead 2",purchase,1.0,0 -107886872,"Left 4 Dead 2",play,27.0,0 -107886872,"Trine 2",purchase,1.0,0 -107886872,"Trine 2",play,2.8,0 -153415214,"Dota 2",purchase,1.0,0 -153415214,"Dota 2",play,0.2,0 -180789959,"Borderlands 2",purchase,1.0,0 -180789959,"Borderlands 2",play,14.8,0 -180789959,"The Elder Scrolls V Skyrim",purchase,1.0,0 -180789959,"The Elder Scrolls V Skyrim",play,5.0,0 -180789959,"Team Fortress 2",purchase,1.0,0 -180789959,"Team Fortress 2",play,3.5,0 -180789959,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -180789959,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -236160325,"Counter-Strike Nexon Zombies",purchase,1.0,0 -236541446,"Dota 2",purchase,1.0,0 -236541446,"Dota 2",play,0.2,0 -155997063,"Team Fortress 2",purchase,1.0,0 -155997063,"Team Fortress 2",play,3.0,0 -168031436,"Fallout New Vegas",purchase,1.0,0 -168031436,"Fallout New Vegas",play,60.0,0 -168031436,"The Elder Scrolls V Skyrim",purchase,1.0,0 -168031436,"The Elder Scrolls V Skyrim",play,14.1,0 -168031436,"Saints Row The Third",purchase,1.0,0 -168031436,"Saints Row The Third",play,12.5,0 -168031436,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -168031436,"Tom Clancy's Ghost Recon Phantoms - NA",play,9.0,0 -168031436,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -168031436,"Fallout 3 - Game of the Year Edition",play,7.3,0 -168031436,"Garry's Mod",purchase,1.0,0 -168031436,"Garry's Mod",play,4.8,0 -168031436,"Fable - The Lost Chapters",purchase,1.0,0 -168031436,"Fable - The Lost Chapters",play,3.2,0 -168031436,"Metro 2033",purchase,1.0,0 -168031436,"Metro 2033",play,3.0,0 -168031436,"Sang-Froid - Tales of Werewolves",purchase,1.0,0 -168031436,"Sang-Froid - Tales of Werewolves",play,0.7,0 -168031436,"The Elder Scrolls III Morrowind",purchase,1.0,0 -168031436,"The Elder Scrolls III Morrowind",play,0.5,0 -168031436,"Spiral Knights",purchase,1.0,0 -168031436,"Spiral Knights",play,0.5,0 -168031436,"Grand Theft Auto San Andreas",purchase,1.0,0 -168031436,"Grand Theft Auto San Andreas",play,0.5,0 -168031436,"Fallout",purchase,1.0,0 -168031436,"Fallout",play,0.4,0 -168031436,"Rust",purchase,1.0,0 -168031436,"Rust",play,0.4,0 -168031436,"Thief Gold",purchase,1.0,0 -168031436,"Thief Gold",play,0.4,0 -168031436,"Thief Deadly Shadows",purchase,1.0,0 -168031436,"Thief Deadly Shadows",play,0.3,0 -168031436,"Empire Total War",purchase,1.0,0 -168031436,"Ascend Hand of Kul",purchase,1.0,0 -168031436,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -168031436,"Fallout New Vegas Dead Money",purchase,1.0,0 -168031436,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -168031436,"Grand Theft Auto San Andreas",purchase,1.0,0 -168031436,"Half-Life 2",purchase,1.0,0 -168031436,"Half-Life 2 Episode One",purchase,1.0,0 -168031436,"Half-Life 2 Episode Two",purchase,1.0,0 -168031436,"Half-Life 2 Lost Coast",purchase,1.0,0 -168031436,"Path of Exile",purchase,1.0,0 -168031436,"Portal",purchase,1.0,0 -168031436,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -168031436,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -168031436,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -168031436,"Thief 2",purchase,1.0,0 -169358223,"Team Fortress 2",purchase,1.0,0 -169358223,"Team Fortress 2",play,407.0,0 -181269219,"Soldier Front 2",purchase,1.0,0 -181269219,"Soldier Front 2",play,3.4,0 -181269219,"Magicka Wizard Wars",purchase,1.0,0 -181269219,"Magicka Wizard Wars",play,2.6,0 -162543176,"Counter-Strike Global Offensive",purchase,1.0,0 -162543176,"Counter-Strike Global Offensive",play,21.0,0 -162543176,"Garry's Mod",purchase,1.0,0 -162543176,"Garry's Mod",play,20.0,0 -162543176,"Team Fortress 2",purchase,1.0,0 -162543176,"Team Fortress 2",play,11.5,0 -162543176,"Borderlands 2",purchase,1.0,0 -162543176,"Borderlands 2",play,2.0,0 -162543176,"Saints Row 2",purchase,1.0,0 -162543176,"Saints Row 2",play,0.5,0 -162543176,"Just Cause 2",purchase,1.0,0 -162543176,"Just Cause 2",play,0.3,0 -162543176,"Far Cry 3",purchase,1.0,0 -162543176,"PAYDAY 2",purchase,1.0,0 -162543176,"Five Nights at Freddy's",purchase,1.0,0 -95898619,"Counter-Strike Source",purchase,1.0,0 -95898619,"Counter-Strike Source",play,396.0,0 -95898619,"Counter-Strike Global Offensive",purchase,1.0,0 -95898619,"Counter-Strike Global Offensive",play,227.0,0 -95898619,"Hitman 2 Silent Assassin",purchase,1.0,0 -95898619,"Hitman 2 Silent Assassin",play,13.4,0 -95898619,"Counter-Strike Condition Zero",purchase,1.0,0 -95898619,"Counter-Strike Condition Zero",play,12.6,0 -95898619,"Insurgency Modern Infantry Combat",purchase,1.0,0 -95898619,"Insurgency Modern Infantry Combat",play,11.2,0 -95898619,"Dead Island",purchase,1.0,0 -95898619,"Dead Island",play,10.1,0 -95898619,"Counter-Strike",purchase,1.0,0 -95898619,"Counter-Strike",play,2.4,0 -95898619,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -95898619,"Day of Defeat",purchase,1.0,0 -95898619,"Deathmatch Classic",purchase,1.0,0 -95898619,"Ricochet",purchase,1.0,0 -185685666,"theHunter",purchase,1.0,0 -185685666,"theHunter",play,0.7,0 -185685666,"Unturned",purchase,1.0,0 -185685666,"Unturned",play,0.6,0 -185685666,"Robocraft",purchase,1.0,0 -185685666,"Robocraft",play,0.2,0 -308280913,"Dota 2",purchase,1.0,0 -308280913,"Dota 2",play,2.3,0 -69857045,"Mafia II",purchase,1.0,0 -69857045,"Mafia II",play,21.0,0 -215492239,"Unturned",purchase,1.0,0 -215492239,"Unturned",play,6.2,0 -16167221,"Counter-Strike Condition Zero",purchase,1.0,0 -16167221,"Counter-Strike Condition Zero",play,722.0,0 -16167221,"Fable III",purchase,1.0,0 -16167221,"Fable III",play,105.0,0 -16167221,"Robin Hood",purchase,1.0,0 -16167221,"Robin Hood",play,39.0,0 -16167221,"Counter-Strike",purchase,1.0,0 -16167221,"Counter-Strike",play,35.0,0 -16167221,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -16167221,"Dark Messiah of Might & Magic Single Player",play,21.0,0 -16167221,"The Forest",purchase,1.0,0 -16167221,"The Forest",play,19.7,0 -16167221,"Total War ROME II - Emperor Edition",purchase,1.0,0 -16167221,"Total War ROME II - Emperor Edition",play,15.9,0 -16167221,"Half-Life 2",purchase,1.0,0 -16167221,"Half-Life 2",play,13.0,0 -16167221,"Desperados - Wanted Dead or Alive",purchase,1.0,0 -16167221,"Desperados - Wanted Dead or Alive",play,11.0,0 -16167221,"Oddworld Abe's Exoddus",purchase,1.0,0 -16167221,"Oddworld Abe's Exoddus",play,10.0,0 -16167221,"Half-Life 2 Episode One",purchase,1.0,0 -16167221,"Half-Life 2 Episode One",play,7.0,0 -16167221,"Hitman 2 Silent Assassin",purchase,1.0,0 -16167221,"Hitman 2 Silent Assassin",play,4.7,0 -16167221,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -16167221,"Counter-Strike Condition Zero Deleted Scenes",play,2.8,0 -16167221,"Team Fortress 2",purchase,1.0,0 -16167221,"Team Fortress 2",play,2.1,0 -16167221,"Portal",purchase,1.0,0 -16167221,"Portal",play,1.9,0 -16167221,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -16167221,"Dark Messiah of Might & Magic Multi-Player",play,1.3,0 -16167221,"Warframe",purchase,1.0,0 -16167221,"Warframe",play,1.3,0 -16167221,"Oddworld Abe's Oddysee",purchase,1.0,0 -16167221,"Oddworld Abe's Oddysee",play,1.1,0 -16167221,"Half-Life 2 Episode Two",purchase,1.0,0 -16167221,"Half-Life 2 Episode Two",play,1.0,0 -16167221,"Neverwinter",purchase,1.0,0 -16167221,"Neverwinter",play,0.7,0 -16167221,"Half-Life 2 Lost Coast",purchase,1.0,0 -16167221,"Half-Life 2 Lost Coast",play,0.6,0 -16167221,"Anno 1404 Venice",purchase,1.0,0 -16167221,"Anno 1404 Venice",play,0.4,0 -16167221,"The Escapists",purchase,1.0,0 -16167221,"The Escapists",play,0.3,0 -16167221,"Source Filmmaker",purchase,1.0,0 -16167221,"Source Filmmaker",play,0.1,0 -16167221,"Little Big Adventure 2",purchase,1.0,0 -16167221,"Little Big Adventure 2",play,0.1,0 -16167221,"Blender 2.76b",purchase,1.0,0 -16167221,"ShareX",purchase,1.0,0 -16167221,"Commandos 2 Men of Courage",purchase,1.0,0 -16167221,"Anno 1404",purchase,1.0,0 -16167221,"Fuse",purchase,1.0,0 -16167221,"Hitman Blood Money",purchase,1.0,0 -16167221,"Hitman Codename 47",purchase,1.0,0 -19586574,"Dragon Nest",purchase,1.0,0 -19586574,"Dragon Nest",play,48.0,0 -19586574,"Counter-Strike",purchase,1.0,0 -19586574,"Counter-Strike",play,38.0,0 -19586574,"Portal 2",purchase,1.0,0 -19586574,"Portal 2",play,25.0,0 -19586574,"From Dust",purchase,1.0,0 -19586574,"From Dust",play,16.9,0 -19586574,"South Park The Stick of Truth",purchase,1.0,0 -19586574,"South Park The Stick of Truth",play,14.5,0 -19586574,"Garry's Mod",purchase,1.0,0 -19586574,"Garry's Mod",play,12.2,0 -19586574,"Counter-Strike Global Offensive",purchase,1.0,0 -19586574,"Counter-Strike Global Offensive",play,11.4,0 -19586574,"Dynasty Warriors 8 - Empires",purchase,1.0,0 -19586574,"Dynasty Warriors 8 - Empires",play,11.0,0 -19586574,"Left 4 Dead 2",purchase,1.0,0 -19586574,"Left 4 Dead 2",play,6.9,0 -19586574,"DRAGON BALL XENOVERSE",purchase,1.0,0 -19586574,"DRAGON BALL XENOVERSE",play,5.2,0 -19586574,"LIMBO",purchase,1.0,0 -19586574,"LIMBO",play,3.5,0 -19586574,"Dota 2",purchase,1.0,0 -19586574,"Dota 2",play,3.3,0 -19586574,"Counter-Strike Condition Zero",purchase,1.0,0 -19586574,"Counter-Strike Condition Zero",play,3.3,0 -19586574,"SpaceChem",purchase,1.0,0 -19586574,"SpaceChem",play,2.3,0 -19586574,"RollerCoaster Tycoon Deluxe",purchase,1.0,0 -19586574,"RollerCoaster Tycoon Deluxe",play,2.0,0 -19586574,"Plague Inc Evolved",purchase,1.0,0 -19586574,"Plague Inc Evolved",play,1.4,0 -19586574,"WAKFU",purchase,1.0,0 -19586574,"WAKFU",play,0.7,0 -19586574,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -19586574,"Counter-Strike Condition Zero Deleted Scenes",play,0.6,0 -19586574,"Vindictus",purchase,1.0,0 -19586574,"Vindictus",play,0.3,0 -19586574,"Subspace Continuum",purchase,1.0,0 -19586574,"Subspace Continuum",play,0.2,0 -19586574,"Recettear An Item Shop's Tale",purchase,1.0,0 -19586574,"Day of Defeat",purchase,1.0,0 -19586574,"Deathmatch Classic",purchase,1.0,0 -19586574,"PAYDAY 2",purchase,1.0,0 -19586574,"Ricochet",purchase,1.0,0 -19586574,"Universe Sandbox",purchase,1.0,0 -200759485,"Counter-Strike",purchase,1.0,0 -200759485,"Counter-Strike",play,5.1,0 -200759485,"Dota 2",purchase,1.0,0 -200759485,"Dota 2",play,0.4,0 -200759485,"Counter-Strike Condition Zero",purchase,1.0,0 -200759485,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -82792088,"Football Manager 2011",purchase,1.0,0 -82792088,"Football Manager 2011",play,63.0,0 -153290864,"Team Fortress 2",purchase,1.0,0 -153290864,"Team Fortress 2",play,0.8,0 -213909719,"The Binding of Isaac",purchase,1.0,0 -213909719,"The Binding of Isaac",play,67.0,0 -219446813,"Dota 2",purchase,1.0,0 -219446813,"Dota 2",play,210.0,0 -219446813,"Blender 2.76b",purchase,1.0,0 -219446813,"Dizzel",purchase,1.0,0 -41883322,"The Elder Scrolls V Skyrim",purchase,1.0,0 -41883322,"The Elder Scrolls V Skyrim",play,107.0,0 -41883322,"Middle-earth Shadow of Mordor",purchase,1.0,0 -41883322,"Middle-earth Shadow of Mordor",play,64.0,0 -41883322,"King Arthur II - The Role-playing Wargame",purchase,1.0,0 -41883322,"King Arthur II - The Role-playing Wargame",play,37.0,0 -41883322,"Batman Arkham City GOTY",purchase,1.0,0 -41883322,"Batman Arkham City GOTY",play,36.0,0 -41883322,"Dishonored (RU)",purchase,1.0,0 -41883322,"Dishonored (RU)",play,33.0,0 -41883322,"Total War SHOGUN 2",purchase,1.0,0 -41883322,"Total War SHOGUN 2",play,24.0,0 -41883322,"Darksiders II",purchase,1.0,0 -41883322,"Darksiders II",play,21.0,0 -41883322,"Lords Of The Fallen",purchase,1.0,0 -41883322,"Lords Of The Fallen",play,20.0,0 -41883322,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -41883322,"Warhammer 40,000 Dawn of War II Retribution",play,20.0,0 -41883322,"Warhammer 40,000 Space Marine",purchase,1.0,0 -41883322,"Warhammer 40,000 Space Marine",play,16.2,0 -41883322,"Aliens vs. Predator",purchase,1.0,0 -41883322,"Aliens vs. Predator",play,11.2,0 -41883322,"Mars War Logs",purchase,1.0,0 -41883322,"Mars War Logs",play,10.0,0 -41883322,"Mortal Kombat Komplete Edition",purchase,1.0,0 -41883322,"Mortal Kombat Komplete Edition",play,7.3,0 -41883322,"Space Hulk",purchase,1.0,0 -41883322,"Space Hulk",play,4.6,0 -41883322,"Call of Duty Ghosts",purchase,1.0,0 -41883322,"Call of Duty Ghosts",play,4.2,0 -41883322,"Aliens Colonial Marines",purchase,1.0,0 -41883322,"Aliens Colonial Marines",play,3.4,0 -41883322,"Viking Battle for Asgard",purchase,1.0,0 -41883322,"Viking Battle for Asgard",play,2.9,0 -41883322,"The Lord of the Rings War in the North",purchase,1.0,0 -41883322,"The Lord of the Rings War in the North",play,2.8,0 -41883322,"Marvel Heroes 2015",purchase,1.0,0 -41883322,"Marvel Heroes 2015",play,0.8,0 -41883322,"Confrontation",purchase,1.0,0 -41883322,"Confrontation",play,0.8,0 -41883322,"Horizon",purchase,1.0,0 -41883322,"Horizon",play,0.7,0 -41883322,"Lost Planet Extreme Condition",purchase,1.0,0 -41883322,"Lost Planet Extreme Condition",play,0.2,0 -41883322,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -41883322,"Path of Exile",purchase,1.0,0 -41883322,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -41883322,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -41883322,"Warhammer 40,000 Storm of Vengeance Deathwing Terminator",purchase,1.0,0 -260269555,"Dota 2",purchase,1.0,0 -260269555,"Dota 2",play,3.2,0 -186333740,"Dota 2",purchase,1.0,0 -186333740,"Dota 2",play,6.6,0 -237047627,"BLOCKADE 3D",purchase,1.0,0 -237047627,"BLOCKADE 3D",play,0.7,0 -237047627,"Pirates, Vikings, & Knights II",purchase,1.0,0 -142004534,"Dota 2",purchase,1.0,0 -142004534,"Dota 2",play,94.0,0 -307663333,"Warframe",purchase,1.0,0 -99017037,"Far Cry 3",purchase,1.0,0 -99017037,"Far Cry 3",play,143.0,0 -99017037,"Jagged Alliance - Back in Action",purchase,1.0,0 -99017037,"Jagged Alliance - Back in Action",play,91.0,0 -99017037,"Torchlight II",purchase,1.0,0 -99017037,"Torchlight II",play,44.0,0 -170491009,"Terraria",purchase,1.0,0 -170491009,"Terraria",play,286.0,0 -170491009,"Team Fortress 2",purchase,1.0,0 -170491009,"Team Fortress 2",play,197.0,0 -170491009,"Garry's Mod",purchase,1.0,0 -170491009,"Garry's Mod",play,55.0,0 -170491009,"The Elder Scrolls V Skyrim",purchase,1.0,0 -170491009,"The Elder Scrolls V Skyrim",play,48.0,0 -170491009,"Far Cry 3",purchase,1.0,0 -170491009,"Far Cry 3",play,34.0,0 -170491009,"Borderlands 2",purchase,1.0,0 -170491009,"Borderlands 2",play,31.0,0 -170491009,"Turbo Dismount",purchase,1.0,0 -170491009,"Turbo Dismount",play,31.0,0 -170491009,"ARK Survival Evolved",purchase,1.0,0 -170491009,"ARK Survival Evolved",play,31.0,0 -170491009,"Rocket League",purchase,1.0,0 -170491009,"Rocket League",play,14.4,0 -170491009,"Warframe",purchase,1.0,0 -170491009,"Warframe",play,14.1,0 -170491009,"Cubic Castles",purchase,1.0,0 -170491009,"Cubic Castles",play,6.8,0 -170491009,"Far Cry 4",purchase,1.0,0 -170491009,"Far Cry 4",play,6.5,0 -170491009,"Call of Duty Black Ops III",purchase,1.0,0 -170491009,"Call of Duty Black Ops III",play,4.8,0 -170491009,"BattleBlock Theater",purchase,1.0,0 -170491009,"BattleBlock Theater",play,4.6,0 -170491009,"Kerbal Space Program",purchase,1.0,0 -170491009,"Kerbal Space Program",play,4.4,0 -170491009,"Robocraft",purchase,1.0,0 -170491009,"Robocraft",play,4.2,0 -170491009,"The Mighty Quest For Epic Loot",purchase,1.0,0 -170491009,"The Mighty Quest For Epic Loot",play,3.4,0 -170491009,"Double Action Boogaloo",purchase,1.0,0 -170491009,"Double Action Boogaloo",play,0.1,0 -170491009,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -170491009,"Trials Fusion",purchase,1.0,0 -170491009,"PlanetSide 2",purchase,1.0,0 -170491009,"Quake Live",purchase,1.0,0 -195459356,"Arma 2 Operation Arrowhead",purchase,1.0,0 -195459356,"Arma 2 Operation Arrowhead",play,0.5,0 -195459356,"Arma 2",purchase,1.0,0 -195459356,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -195459356,"Nosgoth",purchase,1.0,0 -195459356,"Unturned",purchase,1.0,0 -195459356,"Warframe",purchase,1.0,0 -30280104,"Counter-Strike Source",purchase,1.0,0 -30280104,"Counter-Strike Source",play,3.3,0 -30280104,"Half-Life 2 Deathmatch",purchase,1.0,0 -30280104,"Half-Life 2 Deathmatch",play,2.0,0 -30280104,"Dota 2",purchase,1.0,0 -30280104,"Dota 2",play,1.5,0 -30280104,"Half-Life 2 Lost Coast",purchase,1.0,0 -30280104,"Day of Defeat Source",purchase,1.0,0 -227153589,"Dota 2",purchase,1.0,0 -227153589,"Dota 2",play,1.2,0 -64365339,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -64365339,"Call of Duty Modern Warfare 2 - Multiplayer",play,80.0,0 -64365339,"Call of Duty Modern Warfare 2",purchase,1.0,0 -64365339,"Call of Duty Modern Warfare 2",play,24.0,0 -64365339,"Portal",purchase,1.0,0 -64365339,"Portal",play,14.0,0 -103669953,"Portal 2",purchase,1.0,0 -103669953,"Portal 2",play,4.7,0 -103669953,"Kentucky Route Zero",purchase,1.0,0 -103669953,"Kentucky Route Zero",play,0.9,0 -103669953,"LIMBO",purchase,1.0,0 -103669953,"LIMBO",play,0.7,0 -103360,"Counter-Strike",purchase,1.0,0 -103360,"Counter-Strike Condition Zero",purchase,1.0,0 -103360,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -103360,"Day of Defeat",purchase,1.0,0 -103360,"Deathmatch Classic",purchase,1.0,0 -103360,"Half-Life",purchase,1.0,0 -103360,"Half-Life Blue Shift",purchase,1.0,0 -103360,"Half-Life Opposing Force",purchase,1.0,0 -103360,"Ricochet",purchase,1.0,0 -103360,"Team Fortress Classic",purchase,1.0,0 -299670894,"Euro Truck Simulator 2",purchase,1.0,0 -299670894,"Euro Truck Simulator 2",play,3.9,0 -237275985,"Counter-Strike Global Offensive",purchase,1.0,0 -237275985,"Counter-Strike Global Offensive",play,46.0,0 -178709401,"Dota 2",purchase,1.0,0 -178709401,"Dota 2",play,200.0,0 -198156213,"Dota 2",purchase,1.0,0 -198156213,"Dota 2",play,17.0,0 -198156213,"Unturned",purchase,1.0,0 -190231757,"The Elder Scrolls V Skyrim",purchase,1.0,0 -190231757,"The Elder Scrolls V Skyrim",play,18.0,0 -76216184,"Magic The Gathering - Duels of the Planeswalkers",purchase,1.0,0 -76216184,"Magic The Gathering - Duels of the Planeswalkers",play,7.3,0 -96674283,"Commandos 2 Men of Courage",purchase,1.0,0 -96674283,"Commandos 2 Men of Courage",play,0.4,0 -212284721,"Dota 2",purchase,1.0,0 -212284721,"Dota 2",play,0.9,0 -20321898,"Counter-Strike Source",purchase,1.0,0 -20321898,"Counter-Strike Source",play,1.0,0 -20321898,"Day of Defeat Source",purchase,1.0,0 -20321898,"Half-Life 2 Deathmatch",purchase,1.0,0 -20321898,"Half-Life 2 Lost Coast",purchase,1.0,0 -48239695,"Sid Meier's Civilization V",purchase,1.0,0 -48239695,"Sid Meier's Civilization V",play,312.0,0 -48239695,"Fallout New Vegas",purchase,1.0,0 -48239695,"Fallout New Vegas",play,98.0,0 -48239695,"Half-Life 2",purchase,1.0,0 -48239695,"Half-Life 2",play,22.0,0 -48239695,"Half-Life 2 Episode Two",purchase,1.0,0 -48239695,"Half-Life 2 Episode Two",play,7.2,0 -48239695,"Half-Life 2 Episode One",purchase,1.0,0 -48239695,"Half-Life 2 Episode One",play,5.6,0 -48239695,"Portal",purchase,1.0,0 -48239695,"Portal",play,0.2,0 -48239695,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -48239695,"Fallout New Vegas Dead Money",purchase,1.0,0 -48239695,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -48239695,"Half-Life 2 Lost Coast",purchase,1.0,0 -207216516,"Nobunaga's Ambition Souzou with Power Up Kit",purchase,1.0,0 -207216516,"Nobunaga's Ambition Souzou with Power Up Kit",play,229.0,0 -201512283,"Dota 2",purchase,1.0,0 -201512283,"Dota 2",play,0.4,0 -293463755,"Europa Universalis IV",purchase,1.0,0 -293463755,"Europa Universalis IV",play,8.9,0 -293463755,"Anno 2070",purchase,1.0,0 -293463755,"Anno 2070",play,4.5,0 -293463755,"Tropico 5",purchase,1.0,0 -293463755,"Tropico 5",play,2.4,0 -293463755,"Age of Empires III Complete Collection",purchase,1.0,0 -293463755,"Age of Empires III Complete Collection",play,0.1,0 -293463755,"Europa Universalis IV Conquest of Paradise",purchase,1.0,0 -131227694,"Counter-Strike Global Offensive",purchase,1.0,0 -131227694,"Counter-Strike Global Offensive",play,90.0,0 -131227694,"Borderlands 2",purchase,1.0,0 -131227694,"Borderlands 2",play,29.0,0 -131227694,"Rocket League",purchase,1.0,0 -131227694,"Rocket League",play,28.0,0 -131227694,"Call of Juarez Gunslinger",purchase,1.0,0 -131227694,"Call of Juarez Gunslinger",play,14.8,0 -131227694,"Transistor",purchase,1.0,0 -131227694,"Transistor",play,5.2,0 -131227694,"Brtal Legend",purchase,1.0,0 -131227694,"Brtal Legend",play,4.3,0 -131227694,"Mark of the Ninja",purchase,1.0,0 -131227694,"Mark of the Ninja",play,3.4,0 -131227694,"Dota 2",purchase,1.0,0 -131227694,"Dota 2",play,2.0,0 -131227694,"Magicka Wizard Wars",purchase,1.0,0 -131227694,"Magicka Wizard Wars",play,1.1,0 -131227694,"Blood Bowl Legendary Edition",purchase,1.0,0 -131227694,"Blood Bowl Legendary Edition",play,0.6,0 -131227694,"Magicka",purchase,1.0,0 -131227694,"Magicka",play,0.6,0 -131227694,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -131227694,"Warhammer 40,000 Dawn of War II",play,0.3,0 -131227694,"Cities XL Platinum",purchase,1.0,0 -131227694,"Confrontation",purchase,1.0,0 -131227694,"Dead Space",purchase,1.0,0 -131227694,"Divinity II Developer's Cut",purchase,1.0,0 -131227694,"Game of Thrones ",purchase,1.0,0 -131227694,"Magicka Vietnam",purchase,1.0,0 -131227694,"RAW - Realms of Ancient War",purchase,1.0,0 -131227694,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -131227694,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -201697182,"Counter-Strike Global Offensive",purchase,1.0,0 -201697182,"Counter-Strike Global Offensive",play,76.0,0 -150751526,"Dota 2",purchase,1.0,0 -150751526,"Dota 2",play,374.0,0 -150751526,"DARK SOULS II",purchase,1.0,0 -150751526,"DARK SOULS II",play,191.0,0 -150751526,"Counter-Strike Global Offensive",purchase,1.0,0 -150751526,"Counter-Strike Global Offensive",play,53.0,0 -150751526,"Saints Row The Third",purchase,1.0,0 -150751526,"Saints Row The Third",play,48.0,0 -150751526,"Unturned",purchase,1.0,0 -150751526,"Unturned",play,46.0,0 -150751526,"Garry's Mod",purchase,1.0,0 -150751526,"Garry's Mod",play,46.0,0 -150751526,"Warframe",purchase,1.0,0 -150751526,"Warframe",play,17.2,0 -150751526,"Neverwinter",purchase,1.0,0 -150751526,"Neverwinter",play,16.4,0 -150751526,"Sniper Elite V2",purchase,1.0,0 -150751526,"Sniper Elite V2",play,12.9,0 -150751526,"Ace of Spades",purchase,1.0,0 -150751526,"Ace of Spades",play,7.9,0 -150751526,"Heroes & Generals",purchase,1.0,0 -150751526,"Heroes & Generals",play,7.6,0 -150751526,"War Thunder",purchase,1.0,0 -150751526,"War Thunder",play,7.5,0 -150751526,"Stronghold Kingdoms",purchase,1.0,0 -150751526,"Stronghold Kingdoms",play,5.9,0 -150751526,"The Binding of Isaac",purchase,1.0,0 -150751526,"The Binding of Isaac",play,5.7,0 -150751526,"Alien Swarm",purchase,1.0,0 -150751526,"Alien Swarm",play,5.0,0 -150751526,"Team Fortress 2",purchase,1.0,0 -150751526,"Team Fortress 2",play,5.0,0 -150751526,"Castle Crashers",purchase,1.0,0 -150751526,"Castle Crashers",play,4.0,0 -150751526,"Robocraft",purchase,1.0,0 -150751526,"Robocraft",play,3.9,0 -150751526,"Serious Sam HD The Second Encounter",purchase,1.0,0 -150751526,"Serious Sam HD The Second Encounter",play,3.7,0 -150751526,"theHunter",purchase,1.0,0 -150751526,"theHunter",play,3.3,0 -150751526,"Magicka Wizard Wars",purchase,1.0,0 -150751526,"Magicka Wizard Wars",play,2.9,0 -150751526,"War of the Roses",purchase,1.0,0 -150751526,"War of the Roses",play,2.3,0 -150751526,"FreeStyle2 Street Basketball",purchase,1.0,0 -150751526,"FreeStyle2 Street Basketball",play,2.0,0 -150751526,"Quake Live",purchase,1.0,0 -150751526,"Quake Live",play,1.9,0 -150751526,"Portal 2",purchase,1.0,0 -150751526,"Portal 2",play,1.6,0 -150751526,"No More Room in Hell",purchase,1.0,0 -150751526,"No More Room in Hell",play,1.5,0 -150751526,"Chivalry Medieval Warfare",purchase,1.0,0 -150751526,"Chivalry Medieval Warfare",play,1.4,0 -150751526,"Counter-Strike Nexon Zombies",purchase,1.0,0 -150751526,"Counter-Strike Nexon Zombies",play,1.4,0 -150751526,"AirMech",purchase,1.0,0 -150751526,"AirMech",play,0.8,0 -150751526,"Moonbase Alpha",purchase,1.0,0 -150751526,"Moonbase Alpha",play,0.6,0 -150751526,"Aberoth",purchase,1.0,0 -150751526,"Aberoth",play,0.6,0 -150751526,"Fishing Planet",purchase,1.0,0 -150751526,"Fishing Planet",play,0.4,0 -150751526,"Enclave",purchase,1.0,0 -150751526,"Enclave",play,0.4,0 -150751526,"Two Worlds Epic Edition",purchase,1.0,0 -150751526,"Two Worlds Epic Edition",play,0.4,0 -150751526,"TDP4Team Battle",purchase,1.0,0 -150751526,"TDP4Team Battle",play,0.4,0 -150751526,"Realm of the Mad God",purchase,1.0,0 -150751526,"Realm of the Mad God",play,0.4,0 -150751526,"Cry of Fear",purchase,1.0,0 -150751526,"Cry of Fear",play,0.4,0 -150751526,"BIT.TRIP RUNNER",purchase,1.0,0 -150751526,"BIT.TRIP RUNNER",play,0.3,0 -150751526,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -150751526,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.3,0 -150751526,"Deepworld",purchase,1.0,0 -150751526,"Deepworld",play,0.2,0 -150751526,"Double Action Boogaloo",purchase,1.0,0 -150751526,"Double Action Boogaloo",play,0.2,0 -150751526,"Age of Chivalry",purchase,1.0,0 -150751526,"Age of Chivalry",play,0.2,0 -150751526,"Dwarfs F2P",purchase,1.0,0 -150751526,"Dwarfs F2P",play,0.2,0 -150751526,"Codename Gordon",purchase,1.0,0 -150751526,"Codename Gordon",play,0.2,0 -150751526,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -150751526,"S.K.I.L.L. - Special Force 2",play,0.2,0 -150751526,"Woodle Tree Adventures",purchase,1.0,0 -150751526,"Woodle Tree Adventures",play,0.2,0 -150751526,"Dungeonland",purchase,1.0,0 -150751526,"Dungeonland",play,0.2,0 -150751526,"Nosgoth",purchase,1.0,0 -150751526,"Nosgoth",play,0.1,0 -150751526,"DiggerOnline",purchase,1.0,0 -150751526,"DiggerOnline",play,0.1,0 -150751526,"March of War",purchase,1.0,0 -150751526,"Card Hunter",purchase,1.0,0 -150751526,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -150751526,"World of Guns Gun Disassembly",purchase,1.0,0 -150751526,"Magic Barrage - Bitferno",purchase,1.0,0 -150751526,"Jamestown",purchase,1.0,0 -150751526,"Dragons and Titans",purchase,1.0,0 -150751526,"Haunted Memories",purchase,1.0,0 -150751526,"Fractured Space",purchase,1.0,0 -150751526,"Zack Zero",purchase,1.0,0 -150751526,"CaesarIA",purchase,1.0,0 -150751526,"Yet Another Zombie Defense",purchase,1.0,0 -150751526,"Dethroned!",purchase,1.0,0 -150751526,"Guns and Robots",purchase,1.0,0 -150751526,"sZone-Online",purchase,1.0,0 -150751526,"Tribes Ascend",purchase,1.0,0 -150751526,"Blacklight Retribution",purchase,1.0,0 -150751526,"Blood of Old",purchase,1.0,0 -150751526,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -150751526,"DARK SOULS II - Season Pass",purchase,1.0,0 -150751526,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -150751526,"Defiance",purchase,1.0,0 -150751526,"Gratuitous Space Battles",purchase,1.0,0 -150751526,"Hydrophobia Prophecy",purchase,1.0,0 -150751526,"Patch testing for Chivalry",purchase,1.0,0 -150751526,"Portal Stories Mel",purchase,1.0,0 -150751526,"Ravensword Shadowlands",purchase,1.0,0 -150751526,"The Way of Life Free Edition",purchase,1.0,0 -150751526,"Wizorb",purchase,1.0,0 -150751526,"Xam",purchase,1.0,0 -241208825,"Dota 2",purchase,1.0,0 -241208825,"Dota 2",play,331.0,0 -249165768,"Counter-Strike Global Offensive",purchase,1.0,0 -249165768,"Counter-Strike Global Offensive",play,622.0,0 -249165768,"Dota 2",purchase,1.0,0 -249165768,"Dota 2",play,59.0,0 -249165768,"Battlefield Bad Company 2",purchase,1.0,0 -249165768,"Battlefield Bad Company 2",play,4.0,0 -249165768,"Killing Floor",purchase,1.0,0 -249165768,"Killing Floor",play,4.0,0 -249165768,"Counter-Strike Source",purchase,1.0,0 -249165768,"Counter-Strike Source",play,2.9,0 -249165768,"F.E.A.R. Online",purchase,1.0,0 -249165768,"F.E.A.R. Online",play,2.2,0 -249165768,"Defy Gravity",purchase,1.0,0 -249165768,"Defy Gravity",play,1.8,0 -249165768,"Marvel Heroes 2015",purchase,1.0,0 -249165768,"Magicka Wizard Wars",purchase,1.0,0 -249165768,"BLOCKADE 3D",purchase,1.0,0 -249165768,"Counter-Strike",purchase,1.0,0 -249165768,"Counter-Strike Condition Zero",purchase,1.0,0 -249165768,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -249165768,"GunZ 2 The Second Duel",purchase,1.0,0 -249165768,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -249165768,"No More Room in Hell",purchase,1.0,0 -249165768,"Rise of Incarnates",purchase,1.0,0 -124462762,"Empire Total War",purchase,1.0,0 -124462762,"Empire Total War",play,2.4,0 -124462762,"Call of Juarez Gunslinger",purchase,1.0,0 -124462762,"Call of Juarez Gunslinger",play,1.8,0 -124462762,"King Arthur - The Role-playing Wargame",purchase,1.0,0 -124462762,"King Arthur - The Role-playing Wargame",play,0.6,0 -239478937,"Unturned",purchase,1.0,0 -239478937,"Unturned",play,0.6,0 -83851086,"Team Fortress 2",purchase,1.0,0 -83851086,"Team Fortress 2",play,0.8,0 -145658798,"Dota 2",purchase,1.0,0 -145658798,"Dota 2",play,1.7,0 -210669058,"Dota 2",purchase,1.0,0 -210669058,"Dota 2",play,1.4,0 -130280718,"Team Fortress 2",purchase,1.0,0 -130280718,"Team Fortress 2",play,68.0,0 -130280718,"AirMech",purchase,1.0,0 -130280718,"AirMech",play,23.0,0 -130280718,"Counter-Strike Global Offensive",purchase,1.0,0 -130280718,"Counter-Strike Global Offensive",play,16.5,0 -130280718,"Garry's Mod",purchase,1.0,0 -130280718,"Garry's Mod",play,16.2,0 -130280718,"PAYDAY 2",purchase,1.0,0 -130280718,"PAYDAY 2",play,11.7,0 -130280718,"Scribblenauts Unlimited",purchase,1.0,0 -130280718,"Scribblenauts Unlimited",play,11.4,0 -130280718,"Dota 2",purchase,1.0,0 -130280718,"Dota 2",play,9.8,0 -130280718,"Unturned",purchase,1.0,0 -130280718,"Unturned",play,7.1,0 -130280718,"Robocraft",purchase,1.0,0 -130280718,"Robocraft",play,4.4,0 -130280718,"Starbound",purchase,1.0,0 -130280718,"Starbound",play,4.0,0 -130280718,"Verdun",purchase,1.0,0 -130280718,"Verdun",play,3.9,0 -130280718,"The Mighty Quest For Epic Loot",purchase,1.0,0 -130280718,"The Mighty Quest For Epic Loot",play,2.5,0 -130280718,"ARK Survival Evolved",purchase,1.0,0 -130280718,"ARK Survival Evolved",play,1.4,0 -130280718,"RaceRoom Racing Experience ",purchase,1.0,0 -130280718,"RaceRoom Racing Experience ",play,0.5,0 -130280718,"WARMODE",purchase,1.0,0 -130280718,"WARMODE",play,0.3,0 -130280718,"Marvel Heroes 2015",purchase,1.0,0 -130280718,"PlanetSide 2",purchase,1.0,0 -130280718,"Starbound - Unstable",purchase,1.0,0 -81569401,"Counter-Strike",purchase,1.0,0 -81569401,"Counter-Strike",play,891.0,0 -81569401,"Counter-Strike Condition Zero",purchase,1.0,0 -81569401,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -186996848,"Dota 2",purchase,1.0,0 -186996848,"Dota 2",play,2.8,0 -108601099,"Empire Total War",purchase,1.0,0 -108601099,"Empire Total War",play,293.0,0 -108560573,"Sniper Elite V2",purchase,1.0,0 -108560573,"Sniper Elite V2",play,24.0,0 -108560573,"Sniper Ghost Warrior",purchase,1.0,0 -108560573,"Sniper Ghost Warrior",play,22.0,0 -108560573,"Sniper Ghost Warrior 2",purchase,1.0,0 -108560573,"Sniper Ghost Warrior 2",play,21.0,0 -108560573,"Spiral Knights",purchase,1.0,0 -108560573,"Spiral Knights",play,7.6,0 -108560573,"Empire Total War",purchase,1.0,0 -108560573,"Empire Total War",play,4.8,0 -108560573,"The Walking Dead",purchase,1.0,0 -108560573,"The Walking Dead",play,4.4,0 -108560573,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -89161051,"Gotham City Impostors Free To Play",purchase,1.0,0 -89161051,"Gotham City Impostors Free To Play",play,317.0,0 -287706524,"Dota 2",purchase,1.0,0 -287706524,"Dota 2",play,0.1,0 -65716118,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -65716118,"Call of Duty Modern Warfare 2 - Multiplayer",play,427.0,0 -65716118,"Counter-Strike Source",purchase,1.0,0 -65716118,"Counter-Strike Source",play,107.0,0 -65716118,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -65716118,"Call of Duty Black Ops - Multiplayer",play,65.0,0 -65716118,"Total War ROME II - Emperor Edition",purchase,1.0,0 -65716118,"Total War ROME II - Emperor Edition",play,57.0,0 -65716118,"Counter-Strike Global Offensive",purchase,1.0,0 -65716118,"Counter-Strike Global Offensive",play,44.0,0 -65716118,"Hitman Absolution",purchase,1.0,0 -65716118,"Hitman Absolution",play,30.0,0 -65716118,"The Elder Scrolls V Skyrim",purchase,1.0,0 -65716118,"The Elder Scrolls V Skyrim",play,22.0,0 -65716118,"Alien Swarm",purchase,1.0,0 -65716118,"Alien Swarm",play,22.0,0 -65716118,"Call of Duty Modern Warfare 2",purchase,1.0,0 -65716118,"Call of Duty Modern Warfare 2",play,16.0,0 -65716118,"Call of Duty Black Ops",purchase,1.0,0 -65716118,"Call of Duty Black Ops",play,15.2,0 -65716118,"Hitman Sniper Challenge",purchase,1.0,0 -65716118,"Hitman Sniper Challenge",play,11.2,0 -65716118,"Tom Clancy's Rainbow Six 3 Gold Edition",purchase,1.0,0 -65716118,"Tom Clancy's Rainbow Six 3 Gold Edition",play,8.0,0 -65716118,"Rome Total War",purchase,1.0,0 -65716118,"Rome Total War",play,7.7,0 -65716118,"Napoleon Total War",purchase,1.0,0 -65716118,"Napoleon Total War",play,4.6,0 -65716118,"Arma 3",purchase,1.0,0 -65716118,"Arma 3",play,3.2,0 -65716118,"Sniper Ghost Warrior",purchase,1.0,0 -65716118,"Sniper Ghost Warrior",play,2.0,0 -65716118,"Half-Life 2 Deathmatch",purchase,1.0,0 -65716118,"Half-Life 2 Deathmatch",play,1.5,0 -65716118,"Rome Total War - Alexander",purchase,1.0,0 -65716118,"Rome Total War - Alexander",play,1.0,0 -65716118,"Half-Life 2 Lost Coast",purchase,1.0,0 -65716118,"Half-Life 2 Lost Coast",play,0.3,0 -65716118,"Besiege",purchase,1.0,0 -65716118,"Besiege",play,0.3,0 -65716118,"Day of Defeat Source",purchase,1.0,0 -65716118,"Day of Defeat Source",play,0.1,0 -65716118,"DRAGON BALL XENOVERSE",purchase,1.0,0 -65716118,"Tom Clancy's Rainbow Six 3 Athena Sword",purchase,1.0,0 -65716118,"Arma 3 Zeus",purchase,1.0,0 -65716118,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -65716118,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -65716118,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -65716118,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -144004666,"Dota 2",purchase,1.0,0 -144004666,"Dota 2",play,4.6,0 -58237510,"Football Manager 2012",purchase,1.0,0 -58237510,"Football Manager 2012",play,1191.0,0 -58237510,"Football Manager 2015",purchase,1.0,0 -58237510,"Football Manager 2015",play,646.0,0 -58237510,"Football Manager 2011",purchase,1.0,0 -58237510,"Football Manager 2011",play,315.0,0 -58237510,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -58237510,"Call of Duty Modern Warfare 2 - Multiplayer",play,52.0,0 -58237510,"Grand Theft Auto IV",purchase,1.0,0 -58237510,"Grand Theft Auto IV",play,9.4,0 -58237510,"Call of Duty Modern Warfare 2",purchase,1.0,0 -58237510,"Call of Duty Modern Warfare 2",play,6.0,0 -113308351,"Sid Meier's Civilization V",purchase,1.0,0 -113308351,"Sid Meier's Civilization V",play,14.1,0 -200538601,"Loadout",purchase,1.0,0 -303326013,"Garry's Mod",purchase,1.0,0 -303326013,"Garry's Mod",play,29.0,0 -303326013,"WARMODE",purchase,1.0,0 -303326013,"WARMODE",play,0.2,0 -154210162,"Dota 2",purchase,1.0,0 -154210162,"Dota 2",play,780.0,0 -146463817,"Dota 2",purchase,1.0,0 -146463817,"Dota 2",play,12.2,0 -303693006,"Dota 2",purchase,1.0,0 -303693006,"Dota 2",play,6.9,0 -98152188,"The Elder Scrolls V Skyrim",purchase,1.0,0 -98152188,"The Elder Scrolls V Skyrim",play,643.0,0 -231450817,"Dota 2",purchase,1.0,0 -231450817,"Dota 2",play,9.9,0 -231450817,"Archeblade",purchase,1.0,0 -231450817,"Ragnarok Online 2",purchase,1.0,0 -162649407,"The Elder Scrolls V Skyrim",purchase,1.0,0 -162649407,"The Elder Scrolls V Skyrim",play,403.0,0 -162649407,"Mafia II",purchase,1.0,0 -162649407,"Mafia II",play,23.0,0 -162649407,"Counter-Strike",purchase,1.0,0 -162649407,"Counter-Strike",play,0.6,0 -162649407,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -162649407,"Counter-Strike Condition Zero Deleted Scenes",play,0.5,0 -162649407,"Counter-Strike Condition Zero",purchase,1.0,0 -162649407,"Counter-Strike Condition Zero",play,0.5,0 -162649407,"Day of Defeat",purchase,1.0,0 -162649407,"Deathmatch Classic",purchase,1.0,0 -162649407,"Ricochet",purchase,1.0,0 -229467150,"Dota 2",purchase,1.0,0 -229467150,"Dota 2",play,24.0,0 -246892835,"Unturned",purchase,1.0,0 -246892835,"Unturned",play,2.3,0 -246892835,"Team Fortress 2",purchase,1.0,0 -246892835,"Team Fortress 2",play,0.3,0 -246892835,"Time Clickers",purchase,1.0,0 -246892835,"Time Clickers",play,0.2,0 -288856904,"Dota 2",purchase,1.0,0 -288856904,"Dota 2",play,1.8,0 -75228114,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -75228114,"Call of Duty Black Ops - Multiplayer",play,201.0,0 -75228114,"Call of Duty Black Ops",purchase,1.0,0 -75228114,"Call of Duty Black Ops",play,12.8,0 -36553207,"Counter-Strike Source",purchase,1.0,0 -36553207,"Counter-Strike Source",play,956.0,0 -36553207,"Day of Defeat Source",purchase,1.0,0 -36553207,"Half-Life 2 Deathmatch",purchase,1.0,0 -36553207,"Half-Life 2 Lost Coast",purchase,1.0,0 -70165453,"F1 2012",purchase,1.0,0 -70165453,"F1 2012",play,64.0,0 -70165453,"Homefront",purchase,1.0,0 -70165453,"Homefront",play,4.5,0 -143693450,"Dota 2",purchase,1.0,0 -143693450,"Dota 2",play,2.9,0 -139955299,"Dota 2",purchase,1.0,0 -139955299,"Dota 2",play,91.0,0 -136021775,"DayZ",purchase,1.0,0 -136021775,"DayZ",play,283.0,0 -136021775,"Rust",purchase,1.0,0 -136021775,"Rust",play,149.0,0 -136021775,"Neverwinter",purchase,1.0,0 -136021775,"Neverwinter",play,140.0,0 -136021775,"Garry's Mod",purchase,1.0,0 -136021775,"Garry's Mod",play,19.6,0 -136021775,"Counter-Strike Global Offensive",purchase,1.0,0 -136021775,"Counter-Strike Global Offensive",play,15.9,0 -136021775,"Arma 3",purchase,1.0,0 -136021775,"Arma 3",play,15.3,0 -136021775,"Happy Wars",purchase,1.0,0 -136021775,"Happy Wars",play,14.4,0 -136021775,"Dead Island Epidemic",purchase,1.0,0 -136021775,"Dead Island Epidemic",play,10.0,0 -136021775,"The Stomping Land",purchase,1.0,0 -136021775,"The Stomping Land",play,8.4,0 -136021775,"Team Fortress 2",purchase,1.0,0 -136021775,"Team Fortress 2",play,1.8,0 -136021775,"Magicka",purchase,1.0,0 -136021775,"Magicka",play,1.0,0 -136021775,"Arma 2 Operation Arrowhead",purchase,1.0,0 -136021775,"Arma 2 Operation Arrowhead",play,1.0,0 -136021775,"Arma 2 DayZ Mod",purchase,1.0,0 -136021775,"Arma 2 DayZ Mod",play,0.5,0 -136021775,"Arma 2",purchase,1.0,0 -136021775,"Arma 2",play,0.2,0 -136021775,"ARK Survival Evolved",purchase,1.0,0 -136021775,"ARK Survival Evolved",play,0.2,0 -136021775,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -136021775,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,0.1,0 -136021775,"Arma 2 Private Military Company",purchase,1.0,0 -136021775,"Counter-Strike Source",purchase,1.0,0 -136021775,"Arma 2 British Armed Forces",purchase,1.0,0 -136021775,"Arma 3 Zeus",purchase,1.0,0 -39446138,"Portal 2",purchase,1.0,0 -39446138,"Portal 2",play,19.1,0 -39446138,"LIMBO",purchase,1.0,0 -39446138,"LIMBO",play,3.8,0 -39446138,"Goat Simulator",purchase,1.0,0 -39446138,"Goat Simulator",play,1.4,0 -39446138,"Braid",purchase,1.0,0 -39446138,"Braid",play,0.3,0 -39446138,"Amnesia The Dark Descent",purchase,1.0,0 -39446138,"Aquaria",purchase,1.0,0 -39446138,"Bastion",purchase,1.0,0 -39446138,"Cortex Command",purchase,1.0,0 -39446138,"Gish",purchase,1.0,0 -39446138,"Left 4 Dead 2",purchase,1.0,0 -39446138,"Lone Survivor The Director's Cut",purchase,1.0,0 -39446138,"Lugaru HD ",purchase,1.0,0 -39446138,"Machinarium",purchase,1.0,0 -39446138,"Osmos",purchase,1.0,0 -39446138,"Penumbra Overture",purchase,1.0,0 -39446138,"Psychonauts",purchase,1.0,0 -39446138,"Psychonauts Demo",purchase,1.0,0 -39446138,"Revenge of the Titans",purchase,1.0,0 -39446138,"Samorost 2",purchase,1.0,0 -39446138,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -39446138,"Super Meat Boy",purchase,1.0,0 -39446138,"World of Goo",purchase,1.0,0 -211404615,"Team Fortress 2",purchase,1.0,0 -211404615,"Team Fortress 2",play,0.4,0 -215540943,"Terraria",purchase,1.0,0 -215540943,"Terraria",play,67.0,0 -215540943,"Counter-Strike Global Offensive",purchase,1.0,0 -215540943,"Counter-Strike Global Offensive",play,18.0,0 -215540943,"Left 4 Dead 2",purchase,1.0,0 -215540943,"Left 4 Dead 2",play,6.3,0 -215540943,"Warframe",purchase,1.0,0 -215540943,"Warframe",play,2.6,0 -215540943,"Borderlands 2",purchase,1.0,0 -215540943,"Borderlands 2",play,1.3,0 -215540943,"Team Fortress 2",purchase,1.0,0 -215540943,"Team Fortress 2",play,1.0,0 -215540943,"Dirty Bomb",purchase,1.0,0 -215540943,"Dirty Bomb",play,0.7,0 -215540943,"Urizen Shadows of the Cold",purchase,1.0,0 -215540943,"Urizen Shadows of the Cold",play,0.1,0 -215540943,"Among Ripples",purchase,1.0,0 -81743539,"Endless Space",purchase,1.0,0 -81743539,"Endless Space",play,9.3,0 -81743539,"Team Fortress 2",purchase,1.0,0 -81743539,"Team Fortress 2",play,4.7,0 -81743539,"Half-Life",purchase,1.0,0 -81743539,"Half-Life",play,2.9,0 -81743539,"Portal",purchase,1.0,0 -81743539,"Portal",play,1.6,0 -81743539,"Call of Duty Black Ops",purchase,1.0,0 -81743539,"Call of Duty Black Ops",play,0.5,0 -81743539,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -81743539,"Counter-Strike",purchase,1.0,0 -81743539,"Counter-Strike Condition Zero",purchase,1.0,0 -81743539,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -81743539,"Counter-Strike Global Offensive",purchase,1.0,0 -81743539,"Counter-Strike Source",purchase,1.0,0 -81743539,"Day of Defeat",purchase,1.0,0 -81743539,"Day of Defeat Source",purchase,1.0,0 -81743539,"Deathmatch Classic",purchase,1.0,0 -81743539,"Half-Life 2",purchase,1.0,0 -81743539,"Half-Life 2 Deathmatch",purchase,1.0,0 -81743539,"Half-Life 2 Episode One",purchase,1.0,0 -81743539,"Half-Life 2 Episode Two",purchase,1.0,0 -81743539,"Half-Life 2 Lost Coast",purchase,1.0,0 -81743539,"Half-Life Blue Shift",purchase,1.0,0 -81743539,"Half-Life Opposing Force",purchase,1.0,0 -81743539,"Half-Life Source",purchase,1.0,0 -81743539,"Half-Life Deathmatch Source",purchase,1.0,0 -81743539,"Left 4 Dead",purchase,1.0,0 -81743539,"Left 4 Dead 2",purchase,1.0,0 -81743539,"Portal 2",purchase,1.0,0 -81743539,"Ricochet",purchase,1.0,0 -81743539,"Team Fortress Classic",purchase,1.0,0 -128790593,"The Elder Scrolls V Skyrim",purchase,1.0,0 -128790593,"The Elder Scrolls V Skyrim",play,46.0,0 -128790593,"Shoot Many Robots",purchase,1.0,0 -128790593,"Shoot Many Robots",play,19.0,0 -128790593,"Chivalry Medieval Warfare",purchase,1.0,0 -128790593,"Chivalry Medieval Warfare",play,16.9,0 -128790593,"Borderlands 2",purchase,1.0,0 -128790593,"Borderlands 2",play,11.2,0 -128790593,"Counter-Strike Global Offensive",purchase,1.0,0 -128790593,"Counter-Strike Global Offensive",play,9.4,0 -128790593,"South Park The Stick of Truth",purchase,1.0,0 -128790593,"South Park The Stick of Truth",play,8.7,0 -128790593,"Star Wars Empire at War Gold",purchase,1.0,0 -128790593,"Star Wars Empire at War Gold",play,5.5,0 -128790593,"Counter-Strike Nexon Zombies",purchase,1.0,0 -128790593,"Counter-Strike Nexon Zombies",play,2.8,0 -128790593,"Sniper Elite V2",purchase,1.0,0 -128790593,"Sniper Elite V2",play,2.2,0 -128790593,"Team Fortress 2",purchase,1.0,0 -128790593,"Team Fortress 2",play,2.1,0 -128790593,"Dota 2",purchase,1.0,0 -128790593,"Dota 2",play,1.3,0 -128790593,"DC Universe Online",purchase,1.0,0 -128790593,"DC Universe Online",play,1.3,0 -128790593,"Magicka",purchase,1.0,0 -128790593,"Magicka",play,1.2,0 -128790593,"Trine",purchase,1.0,0 -128790593,"Trine",play,1.2,0 -128790593,"Trine 2",purchase,1.0,0 -128790593,"Trine 2",play,0.2,0 -128790593,"Patch testing for Chivalry",purchase,1.0,0 -128790593,"Magicka Party Robes",purchase,1.0,0 -198346312,"Kerbal Space Program",purchase,1.0,0 -198346312,"Kerbal Space Program",play,58.0,0 -198346312,"Borderlands 2",purchase,1.0,0 -198346312,"Borderlands 2",play,42.0,0 -198346312,"Borderlands",purchase,1.0,0 -198346312,"Borderlands",play,42.0,0 -198346312,"PAYDAY The Heist",purchase,1.0,0 -198346312,"PAYDAY The Heist",play,29.0,0 -198346312,"Sid Meier's Civilization V",purchase,1.0,0 -198346312,"Sid Meier's Civilization V",play,20.0,0 -198346312,"LEGO The Lord of the Rings",purchase,1.0,0 -198346312,"LEGO The Lord of the Rings",play,17.1,0 -198346312,"Terraria",purchase,1.0,0 -198346312,"Terraria",play,14.3,0 -198346312,"ARK Survival Evolved",purchase,1.0,0 -198346312,"ARK Survival Evolved",play,11.0,0 -198346312,"Dragon Age Origins",purchase,1.0,0 -198346312,"Dragon Age Origins",play,10.0,0 -198346312,"Age of Empires II HD Edition",purchase,1.0,0 -198346312,"Age of Empires II HD Edition",play,9.1,0 -198346312,"Space Engineers",purchase,1.0,0 -198346312,"Space Engineers",play,8.2,0 -198346312,"Tomb Raider",purchase,1.0,0 -198346312,"Tomb Raider",play,8.1,0 -198346312,"Borderlands The Pre-Sequel",purchase,1.0,0 -198346312,"Borderlands The Pre-Sequel",play,7.0,0 -198346312,"Tomb Raider Underworld",purchase,1.0,0 -198346312,"Tomb Raider Underworld",play,6.8,0 -198346312,"Portal",purchase,1.0,0 -198346312,"Portal",play,3.5,0 -198346312,"Besiege",purchase,1.0,0 -198346312,"Besiege",play,3.1,0 -198346312,"PAYDAY 2",purchase,1.0,0 -198346312,"PAYDAY 2",play,0.8,0 -198346312,"Dead Space 2",purchase,1.0,0 -198346312,"Dead Space 2",play,0.4,0 -198346312,"Age of Empires II HD The Forgotten",purchase,1.0,0 -198346312,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -198346312,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -198346312,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -198346312,"Lara Croft and the Guardian of Light",purchase,1.0,0 -198346312,"PAYDAY Wolf Pack",purchase,1.0,0 -198346312,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -198346312,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -198346312,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -198346312,"Tomb Raider Anniversary",purchase,1.0,0 -198346312,"Tomb Raider Chronicles",purchase,1.0,0 -198346312,"Tomb Raider Legend",purchase,1.0,0 -198346312,"Tomb Raider The Last Revelation",purchase,1.0,0 -198346312,"Tomb Raider I",purchase,1.0,0 -198346312,"Tomb Raider II",purchase,1.0,0 -198346312,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -155182551,"Dota 2",purchase,1.0,0 -155182551,"Dota 2",play,4228.0,0 -169218314,"Dota 2",purchase,1.0,0 -169218314,"Dota 2",play,61.0,0 -252016836,"Dota 2",purchase,1.0,0 -252016836,"Dota 2",play,27.0,0 -97913360,"Total War SHOGUN 2",purchase,1.0,0 -124777563,"Team Fortress 2",purchase,1.0,0 -124777563,"Team Fortress 2",play,2.1,0 -124777563,"Unturned",purchase,1.0,0 -217268143,"Dota 2",purchase,1.0,0 -217268143,"Dota 2",play,6.6,0 -88919723,"Football Manager 2011",purchase,1.0,0 -88919723,"Football Manager 2011",play,26.0,0 -26802825,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -26802825,"Dark Messiah of Might & Magic Multi-Player",play,21.0,0 -26802825,"Prince of Persia The Forgotten Sands",purchase,1.0,0 -26802825,"Prince of Persia The Forgotten Sands",play,13.8,0 -26802825,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -26802825,"Dark Messiah of Might & Magic Single Player",play,10.2,0 -26802825,"Left 4 Dead",purchase,1.0,0 -26802825,"Left 4 Dead",play,3.9,0 -26802825,"Saints Row The Third",purchase,1.0,0 -26802825,"Saints Row The Third",play,3.5,0 -26802825,"F.E.A.R. 3",purchase,1.0,0 -26802825,"F.E.A.R. 3",play,2.8,0 -26802825,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -26802825,"F.E.A.R. 2 Project Origin",play,2.2,0 -26802825,"Plague Inc Evolved",purchase,1.0,0 -26802825,"Plague Inc Evolved",play,1.3,0 -26802825,"Borderlands",purchase,1.0,0 -26802825,"Borderlands",play,0.8,0 -26802825,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -26802825,"Burnout Paradise The Ultimate Box",play,0.7,0 -26802825,"The Witcher Enhanced Edition",purchase,1.0,0 -26802825,"The Witcher Enhanced Edition",play,0.5,0 -26802825,"Ghost Master",purchase,1.0,0 -26802825,"Ghost Master",play,0.4,0 -26802825,"LEGO The Lord of the Rings",purchase,1.0,0 -26802825,"LEGO The Lord of the Rings",play,0.3,0 -26802825,"Hydrophobia Prophecy",purchase,1.0,0 -26802825,"Hydrophobia Prophecy",play,0.3,0 -26802825,"Devil May Cry 4",purchase,1.0,0 -26802825,"Prince of Persia The Sands of Time",purchase,1.0,0 -26802825,"Sniper Elite V2",purchase,1.0,0 -115436501,"Dead Island Epidemic",purchase,1.0,0 -115436501,"The Expendabros",purchase,1.0,0 -115436501,"The Lord of the Rings Online",purchase,1.0,0 -115436501,"Unturned",purchase,1.0,0 -115436501,"Warface",purchase,1.0,0 -115436501,"War Thunder",purchase,1.0,0 -27117407,"Nosgoth",purchase,1.0,0 -27117407,"Nosgoth",play,53.0,0 -27117407,"Counter-Strike Source",purchase,1.0,0 -27117407,"Counter-Strike Source",play,9.4,0 -27117407,"Counter-Strike Global Offensive",purchase,1.0,0 -27117407,"Counter-Strike Global Offensive",play,8.2,0 -27117407,"Team Fortress 2",purchase,1.0,0 -27117407,"Team Fortress 2",play,5.0,0 -27117407,"Dirty Bomb",purchase,1.0,0 -27117407,"Dirty Bomb",play,2.7,0 -27117407,"Half-Life 2",purchase,1.0,0 -27117407,"Half-Life 2 Deathmatch",purchase,1.0,0 -27117407,"Half-Life 2 Episode One",purchase,1.0,0 -27117407,"Half-Life 2 Lost Coast",purchase,1.0,0 -27117407,"Half-Life Source",purchase,1.0,0 -27117407,"Half-Life Deathmatch Source",purchase,1.0,0 -27117407,"MechWarrior Online",purchase,1.0,0 -27117407,"TERA",purchase,1.0,0 -76684659,"RIFT",purchase,1.0,0 -78332414,"Dota 2",purchase,1.0,0 -78332414,"Dota 2",play,998.0,0 -78332414,"Elite Dangerous",purchase,1.0,0 -78332414,"Elite Dangerous",play,213.0,0 -78332414,"Total War ROME II - Emperor Edition",purchase,1.0,0 -78332414,"Total War ROME II - Emperor Edition",play,129.0,0 -78332414,"Magicka Wizard Wars",purchase,1.0,0 -78332414,"Magicka Wizard Wars",play,78.0,0 -78332414,"Neverwinter",purchase,1.0,0 -78332414,"Neverwinter",play,78.0,0 -78332414,"Galactic Civilizations III",purchase,1.0,0 -78332414,"Galactic Civilizations III",play,70.0,0 -78332414,"Heroes & Generals",purchase,1.0,0 -78332414,"Heroes & Generals",play,69.0,0 -78332414,"War of the Roses",purchase,1.0,0 -78332414,"War of the Roses",play,60.0,0 -78332414,"StarDrive 2",purchase,1.0,0 -78332414,"StarDrive 2",play,41.0,0 -78332414,"Stronghold Kingdoms",purchase,1.0,0 -78332414,"Stronghold Kingdoms",play,37.0,0 -78332414,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -78332414,"Rising Storm/Red Orchestra 2 Multiplayer",play,33.0,0 -78332414,"Total War SHOGUN 2",purchase,1.0,0 -78332414,"Total War SHOGUN 2",play,27.0,0 -78332414,"Total War Battles KINGDOM",purchase,1.0,0 -78332414,"Total War Battles KINGDOM",play,4.3,0 -78332414,"Eden Star Destroy - Build - Protect",purchase,1.0,0 -78332414,"Eden Star Destroy - Build - Protect",play,4.1,0 -78332414,"Project AURA",purchase,1.0,0 -78332414,"Project AURA",play,3.5,0 -78332414,"Squad",purchase,1.0,0 -78332414,"Squad",play,3.3,0 -78332414,"Fractured Space",purchase,1.0,0 -78332414,"Fractured Space",play,2.0,0 -78332414,"Kerbal Space Program",purchase,1.0,0 -78332414,"Kerbal Space Program",play,1.9,0 -78332414,"HAWKEN",purchase,1.0,0 -78332414,"HAWKEN",play,1.3,0 -78332414,"Lords of the Black Sun",purchase,1.0,0 -78332414,"Lords of the Black Sun",play,1.1,0 -78332414,"Mitos.is The Game",purchase,1.0,0 -78332414,"Mitos.is The Game",play,0.8,0 -78332414,"Company of Heroes (New Steam Version)",purchase,1.0,0 -78332414,"Company of Heroes (New Steam Version)",play,0.6,0 -78332414,"Offworld Trading Company",purchase,1.0,0 -78332414,"Offworld Trading Company",play,0.5,0 -78332414,"Counter-Strike Global Offensive",purchase,1.0,0 -78332414,"Counter-Strike Global Offensive",play,0.4,0 -78332414,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -78332414,"Navy Field 2 Conqueror of the Ocean",play,0.4,0 -78332414,"Age of Chivalry",purchase,1.0,0 -78332414,"Age of Chivalry",play,0.2,0 -78332414,"RIFT",purchase,1.0,0 -78332414,"RIFT",play,0.1,0 -78332414,"Company of Heroes Tales of Valor",purchase,1.0,0 -78332414,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -78332414,"War of the Roses Kingmaker",purchase,1.0,0 -78332414,"War of the Roses Balance Beta",purchase,1.0,0 -78332414,"War Thunder",purchase,1.0,0 -291151096,"BLOCKADE 3D",purchase,1.0,0 -291151096,"BLOCKADE 3D",play,41.0,0 -130201800,"ARK Survival Evolved",purchase,1.0,0 -130201800,"ARK Survival Evolved",play,341.0,0 -130201800,"The Elder Scrolls V Skyrim",purchase,1.0,0 -130201800,"The Elder Scrolls V Skyrim",play,313.0,0 -130201800,"Unturned",purchase,1.0,0 -130201800,"Unturned",play,35.0,0 -130201800,"Batman Arkham Origins",purchase,1.0,0 -130201800,"Batman Arkham Origins",play,14.3,0 -130201800,"PlanetSide 2",purchase,1.0,0 -130201800,"PlanetSide 2",play,13.7,0 -130201800,"Team Fortress 2",purchase,1.0,0 -130201800,"Team Fortress 2",play,10.5,0 -130201800,"Creativerse",purchase,1.0,0 -130201800,"Creativerse",play,10.3,0 -130201800,"Trove",purchase,1.0,0 -130201800,"Trove",play,3.0,0 -130201800,"Dota 2",purchase,1.0,0 -130201800,"Dota 2",play,2.1,0 -130201800,"Teeworlds",purchase,1.0,0 -130201800,"Teeworlds",play,2.1,0 -130201800,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -130201800,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -130201800,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -88585138,"Portal",purchase,1.0,0 -88585138,"Portal",play,4.2,0 -88585138,"Team Fortress 2",purchase,1.0,0 -88585138,"Team Fortress 2",play,0.4,0 -154671192,"Fuse",purchase,1.0,0 -154671192,"Fuse",play,2.0,0 -139352395,"Dota 2",purchase,1.0,0 -139352395,"Dota 2",play,13.2,0 -143459727,"Dota 2",purchase,1.0,0 -143459727,"Dota 2",play,310.0,0 -143459727,"Warframe",purchase,1.0,0 -143459727,"Warframe",play,157.0,0 -143459727,"Robocraft",purchase,1.0,0 -143459727,"Robocraft",play,19.4,0 -143459727,"theHunter",purchase,1.0,0 -143459727,"theHunter",play,3.5,0 -143459727,"Heroes & Generals",purchase,1.0,0 -143459727,"Heroes & Generals",play,1.7,0 -143459727,"Team Fortress 2",purchase,1.0,0 -143459727,"Team Fortress 2",play,0.6,0 -143459727,"Unturned",purchase,1.0,0 -143459727,"Unturned",play,0.4,0 -143459727,"Counter-Strike Nexon Zombies",purchase,1.0,0 -143459727,"Defiance",purchase,1.0,0 -143459727,"Magicka Wizard Wars",purchase,1.0,0 -42681063,"Football Manager 2013",purchase,1.0,0 -42681063,"Football Manager 2013",play,291.0,0 -42681063,"Football Manager 2015",purchase,1.0,0 -42681063,"Football Manager 2015",play,245.0,0 -42681063,"Football Manager 2014",purchase,1.0,0 -42681063,"Football Manager 2014",play,201.0,0 -42681063,"Football Manager 2012",purchase,1.0,0 -42681063,"Football Manager 2012",play,172.0,0 -42681063,"Football Manager 2016",purchase,1.0,0 -42681063,"Football Manager 2016",play,35.0,0 -42681063,"Mafia II",purchase,1.0,0 -42681063,"Mafia II",play,14.4,0 -42681063,"Football Manager 2009",purchase,1.0,0 -42681063,"Football Manager 2009",play,3.0,0 -42681063,"Frozen Free Fall Snowball Fight",purchase,1.0,0 -169337011,"HAWKEN",purchase,1.0,0 -169337011,"HAWKEN",play,0.4,0 -260118401,"LEGO Worlds",purchase,1.0,0 -260118401,"LEGO Worlds",play,9.5,0 -260118401,"Five Nights at Freddy's",purchase,1.0,0 -260118401,"Five Nights at Freddy's",play,4.5,0 -260118401,"Mitos.is The Game",purchase,1.0,0 -260118401,"Mitos.is The Game",play,4.0,0 -260118401,"Five Nights at Freddy's 3",purchase,1.0,0 -260118401,"Five Nights at Freddy's 3",play,1.1,0 -260118401,"Five Nights at Freddy's 2",purchase,1.0,0 -260118401,"Five Nights at Freddy's 2",play,1.1,0 -260118401,"Aftermath",purchase,1.0,0 -260118401,"Aftermath",play,0.7,0 -260118401,"Five Nights at Freddy's 4",purchase,1.0,0 -260118401,"Five Nights at Freddy's 4",play,0.2,0 -201445671,"Counter-Strike Global Offensive",purchase,1.0,0 -201445671,"Counter-Strike Global Offensive",play,5.2,0 -24932641,"Half-Life 2",purchase,1.0,0 -24932641,"Half-Life 2",play,11.6,0 -24932641,"Half-Life Source",purchase,1.0,0 -24932641,"Half-Life Source",play,1.2,0 -24932641,"Counter-Strike Source",purchase,1.0,0 -24932641,"Half-Life 2 Deathmatch",purchase,1.0,0 -24932641,"Half-Life 2 Lost Coast",purchase,1.0,0 -24932641,"Half-Life Deathmatch Source",purchase,1.0,0 -244273527,"Heroes & Generals",purchase,1.0,0 -193987636,"Unturned",purchase,1.0,0 -193987636,"Unturned",play,5.1,0 -193987636,"No More Room in Hell",purchase,1.0,0 -193987636,"No More Room in Hell",play,2.3,0 -193987636,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -193987636,"A.V.A - Alliance of Valiant Arms",play,1.4,0 -193987636,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -193987636,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.8,0 -193987636,"Velvet Sundown",purchase,1.0,0 -193987636,"Velvet Sundown",play,0.7,0 -193987636,"Counter-Strike Nexon Zombies",purchase,1.0,0 -193987636,"Counter-Strike Nexon Zombies",play,0.4,0 -193987636,"Warframe",purchase,1.0,0 -242549338,"Euro Truck Simulator 2",purchase,1.0,0 -242549338,"Euro Truck Simulator 2",play,105.0,0 -242549338,"Arma 2",purchase,1.0,0 -242549338,"Arma 2",play,1.1,0 -242549338,"Autobahn Police Simulator",purchase,1.0,0 -242549338,"Autobahn Police Simulator",play,0.8,0 -242549338,"Test Drive Unlimited 2",purchase,1.0,0 -242549338,"Test Drive Unlimited 2",play,0.2,0 -242549338,"Driving School Simulator",purchase,1.0,0 -242549338,"Bus-Simulator 2012",purchase,1.0,0 -242549338,"War Thunder",purchase,1.0,0 -209729995,"Dota 2",purchase,1.0,0 -209729995,"Dota 2",play,1.2,0 -71082079,"Sid Meier's Civilization IV",purchase,1.0,0 -71082079,"Sid Meier's Civilization IV",play,51.0,0 -71082079,"The Elder Scrolls V Skyrim",purchase,1.0,0 -71082079,"The Elder Scrolls V Skyrim",play,33.0,0 -71082079,"Stronghold HD",purchase,1.0,0 -71082079,"Stronghold HD",play,1.5,0 -71082079,"The Lord of the Rings Online",purchase,1.0,0 -71082079,"The Lord of the Rings Online",play,0.5,0 -71082079,"Forge",purchase,1.0,0 -71082079,"Sid Meier's Civilization IV",purchase,1.0,0 -71082079,"Stronghold 2",purchase,1.0,0 -71082079,"Stronghold 3",purchase,1.0,0 -71082079,"Stronghold Crusader Extreme HD",purchase,1.0,0 -71082079,"Stronghold Crusader HD",purchase,1.0,0 -71082079,"Stronghold Legends",purchase,1.0,0 -212521878,"Dota 2",purchase,1.0,0 -212521878,"Dota 2",play,0.7,0 -184620989,"Tom Clancy's Ghost Recon Phantoms - NA Recon Starter Pack",purchase,1.0,0 -242199141,"Loadout",purchase,1.0,0 -242199141,"Clicker Heroes",purchase,1.0,0 -242199141,"Strife",purchase,1.0,0 -242199141,"War Thunder",purchase,1.0,0 -166705920,"Dota 2",purchase,1.0,0 -166705920,"Dota 2",play,697.0,0 -166705920,"FreeStyle2 Street Basketball",purchase,1.0,0 -166705920,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -166705920,"No More Room in Hell",purchase,1.0,0 -166705920,"Ragnarok Online 2",purchase,1.0,0 -166705920,"Robocraft",purchase,1.0,0 -166705920,"Spiral Knights",purchase,1.0,0 -166705920,"Unturned",purchase,1.0,0 -166705920,"Warframe",purchase,1.0,0 -166705920,"War Thunder",purchase,1.0,0 -228302915,"Euro Truck Simulator 2",purchase,1.0,0 -228302915,"Euro Truck Simulator 2",play,20.0,0 -228302915,"Counter-Strike Global Offensive",purchase,1.0,0 -228302915,"Counter-Strike Global Offensive",play,6.9,0 -228302915,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -228302915,"Tom Clancy's Ghost Recon Phantoms - EU",play,4.7,0 -228302915,"Dota 2",purchase,1.0,0 -228302915,"Dota 2",play,1.7,0 -64315060,"Alien Swarm",purchase,1.0,0 -64315060,"Alien Swarm",play,0.3,0 -246056879,"Dota 2",purchase,1.0,0 -246056879,"Dota 2",play,3.4,0 -246056879,"Dead Island Epidemic",purchase,1.0,0 -246056879,"Everlasting Summer",purchase,1.0,0 -154406815,"Dota 2",purchase,1.0,0 -154406815,"Dota 2",play,8.9,0 -141037251,"Dota 2",purchase,1.0,0 -141037251,"Dota 2",play,3.3,0 -74154832,"FINAL FANTASY XI",purchase,1.0,0 -74154832,"FINAL FANTASY XI",play,0.3,0 -298979438,"Dota 2",purchase,1.0,0 -298979438,"Dota 2",play,73.0,0 -149318464,"Dota 2",purchase,1.0,0 -149318464,"Dota 2",play,66.0,0 -29835809,"Counter-Strike Source",purchase,1.0,0 -29835809,"Counter-Strike Source",play,7.3,0 -29835809,"Day of Defeat Source",purchase,1.0,0 -29835809,"Half-Life 2 Deathmatch",purchase,1.0,0 -29835809,"Half-Life 2 Lost Coast",purchase,1.0,0 -174813416,"Dota 2",purchase,1.0,0 -174813416,"Dota 2",play,0.1,0 -42928788,"Team Fortress 2",purchase,1.0,0 -42928788,"Team Fortress 2",play,297.0,0 -42928788,"Tom Clancy's Rainbow Six Siege",purchase,1.0,0 -42928788,"Tom Clancy's Rainbow Six Siege",play,52.0,0 -42928788,"Terraria",purchase,1.0,0 -42928788,"Terraria",play,28.0,0 -42928788,"Dirty Bomb",purchase,1.0,0 -42928788,"Dirty Bomb",play,26.0,0 -42928788,"Killing Floor",purchase,1.0,0 -42928788,"Killing Floor",play,23.0,0 -42928788,"Garry's Mod",purchase,1.0,0 -42928788,"Garry's Mod",play,20.0,0 -42928788,"Mount & Blade Warband",purchase,1.0,0 -42928788,"Mount & Blade Warband",play,13.8,0 -42928788,"PlanetSide 2",purchase,1.0,0 -42928788,"PlanetSide 2",play,13.5,0 -42928788,"Loadout",purchase,1.0,0 -42928788,"Loadout",play,10.8,0 -42928788,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -42928788,"Tom Clancy's Splinter Cell Conviction",play,9.9,0 -42928788,"Torchlight II",purchase,1.0,0 -42928788,"Torchlight II",play,7.0,0 -42928788,"Zombie Panic Source",purchase,1.0,0 -42928788,"Zombie Panic Source",play,6.3,0 -42928788,"Star Conflict",purchase,1.0,0 -42928788,"Star Conflict",play,5.9,0 -42928788,"Left 4 Dead 2",purchase,1.0,0 -42928788,"Left 4 Dead 2",play,5.3,0 -42928788,"Starbound",purchase,1.0,0 -42928788,"Starbound",play,5.3,0 -42928788,"Trine 2",purchase,1.0,0 -42928788,"Trine 2",play,5.3,0 -42928788,"No More Room in Hell",purchase,1.0,0 -42928788,"No More Room in Hell",play,4.6,0 -42928788,"Portal",purchase,1.0,0 -42928788,"Portal",play,4.3,0 -42928788,"PAYDAY The Heist",purchase,1.0,0 -42928788,"PAYDAY The Heist",play,3.7,0 -42928788,"Neverwinter",purchase,1.0,0 -42928788,"Neverwinter",play,3.2,0 -42928788,"Counter-Strike Global Offensive",purchase,1.0,0 -42928788,"Counter-Strike Global Offensive",play,3.0,0 -42928788,"PAYDAY 2",purchase,1.0,0 -42928788,"PAYDAY 2",play,2.3,0 -42928788,"Takedown Red Sabre",purchase,1.0,0 -42928788,"Takedown Red Sabre",play,2.3,0 -42928788,"Saints Row IV",purchase,1.0,0 -42928788,"Saints Row IV",play,2.1,0 -42928788,"Orcs Must Die! 2",purchase,1.0,0 -42928788,"Orcs Must Die! 2",play,2.1,0 -42928788,"Grand Theft Auto IV",purchase,1.0,0 -42928788,"Grand Theft Auto IV",play,2.0,0 -42928788,"E.Y.E Divine Cybermancy",purchase,1.0,0 -42928788,"E.Y.E Divine Cybermancy",play,2.0,0 -42928788,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -42928788,"Tom Clancy's Splinter Cell Blacklist",play,1.9,0 -42928788,"Sniper Elite V2",purchase,1.0,0 -42928788,"Sniper Elite V2",play,1.8,0 -42928788,"ORION Prelude",purchase,1.0,0 -42928788,"ORION Prelude",play,1.7,0 -42928788,"Unturned",purchase,1.0,0 -42928788,"Unturned",play,1.6,0 -42928788,"Natural Selection 2",purchase,1.0,0 -42928788,"Natural Selection 2",play,1.5,0 -42928788,"RACE 07",purchase,1.0,0 -42928788,"RACE 07",play,1.2,0 -42928788,"Warface",purchase,1.0,0 -42928788,"Warface",play,1.2,0 -42928788,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -42928788,"Tom Clancy's Ghost Recon Phantoms - EU",play,1.1,0 -42928788,"Age of Chivalry",purchase,1.0,0 -42928788,"Age of Chivalry",play,1.0,0 -42928788,"Contagion",purchase,1.0,0 -42928788,"Contagion",play,0.9,0 -42928788,"Forge",purchase,1.0,0 -42928788,"Forge",play,0.6,0 -42928788,"Planetary Annihilation",purchase,1.0,0 -42928788,"Planetary Annihilation",play,0.5,0 -42928788,"Risk of Rain",purchase,1.0,0 -42928788,"Risk of Rain",play,0.5,0 -42928788,"Insurgency Modern Infantry Combat",purchase,1.0,0 -42928788,"Insurgency Modern Infantry Combat",play,0.4,0 -42928788,"Alien Swarm",purchase,1.0,0 -42928788,"Alien Swarm",play,0.3,0 -42928788,"Dead Island Epidemic",purchase,1.0,0 -42928788,"Dead Island Epidemic",play,0.3,0 -42928788,"Heroes & Generals",purchase,1.0,0 -42928788,"Heroes & Generals",play,0.3,0 -42928788,"Insurgency",purchase,1.0,0 -42928788,"Insurgency",play,0.2,0 -42928788,"Magicka Wizard Wars",purchase,1.0,0 -42928788,"Magicka Wizard Wars",play,0.2,0 -42928788,"Brawlhalla",purchase,1.0,0 -42928788,"Brawlhalla",play,0.2,0 -42928788,"Dungeon Defenders II",purchase,1.0,0 -42928788,"Dungeon Defenders II",play,0.1,0 -42928788,"Floating Point",purchase,1.0,0 -42928788,"Floating Point",play,0.1,0 -42928788,"Gear Up",purchase,1.0,0 -42928788,"ACE - Arena Cyber Evolution",purchase,1.0,0 -42928788,"Altitude",purchase,1.0,0 -42928788,"Dino D-Day",purchase,1.0,0 -42928788,"Dungeonland",purchase,1.0,0 -42928788,"Firefall",purchase,1.0,0 -42928788,"Fractured Space",purchase,1.0,0 -42928788,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -42928788,"Gunpoint",purchase,1.0,0 -42928788,"Half-Life 2",purchase,1.0,0 -42928788,"Half-Life 2 Deathmatch",purchase,1.0,0 -42928788,"Half-Life 2 Episode One",purchase,1.0,0 -42928788,"Half-Life 2 Episode Two",purchase,1.0,0 -42928788,"Half-Life 2 Lost Coast",purchase,1.0,0 -42928788,"Hammerwatch",purchase,1.0,0 -42928788,"HAWKEN",purchase,1.0,0 -42928788,"Killing Floor - Toy Master",purchase,1.0,0 -42928788,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -42928788,"Max Gentlemen",purchase,1.0,0 -42928788,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -42928788,"Quantum Rush Online",purchase,1.0,0 -42928788,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -42928788,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -42928788,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -42928788,"Starbound - Unstable",purchase,1.0,0 -42928788,"SteamWorld Dig",purchase,1.0,0 -42928788,"The Ship",purchase,1.0,0 -42928788,"The Ship Single Player",purchase,1.0,0 -42928788,"The Ship Tutorial",purchase,1.0,0 -42928788,"Tom Clancy's Ghost Recon Phantoms - EU Support Starter Pack",purchase,1.0,0 -42928788,"Tom Clancy's Rainbow Six Vegas",purchase,1.0,0 -269437356,"Mortal Kombat X",purchase,1.0,0 -269437356,"Mortal Kombat X",play,73.0,0 -61444633,"EverQuest Secrets of Faydwer",purchase,1.0,0 -61444633,"EverQuest Secrets of Faydwer",play,0.4,0 -61444633,"EverQuest Seeds of Destruction",purchase,1.0,0 -61444633,"EverQuest Seeds of Destruction",play,0.3,0 -61444633,"Half-Life 2 Deathmatch",purchase,1.0,0 -61444633,"Half-Life 2 Deathmatch",play,0.3,0 -61444633,"Half-Life 2 Lost Coast",purchase,1.0,0 -298519243,"Dota 2",purchase,1.0,0 -298519243,"Dota 2",play,0.4,0 -25096601,"Dota 2",purchase,1.0,0 -25096601,"Dota 2",play,128.0,0 -25096601,"Sid Meier's Civilization V",purchase,1.0,0 -25096601,"Sid Meier's Civilization V",play,93.0,0 -25096601,"The Elder Scrolls V Skyrim",purchase,1.0,0 -25096601,"The Elder Scrolls V Skyrim",play,82.0,0 -25096601,"The Binding of Isaac Rebirth",purchase,1.0,0 -25096601,"The Binding of Isaac Rebirth",play,31.0,0 -25096601,"Fallout New Vegas",purchase,1.0,0 -25096601,"Fallout New Vegas",play,16.1,0 -25096601,"Recettear An Item Shop's Tale",purchase,1.0,0 -25096601,"Recettear An Item Shop's Tale",play,14.4,0 -25096601,"Hotline Miami",purchase,1.0,0 -25096601,"Hotline Miami",play,14.1,0 -25096601,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -25096601,"Sid Meier's Civilization Beyond Earth",play,13.2,0 -25096601,"Counter-Strike Global Offensive",purchase,1.0,0 -25096601,"Counter-Strike Global Offensive",play,12.2,0 -25096601,"Metro Last Light Redux",purchase,1.0,0 -25096601,"Metro Last Light Redux",play,11.8,0 -25096601,"The Forest",purchase,1.0,0 -25096601,"The Forest",play,11.1,0 -25096601,"Rust",purchase,1.0,0 -25096601,"Rust",play,11.1,0 -25096601,"Metro 2033 Redux",purchase,1.0,0 -25096601,"Metro 2033 Redux",play,9.3,0 -25096601,"BioShock Infinite",purchase,1.0,0 -25096601,"BioShock Infinite",play,6.7,0 -25096601,"Papers, Please",purchase,1.0,0 -25096601,"Papers, Please",play,6.1,0 -25096601,"Half-Life 2",purchase,1.0,0 -25096601,"Half-Life 2",play,5.9,0 -25096601,"Counter-Strike Source",purchase,1.0,0 -25096601,"Counter-Strike Source",play,4.2,0 -25096601,"Portal 2",purchase,1.0,0 -25096601,"Portal 2",play,3.6,0 -25096601,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -25096601,"Tom Clancy's Splinter Cell Blacklist",play,3.0,0 -25096601,"Oddworld Abe's Exoddus",purchase,1.0,0 -25096601,"Oddworld Abe's Exoddus",play,2.6,0 -25096601,"Far Cry 3",purchase,1.0,0 -25096601,"Far Cry 3",play,2.1,0 -25096601,"Team Fortress 2",purchase,1.0,0 -25096601,"Team Fortress 2",play,2.1,0 -25096601,"Fallout 4",purchase,1.0,0 -25096601,"Fallout 4",play,1.6,0 -25096601,"Surgeon Simulator",purchase,1.0,0 -25096601,"Surgeon Simulator",play,1.4,0 -25096601,"Dust An Elysian Tail",purchase,1.0,0 -25096601,"Dust An Elysian Tail",play,1.2,0 -25096601,"Nosgoth",purchase,1.0,0 -25096601,"Nosgoth",play,1.1,0 -25096601,"The Ship",purchase,1.0,0 -25096601,"The Ship",play,1.0,0 -25096601,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -25096601,"Warhammer 40,000 Dawn of War II",play,1.0,0 -25096601,"Crusader Kings II",purchase,1.0,0 -25096601,"Crusader Kings II",play,0.9,0 -25096601,"Max Payne 3",purchase,1.0,0 -25096601,"Max Payne 3",play,0.9,0 -25096601,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -25096601,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.7,0 -25096601,"FreeStyle2 Street Basketball",purchase,1.0,0 -25096601,"FreeStyle2 Street Basketball",play,0.6,0 -25096601,"Dirty Bomb",purchase,1.0,0 -25096601,"Dirty Bomb",play,0.6,0 -25096601,"Chivalry Medieval Warfare",purchase,1.0,0 -25096601,"Chivalry Medieval Warfare",play,0.6,0 -25096601,"Batman Arkham Origins",purchase,1.0,0 -25096601,"Batman Arkham Origins",play,0.6,0 -25096601,"Left 4 Dead 2",purchase,1.0,0 -25096601,"Left 4 Dead 2",play,0.6,0 -25096601,"Saints Row The Third",purchase,1.0,0 -25096601,"Saints Row The Third",play,0.5,0 -25096601,"Shovel Knight",purchase,1.0,0 -25096601,"Shovel Knight",play,0.5,0 -25096601,"Red Faction Armageddon",purchase,1.0,0 -25096601,"Red Faction Armageddon",play,0.5,0 -25096601,"Company of Heroes",purchase,1.0,0 -25096601,"Company of Heroes",play,0.5,0 -25096601,"Hotline Miami 2 Wrong Number",purchase,1.0,0 -25096601,"Hotline Miami 2 Wrong Number",play,0.4,0 -25096601,"Broken Sword 3 - the Sleeping Dragon",purchase,1.0,0 -25096601,"Broken Sword 3 - the Sleeping Dragon",play,0.4,0 -25096601,"The Last Remnant",purchase,1.0,0 -25096601,"The Last Remnant",play,0.4,0 -25096601,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -25096601,"Resident Evil Revelations 2 / Biohazard Revelations 2",play,0.4,0 -25096601,"Death Skid Marks",purchase,1.0,0 -25096601,"Death Skid Marks",play,0.3,0 -25096601,"Oceanhorn Monster of Uncharted Seas",purchase,1.0,0 -25096601,"Oceanhorn Monster of Uncharted Seas",play,0.2,0 -25096601,"FINAL FANTASY VII",purchase,1.0,0 -25096601,"FINAL FANTASY VII",play,0.2,0 -25096601,"The Vanishing of Ethan Carter",purchase,1.0,0 -25096601,"The Vanishing of Ethan Carter",play,0.2,0 -25096601,"This War of Mine",purchase,1.0,0 -25096601,"This War of Mine",play,0.2,0 -25096601,"Road Redemption",purchase,1.0,0 -25096601,"Road Redemption",play,0.2,0 -25096601,"Styx Master of Shadows",purchase,1.0,0 -25096601,"Styx Master of Shadows",play,0.2,0 -25096601,"The Evil Within",purchase,1.0,0 -25096601,"The Evil Within",play,0.1,0 -25096601,"Half-Life 2 Episode Two",purchase,1.0,0 -25096601,"Half-Life 2 Episode Two",play,0.1,0 -25096601,"Oddworld Abe's Oddysee",purchase,1.0,0 -25096601,"Hitman Blood Money",purchase,1.0,0 -25096601,"La-Mulana",purchase,1.0,0 -25096601,"Broken Sword 2 - the Smoking Mirror Remastered",purchase,1.0,0 -25096601,"Broken Sword 1 - Shadow of the Templars Director's Cut",purchase,1.0,0 -25096601,"Chantelise",purchase,1.0,0 -25096601,"Company of Heroes (New Steam Version)",purchase,1.0,0 -25096601,"Company of Heroes Opposing Fronts",purchase,1.0,0 -25096601,"Darksiders",purchase,1.0,0 -25096601,"Darksiders II",purchase,1.0,0 -25096601,"Dishonored",purchase,1.0,0 -25096601,"Fortune Summoners Secret of the Elemental Stone",purchase,1.0,0 -25096601,"Half-Life 2 Episode One",purchase,1.0,0 -25096601,"Half-Life 2 Lost Coast",purchase,1.0,0 -25096601,"Hitman 2 Silent Assassin",purchase,1.0,0 -25096601,"Hitman Absolution",purchase,1.0,0 -25096601,"Hitman Codename 47",purchase,1.0,0 -25096601,"Hitman Contracts",purchase,1.0,0 -25096601,"Hitman Sniper Challenge",purchase,1.0,0 -25096601,"Homefront",purchase,1.0,0 -25096601,"Metro 2033",purchase,1.0,0 -25096601,"MX vs. ATV Reflex",purchase,1.0,0 -25096601,"Nexuiz",purchase,1.0,0 -25096601,"Nexuiz Beta",purchase,1.0,0 -25096601,"Nexuiz STUPID Mode",purchase,1.0,0 -25096601,"Patch testing for Chivalry",purchase,1.0,0 -25096601,"Portal",purchase,1.0,0 -25096601,"Red Faction",purchase,1.0,0 -25096601,"Red Faction II",purchase,1.0,0 -25096601,"Saints Row 2",purchase,1.0,0 -25096601,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -25096601,"Supreme Commander",purchase,1.0,0 -25096601,"Supreme Commander Forged Alliance",purchase,1.0,0 -25096601,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -25096601,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -25096601,"The Lord of the Rings Online",purchase,1.0,0 -25096601,"The Ship Single Player",purchase,1.0,0 -25096601,"The Ship Tutorial",purchase,1.0,0 -25096601,"The Vanishing of Ethan Carter Redux",purchase,1.0,0 -25096601,"Titan Quest",purchase,1.0,0 -25096601,"Titan Quest Immortal Throne",purchase,1.0,0 -25096601,"Town of Salem",purchase,1.0,0 -25096601,"Warhammer 40,000 Space Marine",purchase,1.0,0 -25096601,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -25096601,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -120377800,"Serious Sam HD The Second Encounter",purchase,1.0,0 -120377800,"Serious Sam HD The Second Encounter",play,31.0,0 -233160273,"Terraria",purchase,1.0,0 -233160273,"Terraria",play,129.0,0 -233160273,"Bejeweled 3",purchase,1.0,0 -233160273,"Bejeweled 3",play,10.9,0 -233160273,"BookWorm Deluxe",purchase,1.0,0 -233160273,"BookWorm Deluxe",play,7.1,0 -233160273,"Zombies Monsters Robots",purchase,1.0,0 -233160273,"Zombies Monsters Robots",play,1.4,0 -42642155,"Fistful of Frags",purchase,1.0,0 -42642155,"War Operations",purchase,1.0,0 -33591806,"Day of Defeat Source",purchase,1.0,0 -33591806,"Day of Defeat Source",play,0.9,0 -157397663,"Dota 2",purchase,1.0,0 -157397663,"Dota 2",play,0.9,0 -234024191,"Dota 2",purchase,1.0,0 -234024191,"Dota 2",play,204.0,0 -234024191,"Portal 2",purchase,1.0,0 -234024191,"Portal 2",play,12.5,0 -234024191,"The Legend of Korra",purchase,1.0,0 -234024191,"The Legend of Korra",play,9.9,0 -234024191,"Audition Online",purchase,1.0,0 -234024191,"Audition Online",play,8.2,0 -234024191,"Portal",purchase,1.0,0 -234024191,"Portal",play,5.2,0 -234024191,"The Wolf Among Us",purchase,1.0,0 -234024191,"The Wolf Among Us",play,3.0,0 -234024191,"Thinking with Time Machine",purchase,1.0,0 -234024191,"Thinking with Time Machine",play,2.3,0 -234024191,"AdVenture Capitalist",purchase,1.0,0 -234024191,"AdVenture Capitalist",play,1.8,0 -234024191,"The Guild II",purchase,1.0,0 -234024191,"The Guild II",play,0.2,0 -234024191,"Blender 2.76b",purchase,1.0,0 -234024191,"Blender 2.76b",play,0.2,0 -234024191,"The Way of Life Free Edition",purchase,1.0,0 -234024191,"The Way of Life Free Edition",play,0.2,0 -234024191,"Toribash",purchase,1.0,0 -234024191,"Toribash",play,0.1,0 -234024191,"Only If",purchase,1.0,0 -234024191,"Only If",play,0.1,0 -234024191,"Carpe Diem",purchase,1.0,0 -234024191,"Spooky's House of Jump Scares",purchase,1.0,0 -234024191,"The Deer",purchase,1.0,0 -234024191,"Amnesia The Dark Descent",purchase,1.0,0 -234024191,"Narcissu 1st & 2nd",purchase,1.0,0 -234024191,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -234024191,"The Guild Gold Edition",purchase,1.0,0 -234024191,"The Guild II - Pirates of the European Seas",purchase,1.0,0 -234024191,"The Guild II Renaissance",purchase,1.0,0 -88735140,"Magicka",purchase,1.0,0 -88735140,"Magicka",play,2.2,0 -115003799,"Dota 2",purchase,1.0,0 -115003799,"Dota 2",play,0.7,0 -57866383,"Team Fortress 2",purchase,1.0,0 -57866383,"Team Fortress 2",play,0.4,0 -57866383,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -57866383,"Burnout Paradise The Ultimate Box",play,0.3,0 -57866383,"Crysis 2 Maximum Edition",purchase,1.0,0 -57866383,"Dead Space",purchase,1.0,0 -57866383,"Left 4 Dead 2",purchase,1.0,0 -57866383,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -57866383,"Medal of Honor(TM) Single Player",purchase,1.0,0 -57866383,"Medal of Honor Pre-Order",purchase,1.0,0 -57866383,"Metro 2033",purchase,1.0,0 -57866383,"Mirror's Edge",purchase,1.0,0 -57866383,"Portal",purchase,1.0,0 -57866383,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -57866383,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -57866383,"Warframe",purchase,1.0,0 -168845004,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -168845004,"Star Wars The Force Unleashed Ultimate Sith Edition",play,5.1,0 -144347801,"Unturned",purchase,1.0,0 -144347801,"Unturned",play,178.0,0 -144347801,"Team Fortress 2",purchase,1.0,0 -144347801,"Team Fortress 2",play,156.0,0 -144347801,"Garry's Mod",purchase,1.0,0 -144347801,"Garry's Mod",play,70.0,0 -144347801,"Warface",purchase,1.0,0 -144347801,"Warface",play,41.0,0 -144347801,"Rise of Nations Extended Edition",purchase,1.0,0 -144347801,"Rise of Nations Extended Edition",play,31.0,0 -144347801,"Counter-Strike Global Offensive",purchase,1.0,0 -144347801,"Counter-Strike Global Offensive",play,27.0,0 -144347801,"Trove",purchase,1.0,0 -144347801,"Trove",play,11.3,0 -144347801,"Heroes & Generals",purchase,1.0,0 -144347801,"Heroes & Generals",play,9.0,0 -144347801,"Super Chibi Knight",purchase,1.0,0 -144347801,"Super Chibi Knight",play,3.3,0 -144347801,"theHunter",purchase,1.0,0 -144347801,"theHunter",play,0.6,0 -144347801,"AdVenture Capitalist",purchase,1.0,0 -144347801,"AdVenture Capitalist",play,0.1,0 -144347801,"Source Filmmaker",purchase,1.0,0 -144347801,"Source Filmmaker",play,0.1,0 -144347801,"War Thunder",purchase,1.0,0 -144347801,"Clicker Heroes",purchase,1.0,0 -144347801,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -144347801,"You Have to Win the Game",purchase,1.0,0 -112590296,"Dota 2",purchase,1.0,0 -112590296,"Dota 2",play,2.6,0 -209193781,"Team Fortress 2",purchase,1.0,0 -209193781,"Team Fortress 2",play,1.1,0 -14433556,"Counter-Strike Source",purchase,1.0,0 -14433556,"Half-Life 2",purchase,1.0,0 -14433556,"Half-Life 2 Deathmatch",purchase,1.0,0 -14433556,"Half-Life 2 Lost Coast",purchase,1.0,0 -42061089,"DARK SOULS II",purchase,1.0,0 -42061089,"DARK SOULS II",play,155.0,0 -42061089,"Borderlands 2",purchase,1.0,0 -42061089,"Borderlands 2",play,82.0,0 -42061089,"Warframe",purchase,1.0,0 -42061089,"Warframe",play,77.0,0 -42061089,"Grand Theft Auto V",purchase,1.0,0 -42061089,"Grand Theft Auto V",play,52.0,0 -42061089,"Worms Revolution",purchase,1.0,0 -42061089,"Worms Revolution",play,42.0,0 -42061089,"BioShock Infinite",purchase,1.0,0 -42061089,"BioShock Infinite",play,41.0,0 -42061089,"Batman Arkham City GOTY",purchase,1.0,0 -42061089,"Batman Arkham City GOTY",play,39.0,0 -42061089,"Half-Life 2",purchase,1.0,0 -42061089,"Half-Life 2",play,37.0,0 -42061089,"Rayman Legends",purchase,1.0,0 -42061089,"Rayman Legends",play,36.0,0 -42061089,"Borderlands The Pre-Sequel",purchase,1.0,0 -42061089,"Borderlands The Pre-Sequel",play,34.0,0 -42061089,"Shift 2 Unleashed",purchase,1.0,0 -42061089,"Shift 2 Unleashed",play,30.0,0 -42061089,"South Park The Stick of Truth",purchase,1.0,0 -42061089,"South Park The Stick of Truth",play,29.0,0 -42061089,"DC Universe Online",purchase,1.0,0 -42061089,"DC Universe Online",play,25.0,0 -42061089,"Left 4 Dead 2",purchase,1.0,0 -42061089,"Left 4 Dead 2",play,24.0,0 -42061089,"Batman Arkham Origins",purchase,1.0,0 -42061089,"Batman Arkham Origins",play,21.0,0 -42061089,"Max Payne 3",purchase,1.0,0 -42061089,"Max Payne 3",play,20.0,0 -42061089,"Watch_Dogs",purchase,1.0,0 -42061089,"Watch_Dogs",play,19.3,0 -42061089,"BioShock",purchase,1.0,0 -42061089,"BioShock",play,19.1,0 -42061089,"Rocket League",purchase,1.0,0 -42061089,"Rocket League",play,15.5,0 -42061089,"Tower Wars",purchase,1.0,0 -42061089,"Tower Wars",play,14.7,0 -42061089,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -42061089,"Dark Souls Prepare to Die Edition",play,13.6,0 -42061089,"The Elder Scrolls V Skyrim",purchase,1.0,0 -42061089,"The Elder Scrolls V Skyrim",play,13.0,0 -42061089,"Neverwinter",purchase,1.0,0 -42061089,"Neverwinter",play,12.4,0 -42061089,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -42061089,"METAL GEAR SOLID V THE PHANTOM PAIN",play,10.6,0 -42061089,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -42061089,"Tom Clancy's Splinter Cell Blacklist",play,9.3,0 -42061089,"Awesomenauts",purchase,1.0,0 -42061089,"Awesomenauts",play,9.1,0 -42061089,"Assassin's Creed IV Black Flag",purchase,1.0,0 -42061089,"Assassin's Creed IV Black Flag",play,8.5,0 -42061089,"Hotline Miami",purchase,1.0,0 -42061089,"Hotline Miami",play,8.3,0 -42061089,"BattleBlock Theater",purchase,1.0,0 -42061089,"BattleBlock Theater",play,7.9,0 -42061089,"Guild Wars",purchase,1.0,0 -42061089,"Guild Wars",play,7.9,0 -42061089,"Middle-earth Shadow of Mordor",purchase,1.0,0 -42061089,"Middle-earth Shadow of Mordor",play,6.7,0 -42061089,"Killing Floor",purchase,1.0,0 -42061089,"Killing Floor",play,5.9,0 -42061089,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -42061089,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,5.8,0 -42061089,"Darksiders",purchase,1.0,0 -42061089,"Darksiders",play,5.3,0 -42061089,"Killing Floor 2",purchase,1.0,0 -42061089,"Killing Floor 2",play,5.2,0 -42061089,"Castle Crashers",purchase,1.0,0 -42061089,"Castle Crashers",play,5.2,0 -42061089,"Reus",purchase,1.0,0 -42061089,"Reus",play,4.9,0 -42061089,"Dungeonland",purchase,1.0,0 -42061089,"Dungeonland",play,4.1,0 -42061089,"Firefall",purchase,1.0,0 -42061089,"Firefall",play,3.8,0 -42061089,"TERA",purchase,1.0,0 -42061089,"TERA",play,3.5,0 -42061089,"Transformers Fall of Cybertron",purchase,1.0,0 -42061089,"Transformers Fall of Cybertron",play,2.9,0 -42061089,"Metro Last Light",purchase,1.0,0 -42061089,"Metro Last Light",play,2.7,0 -42061089,"Dust An Elysian Tail",purchase,1.0,0 -42061089,"Dust An Elysian Tail",play,2.6,0 -42061089,"Risk of Rain",purchase,1.0,0 -42061089,"Risk of Rain",play,2.5,0 -42061089,"DRAGON BALL XENOVERSE",purchase,1.0,0 -42061089,"DRAGON BALL XENOVERSE",play,2.4,0 -42061089,"Outlast",purchase,1.0,0 -42061089,"Outlast",play,2.1,0 -42061089,"Zombies Monsters Robots",purchase,1.0,0 -42061089,"Zombies Monsters Robots",play,2.1,0 -42061089,"Half-Life 2 Deathmatch",purchase,1.0,0 -42061089,"Half-Life 2 Deathmatch",play,1.9,0 -42061089,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -42061089,"METAL GEAR SOLID V GROUND ZEROES",play,1.9,0 -42061089,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -42061089,"Dragon Age Origins - Ultimate Edition",play,1.7,0 -42061089,"Sanctum 2",purchase,1.0,0 -42061089,"Sanctum 2",play,1.6,0 -42061089,"Dragon Nest",purchase,1.0,0 -42061089,"Dragon Nest",play,1.6,0 -42061089,"Defiance",purchase,1.0,0 -42061089,"Defiance",play,1.5,0 -42061089,"RIFT",purchase,1.0,0 -42061089,"RIFT",play,1.4,0 -42061089,"METAL SLUG 3",purchase,1.0,0 -42061089,"METAL SLUG 3",play,1.1,0 -42061089,"PixelJunk Eden",purchase,1.0,0 -42061089,"PixelJunk Eden",play,1.0,0 -42061089,"The Evil Within",purchase,1.0,0 -42061089,"The Evil Within",play,1.0,0 -42061089,"Far Cry 3",purchase,1.0,0 -42061089,"Far Cry 3",play,0.9,0 -42061089,"Half-Life 2 Lost Coast",purchase,1.0,0 -42061089,"Half-Life 2 Lost Coast",play,0.8,0 -42061089,"Path of Exile",purchase,1.0,0 -42061089,"Path of Exile",play,0.7,0 -42061089,"XCOM Enemy Unknown",purchase,1.0,0 -42061089,"XCOM Enemy Unknown",play,0.7,0 -42061089,"Team Fortress 2",purchase,1.0,0 -42061089,"Team Fortress 2",play,0.7,0 -42061089,"Happy Wars",purchase,1.0,0 -42061089,"Happy Wars",play,0.5,0 -42061089,"No More Room in Hell",purchase,1.0,0 -42061089,"No More Room in Hell",play,0.5,0 -42061089,"Far Cry 3 Blood Dragon",purchase,1.0,0 -42061089,"Far Cry 3 Blood Dragon",play,0.5,0 -42061089,"Panzar",purchase,1.0,0 -42061089,"Panzar",play,0.4,0 -42061089,"Evolve",purchase,1.0,0 -42061089,"Evolve",play,0.4,0 -42061089,"Hotline Miami 2 Wrong Number",purchase,1.0,0 -42061089,"Hotline Miami 2 Wrong Number",play,0.4,0 -42061089,"The Bridge",purchase,1.0,0 -42061089,"The Bridge",play,0.3,0 -42061089,"Far Cry 2",purchase,1.0,0 -42061089,"Far Cry 2",play,0.3,0 -42061089,"HAWKEN",purchase,1.0,0 -42061089,"HAWKEN",play,0.3,0 -42061089,"Jet Set Radio",purchase,1.0,0 -42061089,"Jet Set Radio",play,0.3,0 -42061089,"Cry of Fear",purchase,1.0,0 -42061089,"Cry of Fear",play,0.3,0 -42061089,"Far Cry",purchase,1.0,0 -42061089,"Far Cry",play,0.2,0 -42061089,"Fishing Planet",purchase,1.0,0 -42061089,"Fishing Planet",play,0.2,0 -42061089,"Hitman Absolution",purchase,1.0,0 -42061089,"Hitman Absolution",play,0.1,0 -42061089,"Lords Of The Fallen",purchase,1.0,0 -42061089,"Archeblade",purchase,1.0,0 -42061089,"BioShock 2",purchase,1.0,0 -42061089,"Blood Omen 2 Legacy of Kain",purchase,1.0,0 -42061089,"Crysis 2 Maximum Edition",purchase,1.0,0 -42061089,"Darksiders II",purchase,1.0,0 -42061089,"Darksiders II Deathinitive Edition",purchase,1.0,0 -42061089,"Darksiders II Soundtrack",purchase,1.0,0 -42061089,"Darksiders Soundtrack",purchase,1.0,0 -42061089,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -42061089,"Dishonored",purchase,1.0,0 -42061089,"Dungeon Defenders II",purchase,1.0,0 -42061089,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -42061089,"Guild Wars Trilogy",purchase,1.0,0 -42061089,"Hitman Sniper Challenge",purchase,1.0,0 -42061089,"Killing Floor Uncovered",purchase,1.0,0 -42061089,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -42061089,"Legacy of Kain Defiance",purchase,1.0,0 -42061089,"Legacy of Kain Soul Reaver",purchase,1.0,0 -42061089,"Legacy of Kain Soul Reaver 2",purchase,1.0,0 -42061089,"Metro 2033 Redux",purchase,1.0,0 -42061089,"Metro Last Light Redux",purchase,1.0,0 -42061089,"Nosgoth",purchase,1.0,0 -42061089,"Rise of Incarnates",purchase,1.0,0 -42061089,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -42061089,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -42061089,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -42061089,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -42061089,"The Witcher 3 Wild Hunt",purchase,1.0,0 -42061089,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -42061089,"The Witcher Enhanced Edition",purchase,1.0,0 -42061089,"Worms",purchase,1.0,0 -42061089,"Worms Armageddon",purchase,1.0,0 -42061089,"Worms Blast",purchase,1.0,0 -42061089,"Worms Clan Wars",purchase,1.0,0 -42061089,"Worms Crazy Golf",purchase,1.0,0 -42061089,"Worms Pinball",purchase,1.0,0 -42061089,"Worms Reloaded",purchase,1.0,0 -42061089,"Worms Ultimate Mayhem",purchase,1.0,0 -158267574,"Dota 2",purchase,1.0,0 -158267574,"Dota 2",play,5.8,0 -307239317,"Dota 2",purchase,1.0,0 -307239317,"Dota 2",play,0.7,0 -62654923,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -62654923,"Call of Duty Modern Warfare 3 - Multiplayer",play,191.0,0 -62654923,"Call of Duty Black Ops",purchase,1.0,0 -62654923,"Call of Duty Black Ops",play,154.0,0 -62654923,"Call of Duty Modern Warfare 2",purchase,1.0,0 -62654923,"Call of Duty Modern Warfare 2",play,100.0,0 -62654923,"Call of Duty Modern Warfare 3",purchase,1.0,0 -62654923,"Call of Duty Modern Warfare 3",play,65.0,0 -62654923,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -62654923,"Call of Duty Black Ops - Multiplayer",play,64.0,0 -62654923,"Call of Duty Advanced Warfare",purchase,1.0,0 -62654923,"Call of Duty Advanced Warfare",play,12.8,0 -62654923,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -62654923,"Star Wars The Force Unleashed Ultimate Sith Edition",play,9.7,0 -62654923,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -62654923,"Call of Duty Advanced Warfare - Multiplayer",play,3.5,0 -62654923,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -62654923,"Call of Duty Modern Warfare 2 - Multiplayer",play,2.6,0 -62654923,"Portal",purchase,1.0,0 -62654923,"Portal",play,0.5,0 -62654923,"Aliens vs. Predator",purchase,1.0,0 -62654923,"Aliens vs. Predator",play,0.4,0 -56256991,"Dota 2",purchase,1.0,0 -56256991,"Dota 2",play,723.0,0 -56256991,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -56256991,"Call of Duty Black Ops - Multiplayer",play,133.0,0 -56256991,"Call of Duty Black Ops",purchase,1.0,0 -56256991,"Call of Duty Black Ops",play,44.0,0 -56256991,"Call of Duty Ghosts",purchase,1.0,0 -56256991,"Call of Duty Ghosts",play,8.0,0 -56256991,"Counter-Strike Global Offensive",purchase,1.0,0 -56256991,"Counter-Strike Global Offensive",play,0.4,0 -56256991,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -86338111,"Team Fortress 2",purchase,1.0,0 -86338111,"Team Fortress 2",play,1064.0,0 -86338111,"Sid Meier's Civilization V",purchase,1.0,0 -86338111,"Sid Meier's Civilization V",play,150.0,0 -86338111,"Garry's Mod",purchase,1.0,0 -86338111,"Garry's Mod",play,60.0,0 -86338111,"Don't Starve",purchase,1.0,0 -86338111,"Don't Starve",play,34.0,0 -86338111,"HuniePop",purchase,1.0,0 -86338111,"HuniePop",play,34.0,0 -86338111,"Left 4 Dead 2",purchase,1.0,0 -86338111,"Left 4 Dead 2",play,29.0,0 -86338111,"Amnesia The Dark Descent",purchase,1.0,0 -86338111,"Amnesia The Dark Descent",play,26.0,0 -86338111,"Killing Floor",purchase,1.0,0 -86338111,"Killing Floor",play,24.0,0 -86338111,"Unturned",purchase,1.0,0 -86338111,"Unturned",play,19.1,0 -86338111,"7 Days to Die",purchase,1.0,0 -86338111,"7 Days to Die",play,18.8,0 -86338111,"The Walking Dead",purchase,1.0,0 -86338111,"The Walking Dead",play,15.7,0 -86338111,"Grand Theft Auto San Andreas",purchase,1.0,0 -86338111,"Grand Theft Auto San Andreas",play,14.6,0 -86338111,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -86338111,"Plants vs. Zombies Game of the Year",play,10.4,0 -86338111,"The Wolf Among Us",purchase,1.0,0 -86338111,"The Wolf Among Us",play,9.9,0 -86338111,"The Walking Dead Season Two",purchase,1.0,0 -86338111,"The Walking Dead Season Two",play,8.9,0 -86338111,"Realm of the Mad God",purchase,1.0,0 -86338111,"Realm of the Mad God",play,7.3,0 -86338111,"Starbound",purchase,1.0,0 -86338111,"Starbound",play,5.8,0 -86338111,"Surgeon Simulator",purchase,1.0,0 -86338111,"Surgeon Simulator",play,5.6,0 -86338111,"Portal 2",purchase,1.0,0 -86338111,"Portal 2",play,5.2,0 -86338111,"Poker Night 2",purchase,1.0,0 -86338111,"Poker Night 2",play,4.8,0 -86338111,"Gone Home",purchase,1.0,0 -86338111,"Gone Home",play,4.1,0 -86338111,"Castle Crashers",purchase,1.0,0 -86338111,"Castle Crashers",play,3.4,0 -86338111,"Rabbit Hole 3D Steam Edition",purchase,1.0,0 -86338111,"Rabbit Hole 3D Steam Edition",play,3.3,0 -86338111,"Game Dev Tycoon",purchase,1.0,0 -86338111,"Game Dev Tycoon",play,3.0,0 -86338111,"Poker Night at the Inventory",purchase,1.0,0 -86338111,"Poker Night at the Inventory",play,1.9,0 -86338111,"Arma 2 Operation Arrowhead",purchase,1.0,0 -86338111,"Arma 2 Operation Arrowhead",play,1.6,0 -86338111,"Half-Life 2",purchase,1.0,0 -86338111,"Half-Life 2",play,1.0,0 -86338111,"The Basement Collection",purchase,1.0,0 -86338111,"The Basement Collection",play,1.0,0 -86338111,"Arma 2",purchase,1.0,0 -86338111,"Arma 2",play,0.9,0 -86338111,"Only If",purchase,1.0,0 -86338111,"Only If",play,0.5,0 -86338111,"Haunted Memories",purchase,1.0,0 -86338111,"Haunted Memories",play,0.2,0 -86338111,"No More Room in Hell",purchase,1.0,0 -86338111,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -86338111,"Don't Starve Together Beta",purchase,1.0,0 -86338111,"Grand Theft Auto San Andreas",purchase,1.0,0 -86338111,"Half-Life 2 Lost Coast",purchase,1.0,0 -86338111,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -86338111,"Starbound - Unstable",purchase,1.0,0 -86338111,"War Thunder",purchase,1.0,0 -67923337,"Counter-Strike Source",purchase,1.0,0 -67923337,"Counter-Strike Source",play,62.0,0 -149501464,"Terraria",purchase,1.0,0 -149501464,"Terraria",play,48.0,0 -74232403,"Dota 2",purchase,1.0,0 -74232403,"Dota 2",play,62.0,0 -74232403,"Left 4 Dead 2",purchase,1.0,0 -74232403,"Left 4 Dead 2",play,4.2,0 -305808638,"Dota 2",purchase,1.0,0 -305808638,"Dota 2",play,81.0,0 -83978676,"Team Fortress 2",purchase,1.0,0 -83978676,"Team Fortress 2",play,2.4,0 -82235763,"Homefront",purchase,1.0,0 -82235763,"Homefront",play,12.8,0 -146682210,"Metro 2033",purchase,1.0,0 -146682210,"Metro 2033",play,0.3,0 -300645203,"Dota 2",purchase,1.0,0 -300645203,"Dota 2",play,2.9,0 -211925330,"Warframe",purchase,1.0,0 -211925330,"Warframe",play,425.0,0 -211925330,"Dota 2",purchase,1.0,0 -211925330,"Dota 2",play,290.0,0 -211925330,"Fallout 4",purchase,1.0,0 -211925330,"Fallout 4",play,133.0,0 -211925330,"Realm of the Mad God",purchase,1.0,0 -211925330,"RUSH",purchase,1.0,0 -178717672,"PAYDAY 2",purchase,1.0,0 -178717672,"PAYDAY 2",play,17.1,0 -178717672,"World of Guns Gun Disassembly",purchase,1.0,0 -178717672,"World of Guns Gun Disassembly",play,1.1,0 -178717672,"Loadout",purchase,1.0,0 -178717672,"Cry of Fear",purchase,1.0,0 -178717672,"Fallen Earth",purchase,1.0,0 -178717672,"HAWKEN",purchase,1.0,0 -178717672,"The Mighty Quest For Epic Loot",purchase,1.0,0 -218354629,"Counter-Strike Source",purchase,1.0,0 -218354629,"Counter-Strike Source",play,75.0,0 -218354629,"Counter-Strike Condition Zero",purchase,1.0,0 -218354629,"Counter-Strike Condition Zero",play,22.0,0 -218354629,"Counter-Strike Global Offensive",purchase,1.0,0 -218354629,"Counter-Strike Global Offensive",play,7.8,0 -218354629,"Total War ROME II - Emperor Edition",purchase,1.0,0 -218354629,"Total War ROME II - Emperor Edition",play,2.8,0 -218354629,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -218354629,"Counter-Strike Condition Zero Deleted Scenes",play,0.9,0 -218354629,"Counter-Strike",purchase,1.0,0 -218354629,"Counter-Strike",play,0.1,0 -218354629,"Ricochet",purchase,1.0,0 -218354629,"Anno 1404",purchase,1.0,0 -218354629,"Day of Defeat",purchase,1.0,0 -218354629,"Deathmatch Classic",purchase,1.0,0 -288854118,"Unturned",purchase,1.0,0 -288854118,"Unturned",play,0.7,0 -189822258,"Assassins Creed Unity",purchase,1.0,0 -189822258,"Assassins Creed Unity",play,4.0,0 -189822258,"Game Dev Tycoon",purchase,1.0,0 -189822258,"Game Dev Tycoon",play,1.3,0 -189822258,"One Finger Death Punch",purchase,1.0,0 -189822258,"FATE The Traitor Soul",purchase,1.0,0 -189822258,"FATE",purchase,1.0,0 -189822258,"Knights and Merchants",purchase,1.0,0 -189822258,"Assassins Creed Chronicles China",purchase,1.0,0 -194791978,"Dota 2",purchase,1.0,0 -194791978,"Dota 2",play,8.6,0 -34150817,"Half-Life 2 Deathmatch",purchase,1.0,0 -202949952,"Dota 2",purchase,1.0,0 -202949952,"Dota 2",play,16.2,0 -202949952,"Warframe",purchase,1.0,0 -202949952,"Altitude",purchase,1.0,0 -202949952,"Dead Island Epidemic",purchase,1.0,0 -202949952,"Quake Live",purchase,1.0,0 -130954987,"Ticket to Ride",purchase,1.0,0 -130954987,"Ticket to Ride",play,0.2,0 -108877388,"PAYDAY 2",purchase,1.0,0 -108877388,"PAYDAY 2",play,61.0,0 -108877388,"BioShock 2",purchase,1.0,0 -108877388,"BioShock 2",play,5.1,0 -108877388,"Hitman Absolution",purchase,1.0,0 -108877388,"Hitman Absolution",play,1.2,0 -108877388,"Sniper Elite V2",purchase,1.0,0 -108877388,"Sniper Elite V2",play,0.2,0 -108877388,"BioShock",purchase,1.0,0 -108877388,"BioShock Infinite",purchase,1.0,0 -214366018,"Sid Meier's Civilization V",purchase,1.0,0 -214366018,"Sid Meier's Civilization V",play,108.0,0 -72576293,"Dota 2",purchase,1.0,0 -72576293,"Dota 2",play,34.0,0 -179686274,"Dota 2",purchase,1.0,0 -179686274,"Dota 2",play,4.3,0 -227083521,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -227083521,"Star Wars Jedi Knight Jedi Academy",play,7.4,0 -227083521,"Serious Sam HD The First Encounter",purchase,1.0,0 -227083521,"Serious Sam HD The First Encounter",play,6.3,0 -227083521,"Team Fortress 2",purchase,1.0,0 -227083521,"Team Fortress 2",play,2.9,0 -227083521,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -227083521,"The Elder Scrolls IV Oblivion ",play,2.1,0 -227083521,"Serious Sam 2",purchase,1.0,0 -227083521,"Serious Sam 2",play,2.1,0 -227083521,"Portal 2",purchase,1.0,0 -227083521,"Portal 2",play,1.9,0 -227083521,"Counter-Strike Nexon Zombies",purchase,1.0,0 -227083521,"Counter-Strike Nexon Zombies",play,1.7,0 -227083521,"Serious Sam HD The Second Encounter",purchase,1.0,0 -227083521,"Serious Sam HD The Second Encounter",play,1.5,0 -227083521,"The Elder Scrolls V Skyrim",purchase,1.0,0 -227083521,"The Elder Scrolls V Skyrim",play,0.5,0 -227083521,"Unturned",purchase,1.0,0 -227083521,"Unturned",play,0.2,0 -227083521,"Gravilon",purchase,1.0,0 -227083521,"Gravilon",play,0.2,0 -227083521,"Spooky's House of Jump Scares",purchase,1.0,0 -227083521,"Spooky's House of Jump Scares",play,0.1,0 -227083521,"Cry of Fear",purchase,1.0,0 -227083521,"Cry of Fear",play,0.1,0 -227083521,"Mass Effect",purchase,1.0,0 -227083521,"Garry's Mod",purchase,1.0,0 -227083521,"I Have No Mouth, and I Must Scream",purchase,1.0,0 -227083521,"Mass Effect 2",purchase,1.0,0 -227083521,"Mirror's Edge",purchase,1.0,0 -227083521,"Morphopolis",purchase,1.0,0 -227083521,"Portal",purchase,1.0,0 -227083521,"Serious Sam 3 BFE",purchase,1.0,0 -227083521,"Serious Sam The Random Encounter",purchase,1.0,0 -227083521,"Serious Sam Classic The First Encounter",purchase,1.0,0 -227083521,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -227083521,"Serious Sam Classics Revolution",purchase,1.0,0 -227083521,"Serious Sam Double D XXL",purchase,1.0,0 -227083521,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -227083521,"System Shock 2",purchase,1.0,0 -227083521,"Terra Incognita ~ Chapter One The Descendant",purchase,1.0,0 -227083521,"The Elder Scrolls III Morrowind",purchase,1.0,0 -227083521,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -227083521,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -227083521,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -236775073,"Warframe",purchase,1.0,0 -236775073,"Warframe",play,0.8,0 -236775073,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -236775073,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.8,0 -286701848,"Counter-Strike Global Offensive",purchase,1.0,0 -286701848,"Counter-Strike Global Offensive",play,36.0,0 -286701848,"Team Fortress 2",purchase,1.0,0 -286701848,"Team Fortress 2",play,8.0,0 -286701848,"Marvel Heroes 2015",purchase,1.0,0 -286701848,"Marvel Heroes 2015",play,1.4,0 -286701848,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -286701848,"S.K.I.L.L. - Special Force 2",play,0.7,0 -286701848,"theHunter",purchase,1.0,0 -286701848,"theHunter",play,0.2,0 -253983004,"Dota 2",purchase,1.0,0 -253983004,"Dota 2",play,1.4,0 -162582760,"Serious Sam HD The Second Encounter",purchase,1.0,0 -162582760,"Serious Sam HD The Second Encounter",play,0.4,0 -112994491,"Half-Life 2",purchase,1.0,0 -112994491,"Half-Life 2",play,44.0,0 -112994491,"Team Fortress 2",purchase,1.0,0 -112994491,"Team Fortress 2",play,28.0,0 -112994491,"The Walking Dead",purchase,1.0,0 -112994491,"The Walking Dead",play,15.9,0 -112994491,"Half-Life 2 Episode Two",purchase,1.0,0 -112994491,"Half-Life 2 Episode Two",play,14.9,0 -112994491,"Half-Life 2 Episode One",purchase,1.0,0 -112994491,"Half-Life 2 Episode One",play,12.0,0 -112994491,"Left 4 Dead 2",purchase,1.0,0 -112994491,"Left 4 Dead 2",play,2.0,0 -112994491,"Counter-Strike Condition Zero",purchase,1.0,0 -112994491,"Counter-Strike Condition Zero",play,0.3,0 -112994491,"Left 4 Dead",purchase,1.0,0 -112994491,"Left 4 Dead",play,0.2,0 -112994491,"Counter-Strike",purchase,1.0,0 -112994491,"Counter-Strike",play,0.1,0 -112994491,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -112994491,"Half-Life 2 Deathmatch",purchase,1.0,0 -112994491,"Half-Life 2 Lost Coast",purchase,1.0,0 -112994491,"Half-Life Deathmatch Source",purchase,1.0,0 -85614332,"Team Fortress 2",purchase,1.0,0 -85614332,"Team Fortress 2",play,52.0,0 -211760999,"Football Manager 2015",purchase,1.0,0 -211760999,"Football Manager 2015",play,6.9,0 -216653925,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -216653925,"Microsoft Flight Simulator X Steam Edition",play,6.1,0 -216653925,"Marvel Heroes 2015",purchase,1.0,0 -124451578,"Dota 2",purchase,1.0,0 -124451578,"Dota 2",play,10.5,0 -58152057,"Saints Row 2",purchase,1.0,0 -58152057,"Saints Row 2",play,0.6,0 -111316830,"Dota 2",purchase,1.0,0 -111316830,"Dota 2",play,1395.0,0 -111316830,"Royal Quest",purchase,1.0,0 -111316830,"Royal Quest",play,25.0,0 -111316830,"Nancy Drew Shadow at the Water's Edge",purchase,1.0,0 -111316830,"Nancy Drew Shadow at the Water's Edge",play,12.3,0 -111316830,"Villagers and Heroes",purchase,1.0,0 -111316830,"Villagers and Heroes",play,10.6,0 -111316830,"Terraria",purchase,1.0,0 -111316830,"Terraria",play,8.2,0 -111316830,"Nancy Drew Ransom of the Seven Ships ",purchase,1.0,0 -111316830,"Nancy Drew Ransom of the Seven Ships ",play,6.3,0 -111316830,"Nancy Drew Tomb of the Lost Queen",purchase,1.0,0 -111316830,"Nancy Drew Tomb of the Lost Queen",play,6.0,0 -111316830,"Nancy Drew Warnings at Waverly Academy",purchase,1.0,0 -111316830,"Nancy Drew Warnings at Waverly Academy",play,5.8,0 -111316830,"Nancy Drew Danger on Deception Island ",purchase,1.0,0 -111316830,"Nancy Drew Danger on Deception Island ",play,5.4,0 -111316830,"Torchlight II",purchase,1.0,0 -111316830,"Torchlight II",play,5.4,0 -111316830,"Nancy Drew Last Train to Blue Moon Canyon",purchase,1.0,0 -111316830,"Nancy Drew Last Train to Blue Moon Canyon",play,4.0,0 -111316830,"How to Survive",purchase,1.0,0 -111316830,"How to Survive",play,2.2,0 -111316830,"Unturned",purchase,1.0,0 -111316830,"Unturned",play,1.8,0 -111316830,"Garry's Mod",purchase,1.0,0 -111316830,"Garry's Mod",play,1.8,0 -111316830,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -111316830,"Duke Nukem 3D Megaton Edition",play,1.5,0 -111316830,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -111316830,"Call of Duty Black Ops II - Multiplayer",play,0.6,0 -111316830,"Call of Duty Black Ops II",purchase,1.0,0 -111316830,"Call of Duty Black Ops II",play,0.1,0 -111316830,"7 Days to Die",purchase,1.0,0 -111316830,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -185283602,"Dota 2",purchase,1.0,0 -185283602,"Dota 2",play,0.8,0 -92914917,"Dota 2",purchase,1.0,0 -92914917,"Dota 2",play,3738.0,0 -92914917,"Counter-Strike Global Offensive",purchase,1.0,0 -92914917,"Counter-Strike Global Offensive",play,303.0,0 -92914917,"Rust",purchase,1.0,0 -92914917,"Rust",play,96.0,0 -92914917,"Dead Island",purchase,1.0,0 -92914917,"Dead Island",play,32.0,0 -92914917,"Counter-Strike Source",purchase,1.0,0 -92914917,"Counter-Strike Source",play,16.3,0 -92914917,"Left 4 Dead 2",purchase,1.0,0 -92914917,"Left 4 Dead 2",play,15.3,0 -92914917,"Risen",purchase,1.0,0 -92914917,"Risen",play,14.5,0 -92914917,"BioShock Infinite",purchase,1.0,0 -92914917,"BioShock Infinite",play,11.9,0 -92914917,"Orcs Must Die! 2",purchase,1.0,0 -92914917,"Orcs Must Die! 2",play,11.7,0 -92914917,"Saints Row The Third",purchase,1.0,0 -92914917,"Saints Row The Third",play,10.9,0 -92914917,"Dungeons of Dredmor",purchase,1.0,0 -92914917,"Dungeons of Dredmor",play,9.4,0 -92914917,"Awesomenauts",purchase,1.0,0 -92914917,"Awesomenauts",play,9.2,0 -92914917,"Orcs Must Die!",purchase,1.0,0 -92914917,"Orcs Must Die!",play,8.7,0 -92914917,"Fable - The Lost Chapters",purchase,1.0,0 -92914917,"Fable - The Lost Chapters",play,7.7,0 -92914917,"Fight The Dragon",purchase,1.0,0 -92914917,"Fight The Dragon",play,6.9,0 -92914917,"Super Meat Boy",purchase,1.0,0 -92914917,"Super Meat Boy",play,5.9,0 -92914917,"BIT.TRIP RUNNER",purchase,1.0,0 -92914917,"BIT.TRIP RUNNER",play,5.9,0 -92914917,"The Tiny Bang Story",purchase,1.0,0 -92914917,"The Tiny Bang Story",play,5.7,0 -92914917,"Skullgirls",purchase,1.0,0 -92914917,"Skullgirls",play,5.3,0 -92914917,"Temper Tantrum",purchase,1.0,0 -92914917,"Temper Tantrum",play,5.3,0 -92914917,"Insurgency",purchase,1.0,0 -92914917,"Insurgency",play,5.3,0 -92914917,"Painkiller Hell & Damnation",purchase,1.0,0 -92914917,"Painkiller Hell & Damnation",play,5.0,0 -92914917,"Natural Selection 2",purchase,1.0,0 -92914917,"Natural Selection 2",play,4.9,0 -92914917,"DiRT 3 Complete Edition",purchase,1.0,0 -92914917,"DiRT 3 Complete Edition",play,4.7,0 -92914917,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -92914917,"Sins of a Solar Empire Rebellion",play,4.6,0 -92914917,"FORCED",purchase,1.0,0 -92914917,"FORCED",play,4.6,0 -92914917,"Contagion",purchase,1.0,0 -92914917,"Contagion",play,4.3,0 -92914917,"16bit Trader",purchase,1.0,0 -92914917,"16bit Trader",play,4.2,0 -92914917,"Team Fortress 2",purchase,1.0,0 -92914917,"Team Fortress 2",play,4.1,0 -92914917,"Counter-Strike",purchase,1.0,0 -92914917,"Counter-Strike",play,3.8,0 -92914917,"Dead Bits",purchase,1.0,0 -92914917,"Dead Bits",play,3.7,0 -92914917,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -92914917,"Rising Storm/Red Orchestra 2 Multiplayer",play,3.6,0 -92914917,"Space Rangers HD A War Apart",purchase,1.0,0 -92914917,"Space Rangers HD A War Apart",play,3.5,0 -92914917,"Free to Play",purchase,1.0,0 -92914917,"Free to Play",play,3.4,0 -92914917,"Nuclear Dawn",purchase,1.0,0 -92914917,"Nuclear Dawn",play,2.8,0 -92914917,"POSTAL 2",purchase,1.0,0 -92914917,"POSTAL 2",play,2.7,0 -92914917,"The Bridge",purchase,1.0,0 -92914917,"The Bridge",play,2.7,0 -92914917,"Guns of Icarus Online",purchase,1.0,0 -92914917,"Guns of Icarus Online",play,2.6,0 -92914917,"Strike Vector",purchase,1.0,0 -92914917,"Strike Vector",play,2.5,0 -92914917,"Sniper Elite Nazi Zombie Army 2",purchase,1.0,0 -92914917,"Sniper Elite Nazi Zombie Army 2",play,2.5,0 -92914917,"New kind of adventure",purchase,1.0,0 -92914917,"New kind of adventure",play,2.5,0 -92914917,"Just Cause 2",purchase,1.0,0 -92914917,"Just Cause 2",play,2.5,0 -92914917,"Gratuitous Space Battles",purchase,1.0,0 -92914917,"Gratuitous Space Battles",play,2.4,0 -92914917,"PAYDAY The Heist",purchase,1.0,0 -92914917,"PAYDAY The Heist",play,2.4,0 -92914917,"DETOUR",purchase,1.0,0 -92914917,"DETOUR",play,2.4,0 -92914917,"Stellar 2D",purchase,1.0,0 -92914917,"Stellar 2D",play,2.4,0 -92914917,"Garry's Mod",purchase,1.0,0 -92914917,"Garry's Mod",play,2.4,0 -92914917,"Minimum",purchase,1.0,0 -92914917,"Minimum",play,2.2,0 -92914917,"Bad Rats",purchase,1.0,0 -92914917,"Bad Rats",play,2.2,0 -92914917,"Hacker Evolution - Untold",purchase,1.0,0 -92914917,"Hacker Evolution - Untold",play,2.1,0 -92914917,"The Walking Dead",purchase,1.0,0 -92914917,"The Walking Dead",play,2.0,0 -92914917,"Trine 2",purchase,1.0,0 -92914917,"Trine 2",play,1.9,0 -92914917,"Costume Quest",purchase,1.0,0 -92914917,"Costume Quest",play,1.9,0 -92914917,"Talisman Digital Edition",purchase,1.0,0 -92914917,"Talisman Digital Edition",play,1.9,0 -92914917,"Defy Gravity",purchase,1.0,0 -92914917,"Defy Gravity",play,1.8,0 -92914917,"Warlock - Master of the Arcane",purchase,1.0,0 -92914917,"Warlock - Master of the Arcane",play,1.8,0 -92914917,"Sniper Elite V2",purchase,1.0,0 -92914917,"Sniper Elite V2",play,1.8,0 -92914917,"Serious Sam 3 BFE",purchase,1.0,0 -92914917,"Serious Sam 3 BFE",play,1.8,0 -92914917,"The Showdown Effect",purchase,1.0,0 -92914917,"The Showdown Effect",play,1.8,0 -92914917,"Terraria",purchase,1.0,0 -92914917,"Terraria",play,1.7,0 -92914917,"Chivalry Medieval Warfare",purchase,1.0,0 -92914917,"Chivalry Medieval Warfare",play,1.7,0 -92914917,"Dino D-Day",purchase,1.0,0 -92914917,"Dino D-Day",play,1.7,0 -92914917,"Monaco",purchase,1.0,0 -92914917,"Monaco",play,1.7,0 -92914917,"Age of Empires II HD Edition",purchase,1.0,0 -92914917,"Age of Empires II HD Edition",play,1.7,0 -92914917,"Portal 2",purchase,1.0,0 -92914917,"Portal 2",play,1.6,0 -92914917,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -92914917,"Duke Nukem 3D Megaton Edition",play,1.6,0 -92914917,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -92914917,"Sonic & All-Stars Racing Transformed",play,1.5,0 -92914917,"The Binding of Isaac",purchase,1.0,0 -92914917,"The Binding of Isaac",play,1.5,0 -92914917,"Project Zomboid",purchase,1.0,0 -92914917,"Project Zomboid",play,1.5,0 -92914917,"Sanctum 2",purchase,1.0,0 -92914917,"Sanctum 2",play,1.5,0 -92914917,"Day of Defeat Source",purchase,1.0,0 -92914917,"Day of Defeat Source",play,1.5,0 -92914917,"Batman Arkham City GOTY",purchase,1.0,0 -92914917,"Batman Arkham City GOTY",play,1.5,0 -92914917,"Sniper Elite Nazi Zombie Army",purchase,1.0,0 -92914917,"Sniper Elite Nazi Zombie Army",play,1.4,0 -92914917,"SpeedRunners",purchase,1.0,0 -92914917,"SpeedRunners",play,1.4,0 -92914917,"Deponia The Complete Journey",purchase,1.0,0 -92914917,"Deponia The Complete Journey",play,1.4,0 -92914917,"Guncraft",purchase,1.0,0 -92914917,"Guncraft",play,1.4,0 -92914917,"Sid Meier's Civilization V",purchase,1.0,0 -92914917,"Sid Meier's Civilization V",play,1.4,0 -92914917,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -92914917,"Batman Arkham Asylum GOTY Edition",play,1.3,0 -92914917,"DLC Quest",purchase,1.0,0 -92914917,"DLC Quest",play,1.3,0 -92914917,"Magicka",purchase,1.0,0 -92914917,"Magicka",play,1.2,0 -92914917,"POSTAL",purchase,1.0,0 -92914917,"POSTAL",play,1.2,0 -92914917,"Stronghold Crusader HD",purchase,1.0,0 -92914917,"Stronghold Crusader HD",play,1.2,0 -92914917,"Ace of Spades",purchase,1.0,0 -92914917,"Ace of Spades",play,1.2,0 -92914917,"Torchlight II",purchase,1.0,0 -92914917,"Torchlight II",play,1.2,0 -92914917,"Castle Crashers",purchase,1.0,0 -92914917,"Castle Crashers",play,1.1,0 -92914917,"LIMBO",purchase,1.0,0 -92914917,"LIMBO",play,1.1,0 -92914917,"Strike Suit Zero",purchase,1.0,0 -92914917,"Strike Suit Zero",play,1.0,0 -92914917,"Left 4 Dead",purchase,1.0,0 -92914917,"Left 4 Dead",play,0.9,0 -92914917,"Cogs",purchase,1.0,0 -92914917,"Cogs",play,0.7,0 -92914917,"Amnesia The Dark Descent",purchase,1.0,0 -92914917,"Amnesia The Dark Descent",play,0.7,0 -92914917,"The Witcher Enhanced Edition",purchase,1.0,0 -92914917,"The Witcher Enhanced Edition",play,0.6,0 -92914917,"Crayon Physics Deluxe",purchase,1.0,0 -92914917,"Crayon Physics Deluxe",play,0.6,0 -92914917,"Alice Madness Returns",purchase,1.0,0 -92914917,"Alice Madness Returns",play,0.6,0 -92914917,"FlatOut 2",purchase,1.0,0 -92914917,"FlatOut 2",play,0.6,0 -92914917,"Disciples III Resurrection",purchase,1.0,0 -92914917,"Disciples III Resurrection",play,0.6,0 -92914917,"Polarity",purchase,1.0,0 -92914917,"Polarity",play,0.5,0 -92914917,"Woodle Tree Adventures",purchase,1.0,0 -92914917,"Woodle Tree Adventures",play,0.5,0 -92914917,"The Howler",purchase,1.0,0 -92914917,"The Howler",play,0.4,0 -92914917,"Rig 'n' Roll",purchase,1.0,0 -92914917,"Rig 'n' Roll",play,0.4,0 -92914917,"Deus Ex Human Revolution",purchase,1.0,0 -92914917,"Deus Ex Human Revolution",play,0.3,0 -92914917,"RoboBlitz",purchase,1.0,0 -92914917,"RoboBlitz",play,0.3,0 -92914917,"Farming Simulator 2011",purchase,1.0,0 -92914917,"Farming Simulator 2011",play,0.3,0 -92914917,"Asteroids Outpost",purchase,1.0,0 -92914917,"Asteroids Outpost",play,0.3,0 -92914917,"Deus Ex Game of the Year Edition",purchase,1.0,0 -92914917,"Deus Ex Game of the Year Edition",play,0.2,0 -92914917,"Trainz Simulator 12",purchase,1.0,0 -92914917,"Trainz Simulator 12",play,0.2,0 -92914917,"Half-Life",purchase,1.0,0 -92914917,"Half-Life",play,0.2,0 -92914917,"Disciples II Rise of the Elves",purchase,1.0,0 -92914917,"Disciples II Rise of the Elves",play,0.1,0 -92914917,"Eufloria",purchase,1.0,0 -92914917,"Eufloria",play,0.1,0 -92914917,"Arma Cold War Assault",purchase,1.0,0 -92914917,"Ultra Street Fighter IV",purchase,1.0,0 -92914917,"7 Days to Die",purchase,1.0,0 -92914917,"12 Labours of Hercules II The Cretan Bull",purchase,1.0,0 -92914917,"Absconding Zatwor",purchase,1.0,0 -92914917,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",purchase,1.0,0 -92914917,"Alchemy Mysteries Prague Legends",purchase,1.0,0 -92914917,"Alien Breed Impact",purchase,1.0,0 -92914917,"Alpha Prime",purchase,1.0,0 -92914917,"And Yet It Moves",purchase,1.0,0 -92914917,"ArcaniA",purchase,1.0,0 -92914917,"Battlefield Bad Company 2",purchase,1.0,0 -92914917,"BEEP",purchase,1.0,0 -92914917,"BioShock 2",purchase,1.0,0 -92914917,"BioShock Infinite - Season Pass",purchase,1.0,0 -92914917,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -92914917,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -92914917,"Borderlands",purchase,1.0,0 -92914917,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -92914917,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -92914917,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -92914917,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -92914917,"Break Into Zatwor",purchase,1.0,0 -92914917,"Call of Cthulhu Dark Corners of the Earth",purchase,1.0,0 -92914917,"Caster",purchase,1.0,0 -92914917,"Combat Wings Battle of Britain",purchase,1.0,0 -92914917,"Counter-Strike Condition Zero",purchase,1.0,0 -92914917,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -92914917,"Crysis 2 Maximum Edition",purchase,1.0,0 -92914917,"DCS World",purchase,1.0,0 -92914917,"Deadly Profits",purchase,1.0,0 -92914917,"Defiance",purchase,1.0,0 -92914917,"Demigod",purchase,1.0,0 -92914917,"Demolition, Inc.",purchase,1.0,0 -92914917,"DiRT",purchase,1.0,0 -92914917,"DiRT 2",purchase,1.0,0 -92914917,"DiRT 3",purchase,1.0,0 -92914917,"Disciples II Gallean's Return",purchase,1.0,0 -92914917,"Dracula's Legacy",purchase,1.0,0 -92914917,"Dungeon Defenders",purchase,1.0,0 -92914917,"Dungeon Defenders II",purchase,1.0,0 -92914917,"Eufloria HD",purchase,1.0,0 -92914917,"Eufloria HD Original Soundtrack",purchase,1.0,0 -92914917,"F.E.A.R.",purchase,1.0,0 -92914917,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -92914917,"F.E.A.R. 3",purchase,1.0,0 -92914917,"F.E.A.R. Extraction Point",purchase,1.0,0 -92914917,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -92914917,"Fable III",purchase,1.0,0 -92914917,"Fallout 3",purchase,1.0,0 -92914917,"FlatOut",purchase,1.0,0 -92914917,"Flesh Eaters",purchase,1.0,0 -92914917,"Floating Point",purchase,1.0,0 -92914917,"Frankenstein Master of Death",purchase,1.0,0 -92914917,"FUEL",purchase,1.0,0 -92914917,"Gear Up",purchase,1.0,0 -92914917,"Ghostbusters The Video Game",purchase,1.0,0 -92914917,"Gravilon",purchase,1.0,0 -92914917,"Greyfox",purchase,1.0,0 -92914917,"GRID",purchase,1.0,0 -92914917,"Half-Life 2 Deathmatch",purchase,1.0,0 -92914917,"Half-Life 2 Episode One",purchase,1.0,0 -92914917,"Half-Life 2 Episode Two",purchase,1.0,0 -92914917,"Half-Life 2 Lost Coast",purchase,1.0,0 -92914917,"Half-Life Deathmatch Source",purchase,1.0,0 -92914917,"Hammerfight",purchase,1.0,0 -92914917,"Hydrophobia Prophecy",purchase,1.0,0 -92914917,"Jamestown",purchase,1.0,0 -92914917,"Lilly and Sasha Curse of the Immortals",purchase,1.0,0 -92914917,"Mafia",purchase,1.0,0 -92914917,"Marble Mayhem Fragile Ball",purchase,1.0,0 -92914917,"Max Payne 3",purchase,1.0,0 -92914917,"Mirror's Edge",purchase,1.0,0 -92914917,"Morphopolis",purchase,1.0,0 -92914917,"NightSky",purchase,1.0,0 -92914917,"No More Room in Hell",purchase,1.0,0 -92914917,"Oddworld Abe's Oddysee",purchase,1.0,0 -92914917,"Osmos",purchase,1.0,0 -92914917,"Out There Somewhere",purchase,1.0,0 -92914917,"Painkiller Hell & Damnation Beta",purchase,1.0,0 -92914917,"PARTICLE MACE",purchase,1.0,0 -92914917,"Patch testing for Chivalry",purchase,1.0,0 -92914917,"Pongo",purchase,1.0,0 -92914917,"Portal",purchase,1.0,0 -92914917,"Quake 4",purchase,1.0,0 -92914917,"R.U.S.E",purchase,1.0,0 -92914917,"R.U.S.E.",purchase,1.0,0 -92914917,"RAGE",purchase,1.0,0 -92914917,"Revolution Ace",purchase,1.0,0 -92914917,"Robotex",purchase,1.0,0 -92914917,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -92914917,"Saviors",purchase,1.0,0 -92914917,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -92914917,"Serious Sam HD The First Encounter",purchase,1.0,0 -92914917,"Shank",purchase,1.0,0 -92914917,"Sinister City",purchase,1.0,0 -92914917,"Skullgirls Endless Beta",purchase,1.0,0 -92914917,"Solar 2",purchase,1.0,0 -92914917,"Sometimes Success Requires Sacrifice",purchase,1.0,0 -92914917,"Squishy the Suicidal Pig",purchase,1.0,0 -92914917,"Star Chronicles Delta Quadrant",purchase,1.0,0 -92914917,"STORM Frontline Nation",purchase,1.0,0 -92914917,"Strong Bad Episode 1 Homestar Ruiner",purchase,1.0,0 -92914917,"Strong Bad Episode 2 Strong Badia the Free",purchase,1.0,0 -92914917,"Strong Bad Episode 3 Baddest of the Bands",purchase,1.0,0 -92914917,"Strong Bad Episode 4 Dangeresque 3",purchase,1.0,0 -92914917,"Strong Bad Episode 5 8-Bit Is Enough",purchase,1.0,0 -92914917,"Stronghold Crusader Extreme HD",purchase,1.0,0 -92914917,"Sun Blast",purchase,1.0,0 -92914917,"SUPER DISTRO",purchase,1.0,0 -92914917,"TeraBlaster",purchase,1.0,0 -92914917,"Terra Incognita ~ Chapter One The Descendant",purchase,1.0,0 -92914917,"The Ball",purchase,1.0,0 -92914917,"The Darkness II",purchase,1.0,0 -92914917,"The First Templar",purchase,1.0,0 -92914917,"The Fish Fillets 2",purchase,1.0,0 -92914917,"The Hat Man Shadow Ward",purchase,1.0,0 -92914917,"The Political Machine",purchase,1.0,0 -92914917,"The Slaughtering Grounds",purchase,1.0,0 -92914917,"Thief Deadly Shadows",purchase,1.0,0 -92914917,"ToCA Race Driver 3",purchase,1.0,0 -92914917,"Uncrowded",purchase,1.0,0 -92914917,"Vegas Make It Big",purchase,1.0,0 -92914917,"VVVVVV",purchase,1.0,0 -92914917,"Warframe",purchase,1.0,0 -92914917,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -92914917,"World Basketball Manager 2010",purchase,1.0,0 -92914917,"Worms Ultimate Mayhem",purchase,1.0,0 -92914917,"Zombie Driver",purchase,1.0,0 -92914917,"Zombie Zoeds",purchase,1.0,0 -135599605,"Dota 2",purchase,1.0,0 -135599605,"Dota 2",play,0.5,0 -158173228,"Arma 3",purchase,1.0,0 -158173228,"Arma 3",play,616.0,0 -158173228,"Insurgency",purchase,1.0,0 -158173228,"Insurgency",play,29.0,0 -158173228,"Spintires",purchase,1.0,0 -158173228,"Spintires",play,28.0,0 -158173228,"NBA 2K15",purchase,1.0,0 -158173228,"NBA 2K15",play,20.0,0 -158173228,"Arma 2",purchase,1.0,0 -158173228,"Arma 2",play,13.6,0 -158173228,"NASCAR '14",purchase,1.0,0 -158173228,"NASCAR '14",play,9.6,0 -158173228,"Euro Truck Simulator 2",purchase,1.0,0 -158173228,"Euro Truck Simulator 2",play,6.2,0 -158173228,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -158173228,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,2.2,0 -158173228,"Arma 2 Operation Arrowhead",purchase,1.0,0 -158173228,"Arma 2 Operation Arrowhead",play,1.4,0 -158173228,"Arma 2 DayZ Mod",purchase,1.0,0 -158173228,"Arma 2 DayZ Mod",play,0.9,0 -158173228,"Arma 2 Private Military Company",purchase,1.0,0 -158173228,"Arma 2 British Armed Forces",purchase,1.0,0 -158173228,"Arma 3 Helicopters",purchase,1.0,0 -158173228,"Arma 3 Karts",purchase,1.0,0 -158173228,"Arma 3 Marksmen",purchase,1.0,0 -158173228,"Arma 3 Zeus",purchase,1.0,0 -147563118,"Dota 2",purchase,1.0,0 -147563118,"Dota 2",play,879.0,0 -147563118,"8BitMMO",purchase,1.0,0 -147563118,"Archeblade",purchase,1.0,0 -147563118,"Blacklight Retribution",purchase,1.0,0 -147563118,"FreeStyle2 Street Basketball",purchase,1.0,0 -147563118,"GunZ 2 The Second Duel",purchase,1.0,0 -147563118,"HAWKEN",purchase,1.0,0 -147563118,"Loadout",purchase,1.0,0 -147563118,"Marvel Heroes 2015",purchase,1.0,0 -147563118,"PlanetSide 2",purchase,1.0,0 -147563118,"Prime World",purchase,1.0,0 -147563118,"Ragnarok Online 2",purchase,1.0,0 -147563118,"RIFT",purchase,1.0,0 -147563118,"Robocraft",purchase,1.0,0 -147563118,"Stronghold Kingdoms",purchase,1.0,0 -147563118,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -147563118,"Uncharted Waters Online Gran Atlas",purchase,1.0,0 -147563118,"Unturned",purchase,1.0,0 -147563118,"Warframe",purchase,1.0,0 -147563118,"War Thunder",purchase,1.0,0 -138847348,"Dota 2",purchase,1.0,0 -138847348,"Dota 2",play,1.5,0 -77870593,"Sid Meier's Civilization V",purchase,1.0,0 -77870593,"Sid Meier's Civilization V",play,446.0,0 -77870593,"Napoleon Total War",purchase,1.0,0 -77870593,"Napoleon Total War",play,128.0,0 -77870593,"Rome Total War",purchase,1.0,0 -77870593,"Rome Total War",play,125.0,0 -77870593,"Medieval II Total War",purchase,1.0,0 -77870593,"Medieval II Total War",play,63.0,0 -77870593,"Men of War",purchase,1.0,0 -77870593,"Men of War",play,57.0,0 -77870593,"Rome Total War - Alexander",purchase,1.0,0 -77870593,"Rome Total War - Alexander",play,53.0,0 -77870593,"Medieval II Total War Kingdoms",purchase,1.0,0 -77870593,"Medieval II Total War Kingdoms",play,42.0,0 -77870593,"Empire Total War",purchase,1.0,0 -77870593,"Empire Total War",play,37.0,0 -77870593,"Sniper Elite V2",purchase,1.0,0 -77870593,"Sniper Elite V2",play,17.1,0 -77870593,"Men of War Vietnam",purchase,1.0,0 -77870593,"Men of War Vietnam",play,16.8,0 -77870593,"Wargame European Escalation",purchase,1.0,0 -77870593,"Wargame European Escalation",play,14.7,0 -77870593,"Men of War Condemned Heroes",purchase,1.0,0 -77870593,"Men of War Condemned Heroes",play,7.2,0 -77870593,"Toy Soldiers",purchase,1.0,0 -77870593,"Toy Soldiers",play,4.3,0 -77870593,"Men of War Assault Squad",purchase,1.0,0 -77870593,"Men of War Assault Squad",play,0.3,0 -77870593,"Men of War Red Tide",purchase,1.0,0 -161383225,"Gotham City Impostors Free To Play",purchase,1.0,0 -161383225,"Gotham City Impostors Free To Play",play,24.0,0 -161383225,"Team Fortress 2",purchase,1.0,0 -161383225,"Team Fortress 2",play,7.5,0 -161383225,"Brick-Force",purchase,1.0,0 -161383225,"Brick-Force",play,0.9,0 -161383225,"BLOCKADE 3D",purchase,1.0,0 -161383225,"BLOCKADE 3D",play,0.8,0 -161383225,"Trove",purchase,1.0,0 -60760816,"The Elder Scrolls V Skyrim",purchase,1.0,0 -60760816,"The Elder Scrolls V Skyrim",play,110.0,0 -253006481,"Team Fortress 2",purchase,1.0,0 -253006481,"Team Fortress 2",play,79.0,0 -72842694,"The Elder Scrolls V Skyrim",purchase,1.0,0 -72842694,"The Elder Scrolls V Skyrim",play,142.0,0 -72842694,"Borderlands 2",purchase,1.0,0 -72842694,"Borderlands 2",play,99.0,0 -72842694,"Far Cry 3",purchase,1.0,0 -72842694,"Far Cry 3",play,30.0,0 -72842694,"FINAL FANTASY VII",purchase,1.0,0 -72842694,"FINAL FANTASY VII",play,28.0,0 -72842694,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -72842694,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,22.0,0 -72842694,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -72842694,"Resident Evil 6 / Biohazard 6",play,15.5,0 -72842694,"Magic The Gathering - Duels of the Planeswalkers 2013",purchase,1.0,0 -72842694,"Magic The Gathering - Duels of the Planeswalkers 2013",play,14.8,0 -72842694,"Terraria",purchase,1.0,0 -72842694,"Terraria",play,13.9,0 -72842694,"Mortal Kombat X",purchase,1.0,0 -72842694,"Mortal Kombat X",play,13.3,0 -72842694,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -72842694,"Sonic & All-Stars Racing Transformed",play,11.2,0 -72842694,"Might & Magic Heroes VI",purchase,1.0,0 -72842694,"Might & Magic Heroes VI",play,10.6,0 -72842694,"DYNASTY WARRIORS 8 Xtreme Legends Complete Edition",purchase,1.0,0 -72842694,"DYNASTY WARRIORS 8 Xtreme Legends Complete Edition",play,10.1,0 -72842694,"Tomb Raider",purchase,1.0,0 -72842694,"Tomb Raider",play,9.9,0 -72842694,"Castle Crashers",purchase,1.0,0 -72842694,"Castle Crashers",play,9.7,0 -72842694,"Teenage Mutant Ninja Turtles Out of the Shadows",purchase,1.0,0 -72842694,"Teenage Mutant Ninja Turtles Out of the Shadows",play,8.4,0 -72842694,"DRAGON BALL XENOVERSE",purchase,1.0,0 -72842694,"DRAGON BALL XENOVERSE",play,7.7,0 -72842694,"Awesomenauts",purchase,1.0,0 -72842694,"Awesomenauts",play,7.5,0 -72842694,"The Legend of Heroes Trails in the Sky",purchase,1.0,0 -72842694,"The Legend of Heroes Trails in the Sky",play,6.9,0 -72842694,"Counter-Strike Condition Zero",purchase,1.0,0 -72842694,"Counter-Strike Condition Zero",play,6.3,0 -72842694,"Broforce",purchase,1.0,0 -72842694,"Broforce",play,6.0,0 -72842694,"The Wolf Among Us",purchase,1.0,0 -72842694,"The Wolf Among Us",play,5.9,0 -72842694,"Rocket League",purchase,1.0,0 -72842694,"Rocket League",play,5.8,0 -72842694,"Counter-Strike Global Offensive",purchase,1.0,0 -72842694,"Counter-Strike Global Offensive",play,5.5,0 -72842694,"LEGO The Lord of the Rings",purchase,1.0,0 -72842694,"LEGO The Lord of the Rings",play,5.0,0 -72842694,"South Park The Stick of Truth",purchase,1.0,0 -72842694,"South Park The Stick of Truth",play,4.9,0 -72842694,"Sleeping Dogs",purchase,1.0,0 -72842694,"Sleeping Dogs",play,4.8,0 -72842694,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -72842694,"Injustice Gods Among Us Ultimate Edition",play,4.2,0 -72842694,"Agarest Generations of War",purchase,1.0,0 -72842694,"Agarest Generations of War",play,4.0,0 -72842694,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",purchase,1.0,0 -72842694,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",play,3.8,0 -72842694,"Dust An Elysian Tail",purchase,1.0,0 -72842694,"Dust An Elysian Tail",play,3.5,0 -72842694,"Team Fortress 2",purchase,1.0,0 -72842694,"Team Fortress 2",play,3.3,0 -72842694,"Left 4 Dead 2",purchase,1.0,0 -72842694,"Left 4 Dead 2",play,3.3,0 -72842694,"Fallout New Vegas",purchase,1.0,0 -72842694,"Fallout New Vegas",play,3.1,0 -72842694,"Hyperdimension Neptunia Re;Birth1",purchase,1.0,0 -72842694,"Hyperdimension Neptunia Re;Birth1",play,3.0,0 -72842694,"Trials Evolution Gold Edition",purchase,1.0,0 -72842694,"Trials Evolution Gold Edition",play,2.9,0 -72842694,"L.A. Noire",purchase,1.0,0 -72842694,"L.A. Noire",play,2.9,0 -72842694,"Alice Madness Returns",purchase,1.0,0 -72842694,"Alice Madness Returns",play,2.8,0 -72842694,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -72842694,"Warhammer 40,000 Dawn of War II",play,2.8,0 -72842694,"Torchlight II",purchase,1.0,0 -72842694,"Torchlight II",play,2.8,0 -72842694,"XCOM Enemy Unknown",purchase,1.0,0 -72842694,"XCOM Enemy Unknown",play,2.7,0 -72842694,"Vindictus",purchase,1.0,0 -72842694,"Vindictus",play,2.5,0 -72842694,"Dungeon Defenders",purchase,1.0,0 -72842694,"Dungeon Defenders",play,2.3,0 -72842694,"Total War SHOGUN 2",purchase,1.0,0 -72842694,"Total War SHOGUN 2",play,2.2,0 -72842694,"Brtal Legend",purchase,1.0,0 -72842694,"Brtal Legend",play,2.0,0 -72842694,"Resident Evil Operation Raccoon City",purchase,1.0,0 -72842694,"Resident Evil Operation Raccoon City",play,1.9,0 -72842694,"Aliens vs. Predator",purchase,1.0,0 -72842694,"Aliens vs. Predator",play,1.9,0 -72842694,"Ys Origin",purchase,1.0,0 -72842694,"Ys Origin",play,1.9,0 -72842694,"Shadow Warrior",purchase,1.0,0 -72842694,"Shadow Warrior",play,1.8,0 -72842694,"Tomb Raider Anniversary",purchase,1.0,0 -72842694,"Tomb Raider Anniversary",play,1.8,0 -72842694,"Sonic Generations",purchase,1.0,0 -72842694,"Sonic Generations",play,1.7,0 -72842694,"Ticket to Ride",purchase,1.0,0 -72842694,"Ticket to Ride",play,1.7,0 -72842694,"Shufflepuck Cantina Deluxe VR",purchase,1.0,0 -72842694,"Shufflepuck Cantina Deluxe VR",play,1.6,0 -72842694,"Super House of Dead Ninjas",purchase,1.0,0 -72842694,"Super House of Dead Ninjas",play,1.5,0 -72842694,"Worms Revolution",purchase,1.0,0 -72842694,"Worms Revolution",play,1.5,0 -72842694,"Talisman Prologue",purchase,1.0,0 -72842694,"Talisman Prologue",play,1.4,0 -72842694,"Sniper Elite Nazi Zombie Army",purchase,1.0,0 -72842694,"Sniper Elite Nazi Zombie Army",play,1.4,0 -72842694,"Mark of the Ninja",purchase,1.0,0 -72842694,"Mark of the Ninja",play,1.4,0 -72842694,"Crysis 2 Maximum Edition",purchase,1.0,0 -72842694,"Crysis 2 Maximum Edition",play,1.3,0 -72842694,"Angry Video Game Nerd Adventures",purchase,1.0,0 -72842694,"Angry Video Game Nerd Adventures",play,1.3,0 -72842694,"LEGO MARVEL Super Heroes",purchase,1.0,0 -72842694,"LEGO MARVEL Super Heroes",play,1.3,0 -72842694,"Portal",purchase,1.0,0 -72842694,"Portal",play,1.3,0 -72842694,"BioShock Infinite",purchase,1.0,0 -72842694,"BioShock Infinite",play,1.2,0 -72842694,"Strider",purchase,1.0,0 -72842694,"Strider",play,1.2,0 -72842694,"Onimusha 3 Demon Siege",purchase,1.0,0 -72842694,"Onimusha 3 Demon Siege",play,1.1,0 -72842694,"Breath of Death VII ",purchase,1.0,0 -72842694,"Breath of Death VII ",play,1.0,0 -72842694,"SONIC THE HEDGEHOG 4 Episode II",purchase,1.0,0 -72842694,"SONIC THE HEDGEHOG 4 Episode II",play,1.0,0 -72842694,"Natural Selection 2",purchase,1.0,0 -72842694,"Natural Selection 2",play,1.0,0 -72842694,"Sacred 2 Gold",purchase,1.0,0 -72842694,"Sacred 2 Gold",play,0.9,0 -72842694,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -72842694,"METAL GEAR RISING REVENGEANCE",play,0.9,0 -72842694,"The Binding of Isaac Rebirth",purchase,1.0,0 -72842694,"The Binding of Isaac Rebirth",play,0.9,0 -72842694,"Double Dragon Neon",purchase,1.0,0 -72842694,"Double Dragon Neon",play,0.8,0 -72842694,"Deadpool",purchase,1.0,0 -72842694,"Deadpool",play,0.8,0 -72842694,"Duke Nukem Forever",purchase,1.0,0 -72842694,"Duke Nukem Forever",play,0.8,0 -72842694,"Dead Island",purchase,1.0,0 -72842694,"Dead Island",play,0.8,0 -72842694,"Cthulhu Saves the World ",purchase,1.0,0 -72842694,"Cthulhu Saves the World ",play,0.8,0 -72842694,"Dota 2",purchase,1.0,0 -72842694,"Dota 2",play,0.7,0 -72842694,"FINAL FANTASY TYPE-0 HD",purchase,1.0,0 -72842694,"FINAL FANTASY TYPE-0 HD",play,0.7,0 -72842694,"Dungeons & Dragons Chronicles of Mystara",purchase,1.0,0 -72842694,"Dungeons & Dragons Chronicles of Mystara",play,0.7,0 -72842694,"Rise of Incarnates",purchase,1.0,0 -72842694,"Rise of Incarnates",play,0.7,0 -72842694,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -72842694,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.6,0 -72842694,"Super Meat Boy",purchase,1.0,0 -72842694,"Super Meat Boy",play,0.6,0 -72842694,"Strike Suit Zero",purchase,1.0,0 -72842694,"Strike Suit Zero",play,0.6,0 -72842694,"Abyss Odyssey",purchase,1.0,0 -72842694,"Abyss Odyssey",play,0.6,0 -72842694,"Chivalry Medieval Warfare",purchase,1.0,0 -72842694,"Chivalry Medieval Warfare",play,0.6,0 -72842694,"Mortal Kombat Komplete Edition",purchase,1.0,0 -72842694,"Mortal Kombat Komplete Edition",play,0.6,0 -72842694,"DOOM 3 BFG Edition",purchase,1.0,0 -72842694,"DOOM 3 BFG Edition",play,0.5,0 -72842694,"TrackMania Canyon",purchase,1.0,0 -72842694,"TrackMania Canyon",play,0.5,0 -72842694,"Hero Academy",purchase,1.0,0 -72842694,"Hero Academy",play,0.4,0 -72842694,"Magic 2014 ",purchase,1.0,0 -72842694,"Magic 2014 ",play,0.4,0 -72842694,"Retro City Rampage DX",purchase,1.0,0 -72842694,"Retro City Rampage DX",play,0.4,0 -72842694,"Marvel Heroes 2015",purchase,1.0,0 -72842694,"Marvel Heroes 2015",play,0.4,0 -72842694,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -72842694,"THE KING OF FIGHTERS XIII STEAM EDITION",play,0.4,0 -72842694,"Mortal Kombat Kollection",purchase,1.0,0 -72842694,"Mortal Kombat Kollection",play,0.4,0 -72842694,"Shadow Warrior Classic Redux",purchase,1.0,0 -72842694,"Shadow Warrior Classic Redux",play,0.4,0 -72842694,"The Binding of Isaac",purchase,1.0,0 -72842694,"The Binding of Isaac",play,0.3,0 -72842694,"Far Cry 3 Blood Dragon",purchase,1.0,0 -72842694,"Far Cry 3 Blood Dragon",play,0.3,0 -72842694,"Warhammer 40,000 Regicide",purchase,1.0,0 -72842694,"Warhammer 40,000 Regicide",play,0.3,0 -72842694,"Confrontation",purchase,1.0,0 -72842694,"Confrontation",play,0.3,0 -72842694,"Nation Red",purchase,1.0,0 -72842694,"Nation Red",play,0.3,0 -72842694,"Warhammer Quest",purchase,1.0,0 -72842694,"Warhammer Quest",play,0.3,0 -72842694,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -72842694,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,0.3,0 -72842694,"Legendary",purchase,1.0,0 -72842694,"Legendary",play,0.3,0 -72842694,"Castlevania Lords of Shadow - Ultimate Edition",purchase,1.0,0 -72842694,"Castlevania Lords of Shadow - Ultimate Edition",play,0.3,0 -72842694,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -72842694,"Resident Evil 5 / Biohazard 5",play,0.2,0 -72842694,"Vanguard Princess",purchase,1.0,0 -72842694,"Vanguard Princess",play,0.2,0 -72842694,"Dungeon Hearts",purchase,1.0,0 -72842694,"Dungeon Hearts",play,0.2,0 -72842694,"Party of Sin",purchase,1.0,0 -72842694,"Party of Sin",play,0.2,0 -72842694,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -72842694,"Duke Nukem 3D Megaton Edition",play,0.2,0 -72842694,"FINAL FANTASY VIII",purchase,1.0,0 -72842694,"FINAL FANTASY VIII",play,0.1,0 -72842694,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -72842694,"The Expendabros",purchase,1.0,0 -72842694,"Tomb Raider Legend",purchase,1.0,0 -72842694,"Counter-Strike",purchase,1.0,0 -72842694,"Crazy Machines 2",purchase,1.0,0 -72842694,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -72842694,"Agarest - Basic Adventure Pack DLC",purchase,1.0,0 -72842694,"Agarest - Dull-Things Pack DLC",purchase,1.0,0 -72842694,"Agarest - Fallen Angel Pack DLC",purchase,1.0,0 -72842694,"Agarest - Legendary-Monster Pack DLC",purchase,1.0,0 -72842694,"Agarest - Magic Fight Pack DLC",purchase,1.0,0 -72842694,"Agarest - Upgrade Pack 1 DLC",purchase,1.0,0 -72842694,"Batman Arkham City GOTY",purchase,1.0,0 -72842694,"BioShock",purchase,1.0,0 -72842694,"BioShock Infinite - Season Pass",purchase,1.0,0 -72842694,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -72842694,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -72842694,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -72842694,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -72842694,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -72842694,"Castle Crashers - Blacksmith Pack",purchase,1.0,0 -72842694,"Castle Crashers - Pink Knight Pack",purchase,1.0,0 -72842694,"Castlevania Lords of Shadow 2",purchase,1.0,0 -72842694,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -72842694,"Crazy Machines 2 - Jewel Digger DLC",purchase,1.0,0 -72842694,"Crazy Machines 2 Fluid Add-On",purchase,1.0,0 -72842694,"Divinity II Developer's Cut",purchase,1.0,0 -72842694,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -72842694,"Fallout New Vegas Dead Money",purchase,1.0,0 -72842694,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -72842694,"Hyperdimension Neptunia Re;Birth2 Sisters Generation",purchase,1.0,0 -72842694,"Patch testing for Chivalry",purchase,1.0,0 -72842694,"PewDiePie Legend of the Brofist",purchase,1.0,0 -72842694,"Portal 2",purchase,1.0,0 -72842694,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -72842694,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -72842694,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -72842694,"Serious Sam Double D XXL",purchase,1.0,0 -72842694,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -72842694,"South Park The Stick of Truth - Super Samurai Spaceman Pack",purchase,1.0,0 -72842694,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -72842694,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -72842694,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -72842694,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -72842694,"Ticket to Ride - Legendary Asia",purchase,1.0,0 -72842694,"Tomb Raider Underworld",purchase,1.0,0 -72842694,"Vanguard Princess Director's Cut",purchase,1.0,0 -72842694,"Warhammer Quest - Base Pack items",purchase,1.0,0 -72842694,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -72842694,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -290367158,"Counter-Strike Global Offensive",purchase,1.0,0 -290367158,"Counter-Strike Global Offensive",play,1.8,0 -290367158,"DayZ",purchase,1.0,0 -290367158,"DayZ",play,0.1,0 -42223842,"Football Manager 2009",purchase,1.0,0 -42223842,"Football Manager 2009",play,242.0,0 -144508237,"Football Manager 2013",purchase,1.0,0 -144508237,"Football Manager 2013",play,1.7,0 -17649444,"Mass Effect",purchase,1.0,0 -17649444,"Mass Effect",play,908.0,0 -17649444,"Supreme Commander Forged Alliance",purchase,1.0,0 -17649444,"Supreme Commander Forged Alliance",play,798.0,0 -17649444,"Torchlight II",purchase,1.0,0 -17649444,"Torchlight II",play,586.0,0 -17649444,"Mass Effect 2",purchase,1.0,0 -17649444,"Mass Effect 2",play,276.0,0 -17649444,"Supreme Commander 2",purchase,1.0,0 -17649444,"Supreme Commander 2",play,271.0,0 -17649444,"Team Fortress 2",purchase,1.0,0 -17649444,"Team Fortress 2",play,267.0,0 -17649444,"Torchlight",purchase,1.0,0 -17649444,"Torchlight",play,243.0,0 -17649444,"The Binding of Isaac",purchase,1.0,0 -17649444,"The Binding of Isaac",play,219.0,0 -17649444,"Supreme Commander",purchase,1.0,0 -17649444,"Supreme Commander",play,106.0,0 -17649444,"Crysis 2 Maximum Edition",purchase,1.0,0 -17649444,"Crysis 2 Maximum Edition",play,84.0,0 -17649444,"Half-Life 2",purchase,1.0,0 -17649444,"Half-Life 2",play,43.0,0 -17649444,"Half-Life 2 Episode One",purchase,1.0,0 -17649444,"Half-Life 2 Episode One",play,42.0,0 -17649444,"Defense Grid 2",purchase,1.0,0 -17649444,"Defense Grid 2",play,39.0,0 -17649444,"Portal",purchase,1.0,0 -17649444,"Portal",play,38.0,0 -17649444,"Crysis",purchase,1.0,0 -17649444,"Crysis",play,27.0,0 -17649444,"Half-Life Source",purchase,1.0,0 -17649444,"Half-Life Source",play,16.3,0 -17649444,"Portal 2",purchase,1.0,0 -17649444,"Portal 2",play,14.8,0 -17649444,"Half-Life 2 Episode Two",purchase,1.0,0 -17649444,"Half-Life 2 Episode Two",play,12.5,0 -17649444,"Crysis Warhead",purchase,1.0,0 -17649444,"Crysis Warhead",play,10.0,0 -17649444,"Defense Grid 2 A Matter of Endurance",purchase,1.0,0 -17649444,"Defense Grid 2 A Matter of Endurance",play,0.5,0 -17649444,"Batman Arkham Knight",purchase,1.0,0 -17649444,"Batman Arkham Knight",play,0.3,0 -17649444,"BioShock",purchase,1.0,0 -17649444,"BioShock",play,0.3,0 -17649444,"Crysis Wars",purchase,1.0,0 -17649444,"Crysis Wars",play,0.2,0 -17649444,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -17649444,"Batman Arkham City GOTY",purchase,1.0,0 -17649444,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -17649444,"Batman Arkham Origins - Initiation",purchase,1.0,0 -17649444,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -17649444,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -17649444,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -17649444,"Batman Arkham Origins",purchase,1.0,0 -17649444,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -17649444,"BioShock 2",purchase,1.0,0 -17649444,"Counter-Strike Source",purchase,1.0,0 -17649444,"Half-Life 2 Deathmatch",purchase,1.0,0 -17649444,"Half-Life 2 Lost Coast",purchase,1.0,0 -17649444,"Half-Life Deathmatch Source",purchase,1.0,0 -17649444,"Left 4 Dead",purchase,1.0,0 -17649444,"Left 4 Dead 2",purchase,1.0,0 -17649444,"Metro 2033 Redux",purchase,1.0,0 -17649444,"Metro Last Light Redux",purchase,1.0,0 -17649444,"Mirror's Edge",purchase,1.0,0 -17649444,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -17649444,"Sid Meier's Civilization V",purchase,1.0,0 -17649444,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -17649444,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -17649444,"Supreme Commander 2 - Infinite War Battle Pack One",purchase,1.0,0 -214388411,"Realm of the Mad God",purchase,1.0,0 -214388411,"Realm of the Mad God",play,0.1,0 -214388411,"BLOCKADE 3D",purchase,1.0,0 -141161011,"Don't Starve",purchase,1.0,0 -141161011,"Don't Starve",play,5.5,0 -141161011,"Call of Duty Black Ops",purchase,1.0,0 -141161011,"Call of Duty Black Ops",play,1.6,0 -141161011,"Heroes of Might & Magic III - HD Edition",purchase,1.0,0 -141161011,"Heroes of Might & Magic III - HD Edition",play,0.8,0 -141161011,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -141161011,"Call of Duty Black Ops - Multiplayer",play,0.7,0 -141161011,"Don't Starve Together Beta",purchase,1.0,0 -54916182,"Football Manager 2010",purchase,1.0,0 -54916182,"Football Manager 2010",play,2603.0,0 -168041218,"Dota 2",purchase,1.0,0 -168041218,"Dota 2",play,213.0,0 -168041218,"Counter-Strike Nexon Zombies",purchase,1.0,0 -168041218,"Counter-Strike Nexon Zombies",play,0.2,0 -168041218,"Panzar",purchase,1.0,0 -155881626,"Dota 2",purchase,1.0,0 -155881626,"Dota 2",play,743.0,0 -155881626,"Counter-Strike Global Offensive",purchase,1.0,0 -155881626,"Counter-Strike Global Offensive",play,152.0,0 -155881626,"AirMech",purchase,1.0,0 -155881626,"APB Reloaded",purchase,1.0,0 -155881626,"Archeblade",purchase,1.0,0 -155881626,"Blacklight Retribution",purchase,1.0,0 -155881626,"C9",purchase,1.0,0 -155881626,"Champions Online",purchase,1.0,0 -155881626,"City of Steam Arkadia",purchase,1.0,0 -155881626,"CrimeCraft GangWars",purchase,1.0,0 -155881626,"Dogs of War Online - Beta",purchase,1.0,0 -155881626,"Dungeon Party",purchase,1.0,0 -155881626,"Dungeons & Dragons Online",purchase,1.0,0 -155881626,"Dwarfs F2P",purchase,1.0,0 -155881626,"EverQuest II",purchase,1.0,0 -155881626,"Football Superstars",purchase,1.0,0 -155881626,"Frontline Tactics",purchase,1.0,0 -155881626,"Global Agenda",purchase,1.0,0 -155881626,"Gotham City Impostors Free To Play",purchase,1.0,0 -155881626,"GunZ 2 The Second Duel",purchase,1.0,0 -155881626,"Haunted Memories",purchase,1.0,0 -155881626,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -155881626,"Jagged Alliance Online - Steam Edition",purchase,1.0,0 -155881626,"Jagged Alliance Online Raven Pack",purchase,1.0,0 -155881626,"Loadout",purchase,1.0,0 -155881626,"March of War",purchase,1.0,0 -155881626,"Marvel Heroes 2015",purchase,1.0,0 -155881626,"Neverwinter",purchase,1.0,0 -155881626,"No More Room in Hell",purchase,1.0,0 -155881626,"PlanetSide 2",purchase,1.0,0 -155881626,"Ragnarok",purchase,1.0,0 -155881626,"RaiderZ",purchase,1.0,0 -155881626,"Realm of the Mad God",purchase,1.0,0 -155881626,"RIFT",purchase,1.0,0 -155881626,"Rusty Hearts",purchase,1.0,0 -155881626,"Soldier Front 2",purchase,1.0,0 -155881626,"Solstice Arena",purchase,1.0,0 -155881626,"Spiral Knights",purchase,1.0,0 -155881626,"Star Trek Online",purchase,1.0,0 -155881626,"Stronghold Kingdoms",purchase,1.0,0 -155881626,"Tactical Intervention",purchase,1.0,0 -155881626,"The Lord of the Rings Online",purchase,1.0,0 -155881626,"The Mighty Quest For Epic Loot",purchase,1.0,0 -155881626,"The Plan",purchase,1.0,0 -155881626,"Tribes Ascend",purchase,1.0,0 -155881626,"Unturned",purchase,1.0,0 -155881626,"Warframe",purchase,1.0,0 -155881626,"War Inc. Battlezone",purchase,1.0,0 -155881626,"War Thunder",purchase,1.0,0 -23663429,"Counter-Strike",purchase,1.0,0 -23663429,"Counter-Strike",play,1.3,0 -23663429,"Counter-Strike Condition Zero",purchase,1.0,0 -23663429,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -201176964,"Dota 2",purchase,1.0,0 -201176964,"Dota 2",play,1.9,0 -179481154,"Counter-Strike Global Offensive",purchase,1.0,0 -179481154,"Counter-Strike Global Offensive",play,207.0,0 -179481154,"Far Cry 3",purchase,1.0,0 -179481154,"Far Cry 3",play,32.0,0 -179481154,"Dota 2",purchase,1.0,0 -179481154,"Dota 2",play,0.9,0 -179481154,"PAYDAY The Heist",purchase,1.0,0 -179481154,"PAYDAY The Heist",play,0.4,0 -179481154,"Far Cry",purchase,1.0,0 -179481154,"Far Cry 2",purchase,1.0,0 -179481154,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -179481154,"Far Cry 3 Blood Dragon",purchase,1.0,0 -179481154,"Unturned",purchase,1.0,0 -246753573,"Call of Duty Ghosts",purchase,1.0,0 -246753573,"Call of Duty Ghosts",play,0.8,0 -246753573,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -115396529,"Dota 2",purchase,1.0,0 -115396529,"Dota 2",play,347.0,0 -115396529,"Fallout 4",purchase,1.0,0 -115396529,"Fallout 4",play,17.9,0 -115396529,"Cities Skylines",purchase,1.0,0 -115396529,"Cities Skylines",play,8.7,0 -115396529,"Natural Selection 2",purchase,1.0,0 -115396529,"Natural Selection 2",play,0.8,0 -255957600,"Dota 2",purchase,1.0,0 -255957600,"Dota 2",play,12.4,0 -276118496,"War Inc. Battlezone",purchase,1.0,0 -276118496,"War Inc. Battlezone",play,0.6,0 -276118496,"APB Reloaded",purchase,1.0,0 -276118496,"Archeblade",purchase,1.0,0 -276118496,"Aura Kingdom",purchase,1.0,0 -276118496,"FreeStyle2 Street Basketball",purchase,1.0,0 -276118496,"GunZ 2 The Second Duel",purchase,1.0,0 -276118496,"Loadout",purchase,1.0,0 -276118496,"Neverwinter",purchase,1.0,0 -276118496,"No More Room in Hell",purchase,1.0,0 -276118496,"Path of Exile",purchase,1.0,0 -276118496,"Strife",purchase,1.0,0 -276118496,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -276118496,"Unturned",purchase,1.0,0 -276118496,"Warframe",purchase,1.0,0 -276118496,"War Thunder",purchase,1.0,0 -43804972,"Sid Meier's Civilization V",purchase,1.0,0 -43804972,"Sid Meier's Civilization V",play,259.0,0 -216115170,"Unturned",purchase,1.0,0 -216115170,"Unturned",play,0.5,0 -182579698,"Dota 2",purchase,1.0,0 -182579698,"Dota 2",play,48.0,0 -242412972,"The Lord of the Rings Online",purchase,1.0,0 -242412972,"The Lord of the Rings Online",play,7.5,0 -242412972,"Stronghold HD",purchase,1.0,0 -242412972,"Stronghold HD",play,0.3,0 -215008934,"Dota 2",purchase,1.0,0 -215008934,"Dota 2",play,7.9,0 -215008934,"Heroes & Generals",purchase,1.0,0 -161220142,"DayZ",purchase,1.0,0 -161220142,"DayZ",play,21.0,0 -81079291,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -81079291,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -20200395,"Team Fortress 2",purchase,1.0,0 -20200395,"Team Fortress 2",play,276.0,0 -20200395,"The Elder Scrolls V Skyrim",purchase,1.0,0 -20200395,"The Elder Scrolls V Skyrim",play,118.0,0 -20200395,"Castlevania Lords of Shadow 2",purchase,1.0,0 -20200395,"Castlevania Lords of Shadow 2",play,73.0,0 -20200395,"Torchlight II",purchase,1.0,0 -20200395,"Torchlight II",play,64.0,0 -20200395,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -20200395,"Plants vs. Zombies Game of the Year",play,50.0,0 -20200395,"Saints Row The Third",purchase,1.0,0 -20200395,"Saints Row The Third",play,45.0,0 -20200395,"Far Cry 3",purchase,1.0,0 -20200395,"Far Cry 3",play,43.0,0 -20200395,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -20200395,"Dark Souls Prepare to Die Edition",play,42.0,0 -20200395,"Super Meat Boy",purchase,1.0,0 -20200395,"Super Meat Boy",play,42.0,0 -20200395,"Borderlands 2",purchase,1.0,0 -20200395,"Borderlands 2",play,35.0,0 -20200395,"Torchlight",purchase,1.0,0 -20200395,"Torchlight",play,30.0,0 -20200395,"Poker Night at the Inventory",purchase,1.0,0 -20200395,"Poker Night at the Inventory",play,27.0,0 -20200395,"Tomb Raider",purchase,1.0,0 -20200395,"Tomb Raider",play,27.0,0 -20200395,"Warframe",purchase,1.0,0 -20200395,"Warframe",play,26.0,0 -20200395,"Bastion",purchase,1.0,0 -20200395,"Bastion",play,22.0,0 -20200395,"Killing Floor",purchase,1.0,0 -20200395,"Killing Floor",play,21.0,0 -20200395,"Left 4 Dead 2",purchase,1.0,0 -20200395,"Left 4 Dead 2",play,19.0,0 -20200395,"Endless Legend",purchase,1.0,0 -20200395,"Endless Legend",play,18.8,0 -20200395,"Magic The Gathering - Duels of the Planeswalkers",purchase,1.0,0 -20200395,"Magic The Gathering - Duels of the Planeswalkers",play,17.8,0 -20200395,"The Witcher Enhanced Edition",purchase,1.0,0 -20200395,"The Witcher Enhanced Edition",play,15.6,0 -20200395,"Dota 2",purchase,1.0,0 -20200395,"Dota 2",play,13.0,0 -20200395,"Max Payne 3",purchase,1.0,0 -20200395,"Max Payne 3",play,12.9,0 -20200395,"Darksiders II",purchase,1.0,0 -20200395,"Darksiders II",play,11.5,0 -20200395,"The Darkness II",purchase,1.0,0 -20200395,"The Darkness II",play,11.4,0 -20200395,"Skullgirls",purchase,1.0,0 -20200395,"Skullgirls",play,10.8,0 -20200395,"Tribes Ascend",purchase,1.0,0 -20200395,"Tribes Ascend",play,9.6,0 -20200395,"Puzzle Quest",purchase,1.0,0 -20200395,"Puzzle Quest",play,7.7,0 -20200395,"Counter-Strike Source",purchase,1.0,0 -20200395,"Counter-Strike Source",play,7.5,0 -20200395,"Altitude",purchase,1.0,0 -20200395,"Altitude",play,4.5,0 -20200395,"Chime",purchase,1.0,0 -20200395,"Chime",play,4.2,0 -20200395,"Champions Online",purchase,1.0,0 -20200395,"Champions Online",play,4.2,0 -20200395,"Rogue Legacy",purchase,1.0,0 -20200395,"Rogue Legacy",play,3.0,0 -20200395,"Counter-Strike Global Offensive",purchase,1.0,0 -20200395,"Counter-Strike Global Offensive",play,2.9,0 -20200395,"Skullgirls Endless Beta",purchase,1.0,0 -20200395,"Skullgirls Endless Beta",play,2.7,0 -20200395,"Divekick",purchase,1.0,0 -20200395,"Divekick",play,2.2,0 -20200395,"Life Is Strange",purchase,1.0,0 -20200395,"Life Is Strange",play,1.6,0 -20200395,"Dishonored",purchase,1.0,0 -20200395,"Dishonored",play,1.5,0 -20200395,"Assassin's Creed II",purchase,1.0,0 -20200395,"Assassin's Creed II",play,1.5,0 -20200395,"Lara Croft and the Guardian of Light",purchase,1.0,0 -20200395,"Lara Croft and the Guardian of Light",play,1.4,0 -20200395,"Half-Life 2",purchase,1.0,0 -20200395,"Half-Life 2",play,1.4,0 -20200395,"Booster Trooper",purchase,1.0,0 -20200395,"Booster Trooper",play,1.3,0 -20200395,"Poker Night 2",purchase,1.0,0 -20200395,"Poker Night 2",play,1.3,0 -20200395,"Dirty Bomb",purchase,1.0,0 -20200395,"Dirty Bomb",play,1.1,0 -20200395,"Far Cry 3 Blood Dragon",purchase,1.0,0 -20200395,"Far Cry 3 Blood Dragon",play,1.0,0 -20200395,"Grand Theft Auto III",purchase,1.0,0 -20200395,"Grand Theft Auto III",play,1.0,0 -20200395,"Mass Effect",purchase,1.0,0 -20200395,"Mass Effect",play,0.9,0 -20200395,"Grand Theft Auto Vice City",purchase,1.0,0 -20200395,"Grand Theft Auto Vice City",play,0.8,0 -20200395,"Alien Swarm",purchase,1.0,0 -20200395,"Alien Swarm",play,0.7,0 -20200395,"Droplitz",purchase,1.0,0 -20200395,"Droplitz",play,0.6,0 -20200395,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -20200395,"Call of Duty Advanced Warfare - Multiplayer",play,0.5,0 -20200395,"Garry's Mod",purchase,1.0,0 -20200395,"Garry's Mod",play,0.4,0 -20200395,"Portal",purchase,1.0,0 -20200395,"Portal",play,0.4,0 -20200395,"The Binding of Isaac",purchase,1.0,0 -20200395,"The Binding of Isaac",play,0.3,0 -20200395,"Grand Theft Auto San Andreas",purchase,1.0,0 -20200395,"Grand Theft Auto San Andreas",play,0.3,0 -20200395,"Assassin's Creed",purchase,1.0,0 -20200395,"Assassin's Creed",play,0.2,0 -20200395,"Lead and Gold - Gangs of the Wild West",purchase,1.0,0 -20200395,"Lead and Gold - Gangs of the Wild West",play,0.2,0 -20200395,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -20200395,"Killing Floor Mod Defence Alliance 2",play,0.2,0 -20200395,"TERA",purchase,1.0,0 -20200395,"Grand Theft Auto",purchase,1.0,0 -20200395,"Half-Life 2 Deathmatch",purchase,1.0,0 -20200395,"L.A. Noire",purchase,1.0,0 -20200395,"Hotline Miami",purchase,1.0,0 -20200395,"Call of Duty Advanced Warfare",purchase,1.0,0 -20200395,"Castlevania Lords of Shadow 2 - Dark Dracula Costume",purchase,1.0,0 -20200395,"Grand Theft Auto 2",purchase,1.0,0 -20200395,"Grand Theft Auto San Andreas",purchase,1.0,0 -20200395,"Grand Theft Auto Vice City",purchase,1.0,0 -20200395,"Grand Theft Auto III",purchase,1.0,0 -20200395,"Half-Life 2 Lost Coast",purchase,1.0,0 -20200395,"Half-Life Source",purchase,1.0,0 -20200395,"Half-Life Deathmatch Source",purchase,1.0,0 -20200395,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",purchase,1.0,0 -20200395,"Penny Arcade's On the Rain-Slick Precipice of Darkness 4",purchase,1.0,0 -20200395,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -20200395,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -20200395,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -32498610,"Counter-Strike Global Offensive",purchase,1.0,0 -32498610,"Counter-Strike Global Offensive",play,500.0,0 -32498610,"Counter-Strike",purchase,1.0,0 -32498610,"Counter-Strike",play,104.0,0 -32498610,"Team Fortress 2",purchase,1.0,0 -32498610,"Team Fortress 2",play,43.0,0 -32498610,"Left 4 Dead 2",purchase,1.0,0 -32498610,"Left 4 Dead 2",play,20.0,0 -32498610,"Vindictus",purchase,1.0,0 -32498610,"Vindictus",play,7.9,0 -32498610,"Archeblade",purchase,1.0,0 -32498610,"Archeblade",play,2.5,0 -32498610,"Creativerse",purchase,1.0,0 -32498610,"Creativerse",play,2.3,0 -32498610,"Counter-Strike Source",purchase,1.0,0 -32498610,"Counter-Strike Source",play,1.7,0 -32498610,"Dota 2",purchase,1.0,0 -32498610,"Dota 2",play,1.7,0 -32498610,"Warframe",purchase,1.0,0 -32498610,"Warframe",play,0.4,0 -32498610,"Counter-Strike Condition Zero",purchase,1.0,0 -32498610,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -32498610,"Fishing Planet",purchase,1.0,0 -32498610,"PAYDAY The Heist",purchase,1.0,0 -292731142,"Counter-Strike Global Offensive",purchase,1.0,0 -292731142,"Counter-Strike Global Offensive",play,22.0,0 -292731142,"Caster",purchase,1.0,0 -43321203,"Race The WTCC Game",purchase,1.0,0 -43321203,"Race The WTCC Game",play,7.8,0 -43321203,"RACE Caterham Expansion",purchase,1.0,0 -221952355,"Dota 2",purchase,1.0,0 -221952355,"Dota 2",play,23.0,0 -221952355,"Everlasting Summer",purchase,1.0,0 -221952355,"Everlasting Summer",play,0.8,0 -4834220,"Dota 2",purchase,1.0,0 -4834220,"Dota 2",play,474.0,0 -4834220,"Borderlands 2",purchase,1.0,0 -4834220,"Borderlands 2",play,427.0,0 -4834220,"Total War ROME II - Emperor Edition",purchase,1.0,0 -4834220,"Total War ROME II - Emperor Edition",play,329.0,0 -4834220,"BioShock Infinite",purchase,1.0,0 -4834220,"BioShock Infinite",play,265.0,0 -4834220,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -4834220,"Call of Duty Advanced Warfare - Multiplayer",play,210.0,0 -4834220,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -4834220,"Call of Duty Modern Warfare 2 - Multiplayer",play,175.0,0 -4834220,"The Elder Scrolls V Skyrim",purchase,1.0,0 -4834220,"The Elder Scrolls V Skyrim",play,58.0,0 -4834220,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -4834220,"Call of Duty Modern Warfare 3 - Multiplayer",play,39.0,0 -4834220,"Call of Duty Modern Warfare 2",purchase,1.0,0 -4834220,"Call of Duty Modern Warfare 2",play,35.0,0 -4834220,"Fallout 4",purchase,1.0,0 -4834220,"Fallout 4",play,19.8,0 -4834220,"Team Fortress 2",purchase,1.0,0 -4834220,"Team Fortress 2",play,10.9,0 -4834220,"Counter-Strike Source",purchase,1.0,0 -4834220,"Counter-Strike Source",play,7.6,0 -4834220,"Call of Duty Black Ops",purchase,1.0,0 -4834220,"Call of Duty Black Ops",play,7.3,0 -4834220,"Call of Duty Black Ops II",purchase,1.0,0 -4834220,"Call of Duty Black Ops II",play,6.3,0 -4834220,"Call of Duty Modern Warfare 3",purchase,1.0,0 -4834220,"Call of Duty Modern Warfare 3",play,5.4,0 -4834220,"Call of Duty Advanced Warfare",purchase,1.0,0 -4834220,"Call of Duty Advanced Warfare",play,1.3,0 -4834220,"Portal",purchase,1.0,0 -4834220,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -4834220,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -4834220,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -4834220,"Counter-Strike",purchase,1.0,0 -4834220,"Day of Defeat",purchase,1.0,0 -4834220,"Deathmatch Classic",purchase,1.0,0 -4834220,"Half-Life",purchase,1.0,0 -4834220,"Half-Life 2",purchase,1.0,0 -4834220,"Half-Life 2 Deathmatch",purchase,1.0,0 -4834220,"Half-Life 2 Episode One",purchase,1.0,0 -4834220,"Half-Life 2 Episode Two",purchase,1.0,0 -4834220,"Half-Life 2 Lost Coast",purchase,1.0,0 -4834220,"Half-Life Blue Shift",purchase,1.0,0 -4834220,"Half-Life Opposing Force",purchase,1.0,0 -4834220,"Ricochet",purchase,1.0,0 -4834220,"Team Fortress Classic",purchase,1.0,0 -189623540,"Unturned",purchase,1.0,0 -189623540,"Unturned",play,8.6,0 -189623540,"Heroes & Generals",purchase,1.0,0 -189623540,"Heroes & Generals",play,0.3,0 -54704882,"The Promised Land",purchase,1.0,0 -208071792,"Dota 2",purchase,1.0,0 -208071792,"Dota 2",play,6.6,0 -65229865,"Europa Universalis IV",purchase,1.0,0 -65229865,"Europa Universalis IV",play,369.0,0 -65229865,"Fallout New Vegas",purchase,1.0,0 -65229865,"Fallout New Vegas",play,81.0,0 -65229865,"The Elder Scrolls V Skyrim",purchase,1.0,0 -65229865,"The Elder Scrolls V Skyrim",play,57.0,0 -65229865,"GRID",purchase,1.0,0 -65229865,"GRID",play,38.0,0 -65229865,"Sid Meier's Civilization V",purchase,1.0,0 -65229865,"Sid Meier's Civilization V",play,33.0,0 -65229865,"Mass Effect 2",purchase,1.0,0 -65229865,"Mass Effect 2",play,26.0,0 -65229865,"Cogs",purchase,1.0,0 -65229865,"Cogs",play,22.0,0 -65229865,"Need for Speed SHIFT",purchase,1.0,0 -65229865,"Need for Speed SHIFT",play,22.0,0 -65229865,"Dungeons of Dredmor",purchase,1.0,0 -65229865,"Dungeons of Dredmor",play,17.2,0 -65229865,"Bastion",purchase,1.0,0 -65229865,"Bastion",play,9.7,0 -65229865,"Might & Magic Heroes VI",purchase,1.0,0 -65229865,"Might & Magic Heroes VI",play,5.1,0 -65229865,"Atom Zombie Smasher ",purchase,1.0,0 -65229865,"Atom Zombie Smasher ",play,4.7,0 -65229865,"Heroes of Might & Magic V",purchase,1.0,0 -65229865,"Heroes of Might & Magic V",play,3.3,0 -65229865,"Hacker Evolution",purchase,1.0,0 -65229865,"Hacker Evolution",play,3.0,0 -65229865,"Majesty 2 Collection",purchase,1.0,0 -65229865,"Majesty 2 Collection",play,2.8,0 -65229865,"Worms Reloaded",purchase,1.0,0 -65229865,"Worms Reloaded",play,2.2,0 -65229865,"Portal",purchase,1.0,0 -65229865,"Portal",play,2.0,0 -65229865,"Dragon Age Origins",purchase,1.0,0 -65229865,"Dragon Age Origins",play,1.9,0 -65229865,"Solar 2",purchase,1.0,0 -65229865,"Solar 2",play,1.6,0 -65229865,"Dungeon Siege",purchase,1.0,0 -65229865,"Dungeon Siege",play,1.4,0 -65229865,"BioShock",purchase,1.0,0 -65229865,"BioShock",play,1.1,0 -65229865,"The Bridge",purchase,1.0,0 -65229865,"The Bridge",play,0.9,0 -65229865,"Magicka",purchase,1.0,0 -65229865,"Magicka",play,0.8,0 -65229865,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -65229865,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.8,0 -65229865,"Crayon Physics Deluxe",purchase,1.0,0 -65229865,"Crayon Physics Deluxe",play,0.7,0 -65229865,"King Arthur Collection",purchase,1.0,0 -65229865,"King Arthur Collection",play,0.5,0 -65229865,"Fallout 4",purchase,1.0,0 -65229865,"Fallout 4",play,0.5,0 -65229865,"Revenge of the Titans",purchase,1.0,0 -65229865,"Revenge of the Titans",play,0.5,0 -65229865,"Neverwinter Nights 2 Platinum",purchase,1.0,0 -65229865,"Neverwinter Nights 2 Platinum",play,0.3,0 -65229865,"Sigils of Elohim",purchase,1.0,0 -65229865,"Sigils of Elohim",play,0.3,0 -65229865,"The Showdown Effect",purchase,1.0,0 -65229865,"7 Grand Steps, Step 1 What Ancients Begat",purchase,1.0,0 -65229865,"And Yet It Moves",purchase,1.0,0 -65229865,"BioShock 2",purchase,1.0,0 -65229865,"Bunch Of Heroes",purchase,1.0,0 -65229865,"Cave Story+",purchase,1.0,0 -65229865,"Crusader Kings II",purchase,1.0,0 -65229865,"Dear Esther",purchase,1.0,0 -65229865,"Disciples II Gallean's Return",purchase,1.0,0 -65229865,"Disciples II Rise of the Elves",purchase,1.0,0 -65229865,"Dungeon Defenders",purchase,1.0,0 -65229865,"Dungeonland",purchase,1.0,0 -65229865,"Dungeonland - All access pass",purchase,1.0,0 -65229865,"Dungeon Siege 2",purchase,1.0,0 -65229865,"Dungeon Siege III",purchase,1.0,0 -65229865,"Europa Universalis III",purchase,1.0,0 -65229865,"Europa Universalis IV American Dream DLC",purchase,1.0,0 -65229865,"Europa Universalis IV Conquest of Paradise",purchase,1.0,0 -65229865,"Europa Universalis IV Conquistadors Unit pack ",purchase,1.0,0 -65229865,"Europa Universalis IV National Monuments II",purchase,1.0,0 -65229865,"Europa Universalis IVNative Americans Unit Pack",purchase,1.0,0 -65229865,"Europa Universalis IV Songs of the New World",purchase,1.0,0 -65229865,"Fractal Make Blooms Not War",purchase,1.0,0 -65229865,"Gemini Rue",purchase,1.0,0 -65229865,"Half-Life 2 Deathmatch",purchase,1.0,0 -65229865,"Half-Life 2 Lost Coast",purchase,1.0,0 -65229865,"Hammerfight",purchase,1.0,0 -65229865,"King's Bounty Armored Princess",purchase,1.0,0 -65229865,"King's Bounty Crossworlds",purchase,1.0,0 -65229865,"King's Bounty The Legend",purchase,1.0,0 -65229865,"Leviathan Warships",purchase,1.0,0 -65229865,"Lightfish",purchase,1.0,0 -65229865,"LIMBO",purchase,1.0,0 -65229865,"Luxuria Superbia",purchase,1.0,0 -65229865,"Magicka Final Frontier",purchase,1.0,0 -65229865,"Magicka Frozen Lake",purchase,1.0,0 -65229865,"Magicka Nippon",purchase,1.0,0 -65229865,"Magicka Party Robes",purchase,1.0,0 -65229865,"Magicka The Watchtower",purchase,1.0,0 -65229865,"Magicka Vietnam",purchase,1.0,0 -65229865,"Magicka Wizard's Survival Kit",purchase,1.0,0 -65229865,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -65229865,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -65229865,"Steel Storm Burning Retribution",purchase,1.0,0 -65229865,"The Dream Machine",purchase,1.0,0 -65229865,"The Dream Machine Chapter 3",purchase,1.0,0 -65229865,"Victoria Revolutions",purchase,1.0,0 -65229865,"Victoria II",purchase,1.0,0 -65229865,"Victoria II Interwar Cavalry Unit Pack",purchase,1.0,0 -65229865,"VVVVVV",purchase,1.0,0 -65229865,"Warlock - Master of the Arcane",purchase,1.0,0 -65229865,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -65229865,"War of the Roses",purchase,1.0,0 -65229865,"War of the Roses Kingmaker",purchase,1.0,0 -65229865,"War of the Roses Balance Beta",purchase,1.0,0 -53079481,"Speedball 2 Tournament",purchase,1.0,0 -53079481,"Speedball 2 Tournament",play,3.0,0 -146809006,"Dota 2",purchase,1.0,0 -146809006,"Dota 2",play,387.0,0 -146809006,"The Mighty Quest For Epic Loot",purchase,1.0,0 -146809006,"The Mighty Quest For Epic Loot",play,0.2,0 -146809006,"TDP4Team Battle",purchase,1.0,0 -146809006,"TDP4Team Battle",play,0.1,0 -146809006,"MoW Face Off M",purchase,1.0,0 -146809006,"Dead Island Epidemic",purchase,1.0,0 -146809006,"Heroes & Generals",purchase,1.0,0 -146809006,"Lost Saga North America",purchase,1.0,0 -146809006,"Neverwinter",purchase,1.0,0 -146809006,"Only If",purchase,1.0,0 -208226134,"Counter-Strike Nexon Zombies",purchase,1.0,0 -240524467,"Dota 2",purchase,1.0,0 -240524467,"Dota 2",play,184.0,0 -183103599,"Counter-Strike Global Offensive",purchase,1.0,0 -183103599,"Counter-Strike Global Offensive",play,299.0,0 -183103599,"Legend of Grimrock",purchase,1.0,0 -183103599,"Legend of Grimrock",play,21.0,0 -183103599,"Team Fortress 2",purchase,1.0,0 -183103599,"Team Fortress 2",play,1.9,0 -183103599,"Gear Up",purchase,1.0,0 -181064527,"Dota 2",purchase,1.0,0 -181064527,"Dota 2",play,7.7,0 -65958466,"Dota 2",purchase,1.0,0 -65958466,"Dota 2",play,131.0,0 -65958466,"Mass Effect",purchase,1.0,0 -65958466,"Mass Effect",play,125.0,0 -65958466,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -65958466,"Dragon Age Origins - Ultimate Edition",play,125.0,0 -65958466,"Fallout 4",purchase,1.0,0 -65958466,"Fallout 4",play,123.0,0 -65958466,"Mass Effect 2",purchase,1.0,0 -65958466,"Mass Effect 2",play,96.0,0 -65958466,"Fable - The Lost Chapters",purchase,1.0,0 -65958466,"Fable - The Lost Chapters",play,78.0,0 -65958466,"DayZ",purchase,1.0,0 -65958466,"DayZ",play,75.0,0 -65958466,"Killing Floor",purchase,1.0,0 -65958466,"Killing Floor",play,74.0,0 -65958466,"The Elder Scrolls V Skyrim",purchase,1.0,0 -65958466,"The Elder Scrolls V Skyrim",play,70.0,0 -65958466,"Elite Dangerous",purchase,1.0,0 -65958466,"Elite Dangerous",play,52.0,0 -65958466,"Chivalry Medieval Warfare",purchase,1.0,0 -65958466,"Chivalry Medieval Warfare",play,41.0,0 -65958466,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -65958466,"Sins of a Solar Empire Rebellion",play,39.0,0 -65958466,"Far Cry 3",purchase,1.0,0 -65958466,"Far Cry 3",play,39.0,0 -65958466,"Darksiders II",purchase,1.0,0 -65958466,"Darksiders II",play,38.0,0 -65958466,"Warframe",purchase,1.0,0 -65958466,"Warframe",play,36.0,0 -65958466,"Age of Empires II HD Edition",purchase,1.0,0 -65958466,"Age of Empires II HD Edition",play,34.0,0 -65958466,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -65958466,"Batman Arkham Asylum GOTY Edition",play,32.0,0 -65958466,"Team Fortress 2",purchase,1.0,0 -65958466,"Team Fortress 2",play,31.0,0 -65958466,"Deus Ex Human Revolution",purchase,1.0,0 -65958466,"Deus Ex Human Revolution",play,31.0,0 -65958466,"The Binding of Isaac",purchase,1.0,0 -65958466,"The Binding of Isaac",play,30.0,0 -65958466,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -65958466,"STAR WARS Knights of the Old Republic II The Sith Lords",play,29.0,0 -65958466,"Fallout New Vegas",purchase,1.0,0 -65958466,"Fallout New Vegas",play,28.0,0 -65958466,"Far Cry 4",purchase,1.0,0 -65958466,"Far Cry 4",play,28.0,0 -65958466,"Crusader Kings II",purchase,1.0,0 -65958466,"Crusader Kings II",play,27.0,0 -65958466,"Assassin's Creed II",purchase,1.0,0 -65958466,"Assassin's Creed II",play,25.0,0 -65958466,"Risk of Rain",purchase,1.0,0 -65958466,"Risk of Rain",play,24.0,0 -65958466,"Darksiders",purchase,1.0,0 -65958466,"Darksiders",play,24.0,0 -65958466,"Mirror's Edge",purchase,1.0,0 -65958466,"Mirror's Edge",play,23.0,0 -65958466,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -65958466,"Dark Souls Prepare to Die Edition",play,22.0,0 -65958466,"Wasteland 2",purchase,1.0,0 -65958466,"Wasteland 2",play,21.0,0 -65958466,"Endless Space",purchase,1.0,0 -65958466,"Endless Space",play,19.8,0 -65958466,"Garry's Mod",purchase,1.0,0 -65958466,"Garry's Mod",play,19.8,0 -65958466,"Portal",purchase,1.0,0 -65958466,"Portal",play,16.2,0 -65958466,"FTL Faster Than Light",purchase,1.0,0 -65958466,"FTL Faster Than Light",play,15.6,0 -65958466,"Metro 2033",purchase,1.0,0 -65958466,"Metro 2033",play,15.3,0 -65958466,"Europa Universalis IV",purchase,1.0,0 -65958466,"Europa Universalis IV",play,15.0,0 -65958466,"The Banner Saga",purchase,1.0,0 -65958466,"The Banner Saga",play,15.0,0 -65958466,"Guns of Icarus Online",purchase,1.0,0 -65958466,"Guns of Icarus Online",play,14.1,0 -65958466,"Batman Arkham City",purchase,1.0,0 -65958466,"Batman Arkham City",play,13.9,0 -65958466,"Half-Life 2",purchase,1.0,0 -65958466,"Half-Life 2",play,13.2,0 -65958466,"Magicite",purchase,1.0,0 -65958466,"Magicite",play,12.9,0 -65958466,"Don't Starve Together Beta",purchase,1.0,0 -65958466,"Don't Starve Together Beta",play,12.6,0 -65958466,"Terraria",purchase,1.0,0 -65958466,"Terraria",play,12.3,0 -65958466,"Hotline Miami",purchase,1.0,0 -65958466,"Hotline Miami",play,11.2,0 -65958466,"Warhammer 40,000 Space Marine",purchase,1.0,0 -65958466,"Warhammer 40,000 Space Marine",play,10.4,0 -65958466,"Fallout",purchase,1.0,0 -65958466,"Fallout",play,10.0,0 -65958466,"Spec Ops The Line",purchase,1.0,0 -65958466,"Spec Ops The Line",play,9.7,0 -65958466,"System Shock 2",purchase,1.0,0 -65958466,"System Shock 2",play,9.4,0 -65958466,"Dominions 4",purchase,1.0,0 -65958466,"Dominions 4",play,9.0,0 -65958466,"Dishonored",purchase,1.0,0 -65958466,"Dishonored",play,8.6,0 -65958466,"Magicka",purchase,1.0,0 -65958466,"Magicka",play,8.4,0 -65958466,"Stronghold HD",purchase,1.0,0 -65958466,"Stronghold HD",play,7.9,0 -65958466,"Crypt of the NecroDancer",purchase,1.0,0 -65958466,"Crypt of the NecroDancer",play,7.6,0 -65958466,"God Mode",purchase,1.0,0 -65958466,"God Mode",play,7.4,0 -65958466,"Age of Mythology Extended Edition",purchase,1.0,0 -65958466,"Age of Mythology Extended Edition",play,7.3,0 -65958466,"Metro Last Light Redux",purchase,1.0,0 -65958466,"Metro Last Light Redux",play,7.1,0 -65958466,"Counter-Strike Global Offensive",purchase,1.0,0 -65958466,"Counter-Strike Global Offensive",play,5.6,0 -65958466,"Killing Floor 2",purchase,1.0,0 -65958466,"Killing Floor 2",play,5.3,0 -65958466,"Dead Space",purchase,1.0,0 -65958466,"Dead Space",play,5.2,0 -65958466,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -65958466,"Shadowrun Dragonfall - Director's Cut",play,5.1,0 -65958466,"BioShock 2",purchase,1.0,0 -65958466,"BioShock 2",play,4.9,0 -65958466,"Divinity II Developer's Cut",purchase,1.0,0 -65958466,"Divinity II Developer's Cut",play,4.9,0 -65958466,"Stronghold Crusader HD",purchase,1.0,0 -65958466,"Stronghold Crusader HD",play,4.6,0 -65958466,"Sid Meier's Civilization V",purchase,1.0,0 -65958466,"Sid Meier's Civilization V",play,4.6,0 -65958466,"Cities XL Platinum",purchase,1.0,0 -65958466,"Cities XL Platinum",play,4.4,0 -65958466,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -65958466,"Red Faction Guerrilla Steam Edition",play,3.9,0 -65958466,"Company of Heroes",purchase,1.0,0 -65958466,"Company of Heroes",play,3.7,0 -65958466,"SOMA",purchase,1.0,0 -65958466,"SOMA",play,3.5,0 -65958466,"Contagion",purchase,1.0,0 -65958466,"Contagion",play,3.3,0 -65958466,"Retrovirus",purchase,1.0,0 -65958466,"Retrovirus",play,3.3,0 -65958466,"Hammerwatch",purchase,1.0,0 -65958466,"Hammerwatch",play,3.1,0 -65958466,"RAW - Realms of Ancient War",purchase,1.0,0 -65958466,"RAW - Realms of Ancient War",play,3.0,0 -65958466,"LIMBO",purchase,1.0,0 -65958466,"LIMBO",play,2.4,0 -65958466,"Evochron Mercenary",purchase,1.0,0 -65958466,"Evochron Mercenary",play,2.2,0 -65958466,"DOOM 3 BFG Edition",purchase,1.0,0 -65958466,"DOOM 3 BFG Edition",play,2.2,0 -65958466,"Nidhogg",purchase,1.0,0 -65958466,"Nidhogg",play,2.1,0 -65958466,"Don't Starve",purchase,1.0,0 -65958466,"Don't Starve",play,1.8,0 -65958466,"Star Wars Knights of the Old Republic",purchase,1.0,0 -65958466,"Star Wars Knights of the Old Republic",play,1.7,0 -65958466,"Monaco",purchase,1.0,0 -65958466,"Monaco",play,1.5,0 -65958466,"The Ship",purchase,1.0,0 -65958466,"The Ship",play,1.4,0 -65958466,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -65958466,"Warhammer 40,000 Dawn of War Dark Crusade",play,1.4,0 -65958466,"Little Inferno",purchase,1.0,0 -65958466,"Little Inferno",play,1.4,0 -65958466,"Unturned",purchase,1.0,0 -65958466,"Unturned",play,1.3,0 -65958466,"Saints Row The Third",purchase,1.0,0 -65958466,"Saints Row The Third",play,1.3,0 -65958466,"Dear Esther",purchase,1.0,0 -65958466,"Dear Esther",play,1.2,0 -65958466,"Fallout 2",purchase,1.0,0 -65958466,"Fallout 2",play,1.2,0 -65958466,"Castle Crashers",purchase,1.0,0 -65958466,"Castle Crashers",play,1.0,0 -65958466,"Fallout Tactics",purchase,1.0,0 -65958466,"Fallout Tactics",play,1.0,0 -65958466,"Of Orcs And Men",purchase,1.0,0 -65958466,"Of Orcs And Men",play,0.9,0 -65958466,"Tomb Raider",purchase,1.0,0 -65958466,"Tomb Raider",play,0.8,0 -65958466,"Confrontation",purchase,1.0,0 -65958466,"Confrontation",play,0.6,0 -65958466,"Total War SHOGUN 2",purchase,1.0,0 -65958466,"Total War SHOGUN 2",play,0.5,0 -65958466,"Alien Swarm",purchase,1.0,0 -65958466,"Alien Swarm",play,0.4,0 -65958466,"Stronghold 2",purchase,1.0,0 -65958466,"Stronghold 2",play,0.4,0 -65958466,"Game of Thrones ",purchase,1.0,0 -65958466,"Game of Thrones ",play,0.4,0 -65958466,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -65958466,"Star Wars - Jedi Knight II Jedi Outcast",play,0.2,0 -65958466,"Blood Bowl Legendary Edition",purchase,1.0,0 -65958466,"Blood Bowl Legendary Edition",play,0.1,0 -65958466,"War of the Roses",purchase,1.0,0 -65958466,"Age of Empires II HD The Forgotten",purchase,1.0,0 -65958466,"Batman Arkham City GOTY",purchase,1.0,0 -65958466,"Company of Heroes (New Steam Version)",purchase,1.0,0 -65958466,"Company of Heroes Opposing Fronts",purchase,1.0,0 -65958466,"Company of Heroes Tales of Valor",purchase,1.0,0 -65958466,"Counter-Strike Source",purchase,1.0,0 -65958466,"Crusader Kings II Hymns of Abraham",purchase,1.0,0 -65958466,"Crusader Kings II Military Orders Unit Pack",purchase,1.0,0 -65958466,"Crusader Kings II Sons of Abraham",purchase,1.0,0 -65958466,"Crusader Kings II Warriors of Faith Unit Pack",purchase,1.0,0 -65958466,"Dead Space 2",purchase,1.0,0 -65958466,"Don't Starve Reign of Giants",purchase,1.0,0 -65958466,"Empire Total War",purchase,1.0,0 -65958466,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -65958466,"Fallout New Vegas Dead Money",purchase,1.0,0 -65958466,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -65958466,"Half-Life 2 Episode One",purchase,1.0,0 -65958466,"Half-Life 2 Episode Two",purchase,1.0,0 -65958466,"Half-Life 2 Lost Coast",purchase,1.0,0 -65958466,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -65958466,"Patch testing for Chivalry",purchase,1.0,0 -65958466,"Red Faction Armageddon",purchase,1.0,0 -65958466,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -65958466,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -65958466,"Stronghold Crusader Extreme HD",purchase,1.0,0 -65958466,"Stronghold Legends",purchase,1.0,0 -65958466,"The Banner Saga - Mod Content",purchase,1.0,0 -65958466,"The Ship Single Player",purchase,1.0,0 -65958466,"The Ship Tutorial",purchase,1.0,0 -65958466,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -65958466,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -65958466,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -65958466,"Wasteland 1 - The Original Classic",purchase,1.0,0 -65958466,"Wasteland 2 Director's Cut",purchase,1.0,0 -77905942,"The Elder Scrolls V Skyrim",purchase,1.0,0 -77905942,"The Elder Scrolls V Skyrim",play,95.0,0 -77905942,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -77905942,"Dragon Age Origins - Ultimate Edition",play,71.0,0 -77905942,"Sid Meier's Civilization V",purchase,1.0,0 -77905942,"Sid Meier's Civilization V",play,64.0,0 -77905942,"Bastion",purchase,1.0,0 -77905942,"Bastion",play,19.2,0 -77905942,"Costume Quest",purchase,1.0,0 -77905942,"Costume Quest",play,1.1,0 -181321171,"Dota 2",purchase,1.0,0 -181321171,"Dota 2",play,25.0,0 -181321171,"Team Fortress 2",purchase,1.0,0 -181321171,"Team Fortress 2",play,0.9,0 -172348107,"Dota 2",purchase,1.0,0 -172348107,"Dota 2",play,1.9,0 -215748805,"Dota 2",purchase,1.0,0 -215748805,"Dota 2",play,45.0,0 -215748805,"Adventures of Bertram Fiddle Episode 1 A Dreadly Business",purchase,1.0,0 -215748805,"Adventures of Bertram Fiddle Episode 1 A Dreadly Business",play,1.7,0 -215748805,"Shoot Many Robots",purchase,1.0,0 -215748805,"Shoot Many Robots",play,0.7,0 -215748805,"Cobi Treasure Deluxe",purchase,1.0,0 -215748805,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -129520075,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -129520075,"Call of Duty Black Ops II - Multiplayer",play,77.0,0 -129520075,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -129520075,"Call of Duty Modern Warfare 3 - Multiplayer",play,10.2,0 -129520075,"Call of Duty Modern Warfare 3",purchase,1.0,0 -129520075,"Call of Duty Modern Warfare 3",play,6.8,0 -129520075,"Grand Theft Auto IV",purchase,1.0,0 -129520075,"Grand Theft Auto IV",play,1.9,0 -129520075,"Call of Duty Black Ops II",purchase,1.0,0 -129520075,"Call of Duty Black Ops II",play,1.6,0 -129520075,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -129520075,"Call of Duty Black Ops II - Zombies",play,0.3,0 -276055488,"Counter-Strike Nexon Zombies",purchase,1.0,0 -276055488,"Counter-Strike Nexon Zombies",play,0.8,0 -276055488,"Unturned",purchase,1.0,0 -276055488,"Unturned",play,0.1,0 -230952269,"Heroes & Generals",purchase,1.0,0 -230952269,"Heroes & Generals",play,1.9,0 -230952269,"Unturned",purchase,1.0,0 -230952269,"Unturned",play,0.1,0 -248255491,"Team Fortress 2",purchase,1.0,0 -248255491,"Team Fortress 2",play,56.0,0 -248255491,"Gothic 3",purchase,1.0,0 -248255491,"Gothic 3",play,16.5,0 -165216297,"Dota 2",purchase,1.0,0 -165216297,"Dota 2",play,3.6,0 -234292025,"Marvel Heroes 2015",purchase,1.0,0 -234292025,"Marvel Heroes 2015",play,54.0,0 -234292025,"Team Fortress 2",purchase,1.0,0 -234292025,"Team Fortress 2",play,3.8,0 -226923581,"Counter-Strike Global Offensive",purchase,1.0,0 -226923581,"Counter-Strike Global Offensive",play,557.0,0 -226923581,"Worms Clan Wars",purchase,1.0,0 -226923581,"Worms Clan Wars",play,2.1,0 -226923581,"LEGO The Hobbit",purchase,1.0,0 -226923581,"LEGO The Hobbit",play,0.6,0 -134590374,"Dota 2",purchase,1.0,0 -134590374,"Dota 2",play,173.0,0 -43908860,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -43908860,"Call of Duty Modern Warfare 2 - Multiplayer",play,155.0,0 -43908860,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -43908860,"Call of Duty Modern Warfare 3 - Multiplayer",play,123.0,0 -43908860,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -43908860,"Call of Duty Black Ops - Multiplayer",play,47.0,0 -43908860,"Call of Duty Modern Warfare 2",purchase,1.0,0 -43908860,"Call of Duty Modern Warfare 2",play,40.0,0 -43908860,"Portal",purchase,1.0,0 -43908860,"Portal",play,36.0,0 -43908860,"Far Cry 3",purchase,1.0,0 -43908860,"Far Cry 3",play,24.0,0 -43908860,"Call of Duty Modern Warfare 3",purchase,1.0,0 -43908860,"Call of Duty Modern Warfare 3",play,22.0,0 -43908860,"Portal 2",purchase,1.0,0 -43908860,"Portal 2",play,18.3,0 -43908860,"Call of Duty Black Ops",purchase,1.0,0 -43908860,"Call of Duty Black Ops",play,17.4,0 -43908860,"Half-Life 2 Episode Two",purchase,1.0,0 -43908860,"Half-Life 2 Episode Two",play,17.1,0 -43908860,"Half-Life 2 Episode One",purchase,1.0,0 -43908860,"Half-Life 2 Episode One",play,7.9,0 -43908860,"AdVenture Capitalist",purchase,1.0,0 -43908860,"AdVenture Capitalist",play,6.0,0 -43908860,"Half-Life 2",purchase,1.0,0 -43908860,"Half-Life 2",play,4.7,0 -43908860,"Team Fortress 2",purchase,1.0,0 -43908860,"Team Fortress 2",play,2.2,0 -43908860,"Half-Life 2 Lost Coast",purchase,1.0,0 -43908860,"Half-Life 2 Lost Coast",play,1.0,0 -43908860,"The Stanley Parable",purchase,1.0,0 -43908860,"The Stanley Parable",play,0.4,0 -43908860,"Emily is Away",purchase,1.0,0 -203238341,"Dota 2",purchase,1.0,0 -203238341,"Dota 2",play,1.8,0 -228343275,"Cities Skylines",purchase,1.0,0 -228343275,"Cities Skylines",play,4.6,0 -198249024,"Total War ROME II - Emperor Edition",purchase,1.0,0 -198249024,"Total War ROME II - Emperor Edition",play,530.0,0 -198249024,"The Elder Scrolls V Skyrim",purchase,1.0,0 -198249024,"The Elder Scrolls V Skyrim",play,341.0,0 -198249024,"Warmachine Tactics",purchase,1.0,0 -198249024,"Warmachine Tactics",play,10.4,0 -198249024,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -198249024,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -198249024,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -198249024,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -282061856,"America's Army Proving Grounds",purchase,1.0,0 -282061856,"Cry of Fear",purchase,1.0,0 -282061856,"Heroes & Generals",purchase,1.0,0 -282061856,"Spooky's House of Jump Scares",purchase,1.0,0 -282061856,"War Thunder",purchase,1.0,0 -33250362,"Half-Life 2 Deathmatch",purchase,1.0,0 -33250362,"Half-Life 2 Lost Coast",purchase,1.0,0 -248518501,"Dota 2",purchase,1.0,0 -248518501,"Dota 2",play,67.0,0 -248518501,"FreeStyle2 Street Basketball",purchase,1.0,0 -248518501,"Mortal Online",purchase,1.0,0 -248518501,"The Gate",purchase,1.0,0 -248518501,"Trove",purchase,1.0,0 -308692673,"Dota 2",purchase,1.0,0 -308692673,"Dota 2",play,2.9,0 -105796956,"Team Fortress 2",purchase,1.0,0 -105796956,"Team Fortress 2",play,88.0,0 -186055359,"Dota 2",purchase,1.0,0 -186055359,"Dota 2",play,1.1,0 -87821312,"Counter-Strike",purchase,1.0,0 -87821312,"Counter-Strike",play,1159.0,0 -87821312,"Counter-Strike Global Offensive",purchase,1.0,0 -87821312,"Counter-Strike Global Offensive",play,3.8,0 -87821312,"Counter-Strike Condition Zero",purchase,1.0,0 -87821312,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -85714521,"Counter-Strike Global Offensive",purchase,1.0,0 -85714521,"Counter-Strike Global Offensive",play,1378.0,0 -85714521,"Day of Defeat Source",purchase,1.0,0 -85714521,"Day of Defeat Source",play,109.0,0 -85714521,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -85714521,"Call of Duty Modern Warfare 3 - Multiplayer",play,66.0,0 -85714521,"Call of Duty World at War",purchase,1.0,0 -85714521,"Call of Duty World at War",play,65.0,0 -85714521,"PAYDAY 2",purchase,1.0,0 -85714521,"PAYDAY 2",play,57.0,0 -85714521,"Call of Duty Modern Warfare 3",purchase,1.0,0 -85714521,"Call of Duty Modern Warfare 3",play,24.0,0 -85714521,"Team Fortress 2",purchase,1.0,0 -85714521,"Team Fortress 2",play,23.0,0 -85714521,"Left 4 Dead 2",purchase,1.0,0 -85714521,"Left 4 Dead 2",play,18.8,0 -85714521,"Watch_Dogs",purchase,1.0,0 -85714521,"Watch_Dogs",play,9.7,0 -85714521,"Tribes Ascend",purchase,1.0,0 -85714521,"Tribes Ascend",play,3.9,0 -85714521,"Deus Ex Human Revolution",purchase,1.0,0 -85714521,"Deus Ex Human Revolution",play,0.9,0 -85714521,"Dota 2",purchase,1.0,0 -85714521,"Dota 2",play,0.5,0 -85714521,"God Mode",purchase,1.0,0 -85714521,"God Mode",play,0.3,0 -85714521,"Unturned",purchase,1.0,0 -85714521,"Unturned",play,0.2,0 -170375966,"Dota 2",purchase,1.0,0 -170375966,"Dota 2",play,40.0,0 -130950166,"Dota 2",purchase,1.0,0 -130950166,"Dota 2",play,0.1,0 -194545521,"Dota 2",purchase,1.0,0 -194545521,"Dota 2",play,26.0,0 -194545521,"Crash Time II",purchase,1.0,0 -194545521,"Crash Time II",play,3.3,0 -109458201,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -109458201,"Call of Duty Black Ops II - Multiplayer",play,338.0,0 -109458201,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -109458201,"Call of Duty Black Ops II - Zombies",play,36.0,0 -109458201,"Call of Duty Black Ops II",purchase,1.0,0 -109458201,"Call of Duty Black Ops II",play,13.5,0 -109458201,"Call of Duty Modern Warfare 3",purchase,1.0,0 -109458201,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -109458201,"Call of Duty World at War",purchase,1.0,0 -23718710,"Counter-Strike",purchase,1.0,0 -23718710,"Counter-Strike",play,3.0,0 -23718710,"Counter-Strike Condition Zero",purchase,1.0,0 -23718710,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -126602285,"Serious Sam HD The Second Encounter",purchase,1.0,0 -126602285,"Serious Sam HD The Second Encounter",play,0.4,0 -252696188,"Dota 2",purchase,1.0,0 -252696188,"Dota 2",play,4.9,0 -95440541,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -95440541,"Call of Duty Modern Warfare 3 - Multiplayer",play,337.0,0 -95440541,"Call of Duty Modern Warfare 3",purchase,1.0,0 -95440541,"Call of Duty Modern Warfare 3",play,35.0,0 -95440541,"R.U.S.E",purchase,1.0,0 -95440541,"R.U.S.E",play,6.9,0 -95440541,"Team Fortress 2",purchase,1.0,0 -95440541,"Team Fortress 2",play,5.8,0 -95440541,"R.U.S.E.",purchase,1.0,0 -49767455,"Counter-Strike Source",purchase,1.0,0 -49767455,"Counter-Strike Source",play,1534.0,0 -49767455,"Counter-Strike Global Offensive",purchase,1.0,0 -49767455,"Counter-Strike Global Offensive",play,1129.0,0 -49767455,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -49767455,"Call of Duty Modern Warfare 2 - Multiplayer",play,270.0,0 -49767455,"Terraria",purchase,1.0,0 -49767455,"Terraria",play,94.0,0 -49767455,"Rocket League",purchase,1.0,0 -49767455,"Rocket League",play,93.0,0 -49767455,"PAYDAY 2",purchase,1.0,0 -49767455,"PAYDAY 2",play,43.0,0 -49767455,"Left 4 Dead 2",purchase,1.0,0 -49767455,"Left 4 Dead 2",play,33.0,0 -49767455,"AdVenture Capitalist",purchase,1.0,0 -49767455,"AdVenture Capitalist",play,24.0,0 -49767455,"Team Fortress 2",purchase,1.0,0 -49767455,"Team Fortress 2",play,13.5,0 -49767455,"Hitman Absolution",purchase,1.0,0 -49767455,"Hitman Absolution",play,9.1,0 -49767455,"PAYDAY The Heist",purchase,1.0,0 -49767455,"PAYDAY The Heist",play,7.1,0 -49767455,"Arma 2 Operation Arrowhead",purchase,1.0,0 -49767455,"Arma 2 Operation Arrowhead",play,5.9,0 -49767455,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -49767455,"Call of Duty Modern Warfare 3 - Multiplayer",play,4.0,0 -49767455,"Heroes & Generals",purchase,1.0,0 -49767455,"Heroes & Generals",play,2.3,0 -49767455,"Dead Rising 2",purchase,1.0,0 -49767455,"Dead Rising 2",play,2.2,0 -49767455,"F.E.A.R.",purchase,1.0,0 -49767455,"F.E.A.R.",play,2.1,0 -49767455,"Dota 2",purchase,1.0,0 -49767455,"Dota 2",play,1.8,0 -49767455,"Rogue Warrior",purchase,1.0,0 -49767455,"Rogue Warrior",play,1.5,0 -49767455,"Call of Duty Modern Warfare 2",purchase,1.0,0 -49767455,"Call of Duty Modern Warfare 2",play,0.7,0 -49767455,"Hitman Sniper Challenge",purchase,1.0,0 -49767455,"Hitman Sniper Challenge",play,0.7,0 -49767455,"Worms Ultimate Mayhem",purchase,1.0,0 -49767455,"Worms Ultimate Mayhem",play,0.5,0 -49767455,"Worms Armageddon",purchase,1.0,0 -49767455,"Worms Armageddon",play,0.3,0 -49767455,"Alien Swarm",purchase,1.0,0 -49767455,"Alien Swarm",play,0.2,0 -49767455,"BRINK",purchase,1.0,0 -49767455,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -49767455,"F.E.A.R. Extraction Point",purchase,1.0,0 -49767455,"Arma 2",purchase,1.0,0 -49767455,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -49767455,"Call of Duty Modern Warfare 3",purchase,1.0,0 -49767455,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -49767455,"Insurgency",purchase,1.0,0 -49767455,"PAYDAY Wolf Pack",purchase,1.0,0 -49767455,"Portal",purchase,1.0,0 -49767455,"Sniper Ghost Warrior",purchase,1.0,0 -49767455,"Worms Blast",purchase,1.0,0 -49767455,"Worms Crazy Golf",purchase,1.0,0 -49767455,"Worms Pinball",purchase,1.0,0 -304222866,"Garry's Mod",purchase,1.0,0 -304222866,"Garry's Mod",play,1.6,0 -227940830,"Gear Up",purchase,1.0,0 -227940830,"Unturned",purchase,1.0,0 -303269114,"Dota 2",purchase,1.0,0 -303269114,"Dota 2",play,67.0,0 -238411403,"Dota 2",purchase,1.0,0 -238411403,"Dota 2",play,0.5,0 -97238489,"Train Simulator",purchase,1.0,0 -97238489,"Train Simulator",play,24.0,0 -58117481,"Counter-Strike Source",purchase,1.0,0 -58117481,"Counter-Strike Source",play,278.0,0 -58117481,"Day of Defeat Source",purchase,1.0,0 -58117481,"Half-Life 2 Deathmatch",purchase,1.0,0 -58117481,"Half-Life 2 Lost Coast",purchase,1.0,0 -61676491,"Counter-Strike Source",purchase,1.0,0 -61676491,"Counter-Strike Source",play,1097.0,0 -61676491,"Rocket League",purchase,1.0,0 -61676491,"Rocket League",play,479.0,0 -61676491,"Warframe",purchase,1.0,0 -61676491,"Warframe",play,170.0,0 -61676491,"Counter-Strike Global Offensive",purchase,1.0,0 -61676491,"Counter-Strike Global Offensive",play,122.0,0 -61676491,"H1Z1",purchase,1.0,0 -61676491,"H1Z1",play,77.0,0 -61676491,"Dungeon Defenders",purchase,1.0,0 -61676491,"Dungeon Defenders",play,47.0,0 -61676491,"Dungeon Defenders II",purchase,1.0,0 -61676491,"Dungeon Defenders II",play,40.0,0 -61676491,"Grand Theft Auto IV",purchase,1.0,0 -61676491,"Grand Theft Auto IV",play,34.0,0 -61676491,"Hammerwatch",purchase,1.0,0 -61676491,"Hammerwatch",play,32.0,0 -61676491,"The Binding of Isaac",purchase,1.0,0 -61676491,"The Binding of Isaac",play,23.0,0 -61676491,"Alien Swarm",purchase,1.0,0 -61676491,"Alien Swarm",play,16.6,0 -61676491,"Farming Simulator 2011",purchase,1.0,0 -61676491,"Farming Simulator 2011",play,15.9,0 -61676491,"Sleeping Dogs",purchase,1.0,0 -61676491,"Sleeping Dogs",play,13.4,0 -61676491,"Batman Arkham Origins",purchase,1.0,0 -61676491,"Batman Arkham Origins",play,12.9,0 -61676491,"Darksiders",purchase,1.0,0 -61676491,"Darksiders",play,12.1,0 -61676491,"Torchlight II",purchase,1.0,0 -61676491,"Torchlight II",play,10.5,0 -61676491,"Red Faction Armageddon",purchase,1.0,0 -61676491,"Red Faction Armageddon",play,8.6,0 -61676491,"Terraria",purchase,1.0,0 -61676491,"Terraria",play,8.6,0 -61676491,"Team Fortress 2",purchase,1.0,0 -61676491,"Team Fortress 2",play,7.7,0 -61676491,"Borderlands 2",purchase,1.0,0 -61676491,"Borderlands 2",play,7.0,0 -61676491,"Farming Simulator 2013",purchase,1.0,0 -61676491,"Farming Simulator 2013",play,6.9,0 -61676491,"Marvel Heroes 2015",purchase,1.0,0 -61676491,"Marvel Heroes 2015",play,6.4,0 -61676491,"Serious Sam HD The Second Encounter",purchase,1.0,0 -61676491,"Serious Sam HD The Second Encounter",play,5.9,0 -61676491,"Dota 2",purchase,1.0,0 -61676491,"Dota 2",play,5.7,0 -61676491,"Left 4 Dead 2",purchase,1.0,0 -61676491,"Left 4 Dead 2",play,5.4,0 -61676491,"Mafia II",purchase,1.0,0 -61676491,"Mafia II",play,5.2,0 -61676491,"Torchlight",purchase,1.0,0 -61676491,"Torchlight",play,4.6,0 -61676491,"Orcs Must Die! 2",purchase,1.0,0 -61676491,"Orcs Must Die! 2",play,4.6,0 -61676491,"Total War ROME II - Emperor Edition",purchase,1.0,0 -61676491,"Total War ROME II - Emperor Edition",play,4.2,0 -61676491,"Viking Battle for Asgard",purchase,1.0,0 -61676491,"Viking Battle for Asgard",play,3.6,0 -61676491,"Medal of Honor(TM) Single Player",purchase,1.0,0 -61676491,"Medal of Honor(TM) Single Player",play,3.5,0 -61676491,"Orcs Must Die!",purchase,1.0,0 -61676491,"Orcs Must Die!",play,3.5,0 -61676491,"DayZ",purchase,1.0,0 -61676491,"DayZ",play,3.2,0 -61676491,"Just Cause 2",purchase,1.0,0 -61676491,"Just Cause 2",play,3.2,0 -61676491,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -61676491,"Batman Arkham Asylum GOTY Edition",play,3.0,0 -61676491,"The Bureau XCOM Declassified",purchase,1.0,0 -61676491,"The Bureau XCOM Declassified",play,3.0,0 -61676491,"DC Universe Online",purchase,1.0,0 -61676491,"DC Universe Online",play,2.9,0 -61676491,"L.A. Noire",purchase,1.0,0 -61676491,"L.A. Noire",play,2.7,0 -61676491,"Aliens vs. Predator",purchase,1.0,0 -61676491,"Aliens vs. Predator",play,2.7,0 -61676491,"Warlock - Master of the Arcane",purchase,1.0,0 -61676491,"Warlock - Master of the Arcane",play,2.6,0 -61676491,"Crysis 2 Maximum Edition",purchase,1.0,0 -61676491,"Crysis 2 Maximum Edition",play,2.4,0 -61676491,"FINAL FANTASY XIV A Realm Reborn",purchase,1.0,0 -61676491,"FINAL FANTASY XIV A Realm Reborn",play,2.3,0 -61676491,"Hero Siege",purchase,1.0,0 -61676491,"Hero Siege",play,2.3,0 -61676491,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -61676491,"Red Faction Guerrilla Steam Edition",play,2.2,0 -61676491,"DLC Quest",purchase,1.0,0 -61676491,"DLC Quest",play,1.6,0 -61676491,"How to Survive",purchase,1.0,0 -61676491,"How to Survive",play,1.5,0 -61676491,"Aliens versus Predator Classic 2000",purchase,1.0,0 -61676491,"Aliens versus Predator Classic 2000",play,1.5,0 -61676491,"PAYDAY 2",purchase,1.0,0 -61676491,"PAYDAY 2",play,1.3,0 -61676491,"Portal",purchase,1.0,0 -61676491,"Portal",play,1.3,0 -61676491,"Arma 2 Operation Arrowhead",purchase,1.0,0 -61676491,"Arma 2 Operation Arrowhead",play,1.2,0 -61676491,"Sid Meier's Civilization III Complete",purchase,1.0,0 -61676491,"Sid Meier's Civilization III Complete",play,1.1,0 -61676491,"One Way Heroics",purchase,1.0,0 -61676491,"One Way Heroics",play,1.0,0 -61676491,"Clicker Heroes",purchase,1.0,0 -61676491,"Clicker Heroes",play,1.0,0 -61676491,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -61676491,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,1.0,0 -61676491,"Crusader Kings II",purchase,1.0,0 -61676491,"Crusader Kings II",play,0.9,0 -61676491,"Spec Ops The Line",purchase,1.0,0 -61676491,"Spec Ops The Line",play,0.8,0 -61676491,"Before the Echo",purchase,1.0,0 -61676491,"Before the Echo",play,0.8,0 -61676491,"DUNGEONS - Steam Special Edition",purchase,1.0,0 -61676491,"DUNGEONS - Steam Special Edition",play,0.8,0 -61676491,"Divinity Dragon Commander",purchase,1.0,0 -61676491,"Divinity Dragon Commander",play,0.7,0 -61676491,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -61676491,"Burnout Paradise The Ultimate Box",play,0.7,0 -61676491,"Sanctum 2",purchase,1.0,0 -61676491,"Sanctum 2",play,0.6,0 -61676491,"GRID Autosport",purchase,1.0,0 -61676491,"GRID Autosport",play,0.6,0 -61676491,"F.E.A.R. 3",purchase,1.0,0 -61676491,"F.E.A.R. 3",play,0.6,0 -61676491,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -61676491,"Dragon Age Origins - Ultimate Edition",play,0.6,0 -61676491,"Afterfall InSanity Extended Edition",purchase,1.0,0 -61676491,"Afterfall InSanity Extended Edition",play,0.5,0 -61676491,"Delver",purchase,1.0,0 -61676491,"Delver",play,0.5,0 -61676491,"DmC Devil May Cry",purchase,1.0,0 -61676491,"DmC Devil May Cry",play,0.5,0 -61676491,"Guardians of Middle-earth",purchase,1.0,0 -61676491,"Guardians of Middle-earth",play,0.5,0 -61676491,"Mirror's Edge",purchase,1.0,0 -61676491,"Mirror's Edge",play,0.4,0 -61676491,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -61676491,"Command and Conquer Red Alert 3 - Uprising",play,0.4,0 -61676491,"Ultra Street Fighter IV",purchase,1.0,0 -61676491,"Ultra Street Fighter IV",play,0.4,0 -61676491,"Killing Floor",purchase,1.0,0 -61676491,"Killing Floor",play,0.3,0 -61676491,"FORCED",purchase,1.0,0 -61676491,"FORCED",play,0.3,0 -61676491,"Natural Selection 2",purchase,1.0,0 -61676491,"Natural Selection 2",play,0.3,0 -61676491,"Dungeonland",purchase,1.0,0 -61676491,"Dungeonland",play,0.3,0 -61676491,"Arma 2",purchase,1.0,0 -61676491,"Arma 2",play,0.3,0 -61676491,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -61676491,"Dark Souls Prepare to Die Edition",play,0.3,0 -61676491,"Red Faction",purchase,1.0,0 -61676491,"Red Faction",play,0.3,0 -61676491,"Path of Exile",purchase,1.0,0 -61676491,"Path of Exile",play,0.2,0 -61676491,"ArcheAge",purchase,1.0,0 -61676491,"ArcheAge",play,0.2,0 -61676491,"Metro 2033",purchase,1.0,0 -61676491,"Metro 2033",play,0.2,0 -61676491,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -61676491,"S.T.A.L.K.E.R. Clear Sky",play,0.2,0 -61676491,"Scribblenauts Unlimited",purchase,1.0,0 -61676491,"Scribblenauts Unlimited",play,0.2,0 -61676491,"Age of Empires II HD Edition",purchase,1.0,0 -61676491,"Age of Empires II HD Edition",play,0.2,0 -61676491,"Leviathan Warships",purchase,1.0,0 -61676491,"Leviathan Warships",play,0.2,0 -61676491,"The Witcher Enhanced Edition",purchase,1.0,0 -61676491,"The Witcher Enhanced Edition",play,0.2,0 -61676491,"Europa Universalis III",purchase,1.0,0 -61676491,"Europa Universalis III",play,0.2,0 -61676491,"Prince of Persia The Sands of Time",purchase,1.0,0 -61676491,"Prince of Persia The Sands of Time",play,0.1,0 -61676491,"Post Apocalyptic Mayhem",purchase,1.0,0 -61676491,"Post Apocalyptic Mayhem",play,0.1,0 -61676491,"XCOM Enemy Unknown",purchase,1.0,0 -61676491,"Magicka",purchase,1.0,0 -61676491,"RIFT",purchase,1.0,0 -61676491,"FINAL FANTASY VIII",purchase,1.0,0 -61676491,"Midnight Club II",purchase,1.0,0 -61676491,"Kerbal Space Program",purchase,1.0,0 -61676491,"resident evil 4 / biohazard 4",purchase,1.0,0 -61676491,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -61676491,"Max Payne 3",purchase,1.0,0 -61676491,"Abyss Odyssey",purchase,1.0,0 -61676491,"Age of Empires II HD The Forgotten",purchase,1.0,0 -61676491,"Amnesia The Dark Descent",purchase,1.0,0 -61676491,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -61676491,"A Story About My Uncle",purchase,1.0,0 -61676491,"Batman Arkham City GOTY",purchase,1.0,0 -61676491,"Bionic Commando Rearmed",purchase,1.0,0 -61676491,"BioShock",purchase,1.0,0 -61676491,"BioShock 2",purchase,1.0,0 -61676491,"BioShock Infinite",purchase,1.0,0 -61676491,"Blackguards",purchase,1.0,0 -61676491,"Blackguards 2",purchase,1.0,0 -61676491,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -61676491,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -61676491,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -61676491,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -61676491,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -61676491,"Cities in Motion 2",purchase,1.0,0 -61676491,"Citizens of Earth",purchase,1.0,0 -61676491,"Colin McRae Rally",purchase,1.0,0 -61676491,"Company of Heroes",purchase,1.0,0 -61676491,"Company of Heroes (New Steam Version)",purchase,1.0,0 -61676491,"Contagion",purchase,1.0,0 -61676491,"Cryostasis",purchase,1.0,0 -61676491,"Darksiders II",purchase,1.0,0 -61676491,"Darksiders II Deathinitive Edition",purchase,1.0,0 -61676491,"Darksiders II Soundtrack",purchase,1.0,0 -61676491,"Darksiders Soundtrack",purchase,1.0,0 -61676491,"Dead Space",purchase,1.0,0 -61676491,"DiRT 3 Complete Edition",purchase,1.0,0 -61676491,"DiRT Showdown",purchase,1.0,0 -61676491,"Dungeonland - All access pass",purchase,1.0,0 -61676491,"DUNGEONS - The Dark Lord (Steam Special Edition)",purchase,1.0,0 -61676491,"Empire Total War",purchase,1.0,0 -61676491,"Enemy Mind",purchase,1.0,0 -61676491,"Euro Truck Simulator 2",purchase,1.0,0 -61676491,"F.E.A.R.",purchase,1.0,0 -61676491,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -61676491,"F.E.A.R. Extraction Point",purchase,1.0,0 -61676491,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -61676491,"Fable - The Lost Chapters",purchase,1.0,0 -61676491,"FINAL FANTASY VII",purchase,1.0,0 -61676491,"FINAL FANTASY XIV A Realm Reborn (NA version)",purchase,1.0,0 -61676491,"Garry's Mod",purchase,1.0,0 -61676491,"Grand Theft Auto San Andreas",purchase,1.0,0 -61676491,"Grand Theft Auto San Andreas",purchase,1.0,0 -61676491,"GRID",purchase,1.0,0 -61676491,"GRID 2",purchase,1.0,0 -61676491,"GRID 2 GTR Racing Pack",purchase,1.0,0 -61676491,"H1Z1 Test Server",purchase,1.0,0 -61676491,"Hitman 2 Silent Assassin",purchase,1.0,0 -61676491,"Hitman Absolution",purchase,1.0,0 -61676491,"Hitman Blood Money",purchase,1.0,0 -61676491,"Hitman Codename 47",purchase,1.0,0 -61676491,"Hitman Contracts",purchase,1.0,0 -61676491,"Hitman Sniper Challenge",purchase,1.0,0 -61676491,"Hospital Tycoon",purchase,1.0,0 -61676491,"Insurgency",purchase,1.0,0 -61676491,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -61676491,"Lost Planet 3",purchase,1.0,0 -61676491,"Magicka Vietnam",purchase,1.0,0 -61676491,"Max Payne",purchase,1.0,0 -61676491,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -61676491,"Max Payne 3 Season Pass",purchase,1.0,0 -61676491,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -61676491,"Medal of Honor Pre-Order",purchase,1.0,0 -61676491,"MEDIEVAL Total War - Gold Edition",purchase,1.0,0 -61676491,"Medieval II Total War",purchase,1.0,0 -61676491,"Medieval II Total War Kingdoms",purchase,1.0,0 -61676491,"Men of War Assault Squad",purchase,1.0,0 -61676491,"Mortal Kombat Kollection",purchase,1.0,0 -61676491,"Napoleon Total War",purchase,1.0,0 -61676491,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -61676491,"Operation Flashpoint Red River",purchase,1.0,0 -61676491,"Overlord",purchase,1.0,0 -61676491,"Overlord Raising Hell",purchase,1.0,0 -61676491,"Overlord II",purchase,1.0,0 -61676491,"Prince of Persia The Two Thrones",purchase,1.0,0 -61676491,"Prince of Persia Warrior Within",purchase,1.0,0 -61676491,"Psychonauts",purchase,1.0,0 -61676491,"Psychonauts Demo",purchase,1.0,0 -61676491,"Receiver",purchase,1.0,0 -61676491,"Red Faction Armageddon Soundtrack",purchase,1.0,0 -61676491,"Red Faction II",purchase,1.0,0 -61676491,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -61676491,"Remember Me",purchase,1.0,0 -61676491,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -61676491,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -61676491,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -61676491,"Rise of the Argonauts",purchase,1.0,0 -61676491,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -61676491,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -61676491,"Serious Sam 3 BFE",purchase,1.0,0 -61676491,"SHOGUN Total War - Gold Edition",purchase,1.0,0 -61676491,"Skyborn",purchase,1.0,0 -61676491,"Sniper Elite V2",purchase,1.0,0 -61676491,"Spintires",purchase,1.0,0 -61676491,"Strider",purchase,1.0,0 -61676491,"Teeworlds",purchase,1.0,0 -61676491,"Teleglitch Die More Edition",purchase,1.0,0 -61676491,"Teslagrad",purchase,1.0,0 -61676491,"The Darkness II",purchase,1.0,0 -61676491,"The Lord of the Rings War in the North",purchase,1.0,0 -61676491,"The Showdown Effect",purchase,1.0,0 -61676491,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -61676491,"Tomb Raider",purchase,1.0,0 -61676491,"Total War SHOGUN 2",purchase,1.0,0 -61676491,"Toybox Turbos",purchase,1.0,0 -61676491,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -61676491,"TUG",purchase,1.0,0 -61676491,"Vertiginous Golf",purchase,1.0,0 -61676491,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -61676491,"War of the Roses",purchase,1.0,0 -61676491,"War of the Roses Kingmaker",purchase,1.0,0 -61676491,"War of the Roses Balance Beta",purchase,1.0,0 -61676491,"X-COM Apocalypse",purchase,1.0,0 -61676491,"X-COM Enforcer",purchase,1.0,0 -61676491,"X-COM Interceptor",purchase,1.0,0 -61676491,"X-COM Terror from the Deep",purchase,1.0,0 -61676491,"X-COM UFO Defense",purchase,1.0,0 -223991842,"Dota 2",purchase,1.0,0 -223991842,"Dota 2",play,1.3,0 -166753156,"Warframe",purchase,1.0,0 -166753156,"Warframe",play,1159.0,0 -166753156,"Euro Truck Simulator 2",purchase,1.0,0 -166753156,"Euro Truck Simulator 2",play,34.0,0 -166753156,"Defiance",purchase,1.0,0 -166753156,"Defiance",play,22.0,0 -166753156,"PlanetSide 2",purchase,1.0,0 -166753156,"PlanetSide 2",play,13.1,0 -166753156,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -166753156,"Tom Clancy's Ghost Recon Phantoms - EU",play,11.5,0 -166753156,"RaceRoom Racing Experience ",purchase,1.0,0 -166753156,"RaceRoom Racing Experience ",play,9.2,0 -166753156,"APB Reloaded",purchase,1.0,0 -166753156,"APB Reloaded",play,4.5,0 -166753156,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -166753156,"A.V.A - Alliance of Valiant Arms",play,4.3,0 -166753156,"HAWKEN",purchase,1.0,0 -166753156,"HAWKEN",play,4.2,0 -166753156,"ArcheAge",purchase,1.0,0 -166753156,"ArcheAge",play,4.0,0 -166753156,"Warface",purchase,1.0,0 -166753156,"Warface",play,2.4,0 -166753156,"Counter-Strike Nexon Zombies",purchase,1.0,0 -166753156,"Counter-Strike Nexon Zombies",play,0.8,0 -166753156,"Firefall",purchase,1.0,0 -166753156,"Firefall",play,0.8,0 -166753156,"Metal War Online Retribution",purchase,1.0,0 -166753156,"Metal War Online Retribution",play,0.3,0 -166753156,"AirBuccaneers",purchase,1.0,0 -166753156,"Frozen Hearth",purchase,1.0,0 -166753156,"Tribes Ascend",purchase,1.0,0 -135879753,"Counter-Strike Global Offensive",purchase,1.0,0 -135879753,"Counter-Strike Global Offensive",play,4659.0,0 -135879753,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -135879753,"Call of Duty Black Ops II - Multiplayer",play,35.0,0 -135879753,"theHunter",purchase,1.0,0 -135879753,"theHunter",play,31.0,0 -135879753,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -135879753,"Call of Duty 4 Modern Warfare",play,21.0,0 -135879753,"Half-Life 2",purchase,1.0,0 -135879753,"Half-Life 2",play,19.3,0 -135879753,"Insurgency",purchase,1.0,0 -135879753,"Insurgency",play,16.6,0 -135879753,"Deus Ex Human Revolution",purchase,1.0,0 -135879753,"Deus Ex Human Revolution",play,9.0,0 -135879753,"Half-Life 2 Episode One",purchase,1.0,0 -135879753,"Half-Life 2 Episode One",play,5.4,0 -135879753,"Call of Duty Black Ops II",purchase,1.0,0 -135879753,"Call of Duty Black Ops II",play,3.3,0 -135879753,"DayZ",purchase,1.0,0 -135879753,"DayZ",play,3.0,0 -135879753,"Assassin's Creed",purchase,1.0,0 -135879753,"Assassin's Creed",play,2.0,0 -135879753,"Half-Life Deathmatch Source",purchase,1.0,0 -135879753,"Half-Life Deathmatch Source",play,1.1,0 -135879753,"Counter-Strike Condition Zero",purchase,1.0,0 -135879753,"Counter-Strike Condition Zero",play,0.9,0 -135879753,"Team Fortress Classic",purchase,1.0,0 -135879753,"Team Fortress Classic",play,0.8,0 -135879753,"Half-Life 2 Deathmatch",purchase,1.0,0 -135879753,"Half-Life 2 Deathmatch",play,0.8,0 -135879753,"Call of Duty World at War",purchase,1.0,0 -135879753,"Call of Duty World at War",play,0.7,0 -135879753,"Counter-Strike",purchase,1.0,0 -135879753,"Counter-Strike",play,0.6,0 -135879753,"Half-Life Opposing Force",purchase,1.0,0 -135879753,"Half-Life Opposing Force",play,0.5,0 -135879753,"Crysis 2 Maximum Edition",purchase,1.0,0 -135879753,"Crysis",purchase,1.0,0 -135879753,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -135879753,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -135879753,"Counter-Strike Source",purchase,1.0,0 -135879753,"Crysis Warhead",purchase,1.0,0 -135879753,"Crysis Wars",purchase,1.0,0 -135879753,"DiRT 3",purchase,1.0,0 -135879753,"DiRT 3 Complete Edition",purchase,1.0,0 -135879753,"Half-Life",purchase,1.0,0 -135879753,"Half-Life 2 Episode Two",purchase,1.0,0 -135879753,"Half-Life 2 Lost Coast",purchase,1.0,0 -135879753,"Half-Life Blue Shift",purchase,1.0,0 -135879753,"Half-Life Source",purchase,1.0,0 -135879753,"ORION Prelude",purchase,1.0,0 -101369449,"Zombie Panic Source",purchase,1.0,0 -101369449,"Zombie Panic Source",play,395.0,0 -101369449,"Insurgency Modern Infantry Combat",purchase,1.0,0 -101369449,"Insurgency Modern Infantry Combat",play,11.0,0 -101369449,"Age of Chivalry",purchase,1.0,0 -101369449,"Age of Chivalry",play,0.9,0 -176033341,"Team Fortress 2",purchase,1.0,0 -176033341,"Team Fortress 2",play,429.0,0 -176033341,"Rust",purchase,1.0,0 -176033341,"Rust",play,5.5,0 -176033341,"Age of Empires II HD Edition",purchase,1.0,0 -176033341,"Counter-Strike Global Offensive",purchase,1.0,0 -176033341,"Defiance",purchase,1.0,0 -176033341,"Dungeon Defenders II",purchase,1.0,0 -176033341,"Loadout",purchase,1.0,0 -176033341,"Sniper Elite V2",purchase,1.0,0 -176033341,"The Elder Scrolls V Skyrim",purchase,1.0,0 -103363050,"Orcs Must Die!",purchase,1.0,0 -103363050,"Orcs Must Die!",play,32.0,0 -171512034,"Dota 2",purchase,1.0,0 -171512034,"Dota 2",play,55.0,0 -171512034,"Free to Play",purchase,1.0,0 -171512034,"Neverwinter",purchase,1.0,0 -171512034,"Path of Exile",purchase,1.0,0 -171512034,"RIFT",purchase,1.0,0 -171512034,"SMITE",purchase,1.0,0 -171512034,"Warframe",purchase,1.0,0 -267438860,"Dota 2",purchase,1.0,0 -267438860,"Dota 2",play,0.6,0 -68224834,"War of the Roses",purchase,1.0,0 -68224834,"War of the Roses",play,114.0,0 -68224834,"Path of Exile",purchase,1.0,0 -68224834,"Path of Exile",play,25.0,0 -68224834,"Counter-Strike Global Offensive",purchase,1.0,0 -68224834,"Counter-Strike Global Offensive",play,19.6,0 -68224834,"Borderlands 2",purchase,1.0,0 -68224834,"Borderlands 2",play,15.9,0 -68224834,"War of the Vikings",purchase,1.0,0 -68224834,"War of the Vikings",play,14.8,0 -68224834,"GRID Autosport",purchase,1.0,0 -68224834,"GRID Autosport",play,14.1,0 -68224834,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -68224834,"Call of Duty Ghosts - Multiplayer",play,11.2,0 -68224834,"Torchlight II",purchase,1.0,0 -68224834,"Torchlight II",play,9.6,0 -68224834,"Call of Duty Ghosts",purchase,1.0,0 -68224834,"Call of Duty Ghosts",play,5.1,0 -68224834,"The Elder Scrolls V Skyrim",purchase,1.0,0 -68224834,"The Elder Scrolls V Skyrim",play,4.8,0 -68224834,"War of the Roses Balance Beta",purchase,1.0,0 -68224834,"War of the Roses Balance Beta",play,0.6,0 -68224834,"Counter-Strike Source",purchase,1.0,0 -68224834,"Counter-Strike Source",play,0.2,0 -68224834,"Team Fortress 2",purchase,1.0,0 -68224834,"Team Fortress 2",play,0.2,0 -68224834,"Left 4 Dead 2",purchase,1.0,0 -68224834,"War of the Roses Kingmaker",purchase,1.0,0 -110928152,"Dota 2",purchase,1.0,0 -110928152,"Dota 2",play,9.2,0 -155613860,"Blade Symphony",purchase,1.0,0 -155613860,"Blade Symphony",play,2.2,0 -155613860,"Brawlhalla",purchase,1.0,0 -155613860,"Chivalry Medieval Warfare",purchase,1.0,0 -155613860,"GameLoading Rise of the Indies",purchase,1.0,0 -155613860,"Patch testing for Chivalry",purchase,1.0,0 -157469247,"Garry's Mod",purchase,1.0,0 -157469247,"Garry's Mod",play,80.0,0 -157469247,"Grand Theft Auto San Andreas",purchase,1.0,0 -157469247,"Grand Theft Auto San Andreas",play,22.0,0 -157469247,"Counter-Strike Global Offensive",purchase,1.0,0 -157469247,"Counter-Strike Global Offensive",play,16.9,0 -157469247,"Team Fortress 2",purchase,1.0,0 -157469247,"Team Fortress 2",play,16.7,0 -157469247,"Half-Life 2",purchase,1.0,0 -157469247,"Half-Life 2",play,2.1,0 -157469247,"Left 4 Dead 2",purchase,1.0,0 -157469247,"Left 4 Dead 2",play,1.5,0 -157469247,"Starbound",purchase,1.0,0 -157469247,"Starbound",play,1.3,0 -157469247,"Counter-Strike Source",purchase,1.0,0 -157469247,"Counter-Strike Source",play,1.2,0 -157469247,"The Bridge",purchase,1.0,0 -157469247,"The Bridge",play,0.8,0 -157469247,"Bloody Trapland",purchase,1.0,0 -157469247,"Bloody Trapland",play,0.7,0 -157469247,"Five Nights at Freddy's",purchase,1.0,0 -157469247,"Five Nights at Freddy's",play,0.6,0 -157469247,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -157469247,"A.V.A - Alliance of Valiant Arms",play,0.2,0 -157469247,"Portal",purchase,1.0,0 -157469247,"Portal",play,0.1,0 -157469247,"Counter-Strike",purchase,1.0,0 -157469247,"Half-Life 2 Episode Two",purchase,1.0,0 -157469247,"Half-Life 2 Episode One",purchase,1.0,0 -157469247,"Grand Theft Auto San Andreas",purchase,1.0,0 -157469247,"Counter-Strike Condition Zero",purchase,1.0,0 -157469247,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -157469247,"Half-Life 2 Lost Coast",purchase,1.0,0 -157469247,"Heroes & Generals",purchase,1.0,0 -157469247,"Starbound - Unstable",purchase,1.0,0 -80119032,"Team Fortress 2",purchase,1.0,0 -80119032,"Team Fortress 2",play,309.0,0 -80119032,"Dead Island",purchase,1.0,0 -80119032,"Dead Island",play,11.9,0 -80119032,"BIT.TRIP RUNNER",purchase,1.0,0 -80119032,"BIT.TRIP RUNNER",play,0.2,0 -80119032,"Alien Breed 2 Assault",purchase,1.0,0 -80119032,"And Yet It Moves",purchase,1.0,0 -80119032,"Cogs",purchase,1.0,0 -80119032,"Crayon Physics Deluxe",purchase,1.0,0 -80119032,"Firefall",purchase,1.0,0 -80119032,"Hammerfight",purchase,1.0,0 -80119032,"Jamestown",purchase,1.0,0 -80119032,"Left 4 Dead 2",purchase,1.0,0 -80119032,"NightSky",purchase,1.0,0 -80119032,"PAYDAY The Heist",purchase,1.0,0 -80119032,"Shank",purchase,1.0,0 -80119032,"Space Hack",purchase,1.0,0 -80119032,"Super Meat Boy",purchase,1.0,0 -80119032,"The Expendabros",purchase,1.0,0 -80119032,"VVVVVV",purchase,1.0,0 -128831281,"Dota 2",purchase,1.0,0 -128831281,"Dota 2",play,1445.0,0 -176743370,"Dota 2",purchase,1.0,0 -176743370,"Dota 2",play,3.7,0 -176743370,"Team Fortress 2",purchase,1.0,0 -176743370,"Team Fortress 2",play,0.2,0 -122803519,"Unturned",purchase,1.0,0 -122803519,"Unturned",play,146.0,0 -122803519,"Super Hexagon",purchase,1.0,0 -122803519,"Super Hexagon",play,37.0,0 -122803519,"Brawlhalla",purchase,1.0,0 -122803519,"Brawlhalla",play,21.0,0 -122803519,"Left 4 Dead 2",purchase,1.0,0 -122803519,"Left 4 Dead 2",play,17.5,0 -122803519,"VVVVVV",purchase,1.0,0 -122803519,"VVVVVV",play,6.4,0 -122803519,"Neverwinter",purchase,1.0,0 -122803519,"Neverwinter",play,6.3,0 -122803519,"BLOCKADE 3D",purchase,1.0,0 -122803519,"BLOCKADE 3D",play,3.4,0 -122803519,"Heroes & Generals",purchase,1.0,0 -122803519,"Heroes & Generals",play,1.6,0 -122803519,"Robocraft",purchase,1.0,0 -122803519,"Robocraft",play,0.7,0 -122803519,"Team Fortress 2",purchase,1.0,0 -122803519,"Team Fortress 2",play,0.6,0 -122803519,"Castle Crashers",purchase,1.0,0 -122803519,"Castle Crashers",play,0.3,0 -122803519,"Dragomon Hunter",purchase,1.0,0 -122803519,"Dragomon Hunter",play,0.2,0 -122803519,"Don't Starve Together Beta",purchase,1.0,0 -122803519,"Dragomon Hunter - Welcome Gift",purchase,1.0,0 -187498422,"Dota 2",purchase,1.0,0 -187498422,"Dota 2",play,6.8,0 -34177747,"Team Fortress 2",purchase,1.0,0 -34177747,"Team Fortress 2",play,1221.0,0 -34177747,"Warframe",purchase,1.0,0 -34177747,"Warframe",play,788.0,0 -34177747,"Terraria",purchase,1.0,0 -34177747,"Terraria",play,717.0,0 -34177747,"Chivalry Medieval Warfare",purchase,1.0,0 -34177747,"Chivalry Medieval Warfare",play,423.0,0 -34177747,"Left 4 Dead 2",purchase,1.0,0 -34177747,"Left 4 Dead 2",play,307.0,0 -34177747,"Borderlands 2",purchase,1.0,0 -34177747,"Borderlands 2",play,189.0,0 -34177747,"Landmark",purchase,1.0,0 -34177747,"Landmark",play,187.0,0 -34177747,"Borderlands",purchase,1.0,0 -34177747,"Borderlands",play,143.0,0 -34177747,"Fallout New Vegas",purchase,1.0,0 -34177747,"Fallout New Vegas",play,128.0,0 -34177747,"Mass Effect 2",purchase,1.0,0 -34177747,"Mass Effect 2",play,105.0,0 -34177747,"Torchlight II",purchase,1.0,0 -34177747,"Torchlight II",play,98.0,0 -34177747,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -34177747,"The Elder Scrolls IV Oblivion ",play,95.0,0 -34177747,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -34177747,"Fallout 3 - Game of the Year Edition",play,91.0,0 -34177747,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -34177747,"Dragon Age Origins - Ultimate Edition",play,86.0,0 -34177747,"Portal 2",purchase,1.0,0 -34177747,"Portal 2",play,75.0,0 -34177747,"Starbound",purchase,1.0,0 -34177747,"Starbound",play,74.0,0 -34177747,"Far Cry 3",purchase,1.0,0 -34177747,"Far Cry 3",play,60.0,0 -34177747,"The Witcher Enhanced Edition",purchase,1.0,0 -34177747,"The Witcher Enhanced Edition",play,56.0,0 -34177747,"Star Wars Knights of the Old Republic",purchase,1.0,0 -34177747,"Star Wars Knights of the Old Republic",play,54.0,0 -34177747,"Torchlight",purchase,1.0,0 -34177747,"Torchlight",play,51.0,0 -34177747,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -34177747,"STAR WARS Knights of the Old Republic II The Sith Lords",play,45.0,0 -34177747,"Deus Ex Human Revolution",purchase,1.0,0 -34177747,"Deus Ex Human Revolution",play,45.0,0 -34177747,"Castle Crashers",purchase,1.0,0 -34177747,"Castle Crashers",play,40.0,0 -34177747,"Blood Bowl Legendary Edition",purchase,1.0,0 -34177747,"Blood Bowl Legendary Edition",play,35.0,0 -34177747,"Batman Arkham City GOTY",purchase,1.0,0 -34177747,"Batman Arkham City GOTY",play,35.0,0 -34177747,"Mass Effect",purchase,1.0,0 -34177747,"Mass Effect",play,30.0,0 -34177747,"XCOM Enemy Unknown",purchase,1.0,0 -34177747,"XCOM Enemy Unknown",play,29.0,0 -34177747,"Unepic",purchase,1.0,0 -34177747,"Unepic",play,29.0,0 -34177747,"Overlord II",purchase,1.0,0 -34177747,"Overlord II",play,28.0,0 -34177747,"Dishonored",purchase,1.0,0 -34177747,"Dishonored",play,27.0,0 -34177747,"Mark of the Ninja",purchase,1.0,0 -34177747,"Mark of the Ninja",play,25.0,0 -34177747,"Legend of Grimrock",purchase,1.0,0 -34177747,"Legend of Grimrock",play,25.0,0 -34177747,"Magicka",purchase,1.0,0 -34177747,"Magicka",play,23.0,0 -34177747,"The Talos Principle",purchase,1.0,0 -34177747,"The Talos Principle",play,23.0,0 -34177747,"Banished",purchase,1.0,0 -34177747,"Banished",play,23.0,0 -34177747,"Rogue Legacy",purchase,1.0,0 -34177747,"Rogue Legacy",play,22.0,0 -34177747,"Orcs Must Die! 2",purchase,1.0,0 -34177747,"Orcs Must Die! 2",play,21.0,0 -34177747,"Total War SHOGUN 2",purchase,1.0,0 -34177747,"Total War SHOGUN 2",play,19.9,0 -34177747,"BioShock",purchase,1.0,0 -34177747,"BioShock",play,18.3,0 -34177747,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -34177747,"Batman Arkham Asylum GOTY Edition",play,18.3,0 -34177747,"BioShock 2",purchase,1.0,0 -34177747,"BioShock 2",play,17.9,0 -34177747,"BioShock Infinite",purchase,1.0,0 -34177747,"BioShock Infinite",play,16.4,0 -34177747,"Overlord",purchase,1.0,0 -34177747,"Overlord",play,16.4,0 -34177747,"Reus",purchase,1.0,0 -34177747,"Reus",play,14.9,0 -34177747,"BattleBlock Theater",purchase,1.0,0 -34177747,"BattleBlock Theater",play,12.6,0 -34177747,"Half-Life 2",purchase,1.0,0 -34177747,"Half-Life 2",play,12.4,0 -34177747,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -34177747,"Warhammer 40,000 Dawn of War Dark Crusade",play,11.9,0 -34177747,"Orcs Must Die!",purchase,1.0,0 -34177747,"Orcs Must Die!",play,11.4,0 -34177747,"Chaos on Deponia",purchase,1.0,0 -34177747,"Chaos on Deponia",play,9.3,0 -34177747,"Indiana Jones and the Fate of Atlantis",purchase,1.0,0 -34177747,"Indiana Jones and the Fate of Atlantis",play,9.2,0 -34177747,"Goodbye Deponia",purchase,1.0,0 -34177747,"Goodbye Deponia",play,8.8,0 -34177747,"Don't Starve",purchase,1.0,0 -34177747,"Don't Starve",play,7.9,0 -34177747,"Deponia",purchase,1.0,0 -34177747,"Deponia",play,7.9,0 -34177747,"Monkey Island 2 Special Edition",purchase,1.0,0 -34177747,"Monkey Island 2 Special Edition",play,7.9,0 -34177747,"Evoland",purchase,1.0,0 -34177747,"Evoland",play,7.5,0 -34177747,"Trine",purchase,1.0,0 -34177747,"Trine",play,7.4,0 -34177747,"Primordia",purchase,1.0,0 -34177747,"Primordia",play,6.9,0 -34177747,"SteamWorld Dig",purchase,1.0,0 -34177747,"SteamWorld Dig",play,6.7,0 -34177747,"The Cave",purchase,1.0,0 -34177747,"The Cave",play,6.4,0 -34177747,"The Elder Scrolls V Skyrim",purchase,1.0,0 -34177747,"The Elder Scrolls V Skyrim",play,5.8,0 -34177747,"The Dig",purchase,1.0,0 -34177747,"The Dig",play,5.7,0 -34177747,"Half-Life 2 Episode Two",purchase,1.0,0 -34177747,"Half-Life 2 Episode Two",play,4.8,0 -34177747,"Indiana Jones and the Last Crusade",purchase,1.0,0 -34177747,"Indiana Jones and the Last Crusade",play,4.7,0 -34177747,"Magic The Gathering - Duels of the Planeswalkers",purchase,1.0,0 -34177747,"Magic The Gathering - Duels of the Planeswalkers",play,4.1,0 -34177747,"Long Live The Queen",purchase,1.0,0 -34177747,"Long Live The Queen",play,3.8,0 -34177747,"Skullgirls",purchase,1.0,0 -34177747,"Skullgirls",play,3.6,0 -34177747,"Papers, Please",purchase,1.0,0 -34177747,"Papers, Please",play,3.1,0 -34177747,"Rock of Ages",purchase,1.0,0 -34177747,"Rock of Ages",play,3.1,0 -34177747,"The Stanley Parable",purchase,1.0,0 -34177747,"The Stanley Parable",play,3.1,0 -34177747,"Trine 2",purchase,1.0,0 -34177747,"Trine 2",play,3.1,0 -34177747,"Half-Life 2 Episode One",purchase,1.0,0 -34177747,"Half-Life 2 Episode One",play,3.0,0 -34177747,"Age of Mythology Extended Edition",purchase,1.0,0 -34177747,"Age of Mythology Extended Edition",play,2.3,0 -34177747,"Loom",purchase,1.0,0 -34177747,"Loom",play,2.2,0 -34177747,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -34177747,"Baldur's Gate Enhanced Edition",play,2.0,0 -34177747,"Another World",purchase,1.0,0 -34177747,"Another World",play,1.7,0 -34177747,"Sid Meier's Pirates!",purchase,1.0,0 -34177747,"Sid Meier's Pirates!",play,1.4,0 -34177747,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -34177747,"The Witcher 2 Assassins of Kings Enhanced Edition",play,1.2,0 -34177747,"Crysis 2 Maximum Edition",purchase,1.0,0 -34177747,"Crysis 2 Maximum Edition",play,1.1,0 -34177747,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -34177747,"Warhammer 40,000 Dawn of War II Retribution",play,1.1,0 -34177747,"Home",purchase,1.0,0 -34177747,"Home",play,1.1,0 -34177747,"Intrusion 2",purchase,1.0,0 -34177747,"Intrusion 2",play,0.8,0 -34177747,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -34177747,"Vampire The Masquerade - Bloodlines",play,0.7,0 -34177747,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -34177747,"The Secret of Monkey Island Special Edition",play,0.6,0 -34177747,"Dragon's Lair",purchase,1.0,0 -34177747,"Dragon's Lair",play,0.6,0 -34177747,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -34177747,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,0.6,0 -34177747,"Edge of Space",purchase,1.0,0 -34177747,"Edge of Space",play,0.4,0 -34177747,"Crypt of the NecroDancer",purchase,1.0,0 -34177747,"Crypt of the NecroDancer",play,0.3,0 -34177747,"Homeworld Remastered Collection",purchase,1.0,0 -34177747,"Homeworld Remastered Collection",play,0.3,0 -34177747,"Amnesia The Dark Descent",purchase,1.0,0 -34177747,"Amnesia The Dark Descent",play,0.3,0 -34177747,"Half-Life 2 Lost Coast",purchase,1.0,0 -34177747,"Half-Life 2 Lost Coast",play,0.2,0 -34177747,"ARK Survival Evolved",purchase,1.0,0 -34177747,"ARK Survival Evolved",play,0.2,0 -34177747,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -34177747,"X-COM UFO Defense",purchase,1.0,0 -34177747,"FINAL FANTASY VII",purchase,1.0,0 -34177747,"Antichamber",purchase,1.0,0 -34177747,"Assassin's Creed Revelations",purchase,1.0,0 -34177747,"Baldur's Gate II Enhanced Edition",purchase,1.0,0 -34177747,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -34177747,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -34177747,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -34177747,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -34177747,"Castle Crashers - Blacksmith Pack",purchase,1.0,0 -34177747,"Castle Crashers - Pink Knight Pack",purchase,1.0,0 -34177747,"Counter-Strike Global Offensive",purchase,1.0,0 -34177747,"Dead Island",purchase,1.0,0 -34177747,"Dead Island Riptide",purchase,1.0,0 -34177747,"Don't Starve Reign of Giants",purchase,1.0,0 -34177747,"Don't Starve Together Beta",purchase,1.0,0 -34177747,"Dungeons of Dredmor",purchase,1.0,0 -34177747,"Empire Total War",purchase,1.0,0 -34177747,"Endless Legend",purchase,1.0,0 -34177747,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -34177747,"Fallout New Vegas Dead Money",purchase,1.0,0 -34177747,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -34177747,"FTL Faster Than Light",purchase,1.0,0 -34177747,"I Have No Mouth, and I Must Scream",purchase,1.0,0 -34177747,"Legend of Grimrock 2",purchase,1.0,0 -34177747,"Magicka Final Frontier",purchase,1.0,0 -34177747,"Magicka Frozen Lake",purchase,1.0,0 -34177747,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -34177747,"Magicka Nippon",purchase,1.0,0 -34177747,"Magicka Party Robes",purchase,1.0,0 -34177747,"Magicka The Watchtower",purchase,1.0,0 -34177747,"Magicka Vietnam",purchase,1.0,0 -34177747,"Magicka Wizard's Survival Kit",purchase,1.0,0 -34177747,"Mark of the Ninja Special Edition DLC",purchase,1.0,0 -34177747,"Medieval II Total War",purchase,1.0,0 -34177747,"Middle-earth Shadow of Mordor",purchase,1.0,0 -34177747,"Napoleon Total War",purchase,1.0,0 -34177747,"Overlord Raising Hell",purchase,1.0,0 -34177747,"Painkiller Black Edition",purchase,1.0,0 -34177747,"Painkiller Redemption",purchase,1.0,0 -34177747,"Painkiller Resurrection",purchase,1.0,0 -34177747,"Painkiller Overdose",purchase,1.0,0 -34177747,"Patch testing for Chivalry",purchase,1.0,0 -34177747,"Portal",purchase,1.0,0 -34177747,"Rome Total War",purchase,1.0,0 -34177747,"Shadowrun Returns",purchase,1.0,0 -34177747,"Sid Meier's Civilization V",purchase,1.0,0 -34177747,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -34177747,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -34177747,"Skullgirls Endless Beta",purchase,1.0,0 -34177747,"Starbound - Unstable",purchase,1.0,0 -34177747,"System Shock 2",purchase,1.0,0 -34177747,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -34177747,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -34177747,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -34177747,"Titan Quest",purchase,1.0,0 -34177747,"Titan Quest Immortal Throne",purchase,1.0,0 -34177747,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -34177747,"Total War Battles SHOGUN",purchase,1.0,0 -34177747,"Viking Battle for Asgard",purchase,1.0,0 -34177747,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -34177747,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -34177747,"X-COM Apocalypse",purchase,1.0,0 -34177747,"X-COM Enforcer",purchase,1.0,0 -34177747,"X-COM Interceptor",purchase,1.0,0 -34177747,"X-COM Terror from the Deep",purchase,1.0,0 -34177747,"XCOM Enemy Within",purchase,1.0,0 -138929901,"Dota 2",purchase,1.0,0 -138929901,"Dota 2",play,2.0,0 -170760116,"Dota 2",purchase,1.0,0 -170760116,"Dota 2",play,0.4,0 -293570114,"APB Reloaded",purchase,1.0,0 -293570114,"Dead Island Epidemic",purchase,1.0,0 -293570114,"Defiance",purchase,1.0,0 -293570114,"Dirty Bomb",purchase,1.0,0 -293570114,"FreeStyle2 Street Basketball",purchase,1.0,0 -293570114,"Heroes & Generals",purchase,1.0,0 -293570114,"Rise of Incarnates",purchase,1.0,0 -293570114,"Super Monday Night Combat",purchase,1.0,0 -293570114,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -293570114,"Warframe",purchase,1.0,0 -124712421,"Outlast",purchase,1.0,0 -124712421,"Outlast",play,18.5,0 -124712421,"Rayman Legends",purchase,1.0,0 -124712421,"Rayman Legends",play,16.4,0 -124712421,"Portal",purchase,1.0,0 -124712421,"Portal",play,11.9,0 -124712421,"Amnesia The Dark Descent",purchase,1.0,0 -124712421,"Amnesia The Dark Descent",play,7.0,0 -124712421,"Portal 2",purchase,1.0,0 -124712421,"Portal 2",play,3.9,0 -124712421,"Spiral Knights",purchase,1.0,0 -124712421,"Spiral Knights",play,2.1,0 -110879737,"Star Trek D-A-C",purchase,1.0,0 -110879737,"Star Trek D-A-C",play,0.1,0 -110879737,"Sid Meier's Civilization V",purchase,1.0,0 -187678142,"Dota 2",purchase,1.0,0 -187678142,"Dota 2",play,1797.0,0 -175033323,"Team Fortress 2",purchase,1.0,0 -175033323,"Team Fortress 2",play,258.0,0 -175033323,"Dota 2",purchase,1.0,0 -175033323,"Dota 2",play,239.0,0 -175033323,"DiggerOnline",purchase,1.0,0 -175033323,"DiggerOnline",play,45.0,0 -175033323,"Five Nights at Freddy's 2",purchase,1.0,0 -175033323,"Five Nights at Freddy's 2",play,1.1,0 -58192081,"Call of Duty Modern Warfare 2",purchase,1.0,0 -58192081,"Call of Duty Modern Warfare 2",play,8.4,0 -58192081,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -175945017,"Dota 2",purchase,1.0,0 -175945017,"Dota 2",play,1.7,0 -44866715,"GRAV",purchase,1.0,0 -44866715,"GRAV",play,73.0,0 -44866715,"Star Trek Online",purchase,1.0,0 -44866715,"Star Trek Online",play,52.0,0 -44866715,"The Repopulation",purchase,1.0,0 -44866715,"The Repopulation",play,41.0,0 -44866715,"PAYDAY 2",purchase,1.0,0 -44866715,"PAYDAY 2",play,27.0,0 -44866715,"Counter-Strike Global Offensive",purchase,1.0,0 -44866715,"Counter-Strike Global Offensive",play,22.0,0 -44866715,"Garry's Mod",purchase,1.0,0 -44866715,"Garry's Mod",play,21.0,0 -44866715,"The Elder Scrolls V Skyrim",purchase,1.0,0 -44866715,"The Elder Scrolls V Skyrim",play,12.6,0 -44866715,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -44866715,"Tom Clancy's Ghost Recon Phantoms - EU",play,12.2,0 -44866715,"Transformers Fall of Cybertron",purchase,1.0,0 -44866715,"Transformers Fall of Cybertron",play,11.1,0 -44866715,"Firefall",purchase,1.0,0 -44866715,"Firefall",play,8.7,0 -44866715,"Marvel Heroes 2015",purchase,1.0,0 -44866715,"Marvel Heroes 2015",play,8.1,0 -44866715,"Neverwinter",purchase,1.0,0 -44866715,"Neverwinter",play,7.8,0 -44866715,"Warframe",purchase,1.0,0 -44866715,"Warframe",play,4.7,0 -44866715,"Infinite Crisis",purchase,1.0,0 -44866715,"Infinite Crisis",play,4.6,0 -44866715,"Dragon Nest Europe",purchase,1.0,0 -44866715,"Dragon Nest Europe",play,4.5,0 -44866715,"BloodRealm Battlegrounds",purchase,1.0,0 -44866715,"BloodRealm Battlegrounds",play,4.2,0 -44866715,"Age of Conan Unchained - EU version",purchase,1.0,0 -44866715,"Age of Conan Unchained - EU version",play,4.1,0 -44866715,"Star Conflict",purchase,1.0,0 -44866715,"Star Conflict",play,3.8,0 -44866715,"Devilian",purchase,1.0,0 -44866715,"Devilian",play,3.7,0 -44866715,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -44866715,"Injustice Gods Among Us Ultimate Edition",play,3.2,0 -44866715,"The Lord of the Rings Online",purchase,1.0,0 -44866715,"The Lord of the Rings Online",play,3.2,0 -44866715,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -44866715,"Infinity Wars - Animated Trading Card Game",play,3.2,0 -44866715,"Star Wars Knights of the Old Republic",purchase,1.0,0 -44866715,"Star Wars Knights of the Old Republic",play,3.1,0 -44866715,"Arma 3",purchase,1.0,0 -44866715,"Arma 3",play,3.0,0 -44866715,"Dishonored (RU)",purchase,1.0,0 -44866715,"Dishonored (RU)",play,2.9,0 -44866715,"Warhammer 40,000 Space Marine",purchase,1.0,0 -44866715,"Warhammer 40,000 Space Marine",play,2.3,0 -44866715,"Mortal Kombat Kollection",purchase,1.0,0 -44866715,"Mortal Kombat Kollection",play,2.0,0 -44866715,"Dota 2",purchase,1.0,0 -44866715,"Dota 2",play,1.7,0 -44866715,"Rise of Incarnates",purchase,1.0,0 -44866715,"Rise of Incarnates",play,1.6,0 -44866715,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -44866715,"Star Wars Jedi Knight Jedi Academy",play,1.5,0 -44866715,"Champions Online",purchase,1.0,0 -44866715,"Champions Online",play,1.2,0 -44866715,"Path of Exile",purchase,1.0,0 -44866715,"Path of Exile",play,1.2,0 -44866715,"Star Crusade CCG",purchase,1.0,0 -44866715,"Star Crusade CCG",play,1.2,0 -44866715,"Defiance",purchase,1.0,0 -44866715,"Defiance",play,1.1,0 -44866715,"Nosgoth",purchase,1.0,0 -44866715,"Nosgoth",play,1.1,0 -44866715,"Forsaken World ",purchase,1.0,0 -44866715,"Forsaken World ",play,1.1,0 -44866715,"APB Reloaded",purchase,1.0,0 -44866715,"APB Reloaded",play,0.9,0 -44866715,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -44866715,"Star Wars The Force Unleashed Ultimate Sith Edition",play,0.9,0 -44866715,"Fishing Planet",purchase,1.0,0 -44866715,"Fishing Planet",play,0.8,0 -44866715,"Half-Life 2",purchase,1.0,0 -44866715,"Half-Life 2",play,0.8,0 -44866715,"Stranded Deep",purchase,1.0,0 -44866715,"Stranded Deep",play,0.6,0 -44866715,"Warface",purchase,1.0,0 -44866715,"Warface",play,0.6,0 -44866715,"Fractured Space",purchase,1.0,0 -44866715,"Fractured Space",play,0.4,0 -44866715,"Global Agenda",purchase,1.0,0 -44866715,"Global Agenda",play,0.3,0 -44866715,"HAWKEN",purchase,1.0,0 -44866715,"HAWKEN",play,0.3,0 -44866715,"SolForge",purchase,1.0,0 -44866715,"SolForge",play,0.3,0 -44866715,"Dragomon Hunter",purchase,1.0,0 -44866715,"Dragomon Hunter",play,0.3,0 -44866715,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -44866715,"Deus Ex Human Revolution - Director's Cut",play,0.2,0 -44866715,"Deadbreed",purchase,1.0,0 -44866715,"Deadbreed",play,0.2,0 -44866715,"Dragons and Titans",purchase,1.0,0 -44866715,"Dragons and Titans",play,0.2,0 -44866715,"Counter-Strike Nexon Zombies",purchase,1.0,0 -44866715,"Counter-Strike Nexon Zombies",play,0.2,0 -44866715,"Panzar",purchase,1.0,0 -44866715,"Panzar",play,0.1,0 -44866715,"Epic Cards Battle(TCG)",purchase,1.0,0 -44866715,"Epic Cards Battle(TCG)",play,0.1,0 -44866715,"Magic Duels",purchase,1.0,0 -44866715,"Sphere III Enchanted World",purchase,1.0,0 -44866715,"Steel Ocean",purchase,1.0,0 -44866715,"ArcheAge",purchase,1.0,0 -44866715,"America's Army Proving Grounds",purchase,1.0,0 -44866715,"Amnesia The Dark Descent",purchase,1.0,0 -44866715,"Arma 3 Zeus",purchase,1.0,0 -44866715,"Borderlands",purchase,1.0,0 -44866715,"C9",purchase,1.0,0 -44866715,"Dragon's Prophet (EU)",purchase,1.0,0 -44866715,"Dungeons & Dragons Online",purchase,1.0,0 -44866715,"Echo of Soul",purchase,1.0,0 -44866715,"EverQuest II",purchase,1.0,0 -44866715,"Fallen Earth",purchase,1.0,0 -44866715,"Gold Package",purchase,1.0,0 -44866715,"GunZ 2 The Second Duel",purchase,1.0,0 -44866715,"Half-Life 2 Deathmatch",purchase,1.0,0 -44866715,"Half-Life 2 Episode One",purchase,1.0,0 -44866715,"Half-Life 2 Episode Two",purchase,1.0,0 -44866715,"Half-Life 2 Lost Coast",purchase,1.0,0 -44866715,"Metal Reaper Online",purchase,1.0,0 -44866715,"PlanetSide 2",purchase,1.0,0 -44866715,"Portal",purchase,1.0,0 -44866715,"Redshirt",purchase,1.0,0 -44866715,"RIFT",purchase,1.0,0 -44866715,"Shufflepuck Cantina Deluxe VR",purchase,1.0,0 -44866715,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -44866715,"SMITE",purchase,1.0,0 -44866715,"Star Wars Dark Forces",purchase,1.0,0 -44866715,"The Four Kings Casino and Slots",purchase,1.0,0 -44866715,"Villagers and Heroes",purchase,1.0,0 -44866715,"War Inc. Battlezone",purchase,1.0,0 -44866715,"War Thunder",purchase,1.0,0 -6394150,"Counter-Strike",purchase,1.0,0 -6394150,"Counter-Strike Condition Zero",purchase,1.0,0 -6394150,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -176750719,"Team Fortress 2",purchase,1.0,0 -176750719,"Team Fortress 2",play,0.3,0 -86686260,"Team Fortress 2",purchase,1.0,0 -86686260,"Team Fortress 2",play,10.7,0 -86686260,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -86686260,"Call of Duty Modern Warfare 2 - Multiplayer",play,2.7,0 -86686260,"Terraria",purchase,1.0,0 -86686260,"Terraria",play,0.9,0 -86686260,"Call of Duty Modern Warfare 2",purchase,1.0,0 -86686260,"Call of Duty Modern Warfare 2",play,0.6,0 -57088976,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -57088976,"The Secret of Monkey Island Special Edition",play,11.9,0 -23883383,"Counter-Strike Source",purchase,1.0,0 -23883383,"Counter-Strike Source",play,304.0,0 -23883383,"Half-Life 2 Deathmatch",purchase,1.0,0 -23883383,"Half-Life 2 Deathmatch",play,4.7,0 -23883383,"Alien Swarm",purchase,1.0,0 -23883383,"Alien Swarm",play,2.2,0 -23883383,"Day of Defeat Source",purchase,1.0,0 -23883383,"Day of Defeat Source",play,0.9,0 -23883383,"Team Fortress 2",purchase,1.0,0 -23883383,"Team Fortress 2",play,0.1,0 -23883383,"Half-Life 2 Lost Coast",purchase,1.0,0 -184794116,"Heroes & Generals",purchase,1.0,0 -184794116,"Heroes & Generals",play,1.1,0 -184794116,"Warface",purchase,1.0,0 -184794116,"Warface",play,0.4,0 -239794225,"Robocraft",purchase,1.0,0 -239794225,"Robocraft",play,16.9,0 -239794225,"Rise of Incarnates",purchase,1.0,0 -232207754,"Dota 2",purchase,1.0,0 -232207754,"Dota 2",play,386.0,0 -232207754,"Out There Somewhere",purchase,1.0,0 -232207754,"Out There Somewhere",play,0.2,0 -232207754,"Polarity",purchase,1.0,0 -232207754,"Robotex",purchase,1.0,0 -232207754,"Warframe",purchase,1.0,0 -47519224,"Counter-Strike",purchase,1.0,0 -47519224,"Counter-Strike",play,0.9,0 -47519224,"Counter-Strike Condition Zero",purchase,1.0,0 -47519224,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -235194002,"Dota 2",purchase,1.0,0 -235194002,"Dota 2",play,2.6,0 -141677474,"Dota 2",purchase,1.0,0 -141677474,"Dota 2",play,31.0,0 -225269666,"Tribes Ascend",purchase,1.0,0 -161816929,"Dota 2",purchase,1.0,0 -161816929,"Dota 2",play,3.6,0 -304848876,"Dota 2",purchase,1.0,0 -304848876,"Dota 2",play,42.0,0 -304848876,"Devilian",purchase,1.0,0 -304848876,"Marvel Heroes 2015",purchase,1.0,0 -198893163,"The Binding of Isaac Rebirth",purchase,1.0,0 -198893163,"The Binding of Isaac Rebirth",play,49.0,0 -198893163,"Child of Light",purchase,1.0,0 -198893163,"Child of Light",play,11.6,0 -198893163,"Don't Starve",purchase,1.0,0 -198893163,"Don't Starve",play,7.5,0 -198893163,"DC Universe Online",purchase,1.0,0 -198893163,"DC Universe Online",play,0.3,0 -198893163,"Don't Starve Reign of Giants",purchase,1.0,0 -111343998,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -111343998,"Warhammer 40,000 Dawn of War II",play,1.1,0 -49350285,"Counter-Strike Source",purchase,1.0,0 -49350285,"Counter-Strike Source",play,510.0,0 -49350285,"Left 4 Dead 2",purchase,1.0,0 -49350285,"Left 4 Dead 2",play,431.0,0 -49350285,"Left 4 Dead",purchase,1.0,0 -49350285,"Left 4 Dead",play,125.0,0 -49350285,"Dead Island",purchase,1.0,0 -49350285,"Dead Island",play,26.0,0 -49350285,"Portal 2",purchase,1.0,0 -49350285,"Portal 2",play,17.7,0 -49350285,"Tomb Raider",purchase,1.0,0 -49350285,"Tomb Raider",play,16.6,0 -49350285,"Metro 2033",purchase,1.0,0 -49350285,"Metro 2033",play,12.4,0 -49350285,"Portal",purchase,1.0,0 -49350285,"Portal",play,10.1,0 -49350285,"Amnesia A Machine for Pigs",purchase,1.0,0 -49350285,"Amnesia A Machine for Pigs",play,5.0,0 -49350285,"Alan Wake",purchase,1.0,0 -49350285,"Alan Wake",play,3.3,0 -49350285,"Darksiders",purchase,1.0,0 -49350285,"Darksiders",play,0.8,0 -49350285,"Day of Defeat Source",purchase,1.0,0 -49350285,"Day of Defeat Source",play,0.6,0 -49350285,"Team Fortress 2",purchase,1.0,0 -49350285,"Team Fortress 2",play,0.6,0 -49350285,"Codename CURE",purchase,1.0,0 -49350285,"Codename CURE",play,0.3,0 -49350285,"Enclave",purchase,1.0,0 -49350285,"Enclave",play,0.2,0 -49350285,"Half-Life 2 Deathmatch",purchase,1.0,0 -49350285,"Half-Life 2 Deathmatch",play,0.1,0 -49350285,"East India Company Gold",purchase,1.0,0 -49350285,"Fallen Earth",purchase,1.0,0 -49350285,"Half-Life 2 Lost Coast",purchase,1.0,0 -49350285,"ProtoGalaxy",purchase,1.0,0 -236950689,"Team Fortress 2",purchase,1.0,0 -236950689,"Team Fortress 2",play,1.1,0 -236950689,"Fistful of Frags",purchase,1.0,0 -236950689,"Unturned",purchase,1.0,0 -31727716,"DC Universe Online",purchase,1.0,0 -31727716,"DC Universe Online",play,1326.0,0 -31727716,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -31727716,"Call of Duty Black Ops II - Multiplayer",play,216.0,0 -31727716,"Battlefield Bad Company 2",purchase,1.0,0 -31727716,"Battlefield Bad Company 2",play,208.0,0 -31727716,"Robocraft",purchase,1.0,0 -31727716,"Robocraft",play,102.0,0 -31727716,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -31727716,"Call of Duty Modern Warfare 2 - Multiplayer",play,77.0,0 -31727716,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -31727716,"Call of Duty Black Ops - Multiplayer",play,57.0,0 -31727716,"Left 4 Dead 2",purchase,1.0,0 -31727716,"Left 4 Dead 2",play,54.0,0 -31727716,"Call of Duty Modern Warfare 3",purchase,1.0,0 -31727716,"Call of Duty Modern Warfare 3",play,51.0,0 -31727716,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -31727716,"Call of Duty Black Ops II - Zombies",play,48.0,0 -31727716,"Call of Duty Black Ops",purchase,1.0,0 -31727716,"Call of Duty Black Ops",play,43.0,0 -31727716,"Project CARS",purchase,1.0,0 -31727716,"Project CARS",play,34.0,0 -31727716,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -31727716,"Call of Duty Ghosts - Multiplayer",play,32.0,0 -31727716,"Call of Duty World at War",purchase,1.0,0 -31727716,"Call of Duty World at War",play,26.0,0 -31727716,"Call of Duty Black Ops III",purchase,1.0,0 -31727716,"Call of Duty Black Ops III",play,25.0,0 -31727716,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -31727716,"Call of Duty Modern Warfare 3 - Multiplayer",play,24.0,0 -31727716,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -31727716,"Call of Duty Advanced Warfare - Multiplayer",play,18.0,0 -31727716,"Call of Duty Modern Warfare 2",purchase,1.0,0 -31727716,"Call of Duty Modern Warfare 2",play,14.4,0 -31727716,"Alien Swarm",purchase,1.0,0 -31727716,"Alien Swarm",play,4.5,0 -31727716,"Gotham City Impostors",purchase,1.0,0 -31727716,"Gotham City Impostors",play,3.6,0 -31727716,"Team Fortress 2",purchase,1.0,0 -31727716,"Team Fortress 2",play,2.2,0 -31727716,"rFactor",purchase,1.0,0 -31727716,"rFactor",play,2.2,0 -31727716,"Counter-Strike Global Offensive",purchase,1.0,0 -31727716,"Counter-Strike Global Offensive",play,2.0,0 -31727716,"BLOCKADE 3D",purchase,1.0,0 -31727716,"BLOCKADE 3D",play,1.8,0 -31727716,"Borderlands 2",purchase,1.0,0 -31727716,"Borderlands 2",play,1.6,0 -31727716,"PAYDAY 2",purchase,1.0,0 -31727716,"PAYDAY 2",play,1.0,0 -31727716,"No More Room in Hell",purchase,1.0,0 -31727716,"No More Room in Hell",play,0.6,0 -31727716,"Blacklight Retribution",purchase,1.0,0 -31727716,"Blacklight Retribution",play,0.5,0 -31727716,"Warface",purchase,1.0,0 -31727716,"Warface",play,0.1,0 -31727716,"RaceRoom Racing Experience ",purchase,1.0,0 -31727716,"Call of Duty Advanced Warfare",purchase,1.0,0 -31727716,"Call of Duty Ghosts",purchase,1.0,0 -31727716,"Call of Duty Black Ops II",purchase,1.0,0 -31727716,"Gotham City Impostors Free To Play",purchase,1.0,0 -285926554,"PAYDAY 2",purchase,1.0,0 -285926554,"PAYDAY 2",play,18.4,0 -285926554,"Heroes & Generals",purchase,1.0,0 -285926554,"Robocraft",purchase,1.0,0 -142001340,"APB Reloaded",purchase,1.0,0 -142001340,"APB Reloaded",play,558.0,0 -142001340,"Grand Theft Auto V",purchase,1.0,0 -142001340,"Grand Theft Auto V",play,134.0,0 -142001340,"DC Universe Online",purchase,1.0,0 -142001340,"DC Universe Online",play,83.0,0 -142001340,"Saints Row IV",purchase,1.0,0 -142001340,"Saints Row IV",play,47.0,0 -142001340,"The Elder Scrolls V Skyrim",purchase,1.0,0 -142001340,"The Elder Scrolls V Skyrim",play,37.0,0 -142001340,"Saints Row The Third",purchase,1.0,0 -142001340,"Saints Row The Third",play,26.0,0 -142001340,"Team Fortress 2",purchase,1.0,0 -142001340,"Team Fortress 2",play,19.2,0 -142001340,"Gotham City Impostors Free To Play",purchase,1.0,0 -142001340,"Gotham City Impostors Free To Play",play,16.1,0 -142001340,"Mortal Kombat Komplete Edition",purchase,1.0,0 -142001340,"Mortal Kombat Komplete Edition",play,4.3,0 -142001340,"Grand Theft Auto IV",purchase,1.0,0 -142001340,"Grand Theft Auto IV",play,3.3,0 -142001340,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -142001340,"Injustice Gods Among Us Ultimate Edition",play,2.7,0 -142001340,"Broforce",purchase,1.0,0 -142001340,"Broforce",play,1.1,0 -142001340,"The Expendabros",purchase,1.0,0 -142001340,"The Expendabros",play,1.1,0 -142001340,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -142001340,"Batman Arkham Asylum GOTY Edition",play,0.8,0 -142001340,"Batman Arkham City GOTY",purchase,1.0,0 -142001340,"Batman Arkham City GOTY",play,0.1,0 -142001340,"Fallout New Vegas",purchase,1.0,0 -142001340,"BattleBlock Theater",purchase,1.0,0 -142001340,"Dead Island",purchase,1.0,0 -142001340,"Dead Island Riptide",purchase,1.0,0 -142001340,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -142001340,"Fallout New Vegas Dead Money",purchase,1.0,0 -142001340,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -142001340,"Grand Theft Auto San Andreas",purchase,1.0,0 -142001340,"Grand Theft Auto San Andreas",purchase,1.0,0 -142001340,"Left 4 Dead",purchase,1.0,0 -142001340,"Left 4 Dead 2",purchase,1.0,0 -142001340,"Max Payne 3",purchase,1.0,0 -142001340,"Metro 2033 Redux",purchase,1.0,0 -142001340,"Metro Last Light Redux",purchase,1.0,0 -142001340,"Middle-earth Shadow of Mordor",purchase,1.0,0 -142001340,"Portal",purchase,1.0,0 -142001340,"Portal 2",purchase,1.0,0 -142001340,"Primal Carnage",purchase,1.0,0 -142001340,"Sniper Elite 3",purchase,1.0,0 -142001340,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -142001340,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -142001340,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -142001340,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -142001340,"Tomb Raider",purchase,1.0,0 -142001340,"Torchlight II",purchase,1.0,0 -60217594,"Counter-Strike",purchase,1.0,0 -60217594,"Counter-Strike",play,1447.0,0 -60217594,"Counter-Strike Global Offensive",purchase,1.0,0 -60217594,"Counter-Strike Global Offensive",play,312.0,0 -60217594,"Clicker Heroes",purchase,1.0,0 -60217594,"Clicker Heroes",play,84.0,0 -60217594,"Gems of War",purchase,1.0,0 -60217594,"Gems of War",play,47.0,0 -60217594,"Counter-Strike Nexon Zombies",purchase,1.0,0 -60217594,"Counter-Strike Nexon Zombies",play,22.0,0 -60217594,"Dota 2",purchase,1.0,0 -60217594,"Dota 2",play,17.7,0 -60217594,"AdVenture Capitalist",purchase,1.0,0 -60217594,"AdVenture Capitalist",play,15.9,0 -60217594,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -60217594,"Burnout Paradise The Ultimate Box",play,15.3,0 -60217594,"Sniper Elite V2",purchase,1.0,0 -60217594,"Sniper Elite V2",play,11.5,0 -60217594,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -60217594,"S.K.I.L.L. - Special Force 2",play,11.3,0 -60217594,"Path of Exile",purchase,1.0,0 -60217594,"Path of Exile",play,11.2,0 -60217594,"Sniper Ghost Warrior 2",purchase,1.0,0 -60217594,"Sniper Ghost Warrior 2",play,8.6,0 -60217594,"12 Labours of Hercules",purchase,1.0,0 -60217594,"12 Labours of Hercules",play,7.1,0 -60217594,"9 Clues 2 The Ward",purchase,1.0,0 -60217594,"9 Clues 2 The Ward",play,5.1,0 -60217594,"The Darkness II",purchase,1.0,0 -60217594,"The Darkness II",play,4.9,0 -60217594,"Dishonored",purchase,1.0,0 -60217594,"Dishonored",play,3.8,0 -60217594,"Team Fortress 2",purchase,1.0,0 -60217594,"Team Fortress 2",play,3.5,0 -60217594,"Strife",purchase,1.0,0 -60217594,"Strife",play,3.3,0 -60217594,"9 Clues The Secret of Serpent Creek",purchase,1.0,0 -60217594,"9 Clues The Secret of Serpent Creek",play,3.3,0 -60217594,"Frankenstein Master of Death",purchase,1.0,0 -60217594,"Frankenstein Master of Death",play,2.9,0 -60217594,"War Inc. Battlezone",purchase,1.0,0 -60217594,"War Inc. Battlezone",play,2.6,0 -60217594,"Left 4 Dead 2",purchase,1.0,0 -60217594,"Left 4 Dead 2",play,1.9,0 -60217594,"Fallout New Vegas",purchase,1.0,0 -60217594,"Fallout New Vegas",play,1.4,0 -60217594,"Far Cry 2",purchase,1.0,0 -60217594,"Far Cry 2",play,1.2,0 -60217594,"Warface",purchase,1.0,0 -60217594,"Warface",play,0.9,0 -60217594,"Sakura Clicker",purchase,1.0,0 -60217594,"Sakura Clicker",play,0.7,0 -60217594,"Nikopol Secrets of the Immortals",purchase,1.0,0 -60217594,"Nikopol Secrets of the Immortals",play,0.6,0 -60217594,"Anomaly Warzone Earth",purchase,1.0,0 -60217594,"Anomaly Warzone Earth",play,0.5,0 -60217594,"Lead and Gold - Gangs of the Wild West",purchase,1.0,0 -60217594,"Lead and Gold - Gangs of the Wild West",play,0.5,0 -60217594,"Teddy Floppy Ear - The Race",purchase,1.0,0 -60217594,"Teddy Floppy Ear - The Race",play,0.4,0 -60217594,"Curse The Eye of Isis",purchase,1.0,0 -60217594,"Curse The Eye of Isis",play,0.2,0 -60217594,"Out There Somewhere",purchase,1.0,0 -60217594,"Stranded",purchase,1.0,0 -60217594,"Stealth Inc 2",purchase,1.0,0 -60217594,"12 Labours of Hercules II The Cretan Bull",purchase,1.0,0 -60217594,"Camera Obscura",purchase,1.0,0 -60217594,"Caster",purchase,1.0,0 -60217594,"Counter-Strike Condition Zero",purchase,1.0,0 -60217594,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -60217594,"Face It - A game to fight inner demons",purchase,1.0,0 -60217594,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -60217594,"Orborun",purchase,1.0,0 -60217594,"ORION Prelude",purchase,1.0,0 -60217594,"Shadow Warrior",purchase,1.0,0 -60217594,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -60217594,"Sniper Ghost Warrior 2 World Hunter Pack",purchase,1.0,0 -60217594,"Uncrowded",purchase,1.0,0 -60217594,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -291447290,"Car Mechanic Simulator 2015",purchase,1.0,0 -291447290,"Car Mechanic Simulator 2015",play,8.6,0 -291447290,"Car Mechanic Simulator 2015 - PickUp & SUV DLC",purchase,1.0,0 -291447290,"Car Mechanic Simulator 2015 - TraderPack",purchase,1.0,0 -291447290,"Car Mechanic Simulator 2015 - Visual Tuning",purchase,1.0,0 -291447290,"Car Mechanic Simulator 2015 - Youngtimer",purchase,1.0,0 -51044834,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -14165501,"Counter-Strike",purchase,1.0,0 -14165501,"Counter-Strike",play,7.7,0 -14165501,"Alien Swarm",purchase,1.0,0 -14165501,"Alien Swarm",play,1.6,0 -14165501,"Day of Defeat",purchase,1.0,0 -14165501,"Deathmatch Classic",purchase,1.0,0 -14165501,"Half-Life",purchase,1.0,0 -14165501,"Half-Life Blue Shift",purchase,1.0,0 -14165501,"Half-Life Opposing Force",purchase,1.0,0 -14165501,"Ricochet",purchase,1.0,0 -14165501,"Team Fortress Classic",purchase,1.0,0 -169414467,"Dota 2",purchase,1.0,0 -169414467,"Dota 2",play,0.8,0 -148976064,"Team Fortress 2",purchase,1.0,0 -148976064,"Team Fortress 2",play,1.2,0 -113045977,"Dota 2",purchase,1.0,0 -113045977,"Dota 2",play,1.1,0 -113045977,"The Lord of the Rings Online",purchase,1.0,0 -196223620,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -196223620,"Tom Clancy's Ghost Recon Phantoms - NA",play,76.0,0 -196223620,"Robocraft",purchase,1.0,0 -196223620,"Robocraft",play,75.0,0 -196223620,"Dota 2",purchase,1.0,0 -196223620,"Dota 2",play,44.0,0 -196223620,"Stronghold Kingdoms",purchase,1.0,0 -196223620,"Stronghold Kingdoms",play,32.0,0 -196223620,"Magicka Wizard Wars",purchase,1.0,0 -196223620,"Magicka Wizard Wars",play,23.0,0 -196223620,"Unturned",purchase,1.0,0 -196223620,"Unturned",play,9.6,0 -196223620,"F.E.A.R. Online",purchase,1.0,0 -196223620,"F.E.A.R. Online",play,4.9,0 -196223620,"Warframe",purchase,1.0,0 -196223620,"Warframe",play,3.6,0 -196223620,"Echoes+",purchase,1.0,0 -196223620,"Echoes+",play,3.4,0 -196223620,"GunZ 2 The Second Duel",purchase,1.0,0 -196223620,"GunZ 2 The Second Duel",play,1.3,0 -196223620,"Clicker Heroes",purchase,1.0,0 -196223620,"Clicker Heroes",play,0.5,0 -196223620,"Dead Island Epidemic",purchase,1.0,0 -196223620,"Dead Island Epidemic",play,0.4,0 -196223620,"theHunter",purchase,1.0,0 -196223620,"Among Ripples",purchase,1.0,0 -196223620,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -196223620,"Free to Play",purchase,1.0,0 -196223620,"Galcon 2",purchase,1.0,0 -196223620,"No More Room in Hell",purchase,1.0,0 -196223620,"Regimental Chess",purchase,1.0,0 -196223620,"TERA",purchase,1.0,0 -196223620,"The Expendabros",purchase,1.0,0 -196223620,"The Lord of the Rings Online",purchase,1.0,0 -196223620,"The Plan",purchase,1.0,0 -197090954,"Dota 2",purchase,1.0,0 -197090954,"Dota 2",play,64.0,0 -85643975,"Stronghold Kingdoms",purchase,1.0,0 -85643975,"Stronghold Kingdoms",play,480.0,0 -85643975,"Team Fortress 2",purchase,1.0,0 -85643975,"Team Fortress 2",play,11.9,0 -85643975,"Half-Life 2 Episode Two",purchase,1.0,0 -85643975,"Half-Life 2 Episode Two",play,5.0,0 -85643975,"Half-Life 2",purchase,1.0,0 -85643975,"Half-Life 2",play,4.0,0 -85643975,"Half-Life 2 Episode One",purchase,1.0,0 -85643975,"Half-Life 2 Episode One",play,3.9,0 -85643975,"Portal",purchase,1.0,0 -85643975,"Portal",play,3.0,0 -85643975,"Half-Life 2 Lost Coast",purchase,1.0,0 -85643975,"Half-Life 2 Lost Coast",play,0.6,0 -85643975,"Left 4 Dead 2",purchase,1.0,0 -85643975,"Left 4 Dead 2",play,0.4,0 -242013874,"Goat Simulator",purchase,1.0,0 -242013874,"Goat Simulator",play,9.3,0 -126158311,"Dota 2",purchase,1.0,0 -126158311,"Dota 2",play,73.0,0 -71687719,"AI War Fleet Command",purchase,1.0,0 -71687719,"AI War Fleet Command",play,1.1,0 -157414627,"Dota 2",purchase,1.0,0 -157414627,"Dota 2",play,14.1,0 -242781058,"Batman Arkham Knight",purchase,1.0,0 -242781058,"Batman Arkham Knight",play,54.0,0 -242781058,"Counter-Strike Global Offensive",purchase,1.0,0 -242781058,"Counter-Strike Global Offensive",play,15.8,0 -242781058,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -242781058,"Batman Arkham Asylum GOTY Edition",play,6.0,0 -242781058,"Batman Arkham Origins",purchase,1.0,0 -242781058,"Batman Arkham Origins",play,4.6,0 -242781058,"Dota 2",purchase,1.0,0 -242781058,"Dota 2",play,1.4,0 -242781058,"Red Crucible Firestorm",purchase,1.0,0 -242781058,"Red Crucible Firestorm",play,1.3,0 -242781058,"GRID Autosport",purchase,1.0,0 -242781058,"GRID Autosport",play,1.2,0 -242781058,"Batman Arkham City GOTY",purchase,1.0,0 -242781058,"Batman Arkham City GOTY",play,1.1,0 -242781058,"Marvel Heroes 2015",purchase,1.0,0 -242781058,"Marvel Heroes 2015",play,1.0,0 -242781058,"Gotham City Impostors Free To Play",purchase,1.0,0 -242781058,"Gotham City Impostors Free To Play",play,0.6,0 -242781058,"War Thunder",purchase,1.0,0 -242781058,"War Thunder",play,0.5,0 -242781058,"Team Fortress 2",purchase,1.0,0 -242781058,"Team Fortress 2",play,0.3,0 -242781058,"theHunter",purchase,1.0,0 -242781058,"theHunter",play,0.2,0 -242781058,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -242781058,"Batman Arkham Origins Blackgate - Deluxe Edition",play,0.1,0 -242781058,"Counter-Strike Nexon Zombies",purchase,1.0,0 -242781058,"Counter-Strike Nexon Zombies",play,0.1,0 -242781058,"SMITE",purchase,1.0,0 -242781058,"SMITE",play,0.1,0 -242781058,"Tactical Intervention",purchase,1.0,0 -242781058,"Tactical Intervention",play,0.1,0 -242781058,"PlanetSide 2",purchase,1.0,0 -242781058,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -242781058,"Trove",purchase,1.0,0 -242781058,"ArcheAge",purchase,1.0,0 -242781058,"Back to Dinosaur Island ",purchase,1.0,0 -242781058,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -242781058,"Batman Arkham Origins - Initiation",purchase,1.0,0 -242781058,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -242781058,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -242781058,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -242781058,"BLOCKADE 3D",purchase,1.0,0 -242781058,"Defiance",purchase,1.0,0 -242781058,"Firefall",purchase,1.0,0 -242781058,"Mortal Online",purchase,1.0,0 -242781058,"Rise of Incarnates",purchase,1.0,0 -242781058,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -242781058,"Unturned",purchase,1.0,0 -242781058,"Warface",purchase,1.0,0 -303525289,"War Thunder",purchase,1.0,0 -303525289,"War Thunder",play,11.6,0 -303525289,"Brawlhalla",purchase,1.0,0 -303525289,"Brawlhalla",play,5.9,0 -303525289,"Warframe",purchase,1.0,0 -303525289,"Warframe",play,1.0,0 -303525289,"Unturned",purchase,1.0,0 -303525289,"Unturned",play,0.6,0 -303525289,"Tactical Intervention",purchase,1.0,0 -303525289,"Tactical Intervention",play,0.2,0 -303525289,"Heroes & Generals",purchase,1.0,0 -303525289,"Red Crucible Firestorm",purchase,1.0,0 -303525289,"Rise of Flight United",purchase,1.0,0 -282307340,"Dota 2",purchase,1.0,0 -282307340,"Dota 2",play,30.0,0 -50246981,"Insurgency Modern Infantry Combat",purchase,1.0,0 -50246981,"Insurgency Modern Infantry Combat",play,2.5,0 -88296152,"Sniper Ghost Warrior",purchase,1.0,0 -88296152,"Sniper Ghost Warrior",play,4.4,0 -88296152,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -88296152,"Rising Storm/Red Orchestra 2 Multiplayer",play,3.8,0 -88296152,"Dead Island",purchase,1.0,0 -88296152,"Dead Island",play,1.9,0 -88296152,"Magicka",purchase,1.0,0 -88296152,"Magicka",play,0.3,0 -88296152,"Company of Heroes Tales of Valor",purchase,1.0,0 -88296152,"Company of Heroes Tales of Valor",play,0.1,0 -88296152,"Company of Heroes Opposing Fronts",purchase,1.0,0 -88296152,"Company of Heroes",purchase,1.0,0 -88296152,"Company of Heroes (New Steam Version)",purchase,1.0,0 -88296152,"Magicka Final Frontier",purchase,1.0,0 -88296152,"Magicka Frozen Lake",purchase,1.0,0 -88296152,"Magicka Nippon",purchase,1.0,0 -88296152,"Magicka Party Robes",purchase,1.0,0 -88296152,"Magicka The Watchtower",purchase,1.0,0 -88296152,"Magicka Vietnam",purchase,1.0,0 -88296152,"Magicka Wizard's Survival Kit",purchase,1.0,0 -88296152,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -264929688,"Dota 2",purchase,1.0,0 -264929688,"Dota 2",play,4.6,0 -76190673,"DiRT 3",purchase,1.0,0 -76190673,"DiRT 3 Complete Edition",purchase,1.0,0 -230633575,"Dota 2",purchase,1.0,0 -230633575,"Dota 2",play,334.0,0 -230633575,"Strife",purchase,1.0,0 -230633575,"Strife",play,4.7,0 -230633575,"Unturned",purchase,1.0,0 -230633575,"Unturned",play,3.2,0 -230633575,"War Thunder",purchase,1.0,0 -230633575,"War Thunder",play,2.1,0 -230633575,"DiggerOnline",purchase,1.0,0 -230633575,"Cry of Fear",purchase,1.0,0 -230633575,"sZone-Online",purchase,1.0,0 -230633575,"Trove",purchase,1.0,0 -127706455,"Team Fortress 2",purchase,1.0,0 -127706455,"Team Fortress 2",play,6.5,0 -117129725,"Left 4 Dead 2",purchase,1.0,0 -117129725,"Left 4 Dead 2",play,4.4,0 -117129725,"Serious Sam 3 BFE",purchase,1.0,0 -42005897,"Europa Universalis IV",purchase,1.0,0 -42005897,"Europa Universalis IV",play,571.0,0 -42005897,"Football Manager 2014",purchase,1.0,0 -42005897,"Football Manager 2014",play,321.0,0 -42005897,"Total War ROME II - Emperor Edition",purchase,1.0,0 -42005897,"Total War ROME II - Emperor Edition",play,293.0,0 -42005897,"Football Manager 2013",purchase,1.0,0 -42005897,"Football Manager 2013",play,293.0,0 -42005897,"Football Manager 2012",purchase,1.0,0 -42005897,"Football Manager 2012",play,275.0,0 -42005897,"Wargame AirLand Battle",purchase,1.0,0 -42005897,"Wargame AirLand Battle",play,149.0,0 -42005897,"Empire Total War",purchase,1.0,0 -42005897,"Empire Total War",play,126.0,0 -42005897,"Total War SHOGUN 2",purchase,1.0,0 -42005897,"Total War SHOGUN 2",play,101.0,0 -42005897,"Football Manager 2010",purchase,1.0,0 -42005897,"Football Manager 2010",play,98.0,0 -42005897,"War Thunder",purchase,1.0,0 -42005897,"War Thunder",play,86.0,0 -42005897,"Total War ATTILA",purchase,1.0,0 -42005897,"Total War ATTILA",play,80.0,0 -42005897,"Football Manager 2015",purchase,1.0,0 -42005897,"Football Manager 2015",play,78.0,0 -42005897,"Football Manager 2016",purchase,1.0,0 -42005897,"Football Manager 2016",play,53.0,0 -42005897,"Hearts of Iron III",purchase,1.0,0 -42005897,"Hearts of Iron III",play,53.0,0 -42005897,"Napoleon Total War",purchase,1.0,0 -42005897,"Napoleon Total War",play,47.0,0 -42005897,"Rome Total War",purchase,1.0,0 -42005897,"Rome Total War",play,42.0,0 -42005897,"Call of Duty Modern Warfare 2",purchase,1.0,0 -42005897,"Call of Duty Modern Warfare 2",play,38.0,0 -42005897,"Anno 2070",purchase,1.0,0 -42005897,"Anno 2070",play,28.0,0 -42005897,"Cities Skylines",purchase,1.0,0 -42005897,"Cities Skylines",play,26.0,0 -42005897,"Wargame Red Dragon",purchase,1.0,0 -42005897,"Wargame Red Dragon",play,24.0,0 -42005897,"XCOM Enemy Unknown",purchase,1.0,0 -42005897,"XCOM Enemy Unknown",play,24.0,0 -42005897,"Max Payne 3",purchase,1.0,0 -42005897,"Max Payne 3",play,20.0,0 -42005897,"Mount & Blade With Fire and Sword",purchase,1.0,0 -42005897,"Mount & Blade With Fire and Sword",play,16.8,0 -42005897,"Crusader Kings II",purchase,1.0,0 -42005897,"Crusader Kings II",play,16.4,0 -42005897,"Medieval II Total War",purchase,1.0,0 -42005897,"Medieval II Total War",play,15.6,0 -42005897,"This War of Mine",purchase,1.0,0 -42005897,"This War of Mine",play,12.2,0 -42005897,"Ultimate General Gettysburg",purchase,1.0,0 -42005897,"Ultimate General Gettysburg",play,11.7,0 -42005897,"Total War Battles KINGDOM",purchase,1.0,0 -42005897,"Total War Battles KINGDOM",play,11.5,0 -42005897,"Cities XL Platinum",purchase,1.0,0 -42005897,"Cities XL Platinum",play,10.9,0 -42005897,"March of the Eagles",purchase,1.0,0 -42005897,"March of the Eagles",play,10.9,0 -42005897,"Medieval II Total War Kingdoms",purchase,1.0,0 -42005897,"Medieval II Total War Kingdoms",play,10.3,0 -42005897,"Tropico 5",purchase,1.0,0 -42005897,"Tropico 5",play,9.6,0 -42005897,"Wargame European Escalation",purchase,1.0,0 -42005897,"Wargame European Escalation",play,7.6,0 -42005897,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -42005897,"Tom Clancy's Ghost Recon Phantoms - EU",play,5.9,0 -42005897,"Mount & Blade Warband",purchase,1.0,0 -42005897,"Mount & Blade Warband",play,5.8,0 -42005897,"Tropico 4",purchase,1.0,0 -42005897,"Tropico 4",play,5.6,0 -42005897,"Euro Truck Simulator 2",purchase,1.0,0 -42005897,"Euro Truck Simulator 2",play,4.3,0 -42005897,"Sid Meier's Civilization V",purchase,1.0,0 -42005897,"Sid Meier's Civilization V",play,3.8,0 -42005897,"Fractured Space",purchase,1.0,0 -42005897,"Fractured Space",play,3.8,0 -42005897,"BioShock Infinite",purchase,1.0,0 -42005897,"BioShock Infinite",play,3.6,0 -42005897,"Grand Theft Auto IV",purchase,1.0,0 -42005897,"Grand Theft Auto IV",play,3.4,0 -42005897,"Endless Space",purchase,1.0,0 -42005897,"Endless Space",play,3.0,0 -42005897,"Sengoku",purchase,1.0,0 -42005897,"Sengoku",play,2.6,0 -42005897,"Call of Juarez Gunslinger",purchase,1.0,0 -42005897,"Call of Juarez Gunslinger",play,1.7,0 -42005897,"PAYDAY 2",purchase,1.0,0 -42005897,"PAYDAY 2",play,1.5,0 -42005897,"Metro 2033",purchase,1.0,0 -42005897,"Metro 2033",play,1.3,0 -42005897,"Europa Universalis III",purchase,1.0,0 -42005897,"Europa Universalis III",play,1.2,0 -42005897,"Alien Isolation",purchase,1.0,0 -42005897,"Alien Isolation",play,1.1,0 -42005897,"The Raven - Legacy of a Master Thief",purchase,1.0,0 -42005897,"The Raven - Legacy of a Master Thief",play,1.1,0 -42005897,"L.A. Noire",purchase,1.0,0 -42005897,"L.A. Noire",play,0.9,0 -42005897,"Sniper Ghost Warrior 2",purchase,1.0,0 -42005897,"Sniper Ghost Warrior 2",play,0.5,0 -42005897,"Elite Dangerous",purchase,1.0,0 -42005897,"Elite Dangerous",play,0.4,0 -42005897,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -42005897,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.4,0 -42005897,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -42005897,"Sonic & All-Stars Racing Transformed",play,0.4,0 -42005897,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -42005897,"Grand Theft Auto Episodes from Liberty City",play,0.4,0 -42005897,"Dead Island",purchase,1.0,0 -42005897,"Dead Island",play,0.4,0 -42005897,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -42005897,"S.T.A.L.K.E.R. Call of Pripyat",play,0.2,0 -42005897,"Company of Heroes (New Steam Version)",purchase,1.0,0 -42005897,"Company of Heroes (New Steam Version)",play,0.2,0 -42005897,"Civil War II",purchase,1.0,0 -42005897,"Civil War II",play,0.2,0 -42005897,"A-Train 8",purchase,1.0,0 -42005897,"A-Train 8",play,0.1,0 -42005897,"Rome Total War - Alexander",purchase,1.0,0 -42005897,"Rome Total War - Alexander",play,0.1,0 -42005897,"Age of Empires II HD Edition",purchase,1.0,0 -42005897,"Age of Empires II HD The Forgotten",purchase,1.0,0 -42005897,"Age of Empires III Complete Collection",purchase,1.0,0 -42005897,"An Alternative Reality The Football Manager Documentary",purchase,1.0,0 -42005897,"Ancient Space",purchase,1.0,0 -42005897,"Chaos Domain",purchase,1.0,0 -42005897,"Cities in Motion",purchase,1.0,0 -42005897,"Cities in Motion 2",purchase,1.0,0 -42005897,"Commander Conquest of the Americas Gold",purchase,1.0,0 -42005897,"Company of Heroes",purchase,1.0,0 -42005897,"Crusader Kings II Hymns of Abraham",purchase,1.0,0 -42005897,"Crusader Kings II Military Orders Unit Pack",purchase,1.0,0 -42005897,"Crusader Kings II Sons of Abraham",purchase,1.0,0 -42005897,"Crusader Kings II Warriors of Faith Unit Pack",purchase,1.0,0 -42005897,"Deadlight",purchase,1.0,0 -42005897,"Deadlight Original Soundtrack",purchase,1.0,0 -42005897,"East India Company Gold",purchase,1.0,0 -42005897,"Elite Dangerous Horizons",purchase,1.0,0 -42005897,"Europa Universalis III Divine Wind",purchase,1.0,0 -42005897,"Europa Universalis III Heir to the Throne",purchase,1.0,0 -42005897,"Europa Universalis IV American Dream DLC",purchase,1.0,0 -42005897,"Europa Universalis IV Conquest of Paradise",purchase,1.0,0 -42005897,"Europa Universalis IV Conquistadors Unit pack ",purchase,1.0,0 -42005897,"Europa Universalis IV National Monuments II",purchase,1.0,0 -42005897,"Europa Universalis IVNative Americans Unit Pack",purchase,1.0,0 -42005897,"Europa Universalis IV Songs of the New World",purchase,1.0,0 -42005897,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -42005897,"Football Manager 2009",purchase,1.0,0 -42005897,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -42005897,"Gary Grigsby's War in the East",purchase,1.0,0 -42005897,"Hearts of Iron III German II Sprite Pack",purchase,1.0,0 -42005897,"Mount & Blade",purchase,1.0,0 -42005897,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -42005897,"Omerta - City of Gangsters",purchase,1.0,0 -42005897,"Omerta - City of Gangsters The Bulgarian Colossus",purchase,1.0,0 -42005897,"Omerta - Damsel in Distress",purchase,1.0,0 -42005897,"Omerta - The Con Artist",purchase,1.0,0 -42005897,"Omerta - The Japanese Incentive",purchase,1.0,0 -42005897,"Out of the Park Baseball 15",purchase,1.0,0 -42005897,"PixelJunk Monsters Ultimate",purchase,1.0,0 -42005897,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -42005897,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -42005897,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -42005897,"Speedball 2 HD",purchase,1.0,0 -42005897,"Terraria",purchase,1.0,0 -42005897,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -42005897,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -42005897,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -42005897,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -42005897,"Victoria II",purchase,1.0,0 -42005897,"XCOM Enemy Within",purchase,1.0,0 -93454114,"The Elder Scrolls V Skyrim",purchase,1.0,0 -187283749,"Fistful of Frags",purchase,1.0,0 -187283749,"Fistful of Frags",play,2.5,0 -187283749,"Eldevin",purchase,1.0,0 -187283749,"Eldevin",play,2.3,0 -187283749,"MapleStory",purchase,1.0,0 -187283749,"MapleStory",play,2.3,0 -187283749,"Toribash",purchase,1.0,0 -187283749,"Toribash",play,1.2,0 -187283749,"Unturned",purchase,1.0,0 -187283749,"Unturned",play,0.2,0 -187283749,"Floating Point",purchase,1.0,0 -187283749,"Floating Point",play,0.2,0 -187283749,"Happy Wars",purchase,1.0,0 -187283749,"Happy Wars",play,0.1,0 -201990605,"Dota 2",purchase,1.0,0 -201990605,"Dota 2",play,271.0,0 -201990605,"Defy Gravity",purchase,1.0,0 -201990605,"Robocraft",purchase,1.0,0 -29122428,"Half-Life 2",purchase,1.0,0 -29122428,"Half-Life 2 Deathmatch",purchase,1.0,0 -29122428,"Half-Life 2 Lost Coast",purchase,1.0,0 -87879009,"Counter-Strike",purchase,1.0,0 -87879009,"Counter-Strike",play,368.0,0 -87879009,"Counter-Strike Global Offensive",purchase,1.0,0 -87879009,"Counter-Strike Global Offensive",play,122.0,0 -87879009,"Counter-Strike Condition Zero",purchase,1.0,0 -87879009,"Counter-Strike Condition Zero",play,44.0,0 -87879009,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -87879009,"Counter-Strike Condition Zero Deleted Scenes",play,12.4,0 -283853460,"War Inc. Battlezone",purchase,1.0,0 -283853460,"War Inc. Battlezone",play,1.7,0 -42099265,"Football Manager 2014",purchase,1.0,0 -42099265,"Football Manager 2014",play,826.0,0 -42099265,"Football Manager 2012",purchase,1.0,0 -42099265,"Football Manager 2012",play,472.0,0 -42099265,"Football Manager 2015",purchase,1.0,0 -42099265,"Football Manager 2015",play,222.0,0 -42099265,"Football Manager 2013",purchase,1.0,0 -42099265,"Football Manager 2013",play,222.0,0 -42099265,"Age of Empires III Complete Collection",purchase,1.0,0 -42099265,"Age of Empires III Complete Collection",play,111.0,0 -42099265,"Football Manager 2016",purchase,1.0,0 -42099265,"Football Manager 2016",play,70.0,0 -42099265,"Football Manager 2016 Demo",purchase,1.0,0 -42099265,"Football Manager 2016 Demo",play,5.7,0 -300534109,"Transformice",purchase,1.0,0 -300534109,"Transformice",play,0.4,0 -4064412,"Counter-Strike",purchase,1.0,0 -4064412,"Counter-Strike",play,1312.0,0 -4064412,"Day of Defeat",purchase,1.0,0 -4064412,"Day of Defeat",play,81.0,0 -4064412,"Team Fortress 2",purchase,1.0,0 -4064412,"Team Fortress 2",play,1.2,0 -4064412,"Half-Life Blue Shift",purchase,1.0,0 -4064412,"Half-Life Blue Shift",play,0.5,0 -4064412,"Counter-Strike Global Offensive",purchase,1.0,0 -4064412,"Deathmatch Classic",purchase,1.0,0 -4064412,"Dungeon Siege III",purchase,1.0,0 -4064412,"Half-Life",purchase,1.0,0 -4064412,"Half-Life Opposing Force",purchase,1.0,0 -4064412,"Ricochet",purchase,1.0,0 -4064412,"Team Fortress Classic",purchase,1.0,0 -183382406,"Dota 2",purchase,1.0,0 -183382406,"Dota 2",play,443.0,0 -183382406,"Unturned",purchase,1.0,0 -183382406,"Unturned",play,23.0,0 -183382406,"No More Room in Hell",purchase,1.0,0 -183382406,"No More Room in Hell",play,9.1,0 -183382406,"APB Reloaded",purchase,1.0,0 -183382406,"APB Reloaded",play,1.2,0 -183382406,"Robocraft",purchase,1.0,0 -183382406,"Robocraft",play,0.5,0 -183382406,"Warframe",purchase,1.0,0 -183382406,"Counter-Strike Nexon Zombies",purchase,1.0,0 -183382406,"Insecticide Part 1",purchase,1.0,0 -242242432,"Counter-Strike Global Offensive",purchase,1.0,0 -242242432,"Counter-Strike Global Offensive",play,328.0,0 -242242432,"Team Fortress 2",purchase,1.0,0 -242242432,"Team Fortress 2",play,24.0,0 -242242432,"PAYDAY 2",purchase,1.0,0 -242242432,"PAYDAY 2",play,12.4,0 -242242432,"Besiege",purchase,1.0,0 -242242432,"Besiege",play,8.0,0 -242242432,"Left 4 Dead 2",purchase,1.0,0 -242242432,"Left 4 Dead 2",play,7.2,0 -242242432,"Unturned",purchase,1.0,0 -242242432,"Unturned",play,4.5,0 -242242432,"APB Reloaded",purchase,1.0,0 -242242432,"APB Reloaded",play,3.2,0 -242242432,"GunZ 2 The Second Duel",purchase,1.0,0 -242242432,"GunZ 2 The Second Duel",play,2.5,0 -242242432,"Dota 2",purchase,1.0,0 -242242432,"Dota 2",play,2.0,0 -242242432,"Trove",purchase,1.0,0 -242242432,"Trove",play,0.2,0 -242242432,"MicroVolts Surge",purchase,1.0,0 -242242432,"MicroVolts Surge",play,0.2,0 -242242432,"POSTAL",purchase,1.0,0 -242242432,"Robocraft",purchase,1.0,0 -242242432,"War Thunder",purchase,1.0,0 -242242432,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -242242432,"Warframe",purchase,1.0,0 -91800733,"Fallout 4",purchase,1.0,0 -91800733,"Fallout 4",play,63.0,0 -91800733,"Call of Duty Modern Warfare 3",purchase,1.0,0 -91800733,"Call of Duty Modern Warfare 3",play,16.9,0 -91800733,"Call of Duty Black Ops II",purchase,1.0,0 -91800733,"Call of Duty Black Ops II",play,10.5,0 -91800733,"Left 4 Dead 2",purchase,1.0,0 -91800733,"Left 4 Dead 2",play,8.5,0 -91800733,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -91800733,"Call of Duty Modern Warfare 3 - Multiplayer",play,7.8,0 -91800733,"DayZ",purchase,1.0,0 -91800733,"DayZ",play,3.1,0 -91800733,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -91800733,"Call of Duty Black Ops II - Multiplayer",play,2.7,0 -91800733,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -91800733,"Call of Duty Black Ops II - Zombies",play,2.6,0 -93812486,"DC Universe Online",purchase,1.0,0 -93812486,"DC Universe Online",play,624.0,0 -93812486,"Super Meat Boy",purchase,1.0,0 -93812486,"Super Meat Boy",play,10.0,0 -93812486,"Champions Online",purchase,1.0,0 -93812486,"Champions Online",play,0.5,0 -93812486,"Marvel Heroes 2015",purchase,1.0,0 -191480137,"Dota 2",purchase,1.0,0 -191480137,"Dota 2",play,24.0,0 -191480137,"Warface",purchase,1.0,0 -191480137,"Warface",play,19.9,0 -293691139,"Gotham City Impostors Free To Play",purchase,1.0,0 -293691139,"Gotham City Impostors Free To Play",play,1.4,0 -293691139,"Firefall",purchase,1.0,0 -293691139,"Firefall",play,1.1,0 -293691139,"GunZ 2 The Second Duel",purchase,1.0,0 -293691139,"GunZ 2 The Second Duel",play,0.8,0 -293691139,"Moonbase Alpha",purchase,1.0,0 -293691139,"Defiance",purchase,1.0,0 -293691139,"Warframe",purchase,1.0,0 -293269191,"Counter-Strike Global Offensive",purchase,1.0,0 -293269191,"Counter-Strike Global Offensive",play,70.0,0 -293269191,"Far Cry 3",purchase,1.0,0 -293269191,"Far Cry 3",play,3.9,0 -293269191,"Counter-Strike Nexon Zombies",purchase,1.0,0 -293269191,"Counter-Strike Nexon Zombies",play,1.0,0 -293269191,"Magic Duels",purchase,1.0,0 -293269191,"BLOCKADE 3D",purchase,1.0,0 -293269191,"Gear Up",purchase,1.0,0 -293269191,"Unturned",purchase,1.0,0 -227777777,"Dota 2",purchase,1.0,0 -227777777,"Dota 2",play,61.0,0 -227777777,"Warframe",purchase,1.0,0 -227777777,"Warframe",play,1.6,0 -227777777,"Rise of Incarnates",purchase,1.0,0 -227777777,"Rise of Incarnates",play,0.3,0 -227777777,"Marvel Heroes 2015",purchase,1.0,0 -227777777,"Warface",purchase,1.0,0 -227777777,"APB Reloaded",purchase,1.0,0 -227777777,"Block N Load",purchase,1.0,0 -227777777,"Heroes & Generals",purchase,1.0,0 -227777777,"Missing Translation",purchase,1.0,0 -145844862,"Dota 2",purchase,1.0,0 -145844862,"Dota 2",play,4.0,0 -205634951,"Dota 2",purchase,1.0,0 -205634951,"Dota 2",play,3.2,0 -216040174,"H1Z1",purchase,1.0,0 -216040174,"H1Z1",play,10.4,0 -216040174,"No More Room in Hell",purchase,1.0,0 -216040174,"No More Room in Hell",play,1.8,0 -216040174,"H1Z1 Test Server",purchase,1.0,0 -172318605,"Dota 2",purchase,1.0,0 -172318605,"Dota 2",play,4.7,0 -106760673,"Sid Meier's Civilization V",purchase,1.0,0 -106760673,"Sid Meier's Civilization V",play,143.0,0 -106760673,"Left 4 Dead 2",purchase,1.0,0 -106760673,"Left 4 Dead 2",play,66.0,0 -106760673,"Team Fortress 2",purchase,1.0,0 -106760673,"Team Fortress 2",play,62.0,0 -106760673,"Garry's Mod",purchase,1.0,0 -106760673,"Garry's Mod",play,38.0,0 -106760673,"The Witcher Enhanced Edition",purchase,1.0,0 -106760673,"The Witcher Enhanced Edition",play,30.0,0 -106760673,"Half-Life 2",purchase,1.0,0 -106760673,"Half-Life 2",play,27.0,0 -106760673,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -106760673,"The Witcher 2 Assassins of Kings Enhanced Edition",play,18.0,0 -106760673,"Grand Theft Auto IV",purchase,1.0,0 -106760673,"Grand Theft Auto IV",play,9.6,0 -106760673,"Portal 2",purchase,1.0,0 -106760673,"Portal 2",play,9.6,0 -106760673,"Counter-Strike Global Offensive",purchase,1.0,0 -106760673,"Counter-Strike Global Offensive",play,8.9,0 -106760673,"Unturned",purchase,1.0,0 -106760673,"Unturned",play,8.1,0 -106760673,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -106760673,"Grand Theft Auto Episodes from Liberty City",play,7.6,0 -106760673,"Tomb Raider",purchase,1.0,0 -106760673,"Tomb Raider",play,5.2,0 -106760673,"Killing Floor",purchase,1.0,0 -106760673,"Killing Floor",play,4.7,0 -106760673,"Amnesia A Machine for Pigs",purchase,1.0,0 -106760673,"Amnesia A Machine for Pigs",play,3.7,0 -106760673,"Metro 2033",purchase,1.0,0 -106760673,"Metro 2033",play,3.4,0 -106760673,"Half-Life 2 Episode One",purchase,1.0,0 -106760673,"Half-Life 2 Episode One",play,3.3,0 -106760673,"Guns of Icarus Online",purchase,1.0,0 -106760673,"Guns of Icarus Online",play,2.7,0 -106760673,"Half-Life 2 Episode Two",purchase,1.0,0 -106760673,"Half-Life 2 Episode Two",play,2.4,0 -106760673,"SpeedRunners",purchase,1.0,0 -106760673,"SpeedRunners",play,2.3,0 -106760673,"Counter-Strike Source",purchase,1.0,0 -106760673,"Counter-Strike Source",play,2.1,0 -106760673,"PAYDAY The Heist",purchase,1.0,0 -106760673,"PAYDAY The Heist",play,2.1,0 -106760673,"Killing Floor 2",purchase,1.0,0 -106760673,"Killing Floor 2",play,2.0,0 -106760673,"Saints Row The Third",purchase,1.0,0 -106760673,"Saints Row The Third",play,1.8,0 -106760673,"Portal",purchase,1.0,0 -106760673,"Portal",play,1.7,0 -106760673,"Terraria",purchase,1.0,0 -106760673,"Terraria",play,0.8,0 -106760673,"Natural Selection 2",purchase,1.0,0 -106760673,"Natural Selection 2",play,0.6,0 -106760673,"Mirror's Edge",purchase,1.0,0 -106760673,"Mirror's Edge",play,0.5,0 -106760673,"Dead Island",purchase,1.0,0 -106760673,"Dead Island",play,0.3,0 -106760673,"Half-Life 2 Lost Coast",purchase,1.0,0 -106760673,"Half-Life 2 Lost Coast",play,0.1,0 -106760673,"Left 4 Dead",purchase,1.0,0 -106760673,"Counter-Strike",purchase,1.0,0 -106760673,"Counter-Strike Condition Zero",purchase,1.0,0 -106760673,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -106760673,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -106760673,"Kung Fury",purchase,1.0,0 -106760673,"Papers, Please",purchase,1.0,0 -106760673,"Secret of the Magic Crystal",purchase,1.0,0 -106760673,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -106760673,"Sniper Elite V2",purchase,1.0,0 -106760673,"Stealth Inc 2",purchase,1.0,0 -106760673,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -62539628,"Napoleon Total War",purchase,1.0,0 -62539628,"Napoleon Total War",play,18.6,0 -62539628,"Total War SHOGUN 2",purchase,1.0,0 -62539628,"Total War SHOGUN 2",play,8.3,0 -62539628,"War Thunder",purchase,1.0,0 -62539628,"War Thunder",play,0.6,0 -251928689,"Team Fortress 2",purchase,1.0,0 -251928689,"Team Fortress 2",play,8.2,0 -149438233,"Ace of Spades",purchase,1.0,0 -149438233,"Ace of Spades",play,2.7,0 -149438233,"Team Fortress 2",purchase,1.0,0 -149438233,"Team Fortress 2",play,0.2,0 -149438233,"Unturned",purchase,1.0,0 -293843600,"FreeStyle2 Street Basketball",purchase,1.0,0 -180955576,"Dota 2",purchase,1.0,0 -180955576,"Dota 2",play,1.0,0 -87162199,"Arma 2 Operation Arrowhead",purchase,1.0,0 -87162199,"Arma 2 Operation Arrowhead",play,10.7,0 -87162199,"Darksiders",purchase,1.0,0 -87162199,"Darksiders",play,4.0,0 -87162199,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -87162199,"Tom Clancy's Ghost Recon Phantoms - EU",play,1.4,0 -87162199,"Arma 2",purchase,1.0,0 -87162199,"Arma 2",play,0.8,0 -87162199,"Dota 2",purchase,1.0,0 -87162199,"Dota 2",play,0.3,0 -87162199,"Arma 2 DayZ Mod",purchase,1.0,0 -87162199,"Arma 2 DayZ Mod",play,0.1,0 -87162199,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -87162199,"Saints Row 2",purchase,1.0,0 -167874227,"Heroes & Generals",purchase,1.0,0 -167874227,"Heroes & Generals",play,0.4,0 -167874227,"Unturned",purchase,1.0,0 -286095646,"Dota 2",purchase,1.0,0 -286095646,"Dota 2",play,2.6,0 -198417932,"Unturned",purchase,1.0,0 -198417932,"Unturned",play,1.5,0 -234838943,"Team Fortress 2",purchase,1.0,0 -234838943,"Team Fortress 2",play,36.0,0 -79407831,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -79407831,"Warhammer 40,000 Dawn of War II Retribution",play,41.0,0 -156312176,"Dota 2",purchase,1.0,0 -156312176,"Dota 2",play,1.7,0 -81139130,"PAYDAY 2",purchase,1.0,0 -81139130,"PAYDAY 2",play,183.0,0 -81139130,"Darksiders II",purchase,1.0,0 -81139130,"Darksiders II",play,24.0,0 -81139130,"BioShock Infinite",purchase,1.0,0 -81139130,"BioShock Infinite",play,13.3,0 -81139130,"Counter-Strike Source",purchase,1.0,0 -81139130,"Counter-Strike Source",play,8.4,0 -81139130,"Team Fortress 2",purchase,1.0,0 -81139130,"Team Fortress 2",play,6.7,0 -81139130,"MURDERED SOUL SUSPECT",purchase,1.0,0 -81139130,"MURDERED SOUL SUSPECT",play,1.7,0 -81139130,"Counter-Strike",purchase,1.0,0 -81139130,"Counter-Strike Condition Zero",purchase,1.0,0 -81139130,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -81139130,"Day of Defeat",purchase,1.0,0 -81139130,"Deathmatch Classic",purchase,1.0,0 -81139130,"Ricochet",purchase,1.0,0 -81139130,"Thief",purchase,1.0,0 -167017825,"Dota 2",purchase,1.0,0 -167017825,"Dota 2",play,748.0,0 -167017825,"Counter-Strike Global Offensive",purchase,1.0,0 -167017825,"Counter-Strike Global Offensive",play,21.0,0 -167017825,"Darksiders",purchase,1.0,0 -167017825,"Darksiders",play,8.7,0 -167017825,"Euro Truck Simulator 2",purchase,1.0,0 -167017825,"Euro Truck Simulator 2",play,8.5,0 -167017825,"Assassin's Creed IV Black Flag",purchase,1.0,0 -167017825,"Assassin's Creed IV Black Flag",play,7.9,0 -167017825,"Nosgoth",purchase,1.0,0 -167017825,"Nosgoth",play,6.2,0 -167017825,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -167017825,"Tom Clancy's Ghost Recon Phantoms - EU",play,4.0,0 -167017825,"ARK Survival Evolved",purchase,1.0,0 -167017825,"ARK Survival Evolved",play,3.5,0 -167017825,"Quake Live",purchase,1.0,0 -167017825,"Darksiders II",purchase,1.0,0 -167017825,"Darksiders II Deathinitive Edition",purchase,1.0,0 -167017825,"Darksiders II Soundtrack",purchase,1.0,0 -167017825,"Darksiders Soundtrack",purchase,1.0,0 -167017825,"Dead Island Epidemic",purchase,1.0,0 -167017825,"Everlasting Summer",purchase,1.0,0 -3974133,"Counter-Strike",purchase,1.0,0 -3974133,"Day of Defeat",purchase,1.0,0 -3974133,"Deathmatch Classic",purchase,1.0,0 -3974133,"Half-Life",purchase,1.0,0 -3974133,"Half-Life Blue Shift",purchase,1.0,0 -3974133,"Half-Life Opposing Force",purchase,1.0,0 -3974133,"Ricochet",purchase,1.0,0 -3974133,"Team Fortress Classic",purchase,1.0,0 -213406926,"Dota 2",purchase,1.0,0 -213406926,"Dota 2",play,1.3,0 -259791209,"Dota 2",purchase,1.0,0 -259791209,"Dota 2",play,22.0,0 -78799565,"Counter-Strike",purchase,1.0,0 -78799565,"Counter-Strike",play,2526.0,0 -78799565,"Dota 2",purchase,1.0,0 -78799565,"Dota 2",play,1906.0,0 -78799565,"Counter-Strike Global Offensive",purchase,1.0,0 -78799565,"Counter-Strike Global Offensive",play,725.0,0 -78799565,"Total War SHOGUN 2",purchase,1.0,0 -78799565,"Total War SHOGUN 2",play,23.0,0 -78799565,"DayZ",purchase,1.0,0 -78799565,"DayZ",play,5.4,0 -78799565,"Counter-Strike Condition Zero",purchase,1.0,0 -78799565,"Counter-Strike Condition Zero",play,1.0,0 -78799565,"Deathmatch Classic",purchase,1.0,0 -78799565,"Deathmatch Classic",play,0.3,0 -78799565,"Day of Defeat",purchase,1.0,0 -78799565,"Day of Defeat",play,0.2,0 -78799565,"Batla",purchase,1.0,0 -78799565,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -78799565,"Heroes & Generals",purchase,1.0,0 -78799565,"Ricochet",purchase,1.0,0 -159995376,"The Lord of the Rings War in the North",purchase,1.0,0 -309824202,"Dota 2",purchase,1.0,0 -309824202,"Dota 2",play,0.7,0 -138412880,"Dota 2",purchase,1.0,0 -138412880,"Dota 2",play,4.5,0 -228170321,"Dota 2",purchase,1.0,0 -228170321,"Dota 2",play,2.4,0 -36154073,"Counter-Strike Source",purchase,1.0,0 -36154073,"Counter-Strike Source",play,12.0,0 -36154073,"Empire Total War",purchase,1.0,0 -36154073,"Empire Total War",play,1.5,0 -36154073,"Day of Defeat Source",purchase,1.0,0 -36154073,"Half-Life 2 Deathmatch",purchase,1.0,0 -36154073,"Half-Life 2 Lost Coast",purchase,1.0,0 -210744685,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -210744685,"Tom Clancy's Ghost Recon Phantoms - EU",play,1.9,0 -210744685,"Counter-Strike Global Offensive",purchase,1.0,0 -210744685,"Counter-Strike Global Offensive",play,0.2,0 -210744685,"The Elder Scrolls V Skyrim",purchase,1.0,0 -210744685,"Infinite Crisis",purchase,1.0,0 -210744685,"Murder Miners",purchase,1.0,0 -210744685,"Saints Row The Third",purchase,1.0,0 -210744685,"Chivalry Medieval Warfare",purchase,1.0,0 -210744685,"Counter-Strike",purchase,1.0,0 -210744685,"Counter-Strike Condition Zero",purchase,1.0,0 -210744685,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -210744685,"Counter-Strike Source",purchase,1.0,0 -210744685,"Day of Defeat",purchase,1.0,0 -210744685,"Day of Defeat Source",purchase,1.0,0 -210744685,"Deathmatch Classic",purchase,1.0,0 -210744685,"Far Cry 2",purchase,1.0,0 -210744685,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -210744685,"Gotham City Impostors Free To Play",purchase,1.0,0 -210744685,"Half-Life",purchase,1.0,0 -210744685,"Half-Life 2",purchase,1.0,0 -210744685,"Half-Life 2 Deathmatch",purchase,1.0,0 -210744685,"Half-Life 2 Episode One",purchase,1.0,0 -210744685,"Half-Life 2 Episode Two",purchase,1.0,0 -210744685,"Half-Life 2 Lost Coast",purchase,1.0,0 -210744685,"Half-Life Blue Shift",purchase,1.0,0 -210744685,"Half-Life Opposing Force",purchase,1.0,0 -210744685,"Half-Life Source",purchase,1.0,0 -210744685,"Half-Life Deathmatch Source",purchase,1.0,0 -210744685,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -210744685,"Left 4 Dead",purchase,1.0,0 -210744685,"Left 4 Dead 2",purchase,1.0,0 -210744685,"Neverwinter",purchase,1.0,0 -210744685,"Patch testing for Chivalry",purchase,1.0,0 -210744685,"Portal",purchase,1.0,0 -210744685,"Portal 2",purchase,1.0,0 -210744685,"POSTAL 2",purchase,1.0,0 -210744685,"Ricochet",purchase,1.0,0 -210744685,"Robocraft",purchase,1.0,0 -210744685,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -210744685,"Star Wars - Battlefront II",purchase,1.0,0 -210744685,"Team Fortress Classic",purchase,1.0,0 -210744685,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -210744685,"Trine 2",purchase,1.0,0 -210744685,"Warframe",purchase,1.0,0 -183300822,"Dota 2",purchase,1.0,0 -183300822,"Dota 2",play,0.4,0 -229791471,"Euro Truck Simulator 2",purchase,1.0,0 -229791471,"Euro Truck Simulator 2",play,27.0,0 -229791471,"Unturned",purchase,1.0,0 -229791471,"Unturned",play,1.3,0 -229791471,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -262861632,"Team Fortress 2",purchase,1.0,0 -262861632,"Team Fortress 2",play,743.0,0 -262861632,"Unturned",purchase,1.0,0 -262861632,"Unturned",play,83.0,0 -262861632,"War Thunder",purchase,1.0,0 -262861632,"War Thunder",play,8.7,0 -262861632,"Garry's Mod",purchase,1.0,0 -262861632,"Garry's Mod",play,7.2,0 -262861632,"BLOCKADE 3D",purchase,1.0,0 -262861632,"BLOCKADE 3D",play,6.6,0 -262861632,"No More Room in Hell",purchase,1.0,0 -262861632,"No More Room in Hell",play,5.8,0 -262861632,"Mitos.is The Game",purchase,1.0,0 -262861632,"Mitos.is The Game",play,5.1,0 -262861632,"Five Nights at Freddy's",purchase,1.0,0 -262861632,"Five Nights at Freddy's",play,2.2,0 -262861632,"Creativerse",purchase,1.0,0 -262861632,"Creativerse",play,1.8,0 -262861632,"Call of Tomsk-7",purchase,1.0,0 -262861632,"Call of Tomsk-7",play,1.5,0 -262861632,"Guns and Robots",purchase,1.0,0 -262861632,"Guns and Robots",play,1.0,0 -262861632,"Haunted Memories",purchase,1.0,0 -262861632,"Haunted Memories",play,0.8,0 -262861632,"UberStrike",purchase,1.0,0 -262861632,"UberStrike",play,0.5,0 -262861632,"Krosmaster Arena",purchase,1.0,0 -262861632,"Krosmaster Arena",play,0.4,0 -262861632,"Warface",purchase,1.0,0 -262861632,"Warface",play,0.3,0 -262861632,"Heroes & Generals",purchase,1.0,0 -262861632,"Heroes & Generals",play,0.2,0 -262861632,"Trove",purchase,1.0,0 -262861632,"Trove",play,0.2,0 -262861632,"Cubic Castles",purchase,1.0,0 -262861632,"Cubic Castles",play,0.1,0 -262861632,"Strife",purchase,1.0,0 -262861632,"Super Monday Night Combat",purchase,1.0,0 -262861632,"Aftermath",purchase,1.0,0 -262861632,"Dirty Bomb",purchase,1.0,0 -262861632,"Robocraft",purchase,1.0,0 -262861632,"HAWKEN",purchase,1.0,0 -262861632,"APB Reloaded",purchase,1.0,0 -262861632,"Batla",purchase,1.0,0 -262861632,"Battle Battalions",purchase,1.0,0 -262861632,"Brick-Force",purchase,1.0,0 -262861632,"Counter-Strike Nexon Zombies",purchase,1.0,0 -262861632,"Fallen Earth",purchase,1.0,0 -262861632,"Hazard Ops",purchase,1.0,0 -262861632,"NASCAR '15 Paint Pack 1",purchase,1.0,0 -262861632,"sZone-Online",purchase,1.0,0 -242896221,"Dota 2",purchase,1.0,0 -242896221,"Dota 2",play,3.0,0 -170473291,"Dota 2",purchase,1.0,0 -170473291,"Dota 2",play,75.0,0 -162999869,"Dota 2",purchase,1.0,0 -162999869,"Dota 2",play,39.0,0 -298913000,"Dota 2",purchase,1.0,0 -298913000,"Dota 2",play,1.0,0 -80419227,"Call of Duty Black Ops",purchase,1.0,0 -80419227,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -104055167,"Total War SHOGUN 2",purchase,1.0,0 -104055167,"Total War SHOGUN 2",play,1169.0,0 -104055167,"Football Manager 2015",purchase,1.0,0 -104055167,"Football Manager 2015",play,501.0,0 -104055167,"The Elder Scrolls V Skyrim",purchase,1.0,0 -104055167,"The Elder Scrolls V Skyrim",play,234.0,0 -104055167,"Napoleon Total War",purchase,1.0,0 -104055167,"Napoleon Total War",play,18.8,0 -104055167,"Total War ROME II - Emperor Edition",purchase,1.0,0 -104055167,"Total War ROME II - Emperor Edition",play,12.5,0 -104055167,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -104055167,"The Elder Scrolls IV Oblivion ",play,11.0,0 -104055167,"Merchants of Kaidan",purchase,1.0,0 -104055167,"Merchants of Kaidan",play,4.9,0 -104055167,"Empire Total War",purchase,1.0,0 -104055167,"Empire Total War",play,3.0,0 -104055167,"WAKFU",purchase,1.0,0 -104055167,"WAKFU",play,1.2,0 -104055167,"Lego Harry Potter",purchase,1.0,0 -104055167,"Lego Harry Potter",play,0.6,0 -104055167,"Football Manager 2016 Demo",purchase,1.0,0 -104055167,"Football Manager 2016 Demo",play,0.1,0 -212374494,"GunZ 2 The Second Duel",purchase,1.0,0 -212374494,"Warframe",purchase,1.0,0 -170527593,"Dota 2",purchase,1.0,0 -170527593,"Dota 2",play,0.6,0 -178893007,"Dota 2",purchase,1.0,0 -178893007,"Dota 2",play,15.4,0 -159365538,"Pro Evolution Soccer 2015",purchase,1.0,0 -159365538,"Pro Evolution Soccer 2015",play,201.0,0 -159365538,"Total War ROME II - Emperor Edition",purchase,1.0,0 -159365538,"Total War ROME II - Emperor Edition",play,81.0,0 -159365538,"Empire Total War",purchase,1.0,0 -159365538,"Empire Total War",play,30.0,0 -159365538,"Cities Skylines",purchase,1.0,0 -159365538,"Cities Skylines",play,12.3,0 -159365538,"Total War ATTILA",purchase,1.0,0 -159365538,"Total War ATTILA",play,10.4,0 -159365538,"Thief",purchase,1.0,0 -159365538,"Thief",play,5.6,0 -159365538,"Europa Universalis IV",purchase,1.0,0 -159365538,"Europa Universalis IV",play,5.2,0 -159365538,"Napoleon Total War",purchase,1.0,0 -159365538,"Napoleon Total War",play,5.0,0 -159365538,"Total War SHOGUN 2",purchase,1.0,0 -159365538,"Total War SHOGUN 2",play,1.9,0 -159365538,"Esenthel Engine",purchase,1.0,0 -159365538,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -135540095,"Dota 2",purchase,1.0,0 -135540095,"Dota 2",play,7.3,0 -201743677,"Dota 2",purchase,1.0,0 -201743677,"Dota 2",play,0.5,0 -132118265,"Blacklight Retribution",purchase,1.0,0 -132118265,"Codename CURE",purchase,1.0,0 -132118265,"HAWKEN",purchase,1.0,0 -132118265,"Marvel Heroes 2015",purchase,1.0,0 -132118265,"Unturned",purchase,1.0,0 -109201849,"Half-Life 2",purchase,1.0,0 -109201849,"Half-Life 2",play,12.0,0 -109201849,"Team Fortress 2",purchase,1.0,0 -109201849,"Team Fortress 2",play,10.2,0 -109201849,"Portal 2",purchase,1.0,0 -109201849,"Portal 2",play,5.0,0 -109201849,"Dungeon Defenders",purchase,1.0,0 -109201849,"Dungeon Defenders",play,3.8,0 -109201849,"Garry's Mod",purchase,1.0,0 -109201849,"Garry's Mod",play,3.2,0 -109201849,"Worms Reloaded",purchase,1.0,0 -109201849,"Worms Reloaded",play,1.5,0 -109201849,"Psychonauts",purchase,1.0,0 -109201849,"Psychonauts",play,1.2,0 -109201849,"Sid Meier's Civilization V",purchase,1.0,0 -109201849,"Sid Meier's Civilization V",play,0.7,0 -109201849,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -109201849,"Plants vs. Zombies Game of the Year",play,0.5,0 -109201849,"Rochard",purchase,1.0,0 -109201849,"Rochard",play,0.4,0 -109201849,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -109201849,"Superbrothers Sword & Sworcery EP",play,0.2,0 -109201849,"Half-Life 2 Lost Coast",purchase,1.0,0 -109201849,"Psychonauts Demo",purchase,1.0,0 -123245831,"Dota 2",purchase,1.0,0 -123245831,"Dota 2",play,14.5,0 -237468202,"Dota 2",purchase,1.0,0 -237468202,"Dota 2",play,0.7,0 -214077903,"Tomb Raider",purchase,1.0,0 -214077903,"Tomb Raider",play,6.9,0 -259268105,"Dota 2",purchase,1.0,0 -259268105,"Dota 2",play,288.0,0 -259268105,"Aura Kingdom",purchase,1.0,0 -259268105,"Aura Kingdom",play,24.0,0 -259268105,"FINAL FANTASY XIV A Realm Reborn",purchase,1.0,0 -259268105,"FINAL FANTASY XIV A Realm Reborn",play,21.0,0 -259268105,"FINAL FANTASY XIV A Realm Reborn (PAL version)",purchase,1.0,0 -96771844,"Train Simulator",purchase,1.0,0 -96771844,"Train Simulator",play,41.0,0 -96771844,"H1Z1",purchase,1.0,0 -96771844,"H1Z1",play,14.6,0 -96771844,"Left 4 Dead 2",purchase,1.0,0 -96771844,"Left 4 Dead 2",play,1.2,0 -96771844,"H1Z1 Test Server",purchase,1.0,0 -196119233,"Zombies Monsters Robots",purchase,1.0,0 -196119233,"Zombies Monsters Robots",play,0.5,0 -149291366,"Unturned",purchase,1.0,0 -149291366,"Unturned",play,15.3,0 -149291366,"Dota 2",purchase,1.0,0 -149291366,"Dota 2",play,6.7,0 -149291366,"Team Fortress 2",purchase,1.0,0 -149291366,"Team Fortress 2",play,2.2,0 -149291366,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -273544140,"Dota 2",purchase,1.0,0 -273544140,"Dota 2",play,1.0,0 -1950243,"FINAL FANTASY VII",purchase,1.0,0 -1950243,"FINAL FANTASY VII",play,71.0,0 -1950243,"Company of Heroes Tales of Valor",purchase,1.0,0 -1950243,"Company of Heroes Tales of Valor",play,52.0,0 -1950243,"Left 4 Dead 2",purchase,1.0,0 -1950243,"Left 4 Dead 2",play,49.0,0 -1950243,"Counter-Strike Global Offensive",purchase,1.0,0 -1950243,"Counter-Strike Global Offensive",play,45.0,0 -1950243,"Battlefield Bad Company 2",purchase,1.0,0 -1950243,"Battlefield Bad Company 2",play,40.0,0 -1950243,"Team Fortress 2",purchase,1.0,0 -1950243,"Team Fortress 2",play,27.0,0 -1950243,"Left 4 Dead",purchase,1.0,0 -1950243,"Left 4 Dead",play,27.0,0 -1950243,"3DMark",purchase,1.0,0 -1950243,"3DMark",play,26.0,0 -1950243,"Counter-Strike Source",purchase,1.0,0 -1950243,"Counter-Strike Source",play,14.4,0 -1950243,"Company of Heroes 2",purchase,1.0,0 -1950243,"Company of Heroes 2",play,13.3,0 -1950243,"Dead Island",purchase,1.0,0 -1950243,"Dead Island",play,11.8,0 -1950243,"Dungeon Defenders",purchase,1.0,0 -1950243,"Dungeon Defenders",play,11.1,0 -1950243,"Borderlands 2",purchase,1.0,0 -1950243,"Borderlands 2",play,11.0,0 -1950243,"Street Fighter IV",purchase,1.0,0 -1950243,"Street Fighter IV",play,10.6,0 -1950243,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -1950243,"Plants vs. Zombies Game of the Year",play,10.4,0 -1950243,"Dungeon Defenders II",purchase,1.0,0 -1950243,"Dungeon Defenders II",play,9.2,0 -1950243,"Supreme Commander 2",purchase,1.0,0 -1950243,"Supreme Commander 2",play,8.9,0 -1950243,"Borderlands",purchase,1.0,0 -1950243,"Borderlands",play,7.6,0 -1950243,"Sid Meier's Railroads!",purchase,1.0,0 -1950243,"Sid Meier's Railroads!",play,7.6,0 -1950243,"Rocket League",purchase,1.0,0 -1950243,"Rocket League",play,6.3,0 -1950243,"Planetary Annihilation TITANS",purchase,1.0,0 -1950243,"Planetary Annihilation TITANS",play,4.8,0 -1950243,"World in Conflict Soviet Assault",purchase,1.0,0 -1950243,"World in Conflict Soviet Assault",play,4.6,0 -1950243,"Titan Quest Immortal Throne",purchase,1.0,0 -1950243,"Titan Quest Immortal Throne",play,4.1,0 -1950243,"Alien Swarm",purchase,1.0,0 -1950243,"Alien Swarm",play,3.8,0 -1950243,"Planetary Annihilation",purchase,1.0,0 -1950243,"Planetary Annihilation",play,3.5,0 -1950243,"Arma 3",purchase,1.0,0 -1950243,"Arma 3",play,2.6,0 -1950243,"Sins of a Solar Empire Trinity",purchase,1.0,0 -1950243,"Sins of a Solar Empire Trinity",play,2.6,0 -1950243,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -1950243,"Unreal Tournament 3 Black Edition",play,2.5,0 -1950243,"Magic 2015",purchase,1.0,0 -1950243,"Magic 2015",play,2.2,0 -1950243,"Space Empires V",purchase,1.0,0 -1950243,"Space Empires V",play,1.9,0 -1950243,"Supreme Commander Forged Alliance",purchase,1.0,0 -1950243,"Supreme Commander Forged Alliance",play,1.6,0 -1950243,"Portal",purchase,1.0,0 -1950243,"Portal",play,1.6,0 -1950243,"PAYDAY The Heist",purchase,1.0,0 -1950243,"PAYDAY The Heist",play,1.4,0 -1950243,"Age of Empires II HD Edition",purchase,1.0,0 -1950243,"Age of Empires II HD Edition",play,1.3,0 -1950243,"Call of Duty Black Ops",purchase,1.0,0 -1950243,"Call of Duty Black Ops",play,1.3,0 -1950243,"War Thunder",purchase,1.0,0 -1950243,"War Thunder",play,1.2,0 -1950243,"Dota 2",purchase,1.0,0 -1950243,"Dota 2",play,1.1,0 -1950243,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -1950243,"Call of Duty Black Ops - Multiplayer",play,0.9,0 -1950243,"Portal 2",purchase,1.0,0 -1950243,"Portal 2",play,0.7,0 -1950243,"Star Wars - Battlefront II",purchase,1.0,0 -1950243,"Star Wars - Battlefront II",play,0.6,0 -1950243,"Ticket to Ride",purchase,1.0,0 -1950243,"Ticket to Ride",play,0.6,0 -1950243,"Star Wars Knights of the Old Republic",purchase,1.0,0 -1950243,"Star Wars Knights of the Old Republic",play,0.5,0 -1950243,"Titan Quest",purchase,1.0,0 -1950243,"Titan Quest",play,0.4,0 -1950243,"Robocraft",purchase,1.0,0 -1950243,"Robocraft",play,0.4,0 -1950243,"Counter-Strike",purchase,1.0,0 -1950243,"Company of Heroes",purchase,1.0,0 -1950243,"Company of Heroes Opposing Fronts",purchase,1.0,0 -1950243,"3DMark API Overhead feature test",purchase,1.0,0 -1950243,"3DMark Cloud Gate benchmark",purchase,1.0,0 -1950243,"3DMark Fire Strike benchmark",purchase,1.0,0 -1950243,"3DMark Ice Storm benchmark",purchase,1.0,0 -1950243,"3DMark Sky Diver benchmark",purchase,1.0,0 -1950243,"Age of Empires II HD The Forgotten",purchase,1.0,0 -1950243,"Arma 3 Zeus",purchase,1.0,0 -1950243,"Bad Rats",purchase,1.0,0 -1950243,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -1950243,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -1950243,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -1950243,"Company of Heroes (New Steam Version)",purchase,1.0,0 -1950243,"Day of Defeat",purchase,1.0,0 -1950243,"Deathmatch Classic",purchase,1.0,0 -1950243,"Half-Life",purchase,1.0,0 -1950243,"Half-Life 2",purchase,1.0,0 -1950243,"Half-Life 2 Deathmatch",purchase,1.0,0 -1950243,"Half-Life 2 Episode One",purchase,1.0,0 -1950243,"Half-Life 2 Episode Two",purchase,1.0,0 -1950243,"Half-Life 2 Lost Coast",purchase,1.0,0 -1950243,"Half-Life Blue Shift",purchase,1.0,0 -1950243,"Half-Life Opposing Force",purchase,1.0,0 -1950243,"Ricochet",purchase,1.0,0 -1950243,"Supreme Commander",purchase,1.0,0 -1950243,"Team Fortress Classic",purchase,1.0,0 -1950243,"Ticket to Ride - Europe",purchase,1.0,0 -1950243,"Ticket to Ride - Legendary Asia",purchase,1.0,0 -1950243,"Ticket to Ride - Switzerland",purchase,1.0,0 -1950243,"Ticket to Ride - USA 1910",purchase,1.0,0 -1950243,"World in Conflict",purchase,1.0,0 -244878837,"Dota 2",purchase,1.0,0 -244878837,"Dota 2",play,4.0,0 -110095045,"Team Fortress 2",purchase,1.0,0 -110095045,"Team Fortress 2",play,36.0,0 -110095045,"No More Room in Hell",purchase,1.0,0 -110095045,"No More Room in Hell",play,1.3,0 -110095045,"Modular Combat",purchase,1.0,0 -110095045,"Modular Combat",play,0.1,0 -110095045,"Copa Petrobras de Marcas",purchase,1.0,0 -294281624,"Dota 2",purchase,1.0,0 -294281624,"Dota 2",play,3.0,0 -229095219,"Dota 2",purchase,1.0,0 -229095219,"Dota 2",play,1.7,0 -62985928,"Mystery PI The Vegas Heist",purchase,1.0,0 -62985928,"Mystery PI The Vegas Heist",play,18.6,0 -62985928,"Mystery P.I. The Lottery Ticket",purchase,1.0,0 -62985928,"Mystery P.I. The Lottery Ticket",play,13.2,0 -62985928,"Amazing Adventures Around the World",purchase,1.0,0 -62985928,"Amazing Adventures Around the World",play,12.0,0 -62985928,"Mishap An Accidental Haunting",purchase,1.0,0 -62985928,"Mishap An Accidental Haunting",play,6.4,0 -62985928,"Chuzzle Deluxe",purchase,1.0,0 -62985928,"Chuzzle Deluxe",play,6.3,0 -62985928,"The Tiny Bang Story",purchase,1.0,0 -62985928,"The Tiny Bang Story",play,6.2,0 -62985928,"The Wizard's Pen",purchase,1.0,0 -62985928,"The Wizard's Pen",play,4.2,0 -62985928,"Amazing Adventures The Lost Tomb",purchase,1.0,0 -62985928,"Amazing Adventures The Lost Tomb",play,3.3,0 -62985928,"Big Money! Deluxe",purchase,1.0,0 -62985928,"Big Money! Deluxe",play,3.0,0 -62985928,"Escape Rosecliff Island",purchase,1.0,0 -62985928,"Escape Rosecliff Island",play,2.0,0 -62985928,"Talismania Deluxe",purchase,1.0,0 -62985928,"Talismania Deluxe",play,1.9,0 -62985928,"Dynomite! Deluxe",purchase,1.0,0 -62985928,"Dynomite! Deluxe",play,1.9,0 -62985928,"Anno 2070",purchase,1.0,0 -62985928,"Anno 2070",play,1.4,0 -62985928,"Bejeweled Deluxe",purchase,1.0,0 -62985928,"Bejeweled Deluxe",play,1.0,0 -62985928,"Feeding Frenzy 2 Shipwreck Showdown Deluxe",purchase,1.0,0 -62985928,"Feeding Frenzy 2 Shipwreck Showdown Deluxe",play,0.4,0 -62985928,"Bejeweled 2 Deluxe",purchase,1.0,0 -62985928,"Bejeweled 2 Deluxe",play,0.3,0 -62985928,"Hammer Heads Deluxe",purchase,1.0,0 -62985928,"AstroPop Deluxe",purchase,1.0,0 -62985928,"Bejeweled Twist",purchase,1.0,0 -62985928,"Bookworm Adventures Deluxe",purchase,1.0,0 -62985928,"BookWorm Deluxe",purchase,1.0,0 -62985928,"Heavy Weapon Deluxe",purchase,1.0,0 -62985928,"Iggle Pop! Deluxe",purchase,1.0,0 -62985928,"Insaniquarium! Deluxe",purchase,1.0,0 -62985928,"Mystery P.I. The New York Fortune",purchase,1.0,0 -62985928,"Peggle Deluxe",purchase,1.0,0 -62985928,"Peggle Nights",purchase,1.0,0 -62985928,"Pizza Frenzy",purchase,1.0,0 -62985928,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -62985928,"Rocket Mania! Deluxe",purchase,1.0,0 -62985928,"Typer Shark! Deluxe",purchase,1.0,0 -62985928,"Venice",purchase,1.0,0 -62985928,"Zuma Deluxe",purchase,1.0,0 -182220992,"Counter-Strike Global Offensive",purchase,1.0,0 -182220992,"Counter-Strike Global Offensive",play,228.0,0 -182220992,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -182220992,"Call of Duty Black Ops II - Multiplayer",play,118.0,0 -182220992,"DayZ",purchase,1.0,0 -182220992,"DayZ",play,24.0,0 -182220992,"America's Army Proving Grounds",purchase,1.0,0 -182220992,"America's Army Proving Grounds",play,2.7,0 -182220992,"Heroes & Generals",purchase,1.0,0 -182220992,"Heroes & Generals",play,2.0,0 -182220992,"theHunter",purchase,1.0,0 -182220992,"theHunter",play,0.7,0 -182220992,"Call of Duty Black Ops II",purchase,1.0,0 -182220992,"Call of Duty Black Ops II",play,0.3,0 -182220992,"the static speaks my name",purchase,1.0,0 -182220992,"the static speaks my name",play,0.3,0 -182220992,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -182220992,"Call of Duty Black Ops II - Zombies",play,0.1,0 -182220992,"Blacklight Retribution",purchase,1.0,0 -182220992,"AdVenture Capitalist",purchase,1.0,0 -182220992,"Clicker Heroes",purchase,1.0,0 -182220992,"PlanetSide 2",purchase,1.0,0 -182220992,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -182220992,"War Thunder",purchase,1.0,0 -266888336,"Dota 2",purchase,1.0,0 -266888336,"Dota 2",play,7.7,0 -278567826,"H1Z1",purchase,1.0,0 -278567826,"H1Z1",play,16.2,0 -278567826,"H1Z1 Test Server",purchase,1.0,0 -142183287,"Left 4 Dead 2",purchase,1.0,0 -142183287,"Left 4 Dead 2",play,7.6,0 -142183287,"Dota 2",purchase,1.0,0 -142183287,"Dota 2",play,0.1,0 -43913966,"Arma 3",purchase,1.0,0 -43913966,"Arma 3",play,608.0,0 -43913966,"Team Fortress 2",purchase,1.0,0 -43913966,"Team Fortress 2",play,337.0,0 -43913966,"Rust",purchase,1.0,0 -43913966,"Rust",play,115.0,0 -43913966,"Reign Of Kings",purchase,1.0,0 -43913966,"Reign Of Kings",play,110.0,0 -43913966,"theHunter",purchase,1.0,0 -43913966,"theHunter",play,95.0,0 -43913966,"Left 4 Dead 2",purchase,1.0,0 -43913966,"Left 4 Dead 2",play,90.0,0 -43913966,"Warframe",purchase,1.0,0 -43913966,"Warframe",play,88.0,0 -43913966,"DARK SOULS II",purchase,1.0,0 -43913966,"DARK SOULS II",play,87.0,0 -43913966,"Grand Theft Auto V",purchase,1.0,0 -43913966,"Grand Theft Auto V",play,74.0,0 -43913966,"ARK Survival Evolved",purchase,1.0,0 -43913966,"ARK Survival Evolved",play,72.0,0 -43913966,"Torchlight II",purchase,1.0,0 -43913966,"Torchlight II",play,70.0,0 -43913966,"Terraria",purchase,1.0,0 -43913966,"Terraria",play,69.0,0 -43913966,"Fallout 4",purchase,1.0,0 -43913966,"Fallout 4",play,65.0,0 -43913966,"Starbound",purchase,1.0,0 -43913966,"Starbound",play,63.0,0 -43913966,"Mount & Blade Warband",purchase,1.0,0 -43913966,"Mount & Blade Warband",play,60.0,0 -43913966,"Mount & Blade With Fire and Sword",purchase,1.0,0 -43913966,"Mount & Blade With Fire and Sword",play,58.0,0 -43913966,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -43913966,"Grand Theft Auto Episodes from Liberty City",play,53.0,0 -43913966,"Unturned",purchase,1.0,0 -43913966,"Unturned",play,52.0,0 -43913966,"PAYDAY 2",purchase,1.0,0 -43913966,"PAYDAY 2",play,52.0,0 -43913966,"The Witcher 3 Wild Hunt",purchase,1.0,0 -43913966,"The Witcher 3 Wild Hunt",play,51.0,0 -43913966,"Borderlands 2",purchase,1.0,0 -43913966,"Borderlands 2",play,51.0,0 -43913966,"Assassin's Creed IV Black Flag",purchase,1.0,0 -43913966,"Assassin's Creed IV Black Flag",play,47.0,0 -43913966,"Dead Island Riptide",purchase,1.0,0 -43913966,"Dead Island Riptide",play,43.0,0 -43913966,"Life is Feudal Your Own",purchase,1.0,0 -43913966,"Life is Feudal Your Own",play,37.0,0 -43913966,"Alien Swarm",purchase,1.0,0 -43913966,"Alien Swarm",play,35.0,0 -43913966,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -43913966,"Resident Evil 6 / Biohazard 6",play,34.0,0 -43913966,"Saints Row The Third",purchase,1.0,0 -43913966,"Saints Row The Third",play,31.0,0 -43913966,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -43913966,"METAL GEAR SOLID V THE PHANTOM PAIN",play,29.0,0 -43913966,"Dying Light",purchase,1.0,0 -43913966,"Dying Light",play,28.0,0 -43913966,"Saints Row IV",purchase,1.0,0 -43913966,"Saints Row IV",play,27.0,0 -43913966,"Dead Rising 3",purchase,1.0,0 -43913966,"Dead Rising 3",play,26.0,0 -43913966,"Just Cause 3",purchase,1.0,0 -43913966,"Just Cause 3",play,25.0,0 -43913966,"Portal 2",purchase,1.0,0 -43913966,"Portal 2",play,24.0,0 -43913966,"Warhammer End Times - Vermintide",purchase,1.0,0 -43913966,"Warhammer End Times - Vermintide",play,24.0,0 -43913966,"Contagion",purchase,1.0,0 -43913966,"Contagion",play,20.0,0 -43913966,"Insurgency Modern Infantry Combat",purchase,1.0,0 -43913966,"Insurgency Modern Infantry Combat",play,19.6,0 -43913966,"IL-2 Sturmovik Cliffs of Dover",purchase,1.0,0 -43913966,"IL-2 Sturmovik Cliffs of Dover",play,19.6,0 -43913966,"Assassins Creed Unity",purchase,1.0,0 -43913966,"Assassins Creed Unity",play,19.0,0 -43913966,"Space Engineers",purchase,1.0,0 -43913966,"Space Engineers",play,17.8,0 -43913966,"Batman Arkham Origins",purchase,1.0,0 -43913966,"Batman Arkham Origins",play,17.0,0 -43913966,"Chivalry Medieval Warfare",purchase,1.0,0 -43913966,"Chivalry Medieval Warfare",play,15.8,0 -43913966,"Kerbal Space Program",purchase,1.0,0 -43913966,"Kerbal Space Program",play,15.0,0 -43913966,"Orcs Must Die! 2",purchase,1.0,0 -43913966,"Orcs Must Die! 2",play,13.8,0 -43913966,"Middle-earth Shadow of Mordor",purchase,1.0,0 -43913966,"Middle-earth Shadow of Mordor",play,13.2,0 -43913966,"Garry's Mod",purchase,1.0,0 -43913966,"Garry's Mod",play,12.1,0 -43913966,"Homeworld Remastered Collection",purchase,1.0,0 -43913966,"Homeworld Remastered Collection",play,12.0,0 -43913966,"Killing Floor",purchase,1.0,0 -43913966,"Killing Floor",play,10.6,0 -43913966,"Counter-Strike Global Offensive",purchase,1.0,0 -43913966,"Counter-Strike Global Offensive",play,10.5,0 -43913966,"Angels Fall First",purchase,1.0,0 -43913966,"Angels Fall First",play,9.8,0 -43913966,"Don't Starve Together Beta",purchase,1.0,0 -43913966,"Don't Starve Together Beta",play,9.4,0 -43913966,"Magicka",purchase,1.0,0 -43913966,"Magicka",play,9.3,0 -43913966,"Legends of Aethereus",purchase,1.0,0 -43913966,"Legends of Aethereus",play,8.8,0 -43913966,"Sniper Elite Nazi Zombie Army",purchase,1.0,0 -43913966,"Sniper Elite Nazi Zombie Army",play,8.4,0 -43913966,"HAWKEN",purchase,1.0,0 -43913966,"HAWKEN",play,7.4,0 -43913966,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -43913966,"Tom Clancy's Splinter Cell Blacklist",play,7.0,0 -43913966,"Sanctum 2",purchase,1.0,0 -43913966,"Sanctum 2",play,6.8,0 -43913966,"7 Days to Die",purchase,1.0,0 -43913966,"7 Days to Die",play,6.4,0 -43913966,"Defiance",purchase,1.0,0 -43913966,"Defiance",play,6.0,0 -43913966,"Killing Floor 2",purchase,1.0,0 -43913966,"Killing Floor 2",play,5.7,0 -43913966,"Planetary Annihilation",purchase,1.0,0 -43913966,"Planetary Annihilation",play,5.1,0 -43913966,"X Rebirth",purchase,1.0,0 -43913966,"X Rebirth",play,5.0,0 -43913966,"No More Room in Hell",purchase,1.0,0 -43913966,"No More Room in Hell",play,4.8,0 -43913966,"Dead Island",purchase,1.0,0 -43913966,"Dead Island",play,4.6,0 -43913966,"Hitman Absolution",purchase,1.0,0 -43913966,"Hitman Absolution",play,4.3,0 -43913966,"Don't Starve",purchase,1.0,0 -43913966,"Don't Starve",play,4.1,0 -43913966,"Planet Explorers",purchase,1.0,0 -43913966,"Planet Explorers",play,3.7,0 -43913966,"Divinity Dragon Commander Beta",purchase,1.0,0 -43913966,"Divinity Dragon Commander Beta",play,3.7,0 -43913966,"PAYDAY The Heist",purchase,1.0,0 -43913966,"PAYDAY The Heist",play,3.2,0 -43913966,"Kingdom Rush",purchase,1.0,0 -43913966,"Kingdom Rush",play,3.1,0 -43913966,"Euro Truck Simulator 2",purchase,1.0,0 -43913966,"Euro Truck Simulator 2",play,2.9,0 -43913966,"DayZ",purchase,1.0,0 -43913966,"DayZ",play,2.9,0 -43913966,"Angry Birds Space",purchase,1.0,0 -43913966,"Angry Birds Space",play,2.7,0 -43913966,"The Elder Scrolls Online Tamriel Unlimited",purchase,1.0,0 -43913966,"The Elder Scrolls Online Tamriel Unlimited",play,2.6,0 -43913966,"Besiege",purchase,1.0,0 -43913966,"Besiege",play,2.5,0 -43913966,"H1Z1",purchase,1.0,0 -43913966,"H1Z1",play,2.4,0 -43913966,"Incredipede",purchase,1.0,0 -43913966,"Incredipede",play,2.4,0 -43913966,"The Forest",purchase,1.0,0 -43913966,"The Forest",play,2.2,0 -43913966,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -43913966,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,2.1,0 -43913966,"Total War ROME II - Emperor Edition",purchase,1.0,0 -43913966,"Total War ROME II - Emperor Edition",play,2.1,0 -43913966,"Age of Chivalry",purchase,1.0,0 -43913966,"Age of Chivalry",play,2.0,0 -43913966,"Evolve",purchase,1.0,0 -43913966,"Evolve",play,2.0,0 -43913966,"Verdun",purchase,1.0,0 -43913966,"Verdun",play,1.7,0 -43913966,"Zeno Clash 2",purchase,1.0,0 -43913966,"Zeno Clash 2",play,1.7,0 -43913966,"Just Cause 2",purchase,1.0,0 -43913966,"Just Cause 2",play,1.6,0 -43913966,"StarForge",purchase,1.0,0 -43913966,"StarForge",play,1.4,0 -43913966,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -43913966,"Sins of a Solar Empire Rebellion",play,1.4,0 -43913966,"Magicka 2",purchase,1.0,0 -43913966,"Magicka 2",play,1.4,0 -43913966,"Trove",purchase,1.0,0 -43913966,"Trove",play,1.3,0 -43913966,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -43913966,"Rising Storm/Red Orchestra 2 Multiplayer",play,1.0,0 -43913966,"Ace of Spades",purchase,1.0,0 -43913966,"Ace of Spades",play,0.8,0 -43913966,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -43913966,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.6,0 -43913966,"GRAV",purchase,1.0,0 -43913966,"GRAV",play,0.5,0 -43913966,"Teenage Mutant Ninja Turtles Out of the Shadows",purchase,1.0,0 -43913966,"Teenage Mutant Ninja Turtles Out of the Shadows",play,0.5,0 -43913966,"Interstellar Marines",purchase,1.0,0 -43913966,"Interstellar Marines",play,0.4,0 -43913966,"Way of the Samurai 4",purchase,1.0,0 -43913966,"Way of the Samurai 4",play,0.4,0 -43913966,"METAL SLUG 3",purchase,1.0,0 -43913966,"METAL SLUG 3",play,0.4,0 -43913966,"L.A. Noire",purchase,1.0,0 -43913966,"L.A. Noire",play,0.3,0 -43913966,"Strike Suit Zero Director's Cut",purchase,1.0,0 -43913966,"Strike Suit Zero Director's Cut",play,0.3,0 -43913966,"The Ship Single Player",purchase,1.0,0 -43913966,"The Ship Single Player",play,0.3,0 -43913966,"Guncraft",purchase,1.0,0 -43913966,"Guncraft",play,0.2,0 -43913966,"Kenshi",purchase,1.0,0 -43913966,"Kenshi",play,0.2,0 -43913966,"X3 Albion Prelude",purchase,1.0,0 -43913966,"X3 Albion Prelude",play,0.2,0 -43913966,"Binary Domain",purchase,1.0,0 -43913966,"Metal Gear Solid Legacy",purchase,1.0,0 -43913966,"The Ship Tutorial",purchase,1.0,0 -43913966,"The Ship",purchase,1.0,0 -43913966,"Amnesia The Dark Descent",purchase,1.0,0 -43913966,"Arma 2",purchase,1.0,0 -43913966,"Arma 2 Operation Arrowhead",purchase,1.0,0 -43913966,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -43913966,"Arma 3 Helicopters",purchase,1.0,0 -43913966,"Arma 3 Karts",purchase,1.0,0 -43913966,"Arma 3 Marksmen",purchase,1.0,0 -43913966,"Arma 3 Zeus",purchase,1.0,0 -43913966,"Arma Cold War Assault",purchase,1.0,0 -43913966,"Assassins Creed Chronicles China",purchase,1.0,0 -43913966,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -43913966,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -43913966,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -43913966,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -43913966,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -43913966,"Counter-Strike",purchase,1.0,0 -43913966,"Day of Defeat",purchase,1.0,0 -43913966,"Dead Island Epidemic",purchase,1.0,0 -43913966,"Dead Rising 3 DLC1",purchase,1.0,0 -43913966,"Dead Rising 3 DLC2",purchase,1.0,0 -43913966,"Dead Rising 3 DLC3",purchase,1.0,0 -43913966,"Dead Rising 3 DLC4",purchase,1.0,0 -43913966,"Deathmatch Classic",purchase,1.0,0 -43913966,"Divinity Dragon Commander",purchase,1.0,0 -43913966,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -43913966,"Far Cry 4",purchase,1.0,0 -43913966,"Flame Over",purchase,1.0,0 -43913966,"Fractured Space",purchase,1.0,0 -43913966,"Grand Theft Auto IV",purchase,1.0,0 -43913966,"H1Z1 Test Server",purchase,1.0,0 -43913966,"Half-Life",purchase,1.0,0 -43913966,"Half-Life Blue Shift",purchase,1.0,0 -43913966,"Half-Life Opposing Force",purchase,1.0,0 -43913966,"Hitman Sniper Challenge",purchase,1.0,0 -43913966,"IL-2 Sturmovik Battle of Stalingrad",purchase,1.0,0 -43913966,"Killing Floor Uncovered",purchase,1.0,0 -43913966,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -43913966,"Magicka Final Frontier",purchase,1.0,0 -43913966,"Magicka Frozen Lake",purchase,1.0,0 -43913966,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -43913966,"Magicka Nippon",purchase,1.0,0 -43913966,"Magicka Party Robes",purchase,1.0,0 -43913966,"Magicka The Watchtower",purchase,1.0,0 -43913966,"Magicka Vietnam",purchase,1.0,0 -43913966,"Magicka Wizard's Survival Kit",purchase,1.0,0 -43913966,"Magicka Wizard Wars",purchase,1.0,0 -43913966,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -43913966,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -43913966,"Mount & Blade Warband - Viking Conquest Reforged Edition",purchase,1.0,0 -43913966,"Patch testing for Chivalry",purchase,1.0,0 -43913966,"PAYDAY The Web Series - Episode 1",purchase,1.0,0 -43913966,"PAYDAY Wolf Pack",purchase,1.0,0 -43913966,"Pulut Adventure",purchase,1.0,0 -43913966,"Ricochet",purchase,1.0,0 -43913966,"Starbound - Unstable",purchase,1.0,0 -43913966,"Team Fortress Classic",purchase,1.0,0 -43913966,"The Witcher 3 Wild Hunt - Expansion Pass",purchase,1.0,0 -43913966,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -43913966,"Torchlight",purchase,1.0,0 -43913966,"Tower Wars",purchase,1.0,0 -43913966,"Trine 3 The Artifacts of Power",purchase,1.0,0 -43913966,"Trove Power Pack",purchase,1.0,0 -43913966,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -43913966,"Warhammer End Times - Vermintide Sigmar's Blessing",purchase,1.0,0 -43913966,"WARSHIFT",purchase,1.0,0 -43913966,"X3 Terran Conflict",purchase,1.0,0 -209127185,"Football Manager 2015",purchase,1.0,0 -209127185,"Football Manager 2015",play,13.4,0 -153164320,"Dota 2",purchase,1.0,0 -153164320,"Dota 2",play,9.7,0 -259330363,"Dota 2",purchase,1.0,0 -259330363,"Dota 2",play,0.4,0 -121280370,"Terraria",purchase,1.0,0 -121280370,"Terraria",play,228.0,0 -121280370,"The Binding of Isaac",purchase,1.0,0 -121280370,"The Binding of Isaac",play,164.0,0 -121280370,"Fallout New Vegas",purchase,1.0,0 -121280370,"Fallout New Vegas",play,151.0,0 -121280370,"Saints Row The Third",purchase,1.0,0 -121280370,"Saints Row The Third",play,128.0,0 -121280370,"The Binding of Isaac Rebirth",purchase,1.0,0 -121280370,"The Binding of Isaac Rebirth",play,112.0,0 -121280370,"Saints Row IV",purchase,1.0,0 -121280370,"Saints Row IV",play,33.0,0 -121280370,"Alice Madness Returns",purchase,1.0,0 -121280370,"Alice Madness Returns",play,20.0,0 -121280370,"Unturned",purchase,1.0,0 -121280370,"Unturned",play,18.5,0 -121280370,"Papers, Please",purchase,1.0,0 -121280370,"Papers, Please",play,13.9,0 -121280370,"Chivalry Medieval Warfare",purchase,1.0,0 -121280370,"Chivalry Medieval Warfare",play,7.5,0 -121280370,"The Witcher Enhanced Edition",purchase,1.0,0 -121280370,"The Witcher Enhanced Edition",play,6.9,0 -121280370,"Amnesia The Dark Descent",purchase,1.0,0 -121280370,"Amnesia The Dark Descent",play,2.4,0 -121280370,"Left 4 Dead 2",purchase,1.0,0 -121280370,"Left 4 Dead 2",play,2.0,0 -121280370,"Dota 2",purchase,1.0,0 -121280370,"Dota 2",play,1.6,0 -121280370,"Two Worlds II",purchase,1.0,0 -121280370,"Two Worlds II",play,0.3,0 -121280370,"Marvel Puzzle Quest",purchase,1.0,0 -121280370,"Neverwinter",purchase,1.0,0 -121280370,"Patch testing for Chivalry",purchase,1.0,0 -121280370,"POSTAL 2",purchase,1.0,0 -121280370,"Trove",purchase,1.0,0 -149122593,"Dota 2",purchase,1.0,0 -149122593,"Dota 2",play,4.1,0 -286545176,"Dota 2",purchase,1.0,0 -286545176,"Dota 2",play,88.0,0 -286545176,"Heroes & Generals",purchase,1.0,0 -255467165,"Dota 2",purchase,1.0,0 -255467165,"Dota 2",play,83.0,0 -213023790,"Gear Up",purchase,1.0,0 -219466905,"Robocraft",purchase,1.0,0 -219466905,"Robocraft",play,25.0,0 -219466905,"Dota 2",purchase,1.0,0 -219466905,"Dota 2",play,0.3,0 -219466905,"Knights and Merchants",purchase,1.0,0 -219466905,"Knights and Merchants",play,0.2,0 -219466905,"Marvel Heroes 2015",purchase,1.0,0 -219466905,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -219466905,"Age of Empires Online",purchase,1.0,0 -219466905,"Amazing World",purchase,1.0,0 -219466905,"America's Army 3",purchase,1.0,0 -219466905,"America's Army Proving Grounds",purchase,1.0,0 -219466905,"APB Reloaded",purchase,1.0,0 -219466905,"Arcane Saga Online",purchase,1.0,0 -219466905,"Archeblade",purchase,1.0,0 -219466905,"Arctic Combat",purchase,1.0,0 -219466905,"Atlantica Online",purchase,1.0,0 -219466905,"Aura Kingdom",purchase,1.0,0 -219466905,"Bloodline Champions",purchase,1.0,0 -219466905,"Brawl Busters",purchase,1.0,0 -219466905,"Bullet Run",purchase,1.0,0 -219466905,"C9",purchase,1.0,0 -219466905,"Cakewalk Loop Manager",purchase,1.0,0 -219466905,"Champions Online",purchase,1.0,0 -219466905,"Combat Arms",purchase,1.0,0 -219466905,"Construct 2 Free",purchase,1.0,0 -219466905,"CrimeCraft GangWars",purchase,1.0,0 -219466905,"Dead Island Epidemic",purchase,1.0,0 -219466905,"Defiance",purchase,1.0,0 -219466905,"District 187",purchase,1.0,0 -219466905,"Dragon Nest",purchase,1.0,0 -219466905,"Dragon Nest Europe",purchase,1.0,0 -219466905,"Dragons and Titans",purchase,1.0,0 -219466905,"Dungeon Fighter Online",purchase,1.0,0 -219466905,"Dungeonland",purchase,1.0,0 -219466905,"Dungeon Party",purchase,1.0,0 -219466905,"Dwarfs F2P",purchase,1.0,0 -219466905,"Enclave",purchase,1.0,0 -219466905,"EverQuest Free-to-Play",purchase,1.0,0 -219466905,"EverQuest II",purchase,1.0,0 -219466905,"EVGA PrecisionX 16",purchase,1.0,0 -219466905,"Face of Mankind",purchase,1.0,0 -219466905,"Fallen Earth",purchase,1.0,0 -219466905,"Fiesta Online",purchase,1.0,0 -219466905,"Fiesta Online NA",purchase,1.0,0 -219466905,"Firefall",purchase,1.0,0 -219466905,"Floating Point",purchase,1.0,0 -219466905,"Football Superstars",purchase,1.0,0 -219466905,"Forsaken World ",purchase,1.0,0 -219466905,"Frontline Tactics",purchase,1.0,0 -219466905,"Global Agenda",purchase,1.0,0 -219466905,"Gotham City Impostors Free To Play",purchase,1.0,0 -219466905,"Grand Chase",purchase,1.0,0 -219466905,"Guns and Robots",purchase,1.0,0 -219466905,"Heroes & Generals",purchase,1.0,0 -219466905,"HOMEFRONT Demo",purchase,1.0,0 -219466905,"La Tale",purchase,1.0,0 -219466905,"Loadout",purchase,1.0,0 -219466905,"Mabinogi",purchase,1.0,0 -219466905,"Magic The Gathering Tactics",purchase,1.0,0 -219466905,"March of War",purchase,1.0,0 -219466905,"Memoir '44 Online",purchase,1.0,0 -219466905,"MicroVolts Surge",purchase,1.0,0 -219466905,"Moon Breakers",purchase,1.0,0 -219466905,"NEOTOKYO",purchase,1.0,0 -219466905,"Neverwinter",purchase,1.0,0 -219466905,"Nosgoth",purchase,1.0,0 -219466905,"Only If",purchase,1.0,0 -219466905,"Pandora Saga Weapons of Balance",purchase,1.0,0 -219466905,"Panzar",purchase,1.0,0 -219466905,"Path of Exile",purchase,1.0,0 -219466905,"Pinball Arcade",purchase,1.0,0 -219466905,"PlanetSide 2",purchase,1.0,0 -219466905,"Pox Nora",purchase,1.0,0 -219466905,"Puzzle Pirates",purchase,1.0,0 -219466905,"Quantum Rush Online",purchase,1.0,0 -219466905,"RaceRoom Racing Experience ",purchase,1.0,0 -219466905,"Ragnarok Online 2",purchase,1.0,0 -219466905,"Realm of the Mad God",purchase,1.0,0 -219466905,"Reversion - The Escape",purchase,1.0,0 -219466905,"Rise of Incarnates",purchase,1.0,0 -219466905,"ROSE Online",purchase,1.0,0 -219466905,"Royal Quest",purchase,1.0,0 -219466905,"Rusty Hearts",purchase,1.0,0 -219466905,"Saira",purchase,1.0,0 -219466905,"Shadow Warrior Classic (1997)",purchase,1.0,0 -219466905,"Spiral Knights",purchase,1.0,0 -219466905,"Star Conflict",purchase,1.0,0 -219466905,"Star Trek Online",purchase,1.0,0 -219466905,"Stronghold Kingdoms",purchase,1.0,0 -219466905,"Sunrider Mask of Arcadius",purchase,1.0,0 -219466905,"Super Crate Box",purchase,1.0,0 -219466905,"Super Monday Night Combat",purchase,1.0,0 -219466905,"Tactical Intervention",purchase,1.0,0 -219466905,"The Banner Saga Factions",purchase,1.0,0 -219466905,"The Expendabros",purchase,1.0,0 -219466905,"The Forgotten Ones",purchase,1.0,0 -219466905,"The Lord of the Rings Online",purchase,1.0,0 -219466905,"Thinking with Time Machine",purchase,1.0,0 -219466905,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -219466905,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -219466905,"Tribes Ascend",purchase,1.0,0 -219466905,"Uncharted Waters Online",purchase,1.0,0 -219466905,"Unturned",purchase,1.0,0 -219466905,"Velvet Sundown",purchase,1.0,0 -219466905,"Vindictus",purchase,1.0,0 -219466905,"Warface",purchase,1.0,0 -219466905,"Warframe",purchase,1.0,0 -219466905,"War Inc. Battlezone",purchase,1.0,0 -219466905,"War Thunder",purchase,1.0,0 -219466905,"World of Battles",purchase,1.0,0 -219466905,"World of Guns Gun Disassembly",purchase,1.0,0 -219466905,"Xam",purchase,1.0,0 -69132252,"Magicka",purchase,1.0,0 -69132252,"Magicka",play,2.4,0 -306592834,"Mitos.is The Game",purchase,1.0,0 -143734410,"Dota 2",purchase,1.0,0 -143734410,"Dota 2",play,2.0,0 -141414004,"Dead Island",purchase,1.0,0 -141414004,"Dead Island",play,8.2,0 -47409520,"Empire Total War",purchase,1.0,0 -47409520,"Empire Total War",play,6.6,0 -106802395,"Blender 2.76b",purchase,1.0,0 -131730206,"Dota 2",purchase,1.0,0 -131730206,"Dota 2",play,1.1,0 -126098408,"Age of Empires II HD Edition",purchase,1.0,0 -126098408,"Age of Empires II HD Edition",play,107.0,0 -126098408,"Archeblade",purchase,1.0,0 -126098408,"Archeblade",play,50.0,0 -126098408,"Counter-Strike Global Offensive",purchase,1.0,0 -126098408,"Counter-Strike Global Offensive",play,50.0,0 -126098408,"Half-Life 2",purchase,1.0,0 -126098408,"Half-Life 2",play,36.0,0 -126098408,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -126098408,"Medal of Honor(TM) Multiplayer",play,30.0,0 -126098408,"Crysis 2 Maximum Edition",purchase,1.0,0 -126098408,"Crysis 2 Maximum Edition",play,8.1,0 -126098408,"Medal of Honor(TM) Single Player",purchase,1.0,0 -126098408,"Medal of Honor(TM) Single Player",play,7.6,0 -126098408,"Neverwinter",purchase,1.0,0 -126098408,"Neverwinter",play,6.0,0 -126098408,"CroNix",purchase,1.0,0 -126098408,"CroNix",play,4.3,0 -126098408,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -126098408,"Command and Conquer Red Alert 3 - Uprising",play,1.5,0 -126098408,"Mirror's Edge",purchase,1.0,0 -126098408,"Mirror's Edge",play,0.3,0 -126098408,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -126098408,"Dead Space",purchase,1.0,0 -126098408,"HIT",purchase,1.0,0 -126098408,"Medal of Honor Pre-Order",purchase,1.0,0 -126098408,"PlanetSide 2",purchase,1.0,0 -126098408,"Universal Combat CE",purchase,1.0,0 -163137081,"Team Fortress 2",purchase,1.0,0 -163137081,"Team Fortress 2",play,47.0,0 -127813787,"F1 2012",purchase,1.0,0 -127813787,"F1 2012",play,18.3,0 -127813787,"RaceRoom Racing Experience ",purchase,1.0,0 -127813787,"RaceRoom Racing Experience ",play,9.9,0 -127813787,"F1 2014",purchase,1.0,0 -127813787,"F1 2014",play,4.7,0 -120725727,"Dota 2",purchase,1.0,0 -120725727,"Dota 2",play,4694.0,0 -120725727,"Counter-Strike Global Offensive",purchase,1.0,0 -120725727,"Counter-Strike Global Offensive",play,561.0,0 -120725727,"Left 4 Dead 2",purchase,1.0,0 -120725727,"Left 4 Dead 2",play,29.0,0 -120725727,"Killing Floor",purchase,1.0,0 -120725727,"Killing Floor",play,7.5,0 -120725727,"Counter-Strike",purchase,1.0,0 -120725727,"Counter-Strike",play,5.8,0 -120725727,"Fistful of Frags",purchase,1.0,0 -120725727,"Fistful of Frags",play,0.5,0 -120725727,"Counter-Strike Condition Zero",purchase,1.0,0 -120725727,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -120725727,"Counter-Strike Source",purchase,1.0,0 -120725727,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -120725727,"The Ship",purchase,1.0,0 -120725727,"The Ship Single Player",purchase,1.0,0 -120725727,"The Ship Tutorial",purchase,1.0,0 -151397156,"PAYDAY 2",purchase,1.0,0 -151397156,"PAYDAY 2",play,24.0,0 -151397156,"Left 4 Dead 2",purchase,1.0,0 -151397156,"Left 4 Dead 2",play,22.0,0 -151397156,"Afterfall InSanity Extended Edition",purchase,1.0,0 -198105109,"Terraria",purchase,1.0,0 -198105109,"Terraria",play,293.0,0 -198105109,"Dota 2",purchase,1.0,0 -198105109,"Dota 2",play,157.0,0 -198105109,"Unturned",purchase,1.0,0 -198105109,"Unturned",play,38.0,0 -198105109,"Robocraft",purchase,1.0,0 -198105109,"Robocraft",play,25.0,0 -198105109,"Garry's Mod",purchase,1.0,0 -198105109,"Garry's Mod",play,22.0,0 -198105109,"Team Fortress 2",purchase,1.0,0 -198105109,"Team Fortress 2",play,22.0,0 -198105109,"Arma 2 Operation Arrowhead",purchase,1.0,0 -198105109,"Arma 2 Operation Arrowhead",play,4.7,0 -198105109,"HAWKEN",purchase,1.0,0 -198105109,"HAWKEN",play,3.9,0 -198105109,"Yet Another Zombie Defense",purchase,1.0,0 -198105109,"Yet Another Zombie Defense",play,3.9,0 -198105109,"Magicite",purchase,1.0,0 -198105109,"Magicite",play,1.2,0 -198105109,"Sniper Elite",purchase,1.0,0 -198105109,"Sniper Elite",play,0.7,0 -198105109,"Waveform",purchase,1.0,0 -198105109,"Waveform",play,0.6,0 -198105109,"Arma 2",purchase,1.0,0 -198105109,"Arma 2 DayZ Mod",purchase,1.0,0 -198105109,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -198105109,"Counter-Strike Nexon Zombies",purchase,1.0,0 -198105109,"Cry of Fear",purchase,1.0,0 -118894547,"Dota 2",purchase,1.0,0 -118894547,"Dota 2",play,1787.0,0 -118894547,"Dragons and Titans",purchase,1.0,0 -118894547,"Dragons and Titans",play,4.3,0 -118894547,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -118894547,"STAR WARS Knights of the Old Republic II The Sith Lords",play,0.6,0 -118894547,"Age of Empires Online",purchase,1.0,0 -118894547,"Fallen Earth",purchase,1.0,0 -118894547,"Star Conflict",purchase,1.0,0 -118894547,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -118894547,"War Thunder",purchase,1.0,0 -283975164,"Dota 2",purchase,1.0,0 -283975164,"Dota 2",play,67.0,0 -117531196,"Terraria",purchase,1.0,0 -117531196,"Terraria",play,71.0,0 -117531196,"Arma 3",purchase,1.0,0 -117531196,"Arma 3",play,63.0,0 -117531196,"Kerbal Space Program",purchase,1.0,0 -117531196,"Kerbal Space Program",play,53.0,0 -117531196,"Rocket League",purchase,1.0,0 -117531196,"Rocket League",play,52.0,0 -117531196,"Assassin's Creed IV Black Flag",purchase,1.0,0 -117531196,"Assassin's Creed IV Black Flag",play,36.0,0 -117531196,"Robocraft",purchase,1.0,0 -117531196,"Robocraft",play,28.0,0 -117531196,"Borderlands 2",purchase,1.0,0 -117531196,"Borderlands 2",play,27.0,0 -117531196,"FTL Faster Than Light",purchase,1.0,0 -117531196,"FTL Faster Than Light",play,27.0,0 -117531196,"Fallout New Vegas",purchase,1.0,0 -117531196,"Fallout New Vegas",play,24.0,0 -117531196,"Sid Meier's Civilization V",purchase,1.0,0 -117531196,"Sid Meier's Civilization V",play,22.0,0 -117531196,"Pixel Piracy",purchase,1.0,0 -117531196,"Pixel Piracy",play,21.0,0 -117531196,"Divinity Original Sin",purchase,1.0,0 -117531196,"Divinity Original Sin",play,17.7,0 -117531196,"Firefall",purchase,1.0,0 -117531196,"Firefall",play,17.0,0 -117531196,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -117531196,"The Witcher 2 Assassins of Kings Enhanced Edition",play,15.9,0 -117531196,"PlanetSide 2",purchase,1.0,0 -117531196,"PlanetSide 2",play,15.2,0 -117531196,"Torchlight II",purchase,1.0,0 -117531196,"Torchlight II",play,15.2,0 -117531196,"The Binding of Isaac",purchase,1.0,0 -117531196,"The Binding of Isaac",play,14.4,0 -117531196,"Dota 2",purchase,1.0,0 -117531196,"Dota 2",play,14.4,0 -117531196,"Saints Row The Third",purchase,1.0,0 -117531196,"Saints Row The Third",play,12.9,0 -117531196,"Just Cause 2",purchase,1.0,0 -117531196,"Just Cause 2",play,12.3,0 -117531196,"Risk of Rain",purchase,1.0,0 -117531196,"Risk of Rain",play,12.0,0 -117531196,"PAYDAY 2",purchase,1.0,0 -117531196,"PAYDAY 2",play,11.7,0 -117531196,"XCOM Enemy Unknown",purchase,1.0,0 -117531196,"XCOM Enemy Unknown",play,11.5,0 -117531196,"DayZ",purchase,1.0,0 -117531196,"DayZ",play,11.4,0 -117531196,"Portal 2",purchase,1.0,0 -117531196,"Portal 2",play,10.2,0 -117531196,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -117531196,"Deus Ex Human Revolution - Director's Cut",play,9.2,0 -117531196,"Tomb Raider",purchase,1.0,0 -117531196,"Tomb Raider",play,8.6,0 -117531196,"HELLDIVERS",purchase,1.0,0 -117531196,"HELLDIVERS",play,8.4,0 -117531196,"Endless Legend",purchase,1.0,0 -117531196,"Endless Legend",play,7.3,0 -117531196,"Prison Architect",purchase,1.0,0 -117531196,"Prison Architect",play,6.6,0 -117531196,"Game Dev Tycoon",purchase,1.0,0 -117531196,"Game Dev Tycoon",play,6.4,0 -117531196,"The Elder Scrolls V Skyrim",purchase,1.0,0 -117531196,"The Elder Scrolls V Skyrim",play,6.1,0 -117531196,"Fallen Enchantress",purchase,1.0,0 -117531196,"Fallen Enchantress",play,5.8,0 -117531196,"Dungeon Defenders",purchase,1.0,0 -117531196,"Dungeon Defenders",play,5.7,0 -117531196,"This War of Mine",purchase,1.0,0 -117531196,"This War of Mine",play,5.4,0 -117531196,"Valkyria Chronicles",purchase,1.0,0 -117531196,"Valkyria Chronicles",play,5.2,0 -117531196,"Company of Heroes",purchase,1.0,0 -117531196,"Company of Heroes",play,4.7,0 -117531196,"Counter-Strike Global Offensive",purchase,1.0,0 -117531196,"Counter-Strike Global Offensive",play,4.7,0 -117531196,"Mass Effect 2",purchase,1.0,0 -117531196,"Mass Effect 2",play,4.6,0 -117531196,"South Park The Stick of Truth",purchase,1.0,0 -117531196,"South Park The Stick of Truth",play,4.5,0 -117531196,"Far Cry 3",purchase,1.0,0 -117531196,"Far Cry 3",play,4.3,0 -117531196,"Star Wars Knights of the Old Republic",purchase,1.0,0 -117531196,"Star Wars Knights of the Old Republic",play,4.1,0 -117531196,"Rise of Nations Extended Edition",purchase,1.0,0 -117531196,"Rise of Nations Extended Edition",play,3.9,0 -117531196,"Dungeon of the Endless",purchase,1.0,0 -117531196,"Dungeon of the Endless",play,3.7,0 -117531196,"Team Fortress 2",purchase,1.0,0 -117531196,"Team Fortress 2",play,3.5,0 -117531196,"Project Zomboid",purchase,1.0,0 -117531196,"Project Zomboid",play,3.1,0 -117531196,"Tom Clancy's EndWar",purchase,1.0,0 -117531196,"Tom Clancy's EndWar",play,3.0,0 -117531196,"Need for Speed Hot Pursuit",purchase,1.0,0 -117531196,"Need for Speed Hot Pursuit",play,2.8,0 -117531196,"Bastion",purchase,1.0,0 -117531196,"Bastion",play,2.7,0 -117531196,"Warframe",purchase,1.0,0 -117531196,"Warframe",play,2.7,0 -117531196,"Portal",purchase,1.0,0 -117531196,"Portal",play,2.7,0 -117531196,"War Thunder",purchase,1.0,0 -117531196,"War Thunder",play,2.5,0 -117531196,"Trove",purchase,1.0,0 -117531196,"Trove",play,2.5,0 -117531196,"Happy Wars",purchase,1.0,0 -117531196,"Happy Wars",play,2.4,0 -117531196,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -117531196,"Red Faction Guerrilla Steam Edition",play,2.3,0 -117531196,"Antichamber",purchase,1.0,0 -117531196,"Antichamber",play,2.3,0 -117531196,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -117531196,"Shadowrun Dragonfall - Director's Cut",play,2.1,0 -117531196,"Metro 2033",purchase,1.0,0 -117531196,"Metro 2033",play,1.9,0 -117531196,"Endless Space",purchase,1.0,0 -117531196,"Endless Space",play,1.7,0 -117531196,"Tropico 4",purchase,1.0,0 -117531196,"Tropico 4",play,1.7,0 -117531196,"Hero Siege",purchase,1.0,0 -117531196,"Hero Siege",play,1.7,0 -117531196,"Don't Starve",purchase,1.0,0 -117531196,"Don't Starve",play,1.6,0 -117531196,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -117531196,"Batman Arkham Asylum GOTY Edition",play,1.5,0 -117531196,"Insurgency",purchase,1.0,0 -117531196,"Insurgency",play,1.5,0 -117531196,"Alan Wake",purchase,1.0,0 -117531196,"Alan Wake",play,1.5,0 -117531196,"RIFT",purchase,1.0,0 -117531196,"RIFT",play,1.5,0 -117531196,"Dirty Bomb",purchase,1.0,0 -117531196,"Dirty Bomb",play,1.3,0 -117531196,"Tribes Ascend",purchase,1.0,0 -117531196,"Tribes Ascend",play,1.2,0 -117531196,"Race The Sun",purchase,1.0,0 -117531196,"Race The Sun",play,1.2,0 -117531196,"Goat Simulator",purchase,1.0,0 -117531196,"Goat Simulator",play,1.1,0 -117531196,"The Stanley Parable",purchase,1.0,0 -117531196,"The Stanley Parable",play,1.1,0 -117531196,"Outland",purchase,1.0,0 -117531196,"Outland",play,1.0,0 -117531196,"Reus",purchase,1.0,0 -117531196,"Reus",play,1.0,0 -117531196,"Super Meat Boy",purchase,1.0,0 -117531196,"Super Meat Boy",play,0.9,0 -117531196,"TERA",purchase,1.0,0 -117531196,"TERA",play,0.8,0 -117531196,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -117531196,"Divinity Original Sin Enhanced Edition",play,0.7,0 -117531196,"Stealth Inc 2",purchase,1.0,0 -117531196,"Stealth Inc 2",play,0.6,0 -117531196,"Endless Sky",purchase,1.0,0 -117531196,"Endless Sky",play,0.6,0 -117531196,"Gnomoria",purchase,1.0,0 -117531196,"Gnomoria",play,0.5,0 -117531196,"SpaceChem",purchase,1.0,0 -117531196,"SpaceChem",play,0.4,0 -117531196,"Unturned",purchase,1.0,0 -117531196,"Unturned",play,0.2,0 -117531196,"VVVVVV",purchase,1.0,0 -117531196,"VVVVVV",play,0.2,0 -117531196,"8BitMMO",purchase,1.0,0 -117531196,"8BitMMO",play,0.2,0 -117531196,"Mercenary Kings",purchase,1.0,0 -117531196,"Fractured Space",purchase,1.0,0 -117531196,"Dustforce",purchase,1.0,0 -117531196,"World of Goo",purchase,1.0,0 -117531196,"Amnesia The Dark Descent",purchase,1.0,0 -117531196,"Abyss Odyssey",purchase,1.0,0 -117531196,"Arma 3 Zeus",purchase,1.0,0 -117531196,"Batman Arkham City GOTY",purchase,1.0,0 -117531196,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -117531196,"Batman Arkham Origins - Initiation",purchase,1.0,0 -117531196,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -117531196,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -117531196,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -117531196,"Batman Arkham Origins",purchase,1.0,0 -117531196,"Bejeweled 3",purchase,1.0,0 -117531196,"BioShock Infinite",purchase,1.0,0 -117531196,"Colin McRae Rally",purchase,1.0,0 -117531196,"Commander Conquest of the Americas Gold",purchase,1.0,0 -117531196,"Company of Heroes (New Steam Version)",purchase,1.0,0 -117531196,"Dead Space 2",purchase,1.0,0 -117531196,"DiRT Showdown",purchase,1.0,0 -117531196,"Don't Starve Reign of Giants",purchase,1.0,0 -117531196,"Dragon Age Origins",purchase,1.0,0 -117531196,"East India Company Gold",purchase,1.0,0 -117531196,"Elemental Fallen Enchantress Map Pack",purchase,1.0,0 -117531196,"Enclave",purchase,1.0,0 -117531196,"Fallen Enchantress Legendary Heroes",purchase,1.0,0 -117531196,"Fallen Enchantress Legendary Heroes Map Pack",purchase,1.0,0 -117531196,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -117531196,"Fallout New Vegas Dead Money",purchase,1.0,0 -117531196,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -117531196,"GRID 2",purchase,1.0,0 -117531196,"Hospital Tycoon",purchase,1.0,0 -117531196,"Knights and Merchants",purchase,1.0,0 -117531196,"KnightShift",purchase,1.0,0 -117531196,"Men of War Assault Squad",purchase,1.0,0 -117531196,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -117531196,"Operation Flashpoint Red River",purchase,1.0,0 -117531196,"Overlord",purchase,1.0,0 -117531196,"Pirates of Black Cove Gold",purchase,1.0,0 -117531196,"Planetary Annihilation",purchase,1.0,0 -117531196,"Racer 8",purchase,1.0,0 -117531196,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -117531196,"Star Wars Dark Forces",purchase,1.0,0 -117531196,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -117531196,"Super Killer Hornet Resurrection",purchase,1.0,0 -117531196,"The Incredible Adventures of Van Helsing II",purchase,1.0,0 -117531196,"Two Worlds Epic Edition",purchase,1.0,0 -117531196,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -117531196,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -117531196,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -117531196,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -49110638,"Left 4 Dead",purchase,1.0,0 -49110638,"Left 4 Dead",play,23.0,0 -190788774,"Unturned",purchase,1.0,0 -190788774,"Unturned",play,1.0,0 -193129684,"Team Fortress 2",purchase,1.0,0 -193129684,"Team Fortress 2",play,110.0,0 -193129684,"Robocraft",purchase,1.0,0 -193129684,"Robocraft",play,31.0,0 -193129684,"APB Reloaded",purchase,1.0,0 -193129684,"APB Reloaded",play,6.9,0 -193129684,"PlanetSide 2",purchase,1.0,0 -193129684,"PlanetSide 2",play,1.4,0 -193129684,"Sigils of Elohim",purchase,1.0,0 -193129684,"Sigils of Elohim",play,0.9,0 -193129684,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -193129684,"A.V.A - Alliance of Valiant Arms",play,0.8,0 -193129684,"AirMech",purchase,1.0,0 -193129684,"AirMech",play,0.4,0 -193129684,"Tactical Intervention",purchase,1.0,0 -193129684,"Tactical Intervention",play,0.3,0 -193129684,"Pox Nora",purchase,1.0,0 -193129684,"RaceRoom Racing Experience ",purchase,1.0,0 -193129684,"Unturned",purchase,1.0,0 -193129684,"Fistful of Frags",purchase,1.0,0 -193129684,"Get Off My Lawn!",purchase,1.0,0 -193129684,"HAWKEN",purchase,1.0,0 -193129684,"No More Room in Hell",purchase,1.0,0 -193129684,"Quake Live",purchase,1.0,0 -193129684,"theHunter",purchase,1.0,0 -193129684,"The Mighty Quest For Epic Loot",purchase,1.0,0 -193129684,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -108755905,"Sid Meier's Civilization V",purchase,1.0,0 -108755905,"Sid Meier's Civilization V",play,12.2,0 -202340310,"Dota 2",purchase,1.0,0 -202340310,"Dota 2",play,4.6,0 -23780966,"Half-Life 2 Deathmatch",purchase,1.0,0 -23780966,"Half-Life 2 Episode One",purchase,1.0,0 -23780966,"Half-Life 2 Lost Coast",purchase,1.0,0 -23780966,"Half-Life Deathmatch Source",purchase,1.0,0 -144737312,"Dota 2",purchase,1.0,0 -144737312,"Dota 2",play,392.0,0 -171874166,"Dota 2",purchase,1.0,0 -171874166,"Dota 2",play,0.9,0 -87071236,"Dota 2",purchase,1.0,0 -87071236,"Dota 2",play,1714.0,0 -87071236,"Stronghold Kingdoms",purchase,1.0,0 -87071236,"Stronghold Kingdoms",play,441.0,0 -87071236,"Sid Meier's Civilization V",purchase,1.0,0 -87071236,"Sid Meier's Civilization V",play,197.0,0 -87071236,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -87071236,"Call of Duty Modern Warfare 3 - Multiplayer",play,147.0,0 -87071236,"Counter-Strike Global Offensive",purchase,1.0,0 -87071236,"Counter-Strike Global Offensive",play,117.0,0 -87071236,"Team Fortress 2",purchase,1.0,0 -87071236,"Team Fortress 2",play,86.0,0 -87071236,"Portal 2",purchase,1.0,0 -87071236,"Portal 2",play,73.0,0 -87071236,"Call of Duty Modern Warfare 3",purchase,1.0,0 -87071236,"Call of Duty Modern Warfare 3",play,49.0,0 -87071236,"Terraria",purchase,1.0,0 -87071236,"Terraria",play,49.0,0 -87071236,"Planetary Annihilation",purchase,1.0,0 -87071236,"Planetary Annihilation",play,46.0,0 -87071236,"Half-Life 2",purchase,1.0,0 -87071236,"Half-Life 2",play,33.0,0 -87071236,"Counter-Strike",purchase,1.0,0 -87071236,"Counter-Strike",play,31.0,0 -87071236,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -87071236,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,24.0,0 -87071236,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -87071236,"Call of Duty Black Ops II - Zombies",play,20.0,0 -87071236,"Portal",purchase,1.0,0 -87071236,"Portal",play,19.7,0 -87071236,"Synergy",purchase,1.0,0 -87071236,"Synergy",play,18.2,0 -87071236,"Half-Life",purchase,1.0,0 -87071236,"Half-Life",play,14.2,0 -87071236,"Counter-Strike Source",purchase,1.0,0 -87071236,"Counter-Strike Source",play,13.4,0 -87071236,"Garry's Mod",purchase,1.0,0 -87071236,"Garry's Mod",play,11.6,0 -87071236,"Half-Life 2 Deathmatch",purchase,1.0,0 -87071236,"Half-Life 2 Deathmatch",play,11.2,0 -87071236,"Borderlands",purchase,1.0,0 -87071236,"Borderlands",play,9.8,0 -87071236,"Half-Life 2 Episode Two",purchase,1.0,0 -87071236,"Half-Life 2 Episode Two",play,9.7,0 -87071236,"PAYDAY The Heist",purchase,1.0,0 -87071236,"PAYDAY The Heist",play,8.4,0 -87071236,"Half-Life 2 Episode One",purchase,1.0,0 -87071236,"Half-Life 2 Episode One",play,6.5,0 -87071236,"Universe Sandbox",purchase,1.0,0 -87071236,"Universe Sandbox",play,4.8,0 -87071236,"Left 4 Dead 2",purchase,1.0,0 -87071236,"Left 4 Dead 2",play,4.1,0 -87071236,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -87071236,"Tom Clancy's Splinter Cell Conviction",play,3.7,0 -87071236,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -87071236,"Sins of a Solar Empire Rebellion",play,2.9,0 -87071236,"Sniper Elite V2",purchase,1.0,0 -87071236,"Sniper Elite V2",play,2.7,0 -87071236,"Orcs Must Die! 2",purchase,1.0,0 -87071236,"Orcs Must Die! 2",play,2.1,0 -87071236,"Hunting Unlimited 2010",purchase,1.0,0 -87071236,"Hunting Unlimited 2010",play,1.9,0 -87071236,"Sanctum",purchase,1.0,0 -87071236,"Sanctum",play,1.7,0 -87071236,"Nether",purchase,1.0,0 -87071236,"Nether",play,1.7,0 -87071236,"Thinking with Time Machine",purchase,1.0,0 -87071236,"Thinking with Time Machine",play,1.1,0 -87071236,"GameMaker Studio",purchase,1.0,0 -87071236,"GameMaker Studio",play,1.0,0 -87071236,"POSTAL 2",purchase,1.0,0 -87071236,"POSTAL 2",play,0.7,0 -87071236,"Fallout 3",purchase,1.0,0 -87071236,"Fallout 3",play,0.7,0 -87071236,"Half-Life Blue Shift",purchase,1.0,0 -87071236,"Half-Life Blue Shift",play,0.5,0 -87071236,"Fallout New Vegas",purchase,1.0,0 -87071236,"Fallout New Vegas",play,0.3,0 -87071236,"Half-Life 2 Lost Coast",purchase,1.0,0 -87071236,"Half-Life 2 Lost Coast",play,0.3,0 -87071236,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -87071236,"Call of Duty Black Ops II - Multiplayer",play,0.3,0 -87071236,"Worms Revolution",purchase,1.0,0 -87071236,"Worms Revolution",play,0.2,0 -87071236,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -87071236,"S.T.A.L.K.E.R. Clear Sky",play,0.2,0 -87071236,"Counter-Strike Condition Zero",purchase,1.0,0 -87071236,"Ricochet",purchase,1.0,0 -87071236,"Metro 2033",purchase,1.0,0 -87071236,"Day of Defeat",purchase,1.0,0 -87071236,"Grand Theft Auto San Andreas",purchase,1.0,0 -87071236,"Call of Duty Black Ops II",purchase,1.0,0 -87071236,"Call of Duty World at War",purchase,1.0,0 -87071236,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -87071236,"Day of Defeat Source",purchase,1.0,0 -87071236,"Deathmatch Classic",purchase,1.0,0 -87071236,"Grand Theft Auto San Andreas",purchase,1.0,0 -87071236,"Half-Life Opposing Force",purchase,1.0,0 -87071236,"Half-Life Source",purchase,1.0,0 -87071236,"Half-Life Deathmatch Source",purchase,1.0,0 -87071236,"Heroes & Generals",purchase,1.0,0 -87071236,"Left 4 Dead",purchase,1.0,0 -87071236,"March of War",purchase,1.0,0 -87071236,"Nether - Believer",purchase,1.0,0 -87071236,"Nether Arena",purchase,1.0,0 -87071236,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -87071236,"Team Fortress Classic",purchase,1.0,0 -178915960,"Dota 2",purchase,1.0,0 -178915960,"Dota 2",play,0.8,0 -62317148,"Left 4 Dead 2",purchase,1.0,0 -62317148,"Left 4 Dead 2",play,22.0,0 -204459221,"Robocraft",purchase,1.0,0 -204459221,"Robocraft",play,631.0,0 -204459221,"Unturned",purchase,1.0,0 -204459221,"Unturned",play,4.4,0 -204459221,"Tactical Intervention",purchase,1.0,0 -204459221,"Tactical Intervention",play,1.8,0 -204459221,"Red Crucible Firestorm",purchase,1.0,0 -204459221,"Red Crucible Firestorm",play,1.0,0 -204459221,"Marvel Heroes 2015",purchase,1.0,0 -204459221,"Marvel Heroes 2015",play,0.9,0 -204459221,"War Thunder",purchase,1.0,0 -204459221,"War Thunder",play,0.5,0 -204459221,"Team Fortress 2",purchase,1.0,0 -204459221,"Team Fortress 2",play,0.3,0 -204459221,"Star Conflict",purchase,1.0,0 -204459221,"Star Conflict",play,0.3,0 -204459221,"Dirty Bomb",purchase,1.0,0 -204459221,"PlanetSide 2",purchase,1.0,0 -204459221,"Soldier Front 2",purchase,1.0,0 -204459221,"Warface",purchase,1.0,0 -37708732,"Counter-Strike Source",purchase,1.0,0 -37708732,"Counter-Strike Source",play,341.0,0 -37708732,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -37708732,"Call of Duty Black Ops - Multiplayer",play,77.0,0 -37708732,"Call of Duty Black Ops",purchase,1.0,0 -37708732,"Call of Duty Black Ops",play,5.3,0 -37708732,"Day of Defeat Source",purchase,1.0,0 -37708732,"Day of Defeat Source",play,1.8,0 -37708732,"Half-Life 2 Deathmatch",purchase,1.0,0 -37708732,"Half-Life 2 Deathmatch",play,0.4,0 -37708732,"Half-Life 2 Lost Coast",purchase,1.0,0 -103620349,"Dota 2",purchase,1.0,0 -103620349,"Dota 2",play,6.4,0 -103620349,"Team Fortress 2",purchase,1.0,0 -103620349,"Team Fortress 2",play,1.1,0 -216921535,"Counter-Strike Global Offensive",purchase,1.0,0 -216921535,"Counter-Strike Global Offensive",play,119.0,0 -216921535,"Bionic Dues",purchase,1.0,0 -216921535,"Bionic Dues",play,0.1,0 -216921535,"Mountain",purchase,1.0,0 -216921535,"The 39 Steps",purchase,1.0,0 -156407138,"Counter-Strike",purchase,1.0,0 -156407138,"Counter-Strike",play,118.0,0 -156407138,"Counter-Strike Condition Zero",purchase,1.0,0 -156407138,"Counter-Strike Condition Zero",play,3.3,0 -156407138,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -156407138,"Counter-Strike Condition Zero Deleted Scenes",play,0.8,0 -293360401,"Counter-Strike Global Offensive",purchase,1.0,0 -293360401,"Counter-Strike Global Offensive",play,100.0,0 -293360401,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -293360401,"Batman Arkham Asylum GOTY Edition",play,10.4,0 -140065934,"Dota 2",purchase,1.0,0 -140065934,"Dota 2",play,359.0,0 -1364546,"Counter-Strike",purchase,1.0,0 -1364546,"Counter-Strike",play,553.0,0 -1364546,"Alien Swarm",purchase,1.0,0 -1364546,"Alien Swarm",play,0.9,0 -1364546,"Half-Life",purchase,1.0,0 -1364546,"Day of Defeat",purchase,1.0,0 -1364546,"Deathmatch Classic",purchase,1.0,0 -1364546,"Half-Life Blue Shift",purchase,1.0,0 -1364546,"Half-Life Opposing Force",purchase,1.0,0 -1364546,"Ricochet",purchase,1.0,0 -1364546,"Team Fortress Classic",purchase,1.0,0 -181608676,"Sid Meier's Civilization V",purchase,1.0,0 -181608676,"Sid Meier's Civilization V",play,268.0,0 -181608676,"Spore",purchase,1.0,0 -181608676,"Spore",play,254.0,0 -181608676,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -181608676,"Sid Meier's Civilization Beyond Earth",play,155.0,0 -181608676,"Game Dev Tycoon",purchase,1.0,0 -181608676,"Game Dev Tycoon",play,45.0,0 -181608676,"XCOM Enemy Unknown",purchase,1.0,0 -181608676,"XCOM Enemy Unknown",play,39.0,0 -181608676,"South Park The Stick of Truth",purchase,1.0,0 -181608676,"South Park The Stick of Truth",play,32.0,0 -181608676,"Kerbal Space Program",purchase,1.0,0 -181608676,"Kerbal Space Program",play,25.0,0 -181608676,"Prison Architect",purchase,1.0,0 -181608676,"Prison Architect",play,17.0,0 -181608676,"Guild of Dungeoneering",purchase,1.0,0 -181608676,"Guild of Dungeoneering",play,10.2,0 -181608676,"Dota 2",purchase,1.0,0 -181608676,"Dota 2",play,8.6,0 -181608676,"Holy Potatoes! A Weapon Shop?!",purchase,1.0,0 -181608676,"Holy Potatoes! A Weapon Shop?!",play,6.8,0 -181608676,"Sid Meier's Starships",purchase,1.0,0 -181608676,"Sid Meier's Starships",play,6.1,0 -181608676,"Don't Starve Together Beta",purchase,1.0,0 -181608676,"Don't Starve Together Beta",play,5.9,0 -181608676,"Evil Genius",purchase,1.0,0 -181608676,"Evil Genius",play,4.5,0 -181608676,"Pillars of Eternity",purchase,1.0,0 -181608676,"Pillars of Eternity",play,2.4,0 -181608676,"Saints Row 2",purchase,1.0,0 -181608676,"Saints Row 2",play,2.2,0 -181608676,"Unturned",purchase,1.0,0 -181608676,"Unturned",play,1.0,0 -181608676,"Papers, Please",purchase,1.0,0 -181608676,"Papers, Please",play,0.9,0 -181608676,"The Lord of the Rings Online",purchase,1.0,0 -181608676,"The Lord of the Rings Online",play,0.2,0 -181608676,"Terraria",purchase,1.0,0 -181608676,"Terraria",play,0.1,0 -181608676,"PlanetSide 2",purchase,1.0,0 -181608676,"Card Hunter",purchase,1.0,0 -181608676,"Dead Island Epidemic",purchase,1.0,0 -181608676,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -181608676,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -192277804,"Dota 2",purchase,1.0,0 -192277804,"Dota 2",play,2.8,0 -192277804,"Unturned",purchase,1.0,0 -192277804,"Unturned",play,2.3,0 -83813208,"Team Fortress 2",purchase,1.0,0 -83813208,"Team Fortress 2",play,2.6,0 -86150792,"Portal",purchase,1.0,0 -86150792,"Portal",play,1.9,0 -86150792,"Half-Life 2",purchase,1.0,0 -86150792,"Half-Life 2",play,0.7,0 -86150792,"Alien Swarm",purchase,1.0,0 -86150792,"Alien Swarm",play,0.1,0 -86150792,"Half-Life 2 Deathmatch",purchase,1.0,0 -86150792,"Half-Life 2 Lost Coast",purchase,1.0,0 -130290346,"Team Fortress 2",purchase,1.0,0 -130290346,"Team Fortress 2",play,0.6,0 -214736709,"Dota 2",purchase,1.0,0 -214736709,"Dota 2",play,2.6,0 -101487265,"Dota 2",purchase,1.0,0 -101487265,"Dota 2",play,2582.0,0 -101487265,"Ragnarok Online 2",purchase,1.0,0 -101487265,"Ragnarok Online 2",play,98.0,0 -101487265,"FreeStyle2 Street Basketball",purchase,1.0,0 -101487265,"FreeStyle2 Street Basketball",play,15.8,0 -73507733,"Eets",purchase,1.0,0 -76319436,"Counter-Strike Condition Zero",purchase,1.0,0 -76319436,"Counter-Strike Condition Zero",play,3.7,0 -76319436,"Counter-Strike",purchase,1.0,0 -76319436,"Counter-Strike",play,3.7,0 -76319436,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -76319436,"Day of Defeat",purchase,1.0,0 -76319436,"Deathmatch Classic",purchase,1.0,0 -76319436,"Ricochet",purchase,1.0,0 -58977564,"Counter-Strike Global Offensive",purchase,1.0,0 -58977564,"Counter-Strike Global Offensive",play,344.0,0 -58977564,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -58977564,"Call of Duty Modern Warfare 2 - Multiplayer",play,147.0,0 -58977564,"Call of Duty Modern Warfare 2",purchase,1.0,0 -58977564,"Call of Duty Modern Warfare 2",play,4.4,0 -58977564,"Counter-Strike",purchase,1.0,0 -58977564,"Counter-Strike",play,0.2,0 -58977564,"Counter-Strike Condition Zero",purchase,1.0,0 -58977564,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -205546094,"Tomb Raider",purchase,1.0,0 -205546094,"Tomb Raider",play,7.7,0 -182399789,"Counter-Strike Global Offensive",purchase,1.0,0 -182399789,"Counter-Strike Global Offensive",play,601.0,0 -182399789,"Unturned",purchase,1.0,0 -182399789,"Unturned",play,305.0,0 -182399789,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -182399789,"Tom Clancy's Ghost Recon Phantoms - NA",play,72.0,0 -182399789,"Arma 2 Operation Arrowhead",purchase,1.0,0 -182399789,"Arma 2 Operation Arrowhead",play,60.0,0 -182399789,"Insurgency",purchase,1.0,0 -182399789,"Insurgency",play,56.0,0 -182399789,"Team Fortress 2",purchase,1.0,0 -182399789,"Team Fortress 2",play,53.0,0 -182399789,"PlanetSide 2",purchase,1.0,0 -182399789,"PlanetSide 2",play,42.0,0 -182399789,"Valkyria Chronicles",purchase,1.0,0 -182399789,"Valkyria Chronicles",play,22.0,0 -182399789,"Arma 2",purchase,1.0,0 -182399789,"Arma 2",play,19.4,0 -182399789,"Metro 2033",purchase,1.0,0 -182399789,"Metro 2033",play,18.2,0 -182399789,"APB Reloaded",purchase,1.0,0 -182399789,"APB Reloaded",play,16.7,0 -182399789,"Garry's Mod",purchase,1.0,0 -182399789,"Garry's Mod",play,16.5,0 -182399789,"War Thunder",purchase,1.0,0 -182399789,"War Thunder",play,15.3,0 -182399789,"East India Company Gold",purchase,1.0,0 -182399789,"East India Company Gold",play,11.6,0 -182399789,"Penguins Arena Sedna's World",purchase,1.0,0 -182399789,"Penguins Arena Sedna's World",play,10.4,0 -182399789,"Heroes & Generals",purchase,1.0,0 -182399789,"Heroes & Generals",play,10.3,0 -182399789,"Robocraft",purchase,1.0,0 -182399789,"Robocraft",play,10.3,0 -182399789,"PAYDAY 2",purchase,1.0,0 -182399789,"PAYDAY 2",play,9.5,0 -182399789,"Risk of Rain",purchase,1.0,0 -182399789,"Risk of Rain",play,9.4,0 -182399789,"Dota 2",purchase,1.0,0 -182399789,"Dota 2",play,8.5,0 -182399789,"Chivalry Medieval Warfare",purchase,1.0,0 -182399789,"Chivalry Medieval Warfare",play,7.1,0 -182399789,"Antichamber",purchase,1.0,0 -182399789,"Antichamber",play,6.7,0 -182399789,"Knights and Merchants",purchase,1.0,0 -182399789,"Knights and Merchants",play,6.1,0 -182399789,"Sunrider Mask of Arcadius",purchase,1.0,0 -182399789,"Sunrider Mask of Arcadius",play,6.1,0 -182399789,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -182399789,"Tropico 3 - Steam Special Edition",play,6.0,0 -182399789,"Shadows on the Vatican - Act I Greed",purchase,1.0,0 -182399789,"Shadows on the Vatican - Act I Greed",play,5.8,0 -182399789,"PAYDAY The Heist",purchase,1.0,0 -182399789,"PAYDAY The Heist",play,5.3,0 -182399789,"Super Killer Hornet Resurrection",purchase,1.0,0 -182399789,"Super Killer Hornet Resurrection",play,5.2,0 -182399789,"Tomb Raider",purchase,1.0,0 -182399789,"Tomb Raider",play,4.1,0 -182399789,"POSTAL 2",purchase,1.0,0 -182399789,"POSTAL 2",play,2.9,0 -182399789,"Dino D-Day",purchase,1.0,0 -182399789,"Dino D-Day",play,2.7,0 -182399789,"Frozen Hearth",purchase,1.0,0 -182399789,"Frozen Hearth",play,2.6,0 -182399789,"Dead Bits",purchase,1.0,0 -182399789,"Dead Bits",play,2.3,0 -182399789,"Scourge Outbreak",purchase,1.0,0 -182399789,"Scourge Outbreak",play,2.2,0 -182399789,"Afterfall InSanity Extended Edition",purchase,1.0,0 -182399789,"Afterfall InSanity Extended Edition",play,2.1,0 -182399789,"Warframe",purchase,1.0,0 -182399789,"Warframe",play,2.0,0 -182399789,"Sakura Spirit",purchase,1.0,0 -182399789,"Sakura Spirit",play,1.9,0 -182399789,"Really Big Sky",purchase,1.0,0 -182399789,"Really Big Sky",play,1.9,0 -182399789,"Deadbreed",purchase,1.0,0 -182399789,"Deadbreed",play,1.5,0 -182399789,"Gun Monkeys",purchase,1.0,0 -182399789,"Gun Monkeys",play,1.4,0 -182399789,"World of Guns Gun Disassembly",purchase,1.0,0 -182399789,"World of Guns Gun Disassembly",play,1.1,0 -182399789,"HAWKEN",purchase,1.0,0 -182399789,"HAWKEN",play,1.0,0 -182399789,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -182399789,"Nosferatu The Wrath of Malachi",play,1.0,0 -182399789,"America's Army Proving Grounds",purchase,1.0,0 -182399789,"America's Army Proving Grounds",play,0.9,0 -182399789,"SpaceChem",purchase,1.0,0 -182399789,"SpaceChem",play,0.9,0 -182399789,"Enclave",purchase,1.0,0 -182399789,"Enclave",play,0.9,0 -182399789,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -182399789,"Tom Clancy's Splinter Cell Blacklist",play,0.8,0 -182399789,"sZone-Online",purchase,1.0,0 -182399789,"sZone-Online",play,0.6,0 -182399789,"Cry of Fear",purchase,1.0,0 -182399789,"Cry of Fear",play,0.5,0 -182399789,"theHunter",purchase,1.0,0 -182399789,"theHunter",play,0.4,0 -182399789,"RACE 07",purchase,1.0,0 -182399789,"RACE 07",play,0.3,0 -182399789,"ORION Prelude",purchase,1.0,0 -182399789,"ORION Prelude",play,0.2,0 -182399789,"Dark Forester",purchase,1.0,0 -182399789,"Arma 2 DayZ Mod",purchase,1.0,0 -182399789,"GTR Evolution",purchase,1.0,0 -182399789,"Stronghold Kingdoms",purchase,1.0,0 -182399789,"Crash Time II",purchase,1.0,0 -182399789,"ACE - Arena Cyber Evolution",purchase,1.0,0 -182399789,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -182399789,"Avencast",purchase,1.0,0 -182399789,"Braid",purchase,1.0,0 -182399789,"Chaos Domain",purchase,1.0,0 -182399789,"Commando Jack",purchase,1.0,0 -182399789,"DCS World",purchase,1.0,0 -182399789,"Dungeon Defenders",purchase,1.0,0 -182399789,"Grimoire Manastorm",purchase,1.0,0 -182399789,"Ionball 2 Ionstorm",purchase,1.0,0 -182399789,"Killing Floor Uncovered",purchase,1.0,0 -182399789,"Lilly and Sasha Curse of the Immortals",purchase,1.0,0 -182399789,"No More Room in Hell",purchase,1.0,0 -182399789,"Patch testing for Chivalry",purchase,1.0,0 -182399789,"Pirates of Black Cove Gold",purchase,1.0,0 -182399789,"RaceRoom Racing Experience ",purchase,1.0,0 -182399789,"Race The Sun",purchase,1.0,0 -182399789,"Realms of the Haunting",purchase,1.0,0 -182399789,"Receiver",purchase,1.0,0 -182399789,"Scourge Outbreak - Blindside",purchase,1.0,0 -182399789,"Scourge Outbreak Fan Pack",purchase,1.0,0 -182399789,"Space Hack",purchase,1.0,0 -182399789,"Survarium",purchase,1.0,0 -182399789,"Tactical Intervention",purchase,1.0,0 -182399789,"The Scourge Project Episode 1 and 2",purchase,1.0,0 -182399789,"Uncrowded",purchase,1.0,0 -182399789,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -182399789,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -182399789,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -182399789,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -182399789,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -182399789,"Warface",purchase,1.0,0 -156458299,"Dota 2",purchase,1.0,0 -156458299,"Dota 2",play,0.8,0 -64787956,"Sid Meier's Civilization V",purchase,1.0,0 -64787956,"Sid Meier's Civilization V",play,230.0,0 -64787956,"Borderlands The Pre-Sequel",purchase,1.0,0 -64787956,"Borderlands The Pre-Sequel",play,68.0,0 -64787956,"Terraria",purchase,1.0,0 -64787956,"Terraria",play,65.0,0 -64787956,"Watch_Dogs",purchase,1.0,0 -64787956,"Watch_Dogs",play,58.0,0 -64787956,"Galactic Civilizations I Ultimate Edition",purchase,1.0,0 -64787956,"Galactic Civilizations I Ultimate Edition",play,57.0,0 -64787956,"RPG Maker VX Ace",purchase,1.0,0 -64787956,"RPG Maker VX Ace",play,53.0,0 -64787956,"Fallout 4",purchase,1.0,0 -64787956,"Fallout 4",play,42.0,0 -64787956,"Saints Row IV",purchase,1.0,0 -64787956,"Saints Row IV",play,36.0,0 -64787956,"Garry's Mod",purchase,1.0,0 -64787956,"Garry's Mod",play,35.0,0 -64787956,"Space Engineers",purchase,1.0,0 -64787956,"Space Engineers",play,34.0,0 -64787956,"You Need A Budget 4 (YNAB)",purchase,1.0,0 -64787956,"You Need A Budget 4 (YNAB)",play,33.0,0 -64787956,"PAYDAY The Heist",purchase,1.0,0 -64787956,"PAYDAY The Heist",play,33.0,0 -64787956,"Borderlands",purchase,1.0,0 -64787956,"Borderlands",play,29.0,0 -64787956,"Far Cry",purchase,1.0,0 -64787956,"Far Cry",play,29.0,0 -64787956,"Tales of Zestiria",purchase,1.0,0 -64787956,"Tales of Zestiria",play,28.0,0 -64787956,"Loadout",purchase,1.0,0 -64787956,"Loadout",play,27.0,0 -64787956,"Trials Fusion",purchase,1.0,0 -64787956,"Trials Fusion",play,24.0,0 -64787956,"Half-Life 2 Update",purchase,1.0,0 -64787956,"Half-Life 2 Update",play,23.0,0 -64787956,"Rocket League",purchase,1.0,0 -64787956,"Rocket League",play,16.7,0 -64787956,"Rogue Legacy",purchase,1.0,0 -64787956,"Rogue Legacy",play,14.6,0 -64787956,"Cities XL Platinum",purchase,1.0,0 -64787956,"Cities XL Platinum",play,14.6,0 -64787956,"Gauntlet ",purchase,1.0,0 -64787956,"Gauntlet ",play,13.4,0 -64787956,"Horizon",purchase,1.0,0 -64787956,"Horizon",play,13.3,0 -64787956,"Tabletop Simulator",purchase,1.0,0 -64787956,"Tabletop Simulator",play,12.6,0 -64787956,"Quantum Conundrum",purchase,1.0,0 -64787956,"Quantum Conundrum",play,10.2,0 -64787956,"Dust An Elysian Tail",purchase,1.0,0 -64787956,"Dust An Elysian Tail",play,9.9,0 -64787956,"Portal",purchase,1.0,0 -64787956,"Portal",play,9.7,0 -64787956,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -64787956,"Sid Meier's Civilization Beyond Earth",play,9.6,0 -64787956,"Dungeon Defenders",purchase,1.0,0 -64787956,"Dungeon Defenders",play,9.5,0 -64787956,"3DMark",purchase,1.0,0 -64787956,"3DMark",play,9.3,0 -64787956,"SpeedRunners",purchase,1.0,0 -64787956,"SpeedRunners",play,8.3,0 -64787956,"Guns of Icarus Online",purchase,1.0,0 -64787956,"Guns of Icarus Online",play,8.3,0 -64787956,"South Park The Stick of Truth",purchase,1.0,0 -64787956,"South Park The Stick of Truth",play,8.2,0 -64787956,"Oddworld New 'n' Tasty",purchase,1.0,0 -64787956,"Oddworld New 'n' Tasty",play,7.4,0 -64787956,"PAYDAY 2",purchase,1.0,0 -64787956,"PAYDAY 2",play,7.2,0 -64787956,"Cloudberry Kingdom",purchase,1.0,0 -64787956,"Cloudberry Kingdom",play,7.2,0 -64787956,"Double Dragon Neon",purchase,1.0,0 -64787956,"Double Dragon Neon",play,7.2,0 -64787956,"The Elder Scrolls V Skyrim",purchase,1.0,0 -64787956,"The Elder Scrolls V Skyrim",play,6.3,0 -64787956,"ORION Prelude",purchase,1.0,0 -64787956,"ORION Prelude",play,6.0,0 -64787956,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -64787956,"Sonic & All-Stars Racing Transformed",play,5.6,0 -64787956,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -64787956,"Fallout 3 - Game of the Year Edition",play,5.0,0 -64787956,"Star Trek Online",purchase,1.0,0 -64787956,"Star Trek Online",play,4.2,0 -64787956,"Screencheat",purchase,1.0,0 -64787956,"Screencheat",play,4.1,0 -64787956,"DOOM 3 BFG Edition",purchase,1.0,0 -64787956,"DOOM 3 BFG Edition",play,4.0,0 -64787956,"Middle-earth Shadow of Mordor",purchase,1.0,0 -64787956,"Middle-earth Shadow of Mordor",play,4.0,0 -64787956,"Killing Floor",purchase,1.0,0 -64787956,"Killing Floor",play,3.6,0 -64787956,"Fallout New Vegas",purchase,1.0,0 -64787956,"Fallout New Vegas",play,3.3,0 -64787956,"Rebel Galaxy",purchase,1.0,0 -64787956,"Rebel Galaxy",play,3.0,0 -64787956,"Ys Origin",purchase,1.0,0 -64787956,"Ys Origin",play,2.6,0 -64787956,"Gas Guzzlers Extreme",purchase,1.0,0 -64787956,"Gas Guzzlers Extreme",play,2.6,0 -64787956,"Gunman Clive",purchase,1.0,0 -64787956,"Gunman Clive",play,2.6,0 -64787956,"Defense Grid The Awakening",purchase,1.0,0 -64787956,"Defense Grid The Awakening",play,2.5,0 -64787956,"Defense Grid 2",purchase,1.0,0 -64787956,"Defense Grid 2",play,2.5,0 -64787956,"Left 4 Dead",purchase,1.0,0 -64787956,"Left 4 Dead",play,2.3,0 -64787956,"The Ball",purchase,1.0,0 -64787956,"The Ball",play,2.3,0 -64787956,"Boo Bunny Plague",purchase,1.0,0 -64787956,"Boo Bunny Plague",play,2.3,0 -64787956,"Path of Exile",purchase,1.0,0 -64787956,"Path of Exile",play,2.2,0 -64787956,"Starbound",purchase,1.0,0 -64787956,"Starbound",play,2.1,0 -64787956,"Wanderlust Rebirth",purchase,1.0,0 -64787956,"Wanderlust Rebirth",play,2.1,0 -64787956,"Monaco",purchase,1.0,0 -64787956,"Monaco",play,1.9,0 -64787956,"Marlow Briggs",purchase,1.0,0 -64787956,"Marlow Briggs",play,1.9,0 -64787956,"Teslagrad",purchase,1.0,0 -64787956,"Teslagrad",play,1.9,0 -64787956,"Artemis Spaceship Bridge Simulator",purchase,1.0,0 -64787956,"Artemis Spaceship Bridge Simulator",play,1.8,0 -64787956,"Great Permutator",purchase,1.0,0 -64787956,"Great Permutator",play,1.6,0 -64787956,"Hammerwatch",purchase,1.0,0 -64787956,"Hammerwatch",play,1.6,0 -64787956,"The Binding of Isaac",purchase,1.0,0 -64787956,"The Binding of Isaac",play,1.6,0 -64787956,"Grand Theft Auto Vice City",purchase,1.0,0 -64787956,"Grand Theft Auto Vice City",play,1.6,0 -64787956,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -64787956,"Duke Nukem 3D Megaton Edition",play,1.5,0 -64787956,"Bulletstorm",purchase,1.0,0 -64787956,"Bulletstorm",play,1.5,0 -64787956,"Distance",purchase,1.0,0 -64787956,"Distance",play,1.1,0 -64787956,"Rush Bros",purchase,1.0,0 -64787956,"Rush Bros",play,1.1,0 -64787956,"The Bureau XCOM Declassified",purchase,1.0,0 -64787956,"The Bureau XCOM Declassified",play,1.0,0 -64787956,"RPG Tycoon",purchase,1.0,0 -64787956,"RPG Tycoon",play,1.0,0 -64787956,"Grand Theft Auto III",purchase,1.0,0 -64787956,"Grand Theft Auto III",play,0.9,0 -64787956,"Dishonored",purchase,1.0,0 -64787956,"Dishonored",play,0.8,0 -64787956,"Age of Empires III Complete Collection",purchase,1.0,0 -64787956,"Age of Empires III Complete Collection",play,0.8,0 -64787956,"How to Survive",purchase,1.0,0 -64787956,"How to Survive",play,0.8,0 -64787956,"The Last Remnant",purchase,1.0,0 -64787956,"The Last Remnant",play,0.7,0 -64787956,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -64787956,"Star Wars The Force Unleashed Ultimate Sith Edition",play,0.7,0 -64787956,"Evoland",purchase,1.0,0 -64787956,"Evoland",play,0.7,0 -64787956,"Brawlhalla",purchase,1.0,0 -64787956,"Brawlhalla",play,0.7,0 -64787956,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -64787956,"Dark Souls Prepare to Die Edition",play,0.7,0 -64787956,"Nidhogg",purchase,1.0,0 -64787956,"Nidhogg",play,0.6,0 -64787956,"Space Pirates and Zombies",purchase,1.0,0 -64787956,"Space Pirates and Zombies",play,0.6,0 -64787956,"RPG Maker 2003",purchase,1.0,0 -64787956,"RPG Maker 2003",play,0.6,0 -64787956,"Tales from the Borderlands",purchase,1.0,0 -64787956,"Tales from the Borderlands",play,0.6,0 -64787956,"Judge Dredd Dredd vs Death",purchase,1.0,0 -64787956,"Judge Dredd Dredd vs Death",play,0.6,0 -64787956,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -64787956,"THE KING OF FIGHTERS XIII STEAM EDITION",play,0.6,0 -64787956,"Moonrise",purchase,1.0,0 -64787956,"Moonrise",play,0.6,0 -64787956,"Tiny Brains",purchase,1.0,0 -64787956,"Tiny Brains",play,0.6,0 -64787956,"Ultionus A Tale of Petty Revenge",purchase,1.0,0 -64787956,"Ultionus A Tale of Petty Revenge",play,0.6,0 -64787956,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -64787956,"Burnout Paradise The Ultimate Box",play,0.6,0 -64787956,"Hack 'n' Slash",purchase,1.0,0 -64787956,"Hack 'n' Slash",play,0.6,0 -64787956,"Lego Star Wars Saga",purchase,1.0,0 -64787956,"Lego Star Wars Saga",play,0.5,0 -64787956,"The Elder Scrolls III Morrowind",purchase,1.0,0 -64787956,"The Elder Scrolls III Morrowind",play,0.5,0 -64787956,"Rogue Shooter The FPS Roguelike",purchase,1.0,0 -64787956,"Rogue Shooter The FPS Roguelike",play,0.5,0 -64787956,"Heroes of a Broken Land",purchase,1.0,0 -64787956,"Heroes of a Broken Land",play,0.5,0 -64787956,"Serious Sam The Random Encounter",purchase,1.0,0 -64787956,"Serious Sam The Random Encounter",play,0.5,0 -64787956,"Strike Suit Zero",purchase,1.0,0 -64787956,"Strike Suit Zero",play,0.5,0 -64787956,"Hero Siege",purchase,1.0,0 -64787956,"Hero Siege",play,0.5,0 -64787956,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -64787956,"SEGA Genesis & Mega Drive Classics",play,0.4,0 -64787956,"Fearless Fantasy",purchase,1.0,0 -64787956,"Fearless Fantasy",play,0.4,0 -64787956,"Noir Syndrome",purchase,1.0,0 -64787956,"Noir Syndrome",play,0.4,0 -64787956,"The Legend of Heroes Trails in the Sky",purchase,1.0,0 -64787956,"The Legend of Heroes Trails in the Sky",play,0.4,0 -64787956,"Wolfenstein The New Order",purchase,1.0,0 -64787956,"Wolfenstein The New Order",play,0.4,0 -64787956,"Nuclear Dawn",purchase,1.0,0 -64787956,"Nuclear Dawn",play,0.3,0 -64787956,"Intergalactic Bubbles",purchase,1.0,0 -64787956,"Intergalactic Bubbles",play,0.3,0 -64787956,"Titan Souls",purchase,1.0,0 -64787956,"Titan Souls",play,0.3,0 -64787956,"Ultimate Tic-Tac-Toe",purchase,1.0,0 -64787956,"Ultimate Tic-Tac-Toe",play,0.3,0 -64787956,"Halo Spartan Assault",purchase,1.0,0 -64787956,"Halo Spartan Assault",play,0.3,0 -64787956,"Strike Vector",purchase,1.0,0 -64787956,"Strike Vector",play,0.3,0 -64787956,"Dead Effect",purchase,1.0,0 -64787956,"Dead Effect",play,0.3,0 -64787956,"MURI",purchase,1.0,0 -64787956,"MURI",play,0.3,0 -64787956,"Fist Puncher",purchase,1.0,0 -64787956,"Fist Puncher",play,0.3,0 -64787956,"Sonic Generations",purchase,1.0,0 -64787956,"Sonic Generations",play,0.3,0 -64787956,"Dino D-Day",purchase,1.0,0 -64787956,"Dino D-Day",play,0.2,0 -64787956,"AirBuccaneers",purchase,1.0,0 -64787956,"AirBuccaneers",play,0.2,0 -64787956,"Just Cause 2",purchase,1.0,0 -64787956,"Just Cause 2",play,0.2,0 -64787956,"Star Wars Dark Forces",purchase,1.0,0 -64787956,"Star Wars Dark Forces",play,0.2,0 -64787956,"Echo of the Wilds",purchase,1.0,0 -64787956,"Echo of the Wilds",play,0.2,0 -64787956,"FINAL FANTASY VII",purchase,1.0,0 -64787956,"FINAL FANTASY VII",play,0.2,0 -64787956,"Valdis Story Abyssal City",purchase,1.0,0 -64787956,"Valdis Story Abyssal City",play,0.2,0 -64787956,"Cloudbuilt",purchase,1.0,0 -64787956,"Cloudbuilt",play,0.2,0 -64787956,"Freedom Planet",purchase,1.0,0 -64787956,"Freedom Planet",play,0.2,0 -64787956,"Tower of Guns",purchase,1.0,0 -64787956,"Tower of Guns",play,0.2,0 -64787956,"Star Wars Republic Commando",purchase,1.0,0 -64787956,"Star Wars Republic Commando",play,0.2,0 -64787956,"Joe Danger 2 The Movie",purchase,1.0,0 -64787956,"Joe Danger 2 The Movie",play,0.2,0 -64787956,"Deadlight",purchase,1.0,0 -64787956,"Deadlight",play,0.1,0 -64787956,"Road Redemption",purchase,1.0,0 -64787956,"Road Redemption",play,0.1,0 -64787956,"Counter-Strike Source",purchase,1.0,0 -64787956,"Counter-Strike Source",play,0.1,0 -64787956,"Half-Life",purchase,1.0,0 -64787956,"Half-Life",play,0.1,0 -64787956,"Lost Planet Extreme Condition",purchase,1.0,0 -64787956,"Lost Planet Extreme Condition",play,0.1,0 -64787956,"Adventures of Shuggy",purchase,1.0,0 -64787956,"Star Wars Knights of the Old Republic",purchase,1.0,0 -64787956,"Far Cry 3",purchase,1.0,0 -64787956,"Pier Solar and the Great Architects",purchase,1.0,0 -64787956,"Broforce",purchase,1.0,0 -64787956,"Portal 2",purchase,1.0,0 -64787956,"MechWarrior Online",purchase,1.0,0 -64787956,"Half-Life Opposing Force",purchase,1.0,0 -64787956,"X3 Reunion",purchase,1.0,0 -64787956,"Edna & Harvey Harvey's New Eyes",purchase,1.0,0 -64787956,"Lego Harry Potter",purchase,1.0,0 -64787956,"LEGO The Lord of the Rings",purchase,1.0,0 -64787956,"Half-Life 2 Episode One",purchase,1.0,0 -64787956,"Retro Game Crunch",purchase,1.0,0 -64787956,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -64787956,"LEGO MARVEL Super Heroes",purchase,1.0,0 -64787956,"Game Character Hub",purchase,1.0,0 -64787956,"Race The Sun",purchase,1.0,0 -64787956,"Fist of Jesus",purchase,1.0,0 -64787956,"Risk of Rain",purchase,1.0,0 -64787956,"Serious Sam Double D XXL",purchase,1.0,0 -64787956,"3DMark API Overhead feature test",purchase,1.0,0 -64787956,"3DMark Cloud Gate benchmark",purchase,1.0,0 -64787956,"3DMark Fire Strike benchmark",purchase,1.0,0 -64787956,"3DMark Ice Storm benchmark",purchase,1.0,0 -64787956,"3DMark Sky Diver benchmark",purchase,1.0,0 -64787956,"8BitBoy",purchase,1.0,0 -64787956,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",purchase,1.0,0 -64787956,"Adventurer Manager",purchase,1.0,0 -64787956,"Agarest Generations of War",purchase,1.0,0 -64787956,"Agarest Generations of War Premium Edition Upgrade",purchase,1.0,0 -64787956,"Age of Booty",purchase,1.0,0 -64787956,"Age of Empires II HD Edition",purchase,1.0,0 -64787956,"Age of Empires II HD The Forgotten",purchase,1.0,0 -64787956,"Alpha Kimori Episode One ",purchase,1.0,0 -64787956,"Always Sometimes Monsters",purchase,1.0,0 -64787956,"Amnesia A Machine for Pigs",purchase,1.0,0 -64787956,"Anodyne",purchase,1.0,0 -64787956,"Assassin's Creed",purchase,1.0,0 -64787956,"Assassin's Creed Brotherhood",purchase,1.0,0 -64787956,"Assassin's Creed II",purchase,1.0,0 -64787956,"Assassin's Creed Liberation",purchase,1.0,0 -64787956,"Assassin's Creed Revelations",purchase,1.0,0 -64787956,"Assassin's Creed III",purchase,1.0,0 -64787956,"Audiosurf",purchase,1.0,0 -64787956,"Avadon 2 The Corruption",purchase,1.0,0 -64787956,"Awesomenauts",purchase,1.0,0 -64787956,"Bardbarian",purchase,1.0,0 -64787956,"Bastion",purchase,1.0,0 -64787956,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -64787956,"Batman Arkham City GOTY",purchase,1.0,0 -64787956,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -64787956,"Batman Arkham Origins - Initiation",purchase,1.0,0 -64787956,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -64787956,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -64787956,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -64787956,"Batman Arkham Origins",purchase,1.0,0 -64787956,"Betrayer",purchase,1.0,0 -64787956,"Bionic Commando",purchase,1.0,0 -64787956,"Bionic Commando Rearmed",purchase,1.0,0 -64787956,"Bionic Dues",purchase,1.0,0 -64787956,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -64787956,"bit Dungeon II",purchase,1.0,0 -64787956,"BiT Evolution",purchase,1.0,0 -64787956,"Blackguards",purchase,1.0,0 -64787956,"Boid",purchase,1.0,0 -64787956,"Borderlands 2",purchase,1.0,0 -64787956,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -64787956,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -64787956,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -64787956,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -64787956,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -64787956,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -64787956,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -64787956,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -64787956,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -64787956,"Breach & Clear",purchase,1.0,0 -64787956,"Breath of Death VII ",purchase,1.0,0 -64787956,"Call of Juarez Bound in Blood",purchase,1.0,0 -64787956,"Call of Juarez Gunslinger",purchase,1.0,0 -64787956,"Child of Light",purchase,1.0,0 -64787956,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -64787956,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -64787956,"Company of Heroes 2",purchase,1.0,0 -64787956,"CONSORTIUM",purchase,1.0,0 -64787956,"Consortium Soundtrack and Discoveries",purchase,1.0,0 -64787956,"Construct 2 Free",purchase,1.0,0 -64787956,"Counter-Strike",purchase,1.0,0 -64787956,"Counter-Strike Condition Zero",purchase,1.0,0 -64787956,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -64787956,"Counter-Strike Global Offensive",purchase,1.0,0 -64787956,"Crazy Taxi",purchase,1.0,0 -64787956,"Crusader Kings II",purchase,1.0,0 -64787956,"Crysis 2 Maximum Edition",purchase,1.0,0 -64787956,"Cthulhu Saves the World ",purchase,1.0,0 -64787956,"Cubetractor",purchase,1.0,0 -64787956,"Darkest Hour Europe '44-'45",purchase,1.0,0 -64787956,"Darksiders",purchase,1.0,0 -64787956,"Darksiders II",purchase,1.0,0 -64787956,"Darksiders II Deathinitive Edition",purchase,1.0,0 -64787956,"Darksiders II Soundtrack",purchase,1.0,0 -64787956,"Darksiders Soundtrack",purchase,1.0,0 -64787956,"Dark Void",purchase,1.0,0 -64787956,"Dark Void Zero",purchase,1.0,0 -64787956,"Darwinia",purchase,1.0,0 -64787956,"Day of Defeat",purchase,1.0,0 -64787956,"Day of Defeat Source",purchase,1.0,0 -64787956,"DeadCore",purchase,1.0,0 -64787956,"Deadlight Original Soundtrack",purchase,1.0,0 -64787956,"Deadly Premonition The Director's Cut",purchase,1.0,0 -64787956,"Deadly Sin 2",purchase,1.0,0 -64787956,"Dead Space",purchase,1.0,0 -64787956,"Deathmatch Classic",purchase,1.0,0 -64787956,"Deep Dungeons of Doom",purchase,1.0,0 -64787956,"DEFCON",purchase,1.0,0 -64787956,"Defense Grid Containment DLC",purchase,1.0,0 -64787956,"Defense Grid Resurgence Map Pack 1",purchase,1.0,0 -64787956,"Defense Grid Resurgence Map Pack 2 ",purchase,1.0,0 -64787956,"Defense Grid Resurgence Map Pack 3",purchase,1.0,0 -64787956,"Defense Grid Resurgence Map Pack 4",purchase,1.0,0 -64787956,"Defiance",purchase,1.0,0 -64787956,"Deponia",purchase,1.0,0 -64787956,"Destiny Warriors",purchase,1.0,0 -64787956,"Deus Ex Game of the Year Edition",purchase,1.0,0 -64787956,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -64787956,"Deus Ex Invisible War",purchase,1.0,0 -64787956,"Deus Ex The Fall",purchase,1.0,0 -64787956,"Dirty Bomb",purchase,1.0,0 -64787956,"Divinity Dragon Commander",purchase,1.0,0 -64787956,"Divinity Dragon Commander Beta",purchase,1.0,0 -64787956,"Divinity II Developer's Cut",purchase,1.0,0 -64787956,"Doom & Destiny",purchase,1.0,0 -64787956,"DOOM II Hell on Earth",purchase,1.0,0 -64787956,"Draw a Stickman EPIC",purchase,1.0,0 -64787956,"Drunken Robot Pornography",purchase,1.0,0 -64787956,"Duke Nukem Manhattan Project",purchase,1.0,0 -64787956,"Dungeons & Dragons Chronicles of Mystara",purchase,1.0,0 -64787956,"DUNGEONS - The Dark Lord (Steam Special Edition)",purchase,1.0,0 -64787956,"Dwarfs!?",purchase,1.0,0 -64787956,"Eldritch",purchase,1.0,0 -64787956,"Empire Total War",purchase,1.0,0 -64787956,"Endless Space",purchase,1.0,0 -64787956,"Enemy Mind",purchase,1.0,0 -64787956,"ENSLAVED Odyssey to the West Premium Edition",purchase,1.0,0 -64787956,"Eschalon Book 2",purchase,1.0,0 -64787956,"Eternal Senia",purchase,1.0,0 -64787956,"Euro Truck Simulator 2",purchase,1.0,0 -64787956,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -64787956,"Fallout New Vegas Dead Money",purchase,1.0,0 -64787956,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -64787956,"Far Cry 2",purchase,1.0,0 -64787956,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -64787956,"Far Cry 3 Blood Dragon",purchase,1.0,0 -64787956,"FATE",purchase,1.0,0 -64787956,"FATE Undiscovered Realms",purchase,1.0,0 -64787956,"Fieldrunners",purchase,1.0,0 -64787956,"Fieldrunners 2",purchase,1.0,0 -64787956,"Final DOOM",purchase,1.0,0 -64787956,"Firefall",purchase,1.0,0 -64787956,"Five Nights at Freddy's",purchase,1.0,0 -64787956,"Frozen Synapse",purchase,1.0,0 -64787956,"FTL Faster Than Light",purchase,1.0,0 -64787956,"Full Mojo Rampage",purchase,1.0,0 -64787956,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -64787956,"Galcon Fusion",purchase,1.0,0 -64787956,"Galcon Legends",purchase,1.0,0 -64787956,"Gone Home",purchase,1.0,0 -64787956,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -64787956,"Grand Theft Auto San Andreas",purchase,1.0,0 -64787956,"Grand Theft Auto San Andreas",purchase,1.0,0 -64787956,"Grand Theft Auto Vice City",purchase,1.0,0 -64787956,"Grand Theft Auto III",purchase,1.0,0 -64787956,"Grand Theft Auto IV",purchase,1.0,0 -64787956,"Greyfox",purchase,1.0,0 -64787956,"GRID",purchase,1.0,0 -64787956,"GRID 2",purchase,1.0,0 -64787956,"Grotesque Tactics 2 - Dungeons and Donuts",purchase,1.0,0 -64787956,"Grotesque Tactics Evil Heroes",purchase,1.0,0 -64787956,"GT Power Expansion",purchase,1.0,0 -64787956,"Gunman Clive 2",purchase,1.0,0 -64787956,"Gunpoint",purchase,1.0,0 -64787956,"Half-Life 2",purchase,1.0,0 -64787956,"Half-Life 2 Deathmatch",purchase,1.0,0 -64787956,"Half-Life 2 Episode Two",purchase,1.0,0 -64787956,"Half-Life 2 Lost Coast",purchase,1.0,0 -64787956,"Half-Life Blue Shift",purchase,1.0,0 -64787956,"Half-Life Source",purchase,1.0,0 -64787956,"Half-Life Deathmatch Source",purchase,1.0,0 -64787956,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",purchase,1.0,0 -64787956,"Half Minute Hero The Second Coming",purchase,1.0,0 -64787956,"Halfway",purchase,1.0,0 -64787956,"Happy Wars",purchase,1.0,0 -64787956,"Hard Reset",purchase,1.0,0 -64787956,"Hard Reset Exile DLC",purchase,1.0,0 -64787956,"HAWKEN",purchase,1.0,0 -64787956,"Heretic Shadow of the Serpent Riders",purchase,1.0,0 -64787956,"Hero Siege - The Karp of Doom (Digital Collector's Edition)",purchase,1.0,0 -64787956,"HeXen Beyond Heretic",purchase,1.0,0 -64787956,"HeXen Deathkings of the Dark Citadel",purchase,1.0,0 -64787956,"HeXen II",purchase,1.0,0 -64787956,"HOARD",purchase,1.0,0 -64787956,"Holy Avatar vs. Maidens of the Dead",purchase,1.0,0 -64787956,"Home",purchase,1.0,0 -64787956,"Hotline Miami",purchase,1.0,0 -64787956,"iBomber Defense Pacific",purchase,1.0,0 -64787956,"Imagine Me",purchase,1.0,0 -64787956,"Insanely Twisted Shadow Planet",purchase,1.0,0 -64787956,"Insurgency",purchase,1.0,0 -64787956,"Ittle Dew",purchase,1.0,0 -64787956,"Jade Empire Special Edition",purchase,1.0,0 -64787956,"Jazzpunk",purchase,1.0,0 -64787956,"Jet Set Radio",purchase,1.0,0 -64787956,"Karos",purchase,1.0,0 -64787956,"KickBeat Steam Edition",purchase,1.0,0 -64787956,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -64787956,"Knights of Pen and Paper +1",purchase,1.0,0 -64787956,"Knock-knock",purchase,1.0,0 -64787956,"Ku Shroud of the Morrigan",purchase,1.0,0 -64787956,"Kung Fury Street Rage",purchase,1.0,0 -64787956,"Lara Croft and the Guardian of Light",purchase,1.0,0 -64787956,"Left 4 Dead 2",purchase,1.0,0 -64787956,"Legend of Grimrock",purchase,1.0,0 -64787956,"Legend of Mysteria",purchase,1.0,0 -64787956,"Legionwood 2 Rise of the Eternal's Realm",purchase,1.0,0 -64787956,"LEGO Batman 2",purchase,1.0,0 -64787956,"LEGO Batman The Videogame",purchase,1.0,0 -64787956,"LEGO Harry Potter Years 5-7",purchase,1.0,0 -64787956,"Lego Star Wars 3 The Clone Wars",purchase,1.0,0 -64787956,"LEGO Batman 3 Beyond Gotham",purchase,1.0,0 -64787956,"LEGO The Hobbit",purchase,1.0,0 -64787956,"LISA",purchase,1.0,0 -64787956,"Little Racers STREET",purchase,1.0,0 -64787956,"LUFTRAUSERS",purchase,1.0,0 -64787956,"Mad Max",purchase,1.0,0 -64787956,"Magrunner Dark Pulse",purchase,1.0,0 -64787956,"Mare Nostrum",purchase,1.0,0 -64787956,"Master Levels for DOOM II",purchase,1.0,0 -64787956,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -64787956,"Medal of Honor(TM) Single Player",purchase,1.0,0 -64787956,"Medal of Honor Pre-Order",purchase,1.0,0 -64787956,"Megabyte Punch",purchase,1.0,0 -64787956,"Meltdown",purchase,1.0,0 -64787956,"Men of War Assault Squad",purchase,1.0,0 -64787956,"METAL SLUG 3",purchase,1.0,0 -64787956,"Metro 2033",purchase,1.0,0 -64787956,"Metro 2033 Redux",purchase,1.0,0 -64787956,"Metro Last Light Redux",purchase,1.0,0 -64787956,"Mini Motor Racing EVO",purchase,1.0,0 -64787956,"Mirror's Edge",purchase,1.0,0 -64787956,"Monkey Island 2 Special Edition",purchase,1.0,0 -64787956,"Moonrise Base Game + Guildmaster's Pack",purchase,1.0,0 -64787956,"Multiwinia",purchase,1.0,0 -64787956,"Mutant Mudds Deluxe",purchase,1.0,0 -64787956,"NiGHTS into Dreams...",purchase,1.0,0 -64787956,"No Time to Explain",purchase,1.0,0 -64787956,"No Time To Explain Remastered",purchase,1.0,0 -64787956,"Oddworld Abe's Exoddus",purchase,1.0,0 -64787956,"Oddworld Abe's Oddysee",purchase,1.0,0 -64787956,"Oddworld Munch's Oddysee",purchase,1.0,0 -64787956,"Oddworld Stranger's Wrath HD",purchase,1.0,0 -64787956,"OlliOlli",purchase,1.0,0 -64787956,"One Finger Death Punch",purchase,1.0,0 -64787956,"One Way Heroics",purchase,1.0,0 -64787956,"On the Rain-Slick Precipice of Darkness, Episode One",purchase,1.0,0 -64787956,"On the Rain-Slick Precipice of Darkness, Episode Two",purchase,1.0,0 -64787956,"Orcs Must Die! 2",purchase,1.0,0 -64787956,"Our Darker Purpose",purchase,1.0,0 -64787956,"Outlast",purchase,1.0,0 -64787956,"PAC-MAN Championship Edition DX+",purchase,1.0,0 -64787956,"Painkiller Black Edition",purchase,1.0,0 -64787956,"Painkiller Recurring Evil",purchase,1.0,0 -64787956,"Painkiller Redemption",purchase,1.0,0 -64787956,"Painkiller Resurrection",purchase,1.0,0 -64787956,"Painkiller Hell & Damnation",purchase,1.0,0 -64787956,"Painkiller Hell & Damnation - The Clock Strikes Meat Night",purchase,1.0,0 -64787956,"Painkiller Overdose",purchase,1.0,0 -64787956,"Papers, Please",purchase,1.0,0 -64787956,"Paper Sorcerer",purchase,1.0,0 -64787956,"Papo & Yo",purchase,1.0,0 -64787956,"Party of Sin",purchase,1.0,0 -64787956,"PAYDAY Wolf Pack",purchase,1.0,0 -64787956,"Penguins Arena Sedna's World",purchase,1.0,0 -64787956,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",purchase,1.0,0 -64787956,"Penny Arcade's On the Rain-Slick Precipice of Darkness 4",purchase,1.0,0 -64787956,"Pier Solar - The Definitive Original Soundtrack",purchase,1.0,0 -64787956,"PixelJunk Eden",purchase,1.0,0 -64787956,"PlanetSide 2",purchase,1.0,0 -64787956,"Planets Under Attack",purchase,1.0,0 -64787956,"Platformines",purchase,1.0,0 -64787956,"Portal Stories Mel",purchase,1.0,0 -64787956,"POSTAL 2",purchase,1.0,0 -64787956,"Pressure",purchase,1.0,0 -64787956,"Prison Architect",purchase,1.0,0 -64787956,"Prototype",purchase,1.0,0 -64787956,"PROTOTYPE 2",purchase,1.0,0 -64787956,"Prototype 2 RADNET Access Pack",purchase,1.0,0 -64787956,"Puzzle Quest",purchase,1.0,0 -64787956,"Q.U.B.E.",purchase,1.0,0 -64787956,"Q.U.B.E Director's Cut",purchase,1.0,0 -64787956,"RACE 07",purchase,1.0,0 -64787956,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -64787956,"RACE Caterham Expansion",purchase,1.0,0 -64787956,"Race The WTCC Game",purchase,1.0,0 -64787956,"RACE On",purchase,1.0,0 -64787956,"RAGE",purchase,1.0,0 -64787956,"Receiver",purchase,1.0,0 -64787956,"Red Faction",purchase,1.0,0 -64787956,"Red Faction Armageddon",purchase,1.0,0 -64787956,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -64787956,"Red Faction Armageddon Soundtrack",purchase,1.0,0 -64787956,"Red Faction II",purchase,1.0,0 -64787956,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -64787956,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -64787956,"Return to Castle Wolfenstein",purchase,1.0,0 -64787956,"Reus",purchase,1.0,0 -64787956,"Ricochet",purchase,1.0,0 -64787956,"Ridge Racer Unbounded",purchase,1.0,0 -64787956,"Rise of Incarnates",purchase,1.0,0 -64787956,"Rise of the Triad",purchase,1.0,0 -64787956,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -64787956,"Robot Roller-Derby Disco Dodgeball",purchase,1.0,0 -64787956,"Rollers of the Realm",purchase,1.0,0 -64787956,"Rome Total War",purchase,1.0,0 -64787956,"RPG Maker Futuristic Tiles Resource Pack",purchase,1.0,0 -64787956,"RPG Maker High Fantasy Main Party Pack 1",purchase,1.0,0 -64787956,"RPG Maker Luna Engine",purchase,1.0,0 -64787956,"RPG Maker Royal Tiles Resource Pack",purchase,1.0,0 -64787956,"RPG Maker Rural Farm Tiles Resource Pack",purchase,1.0,0 -64787956,"RPG Maker Tyler Warren First 50 Battler Pack",purchase,1.0,0 -64787956,"RPG Maker Tyler Warren RPG Battlers 2nd 50",purchase,1.0,0 -64787956,"RPG Maker Zombie Survival Graphic Pack",purchase,1.0,0 -64787956,"RPG Maker XP",purchase,1.0,0 -64787956,"Rusty Hearts",purchase,1.0,0 -64787956,"Sacred Citadel",purchase,1.0,0 -64787956,"Saints Row Gat out of Hell",purchase,1.0,0 -64787956,"SanctuaryRPG Black Edition",purchase,1.0,0 -64787956,"Secret Of Magia",purchase,1.0,0 -64787956,"Secrets of Rtikon",purchase,1.0,0 -64787956,"SEGA Bass Fishing",purchase,1.0,0 -64787956,"Septerra Core",purchase,1.0,0 -64787956,"Serious Sam 3 BFE",purchase,1.0,0 -64787956,"Shadowgrounds",purchase,1.0,0 -64787956,"Shadowrun Dragonfall",purchase,1.0,0 -64787956,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -64787956,"Shadowrun Returns",purchase,1.0,0 -64787956,"Shadow Warrior",purchase,1.0,0 -64787956,"Shadow Warrior Classic Redux",purchase,1.0,0 -64787956,"Sid Meier's Civilization III Complete",purchase,1.0,0 -64787956,"Sid Meier's Civilization IV",purchase,1.0,0 -64787956,"Sid Meier's Civilization IV",purchase,1.0,0 -64787956,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -64787956,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -64787956,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -64787956,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -64787956,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -64787956,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -64787956,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -64787956,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -64787956,"Skara - The Blade Remains",purchase,1.0,0 -64787956,"Skulls of the Shogun",purchase,1.0,0 -64787956,"Skyborn",purchase,1.0,0 -64787956,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -64787956,"Sleeping Dogs Definitive Edition",purchase,1.0,0 -64787956,"Smugglers 5",purchase,1.0,0 -64787956,"Sniper Elite V2",purchase,1.0,0 -64787956,"Sonic Adventure DX",purchase,1.0,0 -64787956,"Soundodger+",purchase,1.0,0 -64787956,"South Park The Stick of Truth - Super Samurai Spaceman Pack",purchase,1.0,0 -64787956,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -64787956,"Spacebase DF-9",purchase,1.0,0 -64787956,"Space Channel 5 Part 2",purchase,1.0,0 -64787956,"Spec Ops The Line",purchase,1.0,0 -64787956,"Spiral Knights",purchase,1.0,0 -64787956,"SPY Fox in Dry Cereal",purchase,1.0,0 -64787956,"Squishy the Suicidal Pig",purchase,1.0,0 -64787956,"Starbound - Unstable",purchase,1.0,0 -64787956,"Star Trek",purchase,1.0,0 -64787956,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -64787956,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -64787956,"Star Wars The Force Unleashed II",purchase,1.0,0 -64787956,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -64787956,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -64787956,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -64787956,"STCC The Game",purchase,1.0,0 -64787956,"STCC II",purchase,1.0,0 -64787956,"Stealth Bastard Deluxe",purchase,1.0,0 -64787956,"SteamWorld Dig",purchase,1.0,0 -64787956,"Street Racing Syndicate",purchase,1.0,0 -64787956,"Strider",purchase,1.0,0 -64787956,"Super Puzzle Platformer Deluxe",purchase,1.0,0 -64787956,"Surgeon Simulator",purchase,1.0,0 -64787956,"Sweet Lily Dreams",purchase,1.0,0 -64787956,"Symphony",purchase,1.0,0 -64787956,"System Shock 2",purchase,1.0,0 -64787956,"Tales from Space Mutant Blobs Attack",purchase,1.0,0 -64787956,"Team Fortress Classic",purchase,1.0,0 -64787956,"Teleglitch Die More Edition",purchase,1.0,0 -64787956,"Tesla Effect",purchase,1.0,0 -64787956,"The Bridge",purchase,1.0,0 -64787956,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -64787956,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -64787956,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -64787956,"The Forest of Doom",purchase,1.0,0 -64787956,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -64787956,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -64787956,"The Legend of Heroes Trails in the Sky SC",purchase,1.0,0 -64787956,"The LEGO Movie - Videogame",purchase,1.0,0 -64787956,"The Mighty Quest For Epic Loot",purchase,1.0,0 -64787956,"The Novelist",purchase,1.0,0 -64787956,"The Retro Expansion",purchase,1.0,0 -64787956,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -64787956,"The Tiny Bang Story",purchase,1.0,0 -64787956,"The Ultimate DOOM",purchase,1.0,0 -64787956,"The WTCC 2010 Pack",purchase,1.0,0 -64787956,"Tiny Troopers",purchase,1.0,0 -64787956,"Toki Tori 2+",purchase,1.0,0 -64787956,"Tomb Raider",purchase,1.0,0 -64787956,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -64787956,"Tomb Raider Anniversary",purchase,1.0,0 -64787956,"Tomb Raider Chronicles",purchase,1.0,0 -64787956,"Tomb Raider Legend",purchase,1.0,0 -64787956,"Tomb Raider The Last Revelation",purchase,1.0,0 -64787956,"Tomb Raider Underworld",purchase,1.0,0 -64787956,"Tomb Raider I",purchase,1.0,0 -64787956,"Tomb Raider II",purchase,1.0,0 -64787956,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -64787956,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -64787956,"To the Moon",purchase,1.0,0 -64787956,"Trine",purchase,1.0,0 -64787956,"Trine 2",purchase,1.0,0 -64787956,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -64787956,"Tropico 4",purchase,1.0,0 -64787956,"Two Brothers",purchase,1.0,0 -64787956,"Two Worlds 2 - Pirates of the Flying Fortress ",purchase,1.0,0 -64787956,"Two Worlds II",purchase,1.0,0 -64787956,"Universe Sandbox",purchase,1.0,0 -64787956,"Uplink",purchase,1.0,0 -64787956,"Urban Trial Freestyle",purchase,1.0,0 -64787956,"Vangers",purchase,1.0,0 -64787956,"Velocibox",purchase,1.0,0 -64787956,"Velvet Sundown",purchase,1.0,0 -64787956,"Vertical Drop Heroes HD",purchase,1.0,0 -64787956,"Viking Battle for Asgard",purchase,1.0,0 -64787956,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -64787956,"Warlock - Master of the Arcane",purchase,1.0,0 -64787956,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -64787956,"War Thunder",purchase,1.0,0 -64787956,"Wasteland 1 - The Original Classic",purchase,1.0,0 -64787956,"Waves",purchase,1.0,0 -64787956,"Wolfenstein 3D",purchase,1.0,0 -64787956,"Wolfenstein 3D Spear of Destiny",purchase,1.0,0 -64787956,"Wolfenstein The Old Blood ",purchase,1.0,0 -64787956,"Worms Revolution",purchase,1.0,0 -64787956,"XCOM Enemy Unknown",purchase,1.0,0 -64787956,"XCOM Enemy Within",purchase,1.0,0 -64787956,"Ys The Oath in Felghana",purchase,1.0,0 -64787956,"Ys I",purchase,1.0,0 -64787956,"Ys II",purchase,1.0,0 -64787956,"Ys VI The Ark of Napishtim",purchase,1.0,0 -41883229,"Counter-Strike Source",purchase,1.0,0 -41883229,"Counter-Strike Source",play,109.0,0 -41883229,"Insurgency Modern Infantry Combat",purchase,1.0,0 -41883229,"Insurgency Modern Infantry Combat",play,0.6,0 -41883229,"Zombie Panic Source",purchase,1.0,0 -41883229,"Zombie Panic Source",play,0.4,0 -41883229,"Day of Defeat Source",purchase,1.0,0 -41883229,"Day of Defeat Source",play,0.2,0 -41883229,"Half-Life 2 Deathmatch",purchase,1.0,0 -41883229,"Half-Life 2 Lost Coast",purchase,1.0,0 -139854220,"Dota 2",purchase,1.0,0 -139854220,"Dota 2",play,222.0,0 -131973876,"AdVenture Capitalist",purchase,1.0,0 -131973876,"AdVenture Capitalist",play,179.0,0 -131973876,"Arma 3",purchase,1.0,0 -131973876,"Arma 3",play,106.0,0 -131973876,"Rust",purchase,1.0,0 -131973876,"Rust",play,52.0,0 -131973876,"Clicker Heroes",purchase,1.0,0 -131973876,"Clicker Heroes",play,26.0,0 -131973876,"Dungeon Defenders II",purchase,1.0,0 -131973876,"Dungeon Defenders II",play,15.1,0 -131973876,"Magicka Wizard Wars",purchase,1.0,0 -131973876,"Magicka Wizard Wars",play,11.6,0 -131973876,"Company of Heroes 2",purchase,1.0,0 -131973876,"Company of Heroes 2",play,8.9,0 -131973876,"Grand Theft Auto V",purchase,1.0,0 -131973876,"Grand Theft Auto V",play,8.1,0 -131973876,"Borderlands 2",purchase,1.0,0 -131973876,"Borderlands 2",play,8.0,0 -131973876,"Don't Starve Together Beta",purchase,1.0,0 -131973876,"Don't Starve Together Beta",play,7.7,0 -131973876,"Dead Rising 3",purchase,1.0,0 -131973876,"Dead Rising 3",play,4.0,0 -131973876,"The Elder Scrolls V Skyrim",purchase,1.0,0 -131973876,"The Elder Scrolls V Skyrim",play,2.8,0 -131973876,"Alice Madness Returns",purchase,1.0,0 -131973876,"Alice Madness Returns",play,2.7,0 -131973876,"Team Fortress 2",purchase,1.0,0 -131973876,"Team Fortress 2",play,1.5,0 -131973876,"Don't Starve",purchase,1.0,0 -131973876,"Don't Starve",play,0.7,0 -131973876,"Dead Island Epidemic",purchase,1.0,0 -131973876,"Dead Island Epidemic",play,0.3,0 -131973876,"Dungeonland",purchase,1.0,0 -131973876,"Dungeonland",play,0.3,0 -131973876,"Lilly and Sasha Nexus of Souls",purchase,1.0,0 -131973876,"N.P.P.D. RUSH - The milk of Ultra violet",purchase,1.0,0 -131973876,"Arma 3 Zeus",purchase,1.0,0 -131973876,"Dead Rising 3 DLC1",purchase,1.0,0 -131973876,"Dead Rising 3 DLC2",purchase,1.0,0 -131973876,"Dead Rising 3 DLC3",purchase,1.0,0 -131973876,"Dead Rising 3 DLC4",purchase,1.0,0 -131973876,"Robocraft",purchase,1.0,0 -131973876,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -131973876,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -131973876,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -131973876,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -163861892,"Dota 2",purchase,1.0,0 -163861892,"Dota 2",play,410.0,0 -33033120,"Lost Planet Extreme Condition",purchase,1.0,0 -230382937,"Unturned",purchase,1.0,0 -187374370,"Dota 2",purchase,1.0,0 -187374370,"Dota 2",play,0.3,0 -302345333,"BattleBlock Theater",purchase,1.0,0 -302345333,"BattleBlock Theater",play,12.9,0 -302345333,"Lucius",purchase,1.0,0 -302345333,"Lucius",play,1.6,0 -214051309,"BLOCKADE 3D",purchase,1.0,0 -214051309,"Toribash",purchase,1.0,0 -214051309,"Warframe",purchase,1.0,0 -26218938,"Counter-Strike Source",purchase,1.0,0 -26218938,"Day of Defeat Source",purchase,1.0,0 -26218938,"Half-Life 2 Deathmatch",purchase,1.0,0 -26218938,"Half-Life 2 Lost Coast",purchase,1.0,0 -303322239,"Magic Duels",purchase,1.0,0 -303322239,"Magic Duels",play,2.0,0 -299060755,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -299060755,"S.K.I.L.L. - Special Force 2",play,98.0,0 -299060755,"Mitos.is The Game",purchase,1.0,0 -299060755,"Mitos.is The Game",play,2.9,0 -299060755,"Unturned",purchase,1.0,0 -299060755,"Piercing Blow",purchase,1.0,0 -299060755,"Warface",purchase,1.0,0 -180743752,"Warframe",purchase,1.0,0 -180743752,"Warframe",play,4.6,0 -180743752,"Dota 2",purchase,1.0,0 -180743752,"Dota 2",play,1.4,0 -180743752,"Rise of Incarnates",purchase,1.0,0 -180743752,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -188241866,"Dota 2",purchase,1.0,0 -188241866,"Dota 2",play,0.2,0 -106057222,"Team Fortress 2",purchase,1.0,0 -106057222,"Team Fortress 2",play,180.0,0 -106057222,"XCOM Enemy Unknown",purchase,1.0,0 -106057222,"XCOM Enemy Unknown",play,159.0,0 -106057222,"Planetary Annihilation",purchase,1.0,0 -106057222,"Planetary Annihilation",play,138.0,0 -106057222,"Supreme Commander 2",purchase,1.0,0 -106057222,"Supreme Commander 2",play,36.0,0 -106057222,"Natural Selection 2",purchase,1.0,0 -106057222,"Natural Selection 2",play,6.5,0 -106057222,"Dota 2",purchase,1.0,0 -106057222,"Dota 2",play,4.8,0 -106057222,"Zombie Driver HD",purchase,1.0,0 -106057222,"Zombie Driver HD",play,0.1,0 -106057222,"PAYDAY 2",purchase,1.0,0 -106057222,"Supreme Commander 2 - Infinite War Battle Pack One",purchase,1.0,0 -106057222,"XCOM Enemy Within",purchase,1.0,0 -178883999,"Team Fortress 2",purchase,1.0,0 -178883999,"Team Fortress 2",play,1.9,0 -178883999,"Dota 2",purchase,1.0,0 -178883999,"Dota 2",play,1.7,0 -170267441,"Arma 3",purchase,1.0,0 -170267441,"Arma 3",play,1.7,0 -170267441,"Arma 3 Zeus",purchase,1.0,0 -277003854,"Dota 2",purchase,1.0,0 -277003854,"Dota 2",play,0.3,0 -288094442,"WARMODE",purchase,1.0,0 -288094442,"GASP",purchase,1.0,0 -288094442,"Unturned",purchase,1.0,0 -288094442,"Trove",purchase,1.0,0 -288094442,"Warframe",purchase,1.0,0 -212310741,"Dota 2",purchase,1.0,0 -212310741,"Dota 2",play,0.8,0 -44482198,"Far Cry 3",purchase,1.0,0 -44482198,"Far Cry 3",play,218.0,0 -44482198,"Arma 3",purchase,1.0,0 -44482198,"Arma 3",play,207.0,0 -44482198,"Total War SHOGUN 2",purchase,1.0,0 -44482198,"Total War SHOGUN 2",play,121.0,0 -44482198,"EVE Online",purchase,1.0,0 -44482198,"EVE Online",play,110.0,0 -44482198,"Sid Meier's Civilization V",purchase,1.0,0 -44482198,"Sid Meier's Civilization V",play,83.0,0 -44482198,"Grand Theft Auto IV",purchase,1.0,0 -44482198,"Grand Theft Auto IV",play,75.0,0 -44482198,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -44482198,"Tom Clancy's Splinter Cell Conviction",play,67.0,0 -44482198,"Fallout New Vegas",purchase,1.0,0 -44482198,"Fallout New Vegas",play,52.0,0 -44482198,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -44482198,"Call of Duty Black Ops - Multiplayer",play,45.0,0 -44482198,"Counter-Strike Source",purchase,1.0,0 -44482198,"Counter-Strike Source",play,43.0,0 -44482198,"Project CARS",purchase,1.0,0 -44482198,"Project CARS",play,39.0,0 -44482198,"Left 4 Dead 2",purchase,1.0,0 -44482198,"Left 4 Dead 2",play,36.0,0 -44482198,"The Elder Scrolls V Skyrim",purchase,1.0,0 -44482198,"The Elder Scrolls V Skyrim",play,33.0,0 -44482198,"One Finger Death Punch",purchase,1.0,0 -44482198,"One Finger Death Punch",play,25.0,0 -44482198,"Borderlands 2",purchase,1.0,0 -44482198,"Borderlands 2",play,24.0,0 -44482198,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -44482198,"Galactic Civilizations II Ultimate Edition",play,20.0,0 -44482198,"Arma 2 Operation Arrowhead",purchase,1.0,0 -44482198,"Arma 2 Operation Arrowhead",play,15.0,0 -44482198,"DiRT Rally",purchase,1.0,0 -44482198,"DiRT Rally",play,13.2,0 -44482198,"RIDE Game",purchase,1.0,0 -44482198,"RIDE Game",play,10.4,0 -44482198,"Garry's Mod",purchase,1.0,0 -44482198,"Garry's Mod",play,10.3,0 -44482198,"America's Army Proving Grounds",purchase,1.0,0 -44482198,"America's Army Proving Grounds",play,9.3,0 -44482198,"Sniper Ghost Warrior",purchase,1.0,0 -44482198,"Sniper Ghost Warrior",play,7.0,0 -44482198,"Symphony",purchase,1.0,0 -44482198,"Symphony",play,6.6,0 -44482198,"Call of Duty Black Ops",purchase,1.0,0 -44482198,"Call of Duty Black Ops",play,3.4,0 -44482198,"Portal 2",purchase,1.0,0 -44482198,"Portal 2",play,3.4,0 -44482198,"Left 4 Dead",purchase,1.0,0 -44482198,"Left 4 Dead",play,3.1,0 -44482198,"Aliens vs. Predator",purchase,1.0,0 -44482198,"Aliens vs. Predator",play,3.0,0 -44482198,"Papers, Please",purchase,1.0,0 -44482198,"Papers, Please",play,2.9,0 -44482198,"Grand Theft Auto V",purchase,1.0,0 -44482198,"Grand Theft Auto V",play,2.5,0 -44482198,"The Cat Lady",purchase,1.0,0 -44482198,"The Cat Lady",play,2.3,0 -44482198,"Alien Swarm",purchase,1.0,0 -44482198,"Alien Swarm",play,1.3,0 -44482198,"Wings of Prey",purchase,1.0,0 -44482198,"Wings of Prey",play,1.1,0 -44482198,"Driver San Francisco",purchase,1.0,0 -44482198,"Driver San Francisco",play,0.6,0 -44482198,"EverQuest II",purchase,1.0,0 -44482198,"EverQuest II",play,0.5,0 -44482198,"Zombie Panic Source",purchase,1.0,0 -44482198,"Zombie Panic Source",play,0.5,0 -44482198,"Next Car Game Wreckfest",purchase,1.0,0 -44482198,"Next Car Game Wreckfest",play,0.4,0 -44482198,"DayZ",purchase,1.0,0 -44482198,"DayZ",play,0.4,0 -44482198,"Assassin's Creed Revelations",purchase,1.0,0 -44482198,"Assassin's Creed Revelations",play,0.3,0 -44482198,"Hunted The Demon's Forge",purchase,1.0,0 -44482198,"Hunted The Demon's Forge",play,0.2,0 -44482198,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -44482198,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,0.1,0 -44482198,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -44482198,"Digital Combat Simulator A-10C Warthog",purchase,1.0,0 -44482198,"Arma 2",purchase,1.0,0 -44482198,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -44482198,"Arma 3 Marksmen",purchase,1.0,0 -44482198,"Arma 3 Zeus",purchase,1.0,0 -44482198,"Arma Cold War Assault",purchase,1.0,0 -44482198,"Beyond Good & Evil",purchase,1.0,0 -44482198,"BRINK",purchase,1.0,0 -44482198,"DCS World",purchase,1.0,0 -44482198,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -44482198,"Fallout New Vegas Dead Money",purchase,1.0,0 -44482198,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -44482198,"From Dust",purchase,1.0,0 -44482198,"Might & Magic Heroes VI",purchase,1.0,0 -44482198,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -44482198,"R.U.S.E",purchase,1.0,0 -44482198,"R.U.S.E.",purchase,1.0,0 -44482198,"Rayman Origins",purchase,1.0,0 -89286594,"Clicker Heroes",purchase,1.0,0 -89286594,"Clicker Heroes",play,48.0,0 -89286594,"Team Fortress 2",purchase,1.0,0 -89286594,"Team Fortress 2",play,30.0,0 -89286594,"Counter-Strike Global Offensive",purchase,1.0,0 -89286594,"Counter-Strike Global Offensive",play,11.3,0 -89286594,"Magicite",purchase,1.0,0 -89286594,"Magicite",play,6.0,0 -89286594,"AdVenture Capitalist",purchase,1.0,0 -89286594,"AdVenture Capitalist",play,0.3,0 -89286594,"Block N Load",purchase,1.0,0 -89286594,"DayZ",purchase,1.0,0 -89286594,"SMITE",purchase,1.0,0 -89286594,"Strife",purchase,1.0,0 -89286594,"TERA",purchase,1.0,0 -299364834,"Dota 2",purchase,1.0,0 -299364834,"Dota 2",play,0.2,0 -192264666,"Dota 2",purchase,1.0,0 -192264666,"Dota 2",play,403.0,0 -112088340,"Football Manager 2014",purchase,1.0,0 -112088340,"Football Manager 2014",play,159.0,0 -200175559,"DC Universe Online",purchase,1.0,0 -200175559,"DC Universe Online",play,0.9,0 -200175559,"PlanetSide 2",purchase,1.0,0 -200175559,"PlanetSide 2",play,0.4,0 -200175559,"FreeStyle2 Street Basketball",purchase,1.0,0 -200175559,"FreeStyle2 Street Basketball",play,0.3,0 -200175559,"Infinite Crisis",purchase,1.0,0 -200175559,"Infinite Crisis",play,0.2,0 -200175559,"Bloodline Champions",purchase,1.0,0 -200175559,"Bloodline Champions",play,0.2,0 -200175559,"Team Fortress 2",purchase,1.0,0 -200175559,"Team Fortress 2",play,0.2,0 -214107899,"Sonic Generations",purchase,1.0,0 -138570935,"Garry's Mod",purchase,1.0,0 -138570935,"Garry's Mod",play,46.0,0 -138570935,"Dota 2",purchase,1.0,0 -138570935,"Dota 2",play,5.3,0 -138570935,"Left 4 Dead 2",purchase,1.0,0 -138570935,"Left 4 Dead 2",play,4.9,0 -138570935,"PlanetSide 2",purchase,1.0,0 -138570935,"PlanetSide 2",play,1.2,0 -138570935,"Team Fortress 2",purchase,1.0,0 -138570935,"Team Fortress 2",play,0.6,0 -138570935,"Ragnarok Online 2",purchase,1.0,0 -138570935,"Ragnarok Online 2",play,0.6,0 -138570935,"Archeblade",purchase,1.0,0 -138570935,"Archeblade",play,0.3,0 -138570935,"PAYDAY The Heist",purchase,1.0,0 -138570935,"PAYDAY The Heist",play,0.2,0 -138570935,"Afterfall InSanity Extended Edition",purchase,1.0,0 -138570935,"Afterfall InSanity Extended Edition",play,0.1,0 -138570935,"Sniper Elite V2",purchase,1.0,0 -159960477,"Left 4 Dead 2",purchase,1.0,0 -178007464,"Dota 2",purchase,1.0,0 -178007464,"Dota 2",play,12.1,0 -194680258,"Sakura Clicker",purchase,1.0,0 -194680258,"Sakura Clicker",play,31.0,0 -194680258,"Trove",purchase,1.0,0 -194680258,"Counter-Strike Nexon Zombies",purchase,1.0,0 -194680258,"Happy Wars",purchase,1.0,0 -194680258,"No More Room in Hell",purchase,1.0,0 -194680258,"Robocraft",purchase,1.0,0 -194680258,"Spiral Knights",purchase,1.0,0 -194680258,"Unturned",purchase,1.0,0 -75034989,"Sid Meier's Civilization V",purchase,1.0,0 -75034989,"Sid Meier's Civilization V",play,1761.0,0 -248878320,"The Forest",purchase,1.0,0 -248878320,"The Forest",play,9.8,0 -29383643,"Counter-Strike Source",purchase,1.0,0 -29383643,"Counter-Strike Source",play,0.2,0 -29383643,"Day of Defeat Source",purchase,1.0,0 -29383643,"Half-Life 2 Deathmatch",purchase,1.0,0 -29383643,"Half-Life 2 Lost Coast",purchase,1.0,0 -195171884,"7 Days to Die",purchase,1.0,0 -195171884,"7 Days to Die",play,336.0,0 -195171884,"Counter-Strike Global Offensive",purchase,1.0,0 -195171884,"Counter-Strike Global Offensive",play,5.6,0 -195171884,"PAYDAY 2",purchase,1.0,0 -195171884,"PAYDAY 2",play,1.3,0 -195171884,"Team Fortress 2",purchase,1.0,0 -195171884,"Team Fortress 2",play,0.2,0 -128478373,"Dota 2",purchase,1.0,0 -128478373,"Dota 2",play,2.9,0 -37179655,"Counter-Strike Source",purchase,1.0,0 -37179655,"Counter-Strike Source",play,239.0,0 -37179655,"Day of Defeat Source",purchase,1.0,0 -37179655,"Half-Life 2 Deathmatch",purchase,1.0,0 -37179655,"Half-Life 2 Lost Coast",purchase,1.0,0 -135177440,"Counter-Strike Global Offensive",purchase,1.0,0 -135177440,"Counter-Strike Global Offensive",play,253.0,0 -135177440,"Call of Duty Black Ops - OSX",purchase,1.0,0 -135177440,"Call of Duty Black Ops - OSX",play,14.9,0 -135177440,"Call of Duty Black Ops - Multiplayer OSX",purchase,1.0,0 -135177440,"Call of Duty Black Ops - Multiplayer OSX",play,2.7,0 -135177440,"Team Fortress 2",purchase,1.0,0 -135177440,"Team Fortress 2",play,1.1,0 -139396034,"Dota 2",purchase,1.0,0 -139396034,"Dota 2",play,10.8,0 -300089223,"Dota 2",purchase,1.0,0 -300089223,"Dota 2",play,65.0,0 -90650405,"Football Manager 2012",purchase,1.0,0 -90650405,"Football Manager 2012",play,179.0,0 -55623839,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -55623839,"Call of Duty Modern Warfare 2 - Multiplayer",play,296.0,0 -55623839,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -55623839,"Call of Duty Black Ops - Multiplayer",play,29.0,0 -55623839,"Call of Duty Modern Warfare 2",purchase,1.0,0 -55623839,"Call of Duty Modern Warfare 2",play,16.4,0 -55623839,"Call of Duty Black Ops",purchase,1.0,0 -55623839,"Call of Duty Black Ops",play,7.9,0 -55623839,"Mafia II",purchase,1.0,0 -136913396,"Dota 2",purchase,1.0,0 -136913396,"Dota 2",play,160.0,0 -136913396,"Counter-Strike Global Offensive",purchase,1.0,0 -136913396,"Counter-Strike Global Offensive",play,13.5,0 -110150300,"The Lord of the Rings Online",purchase,1.0,0 -110150300,"The Lord of the Rings Online",play,3.5,0 -60594845,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -60594845,"F.E.A.R. 2 Project Origin",play,19.7,0 -141566602,"Dota 2",purchase,1.0,0 -141566602,"Dota 2",play,35.0,0 -12070928,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -12070928,"F.E.A.R. 2 Project Origin",play,34.0,0 -12070928,"Counter-Strike Source",purchase,1.0,0 -12070928,"Half-Life 2",purchase,1.0,0 -12070928,"Half-Life 2 Deathmatch",purchase,1.0,0 -12070928,"Half-Life 2 Episode One",purchase,1.0,0 -12070928,"Half-Life 2 Lost Coast",purchase,1.0,0 -12070928,"Half-Life Deathmatch Source",purchase,1.0,0 -205827348,"Unturned",purchase,1.0,0 -205827348,"Unturned",play,3.8,0 -205827348,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -299833904,"ARK Survival Evolved",purchase,1.0,0 -299833904,"ARK Survival Evolved",play,14.1,0 -291846968,"Dota 2",purchase,1.0,0 -291846968,"Dota 2",play,1.4,0 -291846968,"Mortal Online",purchase,1.0,0 -291846968,"Mortal Online",play,1.1,0 -291846968,"Close Your Eyes",purchase,1.0,0 -74565055,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -74565055,"Warhammer 40,000 Dawn of War II",play,52.0,0 -74565055,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -80022321,"X-COM Terror from the Deep",purchase,1.0,0 -80022321,"X-COM Terror from the Deep",play,55.0,0 -80022321,"X-COM Interceptor",purchase,1.0,0 -80022321,"X-COM Interceptor",play,8.2,0 -80022321,"Kerbal Space Program",purchase,1.0,0 -80022321,"Kerbal Space Program",play,3.3,0 -80022321,"X-COM UFO Defense",purchase,1.0,0 -80022321,"X-COM UFO Defense",play,1.9,0 -80022321,"X-COM Apocalypse",purchase,1.0,0 -80022321,"X-COM Enforcer",purchase,1.0,0 -109271976,"Team Fortress 2",purchase,1.0,0 -109271976,"Team Fortress 2",play,0.5,0 -242469861,"Dota 2",purchase,1.0,0 -242469861,"Dota 2",play,0.1,0 -242469861,"Dungeons & Dragons Online",purchase,1.0,0 -242469861,"Marvel Heroes 2015",purchase,1.0,0 -242469861,"Neverwinter",purchase,1.0,0 -242469861,"No More Room in Hell",purchase,1.0,0 -242469861,"RIFT",purchase,1.0,0 -242469861,"Rise of Incarnates",purchase,1.0,0 -58029555,"Sniper Elite V2",purchase,1.0,0 -58029555,"Sniper Elite V2",play,90.0,0 -58029555,"Grand Theft Auto V",purchase,1.0,0 -58029555,"Grand Theft Auto V",play,68.0,0 -58029555,"Operation Flashpoint Red River",purchase,1.0,0 -58029555,"Operation Flashpoint Red River",play,11.2,0 -58029555,"PAYDAY 2",purchase,1.0,0 -58029555,"PAYDAY 2",play,7.6,0 -58029555,"Sniper Elite 3",purchase,1.0,0 -58029555,"Sniper Elite 3",play,7.4,0 -58029555,"Left 4 Dead 2",purchase,1.0,0 -91881892,"H1Z1",purchase,1.0,0 -91881892,"H1Z1",play,371.0,0 -91881892,"Unturned",purchase,1.0,0 -91881892,"Unturned",play,0.4,0 -91881892,"Burstfire",purchase,1.0,0 -91881892,"Burstfire",play,0.2,0 -91881892,"H1Z1 Test Server",purchase,1.0,0 -91881892,"Relic Hunters Zero",purchase,1.0,0 -49845280,"RACE 07",purchase,1.0,0 -49845280,"RACE 07",play,91.0,0 -49845280,"GTR Evolution",purchase,1.0,0 -49845280,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -298644485,"Nosgoth",purchase,1.0,0 -58667850,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -58667850,"Call of Duty Modern Warfare 2 - Multiplayer",play,59.0,0 -58667850,"Call of Duty Modern Warfare 2",purchase,1.0,0 -58667850,"Call of Duty Modern Warfare 2",play,28.0,0 -234559223,"Dota 2",purchase,1.0,0 -234559223,"Dota 2",play,0.8,0 -111456195,"Team Fortress 2",purchase,1.0,0 -111456195,"Team Fortress 2",play,64.0,0 -111456195,"Sid Meier's Civilization V",purchase,1.0,0 -113423671,"Dota 2",purchase,1.0,0 -113423671,"Dota 2",play,2979.0,0 -113423671,"Counter-Strike Global Offensive",purchase,1.0,0 -113423671,"Counter-Strike Global Offensive",play,189.0,0 -113423671,"NBA 2K16",purchase,1.0,0 -113423671,"NBA 2K16",play,8.8,0 -113423671,"FreeStyle2 Street Basketball",purchase,1.0,0 -113423671,"FreeStyle2 Street Basketball",play,0.5,0 -113423671,"Metro 2033",purchase,1.0,0 -113423671,"Audition Online",purchase,1.0,0 -113423671,"Free to Play",purchase,1.0,0 -113423671,"GunZ 2 The Second Duel",purchase,1.0,0 -113423671,"Left 4 Dead 2",purchase,1.0,0 -113423671,"Marvel Heroes 2015",purchase,1.0,0 -113423671,"Ragnarok Online 2",purchase,1.0,0 -113423671,"Renaissance Heroes",purchase,1.0,0 -113423671,"Robocraft",purchase,1.0,0 -113423671,"Soldier Front 2",purchase,1.0,0 -113423671,"Strife",purchase,1.0,0 -113423671,"Uncharted Waters Online",purchase,1.0,0 -113423671,"Unturned",purchase,1.0,0 -113423671,"Warframe",purchase,1.0,0 -181840406,"Dota 2",purchase,1.0,0 -181840406,"Dota 2",play,24.0,0 -181840406,"GunZ 2 The Second Duel",purchase,1.0,0 -181840406,"Warframe",purchase,1.0,0 -79411077,"Dota 2",purchase,1.0,0 -79411077,"Dota 2",play,2371.0,0 -79411077,"Counter-Strike Global Offensive",purchase,1.0,0 -79411077,"Counter-Strike Global Offensive",play,333.0,0 -79411077,"Total War ROME II - Emperor Edition",purchase,1.0,0 -79411077,"Total War ROME II - Emperor Edition",play,237.0,0 -79411077,"Total War SHOGUN 2",purchase,1.0,0 -79411077,"Total War SHOGUN 2",play,142.0,0 -79411077,"Empire Total War",purchase,1.0,0 -79411077,"Empire Total War",play,97.0,0 -79411077,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -79411077,"Call of Duty Black Ops - Multiplayer",play,83.0,0 -79411077,"War Thunder",purchase,1.0,0 -79411077,"War Thunder",play,50.0,0 -79411077,"Survarium",purchase,1.0,0 -79411077,"Survarium",play,34.0,0 -79411077,"Warframe",purchase,1.0,0 -79411077,"Warframe",play,32.0,0 -79411077,"Left 4 Dead 2",purchase,1.0,0 -79411077,"Left 4 Dead 2",play,31.0,0 -79411077,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -79411077,"Grand Theft Auto Episodes from Liberty City",play,29.0,0 -79411077,"Alien Swarm",purchase,1.0,0 -79411077,"Alien Swarm",play,19.7,0 -79411077,"Team Fortress 2",purchase,1.0,0 -79411077,"Team Fortress 2",play,19.2,0 -79411077,"Neverwinter",purchase,1.0,0 -79411077,"Neverwinter",play,13.7,0 -79411077,"Planetary Annihilation",purchase,1.0,0 -79411077,"Planetary Annihilation",play,11.5,0 -79411077,"Heroes & Generals",purchase,1.0,0 -79411077,"Heroes & Generals",play,9.9,0 -79411077,"Call of Duty Black Ops",purchase,1.0,0 -79411077,"Call of Duty Black Ops",play,3.0,0 -79411077,"Free to Play",purchase,1.0,0 -79411077,"Free to Play",play,1.7,0 -79411077,"Nosgoth",purchase,1.0,0 -79411077,"Nosgoth",play,1.4,0 -79411077,"Arma 2 Operation Arrowhead",purchase,1.0,0 -79411077,"Arma 2 Operation Arrowhead",play,0.5,0 -79411077,"Arma 2",purchase,1.0,0 -79411077,"Arma 2",play,0.3,0 -79411077,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -79411077,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,0.3,0 -79411077,"Bloodline Champions",purchase,1.0,0 -79411077,"Chronicles of Mystery The Scorpio Ritual",purchase,1.0,0 -79411077,"Crysis 2 Maximum Edition",purchase,1.0,0 -79411077,"Grand Theft Auto IV",purchase,1.0,0 -79411077,"Infinite Crisis",purchase,1.0,0 -79411077,"Quake Live",purchase,1.0,0 -79411077,"Strife",purchase,1.0,0 -79411077,"Super Crate Box",purchase,1.0,0 -79411077,"TERA",purchase,1.0,0 -79411077,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -79411077,"Unturned",purchase,1.0,0 -79411077,"Velvet Sundown",purchase,1.0,0 -208127048,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -208127048,"S.K.I.L.L. - Special Force 2",play,10.2,0 -208127048,"Dirty Bomb",purchase,1.0,0 -208127048,"Dirty Bomb",play,0.3,0 -208127048,"Counter-Strike",purchase,1.0,0 -208127048,"Counter-Strike",play,0.2,0 -208127048,"APB Reloaded",purchase,1.0,0 -208127048,"APB Reloaded",play,0.2,0 -208127048,"Counter-Strike Nexon Zombies",purchase,1.0,0 -208127048,"Counter-Strike Condition Zero",purchase,1.0,0 -208127048,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -208127048,"NASCAR '15 Paint Pack 1",purchase,1.0,0 -167202599,"Star Trek Online",purchase,1.0,0 -167202599,"Star Trek Online",play,264.0,0 -167202599,"HAWKEN",purchase,1.0,0 -167202599,"HAWKEN",play,232.0,0 -167202599,"The Elder Scrolls V Skyrim",purchase,1.0,0 -167202599,"The Elder Scrolls V Skyrim",play,105.0,0 -167202599,"Fallout New Vegas",purchase,1.0,0 -167202599,"Fallout New Vegas",play,66.0,0 -167202599,"Left 4 Dead 2",purchase,1.0,0 -167202599,"Left 4 Dead 2",play,63.0,0 -167202599,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -167202599,"STAR WARS Knights of the Old Republic II The Sith Lords",play,47.0,0 -167202599,"Magicka",purchase,1.0,0 -167202599,"Magicka",play,34.0,0 -167202599,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -167202599,"Sins of a Solar Empire Rebellion",play,28.0,0 -167202599,"Space Engineers",purchase,1.0,0 -167202599,"Space Engineers",play,13.1,0 -167202599,"Star Wars Knights of the Old Republic",purchase,1.0,0 -167202599,"Star Wars Knights of the Old Republic",play,7.7,0 -167202599,"Serious Sam Classic The First Encounter",purchase,1.0,0 -167202599,"Serious Sam Classic The First Encounter",play,7.5,0 -167202599,"Dwarfs F2P",purchase,1.0,0 -167202599,"Dwarfs F2P",play,6.6,0 -167202599,"Dota 2",purchase,1.0,0 -167202599,"Dota 2",play,6.5,0 -167202599,"Counter-Strike Global Offensive",purchase,1.0,0 -167202599,"E.Y.E Divine Cybermancy",purchase,1.0,0 -167202599,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -167202599,"Fallout New Vegas Dead Money",purchase,1.0,0 -167202599,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -167202599,"Magicka Party Robes",purchase,1.0,0 -167202599,"Magicka Wizard's Survival Kit",purchase,1.0,0 -167202599,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -167202599,"Serious Sam Classics Revolution",purchase,1.0,0 -167202599,"Sins of a Solar Empire Rebellion - Stellar Phenomena DLC",purchase,1.0,0 -167202599,"Sins of a Solar Empire Rebellion Forbidden Worlds",purchase,1.0,0 -167202599,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -167202599,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -167202599,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -191507469,"Dota 2",purchase,1.0,0 -191507469,"Dota 2",play,1.7,0 -77136810,"Call of Duty Modern Warfare 2",purchase,1.0,0 -77136810,"Call of Duty Modern Warfare 2",play,49.0,0 -77136810,"Call of Duty Modern Warfare 3",purchase,1.0,0 -77136810,"Call of Duty Modern Warfare 3",play,42.0,0 -77136810,"R.U.S.E",purchase,1.0,0 -77136810,"R.U.S.E",play,1.6,0 -77136810,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -77136810,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -77136810,"R.U.S.E.",purchase,1.0,0 -249232725,"Dota 2",purchase,1.0,0 -249232725,"Dota 2",play,386.0,0 -249232725,"Magic Duels",purchase,1.0,0 -249232725,"Magic Duels",play,16.4,0 -249232725,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -249232725,"DARK SOULS II Scholar of the First Sin",play,13.5,0 -249232725,"Clicker Heroes",purchase,1.0,0 -249232725,"Clicker Heroes",play,13.2,0 -249232725,"Blood Bowl Chaos Edition",purchase,1.0,0 -249232725,"Blood Bowl Chaos Edition",play,12.8,0 -249232725,"Warframe",purchase,1.0,0 -249232725,"Warframe",play,10.4,0 -249232725,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -249232725,"Deus Ex Human Revolution - Director's Cut",play,8.7,0 -249232725,"Mount & Blade Warband",purchase,1.0,0 -249232725,"Mount & Blade Warband",play,7.5,0 -249232725,"Gauntlet ",purchase,1.0,0 -249232725,"Gauntlet ",play,3.7,0 -249232725,"Defense Grid 2",purchase,1.0,0 -249232725,"Defense Grid 2",play,3.3,0 -249232725,"Age of Empires II HD Edition",purchase,1.0,0 -249232725,"Age of Empires II HD Edition",play,2.4,0 -249232725,"Path of Exile",purchase,1.0,0 -249232725,"Path of Exile",play,1.7,0 -249232725,"The Guild II Renaissance",purchase,1.0,0 -249232725,"The Guild II Renaissance",play,0.9,0 -249232725,"The Guild II",purchase,1.0,0 -249232725,"The Guild II",play,0.7,0 -249232725,"America's Army Proving Grounds",purchase,1.0,0 -249232725,"America's Army Proving Grounds",play,0.7,0 -249232725,"Wargame Red Dragon",purchase,1.0,0 -249232725,"Wargame Red Dragon",play,0.5,0 -249232725,"Defense Grid 2 A Matter of Endurance",purchase,1.0,0 -249232725,"Age of Empires II HD The Forgotten",purchase,1.0,0 -249232725,"Another World",purchase,1.0,0 -249232725,"Bound By Flame",purchase,1.0,0 -249232725,"Cities XXL",purchase,1.0,0 -249232725,"Contrast",purchase,1.0,0 -249232725,"Deus Ex Game of the Year Edition",purchase,1.0,0 -249232725,"Deus Ex Invisible War",purchase,1.0,0 -249232725,"Deus Ex The Fall",purchase,1.0,0 -249232725,"Dirty Bomb",purchase,1.0,0 -249232725,"Etherium",purchase,1.0,0 -249232725,"Faery - Legends of Avalon",purchase,1.0,0 -249232725,"Farming Simulator 2013",purchase,1.0,0 -249232725,"Final Exam",purchase,1.0,0 -249232725,"Game of Thrones ",purchase,1.0,0 -249232725,"Mars War Logs",purchase,1.0,0 -249232725,"Mount & Blade",purchase,1.0,0 -249232725,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -249232725,"Mount & Blade Warband - Viking Conquest Reforged Edition",purchase,1.0,0 -249232725,"Mount & Blade With Fire and Sword",purchase,1.0,0 -249232725,"Nosgoth",purchase,1.0,0 -249232725,"Of Orcs And Men",purchase,1.0,0 -249232725,"Pro Cycling Manager 2015",purchase,1.0,0 -249232725,"RAW - Realms of Ancient War",purchase,1.0,0 -249232725,"Runaway A Road Adventure",purchase,1.0,0 -249232725,"Runaway A Twist of Fate",purchase,1.0,0 -249232725,"Runaway The Dream of the Turtle",purchase,1.0,0 -249232725,"Space Run",purchase,1.0,0 -249232725,"Styx Master of Shadows",purchase,1.0,0 -249232725,"The Guild Gold Edition",purchase,1.0,0 -249232725,"The Guild II - Pirates of the European Seas",purchase,1.0,0 -249232725,"Yesterday",purchase,1.0,0 -32467994,"Might & Magic Heroes VI",purchase,1.0,0 -32467994,"Might & Magic Heroes VI",play,834.0,0 -32467994,"Space Pirates and Zombies",purchase,1.0,0 -32467994,"Space Pirates and Zombies",play,591.0,0 -32467994,"King's Bounty Warriors of the North",purchase,1.0,0 -32467994,"King's Bounty Warriors of the North",play,473.0,0 -32467994,"Disciples III Renaissance",purchase,1.0,0 -32467994,"Disciples III Renaissance",play,380.0,0 -32467994,"Might & Magic Heroes VII ",purchase,1.0,0 -32467994,"Might & Magic Heroes VII ",play,352.0,0 -32467994,"Neverwinter Nights 2 Platinum",purchase,1.0,0 -32467994,"Neverwinter Nights 2 Platinum",play,307.0,0 -32467994,"King's Bounty Crossworlds",purchase,1.0,0 -32467994,"King's Bounty Crossworlds",play,244.0,0 -32467994,"King's Bounty Dark Side",purchase,1.0,0 -32467994,"King's Bounty Dark Side",play,183.0,0 -32467994,"Shadowrun Returns",purchase,1.0,0 -32467994,"Shadowrun Returns",play,122.0,0 -32467994,"SpellForce 2 - Faith in Destiny",purchase,1.0,0 -32467994,"SpellForce 2 - Faith in Destiny",play,121.0,0 -32467994,"Endless Legend",purchase,1.0,0 -32467994,"Endless Legend",play,121.0,0 -32467994,"Divinity Original Sin",purchase,1.0,0 -32467994,"Divinity Original Sin",play,119.0,0 -32467994,"Fallen Enchantress",purchase,1.0,0 -32467994,"Fallen Enchantress",play,112.0,0 -32467994,"Blackguards",purchase,1.0,0 -32467994,"Blackguards",play,108.0,0 -32467994,"Magic The Gathering - Duels of the Planeswalkers",purchase,1.0,0 -32467994,"Magic The Gathering - Duels of the Planeswalkers",play,103.0,0 -32467994,"Terraria",purchase,1.0,0 -32467994,"Terraria",play,100.0,0 -32467994,"Grotesque Tactics 2 - Dungeons and Donuts",purchase,1.0,0 -32467994,"Grotesque Tactics 2 - Dungeons and Donuts",play,86.0,0 -32467994,"Age of Wonders III",purchase,1.0,0 -32467994,"Age of Wonders III",play,83.0,0 -32467994,"The Banner Saga",purchase,1.0,0 -32467994,"The Banner Saga",play,78.0,0 -32467994,"Magic The Gathering Duels of the Planeswalkers 2012",purchase,1.0,0 -32467994,"Magic The Gathering Duels of the Planeswalkers 2012",play,70.0,0 -32467994,"Blackguards 2",purchase,1.0,0 -32467994,"Blackguards 2",play,69.0,0 -32467994,"Pinball FX2",purchase,1.0,0 -32467994,"Pinball FX2",play,66.0,0 -32467994,"Rocksmith 2014",purchase,1.0,0 -32467994,"Rocksmith 2014",play,62.0,0 -32467994,"Unepic",purchase,1.0,0 -32467994,"Unepic",play,59.0,0 -32467994,"Warlock - Master of the Arcane",purchase,1.0,0 -32467994,"Warlock - Master of the Arcane",play,56.0,0 -32467994,"Agarest Generations of War",purchase,1.0,0 -32467994,"Agarest Generations of War",play,55.0,0 -32467994,"Fallen Enchantress Legendary Heroes",purchase,1.0,0 -32467994,"Fallen Enchantress Legendary Heroes",play,49.0,0 -32467994,"Fable III",purchase,1.0,0 -32467994,"Fable III",play,46.0,0 -32467994,"Torchlight II",purchase,1.0,0 -32467994,"Torchlight II",play,40.0,0 -32467994,"Grotesque Tactics Evil Heroes",purchase,1.0,0 -32467994,"Grotesque Tactics Evil Heroes",play,39.0,0 -32467994,"The Book of Unwritten Tales",purchase,1.0,0 -32467994,"The Book of Unwritten Tales",play,38.0,0 -32467994,"Magic 2014 ",purchase,1.0,0 -32467994,"Magic 2014 ",play,36.0,0 -32467994,"CastleStorm",purchase,1.0,0 -32467994,"CastleStorm",play,30.0,0 -32467994,"Defense Grid The Awakening",purchase,1.0,0 -32467994,"Defense Grid The Awakening",play,27.0,0 -32467994,"Magicka",purchase,1.0,0 -32467994,"Magicka",play,26.0,0 -32467994,"Anomaly Warzone Earth",purchase,1.0,0 -32467994,"Anomaly Warzone Earth",play,23.0,0 -32467994,"Trine",purchase,1.0,0 -32467994,"Trine",play,21.0,0 -32467994,"Chaos on Deponia",purchase,1.0,0 -32467994,"Chaos on Deponia",play,20.0,0 -32467994,"Command and Conquer 4 Tiberian Twilight",purchase,1.0,0 -32467994,"Command and Conquer 4 Tiberian Twilight",play,17.0,0 -32467994,"Spiral Knights",purchase,1.0,0 -32467994,"Spiral Knights",play,14.4,0 -32467994,"Dust An Elysian Tail",purchase,1.0,0 -32467994,"Dust An Elysian Tail",play,13.5,0 -32467994,"Dota 2",purchase,1.0,0 -32467994,"Dota 2",play,11.8,0 -32467994,"RIFT",purchase,1.0,0 -32467994,"RIFT",play,9.6,0 -32467994,"HOARD",purchase,1.0,0 -32467994,"HOARD",play,9.6,0 -32467994,"Worms Revolution",purchase,1.0,0 -32467994,"Worms Revolution",play,8.0,0 -32467994,"Team Fortress 2",purchase,1.0,0 -32467994,"Team Fortress 2",play,7.7,0 -32467994,"Hammerwatch",purchase,1.0,0 -32467994,"Hammerwatch",play,4.8,0 -32467994,"Portal",purchase,1.0,0 -32467994,"Portal",play,3.5,0 -32467994,"Space Rangers HD A War Apart",purchase,1.0,0 -32467994,"Space Rangers HD A War Apart",play,2.6,0 -32467994,"Pinball Arcade",purchase,1.0,0 -32467994,"Pinball Arcade",play,2.4,0 -32467994,"Lichdom Battlemage",purchase,1.0,0 -32467994,"Lichdom Battlemage",play,1.8,0 -32467994,"Reversion - The Escape",purchase,1.0,0 -32467994,"Reversion - The Escape",play,1.3,0 -32467994,"Evoland",purchase,1.0,0 -32467994,"Evoland",play,0.8,0 -32467994,"Gauntlet ",purchase,1.0,0 -32467994,"Gauntlet ",play,0.6,0 -32467994,"Half-Life 2 Lost Coast",purchase,1.0,0 -32467994,"Half-Life 2 Lost Coast",play,0.4,0 -32467994,"Kings Bounty Legions",purchase,1.0,0 -32467994,"Kings Bounty Legions",play,0.4,0 -32467994,"Guns of Icarus Online",purchase,1.0,0 -32467994,"King's Bounty Armored Princess",purchase,1.0,0 -32467994,"Conquest of Champions",purchase,1.0,0 -32467994,"Age of Wonders Shadow Magic",purchase,1.0,0 -32467994,"Blackguards Untold Legends",purchase,1.0,0 -32467994,"Card Hunter",purchase,1.0,0 -32467994,"CastleStorm - From Outcast to Savior",purchase,1.0,0 -32467994,"CastleStorm - The Warrior Queen",purchase,1.0,0 -32467994,"Clicker Heroes",purchase,1.0,0 -32467994,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -32467994,"Eador. Masters of the Broken World",purchase,1.0,0 -32467994,"Elsword",purchase,1.0,0 -32467994,"Forge",purchase,1.0,0 -32467994,"Guacamelee! Gold Edition",purchase,1.0,0 -32467994,"Half-Life 2",purchase,1.0,0 -32467994,"Half-Life 2 Episode One",purchase,1.0,0 -32467994,"Half-Life 2 Episode Two",purchase,1.0,0 -32467994,"Heroes of Might & Magic III - HD Edition",purchase,1.0,0 -32467994,"Magic Duels",purchase,1.0,0 -32467994,"Pinball FX2 - Captain America Table",purchase,1.0,0 -32467994,"Pinball FX2 - Marvel's Ant-Man",purchase,1.0,0 -32467994,"Pinball FX2 - Star Wars Pack",purchase,1.0,0 -32467994,"PlanetSide 2",purchase,1.0,0 -32467994,"Realm of the Mad God",purchase,1.0,0 -32467994,"Robocraft",purchase,1.0,0 -32467994,"Shadowrun Dragonfall",purchase,1.0,0 -32467994,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -32467994,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -32467994,"Super Hexagon",purchase,1.0,0 -32467994,"The Banner Saga - Mod Content",purchase,1.0,0 -32467994,"The Banner Saga Factions",purchase,1.0,0 -32467994,"The Book of Unwritten Tales The Critter Chronicles",purchase,1.0,0 -32467994,"The Book of Unwritten Tales Extras",purchase,1.0,0 -32467994,"The Mighty Quest For Epic Loot",purchase,1.0,0 -32467994,"Toy Soldiers",purchase,1.0,0 -32467994,"Trove",purchase,1.0,0 -32467994,"Two Worlds 2 - Pirates of the Flying Fortress ",purchase,1.0,0 -32467994,"Two Worlds II",purchase,1.0,0 -32467994,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -259053705,"SMITE",purchase,1.0,0 -259053705,"SMITE",play,0.4,0 -259053705,"Lost Lands A Hidden Object Adventure",purchase,1.0,0 -259053705,"Lost Lands A Hidden Object Adventure",play,0.2,0 -259053705,"The Settlers Online",purchase,1.0,0 -138656604,"Dota 2",purchase,1.0,0 -138656604,"Dota 2",play,1750.0,0 -271808456,"Team Fortress 2",purchase,1.0,0 -271808456,"Team Fortress 2",play,47.0,0 -246303844,"Dota 2",purchase,1.0,0 -246303844,"Dota 2",play,5.0,0 -299914260,"Nobunaga's Ambition Souzou with Power Up Kit",purchase,1.0,0 -299914260,"Nobunaga's Ambition Souzou with Power Up Kit",play,83.0,0 -121360145,"Dota 2",purchase,1.0,0 -121360145,"Dota 2",play,2126.0,0 -121360145,"Path of Exile",purchase,1.0,0 -121360145,"Path of Exile",play,871.0,0 -121360145,"Counter-Strike Global Offensive",purchase,1.0,0 -121360145,"Counter-Strike Global Offensive",play,15.6,0 -121360145,"Marvel Heroes 2015",purchase,1.0,0 -121360145,"Marvel Heroes 2015",play,6.3,0 -121360145,"Prime World",purchase,1.0,0 -121360145,"Prime World",play,1.2,0 -203745259,"Dota 2",purchase,1.0,0 -203745259,"Dota 2",play,68.0,0 -206398775,"Football Superstars",purchase,1.0,0 -206398775,"Football Superstars",play,103.0,0 -206398775,"Warface",purchase,1.0,0 -206398775,"Warface",play,5.9,0 -206398775,"APB Reloaded",purchase,1.0,0 -206398775,"APB Reloaded",play,1.7,0 -206398775,"Dota 2",purchase,1.0,0 -206398775,"Dota 2",play,0.1,0 -206398775,"War Thunder",purchase,1.0,0 -159129006,"The Elder Scrolls V Skyrim",purchase,1.0,0 -159129006,"The Elder Scrolls V Skyrim",play,16.2,0 -159129006,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -159129006,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -159129006,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -238773402,"Unturned",purchase,1.0,0 -238773402,"Unturned",play,33.0,0 -238773402,"Team Fortress 2",purchase,1.0,0 -238773402,"Team Fortress 2",play,12.7,0 -238773402,"BLOCKADE 3D",purchase,1.0,0 -238773402,"BLOCKADE 3D",play,3.3,0 -238773402,"Red Crucible Firestorm",purchase,1.0,0 -238773402,"Red Crucible Firestorm",play,0.3,0 -238773402,"Survarium",purchase,1.0,0 -238773402,"Survarium",play,0.2,0 -164271888,"DayZ",purchase,1.0,0 -164271888,"DayZ",play,1266.0,0 -83751255,"Team Fortress 2",purchase,1.0,0 -83751255,"Team Fortress 2",play,128.0,0 -83751255,"Deus Ex Human Revolution",purchase,1.0,0 -83751255,"Deus Ex Human Revolution",play,22.0,0 -83751255,"Fortix",purchase,1.0,0 -83751255,"Hitman Absolution",purchase,1.0,0 -278099058,"Don't Starve Together Beta",purchase,1.0,0 -278099058,"Don't Starve Together Beta",play,11.3,0 -278099058,"theHunter",purchase,1.0,0 -278099058,"theHunter",play,0.6,0 -30527047,"Counter-Strike",purchase,1.0,0 -30527047,"Counter-Strike",play,437.0,0 -30527047,"Counter-Strike Condition Zero",purchase,1.0,0 -30527047,"Counter-Strike Condition Zero",play,0.9,0 -30527047,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -30527047,"Day of Defeat",purchase,1.0,0 -30527047,"Deathmatch Classic",purchase,1.0,0 -30527047,"Ricochet",purchase,1.0,0 -163662283,"Dota 2",purchase,1.0,0 -163662283,"Dota 2",play,16.4,0 -172086978,"Team Fortress 2",purchase,1.0,0 -172086978,"Team Fortress 2",play,1.1,0 -96977722,"Team Fortress 2",purchase,1.0,0 -96977722,"Team Fortress 2",play,14.8,0 -96977722,"Napoleon Total War",purchase,1.0,0 -96977722,"Napoleon Total War",play,3.1,0 -184812615,"Farming Simulator 2013",purchase,1.0,0 -184812615,"Farming Simulator 2013",play,1.7,0 -207234237,"Saints Row The Third",purchase,1.0,0 -207234237,"Saints Row The Third",play,21.0,0 -241603501,"Counter-Strike Nexon Zombies",purchase,1.0,0 -241603501,"Counter-Strike Nexon Zombies",play,4.0,0 -144565105,"Dota 2",purchase,1.0,0 -144565105,"Dota 2",play,8.5,0 -118725402,"Hitman Absolution",purchase,1.0,0 -118725402,"Hitman Absolution",play,8.4,0 -118725402,"Rise of the Triad",purchase,1.0,0 -118725402,"Rise of the Triad",play,2.1,0 -160640171,"Counter-Strike Global Offensive",purchase,1.0,0 -160640171,"Counter-Strike Global Offensive",play,9.3,0 -160640171,"Team Fortress 2",purchase,1.0,0 -160640171,"Team Fortress 2",play,7.6,0 -160640171,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -160640171,"Tropico 3 - Steam Special Edition",play,4.8,0 -160640171,"Warface",purchase,1.0,0 -160640171,"Warface",play,4.7,0 -160640171,"PAYDAY 2",purchase,1.0,0 -160640171,"PAYDAY 2",play,2.0,0 -160640171,"Dota 2",purchase,1.0,0 -160640171,"Dota 2",play,1.2,0 -160640171,"Sniper Elite V2",purchase,1.0,0 -160640171,"Sniper Elite V2",play,1.0,0 -160640171,"Left 4 Dead 2",purchase,1.0,0 -160640171,"Left 4 Dead 2",play,0.8,0 -160640171,"War Thunder",purchase,1.0,0 -160640171,"War Thunder",play,0.5,0 -160640171,"Rise of Incarnates",purchase,1.0,0 -160640171,"Dino D-Day",purchase,1.0,0 -156799348,"The Elder Scrolls V Skyrim",purchase,1.0,0 -156799348,"The Elder Scrolls V Skyrim",play,22.0,0 -156799348,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -156799348,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -156799348,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -4485779,"Counter-Strike",purchase,1.0,0 -4485779,"Counter-Strike",play,1697.0,0 -4485779,"Day of Defeat",purchase,1.0,0 -4485779,"Deathmatch Classic",purchase,1.0,0 -4485779,"Half-Life",purchase,1.0,0 -4485779,"Half-Life Blue Shift",purchase,1.0,0 -4485779,"Half-Life Opposing Force",purchase,1.0,0 -4485779,"Ricochet",purchase,1.0,0 -4485779,"Team Fortress Classic",purchase,1.0,0 -291452278,"Trove",purchase,1.0,0 -10267553,"Counter-Strike Source",purchase,1.0,0 -10267553,"Half-Life 2",purchase,1.0,0 -10267553,"Half-Life 2 Deathmatch",purchase,1.0,0 -10267553,"Half-Life 2 Lost Coast",purchase,1.0,0 -295708462,"Dota 2",purchase,1.0,0 -295708462,"Dota 2",play,6.5,0 -304497842,"Dota 2",purchase,1.0,0 -304497842,"Dota 2",play,1.6,0 -168925642,"Dota 2",purchase,1.0,0 -168925642,"Dota 2",play,2.1,0 -93575977,"Mafia II",purchase,1.0,0 -93575977,"Mafia II",play,4.4,0 -68316900,"The Elder Scrolls V Skyrim",purchase,1.0,0 -68316900,"The Elder Scrolls V Skyrim",play,106.0,0 -68316900,"Grand Theft Auto San Andreas",purchase,1.0,0 -68316900,"Grand Theft Auto San Andreas",play,45.0,0 -68316900,"Deus Ex Human Revolution",purchase,1.0,0 -68316900,"Deus Ex Human Revolution",play,43.0,0 -68316900,"Grand Theft Auto IV",purchase,1.0,0 -68316900,"Grand Theft Auto IV",play,42.0,0 -68316900,"The Witcher Enhanced Edition",purchase,1.0,0 -68316900,"The Witcher Enhanced Edition",play,41.0,0 -68316900,"Fallout 4",purchase,1.0,0 -68316900,"Fallout 4",play,29.0,0 -68316900,"L.A. Noire",purchase,1.0,0 -68316900,"L.A. Noire",play,23.0,0 -68316900,"Grand Theft Auto Vice City",purchase,1.0,0 -68316900,"Grand Theft Auto Vice City",play,22.0,0 -68316900,"Half-Life Source",purchase,1.0,0 -68316900,"Half-Life Source",play,18.3,0 -68316900,"Portal",purchase,1.0,0 -68316900,"Portal",play,17.4,0 -68316900,"BioShock Infinite",purchase,1.0,0 -68316900,"BioShock Infinite",play,16.1,0 -68316900,"Terraria",purchase,1.0,0 -68316900,"Terraria",play,14.2,0 -68316900,"Grand Theft Auto III",purchase,1.0,0 -68316900,"Grand Theft Auto III",play,13.3,0 -68316900,"Assassin's Creed II",purchase,1.0,0 -68316900,"Assassin's Creed II",play,10.9,0 -68316900,"Half-Life 2 Episode Two",purchase,1.0,0 -68316900,"Half-Life 2 Episode Two",play,9.7,0 -68316900,"LIMBO",purchase,1.0,0 -68316900,"LIMBO",play,8.9,0 -68316900,"Half-Life 2 Episode One",purchase,1.0,0 -68316900,"Half-Life 2 Episode One",play,8.3,0 -68316900,"BioShock",purchase,1.0,0 -68316900,"BioShock",play,6.8,0 -68316900,"Braid",purchase,1.0,0 -68316900,"Braid",play,6.0,0 -68316900,"Hitman Codename 47",purchase,1.0,0 -68316900,"Hitman Codename 47",play,5.5,0 -68316900,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -68316900,"Dark Souls Prepare to Die Edition",play,5.0,0 -68316900,"Far Cry 2",purchase,1.0,0 -68316900,"Far Cry 2",play,4.9,0 -68316900,"Deus Ex Game of the Year Edition",purchase,1.0,0 -68316900,"Deus Ex Game of the Year Edition",play,4.6,0 -68316900,"Rome Total War",purchase,1.0,0 -68316900,"Rome Total War",play,3.1,0 -68316900,"Total War SHOGUN 2",purchase,1.0,0 -68316900,"Total War SHOGUN 2",play,3.0,0 -68316900,"Killing Floor",purchase,1.0,0 -68316900,"Killing Floor",play,2.6,0 -68316900,"Dead Space",purchase,1.0,0 -68316900,"Dead Space",play,1.5,0 -68316900,"The Elder Scrolls III Morrowind",purchase,1.0,0 -68316900,"The Elder Scrolls III Morrowind",play,1.4,0 -68316900,"Metro 2033",purchase,1.0,0 -68316900,"Metro 2033",play,1.1,0 -68316900,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -68316900,"The Elder Scrolls IV Oblivion ",play,0.6,0 -68316900,"Grand Theft Auto",purchase,1.0,0 -68316900,"Grand Theft Auto",play,0.5,0 -68316900,"Half-Life Deathmatch Source",purchase,1.0,0 -68316900,"Half-Life Deathmatch Source",play,0.3,0 -68316900,"Psychonauts",purchase,1.0,0 -68316900,"Psychonauts",play,0.2,0 -68316900,"Half-Life 2 Deathmatch",purchase,1.0,0 -68316900,"Assassin's Creed Brotherhood",purchase,1.0,0 -68316900,"Audiosurf",purchase,1.0,0 -68316900,"Borderlands",purchase,1.0,0 -68316900,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -68316900,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -68316900,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -68316900,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -68316900,"Bully Scholarship Edition",purchase,1.0,0 -68316900,"Company of Heroes",purchase,1.0,0 -68316900,"Company of Heroes (New Steam Version)",purchase,1.0,0 -68316900,"Crysis",purchase,1.0,0 -68316900,"Dead Space 2",purchase,1.0,0 -68316900,"DEFCON",purchase,1.0,0 -68316900,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -68316900,"Empire Total War",purchase,1.0,0 -68316900,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -68316900,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -68316900,"Grand Theft Auto 2",purchase,1.0,0 -68316900,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -68316900,"Grand Theft Auto San Andreas",purchase,1.0,0 -68316900,"Grand Theft Auto Vice City",purchase,1.0,0 -68316900,"Grand Theft Auto III",purchase,1.0,0 -68316900,"Half-Life 2",purchase,1.0,0 -68316900,"Half-Life 2 Lost Coast",purchase,1.0,0 -68316900,"Hitman 2 Silent Assassin",purchase,1.0,0 -68316900,"Hitman Blood Money",purchase,1.0,0 -68316900,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -68316900,"Left 4 Dead",purchase,1.0,0 -68316900,"Left 4 Dead 2",purchase,1.0,0 -68316900,"Mass Effect",purchase,1.0,0 -68316900,"Max Payne",purchase,1.0,0 -68316900,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -68316900,"Medieval II Total War",purchase,1.0,0 -68316900,"Medieval II Total War Kingdoms",purchase,1.0,0 -68316900,"Mirror's Edge",purchase,1.0,0 -68316900,"Portal 2",purchase,1.0,0 -68316900,"Psychonauts Demo",purchase,1.0,0 -68316900,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -68316900,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -68316900,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -68316900,"Saints Row The Third",purchase,1.0,0 -68316900,"The Binding of Isaac",purchase,1.0,0 -68316900,"Tomb Raider Underworld",purchase,1.0,0 -105289933,"FreeStyle2 Street Basketball",purchase,1.0,0 -105289933,"Marvel Heroes 2015",purchase,1.0,0 -105289933,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -153026960,"Dota 2",purchase,1.0,0 -153026960,"Dota 2",play,18.3,0 -27417971,"Team Fortress 2",purchase,1.0,0 -27417971,"Team Fortress 2",play,432.0,0 -27417971,"Counter-Strike",purchase,1.0,0 -27417971,"Counter-Strike",play,11.3,0 -27417971,"Counter-Strike Condition Zero",purchase,1.0,0 -27417971,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -102825821,"Rocket League",purchase,1.0,0 -102825821,"Rocket League",play,430.0,0 -102825821,"Counter-Strike Global Offensive",purchase,1.0,0 -102825821,"Counter-Strike Global Offensive",play,165.0,0 -102825821,"Blacklight Retribution",purchase,1.0,0 -102825821,"Blacklight Retribution",play,62.0,0 -102825821,"Fight The Dragon",purchase,1.0,0 -102825821,"Fight The Dragon",play,49.0,0 -102825821,"The Crew",purchase,1.0,0 -102825821,"The Crew",play,46.0,0 -102825821,"Team Fortress 2",purchase,1.0,0 -102825821,"Team Fortress 2",play,40.0,0 -102825821,"Magic Barrage - Bitferno",purchase,1.0,0 -102825821,"Magic Barrage - Bitferno",play,37.0,0 -102825821,"Brawlhalla",purchase,1.0,0 -102825821,"Brawlhalla",play,30.0,0 -102825821,"Tony Hawk's Pro Skater HD",purchase,1.0,0 -102825821,"Tony Hawk's Pro Skater HD",play,28.0,0 -102825821,"Grand Theft Auto V",purchase,1.0,0 -102825821,"Grand Theft Auto V",play,27.0,0 -102825821,"GunZ 2 The Second Duel",purchase,1.0,0 -102825821,"GunZ 2 The Second Duel",play,21.0,0 -102825821,"DLC Quest",purchase,1.0,0 -102825821,"DLC Quest",play,21.0,0 -102825821,"Realm of the Mad God",purchase,1.0,0 -102825821,"Realm of the Mad God",play,19.9,0 -102825821,"Need for Speed Hot Pursuit",purchase,1.0,0 -102825821,"Need for Speed Hot Pursuit",play,16.7,0 -102825821,"Super Meat Boy",purchase,1.0,0 -102825821,"Super Meat Boy",play,16.2,0 -102825821,"Divine Souls",purchase,1.0,0 -102825821,"Divine Souls",play,14.6,0 -102825821,"Worms Armageddon",purchase,1.0,0 -102825821,"Worms Armageddon",play,12.5,0 -102825821,"Max Payne 3",purchase,1.0,0 -102825821,"Max Payne 3",play,11.7,0 -102825821,"Trove",purchase,1.0,0 -102825821,"Trove",play,9.5,0 -102825821,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -102825821,"Call of Duty Black Ops II - Multiplayer",play,9.1,0 -102825821,"Orcs Must Die! 2",purchase,1.0,0 -102825821,"Orcs Must Die! 2",play,8.3,0 -102825821,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -102825821,"Grand Theft Auto Episodes from Liberty City",play,8.0,0 -102825821,"Neverwinter",purchase,1.0,0 -102825821,"Neverwinter",play,7.7,0 -102825821,"Tomb Raider",purchase,1.0,0 -102825821,"Tomb Raider",play,7.5,0 -102825821,"Torchlight II",purchase,1.0,0 -102825821,"Torchlight II",play,7.1,0 -102825821,"Warframe",purchase,1.0,0 -102825821,"Warframe",play,6.8,0 -102825821,"Dead Bits",purchase,1.0,0 -102825821,"Dead Bits",play,5.6,0 -102825821,"Enclave",purchase,1.0,0 -102825821,"Enclave",play,5.0,0 -102825821,"Robocraft",purchase,1.0,0 -102825821,"Robocraft",play,4.9,0 -102825821,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -102825821,"Burnout Paradise The Ultimate Box",play,3.6,0 -102825821,"Dota 2",purchase,1.0,0 -102825821,"Dota 2",play,3.1,0 -102825821,"Terraria",purchase,1.0,0 -102825821,"Terraria",play,3.1,0 -102825821,"Burstfire",purchase,1.0,0 -102825821,"Burstfire",play,3.1,0 -102825821,"Fishing Planet",purchase,1.0,0 -102825821,"Fishing Planet",play,2.4,0 -102825821,"Call of Duty Black Ops II",purchase,1.0,0 -102825821,"Call of Duty Black Ops II",play,2.3,0 -102825821,"The Elder Scrolls V Skyrim",purchase,1.0,0 -102825821,"The Elder Scrolls V Skyrim",play,2.0,0 -102825821,"GRID 2",purchase,1.0,0 -102825821,"GRID 2",play,1.9,0 -102825821,"Tap Tap Infinity",purchase,1.0,0 -102825821,"Tap Tap Infinity",play,1.6,0 -102825821,"PAYDAY The Heist",purchase,1.0,0 -102825821,"PAYDAY The Heist",play,1.6,0 -102825821,"Garry's Mod",purchase,1.0,0 -102825821,"Garry's Mod",play,1.4,0 -102825821,"Awesomenauts",purchase,1.0,0 -102825821,"Awesomenauts",play,1.4,0 -102825821,"Mortal Kombat Komplete Edition",purchase,1.0,0 -102825821,"Mortal Kombat Komplete Edition",play,1.3,0 -102825821,"Super Crate Box",purchase,1.0,0 -102825821,"Super Crate Box",play,1.2,0 -102825821,"South Park The Stick of Truth",purchase,1.0,0 -102825821,"South Park The Stick of Truth",play,1.0,0 -102825821,"Infinite Crisis",purchase,1.0,0 -102825821,"Infinite Crisis",play,1.0,0 -102825821,"Geometry Dash",purchase,1.0,0 -102825821,"Geometry Dash",play,0.9,0 -102825821,"Nail'd",purchase,1.0,0 -102825821,"Nail'd",play,0.9,0 -102825821,"Pound of Ground",purchase,1.0,0 -102825821,"Pound of Ground",play,0.8,0 -102825821,"TERA",purchase,1.0,0 -102825821,"TERA",play,0.8,0 -102825821,"Brothers - A Tale of Two Sons",purchase,1.0,0 -102825821,"Brothers - A Tale of Two Sons",play,0.7,0 -102825821,"ORION Prelude",purchase,1.0,0 -102825821,"ORION Prelude",play,0.7,0 -102825821,"Goat Simulator",purchase,1.0,0 -102825821,"Goat Simulator",play,0.6,0 -102825821,"Transformice",purchase,1.0,0 -102825821,"Transformice",play,0.6,0 -102825821,"McPixel",purchase,1.0,0 -102825821,"McPixel",play,0.5,0 -102825821,"Aura Kingdom",purchase,1.0,0 -102825821,"Aura Kingdom",play,0.5,0 -102825821,"PARTICLE MACE",purchase,1.0,0 -102825821,"PARTICLE MACE",play,0.5,0 -102825821,"Fallen Earth",purchase,1.0,0 -102825821,"Fallen Earth",play,0.5,0 -102825821,"Spermination",purchase,1.0,0 -102825821,"Spermination",play,0.5,0 -102825821,"World of Soccer online",purchase,1.0,0 -102825821,"World of Soccer online",play,0.5,0 -102825821,"Batman Arkham Origins",purchase,1.0,0 -102825821,"Batman Arkham Origins",play,0.4,0 -102825821,"Ultra Street Fighter IV",purchase,1.0,0 -102825821,"Ultra Street Fighter IV",play,0.4,0 -102825821,"Castle Crashers",purchase,1.0,0 -102825821,"Castle Crashers",play,0.4,0 -102825821,"Sigils of Elohim",purchase,1.0,0 -102825821,"Sigils of Elohim",play,0.4,0 -102825821,"Poker Night at the Inventory",purchase,1.0,0 -102825821,"Poker Night at the Inventory",play,0.4,0 -102825821,"Dead Pixels",purchase,1.0,0 -102825821,"Dead Pixels",play,0.3,0 -102825821,"Loadout",purchase,1.0,0 -102825821,"Loadout",play,0.3,0 -102825821,"Particula",purchase,1.0,0 -102825821,"Particula",play,0.3,0 -102825821,"Absolute Drift",purchase,1.0,0 -102825821,"Absolute Drift",play,0.3,0 -102825821,"Mini Ninjas",purchase,1.0,0 -102825821,"Mini Ninjas",play,0.3,0 -102825821,"FORCED",purchase,1.0,0 -102825821,"FORCED",play,0.3,0 -102825821,"Caster",purchase,1.0,0 -102825821,"Caster",play,0.2,0 -102825821,"Metro 2033 Redux",purchase,1.0,0 -102825821,"Metro 2033 Redux",play,0.2,0 -102825821,"Bus Driver",purchase,1.0,0 -102825821,"Bus Driver",play,0.2,0 -102825821,"Lego Star Wars Saga",purchase,1.0,0 -102825821,"Lego Star Wars Saga",play,0.2,0 -102825821,"The Binding of Isaac",purchase,1.0,0 -102825821,"The Binding of Isaac",play,0.2,0 -102825821,"Shower With Your Dad Simulator 2015 Do You Still Shower With Your Dad",purchase,1.0,0 -102825821,"Shower With Your Dad Simulator 2015 Do You Still Shower With Your Dad",play,0.2,0 -102825821,"No More Room in Hell",purchase,1.0,0 -102825821,"No More Room in Hell",play,0.2,0 -102825821,"Saints Row 2",purchase,1.0,0 -102825821,"Saints Row 2",play,0.1,0 -102825821,"The Expendabros",purchase,1.0,0 -102825821,"The Expendabros",play,0.1,0 -102825821,"You Have to Win the Game",purchase,1.0,0 -102825821,"Unturned",purchase,1.0,0 -102825821,"Double Action Boogaloo",purchase,1.0,0 -102825821,"Overture",purchase,1.0,0 -102825821,"Stealth Inc 2",purchase,1.0,0 -102825821,"12 Labours of Hercules III Girl Power",purchase,1.0,0 -102825821,"Anoxemia",purchase,1.0,0 -102825821,"Blood of Old",purchase,1.0,0 -102825821,"Bloop",purchase,1.0,0 -102825821,"Burgers",purchase,1.0,0 -102825821,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -102825821,"Commander Conquest of the Americas Gold",purchase,1.0,0 -102825821,"Contraption Maker",purchase,1.0,0 -102825821,"Crab Cakes Rescue",purchase,1.0,0 -102825821,"Dead Island Epidemic",purchase,1.0,0 -102825821,"Dream Of Mirror Online",purchase,1.0,0 -102825821,"E.Y.E Divine Cybermancy",purchase,1.0,0 -102825821,"Earth 2150 The Moon Project",purchase,1.0,0 -102825821,"East India Company Gold",purchase,1.0,0 -102825821,"EDGE",purchase,1.0,0 -102825821,"Fistful of Frags",purchase,1.0,0 -102825821,"Garden Rescue",purchase,1.0,0 -102825821,"GAUGE",purchase,1.0,0 -102825821,"Glorkian Warrior The Trials Of Glork",purchase,1.0,0 -102825821,"Grand Theft Auto IV",purchase,1.0,0 -102825821,"Gravilon",purchase,1.0,0 -102825821,"GRID 2 GTR Racing Pack",purchase,1.0,0 -102825821,"Hostile Waters Antaeus Rising",purchase,1.0,0 -102825821,"Humanity Asset",purchase,1.0,0 -102825821,"Knights and Merchants",purchase,1.0,0 -102825821,"Max Payne 3 Season Pass",purchase,1.0,0 -102825821,"Metro Last Light Redux",purchase,1.0,0 -102825821,"Morphopolis",purchase,1.0,0 -102825821,"Mortal Online",purchase,1.0,0 -102825821,"Nation Red",purchase,1.0,0 -102825821,"Nux",purchase,1.0,0 -102825821,"Orborun",purchase,1.0,0 -102825821,"Out There Somewhere",purchase,1.0,0 -102825821,"Overcast - Walden and the Werewolf",purchase,1.0,0 -102825821,"PAYDAY 2",purchase,1.0,0 -102825821,"Pid ",purchase,1.0,0 -102825821,"Pirates of Black Cove Gold",purchase,1.0,0 -102825821,"Relic Hunters Zero",purchase,1.0,0 -102825821,"Robotex",purchase,1.0,0 -102825821,"Ruzh Delta Z",purchase,1.0,0 -102825821,"Saviors",purchase,1.0,0 -102825821,"South Park The Stick of Truth - Super Samurai Spaceman Pack",purchase,1.0,0 -102825821,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -102825821,"Steel & Steam Episode 1",purchase,1.0,0 -102825821,"TeraBlaster",purchase,1.0,0 -102825821,"The 39 Steps",purchase,1.0,0 -102825821,"The Howler",purchase,1.0,0 -102825821,"The Last Warlock",purchase,1.0,0 -102825821,"Tidalis",purchase,1.0,0 -102825821,"Tiki Man",purchase,1.0,0 -102825821,"Voxelized",purchase,1.0,0 -102825821,"Yet Another Zombie Defense",purchase,1.0,0 -218680215,"Counter-Strike Global Offensive",purchase,1.0,0 -218680215,"Counter-Strike Global Offensive",play,704.0,0 -218680215,"Clicker Heroes",purchase,1.0,0 -218680215,"Clicker Heroes",play,26.0,0 -218680215,"Dota 2",purchase,1.0,0 -218680215,"Dota 2",play,14.8,0 -218680215,"Orcs Must Die! 2",purchase,1.0,0 -218680215,"Orcs Must Die! 2",play,9.6,0 -218680215,"Grand Theft Auto V",purchase,1.0,0 -218680215,"Grand Theft Auto V",play,2.2,0 -218680215,"theHunter",purchase,1.0,0 -218680215,"theHunter",play,1.7,0 -218680215,"ARK Survival Evolved",purchase,1.0,0 -218680215,"ARK Survival Evolved",play,1.7,0 -218680215,"Warframe",purchase,1.0,0 -285380840,"Dota 2",purchase,1.0,0 -285380840,"Dota 2",play,33.0,0 -71943253,"Napoleon Total War",purchase,1.0,0 -71943253,"Napoleon Total War",play,36.0,0 -167106826,"POSTAL 2",purchase,1.0,0 -167106826,"POSTAL 2",play,6.2,0 -167106826,"Left 4 Dead 2",purchase,1.0,0 -167106826,"Left 4 Dead 2",play,6.0,0 -167106826,"Dota 2",purchase,1.0,0 -167106826,"Dota 2",play,5.4,0 -167106826,"Heroes & Generals",purchase,1.0,0 -142475478,"Cities Skylines",purchase,1.0,0 -142475478,"Cities Skylines",play,25.0,0 -142475478,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -142475478,"RollerCoaster Tycoon 3 Platinum!",play,0.9,0 -142475478,"Wargame European Escalation",purchase,1.0,0 -142475478,"Wargame European Escalation",play,0.8,0 -142475478,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -142475478,"Star Wars The Force Unleashed Ultimate Sith Edition",play,0.5,0 -142475478,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -142475478,"Star Wars Jedi Knight Jedi Academy",play,0.2,0 -142475478,"Star Wars Knights of the Old Republic",purchase,1.0,0 -142475478,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -154281477,"Team Fortress 2",purchase,1.0,0 -154281477,"Team Fortress 2",play,418.0,0 -239299518,"Trove",purchase,1.0,0 -239299518,"Trove",play,3.6,0 -239299518,"Survarium",purchase,1.0,0 -239299518,"Survarium",play,1.1,0 -239299518,"Unturned",purchase,1.0,0 -239299518,"Robocraft",purchase,1.0,0 -239299518,"Firefall",purchase,1.0,0 -239299518,"Heroes of Scene",purchase,1.0,0 -239299518,"Loadout",purchase,1.0,0 -239299518,"Infinite Crisis",purchase,1.0,0 -239299518,"Nosgoth",purchase,1.0,0 -239299518,"Warframe",purchase,1.0,0 -239299518,"War Thunder",purchase,1.0,0 -86915561,"Team Fortress 2",purchase,1.0,0 -86915561,"Team Fortress 2",play,17.6,0 -150882304,"Sid Meier's Civilization V",purchase,1.0,0 -150882304,"Sid Meier's Civilization V",play,525.0,0 -150882304,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -150882304,"Sid Meier's Civilization IV Beyond the Sword",play,211.0,0 -150882304,"Don't Starve",purchase,1.0,0 -150882304,"Don't Starve",play,8.2,0 -150882304,"Scribblenauts Unlimited",purchase,1.0,0 -150882304,"Scribblenauts Unlimited",play,8.0,0 -150882304,"Don't Starve Together Beta",purchase,1.0,0 -150882304,"Don't Starve Together Beta",play,7.2,0 -150882304,"Star Wars Knights of the Old Republic",purchase,1.0,0 -150882304,"Star Wars Knights of the Old Republic",play,1.2,0 -150882304,"Incredipede",purchase,1.0,0 -150882304,"Incredipede",play,0.7,0 -150882304,"Eldevin",purchase,1.0,0 -150882304,"Eldevin",play,0.5,0 -150882304,"Terraria",purchase,1.0,0 -150882304,"Terraria",play,0.4,0 -150882304,"Crayon Physics Deluxe",purchase,1.0,0 -150882304,"Crayon Physics Deluxe",play,0.4,0 -150882304,"AirMech",purchase,1.0,0 -150882304,"Analogue A Hate Story",purchase,1.0,0 -150882304,"Anodyne",purchase,1.0,0 -150882304,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -150882304,"Batman Arkham City GOTY",purchase,1.0,0 -150882304,"Europa Universalis III",purchase,1.0,0 -150882304,"F.E.A.R.",purchase,1.0,0 -150882304,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -150882304,"F.E.A.R. 3",purchase,1.0,0 -150882304,"F.E.A.R. Extraction Point",purchase,1.0,0 -150882304,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -150882304,"Floating Point",purchase,1.0,0 -150882304,"FLY'N",purchase,1.0,0 -150882304,"Frozen Synapse",purchase,1.0,0 -150882304,"Greed Corp",purchase,1.0,0 -150882304,"Long Live The Queen",purchase,1.0,0 -150882304,"Mortal Kombat Kollection",purchase,1.0,0 -150882304,"NEO Scavenger",purchase,1.0,0 -150882304,"Offspring Fling!",purchase,1.0,0 -150882304,"Quake Live",purchase,1.0,0 -150882304,"Saira",purchase,1.0,0 -150882304,"Sid Meier's Civilization III Complete",purchase,1.0,0 -150882304,"Sid Meier's Civilization IV",purchase,1.0,0 -150882304,"Sid Meier's Civilization IV",purchase,1.0,0 -150882304,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -150882304,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -150882304,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -150882304,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -150882304,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -150882304,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -150882304,"Sigils of Elohim",purchase,1.0,0 -150882304,"Sniper Elite V2",purchase,1.0,0 -150882304,"SolForge",purchase,1.0,0 -150882304,"SpaceChem",purchase,1.0,0 -150882304,"Super Crate Box",purchase,1.0,0 -150882304,"The Dig",purchase,1.0,0 -150882304,"The Expendabros",purchase,1.0,0 -150882304,"Ticket to Ride",purchase,1.0,0 -150882304,"Ticket to Ride - USA 1910",purchase,1.0,0 -150882304,"TRAUMA",purchase,1.0,0 -150882304,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -150882304,"Unturned",purchase,1.0,0 -150882304,"Uplink",purchase,1.0,0 -150882304,"You Have to Win the Game",purchase,1.0,0 -277679482,"Fallout New Vegas",purchase,1.0,0 -277679482,"Fallout New Vegas",play,4.6,0 -277679482,"Deus Ex Human Revolution",purchase,1.0,0 -277679482,"Deus Ex Human Revolution",play,1.9,0 -202616779,"Robocraft",purchase,1.0,0 -202616779,"Unturned",purchase,1.0,0 -160264413,"Sid Meier's Civilization V",purchase,1.0,0 -160264413,"Sid Meier's Civilization V",play,286.0,0 -98312003,"Counter-Strike Source",purchase,1.0,0 -98312003,"Counter-Strike Source",play,424.0,0 -98312003,"Counter-Strike Global Offensive",purchase,1.0,0 -98312003,"Counter-Strike Global Offensive",play,245.0,0 -98312003,"Torchlight II",purchase,1.0,0 -98312003,"Torchlight II",play,114.0,0 -98312003,"Rise of Nations Extended Edition",purchase,1.0,0 -98312003,"Rise of Nations Extended Edition",play,15.2,0 -98312003,"Bejeweled 3",purchase,1.0,0 -98312003,"Bejeweled 3",play,8.7,0 -98312003,"Half-Life Source",purchase,1.0,0 -98312003,"Half-Life Source",play,7.6,0 -98312003,"Deus Ex Human Revolution",purchase,1.0,0 -98312003,"Deus Ex Human Revolution",play,3.6,0 -98312003,"Counter-Strike",purchase,1.0,0 -98312003,"Counter-Strike",play,3.4,0 -98312003,"BioShock",purchase,1.0,0 -98312003,"BioShock",play,2.1,0 -98312003,"Portal 2",purchase,1.0,0 -98312003,"Portal 2",play,0.8,0 -98312003,"BioShock 2",purchase,1.0,0 -98312003,"BioShock Infinite",purchase,1.0,0 -98312003,"Counter-Strike Condition Zero",purchase,1.0,0 -98312003,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -98312003,"Day of Defeat",purchase,1.0,0 -98312003,"Day of Defeat Source",purchase,1.0,0 -98312003,"Deathmatch Classic",purchase,1.0,0 -98312003,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -98312003,"Half-Life",purchase,1.0,0 -98312003,"Half-Life 2",purchase,1.0,0 -98312003,"Half-Life 2 Deathmatch",purchase,1.0,0 -98312003,"Half-Life 2 Episode One",purchase,1.0,0 -98312003,"Half-Life 2 Episode Two",purchase,1.0,0 -98312003,"Half-Life 2 Lost Coast",purchase,1.0,0 -98312003,"Half-Life Blue Shift",purchase,1.0,0 -98312003,"Half-Life Opposing Force",purchase,1.0,0 -98312003,"Half-Life Deathmatch Source",purchase,1.0,0 -98312003,"Left 4 Dead",purchase,1.0,0 -98312003,"Left 4 Dead 2",purchase,1.0,0 -98312003,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -98312003,"Portal",purchase,1.0,0 -98312003,"Ricochet",purchase,1.0,0 -98312003,"Team Fortress Classic",purchase,1.0,0 -141693292,"Dota 2",purchase,1.0,0 -141693292,"Dota 2",play,2.8,0 -161444156,"Dota 2",purchase,1.0,0 -161444156,"Dota 2",play,2865.0,0 -161444156,"Counter-Strike Global Offensive",purchase,1.0,0 -161444156,"Counter-Strike Global Offensive",play,22.0,0 -161444156,"GunZ 2 The Second Duel",purchase,1.0,0 -161444156,"GunZ 2 The Second Duel",play,4.9,0 -161444156,"APB Reloaded",purchase,1.0,0 -239791382,"TERA",purchase,1.0,0 -54194546,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -54194546,"METAL GEAR SOLID V THE PHANTOM PAIN",play,99.0,0 -54194546,"DARK SOULS II",purchase,1.0,0 -54194546,"DARK SOULS II",play,83.0,0 -54194546,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -54194546,"DARK SOULS II Scholar of the First Sin",play,48.0,0 -54194546,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -54194546,"METAL GEAR SOLID V GROUND ZEROES",play,19.5,0 -54194546,"Alien Isolation",purchase,1.0,0 -54194546,"Alien Isolation",play,18.4,0 -54194546,"La-Mulana",purchase,1.0,0 -54194546,"La-Mulana",play,12.5,0 -54194546,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -54194546,"Sins of a Solar Empire Rebellion",play,9.8,0 -54194546,"The Legend of Heroes Trails in the Sky",purchase,1.0,0 -54194546,"The Legend of Heroes Trails in the Sky",play,9.5,0 -54194546,"Mass Effect",purchase,1.0,0 -54194546,"Mass Effect",play,9.0,0 -54194546,"Endless Legend",purchase,1.0,0 -54194546,"Endless Legend",play,8.3,0 -54194546,"Terraria",purchase,1.0,0 -54194546,"Terraria",play,4.3,0 -54194546,"Sid Meier's Civilization V",purchase,1.0,0 -54194546,"Sid Meier's Civilization V",play,3.1,0 -54194546,"The Vanishing of Ethan Carter",purchase,1.0,0 -54194546,"The Vanishing of Ethan Carter",play,3.1,0 -54194546,"Xeodrifter",purchase,1.0,0 -54194546,"Xeodrifter",play,2.9,0 -54194546,"The Binding of Isaac Rebirth",purchase,1.0,0 -54194546,"The Binding of Isaac Rebirth",play,2.4,0 -54194546,"Amnesia The Dark Descent",purchase,1.0,0 -54194546,"Amnesia The Dark Descent",play,1.5,0 -54194546,"Ikaruga",purchase,1.0,0 -54194546,"Ikaruga",play,0.9,0 -54194546,"Super Meat Boy",purchase,1.0,0 -54194546,"Super Meat Boy",play,0.7,0 -54194546,"Astebreed",purchase,1.0,0 -54194546,"Astebreed",play,0.6,0 -54194546,"Torchlight",purchase,1.0,0 -54194546,"Torchlight",play,0.4,0 -54194546,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -54194546,"Dark Souls Prepare to Die Edition",play,0.3,0 -54194546,"ARK Survival Evolved",purchase,1.0,0 -54194546,"ARK Survival Evolved",play,0.3,0 -54194546,"XCOM Enemy Unknown",purchase,1.0,0 -54194546,"XCOM Enemy Unknown",play,0.3,0 -54194546,"Sins of a Solar Empire Trinity",purchase,1.0,0 -54194546,"Sins of a Solar Empire Trinity",play,0.2,0 -54194546,"Psychonauts",purchase,1.0,0 -54194546,"Psychonauts",play,0.1,0 -54194546,"FTL Faster Than Light",purchase,1.0,0 -54194546,"Bastion",purchase,1.0,0 -54194546,"Braid",purchase,1.0,0 -54194546,"DARK SOULS II - Season Pass",purchase,1.0,0 -54194546,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -54194546,"HAWKEN",purchase,1.0,0 -54194546,"LIMBO",purchase,1.0,0 -54194546,"Lone Survivor The Director's Cut",purchase,1.0,0 -54194546,"Psychonauts Demo",purchase,1.0,0 -54194546,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -54194546,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -54194546,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -54194546,"The Binding of Isaac",purchase,1.0,0 -54194546,"The Vanishing of Ethan Carter Redux",purchase,1.0,0 -54194546,"Undertale",purchase,1.0,0 -54194546,"VVVVVV",purchase,1.0,0 -148860618,"Dota 2",purchase,1.0,0 -148860618,"Dota 2",play,14.8,0 -200491490,"Dota 2",purchase,1.0,0 -200491490,"Dota 2",play,728.0,0 -200491490,"AdVenture Capitalist",purchase,1.0,0 -200491490,"Aura Kingdom",purchase,1.0,0 -200491490,"Clicker Heroes",purchase,1.0,0 -200491490,"Dead Island Epidemic",purchase,1.0,0 -200491490,"Dirty Bomb",purchase,1.0,0 -200491490,"FreeStyle2 Street Basketball",purchase,1.0,0 -200491490,"HAWKEN",purchase,1.0,0 -200491490,"Might & Magic Duel of Champions",purchase,1.0,0 -200491490,"Spiral Knights",purchase,1.0,0 -200491490,"WAKFU",purchase,1.0,0 -200491490,"War Thunder",purchase,1.0,0 -276137458,"Unturned",purchase,1.0,0 -199899325,"Unturned",purchase,1.0,0 -199899325,"Unturned",play,51.0,0 -199899325,"Brick-Force",purchase,1.0,0 -199899325,"Brick-Force",play,0.2,0 -199899325,"BLOCKADE 3D",purchase,1.0,0 -160427210,"Counter-Strike Global Offensive",purchase,1.0,0 -160427210,"Counter-Strike Global Offensive",play,2162.0,0 -160427210,"Rocket League",purchase,1.0,0 -160427210,"Rocket League",play,172.0,0 -160427210,"Garry's Mod",purchase,1.0,0 -160427210,"Garry's Mod",play,134.0,0 -160427210,"Clicker Heroes",purchase,1.0,0 -160427210,"Clicker Heroes",play,88.0,0 -160427210,"AdVenture Capitalist",purchase,1.0,0 -160427210,"AdVenture Capitalist",play,75.0,0 -160427210,"Robocraft",purchase,1.0,0 -160427210,"Robocraft",play,55.0,0 -160427210,"Grand Theft Auto V",purchase,1.0,0 -160427210,"Grand Theft Auto V",play,44.0,0 -160427210,"Borderlands 2",purchase,1.0,0 -160427210,"Borderlands 2",play,44.0,0 -160427210,"Borderlands The Pre-Sequel",purchase,1.0,0 -160427210,"Borderlands The Pre-Sequel",play,14.7,0 -160427210,"Call of Duty Ghosts",purchase,1.0,0 -160427210,"Call of Duty Ghosts",play,10.7,0 -160427210,"AirMech",purchase,1.0,0 -160427210,"AirMech",play,7.0,0 -160427210,"Far Cry 4",purchase,1.0,0 -160427210,"Far Cry 4",play,4.7,0 -160427210,"DayZ",purchase,1.0,0 -160427210,"DayZ",play,4.1,0 -160427210,"WWE 2K15",purchase,1.0,0 -160427210,"WWE 2K15",play,2.7,0 -160427210,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -160427210,"Call of Duty Ghosts - Multiplayer",play,1.7,0 -160427210,"Team Fortress 2",purchase,1.0,0 -160427210,"Team Fortress 2",play,1.6,0 -160427210,"Call of Duty Black Ops II",purchase,1.0,0 -160427210,"Call of Duty Black Ops II",play,1.4,0 -160427210,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -160427210,"Call of Duty Black Ops II - Multiplayer",play,1.1,0 -160427210,"Dirty Bomb",purchase,1.0,0 -160427210,"Dirty Bomb",play,0.9,0 -160427210,"The Mighty Quest For Epic Loot",purchase,1.0,0 -160427210,"The Mighty Quest For Epic Loot",play,0.6,0 -160427210,"Dino D-Day",purchase,1.0,0 -160427210,"Dino D-Day",play,0.4,0 -160427210,"The Crew",purchase,1.0,0 -160427210,"The Crew",play,0.4,0 -160427210,"Poker Night 2",purchase,1.0,0 -160427210,"Poker Night 2",play,0.2,0 -160427210,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -160427210,"Call of Duty World at War",purchase,1.0,0 -242815838,"Euro Truck Simulator 2",purchase,1.0,0 -242815838,"Euro Truck Simulator 2",play,73.0,0 -242815838,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -248472567,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -167360036,"Dota 2",purchase,1.0,0 -167360036,"Dota 2",play,820.0,0 -167360036,"Counter-Strike Global Offensive",purchase,1.0,0 -167360036,"Counter-Strike Global Offensive",play,8.1,0 -140672677,"Team Fortress 2",purchase,1.0,0 -140672677,"Team Fortress 2",play,0.1,0 -204888877,"Call of Duty Advanced Warfare",purchase,1.0,0 -204888877,"Call of Duty Advanced Warfare",play,9.8,0 -204888877,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -204888877,"Call of Duty Advanced Warfare - Multiplayer",play,5.1,0 -283498338,"Team Fortress 2",purchase,1.0,0 -283498338,"Team Fortress 2",play,0.4,0 -283498338,"BLOCKADE 3D",purchase,1.0,0 -283498338,"No More Room in Hell",purchase,1.0,0 -283498338,"Unturned",purchase,1.0,0 -208491021,"Counter-Strike Global Offensive",purchase,1.0,0 -208491021,"Counter-Strike Global Offensive",play,284.0,0 -208491021,"Dota 2",purchase,1.0,0 -208491021,"Dota 2",play,283.0,0 -208491021,"Total War ROME II - Emperor Edition",purchase,1.0,0 -208491021,"Total War ROME II - Emperor Edition",play,22.0,0 -208491021,"Don't Starve Together Beta",purchase,1.0,0 -208491021,"Don't Starve Together Beta",play,5.2,0 -208491021,"Counter-Strike",purchase,1.0,0 -208491021,"Counter-Strike Condition Zero",purchase,1.0,0 -208491021,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -208491021,"Counter-Strike Source",purchase,1.0,0 -208491021,"Free to Play",purchase,1.0,0 -299776839,"Dota 2",purchase,1.0,0 -299776839,"Dota 2",play,9.0,0 -54739142,"Call of Duty Modern Warfare 2",purchase,1.0,0 -54739142,"Call of Duty Modern Warfare 2",play,4.2,0 -54739142,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -54739142,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.2,0 -54739142,"Empire Total War",purchase,1.0,0 -299489226,"Dota 2",purchase,1.0,0 -299489226,"Dota 2",play,1.1,0 -196237754,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -196237754,"Rising Storm/Red Orchestra 2 Multiplayer",play,0.8,0 -196237754,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -30988672,"Codename Gordon",purchase,1.0,0 -30988672,"Codename Gordon",play,0.4,0 -149053502,"Dota 2",purchase,1.0,0 -149053502,"Dota 2",play,1.4,0 -297517705,"Brawlhalla",purchase,1.0,0 -297517705,"Brawlhalla",play,15.0,0 -297517705,"Toribash",purchase,1.0,0 -297517705,"Toribash",play,4.6,0 -297517705,"Unturned",purchase,1.0,0 -297517705,"Unturned",play,3.7,0 -297517705,"The Mighty Quest For Epic Loot",purchase,1.0,0 -297517705,"The Mighty Quest For Epic Loot",play,0.2,0 -128964236,"Galaxy on Fire 2 Full HD",purchase,1.0,0 -128964236,"Galaxy on Fire 2 Full HD",play,22.0,0 -128964236,"X3 Albion Prelude",purchase,1.0,0 -128964236,"X3 Albion Prelude",play,21.0,0 -128964236,"Homefront",purchase,1.0,0 -128964236,"Homefront",play,4.7,0 -128964236,"X3 Terran Conflict",purchase,1.0,0 -128964236,"X3 Terran Conflict",play,0.9,0 -279734186,"Team Fortress 2",purchase,1.0,0 -279734186,"Team Fortress 2",play,0.4,0 -302553338,"Strife",purchase,1.0,0 -302553338,"Strife",play,2.5,0 -302553338,"Dota 2",purchase,1.0,0 -302553338,"Dota 2",play,0.9,0 -204495708,"Dota 2",purchase,1.0,0 -204495708,"Dota 2",play,11.1,0 -180534642,"Dota 2",purchase,1.0,0 -180534642,"Dota 2",play,1.4,0 -260320188,"Warface",purchase,1.0,0 -260320188,"Warface",play,70.0,0 -260320188,"Garry's Mod",purchase,1.0,0 -260320188,"Garry's Mod",play,22.0,0 -260320188,"PAYDAY 2",purchase,1.0,0 -260320188,"PAYDAY 2",play,16.2,0 -260320188,"Unturned",purchase,1.0,0 -260320188,"Unturned",play,14.3,0 -260320188,"The Forest",purchase,1.0,0 -260320188,"The Forest",play,8.7,0 -260320188,"Counter-Strike Global Offensive",purchase,1.0,0 -260320188,"Counter-Strike Global Offensive",play,6.7,0 -260320188,"Survarium",purchase,1.0,0 -260320188,"Survarium",play,3.8,0 -260320188,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -260320188,"S.K.I.L.L. - Special Force 2",play,3.8,0 -260320188,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -260320188,"A.V.A - Alliance of Valiant Arms",play,3.7,0 -260320188,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -260320188,"Tom Clancy's Ghost Recon Phantoms - EU",play,3.2,0 -260320188,"Dirty Bomb",purchase,1.0,0 -260320188,"Dirty Bomb",play,0.6,0 -260320188,"Hitman Contracts",purchase,1.0,0 -260320188,"Hitman Contracts",play,0.5,0 -260320188,"Tactical Intervention",purchase,1.0,0 -260320188,"Tactical Intervention",play,0.3,0 -260320188,"Codename CURE",purchase,1.0,0 -260320188,"Blacklight Retribution",purchase,1.0,0 -260320188,"Modular Combat",purchase,1.0,0 -237554603,"Dota 2",purchase,1.0,0 -237554603,"Dota 2",play,1.1,0 -196862501,"Dota 2",purchase,1.0,0 -196862501,"Dota 2",play,659.0,0 -196862501,"Clicker Heroes",purchase,1.0,0 -196862501,"Dirty Bomb",purchase,1.0,0 -196862501,"FreeStyle2 Street Basketball",purchase,1.0,0 -196862501,"GunZ 2 The Second Duel",purchase,1.0,0 -196862501,"Magic Duels",purchase,1.0,0 -196862501,"Marvel Heroes 2015",purchase,1.0,0 -196862501,"METAL SLUG DEFENSE",purchase,1.0,0 -196862501,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -196862501,"No More Room in Hell",purchase,1.0,0 -196862501,"Ragnarok Online 2",purchase,1.0,0 -196862501,"RIFT",purchase,1.0,0 -196862501,"Robocraft",purchase,1.0,0 -196862501,"TERA",purchase,1.0,0 -196862501,"theHunter",purchase,1.0,0 -196862501,"Trove",purchase,1.0,0 -196862501,"Warframe",purchase,1.0,0 -196862501,"War Thunder",purchase,1.0,0 -207270682,"Dota 2",purchase,1.0,0 -207270682,"Dota 2",play,1222.0,0 -207270682,"APB Reloaded",purchase,1.0,0 -147602462,"The Elder Scrolls V Skyrim",purchase,1.0,0 -147602462,"The Elder Scrolls V Skyrim",play,104.0,0 -147602462,"Two Worlds II",purchase,1.0,0 -147602462,"Two Worlds II",play,56.0,0 -147602462,"Tomb Raider",purchase,1.0,0 -147602462,"Tomb Raider",play,46.0,0 -147602462,"Risen 2 - Dark Waters",purchase,1.0,0 -147602462,"Risen 2 - Dark Waters",play,40.0,0 -147602462,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -147602462,"The Witcher 2 Assassins of Kings Enhanced Edition",play,38.0,0 -147602462,"The Musketeers Victoria's Quest",purchase,1.0,0 -147602462,"The Musketeers Victoria's Quest",play,36.0,0 -147602462,"Two Worlds Epic Edition",purchase,1.0,0 -147602462,"Two Worlds Epic Edition",play,31.0,0 -147602462,"Dungeon Siege III",purchase,1.0,0 -147602462,"Dungeon Siege III",play,27.0,0 -147602462,"LEGO Harry Potter Years 5-7",purchase,1.0,0 -147602462,"LEGO Harry Potter Years 5-7",play,26.0,0 -147602462,"LEGO The Hobbit",purchase,1.0,0 -147602462,"LEGO The Hobbit",play,19.7,0 -147602462,"Assassin's Creed III",purchase,1.0,0 -147602462,"Assassin's Creed III",play,19.5,0 -147602462,"Age of Empires III Complete Collection",purchase,1.0,0 -147602462,"Age of Empires III Complete Collection",play,18.6,0 -147602462,"SpellForce 2 - Faith in Destiny",purchase,1.0,0 -147602462,"SpellForce 2 - Faith in Destiny",play,18.3,0 -147602462,"Batman Arkham City GOTY",purchase,1.0,0 -147602462,"Batman Arkham City GOTY",play,15.9,0 -147602462,"12 Labours of Hercules II The Cretan Bull",purchase,1.0,0 -147602462,"12 Labours of Hercules II The Cretan Bull",play,14.7,0 -147602462,"Lara Croft and the Guardian of Light",purchase,1.0,0 -147602462,"Lara Croft and the Guardian of Light",play,13.6,0 -147602462,"Ballad of Solar",purchase,1.0,0 -147602462,"Ballad of Solar",play,10.1,0 -147602462,"Heroes of Hellas 3 Athens",purchase,1.0,0 -147602462,"Heroes of Hellas 3 Athens",play,9.9,0 -147602462,"Broken Sword 5 - the Serpent's Curse",purchase,1.0,0 -147602462,"Broken Sword 5 - the Serpent's Curse",play,8.3,0 -147602462,"Assassins Creed Chronicles China",purchase,1.0,0 -147602462,"Assassins Creed Chronicles China",play,6.6,0 -147602462,"Grim Legends The Forsaken Bride",purchase,1.0,0 -147602462,"Grim Legends The Forsaken Bride",play,6.3,0 -147602462,"Enigmatis 2 The Mists of Ravenwood",purchase,1.0,0 -147602462,"Enigmatis 2 The Mists of Ravenwood",play,5.9,0 -147602462,"Nightmares from the Deep 3 Davy Jones",purchase,1.0,0 -147602462,"Nightmares from the Deep 3 Davy Jones",play,5.9,0 -147602462,"Melissa K. and the Heart of Gold Collector's Edition",purchase,1.0,0 -147602462,"Melissa K. and the Heart of Gold Collector's Edition",play,5.3,0 -147602462,"Kingdom Tales 2",purchase,1.0,0 -147602462,"Kingdom Tales 2",play,5.3,0 -147602462,"Portal of Evil Stolen Runes Collector's Edition",purchase,1.0,0 -147602462,"Portal of Evil Stolen Runes Collector's Edition",play,5.1,0 -147602462,"Nightmares from the Deep 2 The Siren`s Call",purchase,1.0,0 -147602462,"Nightmares from the Deep 2 The Siren`s Call",play,5.0,0 -147602462,"Time Mysteries 2 The Ancient Spectres",purchase,1.0,0 -147602462,"Time Mysteries 2 The Ancient Spectres",play,4.7,0 -147602462,"Fall of the New Age Premium Edition",purchase,1.0,0 -147602462,"Fall of the New Age Premium Edition",play,4.6,0 -147602462,"Grim Legends 2 Song of the Dark Swan",purchase,1.0,0 -147602462,"Grim Legends 2 Song of the Dark Swan",play,4.4,0 -147602462,"Time Mysteries 3 The Final Enigma",purchase,1.0,0 -147602462,"Time Mysteries 3 The Final Enigma",play,4.1,0 -147602462,"The Beast of Lycan Isle - Collector's Edition",purchase,1.0,0 -147602462,"The Beast of Lycan Isle - Collector's Edition",play,4.0,0 -147602462,"The Room",purchase,1.0,0 -147602462,"The Room",play,3.9,0 -147602462,"Mountain Crime Requital",purchase,1.0,0 -147602462,"Mountain Crime Requital",play,3.8,0 -147602462,"Weather Lord The Successor's Path",purchase,1.0,0 -147602462,"Weather Lord The Successor's Path",play,3.8,0 -147602462,"Alchemy Mysteries Prague Legends",purchase,1.0,0 -147602462,"Alchemy Mysteries Prague Legends",play,3.8,0 -147602462,"Demon Hunter Chronicles from Beyond",purchase,1.0,0 -147602462,"Demon Hunter Chronicles from Beyond",play,3.7,0 -147602462,"Risen 3 - Titan Lords",purchase,1.0,0 -147602462,"Risen 3 - Titan Lords",play,3.2,0 -147602462,"Dreamfall Chapters",purchase,1.0,0 -147602462,"Dreamfall Chapters",play,3.0,0 -147602462,"Thief",purchase,1.0,0 -147602462,"Thief",play,3.0,0 -147602462,"Clockwork Tales Of Glass and Ink",purchase,1.0,0 -147602462,"Clockwork Tales Of Glass and Ink",play,2.9,0 -147602462,"Ghost Encounters Deadwood - Collector's Edition",purchase,1.0,0 -147602462,"Ghost Encounters Deadwood - Collector's Edition",play,2.7,0 -147602462,"Alex Hunter - Lord of the Mind",purchase,1.0,0 -147602462,"Alex Hunter - Lord of the Mind",play,2.7,0 -147602462,"Left in the Dark No One on Board",purchase,1.0,0 -147602462,"Left in the Dark No One on Board",play,2.4,0 -147602462,"Frankenstein Master of Death",purchase,1.0,0 -147602462,"Frankenstein Master of Death",play,2.4,0 -147602462,"Fairy Tale Mysteries The Puppet Thief Collector's Edition",purchase,1.0,0 -147602462,"Fairy Tale Mysteries The Puppet Thief Collector's Edition",play,2.2,0 -147602462,"Night Mysteries The Amphora Prisoner",purchase,1.0,0 -147602462,"Night Mysteries The Amphora Prisoner",play,1.8,0 -147602462,"Viking Brothers",purchase,1.0,0 -147602462,"Viking Brothers",play,1.8,0 -147602462,"Toki Tori 2+",purchase,1.0,0 -147602462,"Toki Tori 2+",play,1.6,0 -147602462,"Ice Age Continental Drift Arctic Games",purchase,1.0,0 -147602462,"Ice Age Continental Drift Arctic Games",play,1.4,0 -147602462,"Fable Anniversary",purchase,1.0,0 -147602462,"Fable Anniversary",play,1.4,0 -147602462,"Hitman Absolution",purchase,1.0,0 -147602462,"Hitman Absolution",play,1.3,0 -147602462,"Mystery of Neuschwanstein",purchase,1.0,0 -147602462,"Mystery of Neuschwanstein",play,1.2,0 -147602462,"3D Mini Golf",purchase,1.0,0 -147602462,"3D Mini Golf",play,1.0,0 -147602462,"The Treasures of Montezuma 4",purchase,1.0,0 -147602462,"The Treasures of Montezuma 4",play,0.9,0 -147602462,"Rescue Team 5",purchase,1.0,0 -147602462,"Rescue Team 5",play,0.8,0 -147602462,"Castle Never Judge a Book by its Cover",purchase,1.0,0 -147602462,"Castle Never Judge a Book by its Cover",play,0.8,0 -147602462,"Secret of the Magic Crystal",purchase,1.0,0 -147602462,"Secret of the Magic Crystal",play,0.7,0 -147602462,"Never Alone (Kisima Ingitchuna)",purchase,1.0,0 -147602462,"Never Alone (Kisima Ingitchuna)",play,0.7,0 -147602462,"The Clockwork Man",purchase,1.0,0 -147602462,"The Clockwork Man",play,0.7,0 -147602462,"Dark Arcana The Carnival",purchase,1.0,0 -147602462,"Dark Arcana The Carnival",play,0.7,0 -147602462,"The Good Life",purchase,1.0,0 -147602462,"The Good Life",play,0.6,0 -147602462,"15 Days",purchase,1.0,0 -147602462,"15 Days",play,0.5,0 -147602462,"9 Clues The Secret of Serpent Creek",purchase,1.0,0 -147602462,"9 Clues The Secret of Serpent Creek",play,0.3,0 -147602462,"Season Match 3 - Curse of the Witch Crow",purchase,1.0,0 -147602462,"Season Match 3 - Curse of the Witch Crow",play,0.3,0 -147602462,"Toki Tori",purchase,1.0,0 -147602462,"Toki Tori",play,0.3,0 -147602462,"Sonic Generations",purchase,1.0,0 -147602462,"Sonic Generations",play,0.3,0 -147602462,"The Egyptian Prophecy The Fate of Ramses",purchase,1.0,0 -147602462,"The Egyptian Prophecy The Fate of Ramses",play,0.3,0 -147602462,"Black Viper Sophia's Fate",purchase,1.0,0 -147602462,"Black Viper Sophia's Fate",play,0.2,0 -147602462,"Sinister City",purchase,1.0,0 -147602462,"Sinister City",play,0.1,0 -147602462,"SimCity 4 Deluxe",purchase,1.0,0 -147602462,"SimCity 4 Deluxe",play,0.1,0 -147602462,"Namariel Legends Iron Lord Premium Edition",purchase,1.0,0 -147602462,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -147602462,"Two Worlds II Castle Defense",purchase,1.0,0 -147602462,"Captain Morgane and the Golden Turtle",purchase,1.0,0 -147602462,"The Clockwork Man The Hidden World",purchase,1.0,0 -147602462,"Hitman Sniper Challenge",purchase,1.0,0 -147602462,"Questerium Sinister Trinity HD",purchase,1.0,0 -147602462,"Thief 2",purchase,1.0,0 -147602462,"Thief Deadly Shadows",purchase,1.0,0 -147602462,"Thief Gold",purchase,1.0,0 -147602462,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -147602462,"Batman Arkham Origins - Initiation",purchase,1.0,0 -147602462,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -147602462,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -147602462,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -147602462,"Batman Arkham Knight",purchase,1.0,0 -147602462,"Batman Arkham Origins",purchase,1.0,0 -147602462,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -147602462,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -147602462,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -147602462,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -147602462,"Thief - Ghost",purchase,1.0,0 -147602462,"Thief - Opportunist",purchase,1.0,0 -147602462,"Thief - Predator",purchase,1.0,0 -147602462,"Thief - The Bank Heist",purchase,1.0,0 -147602462,"Two Worlds 2 - Pirates of the Flying Fortress ",purchase,1.0,0 -76171050,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -76171050,"Call of Duty Modern Warfare 2 - Multiplayer",play,1103.0,0 -76171050,"Call of Duty Modern Warfare 2",purchase,1.0,0 -76171050,"Call of Duty Modern Warfare 2",play,19.6,0 -76171050,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -76171050,"Neverwinter",purchase,1.0,0 -76171050,"TERA",purchase,1.0,0 -76171050,"Uncharted Waters Online Gran Atlas",purchase,1.0,0 -76171050,"Warframe",purchase,1.0,0 -76171050,"War Thunder",purchase,1.0,0 -200471514,"Heroes & Generals",purchase,1.0,0 -200471514,"Heroes & Generals",play,1.2,0 -200471514,"Star Trek Online",purchase,1.0,0 -200471514,"Star Trek Online",play,0.2,0 -221083006,"Dota 2",purchase,1.0,0 -221083006,"Dota 2",play,1.3,0 -58439284,"Call of Duty Modern Warfare 2",purchase,1.0,0 -58439284,"Call of Duty Modern Warfare 2",play,55.0,0 -58439284,"Call of Duty Black Ops",purchase,1.0,0 -58439284,"Call of Duty Black Ops",play,17.1,0 -58439284,"Call of Duty Modern Warfare 3",purchase,1.0,0 -58439284,"Call of Duty Modern Warfare 3",play,14.7,0 -58439284,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -58439284,"Call of Duty Black Ops - Multiplayer",play,0.1,0 -58439284,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -58439284,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -206696458,"Dota 2",purchase,1.0,0 -206696458,"Dota 2",play,0.2,0 -137508279,"Team Fortress 2",purchase,1.0,0 -137508279,"Team Fortress 2",play,121.0,0 -137508279,"Garry's Mod",purchase,1.0,0 -137508279,"Garry's Mod",play,110.0,0 -137508279,"Dead Island",purchase,1.0,0 -137508279,"Dead Island",play,44.0,0 -137508279,"Assassin's Creed II",purchase,1.0,0 -137508279,"Assassin's Creed II",play,30.0,0 -137508279,"Hitman Absolution",purchase,1.0,0 -137508279,"Hitman Absolution",play,24.0,0 -137508279,"Saints Row The Third",purchase,1.0,0 -137508279,"Saints Row The Third",play,17.3,0 -137508279,"Half-Life 2",purchase,1.0,0 -137508279,"Half-Life 2",play,15.1,0 -137508279,"Synergy",purchase,1.0,0 -137508279,"Synergy",play,11.3,0 -137508279,"BioShock Infinite",purchase,1.0,0 -137508279,"BioShock Infinite",play,9.6,0 -137508279,"Far Cry 3",purchase,1.0,0 -137508279,"Far Cry 3",play,7.4,0 -137508279,"Portal 2",purchase,1.0,0 -137508279,"Portal 2",play,7.2,0 -137508279,"Zombie Panic Source",purchase,1.0,0 -137508279,"Zombie Panic Source",play,0.7,0 -137508279,"Ace of Spades",purchase,1.0,0 -137508279,"Ace of Spades",play,0.1,0 -137508279,"Half-Life 2 Lost Coast",purchase,1.0,0 -169277417,"Dota 2",purchase,1.0,0 -169277417,"Dota 2",play,260.0,0 -169277417,"BLOCKADE 3D",purchase,1.0,0 -169277417,"BLOCKADE 3D",play,1.5,0 -169277417,"Heroes & Generals",purchase,1.0,0 -169277417,"Heroes & Generals",play,0.9,0 -309038666,"Dota 2",purchase,1.0,0 -309038666,"Dota 2",play,2.3,0 -186597710,"Dota 2",purchase,1.0,0 -186597710,"Dota 2",play,1.9,0 -73141776,"Call of Duty Black Ops",purchase,1.0,0 -73141776,"Call of Duty Black Ops",play,0.8,0 -73141776,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -73141776,"Call of Duty Black Ops - Multiplayer",play,0.7,0 -90362252,"Team Fortress 2",purchase,1.0,0 -90362252,"Team Fortress 2",play,3.5,0 -52907921,"Counter-Strike Global Offensive",purchase,1.0,0 -52907921,"Counter-Strike Global Offensive",play,314.0,0 -52907921,"H1Z1",purchase,1.0,0 -52907921,"H1Z1",play,87.0,0 -52907921,"Dungeon Defenders",purchase,1.0,0 -52907921,"Dungeon Defenders",play,87.0,0 -52907921,"Team Fortress 2",purchase,1.0,0 -52907921,"Team Fortress 2",play,81.0,0 -52907921,"Counter-Strike Source",purchase,1.0,0 -52907921,"Counter-Strike Source",play,72.0,0 -52907921,"Terraria",purchase,1.0,0 -52907921,"Terraria",play,69.0,0 -52907921,"Battlefield Bad Company 2",purchase,1.0,0 -52907921,"Battlefield Bad Company 2",play,43.0,0 -52907921,"Assassin's Creed II",purchase,1.0,0 -52907921,"Assassin's Creed II",play,39.0,0 -52907921,"Garry's Mod",purchase,1.0,0 -52907921,"Garry's Mod",play,30.0,0 -52907921,"Dota 2",purchase,1.0,0 -52907921,"Dota 2",play,29.0,0 -52907921,"Magic 2014 ",purchase,1.0,0 -52907921,"Magic 2014 ",play,25.0,0 -52907921,"The Elder Scrolls V Skyrim",purchase,1.0,0 -52907921,"The Elder Scrolls V Skyrim",play,23.0,0 -52907921,"Arma 3",purchase,1.0,0 -52907921,"Arma 3",play,21.0,0 -52907921,"SpeedRunners",purchase,1.0,0 -52907921,"SpeedRunners",play,17.1,0 -52907921,"Magicka",purchase,1.0,0 -52907921,"Magicka",play,15.4,0 -52907921,"DayZ",purchase,1.0,0 -52907921,"DayZ",play,14.8,0 -52907921,"Orcs Must Die!",purchase,1.0,0 -52907921,"Orcs Must Die!",play,12.2,0 -52907921,"Torchlight II",purchase,1.0,0 -52907921,"Torchlight II",play,10.8,0 -52907921,"The Stomping Land",purchase,1.0,0 -52907921,"The Stomping Land",play,8.5,0 -52907921,"Left 4 Dead 2",purchase,1.0,0 -52907921,"Left 4 Dead 2",play,5.3,0 -52907921,"Super Hexagon",purchase,1.0,0 -52907921,"Super Hexagon",play,4.2,0 -52907921,"Day of Defeat Source",purchase,1.0,0 -52907921,"Day of Defeat Source",play,3.3,0 -52907921,"Neverwinter",purchase,1.0,0 -52907921,"Neverwinter",play,2.2,0 -52907921,"Landmark",purchase,1.0,0 -52907921,"Landmark",play,2.1,0 -52907921,"Hero Siege",purchase,1.0,0 -52907921,"Hero Siege",play,2.1,0 -52907921,"Starbound",purchase,1.0,0 -52907921,"Starbound",play,1.9,0 -52907921,"Half-Life 2 Deathmatch",purchase,1.0,0 -52907921,"Half-Life 2 Deathmatch",play,1.7,0 -52907921,"Orcs Must Die! 2",purchase,1.0,0 -52907921,"Orcs Must Die! 2",play,1.4,0 -52907921,"Lichdom Battlemage",purchase,1.0,0 -52907921,"Lichdom Battlemage",play,1.3,0 -52907921,"FreeStyle2 Street Basketball",purchase,1.0,0 -52907921,"FreeStyle2 Street Basketball",play,0.9,0 -52907921,"Rust",purchase,1.0,0 -52907921,"Rust",play,0.9,0 -52907921,"Magicka 2",purchase,1.0,0 -52907921,"Magicka 2",play,0.8,0 -52907921,"Dungeon Defenders II",purchase,1.0,0 -52907921,"Dungeon Defenders II",play,0.6,0 -52907921,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -52907921,"Dragon Age Origins - Ultimate Edition",play,0.5,0 -52907921,"Aerena",purchase,1.0,0 -52907921,"Arma 3 Zeus",purchase,1.0,0 -52907921,"H1Z1 Test Server",purchase,1.0,0 -52907921,"Half-Life 2 Lost Coast",purchase,1.0,0 -52907921,"Hero Siege - The Depths of Hell (Collector's Edition)",purchase,1.0,0 -52907921,"Magicka Vietnam",purchase,1.0,0 -52907921,"Magicka Wizard's Survival Kit",purchase,1.0,0 -52907921,"Starbound - Unstable",purchase,1.0,0 -52907921,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -52907921,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -52907921,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -52907921,"War Thunder",purchase,1.0,0 -178269176,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -178269176,"Call of Duty Ghosts - Multiplayer",play,39.0,0 -178269176,"Call of Duty Ghosts",purchase,1.0,0 -178269176,"Call of Duty Ghosts",play,6.3,0 -171932001,"Team Fortress 2",purchase,1.0,0 -171932001,"Team Fortress 2",play,141.0,0 -152082114,"Dota 2",purchase,1.0,0 -152082114,"Dota 2",play,2.8,0 -164699741,"Dota 2",purchase,1.0,0 -164699741,"Dota 2",play,9.2,0 -158211774,"Sid Meier's Civilization V",purchase,1.0,0 -158211774,"Sid Meier's Civilization V",play,120.0,0 -201081230,"Unturned",purchase,1.0,0 -201081230,"Unturned",play,17.2,0 -201081230,"Tactical Intervention",purchase,1.0,0 -201081230,"Warframe",purchase,1.0,0 -201081230,"Wizardry Online",purchase,1.0,0 -146813551,"Team Fortress 2",purchase,1.0,0 -146813551,"Team Fortress 2",play,0.6,0 -103574570,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -103574570,"Call of Duty Black Ops - Multiplayer",play,31.0,0 -103574570,"Left 4 Dead 2",purchase,1.0,0 -103574570,"Left 4 Dead 2",play,0.1,0 -103574570,"Call of Duty Black Ops",purchase,1.0,0 -101315169,"Star Wars - Battlefront II",purchase,1.0,0 -101315169,"Star Wars - Battlefront II",play,3.7,0 -179001580,"Dota 2",purchase,1.0,0 -179001580,"Dota 2",play,1243.0,0 -179001580,"Loadout",purchase,1.0,0 -179001580,"Loadout",play,1.1,0 -56790646,"Call of Duty Modern Warfare 2",purchase,1.0,0 -56790646,"Call of Duty Modern Warfare 2",play,3.1,0 -56790646,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -299440710,"Archeblade",purchase,1.0,0 -299440710,"Archeblade",play,3.2,0 -266829332,"Star Wars Knights of the Old Republic",purchase,1.0,0 -266829332,"Star Wars Knights of the Old Republic",play,20.0,0 -266829332,"Star Wars Empire at War Gold",purchase,1.0,0 -266829332,"Star Wars Empire at War Gold",play,8.3,0 -266829332,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -266829332,"Star Wars The Force Unleashed Ultimate Sith Edition",play,1.3,0 -266829332,"Star Wars - Battlefront II",purchase,1.0,0 -266829332,"Star Wars - Battlefront II",play,0.6,0 -266829332,"Star Wars Dark Forces",purchase,1.0,0 -266829332,"Star Wars Dark Forces",play,0.4,0 -266829332,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -266829332,"Star Wars - Jedi Knight II Jedi Outcast",play,0.4,0 -266829332,"Star Wars Starfighter",purchase,1.0,0 -266829332,"Star Wars Starfighter",play,0.3,0 -266829332,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -266829332,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -266829332,"Star Wars The Force Unleashed II",purchase,1.0,0 -266829332,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -266829332,"Star Wars Republic Commando",purchase,1.0,0 -266829332,"Star Wars The Clone Wars Republic Heroes",purchase,1.0,0 -266829332,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -58768356,"Team Fortress 2",purchase,1.0,0 -58768356,"Team Fortress 2",play,119.0,0 -58768356,"Total War SHOGUN 2",purchase,1.0,0 -58768356,"Total War SHOGUN 2",play,119.0,0 -58768356,"Rome Total War",purchase,1.0,0 -58768356,"Rome Total War",play,107.0,0 -58768356,"Portal 2",purchase,1.0,0 -58768356,"Portal 2",play,74.0,0 -58768356,"Sid Meier's Civilization V",purchase,1.0,0 -58768356,"Sid Meier's Civilization V",play,53.0,0 -58768356,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -58768356,"Fallout 3 - Game of the Year Edition",play,44.0,0 -58768356,"Medieval II Total War",purchase,1.0,0 -58768356,"Medieval II Total War",play,43.0,0 -58768356,"Magic 2014 ",purchase,1.0,0 -58768356,"Magic 2014 ",play,36.0,0 -58768356,"Orcs Must Die! 2",purchase,1.0,0 -58768356,"Orcs Must Die! 2",play,27.0,0 -58768356,"Portal",purchase,1.0,0 -58768356,"Portal",play,16.3,0 -58768356,"Magic The Gathering - Duels of the Planeswalkers",purchase,1.0,0 -58768356,"Magic The Gathering - Duels of the Planeswalkers",play,12.1,0 -58768356,"Magic Duels",purchase,1.0,0 -58768356,"Magic Duels",play,11.0,0 -58768356,"Total War ROME II - Emperor Edition",purchase,1.0,0 -58768356,"Total War ROME II - Emperor Edition",play,10.1,0 -58768356,"Amnesia The Dark Descent",purchase,1.0,0 -58768356,"Amnesia The Dark Descent",play,9.5,0 -58768356,"LIMBO",purchase,1.0,0 -58768356,"LIMBO",play,8.5,0 -58768356,"Puzzle Dimension",purchase,1.0,0 -58768356,"Puzzle Dimension",play,5.8,0 -58768356,"Dota 2",purchase,1.0,0 -58768356,"Dota 2",play,4.3,0 -58768356,"Cogs",purchase,1.0,0 -58768356,"Cogs",play,2.6,0 -58768356,"Shatter",purchase,1.0,0 -58768356,"Shatter",play,1.8,0 -58768356,"Droplitz",purchase,1.0,0 -58768356,"Droplitz",play,0.9,0 -58768356,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -58768356,"Superbrothers Sword & Sworcery EP",play,0.2,0 -58768356,"PC Gamer",purchase,1.0,0 -58768356,"PC Gamer",play,0.2,0 -58768356,"Tidalis",purchase,1.0,0 -58768356,"Tidalis",play,0.1,0 -58768356,"Psychonauts",purchase,1.0,0 -58768356,"Psychonauts",play,0.1,0 -58768356,"Psychonauts Demo",purchase,1.0,0 -58768356,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -240477898,"Randal's Monday",purchase,1.0,0 -240477898,"Randal's Monday",play,4.4,0 -240477898,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -240477898,"Plants vs. Zombies Game of the Year",play,1.6,0 -251706843,"Euro Truck Simulator 2",purchase,1.0,0 -251706843,"Euro Truck Simulator 2",play,92.0,0 -251706843,"Battlefield Bad Company 2",purchase,1.0,0 -251706843,"Battlefield Bad Company 2",play,54.0,0 -251706843,"TERA",purchase,1.0,0 -251706843,"TERA",play,10.3,0 -251706843,"World of Soccer online",purchase,1.0,0 -251706843,"World of Soccer online",play,0.4,0 -251706843,"Dirty Bomb",purchase,1.0,0 -251706843,"Dirty Bomb",play,0.2,0 -251706843,"WARMODE",purchase,1.0,0 -251706843,"WARMODE",play,0.2,0 -251706843,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -251706843,"Warframe",purchase,1.0,0 -130324181,"Dota 2",purchase,1.0,0 -130324181,"Dota 2",play,732.0,0 -130324181,"Counter-Strike Global Offensive",purchase,1.0,0 -130324181,"Counter-Strike Global Offensive",play,523.0,0 -130324181,"Dishonored (RU)",purchase,1.0,0 -130324181,"Dishonored (RU)",play,142.0,0 -130324181,"Rust",purchase,1.0,0 -130324181,"Rust",play,69.0,0 -130324181,"Dying Light",purchase,1.0,0 -130324181,"Dying Light",play,21.0,0 -130324181,"Garry's Mod",purchase,1.0,0 -130324181,"Garry's Mod",play,15.0,0 -130324181,"Thief",purchase,1.0,0 -130324181,"Thief",play,11.9,0 -130324181,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -130324181,"Tom Clancy's Splinter Cell Blacklist",play,9.8,0 -130324181,"The Showdown Effect",purchase,1.0,0 -130324181,"The Showdown Effect",play,7.8,0 -130324181,"War Thunder",purchase,1.0,0 -130324181,"War Thunder",play,7.0,0 -130324181,"Mortal Kombat Komplete Edition",purchase,1.0,0 -130324181,"Mortal Kombat Komplete Edition",play,6.1,0 -130324181,"PAYDAY 2",purchase,1.0,0 -130324181,"PAYDAY 2",play,6.0,0 -130324181,"Team Fortress 2",purchase,1.0,0 -130324181,"Team Fortress 2",play,3.6,0 -130324181,"Portal 2",purchase,1.0,0 -130324181,"Portal 2",play,3.3,0 -130324181,"Counter-Strike",purchase,1.0,0 -130324181,"Counter-Strike",play,2.8,0 -130324181,"DayZ",purchase,1.0,0 -130324181,"DayZ",play,2.5,0 -130324181,"Free to Play",purchase,1.0,0 -130324181,"Free to Play",play,1.5,0 -130324181,"Terraria",purchase,1.0,0 -130324181,"Terraria",play,1.1,0 -130324181,"Unturned",purchase,1.0,0 -130324181,"Unturned",play,1.1,0 -130324181,"Counter-Strike Condition Zero",purchase,1.0,0 -130324181,"Counter-Strike Condition Zero",play,0.2,0 -130324181,"Super Meat Boy",purchase,1.0,0 -130324181,"Super Meat Boy",play,0.2,0 -130324181,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -130324181,"Counter-Strike Condition Zero Deleted Scenes",play,0.2,0 -130324181,"Counter-Strike Source",purchase,1.0,0 -130324181,"Counter-Strike Source",play,0.1,0 -130324181,"AdVenture Capitalist",purchase,1.0,0 -130324181,"Assassins Creed Unity",purchase,1.0,0 -130324181,"Chivalry Medieval Warfare",purchase,1.0,0 -130324181,"Clicker Heroes",purchase,1.0,0 -130324181,"Counter-Strike Nexon Zombies",purchase,1.0,0 -130324181,"Fistful of Frags",purchase,1.0,0 -130324181,"Heroes & Generals",purchase,1.0,0 -130324181,"Nosgoth",purchase,1.0,0 -130324181,"Panzar",purchase,1.0,0 -130324181,"Patch testing for Chivalry",purchase,1.0,0 -130324181,"Realm of the Mad God",purchase,1.0,0 -130324181,"Robocraft",purchase,1.0,0 -130324181,"Tactical Intervention",purchase,1.0,0 -130324181,"theHunter",purchase,1.0,0 -130324181,"Thief - Opportunist",purchase,1.0,0 -130324181,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -130324181,"Toribash",purchase,1.0,0 -130324181,"Trove",purchase,1.0,0 -1851828,"Counter-Strike",purchase,1.0,0 -1851828,"Counter-Strike Condition Zero",purchase,1.0,0 -1851828,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -1851828,"Day of Defeat",purchase,1.0,0 -1851828,"Deathmatch Classic",purchase,1.0,0 -1851828,"Half-Life",purchase,1.0,0 -1851828,"Half-Life Blue Shift",purchase,1.0,0 -1851828,"Half-Life Opposing Force",purchase,1.0,0 -1851828,"Ricochet",purchase,1.0,0 -1851828,"Team Fortress Classic",purchase,1.0,0 -12610800,"Path of Exile",purchase,1.0,0 -12610800,"Path of Exile",play,329.0,0 -12610800,"Arma 3",purchase,1.0,0 -12610800,"Arma 3",play,325.0,0 -12610800,"PlanetSide 2",purchase,1.0,0 -12610800,"PlanetSide 2",play,190.0,0 -12610800,"Sid Meier's Civilization V",purchase,1.0,0 -12610800,"Sid Meier's Civilization V",play,178.0,0 -12610800,"DayZ",purchase,1.0,0 -12610800,"DayZ",play,171.0,0 -12610800,"RIFT",purchase,1.0,0 -12610800,"RIFT",play,159.0,0 -12610800,"Total War SHOGUN 2",purchase,1.0,0 -12610800,"Total War SHOGUN 2",play,125.0,0 -12610800,"ARK Survival Evolved",purchase,1.0,0 -12610800,"ARK Survival Evolved",play,122.0,0 -12610800,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -12610800,"Dark Souls Prepare to Die Edition",play,117.0,0 -12610800,"Arma 2 Operation Arrowhead",purchase,1.0,0 -12610800,"Arma 2 Operation Arrowhead",play,70.0,0 -12610800,"PAYDAY 2",purchase,1.0,0 -12610800,"PAYDAY 2",play,69.0,0 -12610800,"The Elder Scrolls V Skyrim",purchase,1.0,0 -12610800,"The Elder Scrolls V Skyrim",play,61.0,0 -12610800,"Terraria",purchase,1.0,0 -12610800,"Terraria",play,51.0,0 -12610800,"Total War ROME II - Emperor Edition",purchase,1.0,0 -12610800,"Total War ROME II - Emperor Edition",play,29.0,0 -12610800,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -12610800,"DARK SOULS II Scholar of the First Sin",play,28.0,0 -12610800,"Mount & Blade Warband",purchase,1.0,0 -12610800,"Mount & Blade Warband",play,28.0,0 -12610800,"Endless Legend",purchase,1.0,0 -12610800,"Endless Legend",play,26.0,0 -12610800,"Game Dev Tycoon",purchase,1.0,0 -12610800,"Game Dev Tycoon",play,24.0,0 -12610800,"Prison Architect",purchase,1.0,0 -12610800,"Prison Architect",play,24.0,0 -12610800,"The Witcher 3 Wild Hunt",purchase,1.0,0 -12610800,"The Witcher 3 Wild Hunt",play,23.0,0 -12610800,"DARK SOULS II",purchase,1.0,0 -12610800,"DARK SOULS II",play,22.0,0 -12610800,"Elite Dangerous",purchase,1.0,0 -12610800,"Elite Dangerous",play,21.0,0 -12610800,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -12610800,"Operation Flashpoint Dragon Rising",play,18.3,0 -12610800,"Age of Wonders III",purchase,1.0,0 -12610800,"Age of Wonders III",play,18.1,0 -12610800,"PAYDAY The Heist",purchase,1.0,0 -12610800,"PAYDAY The Heist",play,18.0,0 -12610800,"Crusader Kings II",purchase,1.0,0 -12610800,"Crusader Kings II",play,17.2,0 -12610800,"Hitman Absolution",purchase,1.0,0 -12610800,"Hitman Absolution",play,16.1,0 -12610800,"South Park The Stick of Truth",purchase,1.0,0 -12610800,"South Park The Stick of Truth",play,14.6,0 -12610800,"The Walking Dead",purchase,1.0,0 -12610800,"The Walking Dead",play,14.2,0 -12610800,"Insurgency",purchase,1.0,0 -12610800,"Insurgency",play,13.1,0 -12610800,"Borderlands 2",purchase,1.0,0 -12610800,"Borderlands 2",play,12.5,0 -12610800,"Sleeping Dogs",purchase,1.0,0 -12610800,"Sleeping Dogs",play,11.6,0 -12610800,"The Forest",purchase,1.0,0 -12610800,"The Forest",play,10.4,0 -12610800,"Max Payne 3",purchase,1.0,0 -12610800,"Max Payne 3",play,10.4,0 -12610800,"Ultimate General Gettysburg",purchase,1.0,0 -12610800,"Ultimate General Gettysburg",play,10.0,0 -12610800,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -12610800,"Sid Meier's Civilization IV Beyond the Sword",play,9.9,0 -12610800,"Team Fortress 2",purchase,1.0,0 -12610800,"Team Fortress 2",play,9.7,0 -12610800,"The Secret World",purchase,1.0,0 -12610800,"The Secret World",play,9.1,0 -12610800,"Far Cry 3",purchase,1.0,0 -12610800,"Far Cry 3",play,8.7,0 -12610800,"Medieval II Total War",purchase,1.0,0 -12610800,"Medieval II Total War",play,8.6,0 -12610800,"Battlefield Bad Company 2",purchase,1.0,0 -12610800,"Battlefield Bad Company 2",play,8.4,0 -12610800,"Portal 2",purchase,1.0,0 -12610800,"Portal 2",play,8.2,0 -12610800,"Divinity II - The Dragon Knight Saga",purchase,1.0,0 -12610800,"Divinity II - The Dragon Knight Saga",play,8.1,0 -12610800,"Darkest Dungeon",purchase,1.0,0 -12610800,"Darkest Dungeon",play,7.8,0 -12610800,"Xenonauts",purchase,1.0,0 -12610800,"Xenonauts",play,7.6,0 -12610800,"FTL Faster Than Light",purchase,1.0,0 -12610800,"FTL Faster Than Light",play,6.7,0 -12610800,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -12610800,"Kingdoms of Amalur Reckoning",play,5.5,0 -12610800,"FINAL FANTASY XIII",purchase,1.0,0 -12610800,"FINAL FANTASY XIII",play,4.4,0 -12610800,"Ziggurat",purchase,1.0,0 -12610800,"Ziggurat",play,4.1,0 -12610800,"XCOM Enemy Unknown",purchase,1.0,0 -12610800,"XCOM Enemy Unknown",play,3.9,0 -12610800,"Alan Wake",purchase,1.0,0 -12610800,"Alan Wake",play,3.7,0 -12610800,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -12610800,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,3.6,0 -12610800,"Dead Island",purchase,1.0,0 -12610800,"Dead Island",play,3.5,0 -12610800,"Mafia II",purchase,1.0,0 -12610800,"Mafia II",play,3.3,0 -12610800,"Tales of Maj'Eyal",purchase,1.0,0 -12610800,"Tales of Maj'Eyal",play,3.3,0 -12610800,"GRAV",purchase,1.0,0 -12610800,"GRAV",play,3.1,0 -12610800,"Titan Quest Immortal Throne",purchase,1.0,0 -12610800,"Titan Quest Immortal Throne",play,3.1,0 -12610800,"Rocket League",purchase,1.0,0 -12610800,"Rocket League",play,2.7,0 -12610800,"Alien Swarm",purchase,1.0,0 -12610800,"Alien Swarm",play,2.7,0 -12610800,"Half-Life 2",purchase,1.0,0 -12610800,"Half-Life 2",play,2.6,0 -12610800,"Napoleon Total War",purchase,1.0,0 -12610800,"Napoleon Total War",play,2.5,0 -12610800,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -12610800,"Rising Storm/Red Orchestra 2 Multiplayer",play,2.5,0 -12610800,"Medal of Honor(TM) Single Player",purchase,1.0,0 -12610800,"Medal of Honor(TM) Single Player",play,2.4,0 -12610800,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -12610800,"Tom Clancy's Splinter Cell Conviction",play,2.4,0 -12610800,"State of Decay",purchase,1.0,0 -12610800,"State of Decay",play,2.4,0 -12610800,"LEGO The Lord of the Rings",purchase,1.0,0 -12610800,"LEGO The Lord of the Rings",play,2.3,0 -12610800,"Left 4 Dead 2",purchase,1.0,0 -12610800,"Left 4 Dead 2",play,2.3,0 -12610800,"Far Cry 2",purchase,1.0,0 -12610800,"Far Cry 2",play,2.2,0 -12610800,"Tomb Raider",purchase,1.0,0 -12610800,"Tomb Raider",play,2.2,0 -12610800,"Metro 2033",purchase,1.0,0 -12610800,"Metro 2033",play,2.2,0 -12610800,"Thief",purchase,1.0,0 -12610800,"Thief",play,2.0,0 -12610800,"Killing Floor",purchase,1.0,0 -12610800,"Killing Floor",play,2.0,0 -12610800,"Monday Night Combat",purchase,1.0,0 -12610800,"Monday Night Combat",play,1.8,0 -12610800,"Nosgoth",purchase,1.0,0 -12610800,"Nosgoth",play,1.8,0 -12610800,"Age of Wonders",purchase,1.0,0 -12610800,"Age of Wonders",play,1.8,0 -12610800,"Age of Empires II HD Edition",purchase,1.0,0 -12610800,"Age of Empires II HD Edition",play,1.8,0 -12610800,"Dishonored",purchase,1.0,0 -12610800,"Dishonored",play,1.8,0 -12610800,"The Witcher Enhanced Edition",purchase,1.0,0 -12610800,"The Witcher Enhanced Edition",play,1.7,0 -12610800,"Banished",purchase,1.0,0 -12610800,"Banished",play,1.7,0 -12610800,"Landmark",purchase,1.0,0 -12610800,"Landmark",play,1.7,0 -12610800,"Angels Fall First",purchase,1.0,0 -12610800,"Angels Fall First",play,1.6,0 -12610800,"Grand Theft Auto IV",purchase,1.0,0 -12610800,"Grand Theft Auto IV",play,1.6,0 -12610800,"Dungeon Defenders",purchase,1.0,0 -12610800,"Dungeon Defenders",play,1.5,0 -12610800,"Alpha Protocol",purchase,1.0,0 -12610800,"Alpha Protocol",play,1.5,0 -12610800,"Lucid",purchase,1.0,0 -12610800,"Lucid",play,1.4,0 -12610800,"Empire Total War",purchase,1.0,0 -12610800,"Empire Total War",play,1.4,0 -12610800,"Pixel Piracy",purchase,1.0,0 -12610800,"Pixel Piracy",play,1.3,0 -12610800,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -12610800,"S.T.A.L.K.E.R. Call of Pripyat",play,1.3,0 -12610800,"Stronghold Crusader HD",purchase,1.0,0 -12610800,"Stronghold Crusader HD",play,1.3,0 -12610800,"This War of Mine",purchase,1.0,0 -12610800,"This War of Mine",play,1.2,0 -12610800,"Tom Clancy's Rainbow Six Vegas 2",purchase,1.0,0 -12610800,"Tom Clancy's Rainbow Six Vegas 2",play,1.1,0 -12610800,"Mount & Blade",purchase,1.0,0 -12610800,"Mount & Blade",play,1.1,0 -12610800,"Torchlight II",purchase,1.0,0 -12610800,"Torchlight II",play,1.1,0 -12610800,"Shadowrun Returns",purchase,1.0,0 -12610800,"Shadowrun Returns",play,1.1,0 -12610800,"Shadow Warrior",purchase,1.0,0 -12610800,"Shadow Warrior",play,1.0,0 -12610800,"Legend of Grimrock",purchase,1.0,0 -12610800,"Legend of Grimrock",play,1.0,0 -12610800,"Metro 2033 Redux",purchase,1.0,0 -12610800,"Metro 2033 Redux",play,1.0,0 -12610800,"Medieval II Total War Kingdoms",purchase,1.0,0 -12610800,"Medieval II Total War Kingdoms",play,1.0,0 -12610800,"LIMBO",purchase,1.0,0 -12610800,"LIMBO",play,1.0,0 -12610800,"Hearts of Iron III",purchase,1.0,0 -12610800,"Hearts of Iron III",play,1.0,0 -12610800,"Project Zomboid",purchase,1.0,0 -12610800,"Project Zomboid",play,0.9,0 -12610800,"RAGE",purchase,1.0,0 -12610800,"RAGE",play,0.9,0 -12610800,"X-COM Apocalypse",purchase,1.0,0 -12610800,"X-COM Apocalypse",play,0.9,0 -12610800,"Mass Effect",purchase,1.0,0 -12610800,"Mass Effect",play,0.9,0 -12610800,"ORION Prelude",purchase,1.0,0 -12610800,"ORION Prelude",play,0.9,0 -12610800,"Risk of Rain",purchase,1.0,0 -12610800,"Risk of Rain",play,0.8,0 -12610800,"E.Y.E Divine Cybermancy",purchase,1.0,0 -12610800,"E.Y.E Divine Cybermancy",play,0.8,0 -12610800,"Valdis Story Abyssal City",purchase,1.0,0 -12610800,"Valdis Story Abyssal City",play,0.7,0 -12610800,"Battlefield 2",purchase,1.0,0 -12610800,"Battlefield 2",play,0.7,0 -12610800,"Miasmata",purchase,1.0,0 -12610800,"Miasmata",play,0.7,0 -12610800,"Just Cause 2",purchase,1.0,0 -12610800,"Just Cause 2",play,0.7,0 -12610800,"Savage Lands",purchase,1.0,0 -12610800,"Savage Lands",play,0.7,0 -12610800,"Sniper Elite V2",purchase,1.0,0 -12610800,"Sniper Elite V2",play,0.6,0 -12610800,"Mirror's Edge",purchase,1.0,0 -12610800,"Mirror's Edge",play,0.6,0 -12610800,"Day of Defeat Source",purchase,1.0,0 -12610800,"Day of Defeat Source",play,0.6,0 -12610800,"Take On Mars",purchase,1.0,0 -12610800,"Take On Mars",play,0.6,0 -12610800,"The Long Dark",purchase,1.0,0 -12610800,"The Long Dark",play,0.5,0 -12610800,"Deus Ex Human Revolution",purchase,1.0,0 -12610800,"Deus Ex Human Revolution",play,0.5,0 -12610800,"Fallout New Vegas",purchase,1.0,0 -12610800,"Fallout New Vegas",play,0.4,0 -12610800,"Anno 2070",purchase,1.0,0 -12610800,"Anno 2070",play,0.4,0 -12610800,"Dungeons of Dredmor",purchase,1.0,0 -12610800,"Dungeons of Dredmor",play,0.4,0 -12610800,"Craft The World",purchase,1.0,0 -12610800,"Craft The World",play,0.4,0 -12610800,"Titan Quest",purchase,1.0,0 -12610800,"Titan Quest",play,0.4,0 -12610800,"Nether",purchase,1.0,0 -12610800,"Nether",play,0.4,0 -12610800,"Legend of Grimrock 2",purchase,1.0,0 -12610800,"Legend of Grimrock 2",play,0.3,0 -12610800,"Bastion",purchase,1.0,0 -12610800,"Bastion",play,0.3,0 -12610800,"The Chronicles of Riddick Assault on Dark Athena",purchase,1.0,0 -12610800,"The Chronicles of Riddick Assault on Dark Athena",play,0.3,0 -12610800,"King Arthur's Gold",purchase,1.0,0 -12610800,"King Arthur's Gold",play,0.3,0 -12610800,"Five Nights at Freddy's",purchase,1.0,0 -12610800,"Five Nights at Freddy's",play,0.3,0 -12610800,"Swords and Soldiers HD",purchase,1.0,0 -12610800,"Swords and Soldiers HD",play,0.3,0 -12610800,"Fate of the World",purchase,1.0,0 -12610800,"Fate of the World",play,0.3,0 -12610800,"Magicka",purchase,1.0,0 -12610800,"Magicka",play,0.3,0 -12610800,"Reus",purchase,1.0,0 -12610800,"Reus",play,0.3,0 -12610800,"Unturned",purchase,1.0,0 -12610800,"Unturned",play,0.3,0 -12610800,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -12610800,"Sid Meier's Civilization IV Colonization",play,0.3,0 -12610800,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -12610800,"Dragon Age Origins - Ultimate Edition",play,0.3,0 -12610800,"Clickteam Fusion 2.5",purchase,1.0,0 -12610800,"Clickteam Fusion 2.5",play,0.3,0 -12610800,"Torchlight",purchase,1.0,0 -12610800,"Torchlight",play,0.3,0 -12610800,"Awesomenauts",purchase,1.0,0 -12610800,"Awesomenauts",play,0.3,0 -12610800,"Toy Soldiers",purchase,1.0,0 -12610800,"Toy Soldiers",play,0.3,0 -12610800,"Natural Selection 2",purchase,1.0,0 -12610800,"Natural Selection 2",play,0.2,0 -12610800,"Counter-Strike Global Offensive",purchase,1.0,0 -12610800,"Counter-Strike Global Offensive",play,0.2,0 -12610800,"Dirty Bomb",purchase,1.0,0 -12610800,"Dirty Bomb",play,0.2,0 -12610800,"X3 Terran Conflict",purchase,1.0,0 -12610800,"X3 Terran Conflict",play,0.2,0 -12610800,"Medal of Honor Airborne",purchase,1.0,0 -12610800,"Medal of Honor Airborne",play,0.2,0 -12610800,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -12610800,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,0.2,0 -12610800,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -12610800,"SEGA Genesis & Mega Drive Classics",play,0.2,0 -12610800,"Company of Heroes",purchase,1.0,0 -12610800,"Company of Heroes",play,0.2,0 -12610800,"King Arthur II - The Role-playing Wargame",purchase,1.0,0 -12610800,"King Arthur II - The Role-playing Wargame",play,0.2,0 -12610800,"Rome Total War",purchase,1.0,0 -12610800,"Rome Total War",play,0.2,0 -12610800,"Europa Universalis III",purchase,1.0,0 -12610800,"Europa Universalis III",play,0.2,0 -12610800,"Carrier Command Gaea Mission",purchase,1.0,0 -12610800,"Carrier Command Gaea Mission",play,0.2,0 -12610800,"Outlast",purchase,1.0,0 -12610800,"Outlast",play,0.2,0 -12610800,"The Last Remnant",purchase,1.0,0 -12610800,"The Last Remnant",play,0.2,0 -12610800,"Depths of Peril",purchase,1.0,0 -12610800,"Depths of Peril",play,0.2,0 -12610800,"Star Wars Knights of the Old Republic",purchase,1.0,0 -12610800,"Star Wars Knights of the Old Republic",play,0.2,0 -12610800,"Zombie Panic Source",purchase,1.0,0 -12610800,"Zombie Panic Source",play,0.1,0 -12610800,"Retro City Rampage DX",purchase,1.0,0 -12610800,"Retro City Rampage DX",play,0.1,0 -12610800,"Worms Reloaded",purchase,1.0,0 -12610800,"Worms Reloaded",play,0.1,0 -12610800,"Frozen Synapse",purchase,1.0,0 -12610800,"Frozen Synapse",play,0.1,0 -12610800,"Unity of Command",purchase,1.0,0 -12610800,"Unity of Command",play,0.1,0 -12610800,"Avadon The Black Fortress",purchase,1.0,0 -12610800,"Avadon The Black Fortress",play,0.1,0 -12610800,"Hack, Slash, Loot",purchase,1.0,0 -12610800,"Hack, Slash, Loot",play,0.1,0 -12610800,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -12610800,"Medal of Honor(TM) Multiplayer",play,0.1,0 -12610800,"Rogue Legacy",purchase,1.0,0 -12610800,"Rogue Legacy",play,0.1,0 -12610800,"AI War Fleet Command",purchase,1.0,0 -12610800,"Portal",purchase,1.0,0 -12610800,"Risen",purchase,1.0,0 -12610800,"Agarest Generations of War",purchase,1.0,0 -12610800,"Take On Helicopters",purchase,1.0,0 -12610800,"Long Live The Queen",purchase,1.0,0 -12610800,"Hammerwatch",purchase,1.0,0 -12610800,"Ace of Spades",purchase,1.0,0 -12610800,"Arma 2",purchase,1.0,0 -12610800,"Chivalry Medieval Warfare",purchase,1.0,0 -12610800,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -12610800,"DiRT",purchase,1.0,0 -12610800,"Tom Clancy's Rainbow Six 3 Gold Edition",purchase,1.0,0 -12610800,"Tom Clancy's Rainbow Six 3 Athena Sword",purchase,1.0,0 -12610800,"Warlock - Master of the Arcane",purchase,1.0,0 -12610800,"Trine",purchase,1.0,0 -12610800,"Arma 2 DayZ Mod",purchase,1.0,0 -12610800,"Arma 2 British Armed Forces",purchase,1.0,0 -12610800,"Arma 2 Private Military Company",purchase,1.0,0 -12610800,"Far Cry 3 Blood Dragon",purchase,1.0,0 -12610800,"7 Days to Die",purchase,1.0,0 -12610800,"Age of Empires II HD The Forgotten",purchase,1.0,0 -12610800,"Age of Wonders 2",purchase,1.0,0 -12610800,"Age of Wonders Shadow Magic",purchase,1.0,0 -12610800,"Age of Wonders Trilogy Soundtrack",purchase,1.0,0 -12610800,"Amnesia The Dark Descent",purchase,1.0,0 -12610800,"Aquaria",purchase,1.0,0 -12610800,"Arma 3 Marksmen",purchase,1.0,0 -12610800,"Arma 3 Zeus",purchase,1.0,0 -12610800,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -12610800,"Ben There, Dan That!",purchase,1.0,0 -12610800,"BIT.TRIP RUNNER",purchase,1.0,0 -12610800,"Cave Story+",purchase,1.0,0 -12610800,"Company of Heroes (New Steam Version)",purchase,1.0,0 -12610800,"Condemned Criminal Origins",purchase,1.0,0 -12610800,"Costume Quest",purchase,1.0,0 -12610800,"Counter-Strike Source",purchase,1.0,0 -12610800,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -12610800,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -12610800,"Deadlight",purchase,1.0,0 -12610800,"Dear Esther",purchase,1.0,0 -12610800,"Delver",purchase,1.0,0 -12610800,"Divinity II Developer's Cut",purchase,1.0,0 -12610800,"Don't Starve Together Beta",purchase,1.0,0 -12610800,"Downwell",purchase,1.0,0 -12610800,"Drakensang The River of Time",purchase,1.0,0 -12610800,"Dungeon of the Endless",purchase,1.0,0 -12610800,"Dungeon Siege III",purchase,1.0,0 -12610800,"Earth Defense Force Insect Armageddon",purchase,1.0,0 -12610800,"Endless Space",purchase,1.0,0 -12610800,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -12610800,"From Dust",purchase,1.0,0 -12610800,"Garry's Mod",purchase,1.0,0 -12610800,"Gnomoria",purchase,1.0,0 -12610800,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -12610800,"Gratuitous Space Battles",purchase,1.0,0 -12610800,"Guns of Icarus Online",purchase,1.0,0 -12610800,"Half-Life 2 Deathmatch",purchase,1.0,0 -12610800,"Half-Life 2 Episode One",purchase,1.0,0 -12610800,"Half-Life 2 Episode Two",purchase,1.0,0 -12610800,"Half-Life 2 Lost Coast",purchase,1.0,0 -12610800,"Half-Life Deathmatch Source",purchase,1.0,0 -12610800,"Hard Reset",purchase,1.0,0 -12610800,"Hard Reset Exile DLC",purchase,1.0,0 -12610800,"Hitman 2 Silent Assassin",purchase,1.0,0 -12610800,"Hitman Blood Money",purchase,1.0,0 -12610800,"Hitman Codename 47",purchase,1.0,0 -12610800,"Hitman Sniper Challenge",purchase,1.0,0 -12610800,"Iron Front D-Day DLC",purchase,1.0,0 -12610800,"Jamestown",purchase,1.0,0 -12610800,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -12610800,"Legend of Dungeon",purchase,1.0,0 -12610800,"Machinarium",purchase,1.0,0 -12610800,"Majesty 2",purchase,1.0,0 -12610800,"Mark of the Ninja",purchase,1.0,0 -12610800,"Mass Effect 2",purchase,1.0,0 -12610800,"Medal of Honor Pre-Order",purchase,1.0,0 -12610800,"Metro Last Light Redux",purchase,1.0,0 -12610800,"Monaco",purchase,1.0,0 -12610800,"Mount & Blade With Fire and Sword",purchase,1.0,0 -12610800,"Nether - Chosen",purchase,1.0,0 -12610800,"Nether Arena",purchase,1.0,0 -12610800,"NightSky",purchase,1.0,0 -12610800,"Orcs Must Die!",purchase,1.0,0 -12610800,"Patch testing for Chivalry",purchase,1.0,0 -12610800,"PAYDAY Wolf Pack",purchase,1.0,0 -12610800,"Planetary Annihilation",purchase,1.0,0 -12610800,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -12610800,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -12610800,"Rome Total War - Alexander",purchase,1.0,0 -12610800,"Saints Row 2",purchase,1.0,0 -12610800,"Sengoku",purchase,1.0,0 -12610800,"Shadowrun Dragonfall",purchase,1.0,0 -12610800,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -12610800,"Shank",purchase,1.0,0 -12610800,"Sid Meier's Civilization IV",purchase,1.0,0 -12610800,"Sid Meier's Civilization IV",purchase,1.0,0 -12610800,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -12610800,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -12610800,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -12610800,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -12610800,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -12610800,"SiN",purchase,1.0,0 -12610800,"SiN Episodes Emergence",purchase,1.0,0 -12610800,"SiN Multiplayer",purchase,1.0,0 -12610800,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -12610800,"SpellForce 2 Gold Edition",purchase,1.0,0 -12610800,"Spelunky",purchase,1.0,0 -12610800,"Stronghold Crusader Extreme HD",purchase,1.0,0 -12610800,"Super Meat Boy",purchase,1.0,0 -12610800,"Tales of Maj'Eyal - Ashes of Urh'Rok",purchase,1.0,0 -12610800,"The Binding of Isaac",purchase,1.0,0 -12610800,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -12610800,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -12610800,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -12610800,"The Walking Dead Season Two",purchase,1.0,0 -12610800,"Time Gentlemen, Please!",purchase,1.0,0 -12610800,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -12610800,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -12610800,"Trine 2",purchase,1.0,0 -12610800,"Under the Ocean",purchase,1.0,0 -12610800,"Universe Sandbox",purchase,1.0,0 -12610800,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -12610800,"Vertiginous Golf",purchase,1.0,0 -12610800,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -12610800,"VVVVVV",purchase,1.0,0 -12610800,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -231029951,"Unturned",purchase,1.0,0 -231029951,"Unturned",play,8.0,0 -231029951,"Shoot Many Robots",purchase,1.0,0 -231029951,"Shoot Many Robots",play,6.3,0 -231029951,"Garry's Mod",purchase,1.0,0 -231029951,"Garry's Mod",play,4.2,0 -231029951,"WARMODE",purchase,1.0,0 -231029951,"WARMODE",play,4.0,0 -231029951,"Thief",purchase,1.0,0 -231029951,"Thief",play,2.6,0 -231029951,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -231029951,"A.V.A - Alliance of Valiant Arms",play,2.0,0 -231029951,"Ace of Spades",purchase,1.0,0 -231029951,"Ace of Spades",play,1.2,0 -231029951,"Heroes & Generals",purchase,1.0,0 -231029951,"Heroes & Generals",play,1.0,0 -231029951,"Blockstorm",purchase,1.0,0 -231029951,"Blockstorm",play,1.0,0 -231029951,"PlanetSide 2",purchase,1.0,0 -231029951,"PlanetSide 2",play,0.9,0 -231029951,"Company of Heroes (New Steam Version)",purchase,1.0,0 -231029951,"Company of Heroes (New Steam Version)",play,0.9,0 -231029951,"No More Room in Hell",purchase,1.0,0 -231029951,"No More Room in Hell",play,0.6,0 -231029951,"Infinite Crisis",purchase,1.0,0 -231029951,"Infinite Crisis",play,0.4,0 -231029951,"sZone-Online",purchase,1.0,0 -231029951,"sZone-Online",play,0.3,0 -231029951,"War Inc. Battlezone",purchase,1.0,0 -231029951,"War Inc. Battlezone",play,0.1,0 -231029951,"Aftermath",purchase,1.0,0 -231029951,"Aftermath",play,0.1,0 -231029951,"BLOCKADE 3D",purchase,1.0,0 -231029951,"Brick-Force",purchase,1.0,0 -231029951,"Company of Heroes",purchase,1.0,0 -231029951,"DiggerOnline",purchase,1.0,0 -231029951,"Dirty Bomb",purchase,1.0,0 -231029951,"Fistful of Frags",purchase,1.0,0 -136778642,"Dota 2",purchase,1.0,0 -136778642,"Dota 2",play,272.0,0 -30036927,"Team Fortress 2",purchase,1.0,0 -30036927,"Team Fortress 2",play,2653.0,0 -30036927,"DiRT 2",purchase,1.0,0 -30036927,"DiRT 2",play,11.6,0 -30036927,"Day of Defeat Source",purchase,1.0,0 -30036927,"Portal",purchase,1.0,0 -30036927,"Half-Life 2 Episode Two",purchase,1.0,0 -30036927,"Pid ",purchase,1.0,0 -172666220,"Team Fortress 2",purchase,1.0,0 -172666220,"Team Fortress 2",play,174.0,0 -172666220,"Garry's Mod",purchase,1.0,0 -172666220,"Garry's Mod",play,135.0,0 -172666220,"Trove",purchase,1.0,0 -172666220,"Trove",play,75.0,0 -172666220,"Dragon Nest Europe",purchase,1.0,0 -172666220,"Dragon Nest Europe",play,23.0,0 -172666220,"Happy Wars",purchase,1.0,0 -172666220,"Happy Wars",play,17.4,0 -172666220,"Blockland",purchase,1.0,0 -172666220,"Blockland",play,11.6,0 -172666220,"Toribash",purchase,1.0,0 -172666220,"Toribash",play,9.5,0 -172666220,"Brawlhalla",purchase,1.0,0 -172666220,"Brawlhalla",play,7.9,0 -172666220,"Anarchy Arcade",purchase,1.0,0 -172666220,"Anarchy Arcade",play,4.1,0 -172666220,"Double Action Boogaloo",purchase,1.0,0 -172666220,"Double Action Boogaloo",play,1.8,0 -172666220,"Amazing World",purchase,1.0,0 -172666220,"Amazing World",play,1.2,0 -172666220,"Heroes & Generals",purchase,1.0,0 -172666220,"Heroes & Generals",play,1.0,0 -172666220,"Unturned",purchase,1.0,0 -172666220,"Unturned",play,0.5,0 -172666220,"Robocraft",purchase,1.0,0 -172666220,"Robocraft",play,0.2,0 -172666220,"Strife",purchase,1.0,0 -172666220,"The Lord of the Rings Online",purchase,1.0,0 -186305384,"Dota 2",purchase,1.0,0 -186305384,"Dota 2",play,91.0,0 -186305384,"Nosgoth",purchase,1.0,0 -186305384,"Nosgoth",play,0.8,0 -181118785,"Dota 2",purchase,1.0,0 -181118785,"Dota 2",play,80.0,0 -181118785,"Aura Kingdom",purchase,1.0,0 -181118785,"FreeStyle2 Street Basketball",purchase,1.0,0 -181118785,"Free to Play",purchase,1.0,0 -181118785,"GunZ 2 The Second Duel",purchase,1.0,0 -181118785,"No More Room in Hell",purchase,1.0,0 -181118785,"Robocraft",purchase,1.0,0 -181118785,"ROSE Online",purchase,1.0,0 -181118785,"Spiral Knights",purchase,1.0,0 -181118785,"Strife",purchase,1.0,0 -181118785,"Unturned",purchase,1.0,0 -181118785,"Warframe",purchase,1.0,0 -181118785,"Wrath of Athena",purchase,1.0,0 -181118785,"WTFast Gamers Private Network (GPN)",purchase,1.0,0 -83420834,"Counter-Strike Source",purchase,1.0,0 -83420834,"Counter-Strike Source",play,87.0,0 -83420834,"Left 4 Dead 2",purchase,1.0,0 -83420834,"Left 4 Dead 2",play,19.0,0 -83420834,"Team Fortress 2",purchase,1.0,0 -83420834,"Team Fortress 2",play,6.5,0 -83420834,"Borderlands",purchase,1.0,0 -83420834,"Borderlands",play,3.5,0 -83420834,"Monday Night Combat",purchase,1.0,0 -83420834,"Monday Night Combat",play,1.0,0 -83420834,"Lead and Gold - Gangs of the Wild West",purchase,1.0,0 -83420834,"Lead and Gold - Gangs of the Wild West",play,0.8,0 -83420834,"Half-Life 2 Deathmatch",purchase,1.0,0 -83420834,"Half-Life 2 Deathmatch",play,0.3,0 -83420834,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -83420834,"Kane & Lynch 2 Dog Days",play,0.1,0 -83420834,"Hazard Ops",purchase,1.0,0 -83420834,"Day of Defeat Source",purchase,1.0,0 -83420834,"Half-Life 2 Lost Coast",purchase,1.0,0 -106170243,"Garry's Mod",purchase,1.0,0 -106170243,"Garry's Mod",play,81.0,0 -106170243,"Dota 2",purchase,1.0,0 -106170243,"Dota 2",play,42.0,0 -106170243,"Mortal Kombat Komplete Edition",purchase,1.0,0 -106170243,"Mortal Kombat Komplete Edition",play,25.0,0 -106170243,"Elsword",purchase,1.0,0 -106170243,"Elsword",play,24.0,0 -106170243,"Team Fortress 2",purchase,1.0,0 -106170243,"Team Fortress 2",play,15.6,0 -106170243,"Cry of Fear",purchase,1.0,0 -106170243,"Cry of Fear",play,11.4,0 -106170243,"METAL SLUG 3",purchase,1.0,0 -106170243,"METAL SLUG 3",play,7.7,0 -106170243,"DC Universe Online",purchase,1.0,0 -106170243,"DC Universe Online",play,3.4,0 -106170243,"Unturned",purchase,1.0,0 -106170243,"Unturned",play,2.5,0 -106170243,"No More Room in Hell",purchase,1.0,0 -106170243,"No More Room in Hell",play,2.1,0 -106170243,"Warframe",purchase,1.0,0 -106170243,"Warframe",play,1.5,0 -106170243,"Quake Live",purchase,1.0,0 -106170243,"Quake Live",play,0.3,0 -106170243,"Double Action Boogaloo",purchase,1.0,0 -106170243,"Double Action Boogaloo",play,0.2,0 -106170243,"Toribash",purchase,1.0,0 -106170243,"Toribash",play,0.2,0 -106170243,"The Expendabros",purchase,1.0,0 -106170243,"The Expendabros",play,0.2,0 -187588985,"Undertale",purchase,1.0,0 -187588985,"Undertale",play,30.0,0 -187588985,"Ori and the Blind Forest",purchase,1.0,0 -187588985,"Ori and the Blind Forest",play,27.0,0 -187588985,"Shovel Knight",purchase,1.0,0 -187588985,"Shovel Knight",play,4.8,0 -187588985,"Spiral Knights",purchase,1.0,0 -187588985,"Spiral Knights",play,1.3,0 -187588985,"FINAL FANTASY XIII",purchase,1.0,0 -187588985,"FINAL FANTASY XIII",play,0.1,0 -187588985,"FINAL FANTASY XIII-2",purchase,1.0,0 -64394438,"Team Fortress 2",purchase,1.0,0 -64394438,"Team Fortress 2",play,238.0,0 -64394438,"Alien Swarm",purchase,1.0,0 -64394438,"Alien Swarm",play,2.3,0 -225245513,"Dota 2",purchase,1.0,0 -225245513,"Dota 2",play,2.2,0 -15902605,"Counter-Strike Source",purchase,1.0,0 -15902605,"Half-Life 2",purchase,1.0,0 -15902605,"Half-Life 2 Deathmatch",purchase,1.0,0 -15902605,"Half-Life 2 Lost Coast",purchase,1.0,0 -231808839,"Call of Duty Modern Warfare 3",purchase,1.0,0 -231808839,"Call of Duty Modern Warfare 3",play,6.3,0 -231808839,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -231808839,"Resident Evil 6 / Biohazard 6",play,1.4,0 -231808839,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -231808839,"Call of Duty Modern Warfare 3 - Multiplayer",play,0.2,0 -231808839,"16 Bit Arena",purchase,1.0,0 -21138994,"Half-Life 2",purchase,1.0,0 -21138994,"Half-Life 2",play,14.1,0 -21138994,"Counter-Strike Source",purchase,1.0,0 -21138994,"Counter-Strike Source",play,4.6,0 -21138994,"Half-Life 2 Episode One",purchase,1.0,0 -21138994,"Half-Life 2 Episode One",play,0.6,0 -21138994,"Half-Life 2 Deathmatch",purchase,1.0,0 -21138994,"Half-Life 2 Lost Coast",purchase,1.0,0 -21138994,"Half-Life Deathmatch Source",purchase,1.0,0 -160550083,"Dota 2",purchase,1.0,0 -160550083,"Dota 2",play,0.5,0 -104032602,"Dota 2",purchase,1.0,0 -104032602,"Dota 2",play,67.0,0 -104032602,"Small World 2",purchase,1.0,0 -104032602,"Small World 2",play,16.8,0 -104032602,"Scribblenauts Unlimited",purchase,1.0,0 -104032602,"Scribblenauts Unlimited",play,2.4,0 -104032602,"Dungeon Defenders",purchase,1.0,0 -104032602,"Dungeon Defenders",play,1.6,0 -104032602,"Torchlight II",purchase,1.0,0 -104032602,"Torchlight II",play,0.9,0 -158655873,"Far Cry 3",purchase,1.0,0 -158655873,"Far Cry 3",play,6.9,0 -242782489,"Unturned",purchase,1.0,0 -242782489,"Unturned",play,8.2,0 -242782489,"Robocraft",purchase,1.0,0 -242782489,"Robocraft",play,0.2,0 -260048725,"ArcheAge",purchase,1.0,0 -260048725,"ArcheAge",play,107.0,0 -73012771,"Sid Meier's Civilization V",purchase,1.0,0 -73012771,"Sid Meier's Civilization V",play,104.0,0 -271030096,"Nosgoth",purchase,1.0,0 -271030096,"Nosgoth",play,0.4,0 -97017439,"Team Fortress 2",purchase,1.0,0 -97017439,"Team Fortress 2",play,104.0,0 -97017439,"Cry of Fear",purchase,1.0,0 -97017439,"Half-Life 2 Update",purchase,1.0,0 -97017439,"Thinking with Time Machine",purchase,1.0,0 -97017439,"Warframe",purchase,1.0,0 -97017439,"War Thunder",purchase,1.0,0 -179014686,"Dota 2",purchase,1.0,0 -179014686,"Dota 2",play,0.7,0 -126471719,"Dota 2",purchase,1.0,0 -126471719,"Dota 2",play,675.0,0 -126471719,"Counter-Strike Global Offensive",purchase,1.0,0 -126471719,"Counter-Strike Global Offensive",play,511.0,0 -126471719,"Unturned",purchase,1.0,0 -126471719,"Unturned",play,74.0,0 -126471719,"Heroes & Generals",purchase,1.0,0 -126471719,"Heroes & Generals",play,26.0,0 -126471719,"Team Fortress 2",purchase,1.0,0 -126471719,"Team Fortress 2",play,13.3,0 -126471719,"Fistful of Frags",purchase,1.0,0 -126471719,"Fistful of Frags",play,8.3,0 -126471719,"Tribes Ascend",purchase,1.0,0 -126471719,"Tribes Ascend",play,1.0,0 -126471719,"Mitos.is The Game",purchase,1.0,0 -126471719,"Mitos.is The Game",play,0.5,0 -126471719,"War Thunder",purchase,1.0,0 -126471719,"War Thunder",play,0.4,0 -126471719,"Counter-Strike",purchase,1.0,0 -126471719,"Counter-Strike",play,0.3,0 -126471719,"Counter-Strike Condition Zero",purchase,1.0,0 -126471719,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -126471719,"Day of Defeat",purchase,1.0,0 -126471719,"Deathmatch Classic",purchase,1.0,0 -126471719,"Ricochet",purchase,1.0,0 -245767059,"Marvel Heroes 2015",purchase,1.0,0 -245767059,"Rise of Incarnates",purchase,1.0,0 -169061944,"Team Fortress 2",purchase,1.0,0 -169061944,"Team Fortress 2",play,17.8,0 -249269233,"AdVenture Capitalist",purchase,1.0,0 -249269233,"Games of Glory",purchase,1.0,0 -11973378,"Counter-Strike Source",purchase,1.0,0 -11973378,"Counter-Strike Source",play,0.8,0 -11973378,"Half-Life 2",purchase,1.0,0 -11973378,"Half-Life 2 Deathmatch",purchase,1.0,0 -11973378,"Half-Life 2 Lost Coast",purchase,1.0,0 -99992274,"Sid Meier's Civilization V",purchase,1.0,0 -99992274,"Sid Meier's Civilization V",play,6.3,0 -291293152,"War Thunder",purchase,1.0,0 -291293152,"War Thunder",play,5.3,0 -291293152,"Counter-Strike Global Offensive",purchase,1.0,0 -291293152,"Counter-Strike Global Offensive",play,2.8,0 -291293152,"Heroes & Generals",purchase,1.0,0 -291293152,"Heroes & Generals",play,1.4,0 -291293152,"DayZ",purchase,1.0,0 -291293152,"DayZ",play,0.8,0 -75277726,"Borderlands",purchase,1.0,0 -75277726,"Borderlands",play,79.0,0 -75277726,"Grand Theft Auto San Andreas",purchase,1.0,0 -75277726,"Grand Theft Auto San Andreas",play,50.0,0 -75277726,"Fallout New Vegas",purchase,1.0,0 -75277726,"Fallout New Vegas",play,15.3,0 -75277726,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -75277726,"Call of Duty Black Ops - Multiplayer",play,4.3,0 -75277726,"Call of Duty Black Ops",purchase,1.0,0 -75277726,"Call of Duty Black Ops",play,3.5,0 -75277726,"Iron Grip Warlord",purchase,1.0,0 -75277726,"Iron Grip Warlord",play,0.4,0 -75277726,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -75277726,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -75277726,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -75277726,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -75277726,"Grand Theft Auto San Andreas",purchase,1.0,0 -118664413,"Grand Theft Auto San Andreas",purchase,1.0,0 -118664413,"Grand Theft Auto San Andreas",play,1.9,0 -118664413,"Syberia",purchase,1.0,0 -118664413,"Syberia",play,0.6,0 -118664413,"Mirror's Edge",purchase,1.0,0 -118664413,"Mirror's Edge",play,0.5,0 -118664413,"Counter-Strike Global Offensive",purchase,1.0,0 -118664413,"Counter-Strike Global Offensive",play,0.5,0 -118664413,"Need for Speed Hot Pursuit",purchase,1.0,0 -118664413,"Need for Speed Hot Pursuit",play,0.5,0 -118664413,"Prototype",purchase,1.0,0 -118664413,"Prototype",play,0.3,0 -118664413,"Grand Theft Auto San Andreas",purchase,1.0,0 -118664413,"Grand Theft Auto San Andreas",play,0.2,0 -118664413,"Dota 2",purchase,1.0,0 -118664413,"Dota 2",play,0.2,0 -118664413,"Assassin's Creed II",purchase,1.0,0 -118664413,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -118664413,"Syberia 2",purchase,1.0,0 -186139058,"Dota 2",purchase,1.0,0 -186139058,"Dota 2",play,8.9,0 -178290786,"Dota 2",purchase,1.0,0 -178290786,"Dota 2",play,8.1,0 -184899103,"Counter-Strike Global Offensive",purchase,1.0,0 -184899103,"Counter-Strike Global Offensive",play,395.0,0 -163043651,"Dota 2",purchase,1.0,0 -163043651,"Dota 2",play,0.3,0 -248532700,"Garry's Mod",purchase,1.0,0 -248532700,"Garry's Mod",play,0.3,0 -166747492,"Dota 2",purchase,1.0,0 -166747492,"Dota 2",play,2.6,0 -28696163,"Counter-Strike Source",purchase,1.0,0 -28696163,"Counter-Strike Source",play,289.0,0 -28696163,"Day of Defeat Source",purchase,1.0,0 -28696163,"Half-Life 2 Deathmatch",purchase,1.0,0 -28696163,"Half-Life 2 Lost Coast",purchase,1.0,0 -220489263,"Winning Post 8 2015",purchase,1.0,0 -220489263,"Winning Post 8 2015",play,127.0,0 -146999982,"Garry's Mod",purchase,1.0,0 -146999982,"Garry's Mod",play,22.0,0 -146999982,"No More Room in Hell",purchase,1.0,0 -146999982,"No More Room in Hell",play,11.0,0 -146999982,"The Mighty Quest For Epic Loot",purchase,1.0,0 -146999982,"The Mighty Quest For Epic Loot",play,7.4,0 -146999982,"Team Fortress 2",purchase,1.0,0 -146999982,"Team Fortress 2",play,4.6,0 -146999982,"Vindictus",purchase,1.0,0 -146999982,"Vindictus",play,0.8,0 -146999982,"12 Labours of Hercules II The Cretan Bull",purchase,1.0,0 -146999982,"12 Labours of Hercules II The Cretan Bull",play,0.2,0 -146999982,"Path of Exile",purchase,1.0,0 -78341587,"Just Cause 2",purchase,1.0,0 -78341587,"Just Cause 2",play,153.0,0 -78341587,"Borderlands 2",purchase,1.0,0 -78341587,"Borderlands 2",play,79.0,0 -78341587,"Assassin's Creed IV Black Flag",purchase,1.0,0 -78341587,"Assassin's Creed IV Black Flag",play,73.0,0 -78341587,"Sid Meier's Civilization V",purchase,1.0,0 -78341587,"Sid Meier's Civilization V",play,62.0,0 -78341587,"Assassin's Creed Brotherhood",purchase,1.0,0 -78341587,"Assassin's Creed Brotherhood",play,37.0,0 -78341587,"Saints Row The Third",purchase,1.0,0 -78341587,"Saints Row The Third",play,36.0,0 -78341587,"Portal 2",purchase,1.0,0 -78341587,"Portal 2",play,36.0,0 -78341587,"Blacklight Retribution",purchase,1.0,0 -78341587,"Blacklight Retribution",play,32.0,0 -78341587,"Assassin's Creed II",purchase,1.0,0 -78341587,"Assassin's Creed II",play,31.0,0 -78341587,"Far Cry 3",purchase,1.0,0 -78341587,"Far Cry 3",play,26.0,0 -78341587,"The Elder Scrolls V Skyrim",purchase,1.0,0 -78341587,"The Elder Scrolls V Skyrim",play,21.0,0 -78341587,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -78341587,"Just Cause 2 Multiplayer Mod",play,19.5,0 -78341587,"Shadow Warrior",purchase,1.0,0 -78341587,"Shadow Warrior",play,12.9,0 -78341587,"Counter-Strike Global Offensive",purchase,1.0,0 -78341587,"Counter-Strike Global Offensive",play,8.1,0 -78341587,"Trine",purchase,1.0,0 -78341587,"Trine",play,7.4,0 -78341587,"BioShock",purchase,1.0,0 -78341587,"BioShock",play,7.1,0 -78341587,"Just Cause 3",purchase,1.0,0 -78341587,"Just Cause 3",play,6.3,0 -78341587,"Ultra Street Fighter IV",purchase,1.0,0 -78341587,"Ultra Street Fighter IV",play,6.0,0 -78341587,"Kerbal Space Program",purchase,1.0,0 -78341587,"Kerbal Space Program",play,5.4,0 -78341587,"Mark of the Ninja",purchase,1.0,0 -78341587,"Mark of the Ninja",play,5.1,0 -78341587,"Torchlight",purchase,1.0,0 -78341587,"Torchlight",play,4.2,0 -78341587,"Portal",purchase,1.0,0 -78341587,"Portal",play,3.6,0 -78341587,"FTL Faster Than Light",purchase,1.0,0 -78341587,"FTL Faster Than Light",play,3.5,0 -78341587,"Uplink",purchase,1.0,0 -78341587,"Uplink",play,3.5,0 -78341587,"Assassin's Creed Revelations",purchase,1.0,0 -78341587,"Assassin's Creed Revelations",play,3.3,0 -78341587,"Goat Simulator",purchase,1.0,0 -78341587,"Goat Simulator",play,3.1,0 -78341587,"Intrusion 2",purchase,1.0,0 -78341587,"Intrusion 2",play,2.0,0 -78341587,"Crysis",purchase,1.0,0 -78341587,"Crysis",play,1.7,0 -78341587,"Bastion",purchase,1.0,0 -78341587,"Bastion",play,1.7,0 -78341587,"Sanctum",purchase,1.0,0 -78341587,"Sanctum",play,1.7,0 -78341587,"SpaceChem",purchase,1.0,0 -78341587,"SpaceChem",play,1.6,0 -78341587,"Grand Theft Auto IV",purchase,1.0,0 -78341587,"Grand Theft Auto IV",play,1.6,0 -78341587,"3DMark",purchase,1.0,0 -78341587,"3DMark",play,1.6,0 -78341587,"Fallout New Vegas",purchase,1.0,0 -78341587,"Fallout New Vegas",play,1.4,0 -78341587,"BIT.TRIP RUNNER",purchase,1.0,0 -78341587,"BIT.TRIP RUNNER",play,1.3,0 -78341587,"Jamestown",purchase,1.0,0 -78341587,"Jamestown",play,1.3,0 -78341587,"Assassin's Creed",purchase,1.0,0 -78341587,"Assassin's Creed",play,1.2,0 -78341587,"Sonic Generations",purchase,1.0,0 -78341587,"Sonic Generations",play,1.2,0 -78341587,"Poker Night 2",purchase,1.0,0 -78341587,"Poker Night 2",play,1.2,0 -78341587,"Atom Zombie Smasher ",purchase,1.0,0 -78341587,"Atom Zombie Smasher ",play,1.0,0 -78341587,"Revenge of the Titans",purchase,1.0,0 -78341587,"Revenge of the Titans",play,1.0,0 -78341587,"Crysis 2 Maximum Edition",purchase,1.0,0 -78341587,"Crysis 2 Maximum Edition",play,0.9,0 -78341587,"Team Fortress 2",purchase,1.0,0 -78341587,"Team Fortress 2",play,0.8,0 -78341587,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -78341587,"Red Faction Guerrilla Steam Edition",play,0.8,0 -78341587,"Universe Sandbox",purchase,1.0,0 -78341587,"Universe Sandbox",play,0.8,0 -78341587,"Shatter",purchase,1.0,0 -78341587,"Shatter",play,0.8,0 -78341587,"DLC Quest",purchase,1.0,0 -78341587,"DLC Quest",play,0.8,0 -78341587,"Super Meat Boy",purchase,1.0,0 -78341587,"Super Meat Boy",play,0.7,0 -78341587,"Terraria",purchase,1.0,0 -78341587,"Terraria",play,0.7,0 -78341587,"Far Cry 3 Blood Dragon",purchase,1.0,0 -78341587,"Far Cry 3 Blood Dragon",play,0.6,0 -78341587,"Hotline Miami",purchase,1.0,0 -78341587,"Hotline Miami",play,0.6,0 -78341587,"Blocks That Matter",purchase,1.0,0 -78341587,"Blocks That Matter",play,0.6,0 -78341587,"Saints Row IV",purchase,1.0,0 -78341587,"Saints Row IV",play,0.5,0 -78341587,"Machinarium",purchase,1.0,0 -78341587,"Machinarium",play,0.4,0 -78341587,"Cogs",purchase,1.0,0 -78341587,"Cogs",play,0.4,0 -78341587,"Garry's Mod",purchase,1.0,0 -78341587,"Garry's Mod",play,0.4,0 -78341587,"Joe Danger 2 The Movie",purchase,1.0,0 -78341587,"Joe Danger 2 The Movie",play,0.4,0 -78341587,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -78341587,"Tiny and Big Grandpa's Leftovers",play,0.4,0 -78341587,"Osmos",purchase,1.0,0 -78341587,"Osmos",play,0.3,0 -78341587,"The Binding of Isaac",purchase,1.0,0 -78341587,"The Binding of Isaac",play,0.3,0 -78341587,"Steel Storm Burning Retribution",purchase,1.0,0 -78341587,"Steel Storm Burning Retribution",play,0.3,0 -78341587,"DEFCON",purchase,1.0,0 -78341587,"DEFCON",play,0.3,0 -78341587,"Gratuitous Space Battles",purchase,1.0,0 -78341587,"Gratuitous Space Battles",play,0.2,0 -78341587,"Crayon Physics Deluxe",purchase,1.0,0 -78341587,"Crayon Physics Deluxe",play,0.2,0 -78341587,"Amnesia The Dark Descent",purchase,1.0,0 -78341587,"Amnesia The Dark Descent",play,0.2,0 -78341587,"FEZ",purchase,1.0,0 -78341587,"FEZ",play,0.2,0 -78341587,"Strike Suit Zero",purchase,1.0,0 -78341587,"Strike Suit Zero",play,0.2,0 -78341587,"VVVVVV",purchase,1.0,0 -78341587,"VVVVVV",play,0.2,0 -78341587,"Frozen Synapse",purchase,1.0,0 -78341587,"Frozen Synapse",play,0.1,0 -78341587,"RACE 07",purchase,1.0,0 -78341587,"RACE 07",play,0.1,0 -78341587,"And Yet It Moves",purchase,1.0,0 -78341587,"And Yet It Moves",play,0.1,0 -78341587,"Darwinia",purchase,1.0,0 -78341587,"Darwinia",play,0.1,0 -78341587,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -78341587,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",play,0.1,0 -78341587,"Test Drive Unlimited 2",purchase,1.0,0 -78341587,"Test Drive Unlimited 2",play,0.1,0 -78341587,"LEGO MARVEL Super Heroes",purchase,1.0,0 -78341587,"LEGO MARVEL Super Heroes",play,0.1,0 -78341587,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -78341587,"The Elder Scrolls IV Oblivion ",play,0.1,0 -78341587,"StarForge",purchase,1.0,0 -78341587,"StarForge",play,0.1,0 -78341587,"Gish",purchase,1.0,0 -78341587,"Crysis Wars",purchase,1.0,0 -78341587,"Cave Story+",purchase,1.0,0 -78341587,"The Elder Scrolls III Morrowind",purchase,1.0,0 -78341587,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -78341587,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -78341587,"Sleeping Dogs",purchase,1.0,0 -78341587,"Organ Trail Director's Cut",purchase,1.0,0 -78341587,"Dustforce",purchase,1.0,0 -78341587,"Batman Arkham City GOTY",purchase,1.0,0 -78341587,"Saints Row 2",purchase,1.0,0 -78341587,"Metro 2033",purchase,1.0,0 -78341587,"Shadowgrounds",purchase,1.0,0 -78341587,"GTR Evolution",purchase,1.0,0 -78341587,"F.E.A.R. 3",purchase,1.0,0 -78341587,"F.E.A.R.",purchase,1.0,0 -78341587,"Shadowgrounds Survivor",purchase,1.0,0 -78341587,"3DMark API Overhead feature test",purchase,1.0,0 -78341587,"3DMark Cloud Gate benchmark",purchase,1.0,0 -78341587,"3DMark Fire Strike benchmark",purchase,1.0,0 -78341587,"3DMark Ice Storm benchmark",purchase,1.0,0 -78341587,"3DMark Sky Diver benchmark",purchase,1.0,0 -78341587,"Alpha Protocol",purchase,1.0,0 -78341587,"Aquaria",purchase,1.0,0 -78341587,"Arma Cold War Assault",purchase,1.0,0 -78341587,"Awesomenauts",purchase,1.0,0 -78341587,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -78341587,"Binary Domain",purchase,1.0,0 -78341587,"BioShock 2",purchase,1.0,0 -78341587,"BioShock Infinite",purchase,1.0,0 -78341587,"Braid",purchase,1.0,0 -78341587,"Capsized",purchase,1.0,0 -78341587,"Company of Heroes",purchase,1.0,0 -78341587,"Company of Heroes (New Steam Version)",purchase,1.0,0 -78341587,"Company of Heroes Opposing Fronts",purchase,1.0,0 -78341587,"Company of Heroes Tales of Valor",purchase,1.0,0 -78341587,"Cortex Command",purchase,1.0,0 -78341587,"Crysis Warhead",purchase,1.0,0 -78341587,"Darksiders",purchase,1.0,0 -78341587,"Dear Esther",purchase,1.0,0 -78341587,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -78341587,"Dino D-Day",purchase,1.0,0 -78341587,"Don't Starve",purchase,1.0,0 -78341587,"Don't Starve Together Beta",purchase,1.0,0 -78341587,"Dungeons of Dredmor",purchase,1.0,0 -78341587,"English Country Tune",purchase,1.0,0 -78341587,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -78341587,"F.E.A.R. Extraction Point",purchase,1.0,0 -78341587,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -78341587,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -78341587,"Fallout New Vegas Dead Money",purchase,1.0,0 -78341587,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -78341587,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -78341587,"Guardians of Middle-earth",purchase,1.0,0 -78341587,"Gun Monkeys",purchase,1.0,0 -78341587,"Half-Life",purchase,1.0,0 -78341587,"Half-Life 2",purchase,1.0,0 -78341587,"Half-Life 2 Deathmatch",purchase,1.0,0 -78341587,"Half-Life 2 Episode One",purchase,1.0,0 -78341587,"Half-Life 2 Episode Two",purchase,1.0,0 -78341587,"Half-Life 2 Lost Coast",purchase,1.0,0 -78341587,"Half-Life Blue Shift",purchase,1.0,0 -78341587,"Half-Life Opposing Force",purchase,1.0,0 -78341587,"Half-Life Source",purchase,1.0,0 -78341587,"Half-Life Deathmatch Source",purchase,1.0,0 -78341587,"Hammerfight",purchase,1.0,0 -78341587,"Hell Yeah!",purchase,1.0,0 -78341587,"HOARD",purchase,1.0,0 -78341587,"Jet Set Radio",purchase,1.0,0 -78341587,"Left 4 Dead 2",purchase,1.0,0 -78341587,"Legend of Grimrock",purchase,1.0,0 -78341587,"LIMBO",purchase,1.0,0 -78341587,"Little Inferno",purchase,1.0,0 -78341587,"Mark of the Ninja Special Edition DLC",purchase,1.0,0 -78341587,"Mass Effect",purchase,1.0,0 -78341587,"Mass Effect 2",purchase,1.0,0 -78341587,"Medieval II Total War",purchase,1.0,0 -78341587,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -78341587,"Mortal Kombat Kollection",purchase,1.0,0 -78341587,"Multiwinia",purchase,1.0,0 -78341587,"Natural Selection 2",purchase,1.0,0 -78341587,"NightSky",purchase,1.0,0 -78341587,"Oil Rush",purchase,1.0,0 -78341587,"Papo & Yo",purchase,1.0,0 -78341587,"Portal Stories Mel",purchase,1.0,0 -78341587,"Proteus",purchase,1.0,0 -78341587,"Psychonauts",purchase,1.0,0 -78341587,"Psychonauts Demo",purchase,1.0,0 -78341587,"RaceRoom Racing Experience ",purchase,1.0,0 -78341587,"Red Faction Armageddon",purchase,1.0,0 -78341587,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -78341587,"Renegade Ops",purchase,1.0,0 -78341587,"Retro City Rampage DX",purchase,1.0,0 -78341587,"Reus",purchase,1.0,0 -78341587,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -78341587,"Rochard",purchase,1.0,0 -78341587,"Rome Total War",purchase,1.0,0 -78341587,"Scribblenauts Unlimited",purchase,1.0,0 -78341587,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -78341587,"Shank",purchase,1.0,0 -78341587,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -78341587,"Space Pirates and Zombies",purchase,1.0,0 -78341587,"Surgeon Simulator",purchase,1.0,0 -78341587,"Team Fortress Classic",purchase,1.0,0 -78341587,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -78341587,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -78341587,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -78341587,"The Lord of the Rings War in the North",purchase,1.0,0 -78341587,"The Typing of The Dead Overkill",purchase,1.0,0 -78341587,"Thomas Was Alone",purchase,1.0,0 -78341587,"Titan Quest",purchase,1.0,0 -78341587,"Toki Tori 2+",purchase,1.0,0 -78341587,"To the Moon",purchase,1.0,0 -78341587,"TRAUMA",purchase,1.0,0 -78341587,"Trine 2",purchase,1.0,0 -78341587,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -78341587,"Vessel",purchase,1.0,0 -78341587,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -78341587,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -78341587,"Wizorb",purchase,1.0,0 -108183518,"Dota 2",purchase,1.0,0 -108183518,"Dota 2",play,251.0,0 -108183518,"Archeblade",purchase,1.0,0 -108183518,"Battle Nations",purchase,1.0,0 -108183518,"FreeStyle2 Street Basketball",purchase,1.0,0 -108183518,"GunZ 2 The Second Duel",purchase,1.0,0 -108183518,"Heroes & Generals",purchase,1.0,0 -108183518,"Marvel Heroes 2015",purchase,1.0,0 -108183518,"Ragnarok Online 2",purchase,1.0,0 -108183518,"Warframe",purchase,1.0,0 -106235885,"Nether",purchase,1.0,0 -106235885,"Nether",play,2.2,0 -106235885,"SpeedRunners",purchase,1.0,0 -106235885,"SpeedRunners",play,2.1,0 -106235885,"SkyDrift",purchase,1.0,0 -106235885,"SkyDrift",play,0.2,0 -39010350,"Half-Life 2 Deathmatch",purchase,1.0,0 -39010350,"Half-Life 2 Lost Coast",purchase,1.0,0 -87832209,"Counter-Strike Global Offensive",purchase,1.0,0 -87832209,"Counter-Strike Global Offensive",play,285.0,0 -87832209,"Realm of the Mad God",purchase,1.0,0 -87832209,"Realm of the Mad God",play,129.0,0 -87832209,"Batman Arkham City GOTY",purchase,1.0,0 -87832209,"Batman Arkham City GOTY",play,65.0,0 -87832209,"Awesomenauts",purchase,1.0,0 -87832209,"Awesomenauts",play,35.0,0 -87832209,"Ace of Spades",purchase,1.0,0 -87832209,"Ace of Spades",play,27.0,0 -87832209,"Left 4 Dead 2",purchase,1.0,0 -87832209,"Left 4 Dead 2",play,16.6,0 -87832209,"Dragon Nest Europe",purchase,1.0,0 -87832209,"Dragon Nest Europe",play,14.9,0 -87832209,"Team Fortress 2",purchase,1.0,0 -87832209,"Team Fortress 2",play,12.4,0 -87832209,"Loadout",purchase,1.0,0 -87832209,"Loadout",play,11.0,0 -87832209,"The Binding of Isaac",purchase,1.0,0 -87832209,"The Binding of Isaac",play,10.7,0 -87832209,"War Inc. Battlezone",purchase,1.0,0 -87832209,"War Inc. Battlezone",play,9.9,0 -87832209,"Terraria",purchase,1.0,0 -87832209,"Terraria",play,7.4,0 -87832209,"Smashmuck Champions",purchase,1.0,0 -87832209,"Smashmuck Champions",play,7.1,0 -87832209,"Minimum",purchase,1.0,0 -87832209,"Minimum",play,6.9,0 -87832209,"The Mighty Quest For Epic Loot",purchase,1.0,0 -87832209,"The Mighty Quest For Epic Loot",play,6.5,0 -87832209,"Insurgency Modern Infantry Combat",purchase,1.0,0 -87832209,"Insurgency Modern Infantry Combat",play,5.0,0 -87832209,"Neverwinter",purchase,1.0,0 -87832209,"Neverwinter",play,3.1,0 -87832209,"Magicka Wizard Wars",purchase,1.0,0 -87832209,"Magicka Wizard Wars",play,3.0,0 -87832209,"BRINK",purchase,1.0,0 -87832209,"BRINK",play,2.3,0 -87832209,"Dead Island Epidemic",purchase,1.0,0 -87832209,"Dead Island Epidemic",play,2.1,0 -87832209,"Royal Quest",purchase,1.0,0 -87832209,"Royal Quest",play,1.3,0 -87832209,"Magicka",purchase,1.0,0 -87832209,"Magicka",play,1.3,0 -87832209,"Unturned",purchase,1.0,0 -87832209,"Unturned",play,1.2,0 -87832209,"Defense Grid The Awakening",purchase,1.0,0 -87832209,"Defense Grid The Awakening",play,1.1,0 -87832209,"Dota 2",purchase,1.0,0 -87832209,"Dota 2",play,0.9,0 -87832209,"Firefall",purchase,1.0,0 -87832209,"Firefall",play,0.8,0 -87832209,"Dungeon Siege III",purchase,1.0,0 -87832209,"Dungeon Siege III",play,0.2,0 -87832209,"Alan Wake",purchase,1.0,0 -87832209,"Alan Wake",play,0.2,0 -87832209,"CroNix",purchase,1.0,0 -87832209,"CroNix",play,0.2,0 -87832209,"Magic Barrage - Bitferno",purchase,1.0,0 -87832209,"Magic Barrage - Bitferno",play,0.1,0 -87832209,"Super Meat Boy",purchase,1.0,0 -87832209,"Defy Gravity",purchase,1.0,0 -87832209,"Cubic Castles",purchase,1.0,0 -87832209,"Loadout Campaign Beta",purchase,1.0,0 -87832209,"Insurgency",purchase,1.0,0 -87832209,"Metro 2033",purchase,1.0,0 -87832209,"Trove",purchase,1.0,0 -87832209,"Warface",purchase,1.0,0 -87832209,"Warframe",purchase,1.0,0 -87832209,"Wickland",purchase,1.0,0 -115806772,"Mad Max",purchase,1.0,0 -115806772,"Mad Max",play,55.0,0 -115806772,"Dota 2",purchase,1.0,0 -115806772,"Dota 2",play,0.5,0 -115806772,"Grand Theft Auto San Andreas",purchase,1.0,0 -115806772,"Grand Theft Auto San Andreas",play,0.2,0 -115806772,"Grand Theft Auto San Andreas",purchase,1.0,0 -18869916,"Counter-Strike",purchase,1.0,0 -18869916,"Counter-Strike",play,2.2,0 -18869916,"Counter-Strike Condition Zero",purchase,1.0,0 -18869916,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -18869916,"Day of Defeat",purchase,1.0,0 -18869916,"Deathmatch Classic",purchase,1.0,0 -18869916,"Ricochet",purchase,1.0,0 -10216256,"Half-Life 2 Episode Two",purchase,1.0,0 -10216256,"Half-Life 2 Episode Two",play,2.7,0 -10216256,"Counter-Strike Source",purchase,1.0,0 -10216256,"Half-Life 2",purchase,1.0,0 -10216256,"Half-Life 2 Deathmatch",purchase,1.0,0 -10216256,"Half-Life 2 Episode One",purchase,1.0,0 -10216256,"Half-Life 2 Lost Coast",purchase,1.0,0 -10216256,"Half-Life Deathmatch Source",purchase,1.0,0 -10216256,"Portal",purchase,1.0,0 -10216256,"Shadowgrounds",purchase,1.0,0 -10216256,"SiN",purchase,1.0,0 -10216256,"SiN Episodes Emergence",purchase,1.0,0 -10216256,"SiN Multiplayer",purchase,1.0,0 -259994621,"AdVenture Capitalist",purchase,1.0,0 -259994621,"AdVenture Capitalist",play,0.9,0 -65421540,"Counter-Strike Source",purchase,1.0,0 -65421540,"Counter-Strike Source",play,335.0,0 -65421540,"Half-Life 2 Lost Coast",purchase,1.0,0 -65421540,"Half-Life 2 Lost Coast",play,3.8,0 -65421540,"Half-Life 2 Deathmatch",purchase,1.0,0 -65421540,"Half-Life 2 Deathmatch",play,3.5,0 -65421540,"Day of Defeat Source",purchase,1.0,0 -65421540,"Day of Defeat Source",play,1.7,0 -65421540,"Alien Swarm",purchase,1.0,0 -65421540,"Alien Swarm",play,0.2,0 -5232588,"Counter-Strike",purchase,1.0,0 -5232588,"Counter-Strike",play,6.5,0 -5232588,"Ricochet",purchase,1.0,0 -5232588,"Ricochet",play,0.5,0 -5232588,"Day of Defeat",purchase,1.0,0 -5232588,"Day of Defeat",play,0.2,0 -5232588,"Half-Life",purchase,1.0,0 -5232588,"Deathmatch Classic",purchase,1.0,0 -5232588,"Half-Life Blue Shift",purchase,1.0,0 -5232588,"Half-Life Opposing Force",purchase,1.0,0 -5232588,"Team Fortress Classic",purchase,1.0,0 -37092665,"Half-Life 2",purchase,1.0,0 -37092665,"Half-Life 2",play,9.7,0 -37092665,"Half-Life 2 Episode One",purchase,1.0,0 -67628444,"Sid Meier's Civilization V",purchase,1.0,0 -67628444,"Sid Meier's Civilization V",play,16.5,0 -67628444,"Portal",purchase,1.0,0 -67628444,"Portal",play,1.1,0 -67628444,"Half-Life 2",purchase,1.0,0 -67628444,"Half-Life 2",play,0.8,0 -67628444,"Alien Swarm",purchase,1.0,0 -67628444,"Alien Swarm",play,0.5,0 -67628444,"Team Fortress 2",purchase,1.0,0 -67628444,"Team Fortress 2",play,0.3,0 -67628444,"Half-Life 2 Episode One",purchase,1.0,0 -67628444,"Half-Life 2 Episode Two",purchase,1.0,0 -67628444,"Half-Life 2 Lost Coast",purchase,1.0,0 -67628444,"Left 4 Dead 2",purchase,1.0,0 -67628444,"Mass Effect",purchase,1.0,0 -67628444,"SimCity 4 Deluxe",purchase,1.0,0 -195800610,"Counter-Strike Source",purchase,1.0,0 -195800610,"Counter-Strike Source",play,3.8,0 -195800610,"Day of Defeat Source",purchase,1.0,0 -195800610,"Half-Life 2 Deathmatch",purchase,1.0,0 -195800610,"Half-Life 2 Lost Coast",purchase,1.0,0 -206210282,"Dota 2",purchase,1.0,0 -206210282,"Dota 2",play,795.0,0 -206210282,"Counter-Strike Global Offensive",purchase,1.0,0 -206210282,"Counter-Strike Global Offensive",play,34.0,0 -206210282,"Robocraft",purchase,1.0,0 -206210282,"Robocraft",play,0.3,0 -206210282,"PAYDAY The Heist",purchase,1.0,0 -206210282,"America's Army Proving Grounds",purchase,1.0,0 -206210282,"Counter-Strike Nexon Zombies",purchase,1.0,0 -206210282,"Dead Island Epidemic",purchase,1.0,0 -206210282,"Prime World",purchase,1.0,0 -206210282,"Unturned",purchase,1.0,0 -206210282,"Warframe",purchase,1.0,0 -17299575,"Half-Life 2",purchase,1.0,0 -17299575,"Half-Life 2",play,16.1,0 -17299575,"Counter-Strike Source",purchase,1.0,0 -17299575,"Half-Life",purchase,1.0,0 -17299575,"Half-Life 2 Deathmatch",purchase,1.0,0 -17299575,"Half-Life 2 Lost Coast",purchase,1.0,0 -17299575,"Half-Life Blue Shift",purchase,1.0,0 -17299575,"Half-Life Opposing Force",purchase,1.0,0 -17299575,"Team Fortress Classic",purchase,1.0,0 -287668512,"Team Fortress 2",purchase,1.0,0 -287668512,"Team Fortress 2",play,92.0,0 -287668512,"Trove",purchase,1.0,0 -287668512,"Trove",play,0.9,0 -193442134,"Dota 2",purchase,1.0,0 -193442134,"Dota 2",play,18.7,0 -15680561,"Half-Life 2",purchase,1.0,0 -15680561,"Half-Life 2",play,11.2,0 -15680561,"Team Fortress 2",purchase,1.0,0 -15680561,"Team Fortress 2",play,1.5,0 -15680561,"Dear Esther",purchase,1.0,0 -15680561,"Dear Esther",play,0.3,0 -15680561,"Counter-Strike Source",purchase,1.0,0 -15680561,"Half-Life 2 Deathmatch",purchase,1.0,0 -15680561,"Half-Life 2 Episode One",purchase,1.0,0 -15680561,"Half-Life 2 Lost Coast",purchase,1.0,0 -101030173,"Duke Nukem Forever",purchase,1.0,0 -101030173,"Duke Nukem Forever",play,4.1,0 -57798235,"Dota 2",purchase,1.0,0 -57798235,"Dota 2",play,1840.0,0 -57798235,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -57798235,"Call of Duty Modern Warfare 2 - Multiplayer",play,215.0,0 -57798235,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -57798235,"Call of Duty Modern Warfare 3 - Multiplayer",play,45.0,0 -57798235,"Counter-Strike",purchase,1.0,0 -57798235,"Counter-Strike",play,45.0,0 -57798235,"Call of Duty Modern Warfare 2",purchase,1.0,0 -57798235,"Call of Duty Modern Warfare 2",play,25.0,0 -57798235,"Mafia II",purchase,1.0,0 -57798235,"Mafia II",play,16.0,0 -57798235,"Call of Duty Black Ops",purchase,1.0,0 -57798235,"Call of Duty Black Ops",play,15.2,0 -57798235,"Call of Duty Modern Warfare 3",purchase,1.0,0 -57798235,"Call of Duty Modern Warfare 3",play,9.9,0 -57798235,"Left 4 Dead 2",purchase,1.0,0 -57798235,"Left 4 Dead 2",play,9.2,0 -57798235,"Team Fortress 2",purchase,1.0,0 -57798235,"Team Fortress 2",play,7.9,0 -57798235,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -57798235,"Call of Duty Black Ops - Multiplayer",play,4.5,0 -57798235,"Alien Swarm",purchase,1.0,0 -57798235,"Alien Swarm",play,0.6,0 -57798235,"TERA",purchase,1.0,0 -57798235,"TERA",play,0.4,0 -57798235,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -57798235,"Counter-Strike Condition Zero Deleted Scenes",play,0.2,0 -57798235,"Deathmatch Classic",purchase,1.0,0 -57798235,"Deathmatch Classic",play,0.1,0 -57798235,"Day of Defeat",purchase,1.0,0 -57798235,"Counter-Strike Condition Zero",purchase,1.0,0 -57798235,"Heroes & Generals",purchase,1.0,0 -57798235,"Ricochet",purchase,1.0,0 -286468828,"Dota 2",purchase,1.0,0 -286468828,"Dota 2",play,2.0,0 -240704163,"War Thunder",purchase,1.0,0 -288449536,"Dota 2",purchase,1.0,0 -288449536,"Dota 2",play,3.1,0 -138483324,"Dota 2",purchase,1.0,0 -138483324,"Dota 2",play,24.0,0 -139769742,"Dota 2",purchase,1.0,0 -139769742,"Dota 2",play,0.2,0 -253389413,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -215833301,"Team Fortress 2",purchase,1.0,0 -215833301,"Team Fortress 2",play,244.0,0 -215833301,"Robocraft",purchase,1.0,0 -215833301,"Robocraft",play,4.6,0 -260132853,"Dota 2",purchase,1.0,0 -260132853,"Dota 2",play,3.5,0 -217917011,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -217917011,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,19.1,0 -77792512,"Supreme Commander 2",purchase,1.0,0 -77792512,"Supreme Commander 2",play,37.0,0 -77792512,"Call of Juarez The Cartel",purchase,1.0,0 -77792512,"Call of Juarez The Cartel",play,4.3,0 -77792512,"Sleeping Dogs",purchase,1.0,0 -77792512,"Sleeping Dogs",play,1.5,0 -285282740,"Counter-Strike Global Offensive",purchase,1.0,0 -285282740,"Counter-Strike Global Offensive",play,15.2,0 -285282740,"Blacklight Retribution",purchase,1.0,0 -285282740,"Dirty Bomb",purchase,1.0,0 -285282740,"PlanetSide 2",purchase,1.0,0 -285282740,"Unturned",purchase,1.0,0 -285282740,"Warframe",purchase,1.0,0 -285282740,"War Thunder",purchase,1.0,0 -147859903,"Sid Meier's Civilization V",purchase,1.0,0 -147859903,"Sid Meier's Civilization V",play,45.0,0 -147859903,"Bastion",purchase,1.0,0 -147859903,"Bastion",play,34.0,0 -147859903,"Antichamber",purchase,1.0,0 -147859903,"Antichamber",play,10.8,0 -147859903,"Portal 2",purchase,1.0,0 -147859903,"Portal 2",play,9.7,0 -147859903,"The Long Dark",purchase,1.0,0 -147859903,"The Long Dark",play,6.9,0 -147859903,"Besiege",purchase,1.0,0 -147859903,"Besiege",play,6.2,0 -147859903,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -147859903,"Superbrothers Sword & Sworcery EP",play,5.5,0 -147859903,"The Swapper",purchase,1.0,0 -147859903,"The Swapper",play,4.7,0 -147859903,"Monaco",purchase,1.0,0 -147859903,"Monaco",play,4.5,0 -147859903,"The Vanishing of Ethan Carter",purchase,1.0,0 -147859903,"The Vanishing of Ethan Carter",play,4.4,0 -147859903,"Portal",purchase,1.0,0 -147859903,"Portal",play,3.7,0 -147859903,"Guns of Icarus Online",purchase,1.0,0 -147859903,"Guns of Icarus Online",play,3.7,0 -147859903,"Team Fortress 2",purchase,1.0,0 -147859903,"Team Fortress 2",play,3.6,0 -147859903,"Fistful of Frags",purchase,1.0,0 -147859903,"Fistful of Frags",play,3.6,0 -147859903,"Insurgency",purchase,1.0,0 -147859903,"Insurgency",play,3.0,0 -147859903,"Transistor",purchase,1.0,0 -147859903,"Transistor",play,2.8,0 -147859903,"DEFCON",purchase,1.0,0 -147859903,"DEFCON",play,2.4,0 -147859903,"The Stanley Parable",purchase,1.0,0 -147859903,"The Stanley Parable",play,2.1,0 -147859903,"Super Hexagon",purchase,1.0,0 -147859903,"Super Hexagon",play,1.9,0 -147859903,"FEZ",purchase,1.0,0 -147859903,"FEZ",play,1.9,0 -147859903,"Half-Life Opposing Force",purchase,1.0,0 -147859903,"Half-Life Opposing Force",play,1.5,0 -147859903,"This War of Mine",purchase,1.0,0 -147859903,"This War of Mine",play,1.4,0 -147859903,"Guacamelee! Gold Edition",purchase,1.0,0 -147859903,"Guacamelee! Gold Edition",play,1.3,0 -147859903,"Dota 2",purchase,1.0,0 -147859903,"Dota 2",play,1.3,0 -147859903,"The Banner Saga",purchase,1.0,0 -147859903,"The Banner Saga",play,0.9,0 -147859903,"Lambda Wars Beta",purchase,1.0,0 -147859903,"Lambda Wars Beta",play,0.7,0 -147859903,"DCS World",purchase,1.0,0 -147859903,"DCS World",play,0.3,0 -147859903,"Amnesia The Dark Descent",purchase,1.0,0 -147859903,"Amnesia The Dark Descent",play,0.3,0 -147859903,"The Vanishing of Ethan Carter Redux",purchase,1.0,0 -147859903,"The Vanishing of Ethan Carter Redux",play,0.3,0 -147859903,"Planetary Annihilation",purchase,1.0,0 -147859903,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -147859903,"Chivalry Medieval Warfare",purchase,1.0,0 -147859903,"Clicker Heroes",purchase,1.0,0 -147859903,"Dust An Elysian Tail",purchase,1.0,0 -147859903,"Giana Sisters Twisted Dreams",purchase,1.0,0 -147859903,"Gotham City Impostors Free To Play",purchase,1.0,0 -147859903,"Heroes & Generals",purchase,1.0,0 -147859903,"Kentucky Route Zero",purchase,1.0,0 -147859903,"ORION Prelude",purchase,1.0,0 -147859903,"Patch testing for Chivalry",purchase,1.0,0 -147859903,"PlanetSide 2",purchase,1.0,0 -147859903,"Sid Meier's Civilization IV",purchase,1.0,0 -147859903,"Sid Meier's Civilization IV",purchase,1.0,0 -147859903,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -147859903,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -147859903,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -147859903,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -147859903,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -147859903,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -147859903,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -147859903,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -147859903,"Starseed Pilgrim",purchase,1.0,0 -147859903,"The Banner Saga - Mod Content",purchase,1.0,0 -147859903,"The Expendabros",purchase,1.0,0 -210860489,"Coldfire Keep",purchase,1.0,0 -95761491,"Counter-Strike",purchase,1.0,0 -95761491,"Counter-Strike",play,8.8,0 -95761491,"Counter-Strike Condition Zero",purchase,1.0,0 -95761491,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -47506504,"Empire Total War",purchase,1.0,0 -47506504,"Empire Total War",play,0.4,0 -154527422,"Dota 2",purchase,1.0,0 -154527422,"Dota 2",play,1.7,0 -204829406,"Team Fortress 2",purchase,1.0,0 -204829406,"Team Fortress 2",play,1.3,0 -204829406,"Get Off My Lawn!",purchase,1.0,0 -204829406,"TOME Immortal Arena",purchase,1.0,0 -190961031,"Dota 2",purchase,1.0,0 -190961031,"Dota 2",play,0.6,0 -170384573,"Dota 2",purchase,1.0,0 -170384573,"Dota 2",play,1.6,0 -90541290,"Counter-Strike Source",purchase,1.0,0 -90541290,"Counter-Strike Source",play,204.0,0 -90541290,"Saints Row 2",purchase,1.0,0 -90541290,"Saints Row 2",play,120.0,0 -90541290,"Team Fortress 2",purchase,1.0,0 -90541290,"Team Fortress 2",play,106.0,0 -90541290,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -90541290,"Call of Duty Black Ops - Multiplayer",play,70.0,0 -90541290,"Garry's Mod",purchase,1.0,0 -90541290,"Garry's Mod",play,66.0,0 -90541290,"Saints Row The Third",purchase,1.0,0 -90541290,"Saints Row The Third",play,61.0,0 -90541290,"Left 4 Dead 2",purchase,1.0,0 -90541290,"Left 4 Dead 2",play,26.0,0 -90541290,"Dungeon Defenders",purchase,1.0,0 -90541290,"Dungeon Defenders",play,21.0,0 -90541290,"Half-Life 2 Deathmatch",purchase,1.0,0 -90541290,"Half-Life 2 Deathmatch",play,15.6,0 -90541290,"Age of Chivalry",purchase,1.0,0 -90541290,"Age of Chivalry",play,8.2,0 -90541290,"Call of Duty Black Ops",purchase,1.0,0 -90541290,"Call of Duty Black Ops",play,7.4,0 -90541290,"Day of Defeat Source",purchase,1.0,0 -90541290,"Day of Defeat Source",play,6.0,0 -90541290,"Zombie Panic Source",purchase,1.0,0 -90541290,"Zombie Panic Source",play,0.4,0 -90541290,"Half-Life 2 Lost Coast",purchase,1.0,0 -90541290,"Half-Life 2 Lost Coast",play,0.1,0 -82174211,"Counter-Strike Source",purchase,1.0,0 -82174211,"Counter-Strike Source",play,1023.0,0 -82174211,"Counter-Strike Global Offensive",purchase,1.0,0 -82174211,"Counter-Strike Global Offensive",play,267.0,0 -82174211,"Terraria",purchase,1.0,0 -82174211,"Terraria",play,156.0,0 -82174211,"Borderlands 2",purchase,1.0,0 -82174211,"Borderlands 2",play,50.0,0 -82174211,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -82174211,"Call of Duty Modern Warfare 3 - Multiplayer",play,38.0,0 -82174211,"DayZ",purchase,1.0,0 -82174211,"DayZ",play,23.0,0 -82174211,"Age of Empires III Complete Collection",purchase,1.0,0 -82174211,"Age of Empires III Complete Collection",play,17.4,0 -82174211,"Warhammer 40,000 Space Marine",purchase,1.0,0 -82174211,"Warhammer 40,000 Space Marine",play,16.3,0 -82174211,"Orcs Must Die! 2",purchase,1.0,0 -82174211,"Orcs Must Die! 2",play,12.3,0 -82174211,"Clicker Heroes",purchase,1.0,0 -82174211,"Clicker Heroes",play,11.7,0 -82174211,"Orcs Must Die!",purchase,1.0,0 -82174211,"Orcs Must Die!",play,10.1,0 -82174211,"Serious Sam 3 BFE",purchase,1.0,0 -82174211,"Serious Sam 3 BFE",play,9.3,0 -82174211,"Borderlands",purchase,1.0,0 -82174211,"Borderlands",play,6.0,0 -82174211,"Worms Reloaded",purchase,1.0,0 -82174211,"Worms Reloaded",play,3.8,0 -82174211,"Team Fortress 2",purchase,1.0,0 -82174211,"Team Fortress 2",play,1.9,0 -82174211,"Unturned",purchase,1.0,0 -82174211,"Unturned",play,1.9,0 -82174211,"Call of Duty Modern Warfare 3",purchase,1.0,0 -82174211,"Call of Duty Modern Warfare 3",play,1.5,0 -82174211,"PAYDAY The Heist",purchase,1.0,0 -82174211,"PAYDAY The Heist",play,1.4,0 -82174211,"The Binding of Isaac",purchase,1.0,0 -82174211,"The Binding of Isaac",play,1.4,0 -82174211,"Nosgoth",purchase,1.0,0 -82174211,"Nosgoth",play,0.6,0 -82174211,"Dota 2",purchase,1.0,0 -82174211,"Dota 2",play,0.4,0 -82174211,"The Expendabros",purchase,1.0,0 -82174211,"The Expendabros",play,0.1,0 -82174211,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -82174211,"Saints Row The Third",purchase,1.0,0 -82174211,"Survarium",purchase,1.0,0 -82174211,"Tom Clancy's Ghost Recon Advanced Warfighter 2",purchase,1.0,0 -82174211,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -162179898,"Dota 2",purchase,1.0,0 -162179898,"Dota 2",play,0.7,0 -192436140,"Dota 2",purchase,1.0,0 -192436140,"Dota 2",play,1577.0,0 -238466173,"Dota 2",purchase,1.0,0 -238466173,"Dota 2",play,9.2,0 -298222970,"The Witcher 3 Wild Hunt",purchase,1.0,0 -298222970,"The Witcher 3 Wild Hunt",play,159.0,0 -298222970,"Sid Meier's Civilization V",purchase,1.0,0 -298222970,"Sid Meier's Civilization V",play,42.0,0 -298222970,"The Elder Scrolls V Skyrim",purchase,1.0,0 -298222970,"The Elder Scrolls V Skyrim",play,1.7,0 -298222970,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -298222970,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -298222970,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -298222970,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -298222970,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -298222970,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -298222970,"The Witcher 3 Wild Hunt - Expansion Pass",purchase,1.0,0 -298222970,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -303300985,"Dota 2",purchase,1.0,0 -303300985,"Dota 2",play,56.0,0 -207406826,"Dota 2",purchase,1.0,0 -207406826,"Dota 2",play,4.4,0 -207406826,"Divine Souls",purchase,1.0,0 -207406826,"Warframe",purchase,1.0,0 -85547059,"Team Fortress 2",purchase,1.0,0 -85547059,"Team Fortress 2",play,2.3,0 -260686668,"Dota 2",purchase,1.0,0 -260686668,"Dota 2",play,0.8,0 -96014467,"Total War ROME II - Emperor Edition",purchase,1.0,0 -96014467,"Total War ROME II - Emperor Edition",play,689.0,0 -96014467,"Total War SHOGUN 2",purchase,1.0,0 -96014467,"Total War SHOGUN 2",play,621.0,0 -96014467,"Might & Magic Heroes VI",purchase,1.0,0 -96014467,"Might & Magic Heroes VI",play,519.0,0 -96014467,"The Elder Scrolls V Skyrim",purchase,1.0,0 -96014467,"The Elder Scrolls V Skyrim",play,242.0,0 -96014467,"Wargame Red Dragon",purchase,1.0,0 -96014467,"Wargame Red Dragon",play,183.0,0 -96014467,"Total War ATTILA",purchase,1.0,0 -96014467,"Total War ATTILA",play,182.0,0 -96014467,"Empire Total War",purchase,1.0,0 -96014467,"Empire Total War",play,57.0,0 -96014467,"Arma 3",purchase,1.0,0 -96014467,"Arma 3",play,46.0,0 -96014467,"Call of Duty Ghosts",purchase,1.0,0 -96014467,"Call of Duty Ghosts",play,42.0,0 -96014467,"Medieval II Total War Kingdoms",purchase,1.0,0 -96014467,"Medieval II Total War Kingdoms",play,27.0,0 -96014467,"Medieval II Total War",purchase,1.0,0 -96014467,"Medieval II Total War",play,16.0,0 -96014467,"Rome Total War",purchase,1.0,0 -96014467,"Rome Total War",play,12.9,0 -96014467,"Napoleon Total War",purchase,1.0,0 -96014467,"Napoleon Total War",play,12.3,0 -96014467,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -96014467,"Call of Duty Ghosts - Multiplayer",play,11.8,0 -96014467,"Banished",purchase,1.0,0 -96014467,"Banished",play,11.6,0 -96014467,"Arma 2 Operation Arrowhead",purchase,1.0,0 -96014467,"Arma 2 Operation Arrowhead",play,10.2,0 -96014467,"DayZ",purchase,1.0,0 -96014467,"DayZ",play,9.6,0 -96014467,"Men of War Assault Squad 2",purchase,1.0,0 -96014467,"Men of War Assault Squad 2",play,6.6,0 -96014467,"Far Cry 2",purchase,1.0,0 -96014467,"Far Cry 2",play,6.2,0 -96014467,"War Thunder",purchase,1.0,0 -96014467,"War Thunder",play,6.0,0 -96014467,"Wargame European Escalation",purchase,1.0,0 -96014467,"Wargame European Escalation",play,4.3,0 -96014467,"GRID 2",purchase,1.0,0 -96014467,"GRID 2",play,3.7,0 -96014467,"The Elder Scrolls Online Tamriel Unlimited",purchase,1.0,0 -96014467,"The Elder Scrolls Online Tamriel Unlimited",play,3.0,0 -96014467,"Dota 2",purchase,1.0,0 -96014467,"Dota 2",play,2.6,0 -96014467,"Company of Heroes 2",purchase,1.0,0 -96014467,"Company of Heroes 2",play,1.1,0 -96014467,"Arma 2",purchase,1.0,0 -96014467,"Arma 2",play,1.0,0 -96014467,"Grand Theft Auto IV",purchase,1.0,0 -96014467,"Grand Theft Auto IV",play,0.3,0 -96014467,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -96014467,"Grand Theft Auto Episodes from Liberty City",play,0.3,0 -96014467,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -96014467,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,0.1,0 -96014467,"Arma 2 British Armed Forces",purchase,1.0,0 -96014467,"Arma 2 DayZ Mod",purchase,1.0,0 -96014467,"Arma 2 Private Military Company",purchase,1.0,0 -96014467,"Arma 3 Karts",purchase,1.0,0 -96014467,"Arma 3 Zeus",purchase,1.0,0 -96014467,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -96014467,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -96014467,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -96014467,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -96014467,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -38055594,"SiN Episodes Emergence",purchase,1.0,0 -38055594,"SiN Episodes Emergence",play,5.7,0 -38055594,"SiN",purchase,1.0,0 -38055594,"SiN",play,0.4,0 -38055594,"Half-Life 2 Deathmatch",purchase,1.0,0 -38055594,"Half-Life 2 Episode One",purchase,1.0,0 -38055594,"Half-Life 2 Lost Coast",purchase,1.0,0 -38055594,"Half-Life Deathmatch Source",purchase,1.0,0 -38055594,"SiN Multiplayer",purchase,1.0,0 -215160630,"PAYDAY 2",purchase,1.0,0 -215160630,"PAYDAY 2",play,284.0,0 -215160630,"Clicker Heroes",purchase,1.0,0 -215160630,"Clicker Heroes",play,153.0,0 -215160630,"The Binding of Isaac Rebirth",purchase,1.0,0 -215160630,"The Binding of Isaac Rebirth",play,130.0,0 -215160630,"Unturned",purchase,1.0,0 -215160630,"Unturned",play,66.0,0 -215160630,"AdVenture Capitalist",purchase,1.0,0 -215160630,"AdVenture Capitalist",play,53.0,0 -215160630,"FINAL FANTASY VII",purchase,1.0,0 -215160630,"FINAL FANTASY VII",play,47.0,0 -215160630,"The Elder Scrolls V Skyrim",purchase,1.0,0 -215160630,"The Elder Scrolls V Skyrim",play,45.0,0 -215160630,"GameMaker Studio",purchase,1.0,0 -215160630,"GameMaker Studio",play,16.6,0 -215160630,"Cry of Fear",purchase,1.0,0 -215160630,"Cry of Fear",play,14.0,0 -215160630,"Trove",purchase,1.0,0 -215160630,"Trove",play,11.6,0 -215160630,"Counter-Strike Global Offensive",purchase,1.0,0 -215160630,"Counter-Strike Global Offensive",play,7.0,0 -215160630,"Realm of the Mad God",purchase,1.0,0 -215160630,"Realm of the Mad God",play,6.0,0 -215160630,"Game Dev Tycoon",purchase,1.0,0 -215160630,"Game Dev Tycoon",play,5.2,0 -215160630,"Spooky's House of Jump Scares",purchase,1.0,0 -215160630,"Spooky's House of Jump Scares",play,5.0,0 -215160630,"No More Room in Hell",purchase,1.0,0 -215160630,"No More Room in Hell",play,4.7,0 -215160630,"The Mighty Quest For Epic Loot",purchase,1.0,0 -215160630,"The Mighty Quest For Epic Loot",play,3.7,0 -215160630,"Team Fortress 2",purchase,1.0,0 -215160630,"Team Fortress 2",play,3.4,0 -215160630,"Card Hunter",purchase,1.0,0 -215160630,"Card Hunter",play,3.2,0 -215160630,"The Binding of Isaac",purchase,1.0,0 -215160630,"The Binding of Isaac",play,3.2,0 -215160630,"Everlasting Summer",purchase,1.0,0 -215160630,"Everlasting Summer",play,1.6,0 -215160630,"TERA",purchase,1.0,0 -215160630,"TERA",play,1.4,0 -215160630,"Super Crate Box",purchase,1.0,0 -215160630,"Super Crate Box",play,1.4,0 -215160630,"Ultimate Tic-Tac-Toe",purchase,1.0,0 -215160630,"Ultimate Tic-Tac-Toe",play,1.3,0 -215160630,"Narcissu 1st & 2nd",purchase,1.0,0 -215160630,"Narcissu 1st & 2nd",play,0.9,0 -215160630,"Path of Exile",purchase,1.0,0 -215160630,"Path of Exile",play,0.5,0 -215160630,"One Manga Day",purchase,1.0,0 -215160630,"One Manga Day",play,0.5,0 -215160630,"Simply Chess",purchase,1.0,0 -215160630,"Simply Chess",play,0.4,0 -215160630,"Robocraft",purchase,1.0,0 -215160630,"Robocraft",play,0.2,0 -215160630,"Without Within",purchase,1.0,0 -215160630,"Without Within",play,0.2,0 -215160630,"Escape",purchase,1.0,0 -215160630,"Escape",play,0.1,0 -215160630,"Toribash",purchase,1.0,0 -215160630,"Invisible Apartment",purchase,1.0,0 -215160630,"Rising Angels Reborn",purchase,1.0,0 -215160630,"Voices from the Sea",purchase,1.0,0 -218952383,"Dota 2",purchase,1.0,0 -218952383,"Dota 2",play,2.1,0 -224943279,"Rocksmith 2014",purchase,1.0,0 -224943279,"Rocksmith 2014",play,1.7,0 -229179750,"Unturned",purchase,1.0,0 -229179750,"Unturned",play,9.8,0 -68049243,"Fallout New Vegas",purchase,1.0,0 -68049243,"Fallout New Vegas",play,59.0,0 -68049243,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -68049243,"Dark Souls Prepare to Die Edition",play,48.0,0 -68049243,"Alien Swarm",purchase,1.0,0 -68049243,"Alien Swarm",play,8.5,0 -68049243,"Portal",purchase,1.0,0 -68049243,"Portal",play,8.2,0 -68049243,"Battlefield Bad Company 2",purchase,1.0,0 -68049243,"Battlefield Bad Company 2",play,4.3,0 -68049243,"Counter-Strike Global Offensive",purchase,1.0,0 -68049243,"Counter-Strike Global Offensive",play,4.0,0 -68049243,"Audiosurf",purchase,1.0,0 -68049243,"Audiosurf",play,1.3,0 -68049243,"Myst Masterpiece Edition",purchase,1.0,0 -68049243,"Myst Masterpiece Edition",play,0.5,0 -68049243,"The Longest Journey",purchase,1.0,0 -68049243,"The Longest Journey",play,0.4,0 -68049243,"Amnesia A Machine for Pigs",purchase,1.0,0 -68049243,"Amnesia A Machine for Pigs",play,0.4,0 -68049243,"Terraria",purchase,1.0,0 -68049243,"Terraria",play,0.1,0 -68049243,"Riven",purchase,1.0,0 -68049243,"Riven",play,0.1,0 -68049243,"BRINK",purchase,1.0,0 -68049243,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -68049243,"Fallout New Vegas Dead Money",purchase,1.0,0 -68049243,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -68049243,"Hunted The Demon's Forge",purchase,1.0,0 -68049243,"The Elder Scrolls V Skyrim",purchase,1.0,0 -68049243,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -115275499,"Dota 2",purchase,1.0,0 -115275499,"Dota 2",play,8.0,0 -115275499,"Free to Play",purchase,1.0,0 -115275499,"Quake Live",purchase,1.0,0 -168377116,"Serious Sam HD The Second Encounter",purchase,1.0,0 -168377116,"Serious Sam HD The Second Encounter",play,17.2,0 -168377116,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -181297952,"Team Fortress 2",purchase,1.0,0 -181297952,"Team Fortress 2",play,13.9,0 -216189719,"Dota 2",purchase,1.0,0 -216189719,"Dota 2",play,0.4,0 -159777976,"Left 4 Dead 2",purchase,1.0,0 -159777976,"Left 4 Dead 2",play,9.3,0 -4325465,"Counter-Strike",purchase,1.0,0 -4325465,"Counter-Strike",play,0.6,0 -4325465,"Day of Defeat",purchase,1.0,0 -4325465,"Deathmatch Classic",purchase,1.0,0 -4325465,"Half-Life",purchase,1.0,0 -4325465,"Half-Life Blue Shift",purchase,1.0,0 -4325465,"Half-Life Opposing Force",purchase,1.0,0 -4325465,"Ricochet",purchase,1.0,0 -4325465,"Team Fortress Classic",purchase,1.0,0 -41934963,"Day of Defeat Source",purchase,1.0,0 -41934963,"Day of Defeat Source",play,257.0,0 -41934963,"Counter-Strike Source",purchase,1.0,0 -41934963,"Half-Life 2 Deathmatch",purchase,1.0,0 -41934963,"Half-Life 2 Lost Coast",purchase,1.0,0 -257603009,"Amnesia The Dark Descent",purchase,1.0,0 -48028873,"PAYDAY 2",purchase,1.0,0 -48028873,"PAYDAY 2",play,202.0,0 -48028873,"Call of Duty World at War",purchase,1.0,0 -48028873,"Call of Duty World at War",play,64.0,0 -48028873,"Fallout 4",purchase,1.0,0 -48028873,"Fallout 4",play,48.0,0 -48028873,"DayZ",purchase,1.0,0 -48028873,"DayZ",play,46.0,0 -48028873,"Metro Last Light",purchase,1.0,0 -48028873,"Metro Last Light",play,33.0,0 -48028873,"Star Wars - Battlefront II",purchase,1.0,0 -48028873,"Star Wars - Battlefront II",play,32.0,0 -48028873,"Garry's Mod",purchase,1.0,0 -48028873,"Garry's Mod",play,31.0,0 -48028873,"Fallout New Vegas",purchase,1.0,0 -48028873,"Fallout New Vegas",play,25.0,0 -48028873,"Far Cry 4",purchase,1.0,0 -48028873,"Far Cry 4",play,23.0,0 -48028873,"Age of Empires II HD Edition",purchase,1.0,0 -48028873,"Age of Empires II HD Edition",play,21.0,0 -48028873,"RPG Maker VX Ace",purchase,1.0,0 -48028873,"RPG Maker VX Ace",play,18.6,0 -48028873,"Bastion",purchase,1.0,0 -48028873,"Bastion",play,17.4,0 -48028873,"resident evil 4 / biohazard 4",purchase,1.0,0 -48028873,"resident evil 4 / biohazard 4",play,17.4,0 -48028873,"Receiver",purchase,1.0,0 -48028873,"Receiver",play,15.7,0 -48028873,"Borderlands 2",purchase,1.0,0 -48028873,"Borderlands 2",play,13.6,0 -48028873,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -48028873,"Resident Evil Revelations 2 / Biohazard Revelations 2",play,13.5,0 -48028873,"Left 4 Dead 2",purchase,1.0,0 -48028873,"Left 4 Dead 2",play,11.3,0 -48028873,"DRAGON BALL XENOVERSE",purchase,1.0,0 -48028873,"DRAGON BALL XENOVERSE",play,10.3,0 -48028873,"King's Quest",purchase,1.0,0 -48028873,"King's Quest",play,9.4,0 -48028873,"Sniper Elite V2",purchase,1.0,0 -48028873,"Sniper Elite V2",play,7.8,0 -48028873,"Grand Theft Auto V",purchase,1.0,0 -48028873,"Grand Theft Auto V",play,7.4,0 -48028873,"Metro 2033 Redux",purchase,1.0,0 -48028873,"Metro 2033 Redux",play,6.9,0 -48028873,"Tabletop Simulator",purchase,1.0,0 -48028873,"Tabletop Simulator",play,6.8,0 -48028873,"Counter-Strike Global Offensive",purchase,1.0,0 -48028873,"Counter-Strike Global Offensive",play,6.7,0 -48028873,"TERA",purchase,1.0,0 -48028873,"TERA",play,5.9,0 -48028873,"Guns of Icarus Online",purchase,1.0,0 -48028873,"Guns of Icarus Online",play,4.8,0 -48028873,"Sniper Elite 3",purchase,1.0,0 -48028873,"Sniper Elite 3",play,4.7,0 -48028873,"Starbound",purchase,1.0,0 -48028873,"Starbound",play,4.3,0 -48028873,"Call of Duty Modern Warfare 2",purchase,1.0,0 -48028873,"Call of Duty Modern Warfare 2",play,4.1,0 -48028873,"Wolfenstein The New Order",purchase,1.0,0 -48028873,"Wolfenstein The New Order",play,3.5,0 -48028873,"Torchlight II",purchase,1.0,0 -48028873,"Torchlight II",play,3.4,0 -48028873,"Half-Life 2",purchase,1.0,0 -48028873,"Half-Life 2",play,3.4,0 -48028873,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -48028873,"Rising Storm/Red Orchestra 2 Multiplayer",play,3.3,0 -48028873,"Borderlands",purchase,1.0,0 -48028873,"Borderlands",play,3.3,0 -48028873,"Amnesia The Dark Descent",purchase,1.0,0 -48028873,"Amnesia The Dark Descent",play,2.6,0 -48028873,"Killing Floor",purchase,1.0,0 -48028873,"Killing Floor",play,2.3,0 -48028873,"Fable - The Lost Chapters",purchase,1.0,0 -48028873,"Fable - The Lost Chapters",play,2.1,0 -48028873,"Metro Last Light Redux",purchase,1.0,0 -48028873,"Metro Last Light Redux",play,2.1,0 -48028873,"Monaco",purchase,1.0,0 -48028873,"Monaco",play,1.9,0 -48028873,"100% Orange Juice",purchase,1.0,0 -48028873,"100% Orange Juice",play,1.8,0 -48028873,"Sniper Elite Nazi Zombie Army 2",purchase,1.0,0 -48028873,"Sniper Elite Nazi Zombie Army 2",play,1.7,0 -48028873,"Tom Clancy's Splinter Cell Chaos Theory",purchase,1.0,0 -48028873,"Tom Clancy's Splinter Cell Chaos Theory",play,1.6,0 -48028873,"Chivalry Medieval Warfare",purchase,1.0,0 -48028873,"Chivalry Medieval Warfare",play,1.4,0 -48028873,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -48028873,"Call of Duty 4 Modern Warfare",play,1.4,0 -48028873,"Beat Hazard",purchase,1.0,0 -48028873,"Beat Hazard",play,1.4,0 -48028873,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -48028873,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,1.4,0 -48028873,"Half-Life 2 Lost Coast",purchase,1.0,0 -48028873,"Half-Life 2 Lost Coast",play,1.3,0 -48028873,"Portal",purchase,1.0,0 -48028873,"Portal",play,1.3,0 -48028873,"ORION Prelude",purchase,1.0,0 -48028873,"ORION Prelude",play,0.9,0 -48028873,"FINAL FANTASY VII",purchase,1.0,0 -48028873,"FINAL FANTASY VII",play,0.9,0 -48028873,"Zombie Army Trilogy",purchase,1.0,0 -48028873,"Zombie Army Trilogy",play,0.7,0 -48028873,"Castle Crashers",purchase,1.0,0 -48028873,"Castle Crashers",play,0.7,0 -48028873,"Sir, You Are Being Hunted",purchase,1.0,0 -48028873,"Sir, You Are Being Hunted",play,0.6,0 -48028873,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -48028873,"Fallout 3 - Game of the Year Edition",play,0.6,0 -48028873,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -48028873,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,0.5,0 -48028873,"Dota 2",purchase,1.0,0 -48028873,"Dota 2",play,0.5,0 -48028873,"Dead Island",purchase,1.0,0 -48028873,"Dead Island",play,0.5,0 -48028873,"Painkiller Hell & Damnation",purchase,1.0,0 -48028873,"Painkiller Hell & Damnation",play,0.5,0 -48028873,"Papers, Please",purchase,1.0,0 -48028873,"Papers, Please",play,0.4,0 -48028873,"Dead Rising 2",purchase,1.0,0 -48028873,"Dead Rising 2",play,0.3,0 -48028873,"Star Wars Republic Commando",purchase,1.0,0 -48028873,"Star Wars Republic Commando",play,0.3,0 -48028873,"METAL SLUG 3",purchase,1.0,0 -48028873,"METAL SLUG 3",play,0.3,0 -48028873,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -48028873,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.2,0 -48028873,"The Ship",purchase,1.0,0 -48028873,"The Ship",play,0.2,0 -48028873,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -48028873,"Resident Evil Revelations / Biohazard Revelations",play,0.2,0 -48028873,"Synergy",purchase,1.0,0 -48028873,"Synergy",play,0.2,0 -48028873,"Terraria",purchase,1.0,0 -48028873,"Terraria",play,0.2,0 -48028873,"Commandos 2 Men of Courage",purchase,1.0,0 -48028873,"Commandos 2 Men of Courage",play,0.1,0 -48028873,"Trials Evolution Gold Edition",purchase,1.0,0 -48028873,"Trials Evolution Gold Edition",play,0.1,0 -48028873,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -48028873,"Return to Castle Wolfenstein",purchase,1.0,0 -48028873,"The Elder Scrolls V Skyrim",purchase,1.0,0 -48028873,"Age of Empires II HD The Forgotten",purchase,1.0,0 -48028873,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -48028873,"BattleBlock Theater",purchase,1.0,0 -48028873,"Battlefield Bad Company 2",purchase,1.0,0 -48028873,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -48028873,"Blockland",purchase,1.0,0 -48028873,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -48028873,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -48028873,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -48028873,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -48028873,"Broforce",purchase,1.0,0 -48028873,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -48028873,"Cat Goes Fishing",purchase,1.0,0 -48028873,"Counter-Strike",purchase,1.0,0 -48028873,"Counter-Strike Condition Zero",purchase,1.0,0 -48028873,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -48028873,"Counter-Strike Source",purchase,1.0,0 -48028873,"Cry of Fear",purchase,1.0,0 -48028873,"Day of Defeat",purchase,1.0,0 -48028873,"Day of Defeat Source",purchase,1.0,0 -48028873,"Dead Rising 2 Off the Record",purchase,1.0,0 -48028873,"Deathmatch Classic",purchase,1.0,0 -48028873,"Death to Spies Moment of Truth",purchase,1.0,0 -48028873,"Dishonored",purchase,1.0,0 -48028873,"DogFighter",purchase,1.0,0 -48028873,"Euro Truck Simulator 2",purchase,1.0,0 -48028873,"Fallout",purchase,1.0,0 -48028873,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -48028873,"Fallout New Vegas Dead Money",purchase,1.0,0 -48028873,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -48028873,"Gauntlet ",purchase,1.0,0 -48028873,"Half-Life",purchase,1.0,0 -48028873,"Half-Life 2 Deathmatch",purchase,1.0,0 -48028873,"Half-Life 2 Episode One",purchase,1.0,0 -48028873,"Half-Life 2 Episode Two",purchase,1.0,0 -48028873,"Half-Life Blue Shift",purchase,1.0,0 -48028873,"Half-Life Opposing Force",purchase,1.0,0 -48028873,"Half-Life Source",purchase,1.0,0 -48028873,"Half-Life Deathmatch Source",purchase,1.0,0 -48028873,"Hotline Miami",purchase,1.0,0 -48028873,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -48028873,"Left 4 Dead",purchase,1.0,0 -48028873,"Metro 2033",purchase,1.0,0 -48028873,"Mount Your Friends",purchase,1.0,0 -48028873,"Painkiller Black Edition",purchase,1.0,0 -48028873,"Painkiller Recurring Evil",purchase,1.0,0 -48028873,"Painkiller Redemption",purchase,1.0,0 -48028873,"Painkiller Resurrection",purchase,1.0,0 -48028873,"Painkiller Hell & Damnation - The Clock Strikes Meat Night",purchase,1.0,0 -48028873,"Painkiller Overdose",purchase,1.0,0 -48028873,"Patch testing for Chivalry",purchase,1.0,0 -48028873,"Pool Nation",purchase,1.0,0 -48028873,"Portal 2",purchase,1.0,0 -48028873,"Project Zomboid",purchase,1.0,0 -48028873,"Ricochet",purchase,1.0,0 -48028873,"RPG Maker DS Resource Pack",purchase,1.0,0 -48028873,"RPG Maker Zombie Survival Graphic Pack",purchase,1.0,0 -48028873,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -48028873,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -48028873,"Sakura Spirit",purchase,1.0,0 -48028873,"Skullgirls",purchase,1.0,0 -48028873,"Skullgirls Endless Beta",purchase,1.0,0 -48028873,"Starbound - Unstable",purchase,1.0,0 -48028873,"Team Fortress Classic",purchase,1.0,0 -48028873,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -48028873,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -48028873,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -48028873,"The Ship Single Player",purchase,1.0,0 -48028873,"The Ship Tutorial",purchase,1.0,0 -48028873,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -48028873,"Tom Clancy's Rainbow Six Vegas 2",purchase,1.0,0 -291907288,"Mitos.is The Game",purchase,1.0,0 -291907288,"Mitos.is The Game",play,2.7,0 -51905751,"Football Manager 2010",purchase,1.0,0 -51905751,"Football Manager 2010",play,773.0,0 -51905751,"Football Manager 2015",purchase,1.0,0 -51905751,"Football Manager 2015",play,39.0,0 -51905751,"Football Manager 2009",purchase,1.0,0 -51905751,"Football Manager 2009",play,21.0,0 -57433226,"Counter-Strike Source",purchase,1.0,0 -57433226,"Counter-Strike Source",play,3013.0,0 -57433226,"Counter-Strike Global Offensive",purchase,1.0,0 -57433226,"Counter-Strike Global Offensive",play,2508.0,0 -57433226,"Garry's Mod",purchase,1.0,0 -57433226,"Garry's Mod",play,1371.0,0 -57433226,"Rust",purchase,1.0,0 -57433226,"Rust",play,534.0,0 -57433226,"Grand Theft Auto V",purchase,1.0,0 -57433226,"Grand Theft Auto V",play,114.0,0 -57433226,"H1Z1",purchase,1.0,0 -57433226,"H1Z1",play,81.0,0 -57433226,"PAYDAY 2",purchase,1.0,0 -57433226,"PAYDAY 2",play,72.0,0 -57433226,"DayZ",purchase,1.0,0 -57433226,"DayZ",play,13.1,0 -57433226,"Team Fortress 2",purchase,1.0,0 -57433226,"Team Fortress 2",play,9.0,0 -57433226,"Left 4 Dead 2",purchase,1.0,0 -57433226,"Left 4 Dead 2",play,8.6,0 -57433226,"Arma 2 Operation Arrowhead",purchase,1.0,0 -57433226,"Arma 2 Operation Arrowhead",play,4.9,0 -57433226,"Dirty Bomb",purchase,1.0,0 -57433226,"Dirty Bomb",play,4.4,0 -57433226,"Insurgency",purchase,1.0,0 -57433226,"Insurgency",play,3.4,0 -57433226,"Infestation Survivor Stories",purchase,1.0,0 -57433226,"Infestation Survivor Stories",play,2.5,0 -57433226,"Arma 3",purchase,1.0,0 -57433226,"Arma 3",play,1.0,0 -57433226,"Chivalry Medieval Warfare",purchase,1.0,0 -57433226,"Chivalry Medieval Warfare",play,0.9,0 -57433226,"Arma 2",purchase,1.0,0 -57433226,"Arma 2",play,0.7,0 -57433226,"Half-Life 2 Episode Two",purchase,1.0,0 -57433226,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -57433226,"Arma 3 Zeus",purchase,1.0,0 -57433226,"Company of Heroes",purchase,1.0,0 -57433226,"Company of Heroes (New Steam Version)",purchase,1.0,0 -57433226,"Company of Heroes Opposing Fronts",purchase,1.0,0 -57433226,"Company of Heroes Tales of Valor",purchase,1.0,0 -57433226,"Dead Island",purchase,1.0,0 -57433226,"H1Z1 Test Server",purchase,1.0,0 -57433226,"Just Cause 2",purchase,1.0,0 -57433226,"L.A. Noire",purchase,1.0,0 -57433226,"Max Payne",purchase,1.0,0 -57433226,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -57433226,"Max Payne 3",purchase,1.0,0 -57433226,"Patch testing for Chivalry",purchase,1.0,0 -161978121,"Unturned",purchase,1.0,0 -95203343,"Stronghold 3",purchase,1.0,0 -95203343,"Stronghold 3",play,1.5,0 -95203343,"Stronghold HD",purchase,1.0,0 -222319850,"Dota 2",purchase,1.0,0 -222319850,"Dota 2",play,1.4,0 -222319850,"GunZ 2 The Second Duel",purchase,1.0,0 -217368291,"Dota 2",purchase,1.0,0 -217368291,"Dota 2",play,431.0,0 -217368291,"Unturned",purchase,1.0,0 -217368291,"Deepworld",purchase,1.0,0 -193494703,"Dota 2",purchase,1.0,0 -193494703,"Dota 2",play,13.4,0 -303024195,"Hitman 2 Silent Assassin",purchase,1.0,0 -303024195,"Hitman 2 Silent Assassin",play,3.6,0 -202598205,"Team Fortress 2",purchase,1.0,0 -202598205,"Team Fortress 2",play,499.0,0 -202598205,"BLOCKADE 3D",purchase,1.0,0 -202598205,"BLOCKADE 3D",play,6.9,0 -202598205,"PAYDAY The Heist",purchase,1.0,0 -202598205,"PAYDAY The Heist",play,4.0,0 -202598205,"Counter-Strike Global Offensive",purchase,1.0,0 -202598205,"Counter-Strike Global Offensive",play,2.4,0 -202598205,"Unturned",purchase,1.0,0 -202598205,"Unturned",play,1.7,0 -202598205,"Heroes & Generals",purchase,1.0,0 -202598205,"Heroes & Generals",play,0.8,0 -202598205,"Poker Night at the Inventory",purchase,1.0,0 -161248480,"PAYDAY 2",purchase,1.0,0 -161248480,"PAYDAY 2",play,62.0,0 -161248480,"Counter-Strike Global Offensive",purchase,1.0,0 -161248480,"Counter-Strike Global Offensive",play,59.0,0 -161248480,"Hitman Absolution",purchase,1.0,0 -161248480,"Hitman Absolution",play,24.0,0 -161248480,"FreeStyle2 Street Basketball",purchase,1.0,0 -161248480,"Guns and Robots",purchase,1.0,0 -161248480,"Hitman Sniper Challenge",purchase,1.0,0 -161248480,"Neverwinter",purchase,1.0,0 -161248480,"No More Room in Hell",purchase,1.0,0 -161248480,"Unturned",purchase,1.0,0 -161248480,"Warframe",purchase,1.0,0 -161248480,"War Thunder",purchase,1.0,0 -161248480,"World of Soccer online",purchase,1.0,0 -215508170,"Dota 2",purchase,1.0,0 -215508170,"Dota 2",play,250.0,0 -215508170,"Heroes & Generals",purchase,1.0,0 -215508170,"Neverwinter",purchase,1.0,0 -215508170,"ROSE Online",purchase,1.0,0 -215508170,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -215508170,"Unturned",purchase,1.0,0 -131940023,"DayZ",purchase,1.0,0 -131940023,"DayZ",play,980.0,0 -131940023,"7 Days to Die",purchase,1.0,0 -131940023,"7 Days to Die",play,371.0,0 -131940023,"Arma 2 Operation Arrowhead",purchase,1.0,0 -131940023,"Arma 2 Operation Arrowhead",play,236.0,0 -131940023,"Reign Of Kings",purchase,1.0,0 -131940023,"Reign Of Kings",play,186.0,0 -131940023,"Arma 3",purchase,1.0,0 -131940023,"Arma 3",play,112.0,0 -131940023,"Divinity Original Sin",purchase,1.0,0 -131940023,"Divinity Original Sin",play,104.0,0 -131940023,"The Witcher 3 Wild Hunt",purchase,1.0,0 -131940023,"The Witcher 3 Wild Hunt",play,101.0,0 -131940023,"Fallout New Vegas",purchase,1.0,0 -131940023,"Fallout New Vegas",play,97.0,0 -131940023,"Hurtworld",purchase,1.0,0 -131940023,"Hurtworld",play,97.0,0 -131940023,"The Elder Scrolls V Skyrim",purchase,1.0,0 -131940023,"The Elder Scrolls V Skyrim",play,83.0,0 -131940023,"Fallout 4",purchase,1.0,0 -131940023,"Fallout 4",play,81.0,0 -131940023,"Age of Empires II HD Edition",purchase,1.0,0 -131940023,"Age of Empires II HD Edition",play,56.0,0 -131940023,"Toribash",purchase,1.0,0 -131940023,"Toribash",play,52.0,0 -131940023,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -131940023,"STAR WARS Knights of the Old Republic II The Sith Lords",play,45.0,0 -131940023,"Star Wars Knights of the Old Republic",purchase,1.0,0 -131940023,"Star Wars Knights of the Old Republic",play,45.0,0 -131940023,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -131940023,"METAL GEAR SOLID V THE PHANTOM PAIN",play,33.0,0 -131940023,"Lambda Wars Beta",purchase,1.0,0 -131940023,"Lambda Wars Beta",play,28.0,0 -131940023,"Survival Postapocalypse Now",purchase,1.0,0 -131940023,"Survival Postapocalypse Now",play,22.0,0 -131940023,"Heroes & Generals",purchase,1.0,0 -131940023,"Heroes & Generals",play,16.0,0 -131940023,"Borderlands 2",purchase,1.0,0 -131940023,"Borderlands 2",play,15.9,0 -131940023,"FINAL FANTASY VII",purchase,1.0,0 -131940023,"FINAL FANTASY VII",play,15.3,0 -131940023,"DiRT Rally",purchase,1.0,0 -131940023,"DiRT Rally",play,15.0,0 -131940023,"Dying Light",purchase,1.0,0 -131940023,"Dying Light",play,12.0,0 -131940023,"Fallen Earth",purchase,1.0,0 -131940023,"Fallen Earth",play,11.7,0 -131940023,"GunZ 2 The Second Duel",purchase,1.0,0 -131940023,"GunZ 2 The Second Duel",play,10.5,0 -131940023,"Dead Island Epidemic",purchase,1.0,0 -131940023,"Dead Island Epidemic",play,8.7,0 -131940023,"Blade Symphony",purchase,1.0,0 -131940023,"Blade Symphony",play,8.4,0 -131940023,"Path of Exile",purchase,1.0,0 -131940023,"Path of Exile",play,7.8,0 -131940023,"Grand Theft Auto V",purchase,1.0,0 -131940023,"Grand Theft Auto V",play,7.4,0 -131940023,"Loadout",purchase,1.0,0 -131940023,"Loadout",play,5.9,0 -131940023,"Unturned",purchase,1.0,0 -131940023,"Unturned",play,4.0,0 -131940023,"No More Room in Hell",purchase,1.0,0 -131940023,"No More Room in Hell",play,3.3,0 -131940023,"Dota 2",purchase,1.0,0 -131940023,"Dota 2",play,3.3,0 -131940023,"Counter-Strike Global Offensive",purchase,1.0,0 -131940023,"Counter-Strike Global Offensive",play,3.3,0 -131940023,"Absolute Drift",purchase,1.0,0 -131940023,"Absolute Drift",play,2.6,0 -131940023,"Deadlight",purchase,1.0,0 -131940023,"Deadlight",play,2.5,0 -131940023,"America's Army Proving Grounds",purchase,1.0,0 -131940023,"America's Army Proving Grounds",play,2.2,0 -131940023,"Sniper Elite V2",purchase,1.0,0 -131940023,"Sniper Elite V2",play,2.0,0 -131940023,"NEO Scavenger",purchase,1.0,0 -131940023,"NEO Scavenger",play,1.8,0 -131940023,"PlanetSide 2",purchase,1.0,0 -131940023,"PlanetSide 2",play,1.5,0 -131940023,"How to Survive",purchase,1.0,0 -131940023,"How to Survive",play,0.9,0 -131940023,"The Forest",purchase,1.0,0 -131940023,"The Forest",play,0.6,0 -131940023,"ARK Survival Evolved",purchase,1.0,0 -131940023,"ARK Survival Evolved",play,0.6,0 -131940023,"Metal Gear Solid Legacy",purchase,1.0,0 -131940023,"Metal Gear Solid Legacy",play,0.5,0 -131940023,"Garry's Mod",purchase,1.0,0 -131940023,"Garry's Mod",play,0.5,0 -131940023,"Tactical Intervention",purchase,1.0,0 -131940023,"Tactical Intervention",play,0.4,0 -131940023,"Arma 2",purchase,1.0,0 -131940023,"Arma 2",play,0.4,0 -131940023,"Passing Pineview Forest",purchase,1.0,0 -131940023,"Passing Pineview Forest",play,0.4,0 -131940023,"Project Zomboid",purchase,1.0,0 -131940023,"Project Zomboid",play,0.3,0 -131940023,"Arma Cold War Assault",purchase,1.0,0 -131940023,"Arma Cold War Assault",play,0.2,0 -131940023,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -131940023,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.2,0 -131940023,"Arma 2 Private Military Company",purchase,1.0,0 -131940023,"Arma 2 Private Military Company",play,0.1,0 -131940023,"Arma 2 DayZ Mod",purchase,1.0,0 -131940023,"Arma 2 British Armed Forces",purchase,1.0,0 -131940023,"Counter-Strike",purchase,1.0,0 -131940023,"iRacing",purchase,1.0,0 -131940023,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -131940023,"Arma 3 Helicopters",purchase,1.0,0 -131940023,"Arma 3 Karts",purchase,1.0,0 -131940023,"Arma 3 Marksmen",purchase,1.0,0 -131940023,"Arma 3 Zeus",purchase,1.0,0 -131940023,"Counter-Strike Condition Zero",purchase,1.0,0 -131940023,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -131940023,"Counter-Strike Source",purchase,1.0,0 -131940023,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -131940023,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -131940023,"Fallout New Vegas Dead Money",purchase,1.0,0 -131940023,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -131940023,"RaceRoom Racing Experience ",purchase,1.0,0 -131940023,"RaiderZ",purchase,1.0,0 -131940023,"Shower With Your Dad Simulator 2015 Do You Still Shower With Your Dad",purchase,1.0,0 -131940023,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -131940023,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -131940023,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -131940023,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -131940023,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -131940023,"Tribes Ascend",purchase,1.0,0 -297279953,"Trove",purchase,1.0,0 -297279953,"Trove",play,95.0,0 -297279953,"Path of Exile",purchase,1.0,0 -297279953,"Path of Exile",play,1.6,0 -252507011,"Trove",purchase,1.0,0 -252507011,"Trove",play,0.9,0 -189371538,"Unturned",purchase,1.0,0 -172437595,"Dota 2",purchase,1.0,0 -172437595,"Dota 2",play,0.8,0 -95911580,"Europa Universalis IV",purchase,1.0,0 -95911580,"Europa Universalis IV",play,307.0,0 -95911580,"Crusader Kings II",purchase,1.0,0 -95911580,"Crusader Kings II",play,134.0,0 -95911580,"Victoria II",purchase,1.0,0 -95911580,"Victoria II",play,107.0,0 -95911580,"Hearts of Iron III",purchase,1.0,0 -95911580,"Hearts of Iron III",play,78.0,0 -95911580,"Hegemony III Clash of the Ancients",purchase,1.0,0 -95911580,"Hegemony III Clash of the Ancients",play,23.0,0 -95911580,"Total War ROME II - Emperor Edition",purchase,1.0,0 -95911580,"Total War ROME II - Emperor Edition",play,23.0,0 -95911580,"Tropico 4",purchase,1.0,0 -95911580,"Tropico 4",play,11.5,0 -95911580,"The Wolf Among Us",purchase,1.0,0 -95911580,"The Wolf Among Us",play,8.6,0 -95911580,"Commander Conquest of the Americas",purchase,1.0,0 -95911580,"Commander Conquest of the Americas",play,7.5,0 -95911580,"Life Is Strange",purchase,1.0,0 -95911580,"Life Is Strange",play,6.3,0 -95911580,"Hegemony Gold Wars of Ancient Greece",purchase,1.0,0 -95911580,"Hegemony Gold Wars of Ancient Greece",play,6.1,0 -95911580,"Europa Universalis Rome - Gold Edition",purchase,1.0,0 -95911580,"Europa Universalis Rome - Gold Edition",play,5.9,0 -95911580,"Hotline Miami",purchase,1.0,0 -95911580,"Hotline Miami",play,1.4,0 -95911580,"Commander Conquest of the Americas - Pirate Treasure Chest",purchase,1.0,0 -95911580,"Crusader Kings II Military Orders Unit Pack",purchase,1.0,0 -95911580,"Crusader Kings II Sons of Abraham",purchase,1.0,0 -95911580,"Europa Universalis Rome - Vae Victis",purchase,1.0,0 -95911580,"Europa Universalis IV Conquistadors Unit pack ",purchase,1.0,0 -95911580,"Hearts of Iron III German II Sprite Pack",purchase,1.0,0 -95911580,"Victoria Revolutions",purchase,1.0,0 -130021142,"Star Wars Empire at War Gold",purchase,1.0,0 -130021142,"Star Wars Empire at War Gold",play,7.4,0 -130021142,"Counter-Strike Global Offensive",purchase,1.0,0 -130021142,"Counter-Strike Global Offensive",play,6.8,0 -175270022,"Dota 2",purchase,1.0,0 -175270022,"Dota 2",play,1.5,0 -126074325,"Dota 2",purchase,1.0,0 -126074325,"Dota 2",play,2025.0,0 -126074325,"Left 4 Dead 2",purchase,1.0,0 -126074325,"Dead Island Epidemic",purchase,1.0,0 -239235805,"Dota 2",purchase,1.0,0 -239235805,"Dota 2",play,2.2,0 -93413084,"Counter-Strike Global Offensive",purchase,1.0,0 -93413084,"Counter-Strike Global Offensive",play,1342.0,0 -93413084,"Dota 2",purchase,1.0,0 -93413084,"Dota 2",play,317.0,0 -93413084,"DC Universe Online",purchase,1.0,0 -93413084,"DC Universe Online",play,91.0,0 -93413084,"Rust",purchase,1.0,0 -93413084,"Rust",play,85.0,0 -93413084,"Garry's Mod",purchase,1.0,0 -93413084,"Garry's Mod",play,70.0,0 -93413084,"Counter-Strike Source",purchase,1.0,0 -93413084,"Counter-Strike Source",play,58.0,0 -93413084,"Team Fortress 2",purchase,1.0,0 -93413084,"Team Fortress 2",play,29.0,0 -93413084,"Unturned",purchase,1.0,0 -93413084,"Unturned",play,13.7,0 -93413084,"Left 4 Dead 2",purchase,1.0,0 -93413084,"Left 4 Dead 2",play,13.3,0 -93413084,"Deus Ex Human Revolution",purchase,1.0,0 -93413084,"Deus Ex Human Revolution",play,13.3,0 -93413084,"Portal 2",purchase,1.0,0 -93413084,"Portal 2",play,10.4,0 -93413084,"The Walking Dead",purchase,1.0,0 -93413084,"The Walking Dead",play,8.4,0 -93413084,"The Binding of Isaac",purchase,1.0,0 -93413084,"The Binding of Isaac",play,6.5,0 -93413084,"Gear Up",purchase,1.0,0 -93413084,"Gear Up",play,3.0,0 -93413084,"Amnesia The Dark Descent",purchase,1.0,0 -93413084,"Amnesia The Dark Descent",play,2.6,0 -93413084,"Call of Duty Modern Warfare 3",purchase,1.0,0 -93413084,"Call of Duty Modern Warfare 3",play,2.3,0 -93413084,"PAYDAY 2",purchase,1.0,0 -93413084,"PAYDAY 2",play,2.2,0 -93413084,"Everlasting Summer",purchase,1.0,0 -93413084,"Everlasting Summer",play,1.2,0 -93413084,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -93413084,"Call of Duty Modern Warfare 3 - Multiplayer",play,0.7,0 -93413084,"Half-Life 2 Deathmatch",purchase,1.0,0 -93413084,"Half-Life 2 Deathmatch",play,0.6,0 -93413084,"Day of Defeat Source",purchase,1.0,0 -93413084,"Day of Defeat Source",play,0.4,0 -93413084,"Ben There, Dan That!",purchase,1.0,0 -93413084,"BioShock",purchase,1.0,0 -93413084,"BioShock 2",purchase,1.0,0 -93413084,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -93413084,"Dear Esther",purchase,1.0,0 -93413084,"Dynamite Jack",purchase,1.0,0 -93413084,"Half-Life 2 Lost Coast",purchase,1.0,0 -93413084,"Magicka",purchase,1.0,0 -93413084,"McPixel",purchase,1.0,0 -93413084,"Papo & Yo",purchase,1.0,0 -93413084,"Pirates of Black Cove",purchase,1.0,0 -93413084,"Sword of the Stars II Enhanced Edition",purchase,1.0,0 -93413084,"Time Gentlemen, Please!",purchase,1.0,0 -189451813,"Dota 2",purchase,1.0,0 -189451813,"Dota 2",play,452.0,0 -189451813,"Divine Souls",purchase,1.0,0 -189451813,"Dizzel",purchase,1.0,0 -189451813,"Firefall",purchase,1.0,0 -189451813,"GunZ 2 The Second Duel",purchase,1.0,0 -189451813,"Prime World",purchase,1.0,0 -91040629,"Napoleon Total War",purchase,1.0,0 -64366280,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -64366280,"Tropico 3 - Steam Special Edition",play,28.0,0 -64366280,"War Thunder",purchase,1.0,0 -64366280,"War Thunder",play,0.9,0 -64366280,"Uncharted Waters Online Gran Atlas",purchase,1.0,0 -64366280,"Uncharted Waters Online Gran Atlas",play,0.4,0 -136495026,"Crusader Kings II",purchase,1.0,0 -136495026,"Crusader Kings II",play,80.0,0 -136495026,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -136495026,"DARK SOULS II Scholar of the First Sin",play,63.0,0 -136495026,"The Elder Scrolls V Skyrim",purchase,1.0,0 -136495026,"The Elder Scrolls V Skyrim",play,46.0,0 -136495026,"Far Cry 3",purchase,1.0,0 -136495026,"Far Cry 3",play,39.0,0 -136495026,"Middle-earth Shadow of Mordor",purchase,1.0,0 -136495026,"Middle-earth Shadow of Mordor",play,31.0,0 -136495026,"Dishonored",purchase,1.0,0 -136495026,"Dishonored",play,17.8,0 -136495026,"Dota 2",purchase,1.0,0 -136495026,"Dota 2",play,16.1,0 -136495026,"Counter-Strike Global Offensive",purchase,1.0,0 -136495026,"Counter-Strike Global Offensive",play,11.9,0 -136495026,"Sid Meier's Pirates!",purchase,1.0,0 -136495026,"Sid Meier's Pirates!",play,7.3,0 -136495026,"Max Payne 3",purchase,1.0,0 -136495026,"Max Payne 3",play,6.9,0 -136495026,"Mortal Kombat Komplete Edition",purchase,1.0,0 -136495026,"Mortal Kombat Komplete Edition",play,5.1,0 -136495026,"The Stanley Parable",purchase,1.0,0 -136495026,"The Stanley Parable",play,2.5,0 -136495026,"Fallout 3",purchase,1.0,0 -136495026,"Fallout 3",play,2.5,0 -136495026,"XCOM Enemy Unknown",purchase,1.0,0 -136495026,"XCOM Enemy Unknown",play,2.1,0 -136495026,"Mirror's Edge",purchase,1.0,0 -136495026,"Mirror's Edge",play,1.2,0 -136495026,"Sid Meier's Civilization V",purchase,1.0,0 -136495026,"Sid Meier's Civilization V",play,1.0,0 -136495026,"Brothers - A Tale of Two Sons",purchase,1.0,0 -136495026,"Brothers - A Tale of Two Sons",play,0.3,0 -136495026,"Age of Empires II HD Edition",purchase,1.0,0 -136495026,"Age of Empires II HD Edition",play,0.1,0 -136495026,"Mount & Blade Warband",purchase,1.0,0 -136495026,"Tomb Raider",purchase,1.0,0 -136495026,"Alan Wake",purchase,1.0,0 -136495026,"Counter-Strike",purchase,1.0,0 -136495026,"Counter-Strike Condition Zero",purchase,1.0,0 -136495026,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -136495026,"Counter-Strike Source",purchase,1.0,0 -136495026,"Crusader Kings II Hymns of Abraham",purchase,1.0,0 -136495026,"Crusader Kings II Military Orders Unit Pack",purchase,1.0,0 -136495026,"Crusader Kings II Sons of Abraham",purchase,1.0,0 -136495026,"Day of Defeat",purchase,1.0,0 -136495026,"Day of Defeat Source",purchase,1.0,0 -136495026,"Deathmatch Classic",purchase,1.0,0 -136495026,"Half-Life",purchase,1.0,0 -136495026,"Half-Life 2",purchase,1.0,0 -136495026,"Half-Life 2 Deathmatch",purchase,1.0,0 -136495026,"Half-Life 2 Episode One",purchase,1.0,0 -136495026,"Half-Life 2 Episode Two",purchase,1.0,0 -136495026,"Half-Life 2 Lost Coast",purchase,1.0,0 -136495026,"Half-Life Blue Shift",purchase,1.0,0 -136495026,"Half-Life Opposing Force",purchase,1.0,0 -136495026,"Half-Life Source",purchase,1.0,0 -136495026,"Half-Life Deathmatch Source",purchase,1.0,0 -136495026,"Just Cause 2",purchase,1.0,0 -136495026,"Left 4 Dead",purchase,1.0,0 -136495026,"Left 4 Dead 2",purchase,1.0,0 -136495026,"Max Payne 3 Season Pass",purchase,1.0,0 -136495026,"Portal",purchase,1.0,0 -136495026,"Portal 2",purchase,1.0,0 -136495026,"Ricochet",purchase,1.0,0 -136495026,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -136495026,"Team Fortress Classic",purchase,1.0,0 -136495026,"The Bureau XCOM Declassified",purchase,1.0,0 -136495026,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -136495026,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -136495026,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -236596014,"Clicker Heroes",purchase,1.0,0 -236596014,"Clicker Heroes",play,10.3,0 -236596014,"Dota 2",purchase,1.0,0 -236596014,"Dota 2",play,5.0,0 -236596014,"AdVenture Capitalist",purchase,1.0,0 -236596014,"AdVenture Capitalist",play,2.3,0 -236596014,"Codename Panzers - Cold War",purchase,1.0,0 -236596014,"Codename Panzers - Cold War",play,2.0,0 -236596014,"Unturned",purchase,1.0,0 -236596014,"Unturned",play,2.0,0 -236596014,"Tap Tap Infinity",purchase,1.0,0 -236596014,"Tap Tap Infinity",play,1.2,0 -236596014,"Defiance",purchase,1.0,0 -236596014,"Anno Online",purchase,1.0,0 -200750585,"Dota 2",purchase,1.0,0 -200750585,"Dota 2",play,1437.0,0 -200750585,"METAL SLUG DEFENSE",purchase,1.0,0 -200750585,"METAL SLUG DEFENSE",play,1.0,0 -200750585,"Marvel Heroes 2015",purchase,1.0,0 -200750585,"Warframe",purchase,1.0,0 -41089194,"Team Fortress 2",purchase,1.0,0 -41089194,"Team Fortress 2",play,4.3,0 -24366790,"The Elder Scrolls V Skyrim",purchase,1.0,0 -24366790,"The Elder Scrolls V Skyrim",play,569.0,0 -24366790,"ARK Survival Evolved",purchase,1.0,0 -24366790,"ARK Survival Evolved",play,349.0,0 -24366790,"Team Fortress 2",purchase,1.0,0 -24366790,"Team Fortress 2",play,215.0,0 -24366790,"RIFT",purchase,1.0,0 -24366790,"RIFT",play,190.0,0 -24366790,"Empire Total War",purchase,1.0,0 -24366790,"Empire Total War",play,162.0,0 -24366790,"Mount & Blade Warband",purchase,1.0,0 -24366790,"Mount & Blade Warband",play,146.0,0 -24366790,"Prison Architect",purchase,1.0,0 -24366790,"Prison Architect",play,122.0,0 -24366790,"Total War ROME II - Emperor Edition",purchase,1.0,0 -24366790,"Total War ROME II - Emperor Edition",play,114.0,0 -24366790,"Sid Meier's Civilization V",purchase,1.0,0 -24366790,"Sid Meier's Civilization V",play,92.0,0 -24366790,"Robocraft",purchase,1.0,0 -24366790,"Robocraft",play,78.0,0 -24366790,"Cities Skylines",purchase,1.0,0 -24366790,"Cities Skylines",play,57.0,0 -24366790,"Unturned",purchase,1.0,0 -24366790,"Unturned",play,48.0,0 -24366790,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -24366790,"RollerCoaster Tycoon 3 Platinum!",play,35.0,0 -24366790,"Company of Heroes (New Steam Version)",purchase,1.0,0 -24366790,"Company of Heroes (New Steam Version)",play,20.0,0 -24366790,"Banished",purchase,1.0,0 -24366790,"Banished",play,17.2,0 -24366790,"South Park The Stick of Truth",purchase,1.0,0 -24366790,"South Park The Stick of Truth",play,15.6,0 -24366790,"Arma 3",purchase,1.0,0 -24366790,"Arma 3",play,11.3,0 -24366790,"Tropico 3 Absolute Power",purchase,1.0,0 -24366790,"Tropico 3 Absolute Power",play,11.0,0 -24366790,"Day of Defeat Source",purchase,1.0,0 -24366790,"Day of Defeat Source",play,7.1,0 -24366790,"Company of Heroes 2",purchase,1.0,0 -24366790,"Company of Heroes 2",play,6.9,0 -24366790,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -24366790,"Warhammer 40,000 Dawn of War II",play,5.6,0 -24366790,"Left 4 Dead 2",purchase,1.0,0 -24366790,"Left 4 Dead 2",play,5.5,0 -24366790,"Dirty Bomb",purchase,1.0,0 -24366790,"Dirty Bomb",play,4.2,0 -24366790,"Counter-Strike Source",purchase,1.0,0 -24366790,"Counter-Strike Source",play,3.0,0 -24366790,"Left 4 Dead",purchase,1.0,0 -24366790,"Left 4 Dead",play,2.9,0 -24366790,"Garry's Mod",purchase,1.0,0 -24366790,"Garry's Mod",play,0.4,0 -24366790,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -24366790,"STAR WARS Knights of the Old Republic II The Sith Lords",play,0.4,0 -24366790,"Arma 2 Operation Arrowhead",purchase,1.0,0 -24366790,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -24366790,"City of Heroes",purchase,1.0,0 -24366790,"Arma 2",purchase,1.0,0 -24366790,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -24366790,"Arma 3 Zeus",purchase,1.0,0 -24366790,"Company of Heroes",purchase,1.0,0 -24366790,"Half-Life 2 Deathmatch",purchase,1.0,0 -24366790,"Half-Life 2 Lost Coast",purchase,1.0,0 -24366790,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -24366790,"Rift Ascended Edition",purchase,1.0,0 -24366790,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -24366790,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -24366790,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -24366790,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -24366790,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -24366790,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -98928829,"Restaurant Empire II",purchase,1.0,0 -98928829,"Restaurant Empire II",play,44.0,0 -98928829,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -98928829,"Plants vs. Zombies Game of the Year",play,24.0,0 -98928829,"M.U.D. TV",purchase,1.0,0 -98928829,"M.U.D. TV",play,16.3,0 -98928829,"The Testament of Sherlock Holmes",purchase,1.0,0 -98928829,"The Testament of Sherlock Holmes",play,7.9,0 -98928829,"Airline Tycoon 2",purchase,1.0,0 -98928829,"Airline Tycoon 2",play,6.7,0 -98928829,"Cities XL 2012",purchase,1.0,0 -98928829,"Cities XL 2012",play,5.3,0 -98928829,"Anno 2070",purchase,1.0,0 -98928829,"Anno 2070",play,3.0,0 -98928829,"Democracy 2",purchase,1.0,0 -242094123,"Dota 2",purchase,1.0,0 -242094123,"Dota 2",play,7.4,0 -89732768,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -89732768,"METAL GEAR SOLID V THE PHANTOM PAIN",play,214.0,0 -89732768,"DARK SOULS II",purchase,1.0,0 -89732768,"DARK SOULS II",play,210.0,0 -89732768,"Pillars of Eternity",purchase,1.0,0 -89732768,"Pillars of Eternity",play,123.0,0 -89732768,"The Witcher 3 Wild Hunt",purchase,1.0,0 -89732768,"The Witcher 3 Wild Hunt",play,121.0,0 -89732768,"The Elder Scrolls V Skyrim",purchase,1.0,0 -89732768,"The Elder Scrolls V Skyrim",play,69.0,0 -89732768,"Divinity Original Sin",purchase,1.0,0 -89732768,"Divinity Original Sin",play,53.0,0 -89732768,"Fallout 4",purchase,1.0,0 -89732768,"Fallout 4",play,44.0,0 -89732768,"Grand Theft Auto V",purchase,1.0,0 -89732768,"Grand Theft Auto V",play,39.0,0 -89732768,"The Witcher Enhanced Edition",purchase,1.0,0 -89732768,"The Witcher Enhanced Edition",play,33.0,0 -89732768,"Rayman Legends",purchase,1.0,0 -89732768,"Rayman Legends",play,22.0,0 -89732768,"BioShock Infinite",purchase,1.0,0 -89732768,"BioShock Infinite",play,17.9,0 -89732768,"Batman Arkham Knight",purchase,1.0,0 -89732768,"Batman Arkham Knight",play,16.8,0 -89732768,"SOMA",purchase,1.0,0 -89732768,"SOMA",play,11.9,0 -89732768,"Max Payne 3",purchase,1.0,0 -89732768,"Max Payne 3",play,5.4,0 -89732768,"Ori and the Blind Forest",purchase,1.0,0 -89732768,"Ori and the Blind Forest",play,3.8,0 -89732768,"Assassins Creed Unity",purchase,1.0,0 -89732768,"Assassins Creed Unity",play,3.7,0 -89732768,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -89732768,"METAL GEAR SOLID V GROUND ZEROES",play,2.8,0 -89732768,"Shadow Warrior Classic (1997)",purchase,1.0,0 -89732768,"Shadow Warrior Classic (1997)",play,1.2,0 -89732768,"Cry of Fear",purchase,1.0,0 -89732768,"Cry of Fear",play,0.8,0 -89732768,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -89732768,"Batman Arkham City GOTY",purchase,1.0,0 -89732768,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -89732768,"Batman Arkham Origins - Initiation",purchase,1.0,0 -89732768,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -89732768,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -89732768,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -89732768,"Batman Arkham Origins",purchase,1.0,0 -89732768,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -89732768,"DARK SOULS II - Season Pass",purchase,1.0,0 -89732768,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -89732768,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -152302676,"Dota 2",purchase,1.0,0 -152302676,"Dota 2",play,0.3,0 -124556386,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -124556386,"Call of Duty Advanced Warfare - Multiplayer",play,932.0,0 -124556386,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -124556386,"Call of Duty Black Ops II - Multiplayer",play,373.0,0 -124556386,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -124556386,"Call of Duty Ghosts - Multiplayer",play,184.0,0 -124556386,"Call of Duty Black Ops III",purchase,1.0,0 -124556386,"Call of Duty Black Ops III",play,150.0,0 -124556386,"Arma 3",purchase,1.0,0 -124556386,"Arma 3",play,17.3,0 -124556386,"Call of Duty Black Ops II",purchase,1.0,0 -124556386,"Call of Duty Black Ops II",play,11.5,0 -124556386,"Grand Theft Auto V",purchase,1.0,0 -124556386,"Grand Theft Auto V",play,10.5,0 -124556386,"GRID 2",purchase,1.0,0 -124556386,"GRID 2",play,10.3,0 -124556386,"Remember Me",purchase,1.0,0 -124556386,"Remember Me",play,6.6,0 -124556386,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -124556386,"Injustice Gods Among Us Ultimate Edition",play,6.3,0 -124556386,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -124556386,"RollerCoaster Tycoon 3 Platinum!",play,3.2,0 -124556386,"Quake II",purchase,1.0,0 -124556386,"Quake II",play,3.2,0 -124556386,"Estranged Act I",purchase,1.0,0 -124556386,"Estranged Act I",play,2.3,0 -124556386,"Far Cry 3",purchase,1.0,0 -124556386,"Far Cry 3",play,1.5,0 -124556386,"Call of Duty Advanced Warfare",purchase,1.0,0 -124556386,"Call of Duty Advanced Warfare",play,1.4,0 -124556386,"Pinball FX2",purchase,1.0,0 -124556386,"Pinball FX2",play,1.3,0 -124556386,"Quake III Arena",purchase,1.0,0 -124556386,"Quake III Arena",play,1.3,0 -124556386,"Tomb Raider II",purchase,1.0,0 -124556386,"Tomb Raider II",play,1.2,0 -124556386,"Team Fortress 2",purchase,1.0,0 -124556386,"Team Fortress 2",play,0.7,0 -124556386,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -124556386,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.6,0 -124556386,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -124556386,"Call of Duty Black Ops II - Zombies",play,0.6,0 -124556386,"Tomb Raider",purchase,1.0,0 -124556386,"Tomb Raider",play,0.6,0 -124556386,"Pinball Arcade",purchase,1.0,0 -124556386,"Pinball Arcade",play,0.5,0 -124556386,"Dota 2",purchase,1.0,0 -124556386,"Dota 2",play,0.2,0 -124556386,"Call of Duty Ghosts",purchase,1.0,0 -124556386,"Call of Duty Ghosts",play,0.1,0 -124556386,"Arma 3 Zeus",purchase,1.0,0 -124556386,"Counter-Strike",purchase,1.0,0 -124556386,"Counter-Strike Condition Zero",purchase,1.0,0 -124556386,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -124556386,"Counter-Strike Global Offensive",purchase,1.0,0 -124556386,"Counter-Strike Source",purchase,1.0,0 -124556386,"Day of Defeat",purchase,1.0,0 -124556386,"Day of Defeat Source",purchase,1.0,0 -124556386,"Deathmatch Classic",purchase,1.0,0 -124556386,"Half-Life",purchase,1.0,0 -124556386,"Half-Life 2",purchase,1.0,0 -124556386,"Half-Life 2 Deathmatch",purchase,1.0,0 -124556386,"Half-Life 2 Episode One",purchase,1.0,0 -124556386,"Half-Life 2 Episode Two",purchase,1.0,0 -124556386,"Half-Life 2 Lost Coast",purchase,1.0,0 -124556386,"Half-Life Blue Shift",purchase,1.0,0 -124556386,"Half-Life Opposing Force",purchase,1.0,0 -124556386,"Half-Life Source",purchase,1.0,0 -124556386,"Half-Life Deathmatch Source",purchase,1.0,0 -124556386,"Lara Croft and the Guardian of Light",purchase,1.0,0 -124556386,"Left 4 Dead",purchase,1.0,0 -124556386,"Left 4 Dead 2",purchase,1.0,0 -124556386,"Pinball FX2 - Balls of Glory Pinball",purchase,1.0,0 -124556386,"Pinball FX2 - Star Wars Pack",purchase,1.0,0 -124556386,"Pinball FX2 - The Walking Dead Table",purchase,1.0,0 -124556386,"Portal",purchase,1.0,0 -124556386,"Portal 2",purchase,1.0,0 -124556386,"Quake",purchase,1.0,0 -124556386,"Quake II Ground Zero",purchase,1.0,0 -124556386,"Quake II The Reckoning",purchase,1.0,0 -124556386,"Quake III Team Arena",purchase,1.0,0 -124556386,"Quake Mission Pack 1 Scourge of Armagon",purchase,1.0,0 -124556386,"Quake Mission Pack 2 Dissolution of Eternity",purchase,1.0,0 -124556386,"Ricochet",purchase,1.0,0 -124556386,"Team Fortress Classic",purchase,1.0,0 -124556386,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -124556386,"Tomb Raider Anniversary",purchase,1.0,0 -124556386,"Tomb Raider Chronicles",purchase,1.0,0 -124556386,"Tomb Raider Legend",purchase,1.0,0 -124556386,"Tomb Raider The Last Revelation",purchase,1.0,0 -124556386,"Tomb Raider Underworld",purchase,1.0,0 -124556386,"Tomb Raider I",purchase,1.0,0 -124556386,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -124556386,"Tom Clancy's Ghost Recon Advanced Warfighter",purchase,1.0,0 -87907200,"The Elder Scrolls V Skyrim",purchase,1.0,0 -87907200,"The Elder Scrolls V Skyrim",play,53.0,0 -87907200,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -87907200,"The Witcher 2 Assassins of Kings Enhanced Edition",play,30.0,0 -87907200,"Warframe",purchase,1.0,0 -87907200,"Warframe",play,28.0,0 -87907200,"The Darkness II",purchase,1.0,0 -87907200,"The Darkness II",play,16.6,0 -87907200,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -87907200,"Kingdoms of Amalur Reckoning",play,14.3,0 -87907200,"The Witcher Enhanced Edition",purchase,1.0,0 -87907200,"The Witcher Enhanced Edition",play,8.6,0 -87907200,"The Elder Scrolls III Morrowind",purchase,1.0,0 -87907200,"The Elder Scrolls III Morrowind",play,3.8,0 -87907200,"Borderlands 2",purchase,1.0,0 -87907200,"Borderlands 2",play,3.7,0 -87907200,"Borderlands",purchase,1.0,0 -87907200,"Borderlands",play,2.9,0 -87907200,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -87907200,"Deus Ex Human Revolution - Director's Cut",play,2.7,0 -87907200,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -87907200,"The Elder Scrolls IV Oblivion ",play,2.4,0 -87907200,"Dota 2",purchase,1.0,0 -87907200,"Dota 2",play,1.0,0 -87907200,"Pixel Space",purchase,1.0,0 -87907200,"Pixel Space",play,0.7,0 -87907200,"X-Blades",purchase,1.0,0 -87907200,"X-Blades",play,0.6,0 -87907200,"Eurofighter Typhoon",purchase,1.0,0 -87907200,"Eurofighter Typhoon",play,0.3,0 -87907200,"Particula",purchase,1.0,0 -87907200,"Particula",play,0.3,0 -87907200,"Path of Exile",purchase,1.0,0 -87907200,"Path of Exile",play,0.2,0 -87907200,"Team Fortress 2",purchase,1.0,0 -87907200,"Team Fortress 2",play,0.2,0 -87907200,"Overcast - Walden and the Werewolf",purchase,1.0,0 -87907200,"Overcast - Walden and the Werewolf",play,0.1,0 -87907200,"Counter-Strike Nexon Zombies",purchase,1.0,0 -87907200,"Counter-Strike Nexon Zombies",play,0.1,0 -87907200,"8BitBoy",purchase,1.0,0 -87907200,"Amnesia The Dark Descent",purchase,1.0,0 -87907200,"Blockstorm",purchase,1.0,0 -87907200,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -87907200,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -87907200,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -87907200,"Commander Conquest of the Americas Gold",purchase,1.0,0 -87907200,"DogFighter",purchase,1.0,0 -87907200,"Enemy Mind",purchase,1.0,0 -87907200,"Orbital Gear",purchase,1.0,0 -87907200,"Pid ",purchase,1.0,0 -87907200,"Pirates of Black Cove Gold",purchase,1.0,0 -87907200,"Skyborn",purchase,1.0,0 -87907200,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -87907200,"Stealth Inc 2",purchase,1.0,0 -87907200,"The 39 Steps",purchase,1.0,0 -87907200,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -87907200,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -87907200,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -87907200,"Ubinota",purchase,1.0,0 -87907200,"Vertical Drop Heroes HD",purchase,1.0,0 -206807160,"Dota 2",purchase,1.0,0 -206807160,"Dota 2",play,10.0,0 -110489310,"The Elder Scrolls V Skyrim",purchase,1.0,0 -110489310,"The Elder Scrolls V Skyrim",play,63.0,0 -110489310,"Team Fortress 2",purchase,1.0,0 -110489310,"Team Fortress 2",play,55.0,0 -110489310,"Borderlands 2",purchase,1.0,0 -110489310,"Borderlands 2",play,54.0,0 -110489310,"Magic Duels",purchase,1.0,0 -110489310,"Magic Duels",play,34.0,0 -110489310,"Marvel Heroes 2015",purchase,1.0,0 -110489310,"Marvel Heroes 2015",play,0.2,0 -110489310,"Unturned",purchase,1.0,0 -194097479,"Unturned",purchase,1.0,0 -194097479,"Unturned",play,5.5,0 -241348923,"Dota 2",purchase,1.0,0 -241348923,"Dota 2",play,0.6,0 -123732393,"Dead Island",purchase,1.0,0 -123732393,"Dead Island",play,0.4,0 -216025815,"Rust",purchase,1.0,0 -216025815,"Rust",play,82.0,0 -216025815,"Trove",purchase,1.0,0 -216025815,"Trove",play,53.0,0 -216025815,"Borderlands 2",purchase,1.0,0 -216025815,"Borderlands 2",play,45.0,0 -216025815,"Path of Exile",purchase,1.0,0 -216025815,"Path of Exile",play,32.0,0 -216025815,"Borderlands",purchase,1.0,0 -216025815,"Borderlands",play,25.0,0 -216025815,"Brawlhalla",purchase,1.0,0 -216025815,"Brawlhalla",play,16.3,0 -216025815,"Strife",purchase,1.0,0 -216025815,"Strife",play,15.5,0 -216025815,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -216025815,"The Witcher 2 Assassins of Kings Enhanced Edition",play,13.8,0 -216025815,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -216025815,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,13.7,0 -216025815,"Batman Arkham Origins",purchase,1.0,0 -216025815,"Batman Arkham Origins",play,12.0,0 -216025815,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -216025815,"Batman Arkham Asylum GOTY Edition",play,11.3,0 -216025815,"Alice Madness Returns",purchase,1.0,0 -216025815,"Alice Madness Returns",play,9.8,0 -216025815,"PlanetSide 2",purchase,1.0,0 -216025815,"PlanetSide 2",play,9.4,0 -216025815,"Far Cry 3",purchase,1.0,0 -216025815,"Far Cry 3",play,8.8,0 -216025815,"Dead Island Epidemic",purchase,1.0,0 -216025815,"Dead Island Epidemic",play,8.3,0 -216025815,"Sacred Gold",purchase,1.0,0 -216025815,"Sacred Gold",play,8.2,0 -216025815,"Dirty Bomb",purchase,1.0,0 -216025815,"Dirty Bomb",play,5.9,0 -216025815,"Bastion",purchase,1.0,0 -216025815,"Bastion",play,5.4,0 -216025815,"Spiral Knights",purchase,1.0,0 -216025815,"Spiral Knights",play,5.4,0 -216025815,"Neverwinter",purchase,1.0,0 -216025815,"Neverwinter",play,5.1,0 -216025815,"LEGO The Hobbit",purchase,1.0,0 -216025815,"LEGO The Hobbit",play,4.0,0 -216025815,"Trine 2",purchase,1.0,0 -216025815,"Trine 2",play,3.9,0 -216025815,"Dead Island",purchase,1.0,0 -216025815,"Dead Island",play,3.6,0 -216025815,"The Witcher Enhanced Edition",purchase,1.0,0 -216025815,"The Witcher Enhanced Edition",play,3.4,0 -216025815,"Clicker Heroes",purchase,1.0,0 -216025815,"Clicker Heroes",play,3.4,0 -216025815,"FINAL FANTASY VII",purchase,1.0,0 -216025815,"FINAL FANTASY VII",play,3.3,0 -216025815,"Warface",purchase,1.0,0 -216025815,"Warface",play,3.0,0 -216025815,"Call of Duty 2",purchase,1.0,0 -216025815,"Call of Duty 2",play,2.7,0 -216025815,"Team Fortress 2",purchase,1.0,0 -216025815,"Team Fortress 2",play,2.4,0 -216025815,"Crysis",purchase,1.0,0 -216025815,"Crysis",play,1.5,0 -216025815,"Controller Companion",purchase,1.0,0 -216025815,"Controller Companion",play,1.2,0 -216025815,"Oddworld Stranger's Wrath HD",purchase,1.0,0 -216025815,"Oddworld Stranger's Wrath HD",play,0.9,0 -216025815,"Nosgoth",purchase,1.0,0 -216025815,"Nosgoth",play,0.8,0 -216025815,"Oddworld Abe's Oddysee",purchase,1.0,0 -216025815,"Oddworld Abe's Oddysee",play,0.7,0 -216025815,"Mirror's Edge",purchase,1.0,0 -216025815,"Mirror's Edge",play,0.7,0 -216025815,"Lost Planet Extreme Condition",purchase,1.0,0 -216025815,"Lost Planet Extreme Condition",play,0.6,0 -216025815,"Only If",purchase,1.0,0 -216025815,"Only If",play,0.4,0 -216025815,"Curse of Mermos",purchase,1.0,0 -216025815,"Curse of Mermos",play,0.3,0 -216025815,"Survarium",purchase,1.0,0 -216025815,"Survarium",play,0.2,0 -216025815,"Dead Rising 2",purchase,1.0,0 -216025815,"Dead Rising 2",play,0.2,0 -216025815,"Garry's Mod",purchase,1.0,0 -216025815,"Garry's Mod",play,0.2,0 -216025815,"The Mighty Quest For Epic Loot",purchase,1.0,0 -216025815,"The Mighty Quest For Epic Loot",play,0.2,0 -216025815,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -216025815,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -216025815,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -216025815,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -216025815,"Dead Island Riptide",purchase,1.0,0 -216025815,"Earth 2150 The Moon Project",purchase,1.0,0 -216025815,"Oddworld Abe's Exoddus",purchase,1.0,0 -216025815,"Oddworld Munch's Oddysee",purchase,1.0,0 -216025815,"Operation Flashpoint Red River",purchase,1.0,0 -216025815,"Super Killer Hornet Resurrection",purchase,1.0,0 -158159336,"AdVenture Capitalist",purchase,1.0,0 -158159336,"AdVenture Capitalist",play,6.7,0 -158159336,"APB Reloaded",purchase,1.0,0 -158159336,"APB Reloaded",play,5.5,0 -158159336,"Dota 2",purchase,1.0,0 -158159336,"Dota 2",play,3.7,0 -158159336,"Warframe",purchase,1.0,0 -158159336,"Warframe",play,2.3,0 -158159336,"Heroes & Generals",purchase,1.0,0 -158159336,"Heroes & Generals",play,1.5,0 -158159336,"Warface",purchase,1.0,0 -158159336,"Warface",play,0.7,0 -158159336,"Dead Island Epidemic",purchase,1.0,0 -158159336,"Dead Island Epidemic",play,0.5,0 -158159336,"Magic Duels",purchase,1.0,0 -158159336,"Magic Duels",play,0.4,0 -158159336,"Hazard Ops",purchase,1.0,0 -158159336,"Hazard Ops",play,0.4,0 -158159336,"Source Filmmaker",purchase,1.0,0 -158159336,"Source Filmmaker",play,0.3,0 -158159336,"Team Fortress 2",purchase,1.0,0 -158159336,"Team Fortress 2",play,0.2,0 -158159336,"Dizzel",purchase,1.0,0 -158159336,"Metro 2033",purchase,1.0,0 -228706143,"Dota 2",purchase,1.0,0 -228706143,"Dota 2",play,9.0,0 -228706143,"HAWKEN",purchase,1.0,0 -228706143,"Warframe",purchase,1.0,0 -298263185,"GunZ 2 The Second Duel",purchase,1.0,0 -298263185,"GunZ 2 The Second Duel",play,4.8,0 -30574622,"Counter-Strike Condition Zero",purchase,1.0,0 -30574622,"Counter-Strike",purchase,1.0,0 -30574622,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -296917506,"Dota 2",purchase,1.0,0 -296917506,"Dota 2",play,46.0,0 -174415183,"Team Fortress 2",purchase,1.0,0 -174415183,"Team Fortress 2",play,14.7,0 -174415183,"Left 4 Dead 2",purchase,1.0,0 -174415183,"Left 4 Dead 2",play,7.0,0 -174415183,"Counter-Strike Global Offensive",purchase,1.0,0 -174415183,"Counter-Strike Global Offensive",play,3.9,0 -174415183,"Half-Life 2",purchase,1.0,0 -174415183,"ORION Prelude",purchase,1.0,0 -174415183,"Sniper Elite V2",purchase,1.0,0 -174415183,"The Expendabros",purchase,1.0,0 -191810425,"F1 2013",purchase,1.0,0 -191810425,"F1 2013",play,7.5,0 -86332470,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -86332470,"Call of Duty Modern Warfare 3 - Multiplayer",play,91.0,0 -86332470,"Team Fortress 2",purchase,1.0,0 -86332470,"Team Fortress 2",play,85.0,0 -86332470,"Call of Duty Modern Warfare 3",purchase,1.0,0 -86332470,"Call of Duty Modern Warfare 3",play,59.0,0 -86332470,"Deus Ex Human Revolution",purchase,1.0,0 -86332470,"Deus Ex Human Revolution",play,45.0,0 -86332470,"L.A. Noire",purchase,1.0,0 -86332470,"L.A. Noire",play,26.0,0 -86332470,"Far Cry 3",purchase,1.0,0 -86332470,"Far Cry 3",play,26.0,0 -86332470,"Metro 2033",purchase,1.0,0 -86332470,"Metro 2033",play,17.8,0 -86332470,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -86332470,"Burnout Paradise The Ultimate Box",play,10.2,0 -33479807,"Half-Life 2",purchase,1.0,0 -221695617,"Dota 2",purchase,1.0,0 -221695617,"Dota 2",play,297.0,0 -221695617,"FreeStyle2 Street Basketball",purchase,1.0,0 -221695617,"FreeStyle2 Street Basketball",play,125.0,0 -221695617,"Aura Kingdom",purchase,1.0,0 -221695617,"Free to Play",purchase,1.0,0 -221695617,"GunZ 2 The Second Duel",purchase,1.0,0 -221695617,"Marvel Heroes 2015",purchase,1.0,0 -221695617,"TERA",purchase,1.0,0 -184032170,"Enclave",purchase,1.0,0 -54888069,"The Longest Journey",purchase,1.0,0 -54888069,"The Longest Journey",play,5.4,0 -54888069,"Mass Effect",purchase,1.0,0 -54888069,"Mass Effect",play,2.8,0 -54888069,"Team Fortress Classic",purchase,1.0,0 -54888069,"Team Fortress Classic",play,0.1,0 -289524714,"Team Fortress 2",purchase,1.0,0 -289524714,"Team Fortress 2",play,3.9,0 -86978692,"Dota 2",purchase,1.0,0 -86978692,"Dota 2",play,34.0,0 -181373107,"Dota 2",purchase,1.0,0 -181373107,"Dota 2",play,5.0,0 -193156880,"Dota 2",purchase,1.0,0 -193156880,"Dota 2",play,1069.0,0 -193156880,"Counter-Strike Global Offensive",purchase,1.0,0 -193156880,"Counter-Strike Global Offensive",play,635.0,0 -193156880,"PAYDAY 2",purchase,1.0,0 -193156880,"PAYDAY 2",play,60.0,0 -193156880,"Depth",purchase,1.0,0 -193156880,"Depth",play,58.0,0 -193156880,"Garry's Mod",purchase,1.0,0 -193156880,"Garry's Mod",play,43.0,0 -193156880,"Rust",purchase,1.0,0 -193156880,"Rust",play,41.0,0 -193156880,"Killing Floor",purchase,1.0,0 -193156880,"Killing Floor",play,32.0,0 -193156880,"The Witcher 3 Wild Hunt",purchase,1.0,0 -193156880,"The Witcher 3 Wild Hunt",play,28.0,0 -193156880,"Counter-Strike Source",purchase,1.0,0 -193156880,"Counter-Strike Source",play,24.0,0 -193156880,"Dead Island",purchase,1.0,0 -193156880,"Dead Island",play,21.0,0 -193156880,"Unturned",purchase,1.0,0 -193156880,"Unturned",play,14.2,0 -193156880,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -193156880,"The Witcher 2 Assassins of Kings Enhanced Edition",play,10.7,0 -193156880,"Left 4 Dead 2",purchase,1.0,0 -193156880,"Left 4 Dead 2",play,8.4,0 -193156880,"Squishy the Suicidal Pig",purchase,1.0,0 -193156880,"Squishy the Suicidal Pig",play,6.2,0 -193156880,"BLOCKADE 3D",purchase,1.0,0 -193156880,"BLOCKADE 3D",play,5.5,0 -193156880,"Battlefield Bad Company 2",purchase,1.0,0 -193156880,"Battlefield Bad Company 2",play,5.3,0 -193156880,"Hamlet or the last game without MMORPG features, shaders and product placement",purchase,1.0,0 -193156880,"Hamlet or the last game without MMORPG features, shaders and product placement",play,5.1,0 -193156880,"GooCubelets",purchase,1.0,0 -193156880,"GooCubelets",play,4.1,0 -193156880,"Chivalry Medieval Warfare",purchase,1.0,0 -193156880,"Chivalry Medieval Warfare",play,3.9,0 -193156880,"BattleBlock Theater",purchase,1.0,0 -193156880,"BattleBlock Theater",play,3.5,0 -193156880,"SpeedRunners",purchase,1.0,0 -193156880,"SpeedRunners",play,3.4,0 -193156880,"Terraria",purchase,1.0,0 -193156880,"Terraria",play,3.0,0 -193156880,"South Park The Stick of Truth",purchase,1.0,0 -193156880,"South Park The Stick of Truth",play,2.5,0 -193156880,"Team Fortress 2",purchase,1.0,0 -193156880,"Team Fortress 2",play,2.4,0 -193156880,"Caster",purchase,1.0,0 -193156880,"Caster",play,2.2,0 -193156880,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -193156880,"Just Cause 2 Multiplayer Mod",play,1.9,0 -193156880,"Sonic Adventure 2 ",purchase,1.0,0 -193156880,"Sonic Adventure 2 ",play,1.4,0 -193156880,"Mirror's Edge",purchase,1.0,0 -193156880,"Mirror's Edge",play,1.3,0 -193156880,"Counter-Strike Nexon Zombies",purchase,1.0,0 -193156880,"Counter-Strike Nexon Zombies",play,1.3,0 -193156880,"Dead Bits",purchase,1.0,0 -193156880,"Dead Bits",play,1.2,0 -193156880,"Battle Nations",purchase,1.0,0 -193156880,"Battle Nations",play,0.9,0 -193156880,"Cthulhu Saves the World ",purchase,1.0,0 -193156880,"Cthulhu Saves the World ",play,0.7,0 -193156880,"Waveform",purchase,1.0,0 -193156880,"Waveform",play,0.7,0 -193156880,"Fistful of Frags",purchase,1.0,0 -193156880,"Fistful of Frags",play,0.7,0 -193156880,"BioShock 2",purchase,1.0,0 -193156880,"BioShock 2",play,0.6,0 -193156880,"Defy Gravity",purchase,1.0,0 -193156880,"Defy Gravity",play,0.6,0 -193156880,"Quake Live",purchase,1.0,0 -193156880,"Quake Live",play,0.6,0 -193156880,"Mountain",purchase,1.0,0 -193156880,"Mountain",play,0.4,0 -193156880,"Just Cause 2",purchase,1.0,0 -193156880,"Just Cause 2",play,0.3,0 -193156880,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -193156880,"Kingdoms of Amalur Reckoning",play,0.2,0 -193156880,"RaceRoom Racing Experience ",purchase,1.0,0 -193156880,"RaceRoom Racing Experience ",play,0.2,0 -193156880,"Gomo",purchase,1.0,0 -193156880,"Gomo",play,0.2,0 -193156880,"Devil May Cry 4",purchase,1.0,0 -193156880,"Devil May Cry 4",play,0.1,0 -193156880,"Football Superstars",purchase,1.0,0 -193156880,"Football Superstars",play,0.1,0 -193156880,"Tactical Intervention",purchase,1.0,0 -193156880,"No More Room in Hell",purchase,1.0,0 -193156880,"Bad Rats",purchase,1.0,0 -193156880,"My Lands",purchase,1.0,0 -193156880,"Eets",purchase,1.0,0 -193156880,"12 Labours of Hercules II The Cretan Bull",purchase,1.0,0 -193156880,"A New Beginning - Final Cut",purchase,1.0,0 -193156880,"Breath of Death VII ",purchase,1.0,0 -193156880,"Commandos 2 Men of Courage",purchase,1.0,0 -193156880,"Commandos Beyond the Call of Duty",purchase,1.0,0 -193156880,"Counter-Strike",purchase,1.0,0 -193156880,"Counter-Strike Condition Zero",purchase,1.0,0 -193156880,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -193156880,"Dead Island Epidemic",purchase,1.0,0 -193156880,"Dead Island Riptide",purchase,1.0,0 -193156880,"Depth - S.T.E.V.E. Pack",purchase,1.0,0 -193156880,"DETOUR",purchase,1.0,0 -193156880,"Fork Parker's Holiday Profit Hike",purchase,1.0,0 -193156880,"Frankenstein Master of Death",purchase,1.0,0 -193156880,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -193156880,"Labyronia RPG",purchase,1.0,0 -193156880,"Loadout Campaign Beta",purchase,1.0,0 -193156880,"Mafia II",purchase,1.0,0 -193156880,"Morphopolis",purchase,1.0,0 -193156880,"Out There Somewhere",purchase,1.0,0 -193156880,"Patch testing for Chivalry",purchase,1.0,0 -193156880,"PAYDAY The Heist",purchase,1.0,0 -193156880,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",purchase,1.0,0 -193156880,"Penny Arcade's On the Rain-Slick Precipice of Darkness 4",purchase,1.0,0 -193156880,"Polarity",purchase,1.0,0 -193156880,"POSTAL 2",purchase,1.0,0 -193156880,"Pressured",purchase,1.0,0 -193156880,"Puzzle Dimension",purchase,1.0,0 -193156880,"Revolution Ace",purchase,1.0,0 -193156880,"RIP",purchase,1.0,0 -193156880,"RIP 2 Strike Back",purchase,1.0,0 -193156880,"RIP 3 The Last Hero",purchase,1.0,0 -193156880,"Robotex",purchase,1.0,0 -193156880,"RUSH",purchase,1.0,0 -193156880,"Saviors",purchase,1.0,0 -193156880,"Soul Gambler",purchase,1.0,0 -193156880,"Star Chronicles Delta Quadrant",purchase,1.0,0 -193156880,"Stellar 2D",purchase,1.0,0 -193156880,"Survarium",purchase,1.0,0 -193156880,"Terra Incognita ~ Chapter One The Descendant",purchase,1.0,0 -193156880,"Terrorhedron",purchase,1.0,0 -193156880,"The Walking Dead Season Two",purchase,1.0,0 -193156880,"Tiny Bridge Ratventure",purchase,1.0,0 -193156880,"Toki Tori",purchase,1.0,0 -193156880,"Warframe",purchase,1.0,0 -193156880,"War Operations",purchase,1.0,0 -193156880,"Why So Evil 2 Dystopia",purchase,1.0,0 -15951451,"Counter-Strike",purchase,1.0,0 -15951451,"Counter-Strike",play,1.9,0 -15951451,"Counter-Strike Condition Zero",purchase,1.0,0 -15951451,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -64971477,"Loadout",purchase,1.0,0 -64971477,"Loadout",play,23.0,0 -64971477,"Portal",purchase,1.0,0 -64971477,"Portal",play,1.5,0 -222035871,"Dota 2",purchase,1.0,0 -222035871,"Dota 2",play,253.0,0 -107377573,"Counter-Strike Global Offensive",purchase,1.0,0 -107377573,"Counter-Strike Global Offensive",play,775.0,0 -107377573,"Borderlands 2",purchase,1.0,0 -107377573,"Borderlands 2",play,384.0,0 -107377573,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -107377573,"Call of Duty Black Ops II - Multiplayer",play,287.0,0 -107377573,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -107377573,"METAL GEAR SOLID V THE PHANTOM PAIN",play,91.0,0 -107377573,"Team Fortress 2",purchase,1.0,0 -107377573,"Team Fortress 2",play,87.0,0 -107377573,"Borderlands The Pre-Sequel",purchase,1.0,0 -107377573,"Borderlands The Pre-Sequel",play,48.0,0 -107377573,"Just Cause 2",purchase,1.0,0 -107377573,"Just Cause 2",play,44.0,0 -107377573,"Saints Row IV",purchase,1.0,0 -107377573,"Saints Row IV",play,38.0,0 -107377573,"The Elder Scrolls V Skyrim",purchase,1.0,0 -107377573,"The Elder Scrolls V Skyrim",play,34.0,0 -107377573,"Blacklight Retribution",purchase,1.0,0 -107377573,"Blacklight Retribution",play,34.0,0 -107377573,"Assassin's Creed Brotherhood",purchase,1.0,0 -107377573,"Assassin's Creed Brotherhood",play,31.0,0 -107377573,"Assassin's Creed II",purchase,1.0,0 -107377573,"Assassin's Creed II",play,26.0,0 -107377573,"Garry's Mod",purchase,1.0,0 -107377573,"Garry's Mod",play,26.0,0 -107377573,"Batman Arkham Knight",purchase,1.0,0 -107377573,"Batman Arkham Knight",play,26.0,0 -107377573,"Tomb Raider",purchase,1.0,0 -107377573,"Tomb Raider",play,22.0,0 -107377573,"Far Cry 3",purchase,1.0,0 -107377573,"Far Cry 3",play,20.0,0 -107377573,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -107377573,"Call of Duty Modern Warfare 2 - Multiplayer",play,19.0,0 -107377573,"Batman Arkham City GOTY",purchase,1.0,0 -107377573,"Batman Arkham City GOTY",play,17.8,0 -107377573,"Middle-earth Shadow of Mordor",purchase,1.0,0 -107377573,"Middle-earth Shadow of Mordor",play,17.0,0 -107377573,"Portal 2",purchase,1.0,0 -107377573,"Portal 2",play,16.3,0 -107377573,"Nosgoth",purchase,1.0,0 -107377573,"Nosgoth",play,14.9,0 -107377573,"Rocket League",purchase,1.0,0 -107377573,"Rocket League",play,13.7,0 -107377573,"BioShock Infinite",purchase,1.0,0 -107377573,"BioShock Infinite",play,11.9,0 -107377573,"Batman Arkham Origins",purchase,1.0,0 -107377573,"Batman Arkham Origins",play,11.5,0 -107377573,"Dirty Bomb",purchase,1.0,0 -107377573,"Dirty Bomb",play,11.0,0 -107377573,"PROTOTYPE 2",purchase,1.0,0 -107377573,"PROTOTYPE 2",play,10.7,0 -107377573,"Firefall",purchase,1.0,0 -107377573,"Firefall",play,9.6,0 -107377573,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -107377573,"Call of Duty Black Ops II - Zombies",play,9.6,0 -107377573,"Arma 3",purchase,1.0,0 -107377573,"Arma 3",play,8.8,0 -107377573,"PAYDAY 2",purchase,1.0,0 -107377573,"PAYDAY 2",play,8.0,0 -107377573,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -107377573,"Tom Clancy's Ghost Recon Phantoms - EU",play,7.3,0 -107377573,"Fiesta Online",purchase,1.0,0 -107377573,"Fiesta Online",play,6.2,0 -107377573,"Gotham City Impostors Free To Play",purchase,1.0,0 -107377573,"Gotham City Impostors Free To Play",play,5.6,0 -107377573,"BioShock",purchase,1.0,0 -107377573,"BioShock",play,5.5,0 -107377573,"Mirror's Edge",purchase,1.0,0 -107377573,"Mirror's Edge",play,5.0,0 -107377573,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -107377573,"Just Cause 2 Multiplayer Mod",play,4.7,0 -107377573,"Chivalry Medieval Warfare",purchase,1.0,0 -107377573,"Chivalry Medieval Warfare",play,4.6,0 -107377573,"Worms Revolution",purchase,1.0,0 -107377573,"Worms Revolution",play,4.6,0 -107377573,"Sniper Elite V2",purchase,1.0,0 -107377573,"Sniper Elite V2",play,3.6,0 -107377573,"The Mighty Quest For Epic Loot",purchase,1.0,0 -107377573,"The Mighty Quest For Epic Loot",play,2.9,0 -107377573,"Unturned",purchase,1.0,0 -107377573,"Unturned",play,1.8,0 -107377573,"Left 4 Dead 2",purchase,1.0,0 -107377573,"Left 4 Dead 2",play,1.5,0 -107377573,"PlanetSide 2",purchase,1.0,0 -107377573,"PlanetSide 2",play,1.0,0 -107377573,"Call of Duty Black Ops II",purchase,1.0,0 -107377573,"Call of Duty Black Ops II",play,0.8,0 -107377573,"Ace of Spades",purchase,1.0,0 -107377573,"Ace of Spades",play,0.6,0 -107377573,"Gear Up",purchase,1.0,0 -107377573,"Gear Up",play,0.3,0 -107377573,"Arma 2",purchase,1.0,0 -107377573,"Arma 2",play,0.2,0 -107377573,"Arma 2 DayZ Mod",purchase,1.0,0 -107377573,"Call of Duty Modern Warfare 2",purchase,1.0,0 -107377573,"Arma 2 Operation Arrowhead",purchase,1.0,0 -107377573,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -107377573,"Arma 3 Zeus",purchase,1.0,0 -107377573,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -107377573,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -107377573,"Batman Arkham Origins - Initiation",purchase,1.0,0 -107377573,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -107377573,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -107377573,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -107377573,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -107377573,"BioShock 2",purchase,1.0,0 -107377573,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -107377573,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -107377573,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -107377573,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -107377573,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -107377573,"KnightShift",purchase,1.0,0 -107377573,"ORION Prelude",purchase,1.0,0 -107377573,"Patch testing for Chivalry",purchase,1.0,0 -171452409,"Team Fortress 2",purchase,1.0,0 -171452409,"Team Fortress 2",play,0.2,0 -251164636,"Counter-Strike Global Offensive",purchase,1.0,0 -251164636,"Counter-Strike Global Offensive",play,556.0,0 -251164636,"Sid Meier's Civilization V",purchase,1.0,0 -251164636,"Sid Meier's Civilization V",play,32.0,0 -251164636,"DiRT Rally",purchase,1.0,0 -251164636,"DiRT Rally",play,21.0,0 -251164636,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -251164636,"METAL GEAR SOLID V THE PHANTOM PAIN",play,8.6,0 -251164636,"Project CARS",purchase,1.0,0 -251164636,"Project CARS",play,7.8,0 -251164636,"Terraria",purchase,1.0,0 -251164636,"Terraria",play,0.2,0 -251164636,"War Thunder",purchase,1.0,0 -251164636,"Transformice",purchase,1.0,0 -251164636,"Realm of the Mad God",purchase,1.0,0 -251164636,"8-Bit Commando",purchase,1.0,0 -251164636,"Enclave",purchase,1.0,0 -251164636,"Gold Rush! Classic",purchase,1.0,0 -251164636,"Hero Academy",purchase,1.0,0 -251164636,"Iron Sky Invasion",purchase,1.0,0 -251164636,"Jagged Alliance 2 - Wildfire ",purchase,1.0,0 -251164636,"Septerra Core",purchase,1.0,0 -251164636,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -251164636,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -251164636,"The I of the Dragon",purchase,1.0,0 -251164636,"Two Worlds II Castle Defense",purchase,1.0,0 -251164636,"World War III Black Gold",purchase,1.0,0 -251164636,"X-Blades",purchase,1.0,0 -173051184,"Team Fortress 2",purchase,1.0,0 -173051184,"Team Fortress 2",play,0.3,0 -74811317,"Team Fortress 2",purchase,1.0,0 -74811317,"Team Fortress 2",play,1.4,0 -50967861,"Football Manager 2009",purchase,1.0,0 -50967861,"Football Manager 2009",play,18.8,0 -156859477,"Dota 2",purchase,1.0,0 -156859477,"Dota 2",play,87.0,0 -298505728,"Path of Exile",purchase,1.0,0 -298505728,"Path of Exile",play,5.0,0 -62545742,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -62545742,"Call of Duty Black Ops - Multiplayer",play,314.0,0 -62545742,"Grand Theft Auto IV",purchase,1.0,0 -62545742,"Grand Theft Auto IV",play,63.0,0 -62545742,"Counter-Strike Source",purchase,1.0,0 -62545742,"Counter-Strike Source",play,34.0,0 -62545742,"Call of Duty Black Ops",purchase,1.0,0 -62545742,"Call of Duty Black Ops",play,29.0,0 -62545742,"Medal of Honor(TM) Single Player",purchase,1.0,0 -62545742,"Medal of Honor(TM) Single Player",play,14.8,0 -62545742,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -62545742,"Call of Duty Modern Warfare 2 - Multiplayer",play,14.6,0 -62545742,"Left 4 Dead 2",purchase,1.0,0 -62545742,"Left 4 Dead 2",play,9.9,0 -62545742,"Fallout 3",purchase,1.0,0 -62545742,"Fallout 3",play,6.2,0 -62545742,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -62545742,"Medal of Honor(TM) Multiplayer",play,6.1,0 -62545742,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -62545742,"Unreal Tournament 3 Black Edition",play,4.4,0 -62545742,"Battlefield Bad Company 2",purchase,1.0,0 -62545742,"Battlefield Bad Company 2",play,4.4,0 -62545742,"Portal",purchase,1.0,0 -62545742,"Portal",play,2.6,0 -62545742,"Need for Speed SHIFT",purchase,1.0,0 -62545742,"Need for Speed SHIFT",play,1.2,0 -62545742,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -62545742,"The Elder Scrolls IV Oblivion ",play,0.6,0 -62545742,"Call of Duty Modern Warfare 2",purchase,1.0,0 -62545742,"Call of Duty Modern Warfare 2",play,0.5,0 -62545742,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -62545742,"Medal of Honor Pre-Order",purchase,1.0,0 -204749083,"Counter-Strike Global Offensive",purchase,1.0,0 -204749083,"Counter-Strike Global Offensive",play,90.0,0 -273817824,"Counter-Strike Global Offensive",purchase,1.0,0 -273817824,"Counter-Strike Global Offensive",play,38.0,0 -273817824,"Dota 2",purchase,1.0,0 -273817824,"Dota 2",play,6.7,0 -273817824,"Trove",purchase,1.0,0 -273817824,"Survarium",purchase,1.0,0 -273817824,"Unturned",purchase,1.0,0 -273817824,"Warframe",purchase,1.0,0 -294391279,"Napoleon Total War",purchase,1.0,0 -294391279,"Napoleon Total War",play,0.9,0 -294391279,"Empire Total War",purchase,1.0,0 -103373255,"Team Fortress 2",purchase,1.0,0 -103373255,"Team Fortress 2",play,31.0,0 -23492094,"Dota 2",purchase,1.0,0 -23492094,"Dota 2",play,3038.0,0 -23492094,"Counter-Strike Global Offensive",purchase,1.0,0 -23492094,"Counter-Strike Global Offensive",play,1085.0,0 -23492094,"Counter-Strike Source",purchase,1.0,0 -23492094,"Counter-Strike Source",play,466.0,0 -23492094,"Counter-Strike",purchase,1.0,0 -23492094,"Counter-Strike",play,439.0,0 -23492094,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -23492094,"Call of Duty Black Ops II - Multiplayer",play,38.0,0 -23492094,"Saints Row The Third",purchase,1.0,0 -23492094,"Saints Row The Third",play,35.0,0 -23492094,"PAYDAY 2",purchase,1.0,0 -23492094,"PAYDAY 2",play,35.0,0 -23492094,"Sleeping Dogs",purchase,1.0,0 -23492094,"Sleeping Dogs",play,28.0,0 -23492094,"LYNE",purchase,1.0,0 -23492094,"LYNE",play,17.8,0 -23492094,"Call of Duty Black Ops II",purchase,1.0,0 -23492094,"Call of Duty Black Ops II",play,17.5,0 -23492094,"Arctic Combat",purchase,1.0,0 -23492094,"Arctic Combat",play,17.2,0 -23492094,"L.A. Noire",purchase,1.0,0 -23492094,"L.A. Noire",play,16.7,0 -23492094,"Sid Meier's Civilization V",purchase,1.0,0 -23492094,"Sid Meier's Civilization V",play,16.6,0 -23492094,"The Sims(TM) 3",purchase,1.0,0 -23492094,"The Sims(TM) 3",play,16.1,0 -23492094,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -23492094,"Call of Duty Modern Warfare 3 - Multiplayer",play,15.0,0 -23492094,"Tomb Raider",purchase,1.0,0 -23492094,"Tomb Raider",play,10.4,0 -23492094,"BioShock Infinite",purchase,1.0,0 -23492094,"BioShock Infinite",play,8.5,0 -23492094,"Garry's Mod",purchase,1.0,0 -23492094,"Garry's Mod",play,8.2,0 -23492094,"Portal 2",purchase,1.0,0 -23492094,"Portal 2",play,6.4,0 -23492094,"Hitman Absolution",purchase,1.0,0 -23492094,"Hitman Absolution",play,3.3,0 -23492094,"Team Fortress 2",purchase,1.0,0 -23492094,"Team Fortress 2",play,3.2,0 -23492094,"The Binding of Isaac",purchase,1.0,0 -23492094,"The Binding of Isaac",play,2.9,0 -23492094,"Super Meat Boy",purchase,1.0,0 -23492094,"Super Meat Boy",play,2.4,0 -23492094,"Sniper Elite V2",purchase,1.0,0 -23492094,"Sniper Elite V2",play,2.3,0 -23492094,"Half-Life 2",purchase,1.0,0 -23492094,"Half-Life 2",play,2.1,0 -23492094,"DiggerOnline",purchase,1.0,0 -23492094,"DiggerOnline",play,1.7,0 -23492094,"LIMBO",purchase,1.0,0 -23492094,"LIMBO",play,1.7,0 -23492094,"Amnesia The Dark Descent",purchase,1.0,0 -23492094,"Amnesia The Dark Descent",play,1.6,0 -23492094,"Hell Yeah!",purchase,1.0,0 -23492094,"Hell Yeah!",play,1.4,0 -23492094,"Magic Duels",purchase,1.0,0 -23492094,"Magic Duels",play,1.2,0 -23492094,"Binary Domain",purchase,1.0,0 -23492094,"Binary Domain",play,1.1,0 -23492094,"Call of Duty Ghosts",purchase,1.0,0 -23492094,"Call of Duty Ghosts",play,1.1,0 -23492094,"Counter-Strike Condition Zero",purchase,1.0,0 -23492094,"Counter-Strike Condition Zero",play,1.0,0 -23492094,"Sakura Clicker",purchase,1.0,0 -23492094,"Sakura Clicker",play,0.8,0 -23492094,"Dead Island",purchase,1.0,0 -23492094,"Dead Island",play,0.7,0 -23492094,"Portal",purchase,1.0,0 -23492094,"Portal",play,0.7,0 -23492094,"Alice Madness Returns",purchase,1.0,0 -23492094,"Alice Madness Returns",play,0.7,0 -23492094,"Psychonauts",purchase,1.0,0 -23492094,"Psychonauts",play,0.5,0 -23492094,"Metro 2033",purchase,1.0,0 -23492094,"Metro 2033",play,0.4,0 -23492094,"Magicka Wizard Wars",purchase,1.0,0 -23492094,"Magicka Wizard Wars",play,0.4,0 -23492094,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -23492094,"The Incredible Adventures of Van Helsing",play,0.4,0 -23492094,"Call of Duty Modern Warfare 3",purchase,1.0,0 -23492094,"Call of Duty Modern Warfare 3",play,0.4,0 -23492094,"Reus",purchase,1.0,0 -23492094,"Reus",play,0.2,0 -23492094,"Darksiders II",purchase,1.0,0 -23492094,"Darksiders II",play,0.1,0 -23492094,"Assassin's Creed Brotherhood",purchase,1.0,0 -23492094,"Assassin's Creed Brotherhood",play,0.1,0 -23492094,"Assassin's Creed Revelations",purchase,1.0,0 -23492094,"Assassin's Creed II",purchase,1.0,0 -23492094,"Defiance",purchase,1.0,0 -23492094,"Greed Corp",purchase,1.0,0 -23492094,"Afterfall InSanity Extended Edition",purchase,1.0,0 -23492094,"Assassin's Creed",purchase,1.0,0 -23492094,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -23492094,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -23492094,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -23492094,"Half-Life 2 Deathmatch",purchase,1.0,0 -23492094,"Half-Life 2 Lost Coast",purchase,1.0,0 -23492094,"Hitman Sniper Challenge",purchase,1.0,0 -23492094,"Mafia II",purchase,1.0,0 -23492094,"Metro Conflict",purchase,1.0,0 -23492094,"Psychonauts Demo",purchase,1.0,0 -23492094,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -23492094,"Takedown Red Sabre",purchase,1.0,0 -201816765,"Unturned",purchase,1.0,0 -201816765,"Unturned",play,124.0,0 -201816765,"BLOCKADE 3D",purchase,1.0,0 -201816765,"BLOCKADE 3D",play,10.2,0 -201816765,"Trove",purchase,1.0,0 -201816765,"Trove",play,7.2,0 -201816765,"Toribash",purchase,1.0,0 -201816765,"Toribash",play,0.6,0 -201816765,"Warface",purchase,1.0,0 -201816765,"Warface",play,0.6,0 -201816765,"Gotham City Impostors Free To Play",purchase,1.0,0 -201816765,"Gotham City Impostors Free To Play",play,0.5,0 -201816765,"No More Room in Hell",purchase,1.0,0 -201816765,"No More Room in Hell",play,0.5,0 -201816765,"Ascend Hand of Kul",purchase,1.0,0 -201816765,"8BitMMO",purchase,1.0,0 -201816765,"ArcheAge",purchase,1.0,0 -201816765,"Codename CURE",purchase,1.0,0 -132180557,"Call of Duty World at War",purchase,1.0,0 -132180557,"Call of Duty World at War",play,141.0,0 -132180557,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -132180557,"RollerCoaster Tycoon 3 Platinum!",play,121.0,0 -132180557,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -132180557,"Call of Duty Modern Warfare 2 - Multiplayer",play,37.0,0 -132180557,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -132180557,"Just Cause 2 Multiplayer Mod",play,11.5,0 -132180557,"Far Cry 3",purchase,1.0,0 -132180557,"Far Cry 3",play,10.2,0 -132180557,"Counter-Strike Global Offensive",purchase,1.0,0 -132180557,"Counter-Strike Global Offensive",play,9.6,0 -132180557,"Team Fortress 2",purchase,1.0,0 -132180557,"Team Fortress 2",play,8.5,0 -132180557,"RollerCoaster Tycoon Deluxe",purchase,1.0,0 -132180557,"RollerCoaster Tycoon Deluxe",play,8.1,0 -132180557,"Insurgency",purchase,1.0,0 -132180557,"Insurgency",play,5.1,0 -132180557,"Call of Duty Modern Warfare 2",purchase,1.0,0 -132180557,"Call of Duty Modern Warfare 2",play,4.3,0 -132180557,"Battlefield Bad Company 2",purchase,1.0,0 -132180557,"Battlefield Bad Company 2",play,3.6,0 -132180557,"Just Cause 2",purchase,1.0,0 -132180557,"Just Cause 2",play,2.9,0 -132180557,"Dead Island Riptide",purchase,1.0,0 -132180557,"Dead Island Riptide",play,2.7,0 -132180557,"Dead Island",purchase,1.0,0 -132180557,"Dead Island",play,1.9,0 -132180557,"Far Cry 2",purchase,1.0,0 -132180557,"Far Cry 2",play,1.6,0 -132180557,"Garry's Mod",purchase,1.0,0 -132180557,"Garry's Mod",play,1.3,0 -132180557,"War Thunder",purchase,1.0,0 -132180557,"War Thunder",play,1.2,0 -132180557,"RollerCoaster Tycoon 2 Triple Thrill Pack",purchase,1.0,0 -132180557,"RollerCoaster Tycoon 2 Triple Thrill Pack",play,0.6,0 -132180557,"Far Cry 3 Blood Dragon",purchase,1.0,0 -132180557,"Far Cry 3 Blood Dragon",play,0.6,0 -132180557,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -132180557,"Dead Island Epidemic",purchase,1.0,0 -132180557,"Far Cry",purchase,1.0,0 -132180557,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -195147702,"Football Manager 2014",purchase,1.0,0 -195147702,"Football Manager 2014",play,131.0,0 -195147702,"Football Manager 2016",purchase,1.0,0 -195147702,"Football Manager 2016",play,28.0,0 -200560312,"Dota 2",purchase,1.0,0 -200560312,"Dota 2",play,1.1,0 -39758678,"Half-Life 2",purchase,1.0,0 -39758678,"Half-Life 2",play,27.0,0 -39758678,"Call of Duty Modern Warfare 2",purchase,1.0,0 -39758678,"Call of Duty Modern Warfare 2",play,15.8,0 -39758678,"Team Fortress 2",purchase,1.0,0 -39758678,"Team Fortress 2",play,13.6,0 -39758678,"Half-Life 2 Episode Two",purchase,1.0,0 -39758678,"Half-Life 2 Episode Two",play,9.6,0 -39758678,"Half-Life 2 Episode One",purchase,1.0,0 -39758678,"Half-Life 2 Episode One",play,6.4,0 -39758678,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -39758678,"Call of Duty Modern Warfare 2 - Multiplayer",play,5.1,0 -39758678,"Half-Life 2 Lost Coast",purchase,1.0,0 -39758678,"Half-Life 2 Lost Coast",play,1.3,0 -39758678,"Portal",purchase,1.0,0 -39758678,"Portal",play,0.4,0 -7431946,"Borderlands 2",purchase,1.0,0 -7431946,"Borderlands 2",play,148.0,0 -7431946,"Borderlands The Pre-Sequel",purchase,1.0,0 -7431946,"Borderlands The Pre-Sequel",play,75.0,0 -7431946,"Grim Dawn",purchase,1.0,0 -7431946,"Grim Dawn",play,60.0,0 -7431946,"Magic 2014 ",purchase,1.0,0 -7431946,"Magic 2014 ",play,54.0,0 -7431946,"Warframe",purchase,1.0,0 -7431946,"Warframe",play,51.0,0 -7431946,"Sid Meier's Civilization V",purchase,1.0,0 -7431946,"Sid Meier's Civilization V",play,40.0,0 -7431946,"Starbound",purchase,1.0,0 -7431946,"Starbound",play,30.0,0 -7431946,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -7431946,"Sid Meier's Civilization Beyond Earth",play,28.0,0 -7431946,"Dungeon Defenders II",purchase,1.0,0 -7431946,"Dungeon Defenders II",play,20.0,0 -7431946,"Counter-Strike Global Offensive",purchase,1.0,0 -7431946,"Counter-Strike Global Offensive",play,17.8,0 -7431946,"Dota 2",purchase,1.0,0 -7431946,"Dota 2",play,17.8,0 -7431946,"Star Conflict",purchase,1.0,0 -7431946,"Star Conflict",play,16.6,0 -7431946,"Team Fortress 2",purchase,1.0,0 -7431946,"Team Fortress 2",play,16.1,0 -7431946,"Day of Defeat Source",purchase,1.0,0 -7431946,"Day of Defeat Source",play,15.6,0 -7431946,"Portal 2",purchase,1.0,0 -7431946,"Portal 2",play,13.9,0 -7431946,"Natural Selection 2",purchase,1.0,0 -7431946,"Natural Selection 2",play,12.8,0 -7431946,"Prison Architect",purchase,1.0,0 -7431946,"Prison Architect",play,8.1,0 -7431946,"Cities Skylines",purchase,1.0,0 -7431946,"Cities Skylines",play,7.8,0 -7431946,"Stronghold 3",purchase,1.0,0 -7431946,"Stronghold 3",play,7.6,0 -7431946,"Audiosurf",purchase,1.0,0 -7431946,"Audiosurf",play,6.9,0 -7431946,"Crypt of the NecroDancer",purchase,1.0,0 -7431946,"Crypt of the NecroDancer",play,6.8,0 -7431946,"Torchlight II",purchase,1.0,0 -7431946,"Torchlight II",play,5.2,0 -7431946,"PlanetSide 2",purchase,1.0,0 -7431946,"PlanetSide 2",play,3.5,0 -7431946,"Magic 2015",purchase,1.0,0 -7431946,"Magic 2015",play,2.7,0 -7431946,"MapleStory",purchase,1.0,0 -7431946,"MapleStory",play,2.4,0 -7431946,"Farming Simulator 2013",purchase,1.0,0 -7431946,"Farming Simulator 2013",play,1.9,0 -7431946,"Counter-Strike Source",purchase,1.0,0 -7431946,"Counter-Strike Source",play,0.8,0 -7431946,"Counter-Strike",purchase,1.0,0 -7431946,"Day of Defeat",purchase,1.0,0 -7431946,"Deathmatch Classic",purchase,1.0,0 -7431946,"Half-Life",purchase,1.0,0 -7431946,"Half-Life 2",purchase,1.0,0 -7431946,"Half-Life 2 Deathmatch",purchase,1.0,0 -7431946,"Half-Life 2 Lost Coast",purchase,1.0,0 -7431946,"Half-Life Blue Shift",purchase,1.0,0 -7431946,"Half-Life Opposing Force",purchase,1.0,0 -7431946,"Ricochet",purchase,1.0,0 -7431946,"Starbound - Unstable",purchase,1.0,0 -7431946,"Team Fortress Classic",purchase,1.0,0 -7431946,"Trainz Simulator 12",purchase,1.0,0 -200345112,"Dota 2",purchase,1.0,0 -200345112,"Dota 2",play,1.9,0 -200345112,"GunZ 2 The Second Duel",purchase,1.0,0 -200345112,"Warframe",purchase,1.0,0 -196594918,"Team Fortress 2",purchase,1.0,0 -196594918,"Team Fortress 2",play,206.0,0 -274410276,"Dota 2",purchase,1.0,0 -274410276,"Dota 2",play,240.0,0 -274410276,"Aura Kingdom",purchase,1.0,0 -274410276,"FreeStyle2 Street Basketball",purchase,1.0,0 -274410276,"GunZ 2 The Second Duel",purchase,1.0,0 -274410276,"Heroes & Generals",purchase,1.0,0 -274410276,"Quake Live",purchase,1.0,0 -274410276,"RaceRoom Racing Experience ",purchase,1.0,0 -274410276,"Ragnarok Online 2",purchase,1.0,0 -274410276,"TERA",purchase,1.0,0 -274410276,"Warframe",purchase,1.0,0 -241230534,"Grand Theft Auto San Andreas",purchase,1.0,0 -241230534,"Grand Theft Auto San Andreas",play,6.4,0 -241230534,"Amnesia The Dark Descent",purchase,1.0,0 -241230534,"Amnesia The Dark Descent",play,1.3,0 -241230534,"Super Meat Boy",purchase,1.0,0 -241230534,"Super Meat Boy",play,0.6,0 -241230534,"Five Nights at Freddy's",purchase,1.0,0 -241230534,"Five Nights at Freddy's",play,0.6,0 -241230534,"Grand Theft Auto San Andreas",purchase,1.0,0 -115037563,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -115037563,"Call of Duty Black Ops II - Multiplayer",play,145.0,0 -115037563,"Call of Duty World at War",purchase,1.0,0 -115037563,"Call of Duty World at War",play,62.0,0 -115037563,"Team Fortress 2",purchase,1.0,0 -115037563,"Team Fortress 2",play,38.0,0 -115037563,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -115037563,"Call of Duty Black Ops II - Zombies",play,24.0,0 -115037563,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -115037563,"Call of Duty Modern Warfare 2 - Multiplayer",play,23.0,0 -115037563,"Garry's Mod",purchase,1.0,0 -115037563,"Garry's Mod",play,22.0,0 -115037563,"Saints Row The Third",purchase,1.0,0 -115037563,"Saints Row The Third",play,21.0,0 -115037563,"APB Reloaded",purchase,1.0,0 -115037563,"APB Reloaded",play,19.2,0 -115037563,"Grand Theft Auto IV",purchase,1.0,0 -115037563,"Grand Theft Auto IV",play,18.3,0 -115037563,"NBA 2K14",purchase,1.0,0 -115037563,"NBA 2K14",play,15.5,0 -115037563,"Counter-Strike Global Offensive",purchase,1.0,0 -115037563,"Counter-Strike Global Offensive",play,15.4,0 -115037563,"Borderlands",purchase,1.0,0 -115037563,"Borderlands",play,14.7,0 -115037563,"Fallout 4",purchase,1.0,0 -115037563,"Fallout 4",play,14.6,0 -115037563,"Gotham City Impostors Free To Play",purchase,1.0,0 -115037563,"Gotham City Impostors Free To Play",play,11.3,0 -115037563,"Arma 3",purchase,1.0,0 -115037563,"Arma 3",play,11.2,0 -115037563,"Loadout",purchase,1.0,0 -115037563,"Loadout",play,9.9,0 -115037563,"The Elder Scrolls V Skyrim",purchase,1.0,0 -115037563,"The Elder Scrolls V Skyrim",play,9.0,0 -115037563,"The Lord of the Rings Online",purchase,1.0,0 -115037563,"The Lord of the Rings Online",play,7.4,0 -115037563,"Left 4 Dead 2",purchase,1.0,0 -115037563,"Left 4 Dead 2",play,6.2,0 -115037563,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -115037563,"Just Cause 2 Multiplayer Mod",play,5.9,0 -115037563,"Warframe",purchase,1.0,0 -115037563,"Warframe",play,4.4,0 -115037563,"Chivalry Medieval Warfare",purchase,1.0,0 -115037563,"Chivalry Medieval Warfare",play,3.7,0 -115037563,"Don't Starve",purchase,1.0,0 -115037563,"Don't Starve",play,3.7,0 -115037563,"Sniper Elite Nazi Zombie Army",purchase,1.0,0 -115037563,"Sniper Elite Nazi Zombie Army",play,3.6,0 -115037563,"Dead Island Epidemic",purchase,1.0,0 -115037563,"Dead Island Epidemic",play,3.2,0 -115037563,"Amnesia The Dark Descent",purchase,1.0,0 -115037563,"Amnesia The Dark Descent",play,2.7,0 -115037563,"Just Cause 2",purchase,1.0,0 -115037563,"Just Cause 2",play,2.5,0 -115037563,"Dungeon Defenders",purchase,1.0,0 -115037563,"Dungeon Defenders",play,2.3,0 -115037563,"PAYDAY The Heist",purchase,1.0,0 -115037563,"PAYDAY The Heist",play,2.1,0 -115037563,"Counter-Strike Source",purchase,1.0,0 -115037563,"Counter-Strike Source",play,2.1,0 -115037563,"Crysis 2 Maximum Edition",purchase,1.0,0 -115037563,"Crysis 2 Maximum Edition",play,2.1,0 -115037563,"Magicka",purchase,1.0,0 -115037563,"Magicka",play,1.4,0 -115037563,"Risen 2 - Dark Waters",purchase,1.0,0 -115037563,"Risen 2 - Dark Waters",play,1.2,0 -115037563,"Killing Floor",purchase,1.0,0 -115037563,"Killing Floor",play,1.1,0 -115037563,"Terraria",purchase,1.0,0 -115037563,"Terraria",play,1.0,0 -115037563,"Arma 2 DayZ Mod",purchase,1.0,0 -115037563,"Arma 2 DayZ Mod",play,0.8,0 -115037563,"Dead Island",purchase,1.0,0 -115037563,"Dead Island",play,0.7,0 -115037563,"Star Wars - Battlefront II",purchase,1.0,0 -115037563,"Star Wars - Battlefront II",play,0.6,0 -115037563,"Dota 2",purchase,1.0,0 -115037563,"Dota 2",play,0.5,0 -115037563,"Arma 2",purchase,1.0,0 -115037563,"Arma 2",play,0.5,0 -115037563,"Arma 2 Operation Arrowhead",purchase,1.0,0 -115037563,"Arma 2 Operation Arrowhead",play,0.5,0 -115037563,"FreeStyle2 Street Basketball",purchase,1.0,0 -115037563,"FreeStyle2 Street Basketball",play,0.4,0 -115037563,"Call of Duty Black Ops II",purchase,1.0,0 -115037563,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -115037563,"Call of Duty Modern Warfare 2",purchase,1.0,0 -115037563,"Arma 2 British Armed Forces",purchase,1.0,0 -115037563,"Arma 2 Private Military Company",purchase,1.0,0 -115037563,"Arma 3 Zeus",purchase,1.0,0 -115037563,"Don't Starve Together Beta",purchase,1.0,0 -115037563,"Firefall",purchase,1.0,0 -115037563,"Grand Theft Auto",purchase,1.0,0 -115037563,"Grand Theft Auto 2",purchase,1.0,0 -115037563,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -115037563,"Grand Theft Auto San Andreas",purchase,1.0,0 -115037563,"Grand Theft Auto San Andreas",purchase,1.0,0 -115037563,"Grand Theft Auto Vice City",purchase,1.0,0 -115037563,"Grand Theft Auto Vice City",purchase,1.0,0 -115037563,"Grand Theft Auto III",purchase,1.0,0 -115037563,"Grand Theft Auto III",purchase,1.0,0 -115037563,"HAWKEN",purchase,1.0,0 -115037563,"Heroes & Generals",purchase,1.0,0 -115037563,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -115037563,"Patch testing for Chivalry",purchase,1.0,0 -115037563,"Robocraft",purchase,1.0,0 -115037563,"Sacred 2 Gold",purchase,1.0,0 -115037563,"Saints Row 2",purchase,1.0,0 -115037563,"The Mighty Quest For Epic Loot",purchase,1.0,0 -115037563,"Unturned",purchase,1.0,0 -194842424,"Dota 2",purchase,1.0,0 -194842424,"Dota 2",play,1781.0,0 -194842424,"Warframe",purchase,1.0,0 -194842424,"Warframe",play,0.1,0 -194842424,"Soldier Front 2",purchase,1.0,0 -194842424,"Transformice",purchase,1.0,0 -236434806,"Trove",purchase,1.0,0 -236434806,"Trove",play,48.0,0 -236434806,"Unturned",purchase,1.0,0 -236434806,"Unturned",play,14.2,0 -236434806,"Team Fortress 2",purchase,1.0,0 -236434806,"Team Fortress 2",play,7.2,0 -236434806,"Star Conflict",purchase,1.0,0 -236434806,"Star Conflict",play,6.2,0 -236434806,"Dota 2",purchase,1.0,0 -236434806,"Dota 2",play,3.7,0 -236434806,"Eternal Fate",purchase,1.0,0 -236434806,"Eternal Fate",play,1.9,0 -236434806,"Relic Hunters Zero",purchase,1.0,0 -236434806,"Relic Hunters Zero",play,0.5,0 -236434806,"No More Room in Hell",purchase,1.0,0 -236434806,"No More Room in Hell",play,0.2,0 -236434806,"Brawlhalla",purchase,1.0,0 -236434806,"Brawlhalla",play,0.2,0 -236434806,"Endless Sky",purchase,1.0,0 -236434806,"Endless Sky",play,0.2,0 -236434806,"The Forgotten Ones",purchase,1.0,0 -236434806,"The Forgotten Ones",play,0.2,0 -236434806,"War Thunder",purchase,1.0,0 -239611310,"Dota 2",purchase,1.0,0 -239611310,"Dota 2",play,261.0,0 -239611310,"HAWKEN",purchase,1.0,0 -114972372,"The Forest",purchase,1.0,0 -114972372,"The Forest",play,89.0,0 -114972372,"Farming Simulator 15",purchase,1.0,0 -114972372,"Farming Simulator 15",play,79.0,0 -114972372,"XCOM Enemy Unknown",purchase,1.0,0 -114972372,"XCOM Enemy Unknown",play,56.0,0 -114972372,"Euro Truck Simulator 2",purchase,1.0,0 -114972372,"Euro Truck Simulator 2",play,22.0,0 -114972372,"Reign Of Kings",purchase,1.0,0 -114972372,"Reign Of Kings",play,4.6,0 -114972372,"Defiance",purchase,1.0,0 -114972372,"Defiance",play,4.5,0 -114972372,"Soccer Manager 2016",purchase,1.0,0 -114972372,"Soccer Manager 2016",play,4.3,0 -114972372,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -114972372,"School of Dragons How to Train Your Dragon",play,2.8,0 -114972372,"Fishing Planet",purchase,1.0,0 -114972372,"Fishing Planet",play,2.7,0 -114972372,"theHunter",purchase,1.0,0 -114972372,"theHunter",play,0.1,0 -114972372,"Back to Dinosaur Island ",purchase,1.0,0 -21805245,"Counter-Strike Source",purchase,1.0,0 -21805245,"Day of Defeat Source",purchase,1.0,0 -21805245,"Half-Life 2 Deathmatch",purchase,1.0,0 -281216836,"Dota 2",purchase,1.0,0 -281216836,"Dota 2",play,59.0,0 -281216836,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -70970228,"Sid Meier's Civilization V",purchase,1.0,0 -70970228,"Sid Meier's Civilization V",play,120.0,0 -70970228,"Far Cry 3",purchase,1.0,0 -70970228,"Far Cry 3",play,59.0,0 -70970228,"The Elder Scrolls V Skyrim",purchase,1.0,0 -70970228,"The Elder Scrolls V Skyrim",play,52.0,0 -70970228,"Fable - The Lost Chapters",purchase,1.0,0 -70970228,"Fable - The Lost Chapters",play,22.0,0 -70970228,"Darksiders II",purchase,1.0,0 -70970228,"Darksiders II",play,5.1,0 -77279068,"AdVenture Capitalist",purchase,1.0,0 -77279068,"AdVenture Capitalist",play,247.0,0 -77279068,"Borderlands 2",purchase,1.0,0 -77279068,"Borderlands 2",play,77.0,0 -77279068,"Counter-Strike Global Offensive",purchase,1.0,0 -77279068,"Counter-Strike Global Offensive",play,47.0,0 -77279068,"Torchlight II",purchase,1.0,0 -77279068,"Torchlight II",play,39.0,0 -77279068,"Marvel Heroes 2015",purchase,1.0,0 -77279068,"Marvel Heroes 2015",play,20.0,0 -77279068,"Team Fortress 2",purchase,1.0,0 -77279068,"Team Fortress 2",play,19.9,0 -77279068,"Loadout",purchase,1.0,0 -77279068,"Loadout",play,16.9,0 -77279068,"Disney Infinity 2.0",purchase,1.0,0 -77279068,"Disney Infinity 2.0",play,16.4,0 -77279068,"Left 4 Dead 2",purchase,1.0,0 -77279068,"Left 4 Dead 2",play,15.6,0 -77279068,"Magicka Wizard Wars",purchase,1.0,0 -77279068,"Magicka Wizard Wars",play,3.9,0 -77279068,"Dota 2",purchase,1.0,0 -77279068,"Dota 2",play,1.1,0 -77279068,"Alien Swarm",purchase,1.0,0 -77279068,"Alien Swarm",play,0.7,0 -77279068,"Strife",purchase,1.0,0 -77279068,"Strife",play,0.5,0 -77279068,"DiRT Showdown",purchase,1.0,0 -77279068,"DiRT Showdown",play,0.4,0 -77279068,"Dead Island Epidemic",purchase,1.0,0 -77279068,"FreeStyle2 Street Basketball",purchase,1.0,0 -77279068,"Half-Life 2 Update",purchase,1.0,0 -245350724,"Dota 2",purchase,1.0,0 -245350724,"Dota 2",play,345.0,0 -111003429,"Team Fortress 2",purchase,1.0,0 -111003429,"Team Fortress 2",play,1.6,0 -159946174,"NBA 2K14",purchase,1.0,0 -159946174,"NBA 2K14",play,326.0,0 -159946174,"Left 4 Dead 2",purchase,1.0,0 -159946174,"Left 4 Dead 2",play,64.0,0 -159946174,"Batman Arkham City GOTY",purchase,1.0,0 -159946174,"Batman Arkham City GOTY",play,22.0,0 -159946174,"Team Fortress 2",purchase,1.0,0 -159946174,"Team Fortress 2",play,17.0,0 -159946174,"DC Universe Online",purchase,1.0,0 -159946174,"DC Universe Online",play,5.3,0 -159946174,"Warface",purchase,1.0,0 -159946174,"Warface",play,1.1,0 -159946174,"Counter-Strike Nexon Zombies",purchase,1.0,0 -159946174,"Counter-Strike Nexon Zombies",play,0.4,0 -159946174,"Blacklight Retribution",purchase,1.0,0 -88770649,"Call of Duty Black Ops",purchase,1.0,0 -88770649,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -269770460,"Robocraft",purchase,1.0,0 -269770460,"Robocraft",play,6.5,0 -216931933,"Dota 2",purchase,1.0,0 -216931933,"Dota 2",play,100.0,0 -216931933,"Archeblade",purchase,1.0,0 -216931933,"GunZ 2 The Second Duel",purchase,1.0,0 -216931933,"Unturned",purchase,1.0,0 -80164199,"Dota 2",purchase,1.0,0 -80164199,"Dota 2",play,882.0,0 -80164199,"AdVenture Capitalist",purchase,1.0,0 -80164199,"AdVenture Capitalist",play,76.0,0 -80164199,"FINAL FANTASY VII",purchase,1.0,0 -80164199,"FINAL FANTASY VII",play,37.0,0 -80164199,"FTL Faster Than Light",purchase,1.0,0 -80164199,"FTL Faster Than Light",play,11.8,0 -80164199,"Sid Meier's Civilization V",purchase,1.0,0 -80164199,"Sid Meier's Civilization V",play,6.3,0 -80164199,"Clicker Heroes",purchase,1.0,0 -80164199,"Clicker Heroes",play,4.1,0 -80164199,"Left 4 Dead 2",purchase,1.0,0 -80164199,"Left 4 Dead 2",play,3.0,0 -80164199,"Path of Exile",purchase,1.0,0 -80164199,"Path of Exile",play,1.1,0 -80164199,"SimCity 4 Deluxe",purchase,1.0,0 -80164199,"SimCity 4 Deluxe",play,0.5,0 -80164199,"Age of Empires Online",purchase,1.0,0 -129796010,"Serious Sam HD The Second Encounter",purchase,1.0,0 -129796010,"Serious Sam HD The Second Encounter",play,1.6,0 -249626280,"Transformice",purchase,1.0,0 -249626280,"Transformice",play,25.0,0 -249626280,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -249626280,"School of Dragons How to Train Your Dragon",play,25.0,0 -249626280,"ARK Survival Evolved",purchase,1.0,0 -249626280,"ARK Survival Evolved",play,18.0,0 -249626280,"Garry's Mod",purchase,1.0,0 -249626280,"Garry's Mod",play,13.5,0 -249626280,"Tap Tap Infinity",purchase,1.0,0 -249626280,"Tap Tap Infinity",play,5.3,0 -249626280,"Realm of the Mad God",purchase,1.0,0 -249626280,"Realm of the Mad God",play,2.1,0 -249626280,"Gear Up",purchase,1.0,0 -249626280,"Robocraft",purchase,1.0,0 -249626280,"Time Clickers",purchase,1.0,0 -307242646,"Counter-Strike Nexon Zombies",purchase,1.0,0 -307242646,"Counter-Strike Nexon Zombies",play,4.8,0 -306690580,"The Elder Scrolls V Skyrim",purchase,1.0,0 -306690580,"The Elder Scrolls V Skyrim",play,20.0,0 -306690580,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -306690580,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -306690580,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -154105212,"Football Manager 2014",purchase,1.0,0 -154105212,"Football Manager 2014",play,89.0,0 -20643309,"Counter-Strike Source",purchase,1.0,0 -20643309,"Counter-Strike Source",play,52.0,0 -20643309,"Day of Defeat Source",purchase,1.0,0 -20643309,"Half-Life 2 Deathmatch",purchase,1.0,0 -20643309,"Half-Life 2 Lost Coast",purchase,1.0,0 -31887973,"Counter-Strike Condition Zero",purchase,1.0,0 -31887973,"Counter-Strike Condition Zero",play,0.8,0 -31887973,"Counter-Strike",purchase,1.0,0 -31887973,"Counter-Strike",play,0.3,0 -31887973,"Day of Defeat",purchase,1.0,0 -31887973,"Day of Defeat",play,0.2,0 -31887973,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -31887973,"Deathmatch Classic",purchase,1.0,0 -31887973,"Ricochet",purchase,1.0,0 -250378500,"Dota 2",purchase,1.0,0 -250378500,"Dota 2",play,0.6,0 -215518655,"Dota 2",purchase,1.0,0 -215518655,"Dota 2",play,14.5,0 -215518655,"Team Fortress 2",purchase,1.0,0 -215518655,"Team Fortress 2",play,0.7,0 -199047757,"Dota 2",purchase,1.0,0 -199047757,"Dota 2",play,37.0,0 -198825628,"Dota 2",purchase,1.0,0 -198825628,"Dota 2",play,777.0,0 -198825628,"GooCubelets",purchase,1.0,0 -198825628,"GooCubelets",play,0.1,0 -198825628,"War Inc. Battlezone",purchase,1.0,0 -235359505,"Counter-Strike Global Offensive",purchase,1.0,0 -235359505,"Counter-Strike Global Offensive",play,361.0,0 -144276946,"Dota 2",purchase,1.0,0 -144276946,"Dota 2",play,1.0,0 -195694153,"Team Fortress 2",purchase,1.0,0 -195694153,"Team Fortress 2",play,482.0,0 -195694153,"Robocraft",purchase,1.0,0 -255085221,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -255085221,"Tom Clancy's Ghost Recon Phantoms - EU",play,15.8,0 -255085221,"RaceRoom Racing Experience ",purchase,1.0,0 -255085221,"RaceRoom Racing Experience ",play,3.8,0 -93774169,"Empire Total War",purchase,1.0,0 -129825010,"Unturned",purchase,1.0,0 -129825010,"Unturned",play,0.3,0 -98278869,"Serious Sam 3 BFE",purchase,1.0,0 -98278869,"Serious Sam 3 BFE",play,43.0,0 -69587339,"Realm of the Mad God",purchase,1.0,0 -69587339,"Realm of the Mad God",play,75.0,0 -69587339,"Deus Ex Human Revolution",purchase,1.0,0 -69587339,"Deus Ex Human Revolution",play,23.0,0 -69587339,"Portal 2",purchase,1.0,0 -69587339,"Portal 2",play,9.0,0 -69587339,"Angry Video Game Nerd Adventures",purchase,1.0,0 -69587339,"Angry Video Game Nerd Adventures",play,6.9,0 -69587339,"Borderlands 2",purchase,1.0,0 -69587339,"Borderlands 2",play,0.9,0 -234467038,"Star Wars - Battlefront II",purchase,1.0,0 -234467038,"Star Wars - Battlefront II",play,33.0,0 -234467038,"Pirates, Vikings, & Knights II",purchase,1.0,0 -234467038,"Pirates, Vikings, & Knights II",play,4.2,0 -234467038,"Zombie Panic Source",purchase,1.0,0 -234467038,"Zombie Panic Source",play,1.3,0 -193471217,"Dota 2",purchase,1.0,0 -193471217,"Dota 2",play,2.9,0 -95137775,"Subnautica",purchase,1.0,0 -95137775,"Subnautica",play,34.0,0 -95137775,"The Forest",purchase,1.0,0 -95137775,"The Forest",play,29.0,0 -95137775,"Euro Truck Simulator 2",purchase,1.0,0 -95137775,"Euro Truck Simulator 2",play,22.0,0 -95137775,"Craft The World",purchase,1.0,0 -95137775,"Craft The World",play,18.2,0 -95137775,"Tomb Raider",purchase,1.0,0 -95137775,"Tomb Raider",play,17.1,0 -95137775,"Codename Panzers - Cold War",purchase,1.0,0 -95137775,"Codename Panzers - Cold War",play,4.3,0 -95137775,"Starbound",purchase,1.0,0 -95137775,"Starbound",play,4.1,0 -95137775,"Starbound - Unstable",purchase,1.0,0 -95137775,"Starbound - Unstable",play,3.8,0 -95137775,"Metro Last Light",purchase,1.0,0 -95137775,"Metro Last Light",play,3.7,0 -95137775,"Command and Conquer Red Alert 3",purchase,1.0,0 -95137775,"Command and Conquer Red Alert 3",play,2.4,0 -95137775,"Citadels",purchase,1.0,0 -95137775,"Citadels",play,0.5,0 -95137775,"Final Hours of Titanfall",purchase,1.0,0 -95137775,"Final Hours of Titanfall",play,0.1,0 -191747590,"PlanetSide 2",purchase,1.0,0 -191747590,"PlanetSide 2",play,174.0,0 -191747590,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -191747590,"Tom Clancy's Ghost Recon Phantoms - NA",play,43.0,0 -191747590,"The Elder Scrolls V Skyrim",purchase,1.0,0 -191747590,"The Elder Scrolls V Skyrim",play,41.0,0 -191747590,"Grand Theft Auto V",purchase,1.0,0 -191747590,"Grand Theft Auto V",play,9.4,0 -191747590,"Warframe",purchase,1.0,0 -191747590,"Warframe",play,3.0,0 -191747590,"Team Fortress 2",purchase,1.0,0 -191747590,"Team Fortress 2",play,1.6,0 -191747590,"Hitman 2 Silent Assassin",purchase,1.0,0 -191747590,"Hitman Absolution",purchase,1.0,0 -191747590,"Hitman Blood Money",purchase,1.0,0 -191747590,"Hitman Codename 47",purchase,1.0,0 -191747590,"Hitman Contracts",purchase,1.0,0 -191747590,"Hitman Sniper Challenge",purchase,1.0,0 -191747590,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -191747590,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -191747590,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -163961414,"Dota 2",purchase,1.0,0 -163961414,"Dota 2",play,2.0,0 -56333620,"The Elder Scrolls V Skyrim",purchase,1.0,0 -56333620,"The Elder Scrolls V Skyrim",play,127.0,0 -56333620,"Call of Duty Modern Warfare 2",purchase,1.0,0 -56333620,"Call of Duty Modern Warfare 2",play,112.0,0 -56333620,"Sleeping Dogs",purchase,1.0,0 -56333620,"Sleeping Dogs",play,54.0,0 -56333620,"Deus Ex Human Revolution",purchase,1.0,0 -56333620,"Deus Ex Human Revolution",play,39.0,0 -56333620,"Call of Duty Black Ops",purchase,1.0,0 -56333620,"Call of Duty Black Ops",play,33.0,0 -56333620,"Lost Planet Extreme Condition",purchase,1.0,0 -56333620,"Lost Planet Extreme Condition",play,32.0,0 -56333620,"Middle-earth Shadow of Mordor",purchase,1.0,0 -56333620,"Middle-earth Shadow of Mordor",play,30.0,0 -56333620,"Mafia II",purchase,1.0,0 -56333620,"Mafia II",play,25.0,0 -56333620,"Darksiders",purchase,1.0,0 -56333620,"Darksiders",play,24.0,0 -56333620,"Dishonored",purchase,1.0,0 -56333620,"Dishonored",play,23.0,0 -56333620,"Portal 2",purchase,1.0,0 -56333620,"Portal 2",play,16.6,0 -56333620,"The Walking Dead",purchase,1.0,0 -56333620,"The Walking Dead",play,13.7,0 -56333620,"Just Cause 2",purchase,1.0,0 -56333620,"Just Cause 2",play,13.2,0 -56333620,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -56333620,"Call of Duty Modern Warfare 2 - Multiplayer",play,7.9,0 -56333620,"Duke Nukem Forever",purchase,1.0,0 -56333620,"Duke Nukem Forever",play,7.8,0 -56333620,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -56333620,"Star Wars Jedi Knight Jedi Academy",play,5.7,0 -56333620,"Portal",purchase,1.0,0 -56333620,"Portal",play,4.1,0 -56333620,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -56333620,"Call of Duty Black Ops - Multiplayer",play,2.9,0 -56333620,"Team Fortress 2",purchase,1.0,0 -56333620,"Team Fortress 2",play,1.6,0 -56333620,"The Stanley Parable",purchase,1.0,0 -56333620,"The Stanley Parable",play,1.3,0 -56333620,"BioShock Infinite",purchase,1.0,0 -56333620,"Borderlands 2",purchase,1.0,0 -56333620,"Far Cry 3 Blood Dragon",purchase,1.0,0 -56333620,"Octodad Dadliest Catch",purchase,1.0,0 -56333620,"Saints Row IV",purchase,1.0,0 -56333620,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -56333620,"South Park The Stick of Truth",purchase,1.0,0 -56333620,"Spec Ops The Line",purchase,1.0,0 -309626088,"Age of Empires II HD Edition",purchase,1.0,0 -309626088,"Age of Empires II HD Edition",play,6.7,0 -186885794,"Dota 2",purchase,1.0,0 -186885794,"Dota 2",play,14.2,0 -102322335,"Football Manager 2012",purchase,1.0,0 -102322335,"Football Manager 2012",play,149.0,0 -147251779,"Dota 2",purchase,1.0,0 -147251779,"Dota 2",play,0.2,0 -147251779,"Pid ",purchase,1.0,0 -147251779,"Vertiginous Golf",purchase,1.0,0 -96204317,"Sid Meier's Civilization V",purchase,1.0,0 -96204317,"Sid Meier's Civilization V",play,67.0,0 -96204317,"Mafia II",purchase,1.0,0 -96204317,"Mafia II",play,55.0,0 -96204317,"Call of Duty Black Ops II",purchase,1.0,0 -96204317,"Call of Duty Black Ops II",play,40.0,0 -96204317,"Call of Duty Modern Warfare 3",purchase,1.0,0 -96204317,"Call of Duty Modern Warfare 3",play,29.0,0 -96204317,"The Darkness II",purchase,1.0,0 -96204317,"The Darkness II",play,27.0,0 -96204317,"Spec Ops The Line",purchase,1.0,0 -96204317,"Spec Ops The Line",play,26.0,0 -96204317,"Call of Duty Black Ops",purchase,1.0,0 -96204317,"Call of Duty Black Ops",play,26.0,0 -96204317,"F.E.A.R. 3",purchase,1.0,0 -96204317,"F.E.A.R. 3",play,19.4,0 -96204317,"Metro 2033",purchase,1.0,0 -96204317,"Metro 2033",play,7.9,0 -96204317,"Call of Duty Ghosts",purchase,1.0,0 -96204317,"Call of Duty Ghosts",play,7.1,0 -96204317,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -96204317,"Call of Duty Black Ops II - Zombies",play,1.1,0 -96204317,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -96204317,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -96204317,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -96204317,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -160922242,"Team Fortress 2",purchase,1.0,0 -160922242,"Team Fortress 2",play,86.0,0 -160922242,"Half-Life 2",purchase,1.0,0 -160922242,"Half-Life 2",play,15.3,0 -160922242,"Half-Life 2 Episode Two",purchase,1.0,0 -160922242,"Half-Life 2 Episode Two",play,12.1,0 -160922242,"Half-Life 2 Episode One",purchase,1.0,0 -160922242,"Half-Life 2 Episode One",play,5.1,0 -160922242,"Half-Life Source",purchase,1.0,0 -160922242,"Half-Life Source",play,3.8,0 -160922242,"Half-Life 2 Deathmatch",purchase,1.0,0 -160922242,"Half-Life 2 Deathmatch",play,2.8,0 -160922242,"Half-Life Deathmatch Source",purchase,1.0,0 -160922242,"Half-Life Deathmatch Source",play,0.5,0 -160922242,"Half-Life 2 Lost Coast",purchase,1.0,0 -160922242,"Half-Life 2 Lost Coast",play,0.4,0 -160922242,"Half-Life",purchase,1.0,0 -160922242,"Half-Life",play,0.2,0 -160922242,"Team Fortress Classic",purchase,1.0,0 -160922242,"Half-Life Blue Shift",purchase,1.0,0 -160922242,"Half-Life Opposing Force",purchase,1.0,0 -286445618,"Dota 2",purchase,1.0,0 -286445618,"Dota 2",play,3.2,0 -120639809,"Dota 2",purchase,1.0,0 -120639809,"Dota 2",play,136.0,0 -205532682,"Dota 2",purchase,1.0,0 -205532682,"Dota 2",play,0.4,0 -151481334,"Sid Meier's Civilization V",purchase,1.0,0 -151481334,"Sid Meier's Civilization V",play,56.0,0 -225787781,"Stronghold Crusader Extreme HD",purchase,1.0,0 -225787781,"Stronghold Crusader Extreme HD",play,7.7,0 -225787781,"Stronghold Crusader HD",purchase,1.0,0 -175720527,"Team Fortress 2",purchase,1.0,0 -175720527,"Team Fortress 2",play,0.9,0 -196894502,"Dota 2",purchase,1.0,0 -196894502,"Dota 2",play,0.2,0 -165020079,"Dota 2",purchase,1.0,0 -165020079,"Dota 2",play,9.4,0 -55143039,"Sniper Ghost Warrior",purchase,1.0,0 -55143039,"Sniper Ghost Warrior",play,53.0,0 -55143039,"Call of Duty Modern Warfare 2",purchase,1.0,0 -55143039,"Call of Duty Modern Warfare 2",play,17.3,0 -55143039,"Call of Duty Black Ops",purchase,1.0,0 -55143039,"Call of Duty Black Ops",play,3.2,0 -55143039,"Aliens vs. Predator",purchase,1.0,0 -55143039,"Aliens vs. Predator",play,2.9,0 -55143039,"Team Fortress 2",purchase,1.0,0 -55143039,"Team Fortress 2",play,0.3,0 -55143039,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -55143039,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -202600291,"Dota 2",purchase,1.0,0 -202600291,"Dota 2",play,7.8,0 -127977081,"Team Fortress 2",purchase,1.0,0 -127977081,"Team Fortress 2",play,5.4,0 -245064847,"Counter-Strike Global Offensive",purchase,1.0,0 -245064847,"Counter-Strike Global Offensive",play,11.6,0 -245064847,"Heroes & Generals",purchase,1.0,0 -70751853,"Dying Light",purchase,1.0,0 -70751853,"Dying Light",play,2.6,0 -202585832,"Dota 2",purchase,1.0,0 -202585832,"Dota 2",play,0.8,0 -178168238,"Seduce Me the Otome",purchase,1.0,0 -178168238,"Seduce Me the Otome",play,11.7,0 -178168238,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -178168238,"Sid Meier's Civilization Beyond Earth",play,9.3,0 -178168238,"Undertale",purchase,1.0,0 -178168238,"Undertale",play,8.1,0 -178168238,"Fallout New Vegas",purchase,1.0,0 -178168238,"Fallout New Vegas",play,1.3,0 -178168238,"Emily is Away",purchase,1.0,0 -178168238,"Emily is Away",play,1.2,0 -178168238,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -178168238,"Fallout New Vegas Dead Money",purchase,1.0,0 -178168238,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -178168238,"Sid Meier's Civilization III Complete",purchase,1.0,0 -178168238,"Sid Meier's Civilization IV",purchase,1.0,0 -178168238,"Sid Meier's Civilization IV",purchase,1.0,0 -178168238,"Sid Meier's Civilization V",purchase,1.0,0 -7440594,"Just Cause 2",purchase,1.0,0 -7440594,"Just Cause 2",play,288.0,0 -7440594,"Rocket League",purchase,1.0,0 -7440594,"Rocket League",play,158.0,0 -7440594,"Deus Ex Human Revolution",purchase,1.0,0 -7440594,"Deus Ex Human Revolution",play,91.0,0 -7440594,"Batman Arkham Origins",purchase,1.0,0 -7440594,"Batman Arkham Origins",play,77.0,0 -7440594,"Lost Planet 3",purchase,1.0,0 -7440594,"Lost Planet 3",play,61.0,0 -7440594,"Assassin's Creed II",purchase,1.0,0 -7440594,"Assassin's Creed II",play,59.0,0 -7440594,"GunZ 2 The Second Duel",purchase,1.0,0 -7440594,"GunZ 2 The Second Duel",play,52.0,0 -7440594,"Counter-Strike Global Offensive",purchase,1.0,0 -7440594,"Counter-Strike Global Offensive",play,46.0,0 -7440594,"Borderlands 2",purchase,1.0,0 -7440594,"Borderlands 2",play,40.0,0 -7440594,"Metro 2033",purchase,1.0,0 -7440594,"Metro 2033",play,33.0,0 -7440594,"Far Cry 3",purchase,1.0,0 -7440594,"Far Cry 3",play,31.0,0 -7440594,"FINAL FANTASY XIV A Realm Reborn",purchase,1.0,0 -7440594,"FINAL FANTASY XIV A Realm Reborn",play,30.0,0 -7440594,"DiRT 3",purchase,1.0,0 -7440594,"DiRT 3",play,29.0,0 -7440594,"Darksiders II",purchase,1.0,0 -7440594,"Darksiders II",play,27.0,0 -7440594,"The Bureau XCOM Declassified",purchase,1.0,0 -7440594,"The Bureau XCOM Declassified",play,24.0,0 -7440594,"Blacklight Retribution",purchase,1.0,0 -7440594,"Blacklight Retribution",play,23.0,0 -7440594,"Mass Effect 2",purchase,1.0,0 -7440594,"Mass Effect 2",play,19.8,0 -7440594,"Metro Last Light",purchase,1.0,0 -7440594,"Metro Last Light",play,14.4,0 -7440594,"Torchlight II",purchase,1.0,0 -7440594,"Torchlight II",play,13.8,0 -7440594,"Tomb Raider",purchase,1.0,0 -7440594,"Tomb Raider",play,12.5,0 -7440594,"Remember Me",purchase,1.0,0 -7440594,"Remember Me",play,10.2,0 -7440594,"Black Mesa",purchase,1.0,0 -7440594,"Black Mesa",play,8.9,0 -7440594,"Max Payne 3",purchase,1.0,0 -7440594,"Max Payne 3",play,8.4,0 -7440594,"Counter-Strike Source",purchase,1.0,0 -7440594,"Counter-Strike Source",play,7.1,0 -7440594,"Counter-Strike",purchase,1.0,0 -7440594,"Counter-Strike",play,6.3,0 -7440594,"Divine Souls",purchase,1.0,0 -7440594,"Divine Souls",play,5.7,0 -7440594,"Path of Exile",purchase,1.0,0 -7440594,"Path of Exile",play,5.0,0 -7440594,"Besiege",purchase,1.0,0 -7440594,"Besiege",play,4.7,0 -7440594,"SolForge",purchase,1.0,0 -7440594,"SolForge",play,4.5,0 -7440594,"Half-Life 2",purchase,1.0,0 -7440594,"Half-Life 2",play,3.9,0 -7440594,"ARK Survival Evolved",purchase,1.0,0 -7440594,"ARK Survival Evolved",play,3.7,0 -7440594,"RIFT",purchase,1.0,0 -7440594,"RIFT",play,3.2,0 -7440594,"Call of Duty Modern Warfare 3",purchase,1.0,0 -7440594,"Call of Duty Modern Warfare 3",play,1.7,0 -7440594,"Grand Theft Auto IV",purchase,1.0,0 -7440594,"Grand Theft Auto IV",play,1.5,0 -7440594,"LEGO Worlds",purchase,1.0,0 -7440594,"LEGO Worlds",play,0.9,0 -7440594,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -7440594,"Call of Duty 4 Modern Warfare",play,0.7,0 -7440594,"PAYDAY 2",purchase,1.0,0 -7440594,"PAYDAY 2",play,0.7,0 -7440594,"EVGA PrecisionX 16",purchase,1.0,0 -7440594,"EVGA PrecisionX 16",play,0.4,0 -7440594,"Half-Life 2 Lost Coast",purchase,1.0,0 -7440594,"Half-Life 2 Lost Coast",play,0.3,0 -7440594,"DisplayFusion",purchase,1.0,0 -7440594,"DisplayFusion",play,0.2,0 -7440594,"Sanctum 2",purchase,1.0,0 -7440594,"Sanctum 2",play,0.2,0 -7440594,"DmC Devil May Cry",purchase,1.0,0 -7440594,"Alan Wake",purchase,1.0,0 -7440594,"Alien Isolation",purchase,1.0,0 -7440594,"Bionic Commando Rearmed",purchase,1.0,0 -7440594,"Call of Duty Modern Warfare 2",purchase,1.0,0 -7440594,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -7440594,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -7440594,"Cities in Motion 2",purchase,1.0,0 -7440594,"Day of Defeat",purchase,1.0,0 -7440594,"Deathmatch Classic",purchase,1.0,0 -7440594,"DiRT 3 Complete Edition",purchase,1.0,0 -7440594,"DiRT Showdown",purchase,1.0,0 -7440594,"Dwarfs!?",purchase,1.0,0 -7440594,"FINAL FANTASY XIV A Realm Reborn CE (NA version)",purchase,1.0,0 -7440594,"Garry's Mod",purchase,1.0,0 -7440594,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -7440594,"Half-Life",purchase,1.0,0 -7440594,"Half-Life 2 Deathmatch",purchase,1.0,0 -7440594,"Half-Life Blue Shift",purchase,1.0,0 -7440594,"Half-Life Opposing Force",purchase,1.0,0 -7440594,"Killing Floor",purchase,1.0,0 -7440594,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -7440594,"Magicka",purchase,1.0,0 -7440594,"Magicka Vietnam",purchase,1.0,0 -7440594,"Max Payne",purchase,1.0,0 -7440594,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -7440594,"Max Payne 3 Season Pass",purchase,1.0,0 -7440594,"Natural Selection 2",purchase,1.0,0 -7440594,"Orcs Must Die!",purchase,1.0,0 -7440594,"Orcs Must Die! 2",purchase,1.0,0 -7440594,"Ricochet",purchase,1.0,0 -7440594,"Rise of Incarnates",purchase,1.0,0 -7440594,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -7440594,"Rock of Ages",purchase,1.0,0 -7440594,"Sanctum",purchase,1.0,0 -7440594,"Serious Sam 3 BFE",purchase,1.0,0 -7440594,"Team Fortress Classic",purchase,1.0,0 -7440594,"Tom Clancy's Rainbow Six Vegas",purchase,1.0,0 -7440594,"Zeno Clash",purchase,1.0,0 -7440594,"Zeno Clash 2",purchase,1.0,0 -131032344,"Left 4 Dead 2",purchase,1.0,0 -131032344,"Left 4 Dead 2",play,90.0,0 -131032344,"Insurgency",purchase,1.0,0 -131032344,"Insurgency",play,45.0,0 -131032344,"Rust",purchase,1.0,0 -131032344,"Rust",play,38.0,0 -131032344,"Max Payne 3",purchase,1.0,0 -131032344,"Max Payne 3",play,13.1,0 -131032344,"Tomb Raider",purchase,1.0,0 -131032344,"Tomb Raider",play,11.3,0 -131032344,"BioShock Infinite",purchase,1.0,0 -131032344,"BioShock Infinite",play,10.4,0 -131032344,"Unturned",purchase,1.0,0 -131032344,"Unturned",play,9.6,0 -131032344,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -131032344,"The Witcher 2 Assassins of Kings Enhanced Edition",play,7.6,0 -131032344,"Metro Last Light",purchase,1.0,0 -131032344,"Metro Last Light",play,6.9,0 -131032344,"No More Room in Hell",purchase,1.0,0 -131032344,"No More Room in Hell",play,2.0,0 -131032344,"Team Fortress 2",purchase,1.0,0 -131032344,"Team Fortress 2",play,1.8,0 -131032344,"Heroes & Generals",purchase,1.0,0 -131032344,"Heroes & Generals",play,1.4,0 -237388314,"Dota 2",purchase,1.0,0 -237388314,"Dota 2",play,193.0,0 -82792464,"Dota 2",purchase,1.0,0 -82792464,"Dota 2",play,0.2,0 -138242360,"Dota 2",purchase,1.0,0 -138242360,"Dota 2",play,152.0,0 -259934396,"Unturned",purchase,1.0,0 -259934396,"Unturned",play,15.4,0 -94356420,"Call of Duty Black Ops",purchase,1.0,0 -94356420,"Call of Duty Black Ops",play,10.7,0 -94356420,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -214276866,"Dota 2",purchase,1.0,0 -214276866,"Dota 2",play,18.3,0 -229345947,"Unturned",purchase,1.0,0 -228908339,"Dota 2",purchase,1.0,0 -228908339,"Dota 2",play,419.0,0 -228908339,"Grand Theft Auto V",purchase,1.0,0 -228908339,"Grand Theft Auto V",play,93.0,0 -228908339,"Counter-Strike Global Offensive",purchase,1.0,0 -228908339,"Counter-Strike Global Offensive",play,26.0,0 -228908339,"War Thunder",purchase,1.0,0 -228908339,"War Thunder",play,7.0,0 -228908339,"Neverwinter",purchase,1.0,0 -228908339,"Neverwinter",play,6.7,0 -228908339,"Warframe",purchase,1.0,0 -228908339,"Warframe",play,0.9,0 -228908339,"Team Fortress 2",purchase,1.0,0 -228908339,"Team Fortress 2",play,0.4,0 -228908339,"Clicker Heroes",purchase,1.0,0 -206597662,"Dota 2",purchase,1.0,0 -206597662,"Dota 2",play,1.8,0 -77378306,"Sid Meier's Civilization V",purchase,1.0,0 -77378306,"Sid Meier's Civilization V",play,85.0,0 -77378306,"Divinity Original Sin",purchase,1.0,0 -77378306,"Divinity Original Sin",play,0.8,0 -77378306,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -77378306,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -52942891,"Empire Total War",purchase,1.0,0 -52942891,"Empire Total War",play,123.0,0 -52942891,"SMITE",purchase,1.0,0 -52942891,"SMITE",play,15.5,0 -52942891,"Team Fortress 2",purchase,1.0,0 -52942891,"Team Fortress 2",play,14.1,0 -52942891,"Dota 2",purchase,1.0,0 -52942891,"Dota 2",play,0.3,0 -52942891,"WORLD END ECONOMiCA episode.01",purchase,1.0,0 -52942891,"WORLD END ECONOMiCA episode.01",play,0.3,0 -170176187,"Dota 2",purchase,1.0,0 -170176187,"Dota 2",play,0.4,0 -199134746,"Dota 2",purchase,1.0,0 -199134746,"Dota 2",play,4.9,0 -83219649,"Duke Nukem Forever",purchase,1.0,0 -83219649,"Duke Nukem Forever",play,8.8,0 -92393218,"Assassin's Creed IV Black Flag",purchase,1.0,0 -92393218,"Assassin's Creed IV Black Flag",play,354.0,0 -92393218,"Assassin's Creed III",purchase,1.0,0 -92393218,"Assassin's Creed III",play,232.0,0 -92393218,"The Elder Scrolls V Skyrim",purchase,1.0,0 -92393218,"The Elder Scrolls V Skyrim",play,193.0,0 -92393218,"Company of Heroes (New Steam Version)",purchase,1.0,0 -92393218,"Company of Heroes (New Steam Version)",play,180.0,0 -92393218,"Dishonored",purchase,1.0,0 -92393218,"Dishonored",play,172.0,0 -92393218,"Kerbal Space Program",purchase,1.0,0 -92393218,"Kerbal Space Program",play,159.0,0 -92393218,"Space Engineers",purchase,1.0,0 -92393218,"Space Engineers",play,123.0,0 -92393218,"The Witcher Enhanced Edition",purchase,1.0,0 -92393218,"The Witcher Enhanced Edition",play,106.0,0 -92393218,"X3 Albion Prelude",purchase,1.0,0 -92393218,"X3 Albion Prelude",play,80.0,0 -92393218,"Age of Empires III Complete Collection",purchase,1.0,0 -92393218,"Age of Empires III Complete Collection",play,77.0,0 -92393218,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -92393218,"Batman Arkham Asylum GOTY Edition",play,74.0,0 -92393218,"Icewind Dale Enhanced Edition",purchase,1.0,0 -92393218,"Icewind Dale Enhanced Edition",play,72.0,0 -92393218,"Sid Meier's Civilization V",purchase,1.0,0 -92393218,"Sid Meier's Civilization V",play,70.0,0 -92393218,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -92393218,"METAL GEAR SOLID V THE PHANTOM PAIN",play,69.0,0 -92393218,"The Settlers 7 Paths to a Kingdom - Gold Edition",purchase,1.0,0 -92393218,"The Settlers 7 Paths to a Kingdom - Gold Edition",play,68.0,0 -92393218,"Endless Space",purchase,1.0,0 -92393218,"Endless Space",play,63.0,0 -92393218,"Cities Skylines",purchase,1.0,0 -92393218,"Cities Skylines",play,55.0,0 -92393218,"Star Trek Online",purchase,1.0,0 -92393218,"Star Trek Online",play,53.0,0 -92393218,"Europa Universalis IV",purchase,1.0,0 -92393218,"Europa Universalis IV",play,52.0,0 -92393218,"BioShock Infinite",purchase,1.0,0 -92393218,"BioShock Infinite",play,49.0,0 -92393218,"Banished",purchase,1.0,0 -92393218,"Banished",play,48.0,0 -92393218,"Assassin's Creed",purchase,1.0,0 -92393218,"Assassin's Creed",play,47.0,0 -92393218,"Middle-earth Shadow of Mordor",purchase,1.0,0 -92393218,"Middle-earth Shadow of Mordor",play,44.0,0 -92393218,"Portal 2",purchase,1.0,0 -92393218,"Portal 2",play,42.0,0 -92393218,"Thief",purchase,1.0,0 -92393218,"Thief",play,39.0,0 -92393218,"Train Fever",purchase,1.0,0 -92393218,"Train Fever",play,39.0,0 -92393218,"Pillars of Eternity",purchase,1.0,0 -92393218,"Pillars of Eternity",play,39.0,0 -92393218,"Command and Conquer Red Alert 3",purchase,1.0,0 -92393218,"Command and Conquer Red Alert 3",play,37.0,0 -92393218,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -92393218,"The Witcher 2 Assassins of Kings Enhanced Edition",play,34.0,0 -92393218,"StarForge",purchase,1.0,0 -92393218,"StarForge",play,33.0,0 -92393218,"Tomb Raider",purchase,1.0,0 -92393218,"Tomb Raider",play,30.0,0 -92393218,"Offworld Trading Company",purchase,1.0,0 -92393218,"Offworld Trading Company",play,26.0,0 -92393218,"Besiege",purchase,1.0,0 -92393218,"Besiege",play,24.0,0 -92393218,"Star Wars Knights of the Old Republic",purchase,1.0,0 -92393218,"Star Wars Knights of the Old Republic",play,21.0,0 -92393218,"BioShock",purchase,1.0,0 -92393218,"BioShock",play,21.0,0 -92393218,"Empyrion - Galactic Survival",purchase,1.0,0 -92393218,"Empyrion - Galactic Survival",play,19.1,0 -92393218,"Sunless Sea",purchase,1.0,0 -92393218,"Sunless Sea",play,19.1,0 -92393218,"Maia",purchase,1.0,0 -92393218,"Maia",play,18.1,0 -92393218,"RIFT",purchase,1.0,0 -92393218,"RIFT",play,15.7,0 -92393218,"Portal",purchase,1.0,0 -92393218,"Portal",play,13.7,0 -92393218,"Path of Exile",purchase,1.0,0 -92393218,"Path of Exile",play,12.7,0 -92393218,"Medieval II Total War",purchase,1.0,0 -92393218,"Medieval II Total War",play,11.9,0 -92393218,"Battlestations Pacific",purchase,1.0,0 -92393218,"Battlestations Pacific",play,6.7,0 -92393218,"Savage Lands",purchase,1.0,0 -92393218,"Savage Lands",play,6.5,0 -92393218,"Medieval Engineers",purchase,1.0,0 -92393218,"Medieval Engineers",play,6.4,0 -92393218,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -92393218,"METAL GEAR SOLID V GROUND ZEROES",play,5.8,0 -92393218,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -92393218,"Dragon Age Origins - Ultimate Edition",play,5.6,0 -92393218,"Sanctum 2",purchase,1.0,0 -92393218,"Sanctum 2",play,4.4,0 -92393218,"Thief 2",purchase,1.0,0 -92393218,"Thief 2",play,3.7,0 -92393218,"Company of Heroes Tales of Valor",purchase,1.0,0 -92393218,"Company of Heroes Tales of Valor",play,2.9,0 -92393218,"LEGO Worlds",purchase,1.0,0 -92393218,"LEGO Worlds",play,2.5,0 -92393218,"Small World 2",purchase,1.0,0 -92393218,"Small World 2",play,1.9,0 -92393218,"X-Tension",purchase,1.0,0 -92393218,"X-Tension",play,1.3,0 -92393218,"Thief Gold",purchase,1.0,0 -92393218,"Thief Gold",play,0.9,0 -92393218,"Dungeon Siege",purchase,1.0,0 -92393218,"Dungeon Siege",play,0.9,0 -92393218,"Hitman Codename 47",purchase,1.0,0 -92393218,"Hitman Codename 47",play,0.8,0 -92393218,"X3 Terran Conflict",purchase,1.0,0 -92393218,"X3 Terran Conflict",play,0.5,0 -92393218,"Tomb Raider I",purchase,1.0,0 -92393218,"Tomb Raider I",play,0.3,0 -92393218,"Company of Heroes",purchase,1.0,0 -92393218,"Company of Heroes",play,0.2,0 -92393218,"Legacy of Kain Soul Reaver",purchase,1.0,0 -92393218,"Battlestations Midway",purchase,1.0,0 -92393218,"BioShock 2",purchase,1.0,0 -92393218,"Blood Omen 2 Legacy of Kain",purchase,1.0,0 -92393218,"Company of Heroes Opposing Fronts",purchase,1.0,0 -92393218,"Deus Ex Game of the Year Edition",purchase,1.0,0 -92393218,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -92393218,"Deus Ex Invisible War",purchase,1.0,0 -92393218,"Deus Ex The Fall",purchase,1.0,0 -92393218,"Dungeon Siege 2",purchase,1.0,0 -92393218,"Dungeon Siege III",purchase,1.0,0 -92393218,"Hitman 2 Silent Assassin",purchase,1.0,0 -92393218,"Hitman Absolution",purchase,1.0,0 -92393218,"Hitman Blood Money",purchase,1.0,0 -92393218,"Hitman Contracts",purchase,1.0,0 -92393218,"Hitman Sniper Challenge",purchase,1.0,0 -92393218,"Just Cause",purchase,1.0,0 -92393218,"Just Cause 2",purchase,1.0,0 -92393218,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -92393218,"Kane & Lynch Dead Men",purchase,1.0,0 -92393218,"Lara Croft and the Guardian of Light",purchase,1.0,0 -92393218,"Legacy of Kain Defiance",purchase,1.0,0 -92393218,"Legacy of Kain Soul Reaver 2",purchase,1.0,0 -92393218,"Medieval II Total War Kingdoms",purchase,1.0,0 -92393218,"Nosgoth",purchase,1.0,0 -92393218,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -92393218,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -92393218,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -92393218,"The Witcher 3 Wild Hunt",purchase,1.0,0 -92393218,"Thief - Ghost",purchase,1.0,0 -92393218,"Thief - Opportunist",purchase,1.0,0 -92393218,"Thief - Predator",purchase,1.0,0 -92393218,"Thief - The Bank Heist",purchase,1.0,0 -92393218,"Thief Deadly Shadows",purchase,1.0,0 -92393218,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -92393218,"Tomb Raider Anniversary",purchase,1.0,0 -92393218,"Tomb Raider Chronicles",purchase,1.0,0 -92393218,"Tomb Raider Legend",purchase,1.0,0 -92393218,"Tomb Raider The Last Revelation",purchase,1.0,0 -92393218,"Tomb Raider Underworld",purchase,1.0,0 -92393218,"Tomb Raider II",purchase,1.0,0 -92393218,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -92393218,"X2 The Threat",purchase,1.0,0 -92393218,"X3 Reunion",purchase,1.0,0 -92393218,"X Beyond the Frontier",purchase,1.0,0 -54680190,"GTR Evolution",purchase,1.0,0 -54680190,"RACE 07",purchase,1.0,0 -54680190,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -85759872,"Star Trek Online",purchase,1.0,0 -85759872,"Star Trek Online",play,72.0,0 -85759872,"Neverwinter",purchase,1.0,0 -85759872,"Neverwinter",play,42.0,0 -85759872,"Space Engineers",purchase,1.0,0 -85759872,"Space Engineers",play,15.7,0 -85759872,"The Elder Scrolls V Skyrim",purchase,1.0,0 -85759872,"The Elder Scrolls V Skyrim",play,7.9,0 -85759872,"Dungeon Siege III",purchase,1.0,0 -85759872,"Dungeon Siege III",play,6.6,0 -85759872,"PlanetSide 2",purchase,1.0,0 -85759872,"PlanetSide 2",play,6.1,0 -85759872,"Castle Story",purchase,1.0,0 -85759872,"Castle Story",play,2.7,0 -85759872,"Team Fortress 2",purchase,1.0,0 -85759872,"Team Fortress 2",play,0.1,0 -85759872,"Kingdom Wars",purchase,1.0,0 -85759872,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -85759872,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -85759872,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -85759872,"Warframe",purchase,1.0,0 -98625085,"Team Fortress 2",purchase,1.0,0 -98625085,"Team Fortress 2",play,2.3,0 -59537590,"Call of Duty Modern Warfare 2",purchase,1.0,0 -59537590,"Call of Duty Modern Warfare 2",play,18.9,0 -59537590,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -59537590,"Call of Duty Modern Warfare 2 - Multiplayer",play,1.5,0 -226734923,"Team Fortress 2",purchase,1.0,0 -226734923,"Team Fortress 2",play,4.9,0 -226734923,"Blacklight Retribution",purchase,1.0,0 -226734923,"Heroes & Generals",purchase,1.0,0 -226734923,"Super Monday Night Combat",purchase,1.0,0 -72958745,"Counter-Strike",purchase,1.0,0 -72958745,"Counter-Strike",play,1011.0,0 -72958745,"Dota 2",purchase,1.0,0 -72958745,"Dota 2",play,9.5,0 -72958745,"Half-Life 2 Deathmatch",purchase,1.0,0 -72958745,"Half-Life 2 Deathmatch",play,4.5,0 -72958745,"Deathmatch Classic",purchase,1.0,0 -72958745,"Deathmatch Classic",play,1.6,0 -72958745,"Half-Life 2 Lost Coast",purchase,1.0,0 -72958745,"Half-Life 2 Lost Coast",play,0.8,0 -72958745,"Zombie Panic Source",purchase,1.0,0 -72958745,"Zombie Panic Source",play,0.6,0 -72958745,"Counter-Strike Condition Zero",purchase,1.0,0 -72958745,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -72958745,"Day of Defeat",purchase,1.0,0 -72958745,"Ricochet",purchase,1.0,0 -75419274,"Sid Meier's Civilization V",purchase,1.0,0 -103805799,"Team Fortress 2",purchase,1.0,0 -103805799,"Team Fortress 2",play,0.2,0 -114364553,"Terraria",purchase,1.0,0 -114364553,"Terraria",play,16.2,0 -114364553,"Super Meat Boy",purchase,1.0,0 -114364553,"Super Meat Boy",play,3.1,0 -114364553,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -114364553,"Call of Duty Modern Warfare 2 - Multiplayer",play,2.7,0 -114364553,"Call of Duty Modern Warfare 2",purchase,1.0,0 -163988065,"F1 2012",purchase,1.0,0 -163988065,"F1 2012",play,1.0,0 -171918937,"Dota 2",purchase,1.0,0 -171918937,"Dota 2",play,1.4,0 -202043465,"Team Fortress 2",purchase,1.0,0 -202043465,"Team Fortress 2",play,37.0,0 -202043465,"Dead Island Epidemic",purchase,1.0,0 -202043465,"Unturned",purchase,1.0,0 -112110682,"Counter-Strike Global Offensive",purchase,1.0,0 -112110682,"Counter-Strike Global Offensive",play,499.0,0 -112110682,"Dota 2",purchase,1.0,0 -112110682,"Dota 2",play,238.0,0 -112110682,"Garry's Mod",purchase,1.0,0 -112110682,"Garry's Mod",play,50.0,0 -112110682,"DayZ",purchase,1.0,0 -112110682,"DayZ",play,46.0,0 -112110682,"Arma 2 Operation Arrowhead",purchase,1.0,0 -112110682,"Arma 2 Operation Arrowhead",play,19.7,0 -112110682,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -112110682,"Tom Clancy's Ghost Recon Phantoms - NA",play,17.8,0 -112110682,"TERA",purchase,1.0,0 -112110682,"TERA",play,15.1,0 -112110682,"Team Fortress 2",purchase,1.0,0 -112110682,"Team Fortress 2",play,9.2,0 -112110682,"Insurgency",purchase,1.0,0 -112110682,"Insurgency",play,7.3,0 -112110682,"Hotline Miami",purchase,1.0,0 -112110682,"Hotline Miami",play,5.8,0 -112110682,"Sniper Elite V2",purchase,1.0,0 -112110682,"Sniper Elite V2",play,5.5,0 -112110682,"PlanetSide 2",purchase,1.0,0 -112110682,"PlanetSide 2",play,5.5,0 -112110682,"One Finger Death Punch",purchase,1.0,0 -112110682,"One Finger Death Punch",play,2.3,0 -112110682,"Warframe",purchase,1.0,0 -112110682,"Warframe",play,2.1,0 -112110682,"APB Reloaded",purchase,1.0,0 -112110682,"APB Reloaded",play,1.4,0 -112110682,"Alien Swarm",purchase,1.0,0 -112110682,"Alien Swarm",play,0.8,0 -112110682,"War Thunder",purchase,1.0,0 -112110682,"War Thunder",play,0.6,0 -112110682,"Metro 2033",purchase,1.0,0 -112110682,"Metro 2033",play,0.4,0 -112110682,"Cry of Fear",purchase,1.0,0 -112110682,"Cry of Fear",play,0.3,0 -112110682,"MapleStory",purchase,1.0,0 -112110682,"MapleStory",play,0.2,0 -112110682,"Path of Exile",purchase,1.0,0 -112110682,"Path of Exile",play,0.1,0 -112110682,"The Plan",purchase,1.0,0 -112110682,"The Plan",play,0.1,0 -112110682,"The Mighty Quest For Epic Loot",purchase,1.0,0 -112110682,"Arma 2",purchase,1.0,0 -112110682,"You Have to Win the Game",purchase,1.0,0 -112110682,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -281376430,"Goat Simulator",purchase,1.0,0 -281376430,"Goat Simulator",play,0.4,0 -174204642,"Rocket League",purchase,1.0,0 -174204642,"Rocket League",play,293.0,0 -174204642,"Grand Theft Auto V",purchase,1.0,0 -174204642,"Grand Theft Auto V",play,170.0,0 -174204642,"DARK SOULS II",purchase,1.0,0 -174204642,"DARK SOULS II",play,73.0,0 -154123088,"Batman Arkham City GOTY",purchase,1.0,0 -154123088,"Batman Arkham City GOTY",play,49.0,0 -154123088,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -154123088,"Batman Arkham Asylum GOTY Edition",play,45.0,0 -154123088,"Assetto Corsa",purchase,1.0,0 -154123088,"Assetto Corsa",play,37.0,0 -154123088,"Batman Arkham Origins",purchase,1.0,0 -154123088,"Batman Arkham Origins",play,17.1,0 -154123088,"GRID 2",purchase,1.0,0 -154123088,"GRID 2",play,9.9,0 -154123088,"The Elder Scrolls V Skyrim",purchase,1.0,0 -154123088,"The Elder Scrolls V Skyrim",play,0.2,0 -154123088,"GRID 2 GTR Racing Pack",purchase,1.0,0 -154123088,"Thief Gold",purchase,1.0,0 -298478157,"Dota 2",purchase,1.0,0 -298478157,"Dota 2",play,3.7,0 -29915651,"APB Reloaded",purchase,1.0,0 -29915651,"APB Reloaded",play,4.6,0 -29915651,"RaceRoom Racing Experience ",purchase,1.0,0 -29915651,"RaceRoom Racing Experience ",play,2.7,0 -103171339,"Team Fortress 2",purchase,1.0,0 -103171339,"Team Fortress 2",play,4.3,0 -296426951,"South Park The Stick of Truth",purchase,1.0,0 -296426951,"South Park The Stick of Truth",play,10.6,0 -296426951,"Happy Wars",purchase,1.0,0 -296426951,"Happy Wars",play,4.5,0 -303090541,"Dota 2",purchase,1.0,0 -303090541,"Dota 2",play,1.0,0 -293002110,"Dota 2",purchase,1.0,0 -293002110,"Dota 2",play,1.7,0 -70470505,"AI War Fleet Command",purchase,1.0,0 -14098833,"Counter-Strike Source",purchase,1.0,0 -14098833,"Counter-Strike Source",play,14.7,0 -14098833,"Counter-Strike",purchase,1.0,0 -14098833,"Counter-Strike",play,5.3,0 -14098833,"Counter-Strike Condition Zero",purchase,1.0,0 -14098833,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -14098833,"Half-Life 2",purchase,1.0,0 -14098833,"Half-Life 2 Deathmatch",purchase,1.0,0 -14098833,"Half-Life 2 Lost Coast",purchase,1.0,0 -197765864,"Dota 2",purchase,1.0,0 -197765864,"Dota 2",play,4.5,0 -165523661,"Dota 2",purchase,1.0,0 -165523661,"Dota 2",play,5.3,0 -56198811,"Call of Duty Modern Warfare 2",purchase,1.0,0 -56198811,"Call of Duty Modern Warfare 2",play,2.6,0 -56198811,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -237298602,"Dota 2",purchase,1.0,0 -237298602,"Dota 2",play,15.5,0 -75011941,"Call of Duty Black Ops",purchase,1.0,0 -75011941,"Call of Duty Black Ops",play,36.0,0 -75011941,"Just Cause 2",purchase,1.0,0 -75011941,"Just Cause 2",play,2.9,0 -75011941,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -75011941,"Call of Duty Black Ops - Multiplayer",play,2.1,0 -75011941,"Fallout New Vegas",purchase,1.0,0 -75011941,"Fallout New Vegas",play,0.2,0 -75011941,"Sid Meier's Civilization V",purchase,1.0,0 -75011941,"Sid Meier's Civilization V",play,0.2,0 -75011941,"Front Mission Evolved",purchase,1.0,0 -75011941,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -75011941,"Darksiders",purchase,1.0,0 -115192877,"Football Manager 2014",purchase,1.0,0 -115192877,"Football Manager 2014",play,226.0,0 -115192877,"Age of Empires II HD Edition",purchase,1.0,0 -115192877,"Age of Empires II HD Edition",play,97.0,0 -115192877,"Football Manager 2013",purchase,1.0,0 -115192877,"Football Manager 2013",play,51.0,0 -115192877,"Football Manager 2016",purchase,1.0,0 -115192877,"Football Manager 2016",play,47.0,0 -218268835,"Counter-Strike Nexon Zombies",purchase,1.0,0 -218268835,"No More Room in Hell",purchase,1.0,0 -36188511,"Counter-Strike Source",purchase,1.0,0 -272181160,"Counter-Strike Source",purchase,1.0,0 -272181160,"Counter-Strike Source",play,10.4,0 -272181160,"Grand Theft Auto V",purchase,1.0,0 -272181160,"Grand Theft Auto V",play,8.6,0 -272181160,"GRID 2",purchase,1.0,0 -272181160,"GRID 2",play,3.1,0 -272181160,"Counter-Strike Global Offensive",purchase,1.0,0 -272181160,"Counter-Strike Global Offensive",play,0.8,0 -272181160,"Dota 2",purchase,1.0,0 -272181160,"Dota 2",play,0.5,0 -272181160,"Counter-Strike",purchase,1.0,0 -272181160,"Counter-Strike",play,0.1,0 -272181160,"Counter-Strike Condition Zero",purchase,1.0,0 -272181160,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -272181160,"GRID 2 GTR Racing Pack",purchase,1.0,0 -218292423,"Dizzel",purchase,1.0,0 -218292423,"Karos",purchase,1.0,0 -186450119,"Dota 2",purchase,1.0,0 -186450119,"Dota 2",play,2.9,0 -233648242,"Dota 2",purchase,1.0,0 -233648242,"Dota 2",play,1.1,0 -205014771,"Counter-Strike Global Offensive",purchase,1.0,0 -205014771,"Counter-Strike Global Offensive",play,314.0,0 -205014771,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -205014771,"Resident Evil 6 / Biohazard 6",play,13.0,0 -205014771,"Dying Light",purchase,1.0,0 -205014771,"Dying Light",play,10.8,0 -205014771,"Counter-Strike Source",purchase,1.0,0 -205014771,"Counter-Strike Source",play,3.3,0 -205014771,"Ryse Son of Rome",purchase,1.0,0 -205014771,"Ryse Son of Rome",play,1.7,0 -205014771,"Assassins Creed Unity",purchase,1.0,0 -205014771,"Assassins Creed Unity",play,1.4,0 -205014771,"Resident Evil / biohazard HD REMASTER",purchase,1.0,0 -205014771,"Resident Evil / biohazard HD REMASTER",play,1.2,0 -205014771,"Shadow Warrior",purchase,1.0,0 -205014771,"Shadow Warrior",play,0.8,0 -205014771,"PAYDAY 2",purchase,1.0,0 -205014771,"PAYDAY 2",play,0.4,0 -205014771,"Counter-Strike Condition Zero",purchase,1.0,0 -205014771,"Counter-Strike Condition Zero",play,0.2,0 -205014771,"Counter-Strike",purchase,1.0,0 -205014771,"Counter-Strike",play,0.1,0 -205014771,"NBA 2K15",purchase,1.0,0 -205014771,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -205014771,"DYNASTY WARRIORS 8 Xtreme Legends Complete Edition",purchase,1.0,0 -205014771,"Saints Row IV",purchase,1.0,0 -205014771,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -205014771,"FreeStyle2 Street Basketball",purchase,1.0,0 -205014771,"Max Payne 3",purchase,1.0,0 -205014771,"Max Payne 3 Season Pass",purchase,1.0,0 -205014771,"Resident Evil 6 Mercenaries No Mercy",purchase,1.0,0 -182412202,"Cossacks Art of War",purchase,1.0,0 -182412202,"Cossacks Art of War",play,61.0,0 -182412202,"Poly Bridge",purchase,1.0,0 -182412202,"Poly Bridge",play,2.0,0 -182412202,"Besiege",purchase,1.0,0 -182412202,"Besiege",play,0.6,0 -95044091,"Napoleon Total War",purchase,1.0,0 -95044091,"Napoleon Total War",play,23.0,0 -95044091,"Company of Heroes 2",purchase,1.0,0 -95044091,"Company of Heroes 2",play,17.6,0 -95044091,"Tropico 4",purchase,1.0,0 -95044091,"Tropico 4",play,15.4,0 -95044091,"Call of Duty Modern Warfare 2",purchase,1.0,0 -95044091,"Call of Duty Modern Warfare 2",play,10.0,0 -95044091,"Stronghold 3",purchase,1.0,0 -95044091,"Stronghold 3",play,5.7,0 -95044091,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -95044091,"Call of Duty Modern Warfare 2 - Multiplayer",play,4.3,0 -95044091,"Stronghold HD",purchase,1.0,0 -70052469,"Empire Total War",purchase,1.0,0 -70052469,"Empire Total War",play,10.8,0 -156156544,"Dota 2",purchase,1.0,0 -156156544,"Dota 2",play,5.3,0 -182621430,"Dota 2",purchase,1.0,0 -182621430,"Dota 2",play,0.3,0 -72488020,"Dead Island",purchase,1.0,0 -72488020,"Dead Island",play,12.8,0 -72488020,"Fallout New Vegas",purchase,1.0,0 -72488020,"Fallout New Vegas",play,6.9,0 -72488020,"The Elder Scrolls V Skyrim",purchase,1.0,0 -72488020,"The Elder Scrolls V Skyrim",play,6.8,0 -253622624,"Dota 2",purchase,1.0,0 -253622624,"Dota 2",play,1.6,0 -227861587,"Team Fortress 2",purchase,1.0,0 -227861587,"Team Fortress 2",play,0.5,0 -227861587,"BLOCKADE 3D",purchase,1.0,0 -227861587,"Unturned",purchase,1.0,0 -235209794,"Gotham City Impostors Free To Play",purchase,1.0,0 -235209794,"CrimeCraft GangWars",purchase,1.0,0 -235209794,"Dead Island Epidemic",purchase,1.0,0 -235209794,"Firefall",purchase,1.0,0 -235209794,"Heroes & Generals",purchase,1.0,0 -235209794,"Pinball FX2",purchase,1.0,0 -235209794,"Robocraft",purchase,1.0,0 -235209794,"Super Monday Night Combat",purchase,1.0,0 -235209794,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -235209794,"Unturned",purchase,1.0,0 -235209794,"Warframe",purchase,1.0,0 -74161590,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -74161590,"Call of Duty Black Ops - Multiplayer",play,395.0,0 -74161590,"Team Fortress 2",purchase,1.0,0 -74161590,"Team Fortress 2",play,56.0,0 -74161590,"Portal 2",purchase,1.0,0 -74161590,"Portal 2",play,42.0,0 -74161590,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -74161590,"Call of Duty 4 Modern Warfare",play,32.0,0 -74161590,"RaceRoom Racing Experience ",purchase,1.0,0 -74161590,"RaceRoom Racing Experience ",play,28.0,0 -74161590,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -74161590,"Call of Duty Modern Warfare 3 - Multiplayer",play,14.1,0 -74161590,"Crysis 2 Maximum Edition",purchase,1.0,0 -74161590,"Crysis 2 Maximum Edition",play,12.3,0 -74161590,"Tactical Intervention",purchase,1.0,0 -74161590,"Tactical Intervention",play,10.0,0 -74161590,"Call of Duty Black Ops",purchase,1.0,0 -74161590,"Call of Duty Black Ops",play,6.2,0 -74161590,"BioShock 2",purchase,1.0,0 -74161590,"BioShock 2",play,5.6,0 -74161590,"Call of Duty Modern Warfare 3",purchase,1.0,0 -74161590,"Call of Duty Modern Warfare 3",play,0.6,0 -74161590,"DC Universe Online",purchase,1.0,0 -74161590,"DC Universe Online",play,0.3,0 -74161590,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -74161590,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.3,0 -74161590,"Robocraft",purchase,1.0,0 -74161590,"Robocraft",play,0.3,0 -74161590,"Call of Duty Modern Warfare 2",purchase,1.0,0 -74161590,"Call of Duty Modern Warfare 2",play,0.2,0 -74161590,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -102838001,"Dota 2",purchase,1.0,0 -102838001,"Dota 2",play,28.0,0 -141246626,"Dota 2",purchase,1.0,0 -141246626,"Dota 2",play,1.8,0 -81054122,"Football Manager 2013",purchase,1.0,0 -81054122,"Football Manager 2013",play,2249.0,0 -81054122,"Football Manager 2012",purchase,1.0,0 -81054122,"Football Manager 2012",play,1709.0,0 -81054122,"Football Manager 2014",purchase,1.0,0 -81054122,"Football Manager 2014",play,1317.0,0 -81054122,"Football Manager 2015",purchase,1.0,0 -81054122,"Football Manager 2015",play,1035.0,0 -81054122,"Football Manager 2016",purchase,1.0,0 -81054122,"Football Manager 2016",play,100.0,0 -81054122,"Crusader Kings II",purchase,1.0,0 -81054122,"Crusader Kings II",play,60.0,0 -232664241,"Counter-Strike Nexon Zombies",purchase,1.0,0 -232664241,"Counter-Strike Nexon Zombies",play,0.3,0 -166242802,"Dota 2",purchase,1.0,0 -166242802,"Dota 2",play,1.9,0 -202140315,"Dota 2",purchase,1.0,0 -202140315,"Dota 2",play,0.3,0 -160469883,"Rocksmith",purchase,1.0,0 -160469883,"Rocksmith",play,22.0,0 -160469883,"DC Universe Online",purchase,1.0,0 -160469883,"DC Universe Online",play,10.0,0 -160469883,"Warframe",purchase,1.0,0 -160469883,"Warframe",play,5.2,0 -160469883,"Firefall",purchase,1.0,0 -160469883,"Firefall",play,2.5,0 -160469883,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -160469883,"Warhammer 40,000 Dawn of War II",play,1.1,0 -160469883,"Path of Exile",purchase,1.0,0 -160469883,"Path of Exile",play,0.5,0 -160469883,"Dota 2",purchase,1.0,0 -160469883,"Dota 2",play,0.4,0 -153774422,"Football Manager 2014",purchase,1.0,0 -153774422,"Football Manager 2014",play,491.0,0 -161405419,"Stronghold Crusader HD",purchase,1.0,0 -161405419,"Stronghold Crusader HD",play,6.8,0 -161405419,"Stronghold 2",purchase,1.0,0 -161405419,"Stronghold 2",play,1.8,0 -161405419,"Stronghold Crusader Extreme HD",purchase,1.0,0 -161405419,"Stronghold HD",purchase,1.0,0 -161405419,"Stronghold Legends",purchase,1.0,0 -66713604,"Machinarium",purchase,1.0,0 -66713604,"Machinarium",play,1.0,0 -66713604,"Mirror's Edge",purchase,1.0,0 -257491997,"Dota 2",purchase,1.0,0 -257491997,"Dota 2",play,1.6,0 -257491997,"FreeStyle2 Street Basketball",purchase,1.0,0 -257491997,"GunZ 2 The Second Duel",purchase,1.0,0 -257491997,"Loadout",purchase,1.0,0 -257491997,"METAL SLUG DEFENSE",purchase,1.0,0 -257491997,"Quake Live",purchase,1.0,0 -257491997,"WAKFU",purchase,1.0,0 -257491997,"Wild Warfare",purchase,1.0,0 -86779448,"Dota 2",purchase,1.0,0 -86779448,"Dota 2",play,1838.0,0 -86779448,"AirMech",purchase,1.0,0 -86779448,"AirMech",play,4.1,0 -86779448,"Team Fortress 2",purchase,1.0,0 -86779448,"Team Fortress 2",play,1.2,0 -86779448,"Realm of the Mad God",purchase,1.0,0 -86779448,"Realm of the Mad God",play,0.5,0 -205343727,"The Elder Scrolls V Skyrim",purchase,1.0,0 -205343727,"The Elder Scrolls V Skyrim",play,93.0,0 -205343727,"Team Fortress 2",purchase,1.0,0 -205343727,"Team Fortress 2",play,8.1,0 -205343727,"Transformice",purchase,1.0,0 -205343727,"Transformice",play,7.2,0 -205343727,"PlanetSide 2",purchase,1.0,0 -205343727,"PlanetSide 2",play,2.7,0 -205343727,"Loadout",purchase,1.0,0 -205343727,"Loadout",play,1.2,0 -205343727,"Echo of Soul",purchase,1.0,0 -205343727,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -205343727,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -205343727,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -204703234,"Dota 2",purchase,1.0,0 -204703234,"Dota 2",play,29.0,0 -174896111,"Counter-Strike Global Offensive",purchase,1.0,0 -174896111,"Counter-Strike Global Offensive",play,614.0,0 -174896111,"Dota 2",purchase,1.0,0 -174896111,"Dota 2",play,210.0,0 -174896111,"Counter-Strike",purchase,1.0,0 -174896111,"Counter-Strike",play,77.0,0 -174896111,"Counter-Strike Condition Zero",purchase,1.0,0 -174896111,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -174896111,"Dead Island Epidemic",purchase,1.0,0 -174896111,"Magicka Wizard Wars",purchase,1.0,0 -174896111,"Space Hack",purchase,1.0,0 -174896111,"Star Conflict",purchase,1.0,0 -174896111,"Warframe",purchase,1.0,0 -174896111,"War Thunder",purchase,1.0,0 -282408930,"Blacklight Retribution",purchase,1.0,0 -282408930,"Blacklight Retribution",play,1.0,0 -106147454,"The Elder Scrolls V Skyrim",purchase,1.0,0 -106147454,"The Elder Scrolls V Skyrim",play,99.0,0 -106147454,"Left 4 Dead 2",purchase,1.0,0 -106147454,"Left 4 Dead 2",play,98.0,0 -106147454,"Infestation Survivor Stories",purchase,1.0,0 -106147454,"Infestation Survivor Stories",play,96.0,0 -106147454,"Garry's Mod",purchase,1.0,0 -106147454,"Garry's Mod",play,54.0,0 -106147454,"Team Fortress 2",purchase,1.0,0 -106147454,"Team Fortress 2",play,33.0,0 -106147454,"Nosgoth",purchase,1.0,0 -106147454,"Nosgoth",play,29.0,0 -106147454,"7 Days to Die",purchase,1.0,0 -106147454,"7 Days to Die",play,27.0,0 -106147454,"Chivalry Medieval Warfare",purchase,1.0,0 -106147454,"Chivalry Medieval Warfare",play,26.0,0 -106147454,"Killing Floor",purchase,1.0,0 -106147454,"Killing Floor",play,23.0,0 -106147454,"Borderlands 2",purchase,1.0,0 -106147454,"Borderlands 2",play,20.0,0 -106147454,"Hitman Absolution",purchase,1.0,0 -106147454,"Hitman Absolution",play,20.0,0 -106147454,"DiRT Showdown",purchase,1.0,0 -106147454,"DiRT Showdown",play,19.1,0 -106147454,"PROTOTYPE 2",purchase,1.0,0 -106147454,"PROTOTYPE 2",play,18.7,0 -106147454,"Batman Arkham Origins",purchase,1.0,0 -106147454,"Batman Arkham Origins",play,17.5,0 -106147454,"Sniper Elite Nazi Zombie Army",purchase,1.0,0 -106147454,"Sniper Elite Nazi Zombie Army",play,17.0,0 -106147454,"Counter-Strike Source",purchase,1.0,0 -106147454,"Counter-Strike Source",play,16.6,0 -106147454,"No More Room in Hell",purchase,1.0,0 -106147454,"No More Room in Hell",play,14.7,0 -106147454,"South Park The Stick of Truth",purchase,1.0,0 -106147454,"South Park The Stick of Truth",play,13.3,0 -106147454,"Aliens Colonial Marines",purchase,1.0,0 -106147454,"Aliens Colonial Marines",play,12.6,0 -106147454,"Battlefield Bad Company 2",purchase,1.0,0 -106147454,"Battlefield Bad Company 2",play,12.6,0 -106147454,"BioShock Infinite",purchase,1.0,0 -106147454,"BioShock Infinite",play,10.7,0 -106147454,"ORION Prelude",purchase,1.0,0 -106147454,"ORION Prelude",play,10.2,0 -106147454,"Tomb Raider",purchase,1.0,0 -106147454,"Tomb Raider",play,10.0,0 -106147454,"Dead Island",purchase,1.0,0 -106147454,"Dead Island",play,9.6,0 -106147454,"Portal 2",purchase,1.0,0 -106147454,"Portal 2",play,9.5,0 -106147454,"LEGO The Lord of the Rings",purchase,1.0,0 -106147454,"LEGO The Lord of the Rings",play,9.3,0 -106147454,"Fistful of Frags",purchase,1.0,0 -106147454,"Fistful of Frags",play,8.4,0 -106147454,"Worms Reloaded",purchase,1.0,0 -106147454,"Worms Reloaded",play,8.0,0 -106147454,"Portal",purchase,1.0,0 -106147454,"Portal",play,7.9,0 -106147454,"Assassin's Creed III",purchase,1.0,0 -106147454,"Assassin's Creed III",play,7.6,0 -106147454,"Star Wars - Battlefront II",purchase,1.0,0 -106147454,"Star Wars - Battlefront II",play,7.0,0 -106147454,"Grand Theft Auto IV",purchase,1.0,0 -106147454,"Grand Theft Auto IV",play,6.6,0 -106147454,"Dead Rising 2",purchase,1.0,0 -106147454,"Dead Rising 2",play,6.0,0 -106147454,"Toribash",purchase,1.0,0 -106147454,"Toribash",play,5.8,0 -106147454,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -106147454,"Injustice Gods Among Us Ultimate Edition",play,5.6,0 -106147454,"Nether",purchase,1.0,0 -106147454,"Nether",play,5.5,0 -106147454,"Lucius",purchase,1.0,0 -106147454,"Lucius",play,5.3,0 -106147454,"LEGO Batman 3 Beyond Gotham",purchase,1.0,0 -106147454,"LEGO Batman 3 Beyond Gotham",play,4.7,0 -106147454,"Primal Carnage",purchase,1.0,0 -106147454,"Primal Carnage",play,4.4,0 -106147454,"PAYDAY 2",purchase,1.0,0 -106147454,"PAYDAY 2",play,4.3,0 -106147454,"Half-Life 2",purchase,1.0,0 -106147454,"Half-Life 2",play,3.3,0 -106147454,"Sniper Elite V2",purchase,1.0,0 -106147454,"Sniper Elite V2",play,3.2,0 -106147454,"Depth",purchase,1.0,0 -106147454,"Depth",play,3.1,0 -106147454,"Natural Selection 2",purchase,1.0,0 -106147454,"Natural Selection 2",play,3.0,0 -106147454,"Unturned",purchase,1.0,0 -106147454,"Unturned",play,2.7,0 -106147454,"Goat Simulator",purchase,1.0,0 -106147454,"Goat Simulator",play,2.6,0 -106147454,"Surgeon Simulator",purchase,1.0,0 -106147454,"Surgeon Simulator",play,2.5,0 -106147454,"Contagion",purchase,1.0,0 -106147454,"Contagion",play,2.3,0 -106147454,"Arma 2 DayZ Mod",purchase,1.0,0 -106147454,"Arma 2 DayZ Mod",play,2.3,0 -106147454,"Aftermath",purchase,1.0,0 -106147454,"Aftermath",play,1.9,0 -106147454,"The Stanley Parable",purchase,1.0,0 -106147454,"The Stanley Parable",play,1.4,0 -106147454,"Arma 2 Operation Arrowhead",purchase,1.0,0 -106147454,"Arma 2 Operation Arrowhead",play,1.2,0 -106147454,"Warface",purchase,1.0,0 -106147454,"Warface",play,1.2,0 -106147454,"Dishonored",purchase,1.0,0 -106147454,"Dishonored",play,1.0,0 -106147454,"Heroes & Generals",purchase,1.0,0 -106147454,"Heroes & Generals",play,0.9,0 -106147454,"Double Action Boogaloo",purchase,1.0,0 -106147454,"Double Action Boogaloo",play,0.8,0 -106147454,"Quantum Rush Online",purchase,1.0,0 -106147454,"Quantum Rush Online",play,0.8,0 -106147454,"Hazard Ops",purchase,1.0,0 -106147454,"Hazard Ops",play,0.8,0 -106147454,"Hitman Sniper Challenge",purchase,1.0,0 -106147454,"Hitman Sniper Challenge",play,0.7,0 -106147454,"Survarium",purchase,1.0,0 -106147454,"Survarium",play,0.7,0 -106147454,"Life Is Strange",purchase,1.0,0 -106147454,"Life Is Strange",play,0.7,0 -106147454,"Arma 2",purchase,1.0,0 -106147454,"Arma 2",play,0.4,0 -106147454,"Cry of Fear",purchase,1.0,0 -106147454,"Cry of Fear",play,0.4,0 -106147454,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -106147454,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,0.4,0 -106147454,"sZone-Online",purchase,1.0,0 -106147454,"sZone-Online",play,0.4,0 -106147454,"Darkwind War on Wheels",purchase,1.0,0 -106147454,"Darkwind War on Wheels",play,0.2,0 -106147454,"Robocraft",purchase,1.0,0 -106147454,"Robocraft",play,0.2,0 -106147454,"Fallen Earth",purchase,1.0,0 -106147454,"Epic Cards Battle(TCG)",purchase,1.0,0 -106147454,"Dead Island Epidemic",purchase,1.0,0 -106147454,"Dead Island Riptide",purchase,1.0,0 -106147454,"Dungeons & Dragons Online",purchase,1.0,0 -106147454,"F.E.A.R. Online",purchase,1.0,0 -106147454,"Fishing Planet",purchase,1.0,0 -106147454,"Half-Life 2 Lost Coast",purchase,1.0,0 -106147454,"How to Survive",purchase,1.0,0 -106147454,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -106147454,"Patch testing for Chivalry",purchase,1.0,0 -106147454,"Thinking with Time Machine",purchase,1.0,0 -101040836,"Robocraft",purchase,1.0,0 -126876615,"Serious Sam HD The Second Encounter",purchase,1.0,0 -126876615,"Serious Sam HD The Second Encounter",play,49.0,0 -166858869,"Path of Exile",purchase,1.0,0 -166858869,"Path of Exile",play,284.0,0 -166858869,"Alien Swarm",purchase,1.0,0 -166858869,"Alien Swarm",play,3.0,0 -166858869,"Dirty Bomb",purchase,1.0,0 -166858869,"Dirty Bomb",play,0.4,0 -279603258,"Dota 2",purchase,1.0,0 -279603258,"Dota 2",play,9.3,0 -146326949,"Dota 2",purchase,1.0,0 -146326949,"Dota 2",play,32.0,0 -94086389,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -94086389,"Call of Duty Modern Warfare 3 - Multiplayer",play,249.0,0 -94086389,"Call of Duty Modern Warfare 3",purchase,1.0,0 -94086389,"Call of Duty Modern Warfare 3",play,163.0,0 -290895974,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -290895974,"Sins of a Solar Empire Rebellion",play,163.0,0 -295021107,"BLOCKADE 3D",purchase,1.0,0 -295021107,"BLOCKADE 3D",play,0.6,0 -143137329,"Dota 2",purchase,1.0,0 -143137329,"Dota 2",play,2566.0,0 -154617624,"Cities in Motion",purchase,1.0,0 -154617624,"Cities in Motion",play,0.1,0 -114132445,"Counter-Strike Global Offensive",purchase,1.0,0 -114132445,"Counter-Strike Global Offensive",play,0.9,0 -259829971,"Dota 2",purchase,1.0,0 -259829971,"Dota 2",play,4.3,0 -257702137,"Car Mechanic Simulator 2014",purchase,1.0,0 -257702137,"Car Mechanic Simulator 2014",play,0.7,0 -217709850,"H1Z1",purchase,1.0,0 -217709850,"H1Z1",play,3.7,0 -217709850,"Counter-Strike Global Offensive",purchase,1.0,0 -217709850,"Counter-Strike Global Offensive",play,0.7,0 -217709850,"Warface",purchase,1.0,0 -217709850,"Warface",play,0.6,0 -217709850,"Left 4 Dead 2",purchase,1.0,0 -217709850,"Left 4 Dead 2",play,0.2,0 -217709850,"H1Z1 Test Server",purchase,1.0,0 -217709850,"The Elder Scrolls V Skyrim",purchase,1.0,0 -57974873,"Total War ROME II - Emperor Edition",purchase,1.0,0 -57974873,"Total War ROME II - Emperor Edition",play,377.0,0 -57974873,"Total War SHOGUN 2",purchase,1.0,0 -57974873,"Total War SHOGUN 2",play,164.0,0 -57974873,"Napoleon Total War",purchase,1.0,0 -57974873,"Napoleon Total War",play,138.0,0 -57974873,"The Elder Scrolls V Skyrim",purchase,1.0,0 -57974873,"The Elder Scrolls V Skyrim",play,132.0,0 -57974873,"Fallout New Vegas",purchase,1.0,0 -57974873,"Fallout New Vegas",play,112.0,0 -57974873,"Total War ATTILA",purchase,1.0,0 -57974873,"Total War ATTILA",play,101.0,0 -57974873,"Empire Total War",purchase,1.0,0 -57974873,"Empire Total War",play,101.0,0 -57974873,"Dishonored",purchase,1.0,0 -57974873,"Dishonored",play,40.0,0 -57974873,"Sid Meier's Civilization V",purchase,1.0,0 -57974873,"Sid Meier's Civilization V",play,26.0,0 -57974873,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -57974873,"Warhammer 40,000 Dawn of War II",play,25.0,0 -57974873,"Europa Universalis IV",purchase,1.0,0 -57974873,"Europa Universalis IV",play,14.9,0 -57974873,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -57974873,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,11.5,0 -57974873,"Company of Heroes 2",purchase,1.0,0 -57974873,"Company of Heroes 2",play,9.9,0 -57974873,"Endless Space",purchase,1.0,0 -57974873,"Endless Space",play,9.1,0 -57974873,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -57974873,"Warhammer 40,000 Dawn of War II Retribution",play,5.3,0 -57974873,"Saints Row IV",purchase,1.0,0 -57974873,"Saints Row IV",play,3.4,0 -57974873,"Mount & Blade Warband",purchase,1.0,0 -57974873,"Mount & Blade Warband",play,1.4,0 -57974873,"Star Wars - Battlefront II",purchase,1.0,0 -57974873,"Star Wars - Battlefront II",play,0.7,0 -57974873,"The Witcher Enhanced Edition",purchase,1.0,0 -57974873,"The Witcher Enhanced Edition",play,0.6,0 -57974873,"Darkest Hour A Hearts of Iron Game",purchase,1.0,0 -57974873,"Darkest Hour A Hearts of Iron Game",play,0.4,0 -57974873,"BioShock",purchase,1.0,0 -57974873,"BioShock",play,0.4,0 -57974873,"Star Wars Empire at War Gold",purchase,1.0,0 -57974873,"Star Wars Empire at War Gold",play,0.3,0 -57974873,"Worms Armageddon",purchase,1.0,0 -57974873,"Europa Universalis III",purchase,1.0,0 -57974873,"Arma 2",purchase,1.0,0 -57974873,"Arma 2 Operation Arrowhead",purchase,1.0,0 -57974873,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -57974873,"BioShock 2",purchase,1.0,0 -57974873,"BioShock Infinite",purchase,1.0,0 -57974873,"Chivalry Medieval Warfare",purchase,1.0,0 -57974873,"Europa Universalis III Divine Wind",purchase,1.0,0 -57974873,"Europa Universalis IV Conquest of Paradise",purchase,1.0,0 -57974873,"Fallout",purchase,1.0,0 -57974873,"Fallout 2",purchase,1.0,0 -57974873,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -57974873,"Fallout New Vegas Dead Money",purchase,1.0,0 -57974873,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -57974873,"Fallout Tactics",purchase,1.0,0 -57974873,"Patch testing for Chivalry",purchase,1.0,0 -57974873,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -57974873,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -57974873,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -57974873,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -57974873,"Total War ATTILA - Age of Charlemagne Campaign Pack",purchase,1.0,0 -57974873,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -57974873,"Wargame AirLand Battle",purchase,1.0,0 -57974873,"Wargame European Escalation",purchase,1.0,0 -57974873,"Wargame Red Dragon",purchase,1.0,0 -242471645,"H1Z1",purchase,1.0,0 -242471645,"H1Z1",play,6.2,0 -242471645,"H1Z1 Test Server",purchase,1.0,0 -115813584,"DOOM 3 BFG Edition",purchase,1.0,0 -115813584,"DOOM 3 BFG Edition",play,0.2,0 -188226310,"Dota 2",purchase,1.0,0 -188226310,"Dota 2",play,1.7,0 -100478352,"The Elder Scrolls V Skyrim",purchase,1.0,0 -100478352,"The Elder Scrolls V Skyrim",play,37.0,0 -132875638,"Unturned",purchase,1.0,0 -132875638,"Unturned",play,6.3,0 -76916895,"Deus Ex Game of the Year Edition",purchase,1.0,0 -76916895,"Deus Ex Game of the Year Edition",play,0.8,0 -301805182,"Counter-Strike Global Offensive",purchase,1.0,0 -301805182,"Counter-Strike Global Offensive",play,56.0,0 -158469748,"Farming Simulator 2013",purchase,1.0,0 -158469748,"Farming Simulator 2013",play,45.0,0 -158469748,"DayZ",purchase,1.0,0 -158469748,"DayZ",play,18.8,0 -277798812,"Warframe",purchase,1.0,0 -174103314,"Team Fortress 2",purchase,1.0,0 -174103314,"Team Fortress 2",play,2.5,0 -174103314,"Dota 2",purchase,1.0,0 -174103314,"Dota 2",play,0.3,0 -278609462,"Dota 2",purchase,1.0,0 -278609462,"Dota 2",play,1.4,0 -129272742,"Source Filmmaker",purchase,1.0,0 -129272742,"Source Filmmaker",play,30.0,0 -26430231,"Counter-Strike Global Offensive",purchase,1.0,0 -26430231,"Counter-Strike Global Offensive",play,354.0,0 -26430231,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -26430231,"Call of Duty Black Ops II - Multiplayer",play,329.0,0 -26430231,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -26430231,"Call of Duty Ghosts - Multiplayer",play,79.0,0 -26430231,"Dota 2",purchase,1.0,0 -26430231,"Dota 2",play,77.0,0 -26430231,"Dirty Bomb",purchase,1.0,0 -26430231,"Dirty Bomb",play,63.0,0 -26430231,"Call of Duty Black Ops II",purchase,1.0,0 -26430231,"Call of Duty Black Ops II",play,12.4,0 -26430231,"Team Fortress 2",purchase,1.0,0 -26430231,"Team Fortress 2",play,11.2,0 -26430231,"Insurgency",purchase,1.0,0 -26430231,"Insurgency",play,6.5,0 -26430231,"PAYDAY 2",purchase,1.0,0 -26430231,"PAYDAY 2",play,6.1,0 -26430231,"PlanetSide 2",purchase,1.0,0 -26430231,"PlanetSide 2",play,4.8,0 -26430231,"Left 4 Dead 2",purchase,1.0,0 -26430231,"Left 4 Dead 2",play,3.3,0 -26430231,"DC Universe Online",purchase,1.0,0 -26430231,"DC Universe Online",play,3.1,0 -26430231,"Double Action Boogaloo",purchase,1.0,0 -26430231,"Double Action Boogaloo",play,2.8,0 -26430231,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -26430231,"Call of Duty Black Ops II - Zombies",play,1.9,0 -26430231,"Call of Duty Ghosts",purchase,1.0,0 -26430231,"Call of Duty Ghosts",play,1.7,0 -26430231,"theHunter",purchase,1.0,0 -26430231,"theHunter",play,1.4,0 -26430231,"War Thunder",purchase,1.0,0 -26430231,"War Thunder",play,1.1,0 -26430231,"Half-Life Opposing Force",purchase,1.0,0 -26430231,"Half-Life Opposing Force",play,0.9,0 -26430231,"The Bridge",purchase,1.0,0 -26430231,"The Bridge",play,0.8,0 -26430231,"Nosgoth",purchase,1.0,0 -26430231,"Nosgoth",play,0.8,0 -26430231,"Fistful of Frags",purchase,1.0,0 -26430231,"Fistful of Frags",play,0.7,0 -26430231,"Thomas Was Alone",purchase,1.0,0 -26430231,"Thomas Was Alone",play,0.5,0 -26430231,"Half-Life Blue Shift",purchase,1.0,0 -26430231,"Half-Life Blue Shift",play,0.4,0 -26430231,"Element4l",purchase,1.0,0 -26430231,"Element4l",play,0.4,0 -26430231,"UberStrike",purchase,1.0,0 -26430231,"UberStrike",play,0.4,0 -26430231,"Survarium",purchase,1.0,0 -26430231,"Survarium",play,0.3,0 -26430231,"Star Trek Online",purchase,1.0,0 -26430231,"Star Trek Online",play,0.3,0 -26430231,"ACE - Arena Cyber Evolution",purchase,1.0,0 -26430231,"ACE - Arena Cyber Evolution",play,0.2,0 -26430231,"Tactical Intervention",purchase,1.0,0 -26430231,"Tactical Intervention",play,0.2,0 -26430231,"Half-Life",purchase,1.0,0 -26430231,"Half-Life",play,0.2,0 -26430231,"Infinite Crisis",purchase,1.0,0 -26430231,"Infinite Crisis",play,0.1,0 -26430231,"Dead Island Epidemic",purchase,1.0,0 -26430231,"Dead Island Epidemic",play,0.1,0 -26430231,"sZone-Online",purchase,1.0,0 -26430231,"sZone-Online",play,0.1,0 -26430231,"Rise of Incarnates",purchase,1.0,0 -26430231,"Rise of Incarnates",play,0.1,0 -26430231,"Gear Up",purchase,1.0,0 -26430231,"Gear Up",play,0.1,0 -26430231,"Block N Load",purchase,1.0,0 -26430231,"DCS World",purchase,1.0,0 -26430231,"Blacklight Retribution",purchase,1.0,0 -26430231,"WAKFU",purchase,1.0,0 -26430231,"Sins of a Dark Age",purchase,1.0,0 -26430231,"Cubic Castles",purchase,1.0,0 -26430231,"Red Crucible Firestorm",purchase,1.0,0 -26430231,"WARMODE",purchase,1.0,0 -26430231,"Team Fortress Classic",purchase,1.0,0 -26430231,"Unturned",purchase,1.0,0 -26430231,"Strife",purchase,1.0,0 -26430231,"Blender 2.76b",purchase,1.0,0 -26430231,"Robocraft",purchase,1.0,0 -26430231,"Quake Live",purchase,1.0,0 -26430231,"Games of Glory",purchase,1.0,0 -26430231,"Super Monday Night Combat",purchase,1.0,0 -26430231,"Run and Fire",purchase,1.0,0 -26430231,"Back to Dinosaur Island ",purchase,1.0,0 -26430231,"CroNix",purchase,1.0,0 -26430231,"Fishing Planet",purchase,1.0,0 -26430231,"Kung Fury",purchase,1.0,0 -26430231,"Marvel Heroes 2015",purchase,1.0,0 -26430231,"NEOTOKYO",purchase,1.0,0 -26430231,"Star Conflict",purchase,1.0,0 -26430231,"Trove",purchase,1.0,0 -26430231,"Xam",purchase,1.0,0 -233277671,"The Elder Scrolls V Skyrim",purchase,1.0,0 -233277671,"The Elder Scrolls V Skyrim",play,24.0,0 -233277671,"Garry's Mod",purchase,1.0,0 -233277671,"Garry's Mod",play,5.0,0 -103012052,"Team Fortress 2",purchase,1.0,0 -103012052,"Team Fortress 2",play,1.0,0 -147029458,"The Cursed Crusade",purchase,1.0,0 -147029458,"The Cursed Crusade",play,0.6,0 -205823360,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -205823360,"Tom Clancy's Ghost Recon Phantoms - EU",play,49.0,0 -205823360,"Football Superstars",purchase,1.0,0 -205823360,"Football Superstars",play,0.2,0 -34102593,"Counter-Strike Condition Zero",purchase,1.0,0 -34102593,"Counter-Strike Condition Zero",play,978.0,0 -34102593,"Counter-Strike Global Offensive",purchase,1.0,0 -34102593,"Counter-Strike Global Offensive",play,359.0,0 -34102593,"Counter-Strike",purchase,1.0,0 -34102593,"Counter-Strike",play,49.0,0 -34102593,"Titan Quest",purchase,1.0,0 -34102593,"Titan Quest",play,0.2,0 -34102593,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -34102593,"Deathmatch Classic",purchase,1.0,0 -34102593,"Day of Defeat",purchase,1.0,0 -34102593,"Ricochet",purchase,1.0,0 -34102593,"Titan Quest Immortal Throne",purchase,1.0,0 -34102593,"Warface",purchase,1.0,0 -284064476,"Unturned",purchase,1.0,0 -284064476,"Unturned",play,0.3,0 -254331853,"Dota 2",purchase,1.0,0 -254331853,"Dota 2",play,2.7,0 -254331853,"APB Reloaded",purchase,1.0,0 -252694471,"Counter-Strike Global Offensive",purchase,1.0,0 -252694471,"Counter-Strike Global Offensive",play,14.3,0 -29926116,"Race The WTCC Game",purchase,1.0,0 -284863484,"Dota 2",purchase,1.0,0 -284863484,"Dota 2",play,1.9,0 -224197206,"Unturned",purchase,1.0,0 -224197206,"Unturned",play,7.3,0 -224197206,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -28040133,"Counter-Strike",purchase,1.0,0 -28040133,"Counter-Strike",play,603.0,0 -28040133,"Counter-Strike Condition Zero",purchase,1.0,0 -28040133,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -293881991,"Dota 2",purchase,1.0,0 -293881991,"Dota 2",play,13.3,0 -36439985,"Day of Defeat Source",purchase,1.0,0 -36439985,"Day of Defeat Source",play,227.0,0 -36439985,"Team Fortress 2",purchase,1.0,0 -36439985,"Team Fortress 2",play,80.0,0 -36439985,"Counter-Strike Source",purchase,1.0,0 -36439985,"Counter-Strike Source",play,75.0,0 -36439985,"LIMBO",purchase,1.0,0 -36439985,"LIMBO",play,5.2,0 -36439985,"Half-Life 2 Episode Two",purchase,1.0,0 -36439985,"Half-Life 2 Episode Two",play,4.5,0 -36439985,"Magic The Gathering - Duels of the Planeswalkers",purchase,1.0,0 -36439985,"Magic The Gathering - Duels of the Planeswalkers",play,3.7,0 -36439985,"Half-Life 2",purchase,1.0,0 -36439985,"Half-Life 2",play,3.5,0 -36439985,"Orcs Must Die!",purchase,1.0,0 -36439985,"Orcs Must Die!",play,2.9,0 -36439985,"Alien Swarm",purchase,1.0,0 -36439985,"Alien Swarm",play,2.3,0 -36439985,"Bloody Good Time",purchase,1.0,0 -36439985,"Bloody Good Time",play,2.1,0 -36439985,"Counter-Strike Global Offensive",purchase,1.0,0 -36439985,"Counter-Strike Global Offensive",play,0.9,0 -36439985,"D.I.P.R.I.P. Warm Up",purchase,1.0,0 -36439985,"D.I.P.R.I.P. Warm Up",play,0.2,0 -36439985,"Dota 2",purchase,1.0,0 -36439985,"Dota 2",play,0.2,0 -36439985,"Half-Life 2 Deathmatch",purchase,1.0,0 -36439985,"Half-Life 2 Episode One",purchase,1.0,0 -36439985,"Half-Life 2 Lost Coast",purchase,1.0,0 -36439985,"Portal",purchase,1.0,0 -36439985,"Speedball 2 Tournament",purchase,1.0,0 -152861732,"Dota 2",purchase,1.0,0 -152861732,"Dota 2",play,485.0,0 -152861732,"Counter-Strike Global Offensive",purchase,1.0,0 -152861732,"Counter-Strike Global Offensive",play,165.0,0 -152861732,"Garry's Mod",purchase,1.0,0 -152861732,"Garry's Mod",play,129.0,0 -152861732,"Rust",purchase,1.0,0 -152861732,"Rust",play,49.0,0 -152861732,"Team Fortress 2",purchase,1.0,0 -152861732,"Team Fortress 2",play,16.2,0 -152861732,"No More Room in Hell",purchase,1.0,0 -152861732,"No More Room in Hell",play,15.8,0 -152861732,"Unturned",purchase,1.0,0 -152861732,"Unturned",play,4.4,0 -152861732,"Watchmen The End Is Nigh Part 2",purchase,1.0,0 -152861732,"Watchmen The End Is Nigh Part 2",play,2.8,0 -152861732,"Counter-Strike Source",purchase,1.0,0 -152861732,"Counter-Strike Source",play,1.7,0 -152861732,"Portal 2",purchase,1.0,0 -152861732,"Portal 2",play,1.5,0 -152861732,"Serious Sam 3 BFE",purchase,1.0,0 -152861732,"Serious Sam 3 BFE",play,0.9,0 -152861732,"Ace of Spades",purchase,1.0,0 -152861732,"Ace of Spades",play,0.5,0 -152861732,"Counter-Strike",purchase,1.0,0 -152861732,"Counter-Strike Condition Zero",purchase,1.0,0 -152861732,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -152861732,"Gotham City Impostors Free To Play",purchase,1.0,0 -152861732,"HAWKEN",purchase,1.0,0 -152861732,"Loadout",purchase,1.0,0 -152861732,"Panzar",purchase,1.0,0 -152861732,"Quake Live",purchase,1.0,0 -152861732,"Robocraft",purchase,1.0,0 -152861732,"Warframe",purchase,1.0,0 -28064589,"Counter-Strike Source",purchase,1.0,0 -28064589,"Counter-Strike Source",play,43.0,0 -28064589,"iBomber Defense Pacific",purchase,1.0,0 -28064589,"iBomber Defense Pacific",play,12.8,0 -28064589,"Day of Defeat Source",purchase,1.0,0 -28064589,"Day of Defeat Source",play,8.1,0 -28064589,"Company of Heroes",purchase,1.0,0 -28064589,"Company of Heroes",play,7.9,0 -28064589,"Company of Heroes Tales of Valor",purchase,1.0,0 -28064589,"Company of Heroes Tales of Valor",play,7.8,0 -28064589,"Left 4 Dead 2",purchase,1.0,0 -28064589,"Left 4 Dead 2",play,4.6,0 -28064589,"Far Cry 2",purchase,1.0,0 -28064589,"Far Cry 2",play,3.0,0 -28064589,"Half-Life 2 Deathmatch",purchase,1.0,0 -28064589,"Half-Life 2 Deathmatch",play,2.8,0 -28064589,"Dead Horde",purchase,1.0,0 -28064589,"Dead Horde",play,1.8,0 -28064589,"Half-Life 2 Lost Coast",purchase,1.0,0 -28064589,"Half-Life 2 Lost Coast",play,0.6,0 -28064589,"Company of Heroes Opposing Fronts",purchase,1.0,0 -28064589,"Company of Heroes Opposing Fronts",play,0.1,0 -28064589,"Flatout 3",purchase,1.0,0 -28064589,"iBomber Defense",purchase,1.0,0 -28064589,"Alpha Prime",purchase,1.0,0 -28064589,"Company of Heroes (New Steam Version)",purchase,1.0,0 -28064589,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -267053376,"DARK SOULS II",purchase,1.0,0 -267053376,"DARK SOULS II",play,188.0,0 -267053376,"Grand Theft Auto San Andreas",purchase,1.0,0 -267053376,"Grand Theft Auto San Andreas",play,49.0,0 -267053376,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -267053376,"Tom Clancy's Ghost Recon Phantoms - NA",play,2.2,0 -267053376,"Defiance",purchase,1.0,0 -267053376,"Defiance",play,2.0,0 -267053376,"Darksiders",purchase,1.0,0 -267053376,"Darksiders",play,1.3,0 -267053376,"Darksiders II",purchase,1.0,0 -267053376,"Darksiders II",play,0.3,0 -267053376,"Dota 2",purchase,1.0,0 -267053376,"Dota 2",play,0.2,0 -267053376,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -267053376,"Grand Theft Auto San Andreas",purchase,1.0,0 -113058136,"Team Fortress 2",purchase,1.0,0 -113058136,"Team Fortress 2",play,1.0,0 -71603645,"Empire Total War",purchase,1.0,0 -71603645,"Empire Total War",play,135.0,0 -71603645,"The Elder Scrolls V Skyrim",purchase,1.0,0 -71603645,"The Elder Scrolls V Skyrim",play,8.6,0 -71603645,"Risen",purchase,1.0,0 -71603645,"Risen",play,4.5,0 -71603645,"How to Survive",purchase,1.0,0 -71603645,"How to Survive",play,0.5,0 -71603645,"Myst Masterpiece Edition",purchase,1.0,0 -71603645,"Myst Masterpiece Edition",play,0.5,0 -71603645,"RAGE",purchase,1.0,0 -71603645,"RAGE",play,0.5,0 -71603645,"Eets",purchase,1.0,0 -71603645,"Port Royale 3",purchase,1.0,0 -71603645,"Riven",purchase,1.0,0 -71603645,"Sid Meier's Civilization V",purchase,1.0,0 -71603645,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -71603645,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -71603645,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -71603645,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -71603645,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -71603645,"Total War ROME II - Emperor Edition",purchase,1.0,0 -233865573,"Dota 2",purchase,1.0,0 -233865573,"Dota 2",play,0.9,0 -221257958,"Dota 2",purchase,1.0,0 -221257958,"Dota 2",play,23.0,0 -221257958,"GunZ 2 The Second Duel",purchase,1.0,0 -270169680,"Dota 2",purchase,1.0,0 -270169680,"Dota 2",play,0.7,0 -270169680,"Batla",purchase,1.0,0 -270169680,"Nosgoth",purchase,1.0,0 -270169680,"Unturned",purchase,1.0,0 -176736380,"Landmark",purchase,1.0,0 -176736380,"Landmark",play,0.6,0 -98463542,"Counter-Strike Global Offensive",purchase,1.0,0 -98463542,"Counter-Strike Global Offensive",play,220.0,0 -98463542,"FINAL FANTASY XIV A Realm Reborn",purchase,1.0,0 -98463542,"FINAL FANTASY XIV A Realm Reborn",play,92.0,0 -98463542,"Dota 2",purchase,1.0,0 -98463542,"Dota 2",play,55.0,0 -98463542,"Mortal Kombat X",purchase,1.0,0 -98463542,"Mortal Kombat X",play,40.0,0 -98463542,"The Witcher 3 Wild Hunt",purchase,1.0,0 -98463542,"The Witcher 3 Wild Hunt",play,17.9,0 -98463542,"FINAL FANTASY XIV Heavensward",purchase,1.0,0 -206155181,"Empire Total War",purchase,1.0,0 -206155181,"Empire Total War",play,18.9,0 -206155181,"Stronghold Crusader 2",purchase,1.0,0 -206155181,"Stronghold Crusader 2",play,2.8,0 -206155181,"Stronghold HD",purchase,1.0,0 -302916505,"Call of Duty World at War",purchase,1.0,0 -302916505,"Call of Duty World at War",play,31.0,0 -302916505,"Fishing Planet",purchase,1.0,0 -302916505,"Fishing Planet",play,1.5,0 -302916505,"Robocraft",purchase,1.0,0 -95273667,"Call of Duty Modern Warfare 3",purchase,1.0,0 -95273667,"Call of Duty Modern Warfare 3",play,11.9,0 -95273667,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -95273667,"Call of Duty Modern Warfare 3 - Multiplayer",play,0.4,0 -292936227,"Team Fortress 2",purchase,1.0,0 -292936227,"Team Fortress 2",play,8.4,0 -292936227,"Unturned",purchase,1.0,0 -253209919,"Unturned",purchase,1.0,0 -253209919,"Unturned",play,7.8,0 -180048039,"Dota 2",purchase,1.0,0 -180048039,"Dota 2",play,468.0,0 -18319108,"Counter-Strike Source",purchase,1.0,0 -18319108,"Counter-Strike Source",play,0.1,0 -18319108,"Half-Life 2",purchase,1.0,0 -18319108,"Half-Life 2 Deathmatch",purchase,1.0,0 -18319108,"Half-Life 2 Lost Coast",purchase,1.0,0 -18319108,"Half-Life Source",purchase,1.0,0 -18319108,"Half-Life Deathmatch Source",purchase,1.0,0 -62601134,"Metro 2033",purchase,1.0,0 -62601134,"Metro 2033",play,11.6,0 -62601134,"War Thunder",purchase,1.0,0 -128240584,"Team Fortress 2",purchase,1.0,0 -128240584,"Team Fortress 2",play,17.7,0 -128240584,"DC Universe Online",purchase,1.0,0 -128240584,"DC Universe Online",play,8.1,0 -204541576,"Dota 2",purchase,1.0,0 -204541576,"Dota 2",play,174.0,0 -204541576,"Heroes & Generals",purchase,1.0,0 -204541576,"Heroes & Generals",play,6.8,0 -204541576,"War Thunder",purchase,1.0,0 -204541576,"War Thunder",play,2.3,0 -204541576,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -204541576,"Tom Clancy's Ghost Recon Phantoms - EU",play,1.8,0 -204541576,"Robocraft",purchase,1.0,0 -204541576,"Robocraft",play,0.9,0 -204541576,"Counter-Strike Nexon Zombies",purchase,1.0,0 -204541576,"Counter-Strike Nexon Zombies",play,0.5,0 -204541576,"Galcon 2",purchase,1.0,0 -204541576,"Galcon 2",play,0.2,0 -204541576,"Everlasting Summer",purchase,1.0,0 -204541576,"Everlasting Summer",play,0.2,0 -84455820,"The Elder Scrolls V Skyrim",purchase,1.0,0 -84455820,"The Elder Scrolls V Skyrim",play,118.0,0 -84455820,"Terraria",purchase,1.0,0 -84455820,"Terraria",play,108.0,0 -84455820,"Pillars of Eternity",purchase,1.0,0 -84455820,"Pillars of Eternity",play,73.0,0 -84455820,"Borderlands The Pre-Sequel",purchase,1.0,0 -84455820,"Borderlands The Pre-Sequel",play,68.0,0 -84455820,"Warlock 2 the Exiled",purchase,1.0,0 -84455820,"Warlock 2 the Exiled",play,52.0,0 -84455820,"Renowned Explorers International Society",purchase,1.0,0 -84455820,"Renowned Explorers International Society",play,41.0,0 -84455820,"Starbound",purchase,1.0,0 -84455820,"Starbound",play,38.0,0 -84455820,"4 Elements",purchase,1.0,0 -84455820,"4 Elements",play,37.0,0 -84455820,"The Witcher Enhanced Edition",purchase,1.0,0 -84455820,"The Witcher Enhanced Edition",play,34.0,0 -84455820,"Star Wars Knights of the Old Republic",purchase,1.0,0 -84455820,"Star Wars Knights of the Old Republic",play,17.6,0 -84455820,"HuniePop",purchase,1.0,0 -84455820,"HuniePop",play,16.2,0 -84455820,"Torchlight II",purchase,1.0,0 -84455820,"Torchlight II",play,15.1,0 -84455820,"Recettear An Item Shop's Tale",purchase,1.0,0 -84455820,"Recettear An Item Shop's Tale",play,15.1,0 -84455820,"Dungeon Defenders",purchase,1.0,0 -84455820,"Dungeon Defenders",play,12.9,0 -84455820,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -84455820,"STAR WARS Knights of the Old Republic II The Sith Lords",play,9.9,0 -84455820,"RPG Maker VX Ace",purchase,1.0,0 -84455820,"RPG Maker VX Ace",play,9.8,0 -84455820,"Peggle Deluxe",purchase,1.0,0 -84455820,"Peggle Deluxe",play,9.6,0 -84455820,"Space Pirates and Zombies",purchase,1.0,0 -84455820,"Space Pirates and Zombies",play,9.0,0 -84455820,"The Wolf Among Us",purchase,1.0,0 -84455820,"The Wolf Among Us",play,8.6,0 -84455820,"NEO Scavenger",purchase,1.0,0 -84455820,"NEO Scavenger",play,8.0,0 -84455820,"Endless Space",purchase,1.0,0 -84455820,"Endless Space",play,7.1,0 -84455820,"Xenonauts",purchase,1.0,0 -84455820,"Xenonauts",play,7.0,0 -84455820,"State of Decay",purchase,1.0,0 -84455820,"State of Decay",play,6.9,0 -84455820,"Always Sometimes Monsters",purchase,1.0,0 -84455820,"Always Sometimes Monsters",play,6.7,0 -84455820,"XCOM Enemy Unknown",purchase,1.0,0 -84455820,"XCOM Enemy Unknown",play,6.7,0 -84455820,"Mark of the Ninja",purchase,1.0,0 -84455820,"Mark of the Ninja",play,6.3,0 -84455820,"Anno 2070",purchase,1.0,0 -84455820,"Anno 2070",play,5.7,0 -84455820,"Redshirt",purchase,1.0,0 -84455820,"Redshirt",play,5.3,0 -84455820,"Knights of Pen and Paper +1",purchase,1.0,0 -84455820,"Knights of Pen and Paper +1",play,5.2,0 -84455820,"Reus",purchase,1.0,0 -84455820,"Reus",play,4.9,0 -84455820,"Prison Architect",purchase,1.0,0 -84455820,"Prison Architect",play,4.8,0 -84455820,"Shadowrun Returns",purchase,1.0,0 -84455820,"Shadowrun Returns",play,4.7,0 -84455820,"Team Fortress 2",purchase,1.0,0 -84455820,"Team Fortress 2",play,4.4,0 -84455820,"Democracy 3",purchase,1.0,0 -84455820,"Democracy 3",play,4.4,0 -84455820,"Puzzle Quest",purchase,1.0,0 -84455820,"Puzzle Quest",play,4.2,0 -84455820,"Deponia",purchase,1.0,0 -84455820,"Deponia",play,4.0,0 -84455820,"Agarest Zero",purchase,1.0,0 -84455820,"Agarest Zero",play,3.8,0 -84455820,"Darkest Dungeon",purchase,1.0,0 -84455820,"Darkest Dungeon",play,3.8,0 -84455820,"Worms Revolution",purchase,1.0,0 -84455820,"Worms Revolution",play,3.7,0 -84455820,"Zafehouse Diaries",purchase,1.0,0 -84455820,"Zafehouse Diaries",play,3.6,0 -84455820,"Evil Genius",purchase,1.0,0 -84455820,"Evil Genius",play,3.6,0 -84455820,"Crusader Kings II",purchase,1.0,0 -84455820,"Crusader Kings II",play,3.4,0 -84455820,"Vertical Drop Heroes HD",purchase,1.0,0 -84455820,"Vertical Drop Heroes HD",play,3.4,0 -84455820,"Five Nights at Freddy's",purchase,1.0,0 -84455820,"Five Nights at Freddy's",play,2.6,0 -84455820,"Sid Meier's Pirates!",purchase,1.0,0 -84455820,"Sid Meier's Pirates!",play,2.5,0 -84455820,"CastleStorm",purchase,1.0,0 -84455820,"CastleStorm",play,2.5,0 -84455820,"Plague Inc Evolved",purchase,1.0,0 -84455820,"Plague Inc Evolved",play,2.5,0 -84455820,"Nation Red",purchase,1.0,0 -84455820,"Nation Red",play,2.5,0 -84455820,"Rebel Galaxy",purchase,1.0,0 -84455820,"Rebel Galaxy",play,1.8,0 -84455820,"Warframe",purchase,1.0,0 -84455820,"Warframe",play,1.5,0 -84455820,"Noir Syndrome",purchase,1.0,0 -84455820,"Noir Syndrome",play,1.5,0 -84455820,"Gone Home",purchase,1.0,0 -84455820,"Gone Home",play,1.5,0 -84455820,"Door Kickers",purchase,1.0,0 -84455820,"Door Kickers",play,1.5,0 -84455820,"Universe Sandbox",purchase,1.0,0 -84455820,"Universe Sandbox",play,1.4,0 -84455820,"Divinity Dragon Commander",purchase,1.0,0 -84455820,"Divinity Dragon Commander",play,1.2,0 -84455820,"Skulls of the Shogun",purchase,1.0,0 -84455820,"Skulls of the Shogun",play,1.1,0 -84455820,"DUNGEONS - Steam Special Edition",purchase,1.0,0 -84455820,"DUNGEONS - Steam Special Edition",play,1.1,0 -84455820,"Path of Exile",purchase,1.0,0 -84455820,"Path of Exile",play,1.1,0 -84455820,"Left 4 Dead 2",purchase,1.0,0 -84455820,"Left 4 Dead 2",play,1.0,0 -84455820,"This War of Mine",purchase,1.0,0 -84455820,"This War of Mine",play,0.8,0 -84455820,"Cosmonautica",purchase,1.0,0 -84455820,"Cosmonautica",play,0.7,0 -84455820,"Sengoku",purchase,1.0,0 -84455820,"Sengoku",play,0.7,0 -84455820,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -84455820,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.6,0 -84455820,"Mabinogi",purchase,1.0,0 -84455820,"Mabinogi",play,0.6,0 -84455820,"Shattered Planet",purchase,1.0,0 -84455820,"Shattered Planet",play,0.6,0 -84455820,"Dungeons of Dredmor",purchase,1.0,0 -84455820,"Dungeons of Dredmor",play,0.5,0 -84455820,"Worms Ultimate Mayhem",purchase,1.0,0 -84455820,"Worms Ultimate Mayhem",play,0.5,0 -84455820,"Unholy Heights",purchase,1.0,0 -84455820,"Unholy Heights",play,0.5,0 -84455820,"Sunless Sea",purchase,1.0,0 -84455820,"Sunless Sea",play,0.4,0 -84455820,"Pixel Piracy",purchase,1.0,0 -84455820,"Pixel Piracy",play,0.4,0 -84455820,"Ultra Street Fighter IV",purchase,1.0,0 -84455820,"Ultra Street Fighter IV",play,0.4,0 -84455820,"Reverse Crawl",purchase,1.0,0 -84455820,"Reverse Crawl",play,0.4,0 -84455820,"Stronghold Kingdoms",purchase,1.0,0 -84455820,"Stronghold Kingdoms",play,0.4,0 -84455820,"Q.U.B.E Director's Cut",purchase,1.0,0 -84455820,"Q.U.B.E Director's Cut",play,0.3,0 -84455820,"The Book of Unwritten Tales",purchase,1.0,0 -84455820,"The Book of Unwritten Tales",play,0.3,0 -84455820,"Puzzle Pirates",purchase,1.0,0 -84455820,"Puzzle Pirates",play,0.2,0 -84455820,"AdVenture Capitalist",purchase,1.0,0 -84455820,"AdVenture Capitalist",play,0.2,0 -84455820,"Frozen Synapse Prime",purchase,1.0,0 -84455820,"Frozen Synapse Prime",play,0.2,0 -84455820,"Knock-knock",purchase,1.0,0 -84455820,"Knock-knock",play,0.2,0 -84455820,"Nimble Quest",purchase,1.0,0 -84455820,"Nimble Quest",play,0.2,0 -84455820,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -84455820,"Vampire The Masquerade - Bloodlines",play,0.1,0 -84455820,"Relic Hunters Zero",purchase,1.0,0 -84455820,"Relic Hunters Zero",play,0.1,0 -84455820,"Age of Booty",purchase,1.0,0 -84455820,"Our Darker Purpose",purchase,1.0,0 -84455820,"Planetary Annihilation",purchase,1.0,0 -84455820,"Abyss Odyssey",purchase,1.0,0 -84455820,"Betrayer",purchase,1.0,0 -84455820,"Blackguards",purchase,1.0,0 -84455820,"Blackguards 2",purchase,1.0,0 -84455820,"Bloodsports.TV",purchase,1.0,0 -84455820,"Bloodsports.TV - Blood Brawl",purchase,1.0,0 -84455820,"Brtal Legend",purchase,1.0,0 -84455820,"Chaos on Deponia",purchase,1.0,0 -84455820,"Contagion",purchase,1.0,0 -84455820,"Cosmonautica - Soundtrack",purchase,1.0,0 -84455820,"Democracy 3 Clones and Drones",purchase,1.0,0 -84455820,"Democracy 3 Extremism",purchase,1.0,0 -84455820,"Democracy 3 Extremism Linux",purchase,1.0,0 -84455820,"Democracy 3 Extremism Mac",purchase,1.0,0 -84455820,"Democracy 3 Social Engineering",purchase,1.0,0 -84455820,"Democracy 3 Social Engineering Linux",purchase,1.0,0 -84455820,"Democracy 3 Social Engineering Mac",purchase,1.0,0 -84455820,"Door Kickers Soundtrack",purchase,1.0,0 -84455820,"Dragon Age Origins",purchase,1.0,0 -84455820,"DUNGEONS - The Dark Lord (Steam Special Edition)",purchase,1.0,0 -84455820,"Gang Beasts",purchase,1.0,0 -84455820,"Ghost Master",purchase,1.0,0 -84455820,"Goodbye Deponia",purchase,1.0,0 -84455820,"Home",purchase,1.0,0 -84455820,"Insurgency",purchase,1.0,0 -84455820,"Mass Effect 2",purchase,1.0,0 -84455820,"Men of War Assault Squad",purchase,1.0,0 -84455820,"Psychonauts",purchase,1.0,0 -84455820,"Psychonauts Demo",purchase,1.0,0 -84455820,"ROSE Online",purchase,1.0,0 -84455820,"Sigils of Elohim",purchase,1.0,0 -84455820,"Sir, You Are Being Hunted",purchase,1.0,0 -84455820,"Skullgirls",purchase,1.0,0 -84455820,"Skyborn",purchase,1.0,0 -84455820,"Starbound - Unstable",purchase,1.0,0 -204813749,"Dota 2",purchase,1.0,0 -204813749,"Dota 2",play,3.6,0 -39663272,"Half-Life 2 Deathmatch",purchase,1.0,0 -39663272,"Half-Life 2 Lost Coast",purchase,1.0,0 -258834833,"Team Fortress 2",purchase,1.0,0 -258834833,"Team Fortress 2",play,0.8,0 -286637360,"Unturned",purchase,1.0,0 -286637360,"Unturned",play,2.9,0 -286637360,"Brick-Force",purchase,1.0,0 -286637360,"Neverwinter",purchase,1.0,0 -286637360,"RaceRoom Racing Experience ",purchase,1.0,0 -286637360,"Robocraft",purchase,1.0,0 -286637360,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -286637360,"WAKFU",purchase,1.0,0 -286637360,"Warframe",purchase,1.0,0 -249401703,"Unturned",purchase,1.0,0 -189858084,"Darksiders II",purchase,1.0,0 -189858084,"Darksiders II",play,23.0,0 -189858084,"Far Cry 3",purchase,1.0,0 -189858084,"Far Cry 3",play,21.0,0 -189858084,"Darksiders",purchase,1.0,0 -189858084,"Darksiders",play,21.0,0 -189858084,"Far Cry 4",purchase,1.0,0 -189858084,"Far Cry 4",play,20.0,0 -189858084,"Tomb Raider",purchase,1.0,0 -189858084,"Tomb Raider",play,13.3,0 -189858084,"Grand Theft Auto V",purchase,1.0,0 -189858084,"Grand Theft Auto V",play,11.4,0 -189858084,"Half-Life Source",purchase,1.0,0 -189858084,"Half-Life Source",play,10.5,0 -189858084,"Call of Duty Ghosts",purchase,1.0,0 -189858084,"Call of Duty Ghosts",play,6.1,0 -189858084,"DRAGON BALL XENOVERSE",purchase,1.0,0 -189858084,"DRAGON BALL XENOVERSE",play,3.6,0 -189858084,"Sleeping Dogs Definitive Edition",purchase,1.0,0 -189858084,"Sleeping Dogs Definitive Edition",play,3.3,0 -189858084,"Euro Truck Simulator 2",purchase,1.0,0 -189858084,"Euro Truck Simulator 2",play,3.1,0 -189858084,"Half-Life 2",purchase,1.0,0 -189858084,"Half-Life 2",play,2.6,0 -189858084,"Mortal Kombat X",purchase,1.0,0 -189858084,"Mortal Kombat X",play,2.4,0 -189858084,"Counter-Strike Global Offensive",purchase,1.0,0 -189858084,"Counter-Strike Global Offensive",play,2.2,0 -189858084,"RaiderZ",purchase,1.0,0 -189858084,"RaiderZ",play,1.9,0 -189858084,"South Park The Stick of Truth",purchase,1.0,0 -189858084,"South Park The Stick of Truth",play,1.8,0 -189858084,"Left 4 Dead 2",purchase,1.0,0 -189858084,"Left 4 Dead 2",play,1.7,0 -189858084,"Portal",purchase,1.0,0 -189858084,"Portal",play,1.7,0 -189858084,"Wolfenstein The New Order",purchase,1.0,0 -189858084,"Wolfenstein The New Order",play,1.5,0 -189858084,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -189858084,"METAL GEAR RISING REVENGEANCE",play,1.3,0 -189858084,"Scribblenauts Unmasked",purchase,1.0,0 -189858084,"Scribblenauts Unmasked",play,1.1,0 -189858084,"Path of Exile",purchase,1.0,0 -189858084,"Path of Exile",play,1.1,0 -189858084,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -189858084,"Call of Duty Ghosts - Multiplayer",play,1.1,0 -189858084,"Mortal Kombat Komplete Edition",purchase,1.0,0 -189858084,"Mortal Kombat Komplete Edition",play,0.9,0 -189858084,"The Mighty Quest For Epic Loot",purchase,1.0,0 -189858084,"The Mighty Quest For Epic Loot",play,0.8,0 -189858084,"RIFT",purchase,1.0,0 -189858084,"RIFT",play,0.7,0 -189858084,"Grand Theft Auto IV",purchase,1.0,0 -189858084,"Grand Theft Auto IV",play,0.6,0 -189858084,"GRID Autosport",purchase,1.0,0 -189858084,"GRID Autosport",play,0.6,0 -189858084,"Watch_Dogs",purchase,1.0,0 -189858084,"Watch_Dogs",play,0.5,0 -189858084,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -189858084,"Kingdoms of Amalur Reckoning",play,0.5,0 -189858084,"Far Cry",purchase,1.0,0 -189858084,"Far Cry",play,0.5,0 -189858084,"Archeblade",purchase,1.0,0 -189858084,"Archeblade",play,0.4,0 -189858084,"Far Cry 2",purchase,1.0,0 -189858084,"Far Cry 2",play,0.4,0 -189858084,"Far Cry 3 Blood Dragon",purchase,1.0,0 -189858084,"Far Cry 3 Blood Dragon",play,0.4,0 -189858084,"Alone in the Dark",purchase,1.0,0 -189858084,"Alone in the Dark",play,0.4,0 -189858084,"Dragon Nest Europe",purchase,1.0,0 -189858084,"Dragon Nest Europe",play,0.4,0 -189858084,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -189858084,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.3,0 -189858084,"Marvel Heroes 2015",purchase,1.0,0 -189858084,"Marvel Heroes 2015",play,0.3,0 -189858084,"Metro 2033",purchase,1.0,0 -189858084,"Metro 2033",play,0.2,0 -189858084,"DC Universe Online",purchase,1.0,0 -189858084,"DC Universe Online",play,0.2,0 -189858084,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -189858084,"Burnout Paradise The Ultimate Box",play,0.2,0 -189858084,"No More Room in Hell",purchase,1.0,0 -189858084,"No More Room in Hell",play,0.2,0 -189858084,"Savant - Ascent",purchase,1.0,0 -189858084,"Savant - Ascent",play,0.1,0 -189858084,"Brtal Legend",purchase,1.0,0 -189858084,"Brtal Legend",play,0.1,0 -189858084,"Left 4 Dead",purchase,1.0,0 -189858084,"Left 4 Dead",play,0.1,0 -189858084,"Counter-Strike",purchase,1.0,0 -189858084,"Counter-Strike",play,0.1,0 -189858084,"Rayman Legends",purchase,1.0,0 -189858084,"Rayman Legends",play,0.1,0 -189858084,"The Witcher Enhanced Edition",purchase,1.0,0 -189858084,"The Witcher Enhanced Edition",play,0.1,0 -189858084,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -189858084,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -189858084,"Counter-Strike Condition Zero",purchase,1.0,0 -189858084,"Portal 2",purchase,1.0,0 -189858084,"Half-Life 2 Lost Coast",purchase,1.0,0 -189858084,"Counter-Strike Source",purchase,1.0,0 -189858084,"Grand Theft Auto San Andreas",purchase,1.0,0 -189858084,"F.E.A.R. 3",purchase,1.0,0 -189858084,"Half-Life 2 Deathmatch",purchase,1.0,0 -189858084,"Day of Defeat Source",purchase,1.0,0 -189858084,"Half-Life 2 Episode One",purchase,1.0,0 -189858084,"F.E.A.R.",purchase,1.0,0 -189858084,"Ricochet",purchase,1.0,0 -189858084,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -189858084,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -189858084,"Chaos Domain",purchase,1.0,0 -189858084,"Divine Souls",purchase,1.0,0 -189858084,"Grand Theft Auto III",purchase,1.0,0 -189858084,"Team Fortress Classic",purchase,1.0,0 -189858084,"Grand Theft Auto Vice City",purchase,1.0,0 -189858084,"Ragnarok Online 2",purchase,1.0,0 -189858084,"Half-Life Blue Shift",purchase,1.0,0 -189858084,"Half-Life Deathmatch Source",purchase,1.0,0 -189858084,"Deathmatch Classic",purchase,1.0,0 -189858084,"Half-Life",purchase,1.0,0 -189858084,"Half-Life 2 Episode Two",purchase,1.0,0 -189858084,"Day of Defeat",purchase,1.0,0 -189858084,"Aura Kingdom",purchase,1.0,0 -189858084,"Darksiders II Deathinitive Edition",purchase,1.0,0 -189858084,"Darksiders II Soundtrack",purchase,1.0,0 -189858084,"Darksiders Soundtrack",purchase,1.0,0 -189858084,"Dead Island",purchase,1.0,0 -189858084,"Dead Island Riptide",purchase,1.0,0 -189858084,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -189858084,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -189858084,"F.E.A.R. Extraction Point",purchase,1.0,0 -189858084,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -189858084,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -189858084,"Grand Theft Auto San Andreas",purchase,1.0,0 -189858084,"Grand Theft Auto Vice City",purchase,1.0,0 -189858084,"Grand Theft Auto III",purchase,1.0,0 -189858084,"Half-Life Opposing Force",purchase,1.0,0 -189858084,"South Park The Stick of Truth - Super Samurai Spaceman Pack",purchase,1.0,0 -189858084,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -189858084,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -199535718,"Dota 2",purchase,1.0,0 -199535718,"Dota 2",play,895.0,0 -216396749,"Transformice",purchase,1.0,0 -216396749,"Transformice",play,474.0,0 -216396749,"Blacklight Retribution",purchase,1.0,0 -216396749,"Blacklight Retribution",play,17.4,0 -216396749,"PlanetSide 2",purchase,1.0,0 -216396749,"PlanetSide 2",play,4.3,0 -216396749,"HAWKEN",purchase,1.0,0 -216396749,"HAWKEN",play,3.7,0 -109475164,"Spiral Knights",purchase,1.0,0 -109475164,"Spiral Knights",play,1592.0,0 -150396347,"Dota 2",purchase,1.0,0 -150396347,"Dota 2",play,3.7,0 -263516648,"Team Fortress 2",purchase,1.0,0 -263516648,"Team Fortress 2",play,10.6,0 -200933876,"Team Fortress 2",purchase,1.0,0 -200933876,"Team Fortress 2",play,0.2,0 -176682744,"NBA 2K14",purchase,1.0,0 -176682744,"NBA 2K14",play,25.0,0 -32749624,"Counter-Strike",purchase,1.0,0 -32749624,"Counter-Strike",play,4814.0,0 -32749624,"Counter-Strike Global Offensive",purchase,1.0,0 -32749624,"Counter-Strike Global Offensive",play,117.0,0 -32749624,"Garry's Mod",purchase,1.0,0 -32749624,"Garry's Mod",play,4.0,0 -32749624,"H1Z1",purchase,1.0,0 -32749624,"H1Z1",play,1.8,0 -32749624,"Dota 2",purchase,1.0,0 -32749624,"Dota 2",play,0.5,0 -32749624,"Amnesia The Dark Descent",purchase,1.0,0 -32749624,"Wooden Floor",purchase,1.0,0 -32749624,"Counter-Strike Condition Zero",purchase,1.0,0 -32749624,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -32749624,"Crystals of Time",purchase,1.0,0 -32749624,"Earth 2160",purchase,1.0,0 -32749624,"Gorky 17",purchase,1.0,0 -32749624,"H1Z1 Test Server",purchase,1.0,0 -32749624,"Heli Heroes",purchase,1.0,0 -32749624,"Heroes & Generals",purchase,1.0,0 -32749624,"Hunting Unlimited 2010",purchase,1.0,0 -32749624,"Jack Orlando Director's Cut",purchase,1.0,0 -32749624,"Knights and Merchants",purchase,1.0,0 -32749624,"Lilly and Sasha Guardian Angels",purchase,1.0,0 -32749624,"Path of Exile",purchase,1.0,0 -32749624,"Planets Under Attack",purchase,1.0,0 -32749624,"Speed Kills",purchase,1.0,0 -32749624,"Stranded In Time",purchase,1.0,0 -32749624,"Two Worlds Epic Edition",purchase,1.0,0 -32749624,"War in a Box Paper Tanks",purchase,1.0,0 -32749624,"World War II Panzer Claws",purchase,1.0,0 -199850143,"Loadout",purchase,1.0,0 -60424237,"Counter-Strike",purchase,1.0,0 -60424237,"Counter-Strike",play,5.1,0 -60424237,"Counter-Strike Condition Zero",purchase,1.0,0 -60424237,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -60424237,"Day of Defeat",purchase,1.0,0 -60424237,"Deathmatch Classic",purchase,1.0,0 -60424237,"Ricochet",purchase,1.0,0 -27275017,"Half-Life 2 Deathmatch",purchase,1.0,0 -27275017,"Half-Life 2 Lost Coast",purchase,1.0,0 -180622295,"Dota 2",purchase,1.0,0 -180622295,"Dota 2",play,33.0,0 -210172601,"HuniePop",purchase,1.0,0 -210172601,"HuniePop",play,37.0,0 -210172601,"Town of Salem",purchase,1.0,0 -210172601,"Town of Salem",play,15.1,0 -210172601,"RollerCoaster Tycoon Deluxe",purchase,1.0,0 -210172601,"RollerCoaster Tycoon Deluxe",play,9.3,0 -210172601,"AdVenture Capitalist",purchase,1.0,0 -210172601,"AdVenture Capitalist",play,3.0,0 -210172601,"Sakura Clicker",purchase,1.0,0 -210172601,"Sakura Clicker",play,2.0,0 -210172601,"Five Nights at Freddy's",purchase,1.0,0 -210172601,"Five Nights at Freddy's",play,1.1,0 -210172601,"Voices from the Sea",purchase,1.0,0 -210172601,"Voices from the Sea",play,1.0,0 -210172601,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -210172601,"Viscera Cleanup Detail Santa's Rampage",play,0.8,0 -210172601,"Turbo Dismount",purchase,1.0,0 -210172601,"Turbo Dismount",play,0.5,0 -210172601,"Spooky's House of Jump Scares",purchase,1.0,0 -210172601,"Spooky's House of Jump Scares",play,0.5,0 -210172601,"Emily is Away",purchase,1.0,0 -210172601,"Emily is Away",play,0.3,0 -210172601,"Let the Cat In",purchase,1.0,0 -210172601,"Let the Cat In",play,0.2,0 -210172601,"Genesis Online",purchase,1.0,0 -210172601,"Genesis Online",play,0.2,0 -210172601,"Happy Wars",purchase,1.0,0 -210172601,"The Old Tree",purchase,1.0,0 -210172601,"BLOCKADE 3D",purchase,1.0,0 -210172601,"Don't Starve",purchase,1.0,0 -210172601,"Dream Of Mirror Online",purchase,1.0,0 -210172601,"Shadow Hunter",purchase,1.0,0 -80905023,"Empire Total War",purchase,1.0,0 -80905023,"Empire Total War",play,0.7,0 -148576413,"Dota 2",purchase,1.0,0 -148576413,"Dota 2",play,146.0,0 -4986667,"Counter-Strike",purchase,1.0,0 -4986667,"Counter-Strike",play,72.0,0 -4986667,"Day of Defeat",purchase,1.0,0 -4986667,"Deathmatch Classic",purchase,1.0,0 -4986667,"Half-Life",purchase,1.0,0 -4986667,"Half-Life Blue Shift",purchase,1.0,0 -4986667,"Half-Life Opposing Force",purchase,1.0,0 -4986667,"Ricochet",purchase,1.0,0 -4986667,"Team Fortress Classic",purchase,1.0,0 -237789130,"Unturned",purchase,1.0,0 -202017729,"Dota 2",purchase,1.0,0 -202017729,"Dota 2",play,1.1,0 -234770287,"Dota 2",purchase,1.0,0 -234770287,"Dota 2",play,48.0,0 -56957512,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -56957512,"Call of Duty Modern Warfare 2 - Multiplayer",play,648.0,0 -56957512,"Call of Duty Modern Warfare 2",purchase,1.0,0 -56957512,"Call of Duty Modern Warfare 2",play,32.0,0 -56957512,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -56957512,"Call of Duty Black Ops - Multiplayer",play,21.0,0 -56957512,"Call of Duty Black Ops",purchase,1.0,0 -56957512,"Call of Duty Black Ops",play,14.1,0 -56957512,"Call of Duty Modern Warfare 2 - Resurgence Pack",purchase,1.0,0 -56957512,"Call of Duty Modern Warfare 2 Stimulus Package",purchase,1.0,0 -55906627,"Team Fortress 2",purchase,1.0,0 -55906627,"Team Fortress 2",play,494.0,0 -190945239,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -190945239,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.1,0 -190945239,"Tom Clancy's Ghost Recon Phantoms - EU The Thrill of the Surprise",purchase,1.0,0 -73187712,"Train Simulator",purchase,1.0,0 -73187712,"Train Simulator",play,22.0,0 -73187712,"Test Drive Unlimited 2",purchase,1.0,0 -73187712,"Test Drive Unlimited 2",play,9.7,0 -73187712,"DiRT 3",purchase,1.0,0 -73187712,"DiRT 3",play,5.8,0 -73187712,"DiRT 3 Complete Edition",purchase,1.0,0 -244139284,"Heroes & Generals",purchase,1.0,0 -244139284,"Quake Live",purchase,1.0,0 -207590964,"Ragnarok Online 2",purchase,1.0,0 -207590964,"Ragnarok Online 2",play,3.2,0 -93644606,"Garry's Mod",purchase,1.0,0 -93644606,"Garry's Mod",play,170.0,0 -93644606,"Elsword",purchase,1.0,0 -93644606,"Elsword",play,101.0,0 -93644606,"Portal 2",purchase,1.0,0 -93644606,"Portal 2",play,52.0,0 -93644606,"Team Fortress 2",purchase,1.0,0 -93644606,"Team Fortress 2",play,41.0,0 -93644606,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -93644606,"METAL GEAR RISING REVENGEANCE",play,38.0,0 -93644606,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -93644606,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,23.0,0 -93644606,"Rogue Legacy",purchase,1.0,0 -93644606,"Rogue Legacy",play,19.5,0 -93644606,"Devil May Cry 4",purchase,1.0,0 -93644606,"Devil May Cry 4",play,19.5,0 -93644606,"Cave Story+",purchase,1.0,0 -93644606,"Cave Story+",play,18.4,0 -93644606,"Borderlands 2",purchase,1.0,0 -93644606,"Borderlands 2",play,16.6,0 -93644606,"Insurgency Modern Infantry Combat",purchase,1.0,0 -93644606,"Insurgency Modern Infantry Combat",play,15.7,0 -93644606,"Dragon Nest",purchase,1.0,0 -93644606,"Dragon Nest",play,15.2,0 -93644606,"Left 4 Dead 2",purchase,1.0,0 -93644606,"Left 4 Dead 2",play,15.1,0 -93644606,"Skullgirls Endless Beta",purchase,1.0,0 -93644606,"Skullgirls Endless Beta",play,13.7,0 -93644606,"Devil May Cry 3 Special Edition",purchase,1.0,0 -93644606,"Devil May Cry 3 Special Edition",play,10.5,0 -93644606,"No More Room in Hell",purchase,1.0,0 -93644606,"No More Room in Hell",play,9.3,0 -93644606,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -93644606,"METAL GEAR SOLID V GROUND ZEROES",play,9.2,0 -93644606,"Blacklight Retribution",purchase,1.0,0 -93644606,"Blacklight Retribution",play,8.4,0 -93644606,"GameMaker Studio",purchase,1.0,0 -93644606,"GameMaker Studio",play,8.3,0 -93644606,"A.R.E.S.",purchase,1.0,0 -93644606,"A.R.E.S.",play,7.1,0 -93644606,"Lost Planet 2",purchase,1.0,0 -93644606,"Lost Planet 2",play,6.9,0 -93644606,"BattleBlock Theater",purchase,1.0,0 -93644606,"BattleBlock Theater",play,6.8,0 -93644606,"Skullgirls",purchase,1.0,0 -93644606,"Skullgirls",play,6.6,0 -93644606,"Costume Quest",purchase,1.0,0 -93644606,"Costume Quest",play,6.4,0 -93644606,"Warframe",purchase,1.0,0 -93644606,"Warframe",play,5.6,0 -93644606,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -93644606,"Call of Duty Black Ops II - Multiplayer",play,5.5,0 -93644606,"Don't Starve Together Beta",purchase,1.0,0 -93644606,"Don't Starve Together Beta",play,4.7,0 -93644606,"100% Orange Juice",purchase,1.0,0 -93644606,"100% Orange Juice",play,3.1,0 -93644606,"Unturned",purchase,1.0,0 -93644606,"Unturned",play,2.6,0 -93644606,"Sakura Clicker",purchase,1.0,0 -93644606,"Sakura Clicker",play,2.4,0 -93644606,"You Have to Win the Game",purchase,1.0,0 -93644606,"You Have to Win the Game",play,2.1,0 -93644606,"GestureWorks Gameplay",purchase,1.0,0 -93644606,"GestureWorks Gameplay",play,2.0,0 -93644606,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -93644606,"Boring Man - Online Tactical Stickman Combat",play,2.0,0 -93644606,"Goat Simulator",purchase,1.0,0 -93644606,"Goat Simulator",play,1.9,0 -93644606,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -93644606,"Call of Duty Black Ops II - Zombies",play,1.5,0 -93644606,"ArcheAge",purchase,1.0,0 -93644606,"ArcheAge",play,1.3,0 -93644606,"NEOTOKYO",purchase,1.0,0 -93644606,"NEOTOKYO",play,1.2,0 -93644606,"APB Reloaded",purchase,1.0,0 -93644606,"APB Reloaded",play,1.2,0 -93644606,"Only If",purchase,1.0,0 -93644606,"Only If",play,1.1,0 -93644606,"Tribes Ascend",purchase,1.0,0 -93644606,"Tribes Ascend",play,1.1,0 -93644606,"Codename CURE",purchase,1.0,0 -93644606,"Codename CURE",play,0.6,0 -93644606,"Counter-Strike Nexon Zombies",purchase,1.0,0 -93644606,"Counter-Strike Nexon Zombies",play,0.6,0 -93644606,"Relic Hunters Zero",purchase,1.0,0 -93644606,"Relic Hunters Zero",play,0.5,0 -93644606,"Vindictus",purchase,1.0,0 -93644606,"Vindictus",play,0.4,0 -93644606,"Rise of Incarnates",purchase,1.0,0 -93644606,"Rise of Incarnates",play,0.4,0 -93644606,"Jigoku Kisetsukan Sense of the Seasons",purchase,1.0,0 -93644606,"Jigoku Kisetsukan Sense of the Seasons",play,0.4,0 -93644606,"Anarchy Arcade",purchase,1.0,0 -93644606,"Anarchy Arcade",play,0.4,0 -93644606,"Cry of Fear",purchase,1.0,0 -93644606,"Cry of Fear",play,0.4,0 -93644606,"Dead Island Epidemic",purchase,1.0,0 -93644606,"Dead Island Epidemic",play,0.2,0 -93644606,"Dirty Bomb",purchase,1.0,0 -93644606,"Dirty Bomb",play,0.2,0 -93644606,"Trove",purchase,1.0,0 -93644606,"ShareX",purchase,1.0,0 -93644606,"Call of Duty Black Ops II",purchase,1.0,0 -93644606,"F.E.A.R. Online",purchase,1.0,0 -7507458,"Counter-Strike",purchase,1.0,0 -7507458,"Day of Defeat",purchase,1.0,0 -7507458,"Deathmatch Classic",purchase,1.0,0 -7507458,"Half-Life",purchase,1.0,0 -7507458,"Half-Life Blue Shift",purchase,1.0,0 -7507458,"Half-Life Opposing Force",purchase,1.0,0 -7507458,"Ricochet",purchase,1.0,0 -7507458,"Team Fortress Classic",purchase,1.0,0 -234108053,"Counter-Strike Global Offensive",purchase,1.0,0 -234108053,"Counter-Strike Global Offensive",play,65.0,0 -234108053,"Garry's Mod",purchase,1.0,0 -234108053,"Garry's Mod",play,29.0,0 -234108053,"Counter-Strike Source",purchase,1.0,0 -234108053,"Counter-Strike Source",play,19.1,0 -234108053,"Counter-Strike",purchase,1.0,0 -234108053,"Counter-Strike",play,9.6,0 -234108053,"Left 4 Dead 2",purchase,1.0,0 -234108053,"Left 4 Dead 2",play,4.9,0 -234108053,"Portal 2",purchase,1.0,0 -234108053,"Portal 2",play,3.8,0 -234108053,"Left 4 Dead",purchase,1.0,0 -234108053,"Left 4 Dead",play,2.4,0 -234108053,"Portal",purchase,1.0,0 -234108053,"Portal",play,2.2,0 -234108053,"Polarity",purchase,1.0,0 -234108053,"Polarity",play,1.9,0 -234108053,"Day of Defeat Source",purchase,1.0,0 -234108053,"Day of Defeat Source",play,1.6,0 -234108053,"Half-Life 2",purchase,1.0,0 -234108053,"Half-Life 2",play,1.6,0 -234108053,"Team Fortress 2",purchase,1.0,0 -234108053,"Team Fortress 2",play,0.4,0 -234108053,"War Thunder",purchase,1.0,0 -234108053,"War Thunder",play,0.4,0 -234108053,"Half-Life Source",purchase,1.0,0 -234108053,"Counter-Strike Condition Zero",purchase,1.0,0 -234108053,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -234108053,"Day of Defeat",purchase,1.0,0 -234108053,"Deathmatch Classic",purchase,1.0,0 -234108053,"Half-Life",purchase,1.0,0 -234108053,"Half-Life 2 Deathmatch",purchase,1.0,0 -234108053,"Half-Life 2 Episode One",purchase,1.0,0 -234108053,"Half-Life 2 Episode Two",purchase,1.0,0 -234108053,"Half-Life 2 Lost Coast",purchase,1.0,0 -234108053,"Half-Life Blue Shift",purchase,1.0,0 -234108053,"Half-Life Opposing Force",purchase,1.0,0 -234108053,"Half-Life Deathmatch Source",purchase,1.0,0 -234108053,"Ricochet",purchase,1.0,0 -234108053,"Team Fortress Classic",purchase,1.0,0 -71704418,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -71704418,"Call of Duty Modern Warfare 2 - Multiplayer",play,1194.0,0 -71704418,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -71704418,"Call of Duty Modern Warfare 3 - Multiplayer",play,300.0,0 -71704418,"Call of Duty Modern Warfare 2",purchase,1.0,0 -71704418,"Call of Duty Modern Warfare 2",play,19.8,0 -71704418,"Call of Duty Modern Warfare 3",purchase,1.0,0 -71704418,"Call of Duty Modern Warfare 3",play,9.4,0 -71704418,"Team Fortress 2",purchase,1.0,0 -71704418,"Team Fortress 2",play,1.2,0 -295202708,"Team Fortress 2",purchase,1.0,0 -295202708,"Team Fortress 2",play,0.4,0 -236735185,"The Lord of the Rings War in the North",purchase,1.0,0 -236735185,"The Lord of the Rings War in the North",play,2.7,0 -236911498,"Dota 2",purchase,1.0,0 -236911498,"Dota 2",play,33.0,0 -236245395,"Dota 2",purchase,1.0,0 -236245395,"Dota 2",play,1154.0,0 -236245395,"Eldevin",purchase,1.0,0 -129982462,"Surgeon Simulator",purchase,1.0,0 -129982462,"Surgeon Simulator",play,1.4,0 -163237086,"Garry's Mod",purchase,1.0,0 -163237086,"Garry's Mod",play,37.0,0 -163237086,"Counter-Strike Global Offensive",purchase,1.0,0 -163237086,"Counter-Strike Global Offensive",play,28.0,0 -158363887,"Rocksmith 2014",purchase,1.0,0 -158363887,"Rocksmith 2014",play,52.0,0 -158363887,"Call of Duty Ghosts",purchase,1.0,0 -158363887,"Call of Duty Ghosts",play,24.0,0 -158363887,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -158363887,"Rocksmith",purchase,1.0,0 -95586525,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -95586525,"Call of Duty Modern Warfare 3 - Multiplayer",play,126.0,0 -95586525,"Call of Duty Modern Warfare 3",purchase,1.0,0 -95586525,"Call of Duty Modern Warfare 3",play,26.0,0 -65394447,"Dota 2",purchase,1.0,0 -65394447,"Dota 2",play,3.4,0 -115959445,"Team Fortress 2",purchase,1.0,0 -115959445,"Team Fortress 2",play,18.7,0 -115959445,"Warframe",purchase,1.0,0 -115959445,"Warframe",play,6.5,0 -115959445,"No More Room in Hell",purchase,1.0,0 -115959445,"No More Room in Hell",play,4.7,0 -115959445,"Heroes & Generals",purchase,1.0,0 -115959445,"Heroes & Generals",play,0.8,0 -115959445,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -115959445,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.2,0 -225376053,"Dota 2",purchase,1.0,0 -225376053,"Dota 2",play,16.1,0 -295708676,"Block N Load",purchase,1.0,0 -80117314,"Call of Duty Black Ops",purchase,1.0,0 -80117314,"Call of Duty Black Ops",play,0.3,0 -80117314,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -141873792,"Far Cry 3",purchase,1.0,0 -141873792,"Far Cry 3",play,138.0,0 -141873792,"The Elder Scrolls V Skyrim",purchase,1.0,0 -141873792,"The Elder Scrolls V Skyrim",play,37.0,0 -141873792,"Saints Row IV",purchase,1.0,0 -141873792,"Saints Row IV",play,35.0,0 -141873792,"Counter-Strike Global Offensive",purchase,1.0,0 -141873792,"Counter-Strike Global Offensive",play,33.0,0 -141873792,"Trove",purchase,1.0,0 -141873792,"Trove",play,27.0,0 -141873792,"FINAL FANTASY XIII",purchase,1.0,0 -141873792,"FINAL FANTASY XIII",play,18.4,0 -141873792,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -141873792,"Burnout Paradise The Ultimate Box",play,18.0,0 -141873792,"Tomb Raider",purchase,1.0,0 -141873792,"Tomb Raider",play,14.3,0 -141873792,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -141873792,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,10.6,0 -141873792,"SMITE",purchase,1.0,0 -141873792,"SMITE",play,5.3,0 -141873792,"Warframe",purchase,1.0,0 -141873792,"Warframe",play,4.8,0 -141873792,"Team Fortress 2",purchase,1.0,0 -141873792,"Team Fortress 2",play,4.7,0 -141873792,"Unturned",purchase,1.0,0 -141873792,"Unturned",play,4.3,0 -141873792,"Chivalry Medieval Warfare",purchase,1.0,0 -141873792,"Chivalry Medieval Warfare",play,3.2,0 -141873792,"Dishonored",purchase,1.0,0 -141873792,"Dishonored",play,2.5,0 -141873792,"Just Cause 2",purchase,1.0,0 -141873792,"Just Cause 2",play,2.5,0 -141873792,"Assassin's Creed IV Black Flag",purchase,1.0,0 -141873792,"Assassin's Creed IV Black Flag",play,2.2,0 -141873792,"Garry's Mod",purchase,1.0,0 -141873792,"Garry's Mod",play,1.8,0 -141873792,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -141873792,"A.V.A - Alliance of Valiant Arms",play,1.4,0 -141873792,"WARMODE",purchase,1.0,0 -141873792,"WARMODE",play,0.5,0 -141873792,"Goat Simulator",purchase,1.0,0 -141873792,"Goat Simulator",play,0.2,0 -141873792,"The Witcher 3 Wild Hunt",purchase,1.0,0 -141873792,"The Witcher 3 Wild Hunt",play,0.2,0 -141873792,"Loadout",purchase,1.0,0 -141873792,"Loadout",play,0.1,0 -141873792,"Dungeon Defenders II",purchase,1.0,0 -141873792,"Patch testing for Chivalry",purchase,1.0,0 -141873792,"Path of Exile",purchase,1.0,0 -141873792,"Test Drive Unlimited 2",purchase,1.0,0 -141873792,"Xam",purchase,1.0,0 -140825164,"Team Fortress 2",purchase,1.0,0 -140825164,"Team Fortress 2",play,33.0,0 -140825164,"Dota 2",purchase,1.0,0 -140825164,"Dota 2",play,20.0,0 -140825164,"No More Room in Hell",purchase,1.0,0 -140825164,"No More Room in Hell",play,12.6,0 -140825164,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -140825164,"Tom Clancy's Ghost Recon Phantoms - NA",play,9.3,0 -140825164,"PlanetSide 2",purchase,1.0,0 -140825164,"PlanetSide 2",play,7.7,0 -140825164,"Loadout",purchase,1.0,0 -140825164,"Loadout",play,6.8,0 -140825164,"Unturned",purchase,1.0,0 -140825164,"Unturned",play,5.9,0 -140825164,"Alien Swarm",purchase,1.0,0 -140825164,"Alien Swarm",play,5.6,0 -140825164,"Ascend Hand of Kul",purchase,1.0,0 -140825164,"Ascend Hand of Kul",play,4.9,0 -140825164,"Tactical Intervention",purchase,1.0,0 -140825164,"Tactical Intervention",play,4.2,0 -140825164,"HAWKEN",purchase,1.0,0 -140825164,"HAWKEN",play,3.5,0 -140825164,"Robocraft",purchase,1.0,0 -140825164,"Robocraft",play,3.0,0 -140825164,"Smashmuck Champions",purchase,1.0,0 -140825164,"Smashmuck Champions",play,3.0,0 -140825164,"Fallen Earth",purchase,1.0,0 -140825164,"Fallen Earth",play,2.7,0 -140825164,"Super Crate Box",purchase,1.0,0 -140825164,"Super Crate Box",play,2.4,0 -140825164,"Gotham City Impostors Free To Play",purchase,1.0,0 -140825164,"Gotham City Impostors Free To Play",play,1.7,0 -140825164,"Solstice Arena",purchase,1.0,0 -140825164,"Solstice Arena",play,1.4,0 -140825164,"RIFT",purchase,1.0,0 -140825164,"RIFT",play,1.2,0 -140825164,"Aerena",purchase,1.0,0 -140825164,"Aerena",play,1.0,0 -140825164,"Forge",purchase,1.0,0 -140825164,"Forge",play,1.0,0 -140825164,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -140825164,"Infinity Wars - Animated Trading Card Game",play,0.8,0 -140825164,"Dead Island Epidemic",purchase,1.0,0 -140825164,"Dead Island Epidemic",play,0.8,0 -140825164,"Face of Mankind",purchase,1.0,0 -140825164,"Face of Mankind",play,0.7,0 -140825164,"theHunter",purchase,1.0,0 -140825164,"theHunter",play,0.7,0 -140825164,"MicroVolts Surge",purchase,1.0,0 -140825164,"MicroVolts Surge",play,0.6,0 -140825164,"Anarchy Arcade",purchase,1.0,0 -140825164,"Anarchy Arcade",play,0.5,0 -140825164,"Star Conflict",purchase,1.0,0 -140825164,"Star Conflict",play,0.5,0 -140825164,"Dethroned!",purchase,1.0,0 -140825164,"Dethroned!",play,0.3,0 -140825164,"Dungeon Party",purchase,1.0,0 -140825164,"Dungeon Party",play,0.3,0 -140825164,"Football Superstars",purchase,1.0,0 -140825164,"Football Superstars",play,0.2,0 -140825164,"NEOTOKYO",purchase,1.0,0 -140825164,"NEOTOKYO",play,0.2,0 -140825164,"BLOCKADE 3D",purchase,1.0,0 -140825164,"BLOCKADE 3D",play,0.2,0 -140825164,"Haunted Memories",purchase,1.0,0 -140825164,"Haunted Memories",play,0.2,0 -140825164,"GunZ 2 The Second Duel",purchase,1.0,0 -140825164,"GunZ 2 The Second Duel",play,0.2,0 -140825164,"Dragons and Titans",purchase,1.0,0 -140825164,"Dragons and Titans",play,0.1,0 -140825164,"Evolution RTS",purchase,1.0,0 -140825164,"Marvel Heroes 2015",purchase,1.0,0 -140825164,"The Mighty Quest For Epic Loot",purchase,1.0,0 -140825164,"Double Action Boogaloo",purchase,1.0,0 -140825164,"Zombies Monsters Robots",purchase,1.0,0 -176539817,"Terraria",purchase,1.0,0 -176539817,"Terraria",play,181.0,0 -176539817,"Team Fortress 2",purchase,1.0,0 -176539817,"Team Fortress 2",play,66.0,0 -176539817,"Garry's Mod",purchase,1.0,0 -176539817,"Garry's Mod",play,56.0,0 -176539817,"Broforce",purchase,1.0,0 -176539817,"Broforce",play,49.0,0 -176539817,"Unturned",purchase,1.0,0 -176539817,"Unturned",play,48.0,0 -176539817,"Magicka",purchase,1.0,0 -176539817,"Magicka",play,17.3,0 -176539817,"Spore",purchase,1.0,0 -176539817,"Spore",play,15.5,0 -176539817,"Robocraft",purchase,1.0,0 -176539817,"Robocraft",play,10.0,0 -176539817,"Oddworld Stranger's Wrath HD",purchase,1.0,0 -176539817,"Oddworld Stranger's Wrath HD",play,9.2,0 -176539817,"Magicite",purchase,1.0,0 -176539817,"Magicite",play,8.6,0 -176539817,"Star Wars - Battlefront II",purchase,1.0,0 -176539817,"Star Wars - Battlefront II",play,4.5,0 -176539817,"Goat Simulator",purchase,1.0,0 -176539817,"Goat Simulator",play,3.8,0 -176539817,"Left 4 Dead 2",purchase,1.0,0 -176539817,"Left 4 Dead 2",play,3.7,0 -176539817,"The Expendabros",purchase,1.0,0 -176539817,"The Expendabros",play,3.4,0 -176539817,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -176539817,"Call of Duty Advanced Warfare - Multiplayer",play,2.8,0 -176539817,"7 Days to Die",purchase,1.0,0 -176539817,"7 Days to Die",play,2.7,0 -176539817,"Octodad Dadliest Catch",purchase,1.0,0 -176539817,"Octodad Dadliest Catch",play,2.6,0 -176539817,"Gauntlet ",purchase,1.0,0 -176539817,"Gauntlet ",play,2.3,0 -176539817,"Spore Galactic Adventures",purchase,1.0,0 -176539817,"Spore Galactic Adventures",play,1.7,0 -176539817,"The Elder Scrolls V Skyrim",purchase,1.0,0 -176539817,"The Elder Scrolls V Skyrim",play,1.6,0 -176539817,"Call of Duty Advanced Warfare",purchase,1.0,0 -176539817,"Call of Duty Advanced Warfare",play,1.4,0 -176539817,"Space Engineers",purchase,1.0,0 -176539817,"Space Engineers",play,1.4,0 -176539817,"Scribblenauts Unlimited",purchase,1.0,0 -176539817,"Scribblenauts Unlimited",play,1.1,0 -176539817,"Portal",purchase,1.0,0 -176539817,"Portal",play,0.9,0 -176539817,"LEGO MARVEL Super Heroes",purchase,1.0,0 -176539817,"LEGO MARVEL Super Heroes",play,0.3,0 -176539817,"Zombies Monsters Robots",purchase,1.0,0 -176539817,"Counter-Strike Nexon Zombies",purchase,1.0,0 -176539817,"Magicka Wizard Wars",purchase,1.0,0 -257422299,"Unturned",purchase,1.0,0 -257422299,"Unturned",play,2.3,0 -257422299,"Trove",purchase,1.0,0 -257422299,"Trove",play,1.3,0 -257422299,"Metal Reaper Online",purchase,1.0,0 -257422299,"Metal Reaper Online",play,0.1,0 -257422299,"Golden Rush",purchase,1.0,0 -257422299,"Golden Rush",play,0.1,0 -257422299,"The Settlers Online",purchase,1.0,0 -257422299,"SMITE",purchase,1.0,0 -184480011,"Football Manager 2014",purchase,1.0,0 -184480011,"Football Manager 2014",play,131.0,0 -228512803,"Dota 2",purchase,1.0,0 -228512803,"Dota 2",play,0.9,0 -149689548,"Serious Sam HD The Second Encounter",purchase,1.0,0 -149689548,"Serious Sam HD The Second Encounter",play,7.4,0 -149689548,"Dota 2",purchase,1.0,0 -149689548,"Dota 2",play,0.4,0 -182929175,"Dota 2",purchase,1.0,0 -182929175,"Dota 2",play,2035.0,0 -182929175,"Warface",purchase,1.0,0 -182929175,"Warface",play,0.7,0 -182929175,"War of the Roses",purchase,1.0,0 -225176638,"Unturned",purchase,1.0,0 -225176638,"Unturned",play,12.0,0 -225176638,"Dota 2",purchase,1.0,0 -225176638,"Dota 2",play,5.6,0 -225176638,"Survarium",purchase,1.0,0 -225176638,"Survarium",play,2.1,0 -225176638,"Mitos.is The Game",purchase,1.0,0 -225176638,"Mitos.is The Game",play,1.0,0 -225176638,"Toribash",purchase,1.0,0 -225176638,"Toribash",play,0.8,0 -225176638,"Team Fortress 2",purchase,1.0,0 -225176638,"Team Fortress 2",play,0.6,0 -225176638,"Aftermath",purchase,1.0,0 -225176638,"Aftermath",play,0.6,0 -225176638,"Counter-Strike Nexon Zombies",purchase,1.0,0 -225176638,"Counter-Strike Nexon Zombies",play,0.5,0 -225176638,"Robocraft",purchase,1.0,0 -225176638,"Robocraft",play,0.5,0 -225176638,"Genesis Online",purchase,1.0,0 -225176638,"Genesis Online",play,0.3,0 -225176638,"Viridi",purchase,1.0,0 -225176638,"Carpe Diem",purchase,1.0,0 -225176638,"FreeStyle2 Street Basketball",purchase,1.0,0 -225176638,"PAYDAY The Web Series - Episode 1",purchase,1.0,0 -2382003,"Counter-Strike",purchase,1.0,0 -2382003,"Day of Defeat",purchase,1.0,0 -2382003,"Deathmatch Classic",purchase,1.0,0 -2382003,"Half-Life",purchase,1.0,0 -2382003,"Half-Life Blue Shift",purchase,1.0,0 -2382003,"Half-Life Opposing Force",purchase,1.0,0 -2382003,"Ricochet",purchase,1.0,0 -2382003,"Team Fortress Classic",purchase,1.0,0 -223324734,"Grand Theft Auto V",purchase,1.0,0 -223324734,"Grand Theft Auto V",play,112.0,0 -223324734,"Counter-Strike Global Offensive",purchase,1.0,0 -223324734,"Counter-Strike Global Offensive",play,19.0,0 -223324734,"Assassin's Creed IV Black Flag",purchase,1.0,0 -223324734,"Assassin's Creed IV Black Flag",play,9.0,0 -223324734,"Call of Duty Black Ops III",purchase,1.0,0 -223324734,"Call of Duty Black Ops III",play,5.7,0 -223324734,"Trove",purchase,1.0,0 -223324734,"Trove",play,5.4,0 -223324734,"Call of Duty Advanced Warfare",purchase,1.0,0 -223324734,"Call of Duty Advanced Warfare",play,1.8,0 -223324734,"Garry's Mod",purchase,1.0,0 -223324734,"Garry's Mod",play,1.8,0 -223324734,"Rise of Incarnates",purchase,1.0,0 -223324734,"Rise of Incarnates",play,1.1,0 -223324734,"Brick-Force",purchase,1.0,0 -223324734,"Brick-Force",play,0.8,0 -223324734,"Block N Load",purchase,1.0,0 -223324734,"Block N Load",play,0.7,0 -223324734,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -223324734,"Call of Duty Advanced Warfare - Multiplayer",play,0.5,0 -223324734,"Caster",purchase,1.0,0 -223324734,"Infinite Crisis",purchase,1.0,0 -303061131,"Counter-Strike Global Offensive",purchase,1.0,0 -303061131,"Counter-Strike Global Offensive",play,66.0,0 -171911285,"Dota 2",purchase,1.0,0 -171911285,"Dota 2",play,32.0,0 -82418411,"Team Fortress 2",purchase,1.0,0 -82418411,"Team Fortress 2",play,14.6,0 -82418411,"Clicker Heroes",purchase,1.0,0 -82418411,"Clicker Heroes",play,0.8,0 -82418411,"Quake Live",purchase,1.0,0 -82418411,"Quake Live",play,0.4,0 -82418411,"Spiral Knights",purchase,1.0,0 -82418411,"Spiral Knights",play,0.4,0 -82418411,"Age of Chivalry",purchase,1.0,0 -82418411,"Age of Chivalry",play,0.2,0 -82418411,"Fistful of Frags",purchase,1.0,0 -82418411,"METAL SLUG DEFENSE",purchase,1.0,0 -82418411,"The Expendabros",purchase,1.0,0 -82418411,"Altitude",purchase,1.0,0 -82418411,"Dead Island Epidemic",purchase,1.0,0 -82418411,"Destination Sol",purchase,1.0,0 -82418411,"Famaze",purchase,1.0,0 -82418411,"HAWKEN",purchase,1.0,0 -82418411,"Heroes & Generals",purchase,1.0,0 -82418411,"MapleStory",purchase,1.0,0 -82418411,"Super Crate Box",purchase,1.0,0 -82418411,"The Plan",purchase,1.0,0 -120116659,"Dota 2",purchase,1.0,0 -120116659,"Dota 2",play,2108.0,0 -120116659,"Clicker Heroes",purchase,1.0,0 -120116659,"Clicker Heroes",play,12.3,0 -120116659,"Left 4 Dead 2",purchase,1.0,0 -120116659,"Left 4 Dead 2",play,1.2,0 -120116659,"A Walk in the Dark",purchase,1.0,0 -120116659,"A Walk in the Dark",play,0.4,0 -120116659,"Quake Live",purchase,1.0,0 -120116659,"Quake Live",play,0.1,0 -120116659,"Loadout",purchase,1.0,0 -120116659,"Infinite Crisis",purchase,1.0,0 -256452263,"Team Fortress 2",purchase,1.0,0 -256452263,"Team Fortress 2",play,13.9,0 -256452263,"Counter-Strike Global Offensive",purchase,1.0,0 -256452263,"Counter-Strike Global Offensive",play,8.5,0 -256452263,"Portal 2",purchase,1.0,0 -256452263,"Portal 2",play,1.4,0 -256452263,"Unturned",purchase,1.0,0 -256452263,"Unturned",play,1.2,0 -211357825,"Dota 2",purchase,1.0,0 -211357825,"Dota 2",play,0.2,0 -74347105,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -74347105,"Call of Duty Black Ops - Multiplayer",play,1244.0,0 -74347105,"DayZ",purchase,1.0,0 -74347105,"DayZ",play,850.0,0 -74347105,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -74347105,"Call of Duty Black Ops II - Multiplayer",play,595.0,0 -74347105,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -74347105,"Call of Duty Modern Warfare 3 - Multiplayer",play,586.0,0 -74347105,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -74347105,"Call of Duty Modern Warfare 2 - Multiplayer",play,345.0,0 -74347105,"Grand Theft Auto V",purchase,1.0,0 -74347105,"Grand Theft Auto V",play,235.0,0 -74347105,"Arma 3",purchase,1.0,0 -74347105,"Arma 3",play,157.0,0 -74347105,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -74347105,"Call of Duty Ghosts - Multiplayer",play,141.0,0 -74347105,"Call of Duty Black Ops III",purchase,1.0,0 -74347105,"Call of Duty Black Ops III",play,127.0,0 -74347105,"Far Cry 4",purchase,1.0,0 -74347105,"Far Cry 4",play,70.0,0 -74347105,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -74347105,"Call of Duty Black Ops II - Zombies",play,31.0,0 -74347105,"Call of Duty Black Ops",purchase,1.0,0 -74347105,"Call of Duty Black Ops",play,29.0,0 -74347105,"Call of Duty Modern Warfare 3",purchase,1.0,0 -74347105,"Call of Duty Modern Warfare 3",play,25.0,0 -74347105,"Hitman Absolution",purchase,1.0,0 -74347105,"Hitman Absolution",play,23.0,0 -74347105,"Tomb Raider",purchase,1.0,0 -74347105,"Tomb Raider",play,11.6,0 -74347105,"Prototype",purchase,1.0,0 -74347105,"Prototype",play,8.7,0 -74347105,"Call of Duty Black Ops II",purchase,1.0,0 -74347105,"Call of Duty Black Ops II",play,7.6,0 -74347105,"Call of Duty Ghosts",purchase,1.0,0 -74347105,"Call of Duty Ghosts",play,7.3,0 -74347105,"Call of Duty Modern Warfare 2",purchase,1.0,0 -74347105,"Call of Duty Modern Warfare 2",play,3.1,0 -74347105,"Arma 3 Karts",purchase,1.0,0 -74347105,"Arma 3 Zeus",purchase,1.0,0 -74347105,"theHunter",purchase,1.0,0 -237455225,"Grimm",purchase,1.0,0 -241645675,"Counter-Strike Global Offensive",purchase,1.0,0 -241645675,"Counter-Strike Global Offensive",play,3.9,0 -241645675,"Counter-Strike Source",purchase,1.0,0 -241645675,"Counter-Strike Source",play,0.2,0 -241645675,"Counter-Strike",purchase,1.0,0 -241645675,"Counter-Strike Condition Zero",purchase,1.0,0 -241645675,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -241645675,"Unturned",purchase,1.0,0 -180448924,"Heroes & Generals",purchase,1.0,0 -32488724,"Counter-Strike Source",purchase,1.0,0 -32488724,"Counter-Strike Source",play,55.0,0 -32488724,"Day of Defeat Source",purchase,1.0,0 -32488724,"Half-Life 2 Deathmatch",purchase,1.0,0 -32488724,"Half-Life 2 Lost Coast",purchase,1.0,0 -128412180,"Serious Sam HD The Second Encounter",purchase,1.0,0 -128412180,"Serious Sam HD The Second Encounter",play,1.2,0 -243816387,"Unturned",purchase,1.0,0 -243816387,"Unturned",play,8.1,0 -243816387,"BLOCKADE 3D",purchase,1.0,0 -243816387,"BLOCKADE 3D",play,5.5,0 -243816387,"Dead Island Epidemic",purchase,1.0,0 -243816387,"Dead Island Epidemic",play,0.5,0 -243816387,"Trove",purchase,1.0,0 -118792304,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -118792304,"Call of Duty Modern Warfare 3 - Multiplayer",play,571.0,0 -118792304,"ARK Survival Evolved",purchase,1.0,0 -118792304,"ARK Survival Evolved",play,500.0,0 -118792304,"Warframe",purchase,1.0,0 -118792304,"Warframe",play,221.0,0 -118792304,"H1Z1",purchase,1.0,0 -118792304,"H1Z1",play,122.0,0 -118792304,"Rocket League",purchase,1.0,0 -118792304,"Rocket League",play,54.0,0 -118792304,"Call of Duty Modern Warfare 3",purchase,1.0,0 -118792304,"Call of Duty Modern Warfare 3",play,40.0,0 -118792304,"Left 4 Dead 2",purchase,1.0,0 -118792304,"Left 4 Dead 2",play,22.0,0 -118792304,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -118792304,"Call of Duty 4 Modern Warfare",play,8.2,0 -118792304,"Fishing Planet",purchase,1.0,0 -118792304,"Fishing Planet",play,0.9,0 -118792304,"H1Z1 Test Server",purchase,1.0,0 -39524248,"Counter-Strike Source",purchase,1.0,0 -39524248,"Counter-Strike Source",play,19.5,0 -39524248,"Team Fortress 2",purchase,1.0,0 -39524248,"Team Fortress 2",play,8.2,0 -39524248,"Zombie Panic Source",purchase,1.0,0 -39524248,"Zombie Panic Source",play,1.1,0 -39524248,"Day of Defeat",purchase,1.0,0 -39524248,"Day of Defeat",play,0.2,0 -39524248,"Counter-Strike",purchase,1.0,0 -39524248,"Counter-Strike Condition Zero",purchase,1.0,0 -39524248,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -39524248,"Day of Defeat Source",purchase,1.0,0 -39524248,"Deathmatch Classic",purchase,1.0,0 -39524248,"Half-Life 2 Deathmatch",purchase,1.0,0 -39524248,"Half-Life 2 Lost Coast",purchase,1.0,0 -39524248,"Ricochet",purchase,1.0,0 -174585005,"Team Fortress 2",purchase,1.0,0 -174585005,"Team Fortress 2",play,13.0,0 -174585005,"Loadout",purchase,1.0,0 -174585005,"Loadout",play,5.8,0 -174585005,"Unturned",purchase,1.0,0 -174585005,"Unturned",play,3.3,0 -174585005,"No More Room in Hell",purchase,1.0,0 -174585005,"No More Room in Hell",play,0.5,0 -174585005,"Counter-Strike Nexon Zombies",purchase,1.0,0 -123546767,"Dota 2",purchase,1.0,0 -123546767,"Dota 2",play,2.4,0 -30115594,"Counter-Strike",purchase,1.0,0 -30115594,"Counter-Strike",play,272.0,0 -30115594,"Counter-Strike Condition Zero",purchase,1.0,0 -30115594,"Counter-Strike Condition Zero",play,80.0,0 -30115594,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -30115594,"Counter-Strike Condition Zero Deleted Scenes",play,2.1,0 -30115594,"Day of Defeat",purchase,1.0,0 -30115594,"Deathmatch Classic",purchase,1.0,0 -30115594,"Ricochet",purchase,1.0,0 -8334557,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -8334557,"Red Orchestra Ostfront 41-45",play,0.2,0 -8334557,"Counter-Strike",purchase,1.0,0 -8334557,"Darkest Hour Europe '44-'45",purchase,1.0,0 -8334557,"Day of Defeat",purchase,1.0,0 -8334557,"Deathmatch Classic",purchase,1.0,0 -8334557,"Half-Life",purchase,1.0,0 -8334557,"Half-Life 2 Deathmatch",purchase,1.0,0 -8334557,"Half-Life 2 Lost Coast",purchase,1.0,0 -8334557,"Half-Life Blue Shift",purchase,1.0,0 -8334557,"Half-Life Opposing Force",purchase,1.0,0 -8334557,"Mare Nostrum",purchase,1.0,0 -8334557,"Ricochet",purchase,1.0,0 -8334557,"Team Fortress Classic",purchase,1.0,0 -247219864,"Dota 2",purchase,1.0,0 -247219864,"Dota 2",play,61.0,0 -142414329,"Company of Heroes 2",purchase,1.0,0 -142414329,"Company of Heroes 2",play,1.3,0 -138259286,"Dota 2",purchase,1.0,0 -138259286,"Dota 2",play,777.0,0 -138259286,"Warframe",purchase,1.0,0 -138259286,"Warframe",play,0.9,0 -138259286,"Rise of Incarnates",purchase,1.0,0 -279203738,"BattleBlock Theater",purchase,1.0,0 -279203738,"BattleBlock Theater",play,3.3,0 -279203738,"Dota 2",purchase,1.0,0 -279203738,"Dota 2",play,0.6,0 -226357303,"Warframe",purchase,1.0,0 -226357303,"Warframe",play,1.0,0 -226357303,"Pirates, Vikings, & Knights II",purchase,1.0,0 -226357303,"Elsword",purchase,1.0,0 -162654590,"Dota 2",purchase,1.0,0 -162654590,"Dota 2",play,13.2,0 -37827989,"Counter-Strike",purchase,1.0,0 -37827989,"Counter-Strike",play,415.0,0 -37827989,"The Elder Scrolls V Skyrim",purchase,1.0,0 -37827989,"The Elder Scrolls V Skyrim",play,257.0,0 -37827989,"Battlefield Bad Company 2",purchase,1.0,0 -37827989,"Battlefield Bad Company 2",play,209.0,0 -37827989,"Counter-Strike Global Offensive",purchase,1.0,0 -37827989,"Counter-Strike Global Offensive",play,182.0,0 -37827989,"Team Fortress 2",purchase,1.0,0 -37827989,"Team Fortress 2",play,163.0,0 -37827989,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -37827989,"Call of Duty Modern Warfare 3 - Multiplayer",play,151.0,0 -37827989,"Garry's Mod",purchase,1.0,0 -37827989,"Garry's Mod",play,114.0,0 -37827989,"APB Reloaded",purchase,1.0,0 -37827989,"APB Reloaded",play,87.0,0 -37827989,"Rust",purchase,1.0,0 -37827989,"Rust",play,75.0,0 -37827989,"Chivalry Medieval Warfare",purchase,1.0,0 -37827989,"Chivalry Medieval Warfare",play,56.0,0 -37827989,"Max Payne 3",purchase,1.0,0 -37827989,"Max Payne 3",play,30.0,0 -37827989,"Left 4 Dead 2",purchase,1.0,0 -37827989,"Left 4 Dead 2",play,21.0,0 -37827989,"Counter-Strike Condition Zero",purchase,1.0,0 -37827989,"Counter-Strike Condition Zero",play,19.5,0 -37827989,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -37827989,"Grand Theft Auto Episodes from Liberty City",play,14.7,0 -37827989,"Grand Theft Auto IV",purchase,1.0,0 -37827989,"Grand Theft Auto IV",play,14.0,0 -37827989,"BioShock Infinite",purchase,1.0,0 -37827989,"BioShock Infinite",play,12.2,0 -37827989,"Killing Floor",purchase,1.0,0 -37827989,"Killing Floor",play,11.4,0 -37827989,"Portal 2",purchase,1.0,0 -37827989,"Portal 2",play,8.9,0 -37827989,"Gotham City Impostors",purchase,1.0,0 -37827989,"Gotham City Impostors",play,5.0,0 -37827989,"Dungeon Defenders",purchase,1.0,0 -37827989,"Dungeon Defenders",play,3.7,0 -37827989,"Unturned",purchase,1.0,0 -37827989,"Unturned",play,2.9,0 -37827989,"Call of Duty Modern Warfare 3",purchase,1.0,0 -37827989,"Call of Duty Modern Warfare 3",play,2.5,0 -37827989,"Dota 2",purchase,1.0,0 -37827989,"Dota 2",play,2.4,0 -37827989,"The Stanley Parable",purchase,1.0,0 -37827989,"The Stanley Parable",play,2.3,0 -37827989,"DC Universe Online",purchase,1.0,0 -37827989,"DC Universe Online",play,2.2,0 -37827989,"Codename CURE",purchase,1.0,0 -37827989,"Codename CURE",play,1.2,0 -37827989,"XCOM Enemy Unknown",purchase,1.0,0 -37827989,"XCOM Enemy Unknown",play,1.1,0 -37827989,"Sanctum",purchase,1.0,0 -37827989,"Sanctum",play,0.7,0 -37827989,"Cry of Fear",purchase,1.0,0 -37827989,"Cry of Fear",play,0.6,0 -37827989,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -37827989,"BioShock",purchase,1.0,0 -37827989,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -37827989,"Dead Island Epidemic",purchase,1.0,0 -37827989,"Dirty Bomb",purchase,1.0,0 -37827989,"Gotham City Impostors Free To Play",purchase,1.0,0 -37827989,"Heroes & Generals",purchase,1.0,0 -37827989,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -37827989,"Patch testing for Chivalry",purchase,1.0,0 -37827989,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -37827989,"TOME Immortal Arena",purchase,1.0,0 -37827989,"Warframe",purchase,1.0,0 -202160372,"Team Fortress 2",purchase,1.0,0 -202160372,"Team Fortress 2",play,245.0,0 -202160372,"Dota 2",purchase,1.0,0 -202160372,"Dota 2",play,2.0,0 -288228282,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -48080423,"H1Z1",purchase,1.0,0 -48080423,"H1Z1",play,24.0,0 -48080423,"Counter-Strike Source",purchase,1.0,0 -48080423,"Counter-Strike Source",play,17.9,0 -48080423,"Secrets of Grindea",purchase,1.0,0 -48080423,"Secrets of Grindea",play,11.8,0 -48080423,"Unturned",purchase,1.0,0 -48080423,"Unturned",play,6.4,0 -48080423,"Defiance",purchase,1.0,0 -48080423,"Defiance",play,6.3,0 -48080423,"Half-Life 2",purchase,1.0,0 -48080423,"Half-Life 2",play,5.2,0 -48080423,"Dota 2",purchase,1.0,0 -48080423,"Dota 2",play,2.1,0 -48080423,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -48080423,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.8,0 -48080423,"Half-Life 2 Lost Coast",purchase,1.0,0 -48080423,"Half-Life 2 Lost Coast",play,0.4,0 -48080423,"Magicka Wizard Wars",purchase,1.0,0 -48080423,"Magicka Wizard Wars",play,0.3,0 -48080423,"La Tale",purchase,1.0,0 -48080423,"La Tale",play,0.1,0 -48080423,"Half-Life 2 Deathmatch",purchase,1.0,0 -48080423,"H1Z1 Test Server",purchase,1.0,0 -275151488,"WARMODE",purchase,1.0,0 -275151488,"WARMODE",play,1.8,0 -275151488,"Dota 2",purchase,1.0,0 -275151488,"Dota 2",play,0.8,0 -74557142,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -74557142,"Call of Duty Black Ops - Multiplayer",play,0.1,0 -74557142,"Call of Duty Black Ops",purchase,1.0,0 -74557142,"Napoleon Total War",purchase,1.0,0 -24972502,"Counter-Strike",purchase,1.0,0 -24972502,"Counter-Strike",play,7.7,0 -24972502,"Counter-Strike Condition Zero",purchase,1.0,0 -24972502,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -24972502,"Day of Defeat",purchase,1.0,0 -24972502,"Deathmatch Classic",purchase,1.0,0 -24972502,"Ricochet",purchase,1.0,0 -9134079,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -9134079,"Call of Duty Modern Warfare 2 - Multiplayer",play,117.0,0 -9134079,"Call of Duty Modern Warfare 2",purchase,1.0,0 -9134079,"Call of Duty Modern Warfare 2",play,11.2,0 -9134079,"Half-Life 2",purchase,1.0,0 -9134079,"Half-Life 2",play,1.1,0 -9134079,"Call of Duty Modern Warfare 2 Stimulus Package",purchase,1.0,0 -9134079,"Counter-Strike Source",purchase,1.0,0 -9134079,"DiRT 2",purchase,1.0,0 -9134079,"Half-Life 2 Deathmatch",purchase,1.0,0 -9134079,"Half-Life 2 Episode Two",purchase,1.0,0 -9134079,"Half-Life 2 Lost Coast",purchase,1.0,0 -9134079,"Unreal Tournament Game of the Year Edition",purchase,1.0,0 -240964291,"Rust",purchase,1.0,0 -240964291,"Rust",play,719.0,0 -240964291,"Unturned",purchase,1.0,0 -302533082,"Counter-Strike Global Offensive",purchase,1.0,0 -302533082,"Counter-Strike Global Offensive",play,1.8,0 -233595859,"Dota 2",purchase,1.0,0 -233595859,"Dota 2",play,52.0,0 -233595859,"Unturned",purchase,1.0,0 -39795967,"Counter-Strike Condition Zero",purchase,1.0,0 -39795967,"Counter-Strike",purchase,1.0,0 -39795967,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -252200924,"Dota 2",purchase,1.0,0 -252200924,"Dota 2",play,0.5,0 -186814006,"Dota 2",purchase,1.0,0 -186814006,"Dota 2",play,541.0,0 -292158722,"Dota 2",purchase,1.0,0 -292158722,"Dota 2",play,4.9,0 -249570072,"Counter-Strike Global Offensive",purchase,1.0,0 -249570072,"Counter-Strike Global Offensive",play,184.0,0 -249570072,"Call of Duty World at War",purchase,1.0,0 -249570072,"Call of Duty World at War",play,31.0,0 -249570072,"Don't Starve Together Beta",purchase,1.0,0 -249570072,"Don't Starve Together Beta",play,13.8,0 -249570072,"Portal 2",purchase,1.0,0 -249570072,"Portal 2",play,11.4,0 -249570072,"Warframe",purchase,1.0,0 -249570072,"Warframe",play,8.9,0 -249570072,"Unturned",purchase,1.0,0 -249570072,"Unturned",play,6.7,0 -249570072,"Arma 2 Operation Arrowhead",purchase,1.0,0 -249570072,"Arma 2 Operation Arrowhead",play,4.7,0 -249570072,"Garry's Mod",purchase,1.0,0 -249570072,"Garry's Mod",play,3.0,0 -249570072,"Team Fortress 2",purchase,1.0,0 -249570072,"Team Fortress 2",play,1.7,0 -249570072,"Arma 2",purchase,1.0,0 -249570072,"Arma 2",play,0.6,0 -249570072,"Heroes & Generals",purchase,1.0,0 -249570072,"WARMODE",purchase,1.0,0 -249570072,"Arma 2 DayZ Mod",purchase,1.0,0 -249570072,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -242866563,"Dota 2",purchase,1.0,0 -242866563,"Dota 2",play,0.6,0 -96674526,"The Elder Scrolls V Skyrim",purchase,1.0,0 -96674526,"The Elder Scrolls V Skyrim",play,14.9,0 -96674526,"DayZ",purchase,1.0,0 -96674526,"DayZ",play,0.9,0 -189125890,"Football Manager 2016 Demo",purchase,1.0,0 -189125890,"Football Manager 2016 Demo",play,5.9,0 -172195770,"Dota 2",purchase,1.0,0 -172195770,"Dota 2",play,5.4,0 -26090223,"Counter-Strike Source",purchase,1.0,0 -26090223,"Counter-Strike Source",play,3.3,0 -26090223,"Day of Defeat Source",purchase,1.0,0 -26090223,"Half-Life 2 Deathmatch",purchase,1.0,0 -26090223,"Half-Life 2 Lost Coast",purchase,1.0,0 -102494404,"Dead Island Epidemic",purchase,1.0,0 -208513774,"GEARCRACK Arena",purchase,1.0,0 -195840346,"Dota 2",purchase,1.0,0 -195840346,"Dota 2",play,124.0,0 -289383568,"The Expendabros",purchase,1.0,0 -289383568,"The Expendabros",play,10.9,0 -289383568,"World of Guns Gun Disassembly",purchase,1.0,0 -289383568,"World of Guns Gun Disassembly",play,0.2,0 -205029231,"Garry's Mod",purchase,1.0,0 -205029231,"Garry's Mod",play,168.0,0 -205029231,"Unturned",purchase,1.0,0 -205029231,"Unturned",play,12.7,0 -241524841,"Dota 2",purchase,1.0,0 -241524841,"Dota 2",play,27.0,0 -241524841,"AdVenture Capitalist",purchase,1.0,0 -241524841,"Clicker Heroes",purchase,1.0,0 -241524841,"AirMech",purchase,1.0,0 -241524841,"Dirty Bomb",purchase,1.0,0 -241524841,"Gear Up",purchase,1.0,0 -241524841,"Path of Exile",purchase,1.0,0 -241524841,"Regimental Chess",purchase,1.0,0 -241524841,"Strife",purchase,1.0,0 -241524841,"Transformice",purchase,1.0,0 -286170278,"Magic Duels",purchase,1.0,0 -87734805,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -87734805,"Call of Duty Advanced Warfare - Multiplayer",play,151.0,0 -87734805,"Borderlands 2",purchase,1.0,0 -87734805,"Borderlands 2",play,82.0,0 -87734805,"Call of Duty Black Ops III",purchase,1.0,0 -87734805,"Call of Duty Black Ops III",play,47.0,0 -87734805,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -87734805,"METAL GEAR SOLID V THE PHANTOM PAIN",play,26.0,0 -87734805,"PAYDAY The Heist",purchase,1.0,0 -87734805,"PAYDAY The Heist",play,20.0,0 -87734805,"Grand Theft Auto V",purchase,1.0,0 -87734805,"Grand Theft Auto V",play,14.7,0 -87734805,"BioShock",purchase,1.0,0 -87734805,"BioShock",play,11.9,0 -87734805,"Rocket League",purchase,1.0,0 -87734805,"Rocket League",play,11.4,0 -87734805,"Metro Last Light",purchase,1.0,0 -87734805,"Metro Last Light",play,10.4,0 -87734805,"Team Fortress 2",purchase,1.0,0 -87734805,"Team Fortress 2",play,9.0,0 -87734805,"Defense Grid The Awakening",purchase,1.0,0 -87734805,"Defense Grid The Awakening",play,8.6,0 -87734805,"Hard Reset",purchase,1.0,0 -87734805,"Hard Reset",play,8.2,0 -87734805,"PAYDAY 2",purchase,1.0,0 -87734805,"PAYDAY 2",play,8.1,0 -87734805,"Left 4 Dead 2",purchase,1.0,0 -87734805,"Left 4 Dead 2",play,7.5,0 -87734805,"Call of Duty Advanced Warfare",purchase,1.0,0 -87734805,"Call of Duty Advanced Warfare",play,7.1,0 -87734805,"Shadow Warrior",purchase,1.0,0 -87734805,"Shadow Warrior",play,7.1,0 -87734805,"DLC Quest",purchase,1.0,0 -87734805,"DLC Quest",play,7.0,0 -87734805,"Loadout",purchase,1.0,0 -87734805,"Loadout",play,5.4,0 -87734805,"Contagion",purchase,1.0,0 -87734805,"Contagion",play,5.1,0 -87734805,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -87734805,"Sonic & All-Stars Racing Transformed",play,5.0,0 -87734805,"Mortal Kombat Komplete Edition",purchase,1.0,0 -87734805,"Mortal Kombat Komplete Edition",play,4.4,0 -87734805,"God Mode",purchase,1.0,0 -87734805,"God Mode",play,4.2,0 -87734805,"Beat Hazard",purchase,1.0,0 -87734805,"Beat Hazard",play,3.7,0 -87734805,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -87734805,"The Witcher 2 Assassins of Kings Enhanced Edition",play,3.6,0 -87734805,"Dead Island",purchase,1.0,0 -87734805,"Dead Island",play,3.5,0 -87734805,"Sniper Elite Nazi Zombie Army 2",purchase,1.0,0 -87734805,"Sniper Elite Nazi Zombie Army 2",play,3.3,0 -87734805,"Castle Crashers",purchase,1.0,0 -87734805,"Castle Crashers",play,3.2,0 -87734805,"Saints Row The Third",purchase,1.0,0 -87734805,"Saints Row The Third",play,3.1,0 -87734805,"Just Cause 2",purchase,1.0,0 -87734805,"Just Cause 2",play,2.7,0 -87734805,"Killing Floor",purchase,1.0,0 -87734805,"Killing Floor",play,2.4,0 -87734805,"Tomb Raider",purchase,1.0,0 -87734805,"Tomb Raider",play,2.4,0 -87734805,"Galcon Legends",purchase,1.0,0 -87734805,"Galcon Legends",play,2.4,0 -87734805,"Costume Quest",purchase,1.0,0 -87734805,"Costume Quest",play,2.3,0 -87734805,"Magicka",purchase,1.0,0 -87734805,"Magicka",play,2.3,0 -87734805,"Portal 2",purchase,1.0,0 -87734805,"Portal 2",play,2.2,0 -87734805,"Natural Selection 2",purchase,1.0,0 -87734805,"Natural Selection 2",play,2.2,0 -87734805,"Sniper Elite V2",purchase,1.0,0 -87734805,"Sniper Elite V2",play,2.1,0 -87734805,"How to Survive",purchase,1.0,0 -87734805,"How to Survive",play,1.6,0 -87734805,"Crysis",purchase,1.0,0 -87734805,"Crysis",play,1.5,0 -87734805,"Universe Sandbox",purchase,1.0,0 -87734805,"Universe Sandbox",play,1.4,0 -87734805,"Trine 2",purchase,1.0,0 -87734805,"Trine 2",play,1.4,0 -87734805,"Metro 2033",purchase,1.0,0 -87734805,"Metro 2033",play,1.2,0 -87734805,"Far Cry 3 Blood Dragon",purchase,1.0,0 -87734805,"Far Cry 3 Blood Dragon",play,0.9,0 -87734805,"Nexuiz",purchase,1.0,0 -87734805,"Nexuiz",play,0.9,0 -87734805,"Awesomenauts",purchase,1.0,0 -87734805,"Awesomenauts",play,0.8,0 -87734805,"Defy Gravity",purchase,1.0,0 -87734805,"Defy Gravity",play,0.8,0 -87734805,"The Darkness II",purchase,1.0,0 -87734805,"The Darkness II",play,0.8,0 -87734805,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -87734805,"Call of Duty 4 Modern Warfare",play,0.7,0 -87734805,"Deadlight",purchase,1.0,0 -87734805,"Deadlight",play,0.6,0 -87734805,"Yet Another Zombie Defense",purchase,1.0,0 -87734805,"Yet Another Zombie Defense",play,0.6,0 -87734805,"Zombie Driver HD",purchase,1.0,0 -87734805,"Zombie Driver HD",play,0.6,0 -87734805,"BioShock 2",purchase,1.0,0 -87734805,"BioShock 2",play,0.6,0 -87734805,"Counter-Strike Global Offensive",purchase,1.0,0 -87734805,"Counter-Strike Global Offensive",play,0.5,0 -87734805,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -87734805,"Command and Conquer Red Alert 3 - Uprising",play,0.5,0 -87734805,"Primal Carnage",purchase,1.0,0 -87734805,"Primal Carnage",play,0.5,0 -87734805,"RollerCoaster Tycoon Deluxe",purchase,1.0,0 -87734805,"RollerCoaster Tycoon Deluxe",play,0.5,0 -87734805,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -87734805,"Fallout 3 - Game of the Year Edition",play,0.4,0 -87734805,"Medal of Honor(TM) Single Player",purchase,1.0,0 -87734805,"Medal of Honor(TM) Single Player",play,0.4,0 -87734805,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -87734805,"Deus Ex Human Revolution - Director's Cut",play,0.4,0 -87734805,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -87734805,"Call of Duty Black Ops - Multiplayer",play,0.4,0 -87734805,"Call of Duty Black Ops",purchase,1.0,0 -87734805,"Call of Duty Black Ops",play,0.4,0 -87734805,"Ultra Street Fighter IV",purchase,1.0,0 -87734805,"Ultra Street Fighter IV",play,0.4,0 -87734805,"Dead Space",purchase,1.0,0 -87734805,"Dead Space",play,0.3,0 -87734805,"Call of Duty World at War",purchase,1.0,0 -87734805,"Call of Duty World at War",play,0.3,0 -87734805,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -87734805,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.3,0 -87734805,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -87734805,"Injustice Gods Among Us Ultimate Edition",play,0.3,0 -87734805,"Insurgency",purchase,1.0,0 -87734805,"Insurgency",play,0.3,0 -87734805,"Need for Speed Hot Pursuit",purchase,1.0,0 -87734805,"Need for Speed Hot Pursuit",play,0.3,0 -87734805,"Rise of the Triad",purchase,1.0,0 -87734805,"Rise of the Triad",play,0.2,0 -87734805,"Dota 2",purchase,1.0,0 -87734805,"Dota 2",play,0.2,0 -87734805,"Dogfight 1942",purchase,1.0,0 -87734805,"Dogfight 1942",play,0.2,0 -87734805,"BRINK",purchase,1.0,0 -87734805,"BRINK",play,0.2,0 -87734805,"Crysis Wars",purchase,1.0,0 -87734805,"Crysis Wars",play,0.2,0 -87734805,"Counter-Strike Source",purchase,1.0,0 -87734805,"Counter-Strike Source",play,0.2,0 -87734805,"Mirror's Edge",purchase,1.0,0 -87734805,"Mirror's Edge",play,0.2,0 -87734805,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -87734805,"Burnout Paradise The Ultimate Box",play,0.2,0 -87734805,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -87734805,"Rising Storm/Red Orchestra 2 Multiplayer",play,0.2,0 -87734805,"GRID 2",purchase,1.0,0 -87734805,"GRID 2",play,0.2,0 -87734805,"Who's That Flying?!",purchase,1.0,0 -87734805,"Who's That Flying?!",play,0.2,0 -87734805,"Strike Vector",purchase,1.0,0 -87734805,"Strike Vector",play,0.1,0 -87734805,"Crysis Warhead",purchase,1.0,0 -87734805,"Crysis Warhead",play,0.1,0 -87734805,"Planetary Annihilation",purchase,1.0,0 -87734805,"Planetary Annihilation",play,0.1,0 -87734805,"Sanctum",purchase,1.0,0 -87734805,"Sanctum",play,0.1,0 -87734805,"Portal",purchase,1.0,0 -87734805,"Portal",play,0.1,0 -87734805,"Metal Gear Solid Legacy",purchase,1.0,0 -87734805,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -87734805,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -87734805,"DOOM II Hell on Earth",purchase,1.0,0 -87734805,"Arma 2",purchase,1.0,0 -87734805,"World of Goo",purchase,1.0,0 -87734805,"F.E.A.R. 3",purchase,1.0,0 -87734805,"Alan Wake",purchase,1.0,0 -87734805,"Alan Wake's American Nightmare",purchase,1.0,0 -87734805,"Alice Madness Returns",purchase,1.0,0 -87734805,"All Is Dust",purchase,1.0,0 -87734805,"America's Army Proving Grounds",purchase,1.0,0 -87734805,"Anachronox",purchase,1.0,0 -87734805,"Anomaly Warzone Earth",purchase,1.0,0 -87734805,"Aquaria",purchase,1.0,0 -87734805,"Arma 2 Operation Arrowhead",purchase,1.0,0 -87734805,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -87734805,"Audiosurf",purchase,1.0,0 -87734805,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -87734805,"BattleBlock Theater",purchase,1.0,0 -87734805,"BioShock Infinite",purchase,1.0,0 -87734805,"Blacklight Retribution",purchase,1.0,0 -87734805,"Blood Bowl Legendary Edition",purchase,1.0,0 -87734805,"Call of Duty",purchase,1.0,0 -87734805,"Call of Duty 2",purchase,1.0,0 -87734805,"Call of Duty Modern Warfare 2",purchase,1.0,0 -87734805,"Call of Duty United Offensive",purchase,1.0,0 -87734805,"Cities XL Platinum",purchase,1.0,0 -87734805,"Colin McRae Rally",purchase,1.0,0 -87734805,"Company of Heroes",purchase,1.0,0 -87734805,"Company of Heroes (New Steam Version)",purchase,1.0,0 -87734805,"Company of Heroes Opposing Fronts",purchase,1.0,0 -87734805,"Company of Heroes Tales of Valor",purchase,1.0,0 -87734805,"Confrontation",purchase,1.0,0 -87734805,"Contraption Maker",purchase,1.0,0 -87734805,"Cook, Serve, Delicious!",purchase,1.0,0 -87734805,"Crazy Machines 2",purchase,1.0,0 -87734805,"Crazy Taxi",purchase,1.0,0 -87734805,"Cry of Fear",purchase,1.0,0 -87734805,"Crysis 2 Maximum Edition",purchase,1.0,0 -87734805,"Daikatana",purchase,1.0,0 -87734805,"Darkest Hour Europe '44-'45",purchase,1.0,0 -87734805,"Darksiders",purchase,1.0,0 -87734805,"Darwinia",purchase,1.0,0 -87734805,"Day of Defeat Source",purchase,1.0,0 -87734805,"Dead Island Epidemic",purchase,1.0,0 -87734805,"Deadlight Original Soundtrack",purchase,1.0,0 -87734805,"DEFCON",purchase,1.0,0 -87734805,"Defense Grid 2",purchase,1.0,0 -87734805,"Defense Grid 2 A Matter of Endurance",purchase,1.0,0 -87734805,"Defense Grid Containment DLC",purchase,1.0,0 -87734805,"Defense Grid Resurgence Map Pack 1",purchase,1.0,0 -87734805,"Defense Grid Resurgence Map Pack 2 ",purchase,1.0,0 -87734805,"Defense Grid Resurgence Map Pack 3",purchase,1.0,0 -87734805,"Defense Grid Resurgence Map Pack 4",purchase,1.0,0 -87734805,"Democracy 2",purchase,1.0,0 -87734805,"DiRT Showdown",purchase,1.0,0 -87734805,"Dirty Bomb",purchase,1.0,0 -87734805,"Divinity II Developer's Cut",purchase,1.0,0 -87734805,"DOOM 3",purchase,1.0,0 -87734805,"DOOM 3 Resurrection of Evil",purchase,1.0,0 -87734805,"Draw a Stickman EPIC",purchase,1.0,0 -87734805,"Dungeon Defenders",purchase,1.0,0 -87734805,"Dungeons of Dredmor",purchase,1.0,0 -87734805,"Ethan Meteor Hunter",purchase,1.0,0 -87734805,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -87734805,"Final DOOM",purchase,1.0,0 -87734805,"Finding Teddy",purchase,1.0,0 -87734805,"Finding Teddy Soundtrack",purchase,1.0,0 -87734805,"Fistful of Frags",purchase,1.0,0 -87734805,"FORCED",purchase,1.0,0 -87734805,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -87734805,"Galaxy on Fire 2 Full HD",purchase,1.0,0 -87734805,"Galcon Fusion",purchase,1.0,0 -87734805,"Game of Thrones ",purchase,1.0,0 -87734805,"Garry's Mod",purchase,1.0,0 -87734805,"Gish",purchase,1.0,0 -87734805,"Gratuitous Space Battles",purchase,1.0,0 -87734805,"Gratuitous Tank Battles",purchase,1.0,0 -87734805,"GTR Evolution",purchase,1.0,0 -87734805,"Half-Life 2 Deathmatch",purchase,1.0,0 -87734805,"Half-Life 2 Lost Coast",purchase,1.0,0 -87734805,"Hard Reset Exile DLC",purchase,1.0,0 -87734805,"Hitman 2 Silent Assassin",purchase,1.0,0 -87734805,"Hitman Codename 47",purchase,1.0,0 -87734805,"Hospital Tycoon",purchase,1.0,0 -87734805,"Jet Set Radio",purchase,1.0,0 -87734805,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -87734805,"Left 4 Dead",purchase,1.0,0 -87734805,"Lugaru HD ",purchase,1.0,0 -87734805,"Magicka Final Frontier",purchase,1.0,0 -87734805,"Magicka Frozen Lake",purchase,1.0,0 -87734805,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -87734805,"Magicka Nippon",purchase,1.0,0 -87734805,"Magicka Party Robes",purchase,1.0,0 -87734805,"Magicka The Watchtower",purchase,1.0,0 -87734805,"Magicka Vietnam",purchase,1.0,0 -87734805,"Magicka Wizard's Survival Kit",purchase,1.0,0 -87734805,"Mare Nostrum",purchase,1.0,0 -87734805,"Master Levels for DOOM II",purchase,1.0,0 -87734805,"Mechanic Escape",purchase,1.0,0 -87734805,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -87734805,"Medal of Honor Pre-Order",purchase,1.0,0 -87734805,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -87734805,"Mini Ninjas",purchase,1.0,0 -87734805,"Multiwinia",purchase,1.0,0 -87734805,"Napoleon Total War",purchase,1.0,0 -87734805,"Nexuiz Beta",purchase,1.0,0 -87734805,"Nexuiz STUPID Mode",purchase,1.0,0 -87734805,"NiGHTS into Dreams...",purchase,1.0,0 -87734805,"Of Orcs And Men",purchase,1.0,0 -87734805,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -87734805,"Operation Flashpoint Red River",purchase,1.0,0 -87734805,"Out of the Park Baseball 14",purchase,1.0,0 -87734805,"Overlord",purchase,1.0,0 -87734805,"Overlord Raising Hell",purchase,1.0,0 -87734805,"PAYDAY Wolf Pack",purchase,1.0,0 -87734805,"Penumbra Overture",purchase,1.0,0 -87734805,"Pool Nation",purchase,1.0,0 -87734805,"Psychonauts",purchase,1.0,0 -87734805,"Psychonauts Demo",purchase,1.0,0 -87734805,"RACE 07",purchase,1.0,0 -87734805,"RaceRoom Racing Experience ",purchase,1.0,0 -87734805,"Race The Sun",purchase,1.0,0 -87734805,"RAW - Realms of Ancient War",purchase,1.0,0 -87734805,"Really Big Sky",purchase,1.0,0 -87734805,"Receiver",purchase,1.0,0 -87734805,"Red Faction Armageddon",purchase,1.0,0 -87734805,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -87734805,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -87734805,"Rise of the Argonauts",purchase,1.0,0 -87734805,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -87734805,"Saints Row IV",purchase,1.0,0 -87734805,"Samorost 2",purchase,1.0,0 -87734805,"Sanctum 2",purchase,1.0,0 -87734805,"SEGA Bass Fishing",purchase,1.0,0 -87734805,"Soldier Front 2",purchase,1.0,0 -87734805,"Sonic Adventure DX",purchase,1.0,0 -87734805,"Space Channel 5 Part 2",purchase,1.0,0 -87734805,"Spark Rising",purchase,1.0,0 -87734805,"Spirits",purchase,1.0,0 -87734805,"Stacking",purchase,1.0,0 -87734805,"Star Wars Dark Forces",purchase,1.0,0 -87734805,"Star Wars Knights of the Old Republic",purchase,1.0,0 -87734805,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -87734805,"Survivalist",purchase,1.0,0 -87734805,"Syder Arcade",purchase,1.0,0 -87734805,"Symphony",purchase,1.0,0 -87734805,"Tactical Intervention",purchase,1.0,0 -87734805,"The Bureau XCOM Declassified",purchase,1.0,0 -87734805,"The Great Jitters Pudding Panic",purchase,1.0,0 -87734805,"The Guild II",purchase,1.0,0 -87734805,"The Guild II - Pirates of the European Seas",purchase,1.0,0 -87734805,"The Guild II Renaissance",purchase,1.0,0 -87734805,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -87734805,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -87734805,"The Lord of the Rings War in the North",purchase,1.0,0 -87734805,"The Ultimate DOOM",purchase,1.0,0 -87734805,"Thief Gold",purchase,1.0,0 -87734805,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -87734805,"Titan Quest",purchase,1.0,0 -87734805,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -87734805,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -87734805,"Uplink",purchase,1.0,0 -87734805,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -87734805,"Warface",purchase,1.0,0 -87734805,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -34658438,"Counter-Strike",purchase,1.0,0 -34658438,"Counter-Strike",play,3.6,0 -34658438,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -34658438,"Counter-Strike Condition Zero Deleted Scenes",play,1.8,0 -34658438,"Day of Defeat",purchase,1.0,0 -34658438,"Day of Defeat",play,0.2,0 -34658438,"Deathmatch Classic",purchase,1.0,0 -34658438,"Ricochet",purchase,1.0,0 -34658438,"Counter-Strike Condition Zero",purchase,1.0,0 -138460230,"Dota 2",purchase,1.0,0 -138460230,"Dota 2",play,496.0,0 -122847338,"Reign Of Kings",purchase,1.0,0 -122847338,"Reign Of Kings",play,110.0,0 -122847338,"The Secret World",purchase,1.0,0 -122847338,"The Secret World",play,62.0,0 -122847338,"Marvel Heroes 2015",purchase,1.0,0 -122847338,"Marvel Heroes 2015",play,3.5,0 -122847338,"The Witcher Enhanced Edition",purchase,1.0,0 -122847338,"The Witcher Enhanced Edition",play,0.5,0 -242836440,"Dota 2",purchase,1.0,0 -242836440,"Dota 2",play,17.0,0 -104709012,"Counter-Strike Source",purchase,1.0,0 -104709012,"Counter-Strike Source",play,12.3,0 -104709012,"Day of Defeat Source",purchase,1.0,0 -104709012,"Half-Life 2 Deathmatch",purchase,1.0,0 -104709012,"Half-Life 2 Lost Coast",purchase,1.0,0 -178117765,"Dota 2",purchase,1.0,0 -178117765,"Dota 2",play,1.5,0 -121255383,"Counter-Strike Source",purchase,1.0,0 -121255383,"Counter-Strike Source",play,9.2,0 -121255383,"Dota 2",purchase,1.0,0 -121255383,"Dota 2",play,2.6,0 -121255383,"Team Fortress 2",purchase,1.0,0 -121255383,"Team Fortress 2",play,1.5,0 -16821928,"Counter-Strike Source",purchase,1.0,0 -16821928,"Day of Defeat Source",purchase,1.0,0 -16821928,"Half-Life 2",purchase,1.0,0 -16821928,"Half-Life 2 Deathmatch",purchase,1.0,0 -16821928,"Half-Life 2 Lost Coast",purchase,1.0,0 -120143206,"Dota 2",purchase,1.0,0 -120143206,"Dota 2",play,56.0,0 -118808320,"Insurgency Modern Infantry Combat",purchase,1.0,0 -118808320,"Insurgency Modern Infantry Combat",play,0.5,0 -229312905,"Dota 2",purchase,1.0,0 -229312905,"Dota 2",play,687.0,0 -229312905,"SMITE",purchase,1.0,0 -249480143,"Dota 2",purchase,1.0,0 -249480143,"Dota 2",play,2.5,0 -13565651,"The Elder Scrolls V Skyrim",purchase,1.0,0 -13565651,"The Elder Scrolls V Skyrim",play,207.0,0 -13565651,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -13565651,"Call of Duty Modern Warfare 2 - Multiplayer",play,201.0,0 -13565651,"Borderlands 2",purchase,1.0,0 -13565651,"Borderlands 2",play,114.0,0 -13565651,"Fallout New Vegas",purchase,1.0,0 -13565651,"Fallout New Vegas",play,101.0,0 -13565651,"ArcheAge",purchase,1.0,0 -13565651,"ArcheAge",play,59.0,0 -13565651,"Warframe",purchase,1.0,0 -13565651,"Warframe",play,58.0,0 -13565651,"Mass Effect",purchase,1.0,0 -13565651,"Mass Effect",play,43.0,0 -13565651,"Dying Light",purchase,1.0,0 -13565651,"Dying Light",play,38.0,0 -13565651,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -13565651,"Call of Duty Black Ops - Multiplayer",play,35.0,0 -13565651,"Rocket League",purchase,1.0,0 -13565651,"Rocket League",play,34.0,0 -13565651,"Team Fortress 2",purchase,1.0,0 -13565651,"Team Fortress 2",play,31.0,0 -13565651,"Fallout 4",purchase,1.0,0 -13565651,"Fallout 4",play,29.0,0 -13565651,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -13565651,"Call of Duty Modern Warfare 3 - Multiplayer",play,28.0,0 -13565651,"Torchlight",purchase,1.0,0 -13565651,"Torchlight",play,27.0,0 -13565651,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -13565651,"Call of Duty Black Ops II - Multiplayer",play,24.0,0 -13565651,"Torchlight II",purchase,1.0,0 -13565651,"Torchlight II",play,24.0,0 -13565651,"Defiance",purchase,1.0,0 -13565651,"Defiance",play,21.0,0 -13565651,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -13565651,"Resident Evil 6 / Biohazard 6",play,18.4,0 -13565651,"Star Wars Knights of the Old Republic",purchase,1.0,0 -13565651,"Star Wars Knights of the Old Republic",play,18.0,0 -13565651,"Gotham City Impostors",purchase,1.0,0 -13565651,"Gotham City Impostors",play,17.8,0 -13565651,"Grand Theft Auto V",purchase,1.0,0 -13565651,"Grand Theft Auto V",play,16.4,0 -13565651,"Mass Effect 2",purchase,1.0,0 -13565651,"Mass Effect 2",play,16.2,0 -13565651,"Counter-Strike Source",purchase,1.0,0 -13565651,"Counter-Strike Source",play,13.6,0 -13565651,"Middle-earth Shadow of Mordor",purchase,1.0,0 -13565651,"Middle-earth Shadow of Mordor",play,13.2,0 -13565651,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -13565651,"Resident Evil 5 / Biohazard 5",play,12.5,0 -13565651,"Starbound",purchase,1.0,0 -13565651,"Starbound",play,11.9,0 -13565651,"Left 4 Dead 2",purchase,1.0,0 -13565651,"Left 4 Dead 2",play,11.5,0 -13565651,"Garry's Mod",purchase,1.0,0 -13565651,"Garry's Mod",play,11.4,0 -13565651,"DeathSpank",purchase,1.0,0 -13565651,"DeathSpank",play,10.9,0 -13565651,"Far Cry 3",purchase,1.0,0 -13565651,"Far Cry 3",play,10.4,0 -13565651,"The Binding of Isaac",purchase,1.0,0 -13565651,"The Binding of Isaac",play,9.9,0 -13565651,"Star Trek Online",purchase,1.0,0 -13565651,"Star Trek Online",play,9.0,0 -13565651,"Max Payne 3",purchase,1.0,0 -13565651,"Max Payne 3",play,8.0,0 -13565651,"BattleBlock Theater",purchase,1.0,0 -13565651,"BattleBlock Theater",play,7.6,0 -13565651,"Left 4 Dead",purchase,1.0,0 -13565651,"Left 4 Dead",play,7.2,0 -13565651,"Heroes & Generals",purchase,1.0,0 -13565651,"Heroes & Generals",play,6.9,0 -13565651,"BioShock",purchase,1.0,0 -13565651,"BioShock",play,6.2,0 -13565651,"Lara Croft and the Guardian of Light",purchase,1.0,0 -13565651,"Lara Croft and the Guardian of Light",play,6.2,0 -13565651,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -13565651,"Star Wars Jedi Knight Jedi Academy",play,6.0,0 -13565651,"BioShock 2",purchase,1.0,0 -13565651,"BioShock 2",play,5.6,0 -13565651,"Arma 2 Operation Arrowhead",purchase,1.0,0 -13565651,"Arma 2 Operation Arrowhead",play,5.5,0 -13565651,"Dead Space 2",purchase,1.0,0 -13565651,"Dead Space 2",play,5.5,0 -13565651,"Audiosurf",purchase,1.0,0 -13565651,"Audiosurf",play,5.1,0 -13565651,"BioShock Infinite",purchase,1.0,0 -13565651,"BioShock Infinite",play,5.1,0 -13565651,"Half-Life 2",purchase,1.0,0 -13565651,"Half-Life 2",play,4.9,0 -13565651,"Just Cause 2",purchase,1.0,0 -13565651,"Just Cause 2",play,4.4,0 -13565651,"HELLDIVERS",purchase,1.0,0 -13565651,"HELLDIVERS",play,3.8,0 -13565651,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -13565651,"Call of Duty 4 Modern Warfare",play,3.7,0 -13565651,"Alien Swarm",purchase,1.0,0 -13565651,"Alien Swarm",play,3.6,0 -13565651,"Warhammer Online Age of Reckoning",purchase,1.0,0 -13565651,"Warhammer Online Age of Reckoning",play,3.0,0 -13565651,"Portal",purchase,1.0,0 -13565651,"Portal",play,2.8,0 -13565651,"Killing Floor",purchase,1.0,0 -13565651,"Killing Floor",play,2.7,0 -13565651,"Dead Island",purchase,1.0,0 -13565651,"Dead Island",play,2.6,0 -13565651,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -13565651,"Dragon Age Origins - Ultimate Edition",play,2.5,0 -13565651,"DC Universe Online",purchase,1.0,0 -13565651,"DC Universe Online",play,2.4,0 -13565651,"Synergy",purchase,1.0,0 -13565651,"Synergy",play,2.2,0 -13565651,"Call of Duty Modern Warfare 2",purchase,1.0,0 -13565651,"Call of Duty Modern Warfare 2",play,2.2,0 -13565651,"Tom Clancy's Ghost Recon Future Soldier",purchase,1.0,0 -13565651,"Tom Clancy's Ghost Recon Future Soldier",play,2.2,0 -13565651,"Call of Duty Black Ops",purchase,1.0,0 -13565651,"Call of Duty Black Ops",play,1.8,0 -13565651,"Audiosurf 2",purchase,1.0,0 -13565651,"Audiosurf 2",play,1.7,0 -13565651,"Homefront",purchase,1.0,0 -13565651,"Homefront",play,1.4,0 -13565651,"PAYDAY The Heist",purchase,1.0,0 -13565651,"PAYDAY The Heist",play,1.4,0 -13565651,"Dizzel",purchase,1.0,0 -13565651,"Dizzel",play,1.4,0 -13565651,"Magic 2014 ",purchase,1.0,0 -13565651,"Magic 2014 ",play,1.3,0 -13565651,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -13565651,"Max Payne 2 The Fall of Max Payne",play,1.3,0 -13565651,"Counter-Strike Global Offensive",purchase,1.0,0 -13565651,"Counter-Strike Global Offensive",play,1.2,0 -13565651,"Rogue Legacy",purchase,1.0,0 -13565651,"Rogue Legacy",play,1.2,0 -13565651,"Sacred Gold",purchase,1.0,0 -13565651,"Sacred Gold",play,1.2,0 -13565651,"Magicka",purchase,1.0,0 -13565651,"Magicka",play,1.2,0 -13565651,"Half-Life 2 Episode One",purchase,1.0,0 -13565651,"Half-Life 2 Episode One",play,1.1,0 -13565651,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -13565651,"Dark Souls Prepare to Die Edition",play,1.0,0 -13565651,"The Binding of Isaac Rebirth",purchase,1.0,0 -13565651,"The Binding of Isaac Rebirth",play,1.0,0 -13565651,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -13565651,"STAR WARS Knights of the Old Republic II The Sith Lords",play,1.0,0 -13565651,"Orcs Must Die! 2",purchase,1.0,0 -13565651,"Orcs Must Die! 2",play,1.0,0 -13565651,"Hard Reset",purchase,1.0,0 -13565651,"Hard Reset",play,1.0,0 -13565651,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -13565651,"Fallout 3 - Game of the Year Edition",play,1.0,0 -13565651,"Magic The Gathering - Duels of the Planeswalkers 2013",purchase,1.0,0 -13565651,"Magic The Gathering - Duels of the Planeswalkers 2013",play,0.9,0 -13565651,"Darksiders",purchase,1.0,0 -13565651,"Darksiders",play,0.9,0 -13565651,"Beat Hazard",purchase,1.0,0 -13565651,"Beat Hazard",play,0.9,0 -13565651,"Crysis 2 Maximum Edition",purchase,1.0,0 -13565651,"Crysis 2 Maximum Edition",play,0.8,0 -13565651,"Star Wars - Battlefront II",purchase,1.0,0 -13565651,"Star Wars - Battlefront II",play,0.8,0 -13565651,"Warhammer 40,000 Space Marine",purchase,1.0,0 -13565651,"Warhammer 40,000 Space Marine",play,0.7,0 -13565651,"Grand Theft Auto IV",purchase,1.0,0 -13565651,"Grand Theft Auto IV",play,0.6,0 -13565651,"Plain Sight",purchase,1.0,0 -13565651,"Plain Sight",play,0.6,0 -13565651,"F.E.A.R. 3",purchase,1.0,0 -13565651,"F.E.A.R. 3",play,0.6,0 -13565651,"Far Cry 2",purchase,1.0,0 -13565651,"Far Cry 2",play,0.6,0 -13565651,"Dishonored",purchase,1.0,0 -13565651,"Dishonored",play,0.6,0 -13565651,"World of Goo",purchase,1.0,0 -13565651,"World of Goo",play,0.5,0 -13565651,"Grey's Anatomy The Video Game",purchase,1.0,0 -13565651,"Grey's Anatomy The Video Game",play,0.5,0 -13565651,"Dead Space",purchase,1.0,0 -13565651,"Dead Space",play,0.5,0 -13565651,"F.E.A.R.",purchase,1.0,0 -13565651,"F.E.A.R.",play,0.4,0 -13565651,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -13565651,"Warhammer 40,000 Dawn of War II Retribution",play,0.4,0 -13565651,"Call of Duty Black Ops II",purchase,1.0,0 -13565651,"Call of Duty Black Ops II",play,0.4,0 -13565651,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -13565651,"Call of Duty Black Ops II - Zombies",play,0.3,0 -13565651,"Rhythm Zone",purchase,1.0,0 -13565651,"Rhythm Zone",play,0.3,0 -13565651,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -13565651,"Warhammer 40,000 Dawn of War II",play,0.3,0 -13565651,"BIT.TRIP BEAT",purchase,1.0,0 -13565651,"BIT.TRIP BEAT",play,0.3,0 -13565651,"Indiana Jones and the Fate of Atlantis",purchase,1.0,0 -13565651,"Indiana Jones and the Fate of Atlantis",play,0.2,0 -13565651,"Half-Life 2 Lost Coast",purchase,1.0,0 -13565651,"Half-Life 2 Lost Coast",play,0.2,0 -13565651,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -13565651,"Resident Evil Revelations / Biohazard Revelations",play,0.2,0 -13565651,"Titan Quest",purchase,1.0,0 -13565651,"Titan Quest",play,0.2,0 -13565651,"Darwinia",purchase,1.0,0 -13565651,"Darwinia",play,0.1,0 -13565651,"The Dig",purchase,1.0,0 -13565651,"F.E.A.R. Extraction Point",purchase,1.0,0 -13565651,"Call of Duty Modern Warfare 3",purchase,1.0,0 -13565651,"Aion",purchase,1.0,0 -13565651,"Indiana Jones and the Last Crusade",purchase,1.0,0 -13565651,"Loom",purchase,1.0,0 -13565651,"Aliens vs. Predator",purchase,1.0,0 -13565651,"ArcheAge Silver Founders Pack",purchase,1.0,0 -13565651,"Arma 2",purchase,1.0,0 -13565651,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -13565651,"BioShock Infinite - Season Pass",purchase,1.0,0 -13565651,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -13565651,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -13565651,"BIT.TRIP RUNNER",purchase,1.0,0 -13565651,"Call of Duty Modern Warfare 2 - Resurgence Pack",purchase,1.0,0 -13565651,"Call of Duty Modern Warfare 2 Stimulus Package",purchase,1.0,0 -13565651,"Call of Duty World at War",purchase,1.0,0 -13565651,"Company of Heroes",purchase,1.0,0 -13565651,"Company of Heroes (New Steam Version)",purchase,1.0,0 -13565651,"Company of Heroes Opposing Fronts",purchase,1.0,0 -13565651,"Crysis",purchase,1.0,0 -13565651,"Crysis Warhead",purchase,1.0,0 -13565651,"Crysis Wars",purchase,1.0,0 -13565651,"E.Y.E Divine Cybermancy",purchase,1.0,0 -13565651,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -13565651,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -13565651,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -13565651,"Fallout New Vegas Dead Money",purchase,1.0,0 -13565651,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -13565651,"Far Cry",purchase,1.0,0 -13565651,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -13565651,"Gotham City Impostors Free To Play",purchase,1.0,0 -13565651,"Grand Theft Auto",purchase,1.0,0 -13565651,"Grand Theft Auto 2",purchase,1.0,0 -13565651,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -13565651,"Grand Theft Auto San Andreas",purchase,1.0,0 -13565651,"Grand Theft Auto San Andreas",purchase,1.0,0 -13565651,"Grand Theft Auto Vice City",purchase,1.0,0 -13565651,"Grand Theft Auto Vice City",purchase,1.0,0 -13565651,"Grand Theft Auto III",purchase,1.0,0 -13565651,"Grand Theft Auto III",purchase,1.0,0 -13565651,"Half-Life 2 Deathmatch",purchase,1.0,0 -13565651,"Half-Life 2 Episode Two",purchase,1.0,0 -13565651,"Half-Life Deathmatch Source",purchase,1.0,0 -13565651,"Hard Reset Exile DLC",purchase,1.0,0 -13565651,"Hitman 2 Silent Assassin",purchase,1.0,0 -13565651,"Hitman Blood Money",purchase,1.0,0 -13565651,"Hitman Codename 47",purchase,1.0,0 -13565651,"Jamestown",purchase,1.0,0 -13565651,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -13565651,"Magicka Final Frontier",purchase,1.0,0 -13565651,"Magicka Frozen Lake",purchase,1.0,0 -13565651,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -13565651,"Magicka Nippon",purchase,1.0,0 -13565651,"Magicka Party Robes",purchase,1.0,0 -13565651,"Magicka The Watchtower",purchase,1.0,0 -13565651,"Magicka Vietnam",purchase,1.0,0 -13565651,"Magicka Wizard's Survival Kit",purchase,1.0,0 -13565651,"Max Payne",purchase,1.0,0 -13565651,"Metro 2033",purchase,1.0,0 -13565651,"MX vs. ATV Reflex",purchase,1.0,0 -13565651,"Need for Speed Hot Pursuit",purchase,1.0,0 -13565651,"NightSky",purchase,1.0,0 -13565651,"Orcs Must Die!",purchase,1.0,0 -13565651,"PAYDAY 2",purchase,1.0,0 -13565651,"Prototype",purchase,1.0,0 -13565651,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -13565651,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -13565651,"Saints Row 2",purchase,1.0,0 -13565651,"Saints Row The Third",purchase,1.0,0 -13565651,"Saints Row IV",purchase,1.0,0 -13565651,"Shank",purchase,1.0,0 -13565651,"Shower With Your Dad Simulator 2015 Do You Still Shower With Your Dad",purchase,1.0,0 -13565651,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -13565651,"Starbound - Unstable",purchase,1.0,0 -13565651,"Super Meat Boy",purchase,1.0,0 -13565651,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -13565651,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -13565651,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -13565651,"The Polynomial",purchase,1.0,0 -13565651,"Thief Deadly Shadows",purchase,1.0,0 -13565651,"Titan Quest Immortal Throne",purchase,1.0,0 -13565651,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -13565651,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -199693744,"Dota 2",purchase,1.0,0 -199693744,"Dota 2",play,0.2,0 -132800758,"Dota 2",purchase,1.0,0 -132800758,"Dota 2",play,153.0,0 -134967717,"Dota 2",purchase,1.0,0 -134967717,"Dota 2",play,431.0,0 -134967717,"PlanetSide 2",purchase,1.0,0 -134967717,"PlanetSide 2",play,59.0,0 -134967717,"LEGO The Hobbit",purchase,1.0,0 -134967717,"LEGO The Hobbit",play,46.0,0 -134967717,"Marvel Heroes 2015",purchase,1.0,0 -134967717,"Marvel Heroes 2015",play,38.0,0 -134967717,"Borderlands 2",purchase,1.0,0 -134967717,"Borderlands 2",play,27.0,0 -134967717,"Left 4 Dead 2",purchase,1.0,0 -134967717,"Left 4 Dead 2",play,21.0,0 -134967717,"Dead Island Riptide",purchase,1.0,0 -134967717,"Dead Island Riptide",play,19.2,0 -134967717,"LEGO The Lord of the Rings",purchase,1.0,0 -134967717,"LEGO The Lord of the Rings",play,18.9,0 -134967717,"Transformers Fall of Cybertron",purchase,1.0,0 -134967717,"Transformers Fall of Cybertron",play,18.2,0 -134967717,"Transformers War for Cybertron",purchase,1.0,0 -134967717,"Transformers War for Cybertron",play,13.5,0 -134967717,"Dead Island",purchase,1.0,0 -134967717,"Dead Island",play,10.2,0 -134967717,"Orcs Must Die! 2",purchase,1.0,0 -134967717,"Orcs Must Die! 2",play,8.1,0 -134967717,"Star Wars Empire at War Gold",purchase,1.0,0 -134967717,"Star Wars Empire at War Gold",play,4.9,0 -134967717,"ORION Prelude",purchase,1.0,0 -134967717,"ORION Prelude",play,4.5,0 -134967717,"7 Days to Die",purchase,1.0,0 -134967717,"7 Days to Die",play,1.6,0 -134967717,"Battlestations Pacific",purchase,1.0,0 -134967717,"Battlestations Pacific",play,0.7,0 -134967717,"Lego Star Wars Saga",purchase,1.0,0 -134967717,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -134967717,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -134967717,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -134967717,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -134967717,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -134967717,"Bulletstorm",purchase,1.0,0 -134967717,"Dungeon Defenders II",purchase,1.0,0 -134967717,"Half-Life 2",purchase,1.0,0 -134967717,"Half-Life 2 Episode One",purchase,1.0,0 -134967717,"Half-Life 2 Episode Two",purchase,1.0,0 -134967717,"Half-Life 2 Lost Coast",purchase,1.0,0 -134967717,"How to Survive",purchase,1.0,0 -134967717,"Path of Exile",purchase,1.0,0 -134967717,"Portal",purchase,1.0,0 -134967717,"Portal 2",purchase,1.0,0 -134967717,"Rocket League",purchase,1.0,0 -134967717,"Serious Sam 3 BFE",purchase,1.0,0 -166811621,"Dota 2",purchase,1.0,0 -166811621,"Dota 2",play,3.7,0 -196437409,"Dota 2",purchase,1.0,0 -196437409,"Dota 2",play,47.0,0 -296225264,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -296225264,"METAL GEAR SOLID V THE PHANTOM PAIN",play,0.5,0 -28633466,"Counter-Strike Source",purchase,1.0,0 -28633466,"Counter-Strike Source",play,0.7,0 -203871540,"Counter-Strike Nexon Zombies",purchase,1.0,0 -154624403,"Team Fortress 2",purchase,1.0,0 -154624403,"Team Fortress 2",play,10.5,0 -216674215,"Team Fortress 2",purchase,1.0,0 -216674215,"Team Fortress 2",play,12.6,0 -216674215,"The Mighty Quest For Epic Loot",purchase,1.0,0 -216674215,"The Mighty Quest For Epic Loot",play,7.3,0 -216674215,"Unturned",purchase,1.0,0 -216674215,"Unturned",play,4.3,0 -216674215,"Cubic Castles",purchase,1.0,0 -216674215,"Cubic Castles",play,1.9,0 -216674215,"Robocraft",purchase,1.0,0 -216674215,"Robocraft",play,1.7,0 -216674215,"BLOCKADE 3D",purchase,1.0,0 -216674215,"BLOCKADE 3D",play,0.9,0 -216674215,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -216674215,"School of Dragons How to Train Your Dragon",play,0.8,0 -216674215,"Brick-Force",purchase,1.0,0 -119350525,"Team Fortress 2",purchase,1.0,0 -119350525,"Team Fortress 2",play,2.6,0 -238378861,"Warframe",purchase,1.0,0 -238378861,"Warframe",play,8.1,0 -238378861,"FreeStyle2 Street Basketball",purchase,1.0,0 -238378861,"FreeStyle2 Street Basketball",play,0.1,0 -238378861,"Run and Fire",purchase,1.0,0 -94778390,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -118859786,"Counter-Strike Global Offensive",purchase,1.0,0 -118859786,"Counter-Strike Global Offensive",play,57.0,0 -118859786,"Team Fortress 2",purchase,1.0,0 -118859786,"Team Fortress 2",play,1.1,0 -161309693,"Assassin's Creed Brotherhood",purchase,1.0,0 -161309693,"Assassin's Creed Brotherhood",play,4.7,0 -161309693,"Trove",purchase,1.0,0 -161309693,"Trove",play,0.9,0 -161309693,"Run and Fire",purchase,1.0,0 -161309693,"Run and Fire",play,0.5,0 -161309693,"Red Crucible Firestorm",purchase,1.0,0 -161309693,"Red Crucible Firestorm",play,0.4,0 -161309693,"Heroes & Generals",purchase,1.0,0 -161309693,"Sins of a Dark Age",purchase,1.0,0 -165842250,"Dota 2",purchase,1.0,0 -165842250,"Dota 2",play,6.3,0 -175612514,"Dota 2",purchase,1.0,0 -175612514,"Dota 2",play,3.1,0 -102949215,"Team Fortress 2",purchase,1.0,0 -102949215,"Team Fortress 2",play,19.1,0 -204386604,"RAGE",purchase,1.0,0 -136341868,"Dota 2",purchase,1.0,0 -136341868,"Dota 2",play,0.5,0 -237036035,"Dota 2",purchase,1.0,0 -237036035,"Dota 2",play,208.0,0 -237036035,"Audition Online",purchase,1.0,0 -237036035,"C9",purchase,1.0,0 -237036035,"FreeStyle2 Street Basketball",purchase,1.0,0 -237036035,"Free to Play",purchase,1.0,0 -237036035,"GunZ 2 The Second Duel",purchase,1.0,0 -237036035,"HAWKEN",purchase,1.0,0 -237036035,"Heroes & Generals",purchase,1.0,0 -237036035,"Loadout",purchase,1.0,0 -237036035,"Mortal Online",purchase,1.0,0 -237036035,"Nosgoth",purchase,1.0,0 -237036035,"Ragnarok Online 2",purchase,1.0,0 -237036035,"Stronghold Kingdoms",purchase,1.0,0 -237036035,"TERA",purchase,1.0,0 -237036035,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -237036035,"Warframe",purchase,1.0,0 -237036035,"War Inc. Battlezone",purchase,1.0,0 -237036035,"War Thunder",purchase,1.0,0 -69946630,"Counter-Strike Global Offensive",purchase,1.0,0 -69946630,"Counter-Strike Global Offensive",play,902.0,0 -69946630,"Dota 2",purchase,1.0,0 -69946630,"Dota 2",play,203.0,0 -69946630,"RIFT",purchase,1.0,0 -69946630,"RIFT",play,18.6,0 -69946630,"Rocket League",purchase,1.0,0 -69946630,"Rocket League",play,7.1,0 -69946630,"Realm of the Mad God",purchase,1.0,0 -69946630,"Realm of the Mad God",play,0.7,0 -69946630,"Get Off My Lawn!",purchase,1.0,0 -69946630,"Get Off My Lawn!",play,0.1,0 -69946630,"Dead Island Epidemic",purchase,1.0,0 -69946630,"Firefall",purchase,1.0,0 -69946630,"Robocraft",purchase,1.0,0 -92322563,"The Elder Scrolls V Skyrim",purchase,1.0,0 -92322563,"The Elder Scrolls V Skyrim",play,60.0,0 -262474788,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -262474788,"Tom Clancy's Ghost Recon Phantoms - EU",play,23.0,0 -262474788,"Neverwinter",purchase,1.0,0 -262474788,"Neverwinter",play,18.4,0 -262474788,"Team Fortress 2",purchase,1.0,0 -262474788,"Team Fortress 2",play,1.0,0 -262474788,"Unturned",purchase,1.0,0 -262474788,"Unturned",play,0.6,0 -262474788,"PlanetSide 2",purchase,1.0,0 -262474788,"Blacklight Retribution",purchase,1.0,0 -262474788,"Loadout",purchase,1.0,0 -262474788,"The Expendabros",purchase,1.0,0 -262474788,"Toribash",purchase,1.0,0 -262474788,"Warface",purchase,1.0,0 -262474788,"Warframe",purchase,1.0,0 -149081421,"Dota 2",purchase,1.0,0 -149081421,"Dota 2",play,1.0,0 -305835588,"Grand Theft Auto San Andreas",purchase,1.0,0 -305835588,"Grand Theft Auto San Andreas",purchase,1.0,0 -131995566,"Team Fortress 2",purchase,1.0,0 -131995566,"Team Fortress 2",play,2.5,0 -145078067,"Dota 2",purchase,1.0,0 -145078067,"Dota 2",play,14.8,0 -65420540,"Counter-Strike Global Offensive",purchase,1.0,0 -65420540,"Counter-Strike Global Offensive",play,349.0,0 -65420540,"Counter-Strike Source",purchase,1.0,0 -65420540,"Counter-Strike Source",play,203.0,0 -65420540,"Grand Theft Auto V",purchase,1.0,0 -65420540,"Grand Theft Auto V",play,17.5,0 -65420540,"Borderlands 2",purchase,1.0,0 -65420540,"Borderlands 2",play,15.7,0 -65420540,"MotoGP14",purchase,1.0,0 -65420540,"MotoGP14",play,15.4,0 -65420540,"TERA",purchase,1.0,0 -65420540,"TERA",play,12.5,0 -65420540,"DiRT Rally",purchase,1.0,0 -65420540,"DiRT Rally",play,9.6,0 -65420540,"Mad Max",purchase,1.0,0 -65420540,"Mad Max",play,7.8,0 -65420540,"BioShock Infinite",purchase,1.0,0 -65420540,"BioShock Infinite",play,7.2,0 -65420540,"Insurgency",purchase,1.0,0 -65420540,"Insurgency",play,7.0,0 -65420540,"Project CARS",purchase,1.0,0 -65420540,"Project CARS",play,5.9,0 -65420540,"Fallout 4",purchase,1.0,0 -65420540,"Fallout 4",play,5.2,0 -65420540,"Portal",purchase,1.0,0 -65420540,"Portal",play,4.8,0 -65420540,"Portal 2",purchase,1.0,0 -65420540,"Portal 2",play,4.4,0 -65420540,"Natural Selection 2",purchase,1.0,0 -65420540,"Natural Selection 2",play,3.6,0 -65420540,"Tomb Raider",purchase,1.0,0 -65420540,"Tomb Raider",play,2.5,0 -65420540,"PlanetSide 2",purchase,1.0,0 -65420540,"PlanetSide 2",play,2.0,0 -65420540,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -65420540,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.3,0 -65420540,"Rise of Incarnates",purchase,1.0,0 -65420540,"Rise of Incarnates",play,0.1,0 -65420540,"MotoGP14 Laguna Seca Redbull US Grand Prix DLC",purchase,1.0,0 -65420540,"Orcs Must Die! 2",purchase,1.0,0 -193428692,"GunZ 2 The Second Duel",purchase,1.0,0 -193428692,"The Expendabros",purchase,1.0,0 -196086652,"Dota 2",purchase,1.0,0 -196086652,"Dota 2",play,1.6,0 -203746661,"Dota 2",purchase,1.0,0 -203746661,"Dota 2",play,2223.0,0 -226597231,"BLOCKADE 3D",purchase,1.0,0 -226597231,"BLOCKADE 3D",play,6.3,0 -226597231,"Battle Islands",purchase,1.0,0 -226597231,"Battle Islands",play,1.2,0 -226597231,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -226597231,"Boring Man - Online Tactical Stickman Combat",play,1.0,0 -226597231,"TDP5 Arena 3D",purchase,1.0,0 -226597231,"TDP5 Arena 3D",play,0.3,0 -226597231,"Robocraft",purchase,1.0,0 -226597231,"Robocraft",play,0.2,0 -226597231,"Walkover",purchase,1.0,0 -226597231,"Walkover",play,0.1,0 -226597231,"You Have to Win the Game",purchase,1.0,0 -226597231,"16 Bit Arena",purchase,1.0,0 -200517250,"Super Crate Box",purchase,1.0,0 -200517250,"Super Crate Box",play,0.3,0 -117036229,"Team Fortress 2",purchase,1.0,0 -117036229,"Team Fortress 2",play,0.5,0 -35729292,"Dota 2",purchase,1.0,0 -35729292,"Dota 2",play,1086.0,0 -35729292,"Counter-Strike Global Offensive",purchase,1.0,0 -35729292,"Counter-Strike Global Offensive",play,525.0,0 -35729292,"Counter-Strike",purchase,1.0,0 -35729292,"Counter-Strike",play,370.0,0 -35729292,"Counter-Strike Source",purchase,1.0,0 -35729292,"Counter-Strike Source",play,270.0,0 -35729292,"Left 4 Dead 2",purchase,1.0,0 -35729292,"Left 4 Dead 2",play,151.0,0 -35729292,"Left 4 Dead",purchase,1.0,0 -35729292,"Left 4 Dead",play,85.0,0 -35729292,"PAYDAY 2",purchase,1.0,0 -35729292,"PAYDAY 2",play,66.0,0 -35729292,"Counter-Strike Condition Zero",purchase,1.0,0 -35729292,"Counter-Strike Condition Zero",play,56.0,0 -35729292,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -35729292,"Tom Clancy's Splinter Cell Blacklist",play,15.3,0 -35729292,"Killing Floor",purchase,1.0,0 -35729292,"Killing Floor",play,15.1,0 -35729292,"Team Fortress 2",purchase,1.0,0 -35729292,"Team Fortress 2",play,11.5,0 -35729292,"Dino D-Day",purchase,1.0,0 -35729292,"Dino D-Day",play,7.2,0 -35729292,"Unturned",purchase,1.0,0 -35729292,"Unturned",play,6.7,0 -35729292,"Hotline Miami",purchase,1.0,0 -35729292,"Hotline Miami",play,4.7,0 -35729292,"DiggerOnline",purchase,1.0,0 -35729292,"DiggerOnline",play,3.8,0 -35729292,"Portal",purchase,1.0,0 -35729292,"Portal",play,3.8,0 -35729292,"Chivalry Medieval Warfare",purchase,1.0,0 -35729292,"Chivalry Medieval Warfare",play,2.1,0 -35729292,"Survarium",purchase,1.0,0 -35729292,"Survarium",play,1.8,0 -35729292,"Insurgency",purchase,1.0,0 -35729292,"Insurgency",play,1.6,0 -35729292,"Batman Arkham Origins",purchase,1.0,0 -35729292,"Batman Arkham Origins",play,1.1,0 -35729292,"Garry's Mod",purchase,1.0,0 -35729292,"Garry's Mod",play,0.8,0 -35729292,"Day of Defeat Source",purchase,1.0,0 -35729292,"Day of Defeat Source",play,0.4,0 -35729292,"No More Room in Hell",purchase,1.0,0 -35729292,"No More Room in Hell",play,0.4,0 -35729292,"RACE 07",purchase,1.0,0 -35729292,"RACE 07",play,0.4,0 -35729292,"Zombie Panic Source",purchase,1.0,0 -35729292,"Zombie Panic Source",play,0.3,0 -35729292,"Everlasting Summer",purchase,1.0,0 -35729292,"Everlasting Summer",play,0.3,0 -35729292,"Half-Life 2 Deathmatch",purchase,1.0,0 -35729292,"Half-Life 2 Deathmatch",play,0.2,0 -35729292,"Goat Simulator",purchase,1.0,0 -35729292,"Goat Simulator",play,0.2,0 -35729292,"Counter-Strike Nexon Zombies",purchase,1.0,0 -35729292,"Counter-Strike Nexon Zombies",play,0.2,0 -35729292,"Trove",purchase,1.0,0 -35729292,"Trove",play,0.1,0 -35729292,"GTR Evolution",purchase,1.0,0 -35729292,"Amnesia The Dark Descent",purchase,1.0,0 -35729292,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -35729292,"Day of Defeat",purchase,1.0,0 -35729292,"Deathmatch Classic",purchase,1.0,0 -35729292,"Gun Metal",purchase,1.0,0 -35729292,"Gun Monkeys",purchase,1.0,0 -35729292,"Half-Life 2",purchase,1.0,0 -35729292,"Half-Life 2 Episode One",purchase,1.0,0 -35729292,"Half-Life 2 Episode Two",purchase,1.0,0 -35729292,"Half-Life 2 Lost Coast",purchase,1.0,0 -35729292,"Hotline Miami 2 Wrong Number Digital Comic",purchase,1.0,0 -35729292,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -35729292,"Patch testing for Chivalry",purchase,1.0,0 -35729292,"RaceRoom Racing Experience ",purchase,1.0,0 -35729292,"Really Big Sky",purchase,1.0,0 -35729292,"Ricochet",purchase,1.0,0 -35729292,"Sniper Elite V2",purchase,1.0,0 -35729292,"SpaceChem",purchase,1.0,0 -22277642,"Counter-Strike",purchase,1.0,0 -22277642,"Counter-Strike Condition Zero",purchase,1.0,0 -22277642,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -22277642,"Day of Defeat",purchase,1.0,0 -22277642,"Deathmatch Classic",purchase,1.0,0 -22277642,"Ricochet",purchase,1.0,0 -158476996,"DC Universe Online",purchase,1.0,0 -158476996,"DC Universe Online",play,127.0,0 -158476996,"Terraria",purchase,1.0,0 -158476996,"Terraria",play,103.0,0 -158476996,"RIFT",purchase,1.0,0 -158476996,"RIFT",play,74.0,0 -158476996,"The Elder Scrolls V Skyrim",purchase,1.0,0 -158476996,"The Elder Scrolls V Skyrim",play,62.0,0 -158476996,"Warframe",purchase,1.0,0 -158476996,"Warframe",play,32.0,0 -158476996,"Team Fortress 2",purchase,1.0,0 -158476996,"Team Fortress 2",play,7.2,0 -158476996,"Dragon's Prophet",purchase,1.0,0 -158476996,"Dragon's Prophet",play,3.9,0 -158476996,"Star Trek Online",purchase,1.0,0 -158476996,"Star Trek Online",play,3.6,0 -158476996,"Royal Quest",purchase,1.0,0 -158476996,"Royal Quest",play,3.5,0 -158476996,"Heroes & Generals",purchase,1.0,0 -158476996,"Heroes & Generals",play,1.4,0 -158476996,"Villagers and Heroes",purchase,1.0,0 -158476996,"Villagers and Heroes",play,1.0,0 -158476996,"Neverwinter",purchase,1.0,0 -158476996,"Neverwinter",play,0.7,0 -158476996,"Defiance",purchase,1.0,0 -158476996,"Defiance",play,0.6,0 -158476996,"Dota 2",purchase,1.0,0 -158476996,"Dota 2",play,0.3,0 -158476996,"Marvel Heroes 2015",purchase,1.0,0 -158476996,"Marvel Heroes 2015",play,0.3,0 -158476996,"Dragon Nest",purchase,1.0,0 -158476996,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -101690993,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -101690993,"Dragon Age Origins - Ultimate Edition",play,148.0,0 -101690993,"The Elder Scrolls V Skyrim",purchase,1.0,0 -101690993,"The Elder Scrolls V Skyrim",play,141.0,0 -101690993,"Sid Meier's Civilization V",purchase,1.0,0 -101690993,"Sid Meier's Civilization V",play,99.0,0 -101690993,"Fallout New Vegas",purchase,1.0,0 -101690993,"Fallout New Vegas",play,82.0,0 -101690993,"Fallout 4",purchase,1.0,0 -101690993,"Fallout 4",play,74.0,0 -101690993,"Mass Effect",purchase,1.0,0 -101690993,"Mass Effect",play,71.0,0 -101690993,"Assassin's Creed II",purchase,1.0,0 -101690993,"Assassin's Creed II",play,52.0,0 -101690993,"Prison Architect",purchase,1.0,0 -101690993,"Prison Architect",play,50.0,0 -101690993,"Assassin's Creed III",purchase,1.0,0 -101690993,"Assassin's Creed III",play,50.0,0 -101690993,"Divinity Original Sin",purchase,1.0,0 -101690993,"Divinity Original Sin",play,48.0,0 -101690993,"TERA",purchase,1.0,0 -101690993,"TERA",play,46.0,0 -101690993,"Saints Row The Third",purchase,1.0,0 -101690993,"Saints Row The Third",play,44.0,0 -101690993,"Assassin's Creed Brotherhood",purchase,1.0,0 -101690993,"Assassin's Creed Brotherhood",play,41.0,0 -101690993,"Plague Inc Evolved",purchase,1.0,0 -101690993,"Plague Inc Evolved",play,38.0,0 -101690993,"Saints Row IV",purchase,1.0,0 -101690993,"Saints Row IV",play,38.0,0 -101690993,"Assassin's Creed Revelations",purchase,1.0,0 -101690993,"Assassin's Creed Revelations",play,38.0,0 -101690993,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -101690993,"Vampire The Masquerade - Bloodlines",play,35.0,0 -101690993,"Borderlands 2",purchase,1.0,0 -101690993,"Borderlands 2",play,33.0,0 -101690993,"Tropico 4",purchase,1.0,0 -101690993,"Tropico 4",play,31.0,0 -101690993,"Age of Mythology Extended Edition",purchase,1.0,0 -101690993,"Age of Mythology Extended Edition",play,31.0,0 -101690993,"Deus Ex Human Revolution",purchase,1.0,0 -101690993,"Deus Ex Human Revolution",play,30.0,0 -101690993,"Endless Legend",purchase,1.0,0 -101690993,"Endless Legend",play,29.0,0 -101690993,"Fable III",purchase,1.0,0 -101690993,"Fable III",play,28.0,0 -101690993,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -101690993,"Sid Meier's Civilization Beyond Earth",play,28.0,0 -101690993,"Saints Row 2",purchase,1.0,0 -101690993,"Saints Row 2",play,23.0,0 -101690993,"The Walking Dead",purchase,1.0,0 -101690993,"The Walking Dead",play,23.0,0 -101690993,"Borderlands The Pre-Sequel",purchase,1.0,0 -101690993,"Borderlands The Pre-Sequel",play,22.0,0 -101690993,"Tomb Raider",purchase,1.0,0 -101690993,"Tomb Raider",play,21.0,0 -101690993,"Assassin's Creed",purchase,1.0,0 -101690993,"Assassin's Creed",play,21.0,0 -101690993,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -101690993,"Shadowrun Dragonfall - Director's Cut",play,18.5,0 -101690993,"Life Is Strange",purchase,1.0,0 -101690993,"Life Is Strange",play,18.1,0 -101690993,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -101690993,"Kingdoms of Amalur Reckoning",play,16.5,0 -101690993,"Dishonored",purchase,1.0,0 -101690993,"Dishonored",play,16.3,0 -101690993,"Portal 2",purchase,1.0,0 -101690993,"Portal 2",play,15.8,0 -101690993,"Hitman Absolution",purchase,1.0,0 -101690993,"Hitman Absolution",play,15.7,0 -101690993,"Hate Plus",purchase,1.0,0 -101690993,"Hate Plus",play,14.8,0 -101690993,"Tropico 5",purchase,1.0,0 -101690993,"Tropico 5",play,13.9,0 -101690993,"Influent",purchase,1.0,0 -101690993,"Influent",play,13.5,0 -101690993,"Mass Effect 2",purchase,1.0,0 -101690993,"Mass Effect 2",play,12.3,0 -101690993,"Broken Age",purchase,1.0,0 -101690993,"Broken Age",play,11.1,0 -101690993,"Analogue A Hate Story",purchase,1.0,0 -101690993,"Analogue A Hate Story",play,10.2,0 -101690993,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -101690993,"The Witcher 2 Assassins of Kings Enhanced Edition",play,9.7,0 -101690993,"ArtRage Studio Pro",purchase,1.0,0 -101690993,"ArtRage Studio Pro",play,9.3,0 -101690993,"Ether One",purchase,1.0,0 -101690993,"Ether One",play,9.3,0 -101690993,"Remember Me",purchase,1.0,0 -101690993,"Remember Me",play,8.5,0 -101690993,"Hatoful Boyfriend",purchase,1.0,0 -101690993,"Hatoful Boyfriend",play,8.2,0 -101690993,"Bound By Flame",purchase,1.0,0 -101690993,"Bound By Flame",play,7.4,0 -101690993,"Chaos on Deponia",purchase,1.0,0 -101690993,"Chaos on Deponia",play,7.4,0 -101690993,"Banished",purchase,1.0,0 -101690993,"Banished",play,6.8,0 -101690993,"Deponia",purchase,1.0,0 -101690993,"Deponia",play,5.9,0 -101690993,"Grey Goo",purchase,1.0,0 -101690993,"Grey Goo",play,5.8,0 -101690993,"Gone Home",purchase,1.0,0 -101690993,"Gone Home",play,5.1,0 -101690993,"SimCity 4 Deluxe",purchase,1.0,0 -101690993,"SimCity 4 Deluxe",play,4.8,0 -101690993,"Brothers - A Tale of Two Sons",purchase,1.0,0 -101690993,"Brothers - A Tale of Two Sons",play,4.5,0 -101690993,"Godus",purchase,1.0,0 -101690993,"Godus",play,4.2,0 -101690993,"Game Dev Tycoon",purchase,1.0,0 -101690993,"Game Dev Tycoon",play,3.7,0 -101690993,"Portal",purchase,1.0,0 -101690993,"Portal",play,3.4,0 -101690993,"Never Alone (Kisima Ingitchuna)",purchase,1.0,0 -101690993,"Never Alone (Kisima Ingitchuna)",play,3.2,0 -101690993,"Cinders",purchase,1.0,0 -101690993,"Cinders",play,3.1,0 -101690993,"Dysfunctional Systems Learning to Manage Chaos",purchase,1.0,0 -101690993,"Dysfunctional Systems Learning to Manage Chaos",play,2.8,0 -101690993,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -101690993,"The Elder Scrolls IV Oblivion ",play,1.9,0 -101690993,"Democracy 3",purchase,1.0,0 -101690993,"Democracy 3",play,1.9,0 -101690993,"Prince of Persia",purchase,1.0,0 -101690993,"Prince of Persia",play,1.3,0 -101690993,"Prince of Persia The Sands of Time",purchase,1.0,0 -101690993,"Prince of Persia The Sands of Time",play,1.1,0 -101690993,"Octodad Dadliest Catch",purchase,1.0,0 -101690993,"Octodad Dadliest Catch",play,1.1,0 -101690993,"Killer is Dead",purchase,1.0,0 -101690993,"Killer is Dead",play,1.1,0 -101690993,"Bastion",purchase,1.0,0 -101690993,"Bastion",play,1.0,0 -101690993,"Goat Simulator",purchase,1.0,0 -101690993,"Goat Simulator",play,0.9,0 -101690993,"The Stanley Parable",purchase,1.0,0 -101690993,"The Stanley Parable",play,0.8,0 -101690993,"Counter-Strike Source",purchase,1.0,0 -101690993,"Counter-Strike Source",play,0.8,0 -101690993,"The Binding of Isaac",purchase,1.0,0 -101690993,"The Binding of Isaac",play,0.8,0 -101690993,"Don't Starve",purchase,1.0,0 -101690993,"Don't Starve",play,0.6,0 -101690993,"Defiance",purchase,1.0,0 -101690993,"Defiance",play,0.4,0 -101690993,"Lili Child of Geos",purchase,1.0,0 -101690993,"Lili Child of Geos",play,0.4,0 -101690993,"Papers, Please",purchase,1.0,0 -101690993,"Papers, Please",play,0.3,0 -101690993,"Hotline Miami",purchase,1.0,0 -101690993,"Hotline Miami",play,0.1,0 -101690993,"Cherry Tree High Comedy Club",purchase,1.0,0 -101690993,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -101690993,"Sid Meier's Starships",purchase,1.0,0 -101690993,"Watch_Dogs",purchase,1.0,0 -101690993,"ALLTYNEX Second",purchase,1.0,0 -101690993,"A New Beginning - Final Cut",purchase,1.0,0 -101690993,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -101690993,"Batman Arkham City GOTY",purchase,1.0,0 -101690993,"Beyond Divinity",purchase,1.0,0 -101690993,"BioShock",purchase,1.0,0 -101690993,"BioShock 2",purchase,1.0,0 -101690993,"BioShock Infinite",purchase,1.0,0 -101690993,"BioShock Infinite - Season Pass",purchase,1.0,0 -101690993,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -101690993,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -101690993,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -101690993,"Cherry Tree High I! My! Girls!",purchase,1.0,0 -101690993,"Child of Light",purchase,1.0,0 -101690993,"Counter-Strike",purchase,1.0,0 -101690993,"Counter-Strike Condition Zero",purchase,1.0,0 -101690993,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -101690993,"Darkest Dungeon",purchase,1.0,0 -101690993,"Day of Defeat",purchase,1.0,0 -101690993,"Day of Defeat Source",purchase,1.0,0 -101690993,"Deathmatch Classic",purchase,1.0,0 -101690993,"Democracy 3 Clones and Drones",purchase,1.0,0 -101690993,"Divine Divinity",purchase,1.0,0 -101690993,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -101690993,"Don't Starve Reign of Giants",purchase,1.0,0 -101690993,"Don't Starve Together Beta",purchase,1.0,0 -101690993,"Dreamfall Chapters",purchase,1.0,0 -101690993,"Edna & Harvey Harvey's New Eyes",purchase,1.0,0 -101690993,"Ether One Deluxe Edition Upgrade",purchase,1.0,0 -101690993,"Ether One Redux",purchase,1.0,0 -101690993,"Fable - The Lost Chapters",purchase,1.0,0 -101690993,"Fairy Bloom Freesia",purchase,1.0,0 -101690993,"Fairy Bloom Freesia - Original Soundtrack",purchase,1.0,0 -101690993,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -101690993,"Fallout New Vegas Dead Money",purchase,1.0,0 -101690993,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -101690993,"Fox & Flock",purchase,1.0,0 -101690993,"Goodbye Deponia",purchase,1.0,0 -101690993,"Grey Goo - Emergence Campaign",purchase,1.0,0 -101690993,"Grey Goo - Soundtrack",purchase,1.0,0 -101690993,"Grim Fandango Remastered",purchase,1.0,0 -101690993,"Half-Life",purchase,1.0,0 -101690993,"Half-Life 2",purchase,1.0,0 -101690993,"Half-Life 2 Deathmatch",purchase,1.0,0 -101690993,"Half-Life 2 Episode One",purchase,1.0,0 -101690993,"Half-Life 2 Episode Two",purchase,1.0,0 -101690993,"Half-Life 2 Lost Coast",purchase,1.0,0 -101690993,"Half-Life Blue Shift",purchase,1.0,0 -101690993,"Half-Life Opposing Force",purchase,1.0,0 -101690993,"Half-Life Source",purchase,1.0,0 -101690993,"Half-Life Deathmatch Source",purchase,1.0,0 -101690993,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",purchase,1.0,0 -101690993,"Half Minute Hero The Second Coming",purchase,1.0,0 -101690993,"Hitman Sniper Challenge",purchase,1.0,0 -101690993,"Influent DLC - Svenska [Learn Swedish]",purchase,1.0,0 -101690993,"Influent DLC - [Learn Japanese]",purchase,1.0,0 -101690993,"KAMUI",purchase,1.0,0 -101690993,"Lara Croft and the Guardian of Light",purchase,1.0,0 -101690993,"Left 4 Dead",purchase,1.0,0 -101690993,"Left 4 Dead 2",purchase,1.0,0 -101690993,"Legend of Grimrock 2",purchase,1.0,0 -101690993,"Lucius",purchase,1.0,0 -101690993,"Magical Battle Festa",purchase,1.0,0 -101690993,"Metro Last Light",purchase,1.0,0 -101690993,"Munin",purchase,1.0,0 -101690993,"Never Alone Original Soundtrack",purchase,1.0,0 -101690993,"Omerta - City of Gangsters",purchase,1.0,0 -101690993,"Polarity",purchase,1.0,0 -101690993,"Prince of Persia The Forgotten Sands",purchase,1.0,0 -101690993,"Prince of Persia The Two Thrones",purchase,1.0,0 -101690993,"Prince of Persia Warrior Within",purchase,1.0,0 -101690993,"RefleX",purchase,1.0,0 -101690993,"Republique",purchase,1.0,0 -101690993,"REVOLVER360 REACTOR",purchase,1.0,0 -101690993,"Ricochet",purchase,1.0,0 -101690993,"Rime Berta",purchase,1.0,0 -101690993,"Saints Row Gat out of Hell",purchase,1.0,0 -101690993,"Shadowrun Returns",purchase,1.0,0 -101690993,"Sid Meier's Civilization Beyond Earth - Rising Tide",purchase,1.0,0 -101690993,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -101690993,"Silent Hill Homecoming",purchase,1.0,0 -101690993,"Sokobond",purchase,1.0,0 -101690993,"Team Fortress Classic",purchase,1.0,0 -101690993,"The Elder Scrolls III Morrowind",purchase,1.0,0 -101690993,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -101690993,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -101690993,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -101690993,"The Walking Dead Season Two",purchase,1.0,0 -101690993,"The Wolf Among Us",purchase,1.0,0 -101690993,"This War of Mine",purchase,1.0,0 -101690993,"Transistor",purchase,1.0,0 -101690993,"Transistor Soundtrack",purchase,1.0,0 -82020006,"Left 4 Dead 2",purchase,1.0,0 -82020006,"Left 4 Dead 2",play,74.0,0 -82020006,"Call of Duty Modern Warfare 2",purchase,1.0,0 -82020006,"Call of Duty Modern Warfare 2",play,15.8,0 -82020006,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -82020006,"Call of Duty Modern Warfare 3 - Multiplayer",play,15.7,0 -82020006,"PAYDAY 2",purchase,1.0,0 -82020006,"PAYDAY 2",play,15.2,0 -82020006,"Street Fighter IV",purchase,1.0,0 -82020006,"Street Fighter IV",play,12.9,0 -82020006,"Batman Arkham City GOTY",purchase,1.0,0 -82020006,"Batman Arkham City GOTY",play,11.8,0 -82020006,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -82020006,"Call of Duty 4 Modern Warfare",play,9.4,0 -82020006,"Dead Island",purchase,1.0,0 -82020006,"Dead Island",play,9.0,0 -82020006,"Call of Duty Modern Warfare 3",purchase,1.0,0 -82020006,"Call of Duty Modern Warfare 3",play,8.1,0 -82020006,"DC Universe Online",purchase,1.0,0 -82020006,"DC Universe Online",play,7.3,0 -82020006,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -82020006,"Call of Duty Modern Warfare 2 - Multiplayer",play,5.3,0 -82020006,"Blur",purchase,1.0,0 -82020006,"Blur",play,3.2,0 -82020006,"Star Wars - Battlefront II",purchase,1.0,0 -82020006,"Star Wars - Battlefront II",play,2.8,0 -82020006,"Alien Swarm",purchase,1.0,0 -82020006,"Alien Swarm",play,2.2,0 -82020006,"Team Fortress 2",purchase,1.0,0 -82020006,"Team Fortress 2",play,1.1,0 -82020006,"Fallout New Vegas",purchase,1.0,0 -82020006,"Fallout New Vegas",play,1.1,0 -82020006,"Age of Empires III Complete Collection",purchase,1.0,0 -82020006,"Age of Empires III Complete Collection",play,0.7,0 -82020006,"Sniper Elite V2",purchase,1.0,0 -189429276,"Dota 2",purchase,1.0,0 -189429276,"Dota 2",play,5.6,0 -218215123,"Dota 2",purchase,1.0,0 -218215123,"Dota 2",play,1.5,0 -198741200,"Dota 2",purchase,1.0,0 -198741200,"Dota 2",play,0.5,0 -216211930,"Dota 2",purchase,1.0,0 -216211930,"Dota 2",play,881.0,0 -216211930,"Super Monday Night Combat",purchase,1.0,0 -216211930,"Super Monday Night Combat",play,22.0,0 -216211930,"Counter-Strike Global Offensive",purchase,1.0,0 -216211930,"Counter-Strike Global Offensive",play,10.5,0 -216211930,"Metro Conflict",purchase,1.0,0 -216211930,"Metro Conflict",play,3.2,0 -216211930,"Prime World",purchase,1.0,0 -216211930,"Prime World",play,2.4,0 -216211930,"Polarity",purchase,1.0,0 -216211930,"Polarity",play,1.2,0 -216211930,"Team Fortress 2",purchase,1.0,0 -216211930,"Team Fortress 2",play,1.2,0 -216211930,"Nosgoth",purchase,1.0,0 -216211930,"Nosgoth",play,1.1,0 -216211930,"PAYDAY 2",purchase,1.0,0 -216211930,"PAYDAY 2",play,0.9,0 -216211930,"Unturned",purchase,1.0,0 -216211930,"Unturned",play,0.6,0 -216211930,"Gear Up",purchase,1.0,0 -216211930,"Gear Up",play,0.3,0 -216211930,"Counter-Strike Nexon Zombies",purchase,1.0,0 -216211930,"Counter-Strike Nexon Zombies",play,0.2,0 -216211930,"NotGTAV",purchase,1.0,0 -216211930,"NotGTAV",play,0.1,0 -216211930,"Portal 2",purchase,1.0,0 -216211930,"Rise of Incarnates",purchase,1.0,0 -216211930,"Marvel Heroes 2015",purchase,1.0,0 -42127150,"NBA 2K9",purchase,1.0,0 -42127150,"NBA 2K9",play,3.4,0 -294250383,"Dota 2",purchase,1.0,0 -294250383,"Dota 2",play,1.5,0 -255076487,"Call of Duty Ghosts",purchase,1.0,0 -255076487,"Call of Duty Ghosts",play,17.8,0 -255076487,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -219780322,"Dota 2",purchase,1.0,0 -219780322,"Dota 2",play,8.3,0 -236054259,"Dota 2",purchase,1.0,0 -236054259,"Dota 2",play,0.8,0 -142494421,"Train Simulator",purchase,1.0,0 -142494421,"Train Simulator",play,41.0,0 -198071235,"Dota 2",purchase,1.0,0 -198071235,"Dota 2",play,1.2,0 -198071235,"Unturned",purchase,1.0,0 -155838344,"Team Fortress 2",purchase,1.0,0 -155838344,"Team Fortress 2",play,1.3,0 -149832495,"Dota 2",purchase,1.0,0 -149832495,"Dota 2",play,9.5,0 -103984034,"Sid Meier's Civilization V",purchase,1.0,0 -103984034,"Sid Meier's Civilization V",play,90.0,0 -103984034,"Rebel Galaxy",purchase,1.0,0 -103984034,"Rebel Galaxy",play,26.0,0 -280721592,"Team Fortress 2",purchase,1.0,0 -280721592,"Team Fortress 2",play,0.7,0 -280721592,"Unturned",purchase,1.0,0 -201410301,"MapleStory",purchase,1.0,0 -201410301,"Warframe",purchase,1.0,0 -136520135,"Dota 2",purchase,1.0,0 -136520135,"Dota 2",play,7.1,0 -97069030,"War Thunder",purchase,1.0,0 -97069030,"War Thunder",play,1835.0,0 -97069030,"Company of Heroes (New Steam Version)",purchase,1.0,0 -97069030,"Company of Heroes (New Steam Version)",play,101.0,0 -97069030,"Magic The Gathering Duels of the Planeswalkers 2012",purchase,1.0,0 -97069030,"Magic The Gathering Duels of the Planeswalkers 2012",play,84.0,0 -97069030,"Dungeon Defenders",purchase,1.0,0 -97069030,"Dungeon Defenders",play,38.0,0 -97069030,"Team Fortress 2",purchase,1.0,0 -97069030,"Team Fortress 2",play,32.0,0 -97069030,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -97069030,"Warhammer 40,000 Dawn of War II Retribution",play,31.0,0 -97069030,"Dota 2",purchase,1.0,0 -97069030,"Dota 2",play,22.0,0 -97069030,"Sanctum 2",purchase,1.0,0 -97069030,"Sanctum 2",play,17.6,0 -97069030,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -97069030,"Dark Souls Prepare to Die Edition",play,3.1,0 -97069030,"Company of Heroes Tales of Valor",purchase,1.0,0 -97069030,"Company of Heroes Tales of Valor",play,0.3,0 -97069030,"Company of Heroes",purchase,1.0,0 -97069030,"Company of Heroes",play,0.1,0 -97069030,"PlanetSide 2",purchase,1.0,0 -97069030,"PlanetSide 2",play,0.1,0 -97069030,"Company of Heroes Opposing Fronts",purchase,1.0,0 -249605317,"Cry of Fear",purchase,1.0,0 -249605317,"MapleStory",purchase,1.0,0 -249605317,"No More Room in Hell",purchase,1.0,0 -249605317,"Warframe",purchase,1.0,0 -296139952,"Team Fortress 2",purchase,1.0,0 -296139952,"Team Fortress 2",play,0.6,0 -300035772,"Rebel Galaxy",purchase,1.0,0 -300035772,"Rebel Galaxy",play,8.0,0 -177519904,"Dota 2",purchase,1.0,0 -177519904,"Dota 2",play,17.5,0 -177519904,"HAWKEN",purchase,1.0,0 -177519904,"HAWKEN",play,0.4,0 -177519904,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -177519904,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.2,0 -177519904,"Warframe",purchase,1.0,0 -106028574,"Fallout New Vegas",purchase,1.0,0 -106028574,"Fallout New Vegas",play,27.0,0 -106028574,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -106028574,"Fallout New Vegas Dead Money",purchase,1.0,0 -106028574,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -260729536,"Dota 2",purchase,1.0,0 -260729536,"Dota 2",play,0.5,0 -308851352,"War Thunder",purchase,1.0,0 -28031199,"Counter-Strike Source",purchase,1.0,0 -28031199,"Counter-Strike Source",play,286.0,0 -28031199,"Sid Meier's Civilization V",purchase,1.0,0 -28031199,"Sid Meier's Civilization V",play,231.0,0 -28031199,"Counter-Strike Global Offensive",purchase,1.0,0 -28031199,"Counter-Strike Global Offensive",play,9.4,0 -28031199,"Napoleon Total War",purchase,1.0,0 -28031199,"Napoleon Total War",play,3.8,0 -28031199,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -28031199,"Call of Duty Black Ops - Multiplayer",play,0.2,0 -28031199,"Call of Duty Black Ops",purchase,1.0,0 -28031199,"RaceRoom Racing Experience ",purchase,1.0,0 -219554846,"Dota 2",purchase,1.0,0 -219554846,"Dota 2",play,15.8,0 -219554846,"Rise of Incarnates",purchase,1.0,0 -138655214,"Dota 2",purchase,1.0,0 -138655214,"Dota 2",play,1.7,0 -21075893,"Half-Life 2 Deathmatch",purchase,1.0,0 -21075893,"Half-Life 2 Deathmatch",play,0.4,0 -21075893,"Counter-Strike Source",purchase,1.0,0 -21075893,"Half-Life 2",purchase,1.0,0 -21075893,"Half-Life 2 Lost Coast",purchase,1.0,0 -21075893,"Half-Life Source",purchase,1.0,0 -21075893,"Half-Life Deathmatch Source",purchase,1.0,0 -53898495,"Guild Wars",purchase,1.0,0 -53898495,"Guild Wars",play,981.0,0 -53898495,"Neverwinter",purchase,1.0,0 -53898495,"Neverwinter",play,234.0,0 -53898495,"Warframe",purchase,1.0,0 -53898495,"Warframe",play,190.0,0 -53898495,"Borderlands 2",purchase,1.0,0 -53898495,"Borderlands 2",play,188.0,0 -53898495,"The Witcher 3 Wild Hunt",purchase,1.0,0 -53898495,"The Witcher 3 Wild Hunt",play,177.0,0 -53898495,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -53898495,"The Witcher 2 Assassins of Kings Enhanced Edition",play,161.0,0 -53898495,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -53898495,"Dragon Age Origins - Ultimate Edition",play,112.0,0 -53898495,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -53898495,"Baldur's Gate Enhanced Edition",play,95.0,0 -53898495,"The Secret World",purchase,1.0,0 -53898495,"The Secret World",play,76.0,0 -53898495,"FINAL FANTASY XIV A Realm Reborn",purchase,1.0,0 -53898495,"FINAL FANTASY XIV A Realm Reborn",play,63.0,0 -53898495,"Fallout New Vegas",purchase,1.0,0 -53898495,"Fallout New Vegas",play,63.0,0 -53898495,"Saints Row IV",purchase,1.0,0 -53898495,"Saints Row IV",play,59.0,0 -53898495,"The Elder Scrolls V Skyrim",purchase,1.0,0 -53898495,"The Elder Scrolls V Skyrim",play,58.0,0 -53898495,"Sid Meier's Civilization V",purchase,1.0,0 -53898495,"Sid Meier's Civilization V",play,52.0,0 -53898495,"The Witcher Enhanced Edition",purchase,1.0,0 -53898495,"The Witcher Enhanced Edition",play,46.0,0 -53898495,"Torchlight II",purchase,1.0,0 -53898495,"Torchlight II",play,44.0,0 -53898495,"Baldur's Gate II Enhanced Edition",purchase,1.0,0 -53898495,"Baldur's Gate II Enhanced Edition",play,36.0,0 -53898495,"Titan Quest Immortal Throne",purchase,1.0,0 -53898495,"Titan Quest Immortal Throne",play,36.0,0 -53898495,"DC Universe Online",purchase,1.0,0 -53898495,"DC Universe Online",play,35.0,0 -53898495,"Pillars of Eternity",purchase,1.0,0 -53898495,"Pillars of Eternity",play,33.0,0 -53898495,"Gauntlet ",purchase,1.0,0 -53898495,"Gauntlet ",play,29.0,0 -53898495,"Magicka",purchase,1.0,0 -53898495,"Magicka",play,28.0,0 -53898495,"Grim Dawn",purchase,1.0,0 -53898495,"Grim Dawn",play,28.0,0 -53898495,"Tomb Raider",purchase,1.0,0 -53898495,"Tomb Raider",play,25.0,0 -53898495,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -53898495,"The Incredible Adventures of Van Helsing",play,25.0,0 -53898495,"Unepic",purchase,1.0,0 -53898495,"Unepic",play,24.0,0 -53898495,"The Lord of the Rings War in the North",purchase,1.0,0 -53898495,"The Lord of the Rings War in the North",play,24.0,0 -53898495,"Divinity Original Sin",purchase,1.0,0 -53898495,"Divinity Original Sin",play,21.0,0 -53898495,"F.E.A.R. 3",purchase,1.0,0 -53898495,"F.E.A.R. 3",play,18.8,0 -53898495,"Victor Vran",purchase,1.0,0 -53898495,"Victor Vran",play,18.6,0 -53898495,"Terraria",purchase,1.0,0 -53898495,"Terraria",play,16.6,0 -53898495,"Hunted The Demon's Forge",purchase,1.0,0 -53898495,"Hunted The Demon's Forge",play,16.3,0 -53898495,"DmC Devil May Cry",purchase,1.0,0 -53898495,"DmC Devil May Cry",play,16.3,0 -53898495,"Legend of Grimrock",purchase,1.0,0 -53898495,"Legend of Grimrock",play,15.6,0 -53898495,"Fallout 4",purchase,1.0,0 -53898495,"Fallout 4",play,15.4,0 -53898495,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -53898495,"Vampire The Masquerade - Bloodlines",play,14.2,0 -53898495,"Starbound",purchase,1.0,0 -53898495,"Starbound",play,14.0,0 -53898495,"Dungeon Siege III",purchase,1.0,0 -53898495,"Dungeon Siege III",play,13.3,0 -53898495,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -53898495,"Batman Arkham Asylum GOTY Edition",play,13.3,0 -53898495,"Path of Exile",purchase,1.0,0 -53898495,"Path of Exile",play,13.0,0 -53898495,"The Testament of Sherlock Holmes",purchase,1.0,0 -53898495,"The Testament of Sherlock Holmes",play,10.7,0 -53898495,"Batman Arkham City GOTY",purchase,1.0,0 -53898495,"Batman Arkham City GOTY",play,10.2,0 -53898495,"Lara Croft and the Guardian of Light",purchase,1.0,0 -53898495,"Lara Croft and the Guardian of Light",play,6.9,0 -53898495,"TERA",purchase,1.0,0 -53898495,"TERA",play,6.6,0 -53898495,"Deponia",purchase,1.0,0 -53898495,"Deponia",play,5.7,0 -53898495,"Game Dev Tycoon",purchase,1.0,0 -53898495,"Game Dev Tycoon",play,5.5,0 -53898495,"FORCED",purchase,1.0,0 -53898495,"FORCED",play,5.0,0 -53898495,"Shadowrun Returns",purchase,1.0,0 -53898495,"Shadowrun Returns",play,5.0,0 -53898495,"Assassin's Creed",purchase,1.0,0 -53898495,"Assassin's Creed",play,4.1,0 -53898495,"Might & Magic X - Legacy ",purchase,1.0,0 -53898495,"Might & Magic X - Legacy ",play,4.1,0 -53898495,"Bastion",purchase,1.0,0 -53898495,"Bastion",play,3.7,0 -53898495,"Star Wars Knights of the Old Republic",purchase,1.0,0 -53898495,"Star Wars Knights of the Old Republic",play,3.4,0 -53898495,"Portal 2",purchase,1.0,0 -53898495,"Portal 2",play,3.3,0 -53898495,"Abyss Odyssey",purchase,1.0,0 -53898495,"Abyss Odyssey",play,3.2,0 -53898495,"LIMBO",purchase,1.0,0 -53898495,"LIMBO",play,2.7,0 -53898495,"FINAL FANTASY VII",purchase,1.0,0 -53898495,"FINAL FANTASY VII",play,2.4,0 -53898495,"Fallout",purchase,1.0,0 -53898495,"Fallout",play,2.3,0 -53898495,"Duke Nukem Forever",purchase,1.0,0 -53898495,"Duke Nukem Forever",play,2.1,0 -53898495,"Killing Floor 2",purchase,1.0,0 -53898495,"Killing Floor 2",play,1.7,0 -53898495,"Defender's Quest Valley of the Forgotten",purchase,1.0,0 -53898495,"Defender's Quest Valley of the Forgotten",play,1.7,0 -53898495,"Sacred 2 Gold",purchase,1.0,0 -53898495,"Sacred 2 Gold",play,1.5,0 -53898495,"Portal",purchase,1.0,0 -53898495,"Portal",play,1.2,0 -53898495,"Prince of Persia The Sands of Time",purchase,1.0,0 -53898495,"Prince of Persia The Sands of Time",play,1.1,0 -53898495,"Half-Life 2",purchase,1.0,0 -53898495,"Half-Life 2",play,0.9,0 -53898495,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -53898495,"Superbrothers Sword & Sworcery EP",play,0.7,0 -53898495,"Oddworld Abe's Oddysee",purchase,1.0,0 -53898495,"Oddworld Abe's Oddysee",play,0.6,0 -53898495,"EverQuest Free-to-Play",purchase,1.0,0 -53898495,"EverQuest Free-to-Play",play,0.6,0 -53898495,"Left 4 Dead 2",purchase,1.0,0 -53898495,"Left 4 Dead 2",play,0.5,0 -53898495,"Fallout 2",purchase,1.0,0 -53898495,"Fallout 2",play,0.5,0 -53898495,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -53898495,"Warhammer 40,000 Dawn of War II",play,0.4,0 -53898495,"Wasteland 2",purchase,1.0,0 -53898495,"Wasteland 2",play,0.3,0 -53898495,"Dungeonland",purchase,1.0,0 -53898495,"Dungeonland",play,0.2,0 -53898495,"Titan Quest",purchase,1.0,0 -53898495,"Titan Quest",play,0.1,0 -53898495,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -53898495,"Alan Wake",purchase,1.0,0 -53898495,"Alan Wake's American Nightmare",purchase,1.0,0 -53898495,"Alice Madness Returns",purchase,1.0,0 -53898495,"Amnesia The Dark Descent",purchase,1.0,0 -53898495,"Assassin's Creed Brotherhood",purchase,1.0,0 -53898495,"Assassin's Creed II",purchase,1.0,0 -53898495,"Assassin's Creed Revelations",purchase,1.0,0 -53898495,"Batman Arkham Origins",purchase,1.0,0 -53898495,"Beyond Divinity",purchase,1.0,0 -53898495,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -53898495,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -53898495,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -53898495,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -53898495,"Chaos on Deponia",purchase,1.0,0 -53898495,"DARK",purchase,1.0,0 -53898495,"Divine Divinity",purchase,1.0,0 -53898495,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -53898495,"Dungeon Defenders Eternity",purchase,1.0,0 -53898495,"Dungeon Siege",purchase,1.0,0 -53898495,"Dungeon Siege 2",purchase,1.0,0 -53898495,"Evoland",purchase,1.0,0 -53898495,"Fable Anniversary",purchase,1.0,0 -53898495,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -53898495,"Fallout New Vegas Dead Money",purchase,1.0,0 -53898495,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -53898495,"Fallout Tactics",purchase,1.0,0 -53898495,"FINAL FANTASY XIV A Realm Reborn CE (NA version)",purchase,1.0,0 -53898495,"Guild Wars Trilogy",purchase,1.0,0 -53898495,"Half-Life 2 Lost Coast",purchase,1.0,0 -53898495,"How to Survive",purchase,1.0,0 -53898495,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -53898495,"Magicka Final Frontier",purchase,1.0,0 -53898495,"Magicka Frozen Lake",purchase,1.0,0 -53898495,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -53898495,"Magicka Nippon",purchase,1.0,0 -53898495,"Magicka Party Robes",purchase,1.0,0 -53898495,"Magicka The Watchtower",purchase,1.0,0 -53898495,"Magicka Vietnam",purchase,1.0,0 -53898495,"Magicka Wizard's Survival Kit",purchase,1.0,0 -53898495,"Oddworld Abe's Exoddus",purchase,1.0,0 -53898495,"Orbital Gear",purchase,1.0,0 -53898495,"Prince of Persia",purchase,1.0,0 -53898495,"Prince of Persia The Forgotten Sands",purchase,1.0,0 -53898495,"Prince of Persia The Two Thrones",purchase,1.0,0 -53898495,"Prince of Persia Warrior Within",purchase,1.0,0 -53898495,"Psychonauts",purchase,1.0,0 -53898495,"Psychonauts Demo",purchase,1.0,0 -53898495,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -53898495,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -53898495,"Sleeping Dogs",purchase,1.0,0 -53898495,"Starbound - Unstable",purchase,1.0,0 -53898495,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -53898495,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -53898495,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -53898495,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -53898495,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -53898495,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -53898495,"Tomb Raider Anniversary",purchase,1.0,0 -53898495,"Tomb Raider Chronicles",purchase,1.0,0 -53898495,"Tomb Raider Legend",purchase,1.0,0 -53898495,"Tomb Raider The Last Revelation",purchase,1.0,0 -53898495,"Tomb Raider Underworld",purchase,1.0,0 -53898495,"Tomb Raider I",purchase,1.0,0 -53898495,"Tomb Raider II",purchase,1.0,0 -53898495,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -53898495,"Torchlight",purchase,1.0,0 -53898495,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -53898495,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -53898495,"Wasteland 1 - The Original Classic",purchase,1.0,0 -53898495,"Wasteland 2 Director's Cut",purchase,1.0,0 -53898495,"Zombies Monsters Robots",purchase,1.0,0 -240400609,"Dota 2",purchase,1.0,0 -240400609,"Dota 2",play,7.6,0 -240400609,"War Thunder",purchase,1.0,0 -242300881,"Dota 2",purchase,1.0,0 -242300881,"Dota 2",play,0.3,0 -219080305,"Unturned",purchase,1.0,0 -219080305,"Unturned",play,2.5,0 -64392327,"Napoleon Total War",purchase,1.0,0 -64392327,"Napoleon Total War",play,1648.0,0 -64392327,"Mount & Blade Warband",purchase,1.0,0 -64392327,"Mount & Blade Warband",play,1583.0,0 -64392327,"Total War SHOGUN 2",purchase,1.0,0 -64392327,"Total War SHOGUN 2",play,984.0,0 -64392327,"Total War ROME II - Emperor Edition",purchase,1.0,0 -64392327,"Total War ROME II - Emperor Edition",play,274.0,0 -64392327,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -64392327,"Sid Meier's Civilization Beyond Earth",play,161.0,0 -64392327,"Empire Total War",purchase,1.0,0 -64392327,"Empire Total War",play,157.0,0 -64392327,"XCOM Enemy Unknown",purchase,1.0,0 -64392327,"XCOM Enemy Unknown",play,152.0,0 -64392327,"Mount & Blade With Fire and Sword",purchase,1.0,0 -64392327,"Mount & Blade With Fire and Sword",play,124.0,0 -64392327,"Galactic Civilizations III",purchase,1.0,0 -64392327,"Galactic Civilizations III",play,120.0,0 -64392327,"Sid Meier's Civilization V",purchase,1.0,0 -64392327,"Sid Meier's Civilization V",play,98.0,0 -64392327,"Galactic Civilizations III Soundtrack",purchase,1.0,0 -64392327,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -175423011,"Rust",purchase,1.0,0 -175423011,"Rust",play,179.0,0 -175423011,"No More Room in Hell",purchase,1.0,0 -175423011,"No More Room in Hell",play,15.8,0 -175423011,"PAYDAY The Heist",purchase,1.0,0 -175423011,"PAYDAY The Heist",play,0.2,0 -77830706,"Primal Carnage",purchase,1.0,0 -77830706,"Primal Carnage",play,357.0,0 -77830706,"Kerbal Space Program",purchase,1.0,0 -77830706,"Kerbal Space Program",play,162.0,0 -77830706,"Just Cause 2",purchase,1.0,0 -77830706,"Just Cause 2",play,117.0,0 -77830706,"Grand Theft Auto V",purchase,1.0,0 -77830706,"Grand Theft Auto V",play,104.0,0 -77830706,"Rust",purchase,1.0,0 -77830706,"Rust",play,79.0,0 -77830706,"7 Days to Die",purchase,1.0,0 -77830706,"7 Days to Die",play,72.0,0 -77830706,"Garry's Mod",purchase,1.0,0 -77830706,"Garry's Mod",play,71.0,0 -77830706,"Prison Architect",purchase,1.0,0 -77830706,"Prison Architect",play,48.0,0 -77830706,"Worms Reloaded",purchase,1.0,0 -77830706,"Worms Reloaded",play,47.0,0 -77830706,"Space Engineers",purchase,1.0,0 -77830706,"Space Engineers",play,44.0,0 -77830706,"Primal Carnage Extinction",purchase,1.0,0 -77830706,"Primal Carnage Extinction",play,41.0,0 -77830706,"Mafia II",purchase,1.0,0 -77830706,"Mafia II",play,35.0,0 -77830706,"Watch_Dogs",purchase,1.0,0 -77830706,"Watch_Dogs",play,31.0,0 -77830706,"DayZ",purchase,1.0,0 -77830706,"DayZ",play,27.0,0 -77830706,"Cities Skylines",purchase,1.0,0 -77830706,"Cities Skylines",play,22.0,0 -77830706,"Dino D-Day",purchase,1.0,0 -77830706,"Dino D-Day",play,18.4,0 -77830706,"Fallout New Vegas",purchase,1.0,0 -77830706,"Fallout New Vegas",play,17.7,0 -77830706,"State of Decay",purchase,1.0,0 -77830706,"State of Decay",play,12.3,0 -77830706,"PAYDAY 2",purchase,1.0,0 -77830706,"PAYDAY 2",play,10.3,0 -77830706,"The Forest",purchase,1.0,0 -77830706,"The Forest",play,9.8,0 -77830706,"Serious Sam 3 BFE",purchase,1.0,0 -77830706,"Serious Sam 3 BFE",play,9.6,0 -77830706,"Arma 2 Operation Arrowhead",purchase,1.0,0 -77830706,"Arma 2 Operation Arrowhead",play,8.6,0 -77830706,"Medieval Engineers",purchase,1.0,0 -77830706,"Medieval Engineers",play,8.1,0 -77830706,"The Dead Linger",purchase,1.0,0 -77830706,"The Dead Linger",play,7.6,0 -77830706,"ORION Prelude",purchase,1.0,0 -77830706,"ORION Prelude",play,6.0,0 -77830706,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -77830706,"Just Cause 2 Multiplayer Mod",play,5.6,0 -77830706,"Dying Light",purchase,1.0,0 -77830706,"Dying Light",play,5.1,0 -77830706,"Grand Theft Auto IV",purchase,1.0,0 -77830706,"Grand Theft Auto IV",play,3.1,0 -77830706,"Fallout 4",purchase,1.0,0 -77830706,"Fallout 4",play,3.0,0 -77830706,"H1Z1",purchase,1.0,0 -77830706,"H1Z1",play,2.9,0 -77830706,"Arma 2",purchase,1.0,0 -77830706,"Arma 2",play,2.4,0 -77830706,"Arma 2 DayZ Mod",purchase,1.0,0 -77830706,"Arma 2 DayZ Mod",play,2.0,0 -77830706,"Homefront",purchase,1.0,0 -77830706,"Homefront",play,2.0,0 -77830706,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -77830706,"Kane & Lynch 2 Dog Days",play,1.9,0 -77830706,"Dead Island",purchase,1.0,0 -77830706,"Dead Island",play,1.1,0 -77830706,"Miscreated",purchase,1.0,0 -77830706,"Miscreated",play,1.1,0 -77830706,"Fallen Earth",purchase,1.0,0 -77830706,"Fallen Earth",play,0.9,0 -77830706,"LEGO Worlds",purchase,1.0,0 -77830706,"LEGO Worlds",play,0.8,0 -77830706,"Nether",purchase,1.0,0 -77830706,"Nether",play,0.6,0 -77830706,"Blockland",purchase,1.0,0 -77830706,"Blockland",play,0.5,0 -77830706,"Blockscape",purchase,1.0,0 -77830706,"Blockscape",play,0.5,0 -77830706,"BRINK",purchase,1.0,0 -77830706,"BRINK",play,0.4,0 -77830706,"Unturned",purchase,1.0,0 -77830706,"Unturned",play,0.3,0 -77830706,"Dota 2",purchase,1.0,0 -77830706,"Dota 2",play,0.3,0 -77830706,"Arma 2 British Armed Forces",purchase,1.0,0 -77830706,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -77830706,"Arma 2 Private Military Company",purchase,1.0,0 -77830706,"Crysis",purchase,1.0,0 -77830706,"Crysis 2 Maximum Edition",purchase,1.0,0 -77830706,"Crysis Warhead",purchase,1.0,0 -77830706,"Crysis Wars",purchase,1.0,0 -77830706,"Dead Island Riptide",purchase,1.0,0 -77830706,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -77830706,"H1Z1 Test Server",purchase,1.0,0 -77830706,"Nether - Chosen",purchase,1.0,0 -77830706,"Nether Arena",purchase,1.0,0 -77830706,"Robocraft",purchase,1.0,0 -77830706,"State of Decay - Breakdown",purchase,1.0,0 -77830706,"State of Decay - Lifeline",purchase,1.0,0 -77830706,"theHunter",purchase,1.0,0 -77830706,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -209016933,"7 Days to Die",purchase,1.0,0 -209016933,"Don't Starve",purchase,1.0,0 -209016933,"Don't Starve Together Beta",purchase,1.0,0 -200039228,"Soldier Front 2",purchase,1.0,0 -200039228,"Soldier Front 2",play,0.6,0 -292196792,"Dota 2",purchase,1.0,0 -292196792,"Dota 2",play,5.4,0 -268935456,"Dota 2",purchase,1.0,0 -268935456,"Dota 2",play,0.3,0 -14758912,"Counter-Strike",purchase,1.0,0 -14758912,"Counter-Strike",play,85.0,0 -14758912,"Counter-Strike Condition Zero",purchase,1.0,0 -14758912,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -249495968,"Sniper Ghost Warrior 2",purchase,1.0,0 -249495968,"Sniper Ghost Warrior 2",play,16.2,0 -249495968,"HIS (Heroes In the Sky)",purchase,1.0,0 -249495968,"HIS (Heroes In the Sky)",play,0.1,0 -249495968,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -187692242,"Sid Meier's Civilization V",purchase,1.0,0 -187692242,"Sid Meier's Civilization V",play,49.0,0 -187692242,"Spec Ops The Line",purchase,1.0,0 -187692242,"Spec Ops The Line",play,1.6,0 -187692242,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -187692242,"Sid Meier's Civilization Beyond Earth",play,0.6,0 -187692242,"APB Reloaded",purchase,1.0,0 -187692242,"Free to Play",purchase,1.0,0 -187692242,"No More Room in Hell",purchase,1.0,0 -187692242,"Nosgoth",purchase,1.0,0 -187692242,"Rusty Hearts",purchase,1.0,0 -187692242,"Sid Meier's Starships",purchase,1.0,0 -187692242,"Tactical Intervention",purchase,1.0,0 -187692242,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -187692242,"Warframe",purchase,1.0,0 -44021324,"Sid Meier's Civilization V",purchase,1.0,0 -44021324,"Sid Meier's Civilization V",play,105.0,0 -44021324,"BioShock",purchase,1.0,0 -44021324,"BioShock",play,31.0,0 -44021324,"Crysis",purchase,1.0,0 -44021324,"Crysis",play,18.1,0 -44021324,"Duke Nukem Forever",purchase,1.0,0 -44021324,"Duke Nukem Forever",play,3.2,0 -44021324,"BioShock 2",purchase,1.0,0 -44021324,"BioShock 2",play,1.4,0 -44021324,"The Longest Journey",purchase,1.0,0 -44021324,"The Longest Journey",play,0.6,0 -44021324,"X-COM Enforcer",purchase,1.0,0 -44021324,"X-COM Enforcer",play,0.6,0 -44021324,"Braid",purchase,1.0,0 -44021324,"Braid",play,0.4,0 -44021324,"King Arthur - The Role-playing Wargame",purchase,1.0,0 -44021324,"King Arthur - The Role-playing Wargame",play,0.3,0 -44021324,"BioShock Infinite",purchase,1.0,0 -44021324,"Counter-Strike Source",purchase,1.0,0 -44021324,"Day of Defeat Source",purchase,1.0,0 -44021324,"Half-Life 2 Deathmatch",purchase,1.0,0 -44021324,"Half-Life 2 Lost Coast",purchase,1.0,0 -44021324,"King Arthur The Druids",purchase,1.0,0 -44021324,"King Arthur The Saxons",purchase,1.0,0 -44021324,"X-COM Apocalypse",purchase,1.0,0 -44021324,"X-COM Interceptor",purchase,1.0,0 -44021324,"X-COM Terror from the Deep",purchase,1.0,0 -44021324,"X-COM UFO Defense",purchase,1.0,0 -197279094,"Unturned",purchase,1.0,0 -197279094,"Unturned",play,19.6,0 -197279094,"Magicka Wizard Wars",purchase,1.0,0 -197279094,"Magicka Wizard Wars",play,2.0,0 -197279094,"Star Conflict",purchase,1.0,0 -197279094,"Star Conflict",play,1.4,0 -93578126,"Dota 2",purchase,1.0,0 -93578126,"Dota 2",play,1648.0,0 -93578126,"Team Fortress 2",purchase,1.0,0 -93578126,"Team Fortress 2",play,0.6,0 -282923824,"Dota 2",purchase,1.0,0 -282923824,"Dota 2",play,4.7,0 -282923824,"Clicker Heroes",purchase,1.0,0 -282923824,"Clicker Heroes",play,0.1,0 -282923824,"Tribes Ascend",purchase,1.0,0 -282923824,"Trove",purchase,1.0,0 -134839311,"Arma 2 Operation Arrowhead",purchase,1.0,0 -134839311,"Arma 2 Operation Arrowhead",play,338.0,0 -134839311,"Arma 2",purchase,1.0,0 -134839311,"Arma 2",play,9.7,0 -134839311,"America's Army Proving Grounds",purchase,1.0,0 -134839311,"America's Army Proving Grounds",play,7.4,0 -134839311,"Heroes & Generals",purchase,1.0,0 -134839311,"Heroes & Generals",play,2.7,0 -134839311,"Arma 2 DayZ Mod",purchase,1.0,0 -134839311,"Arma 2 DayZ Mod",play,1.3,0 -134839311,"H1Z1",purchase,1.0,0 -134839311,"H1Z1",play,1.2,0 -134839311,"Team Fortress 2",purchase,1.0,0 -134839311,"Team Fortress 2",play,0.9,0 -134839311,"theHunter",purchase,1.0,0 -134839311,"theHunter",play,0.4,0 -134839311,"Star Conflict",purchase,1.0,0 -134839311,"Star Conflict",play,0.4,0 -134839311,"War Thunder",purchase,1.0,0 -134839311,"Arma 2 British Armed Forces",purchase,1.0,0 -134839311,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -134839311,"Arma 2 Private Military Company",purchase,1.0,0 -134839311,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -134839311,"APB Reloaded",purchase,1.0,0 -134839311,"Blacklight Retribution",purchase,1.0,0 -134839311,"Copa Petrobras de Marcas",purchase,1.0,0 -134839311,"Defiance",purchase,1.0,0 -134839311,"H1Z1 Test Server",purchase,1.0,0 -134839311,"PlanetSide 2",purchase,1.0,0 -134839311,"Sleeping Dogs",purchase,1.0,0 -134839311,"Survarium",purchase,1.0,0 -134839311,"Tactical Intervention",purchase,1.0,0 -134839311,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -134839311,"Warface",purchase,1.0,0 -134839311,"War Inc. Battlezone",purchase,1.0,0 -134839311,"World of Guns Gun Disassembly",purchase,1.0,0 -198314976,"theHunter",purchase,1.0,0 -198314976,"theHunter",play,0.1,0 -198314976,"Fistful of Frags",purchase,1.0,0 -198314976,"The Lord of the Rings Online",purchase,1.0,0 -198314976,"Star Trek Online",purchase,1.0,0 -198314976,"Fallen Earth",purchase,1.0,0 -198314976,"Gotham City Impostors Free To Play",purchase,1.0,0 -198314976,"Happy Wars",purchase,1.0,0 -198314976,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -198314976,"Warface",purchase,1.0,0 -198314976,"Warframe",purchase,1.0,0 -169964396,"Don't Starve",purchase,1.0,0 -169964396,"Don't Starve",play,608.0,0 -169964396,"Garry's Mod",purchase,1.0,0 -169964396,"Garry's Mod",play,7.0,0 -169964396,"Solar 2",purchase,1.0,0 -169964396,"Solar 2",play,2.8,0 -169964396,"Little Inferno",purchase,1.0,0 -169964396,"Little Inferno",play,2.6,0 -169964396,"Plug & Play",purchase,1.0,0 -169964396,"Plug & Play",play,0.2,0 -169964396,"Don't Starve Together Beta",purchase,1.0,0 -169964396,"Dead Island Epidemic",purchase,1.0,0 -169964396,"Portal",purchase,1.0,0 -285545510,"Dota 2",purchase,1.0,0 -285545510,"Dota 2",play,0.4,0 -89229462,"Counter-Strike Nexon Zombies",purchase,1.0,0 -89229462,"Counter-Strike Nexon Zombies",play,8.9,0 -89229462,"Supreme Commander 2",purchase,1.0,0 -131876863,"Spiral Knights",purchase,1.0,0 -131876863,"Spiral Knights",play,234.0,0 -131876863,"Rusty Hearts",purchase,1.0,0 -131876863,"Rusty Hearts",play,143.0,0 -131876863,"Elsword",purchase,1.0,0 -131876863,"Elsword",play,116.0,0 -131876863,"AirMech",purchase,1.0,0 -131876863,"AirMech",play,30.0,0 -131876863,"Zombies Monsters Robots",purchase,1.0,0 -131876863,"Zombies Monsters Robots",play,22.0,0 -131876863,"Team Fortress 2",purchase,1.0,0 -131876863,"Team Fortress 2",play,20.0,0 -131876863,"Skullgirls",purchase,1.0,0 -131876863,"Skullgirls",play,18.4,0 -131876863,"Loadout",purchase,1.0,0 -131876863,"Loadout",play,18.3,0 -131876863,"La Tale",purchase,1.0,0 -131876863,"La Tale",play,13.8,0 -131876863,"Lost Saga North America",purchase,1.0,0 -131876863,"Lost Saga North America",play,6.9,0 -131876863,"Dragon Nest Europe",purchase,1.0,0 -131876863,"Dragon Nest Europe",play,2.9,0 -131876863,"Dota 2",purchase,1.0,0 -131876863,"Dota 2",play,2.3,0 -131876863,"Magicka Wizard Wars",purchase,1.0,0 -131876863,"Magicka Wizard Wars",play,2.1,0 -131876863,"Archeblade",purchase,1.0,0 -131876863,"Archeblade",play,2.1,0 -131876863,"Dead Island Epidemic",purchase,1.0,0 -131876863,"Dead Island Epidemic",play,1.6,0 -131876863,"GunZ 2 The Second Duel",purchase,1.0,0 -131876863,"GunZ 2 The Second Duel",play,1.5,0 -131876863,"Aura Kingdom",purchase,1.0,0 -131876863,"Aura Kingdom",play,1.0,0 -131876863,"Dragon's Prophet",purchase,1.0,0 -131876863,"Dragon's Prophet",play,0.9,0 -131876863,"METAL SLUG DEFENSE",purchase,1.0,0 -131876863,"METAL SLUG DEFENSE",play,0.6,0 -131876863,"Metal Reaper Online",purchase,1.0,0 -131876863,"Metal Reaper Online",play,0.4,0 -131876863,"Divine Souls",purchase,1.0,0 -131876863,"Divine Souls",play,0.4,0 -131876863,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -131876863,"Infinity Wars - Animated Trading Card Game",play,0.2,0 -131876863,"Gear Up",purchase,1.0,0 -131876863,"Firefall",purchase,1.0,0 -131876863,"Skullgirls Endless Beta",purchase,1.0,0 -131876863,"TERA",purchase,1.0,0 -305912574,"ARK Survival Evolved",purchase,1.0,0 -305912574,"ARK Survival Evolved",play,14.5,0 -305912574,"EVE Online",purchase,1.0,0 -305912574,"EVE Online",play,7.9,0 -155471453,"Dota 2",purchase,1.0,0 -155471453,"Dota 2",play,1.5,0 -35009482,"Team Fortress 2",purchase,1.0,0 -35009482,"Team Fortress 2",play,211.0,0 -35009482,"Garry's Mod",purchase,1.0,0 -35009482,"Garry's Mod",play,193.0,0 -35009482,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -35009482,"Call of Duty Black Ops II - Multiplayer",play,100.0,0 -35009482,"Half-Life 2 Deathmatch",purchase,1.0,0 -35009482,"Half-Life 2 Deathmatch",play,67.0,0 -35009482,"Saints Row The Third",purchase,1.0,0 -35009482,"Saints Row The Third",play,30.0,0 -35009482,"Ace of Spades",purchase,1.0,0 -35009482,"Ace of Spades",play,29.0,0 -35009482,"Left 4 Dead 2",purchase,1.0,0 -35009482,"Left 4 Dead 2",play,25.0,0 -35009482,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -35009482,"Call of Duty Black Ops II - Zombies",play,10.6,0 -35009482,"DC Universe Online",purchase,1.0,0 -35009482,"DC Universe Online",play,8.5,0 -35009482,"StarForge",purchase,1.0,0 -35009482,"StarForge",play,1.6,0 -35009482,"Gothic 3",purchase,1.0,0 -35009482,"Gothic 3",play,0.9,0 -35009482,"Portal",purchase,1.0,0 -35009482,"Portal",play,0.6,0 -35009482,"Gothic II Gold Edition",purchase,1.0,0 -35009482,"Gothic II Gold Edition",play,0.4,0 -35009482,"AdVenture Capitalist",purchase,1.0,0 -35009482,"AdVenture Capitalist",play,0.3,0 -35009482,"Codename Gordon",purchase,1.0,0 -35009482,"Codename Gordon",play,0.3,0 -35009482,"Half-Life 2 Lost Coast",purchase,1.0,0 -35009482,"Half-Life 2 Lost Coast",play,0.3,0 -35009482,"Alien Swarm",purchase,1.0,0 -35009482,"Alien Swarm",play,0.2,0 -35009482,"Call of Duty Black Ops II",purchase,1.0,0 -35009482,"Gothic",purchase,1.0,0 -35009482,"Clicker Heroes",purchase,1.0,0 -35009482,"Golden Rush",purchase,1.0,0 -35009482,"World of Guns Gun Disassembly",purchase,1.0,0 -136135322,"The Binding of Isaac Rebirth",purchase,1.0,0 -136135322,"The Binding of Isaac Rebirth",play,415.0,0 -136135322,"Rust",purchase,1.0,0 -136135322,"Rust",play,100.0,0 -136135322,"The Binding of Isaac",purchase,1.0,0 -136135322,"The Binding of Isaac",play,55.0,0 -136135322,"Path of Exile",purchase,1.0,0 -136135322,"Path of Exile",play,37.0,0 -136135322,"Rogue Legacy",purchase,1.0,0 -136135322,"Rogue Legacy",play,36.0,0 -136135322,"The Elder Scrolls V Skyrim",purchase,1.0,0 -136135322,"The Elder Scrolls V Skyrim",play,25.0,0 -136135322,"Don't Starve",purchase,1.0,0 -136135322,"Don't Starve",play,23.0,0 -136135322,"The Walking Dead",purchase,1.0,0 -136135322,"The Walking Dead",play,17.1,0 -136135322,"Scribblenauts Unlimited",purchase,1.0,0 -136135322,"Scribblenauts Unlimited",play,15.0,0 -136135322,"South Park The Stick of Truth",purchase,1.0,0 -136135322,"South Park The Stick of Truth",play,13.4,0 -136135322,"Portal 2",purchase,1.0,0 -136135322,"Portal 2",play,13.1,0 -136135322,"Little Inferno",purchase,1.0,0 -136135322,"Little Inferno",play,10.6,0 -136135322,"Half-Life 2",purchase,1.0,0 -136135322,"Half-Life 2",play,10.2,0 -136135322,"The Walking Dead Season Two",purchase,1.0,0 -136135322,"The Walking Dead Season Two",play,9.7,0 -136135322,"Undertale",purchase,1.0,0 -136135322,"Undertale",play,9.4,0 -136135322,"Garry's Mod",purchase,1.0,0 -136135322,"Garry's Mod",play,8.8,0 -136135322,"Shelter",purchase,1.0,0 -136135322,"Shelter",play,8.4,0 -136135322,"BattleBlock Theater",purchase,1.0,0 -136135322,"BattleBlock Theater",play,8.3,0 -136135322,"The Wolf Among Us",purchase,1.0,0 -136135322,"The Wolf Among Us",play,7.9,0 -136135322,"Botanicula",purchase,1.0,0 -136135322,"Botanicula",play,7.8,0 -136135322,"FEZ",purchase,1.0,0 -136135322,"FEZ",play,7.3,0 -136135322,"Fingered",purchase,1.0,0 -136135322,"Fingered",play,7.0,0 -136135322,"Spore",purchase,1.0,0 -136135322,"Spore",play,6.8,0 -136135322,"Spelunky",purchase,1.0,0 -136135322,"Spelunky",play,6.7,0 -136135322,"Goat Simulator",purchase,1.0,0 -136135322,"Goat Simulator",play,6.1,0 -136135322,"LEGO The Lord of the Rings",purchase,1.0,0 -136135322,"LEGO The Lord of the Rings",play,5.9,0 -136135322,"Thomas Was Alone",purchase,1.0,0 -136135322,"Thomas Was Alone",play,5.4,0 -136135322,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -136135322,"Rocketbirds Hardboiled Chicken",play,4.9,0 -136135322,"World of Goo",purchase,1.0,0 -136135322,"World of Goo",play,4.7,0 -136135322,"Insaniquarium! Deluxe",purchase,1.0,0 -136135322,"Insaniquarium! Deluxe",play,4.6,0 -136135322,"Octodad Dadliest Catch",purchase,1.0,0 -136135322,"Octodad Dadliest Catch",play,4.5,0 -136135322,"Super Amazing Wagon Adventure",purchase,1.0,0 -136135322,"Super Amazing Wagon Adventure",play,4.4,0 -136135322,"Mark of the Ninja",purchase,1.0,0 -136135322,"Mark of the Ninja",play,4.3,0 -136135322,"Portal",purchase,1.0,0 -136135322,"Portal",play,4.2,0 -136135322,"Gunpoint",purchase,1.0,0 -136135322,"Gunpoint",play,4.2,0 -136135322,"Jazzpunk",purchase,1.0,0 -136135322,"Jazzpunk",play,3.9,0 -136135322,"To the Moon",purchase,1.0,0 -136135322,"To the Moon",play,3.9,0 -136135322,"DLC Quest",purchase,1.0,0 -136135322,"DLC Quest",play,3.6,0 -136135322,"LIMBO",purchase,1.0,0 -136135322,"LIMBO",play,3.6,0 -136135322,"Evoland",purchase,1.0,0 -136135322,"Evoland",play,3.6,0 -136135322,"Surgeon Simulator",purchase,1.0,0 -136135322,"Surgeon Simulator",play,3.5,0 -136135322,"The Stanley Parable",purchase,1.0,0 -136135322,"The Stanley Parable",play,3.4,0 -136135322,"Reus",purchase,1.0,0 -136135322,"Reus",play,3.1,0 -136135322,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -136135322,"Viscera Cleanup Detail Santa's Rampage",play,3.0,0 -136135322,"Home",purchase,1.0,0 -136135322,"Home",play,3.0,0 -136135322,"Amnesia The Dark Descent",purchase,1.0,0 -136135322,"Amnesia The Dark Descent",play,2.7,0 -136135322,"Machinarium",purchase,1.0,0 -136135322,"Machinarium",play,2.2,0 -136135322,"World of Zoo",purchase,1.0,0 -136135322,"World of Zoo",play,2.1,0 -136135322,"Mount Your Friends",purchase,1.0,0 -136135322,"Mount Your Friends",play,2.1,0 -136135322,"A Walk in the Dark",purchase,1.0,0 -136135322,"A Walk in the Dark",play,2.1,0 -136135322,"Don't Starve Together Beta",purchase,1.0,0 -136135322,"Don't Starve Together Beta",play,2.1,0 -136135322,"Counter-Strike Source",purchase,1.0,0 -136135322,"Counter-Strike Source",play,2.0,0 -136135322,"Always Sometimes Monsters",purchase,1.0,0 -136135322,"Always Sometimes Monsters",play,1.9,0 -136135322,"Gomo",purchase,1.0,0 -136135322,"Gomo",play,1.7,0 -136135322,"Dead Pixels",purchase,1.0,0 -136135322,"Dead Pixels",play,1.6,0 -136135322,"Unturned",purchase,1.0,0 -136135322,"Unturned",play,1.5,0 -136135322,"McPixel",purchase,1.0,0 -136135322,"McPixel",play,1.3,0 -136135322,"Nidhogg",purchase,1.0,0 -136135322,"Nidhogg",play,1.3,0 -136135322,"A Bird Story",purchase,1.0,0 -136135322,"A Bird Story",play,1.2,0 -136135322,"HOARD",purchase,1.0,0 -136135322,"HOARD",play,1.2,0 -136135322,"Lume",purchase,1.0,0 -136135322,"Lume",play,1.1,0 -136135322,"Super Meat Boy",purchase,1.0,0 -136135322,"Super Meat Boy",play,1.1,0 -136135322,"Terraria",purchase,1.0,0 -136135322,"Terraria",play,1.0,0 -136135322,"A Virus Named TOM",purchase,1.0,0 -136135322,"A Virus Named TOM",play,1.0,0 -136135322,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -136135322,"Superbrothers Sword & Sworcery EP",play,0.9,0 -136135322,"The Legend of Korra",purchase,1.0,0 -136135322,"The Legend of Korra",play,0.8,0 -136135322,"The Ship Single Player",purchase,1.0,0 -136135322,"The Ship Single Player",play,0.8,0 -136135322,"Cthulhu Saves the World ",purchase,1.0,0 -136135322,"Cthulhu Saves the World ",play,0.8,0 -136135322,"SpeedRunners",purchase,1.0,0 -136135322,"SpeedRunners",play,0.7,0 -136135322,"Electronic Super Joy",purchase,1.0,0 -136135322,"Electronic Super Joy",play,0.7,0 -136135322,"Brtal Legend",purchase,1.0,0 -136135322,"Brtal Legend",play,0.7,0 -136135322,"BioShock",purchase,1.0,0 -136135322,"BioShock",play,0.7,0 -136135322,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -136135322,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",play,0.6,0 -136135322,"Blood of the Werewolf",purchase,1.0,0 -136135322,"Blood of the Werewolf",play,0.5,0 -136135322,"Finding Teddy",purchase,1.0,0 -136135322,"Finding Teddy",play,0.5,0 -136135322,"Love",purchase,1.0,0 -136135322,"Love",play,0.5,0 -136135322,"The Showdown Effect",purchase,1.0,0 -136135322,"The Showdown Effect",play,0.4,0 -136135322,"Dota 2",purchase,1.0,0 -136135322,"Dota 2",play,0.4,0 -136135322,"Bastion",purchase,1.0,0 -136135322,"Bastion",play,0.4,0 -136135322,"Monaco",purchase,1.0,0 -136135322,"Monaco",play,0.3,0 -136135322,"Toki Tori 2+",purchase,1.0,0 -136135322,"Toki Tori 2+",play,0.3,0 -136135322,"Coil",purchase,1.0,0 -136135322,"Coil",play,0.3,0 -136135322,"The Ship Tutorial",purchase,1.0,0 -136135322,"The Ship Tutorial",play,0.3,0 -136135322,"Papo & Yo",purchase,1.0,0 -136135322,"Papo & Yo",play,0.3,0 -136135322,"Joe Danger 2 The Movie",purchase,1.0,0 -136135322,"Joe Danger 2 The Movie",play,0.2,0 -136135322,"Castle Crashers",purchase,1.0,0 -136135322,"Castle Crashers",play,0.2,0 -136135322,"Droplitz",purchase,1.0,0 -136135322,"Droplitz",play,0.1,0 -136135322,"Eets Munchies",purchase,1.0,0 -136135322,"Eets Munchies",play,0.1,0 -136135322,"Super Hexagon",purchase,1.0,0 -136135322,"The Basement Collection",purchase,1.0,0 -136135322,"FTL Faster Than Light",purchase,1.0,0 -136135322,"Fallout 3",purchase,1.0,0 -136135322,"The Ship",purchase,1.0,0 -136135322,"Trine 2",purchase,1.0,0 -136135322,"Arma 2",purchase,1.0,0 -136135322,"Arma 2 Operation Arrowhead",purchase,1.0,0 -136135322,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -136135322,"Arma Cold War Assault",purchase,1.0,0 -136135322,"BioShock 2",purchase,1.0,0 -136135322,"Breath of Death VII ",purchase,1.0,0 -136135322,"Bully Scholarship Edition",purchase,1.0,0 -136135322,"Don't Starve Reign of Giants",purchase,1.0,0 -136135322,"Electronic Super Joy Groove City",purchase,1.0,0 -136135322,"Electronic Super Joy Bonus Content",purchase,1.0,0 -136135322,"Finding Teddy Soundtrack",purchase,1.0,0 -136135322,"Half-Life 2 Lost Coast",purchase,1.0,0 -136135322,"Haunted Memories",purchase,1.0,0 -136135322,"Hotline Miami",purchase,1.0,0 -136135322,"Metro 2033",purchase,1.0,0 -136135322,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",purchase,1.0,0 -230213922,"Dota 2",purchase,1.0,0 -230213922,"Dota 2",play,1.1,0 -230213922,"Transformice",purchase,1.0,0 -8542204,"Dota 2",purchase,1.0,0 -8542204,"Dota 2",play,129.0,0 -8542204,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -8542204,"Call of Duty Black Ops - Multiplayer",play,21.0,0 -8542204,"Sid Meier's Civilization V",purchase,1.0,0 -8542204,"Sid Meier's Civilization V",play,17.3,0 -8542204,"Portal 2",purchase,1.0,0 -8542204,"Portal 2",play,16.0,0 -8542204,"Mirror's Edge",purchase,1.0,0 -8542204,"Mirror's Edge",play,14.9,0 -8542204,"DiRT Showdown",purchase,1.0,0 -8542204,"DiRT Showdown",play,13.3,0 -8542204,"Grand Theft Auto V",purchase,1.0,0 -8542204,"Grand Theft Auto V",play,13.1,0 -8542204,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -8542204,"Call of Duty Black Ops II - Multiplayer",play,12.1,0 -8542204,"Portal",purchase,1.0,0 -8542204,"Portal",play,11.8,0 -8542204,"Counter-Strike Global Offensive",purchase,1.0,0 -8542204,"Counter-Strike Global Offensive",play,7.0,0 -8542204,"Borderlands 2",purchase,1.0,0 -8542204,"Borderlands 2",play,4.3,0 -8542204,"Little Inferno",purchase,1.0,0 -8542204,"Little Inferno",play,2.8,0 -8542204,"The Crew",purchase,1.0,0 -8542204,"The Crew",play,2.4,0 -8542204,"Call of Duty Black Ops",purchase,1.0,0 -8542204,"Call of Duty Black Ops",play,2.1,0 -8542204,"Goat Simulator",purchase,1.0,0 -8542204,"Goat Simulator",play,1.8,0 -8542204,"The Elder Scrolls V Skyrim",purchase,1.0,0 -8542204,"The Elder Scrolls V Skyrim",play,1.7,0 -8542204,"ARK Survival Evolved",purchase,1.0,0 -8542204,"ARK Survival Evolved",play,1.7,0 -8542204,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -8542204,"Call of Duty Advanced Warfare - Multiplayer",play,1.5,0 -8542204,"Torchlight II",purchase,1.0,0 -8542204,"Torchlight II",play,1.0,0 -8542204,"Counter-Strike Source",purchase,1.0,0 -8542204,"Counter-Strike Source",play,1.0,0 -8542204,"Sniper Elite V2",purchase,1.0,0 -8542204,"Sniper Elite V2",play,1.0,0 -8542204,"Warframe",purchase,1.0,0 -8542204,"Warframe",play,0.9,0 -8542204,"Team Fortress 2",purchase,1.0,0 -8542204,"Team Fortress 2",play,0.9,0 -8542204,"The Binding of Isaac Rebirth",purchase,1.0,0 -8542204,"The Binding of Isaac Rebirth",play,0.8,0 -8542204,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -8542204,"Burnout Paradise The Ultimate Box",play,0.8,0 -8542204,"Crysis 2 Maximum Edition",purchase,1.0,0 -8542204,"Crysis 2 Maximum Edition",play,0.7,0 -8542204,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -8542204,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.6,0 -8542204,"Left 4 Dead 2",purchase,1.0,0 -8542204,"Left 4 Dead 2",play,0.5,0 -8542204,"Call of Duty Black Ops II",purchase,1.0,0 -8542204,"Call of Duty Black Ops II",play,0.5,0 -8542204,"Natural Selection 2",purchase,1.0,0 -8542204,"Natural Selection 2",play,0.4,0 -8542204,"Metro 2033",purchase,1.0,0 -8542204,"Metro 2033",play,0.4,0 -8542204,"Dead Space",purchase,1.0,0 -8542204,"Dead Space",play,0.3,0 -8542204,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -8542204,"Microsoft Flight Simulator X Steam Edition",play,0.2,0 -8542204,"Arma 2",purchase,1.0,0 -8542204,"Arma 2",play,0.2,0 -8542204,"Arma 2 Operation Arrowhead",purchase,1.0,0 -8542204,"Arma 2 Operation Arrowhead",play,0.1,0 -8542204,"Call of Duty Advanced Warfare",purchase,1.0,0 -8542204,"Defiance",purchase,1.0,0 -8542204,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -8542204,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -8542204,"Half-Life 2",purchase,1.0,0 -8542204,"Half-Life 2 Deathmatch",purchase,1.0,0 -8542204,"Half-Life 2 Lost Coast",purchase,1.0,0 -8542204,"Star Conflict",purchase,1.0,0 -8542204,"The Witcher Enhanced Edition",purchase,1.0,0 -66006698,"Aliens vs. Predator",purchase,1.0,0 -66006698,"Mafia II",purchase,1.0,0 -66006698,"Sniper Ghost Warrior",purchase,1.0,0 -300620379,"Garry's Mod",purchase,1.0,0 -300620379,"Garry's Mod",play,11.4,0 -300620379,"Dragomon Hunter",purchase,1.0,0 -300620379,"Dragomon Hunter",play,7.9,0 -300620379,"Mitos.is The Game",purchase,1.0,0 -300620379,"Mitos.is The Game",play,7.0,0 -88715858,"Portal",purchase,1.0,0 -138080934,"Dota 2",purchase,1.0,0 -138080934,"Dota 2",play,2.3,0 -203422894,"Dota 2",purchase,1.0,0 -203422894,"Dota 2",play,379.0,0 -203422894,"Loadout",purchase,1.0,0 -203422894,"Unturned",purchase,1.0,0 -194670621,"Team Fortress 2",purchase,1.0,0 -194670621,"Team Fortress 2",play,529.0,0 -194670621,"Garry's Mod",purchase,1.0,0 -194670621,"Garry's Mod",play,197.0,0 -194670621,"Left 4 Dead 2",purchase,1.0,0 -194670621,"Left 4 Dead 2",play,28.0,0 -194670621,"Tactical Intervention",purchase,1.0,0 -194670621,"Tactical Intervention",play,28.0,0 -194670621,"Portal 2",purchase,1.0,0 -194670621,"Portal 2",play,19.2,0 -194670621,"BioShock Infinite",purchase,1.0,0 -194670621,"BioShock Infinite",play,8.5,0 -194670621,"Goat Simulator",purchase,1.0,0 -194670621,"Goat Simulator",play,7.4,0 -194670621,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -194670621,"Deus Ex Human Revolution - Director's Cut",play,5.2,0 -194670621,"Minecraft Story Mode - A Telltale Games Series",purchase,1.0,0 -194670621,"Minecraft Story Mode - A Telltale Games Series",play,4.9,0 -194670621,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -194670621,"School of Dragons How to Train Your Dragon",play,4.5,0 -194670621,"Besiege",purchase,1.0,0 -194670621,"Besiege",play,3.9,0 -194670621,"Chivalry Medieval Warfare",purchase,1.0,0 -194670621,"Chivalry Medieval Warfare",play,3.7,0 -194670621,"Fistful of Frags",purchase,1.0,0 -194670621,"Fistful of Frags",play,3.3,0 -194670621,"Toribash",purchase,1.0,0 -194670621,"Toribash",play,3.0,0 -194670621,"Subnautica",purchase,1.0,0 -194670621,"Subnautica",play,3.0,0 -194670621,"No More Room in Hell",purchase,1.0,0 -194670621,"No More Room in Hell",play,2.9,0 -194670621,"Wild Warfare",purchase,1.0,0 -194670621,"Wild Warfare",play,2.6,0 -194670621,"Hurtworld",purchase,1.0,0 -194670621,"Hurtworld",play,2.0,0 -194670621,"Source Filmmaker",purchase,1.0,0 -194670621,"Source Filmmaker",play,2.0,0 -194670621,"Red Crucible Firestorm",purchase,1.0,0 -194670621,"Red Crucible Firestorm",play,1.7,0 -194670621,"World of Guns Gun Disassembly",purchase,1.0,0 -194670621,"World of Guns Gun Disassembly",play,1.4,0 -194670621,"War Thunder",purchase,1.0,0 -194670621,"War Thunder",play,0.8,0 -194670621,"Portal Stories Mel",purchase,1.0,0 -194670621,"Portal Stories Mel",play,0.5,0 -194670621,"Robocraft",purchase,1.0,0 -194670621,"Robocraft",play,0.5,0 -194670621,"Max Payne 3",purchase,1.0,0 -194670621,"Max Payne 3",play,0.4,0 -194670621,"Unturned",purchase,1.0,0 -194670621,"Unturned",play,0.3,0 -194670621,"Only If",purchase,1.0,0 -194670621,"Only If",play,0.2,0 -194670621,"Plug & Play",purchase,1.0,0 -194670621,"Plug & Play",play,0.2,0 -194670621,"The Way of Life Free Edition",purchase,1.0,0 -194670621,"The Way of Life Free Edition",play,0.1,0 -194670621,"Metaverse Construction Kit",purchase,1.0,0 -194670621,"Metaverse Construction Kit",play,0.1,0 -194670621,"Gear Up",purchase,1.0,0 -194670621,"LEGO The Hobbit",purchase,1.0,0 -194670621,"DCS World",purchase,1.0,0 -194670621,"Dirty Bomb",purchase,1.0,0 -194670621,"Patch testing for Chivalry",purchase,1.0,0 -188684344,"Sniper Elite 3",purchase,1.0,0 -188684344,"Sniper Elite 3",play,0.9,0 -253424499,"Unturned",purchase,1.0,0 -253424499,"Unturned",play,3.2,0 -81585721,"Counter-Strike Global Offensive",purchase,1.0,0 -81585721,"Counter-Strike Global Offensive",play,867.0,0 -81585721,"Terraria",purchase,1.0,0 -81585721,"Terraria",play,135.0,0 -81585721,"Bulletstorm",purchase,1.0,0 -81585721,"Bulletstorm",play,132.0,0 -81585721,"Starbound",purchase,1.0,0 -81585721,"Starbound",play,111.0,0 -81585721,"Garry's Mod",purchase,1.0,0 -81585721,"Garry's Mod",play,69.0,0 -81585721,"Half-Life 2",purchase,1.0,0 -81585721,"Half-Life 2",play,46.0,0 -81585721,"Arma 2 Operation Arrowhead",purchase,1.0,0 -81585721,"Arma 2 Operation Arrowhead",play,41.0,0 -81585721,"Poker Night 2",purchase,1.0,0 -81585721,"Poker Night 2",play,32.0,0 -81585721,"Fallout New Vegas",purchase,1.0,0 -81585721,"Fallout New Vegas",play,30.0,0 -81585721,"LISA",purchase,1.0,0 -81585721,"LISA",play,30.0,0 -81585721,"Grand Theft Auto IV",purchase,1.0,0 -81585721,"Grand Theft Auto IV",play,29.0,0 -81585721,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -81585721,"The Elder Scrolls IV Oblivion ",play,28.0,0 -81585721,"Portal 2",purchase,1.0,0 -81585721,"Portal 2",play,19.4,0 -81585721,"Team Fortress 2",purchase,1.0,0 -81585721,"Team Fortress 2",play,17.3,0 -81585721,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",purchase,1.0,0 -81585721,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",play,15.5,0 -81585721,"FINAL FANTASY VII",purchase,1.0,0 -81585721,"FINAL FANTASY VII",play,13.4,0 -81585721,"Left 4 Dead 2",purchase,1.0,0 -81585721,"Left 4 Dead 2",play,10.4,0 -81585721,"Darkest Dungeon",purchase,1.0,0 -81585721,"Darkest Dungeon",play,9.5,0 -81585721,"Evoland",purchase,1.0,0 -81585721,"Evoland",play,7.8,0 -81585721,"Roguelands",purchase,1.0,0 -81585721,"Roguelands",play,7.2,0 -81585721,"SpeedRunners",purchase,1.0,0 -81585721,"SpeedRunners",play,6.3,0 -81585721,"Counter-Strike Source",purchase,1.0,0 -81585721,"Counter-Strike Source",play,6.1,0 -81585721,"Unturned",purchase,1.0,0 -81585721,"Unturned",play,6.1,0 -81585721,"The Stanley Parable",purchase,1.0,0 -81585721,"The Stanley Parable",play,5.5,0 -81585721,"Serious Sam 3 BFE",purchase,1.0,0 -81585721,"Serious Sam 3 BFE",play,5.2,0 -81585721,"Hotline Miami",purchase,1.0,0 -81585721,"Hotline Miami",play,4.8,0 -81585721,"Gotham City Impostors",purchase,1.0,0 -81585721,"Gotham City Impostors",play,4.3,0 -81585721,"DC Universe Online",purchase,1.0,0 -81585721,"DC Universe Online",play,4.1,0 -81585721,"Orcs Must Die! 2",purchase,1.0,0 -81585721,"Orcs Must Die! 2",play,4.0,0 -81585721,"Dishonored",purchase,1.0,0 -81585721,"Dishonored",play,4.0,0 -81585721,"Left 4 Dead",purchase,1.0,0 -81585721,"Left 4 Dead",play,3.9,0 -81585721,"Hitman Blood Money",purchase,1.0,0 -81585721,"Hitman Blood Money",play,3.2,0 -81585721,"Call of Duty Modern Warfare 2",purchase,1.0,0 -81585721,"Call of Duty Modern Warfare 2",play,3.1,0 -81585721,"FINAL FANTASY XIV A Realm Reborn",purchase,1.0,0 -81585721,"FINAL FANTASY XIV A Realm Reborn",play,3.0,0 -81585721,"Surgeon Simulator",purchase,1.0,0 -81585721,"Surgeon Simulator",play,2.4,0 -81585721,"The Escapists",purchase,1.0,0 -81585721,"The Escapists",play,1.5,0 -81585721,"Warframe",purchase,1.0,0 -81585721,"Warframe",play,1.5,0 -81585721,"Octodad Dadliest Catch",purchase,1.0,0 -81585721,"Octodad Dadliest Catch",play,1.3,0 -81585721,"Gotham City Impostors Free To Play",purchase,1.0,0 -81585721,"Gotham City Impostors Free To Play",play,1.1,0 -81585721,"POSTAL 2",purchase,1.0,0 -81585721,"POSTAL 2",play,1.1,0 -81585721,"The Ship Single Player",purchase,1.0,0 -81585721,"The Ship Single Player",play,1.1,0 -81585721,"DayZ",purchase,1.0,0 -81585721,"DayZ",play,1.0,0 -81585721,"Batman Arkham City",purchase,1.0,0 -81585721,"Batman Arkham City",play,0.8,0 -81585721,"Hitman Absolution",purchase,1.0,0 -81585721,"Hitman Absolution",play,0.8,0 -81585721,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -81585721,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.7,0 -81585721,"Dead Space",purchase,1.0,0 -81585721,"Dead Space",play,0.6,0 -81585721,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -81585721,"STAR WARS Knights of the Old Republic II The Sith Lords",play,0.5,0 -81585721,"Poker Night at the Inventory",purchase,1.0,0 -81585721,"Poker Night at the Inventory",play,0.5,0 -81585721,"Audiosurf",purchase,1.0,0 -81585721,"Audiosurf",play,0.5,0 -81585721,"Half-Life",purchase,1.0,0 -81585721,"Half-Life",play,0.5,0 -81585721,"Deus Ex Human Revolution",purchase,1.0,0 -81585721,"Deus Ex Human Revolution",play,0.5,0 -81585721,"Arma 2",purchase,1.0,0 -81585721,"Arma 2",play,0.4,0 -81585721,"From Dust",purchase,1.0,0 -81585721,"From Dust",play,0.4,0 -81585721,"Deus Ex Game of the Year Edition",purchase,1.0,0 -81585721,"Deus Ex Game of the Year Edition",play,0.3,0 -81585721,"Reus",purchase,1.0,0 -81585721,"Reus",play,0.3,0 -81585721,"Grand Theft Auto San Andreas",purchase,1.0,0 -81585721,"Grand Theft Auto San Andreas",play,0.3,0 -81585721,"BioShock 2",purchase,1.0,0 -81585721,"BioShock 2",play,0.2,0 -81585721,"Alan Wake",purchase,1.0,0 -81585721,"Alan Wake",play,0.2,0 -81585721,"Darksiders",purchase,1.0,0 -81585721,"Darksiders",play,0.2,0 -81585721,"LEGO The Lord of the Rings",purchase,1.0,0 -81585721,"LEGO The Lord of the Rings",play,0.2,0 -81585721,"Serious Sam The Random Encounter",purchase,1.0,0 -81585721,"Serious Sam The Random Encounter",play,0.2,0 -81585721,"The Witcher Enhanced Edition",purchase,1.0,0 -81585721,"The Witcher Enhanced Edition",play,0.2,0 -81585721,"Sid Meier's Civilization V",purchase,1.0,0 -81585721,"Sid Meier's Civilization V",play,0.2,0 -81585721,"BioShock",purchase,1.0,0 -81585721,"BioShock",play,0.1,0 -81585721,"GunZ 2 The Second Duel",purchase,1.0,0 -81585721,"GunZ 2 The Second Duel",play,0.1,0 -81585721,"Loadout",purchase,1.0,0 -81585721,"Loadout",play,0.1,0 -81585721,"Half-Life 2 Deathmatch",purchase,1.0,0 -81585721,"Half-Life 2 Deathmatch",play,0.1,0 -81585721,"State of Decay",purchase,1.0,0 -81585721,"Team Fortress Classic",purchase,1.0,0 -81585721,"Contagion",purchase,1.0,0 -81585721,"Half-Life Deathmatch Source",purchase,1.0,0 -81585721,"PAYDAY 2",purchase,1.0,0 -81585721,"Trapped Dead",purchase,1.0,0 -81585721,"The Ship",purchase,1.0,0 -81585721,"Darksiders II",purchase,1.0,0 -81585721,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -81585721,"Batman Arkham City GOTY",purchase,1.0,0 -81585721,"Castlevania Lords of Shadow - Ultimate Edition",purchase,1.0,0 -81585721,"Dead Horde",purchase,1.0,0 -81585721,"Deadlight",purchase,1.0,0 -81585721,"Dead Space 2",purchase,1.0,0 -81585721,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -81585721,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -81585721,"Deus Ex Invisible War",purchase,1.0,0 -81585721,"Emily is Away",purchase,1.0,0 -81585721,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -81585721,"Fallout New Vegas Dead Money",purchase,1.0,0 -81585721,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -81585721,"Far Cry 3",purchase,1.0,0 -81585721,"FINAL FANTASY XIV A Realm Reborn CE (NA version)",purchase,1.0,0 -81585721,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -81585721,"Grand Theft Auto San Andreas",purchase,1.0,0 -81585721,"Grand Theft Auto Vice City",purchase,1.0,0 -81585721,"Grand Theft Auto Vice City",purchase,1.0,0 -81585721,"Grand Theft Auto III",purchase,1.0,0 -81585721,"Grand Theft Auto III",purchase,1.0,0 -81585721,"Half-Life 2 Episode One",purchase,1.0,0 -81585721,"Half-Life 2 Episode Two",purchase,1.0,0 -81585721,"Half-Life 2 Lost Coast",purchase,1.0,0 -81585721,"Half-Life Blue Shift",purchase,1.0,0 -81585721,"Half-Life Opposing Force",purchase,1.0,0 -81585721,"Half-Life Source",purchase,1.0,0 -81585721,"Hitman 2 Silent Assassin",purchase,1.0,0 -81585721,"Hitman Codename 47",purchase,1.0,0 -81585721,"Hitman Sniper Challenge",purchase,1.0,0 -81585721,"Max Payne 3",purchase,1.0,0 -81585721,"Serious Sam 2",purchase,1.0,0 -81585721,"Serious Sam Classic The First Encounter",purchase,1.0,0 -81585721,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -81585721,"Serious Sam Classics Revolution",purchase,1.0,0 -81585721,"Serious Sam Double D XXL",purchase,1.0,0 -81585721,"Serious Sam HD The First Encounter",purchase,1.0,0 -81585721,"Starbound - Unstable",purchase,1.0,0 -81585721,"The Ship Tutorial",purchase,1.0,0 -72588600,"Day of Defeat",purchase,1.0,0 -72588600,"Day of Defeat",play,39.0,0 -72588600,"Middle-earth Shadow of Mordor",purchase,1.0,0 -72588600,"Middle-earth Shadow of Mordor",play,25.0,0 -281579960,"Dota 2",purchase,1.0,0 -281579960,"Dota 2",play,0.5,0 -144144570,"Dota 2",purchase,1.0,0 -144144570,"Dota 2",play,366.0,0 -33261284,"Counter-Strike",purchase,1.0,0 -33261284,"Counter-Strike",play,1899.0,0 -33261284,"Counter-Strike Condition Zero",purchase,1.0,0 -33261284,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -33261284,"Day of Defeat",purchase,1.0,0 -33261284,"Deathmatch Classic",purchase,1.0,0 -33261284,"Infinite Crisis",purchase,1.0,0 -33261284,"Ricochet",purchase,1.0,0 -205636324,"Dota 2",purchase,1.0,0 -205636324,"Dota 2",play,154.0,0 -205636324,"TOME Immortal Arena",purchase,1.0,0 -205636324,"TOME Immortal Arena",play,0.3,0 -75231491,"Fallout New Vegas",purchase,1.0,0 -75231491,"Fallout New Vegas",play,159.0,0 -167752146,"Counter-Strike Global Offensive",purchase,1.0,0 -167752146,"Counter-Strike Global Offensive",play,347.0,0 -167752146,"DayZ",purchase,1.0,0 -167752146,"DayZ",play,14.4,0 -167752146,"Unturned",purchase,1.0,0 -120141290,"Team Fortress 2",purchase,1.0,0 -120141290,"Team Fortress 2",play,0.5,0 -84395245,"Sid Meier's Civilization V",purchase,1.0,0 -84395245,"Sid Meier's Civilization V",play,28.0,0 -133355027,"Mount & Blade Warband",purchase,1.0,0 -133355027,"Mount & Blade Warband",play,8.2,0 -234555589,"Dead Rising 3",purchase,1.0,0 -234555589,"Dead Rising 3",play,12.6,0 -234555589,"Call of Duty Modern Warfare 3",purchase,1.0,0 -234555589,"Call of Duty Modern Warfare 3",play,7.6,0 -234555589,"Cabela's Big Game Hunter Pro Hunts",purchase,1.0,0 -234555589,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -234555589,"Dead Rising 3 DLC1",purchase,1.0,0 -234555589,"Dead Rising 3 DLC2",purchase,1.0,0 -234555589,"Dead Rising 3 DLC3",purchase,1.0,0 -234555589,"Dead Rising 3 DLC4",purchase,1.0,0 -135329995,"Dota 2",purchase,1.0,0 -135329995,"Dota 2",play,0.2,0 -111795034,"Dota 2",purchase,1.0,0 -111795034,"Dota 2",play,552.0,0 -111795034,"Counter-Strike",purchase,1.0,0 -111795034,"Counter-Strike",play,39.0,0 -111795034,"Day of Defeat",purchase,1.0,0 -111795034,"Day of Defeat",play,3.8,0 -111795034,"Counter-Strike Condition Zero",purchase,1.0,0 -111795034,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -111795034,"Deathmatch Classic",purchase,1.0,0 -111795034,"Ricochet",purchase,1.0,0 -86733992,"Terraria",purchase,1.0,0 -86733992,"Terraria",play,130.0,0 -86733992,"Garry's Mod",purchase,1.0,0 -86733992,"Garry's Mod",play,88.0,0 -86733992,"Titan Quest Immortal Throne",purchase,1.0,0 -86733992,"Titan Quest Immortal Throne",play,81.0,0 -86733992,"Risk of Rain",purchase,1.0,0 -86733992,"Risk of Rain",play,63.0,0 -86733992,"StarForge",purchase,1.0,0 -86733992,"StarForge",play,46.0,0 -86733992,"Torchlight II",purchase,1.0,0 -86733992,"Torchlight II",play,41.0,0 -86733992,"The Binding of Isaac",purchase,1.0,0 -86733992,"The Binding of Isaac",play,36.0,0 -86733992,"Robocraft",purchase,1.0,0 -86733992,"Robocraft",play,31.0,0 -86733992,"Mercenary Kings",purchase,1.0,0 -86733992,"Mercenary Kings",play,29.0,0 -86733992,"Team Fortress 2",purchase,1.0,0 -86733992,"Team Fortress 2",play,29.0,0 -86733992,"Rust",purchase,1.0,0 -86733992,"Rust",play,24.0,0 -86733992,"Don't Starve Together Beta",purchase,1.0,0 -86733992,"Don't Starve Together Beta",play,21.0,0 -86733992,"Infestation Survivor Stories",purchase,1.0,0 -86733992,"Infestation Survivor Stories",play,16.6,0 -86733992,"Starbound",purchase,1.0,0 -86733992,"Starbound",play,13.6,0 -86733992,"The Secret World",purchase,1.0,0 -86733992,"The Secret World",play,12.9,0 -86733992,"Don't Starve",purchase,1.0,0 -86733992,"Don't Starve",play,11.6,0 -86733992,"Iron Brigade",purchase,1.0,0 -86733992,"Iron Brigade",play,9.8,0 -86733992,"7 Days to Die",purchase,1.0,0 -86733992,"7 Days to Die",play,9.1,0 -86733992,"Alien Swarm",purchase,1.0,0 -86733992,"Alien Swarm",play,7.9,0 -86733992,"Unturned",purchase,1.0,0 -86733992,"Unturned",play,7.7,0 -86733992,"ORION Prelude",purchase,1.0,0 -86733992,"ORION Prelude",play,7.3,0 -86733992,"Natural Selection 2",purchase,1.0,0 -86733992,"Natural Selection 2",play,6.6,0 -86733992,"Loadout",purchase,1.0,0 -86733992,"Loadout",play,6.2,0 -86733992,"Counter-Strike Source",purchase,1.0,0 -86733992,"Counter-Strike Source",play,3.1,0 -86733992,"God Mode",purchase,1.0,0 -86733992,"God Mode",play,2.3,0 -86733992,"Dead Island Riptide",purchase,1.0,0 -86733992,"Dead Island Riptide",play,2.2,0 -86733992,"Krater",purchase,1.0,0 -86733992,"Krater",play,1.7,0 -86733992,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -86733992,"The Witcher 2 Assassins of Kings Enhanced Edition",play,1.5,0 -86733992,"Age of Empires III Complete Collection",purchase,1.0,0 -86733992,"Age of Empires III Complete Collection",play,1.3,0 -86733992,"Dota 2",purchase,1.0,0 -86733992,"Dota 2",play,0.6,0 -86733992,"Titan Quest",purchase,1.0,0 -86733992,"Titan Quest",play,0.6,0 -86733992,"Age of Empires II HD Edition",purchase,1.0,0 -86733992,"Age of Empires II HD Edition",play,0.5,0 -86733992,"Insurgency Modern Infantry Combat",purchase,1.0,0 -86733992,"Insurgency Modern Infantry Combat",play,0.4,0 -86733992,"CastleMiner Z",purchase,1.0,0 -86733992,"CastleMiner Z",play,0.3,0 -86733992,"Rogue Legacy",purchase,1.0,0 -86733992,"Rogue Legacy",play,0.1,0 -86733992,"Left 4 Dead 2",purchase,1.0,0 -86733992,"Left 4 Dead 2",play,0.1,0 -86733992,"Monaco",purchase,1.0,0 -86733992,"Monaco",play,0.1,0 -86733992,"Age of Empires II HD The Forgotten",purchase,1.0,0 -86733992,"Dead Island",purchase,1.0,0 -86733992,"Don't Starve Reign of Giants",purchase,1.0,0 -86733992,"Starbound - Unstable",purchase,1.0,0 -278209338,"Counter-Strike Nexon Zombies",purchase,1.0,0 -278209338,"Counter-Strike Nexon Zombies",play,0.8,0 -278209338,"Team Fortress 2",purchase,1.0,0 -278209338,"Team Fortress 2",play,0.4,0 -278209338,"Unturned",purchase,1.0,0 -278209338,"Unturned",play,0.2,0 -278209338,"Trove",purchase,1.0,0 -278209338,"BLOCKADE 3D",purchase,1.0,0 -278209338,"Happy Wars",purchase,1.0,0 -150720815,"Dota 2",purchase,1.0,0 -150720815,"Dota 2",play,417.0,0 -194071007,"Team Fortress 2",purchase,1.0,0 -194071007,"Team Fortress 2",play,3.0,0 -194071007,"BioShock Infinite",purchase,1.0,0 -194071007,"BioShock Infinite",play,0.8,0 -194071007,"Escape",purchase,1.0,0 -51951401,"The Last Remnant",purchase,1.0,0 -51951401,"The Last Remnant",play,11.9,0 -210725110,"Dota 2",purchase,1.0,0 -210725110,"Dota 2",play,1.2,0 -210725110,"APB Reloaded",purchase,1.0,0 -298857855,"Mitos.is The Game",purchase,1.0,0 -298857855,"Mitos.is The Game",play,0.2,0 -301432974,"Trove",purchase,1.0,0 -301432974,"Trove",play,43.0,0 -26101823,"Counter-Strike Source",purchase,1.0,0 -26101823,"Counter-Strike Source",play,0.2,0 -26101823,"Half-Life 2",purchase,1.0,0 -26101823,"Half-Life 2 Deathmatch",purchase,1.0,0 -26101823,"Half-Life 2 Lost Coast",purchase,1.0,0 -26101823,"Half-Life Source",purchase,1.0,0 -26101823,"Half-Life Deathmatch Source",purchase,1.0,0 -11200326,"Counter-Strike Source",purchase,1.0,0 -11200326,"Half-Life 2",purchase,1.0,0 -11200326,"Half-Life 2 Deathmatch",purchase,1.0,0 -11200326,"Half-Life 2 Lost Coast",purchase,1.0,0 -175430751,"Dota 2",purchase,1.0,0 -175430751,"Dota 2",play,0.3,0 -234758647,"Dota 2",purchase,1.0,0 -234758647,"Dota 2",play,0.8,0 -234758647,"Heroes & Generals",purchase,1.0,0 -234758647,"Ragnarok Online 2",purchase,1.0,0 -234758647,"Spiral Knights",purchase,1.0,0 -234758647,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -76420334,"Counter-Strike Global Offensive",purchase,1.0,0 -76420334,"Counter-Strike Global Offensive",play,399.0,0 -76420334,"Terraria",purchase,1.0,0 -76420334,"Terraria",play,203.0,0 -76420334,"Fallout 4",purchase,1.0,0 -76420334,"Fallout 4",play,61.0,0 -76420334,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -76420334,"Fallout 3 - Game of the Year Edition",play,40.0,0 -76420334,"Call of Duty World at War",purchase,1.0,0 -76420334,"Call of Duty World at War",play,30.0,0 -76420334,"Killing Floor",purchase,1.0,0 -76420334,"Killing Floor",play,25.0,0 -76420334,"Garry's Mod",purchase,1.0,0 -76420334,"Garry's Mod",play,19.8,0 -76420334,"Spintires",purchase,1.0,0 -76420334,"Spintires",play,15.5,0 -76420334,"Fallout New Vegas",purchase,1.0,0 -76420334,"Fallout New Vegas",play,14.5,0 -76420334,"Hammerwatch",purchase,1.0,0 -76420334,"Hammerwatch",play,14.4,0 -76420334,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -76420334,"Resident Evil 5 / Biohazard 5",play,13.0,0 -76420334,"Space Engineers",purchase,1.0,0 -76420334,"Space Engineers",play,11.6,0 -76420334,"Viscera Cleanup Detail",purchase,1.0,0 -76420334,"Viscera Cleanup Detail",play,10.7,0 -76420334,"Team Fortress 2",purchase,1.0,0 -76420334,"Team Fortress 2",play,6.0,0 -76420334,"SMITE",purchase,1.0,0 -76420334,"SMITE",play,5.1,0 -76420334,"Don't Starve Together Beta",purchase,1.0,0 -76420334,"Don't Starve Together Beta",play,4.7,0 -76420334,"Construct 2 Free",purchase,1.0,0 -76420334,"Construct 2 Free",play,4.1,0 -76420334,"Kerbal Space Program",purchase,1.0,0 -76420334,"Kerbal Space Program",play,4.0,0 -76420334,"Sir, You Are Being Hunted",purchase,1.0,0 -76420334,"Sir, You Are Being Hunted",play,3.9,0 -76420334,"Guns of Icarus Online",purchase,1.0,0 -76420334,"Guns of Icarus Online",play,3.3,0 -76420334,"Brawlhalla",purchase,1.0,0 -76420334,"Brawlhalla",play,3.2,0 -76420334,"Cry of Fear",purchase,1.0,0 -76420334,"Cry of Fear",play,3.2,0 -76420334,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -76420334,"Rising Storm/Red Orchestra 2 Multiplayer",play,3.1,0 -76420334,"Age of Empires II HD Edition",purchase,1.0,0 -76420334,"Age of Empires II HD Edition",play,2.9,0 -76420334,"Q.U.B.E Director's Cut",purchase,1.0,0 -76420334,"Q.U.B.E Director's Cut",play,2.6,0 -76420334,"Fistful of Frags",purchase,1.0,0 -76420334,"Fistful of Frags",play,2.6,0 -76420334,"Mount & Blade Warband",purchase,1.0,0 -76420334,"Mount & Blade Warband",play,2.5,0 -76420334,"Next Car Game Wreckfest",purchase,1.0,0 -76420334,"Next Car Game Wreckfest",play,2.0,0 -76420334,"The Binding of Isaac",purchase,1.0,0 -76420334,"The Binding of Isaac",play,1.9,0 -76420334,"War Thunder",purchase,1.0,0 -76420334,"War Thunder",play,1.8,0 -76420334,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -76420334,"Viscera Cleanup Detail Santa's Rampage",play,1.7,0 -76420334,"Don't Starve",purchase,1.0,0 -76420334,"Don't Starve",play,1.7,0 -76420334,"Counter-Strike Source",purchase,1.0,0 -76420334,"Counter-Strike Source",play,1.6,0 -76420334,"Risk of Rain",purchase,1.0,0 -76420334,"Risk of Rain",play,1.6,0 -76420334,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -76420334,"Viscera Cleanup Detail Shadow Warrior",play,1.4,0 -76420334,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -76420334,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,1.4,0 -76420334,"Counter-Strike Nexon Zombies",purchase,1.0,0 -76420334,"Counter-Strike Nexon Zombies",play,1.3,0 -76420334,"theHunter",purchase,1.0,0 -76420334,"theHunter",play,1.1,0 -76420334,"7 Days to Die",purchase,1.0,0 -76420334,"7 Days to Die",play,0.9,0 -76420334,"Dino D-Day",purchase,1.0,0 -76420334,"Dino D-Day",play,0.9,0 -76420334,"Survarium",purchase,1.0,0 -76420334,"Survarium",play,0.9,0 -76420334,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -76420334,"Next Car Game Sneak Peek 2.0",play,0.7,0 -76420334,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -76420334,"Call of Duty Black Ops - Multiplayer",play,0.6,0 -76420334,"resident evil 4 / biohazard 4",purchase,1.0,0 -76420334,"resident evil 4 / biohazard 4",play,0.3,0 -76420334,"No More Room in Hell",purchase,1.0,0 -76420334,"No More Room in Hell",play,0.2,0 -76420334,"Squishy the Suicidal Pig",purchase,1.0,0 -76420334,"Squishy the Suicidal Pig",play,0.2,0 -76420334,"Dungeonland",purchase,1.0,0 -76420334,"Call of Duty Black Ops",purchase,1.0,0 -76420334,"12 Labours of Hercules III Girl Power",purchase,1.0,0 -76420334,"Bionic Commando Rearmed",purchase,1.0,0 -76420334,"DmC Devil May Cry",purchase,1.0,0 -76420334,"Farming Simulator 15",purchase,1.0,0 -76420334,"Goodbye Deponia",purchase,1.0,0 -76420334,"Killing Floor - Toy Master",purchase,1.0,0 -76420334,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -76420334,"Loadout",purchase,1.0,0 -76420334,"Lost Planet 3",purchase,1.0,0 -76420334,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -76420334,"Remember Me",purchase,1.0,0 -76420334,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -76420334,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -76420334,"Strider",purchase,1.0,0 -76420334,"Ultra Street Fighter IV",purchase,1.0,0 -159741914,"Sniper Elite V2",purchase,1.0,0 -11408688,"Half-Life 2",purchase,1.0,0 -11408688,"Counter-Strike Source",purchase,1.0,0 -11408688,"Half-Life 2 Deathmatch",purchase,1.0,0 -11408688,"Half-Life 2 Lost Coast",purchase,1.0,0 -190754099,"Dota 2",purchase,1.0,0 -190754099,"Dota 2",play,2891.0,0 -190754099,"Toribash",purchase,1.0,0 -190754099,"Toribash",play,28.0,0 -162446312,"Alan Wake",purchase,1.0,0 -94272610,"Stronghold 3",purchase,1.0,0 -94272610,"Stronghold 3",play,32.0,0 -94272610,"Stronghold HD",purchase,1.0,0 -121727972,"Team Fortress 2",purchase,1.0,0 -121727972,"Team Fortress 2",play,3.1,0 -69009454,"Team Fortress 2",purchase,1.0,0 -69009454,"Team Fortress 2",play,180.0,0 -69009454,"Borderlands 2",purchase,1.0,0 -69009454,"Borderlands 2",play,121.0,0 -69009454,"Total War SHOGUN 2",purchase,1.0,0 -69009454,"Total War SHOGUN 2",play,63.0,0 -69009454,"Far Cry 3",purchase,1.0,0 -69009454,"Far Cry 3",play,34.0,0 -69009454,"Prison Architect",purchase,1.0,0 -69009454,"Prison Architect",play,33.0,0 -69009454,"Borderlands",purchase,1.0,0 -69009454,"Borderlands",play,32.0,0 -69009454,"Saints Row The Third",purchase,1.0,0 -69009454,"Saints Row The Third",play,29.0,0 -69009454,"Cities Skylines",purchase,1.0,0 -69009454,"Cities Skylines",play,29.0,0 -69009454,"Crusader Kings II",purchase,1.0,0 -69009454,"Crusader Kings II",play,27.0,0 -69009454,"Medieval II Total War",purchase,1.0,0 -69009454,"Medieval II Total War",play,26.0,0 -69009454,"Sid Meier's Civilization V",purchase,1.0,0 -69009454,"Sid Meier's Civilization V",play,25.0,0 -69009454,"Banished",purchase,1.0,0 -69009454,"Banished",play,23.0,0 -69009454,"Batman Arkham City",purchase,1.0,0 -69009454,"Batman Arkham City",play,23.0,0 -69009454,"Dying Light",purchase,1.0,0 -69009454,"Dying Light",play,23.0,0 -69009454,"Assassin's Creed III",purchase,1.0,0 -69009454,"Assassin's Creed III",play,20.0,0 -69009454,"Tropico 5",purchase,1.0,0 -69009454,"Tropico 5",play,19.3,0 -69009454,"Dead Island",purchase,1.0,0 -69009454,"Dead Island",play,18.7,0 -69009454,"The Elder Scrolls V Skyrim",purchase,1.0,0 -69009454,"The Elder Scrolls V Skyrim",play,16.5,0 -69009454,"BioShock Infinite",purchase,1.0,0 -69009454,"BioShock Infinite",play,15.4,0 -69009454,"Tropico 4",purchase,1.0,0 -69009454,"Tropico 4",play,15.0,0 -69009454,"Left 4 Dead 2",purchase,1.0,0 -69009454,"Left 4 Dead 2",play,14.1,0 -69009454,"Sleeping Dogs",purchase,1.0,0 -69009454,"Sleeping Dogs",play,14.0,0 -69009454,"Assassin's Creed II",purchase,1.0,0 -69009454,"Assassin's Creed II",play,13.7,0 -69009454,"Orcs Must Die! 2",purchase,1.0,0 -69009454,"Orcs Must Die! 2",play,13.4,0 -69009454,"Middle-earth Shadow of Mordor",purchase,1.0,0 -69009454,"Middle-earth Shadow of Mordor",play,11.1,0 -69009454,"State of Decay",purchase,1.0,0 -69009454,"State of Decay",play,11.0,0 -69009454,"Rome Total War",purchase,1.0,0 -69009454,"Rome Total War",play,9.6,0 -69009454,"Torchlight",purchase,1.0,0 -69009454,"Torchlight",play,9.2,0 -69009454,"Counter-Strike Global Offensive",purchase,1.0,0 -69009454,"Counter-Strike Global Offensive",play,8.6,0 -69009454,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -69009454,"The Incredible Adventures of Van Helsing",play,8.4,0 -69009454,"Scribblenauts Unlimited",purchase,1.0,0 -69009454,"Scribblenauts Unlimited",play,8.3,0 -69009454,"Mortal Kombat Komplete Edition",purchase,1.0,0 -69009454,"Mortal Kombat Komplete Edition",play,8.1,0 -69009454,"Tomb Raider",purchase,1.0,0 -69009454,"Tomb Raider",play,7.6,0 -69009454,"Magicka",purchase,1.0,0 -69009454,"Magicka",play,7.1,0 -69009454,"Torchlight II",purchase,1.0,0 -69009454,"Torchlight II",play,7.0,0 -69009454,"The Bureau XCOM Declassified",purchase,1.0,0 -69009454,"The Bureau XCOM Declassified",play,6.9,0 -69009454,"XCOM Enemy Unknown",purchase,1.0,0 -69009454,"XCOM Enemy Unknown",play,6.7,0 -69009454,"Medieval II Total War Kingdoms",purchase,1.0,0 -69009454,"Medieval II Total War Kingdoms",play,6.7,0 -69009454,"PlanetSide 2",purchase,1.0,0 -69009454,"PlanetSide 2",play,6.3,0 -69009454,"Company of Heroes (New Steam Version)",purchase,1.0,0 -69009454,"Company of Heroes (New Steam Version)",play,6.2,0 -69009454,"Dungeon Defenders",purchase,1.0,0 -69009454,"Dungeon Defenders",play,6.1,0 -69009454,"Game Dev Tycoon",purchase,1.0,0 -69009454,"Game Dev Tycoon",play,5.8,0 -69009454,"Guild Wars",purchase,1.0,0 -69009454,"Guild Wars",play,5.7,0 -69009454,"Dota 2",purchase,1.0,0 -69009454,"Dota 2",play,5.6,0 -69009454,"Crysis",purchase,1.0,0 -69009454,"Crysis",play,5.6,0 -69009454,"Call of Duty Modern Warfare 2",purchase,1.0,0 -69009454,"Call of Duty Modern Warfare 2",play,5.5,0 -69009454,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -69009454,"Call of Duty Black Ops II - Multiplayer",play,5.5,0 -69009454,"Ghost Master",purchase,1.0,0 -69009454,"Ghost Master",play,5.2,0 -69009454,"Portal 2",purchase,1.0,0 -69009454,"Portal 2",play,5.2,0 -69009454,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -69009454,"Fallout 3 - Game of the Year Edition",play,5.1,0 -69009454,"Orcs Must Die!",purchase,1.0,0 -69009454,"Orcs Must Die!",play,4.9,0 -69009454,"Goat Simulator",purchase,1.0,0 -69009454,"Goat Simulator",play,4.8,0 -69009454,"Just Cause 2",purchase,1.0,0 -69009454,"Just Cause 2",play,4.7,0 -69009454,"Botanicula",purchase,1.0,0 -69009454,"Botanicula",play,4.7,0 -69009454,"Max Payne 3",purchase,1.0,0 -69009454,"Max Payne 3",play,4.5,0 -69009454,"Stacking",purchase,1.0,0 -69009454,"Stacking",play,4.2,0 -69009454,"Darksiders II",purchase,1.0,0 -69009454,"Darksiders II",play,4.1,0 -69009454,"Dishonored",purchase,1.0,0 -69009454,"Dishonored",play,3.9,0 -69009454,"MURDERED SOUL SUSPECT",purchase,1.0,0 -69009454,"MURDERED SOUL SUSPECT",play,3.7,0 -69009454,"BioShock 2",purchase,1.0,0 -69009454,"BioShock 2",play,3.6,0 -69009454,"Age of Empires II HD Edition",purchase,1.0,0 -69009454,"Age of Empires II HD Edition",play,3.6,0 -69009454,"PROTOTYPE 2",purchase,1.0,0 -69009454,"PROTOTYPE 2",play,3.4,0 -69009454,"Sniper Elite V2",purchase,1.0,0 -69009454,"Sniper Elite V2",play,3.0,0 -69009454,"Overlord II",purchase,1.0,0 -69009454,"Overlord II",play,3.0,0 -69009454,"The Wolf Among Us",purchase,1.0,0 -69009454,"The Wolf Among Us",play,2.7,0 -69009454,"Company of Heroes",purchase,1.0,0 -69009454,"Company of Heroes",play,2.4,0 -69009454,"Garry's Mod",purchase,1.0,0 -69009454,"Garry's Mod",play,2.4,0 -69009454,"Fallout New Vegas",purchase,1.0,0 -69009454,"Fallout New Vegas",play,2.3,0 -69009454,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -69009454,"Tiny and Big Grandpa's Leftovers",play,2.3,0 -69009454,"Spore",purchase,1.0,0 -69009454,"Spore",play,2.2,0 -69009454,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -69009454,"Dark Souls Prepare to Die Edition",play,2.2,0 -69009454,"Alan Wake",purchase,1.0,0 -69009454,"Alan Wake",play,2.2,0 -69009454,"The Binding of Isaac",purchase,1.0,0 -69009454,"The Binding of Isaac",play,2.1,0 -69009454,"The Witcher Enhanced Edition",purchase,1.0,0 -69009454,"The Witcher Enhanced Edition",play,2.1,0 -69009454,"Bastion",purchase,1.0,0 -69009454,"Bastion",play,2.0,0 -69009454,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -69009454,"The Witcher 2 Assassins of Kings Enhanced Edition",play,2.0,0 -69009454,"Red Faction Armageddon",purchase,1.0,0 -69009454,"Red Faction Armageddon",play,1.9,0 -69009454,"Dungeons of Dredmor",purchase,1.0,0 -69009454,"Dungeons of Dredmor",play,1.9,0 -69009454,"FINAL FANTASY VII",purchase,1.0,0 -69009454,"FINAL FANTASY VII",play,1.9,0 -69009454,"The Walking Dead",purchase,1.0,0 -69009454,"The Walking Dead",play,1.8,0 -69009454,"Dead Space 2",purchase,1.0,0 -69009454,"Dead Space 2",play,1.7,0 -69009454,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -69009454,"Warhammer 40,000 Dawn of War II",play,1.7,0 -69009454,"Chivalry Medieval Warfare",purchase,1.0,0 -69009454,"Chivalry Medieval Warfare",play,1.6,0 -69009454,"Metro 2033",purchase,1.0,0 -69009454,"Metro 2033",play,1.6,0 -69009454,"Homefront",purchase,1.0,0 -69009454,"Homefront",play,1.5,0 -69009454,"Deus Ex Human Revolution",purchase,1.0,0 -69009454,"Deus Ex Human Revolution",play,1.5,0 -69009454,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -69009454,"The Elder Scrolls IV Oblivion ",play,1.4,0 -69009454,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -69009454,"Unreal Tournament 3 Black Edition",play,1.4,0 -69009454,"Psychonauts",purchase,1.0,0 -69009454,"Psychonauts",play,1.3,0 -69009454,"Tales of Monkey Island Chapter 1 - Launch of the Screaming Narwhal",purchase,1.0,0 -69009454,"Tales of Monkey Island Chapter 1 - Launch of the Screaming Narwhal",play,1.3,0 -69009454,"SimCity 4 Deluxe",purchase,1.0,0 -69009454,"SimCity 4 Deluxe",play,1.2,0 -69009454,"Kerbal Space Program",purchase,1.0,0 -69009454,"Kerbal Space Program",play,1.2,0 -69009454,"Space Engineers",purchase,1.0,0 -69009454,"Space Engineers",play,1.2,0 -69009454,"Saints Row 2",purchase,1.0,0 -69009454,"Saints Row 2",play,1.1,0 -69009454,"Medieval Engineers",purchase,1.0,0 -69009454,"Medieval Engineers",play,1.1,0 -69009454,"Call of Duty Black Ops II",purchase,1.0,0 -69009454,"Call of Duty Black Ops II",play,1.0,0 -69009454,"Batman Arkham Origins",purchase,1.0,0 -69009454,"Batman Arkham Origins",play,1.0,0 -69009454,"Verdun",purchase,1.0,0 -69009454,"Verdun",play,1.0,0 -69009454,"Divinity Original Sin",purchase,1.0,0 -69009454,"Divinity Original Sin",play,0.9,0 -69009454,"Dragon The Game",purchase,1.0,0 -69009454,"Dragon The Game",play,0.9,0 -69009454,"Darksiders",purchase,1.0,0 -69009454,"Darksiders",play,0.9,0 -69009454,"Serious Sam 3 BFE",purchase,1.0,0 -69009454,"Serious Sam 3 BFE",play,0.9,0 -69009454,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -69009454,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.9,0 -69009454,"ORION Prelude",purchase,1.0,0 -69009454,"ORION Prelude",play,0.8,0 -69009454,"Portal",purchase,1.0,0 -69009454,"Portal",play,0.8,0 -69009454,"Cthulhu Saves the World ",purchase,1.0,0 -69009454,"Cthulhu Saves the World ",play,0.7,0 -69009454,"Age of Empires III Complete Collection",purchase,1.0,0 -69009454,"Age of Empires III Complete Collection",play,0.6,0 -69009454,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -69009454,"Dragon Age Origins - Ultimate Edition",play,0.6,0 -69009454,"Draw a Stickman EPIC",purchase,1.0,0 -69009454,"Draw a Stickman EPIC",play,0.6,0 -69009454,"On the Rain-Slick Precipice of Darkness, Episode One",purchase,1.0,0 -69009454,"On the Rain-Slick Precipice of Darkness, Episode One",play,0.6,0 -69009454,"Machinarium",purchase,1.0,0 -69009454,"Machinarium",play,0.5,0 -69009454,"Unreal Gold",purchase,1.0,0 -69009454,"Unreal Gold",play,0.5,0 -69009454,"Antichamber",purchase,1.0,0 -69009454,"Antichamber",play,0.5,0 -69009454,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -69009454,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,0.5,0 -69009454,"Divine Divinity",purchase,1.0,0 -69009454,"Divine Divinity",play,0.4,0 -69009454,"Gnomoria",purchase,1.0,0 -69009454,"Gnomoria",play,0.4,0 -69009454,"Warhammer 40,000 Space Marine",purchase,1.0,0 -69009454,"Warhammer 40,000 Space Marine",play,0.4,0 -69009454,"Dear Esther",purchase,1.0,0 -69009454,"Dear Esther",play,0.4,0 -69009454,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -69009454,"Star Wars The Force Unleashed Ultimate Sith Edition",play,0.4,0 -69009454,"Far Cry 2",purchase,1.0,0 -69009454,"Far Cry 2",play,0.4,0 -69009454,"Dead Space",purchase,1.0,0 -69009454,"Dead Space",play,0.4,0 -69009454,"Marvel Heroes 2015",purchase,1.0,0 -69009454,"Marvel Heroes 2015",play,0.3,0 -69009454,"Costume Quest",purchase,1.0,0 -69009454,"Costume Quest",play,0.3,0 -69009454,"Assassin's Creed Brotherhood",purchase,1.0,0 -69009454,"Assassin's Creed Brotherhood",play,0.3,0 -69009454,"Dungeon Defenders II",purchase,1.0,0 -69009454,"Dungeon Defenders II",play,0.3,0 -69009454,"The Book of Unwritten Tales",purchase,1.0,0 -69009454,"The Book of Unwritten Tales",play,0.3,0 -69009454,"Iron Brigade",purchase,1.0,0 -69009454,"Iron Brigade",play,0.3,0 -69009454,"Breath of Death VII ",purchase,1.0,0 -69009454,"Breath of Death VII ",play,0.2,0 -69009454,"Blacklight Retribution",purchase,1.0,0 -69009454,"Blacklight Retribution",play,0.2,0 -69009454,"Grand Theft Auto III",purchase,1.0,0 -69009454,"Grand Theft Auto III",play,0.2,0 -69009454,"Solar Flux",purchase,1.0,0 -69009454,"Solar Flux",play,0.2,0 -69009454,"Dirty Bomb",purchase,1.0,0 -69009454,"Dirty Bomb",play,0.2,0 -69009454,"Grand Theft Auto San Andreas",purchase,1.0,0 -69009454,"Grand Theft Auto San Andreas",play,0.1,0 -69009454,"Grand Theft Auto",purchase,1.0,0 -69009454,"Grand Theft Auto",play,0.1,0 -69009454,"Titan Quest",purchase,1.0,0 -69009454,"realMyst",purchase,1.0,0 -69009454,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -69009454,"Grand Theft Auto IV",purchase,1.0,0 -69009454,"Uplink",purchase,1.0,0 -69009454,"Grand Theft Auto 2",purchase,1.0,0 -69009454,"Age of Empires II HD The Forgotten",purchase,1.0,0 -69009454,"Alan Wake's American Nightmare",purchase,1.0,0 -69009454,"America's Army Proving Grounds",purchase,1.0,0 -69009454,"Batman Arkham City GOTY",purchase,1.0,0 -69009454,"Battlefield Bad Company 2",purchase,1.0,0 -69009454,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -69009454,"BioShock",purchase,1.0,0 -69009454,"BioShock Infinite - Season Pass",purchase,1.0,0 -69009454,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -69009454,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -69009454,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -69009454,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -69009454,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -69009454,"Bound By Flame",purchase,1.0,0 -69009454,"Brink of Consciousness Dorian Gray Syndrome",purchase,1.0,0 -69009454,"Company of Heroes Opposing Fronts",purchase,1.0,0 -69009454,"Crusader Kings II Sons of Abraham",purchase,1.0,0 -69009454,"Darwinia",purchase,1.0,0 -69009454,"DEFCON",purchase,1.0,0 -69009454,"DiRT 3",purchase,1.0,0 -69009454,"DiRT 3 Complete Edition",purchase,1.0,0 -69009454,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -69009454,"Elementary My Dear Majesty!",purchase,1.0,0 -69009454,"F.E.A.R. Online",purchase,1.0,0 -69009454,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -69009454,"Fallout New Vegas Dead Money",purchase,1.0,0 -69009454,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -69009454,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -69009454,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -69009454,"Grand Theft Auto San Andreas",purchase,1.0,0 -69009454,"Grand Theft Auto Vice City",purchase,1.0,0 -69009454,"Grand Theft Auto Vice City",purchase,1.0,0 -69009454,"Grand Theft Auto III",purchase,1.0,0 -69009454,"Grim Fandango Remastered",purchase,1.0,0 -69009454,"Guild Wars Trilogy",purchase,1.0,0 -69009454,"Half-Life 2",purchase,1.0,0 -69009454,"Half-Life 2 Lost Coast",purchase,1.0,0 -69009454,"Heroes & Generals",purchase,1.0,0 -69009454,"Heroes of Hellas 3 Athens",purchase,1.0,0 -69009454,"Hidden Object Bundle 5 in 1",purchase,1.0,0 -69009454,"Magicka Final Frontier",purchase,1.0,0 -69009454,"Magicka Frozen Lake",purchase,1.0,0 -69009454,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -69009454,"Magicka Nippon",purchase,1.0,0 -69009454,"Magicka Party Robes",purchase,1.0,0 -69009454,"Magicka The Watchtower",purchase,1.0,0 -69009454,"Magicka Vietnam",purchase,1.0,0 -69009454,"Magicka Wizard's Survival Kit",purchase,1.0,0 -69009454,"Mount & Blade Warband",purchase,1.0,0 -69009454,"Multiwinia",purchase,1.0,0 -69009454,"MX vs. ATV Reflex",purchase,1.0,0 -69009454,"Nexuiz",purchase,1.0,0 -69009454,"Nexuiz Beta",purchase,1.0,0 -69009454,"Nexuiz STUPID Mode",purchase,1.0,0 -69009454,"On the Rain-Slick Precipice of Darkness, Episode Two",purchase,1.0,0 -69009454,"Patch testing for Chivalry",purchase,1.0,0 -69009454,"Psychonauts Demo",purchase,1.0,0 -69009454,"Puzzle Station 15th Anniversary Retro Release",purchase,1.0,0 -69009454,"Red Faction",purchase,1.0,0 -69009454,"Red Faction II",purchase,1.0,0 -69009454,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -69009454,"Serious Sam 2",purchase,1.0,0 -69009454,"Serious Sam The Random Encounter",purchase,1.0,0 -69009454,"Serious Sam Classic The First Encounter",purchase,1.0,0 -69009454,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -69009454,"Serious Sam Classics Revolution",purchase,1.0,0 -69009454,"Serious Sam Double D XXL",purchase,1.0,0 -69009454,"Serious Sam HD The First Encounter",purchase,1.0,0 -69009454,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -69009454,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -69009454,"Sniper Elite",purchase,1.0,0 -69009454,"Sniper Elite 3",purchase,1.0,0 -69009454,"South Park The Stick of Truth",purchase,1.0,0 -69009454,"Star Wars The Force Unleashed II",purchase,1.0,0 -69009454,"State of Decay - Breakdown",purchase,1.0,0 -69009454,"State of Decay - Lifeline",purchase,1.0,0 -69009454,"Supreme Commander",purchase,1.0,0 -69009454,"Supreme Commander Forged Alliance",purchase,1.0,0 -69009454,"Tales of Monkey Island Chapter 2 - The Siege of Spinner Cay ",purchase,1.0,0 -69009454,"Tales of Monkey Island Chapter 3 - Lair of the Leviathan ",purchase,1.0,0 -69009454,"Tales of Monkey Island Chapter 4 - The Trial and Execution of Guybrush Threepwood ",purchase,1.0,0 -69009454,"Tales of Monkey Island Chapter 5 - Rise of the Pirate God",purchase,1.0,0 -69009454,"The Mighty Quest For Epic Loot",purchase,1.0,0 -69009454,"The Walking Dead Season Two",purchase,1.0,0 -69009454,"Thief",purchase,1.0,0 -69009454,"Titan Quest Immortal Throne",purchase,1.0,0 -69009454,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -69009454,"Tomb Raider Anniversary",purchase,1.0,0 -69009454,"Tomb Raider Chronicles",purchase,1.0,0 -69009454,"Tomb Raider Legend",purchase,1.0,0 -69009454,"Tomb Raider The Last Revelation",purchase,1.0,0 -69009454,"Tomb Raider Underworld",purchase,1.0,0 -69009454,"Tomb Raider I",purchase,1.0,0 -69009454,"Tomb Raider II",purchase,1.0,0 -69009454,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -69009454,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -69009454,"Unreal II The Awakening",purchase,1.0,0 -69009454,"Unreal Tournament 2004",purchase,1.0,0 -69009454,"Unreal Tournament Game of the Year Edition",purchase,1.0,0 -69009454,"Unturned",purchase,1.0,0 -69009454,"Warframe",purchase,1.0,0 -69009454,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -69009454,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -225851590,"Dota 2",purchase,1.0,0 -225851590,"Dota 2",play,315.0,0 -9439949,"Counter-Strike",purchase,1.0,0 -9439949,"Day of Defeat",purchase,1.0,0 -9439949,"Deathmatch Classic",purchase,1.0,0 -9439949,"Half-Life",purchase,1.0,0 -9439949,"Half-Life Blue Shift",purchase,1.0,0 -9439949,"Half-Life Opposing Force",purchase,1.0,0 -9439949,"Ricochet",purchase,1.0,0 -9439949,"Team Fortress Classic",purchase,1.0,0 -220887518,"Unturned",purchase,1.0,0 -220887518,"Unturned",play,51.0,0 -220887518,"Infinite Crisis",purchase,1.0,0 -220887518,"Infinite Crisis",play,3.2,0 -220887518,"Counter-Strike Nexon Zombies",purchase,1.0,0 -220887518,"Requiem",purchase,1.0,0 -301110007,"Team Fortress 2",purchase,1.0,0 -301110007,"Team Fortress 2",play,7.9,0 -301110007,"Back to Dinosaur Island ",purchase,1.0,0 -292976473,"Dota 2",purchase,1.0,0 -292976473,"Dota 2",play,1.1,0 -45422636,"Rome Total War",purchase,1.0,0 -45422636,"Rome Total War",play,117.0,0 -45422636,"Mount & Blade Warband",purchase,1.0,0 -45422636,"Mount & Blade Warband",play,105.0,0 -45422636,"Rust",purchase,1.0,0 -45422636,"Rust",play,68.0,0 -45422636,"Rome Total War - Alexander",purchase,1.0,0 -45422636,"Rome Total War - Alexander",play,32.0,0 -45422636,"FEZ",purchase,1.0,0 -45422636,"FEZ",play,19.4,0 -45422636,"Napoleon Total War",purchase,1.0,0 -45422636,"Napoleon Total War",play,13.1,0 -45422636,"Empire Total War",purchase,1.0,0 -45422636,"Empire Total War",play,4.8,0 -45422636,"The Long Dark",purchase,1.0,0 -45422636,"The Long Dark",play,4.6,0 -45422636,"Total War ROME II - Emperor Edition",purchase,1.0,0 -45422636,"Total War ROME II - Emperor Edition",play,3.8,0 -45422636,"Goat Simulator",purchase,1.0,0 -45422636,"Goat Simulator",play,1.0,0 -45422636,"Five Nights at Freddy's",purchase,1.0,0 -45422636,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -45422636,"War Thunder",purchase,1.0,0 -198107221,"Counter-Strike Nexon Zombies",purchase,1.0,0 -198107221,"CrimeCraft GangWars",purchase,1.0,0 -198107221,"Firefall",purchase,1.0,0 -145670348,"Dota 2",purchase,1.0,0 -145670348,"Dota 2",play,126.0,0 -145670348,"Audition Online",purchase,1.0,0 -145670348,"Counter-Strike Nexon Zombies",purchase,1.0,0 -145670348,"Elsword",purchase,1.0,0 -145670348,"Gotham City Impostors Free To Play",purchase,1.0,0 -145670348,"MapleStory",purchase,1.0,0 -145670348,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -145670348,"Unturned",purchase,1.0,0 -67492611,"The Elder Scrolls V Skyrim",purchase,1.0,0 -67492611,"The Elder Scrolls V Skyrim",play,345.0,0 -67492611,"Killing Floor",purchase,1.0,0 -67492611,"Killing Floor",play,175.0,0 -67492611,"DARK SOULS II",purchase,1.0,0 -67492611,"DARK SOULS II",play,143.0,0 -67492611,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -67492611,"METAL GEAR SOLID V THE PHANTOM PAIN",play,126.0,0 -67492611,"PAYDAY 2",purchase,1.0,0 -67492611,"PAYDAY 2",play,83.0,0 -67492611,"Killing Floor 2",purchase,1.0,0 -67492611,"Killing Floor 2",play,67.0,0 -67492611,"The Crew",purchase,1.0,0 -67492611,"The Crew",play,56.0,0 -67492611,"Robocraft",purchase,1.0,0 -67492611,"Robocraft",play,45.0,0 -67492611,"Grand Theft Auto V",purchase,1.0,0 -67492611,"Grand Theft Auto V",play,40.0,0 -67492611,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -67492611,"METAL GEAR SOLID V GROUND ZEROES",play,31.0,0 -67492611,"Age of Empires II HD Edition",purchase,1.0,0 -67492611,"Age of Empires II HD Edition",play,29.0,0 -67492611,"Space Engineers",purchase,1.0,0 -67492611,"Space Engineers",play,28.0,0 -67492611,"Crypt of the NecroDancer",purchase,1.0,0 -67492611,"Crypt of the NecroDancer",play,25.0,0 -67492611,"Borderlands 2",purchase,1.0,0 -67492611,"Borderlands 2",play,23.0,0 -67492611,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -67492611,"DARK SOULS II Scholar of the First Sin",play,22.0,0 -67492611,"Besiege",purchase,1.0,0 -67492611,"Besiege",play,22.0,0 -67492611,"Alien Swarm",purchase,1.0,0 -67492611,"Alien Swarm",play,21.0,0 -67492611,"7 Days to Die",purchase,1.0,0 -67492611,"7 Days to Die",play,19.7,0 -67492611,"Ultra Street Fighter IV",purchase,1.0,0 -67492611,"Ultra Street Fighter IV",play,10.1,0 -67492611,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -67492611,"Killing Floor Mod Defence Alliance 2",play,2.8,0 -67492611,"Left 4 Dead 2",purchase,1.0,0 -67492611,"Left 4 Dead 2",play,2.6,0 -67492611,"Terraria",purchase,1.0,0 -67492611,"Terraria",play,2.3,0 -67492611,"Warframe",purchase,1.0,0 -67492611,"Warframe",play,1.3,0 -67492611,"Path of Exile",purchase,1.0,0 -67492611,"Path of Exile",play,1.0,0 -67492611,"Dota 2",purchase,1.0,0 -67492611,"Dota 2",play,0.7,0 -67492611,"Age of Empires III Complete Collection",purchase,1.0,0 -67492611,"Age of Empires III Complete Collection",play,0.7,0 -67492611,"Metal Gear Solid Legacy",purchase,1.0,0 -67492611,"Sanctum 2",purchase,1.0,0 -67492611,"Crypt of the NecroDancer Extended Soundtrack",purchase,1.0,0 -67492611,"Crypt of the Necrodancer Soundtrack",purchase,1.0,0 -67492611,"DARK SOULS II - Season Pass",purchase,1.0,0 -67492611,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -67492611,"Dead Island Epidemic",purchase,1.0,0 -67492611,"HAWKEN",purchase,1.0,0 -67492611,"Killing Floor - Toy Master",purchase,1.0,0 -67492611,"PlanetSide 2",purchase,1.0,0 -67492611,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -67492611,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -67492611,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -293378273,"Dota 2",purchase,1.0,0 -293378273,"Dota 2",play,1.5,0 -266836892,"Counter-Strike Global Offensive",purchase,1.0,0 -266836892,"Counter-Strike Global Offensive",play,814.0,0 -266836892,"BLOCKADE 3D",purchase,1.0,0 -266836892,"BLOCKADE 3D",play,0.2,0 -266836892,"Blender 2.76b",purchase,1.0,0 -120698121,"Dota 2",purchase,1.0,0 -120698121,"Dota 2",play,0.2,0 -290334662,"Dota 2",purchase,1.0,0 -290334662,"Dota 2",play,6.0,0 -105590063,"Sid Meier's Civilization V",purchase,1.0,0 -105590063,"Sid Meier's Civilization V",play,15.2,0 -105590063,"Sonic Generations",purchase,1.0,0 -112694811,"Team Fortress 2",purchase,1.0,0 -112694811,"Team Fortress 2",play,154.0,0 -121150146,"PlanetSide 2",purchase,1.0,0 -121150146,"PlanetSide 2",play,3.0,0 -121150146,"Team Fortress 2",purchase,1.0,0 -121150146,"Team Fortress 2",play,1.7,0 -197363488,"Garry's Mod",purchase,1.0,0 -197363488,"Garry's Mod",play,10.0,0 -197363488,"Five Nights at Freddy's",purchase,1.0,0 -197363488,"Five Nights at Freddy's",play,7.1,0 -197363488,"Dead Island Epidemic",purchase,1.0,0 -197363488,"Heroes & Generals",purchase,1.0,0 -199603191,"Dragon Nest",purchase,1.0,0 -199603191,"Dragon Nest",play,309.0,0 -199603191,"DRAGON BALL XENOVERSE",purchase,1.0,0 -199603191,"DRAGON BALL XENOVERSE",play,50.0,0 -199603191,"The Long Dark",purchase,1.0,0 -199603191,"The Long Dark",play,25.0,0 -199603191,"TERA",purchase,1.0,0 -199603191,"TERA",play,18.2,0 -199603191,"Borderlands The Pre-Sequel",purchase,1.0,0 -199603191,"Borderlands The Pre-Sequel",play,17.5,0 -199603191,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -199603191,"Game of Thrones - A Telltale Games Series",play,4.1,0 -199603191,"MapleStory",purchase,1.0,0 -199603191,"MapleStory",play,0.9,0 -199603191,"Vindictus",purchase,1.0,0 -199603191,"Vindictus",play,0.8,0 -199603191,"Terraria",purchase,1.0,0 -199603191,"Terraria",play,0.4,0 -199603191,"Unturned",purchase,1.0,0 -199603191,"Unturned",play,0.2,0 -199603191,"Fable Anniversary",purchase,1.0,0 -199603191,"Fable Anniversary",play,0.1,0 -199603191,"Robot Roller-Derby Disco Dodgeball",purchase,1.0,0 -228320359,"Dota 2",purchase,1.0,0 -228320359,"Dota 2",play,0.7,0 -157058673,"The Witcher 3 Wild Hunt",purchase,1.0,0 -157058673,"The Witcher 3 Wild Hunt",play,60.0,0 -157058673,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -157058673,"Injustice Gods Among Us Ultimate Edition",play,46.0,0 -157058673,"Tom Clancy's Rainbow Six Siege",purchase,1.0,0 -157058673,"Tom Clancy's Rainbow Six Siege",play,23.0,0 -157058673,"Evolve",purchase,1.0,0 -157058673,"Evolve",play,17.0,0 -157058673,"Grand Theft Auto V",purchase,1.0,0 -157058673,"Grand Theft Auto V",play,15.4,0 -157058673,"Batman Arkham Knight",purchase,1.0,0 -157058673,"Batman Arkham Knight",play,15.1,0 -157058673,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -157058673,"Batman Arkham City GOTY",purchase,1.0,0 -157058673,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -157058673,"Batman Arkham Origins - Initiation",purchase,1.0,0 -157058673,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -157058673,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -157058673,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -157058673,"Batman Arkham Origins",purchase,1.0,0 -157058673,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -157058673,"Crow - Hunter (Trapper Class)",purchase,1.0,0 -157058673,"Slim - Hunter (Medic Class)",purchase,1.0,0 -157058673,"Sunny - Hunter (Support Class)",purchase,1.0,0 -157058673,"The Witcher 3 Wild Hunt - Expansion Pass",purchase,1.0,0 -157058673,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -157058673,"Torvald - Hunter (Assault Class)",purchase,1.0,0 -133439311,"Borderlands 2",purchase,1.0,0 -133439311,"Borderlands 2",play,16.8,0 -133439311,"EverQuest II",purchase,1.0,0 -133439311,"Magicka",purchase,1.0,0 -308452993,"Counter-Strike Global Offensive",purchase,1.0,0 -308452993,"Counter-Strike Global Offensive",play,7.0,0 -201737586,"Left 4 Dead 2",purchase,1.0,0 -201737586,"Left 4 Dead 2",play,7.7,0 -201737586,"PAYDAY 2",purchase,1.0,0 -201737586,"PAYDAY 2",play,5.8,0 -201737586,"Terraria",purchase,1.0,0 -201737586,"Terraria",play,1.2,0 -201737586,"DayZ",purchase,1.0,0 -201737586,"DayZ",play,1.1,0 -201737586,"Trove",purchase,1.0,0 -201737586,"Trove",play,0.7,0 -201737586,"Warframe",purchase,1.0,0 -176890431,"Dota 2",purchase,1.0,0 -176890431,"Dota 2",play,0.6,0 -175849081,"Dota 2",purchase,1.0,0 -175849081,"Dota 2",play,0.8,0 -212041058,"Dota 2",purchase,1.0,0 -212041058,"Dota 2",play,17.4,0 -212041058,"Free to Play",purchase,1.0,0 -43360645,"Dota 2",purchase,1.0,0 -43360645,"Dota 2",play,2390.0,0 -43360645,"Counter-Strike Global Offensive",purchase,1.0,0 -43360645,"Counter-Strike Global Offensive",play,961.0,0 -43360645,"PAYDAY 2",purchase,1.0,0 -43360645,"PAYDAY 2",play,346.0,0 -43360645,"Rocket League",purchase,1.0,0 -43360645,"Rocket League",play,120.0,0 -43360645,"Counter-Strike Source",purchase,1.0,0 -43360645,"Counter-Strike Source",play,115.0,0 -43360645,"Sanctum 2",purchase,1.0,0 -43360645,"Sanctum 2",play,78.0,0 -43360645,"Arma 2 Operation Arrowhead",purchase,1.0,0 -43360645,"Arma 2 Operation Arrowhead",play,76.0,0 -43360645,"TrackMania Stadium",purchase,1.0,0 -43360645,"TrackMania Stadium",play,59.0,0 -43360645,"Saints Row The Third",purchase,1.0,0 -43360645,"Saints Row The Third",play,51.0,0 -43360645,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -43360645,"Resident Evil 6 / Biohazard 6",play,47.0,0 -43360645,"Max Payne 3",purchase,1.0,0 -43360645,"Max Payne 3",play,44.0,0 -43360645,"Killing Floor",purchase,1.0,0 -43360645,"Killing Floor",play,39.0,0 -43360645,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -43360645,"Tropico 3 - Steam Special Edition",play,39.0,0 -43360645,"Grand Theft Auto IV",purchase,1.0,0 -43360645,"Grand Theft Auto IV",play,38.0,0 -43360645,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -43360645,"Sonic & All-Stars Racing Transformed",play,34.0,0 -43360645,"Left 4 Dead 2",purchase,1.0,0 -43360645,"Left 4 Dead 2",play,33.0,0 -43360645,"Grand Theft Auto V",purchase,1.0,0 -43360645,"Grand Theft Auto V",play,27.0,0 -43360645,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -43360645,"Grand Theft Auto Episodes from Liberty City",play,27.0,0 -43360645,"L.A. Noire",purchase,1.0,0 -43360645,"L.A. Noire",play,27.0,0 -43360645,"Killing Floor 2",purchase,1.0,0 -43360645,"Killing Floor 2",play,25.0,0 -43360645,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -43360645,"Batman Arkham Asylum GOTY Edition",play,24.0,0 -43360645,"Saints Row IV",purchase,1.0,0 -43360645,"Saints Row IV",play,22.0,0 -43360645,"Borderlands 2",purchase,1.0,0 -43360645,"Borderlands 2",play,18.8,0 -43360645,"Lego Harry Potter",purchase,1.0,0 -43360645,"Lego Harry Potter",play,18.8,0 -43360645,"Sonic Generations",purchase,1.0,0 -43360645,"Sonic Generations",play,18.5,0 -43360645,"Half-Life 2",purchase,1.0,0 -43360645,"Half-Life 2",play,17.8,0 -43360645,"Beat Hazard",purchase,1.0,0 -43360645,"Beat Hazard",play,16.6,0 -43360645,"Descent",purchase,1.0,0 -43360645,"Descent",play,15.4,0 -43360645,"Sonic Adventure 2 ",purchase,1.0,0 -43360645,"Sonic Adventure 2 ",play,14.4,0 -43360645,"Brtal Legend",purchase,1.0,0 -43360645,"Brtal Legend",play,14.2,0 -43360645,"Mirror's Edge",purchase,1.0,0 -43360645,"Mirror's Edge",play,13.8,0 -43360645,"Half-Life",purchase,1.0,0 -43360645,"Half-Life",play,13.0,0 -43360645,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -43360645,"Resident Evil 5 / Biohazard 5",play,11.6,0 -43360645,"Castle Crashers",purchase,1.0,0 -43360645,"Castle Crashers",play,10.8,0 -43360645,"Age of Empires II HD Edition",purchase,1.0,0 -43360645,"Age of Empires II HD Edition",play,10.6,0 -43360645,"F.E.A.R.",purchase,1.0,0 -43360645,"F.E.A.R.",play,10.6,0 -43360645,"Scribblenauts Unlimited",purchase,1.0,0 -43360645,"Scribblenauts Unlimited",play,10.5,0 -43360645,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -43360645,"Dark Souls Prepare to Die Edition",play,9.5,0 -43360645,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -43360645,"THE KING OF FIGHTERS XIII STEAM EDITION",play,9.3,0 -43360645,"Arma 2",purchase,1.0,0 -43360645,"Arma 2",play,8.2,0 -43360645,"Warframe",purchase,1.0,0 -43360645,"Warframe",play,7.7,0 -43360645,"Metro 2033",purchase,1.0,0 -43360645,"Metro 2033",play,7.7,0 -43360645,"Insurgency",purchase,1.0,0 -43360645,"Insurgency",play,7.5,0 -43360645,"Half-Life Opposing Force",purchase,1.0,0 -43360645,"Half-Life Opposing Force",play,7.3,0 -43360645,"BattleBlock Theater",purchase,1.0,0 -43360645,"BattleBlock Theater",play,7.2,0 -43360645,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -43360645,"Burnout Paradise The Ultimate Box",play,7.1,0 -43360645,"METAL SLUG 3",purchase,1.0,0 -43360645,"METAL SLUG 3",play,7.0,0 -43360645,"Team Fortress 2",purchase,1.0,0 -43360645,"Team Fortress 2",play,6.8,0 -43360645,"Batman Arkham City GOTY",purchase,1.0,0 -43360645,"Batman Arkham City GOTY",play,6.1,0 -43360645,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -43360645,"F.E.A.R. 2 Project Origin",play,5.8,0 -43360645,"Half-Life 2 Episode Two",purchase,1.0,0 -43360645,"Half-Life 2 Episode Two",play,5.3,0 -43360645,"War Thunder",purchase,1.0,0 -43360645,"War Thunder",play,4.8,0 -43360645,"Eufloria",purchase,1.0,0 -43360645,"Eufloria",play,4.6,0 -43360645,"Blocks That Matter",purchase,1.0,0 -43360645,"Blocks That Matter",play,4.5,0 -43360645,"FTL Faster Than Light",purchase,1.0,0 -43360645,"FTL Faster Than Light",play,4.3,0 -43360645,"Renegade Ops",purchase,1.0,0 -43360645,"Renegade Ops",play,3.8,0 -43360645,"Half-Life Blue Shift",purchase,1.0,0 -43360645,"Half-Life Blue Shift",play,3.6,0 -43360645,"Don't Starve Together Beta",purchase,1.0,0 -43360645,"Don't Starve Together Beta",play,3.5,0 -43360645,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -43360645,"Command and Conquer Red Alert 3 - Uprising",play,3.5,0 -43360645,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -43360645,"Tom Clancy's Splinter Cell Conviction",play,3.5,0 -43360645,"Half-Life 2 Episode One",purchase,1.0,0 -43360645,"Half-Life 2 Episode One",play,3.4,0 -43360645,"Dead Island Epidemic",purchase,1.0,0 -43360645,"Dead Island Epidemic",play,3.3,0 -43360645,"Mortal Kombat Komplete Edition",purchase,1.0,0 -43360645,"Mortal Kombat Komplete Edition",play,3.1,0 -43360645,"Half-Life Source",purchase,1.0,0 -43360645,"Half-Life Source",play,3.1,0 -43360645,"Company of Heroes (New Steam Version)",purchase,1.0,0 -43360645,"Company of Heroes (New Steam Version)",play,2.9,0 -43360645,"BIT.TRIP RUNNER",purchase,1.0,0 -43360645,"BIT.TRIP RUNNER",play,2.9,0 -43360645,"Crysis 2 Maximum Edition",purchase,1.0,0 -43360645,"Crysis 2 Maximum Edition",play,2.9,0 -43360645,"Borderlands",purchase,1.0,0 -43360645,"Borderlands",play,2.8,0 -43360645,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -43360645,"SEGA Genesis & Mega Drive Classics",play,2.7,0 -43360645,"resident evil 4 / biohazard 4",purchase,1.0,0 -43360645,"resident evil 4 / biohazard 4",play,2.7,0 -43360645,"Age of Empires III Complete Collection",purchase,1.0,0 -43360645,"Age of Empires III Complete Collection",play,2.4,0 -43360645,"Bastion",purchase,1.0,0 -43360645,"Bastion",play,2.4,0 -43360645,"Outlast",purchase,1.0,0 -43360645,"Outlast",play,2.3,0 -43360645,"Sonic Adventure DX",purchase,1.0,0 -43360645,"Sonic Adventure DX",play,1.8,0 -43360645,"Terraria",purchase,1.0,0 -43360645,"Terraria",play,1.7,0 -43360645,"Monaco",purchase,1.0,0 -43360645,"Monaco",play,1.5,0 -43360645,"The Elder Scrolls V Skyrim",purchase,1.0,0 -43360645,"The Elder Scrolls V Skyrim",play,1.3,0 -43360645,"ORION Prelude",purchase,1.0,0 -43360645,"ORION Prelude",play,0.9,0 -43360645,"Don't Starve",purchase,1.0,0 -43360645,"Don't Starve",play,0.9,0 -43360645,"F.E.A.R. 3",purchase,1.0,0 -43360645,"F.E.A.R. 3",play,0.9,0 -43360645,"Half-Life 2 Deathmatch",purchase,1.0,0 -43360645,"Half-Life 2 Deathmatch",play,0.8,0 -43360645,"You Have to Win the Game",purchase,1.0,0 -43360645,"You Have to Win the Game",play,0.8,0 -43360645,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -43360645,"Medal of Honor(TM) Multiplayer",play,0.7,0 -43360645,"Fistful of Frags",purchase,1.0,0 -43360645,"Fistful of Frags",play,0.6,0 -43360645,"Natural Selection 2",purchase,1.0,0 -43360645,"Natural Selection 2",play,0.5,0 -43360645,"Unturned",purchase,1.0,0 -43360645,"Unturned",play,0.4,0 -43360645,"Always Sometimes Monsters",purchase,1.0,0 -43360645,"Always Sometimes Monsters",play,0.4,0 -43360645,"Trove",purchase,1.0,0 -43360645,"Trove",play,0.4,0 -43360645,"Star Wars Knights of the Old Republic",purchase,1.0,0 -43360645,"Star Wars Knights of the Old Republic",play,0.4,0 -43360645,"Guardians of Middle-earth",purchase,1.0,0 -43360645,"Guardians of Middle-earth",play,0.4,0 -43360645,"Binary Domain",purchase,1.0,0 -43360645,"Binary Domain",play,0.3,0 -43360645,"SONIC THE HEDGEHOG 4 Episode I",purchase,1.0,0 -43360645,"SONIC THE HEDGEHOG 4 Episode I",play,0.3,0 -43360645,"DARK SOULS II",purchase,1.0,0 -43360645,"DARK SOULS II",play,0.3,0 -43360645,"Mortal Kombat Kollection",purchase,1.0,0 -43360645,"Mortal Kombat Kollection",play,0.3,0 -43360645,"Arma 2 DayZ Mod",purchase,1.0,0 -43360645,"Arma 2 DayZ Mod",play,0.3,0 -43360645,"Half-Life 2 Lost Coast",purchase,1.0,0 -43360645,"Half-Life 2 Lost Coast",play,0.2,0 -43360645,"Really Big Sky",purchase,1.0,0 -43360645,"Really Big Sky",play,0.2,0 -43360645,"Sonic CD",purchase,1.0,0 -43360645,"Sonic CD",play,0.2,0 -43360645,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -43360645,"Killing Floor Mod Defence Alliance 2",play,0.2,0 -43360645,"Gun Monkeys",purchase,1.0,0 -43360645,"Gun Monkeys",play,0.2,0 -43360645,"PAYDAY The Heist",purchase,1.0,0 -43360645,"PAYDAY The Heist",play,0.2,0 -43360645,"Arma 2 Private Military Company",purchase,1.0,0 -43360645,"Arma 2 Private Military Company",play,0.2,0 -43360645,"Star Wars Republic Commando",purchase,1.0,0 -43360645,"Star Wars Republic Commando",play,0.1,0 -43360645,"Ohm Studio",purchase,1.0,0 -43360645,"Ohm Studio",play,0.1,0 -43360645,"Arma 2 British Armed Forces",purchase,1.0,0 -43360645,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -43360645,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -43360645,"You Need A Budget 4 (YNAB)",purchase,1.0,0 -43360645,"F.E.A.R. Extraction Point",purchase,1.0,0 -43360645,"AdVenture Capitalist",purchase,1.0,0 -43360645,"Afterfall InSanity Extended Edition",purchase,1.0,0 -43360645,"Age of Empires II HD The Forgotten",purchase,1.0,0 -43360645,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -43360645,"Batman Arkham Origins",purchase,1.0,0 -43360645,"Beat Hazard - Shadow Operations Unit",purchase,1.0,0 -43360645,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -43360645,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -43360645,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -43360645,"Castle Crashers - Blacksmith Pack",purchase,1.0,0 -43360645,"Company of Heroes Tales of Valor",purchase,1.0,0 -43360645,"Crash Time II",purchase,1.0,0 -43360645,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -43360645,"Dead Space",purchase,1.0,0 -43360645,"Dino D-Day",purchase,1.0,0 -43360645,"Enclave",purchase,1.0,0 -43360645,"Eufloria HD",purchase,1.0,0 -43360645,"Eufloria HD Original Soundtrack",purchase,1.0,0 -43360645,"Fractured Space",purchase,1.0,0 -43360645,"Full Mojo Rampage",purchase,1.0,0 -43360645,"GTR Evolution",purchase,1.0,0 -43360645,"Half-Life Deathmatch Source",purchase,1.0,0 -43360645,"Killing Floor - Toy Master",purchase,1.0,0 -43360645,"LEGO Harry Potter Years 5-7",purchase,1.0,0 -43360645,"Medal of Honor(TM) Single Player",purchase,1.0,0 -43360645,"Medal of Honor Pre-Order",purchase,1.0,0 -43360645,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -43360645,"Operation Flashpoint Red River",purchase,1.0,0 -43360645,"Overlord",purchase,1.0,0 -43360645,"Overlord Raising Hell",purchase,1.0,0 -43360645,"Quake Live",purchase,1.0,0 -43360645,"RACE 07",purchase,1.0,0 -43360645,"RaceRoom Racing Experience ",purchase,1.0,0 -43360645,"Receiver",purchase,1.0,0 -43360645,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -43360645,"Rise of the Argonauts",purchase,1.0,0 -43360645,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -43360645,"Robocraft",purchase,1.0,0 -43360645,"Shank 2",purchase,1.0,0 -43360645,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -43360645,"Sniper Elite V2",purchase,1.0,0 -43360645,"Sonic Adventure 2 Battle Mode DLC",purchase,1.0,0 -43360645,"Sonic and SEGA All Stars Racing",purchase,1.0,0 -43360645,"SONIC THE HEDGEHOG 4 Episode II",purchase,1.0,0 -43360645,"SpaceChem",purchase,1.0,0 -43360645,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -43360645,"Team Fortress Classic",purchase,1.0,0 -43360645,"Teleglitch Die More Edition",purchase,1.0,0 -43360645,"Tesla Effect",purchase,1.0,0 -43360645,"The Binding of Isaac",purchase,1.0,0 -43360645,"The Lord of the Rings War in the North",purchase,1.0,0 -43360645,"Toribash",purchase,1.0,0 -43360645,"Warface",purchase,1.0,0 -43360645,"Warlock - Master of the Arcane",purchase,1.0,0 -43360645,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -43360645,"Weird Worlds Return to Infinite Space",purchase,1.0,0 -142650116,"Sid Meier's Civilization V",purchase,1.0,0 -142650116,"Sid Meier's Civilization V",play,53.0,0 -142650116,"The Long Dark",purchase,1.0,0 -142650116,"The Long Dark",play,14.5,0 -142650116,"Prison Architect",purchase,1.0,0 -142650116,"Prison Architect",play,4.2,0 -142650116,"Expeditions Conquistador",purchase,1.0,0 -142650116,"Expeditions Conquistador",play,4.1,0 -142650116,"You Need A Budget 4 (YNAB)",purchase,1.0,0 -142650116,"You Need A Budget 4 (YNAB)",play,0.7,0 -142650116,"7 Days to Die",purchase,1.0,0 -142650116,"7 Days to Die",play,0.6,0 -142650116,"Grand Theft Auto San Andreas",purchase,1.0,0 -142650116,"Grand Theft Auto San Andreas",play,0.3,0 -142650116,"Farming Simulator 2013",purchase,1.0,0 -142650116,"Farming Simulator 2013",play,0.2,0 -142650116,"Batman Arkham City GOTY",purchase,1.0,0 -142650116,"Batman Arkham City GOTY",play,0.2,0 -142650116,"Euro Truck Simulator 2",purchase,1.0,0 -142650116,"Euro Truck Simulator 2",play,0.1,0 -142650116,"The Elder Scrolls V Skyrim",purchase,1.0,0 -142650116,"Grand Theft Auto San Andreas",purchase,1.0,0 -142650116,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -142650116,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -286761300,"Dota 2",purchase,1.0,0 -286761300,"Dota 2",play,0.7,0 -214877109,"Quake Live",purchase,1.0,0 -239779234,"Dota 2",purchase,1.0,0 -239779234,"Dota 2",play,0.9,0 -299905842,"Dota 2",purchase,1.0,0 -299905842,"Dota 2",play,28.0,0 -112784971,"Team Fortress 2",purchase,1.0,0 -112784971,"Team Fortress 2",play,2.5,0 -112784971,"Alien Swarm",purchase,1.0,0 -112784971,"Alien Swarm",play,0.3,0 -30425578,"Borderlands 2",purchase,1.0,0 -30425578,"Borderlands 2",play,350.0,0 -30425578,"Dust An Elysian Tail",purchase,1.0,0 -30425578,"Dust An Elysian Tail",play,51.0,0 -30425578,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -30425578,"Resident Evil 6 / Biohazard 6",play,37.0,0 -30425578,"Hotline Miami",purchase,1.0,0 -30425578,"Hotline Miami",play,34.0,0 -30425578,"Darksiders",purchase,1.0,0 -30425578,"Darksiders",play,30.0,0 -30425578,"South Park The Stick of Truth",purchase,1.0,0 -30425578,"South Park The Stick of Truth",play,24.0,0 -30425578,"METAL SLUG 3",purchase,1.0,0 -30425578,"METAL SLUG 3",play,20.0,0 -30425578,"Mark of the Ninja",purchase,1.0,0 -30425578,"Mark of the Ninja",play,17.7,0 -30425578,"Worms Revolution",purchase,1.0,0 -30425578,"Worms Revolution",play,12.9,0 -30425578,"SpeedRunners",purchase,1.0,0 -30425578,"SpeedRunners",play,10.6,0 -30425578,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -30425578,"METAL GEAR RISING REVENGEANCE",play,10.3,0 -30425578,"Borderlands The Pre-Sequel",purchase,1.0,0 -30425578,"Borderlands The Pre-Sequel",play,9.5,0 -30425578,"The Binding of Isaac",purchase,1.0,0 -30425578,"The Binding of Isaac",play,9.4,0 -30425578,"Left 4 Dead 2",purchase,1.0,0 -30425578,"Left 4 Dead 2",play,8.7,0 -30425578,"Skullgirls",purchase,1.0,0 -30425578,"Skullgirls",play,7.9,0 -30425578,"METAL SLUG X",purchase,1.0,0 -30425578,"METAL SLUG X",play,7.2,0 -30425578,"DmC Devil May Cry",purchase,1.0,0 -30425578,"DmC Devil May Cry",play,6.2,0 -30425578,"Terraria",purchase,1.0,0 -30425578,"Terraria",play,5.8,0 -30425578,"Castle Crashers",purchase,1.0,0 -30425578,"Castle Crashers",play,5.0,0 -30425578,"Hammerwatch",purchase,1.0,0 -30425578,"Hammerwatch",play,4.8,0 -30425578,"Mercenary Kings",purchase,1.0,0 -30425578,"Mercenary Kings",play,4.3,0 -30425578,"Saints Row The Third",purchase,1.0,0 -30425578,"Saints Row The Third",play,4.2,0 -30425578,"Bastion",purchase,1.0,0 -30425578,"Bastion",play,4.0,0 -30425578,"Monaco",purchase,1.0,0 -30425578,"Monaco",play,3.7,0 -30425578,"The Walking Dead",purchase,1.0,0 -30425578,"The Walking Dead",play,2.4,0 -30425578,"FEZ",purchase,1.0,0 -30425578,"FEZ",play,1.8,0 -30425578,"Awesomenauts",purchase,1.0,0 -30425578,"Awesomenauts",play,1.3,0 -30425578,"Don't Starve",purchase,1.0,0 -30425578,"Don't Starve",play,1.2,0 -30425578,"Magic 2014 ",purchase,1.0,0 -30425578,"Magic 2014 ",play,0.8,0 -30425578,"Team Fortress 2",purchase,1.0,0 -30425578,"Team Fortress 2",play,0.8,0 -30425578,"Dead Island",purchase,1.0,0 -30425578,"Dead Island",play,0.5,0 -30425578,"Gun Monkeys",purchase,1.0,0 -30425578,"Gun Monkeys",play,0.2,0 -30425578,"NiGHTS into Dreams...",purchase,1.0,0 -30425578,"Alan Wake",purchase,1.0,0 -30425578,"Alan Wake's American Nightmare",purchase,1.0,0 -30425578,"Alien Breed 2 Assault",purchase,1.0,0 -30425578,"Alien Breed 3 Descent",purchase,1.0,0 -30425578,"Alien Breed Impact",purchase,1.0,0 -30425578,"Amnesia The Dark Descent",purchase,1.0,0 -30425578,"ArcaniA",purchase,1.0,0 -30425578,"A Virus Named TOM",purchase,1.0,0 -30425578,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -30425578,"BioShock",purchase,1.0,0 -30425578,"BioShock 2",purchase,1.0,0 -30425578,"BioShock Infinite",purchase,1.0,0 -30425578,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -30425578,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -30425578,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -30425578,"Botanicula",purchase,1.0,0 -30425578,"Brothers - A Tale of Two Sons",purchase,1.0,0 -30425578,"Brtal Legend",purchase,1.0,0 -30425578,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -30425578,"Castle Crashers - Blacksmith Pack",purchase,1.0,0 -30425578,"Castle Crashers - Pink Knight Pack",purchase,1.0,0 -30425578,"Cherry Tree High Comedy Club",purchase,1.0,0 -30425578,"Crysis 2 Maximum Edition",purchase,1.0,0 -30425578,"Darksiders II",purchase,1.0,0 -30425578,"Dead Island Epidemic",purchase,1.0,0 -30425578,"Deadlight",purchase,1.0,0 -30425578,"Dead Rising 2 Off the Record",purchase,1.0,0 -30425578,"Dead Space",purchase,1.0,0 -30425578,"DeathSpank",purchase,1.0,0 -30425578,"DeathSpank Thongs Of Virtue",purchase,1.0,0 -30425578,"Deus Ex Human Revolution",purchase,1.0,0 -30425578,"Devil May Cry 4",purchase,1.0,0 -30425578,"Don't Starve Together Beta",purchase,1.0,0 -30425578,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -30425578,"Dungeon Defenders",purchase,1.0,0 -30425578,"Eets Munchies",purchase,1.0,0 -30425578,"Ether Vapor Remaster",purchase,1.0,0 -30425578,"Evoland",purchase,1.0,0 -30425578,"eXceed 2nd - Vampire REX",purchase,1.0,0 -30425578,"eXceed 3rd - Jade Penetrate Black Package",purchase,1.0,0 -30425578,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -30425578,"F.E.A.R. 3",purchase,1.0,0 -30425578,"Fallout New Vegas",purchase,1.0,0 -30425578,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -30425578,"Fallout New Vegas Dead Money",purchase,1.0,0 -30425578,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -30425578,"FINAL FANTASY VII",purchase,1.0,0 -30425578,"Fortix",purchase,1.0,0 -30425578,"FTL Faster Than Light",purchase,1.0,0 -30425578,"Giana Sisters Twisted Dreams",purchase,1.0,0 -30425578,"Giana Sisters Twisted Dreams - Rise of the Owlverlord",purchase,1.0,0 -30425578,"Half-Life",purchase,1.0,0 -30425578,"Half-Life 2",purchase,1.0,0 -30425578,"Half-Life 2 Deathmatch",purchase,1.0,0 -30425578,"Half-Life 2 Episode One",purchase,1.0,0 -30425578,"Half-Life 2 Episode Two",purchase,1.0,0 -30425578,"Half-Life 2 Lost Coast",purchase,1.0,0 -30425578,"Half-Life Blue Shift",purchase,1.0,0 -30425578,"Half-Life Opposing Force",purchase,1.0,0 -30425578,"Half-Life Source",purchase,1.0,0 -30425578,"Half-Life Deathmatch Source",purchase,1.0,0 -30425578,"King's Bounty Armored Princess",purchase,1.0,0 -30425578,"King's Bounty Crossworlds",purchase,1.0,0 -30425578,"King's Bounty The Legend",purchase,1.0,0 -30425578,"Left 4 Dead",purchase,1.0,0 -30425578,"LIMBO",purchase,1.0,0 -30425578,"MacGuffin's Curse",purchase,1.0,0 -30425578,"Mafia II",purchase,1.0,0 -30425578,"McPixel",purchase,1.0,0 -30425578,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -30425578,"Medal of Honor(TM) Single Player",purchase,1.0,0 -30425578,"Medal of Honor Pre-Order",purchase,1.0,0 -30425578,"Men of War",purchase,1.0,0 -30425578,"Men of War Assault Squad",purchase,1.0,0 -30425578,"Men of War Red Tide",purchase,1.0,0 -30425578,"Metro 2033",purchase,1.0,0 -30425578,"Mirror's Edge",purchase,1.0,0 -30425578,"Narcissu 1st & 2nd",purchase,1.0,0 -30425578,"Nosgoth",purchase,1.0,0 -30425578,"On the Rain-Slick Precipice of Darkness, Episode One",purchase,1.0,0 -30425578,"On the Rain-Slick Precipice of Darkness, Episode Two",purchase,1.0,0 -30425578,"Painkiller Hell & Damnation",purchase,1.0,0 -30425578,"Portal",purchase,1.0,0 -30425578,"Portal 2",purchase,1.0,0 -30425578,"Project Aftermath",purchase,1.0,0 -30425578,"Race The Sun",purchase,1.0,0 -30425578,"Ravaged Zombie Apocalypse",purchase,1.0,0 -30425578,"Red Faction Armageddon",purchase,1.0,0 -30425578,"Retrovirus",purchase,1.0,0 -30425578,"Risen",purchase,1.0,0 -30425578,"Risen 2 - Dark Waters",purchase,1.0,0 -30425578,"Rising Angels Reborn",purchase,1.0,0 -30425578,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -30425578,"Sacred 2 Gold",purchase,1.0,0 -30425578,"Sacred Citadel",purchase,1.0,0 -30425578,"Saints Row 2",purchase,1.0,0 -30425578,"SATAZIUS",purchase,1.0,0 -30425578,"Scribblenauts Unlimited",purchase,1.0,0 -30425578,"Serious Sam 2",purchase,1.0,0 -30425578,"Serious Sam 3 BFE",purchase,1.0,0 -30425578,"Serious Sam The Random Encounter",purchase,1.0,0 -30425578,"Serious Sam Classic The First Encounter",purchase,1.0,0 -30425578,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -30425578,"Serious Sam Classics Revolution",purchase,1.0,0 -30425578,"Serious Sam Double D XXL",purchase,1.0,0 -30425578,"Serious Sam HD The First Encounter",purchase,1.0,0 -30425578,"Shadow Warrior Classic Redux",purchase,1.0,0 -30425578,"Skullgirls Endless Beta",purchase,1.0,0 -30425578,"Sleeping Dogs",purchase,1.0,0 -30425578,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -30425578,"SpaceChem",purchase,1.0,0 -30425578,"SpellForce 2 - Faith in Destiny",purchase,1.0,0 -30425578,"Superfrog HD",purchase,1.0,0 -30425578,"Super Meat Boy",purchase,1.0,0 -30425578,"Supreme Commander",purchase,1.0,0 -30425578,"Supreme Commander Forged Alliance",purchase,1.0,0 -30425578,"Sword of the Stars The Pit",purchase,1.0,0 -30425578,"System Shock 2",purchase,1.0,0 -30425578,"Team Fortress Classic",purchase,1.0,0 -30425578,"The Baconing",purchase,1.0,0 -30425578,"The Expendabros",purchase,1.0,0 -30425578,"The Guild II",purchase,1.0,0 -30425578,"The Lord of the Rings War in the North",purchase,1.0,0 -30425578,"The Showdown Effect",purchase,1.0,0 -30425578,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -30425578,"The Witcher Enhanced Edition",purchase,1.0,0 -30425578,"They Bleed Pixels",purchase,1.0,0 -30425578,"Thomas Was Alone",purchase,1.0,0 -30425578,"Torchlight II",purchase,1.0,0 -30425578,"Tower Wars",purchase,1.0,0 -30425578,"Trine",purchase,1.0,0 -30425578,"Trine 2",purchase,1.0,0 -30425578,"Worms Armageddon",purchase,1.0,0 -30425578,"Worms Blast",purchase,1.0,0 -30425578,"Worms Crazy Golf",purchase,1.0,0 -30425578,"Worms Pinball",purchase,1.0,0 -30425578,"Worms Ultimate Mayhem",purchase,1.0,0 -30425578,"X-COM Apocalypse",purchase,1.0,0 -30425578,"X-COM Enforcer",purchase,1.0,0 -30425578,"X-COM Interceptor",purchase,1.0,0 -30425578,"X-COM Terror from the Deep",purchase,1.0,0 -30425578,"X-COM UFO Defense",purchase,1.0,0 -30425578,"XCOM Enemy Unknown",purchase,1.0,0 -30425578,"Zack Zero",purchase,1.0,0 -309404240,"Unturned",purchase,1.0,0 -309404240,"Unturned",play,13.0,0 -309404240,"Team Fortress 2",purchase,1.0,0 -309404240,"Team Fortress 2",play,2.2,0 -309404240,"Mitos.is The Game",purchase,1.0,0 -309404240,"Mitos.is The Game",play,2.2,0 -309404240,"AdVenture Capitalist",purchase,1.0,0 -309404240,"AdVenture Capitalist",play,0.7,0 -309404240,"Transformice",purchase,1.0,0 -309404240,"Transformice",play,0.3,0 -229334262,"Warface",purchase,1.0,0 -229334262,"Warface",play,2.8,0 -263735764,"Football Superstars",purchase,1.0,0 -263735764,"No More Room in Hell",purchase,1.0,0 -263735764,"Reversion - The Escape",purchase,1.0,0 -199047397,"Dota 2",purchase,1.0,0 -199047397,"Dota 2",play,1.6,0 -170329549,"Team Fortress 2",purchase,1.0,0 -170329549,"Team Fortress 2",play,2.5,0 -170329549,"Free to Play",purchase,1.0,0 -170329549,"Free to Play",play,0.2,0 -170329549,"Velvet Sundown",purchase,1.0,0 -170329549,"Velvet Sundown",play,0.1,0 -170329549,"Counter-Strike Nexon Zombies",purchase,1.0,0 -170329549,"Marvel Heroes 2015",purchase,1.0,0 -170329549,"Unturned",purchase,1.0,0 -160139917,"Dota 2",purchase,1.0,0 -160139917,"Dota 2",play,1.4,0 -148761419,"Grand Theft Auto V",purchase,1.0,0 -148761419,"Grand Theft Auto V",play,236.0,0 -148761419,"Dota 2",purchase,1.0,0 -148761419,"Dota 2",play,4.0,0 -211544205,"Counter-Strike Global Offensive",purchase,1.0,0 -211544205,"Counter-Strike Global Offensive",play,270.0,0 -211544205,"Garry's Mod",purchase,1.0,0 -211544205,"Garry's Mod",play,44.0,0 -211544205,"Rust",purchase,1.0,0 -211544205,"Rust",play,26.0,0 -211544205,"Euro Truck Simulator 2",purchase,1.0,0 -211544205,"Euro Truck Simulator 2",play,14.4,0 -211544205,"Ace of Spades",purchase,1.0,0 -211544205,"Ace of Spades",play,9.8,0 -211544205,"Hitman Absolution",purchase,1.0,0 -211544205,"Hitman Absolution",play,6.8,0 -211544205,"Sniper Elite V2",purchase,1.0,0 -211544205,"Sniper Elite V2",play,4.2,0 -211544205,"Left 4 Dead 2",purchase,1.0,0 -211544205,"Left 4 Dead 2",play,3.8,0 -211544205,"Papers, Please",purchase,1.0,0 -211544205,"Papers, Please",play,1.1,0 -211544205,"World of Guns Gun Disassembly",purchase,1.0,0 -211544205,"World of Guns Gun Disassembly",play,1.0,0 -211544205,"60 Seconds!",purchase,1.0,0 -211544205,"60 Seconds!",play,1.0,0 -211544205,"Unturned",purchase,1.0,0 -211544205,"Unturned",play,0.5,0 -211544205,"Insurgency",purchase,1.0,0 -211544205,"Insurgency",play,0.5,0 -211544205,"theHunter",purchase,1.0,0 -211544205,"theHunter",play,0.4,0 -211544205,"DiggerOnline",purchase,1.0,0 -211544205,"DiggerOnline",play,0.3,0 -211544205,"Uncrowded",purchase,1.0,0 -211544205,"Uncrowded",play,0.2,0 -211544205,"Defy Gravity",purchase,1.0,0 -211544205,"Defy Gravity",play,0.2,0 -211544205,"Absconding Zatwor",purchase,1.0,0 -211544205,"Codename CURE",purchase,1.0,0 -211544205,"Doorways Prelude",purchase,1.0,0 -211544205,"Dracula 2 The Last Sanctuary",purchase,1.0,0 -211544205,"Flesh Eaters",purchase,1.0,0 -211544205,"Nikopol Secrets of the Immortals",purchase,1.0,0 -211544205,"Obscure",purchase,1.0,0 -211544205,"QuestRun",purchase,1.0,0 -211544205,"Reversion - The Meeting",purchase,1.0,0 -211544205,"Stonerid",purchase,1.0,0 -211544205,"Storm in a Teacup",purchase,1.0,0 -211544205,"Syberia 2",purchase,1.0,0 -45974860,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -45974860,"Call of Duty Modern Warfare 2 - Multiplayer",play,406.0,0 -45974860,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -45974860,"Call of Duty Black Ops - Multiplayer",play,218.0,0 -45974860,"Euro Truck Simulator 2",purchase,1.0,0 -45974860,"Euro Truck Simulator 2",play,148.0,0 -45974860,"Grand Theft Auto V",purchase,1.0,0 -45974860,"Grand Theft Auto V",play,94.0,0 -45974860,"Counter-Strike Global Offensive",purchase,1.0,0 -45974860,"Counter-Strike Global Offensive",play,83.0,0 -45974860,"Team Fortress 2",purchase,1.0,0 -45974860,"Team Fortress 2",play,79.0,0 -45974860,"Torchlight II",purchase,1.0,0 -45974860,"Torchlight II",play,62.0,0 -45974860,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -45974860,"Dark Souls Prepare to Die Edition",play,49.0,0 -45974860,"Cities Skylines",purchase,1.0,0 -45974860,"Cities Skylines",play,42.0,0 -45974860,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -45974860,"Call of Duty Black Ops II - Multiplayer",play,42.0,0 -45974860,"Fallout 4",purchase,1.0,0 -45974860,"Fallout 4",play,35.0,0 -45974860,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -45974860,"Call of Duty Advanced Warfare - Multiplayer",play,34.0,0 -45974860,"Rust",purchase,1.0,0 -45974860,"Rust",play,34.0,0 -45974860,"The Elder Scrolls V Skyrim",purchase,1.0,0 -45974860,"The Elder Scrolls V Skyrim",play,32.0,0 -45974860,"Borderlands 2",purchase,1.0,0 -45974860,"Borderlands 2",play,29.0,0 -45974860,"Terraria",purchase,1.0,0 -45974860,"Terraria",play,25.0,0 -45974860,"Dungeon Defenders",purchase,1.0,0 -45974860,"Dungeon Defenders",play,22.0,0 -45974860,"DayZ",purchase,1.0,0 -45974860,"DayZ",play,21.0,0 -45974860,"Portal 2",purchase,1.0,0 -45974860,"Portal 2",play,21.0,0 -45974860,"Don't Starve",purchase,1.0,0 -45974860,"Don't Starve",play,18.9,0 -45974860,"Warhammer End Times - Vermintide",purchase,1.0,0 -45974860,"Warhammer End Times - Vermintide",play,17.8,0 -45974860,"Project CARS",purchase,1.0,0 -45974860,"Project CARS",play,17.7,0 -45974860,"Monday Night Combat",purchase,1.0,0 -45974860,"Monday Night Combat",play,15.2,0 -45974860,"DARK SOULS II",purchase,1.0,0 -45974860,"DARK SOULS II",play,13.9,0 -45974860,"Call of Duty Modern Warfare 2",purchase,1.0,0 -45974860,"Call of Duty Modern Warfare 2",play,13.8,0 -45974860,"NBA 2K9",purchase,1.0,0 -45974860,"NBA 2K9",play,13.4,0 -45974860,"Call of Duty Black Ops",purchase,1.0,0 -45974860,"Call of Duty Black Ops",play,13.2,0 -45974860,"FTL Faster Than Light",purchase,1.0,0 -45974860,"FTL Faster Than Light",play,13.0,0 -45974860,"Evolve",purchase,1.0,0 -45974860,"Evolve",play,12.1,0 -45974860,"Middle-earth Shadow of Mordor",purchase,1.0,0 -45974860,"Middle-earth Shadow of Mordor",play,12.0,0 -45974860,"Garry's Mod",purchase,1.0,0 -45974860,"Garry's Mod",play,11.1,0 -45974860,"Pillars of Eternity",purchase,1.0,0 -45974860,"Pillars of Eternity",play,11.1,0 -45974860,"Mortal Kombat X",purchase,1.0,0 -45974860,"Mortal Kombat X",play,9.6,0 -45974860,"Kerbal Space Program",purchase,1.0,0 -45974860,"Kerbal Space Program",play,8.9,0 -45974860,"Darkest Dungeon",purchase,1.0,0 -45974860,"Darkest Dungeon",play,8.9,0 -45974860,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -45974860,"Injustice Gods Among Us Ultimate Edition",play,8.3,0 -45974860,"Chivalry Medieval Warfare",purchase,1.0,0 -45974860,"Chivalry Medieval Warfare",play,8.1,0 -45974860,"Tropico 5",purchase,1.0,0 -45974860,"Tropico 5",play,8.1,0 -45974860,"Call of Duty Black Ops III",purchase,1.0,0 -45974860,"Call of Duty Black Ops III",play,7.8,0 -45974860,"Trine 2",purchase,1.0,0 -45974860,"Trine 2",play,7.6,0 -45974860,"NBA 2K16",purchase,1.0,0 -45974860,"NBA 2K16",play,7.3,0 -45974860,"Prison Architect",purchase,1.0,0 -45974860,"Prison Architect",play,6.2,0 -45974860,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -45974860,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,6.2,0 -45974860,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -45974860,"Warhammer 40,000 Dawn of War Dark Crusade",play,6.2,0 -45974860,"Rocket League",purchase,1.0,0 -45974860,"Rocket League",play,5.8,0 -45974860,"Magicka",purchase,1.0,0 -45974860,"Magicka",play,5.4,0 -45974860,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -45974860,"DARK SOULS II Scholar of the First Sin",play,5.0,0 -45974860,"Dota 2",purchase,1.0,0 -45974860,"Dota 2",play,4.5,0 -45974860,"Orcs Must Die! 2",purchase,1.0,0 -45974860,"Orcs Must Die! 2",play,3.9,0 -45974860,"Gauntlet ",purchase,1.0,0 -45974860,"Gauntlet ",play,3.7,0 -45974860,"Aliens Colonial Marines",purchase,1.0,0 -45974860,"Aliens Colonial Marines",play,3.1,0 -45974860,"Natural Selection 2",purchase,1.0,0 -45974860,"Natural Selection 2",play,2.0,0 -45974860,"Nosgoth",purchase,1.0,0 -45974860,"Nosgoth",play,1.6,0 -45974860,"DiRT Rally",purchase,1.0,0 -45974860,"DiRT Rally",play,1.3,0 -45974860,"BattleBlock Theater",purchase,1.0,0 -45974860,"BattleBlock Theater",play,1.2,0 -45974860,"FINAL FANTASY XIII",purchase,1.0,0 -45974860,"FINAL FANTASY XIII",play,1.2,0 -45974860,"Arma 2 Operation Arrowhead",purchase,1.0,0 -45974860,"Arma 2 Operation Arrowhead",play,1.1,0 -45974860,"The Stanley Parable",purchase,1.0,0 -45974860,"The Stanley Parable",play,0.7,0 -45974860,"Metro Last Light Redux",purchase,1.0,0 -45974860,"Metro Last Light Redux",play,0.7,0 -45974860,"Hero Academy",purchase,1.0,0 -45974860,"Hero Academy",play,0.4,0 -45974860,"Goat Simulator",purchase,1.0,0 -45974860,"Goat Simulator",play,0.3,0 -45974860,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -45974860,"Call of Duty Black Ops II - Zombies",play,0.3,0 -45974860,"Call of Duty Advanced Warfare",purchase,1.0,0 -45974860,"Arma 2",purchase,1.0,0 -45974860,"Aliens vs. Predator",purchase,1.0,0 -45974860,"Call of Duty Black Ops II",purchase,1.0,0 -45974860,"Don't Starve Together Beta",purchase,1.0,0 -45974860,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -45974860,"Evolve - Behemoth",purchase,1.0,0 -45974860,"Marvel Heroes 2015",purchase,1.0,0 -45974860,"Patch testing for Chivalry",purchase,1.0,0 -45974860,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -45974860,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -45974860,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -45974860,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -45974860,"Warhammer End Times - Vermintide Sigmar's Blessing",purchase,1.0,0 -215917975,"Dota 2",purchase,1.0,0 -215917975,"Dota 2",play,0.7,0 -277768228,"Double Action Boogaloo",purchase,1.0,0 -277768228,"Double Action Boogaloo",play,0.2,0 -199121928,"Dota 2",purchase,1.0,0 -199121928,"Dota 2",play,3.4,0 -185078775,"Dota 2",purchase,1.0,0 -185078775,"Dota 2",play,0.8,0 -95542056,"Dota 2",purchase,1.0,0 -95542056,"Dota 2",play,19.3,0 -243536793,"Nosgoth",purchase,1.0,0 -243536793,"Nosgoth",play,0.5,0 -243536793,"Heroes & Generals",purchase,1.0,0 -243536793,"Heroes & Generals",play,0.5,0 -243536793,"Loadout",purchase,1.0,0 -115821787,"Football Manager 2013",purchase,1.0,0 -115821787,"Football Manager 2013",play,38.0,0 -14417857,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -14417857,"Dragon Age Origins - Ultimate Edition",play,1157.0,0 -14417857,"Portal 2",purchase,1.0,0 -14417857,"Portal 2",play,102.0,0 -14417857,"Left 4 Dead 2",purchase,1.0,0 -14417857,"Left 4 Dead 2",play,68.0,0 -14417857,"Dota 2",purchase,1.0,0 -14417857,"Dota 2",play,57.0,0 -14417857,"Left 4 Dead",purchase,1.0,0 -14417857,"Left 4 Dead",play,35.0,0 -14417857,"Half-Life 2",purchase,1.0,0 -14417857,"Half-Life 2",play,22.0,0 -14417857,"The Stanley Parable",purchase,1.0,0 -14417857,"The Stanley Parable",play,15.9,0 -14417857,"POSTAL 2",purchase,1.0,0 -14417857,"POSTAL 2",play,13.6,0 -14417857,"Bastion",purchase,1.0,0 -14417857,"Bastion",play,13.2,0 -14417857,"Portal",purchase,1.0,0 -14417857,"Portal",play,12.1,0 -14417857,"Half-Life 2 Episode Two",purchase,1.0,0 -14417857,"Half-Life 2 Episode Two",play,10.0,0 -14417857,"Half-Life",purchase,1.0,0 -14417857,"Half-Life",play,8.1,0 -14417857,"Half-Life 2 Lost Coast",purchase,1.0,0 -14417857,"Half-Life 2 Lost Coast",play,7.9,0 -14417857,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -14417857,"The Witcher 2 Assassins of Kings Enhanced Edition",play,4.7,0 -14417857,"Half-Life Blue Shift",purchase,1.0,0 -14417857,"Half-Life Blue Shift",play,4.6,0 -14417857,"Half-Life Opposing Force",purchase,1.0,0 -14417857,"Half-Life Opposing Force",play,4.0,0 -14417857,"Half-Life 2 Episode One",purchase,1.0,0 -14417857,"Half-Life 2 Episode One",play,3.1,0 -14417857,"Serious Sam HD The Second Encounter",purchase,1.0,0 -14417857,"Serious Sam HD The Second Encounter",play,1.7,0 -14417857,"Half-Life 2 Deathmatch",purchase,1.0,0 -14417857,"Half-Life 2 Deathmatch",play,1.2,0 -14417857,"Alien Swarm",purchase,1.0,0 -14417857,"Alien Swarm",play,1.1,0 -14417857,"Codename Gordon",purchase,1.0,0 -14417857,"Codename Gordon",play,0.9,0 -14417857,"Pinball Arcade",purchase,1.0,0 -14417857,"Half-Life 2 Update",purchase,1.0,0 -14417857,"Deathmatch Classic",purchase,1.0,0 -14417857,"Counter-Strike",purchase,1.0,0 -14417857,"Counter-Strike Source",purchase,1.0,0 -14417857,"Day of Defeat",purchase,1.0,0 -14417857,"Half-Life Deathmatch Source",purchase,1.0,0 -14417857,"Ricochet",purchase,1.0,0 -14417857,"Team Fortress Classic",purchase,1.0,0 -160844169,"Dota 2",purchase,1.0,0 -160844169,"Dota 2",play,274.0,0 -83198547,"Fallout New Vegas",purchase,1.0,0 -83198547,"Fallout New Vegas",play,43.0,0 -162024985,"Dota 2",purchase,1.0,0 -162024985,"Dota 2",play,2.7,0 -150623264,"Stronghold 3",purchase,1.0,0 -150623264,"Stronghold 3",play,12.5,0 -150623264,"Call of Duty Modern Warfare 2",purchase,1.0,0 -150623264,"Call of Duty Modern Warfare 2",play,7.7,0 -150623264,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -150623264,"Stronghold HD",purchase,1.0,0 -240820377,"Dota 2",purchase,1.0,0 -240820377,"Dota 2",play,0.3,0 -294888042,"Dota 2",purchase,1.0,0 -294888042,"Dota 2",play,4.6,0 -135545063,"Dota 2",purchase,1.0,0 -135545063,"Dota 2",play,39.0,0 -80386506,"Left 4 Dead 2",purchase,1.0,0 -80386506,"Left 4 Dead 2",play,1.7,0 -143177422,"Dota 2",purchase,1.0,0 -143177422,"Dota 2",play,2.3,0 -289075484,"Dota 2",purchase,1.0,0 -289075484,"Dota 2",play,1.8,0 -82212295,"Dota 2",purchase,1.0,0 -82212295,"Dota 2",play,607.0,0 -82212295,"Team Fortress 2",purchase,1.0,0 -82212295,"Team Fortress 2",play,575.0,0 -82212295,"Alien Swarm",purchase,1.0,0 -82212295,"Alien Swarm",play,19.0,0 -82212295,"Poker Night at the Inventory",purchase,1.0,0 -82212295,"Poker Night at the Inventory",play,4.0,0 -82212295,"Unturned",purchase,1.0,0 -82212295,"Unturned",play,0.5,0 -144736928,"Team Fortress 2",purchase,1.0,0 -144736928,"Team Fortress 2",play,73.0,0 -144736928,"Dota 2",purchase,1.0,0 -144736928,"Dota 2",play,15.8,0 -111044780,"The Sims(TM) 3",purchase,1.0,0 -111044780,"The Sims(TM) 3",play,106.0,0 -111044780,"Counter-Strike Global Offensive",purchase,1.0,0 -111044780,"Counter-Strike Global Offensive",play,11.4,0 -111044780,"Portal 2",purchase,1.0,0 -111044780,"Portal 2",play,10.0,0 -111044780,"Call of Duty Modern Warfare 3",purchase,1.0,0 -111044780,"Call of Duty Modern Warfare 3",play,7.6,0 -111044780,"Tabletop Simulator",purchase,1.0,0 -111044780,"Tabletop Simulator",play,3.6,0 -111044780,"Team Fortress 2",purchase,1.0,0 -111044780,"Team Fortress 2",play,0.7,0 -111044780,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -111044780,"Magicka",purchase,1.0,0 -111044780,"Magicka Final Frontier",purchase,1.0,0 -111044780,"Magicka Frozen Lake",purchase,1.0,0 -111044780,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -111044780,"Magicka Nippon",purchase,1.0,0 -111044780,"Magicka Party Robes",purchase,1.0,0 -111044780,"Magicka The Watchtower",purchase,1.0,0 -111044780,"Magicka Vietnam",purchase,1.0,0 -111044780,"Magicka Wizard's Survival Kit",purchase,1.0,0 -111044780,"Surgeon Simulator",purchase,1.0,0 -271013192,"Rust",purchase,1.0,0 -271013192,"Rust",play,195.0,0 -271013192,"Amnesia The Dark Descent",purchase,1.0,0 -271013192,"Amnesia The Dark Descent",play,0.2,0 -271013192,"Dirty Bomb",purchase,1.0,0 -271013192,"Dirty Bomb",play,0.1,0 -239306186,"Dota 2",purchase,1.0,0 -239306186,"Dota 2",play,3.0,0 -296254406,"Counter-Strike Global Offensive",purchase,1.0,0 -296254406,"Counter-Strike Global Offensive",play,61.0,0 -296254406,"Unturned",purchase,1.0,0 -296254406,"Unturned",play,1.7,0 -296254406,"Commander Conquest of the Americas Gold",purchase,1.0,0 -296254406,"The Book of Unwritten Tales",purchase,1.0,0 -296254406,"The Book of Unwritten Tales Extras",purchase,1.0,0 -296254406,"X-Blades",purchase,1.0,0 -108727716,"Dota 2",purchase,1.0,0 -108727716,"Dota 2",play,3.4,0 -141027992,"Team Fortress 2",purchase,1.0,0 -141027992,"Team Fortress 2",play,0.8,0 -156669447,"Dota 2",purchase,1.0,0 -156669447,"Dota 2",play,15.5,0 -156669447,"Unturned",purchase,1.0,0 -207647609,"Dota 2",purchase,1.0,0 -207647609,"Dota 2",play,4.2,0 -207647609,"War Thunder",purchase,1.0,0 -207647609,"War Thunder",play,0.4,0 -207647609,"Loadout",purchase,1.0,0 -207647609,"Loadout",play,0.4,0 -207647609,"Magicka Wizard Wars",purchase,1.0,0 -207647609,"March of War",purchase,1.0,0 -52438281,"Football Manager 2009",purchase,1.0,0 -66950079,"Arma 3",purchase,1.0,0 -66950079,"Arma 3",play,509.0,0 -66950079,"Team Fortress 2",purchase,1.0,0 -66950079,"Team Fortress 2",play,232.0,0 -66950079,"Farming Simulator 2013",purchase,1.0,0 -66950079,"Farming Simulator 2013",play,112.0,0 -66950079,"Farming Simulator 15",purchase,1.0,0 -66950079,"Farming Simulator 15",play,98.0,0 -66950079,"ARK Survival Evolved",purchase,1.0,0 -66950079,"ARK Survival Evolved",play,84.0,0 -66950079,"Euro Truck Simulator 2",purchase,1.0,0 -66950079,"Euro Truck Simulator 2",play,79.0,0 -66950079,"Counter-Strike Global Offensive",purchase,1.0,0 -66950079,"Counter-Strike Global Offensive",play,73.0,0 -66950079,"Garry's Mod",purchase,1.0,0 -66950079,"Garry's Mod",play,44.0,0 -66950079,"Trials Evolution Gold Edition",purchase,1.0,0 -66950079,"Trials Evolution Gold Edition",play,22.0,0 -66950079,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -66950079,"Grand Theft Auto Episodes from Liberty City",play,18.2,0 -66950079,"DiRT 3",purchase,1.0,0 -66950079,"DiRT 3",play,17.7,0 -66950079,"Space Engineers",purchase,1.0,0 -66950079,"Space Engineers",play,12.3,0 -66950079,"F1 2012",purchase,1.0,0 -66950079,"F1 2012",play,10.9,0 -66950079,"FUEL",purchase,1.0,0 -66950079,"FUEL",play,8.8,0 -66950079,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -66950079,"Tom Clancy's Splinter Cell Conviction",play,8.3,0 -66950079,"Chivalry Medieval Warfare",purchase,1.0,0 -66950079,"Chivalry Medieval Warfare",play,7.0,0 -66950079,"Call of Duty Advanced Warfare",purchase,1.0,0 -66950079,"Call of Duty Advanced Warfare",play,5.8,0 -66950079,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -66950079,"Just Cause 2 Multiplayer Mod",play,5.2,0 -66950079,"Borderlands",purchase,1.0,0 -66950079,"Borderlands",play,3.8,0 -66950079,"Infestation Survivor Stories",purchase,1.0,0 -66950079,"Infestation Survivor Stories",play,3.1,0 -66950079,"Saints Row IV",purchase,1.0,0 -66950079,"Saints Row IV",play,3.0,0 -66950079,"APB Reloaded",purchase,1.0,0 -66950079,"APB Reloaded",play,2.5,0 -66950079,"Unturned",purchase,1.0,0 -66950079,"Unturned",play,2.3,0 -66950079,"Spintires",purchase,1.0,0 -66950079,"Spintires",play,1.9,0 -66950079,"Worms Reloaded",purchase,1.0,0 -66950079,"Worms Reloaded",play,1.1,0 -66950079,"PAYDAY 2",purchase,1.0,0 -66950079,"PAYDAY 2",play,1.0,0 -66950079,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -66950079,"Call of Duty Advanced Warfare - Multiplayer",play,0.9,0 -66950079,"Just Cause 2",purchase,1.0,0 -66950079,"Just Cause 2",play,0.7,0 -66950079,"Worms Ultimate Mayhem",purchase,1.0,0 -66950079,"Worms Ultimate Mayhem",play,0.6,0 -66950079,"Tom Clancy's Splinter Cell",purchase,1.0,0 -66950079,"Tom Clancy's Splinter Cell",play,0.4,0 -66950079,"Worms Armageddon",purchase,1.0,0 -66950079,"Worms Armageddon",play,0.3,0 -66950079,"Counter-Strike Source",purchase,1.0,0 -66950079,"Counter-Strike Source",play,0.1,0 -66950079,"Tactical Intervention",purchase,1.0,0 -66950079,"DiRT 3 Complete Edition",purchase,1.0,0 -66950079,"War Thunder",purchase,1.0,0 -66950079,"Arma 3 Helicopters",purchase,1.0,0 -66950079,"Arma 3 Karts",purchase,1.0,0 -66950079,"Arma 3 Marksmen",purchase,1.0,0 -66950079,"Arma 3 Zeus",purchase,1.0,0 -66950079,"Arma Cold War Assault",purchase,1.0,0 -66950079,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -66950079,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -66950079,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -66950079,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -66950079,"Counter-Strike",purchase,1.0,0 -66950079,"Counter-Strike Condition Zero",purchase,1.0,0 -66950079,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -66950079,"Dead Island Epidemic",purchase,1.0,0 -66950079,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -66950079,"Just Cause",purchase,1.0,0 -66950079,"Patch testing for Chivalry",purchase,1.0,0 -66950079,"Saints Row 2",purchase,1.0,0 -66950079,"Saints Row The Third",purchase,1.0,0 -66950079,"theHunter",purchase,1.0,0 -66950079,"Tom Clancy's Splinter Cell Chaos Theory",purchase,1.0,0 -66950079,"Tom Clancy's Splinter Cell Double Agent",purchase,1.0,0 -66950079,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -66950079,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -66950079,"Worms",purchase,1.0,0 -66950079,"Worms Blast",purchase,1.0,0 -66950079,"Worms Clan Wars",purchase,1.0,0 -66950079,"Worms Crazy Golf",purchase,1.0,0 -66950079,"Worms Pinball",purchase,1.0,0 -66950079,"Worms Revolution",purchase,1.0,0 -38100517,"Universe at War Earth Assault",purchase,1.0,0 -38100517,"Universe at War Earth Assault",play,47.0,0 -38100517,"Alien Shooter Vengeance",purchase,1.0,0 -38100517,"Alien Shooter Vengeance",play,4.5,0 -38100517,"Alien Shooter 2 Reloaded",purchase,1.0,0 -53181165,"Counter-Strike",purchase,1.0,0 -53181165,"Counter-Strike",play,1.8,0 -53181165,"Counter-Strike Condition Zero",purchase,1.0,0 -53181165,"Counter-Strike Condition Zero",play,0.6,0 -53181165,"Day of Defeat",purchase,1.0,0 -53181165,"Day of Defeat",play,0.2,0 -53181165,"Deathmatch Classic",purchase,1.0,0 -53181165,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -53181165,"Ricochet",purchase,1.0,0 -154137401,"Dota 2",purchase,1.0,0 -154137401,"Dota 2",play,1.3,0 -92788681,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -92788681,"Call of Duty Modern Warfare 3 - Multiplayer",play,9.1,0 -92788681,"Call of Duty Modern Warfare 3",purchase,1.0,0 -92788681,"Call of Duty Modern Warfare 3",play,4.9,0 -259402641,"Sakura Clicker",purchase,1.0,0 -259402641,"Sakura Clicker",play,0.5,0 -297340487,"Neverwinter",purchase,1.0,0 -297340487,"Neverwinter",play,1.6,0 -297340487,"Warframe",purchase,1.0,0 -297340487,"Warframe",play,1.0,0 -297340487,"Dungeon Defenders II",purchase,1.0,0 -297340487,"Dungeon Defenders II",play,0.5,0 -297340487,"Trove",purchase,1.0,0 -297340487,"Trove",play,0.3,0 -297340487,"Aura Kingdom",purchase,1.0,0 -297340487,"RIFT",purchase,1.0,0 -297340487,"TERA",purchase,1.0,0 -59383825,"Football Manager 2013",purchase,1.0,0 -59383825,"Football Manager 2013",play,386.0,0 -59383825,"Football Manager 2014",purchase,1.0,0 -59383825,"Football Manager 2014",play,295.0,0 -59383825,"Football Manager 2012",purchase,1.0,0 -59383825,"Football Manager 2012",play,130.0,0 -59383825,"Football Manager 2015",purchase,1.0,0 -59383825,"Football Manager 2015",play,27.0,0 -59383825,"Football Manager 2009",purchase,1.0,0 -59383825,"Football Manager 2009",play,4.5,0 -56830362,"FIFA Manager 10",purchase,1.0,0 -206904972,"Counter-Strike Global Offensive",purchase,1.0,0 -206904972,"Counter-Strike Global Offensive",play,72.0,0 -206904972,"Dead Island Epidemic",purchase,1.0,0 -206904972,"Dead Island Epidemic",play,0.1,0 -83572990,"Dota 2",purchase,1.0,0 -83572990,"Dota 2",play,11.7,0 -83572990,"Magicka Wizard Wars",purchase,1.0,0 -83572990,"Magicka Wizard Wars",play,1.8,0 -83572990,"Nosgoth",purchase,1.0,0 -83572990,"Nosgoth",play,0.4,0 -298173249,"Dota 2",purchase,1.0,0 -298173249,"Dota 2",play,0.5,0 -239296422,"Dota 2",purchase,1.0,0 -239296422,"Dota 2",play,1.0,0 -85366890,"The Elder Scrolls V Skyrim",purchase,1.0,0 -85366890,"The Elder Scrolls V Skyrim",play,173.0,0 -85366890,"DARK SOULS II",purchase,1.0,0 -85366890,"DARK SOULS II",play,71.0,0 -85366890,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -85366890,"Dark Souls Prepare to Die Edition",play,52.0,0 -85366890,"Team Fortress 2",purchase,1.0,0 -85366890,"Team Fortress 2",play,39.0,0 -85366890,"Batman Arkham City GOTY",purchase,1.0,0 -85366890,"Batman Arkham City GOTY",play,37.0,0 -85366890,"Torchlight II",purchase,1.0,0 -85366890,"Torchlight II",play,34.0,0 -85366890,"Deus Ex Human Revolution",purchase,1.0,0 -85366890,"Deus Ex Human Revolution",play,33.0,0 -85366890,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -85366890,"Resident Evil 6 / Biohazard 6",play,29.0,0 -85366890,"Metro 2033",purchase,1.0,0 -85366890,"Metro 2033",play,27.0,0 -85366890,"Batman Arkham Origins",purchase,1.0,0 -85366890,"Batman Arkham Origins",play,26.0,0 -85366890,"Tomb Raider",purchase,1.0,0 -85366890,"Tomb Raider",play,22.0,0 -85366890,"Dishonored",purchase,1.0,0 -85366890,"Dishonored",play,21.0,0 -85366890,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -85366890,"Batman Arkham Asylum GOTY Edition",play,20.0,0 -85366890,"Alan Wake",purchase,1.0,0 -85366890,"Alan Wake",play,19.2,0 -85366890,"RAGE",purchase,1.0,0 -85366890,"RAGE",play,15.5,0 -85366890,"Call of Duty Black Ops II",purchase,1.0,0 -85366890,"Call of Duty Black Ops II",play,14.8,0 -85366890,"Tomb Raider Anniversary",purchase,1.0,0 -85366890,"Tomb Raider Anniversary",play,13.8,0 -85366890,"Torchlight",purchase,1.0,0 -85366890,"Torchlight",play,13.7,0 -85366890,"BioShock Infinite",purchase,1.0,0 -85366890,"BioShock Infinite",play,12.5,0 -85366890,"The Testament of Sherlock Holmes",purchase,1.0,0 -85366890,"The Testament of Sherlock Holmes",play,11.4,0 -85366890,"Magicka",purchase,1.0,0 -85366890,"Magicka",play,11.1,0 -85366890,"Tomb Raider Legend",purchase,1.0,0 -85366890,"Tomb Raider Legend",play,10.5,0 -85366890,"Tomb Raider Underworld",purchase,1.0,0 -85366890,"Tomb Raider Underworld",play,9.4,0 -85366890,"Call of Duty Ghosts",purchase,1.0,0 -85366890,"Call of Duty Ghosts",play,7.9,0 -85366890,"Alan Wake's American Nightmare",purchase,1.0,0 -85366890,"Alan Wake's American Nightmare",play,7.2,0 -85366890,"Lara Croft and the Guardian of Light",purchase,1.0,0 -85366890,"Lara Croft and the Guardian of Light",play,6.8,0 -85366890,"Portal 2",purchase,1.0,0 -85366890,"Portal 2",play,6.6,0 -85366890,"LIMBO",purchase,1.0,0 -85366890,"LIMBO",play,2.6,0 -85366890,"Left 4 Dead",purchase,1.0,0 -85366890,"Left 4 Dead",play,1.5,0 -85366890,"Fallout 2",purchase,1.0,0 -85366890,"Fallout 2",play,1.1,0 -85366890,"Call of Duty Advanced Warfare",purchase,1.0,0 -85366890,"Call of Duty Advanced Warfare",play,0.6,0 -85366890,"Surgeon Simulator",purchase,1.0,0 -85366890,"Surgeon Simulator",play,0.5,0 -85366890,"Fallout",purchase,1.0,0 -85366890,"Metro Last Light Redux",purchase,1.0,0 -85366890,"Fallout Tactics",purchase,1.0,0 -85366890,"Prototype",purchase,1.0,0 -85366890,"Dead Space 2",purchase,1.0,0 -85366890,"Sherlock Holmes Crimes and Punishments",purchase,1.0,0 -85366890,"Assassin's Creed Brotherhood",purchase,1.0,0 -85366890,"Assassin's Creed Freedom Cry",purchase,1.0,0 -85366890,"Assassin's Creed Revelations",purchase,1.0,0 -85366890,"Assassin's Creed III",purchase,1.0,0 -85366890,"Borderlands",purchase,1.0,0 -85366890,"Borderlands 2",purchase,1.0,0 -85366890,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -85366890,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -85366890,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -85366890,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -85366890,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -85366890,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -85366890,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -85366890,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -85366890,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -85366890,"Crysis 2 Maximum Edition",purchase,1.0,0 -85366890,"DARK SOULS II - Season Pass",purchase,1.0,0 -85366890,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -85366890,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -85366890,"Dead Space",purchase,1.0,0 -85366890,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -85366890,"Fallout New Vegas",purchase,1.0,0 -85366890,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -85366890,"Fallout New Vegas Dead Money",purchase,1.0,0 -85366890,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -85366890,"Left 4 Dead 2",purchase,1.0,0 -85366890,"Magicka Final Frontier",purchase,1.0,0 -85366890,"Magicka Frozen Lake",purchase,1.0,0 -85366890,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -85366890,"Magicka Nippon",purchase,1.0,0 -85366890,"Magicka Party Robes",purchase,1.0,0 -85366890,"Magicka The Watchtower",purchase,1.0,0 -85366890,"Magicka Vietnam",purchase,1.0,0 -85366890,"Magicka Wizard's Survival Kit",purchase,1.0,0 -85366890,"Max Payne",purchase,1.0,0 -85366890,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -85366890,"Max Payne 3",purchase,1.0,0 -85366890,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -85366890,"Medal of Honor(TM) Single Player",purchase,1.0,0 -85366890,"Medal of Honor Pre-Order",purchase,1.0,0 -85366890,"Mirror's Edge",purchase,1.0,0 -85366890,"PROTOTYPE 2",purchase,1.0,0 -85366890,"resident evil 4 / biohazard 4",purchase,1.0,0 -85366890,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -85366890,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -85366890,"The Elder Scrolls III Morrowind",purchase,1.0,0 -85366890,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -85366890,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -85366890,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -85366890,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -142971534,"Trove",purchase,1.0,0 -142971534,"Trove",play,26.0,0 -142971534,"Dota 2",purchase,1.0,0 -142971534,"Dota 2",play,18.9,0 -142971534,"Torchlight II",purchase,1.0,0 -142971534,"Torchlight II",play,6.0,0 -142971534,"Magicka Wizard Wars",purchase,1.0,0 -142971534,"Magicka Wizard Wars",play,0.5,0 -142971534,"Clicker Heroes",purchase,1.0,0 -142971534,"Cubic Castles",purchase,1.0,0 -142971534,"Time Clickers",purchase,1.0,0 -210419195,"Unturned",purchase,1.0,0 -210419195,"Unturned",play,0.9,0 -182422786,"Counter-Strike Global Offensive",purchase,1.0,0 -182422786,"Counter-Strike Global Offensive",play,146.0,0 -182422786,"Garry's Mod",purchase,1.0,0 -182422786,"Garry's Mod",play,29.0,0 -182422786,"No More Room in Hell",purchase,1.0,0 -182422786,"No More Room in Hell",play,5.5,0 -182422786,"Left 4 Dead 2",purchase,1.0,0 -182422786,"Left 4 Dead 2",play,4.0,0 -182422786,"Company of Heroes The Great War 1918",purchase,1.0,0 -190608205,"Unturned",purchase,1.0,0 -181523551,"Dota 2",purchase,1.0,0 -181523551,"Dota 2",play,0.8,0 -211315837,"Stronghold Kingdoms",purchase,1.0,0 -211315837,"Stronghold Kingdoms",play,53.0,0 -211315837,"Counter-Strike Nexon Zombies",purchase,1.0,0 -211315837,"Counter-Strike Nexon Zombies",play,22.0,0 -211315837,"Kingdom Wars",purchase,1.0,0 -211315837,"Kingdom Wars",play,1.2,0 -211315837,"Firefall",purchase,1.0,0 -211315837,"Firefall",play,0.3,0 -211315837,"Karos",purchase,1.0,0 -211315837,"Robocraft",purchase,1.0,0 -105736077,"Garry's Mod",purchase,1.0,0 -105736077,"Garry's Mod",play,23.0,0 -105736077,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -105736077,"Grand Theft Auto Episodes from Liberty City",play,13.8,0 -105736077,"Battlefield Bad Company 2",purchase,1.0,0 -105736077,"Battlefield Bad Company 2",play,11.4,0 -105736077,"Team Fortress 2",purchase,1.0,0 -105736077,"Team Fortress 2",play,3.6,0 -105736077,"Loadout",purchase,1.0,0 -105736077,"Loadout",play,2.9,0 -105736077,"Grand Theft Auto IV",purchase,1.0,0 -105736077,"Grand Theft Auto IV",play,0.7,0 -105736077,"Arma 2 Operation Arrowhead",purchase,1.0,0 -105736077,"Arma 2 Operation Arrowhead",play,0.5,0 -105736077,"Arma 2",purchase,1.0,0 -105736077,"Arma 2",play,0.3,0 -105736077,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -163027169,"Dota 2",purchase,1.0,0 -163027169,"Dota 2",play,3.5,0 -244069576,"RollerCoaster Tycoon Deluxe",purchase,1.0,0 -244069576,"RollerCoaster Tycoon Deluxe",play,6.8,0 -105877396,"Europa Universalis IV",purchase,1.0,0 -105877396,"Europa Universalis IV",play,555.0,0 -105877396,"AdVenture Capitalist",purchase,1.0,0 -105877396,"AdVenture Capitalist",play,80.0,0 -105877396,"Crusader Kings II",purchase,1.0,0 -105877396,"Crusader Kings II",play,61.0,0 -105877396,"Victoria II",purchase,1.0,0 -105877396,"Victoria II",play,51.0,0 -105877396,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -105877396,"Sid Meier's Civilization IV Beyond the Sword",play,41.0,0 -105877396,"The Binding of Isaac",purchase,1.0,0 -105877396,"The Binding of Isaac",play,34.0,0 -105877396,"Sid Meier's Civilization V",purchase,1.0,0 -105877396,"Sid Meier's Civilization V",play,24.0,0 -105877396,"Clicker Heroes",purchase,1.0,0 -105877396,"Clicker Heroes",play,24.0,0 -105877396,"Fortune Summoners Secret of the Elemental Stone",purchase,1.0,0 -105877396,"Fortune Summoners Secret of the Elemental Stone",play,22.0,0 -105877396,"Garry's Mod",purchase,1.0,0 -105877396,"Garry's Mod",play,21.0,0 -105877396,"Tropico 4",purchase,1.0,0 -105877396,"Tropico 4",play,15.5,0 -105877396,"The Sims(TM) 3",purchase,1.0,0 -105877396,"The Sims(TM) 3",play,15.4,0 -105877396,"Magicka",purchase,1.0,0 -105877396,"Magicka",play,14.5,0 -105877396,"Sid Meier's Civilization III Complete",purchase,1.0,0 -105877396,"Sid Meier's Civilization III Complete",play,12.8,0 -105877396,"Realm of the Mad God",purchase,1.0,0 -105877396,"Realm of the Mad God",play,12.1,0 -105877396,"FTL Faster Than Light",purchase,1.0,0 -105877396,"FTL Faster Than Light",play,10.9,0 -105877396,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -105877396,"Galactic Civilizations II Ultimate Edition",play,9.6,0 -105877396,"Counter-Strike Source",purchase,1.0,0 -105877396,"Counter-Strike Source",play,9.2,0 -105877396,"Hearts of Iron III",purchase,1.0,0 -105877396,"Hearts of Iron III",play,8.2,0 -105877396,"Terraria",purchase,1.0,0 -105877396,"Terraria",play,7.4,0 -105877396,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -105877396,"Sid Meier's Civilization IV Colonization",play,7.2,0 -105877396,"Recettear An Item Shop's Tale",purchase,1.0,0 -105877396,"Recettear An Item Shop's Tale",play,5.9,0 -105877396,"SimCity 4 Deluxe",purchase,1.0,0 -105877396,"SimCity 4 Deluxe",play,5.8,0 -105877396,"Robocraft",purchase,1.0,0 -105877396,"Robocraft",play,5.5,0 -105877396,"Darwinia",purchase,1.0,0 -105877396,"Darwinia",play,5.4,0 -105877396,"Don't Starve",purchase,1.0,0 -105877396,"Don't Starve",play,5.3,0 -105877396,"Reus",purchase,1.0,0 -105877396,"Reus",play,4.4,0 -105877396,"Team Fortress 2",purchase,1.0,0 -105877396,"Team Fortress 2",play,2.9,0 -105877396,"Sid Meier's Civilization IV",purchase,1.0,0 -105877396,"Sid Meier's Civilization IV",play,2.5,0 -105877396,"Knights of Pen and Paper +1",purchase,1.0,0 -105877396,"Knights of Pen and Paper +1",play,2.4,0 -105877396,"Fortix",purchase,1.0,0 -105877396,"Fortix",play,2.4,0 -105877396,"DLC Quest",purchase,1.0,0 -105877396,"DLC Quest",play,2.3,0 -105877396,"Uplink",purchase,1.0,0 -105877396,"Uplink",play,1.9,0 -105877396,"PlanetSide 2",purchase,1.0,0 -105877396,"PlanetSide 2",play,1.7,0 -105877396,"Warframe",purchase,1.0,0 -105877396,"Warframe",play,1.7,0 -105877396,"Atom Zombie Smasher ",purchase,1.0,0 -105877396,"Atom Zombie Smasher ",play,1.7,0 -105877396,"Dwarfs F2P",purchase,1.0,0 -105877396,"Dwarfs F2P",play,1.0,0 -105877396,"The Elder Scrolls V Skyrim",purchase,1.0,0 -105877396,"The Elder Scrolls V Skyrim",play,1.0,0 -105877396,"DEFCON",purchase,1.0,0 -105877396,"DEFCON",play,0.9,0 -105877396,"Castle Story",purchase,1.0,0 -105877396,"Castle Story",play,0.9,0 -105877396,"The Elder Scrolls III Morrowind",purchase,1.0,0 -105877396,"The Elder Scrolls III Morrowind",play,0.8,0 -105877396,"Multiwinia",purchase,1.0,0 -105877396,"Multiwinia",play,0.8,0 -105877396,"Orcs Must Die! 2",purchase,1.0,0 -105877396,"Orcs Must Die! 2",play,0.7,0 -105877396,"Don't Starve Together Beta",purchase,1.0,0 -105877396,"Don't Starve Together Beta",play,0.6,0 -105877396,"Prison Architect",purchase,1.0,0 -105877396,"Prison Architect",play,0.6,0 -105877396,"Fallout New Vegas",purchase,1.0,0 -105877396,"Fallout New Vegas",play,0.5,0 -105877396,"Chantelise",purchase,1.0,0 -105877396,"Chantelise",play,0.5,0 -105877396,"Impire",purchase,1.0,0 -105877396,"Impire",play,0.5,0 -105877396,"PixelJunk Eden",purchase,1.0,0 -105877396,"PixelJunk Eden",play,0.5,0 -105877396,"World of Guns Gun Disassembly",purchase,1.0,0 -105877396,"World of Guns Gun Disassembly",play,0.5,0 -105877396,"Sanctum 2",purchase,1.0,0 -105877396,"Sanctum 2",play,0.4,0 -105877396,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -105877396,"Sid Meier's Ace Patrol Pacific Skies",play,0.4,0 -105877396,"Papo & Yo",purchase,1.0,0 -105877396,"Papo & Yo",play,0.3,0 -105877396,"Five Nights at Freddy's",purchase,1.0,0 -105877396,"Five Nights at Freddy's",play,0.3,0 -105877396,"Natural Selection 2",purchase,1.0,0 -105877396,"Natural Selection 2",play,0.2,0 -105877396,"Receiver",purchase,1.0,0 -105877396,"Receiver",play,0.1,0 -105877396,"WAKFU",purchase,1.0,0 -105877396,"Neverwinter",purchase,1.0,0 -105877396,"Toribash",purchase,1.0,0 -105877396,"Sid Meier's Ace Patrol",purchase,1.0,0 -105877396,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -105877396,"Crusader Kings II Sons of Abraham",purchase,1.0,0 -105877396,"Deadlight",purchase,1.0,0 -105877396,"Deadlight Original Soundtrack",purchase,1.0,0 -105877396,"Europa Universalis IV Conquest of Paradise",purchase,1.0,0 -105877396,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -105877396,"Fallout New Vegas Dead Money",purchase,1.0,0 -105877396,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -105877396,"Joe Danger 2 The Movie",purchase,1.0,0 -105877396,"Legend of Grimrock",purchase,1.0,0 -105877396,"Magicka Final Frontier",purchase,1.0,0 -105877396,"Magicka Frozen Lake",purchase,1.0,0 -105877396,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -105877396,"Magicka Nippon",purchase,1.0,0 -105877396,"Magicka Party Robes",purchase,1.0,0 -105877396,"Magicka The Watchtower",purchase,1.0,0 -105877396,"Magicka Vietnam",purchase,1.0,0 -105877396,"Magicka Wizard's Survival Kit",purchase,1.0,0 -105877396,"Sengoku",purchase,1.0,0 -105877396,"Ship Simulator Extremes",purchase,1.0,0 -105877396,"Sid Meier's Civilization IV",purchase,1.0,0 -105877396,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -105877396,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -105877396,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -105877396,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -105877396,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -105877396,"Sid Meier's Railroads!",purchase,1.0,0 -105877396,"Teleglitch Die More Edition",purchase,1.0,0 -105877396,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -105877396,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -105877396,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -105877396,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -105877396,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -105877396,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -105877396,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -105877396,"To the Moon",purchase,1.0,0 -105877396,"War of the Roses",purchase,1.0,0 -105877396,"War of the Roses Kingmaker",purchase,1.0,0 -105877396,"War of the Roses Balance Beta",purchase,1.0,0 -171527460,"Sniper Elite 3",purchase,1.0,0 -212302055,"Counter-Strike Global Offensive",purchase,1.0,0 -212302055,"Counter-Strike Global Offensive",play,32.0,0 -212302055,"Dead Island Epidemic",purchase,1.0,0 -212302055,"Defiance",purchase,1.0,0 -212302055,"Fistful of Frags",purchase,1.0,0 -212302055,"Heroes & Generals",purchase,1.0,0 -212302055,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -212302055,"Warface",purchase,1.0,0 -163140792,"Grand Theft Auto IV",purchase,1.0,0 -163140792,"Grand Theft Auto IV",play,222.0,0 -163140792,"Farming Simulator 2013",purchase,1.0,0 -163140792,"Farming Simulator 2013",play,158.0,0 -163140792,"Arma 3",purchase,1.0,0 -163140792,"Arma 3",play,48.0,0 -163140792,"Take On Helicopters",purchase,1.0,0 -163140792,"Take On Helicopters",play,44.0,0 -163140792,"Euro Truck Simulator 2",purchase,1.0,0 -163140792,"Euro Truck Simulator 2",play,36.0,0 -163140792,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -163140792,"Microsoft Flight Simulator X Steam Edition",play,28.0,0 -163140792,"Assetto Corsa",purchase,1.0,0 -163140792,"Assetto Corsa",play,16.9,0 -163140792,"DiRT 3",purchase,1.0,0 -163140792,"DiRT 3",play,6.0,0 -163140792,"Helicopter Simulator 2014 Search and Rescue",purchase,1.0,0 -163140792,"Helicopter Simulator 2014 Search and Rescue",play,3.2,0 -163140792,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",purchase,1.0,0 -163140792,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",play,3.0,0 -163140792,"Towtruck Simulator 2015",purchase,1.0,0 -163140792,"Towtruck Simulator 2015",play,2.3,0 -163140792,"Test Drive Unlimited 2",purchase,1.0,0 -163140792,"Test Drive Unlimited 2",play,0.8,0 -163140792,"Farming Simulator 2013 - Modding Tutorials",purchase,1.0,0 -163140792,"Farming Simulator 2013 - Modding Tutorials",play,0.1,0 -163140792,"DiRT 3 Complete Edition",purchase,1.0,0 -163140792,"18 Wheels of Steel American Long Haul",purchase,1.0,0 -163140792,"Arma 3 Zeus",purchase,1.0,0 -163140792,"DCS World",purchase,1.0,0 -98649241,"Day of Defeat Source",purchase,1.0,0 -98649241,"Day of Defeat Source",play,853.0,0 -98649241,"Team Fortress 2",purchase,1.0,0 -98649241,"Team Fortress 2",play,400.0,0 -98649241,"Garry's Mod",purchase,1.0,0 -98649241,"Garry's Mod",play,356.0,0 -98649241,"Counter-Strike Global Offensive",purchase,1.0,0 -98649241,"Counter-Strike Global Offensive",play,189.0,0 -98649241,"Warframe",purchase,1.0,0 -98649241,"Warframe",play,83.0,0 -98649241,"Unturned",purchase,1.0,0 -98649241,"Unturned",play,32.0,0 -98649241,"Starbound",purchase,1.0,0 -98649241,"Starbound",play,24.0,0 -98649241,"Chivalry Medieval Warfare",purchase,1.0,0 -98649241,"Chivalry Medieval Warfare",play,13.5,0 -98649241,"Aura Kingdom",purchase,1.0,0 -98649241,"Aura Kingdom",play,12.3,0 -98649241,"Hitman Absolution",purchase,1.0,0 -98649241,"Hitman Absolution",play,10.8,0 -98649241,"Awesomenauts",purchase,1.0,0 -98649241,"Awesomenauts",play,8.2,0 -98649241,"The Lord of the Rings War in the North",purchase,1.0,0 -98649241,"The Lord of the Rings War in the North",play,6.7,0 -98649241,"Killing Floor",purchase,1.0,0 -98649241,"Killing Floor",play,5.4,0 -98649241,"Left 4 Dead 2",purchase,1.0,0 -98649241,"Left 4 Dead 2",play,4.1,0 -98649241,"Half-Life 2",purchase,1.0,0 -98649241,"Half-Life 2",play,3.7,0 -98649241,"Dota 2",purchase,1.0,0 -98649241,"Dota 2",play,3.4,0 -98649241,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -98649241,"A.V.A - Alliance of Valiant Arms",play,3.4,0 -98649241,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -98649241,"Batman Arkham Asylum GOTY Edition",play,3.0,0 -98649241,"Portal",purchase,1.0,0 -98649241,"Portal",play,2.9,0 -98649241,"PlanetSide 2",purchase,1.0,0 -98649241,"PlanetSide 2",play,2.8,0 -98649241,"Robocraft",purchase,1.0,0 -98649241,"Robocraft",play,2.0,0 -98649241,"Forge",purchase,1.0,0 -98649241,"Forge",play,1.9,0 -98649241,"Alien Swarm",purchase,1.0,0 -98649241,"Alien Swarm",play,1.7,0 -98649241,"Hitman Sniper Challenge",purchase,1.0,0 -98649241,"Hitman Sniper Challenge",play,1.6,0 -98649241,"Archeblade",purchase,1.0,0 -98649241,"Archeblade",play,0.9,0 -98649241,"Heroes & Generals",purchase,1.0,0 -98649241,"Heroes & Generals",play,0.2,0 -98649241,"Only If",purchase,1.0,0 -98649241,"Only If",play,0.1,0 -98649241,"RADical ROACH Deluxe Edition",purchase,1.0,0 -98649241,"AdVenture Capitalist",purchase,1.0,0 -98649241,"Dino D-Day",purchase,1.0,0 -98649241,"Dizzel",purchase,1.0,0 -98649241,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -98649241,"F.E.A.R. 3",purchase,1.0,0 -98649241,"GTR Evolution",purchase,1.0,0 -98649241,"Gun Monkeys",purchase,1.0,0 -98649241,"Half-Life 2 Episode One",purchase,1.0,0 -98649241,"Half-Life 2 Episode Two",purchase,1.0,0 -98649241,"Half-Life 2 Lost Coast",purchase,1.0,0 -98649241,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -98649241,"Modular Combat",purchase,1.0,0 -98649241,"Patch testing for Chivalry",purchase,1.0,0 -98649241,"Quake Live",purchase,1.0,0 -98649241,"RACE 07",purchase,1.0,0 -98649241,"RaceRoom Racing Experience ",purchase,1.0,0 -98649241,"Really Big Sky",purchase,1.0,0 -98649241,"SpaceChem",purchase,1.0,0 -98649241,"Starbound - Unstable",purchase,1.0,0 -185914106,"Team Fortress 2",purchase,1.0,0 -185914106,"Team Fortress 2",play,24.0,0 -185914106,"Unturned",purchase,1.0,0 -185914106,"Unturned",play,10.2,0 -185914106,"Blacklight Retribution",purchase,1.0,0 -185914106,"Blacklight Retribution",play,7.1,0 -185914106,"Warframe",purchase,1.0,0 -185914106,"Warframe",play,4.9,0 -185914106,"Fistful of Frags",purchase,1.0,0 -185914106,"Fistful of Frags",play,4.6,0 -185914106,"CrimeCraft GangWars",purchase,1.0,0 -185914106,"CrimeCraft GangWars",play,3.6,0 -185914106,"Dizzel",purchase,1.0,0 -185914106,"Dizzel",play,0.7,0 -185914106,"Forge",purchase,1.0,0 -185914106,"Forge",play,0.7,0 -185914106,"GunZ 2 The Second Duel",purchase,1.0,0 -185914106,"GunZ 2 The Second Duel",play,0.4,0 -185914106,"MicroVolts Surge",purchase,1.0,0 -185914106,"MicroVolts Surge",play,0.4,0 -185914106,"Super Monday Night Combat",purchase,1.0,0 -185914106,"Super Monday Night Combat",play,0.2,0 -185914106,"Only If",purchase,1.0,0 -185914106,"Only If",play,0.2,0 -185914106,"Velvet Sundown",purchase,1.0,0 -185914106,"Velvet Sundown",play,0.1,0 -185914106,"The Mighty Quest For Epic Loot",purchase,1.0,0 -185914106,"The Mighty Quest For Epic Loot",play,0.1,0 -185914106,"Thinking with Time Machine",purchase,1.0,0 -302642693,"Dota 2",purchase,1.0,0 -302642693,"Dota 2",play,7.9,0 -204793925,"Dota 2",purchase,1.0,0 -204793925,"Dota 2",play,28.0,0 -204793925,"Counter-Strike Nexon Zombies",purchase,1.0,0 -204793925,"Heroes & Generals",purchase,1.0,0 -204793925,"Unturned",purchase,1.0,0 -296439514,"Counter-Strike Global Offensive",purchase,1.0,0 -296439514,"Counter-Strike Global Offensive",play,70.0,0 -296439514,"PAYDAY 2",purchase,1.0,0 -296439514,"PAYDAY 2",play,10.1,0 -296439514,"Card Hunter",purchase,1.0,0 -296439514,"Card Hunter",play,0.8,0 -296439514,"Cry of Fear",purchase,1.0,0 -296439514,"Dirty Bomb",purchase,1.0,0 -296439514,"PlanetSide 2",purchase,1.0,0 -216317211,"Dota 2",purchase,1.0,0 -216317211,"Dota 2",play,1.5,0 -161140815,"Counter-Strike Global Offensive",purchase,1.0,0 -161140815,"Counter-Strike Global Offensive",play,37.0,0 -161140815,"Rust",purchase,1.0,0 -161140815,"Rust",play,14.5,0 -161140815,"Team Fortress 2",purchase,1.0,0 -161140815,"Team Fortress 2",play,12.4,0 -161140815,"PlanetSide 2",purchase,1.0,0 -161140815,"PlanetSide 2",play,9.7,0 -161140815,"Star Wars - Battlefront II",purchase,1.0,0 -161140815,"Star Wars - Battlefront II",play,7.1,0 -161140815,"Codename CURE",purchase,1.0,0 -287812798,"Dota 2",purchase,1.0,0 -287812798,"Dota 2",play,34.0,0 -287812798,"Free to Play",purchase,1.0,0 -287812798,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -287812798,"Spooky's House of Jump Scares",purchase,1.0,0 -287812798,"Trove",purchase,1.0,0 -287812798,"Unturned",purchase,1.0,0 -162319690,"Dota 2",purchase,1.0,0 -162319690,"Dota 2",play,2427.0,0 -162319690,"GunZ 2 The Second Duel",purchase,1.0,0 -162319690,"GunZ 2 The Second Duel",play,9.1,0 -162319690,"Spiral Knights",purchase,1.0,0 -162319690,"Aftermath",purchase,1.0,0 -162319690,"DRAKERZ-Confrontation",purchase,1.0,0 -162319690,"FreeStyle2 Street Basketball",purchase,1.0,0 -162319690,"Metal Reaper Online",purchase,1.0,0 -162319690,"Royal Quest",purchase,1.0,0 -254331891,"Dota 2",purchase,1.0,0 -254331891,"Dota 2",play,28.0,0 -254331891,"Kingdom Wars",purchase,1.0,0 -254331891,"Aura Kingdom",purchase,1.0,0 -171541210,"Dota 2",purchase,1.0,0 -171541210,"Dota 2",play,5.9,0 -171541210,"Blacklight Retribution",purchase,1.0,0 -295832595,"Dota 2",purchase,1.0,0 -295832595,"Dota 2",play,88.0,0 -604988,"Counter-Strike",purchase,1.0,0 -604988,"Day of Defeat",purchase,1.0,0 -604988,"Deathmatch Classic",purchase,1.0,0 -604988,"Half-Life",purchase,1.0,0 -604988,"Half-Life Blue Shift",purchase,1.0,0 -604988,"Half-Life Opposing Force",purchase,1.0,0 -604988,"Ricochet",purchase,1.0,0 -604988,"Team Fortress Classic",purchase,1.0,0 -156742049,"Team Fortress 2",purchase,1.0,0 -156742049,"Team Fortress 2",play,12.1,0 -127850470,"Sid Meier's Civilization V",purchase,1.0,0 -127850470,"Sid Meier's Civilization V",play,424.0,0 -127850470,"Battle Islands",purchase,1.0,0 -127850470,"Battle Islands",play,365.0,0 -127850470,"Kingdoms CCG",purchase,1.0,0 -127850470,"Kingdoms CCG",play,300.0,0 -127850470,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -127850470,"Sid Meier's Civilization Beyond Earth",play,230.0,0 -127850470,"Pillars of Eternity",purchase,1.0,0 -127850470,"Pillars of Eternity",play,141.0,0 -127850470,"Craft The World",purchase,1.0,0 -127850470,"Craft The World",play,130.0,0 -127850470,"Dota 2",purchase,1.0,0 -127850470,"Dota 2",play,123.0,0 -127850470,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -127850470,"Fallout 3 - Game of the Year Edition",play,100.0,0 -127850470,"Guns and Robots",purchase,1.0,0 -127850470,"Guns and Robots",play,95.0,0 -127850470,"Magic Duels",purchase,1.0,0 -127850470,"Magic Duels",play,70.0,0 -127850470,"Euro Truck Simulator 2",purchase,1.0,0 -127850470,"Euro Truck Simulator 2",play,61.0,0 -127850470,"Blood Bowl Chaos Edition",purchase,1.0,0 -127850470,"Blood Bowl Chaos Edition",play,48.0,0 -127850470,"Panzar",purchase,1.0,0 -127850470,"Panzar",play,31.0,0 -127850470,"Banished",purchase,1.0,0 -127850470,"Banished",play,30.0,0 -127850470,"Sid Meier's Railroads!",purchase,1.0,0 -127850470,"Sid Meier's Railroads!",play,25.0,0 -127850470,"The Lord of the Rings War in the North",purchase,1.0,0 -127850470,"The Lord of the Rings War in the North",play,22.0,0 -127850470,"Blackguards 2",purchase,1.0,0 -127850470,"Blackguards 2",play,10.7,0 -127850470,"Wargame European Escalation",purchase,1.0,0 -127850470,"Wargame European Escalation",play,6.4,0 -127850470,"Epic Arena",purchase,1.0,0 -127850470,"Epic Arena",play,4.7,0 -127850470,"Warhammer 40,000 Regicide",purchase,1.0,0 -127850470,"Warhammer 40,000 Regicide",play,3.4,0 -127850470,"Oddworld Munch's Oddysee",purchase,1.0,0 -127850470,"Oddworld Munch's Oddysee",play,1.2,0 -127850470,"Railroad Tycoon 3",purchase,1.0,0 -127850470,"Railroad Tycoon 3",play,1.0,0 -127850470,"Borderlands 2",purchase,1.0,0 -127850470,"Borderlands 2",play,0.3,0 -127850470,"Oddworld Abe's Exoddus",purchase,1.0,0 -127850470,"Oddworld Abe's Oddysee",purchase,1.0,0 -127850470,"Aerena",purchase,1.0,0 -127850470,"Oddworld Stranger's Wrath HD",purchase,1.0,0 -127850470,"Railroad Tycoon 2 Platinum",purchase,1.0,0 -127850470,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -127850470,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -39082468,"Sid Meier's Civilization V",purchase,1.0,0 -39082468,"Sid Meier's Civilization V",play,2076.0,0 -39082468,"Fallout New Vegas",purchase,1.0,0 -39082468,"Fallout New Vegas",play,218.0,0 -39082468,"Fallout 4",purchase,1.0,0 -39082468,"Fallout 4",play,36.0,0 -39082468,"Deus Ex Game of the Year Edition",purchase,1.0,0 -39082468,"Deus Ex Game of the Year Edition",play,14.0,0 -39082468,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -39082468,"Sid Meier's Civilization Beyond Earth",play,7.0,0 -39082468,"Child of Light",purchase,1.0,0 -39082468,"Child of Light",play,6.6,0 -39082468,"Call of Duty Black Ops",purchase,1.0,0 -39082468,"Call of Duty Black Ops",play,6.2,0 -39082468,"Borderlands 2",purchase,1.0,0 -39082468,"Borderlands 2",play,5.2,0 -39082468,"Dishonored",purchase,1.0,0 -39082468,"Dishonored",play,4.1,0 -39082468,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -39082468,"Galactic Civilizations II Ultimate Edition",play,3.5,0 -39082468,"The Vanishing of Ethan Carter",purchase,1.0,0 -39082468,"The Vanishing of Ethan Carter",play,3.2,0 -39082468,"Deus Ex Invisible War",purchase,1.0,0 -39082468,"Deus Ex Invisible War",play,3.0,0 -39082468,"Tomb Raider Legend",purchase,1.0,0 -39082468,"Tomb Raider Legend",play,2.8,0 -39082468,"Rise of Nations Extended Edition",purchase,1.0,0 -39082468,"Rise of Nations Extended Edition",play,2.4,0 -39082468,"Riven",purchase,1.0,0 -39082468,"Riven",play,2.3,0 -39082468,"Portal 2",purchase,1.0,0 -39082468,"Portal 2",play,2.3,0 -39082468,"Tropico 3 Absolute Power",purchase,1.0,0 -39082468,"Tropico 3 Absolute Power",play,2.0,0 -39082468,"Deus Ex Human Revolution",purchase,1.0,0 -39082468,"Deus Ex Human Revolution",play,1.9,0 -39082468,"Tomb Raider",purchase,1.0,0 -39082468,"Tomb Raider",play,1.8,0 -39082468,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -39082468,"The Secret of Monkey Island Special Edition",play,1.8,0 -39082468,"Hyperdimension Neptunia Re;Birth1",purchase,1.0,0 -39082468,"Hyperdimension Neptunia Re;Birth1",play,1.2,0 -39082468,"Dead Island",purchase,1.0,0 -39082468,"Dead Island",play,0.9,0 -39082468,"DarkStar One",purchase,1.0,0 -39082468,"DarkStar One",play,0.8,0 -39082468,"Life Is Strange",purchase,1.0,0 -39082468,"Life Is Strange",play,0.7,0 -39082468,"Portal",purchase,1.0,0 -39082468,"Portal",play,0.6,0 -39082468,"Halo Spartan Assault",purchase,1.0,0 -39082468,"Halo Spartan Assault",play,0.5,0 -39082468,"DOOM II Hell on Earth",purchase,1.0,0 -39082468,"DOOM II Hell on Earth",play,0.4,0 -39082468,"Myst Masterpiece Edition",purchase,1.0,0 -39082468,"Myst Masterpiece Edition",play,0.4,0 -39082468,"Myst V",purchase,1.0,0 -39082468,"Myst V",play,0.3,0 -39082468,"realMyst",purchase,1.0,0 -39082468,"realMyst",play,0.2,0 -39082468,"Cosmic Osmo",purchase,1.0,0 -39082468,"Cosmic Osmo",play,0.2,0 -39082468,"Far Cry 3",purchase,1.0,0 -39082468,"Far Cry 3",play,0.1,0 -39082468,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -39082468,"Age of Empires III Complete Collection",purchase,1.0,0 -39082468,"Commandos 2 Men of Courage",purchase,1.0,0 -39082468,"Commandos 3 Destination Berlin",purchase,1.0,0 -39082468,"Commandos Behind Enemy Lines",purchase,1.0,0 -39082468,"Commandos Beyond the Call of Duty",purchase,1.0,0 -39082468,"Dead Island Riptide",purchase,1.0,0 -39082468,"Deadlight",purchase,1.0,0 -39082468,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -39082468,"Disciples III Renaissance",purchase,1.0,0 -39082468,"Grand Ages Rome",purchase,1.0,0 -39082468,"Imperium Romanum Gold Edition",purchase,1.0,0 -39082468,"Manhole",purchase,1.0,0 -39082468,"Master Levels for DOOM II",purchase,1.0,0 -39082468,"Patrician III",purchase,1.0,0 -39082468,"Patrician IV Rise of a Dynasty",purchase,1.0,0 -39082468,"Patrician IV Steam Special Edition",purchase,1.0,0 -39082468,"Spelunx",purchase,1.0,0 -39082468,"The Great Art Race",purchase,1.0,0 -39082468,"The Vanishing of Ethan Carter Redux",purchase,1.0,0 -39082468,"Time of Shadows",purchase,1.0,0 -39082468,"Tomb Raider Underworld",purchase,1.0,0 -39082468,"Tropico",purchase,1.0,0 -39082468,"Tropico 2 Pirate Cove",purchase,1.0,0 -39082468,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -39082468,"Uru Complete Chronicles",purchase,1.0,0 -80779496,"Counter-Strike Global Offensive",purchase,1.0,0 -80779496,"Counter-Strike Global Offensive",play,350.0,0 -80779496,"Sid Meier's Civilization V",purchase,1.0,0 -80779496,"Sid Meier's Civilization V",play,198.0,0 -80779496,"Endless Space",purchase,1.0,0 -80779496,"Endless Space",play,114.0,0 -80779496,"The Binding of Isaac Rebirth",purchase,1.0,0 -80779496,"The Binding of Isaac Rebirth",play,74.0,0 -80779496,"Sonic Generations",purchase,1.0,0 -80779496,"Sonic Generations",play,53.0,0 -80779496,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -80779496,"DARK SOULS II Scholar of the First Sin",play,53.0,0 -80779496,"PlanetSide 2",purchase,1.0,0 -80779496,"PlanetSide 2",play,45.0,0 -80779496,"Path of Exile",purchase,1.0,0 -80779496,"Path of Exile",play,43.0,0 -80779496,"Distance",purchase,1.0,0 -80779496,"Distance",play,32.0,0 -80779496,"The Binding of Isaac",purchase,1.0,0 -80779496,"The Binding of Isaac",play,31.0,0 -80779496,"The Talos Principle",purchase,1.0,0 -80779496,"The Talos Principle",play,30.0,0 -80779496,"Darksiders II",purchase,1.0,0 -80779496,"Darksiders II",play,28.0,0 -80779496,"The Elder Scrolls V Skyrim",purchase,1.0,0 -80779496,"The Elder Scrolls V Skyrim",play,27.0,0 -80779496,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -80779496,"Dark Souls Prepare to Die Edition",play,27.0,0 -80779496,"DRAGON BALL XENOVERSE",purchase,1.0,0 -80779496,"DRAGON BALL XENOVERSE",play,26.0,0 -80779496,"Dota 2",purchase,1.0,0 -80779496,"Dota 2",play,24.0,0 -80779496,"DmC Devil May Cry",purchase,1.0,0 -80779496,"DmC Devil May Cry",play,23.0,0 -80779496,"MapleStory",purchase,1.0,0 -80779496,"MapleStory",play,16.7,0 -80779496,"Half-Life 2",purchase,1.0,0 -80779496,"Half-Life 2",play,16.4,0 -80779496,"Deus Ex Human Revolution",purchase,1.0,0 -80779496,"Deus Ex Human Revolution",play,14.2,0 -80779496,"Ultra Street Fighter IV",purchase,1.0,0 -80779496,"Ultra Street Fighter IV",play,14.1,0 -80779496,"Blacklight Retribution",purchase,1.0,0 -80779496,"Blacklight Retribution",play,13.5,0 -80779496,"Race The Sun",purchase,1.0,0 -80779496,"Race The Sun",play,13.1,0 -80779496,"Risk of Rain",purchase,1.0,0 -80779496,"Risk of Rain",play,12.8,0 -80779496,"HAWKEN",purchase,1.0,0 -80779496,"HAWKEN",play,11.3,0 -80779496,"Terraria",purchase,1.0,0 -80779496,"Terraria",play,10.9,0 -80779496,"Magic The Gathering - Duels of the Planeswalkers 2013",purchase,1.0,0 -80779496,"Magic The Gathering - Duels of the Planeswalkers 2013",play,10.8,0 -80779496,"Sonic Adventure 2 ",purchase,1.0,0 -80779496,"Sonic Adventure 2 ",play,10.4,0 -80779496,"Hotline Miami 2 Wrong Number",purchase,1.0,0 -80779496,"Hotline Miami 2 Wrong Number",play,10.0,0 -80779496,"Rayman Origins",purchase,1.0,0 -80779496,"Rayman Origins",play,9.2,0 -80779496,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -80779496,"Batman Arkham Asylum GOTY Edition",play,8.8,0 -80779496,"Rogue Legacy",purchase,1.0,0 -80779496,"Rogue Legacy",play,8.7,0 -80779496,"The Banner Saga",purchase,1.0,0 -80779496,"The Banner Saga",play,7.8,0 -80779496,"Transistor",purchase,1.0,0 -80779496,"Transistor",play,7.5,0 -80779496,"Devil May Cry 4",purchase,1.0,0 -80779496,"Devil May Cry 4",play,7.4,0 -80779496,"Torchlight II",purchase,1.0,0 -80779496,"Torchlight II",play,7.4,0 -80779496,"Team Fortress 2",purchase,1.0,0 -80779496,"Team Fortress 2",play,7.4,0 -80779496,"Bastion",purchase,1.0,0 -80779496,"Bastion",play,6.6,0 -80779496,"Shovel Knight",purchase,1.0,0 -80779496,"Shovel Knight",play,6.5,0 -80779496,"Hotline Miami",purchase,1.0,0 -80779496,"Hotline Miami",play,6.4,0 -80779496,"Dungeons of Dredmor",purchase,1.0,0 -80779496,"Dungeons of Dredmor",play,6.2,0 -80779496,"Super Meat Boy",purchase,1.0,0 -80779496,"Super Meat Boy",play,5.9,0 -80779496,"Audiosurf",purchase,1.0,0 -80779496,"Audiosurf",play,5.4,0 -80779496,"Antichamber",purchase,1.0,0 -80779496,"Antichamber",play,5.2,0 -80779496,"DeadCore",purchase,1.0,0 -80779496,"DeadCore",play,5.1,0 -80779496,"Crimzon Clover WORLD IGNITION",purchase,1.0,0 -80779496,"Crimzon Clover WORLD IGNITION",play,3.7,0 -80779496,"Dustforce",purchase,1.0,0 -80779496,"Dustforce",play,3.5,0 -80779496,"FTL Faster Than Light",purchase,1.0,0 -80779496,"FTL Faster Than Light",play,3.5,0 -80779496,"VVVVVV",purchase,1.0,0 -80779496,"VVVVVV",play,3.1,0 -80779496,"DLC Quest",purchase,1.0,0 -80779496,"DLC Quest",play,3.1,0 -80779496,"Frozen Synapse",purchase,1.0,0 -80779496,"Frozen Synapse",play,3.0,0 -80779496,"Torchlight",purchase,1.0,0 -80779496,"Torchlight",play,3.0,0 -80779496,"They Bleed Pixels",purchase,1.0,0 -80779496,"They Bleed Pixels",play,2.8,0 -80779496,"Darksiders",purchase,1.0,0 -80779496,"Darksiders",play,2.6,0 -80779496,"DC Universe Online",purchase,1.0,0 -80779496,"DC Universe Online",play,2.6,0 -80779496,"Batman Arkham City GOTY",purchase,1.0,0 -80779496,"Batman Arkham City GOTY",play,2.3,0 -80779496,"RIFT",purchase,1.0,0 -80779496,"RIFT",play,2.2,0 -80779496,"FINAL FANTASY VII",purchase,1.0,0 -80779496,"FINAL FANTASY VII",play,2.1,0 -80779496,"Before the Echo",purchase,1.0,0 -80779496,"Before the Echo",play,2.0,0 -80779496,"BioShock",purchase,1.0,0 -80779496,"BioShock",play,1.9,0 -80779496,"Nidhogg",purchase,1.0,0 -80779496,"Nidhogg",play,1.8,0 -80779496,"The Basement Collection",purchase,1.0,0 -80779496,"The Basement Collection",play,1.6,0 -80779496,"BIT.TRIP RUNNER",purchase,1.0,0 -80779496,"BIT.TRIP RUNNER",play,1.5,0 -80779496,"Mirror's Edge",purchase,1.0,0 -80779496,"Mirror's Edge",play,1.5,0 -80779496,"Skullgirls",purchase,1.0,0 -80779496,"Skullgirls",play,1.5,0 -80779496,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -80779496,"The Witcher 2 Assassins of Kings Enhanced Edition",play,1.4,0 -80779496,"Oddworld Stranger's Wrath HD",purchase,1.0,0 -80779496,"Oddworld Stranger's Wrath HD",play,1.4,0 -80779496,"Half-Life 2 Update",purchase,1.0,0 -80779496,"Half-Life 2 Update",play,1.3,0 -80779496,"One Way Heroics",purchase,1.0,0 -80779496,"One Way Heroics",play,1.2,0 -80779496,"Transformers War for Cybertron",purchase,1.0,0 -80779496,"Transformers War for Cybertron",play,1.1,0 -80779496,"E.Y.E Divine Cybermancy",purchase,1.0,0 -80779496,"E.Y.E Divine Cybermancy",play,1.1,0 -80779496,"BRINK",purchase,1.0,0 -80779496,"BRINK",play,1.0,0 -80779496,"Breath of Death VII ",purchase,1.0,0 -80779496,"Breath of Death VII ",play,1.0,0 -80779496,"The Witcher Enhanced Edition",purchase,1.0,0 -80779496,"The Witcher Enhanced Edition",play,1.0,0 -80779496,"Sid Meier's Civilization IV",purchase,1.0,0 -80779496,"Sid Meier's Civilization IV",play,0.9,0 -80779496,"Half-Life 2 Lost Coast",purchase,1.0,0 -80779496,"Half-Life 2 Lost Coast",play,0.9,0 -80779496,"Counter-Strike Source",purchase,1.0,0 -80779496,"Counter-Strike Source",play,0.8,0 -80779496,"Valkyria Chronicles",purchase,1.0,0 -80779496,"Valkyria Chronicles",play,0.8,0 -80779496,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",purchase,1.0,0 -80779496,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",play,0.8,0 -80779496,"Magicka",purchase,1.0,0 -80779496,"Magicka",play,0.7,0 -80779496,"Darksiders II Deathinitive Edition",purchase,1.0,0 -80779496,"Darksiders II Deathinitive Edition",play,0.7,0 -80779496,"Unepic",purchase,1.0,0 -80779496,"Unepic",play,0.7,0 -80779496,"Endless Legend",purchase,1.0,0 -80779496,"Endless Legend",play,0.6,0 -80779496,"Giana Sisters Twisted Dreams",purchase,1.0,0 -80779496,"Giana Sisters Twisted Dreams",play,0.6,0 -80779496,"Sins of a Solar Empire Trinity",purchase,1.0,0 -80779496,"Sins of a Solar Empire Trinity",play,0.6,0 -80779496,"Sonic CD",purchase,1.0,0 -80779496,"Sonic CD",play,0.6,0 -80779496,"Nosgoth",purchase,1.0,0 -80779496,"Nosgoth",play,0.6,0 -80779496,"Chime",purchase,1.0,0 -80779496,"Chime",play,0.6,0 -80779496,"Cthulhu Saves the World ",purchase,1.0,0 -80779496,"Cthulhu Saves the World ",play,0.6,0 -80779496,"Europa Universalis IV",purchase,1.0,0 -80779496,"Europa Universalis IV",play,0.6,0 -80779496,"LISA",purchase,1.0,0 -80779496,"LISA",play,0.5,0 -80779496,"Braid",purchase,1.0,0 -80779496,"Braid",play,0.4,0 -80779496,"DOOM 3",purchase,1.0,0 -80779496,"DOOM 3",play,0.4,0 -80779496,"Vessel",purchase,1.0,0 -80779496,"Vessel",play,0.3,0 -80779496,"Brothers - A Tale of Two Sons",purchase,1.0,0 -80779496,"Brothers - A Tale of Two Sons",play,0.3,0 -80779496,"Star Wars Knights of the Old Republic",purchase,1.0,0 -80779496,"Star Wars Knights of the Old Republic",play,0.3,0 -80779496,"Far Cry 3 Blood Dragon",purchase,1.0,0 -80779496,"Far Cry 3 Blood Dragon",play,0.3,0 -80779496,"Sanctum",purchase,1.0,0 -80779496,"Sanctum",play,0.2,0 -80779496,"SolForge",purchase,1.0,0 -80779496,"SolForge",play,0.2,0 -80779496,"Thief Gold",purchase,1.0,0 -80779496,"Thief Gold",play,0.2,0 -80779496,"The Elder Scrolls III Morrowind",purchase,1.0,0 -80779496,"The Elder Scrolls III Morrowind",play,0.1,0 -80779496,"LIMBO",purchase,1.0,0 -80779496,"LIMBO",play,0.1,0 -80779496,"Arena Wars 2",purchase,1.0,0 -80779496,"Supreme Commander",purchase,1.0,0 -80779496,"Darksiders II Soundtrack",purchase,1.0,0 -80779496,"Darksiders Soundtrack",purchase,1.0,0 -80779496,"Dead Island Epidemic",purchase,1.0,0 -80779496,"Dino D-Day",purchase,1.0,0 -80779496,"DOOM 3 Resurrection of Evil",purchase,1.0,0 -80779496,"Dungeon Defenders",purchase,1.0,0 -80779496,"EDGE",purchase,1.0,0 -80779496,"LISA the Joyful",purchase,1.0,0 -80779496,"Magic Duels",purchase,1.0,0 -80779496,"Sid Meier's Civilization IV",purchase,1.0,0 -80779496,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -80779496,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -80779496,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -80779496,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -80779496,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -80779496,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -80779496,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -80779496,"Skullgirls Endless Beta",purchase,1.0,0 -80779496,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -80779496,"The Banner Saga - Mod Content",purchase,1.0,0 -80779496,"The Talos Principle Road To Gehenna",purchase,1.0,0 -80779496,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -80779496,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -80779496,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -80779496,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -305697665,"Dota 2",purchase,1.0,0 -305697665,"Dota 2",play,30.0,0 -212875606,"Dota 2",purchase,1.0,0 -212875606,"Dota 2",play,2.6,0 -284439080,"Clicker Heroes",purchase,1.0,0 -84610577,"Dota 2",purchase,1.0,0 -84610577,"Dota 2",play,13.3,0 -84610577,"Free to Play",purchase,1.0,0 -84610577,"Quake Live",purchase,1.0,0 -84610577,"Unturned",purchase,1.0,0 -43189361,"Football Manager 2012",purchase,1.0,0 -43189361,"Football Manager 2012",play,67.0,0 -43189361,"Football Manager 2014",purchase,1.0,0 -43189361,"Football Manager 2014",play,9.7,0 -43189361,"Order of War",purchase,1.0,0 -43189361,"Order of War",play,0.9,0 -43189361,"Counter-Strike Nexon Zombies",purchase,1.0,0 -43189361,"Football Manager 2009",purchase,1.0,0 -138129129,"Dota 2",purchase,1.0,0 -138129129,"Dota 2",play,1335.0,0 -68372559,"Counter-Strike Source",purchase,1.0,0 -68372559,"Counter-Strike Source",play,24.0,0 -68372559,"Day of Defeat Source",purchase,1.0,0 -68372559,"Half-Life 2 Deathmatch",purchase,1.0,0 -68372559,"Half-Life 2 Lost Coast",purchase,1.0,0 -31733654,"Team Fortress 2",purchase,1.0,0 -31733654,"Team Fortress 2",play,1931.0,0 -31733654,"Counter-Strike Source",purchase,1.0,0 -31733654,"Counter-Strike Source",play,136.0,0 -31733654,"Borderlands",purchase,1.0,0 -31733654,"Borderlands",play,73.0,0 -31733654,"Left 4 Dead",purchase,1.0,0 -31733654,"Left 4 Dead",play,31.0,0 -31733654,"Left 4 Dead 2",purchase,1.0,0 -31733654,"Left 4 Dead 2",play,25.0,0 -31733654,"Alien Swarm",purchase,1.0,0 -31733654,"Alien Swarm",play,7.2,0 -31733654,"Counter-Strike",purchase,1.0,0 -31733654,"Counter-Strike",play,3.5,0 -31733654,"The Dig",purchase,1.0,0 -31733654,"The Dig",play,3.4,0 -31733654,"Worms Reloaded",purchase,1.0,0 -31733654,"Worms Reloaded",play,2.9,0 -31733654,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -31733654,"The Secret of Monkey Island Special Edition",play,2.6,0 -31733654,"Day of Defeat Source",purchase,1.0,0 -31733654,"Day of Defeat Source",play,2.4,0 -31733654,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -31733654,"Plants vs. Zombies Game of the Year",play,2.1,0 -31733654,"Age of Chivalry",purchase,1.0,0 -31733654,"Age of Chivalry",play,1.5,0 -31733654,"Team Fortress Classic",purchase,1.0,0 -31733654,"Team Fortress Classic",play,1.3,0 -31733654,"Half-Life 2 Deathmatch",purchase,1.0,0 -31733654,"Half-Life 2 Deathmatch",play,0.2,0 -31733654,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -31733654,"Counter-Strike Condition Zero",purchase,1.0,0 -31733654,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -31733654,"Half-Life 2",purchase,1.0,0 -31733654,"Half-Life 2 Episode One",purchase,1.0,0 -31733654,"Half-Life 2 Episode Two",purchase,1.0,0 -31733654,"Half-Life 2 Lost Coast",purchase,1.0,0 -31733654,"Portal",purchase,1.0,0 -158495272,"Counter-Strike Global Offensive",purchase,1.0,0 -158495272,"Counter-Strike Global Offensive",play,796.0,0 -158495272,"Dota 2",purchase,1.0,0 -158495272,"Dota 2",play,597.0,0 -158495272,"Team Fortress 2",purchase,1.0,0 -158495272,"Team Fortress 2",play,7.4,0 -158495272,"Everlasting Summer",purchase,1.0,0 -158495272,"Everlasting Summer",play,4.3,0 -158495272,"Unturned",purchase,1.0,0 -158495272,"Unturned",play,2.6,0 -158495272,"Grand Theft Auto IV",purchase,1.0,0 -158495272,"Grand Theft Auto IV",play,1.6,0 -158495272,"Dragons and Titans",purchase,1.0,0 -158495272,"Dragons and Titans",play,1.1,0 -158495272,"Nosgoth",purchase,1.0,0 -158495272,"Nosgoth",play,0.1,0 -158495272,"Aggression Europe Under Fire",purchase,1.0,0 -158495272,"Garry's Mod",purchase,1.0,0 -158495272,"ORION Prelude",purchase,1.0,0 -158495272,"Sledgehammer / Gear Grinder",purchase,1.0,0 -158495272,"War Thunder",purchase,1.0,0 -254715417,"Counter-Strike Global Offensive",purchase,1.0,0 -254715417,"Counter-Strike Global Offensive",play,125.0,0 -199693353,"Grand Theft Auto V",purchase,1.0,0 -199693353,"Grand Theft Auto V",play,132.0,0 -199693353,"The Forest",purchase,1.0,0 -199693353,"The Forest",play,43.0,0 -199693353,"The Expendabros",purchase,1.0,0 -199693353,"The Expendabros",play,21.0,0 -199693353,"Garry's Mod",purchase,1.0,0 -199693353,"Garry's Mod",play,21.0,0 -199693353,"Octodad Dadliest Catch",purchase,1.0,0 -199693353,"Octodad Dadliest Catch",play,17.9,0 -199693353,"Depth",purchase,1.0,0 -199693353,"Depth",play,10.7,0 -199693353,"Call of Juarez Gunslinger",purchase,1.0,0 -199693353,"Call of Juarez Gunslinger",play,10.4,0 -199693353,"GRID Autosport",purchase,1.0,0 -199693353,"GRID Autosport",play,5.9,0 -199693353,"Portal 2",purchase,1.0,0 -199693353,"Portal 2",play,4.7,0 -199693353,"Warframe",purchase,1.0,0 -199693353,"Warframe",play,4.6,0 -199693353,"Killing Floor",purchase,1.0,0 -199693353,"Killing Floor",play,4.6,0 -199693353,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -199693353,"Tom Clancy's Ghost Recon Phantoms - NA",play,3.5,0 -199693353,"Far Cry 3 Blood Dragon",purchase,1.0,0 -199693353,"Far Cry 3 Blood Dragon",play,3.4,0 -199693353,"Mafia II",purchase,1.0,0 -199693353,"Mafia II",play,3.2,0 -199693353,"Wolfenstein The New Order",purchase,1.0,0 -199693353,"Wolfenstein The New Order",play,3.0,0 -199693353,"Cry of Fear",purchase,1.0,0 -199693353,"Cry of Fear",play,2.7,0 -199693353,"Outlast",purchase,1.0,0 -199693353,"Outlast",play,2.7,0 -199693353,"Alien Isolation",purchase,1.0,0 -199693353,"Alien Isolation",play,2.5,0 -199693353,"Vindictus",purchase,1.0,0 -199693353,"Vindictus",play,2.2,0 -199693353,"Worms Revolution",purchase,1.0,0 -199693353,"Worms Revolution",play,1.9,0 -199693353,"BioShock Infinite",purchase,1.0,0 -199693353,"BioShock Infinite",play,1.9,0 -199693353,"Alan Wake's American Nightmare",purchase,1.0,0 -199693353,"Alan Wake's American Nightmare",play,1.8,0 -199693353,"Only If",purchase,1.0,0 -199693353,"Only If",play,1.3,0 -199693353,"Serious Sam 3 BFE",purchase,1.0,0 -199693353,"Serious Sam 3 BFE",play,1.1,0 -199693353,"BioShock 2",purchase,1.0,0 -199693353,"BioShock 2",play,1.1,0 -199693353,"Mirror's Edge",purchase,1.0,0 -199693353,"Mirror's Edge",play,1.0,0 -199693353,"Unturned",purchase,1.0,0 -199693353,"Unturned",play,0.9,0 -199693353,"Blood One Unit Whole Blood",purchase,1.0,0 -199693353,"Blood One Unit Whole Blood",play,0.8,0 -199693353,"Aliens vs. Predator",purchase,1.0,0 -199693353,"Aliens vs. Predator",play,0.8,0 -199693353,"Kung Fury",purchase,1.0,0 -199693353,"Kung Fury",play,0.6,0 -199693353,"Crysis 2 Maximum Edition",purchase,1.0,0 -199693353,"Crysis 2 Maximum Edition",play,0.5,0 -199693353,"BioShock",purchase,1.0,0 -199693353,"BioShock",play,0.4,0 -199693353,"Passing Pineview Forest",purchase,1.0,0 -199693353,"Passing Pineview Forest",play,0.4,0 -199693353,"Dead Island Epidemic",purchase,1.0,0 -199693353,"Dead Island Epidemic",play,0.3,0 -199693353,"FreeStyle2 Street Basketball",purchase,1.0,0 -199693353,"FreeStyle2 Street Basketball",play,0.3,0 -199693353,"Hotline Miami",purchase,1.0,0 -199693353,"Hotline Miami",play,0.3,0 -199693353,"Counter-Strike Global Offensive",purchase,1.0,0 -199693353,"Counter-Strike Global Offensive",play,0.3,0 -199693353,"Heroes & Generals",purchase,1.0,0 -199693353,"Heroes & Generals",play,0.2,0 -199693353,"Path of Exile",purchase,1.0,0 -199693353,"Path of Exile",play,0.2,0 -199693353,"Counter-Strike Nexon Zombies",purchase,1.0,0 -199693353,"Counter-Strike Nexon Zombies",play,0.2,0 -199693353,"Counter-Strike Condition Zero",purchase,1.0,0 -199693353,"Counter-Strike Condition Zero",play,0.2,0 -199693353,"Risk of Rain",purchase,1.0,0 -199693353,"Risk of Rain",play,0.1,0 -199693353,"how do you Do It?",purchase,1.0,0 -199693353,"how do you Do It?",play,0.1,0 -199693353,"Quake Live",purchase,1.0,0 -199693353,"Quake Live",play,0.1,0 -199693353,"Crysis",purchase,1.0,0 -199693353,"Crysis",play,0.1,0 -199693353,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -199693353,"Boring Man - Online Tactical Stickman Combat",play,0.1,0 -199693353,"Metro Last Light Redux",purchase,1.0,0 -199693353,"Half-Life 2",purchase,1.0,0 -199693353,"Shadow Warrior Classic (1997)",purchase,1.0,0 -199693353,"Crysis Warhead",purchase,1.0,0 -199693353,"Alan Wake",purchase,1.0,0 -199693353,"APB Reloaded",purchase,1.0,0 -199693353,"Counter-Strike",purchase,1.0,0 -199693353,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -199693353,"Counter-Strike Source",purchase,1.0,0 -199693353,"Crysis Wars",purchase,1.0,0 -199693353,"Day of Defeat",purchase,1.0,0 -199693353,"Day of Defeat Source",purchase,1.0,0 -199693353,"Deathmatch Classic",purchase,1.0,0 -199693353,"F.E.A.R. Online",purchase,1.0,0 -199693353,"Half-Life",purchase,1.0,0 -199693353,"Half-Life 2 Deathmatch",purchase,1.0,0 -199693353,"Half-Life 2 Episode One",purchase,1.0,0 -199693353,"Half-Life 2 Episode Two",purchase,1.0,0 -199693353,"Half-Life 2 Lost Coast",purchase,1.0,0 -199693353,"Half-Life Blue Shift",purchase,1.0,0 -199693353,"Half-Life Opposing Force",purchase,1.0,0 -199693353,"Half-Life Source",purchase,1.0,0 -199693353,"Half-Life Deathmatch Source",purchase,1.0,0 -199693353,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -199693353,"Left 4 Dead",purchase,1.0,0 -199693353,"Left 4 Dead 2",purchase,1.0,0 -199693353,"Metro 2033 Redux",purchase,1.0,0 -199693353,"Portal",purchase,1.0,0 -199693353,"Ricochet",purchase,1.0,0 -199693353,"Team Fortress Classic",purchase,1.0,0 -199693353,"The Forgotten Ones",purchase,1.0,0 -199693353,"War Thunder",purchase,1.0,0 -144202828,"Dota 2",purchase,1.0,0 -144202828,"Dota 2",play,3.2,0 -240508393,"Dota 2",purchase,1.0,0 -240508393,"Dota 2",play,62.0,0 -24011187,"Counter-Strike Global Offensive",purchase,1.0,0 -24011187,"Counter-Strike Global Offensive",play,356.0,0 -24011187,"Counter-Strike Source",purchase,1.0,0 -24011187,"Counter-Strike Source",play,34.0,0 -24011187,"The Walking Dead",purchase,1.0,0 -24011187,"The Walking Dead",play,13.0,0 -24011187,"Call of Duty Black Ops III",purchase,1.0,0 -24011187,"Call of Duty Black Ops III",play,12.4,0 -24011187,"Grand Theft Auto V",purchase,1.0,0 -24011187,"Grand Theft Auto V",play,9.7,0 -24011187,"The Elder Scrolls V Skyrim",purchase,1.0,0 -24011187,"The Elder Scrolls V Skyrim",play,7.9,0 -24011187,"The Witcher 3 Wild Hunt",purchase,1.0,0 -24011187,"The Witcher 3 Wild Hunt",play,7.1,0 -24011187,"Middle-earth Shadow of Mordor",purchase,1.0,0 -24011187,"Middle-earth Shadow of Mordor",play,6.9,0 -24011187,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -24011187,"Call of Duty Advanced Warfare - Multiplayer",play,4.0,0 -24011187,"Portal",purchase,1.0,0 -24011187,"Portal",play,4.0,0 -24011187,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -24011187,"Call of Duty Modern Warfare 2 - Multiplayer",play,4.0,0 -24011187,"DayZ",purchase,1.0,0 -24011187,"DayZ",play,3.3,0 -24011187,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -24011187,"Resident Evil Revelations / Biohazard Revelations",play,3.1,0 -24011187,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -24011187,"Fallout 3 - Game of the Year Edition",play,2.6,0 -24011187,"The Sims(TM) 3",purchase,1.0,0 -24011187,"The Sims(TM) 3",play,2.3,0 -24011187,"Portal 2",purchase,1.0,0 -24011187,"Portal 2",play,1.7,0 -24011187,"Alien Isolation",purchase,1.0,0 -24011187,"Alien Isolation",play,1.6,0 -24011187,"Dying Light",purchase,1.0,0 -24011187,"Dying Light",play,1.6,0 -24011187,"PAYDAY 2",purchase,1.0,0 -24011187,"PAYDAY 2",play,1.1,0 -24011187,"The Walking Dead Season Two",purchase,1.0,0 -24011187,"The Walking Dead Season Two",play,0.7,0 -24011187,"Resident Evil / biohazard HD REMASTER",purchase,1.0,0 -24011187,"Resident Evil / biohazard HD REMASTER",play,0.4,0 -24011187,"PlanetSide 2",purchase,1.0,0 -24011187,"PlanetSide 2",play,0.3,0 -24011187,"Heroes & Generals",purchase,1.0,0 -24011187,"The Elder Scrolls Online Tamriel Unlimited",purchase,1.0,0 -24011187,"Call of Duty Advanced Warfare",purchase,1.0,0 -24011187,"Call of Duty Modern Warfare 2",purchase,1.0,0 -24011187,"Counter-Strike",purchase,1.0,0 -24011187,"Counter-Strike Condition Zero",purchase,1.0,0 -24011187,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -24011187,"Day of Defeat",purchase,1.0,0 -24011187,"Day of Defeat Source",purchase,1.0,0 -24011187,"Deathmatch Classic",purchase,1.0,0 -24011187,"Half-Life 2 Deathmatch",purchase,1.0,0 -24011187,"Half-Life 2 Lost Coast",purchase,1.0,0 -24011187,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -24011187,"Ricochet",purchase,1.0,0 -24011187,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -97634356,"Mount & Blade Warband",purchase,1.0,0 -97634356,"Mount & Blade Warband",play,133.0,0 -97634356,"Sid Meier's Civilization V",purchase,1.0,0 -97634356,"Sid Meier's Civilization V",play,31.0,0 -97634356,"Counter-Strike Source",purchase,1.0,0 -97634356,"Counter-Strike Source",play,22.0,0 -97634356,"Team Fortress 2",purchase,1.0,0 -97634356,"Team Fortress 2",play,21.0,0 -97634356,"Mount & Blade With Fire and Sword",purchase,1.0,0 -97634356,"Mount & Blade With Fire and Sword",play,19.8,0 -97634356,"Cabela's Big Game Hunter Pro Hunts",purchase,1.0,0 -97634356,"Cabela's Big Game Hunter Pro Hunts",play,9.2,0 -97634356,"Day of Defeat Source",purchase,1.0,0 -97634356,"Day of Defeat Source",play,1.1,0 -97634356,"Half-Life 2 Lost Coast",purchase,1.0,0 -97634356,"Half-Life 2 Lost Coast",play,0.3,0 -97634356,"The Way of Life Free Edition",purchase,1.0,0 -97634356,"Half-Life 2 Deathmatch",purchase,1.0,0 -97634356,"Mount & Blade",purchase,1.0,0 -97634356,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -97634356,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -97634356,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -169258848,"Dota 2",purchase,1.0,0 -169258848,"Dota 2",play,752.0,0 -243664576,"Terraria",purchase,1.0,0 -243664576,"Terraria",play,55.0,0 -243664576,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -243664576,"Boring Man - Online Tactical Stickman Combat",play,52.0,0 -243664576,"South Park The Stick of Truth",purchase,1.0,0 -243664576,"South Park The Stick of Truth",play,41.0,0 -243664576,"Rampage Knights",purchase,1.0,0 -243664576,"Rampage Knights",play,34.0,0 -243664576,"Block N Load",purchase,1.0,0 -243664576,"Block N Load",play,22.0,0 -243664576,"Captain Forever Remix",purchase,1.0,0 -243664576,"Captain Forever Remix",play,22.0,0 -243664576,"Don't Starve",purchase,1.0,0 -243664576,"Don't Starve",play,16.0,0 -243664576,"Creativerse",purchase,1.0,0 -243664576,"Creativerse",play,14.6,0 -243664576,"Mount Your Friends",purchase,1.0,0 -243664576,"Mount Your Friends",play,12.7,0 -243664576,"Starbound",purchase,1.0,0 -243664576,"Starbound",play,11.7,0 -243664576,"Magic Barrage - Bitferno",purchase,1.0,0 -243664576,"Magic Barrage - Bitferno",play,11.5,0 -243664576,"Serious Sam 3 BFE",purchase,1.0,0 -243664576,"Serious Sam 3 BFE",play,11.1,0 -243664576,"Unturned",purchase,1.0,0 -243664576,"Unturned",play,9.7,0 -243664576,"Sheltered",purchase,1.0,0 -243664576,"Sheltered",play,7.7,0 -243664576,"Broforce",purchase,1.0,0 -243664576,"Broforce",play,6.6,0 -243664576,"Everlasting Summer",purchase,1.0,0 -243664576,"Everlasting Summer",play,5.5,0 -243664576,"Garry's Mod",purchase,1.0,0 -243664576,"Garry's Mod",play,5.4,0 -243664576,"Kingdom",purchase,1.0,0 -243664576,"Kingdom",play,5.2,0 -243664576,"Shoppe Keep",purchase,1.0,0 -243664576,"Shoppe Keep",play,4.3,0 -243664576,"The Binding of Isaac",purchase,1.0,0 -243664576,"The Binding of Isaac",play,4.2,0 -243664576,"Serious Sam 2",purchase,1.0,0 -243664576,"Serious Sam 2",play,2.9,0 -243664576,"Relic Hunters Zero",purchase,1.0,0 -243664576,"Relic Hunters Zero",play,2.8,0 -243664576,"Don't Starve Together Beta",purchase,1.0,0 -243664576,"Don't Starve Together Beta",play,2.1,0 -243664576,"Eternal Fate",purchase,1.0,0 -243664576,"Eternal Fate",play,1.7,0 -243664576,"The Mighty Quest For Epic Loot",purchase,1.0,0 -243664576,"The Mighty Quest For Epic Loot",play,1.7,0 -243664576,"Five Nights at Freddy's 4",purchase,1.0,0 -243664576,"Five Nights at Freddy's 4",play,1.7,0 -243664576,"Brawlhalla",purchase,1.0,0 -243664576,"Brawlhalla",play,1.7,0 -243664576,"BLOCKADE 3D",purchase,1.0,0 -243664576,"BLOCKADE 3D",play,1.7,0 -243664576,"I am Bread",purchase,1.0,0 -243664576,"I am Bread",play,1.5,0 -243664576,"Super Meat Boy",purchase,1.0,0 -243664576,"Super Meat Boy",play,1.4,0 -243664576,"Mitos.is The Game",purchase,1.0,0 -243664576,"Mitos.is The Game",play,1.3,0 -243664576,"Time Clickers",purchase,1.0,0 -243664576,"Time Clickers",play,1.3,0 -243664576,"60 Seconds!",purchase,1.0,0 -243664576,"60 Seconds!",play,1.2,0 -243664576,"BattleBlock Theater",purchase,1.0,0 -243664576,"BattleBlock Theater",play,1.1,0 -243664576,"Bloody Trapland",purchase,1.0,0 -243664576,"Bloody Trapland",play,1.1,0 -243664576,"Counter-Strike Nexon Zombies",purchase,1.0,0 -243664576,"Counter-Strike Nexon Zombies",play,1.1,0 -243664576,"Dota 2",purchase,1.0,0 -243664576,"Dota 2",play,1.1,0 -243664576,"Counter-Strike Global Offensive",purchase,1.0,0 -243664576,"Counter-Strike Global Offensive",play,0.9,0 -243664576,"Heroes of Scene",purchase,1.0,0 -243664576,"Heroes of Scene",play,0.9,0 -243664576,"Trove",purchase,1.0,0 -243664576,"Trove",play,0.7,0 -243664576,"Grand Theft Auto San Andreas",purchase,1.0,0 -243664576,"Grand Theft Auto San Andreas",play,0.7,0 -243664576,"Team Fortress 2",purchase,1.0,0 -243664576,"Team Fortress 2",play,0.6,0 -243664576,"Warside",purchase,1.0,0 -243664576,"Warside",play,0.6,0 -243664576,"Beast Boxing Turbo",purchase,1.0,0 -243664576,"Beast Boxing Turbo",play,0.5,0 -243664576,"POSTAL 2",purchase,1.0,0 -243664576,"POSTAL 2",play,0.5,0 -243664576,"Happy Wars",purchase,1.0,0 -243664576,"Happy Wars",play,0.5,0 -243664576,"Galcon 2",purchase,1.0,0 -243664576,"Galcon 2",play,0.5,0 -243664576,"Batla",purchase,1.0,0 -243664576,"Batla",play,0.4,0 -243664576,"Fistful of Frags",purchase,1.0,0 -243664576,"Fistful of Frags",play,0.3,0 -243664576,"Teeworlds",purchase,1.0,0 -243664576,"Teeworlds",play,0.3,0 -243664576,"AdVenture Capitalist",purchase,1.0,0 -243664576,"AdVenture Capitalist",play,0.2,0 -243664576,"World of Soccer online",purchase,1.0,0 -243664576,"World of Soccer online",play,0.2,0 -243664576,"Krosmaster Arena",purchase,1.0,0 -243664576,"Krosmaster Arena",play,0.2,0 -243664576,"7 Days to Die",purchase,1.0,0 -243664576,"7 Days to Die",play,0.2,0 -243664576,"Immune",purchase,1.0,0 -243664576,"Immune",play,0.2,0 -243664576,"Serious Sam HD The Second Encounter",purchase,1.0,0 -243664576,"Serious Sam HD The Second Encounter",play,0.1,0 -243664576,"Gladiators Online Death Before Dishonor",purchase,1.0,0 -243664576,"Gladiators Online Death Before Dishonor",play,0.1,0 -243664576,"Town of Salem",purchase,1.0,0 -243664576,"Town of Salem",play,0.1,0 -243664576,"RUSH",purchase,1.0,0 -243664576,"RUSH",play,0.1,0 -243664576,"Polarity",purchase,1.0,0 -243664576,"Polarity",play,0.1,0 -243664576,"Sakura Clicker",purchase,1.0,0 -243664576,"WARMODE",purchase,1.0,0 -243664576,"Guns and Robots",purchase,1.0,0 -243664576,"Dinosaur Hunt Africa Contract",purchase,1.0,0 -243664576,"PAYDAY 2",purchase,1.0,0 -243664576,"Destination Sol",purchase,1.0,0 -243664576,"Geometry Dash",purchase,1.0,0 -243664576,"Quake Live",purchase,1.0,0 -243664576,"Magicka Wizard Wars",purchase,1.0,0 -243664576,"Dead Bits",purchase,1.0,0 -243664576,"Escape Machines",purchase,1.0,0 -243664576,"Endless Sky",purchase,1.0,0 -243664576,"Battle Battalions",purchase,1.0,0 -243664576,"Clergy Splode",purchase,1.0,0 -243664576,"Red Faction Armageddon",purchase,1.0,0 -243664576,"Dwarfs F2P",purchase,1.0,0 -243664576,"AirMech",purchase,1.0,0 -243664576,"Altitude",purchase,1.0,0 -243664576,"Among Ripples",purchase,1.0,0 -243664576,"Anarchy Arcade",purchase,1.0,0 -243664576,"Battle for Blood - Epic battles within 30 seconds!",purchase,1.0,0 -243664576,"Blender 2.76b",purchase,1.0,0 -243664576,"Brick-Force",purchase,1.0,0 -243664576,"Champions Online",purchase,1.0,0 -243664576,"Clicker Heroes",purchase,1.0,0 -243664576,"Curse of Mermos",purchase,1.0,0 -243664576,"Dead Bits (Soundtrack)",purchase,1.0,0 -243664576,"Deepworld",purchase,1.0,0 -243664576,"Depth",purchase,1.0,0 -243664576,"Don't Starve Shipwrecked",purchase,1.0,0 -243664576,"Don't Starve Reign of Giants",purchase,1.0,0 -243664576,"Echoes+",purchase,1.0,0 -243664576,"Epic Arena",purchase,1.0,0 -243664576,"Floating Point",purchase,1.0,0 -243664576,"Games of Glory",purchase,1.0,0 -243664576,"Gear Up",purchase,1.0,0 -243664576,"Grand Theft Auto San Andreas",purchase,1.0,0 -243664576,"Heroes & Generals",purchase,1.0,0 -243664576,"Jigoku Kisetsukan Sense of the Seasons",purchase,1.0,0 -243664576,"No More Room in Hell",purchase,1.0,0 -243664576,"Quintet",purchase,1.0,0 -243664576,"Realm of the Mad God",purchase,1.0,0 -243664576,"Robocraft",purchase,1.0,0 -243664576,"RPG MO",purchase,1.0,0 -243664576,"Serious Sam HD The First Encounter",purchase,1.0,0 -243664576,"Spartans Vs Zombies Defense",purchase,1.0,0 -243664576,"Starbound - Unstable",purchase,1.0,0 -243664576,"Tap Tap Infinity",purchase,1.0,0 -243664576,"The Expendabros",purchase,1.0,0 -243664576,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -243664576,"Toribash",purchase,1.0,0 -243664576,"Villagers and Heroes",purchase,1.0,0 -243664576,"Warframe",purchase,1.0,0 -243664576,"Wild Warfare",purchase,1.0,0 -73094226,"Team Fortress 2",purchase,1.0,0 -73094226,"Team Fortress 2",play,9.6,0 -73094226,"Depression Quest",purchase,1.0,0 -73094226,"Depression Quest",play,0.3,0 -146449077,"Dota 2",purchase,1.0,0 -146449077,"Dota 2",play,1233.0,0 -46800342,"Empire Total War",purchase,1.0,0 -163801892,"Dota 2",purchase,1.0,0 -163801892,"Dota 2",play,103.0,0 -235037893,"Counter-Strike Global Offensive",purchase,1.0,0 -235037893,"Counter-Strike Global Offensive",play,145.0,0 -235037893,"Dota 2",purchase,1.0,0 -235037893,"Dota 2",play,0.3,0 -252540851,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -105261470,"Team Fortress 2",purchase,1.0,0 -105261470,"Team Fortress 2",play,13.1,0 -257891885,"Unturned",purchase,1.0,0 -24469287,"Fallout 4",purchase,1.0,0 -24469287,"Fallout 4",play,119.0,0 -24469287,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -24469287,"Sins of a Solar Empire Rebellion",play,113.0,0 -24469287,"The Witcher 3 Wild Hunt",purchase,1.0,0 -24469287,"The Witcher 3 Wild Hunt",play,105.0,0 -24469287,"XCOM Enemy Unknown",purchase,1.0,0 -24469287,"XCOM Enemy Unknown",play,94.0,0 -24469287,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -24469287,"Dark Souls Prepare to Die Edition",play,88.0,0 -24469287,"Fallout New Vegas",purchase,1.0,0 -24469287,"Fallout New Vegas",play,72.0,0 -24469287,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -24469287,"METAL GEAR SOLID V THE PHANTOM PAIN",play,54.0,0 -24469287,"Endless Space",purchase,1.0,0 -24469287,"Endless Space",play,50.0,0 -24469287,"StarDrive",purchase,1.0,0 -24469287,"StarDrive",play,49.0,0 -24469287,"Endless Legend",purchase,1.0,0 -24469287,"Endless Legend",play,49.0,0 -24469287,"LIGHTNING RETURNS FINAL FANTASY XIII",purchase,1.0,0 -24469287,"LIGHTNING RETURNS FINAL FANTASY XIII",play,40.0,0 -24469287,"Sid Meier's Civilization V",purchase,1.0,0 -24469287,"Sid Meier's Civilization V",play,38.0,0 -24469287,"Darksiders II",purchase,1.0,0 -24469287,"Darksiders II",play,36.0,0 -24469287,"FINAL FANTASY XIII",purchase,1.0,0 -24469287,"FINAL FANTASY XIII",play,34.0,0 -24469287,"Grand Theft Auto V",purchase,1.0,0 -24469287,"Grand Theft Auto V",play,34.0,0 -24469287,"BioShock Infinite",purchase,1.0,0 -24469287,"BioShock Infinite",play,33.0,0 -24469287,"Borderlands 2",purchase,1.0,0 -24469287,"Borderlands 2",play,31.0,0 -24469287,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -24469287,"The Witcher 2 Assassins of Kings Enhanced Edition",play,31.0,0 -24469287,"DARK SOULS II",purchase,1.0,0 -24469287,"DARK SOULS II",play,31.0,0 -24469287,"Middle-earth Shadow of Mordor",purchase,1.0,0 -24469287,"Middle-earth Shadow of Mordor",play,30.0,0 -24469287,"Terraria",purchase,1.0,0 -24469287,"Terraria",play,29.0,0 -24469287,"StarDrive 2",purchase,1.0,0 -24469287,"StarDrive 2",play,28.0,0 -24469287,"Divinity Original Sin",purchase,1.0,0 -24469287,"Divinity Original Sin",play,27.0,0 -24469287,"The Elder Scrolls V Skyrim",purchase,1.0,0 -24469287,"The Elder Scrolls V Skyrim",play,26.0,0 -24469287,"The Talos Principle",purchase,1.0,0 -24469287,"The Talos Principle",play,25.0,0 -24469287,"Mad Max",purchase,1.0,0 -24469287,"Mad Max",play,25.0,0 -24469287,"Eador. Masters of the Broken World",purchase,1.0,0 -24469287,"Eador. Masters of the Broken World",play,23.0,0 -24469287,"Saints Row IV",purchase,1.0,0 -24469287,"Saints Row IV",play,22.0,0 -24469287,"Dishonored",purchase,1.0,0 -24469287,"Dishonored",play,21.0,0 -24469287,"FTL Faster Than Light",purchase,1.0,0 -24469287,"FTL Faster Than Light",play,20.0,0 -24469287,"Saints Row The Third",purchase,1.0,0 -24469287,"Saints Row The Third",play,20.0,0 -24469287,"Sleeping Dogs",purchase,1.0,0 -24469287,"Sleeping Dogs",play,19.8,0 -24469287,"Magic The Gathering Duels of the Planeswalkers 2012",purchase,1.0,0 -24469287,"Magic The Gathering Duels of the Planeswalkers 2012",play,19.2,0 -24469287,"Starbound",purchase,1.0,0 -24469287,"Starbound",play,18.9,0 -24469287,"Shadowrun Returns",purchase,1.0,0 -24469287,"Shadowrun Returns",play,18.8,0 -24469287,"Satellite Reign",purchase,1.0,0 -24469287,"Satellite Reign",play,17.5,0 -24469287,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -24469287,"Sid Meier's Civilization Beyond Earth",play,17.3,0 -24469287,"Supreme Commander 2",purchase,1.0,0 -24469287,"Supreme Commander 2",play,17.3,0 -24469287,"King Arthur Collection",purchase,1.0,0 -24469287,"King Arthur Collection",play,17.2,0 -24469287,"Darksiders",purchase,1.0,0 -24469287,"Darksiders",play,17.2,0 -24469287,"Deus Ex Human Revolution",purchase,1.0,0 -24469287,"Deus Ex Human Revolution",play,16.2,0 -24469287,"Just Cause 3",purchase,1.0,0 -24469287,"Just Cause 3",play,15.9,0 -24469287,"Xenonauts",purchase,1.0,0 -24469287,"Xenonauts",play,15.6,0 -24469287,"Homeworld Remastered Collection",purchase,1.0,0 -24469287,"Homeworld Remastered Collection",play,15.0,0 -24469287,"Age of Wonders III",purchase,1.0,0 -24469287,"Age of Wonders III",play,14.8,0 -24469287,"Axiom Verge",purchase,1.0,0 -24469287,"Axiom Verge",play,14.6,0 -24469287,"Space Pirates and Zombies",purchase,1.0,0 -24469287,"Space Pirates and Zombies",play,14.5,0 -24469287,"Castlevania Lords of Shadow 2",purchase,1.0,0 -24469287,"Castlevania Lords of Shadow 2",play,14.2,0 -24469287,"Broken Age",purchase,1.0,0 -24469287,"Broken Age",play,13.9,0 -24469287,"Tropico 4",purchase,1.0,0 -24469287,"Tropico 4",play,13.4,0 -24469287,"RAGE",purchase,1.0,0 -24469287,"RAGE",play,13.3,0 -24469287,"Binary Domain",purchase,1.0,0 -24469287,"Binary Domain",play,12.6,0 -24469287,"The Banner Saga",purchase,1.0,0 -24469287,"The Banner Saga",play,12.4,0 -24469287,"Warframe",purchase,1.0,0 -24469287,"Warframe",play,12.2,0 -24469287,"Lords Of The Fallen",purchase,1.0,0 -24469287,"Lords Of The Fallen",play,11.0,0 -24469287,"The Bureau XCOM Declassified",purchase,1.0,0 -24469287,"The Bureau XCOM Declassified",play,10.9,0 -24469287,"Defender's Quest Valley of the Forgotten",purchase,1.0,0 -24469287,"Defender's Quest Valley of the Forgotten",play,10.4,0 -24469287,"Planetary Annihilation TITANS",purchase,1.0,0 -24469287,"Planetary Annihilation TITANS",play,10.3,0 -24469287,"Mars War Logs",purchase,1.0,0 -24469287,"Mars War Logs",play,10.1,0 -24469287,"Wolfenstein The New Order",purchase,1.0,0 -24469287,"Wolfenstein The New Order",play,10.0,0 -24469287,"Warlock 2 the Exiled",purchase,1.0,0 -24469287,"Warlock 2 the Exiled",play,9.4,0 -24469287,"Total War ROME II - Emperor Edition",purchase,1.0,0 -24469287,"Total War ROME II - Emperor Edition",play,9.4,0 -24469287,"Torchlight II",purchase,1.0,0 -24469287,"Torchlight II",play,9.4,0 -24469287,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -24469287,"Dragon Age Origins - Ultimate Edition",play,9.4,0 -24469287,"Warlock - Master of the Arcane",purchase,1.0,0 -24469287,"Warlock - Master of the Arcane",play,9.3,0 -24469287,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -24469287,"Batman Arkham Asylum GOTY Edition",play,9.3,0 -24469287,"Hitman Absolution",purchase,1.0,0 -24469287,"Hitman Absolution",play,9.1,0 -24469287,"Eufloria",purchase,1.0,0 -24469287,"Eufloria",play,9.1,0 -24469287,"Spelunky",purchase,1.0,0 -24469287,"Spelunky",play,8.9,0 -24469287,"Game of Thrones ",purchase,1.0,0 -24469287,"Game of Thrones ",play,8.9,0 -24469287,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -24469287,"Red Faction Guerrilla Steam Edition",play,8.3,0 -24469287,"Assassin's Creed Revelations",purchase,1.0,0 -24469287,"Assassin's Creed Revelations",play,8.2,0 -24469287,"Portal 2",purchase,1.0,0 -24469287,"Portal 2",play,8.0,0 -24469287,"Magicka",purchase,1.0,0 -24469287,"Magicka",play,8.0,0 -24469287,"Nom Nom Galaxy",purchase,1.0,0 -24469287,"Nom Nom Galaxy",play,8.0,0 -24469287,"Zeno Clash 2",purchase,1.0,0 -24469287,"Zeno Clash 2",play,7.9,0 -24469287,"Ori and the Blind Forest",purchase,1.0,0 -24469287,"Ori and the Blind Forest",play,7.9,0 -24469287,"Fallen Enchantress Legendary Heroes",purchase,1.0,0 -24469287,"Fallen Enchantress Legendary Heroes",play,7.9,0 -24469287,"Gratuitous Space Battles",purchase,1.0,0 -24469287,"Gratuitous Space Battles",play,7.8,0 -24469287,"Holy Potatoes! A Weapon Shop?!",purchase,1.0,0 -24469287,"Holy Potatoes! A Weapon Shop?!",play,7.7,0 -24469287,"Max Payne 3",purchase,1.0,0 -24469287,"Max Payne 3",play,7.6,0 -24469287,"Warhammer 40,000 Space Marine",purchase,1.0,0 -24469287,"Warhammer 40,000 Space Marine",play,7.0,0 -24469287,"Metro Last Light",purchase,1.0,0 -24469287,"Metro Last Light",play,7.0,0 -24469287,"Total War SHOGUN 2",purchase,1.0,0 -24469287,"Total War SHOGUN 2",play,6.9,0 -24469287,"Dust An Elysian Tail",purchase,1.0,0 -24469287,"Dust An Elysian Tail",play,6.8,0 -24469287,"Castlevania Lords of Shadow - Ultimate Edition",purchase,1.0,0 -24469287,"Castlevania Lords of Shadow - Ultimate Edition",play,6.8,0 -24469287,"Orcs Must Die!",purchase,1.0,0 -24469287,"Orcs Must Die!",play,6.7,0 -24469287,"Spore",purchase,1.0,0 -24469287,"Spore",play,6.6,0 -24469287,"Planetary Annihilation",purchase,1.0,0 -24469287,"Planetary Annihilation",play,6.4,0 -24469287,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -24469287,"Injustice Gods Among Us Ultimate Edition",play,6.3,0 -24469287,"Her Story",purchase,1.0,0 -24469287,"Her Story",play,6.3,0 -24469287,"Hammerwatch",purchase,1.0,0 -24469287,"Hammerwatch",play,6.0,0 -24469287,"Finn and Jake's Epic Quest",purchase,1.0,0 -24469287,"Finn and Jake's Epic Quest",play,6.0,0 -24469287,"The Swapper",purchase,1.0,0 -24469287,"The Swapper",play,6.0,0 -24469287,"The Cave",purchase,1.0,0 -24469287,"The Cave",play,6.0,0 -24469287,"Universe Sandbox",purchase,1.0,0 -24469287,"Universe Sandbox",play,5.9,0 -24469287,"Rebel Galaxy",purchase,1.0,0 -24469287,"Rebel Galaxy",play,5.6,0 -24469287,"Legend of Grimrock",purchase,1.0,0 -24469287,"Legend of Grimrock",play,5.5,0 -24469287,"Sword of the Stars The Pit",purchase,1.0,0 -24469287,"Sword of the Stars The Pit",play,5.4,0 -24469287,"Iron Brigade",purchase,1.0,0 -24469287,"Iron Brigade",play,5.4,0 -24469287,"The Magic Circle",purchase,1.0,0 -24469287,"The Magic Circle",play,5.2,0 -24469287,"Borderlands",purchase,1.0,0 -24469287,"Borderlands",play,5.1,0 -24469287,"Infested Planet",purchase,1.0,0 -24469287,"Infested Planet",play,5.1,0 -24469287,"Insanely Twisted Shadow Planet",purchase,1.0,0 -24469287,"Insanely Twisted Shadow Planet",play,5.0,0 -24469287,"Impire",purchase,1.0,0 -24469287,"Impire",play,4.9,0 -24469287,"Little Inferno",purchase,1.0,0 -24469287,"Little Inferno",play,4.9,0 -24469287,"Unepic",purchase,1.0,0 -24469287,"Unepic",play,4.9,0 -24469287,"Lichdom Battlemage",purchase,1.0,0 -24469287,"Lichdom Battlemage",play,4.8,0 -24469287,"Reus",purchase,1.0,0 -24469287,"Reus",play,4.7,0 -24469287,"Crusader Kings II",purchase,1.0,0 -24469287,"Crusader Kings II",play,4.7,0 -24469287,"Rome Total War",purchase,1.0,0 -24469287,"Rome Total War",play,4.7,0 -24469287,"Divinity Dragon Commander",purchase,1.0,0 -24469287,"Divinity Dragon Commander",play,4.6,0 -24469287,"Rogue Legacy",purchase,1.0,0 -24469287,"Rogue Legacy",play,4.6,0 -24469287,"Sang-Froid - Tales of Werewolves",purchase,1.0,0 -24469287,"Sang-Froid - Tales of Werewolves",play,4.6,0 -24469287,"Bastion",purchase,1.0,0 -24469287,"Bastion",play,4.6,0 -24469287,"Dead Island",purchase,1.0,0 -24469287,"Dead Island",play,4.5,0 -24469287,"Hand Of Fate",purchase,1.0,0 -24469287,"Hand Of Fate",play,4.5,0 -24469287,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -24469287,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,4.5,0 -24469287,"War for the Overworld",purchase,1.0,0 -24469287,"War for the Overworld",play,4.5,0 -24469287,"Sorcerer King",purchase,1.0,0 -24469287,"Sorcerer King",play,4.4,0 -24469287,"DmC Devil May Cry",purchase,1.0,0 -24469287,"DmC Devil May Cry",play,4.4,0 -24469287,"3DMark",purchase,1.0,0 -24469287,"3DMark",play,4.3,0 -24469287,"Two Worlds II",purchase,1.0,0 -24469287,"Two Worlds II",play,4.3,0 -24469287,"Orcs Must Die! 2",purchase,1.0,0 -24469287,"Orcs Must Die! 2",play,4.3,0 -24469287,"Cradle",purchase,1.0,0 -24469287,"Cradle",play,4.2,0 -24469287,"Magic 2014 ",purchase,1.0,0 -24469287,"Magic 2014 ",play,4.2,0 -24469287,"Hell Yeah!",purchase,1.0,0 -24469287,"Hell Yeah!",play,4.2,0 -24469287,"Shovel Knight",purchase,1.0,0 -24469287,"Shovel Knight",play,4.1,0 -24469287,"MASSIVE CHALICE",purchase,1.0,0 -24469287,"MASSIVE CHALICE",play,4.1,0 -24469287,"The Stanley Parable",purchase,1.0,0 -24469287,"The Stanley Parable",play,4.1,0 -24469287,"Darkest Dungeon",purchase,1.0,0 -24469287,"Darkest Dungeon",play,4.1,0 -24469287,"The Last Federation",purchase,1.0,0 -24469287,"The Last Federation",play,3.9,0 -24469287,"Might & Magic Heroes VI",purchase,1.0,0 -24469287,"Might & Magic Heroes VI",play,3.9,0 -24469287,"Solar 2",purchase,1.0,0 -24469287,"Solar 2",play,3.8,0 -24469287,"Risk of Rain",purchase,1.0,0 -24469287,"Risk of Rain",play,3.7,0 -24469287,"Don't Starve",purchase,1.0,0 -24469287,"Don't Starve",play,3.7,0 -24469287,"Just Cause 2",purchase,1.0,0 -24469287,"Just Cause 2",play,3.7,0 -24469287,"Trine 2",purchase,1.0,0 -24469287,"Trine 2",play,3.7,0 -24469287,"FINAL FANTASY VIII",purchase,1.0,0 -24469287,"FINAL FANTASY VIII",play,3.6,0 -24469287,"DEFCON",purchase,1.0,0 -24469287,"DEFCON",play,3.6,0 -24469287,"The Walking Dead",purchase,1.0,0 -24469287,"The Walking Dead",play,3.5,0 -24469287,"Spec Ops The Line",purchase,1.0,0 -24469287,"Spec Ops The Line",play,3.4,0 -24469287,"Toy Soldiers War Chest",purchase,1.0,0 -24469287,"Toy Soldiers War Chest",play,3.3,0 -24469287,"Hard Reset",purchase,1.0,0 -24469287,"Hard Reset",play,3.2,0 -24469287,"Alice Madness Returns",purchase,1.0,0 -24469287,"Alice Madness Returns",play,3.2,0 -24469287,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -24469287,"Galactic Civilizations II Ultimate Edition",play,3.2,0 -24469287,"Guacamelee! Gold Edition",purchase,1.0,0 -24469287,"Guacamelee! Gold Edition",play,3.2,0 -24469287,"Antichamber",purchase,1.0,0 -24469287,"Antichamber",play,3.0,0 -24469287,"Darwinia",purchase,1.0,0 -24469287,"Darwinia",play,3.0,0 -24469287,"Transistor",purchase,1.0,0 -24469287,"Transistor",play,3.0,0 -24469287,"Ys The Oath in Felghana",purchase,1.0,0 -24469287,"Ys The Oath in Felghana",play,2.9,0 -24469287,"Pillars of Eternity",purchase,1.0,0 -24469287,"Pillars of Eternity",play,2.9,0 -24469287,"Evolve",purchase,1.0,0 -24469287,"Evolve",play,2.9,0 -24469287,"Brothers - A Tale of Two Sons",purchase,1.0,0 -24469287,"Brothers - A Tale of Two Sons",play,2.9,0 -24469287,"Costume Quest",purchase,1.0,0 -24469287,"Costume Quest",play,2.8,0 -24469287,"CastleStorm",purchase,1.0,0 -24469287,"CastleStorm",play,2.8,0 -24469287,"Halfway",purchase,1.0,0 -24469287,"Halfway",play,2.8,0 -24469287,"Cave Story+",purchase,1.0,0 -24469287,"Cave Story+",play,2.7,0 -24469287,"Bound By Flame",purchase,1.0,0 -24469287,"Bound By Flame",play,2.6,0 -24469287,"Child of Light",purchase,1.0,0 -24469287,"Child of Light",play,2.6,0 -24469287,"Left 4 Dead",purchase,1.0,0 -24469287,"Left 4 Dead",play,2.4,0 -24469287,"Dungeon of the Endless",purchase,1.0,0 -24469287,"Dungeon of the Endless",play,2.4,0 -24469287,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -24469287,"Kingdoms of Amalur Reckoning",play,2.4,0 -24469287,"Gunpoint",purchase,1.0,0 -24469287,"Gunpoint",play,2.3,0 -24469287,"Medieval II Total War",purchase,1.0,0 -24469287,"Medieval II Total War",play,2.3,0 -24469287,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -24469287,"Warhammer 40,000 Dawn of War II Retribution",play,2.3,0 -24469287,"Dota 2",purchase,1.0,0 -24469287,"Dota 2",play,2.2,0 -24469287,"Big Pharma",purchase,1.0,0 -24469287,"Big Pharma",play,2.2,0 -24469287,"Mortal Kombat Komplete Edition",purchase,1.0,0 -24469287,"Mortal Kombat Komplete Edition",play,2.2,0 -24469287,"King Arthur II - The Role-playing Wargame",purchase,1.0,0 -24469287,"King Arthur II - The Role-playing Wargame",play,2.1,0 -24469287,"Gods Will Be Watching",purchase,1.0,0 -24469287,"Gods Will Be Watching",play,2.1,0 -24469287,"AdVenture Capitalist",purchase,1.0,0 -24469287,"AdVenture Capitalist",play,2.1,0 -24469287,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -24469287,"Deus Ex Human Revolution - The Missing Link",play,2.0,0 -24469287,"Starpoint Gemini 2",purchase,1.0,0 -24469287,"Starpoint Gemini 2",play,2.0,0 -24469287,"The Binding of Isaac",purchase,1.0,0 -24469287,"The Binding of Isaac",play,2.0,0 -24469287,"PixelJunk Shooter",purchase,1.0,0 -24469287,"PixelJunk Shooter",play,2.0,0 -24469287,"Quantum Conundrum",purchase,1.0,0 -24469287,"Quantum Conundrum",play,2.0,0 -24469287,"Salvation Prophecy",purchase,1.0,0 -24469287,"Salvation Prophecy",play,1.9,0 -24469287,"VoidExpanse",purchase,1.0,0 -24469287,"VoidExpanse",play,1.9,0 -24469287,"Invisible, Inc.",purchase,1.0,0 -24469287,"Invisible, Inc.",play,1.9,0 -24469287,"Nihilumbra",purchase,1.0,0 -24469287,"Nihilumbra",play,1.8,0 -24469287,"X-COM UFO Defense",purchase,1.0,0 -24469287,"X-COM UFO Defense",play,1.8,0 -24469287,"Sunless Sea",purchase,1.0,0 -24469287,"Sunless Sea",play,1.8,0 -24469287,"SteamWorld Dig",purchase,1.0,0 -24469287,"SteamWorld Dig",play,1.7,0 -24469287,"Cannon Brawl",purchase,1.0,0 -24469287,"Cannon Brawl",play,1.6,0 -24469287,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -24469287,"DARK SOULS II Scholar of the First Sin",play,1.6,0 -24469287,"Age of Empires II HD Edition",purchase,1.0,0 -24469287,"Age of Empires II HD Edition",play,1.6,0 -24469287,"Time Clickers",purchase,1.0,0 -24469287,"Time Clickers",play,1.5,0 -24469287,"Knights of Pen and Paper +1",purchase,1.0,0 -24469287,"Knights of Pen and Paper +1",play,1.5,0 -24469287,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -24469287,"METAL GEAR SOLID V GROUND ZEROES",play,1.5,0 -24469287,"Call of Juarez Gunslinger",purchase,1.0,0 -24469287,"Call of Juarez Gunslinger",play,1.5,0 -24469287,"Ziggurat",purchase,1.0,0 -24469287,"Ziggurat",play,1.5,0 -24469287,"Red Faction Armageddon",purchase,1.0,0 -24469287,"Red Faction Armageddon",play,1.5,0 -24469287,"Far Cry 2",purchase,1.0,0 -24469287,"Far Cry 2",play,1.3,0 -24469287,"Long Live The Queen",purchase,1.0,0 -24469287,"Long Live The Queen",play,1.3,0 -24469287,"Evoland",purchase,1.0,0 -24469287,"Evoland",play,1.3,0 -24469287,"Spacebase DF-9",purchase,1.0,0 -24469287,"Spacebase DF-9",play,1.3,0 -24469287,"Mercenary Kings",purchase,1.0,0 -24469287,"Mercenary Kings",play,1.3,0 -24469287,"Galactic Civilizations III",purchase,1.0,0 -24469287,"Galactic Civilizations III",play,1.2,0 -24469287,"Cities Skylines",purchase,1.0,0 -24469287,"Cities Skylines",play,1.2,0 -24469287,"Need for Speed Hot Pursuit",purchase,1.0,0 -24469287,"Need for Speed Hot Pursuit",play,1.2,0 -24469287,"Meridian New World",purchase,1.0,0 -24469287,"Meridian New World",play,1.2,0 -24469287,"State of Decay",purchase,1.0,0 -24469287,"State of Decay",play,1.2,0 -24469287,"Nuclear Throne",purchase,1.0,0 -24469287,"Nuclear Throne",play,1.1,0 -24469287,"Game Dev Tycoon",purchase,1.0,0 -24469287,"Game Dev Tycoon",play,1.1,0 -24469287,"Cryostasis",purchase,1.0,0 -24469287,"Cryostasis",play,1.1,0 -24469287,"Omerta - City of Gangsters",purchase,1.0,0 -24469287,"Omerta - City of Gangsters",play,1.1,0 -24469287,"Kung Fu Strike The Warrior's Rise",purchase,1.0,0 -24469287,"Kung Fu Strike The Warrior's Rise",play,1.1,0 -24469287,"Kingdom Wars",purchase,1.0,0 -24469287,"Kingdom Wars",play,1.0,0 -24469287,"Banished",purchase,1.0,0 -24469287,"Banished",play,1.0,0 -24469287,"Sol Survivor",purchase,1.0,0 -24469287,"Sol Survivor",play,1.0,0 -24469287,"Far Cry 3 Blood Dragon",purchase,1.0,0 -24469287,"Far Cry 3 Blood Dragon",play,1.0,0 -24469287,"Deadlight",purchase,1.0,0 -24469287,"Deadlight",play,1.0,0 -24469287,"Garry's Mod",purchase,1.0,0 -24469287,"Garry's Mod",play,0.9,0 -24469287,"ARK Survival Evolved",purchase,1.0,0 -24469287,"ARK Survival Evolved",play,0.9,0 -24469287,"LEGO The Lord of the Rings",purchase,1.0,0 -24469287,"LEGO The Lord of the Rings",play,0.9,0 -24469287,"The Long Dark",purchase,1.0,0 -24469287,"The Long Dark",play,0.9,0 -24469287,"Mark of the Ninja",purchase,1.0,0 -24469287,"Mark of the Ninja",play,0.9,0 -24469287,"Volgarr the Viking",purchase,1.0,0 -24469287,"Volgarr the Viking",play,0.9,0 -24469287,"Command and Conquer 4 Tiberian Twilight",purchase,1.0,0 -24469287,"Command and Conquer 4 Tiberian Twilight",play,0.8,0 -24469287,"Betrayer",purchase,1.0,0 -24469287,"Betrayer",play,0.8,0 -24469287,"La-Mulana",purchase,1.0,0 -24469287,"La-Mulana",play,0.8,0 -24469287,"Anodyne",purchase,1.0,0 -24469287,"Anodyne",play,0.8,0 -24469287,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -24469287,"Warhammer 40,000 Dawn of War II",play,0.8,0 -24469287,"Alpha Protocol",purchase,1.0,0 -24469287,"Alpha Protocol",play,0.8,0 -24469287,"Revenge of the Titans",purchase,1.0,0 -24469287,"Revenge of the Titans",play,0.8,0 -24469287,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -24469287,"Command and Conquer Red Alert 3 - Uprising",play,0.7,0 -24469287,"Surgeon Simulator",purchase,1.0,0 -24469287,"Surgeon Simulator",play,0.7,0 -24469287,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -24469287,"Tiny and Big Grandpa's Leftovers",play,0.7,0 -24469287,"Mushroom 11",purchase,1.0,0 -24469287,"Mushroom 11",play,0.7,0 -24469287,"Hotline Miami",purchase,1.0,0 -24469287,"Hotline Miami",play,0.7,0 -24469287,"Awesomenauts",purchase,1.0,0 -24469287,"Awesomenauts",play,0.7,0 -24469287,"The Fall",purchase,1.0,0 -24469287,"The Fall",play,0.7,0 -24469287,"Legend of Dungeon",purchase,1.0,0 -24469287,"Legend of Dungeon",play,0.7,0 -24469287,"The Darkness II",purchase,1.0,0 -24469287,"The Darkness II",play,0.7,0 -24469287,"Besiege",purchase,1.0,0 -24469287,"Besiege",play,0.6,0 -24469287,"Batman Arkham City GOTY",purchase,1.0,0 -24469287,"Batman Arkham City GOTY",play,0.6,0 -24469287,"Star Wars Empire at War Gold",purchase,1.0,0 -24469287,"Star Wars Empire at War Gold",play,0.6,0 -24469287,"RONIN",purchase,1.0,0 -24469287,"RONIN",play,0.6,0 -24469287,"Rochard",purchase,1.0,0 -24469287,"Rochard",play,0.6,0 -24469287,"Life Is Strange",purchase,1.0,0 -24469287,"Life Is Strange",play,0.6,0 -24469287,"Left 4 Dead 2",purchase,1.0,0 -24469287,"Left 4 Dead 2",play,0.6,0 -24469287,"Grow Home",purchase,1.0,0 -24469287,"Grow Home",play,0.6,0 -24469287,"Call of Juarez Bound in Blood",purchase,1.0,0 -24469287,"Call of Juarez Bound in Blood",play,0.5,0 -24469287,"Dear Esther",purchase,1.0,0 -24469287,"Dear Esther",play,0.5,0 -24469287,"Out There Edition",purchase,1.0,0 -24469287,"Out There Edition",play,0.5,0 -24469287,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -24469287,"The Incredible Adventures of Van Helsing",play,0.5,0 -24469287,"King's Bounty Crossworlds",purchase,1.0,0 -24469287,"King's Bounty Crossworlds",play,0.5,0 -24469287,"Unstoppable Gorg",purchase,1.0,0 -24469287,"Unstoppable Gorg",play,0.5,0 -24469287,"The Universim",purchase,1.0,0 -24469287,"The Universim",play,0.5,0 -24469287,"Clicker Heroes",purchase,1.0,0 -24469287,"Clicker Heroes",play,0.5,0 -24469287,"Valdis Story Abyssal City",purchase,1.0,0 -24469287,"Valdis Story Abyssal City",play,0.4,0 -24469287,"X-COM Apocalypse",purchase,1.0,0 -24469287,"X-COM Apocalypse",play,0.4,0 -24469287,"Metro 2033",purchase,1.0,0 -24469287,"Metro 2033",play,0.4,0 -24469287,"Greed Corp",purchase,1.0,0 -24469287,"Greed Corp",play,0.4,0 -24469287,"X3 Terran Conflict",purchase,1.0,0 -24469287,"X3 Terran Conflict",play,0.4,0 -24469287,"Thomas Was Alone",purchase,1.0,0 -24469287,"Thomas Was Alone",play,0.4,0 -24469287,"GALAK-Z",purchase,1.0,0 -24469287,"GALAK-Z",play,0.4,0 -24469287,"Ultratron",purchase,1.0,0 -24469287,"Ultratron",play,0.4,0 -24469287,"Vessel",purchase,1.0,0 -24469287,"Vessel",play,0.3,0 -24469287,"Reprisal Universe",purchase,1.0,0 -24469287,"Reprisal Universe",play,0.3,0 -24469287,"Angry Video Game Nerd Adventures",purchase,1.0,0 -24469287,"Angry Video Game Nerd Adventures",play,0.3,0 -24469287,"Interplanetary",purchase,1.0,0 -24469287,"Interplanetary",play,0.3,0 -24469287,"Eufloria HD",purchase,1.0,0 -24469287,"Eufloria HD",play,0.3,0 -24469287,"Kentucky Route Zero",purchase,1.0,0 -24469287,"Kentucky Route Zero",play,0.3,0 -24469287,"Sniper Elite Nazi Zombie Army",purchase,1.0,0 -24469287,"Sniper Elite Nazi Zombie Army",play,0.3,0 -24469287,"Capsized",purchase,1.0,0 -24469287,"Capsized",play,0.3,0 -24469287,"SpaceChem",purchase,1.0,0 -24469287,"SpaceChem",play,0.3,0 -24469287,"Super Time Force Ultra",purchase,1.0,0 -24469287,"Super Time Force Ultra",play,0.3,0 -24469287,"Mountain",purchase,1.0,0 -24469287,"Mountain",play,0.3,0 -24469287,"Droid Assault",purchase,1.0,0 -24469287,"Droid Assault",play,0.2,0 -24469287,"Reassembly",purchase,1.0,0 -24469287,"Reassembly",play,0.2,0 -24469287,"Titan Quest",purchase,1.0,0 -24469287,"Titan Quest",play,0.2,0 -24469287,"Tales from Space Mutant Blobs Attack",purchase,1.0,0 -24469287,"Tales from Space Mutant Blobs Attack",play,0.2,0 -24469287,"Halo Spartan Assault",purchase,1.0,0 -24469287,"Halo Spartan Assault",play,0.2,0 -24469287,"X-COM Terror from the Deep",purchase,1.0,0 -24469287,"X-COM Terror from the Deep",play,0.2,0 -24469287,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -24469287,"Just Cause 2 Multiplayer Mod",play,0.2,0 -24469287,"Wizorb",purchase,1.0,0 -24469287,"Wizorb",play,0.2,0 -24469287,"Gateways",purchase,1.0,0 -24469287,"Gateways",play,0.2,0 -24469287,"Retro City Rampage DX",purchase,1.0,0 -24469287,"Retro City Rampage DX",play,0.2,0 -24469287,"Dustforce",purchase,1.0,0 -24469287,"Dustforce",play,0.2,0 -24469287,"Jamestown",purchase,1.0,0 -24469287,"Jamestown",play,0.2,0 -24469287,"Proteus",purchase,1.0,0 -24469287,"Proteus",play,0.1,0 -24469287,"Titan Attacks",purchase,1.0,0 -24469287,"Titan Attacks",play,0.1,0 -24469287,"Edge of Space",purchase,1.0,0 -24469287,"Steam Marines",purchase,1.0,0 -24469287,"Star Wars Knights of the Old Republic",purchase,1.0,0 -24469287,"Toki Tori 2+",purchase,1.0,0 -24469287,"Uplink",purchase,1.0,0 -24469287,"Prison Architect",purchase,1.0,0 -24469287,"Frozen Synapse",purchase,1.0,0 -24469287,"AI War Fleet Command",purchase,1.0,0 -24469287,"Hitman Blood Money",purchase,1.0,0 -24469287,"ROCKETSROCKETSROCKETS",purchase,1.0,0 -24469287,"Company of Heroes Opposing Fronts",purchase,1.0,0 -24469287,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -24469287,"STARWHAL",purchase,1.0,0 -24469287,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -24469287,"3DMark API Overhead feature test",purchase,1.0,0 -24469287,"3DMark Cloud Gate benchmark",purchase,1.0,0 -24469287,"3DMark Fire Strike benchmark",purchase,1.0,0 -24469287,"3DMark Ice Storm benchmark",purchase,1.0,0 -24469287,"3DMark Sky Diver benchmark",purchase,1.0,0 -24469287,"Alan Wake",purchase,1.0,0 -24469287,"Alan Wake's American Nightmare",purchase,1.0,0 -24469287,"ArcaniA",purchase,1.0,0 -24469287,"Audiosurf",purchase,1.0,0 -24469287,"Batman Arkham Origins",purchase,1.0,0 -24469287,"BioShock",purchase,1.0,0 -24469287,"BioShock Infinite - Season Pass",purchase,1.0,0 -24469287,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -24469287,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -24469287,"BIT.TRIP RUNNER",purchase,1.0,0 -24469287,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -24469287,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -24469287,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -24469287,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -24469287,"Brtal Legend",purchase,1.0,0 -24469287,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -24469287,"Castlevania Lords of Shadow 2 - Revelations DLC",purchase,1.0,0 -24469287,"Company of Heroes",purchase,1.0,0 -24469287,"Company of Heroes (New Steam Version)",purchase,1.0,0 -24469287,"Company of Heroes Tales of Valor",purchase,1.0,0 -24469287,"Crysis 2 Maximum Edition",purchase,1.0,0 -24469287,"DARK SOULS II - Season Pass",purchase,1.0,0 -24469287,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -24469287,"Dead Rising 2",purchase,1.0,0 -24469287,"Dead Rising 2 Off the Record",purchase,1.0,0 -24469287,"Dead Space",purchase,1.0,0 -24469287,"Divinity Dragon Commander Beta",purchase,1.0,0 -24469287,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -24469287,"Don't Starve Together Beta",purchase,1.0,0 -24469287,"EDGE",purchase,1.0,0 -24469287,"Eufloria HD Original Soundtrack",purchase,1.0,0 -24469287,"Evolve - Behemoth",purchase,1.0,0 -24469287,"Fallen Enchantress Legendary Heroes - The Dead World",purchase,1.0,0 -24469287,"Fallen Enchantress Legendary Heroes Leader Pack",purchase,1.0,0 -24469287,"Fallen Enchantress Legendary Heroes Loot Pack",purchase,1.0,0 -24469287,"Fallen Enchantress Legendary Heroes Map Pack",purchase,1.0,0 -24469287,"Fallen Enchantress Legendary Heroes Quest Pack",purchase,1.0,0 -24469287,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -24469287,"Fallout New Vegas Dead Money",purchase,1.0,0 -24469287,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -24469287,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -24469287,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -24469287,"Gemini Rue",purchase,1.0,0 -24469287,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -24469287,"Grand Theft Auto IV",purchase,1.0,0 -24469287,"Half-Life 2",purchase,1.0,0 -24469287,"Half-Life 2 Lost Coast",purchase,1.0,0 -24469287,"Hard Reset Exile DLC",purchase,1.0,0 -24469287,"L.A. Noire",purchase,1.0,0 -24469287,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -24469287,"Medal of Honor(TM) Single Player",purchase,1.0,0 -24469287,"Medal of Honor Pre-Order",purchase,1.0,0 -24469287,"Medieval II Total War Kingdoms",purchase,1.0,0 -24469287,"Mirror's Edge",purchase,1.0,0 -24469287,"Multiwinia",purchase,1.0,0 -24469287,"Need for Speed SHIFT",purchase,1.0,0 -24469287,"Need for Speed Undercover",purchase,1.0,0 -24469287,"Oil Rush",purchase,1.0,0 -24469287,"Omerta - City of Gangsters The Bulgarian Colossus",purchase,1.0,0 -24469287,"Omerta - Damsel in Distress",purchase,1.0,0 -24469287,"Omerta - The Con Artist",purchase,1.0,0 -24469287,"Psychonauts",purchase,1.0,0 -24469287,"Psychonauts Demo",purchase,1.0,0 -24469287,"Risen",purchase,1.0,0 -24469287,"Risen 2 - Dark Waters",purchase,1.0,0 -24469287,"Rome Total War - Alexander",purchase,1.0,0 -24469287,"RUSH",purchase,1.0,0 -24469287,"Sacred 2 Gold",purchase,1.0,0 -24469287,"Sacred Citadel",purchase,1.0,0 -24469287,"Saints Row 2",purchase,1.0,0 -24469287,"Sentris",purchase,1.0,0 -24469287,"Shadowrun Dragonfall",purchase,1.0,0 -24469287,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -24469287,"Shatter",purchase,1.0,0 -24469287,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -24469287,"Sins of a Solar Empire Rebellion - Stellar Phenomena DLC",purchase,1.0,0 -24469287,"Sins of a Solar Empire Rebellion Forbidden Worlds",purchase,1.0,0 -24469287,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -24469287,"Stacking",purchase,1.0,0 -24469287,"Starbound - Unstable",purchase,1.0,0 -24469287,"StarMade",purchase,1.0,0 -24469287,"Starpoint Gemini",purchase,1.0,0 -24469287,"Supreme Commander 2 - Infinite War Battle Pack One",purchase,1.0,0 -24469287,"Sword of the Stars The Pit - Mind Games",purchase,1.0,0 -24469287,"Sword of the Stars The Pit Gold DLC",purchase,1.0,0 -24469287,"Sword of the Stars Complete Collection",purchase,1.0,0 -24469287,"Tales from the Borderlands",purchase,1.0,0 -24469287,"The Banner Saga - Mod Content",purchase,1.0,0 -24469287,"The Bureau XCOM Declassified - Code Breakers",purchase,1.0,0 -24469287,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -24469287,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -24469287,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -24469287,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -24469287,"The Incredible Adventures of Van Helsing II",purchase,1.0,0 -24469287,"The Pilgrim DLC",purchase,1.0,0 -24469287,"The Talos Principle Road To Gehenna",purchase,1.0,0 -24469287,"The Tiny Bang Story",purchase,1.0,0 -24469287,"The Walking Dead Season Two",purchase,1.0,0 -24469287,"The Witcher 3 Wild Hunt - Expansion Pass",purchase,1.0,0 -24469287,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -24469287,"Titan Quest Immortal Throne",purchase,1.0,0 -24469287,"Toki Tori",purchase,1.0,0 -24469287,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -24469287,"Torchlight",purchase,1.0,0 -24469287,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -24469287,"Viking Battle for Asgard",purchase,1.0,0 -24469287,"VVVVVV",purchase,1.0,0 -24469287,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -24469287,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -24469287,"X-COM Enforcer",purchase,1.0,0 -24469287,"X-COM Interceptor",purchase,1.0,0 -24469287,"XCOM Enemy Within",purchase,1.0,0 -157138238,"Dota 2",purchase,1.0,0 -157138238,"Dota 2",play,33.0,0 -107285166,"Saints Row The Third",purchase,1.0,0 -107285166,"Saints Row The Third",play,13.4,0 -255706163,"Dota 2",purchase,1.0,0 -255706163,"Dota 2",play,39.0,0 -249607464,"Team Fortress 2",purchase,1.0,0 -249607464,"Team Fortress 2",play,5.3,0 -249607464,"Dota 2",purchase,1.0,0 -249607464,"Dota 2",play,3.0,0 -249607464,"Heroes & Generals",purchase,1.0,0 -249607464,"Heroes & Generals",play,0.4,0 -249607464,"RaceRoom Racing Experience ",purchase,1.0,0 -301776008,"Steel Ocean",purchase,1.0,0 -301776008,"Steel Ocean",play,0.1,0 -55112407,"Football Manager 2012",purchase,1.0,0 -55112407,"Football Manager 2012",play,544.0,0 -55112407,"Football Manager 2011",purchase,1.0,0 -55112407,"Football Manager 2011",play,469.0,0 -55112407,"Football Manager 2013",purchase,1.0,0 -55112407,"Football Manager 2013",play,400.0,0 -55112407,"Football Manager 2010",purchase,1.0,0 -55112407,"Football Manager 2010",play,352.0,0 -55112407,"Football Manager 2015",purchase,1.0,0 -55112407,"Football Manager 2015",play,104.0,0 -299950927,"Team Fortress 2",purchase,1.0,0 -299950927,"Team Fortress 2",play,4.2,0 -63391345,"America's Army Proving Grounds",purchase,1.0,0 -63391345,"America's Army Proving Grounds",play,1.2,0 -63391345,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -63391345,"PlanetSide 2",purchase,1.0,0 -63391345,"Portal",purchase,1.0,0 -63391345,"RIFT",purchase,1.0,0 -294667556,"SMITE",purchase,1.0,0 -294667556,"SMITE",play,4.9,0 -294667556,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -294667556,"METAL GEAR SOLID V THE PHANTOM PAIN",play,0.5,0 -294667556,"WARMODE",purchase,1.0,0 -294667556,"WARMODE",play,0.2,0 -91405713,"Mafia II",purchase,1.0,0 -91405713,"Mafia II",play,126.0,0 -67791342,"Alien Swarm",purchase,1.0,0 -67791342,"Alien Swarm",play,21.0,0 -124221152,"Killing Floor",purchase,1.0,0 -124221152,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -182491331,"War Thunder",purchase,1.0,0 -182491331,"War Thunder",play,34.0,0 -182491331,"No More Room in Hell",purchase,1.0,0 -182491331,"No More Room in Hell",play,15.2,0 -182491331,"Warframe",purchase,1.0,0 -182491331,"Warframe",play,11.2,0 -182491331,"Serious Sam HD The Second Encounter",purchase,1.0,0 -182491331,"Serious Sam HD The Second Encounter",play,3.6,0 -182491331,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -182491331,"Tom Clancy's Ghost Recon Phantoms - NA",play,3.4,0 -231009125,"War Thunder",purchase,1.0,0 -32939936,"Counter-Strike",purchase,1.0,0 -32939936,"Counter-Strike",play,0.2,0 -32939936,"Counter-Strike Condition Zero",purchase,1.0,0 -32939936,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -32939936,"Day of Defeat",purchase,1.0,0 -32939936,"Deathmatch Classic",purchase,1.0,0 -32939936,"Ricochet",purchase,1.0,0 -165565786,"Team Fortress 2",purchase,1.0,0 -165565786,"Team Fortress 2",play,15.3,0 -165565786,"Gotham City Impostors Free To Play",purchase,1.0,0 -165565786,"Gotham City Impostors Free To Play",play,0.1,0 -165565786,"Loadout",purchase,1.0,0 -213858385,"Car Mechanic Simulator 2015",purchase,1.0,0 -213858385,"Car Mechanic Simulator 2015",play,11.9,0 -213858385,"Train Simulator",purchase,1.0,0 -213858385,"Train Simulator",play,5.0,0 -213858385,"Car Mechanic Simulator 2015 - Youngtimer",purchase,1.0,0 -188321266,"Unturned",purchase,1.0,0 -188321266,"Unturned",play,172.0,0 -188321266,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -43186470,"Counter-Strike",purchase,1.0,0 -43186470,"Counter-Strike",play,13.9,0 -43186470,"Counter-Strike Condition Zero",purchase,1.0,0 -43186470,"Counter-Strike Condition Zero",play,7.7,0 -43186470,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -43186470,"Counter-Strike Condition Zero Deleted Scenes",play,6.3,0 -43186470,"Deathmatch Classic",purchase,1.0,0 -43186470,"Deathmatch Classic",play,0.5,0 -43186470,"Day of Defeat",purchase,1.0,0 -43186470,"Ricochet",purchase,1.0,0 -115287826,"Might & Magic Duel of Champions",purchase,1.0,0 -115287826,"Might & Magic Duel of Champions",play,268.0,0 -115287826,"Counter-Strike Global Offensive",purchase,1.0,0 -115287826,"Counter-Strike Global Offensive",play,27.0,0 -115287826,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -115287826,"Navy Field 2 Conqueror of the Ocean",play,1.6,0 -115287826,"Path of Exile",purchase,1.0,0 -192976811,"Robocraft",purchase,1.0,0 -192976811,"Robocraft",play,8.1,0 -192976811,"Unturned",purchase,1.0,0 -192976811,"Unturned",play,0.5,0 -72207742,"Empire Total War",purchase,1.0,0 -72207742,"Empire Total War",play,542.0,0 -72207742,"Napoleon Total War",purchase,1.0,0 -72207742,"Napoleon Total War",play,221.0,0 -72207742,"Medieval II Total War",purchase,1.0,0 -72207742,"Medieval II Total War",play,139.0,0 -72207742,"Age of Empires III Complete Collection",purchase,1.0,0 -72207742,"Age of Empires III Complete Collection",play,103.0,0 -72207742,"R.U.S.E",purchase,1.0,0 -72207742,"R.U.S.E",play,98.0,0 -72207742,"Age of Empires II HD Edition",purchase,1.0,0 -72207742,"Age of Empires II HD Edition",play,93.0,0 -72207742,"Total War SHOGUN 2",purchase,1.0,0 -72207742,"Total War SHOGUN 2",play,78.0,0 -72207742,"Total War ROME II - Emperor Edition",purchase,1.0,0 -72207742,"Total War ROME II - Emperor Edition",play,59.0,0 -72207742,"Age of Empires II HD The Forgotten",purchase,1.0,0 -72207742,"Medieval II Total War Kingdoms",purchase,1.0,0 -72207742,"R.U.S.E.",purchase,1.0,0 -134615317,"Dota 2",purchase,1.0,0 -134615317,"Dota 2",play,89.0,0 -187462362,"Unturned",purchase,1.0,0 -187462362,"Unturned",play,2.2,0 -204748975,"Dota 2",purchase,1.0,0 -204748975,"Dota 2",play,1.8,0 -204748975,"Quake Live",purchase,1.0,0 -204748975,"RaceRoom Racing Experience ",purchase,1.0,0 -204748975,"The Expendabros",purchase,1.0,0 -119368216,"Team Fortress 2",purchase,1.0,0 -119368216,"Team Fortress 2",play,590.0,0 -119368216,"Garry's Mod",purchase,1.0,0 -119368216,"Garry's Mod",play,111.0,0 -119368216,"Guns of Icarus Online",purchase,1.0,0 -119368216,"Guns of Icarus Online",play,23.0,0 -119368216,"Portal",purchase,1.0,0 -119368216,"Portal",play,8.1,0 -119368216,"Little Inferno",purchase,1.0,0 -119368216,"Little Inferno",play,4.4,0 -119368216,"Takedown Red Sabre",purchase,1.0,0 -119368216,"Takedown Red Sabre",play,3.4,0 -119368216,"Counter-Strike Source",purchase,1.0,0 -119368216,"Counter-Strike Source",play,1.1,0 -119368216,"Flight of the Icarus",purchase,1.0,0 -119368216,"Flight of the Icarus",play,0.6,0 -119368216,"ORION Prelude",purchase,1.0,0 -243429504,"Thief",purchase,1.0,0 -243429504,"Thief",play,12.1,0 -243429504,"Sid Meier's Civilization V",purchase,1.0,0 -39622853,"The Witcher 3 Wild Hunt",purchase,1.0,0 -39622853,"The Witcher 3 Wild Hunt",play,125.0,0 -39622853,"PAYDAY 2",purchase,1.0,0 -39622853,"PAYDAY 2",play,118.0,0 -39622853,"Team Fortress 2",purchase,1.0,0 -39622853,"Team Fortress 2",play,108.0,0 -39622853,"Deus Ex Human Revolution",purchase,1.0,0 -39622853,"Deus Ex Human Revolution",play,95.0,0 -39622853,"Counter-Strike Global Offensive",purchase,1.0,0 -39622853,"Counter-Strike Global Offensive",play,65.0,0 -39622853,"Grand Theft Auto V",purchase,1.0,0 -39622853,"Grand Theft Auto V",play,64.0,0 -39622853,"Half-Life 2",purchase,1.0,0 -39622853,"Half-Life 2",play,50.0,0 -39622853,"Sid Meier's Civilization V",purchase,1.0,0 -39622853,"Sid Meier's Civilization V",play,42.0,0 -39622853,"Fallout 4",purchase,1.0,0 -39622853,"Fallout 4",play,40.0,0 -39622853,"DRAGON BALL XENOVERSE",purchase,1.0,0 -39622853,"DRAGON BALL XENOVERSE",play,34.0,0 -39622853,"Borderlands 2",purchase,1.0,0 -39622853,"Borderlands 2",play,34.0,0 -39622853,"Left 4 Dead 2",purchase,1.0,0 -39622853,"Left 4 Dead 2",play,31.0,0 -39622853,"The Elder Scrolls V Skyrim",purchase,1.0,0 -39622853,"The Elder Scrolls V Skyrim",play,30.0,0 -39622853,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -39622853,"Deus Ex Human Revolution - Director's Cut",play,30.0,0 -39622853,"XCOM Enemy Unknown",purchase,1.0,0 -39622853,"XCOM Enemy Unknown",play,29.0,0 -39622853,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -39622853,"Vampire The Masquerade - Bloodlines",play,29.0,0 -39622853,"Dying Light",purchase,1.0,0 -39622853,"Dying Light",play,28.0,0 -39622853,"Prison Architect",purchase,1.0,0 -39622853,"Prison Architect",play,27.0,0 -39622853,"Portal 2",purchase,1.0,0 -39622853,"Portal 2",play,27.0,0 -39622853,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -39622853,"STAR WARS Knights of the Old Republic II The Sith Lords",play,26.0,0 -39622853,"Grand Theft Auto IV",purchase,1.0,0 -39622853,"Grand Theft Auto IV",play,24.0,0 -39622853,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -39622853,"The Witcher 2 Assassins of Kings Enhanced Edition",play,21.0,0 -39622853,"FTL Faster Than Light",purchase,1.0,0 -39622853,"FTL Faster Than Light",play,21.0,0 -39622853,"Shadowrun Hong Kong",purchase,1.0,0 -39622853,"Shadowrun Hong Kong",play,19.8,0 -39622853,"Total War SHOGUN 2",purchase,1.0,0 -39622853,"Total War SHOGUN 2",play,19.1,0 -39622853,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -39622853,"Dragon Age Origins - Ultimate Edition",play,18.8,0 -39622853,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -39622853,"Sid Meier's Civilization Beyond Earth",play,17.9,0 -39622853,"Assassin's Creed Syndicate",purchase,1.0,0 -39622853,"Assassin's Creed Syndicate",play,16.4,0 -39622853,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -39622853,"Shadowrun Dragonfall - Director's Cut",play,16.3,0 -39622853,"Fallout New Vegas",purchase,1.0,0 -39622853,"Fallout New Vegas",play,15.7,0 -39622853,"Terraria",purchase,1.0,0 -39622853,"Terraria",play,14.0,0 -39622853,"Half-Life",purchase,1.0,0 -39622853,"Half-Life",play,13.6,0 -39622853,"Sleeping Dogs",purchase,1.0,0 -39622853,"Sleeping Dogs",play,12.7,0 -39622853,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -39622853,"Grand Theft Auto Episodes from Liberty City",play,12.5,0 -39622853,"Middle-earth Shadow of Mordor",purchase,1.0,0 -39622853,"Middle-earth Shadow of Mordor",play,12.4,0 -39622853,"Batman Arkham Origins",purchase,1.0,0 -39622853,"Batman Arkham Origins",play,12.4,0 -39622853,"Pillars of Eternity",purchase,1.0,0 -39622853,"Pillars of Eternity",play,12.3,0 -39622853,"BioShock Infinite",purchase,1.0,0 -39622853,"BioShock Infinite",play,12.2,0 -39622853,"L.A. Noire",purchase,1.0,0 -39622853,"L.A. Noire",play,12.2,0 -39622853,"SimCity 4 Deluxe",purchase,1.0,0 -39622853,"SimCity 4 Deluxe",play,12.0,0 -39622853,"Metro Last Light",purchase,1.0,0 -39622853,"Metro Last Light",play,12.0,0 -39622853,"Psychonauts",purchase,1.0,0 -39622853,"Psychonauts",play,12.0,0 -39622853,"Starbound",purchase,1.0,0 -39622853,"Starbound",play,11.9,0 -39622853,"Left 4 Dead",purchase,1.0,0 -39622853,"Left 4 Dead",play,11.7,0 -39622853,"Empire Total War",purchase,1.0,0 -39622853,"Empire Total War",play,11.7,0 -39622853,"Shadowrun Returns",purchase,1.0,0 -39622853,"Shadowrun Returns",play,11.5,0 -39622853,"Half-Life 2 Episode Two",purchase,1.0,0 -39622853,"Half-Life 2 Episode Two",play,11.1,0 -39622853,"Tales from the Borderlands",purchase,1.0,0 -39622853,"Tales from the Borderlands",play,10.9,0 -39622853,"Wolfenstein The New Order",purchase,1.0,0 -39622853,"Wolfenstein The New Order",play,10.6,0 -39622853,"South Park The Stick of Truth",purchase,1.0,0 -39622853,"South Park The Stick of Truth",play,10.1,0 -39622853,"Deus Ex Game of the Year Edition",purchase,1.0,0 -39622853,"Deus Ex Game of the Year Edition",play,9.2,0 -39622853,"Broken Age",purchase,1.0,0 -39622853,"Broken Age",play,9.1,0 -39622853,"Tropico 4",purchase,1.0,0 -39622853,"Tropico 4",play,9.0,0 -39622853,"PAYDAY The Heist",purchase,1.0,0 -39622853,"PAYDAY The Heist",play,8.6,0 -39622853,"This War of Mine",purchase,1.0,0 -39622853,"This War of Mine",play,8.4,0 -39622853,"Star Wars Knights of the Old Republic",purchase,1.0,0 -39622853,"Star Wars Knights of the Old Republic",play,8.3,0 -39622853,"Cities Skylines",purchase,1.0,0 -39622853,"Cities Skylines",play,8.3,0 -39622853,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -39622853,"METAL GEAR RISING REVENGEANCE",play,8.0,0 -39622853,"The Wolf Among Us",purchase,1.0,0 -39622853,"The Wolf Among Us",play,7.9,0 -39622853,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -39622853,"Burnout Paradise The Ultimate Box",play,7.6,0 -39622853,"Half-Life 2 Episode One",purchase,1.0,0 -39622853,"Half-Life 2 Episode One",play,7.3,0 -39622853,"Transistor",purchase,1.0,0 -39622853,"Transistor",play,6.1,0 -39622853,"Hotline Miami",purchase,1.0,0 -39622853,"Hotline Miami",play,5.6,0 -39622853,"System Shock 2",purchase,1.0,0 -39622853,"System Shock 2",play,5.4,0 -39622853,"Dead Rising 2 Off the Record",purchase,1.0,0 -39622853,"Dead Rising 2 Off the Record",play,4.9,0 -39622853,"The Walking Dead",purchase,1.0,0 -39622853,"The Walking Dead",play,4.7,0 -39622853,"Guacamelee! Gold Edition",purchase,1.0,0 -39622853,"Guacamelee! Gold Edition",play,4.7,0 -39622853,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -39622853,"Deus Ex Human Revolution - The Missing Link",play,4.4,0 -39622853,"Game Dev Tycoon",purchase,1.0,0 -39622853,"Game Dev Tycoon",play,3.9,0 -39622853,"Wolfenstein The Old Blood ",purchase,1.0,0 -39622853,"Wolfenstein The Old Blood ",play,3.2,0 -39622853,"The Legend of Korra",purchase,1.0,0 -39622853,"The Legend of Korra",play,3.2,0 -39622853,"Medieval II Total War",purchase,1.0,0 -39622853,"Medieval II Total War",play,3.1,0 -39622853,"Rogue Legacy",purchase,1.0,0 -39622853,"Rogue Legacy",play,3.0,0 -39622853,"Don't Starve",purchase,1.0,0 -39622853,"Don't Starve",play,2.7,0 -39622853,"Knights of Pen and Paper +1",purchase,1.0,0 -39622853,"Knights of Pen and Paper +1",play,2.6,0 -39622853,"LEGO The Lord of the Rings",purchase,1.0,0 -39622853,"LEGO The Lord of the Rings",play,2.5,0 -39622853,"Mirror's Edge",purchase,1.0,0 -39622853,"Mirror's Edge",play,2.4,0 -39622853,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -39622853,"Sins of a Solar Empire Rebellion",play,2.4,0 -39622853,"Trine 2",purchase,1.0,0 -39622853,"Trine 2",play,2.3,0 -39622853,"METAL SLUG 3",purchase,1.0,0 -39622853,"METAL SLUG 3",play,2.2,0 -39622853,"Dishonored (RU)",purchase,1.0,0 -39622853,"Dishonored (RU)",play,1.5,0 -39622853,"Brtal Legend",purchase,1.0,0 -39622853,"Brtal Legend",play,1.5,0 -39622853,"Just Cause 2",purchase,1.0,0 -39622853,"Just Cause 2",play,1.2,0 -39622853,"Starpoint Gemini 2",purchase,1.0,0 -39622853,"Starpoint Gemini 2",play,1.1,0 -39622853,"The Bard's Tale",purchase,1.0,0 -39622853,"The Bard's Tale",play,1.0,0 -39622853,"Defense Grid The Awakening",purchase,1.0,0 -39622853,"Defense Grid The Awakening",play,0.9,0 -39622853,"Hitman Blood Money",purchase,1.0,0 -39622853,"Hitman Blood Money",play,0.8,0 -39622853,"Metro 2033",purchase,1.0,0 -39622853,"Metro 2033",play,0.7,0 -39622853,"Alien Swarm",purchase,1.0,0 -39622853,"Alien Swarm",play,0.7,0 -39622853,"Styx Master of Shadows",purchase,1.0,0 -39622853,"Styx Master of Shadows",play,0.6,0 -39622853,"Metro 2033 Redux",purchase,1.0,0 -39622853,"Metro 2033 Redux",play,0.6,0 -39622853,"Hotline Miami 2 Wrong Number",purchase,1.0,0 -39622853,"Hotline Miami 2 Wrong Number",play,0.6,0 -39622853,"Supreme Commander 2",purchase,1.0,0 -39622853,"Supreme Commander 2",play,0.6,0 -39622853,"Half-Life 2 Lost Coast",purchase,1.0,0 -39622853,"Half-Life 2 Lost Coast",play,0.5,0 -39622853,"Papers, Please",purchase,1.0,0 -39622853,"Papers, Please",play,0.5,0 -39622853,"Torchlight II",purchase,1.0,0 -39622853,"Torchlight II",play,0.4,0 -39622853,"Magicka Wizard Wars",purchase,1.0,0 -39622853,"Magicka Wizard Wars",play,0.4,0 -39622853,"Aeon Command",purchase,1.0,0 -39622853,"Aeon Command",play,0.3,0 -39622853,"Grand Theft Auto Vice City",purchase,1.0,0 -39622853,"Grand Theft Auto Vice City",play,0.3,0 -39622853,"Hitman Absolution",purchase,1.0,0 -39622853,"Hitman Absolution",play,0.2,0 -39622853,"Grand Theft Auto San Andreas",purchase,1.0,0 -39622853,"Grand Theft Auto San Andreas",play,0.2,0 -39622853,"Rise of Nations Extended Edition",purchase,1.0,0 -39622853,"Rise of Nations Extended Edition",play,0.2,0 -39622853,"Rome Total War",purchase,1.0,0 -39622853,"Rome Total War",play,0.1,0 -39622853,"The Walking Dead Season Two",purchase,1.0,0 -39622853,"Age of Empires II HD Edition",purchase,1.0,0 -39622853,"Age of Empires II HD The Forgotten",purchase,1.0,0 -39622853,"Age of Empires III Complete Collection",purchase,1.0,0 -39622853,"Alien Breed 2 Assault",purchase,1.0,0 -39622853,"Borderlands 2 RU",purchase,1.0,0 -39622853,"Bully Scholarship Edition",purchase,1.0,0 -39622853,"Crusader Kings II",purchase,1.0,0 -39622853,"Crysis 2 Maximum Edition",purchase,1.0,0 -39622853,"Dead Space",purchase,1.0,0 -39622853,"Don't Starve Reign of Giants",purchase,1.0,0 -39622853,"Don't Starve Together Beta",purchase,1.0,0 -39622853,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -39622853,"Grand Theft Auto",purchase,1.0,0 -39622853,"Grand Theft Auto 2",purchase,1.0,0 -39622853,"Grand Theft Auto San Andreas",purchase,1.0,0 -39622853,"Grand Theft Auto Vice City",purchase,1.0,0 -39622853,"Grand Theft Auto III",purchase,1.0,0 -39622853,"Grand Theft Auto III",purchase,1.0,0 -39622853,"Half-Life 2 Deathmatch",purchase,1.0,0 -39622853,"Half-Life Blue Shift",purchase,1.0,0 -39622853,"Half-Life Opposing Force",purchase,1.0,0 -39622853,"Hitman Sniper Challenge",purchase,1.0,0 -39622853,"LEGO MARVEL Super Heroes",purchase,1.0,0 -39622853,"Mark of the Ninja",purchase,1.0,0 -39622853,"Max Payne 3",purchase,1.0,0 -39622853,"Max Payne 3 Season Pass",purchase,1.0,0 -39622853,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -39622853,"Medal of Honor(TM) Single Player",purchase,1.0,0 -39622853,"Medal of Honor Pre-Order",purchase,1.0,0 -39622853,"MEDIEVAL Total War - Gold Edition",purchase,1.0,0 -39622853,"Medieval II Total War Kingdoms",purchase,1.0,0 -39622853,"Orcs Must Die! 2",purchase,1.0,0 -39622853,"PAYDAY The Heist Game Soundtrack",purchase,1.0,0 -39622853,"PAYDAY Wolf Pack",purchase,1.0,0 -39622853,"Portal",purchase,1.0,0 -39622853,"Psychonauts Demo",purchase,1.0,0 -39622853,"Rome Total War - Alexander",purchase,1.0,0 -39622853,"Serious Sam 3 BFE",purchase,1.0,0 -39622853,"Shadowrun Dragonfall",purchase,1.0,0 -39622853,"SHOGUN Total War - Gold Edition",purchase,1.0,0 -39622853,"Sid Meier's Civilization Beyond Earth - Rising Tide",purchase,1.0,0 -39622853,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -39622853,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -39622853,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -39622853,"Starbound - Unstable",purchase,1.0,0 -39622853,"Team Fortress Classic",purchase,1.0,0 -39622853,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -39622853,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -39622853,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -39622853,"Tomb Raider",purchase,1.0,0 -39622853,"Total War ROME II - Emperor Edition",purchase,1.0,0 -39622853,"Viking Battle for Asgard",purchase,1.0,0 -39622853,"XCOM Enemy Within",purchase,1.0,0 -158899877,"Dota 2",purchase,1.0,0 -158899877,"Dota 2",play,8.2,0 -106806146,"Orcs Must Die! 2",purchase,1.0,0 -106806146,"Orcs Must Die! 2",play,12.8,0 -106806146,"Farming Simulator 2013",purchase,1.0,0 -106806146,"Farming Simulator 2013",play,8.9,0 -106806146,"Left 4 Dead 2",purchase,1.0,0 -106806146,"Left 4 Dead 2",play,8.1,0 -106806146,"LIMBO",purchase,1.0,0 -106806146,"LIMBO",play,5.1,0 -106806146,"From Dust",purchase,1.0,0 -106806146,"From Dust",play,3.9,0 -106806146,"Toki Tori",purchase,1.0,0 -106806146,"Toki Tori",play,2.2,0 -106806146,"Torchlight II",purchase,1.0,0 -106806146,"Torchlight II",play,1.7,0 -106806146,"SpellForce 2 Gold Edition",purchase,1.0,0 -106806146,"SpellForce 2 Gold Edition",play,1.5,0 -106806146,"Dota 2",purchase,1.0,0 -106806146,"Dota 2",play,1.4,0 -106806146,"Worms Reloaded",purchase,1.0,0 -106806146,"Worms Reloaded",play,1.1,0 -106806146,"Orcs Must Die!",purchase,1.0,0 -106806146,"Orcs Must Die!",play,1.0,0 -106806146,"Demigod",purchase,1.0,0 -106806146,"Demigod",play,0.9,0 -106806146,"Cook, Serve, Delicious!",purchase,1.0,0 -106806146,"Cook, Serve, Delicious!",play,0.7,0 -106806146,"Dear Esther",purchase,1.0,0 -106806146,"Dear Esther",play,0.4,0 -106806146,"Legend of Grimrock",purchase,1.0,0 -106806146,"Legend of Grimrock",play,0.4,0 -106806146,"The Binding of Isaac",purchase,1.0,0 -106806146,"The Binding of Isaac",play,0.4,0 -106806146,"Marvel Heroes 2015",purchase,1.0,0 -106806146,"Marvel Heroes 2015",play,0.4,0 -106806146,"Magicka",purchase,1.0,0 -106806146,"Magicka",play,0.3,0 -106806146,"Dead Rising 2",purchase,1.0,0 -106806146,"Dead Rising 2",play,0.3,0 -106806146,"Trine",purchase,1.0,0 -106806146,"Trine",play,0.2,0 -106806146,"The Mighty Quest For Epic Loot",purchase,1.0,0 -106806146,"The Mighty Quest For Epic Loot",play,0.2,0 -106806146,"Castle Crashers",purchase,1.0,0 -106806146,"Castle Crashers",play,0.2,0 -106806146,"Bunch Of Heroes",purchase,1.0,0 -106806146,"Terraria",purchase,1.0,0 -106806146,"Dead Rising 2 Off the Record",purchase,1.0,0 -106806146,"Trine 2",purchase,1.0,0 -106806146,"Don't Starve Together Beta",purchase,1.0,0 -106806146,"How to Survive",purchase,1.0,0 -106806146,"Magicka Final Frontier",purchase,1.0,0 -106806146,"Magicka Frozen Lake",purchase,1.0,0 -106806146,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -106806146,"Magicka Nippon",purchase,1.0,0 -106806146,"Magicka Party Robes",purchase,1.0,0 -106806146,"Magicka The Watchtower",purchase,1.0,0 -106806146,"Magicka Vietnam",purchase,1.0,0 -106806146,"Magicka Wizard's Survival Kit",purchase,1.0,0 -106806146,"Nosgoth",purchase,1.0,0 -308220794,"Football Manager 2016",purchase,1.0,0 -308220794,"Football Manager 2016",play,1.7,0 -78996406,"Mount & Blade Warband",purchase,1.0,0 -78996406,"Mount & Blade Warband",play,0.1,0 -78996406,"Darksiders",purchase,1.0,0 -171280641,"Dota 2",purchase,1.0,0 -171280641,"Dota 2",play,2.2,0 -122328547,"Insurgency Modern Infantry Combat",purchase,1.0,0 -122328547,"Insurgency Modern Infantry Combat",play,0.9,0 -244266460,"Firefall",purchase,1.0,0 -244266460,"Neverwinter",purchase,1.0,0 -164259079,"Dota 2",purchase,1.0,0 -164259079,"Dota 2",play,0.3,0 -168375605,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -168375605,"Call of Duty Ghosts - Multiplayer",play,353.0,0 -168375605,"Call of Duty Ghosts",purchase,1.0,0 -168375605,"Bloodline Champions",purchase,1.0,0 -159152280,"Rocksmith 2014",purchase,1.0,0 -159152280,"Rocksmith 2014",play,12.7,0 -159152280,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -159152280,"Unreal Tournament 3 Black Edition",play,5.4,0 -159152280,"Age of Empires II HD Edition",purchase,1.0,0 -159152280,"Age of Empires II HD Edition",play,5.0,0 -159086542,"London 2012 The Official Video Game of the Olympic Games",purchase,1.0,0 -89867101,"Counter-Strike Source",purchase,1.0,0 -89867101,"Counter-Strike Source",play,632.0,0 -89867101,"Day of Defeat Source",purchase,1.0,0 -89867101,"Half-Life 2 Deathmatch",purchase,1.0,0 -89867101,"Half-Life 2 Lost Coast",purchase,1.0,0 -299965727,"Dota 2",purchase,1.0,0 -299965727,"Dota 2",play,115.0,0 -169308850,"Dota 2",purchase,1.0,0 -169308850,"Dota 2",play,1.4,0 -201945992,"Sniper Elite 3",purchase,1.0,0 -201945992,"Sniper Elite 3",play,11.9,0 -212466515,"Counter-Strike Global Offensive",purchase,1.0,0 -212466515,"Counter-Strike Global Offensive",play,63.0,0 -212466515,"Unturned",purchase,1.0,0 -212466515,"Unturned",play,52.0,0 -212466515,"Grand Theft Auto V",purchase,1.0,0 -212466515,"Grand Theft Auto V",play,34.0,0 -212466515,"Life Is Strange",purchase,1.0,0 -212466515,"Life Is Strange",play,26.0,0 -212466515,"Rocket League",purchase,1.0,0 -212466515,"Rocket League",play,17.9,0 -212466515,"The Sims(TM) 3",purchase,1.0,0 -212466515,"The Sims(TM) 3",play,15.8,0 -212466515,"Trove",purchase,1.0,0 -212466515,"Trove",play,9.2,0 -212466515,"The Binding of Isaac Rebirth",purchase,1.0,0 -212466515,"The Binding of Isaac Rebirth",play,8.1,0 -212466515,"PAYDAY 2",purchase,1.0,0 -212466515,"PAYDAY 2",play,6.7,0 -212466515,"Five Nights at Freddy's",purchase,1.0,0 -212466515,"Five Nights at Freddy's",play,4.8,0 -212466515,"Heroes & Generals",purchase,1.0,0 -212466515,"Heroes & Generals",play,4.8,0 -212466515,"Garry's Mod",purchase,1.0,0 -212466515,"Garry's Mod",play,2.4,0 -212466515,"Gear Up",purchase,1.0,0 -212466515,"Gear Up",play,1.5,0 -212466515,"Clicker Heroes",purchase,1.0,0 -212466515,"Clicker Heroes",play,1.5,0 -212466515,"Team Fortress 2",purchase,1.0,0 -212466515,"Team Fortress 2",play,1.3,0 -212466515,"UberStrike",purchase,1.0,0 -212466515,"UberStrike",play,1.2,0 -212466515,"Batla",purchase,1.0,0 -212466515,"Batla",play,1.0,0 -212466515,"HIT",purchase,1.0,0 -212466515,"HIT",play,0.3,0 -212466515,"Robocraft",purchase,1.0,0 -212466515,"Robocraft",play,0.3,0 -212466515,"Villagers and Heroes",purchase,1.0,0 -212466515,"Five Nights at Freddy's 2",purchase,1.0,0 -212466515,"Five Nights at Freddy's 3",purchase,1.0,0 -212466515,"Five Nights at Freddy's 4",purchase,1.0,0 -212466515,"Rise of Incarnates",purchase,1.0,0 -214606702,"The Amazing Spider-Man",purchase,1.0,0 -214606702,"The Amazing Spider-Man",play,1.9,0 -85045079,"Team Fortress 2",purchase,1.0,0 -85045079,"Team Fortress 2",play,18.6,0 -155069128,"Dota 2",purchase,1.0,0 -155069128,"Dota 2",play,3010.0,0 -284490460,"UberStrike",purchase,1.0,0 -284490460,"UberStrike",play,0.2,0 -196960100,"Team Fortress 2",purchase,1.0,0 -196960100,"Team Fortress 2",play,71.0,0 -207022512,"Dota 2",purchase,1.0,0 -207022512,"Dota 2",play,12.7,0 -116617462,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -116617462,"Call of Duty Modern Warfare 2 - Multiplayer",play,97.0,0 -116617462,"Sid Meier's Civilization V",purchase,1.0,0 -116617462,"Sid Meier's Civilization V",play,36.0,0 -116617462,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -116617462,"Call of Duty Black Ops II - Multiplayer",play,31.0,0 -116617462,"F1 2010",purchase,1.0,0 -116617462,"F1 2010",play,29.0,0 -116617462,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -116617462,"RollerCoaster Tycoon 3 Platinum!",play,26.0,0 -116617462,"Galaxy on Fire 2 Full HD",purchase,1.0,0 -116617462,"Galaxy on Fire 2 Full HD",play,17.0,0 -116617462,"Medieval II Total War",purchase,1.0,0 -116617462,"Medieval II Total War",play,16.6,0 -116617462,"The Elder Scrolls V Skyrim",purchase,1.0,0 -116617462,"The Elder Scrolls V Skyrim",play,15.6,0 -116617462,"Assassin's Creed Brotherhood",purchase,1.0,0 -116617462,"Assassin's Creed Brotherhood",play,15.6,0 -116617462,"Grand Theft Auto San Andreas",purchase,1.0,0 -116617462,"Grand Theft Auto San Andreas",play,15.5,0 -116617462,"Hitman Absolution",purchase,1.0,0 -116617462,"Hitman Absolution",play,14.7,0 -116617462,"Star Wars Empire at War Gold",purchase,1.0,0 -116617462,"Star Wars Empire at War Gold",play,10.1,0 -116617462,"Star Wars The Force Unleashed II",purchase,1.0,0 -116617462,"Star Wars The Force Unleashed II",play,9.0,0 -116617462,"Rome Total War",purchase,1.0,0 -116617462,"Rome Total War",play,7.6,0 -116617462,"Call of Duty Modern Warfare 2",purchase,1.0,0 -116617462,"Call of Duty Modern Warfare 2",play,7.6,0 -116617462,"Call of Juarez Gunslinger",purchase,1.0,0 -116617462,"Call of Juarez Gunslinger",play,6.5,0 -116617462,"Star Wars - Battlefront II",purchase,1.0,0 -116617462,"Star Wars - Battlefront II",play,5.8,0 -116617462,"Total War ROME II - Emperor Edition",purchase,1.0,0 -116617462,"Total War ROME II - Emperor Edition",play,4.5,0 -116617462,"Portal 2",purchase,1.0,0 -116617462,"Portal 2",play,4.3,0 -116617462,"Aliens vs. Predator",purchase,1.0,0 -116617462,"Aliens vs. Predator",play,3.4,0 -116617462,"Just Cause 2",purchase,1.0,0 -116617462,"Just Cause 2",play,3.2,0 -116617462,"Total War SHOGUN 2",purchase,1.0,0 -116617462,"Total War SHOGUN 2",play,2.7,0 -116617462,"Grand Theft Auto Vice City",purchase,1.0,0 -116617462,"Grand Theft Auto Vice City",play,2.6,0 -116617462,"LIMBO",purchase,1.0,0 -116617462,"LIMBO",play,2.3,0 -116617462,"Oddworld Abe's Oddysee",purchase,1.0,0 -116617462,"Oddworld Abe's Oddysee",play,1.8,0 -116617462,"Plague Inc Evolved",purchase,1.0,0 -116617462,"Plague Inc Evolved",play,1.3,0 -116617462,"Napoleon Total War",purchase,1.0,0 -116617462,"Napoleon Total War",play,0.8,0 -116617462,"Medieval Engineers",purchase,1.0,0 -116617462,"Medieval Engineers",play,0.7,0 -116617462,"Call of Duty Black Ops II",purchase,1.0,0 -116617462,"Call of Duty Black Ops II",play,0.7,0 -116617462,"Patch testing for Chivalry",purchase,1.0,0 -116617462,"Patch testing for Chivalry",play,0.7,0 -116617462,"Grand Theft Auto III",purchase,1.0,0 -116617462,"Grand Theft Auto III",play,0.7,0 -116617462,"Rome Total War - Alexander",purchase,1.0,0 -116617462,"Rome Total War - Alexander",play,0.5,0 -116617462,"A Game of Thrones - Genesis",purchase,1.0,0 -116617462,"A Game of Thrones - Genesis",play,0.3,0 -116617462,"Apotheon",purchase,1.0,0 -116617462,"Apotheon",play,0.3,0 -116617462,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -116617462,"Age of Empires II HD Edition",purchase,1.0,0 -116617462,"Chivalry Medieval Warfare",purchase,1.0,0 -116617462,"Empire Total War",purchase,1.0,0 -116617462,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -116617462,"Fallout New Vegas",purchase,1.0,0 -116617462,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -116617462,"Fallout New Vegas Dead Money",purchase,1.0,0 -116617462,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -116617462,"Grand Theft Auto San Andreas",purchase,1.0,0 -116617462,"Grand Theft Auto Vice City",purchase,1.0,0 -116617462,"Grand Theft Auto III",purchase,1.0,0 -233269570,"Dota 2",purchase,1.0,0 -233269570,"Dota 2",play,0.8,0 -233269570,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -115325355,"Risen 2 - Dark Waters",purchase,1.0,0 -115325355,"Risen 2 - Dark Waters",play,6.0,0 -115325355,"Team Fortress 2",purchase,1.0,0 -115325355,"Team Fortress 2",play,0.6,0 -229612766,"Counter-Strike Nexon Zombies",purchase,1.0,0 -11403772,"Dota 2",purchase,1.0,0 -11403772,"Dota 2",play,2443.0,0 -11403772,"Team Fortress 2",purchase,1.0,0 -11403772,"Team Fortress 2",play,744.0,0 -11403772,"Might & Magic Duel of Champions",purchase,1.0,0 -11403772,"Might & Magic Duel of Champions",play,657.0,0 -11403772,"Fallout New Vegas",purchase,1.0,0 -11403772,"Fallout New Vegas",play,115.0,0 -11403772,"EVE Online",purchase,1.0,0 -11403772,"EVE Online",play,109.0,0 -11403772,"Counter-Strike Global Offensive",purchase,1.0,0 -11403772,"Counter-Strike Global Offensive",play,94.0,0 -11403772,"HAWKEN",purchase,1.0,0 -11403772,"HAWKEN",play,74.0,0 -11403772,"Magic The Gathering - Duels of the Planeswalkers",purchase,1.0,0 -11403772,"Magic The Gathering - Duels of the Planeswalkers",play,63.0,0 -11403772,"XCOM Enemy Unknown",purchase,1.0,0 -11403772,"XCOM Enemy Unknown",play,59.0,0 -11403772,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -11403772,"Fallout 3 - Game of the Year Edition",play,57.0,0 -11403772,"Nosgoth",purchase,1.0,0 -11403772,"Nosgoth",play,41.0,0 -11403772,"The Elder Scrolls V Skyrim",purchase,1.0,0 -11403772,"The Elder Scrolls V Skyrim",play,39.0,0 -11403772,"Starbound",purchase,1.0,0 -11403772,"Starbound",play,35.0,0 -11403772,"Insurgency Modern Infantry Combat",purchase,1.0,0 -11403772,"Insurgency Modern Infantry Combat",play,35.0,0 -11403772,"Natural Selection 2",purchase,1.0,0 -11403772,"Natural Selection 2",play,33.0,0 -11403772,"Rust",purchase,1.0,0 -11403772,"Rust",play,30.0,0 -11403772,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -11403772,"Deus Ex Human Revolution - Director's Cut",play,29.0,0 -11403772,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -11403772,"Unreal Tournament 3 Black Edition",play,28.0,0 -11403772,"Counter-Strike Source",purchase,1.0,0 -11403772,"Counter-Strike Source",play,28.0,0 -11403772,"Global Agenda",purchase,1.0,0 -11403772,"Global Agenda",play,27.0,0 -11403772,"Borderlands 2",purchase,1.0,0 -11403772,"Borderlands 2",play,25.0,0 -11403772,"Sid Meier's Civilization V",purchase,1.0,0 -11403772,"Sid Meier's Civilization V",play,25.0,0 -11403772,"Torchlight",purchase,1.0,0 -11403772,"Torchlight",play,24.0,0 -11403772,"Global Agenda - Beta",purchase,1.0,0 -11403772,"Global Agenda - Beta",play,23.0,0 -11403772,"Magic Duels",purchase,1.0,0 -11403772,"Magic Duels",play,22.0,0 -11403772,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -11403772,"Tom Clancy's Ghost Recon Phantoms - EU",play,22.0,0 -11403772,"BioShock",purchase,1.0,0 -11403772,"BioShock",play,21.0,0 -11403772,"RAGE",purchase,1.0,0 -11403772,"RAGE",play,19.8,0 -11403772,"Dirty Bomb",purchase,1.0,0 -11403772,"Dirty Bomb",play,19.2,0 -11403772,"Rocket League",purchase,1.0,0 -11403772,"Rocket League",play,18.5,0 -11403772,"Magic The Gathering Duels of the Planeswalkers 2012",purchase,1.0,0 -11403772,"Magic The Gathering Duels of the Planeswalkers 2012",play,18.4,0 -11403772,"Bloodline Champions",purchase,1.0,0 -11403772,"Bloodline Champions",play,18.4,0 -11403772,"Magic The Gathering - Duels of the Planeswalkers 2013",purchase,1.0,0 -11403772,"Magic The Gathering - Duels of the Planeswalkers 2013",play,17.1,0 -11403772,"Torchlight II",purchase,1.0,0 -11403772,"Torchlight II",play,16.1,0 -11403772,"Saints Row The Third",purchase,1.0,0 -11403772,"Saints Row The Third",play,16.0,0 -11403772,"Garry's Mod",purchase,1.0,0 -11403772,"Garry's Mod",play,15.8,0 -11403772,"Chivalry Medieval Warfare",purchase,1.0,0 -11403772,"Chivalry Medieval Warfare",play,15.8,0 -11403772,"FTL Faster Than Light",purchase,1.0,0 -11403772,"FTL Faster Than Light",play,14.8,0 -11403772,"Warframe",purchase,1.0,0 -11403772,"Warframe",play,14.8,0 -11403772,"Shadow Warrior",purchase,1.0,0 -11403772,"Shadow Warrior",play,14.2,0 -11403772,"Borderlands",purchase,1.0,0 -11403772,"Borderlands",play,14.1,0 -11403772,"Divinity Original Sin",purchase,1.0,0 -11403772,"Divinity Original Sin",play,13.7,0 -11403772,"Alien Swarm",purchase,1.0,0 -11403772,"Alien Swarm",play,13.6,0 -11403772,"Portal 2",purchase,1.0,0 -11403772,"Portal 2",play,13.3,0 -11403772,"Mafia II",purchase,1.0,0 -11403772,"Mafia II",play,12.1,0 -11403772,"Divinity Dragon Commander",purchase,1.0,0 -11403772,"Divinity Dragon Commander",play,11.5,0 -11403772,"Far Cry 3",purchase,1.0,0 -11403772,"Far Cry 3",play,11.4,0 -11403772,"Tomb Raider",purchase,1.0,0 -11403772,"Tomb Raider",play,11.0,0 -11403772,"Metro Last Light",purchase,1.0,0 -11403772,"Metro Last Light",play,10.8,0 -11403772,"Loadout",purchase,1.0,0 -11403772,"Loadout",play,10.7,0 -11403772,"BioShock Infinite",purchase,1.0,0 -11403772,"BioShock Infinite",play,10.4,0 -11403772,"Max Payne 3",purchase,1.0,0 -11403772,"Max Payne 3",play,10.3,0 -11403772,"Path of Exile",purchase,1.0,0 -11403772,"Path of Exile",play,10.1,0 -11403772,"Bastion",purchase,1.0,0 -11403772,"Bastion",play,10.0,0 -11403772,"Dead Island",purchase,1.0,0 -11403772,"Dead Island",play,9.9,0 -11403772,"PAYDAY 2",purchase,1.0,0 -11403772,"PAYDAY 2",play,9.9,0 -11403772,"Metro 2033",purchase,1.0,0 -11403772,"Metro 2033",play,9.8,0 -11403772,"Xenonauts",purchase,1.0,0 -11403772,"Xenonauts",play,8.9,0 -11403772,"Red Faction Armageddon",purchase,1.0,0 -11403772,"Red Faction Armageddon",play,8.8,0 -11403772,"Hard Reset",purchase,1.0,0 -11403772,"Hard Reset",play,8.7,0 -11403772,"Dungeon Defenders II",purchase,1.0,0 -11403772,"Dungeon Defenders II",play,8.6,0 -11403772,"Serious Sam 3 BFE",purchase,1.0,0 -11403772,"Serious Sam 3 BFE",play,8.5,0 -11403772,"Planetary Annihilation",purchase,1.0,0 -11403772,"Planetary Annihilation",play,8.3,0 -11403772,"Risk of Rain",purchase,1.0,0 -11403772,"Risk of Rain",play,8.0,0 -11403772,"Hotline Miami",purchase,1.0,0 -11403772,"Hotline Miami",play,7.6,0 -11403772,"Painkiller Hell & Damnation",purchase,1.0,0 -11403772,"Painkiller Hell & Damnation",play,7.3,0 -11403772,"Spec Ops The Line",purchase,1.0,0 -11403772,"Spec Ops The Line",play,7.3,0 -11403772,"Fearless Fantasy",purchase,1.0,0 -11403772,"Fearless Fantasy",play,7.3,0 -11403772,"Machinarium",purchase,1.0,0 -11403772,"Machinarium",play,7.2,0 -11403772,"Half-Life 2 Episode Two",purchase,1.0,0 -11403772,"Half-Life 2 Episode Two",play,6.8,0 -11403772,"Awesomenauts",purchase,1.0,0 -11403772,"Awesomenauts",play,6.7,0 -11403772,"Relic Hunters Zero",purchase,1.0,0 -11403772,"Relic Hunters Zero",play,6.6,0 -11403772,"Dustforce",purchase,1.0,0 -11403772,"Dustforce",play,6.5,0 -11403772,"Two Worlds II",purchase,1.0,0 -11403772,"Two Worlds II",play,6.4,0 -11403772,"Fallen Enchantress Legendary Heroes",purchase,1.0,0 -11403772,"Fallen Enchantress Legendary Heroes",play,6.4,0 -11403772,"System Shock 2",purchase,1.0,0 -11403772,"System Shock 2",play,6.3,0 -11403772,"Saints Row IV",purchase,1.0,0 -11403772,"Saints Row IV",play,6.3,0 -11403772,"Bulletstorm",purchase,1.0,0 -11403772,"Bulletstorm",play,6.3,0 -11403772,"Skullgirls",purchase,1.0,0 -11403772,"Skullgirls",play,6.1,0 -11403772,"Nux",purchase,1.0,0 -11403772,"Nux",play,6.1,0 -11403772,"Anoxemia",purchase,1.0,0 -11403772,"Anoxemia",play,6.0,0 -11403772,"Sniper Elite Nazi Zombie Army 2",purchase,1.0,0 -11403772,"Sniper Elite Nazi Zombie Army 2",play,6.0,0 -11403772,"Robot Rescue Revolution",purchase,1.0,0 -11403772,"Robot Rescue Revolution",play,5.6,0 -11403772,"Endless Space",purchase,1.0,0 -11403772,"Endless Space",play,5.6,0 -11403772,"Ionball 2 Ionstorm",purchase,1.0,0 -11403772,"Ionball 2 Ionstorm",play,5.6,0 -11403772,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -11403772,"Rising Storm/Red Orchestra 2 Multiplayer",play,5.4,0 -11403772,"F.E.A.R. 3",purchase,1.0,0 -11403772,"F.E.A.R. 3",play,5.4,0 -11403772,"The Darkness II",purchase,1.0,0 -11403772,"The Darkness II",play,5.2,0 -11403772,"Divinity II Developer's Cut",purchase,1.0,0 -11403772,"Divinity II Developer's Cut",play,5.1,0 -11403772,"Brtal Legend",purchase,1.0,0 -11403772,"Brtal Legend",play,5.1,0 -11403772,"Magicka Wizard Wars",purchase,1.0,0 -11403772,"Magicka Wizard Wars",play,5.0,0 -11403772,"Worms Revolution",purchase,1.0,0 -11403772,"Worms Revolution",play,5.0,0 -11403772,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -11403772,"Batman Arkham Asylum GOTY Edition",play,5.0,0 -11403772,"QuestRun",purchase,1.0,0 -11403772,"QuestRun",play,4.9,0 -11403772,"SUPER DISTRO",purchase,1.0,0 -11403772,"SUPER DISTRO",play,4.8,0 -11403772,"Card Hunter",purchase,1.0,0 -11403772,"Card Hunter",play,4.8,0 -11403772,"Goodbye Deponia",purchase,1.0,0 -11403772,"Goodbye Deponia",play,4.8,0 -11403772,"Skyborn",purchase,1.0,0 -11403772,"Skyborn",play,4.8,0 -11403772,"X-Blades",purchase,1.0,0 -11403772,"X-Blades",play,4.7,0 -11403772,"Mercenary Kings",purchase,1.0,0 -11403772,"Mercenary Kings",play,4.6,0 -11403772,"Medal of Honor(TM) Single Player",purchase,1.0,0 -11403772,"Medal of Honor(TM) Single Player",play,4.5,0 -11403772,"Bionic Dues",purchase,1.0,0 -11403772,"Bionic Dues",play,4.5,0 -11403772,"Pixel Puzzles Japan",purchase,1.0,0 -11403772,"Pixel Puzzles Japan",play,4.4,0 -11403772,"SpeedRunners",purchase,1.0,0 -11403772,"SpeedRunners",play,4.4,0 -11403772,"Ravaged Zombie Apocalypse",purchase,1.0,0 -11403772,"Ravaged Zombie Apocalypse",play,4.3,0 -11403772,"Lucius",purchase,1.0,0 -11403772,"Lucius",play,4.3,0 -11403772,"Ironclad Tactics",purchase,1.0,0 -11403772,"Ironclad Tactics",play,4.3,0 -11403772,"BEEP",purchase,1.0,0 -11403772,"BEEP",play,4.2,0 -11403772,"Left 4 Dead",purchase,1.0,0 -11403772,"Left 4 Dead",play,4.2,0 -11403772,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -11403772,"Warhammer 40,000 Dawn of War II",play,4.2,0 -11403772,"Napoleon Total War",purchase,1.0,0 -11403772,"Napoleon Total War",play,4.2,0 -11403772,"Magicka",purchase,1.0,0 -11403772,"Magicka",play,4.2,0 -11403772,"Primal Carnage Extinction",purchase,1.0,0 -11403772,"Primal Carnage Extinction",play,4.2,0 -11403772,"Screencheat",purchase,1.0,0 -11403772,"Screencheat",play,4.1,0 -11403772,"Not The Robots",purchase,1.0,0 -11403772,"Not The Robots",play,4.1,0 -11403772,"ORION Prelude",purchase,1.0,0 -11403772,"ORION Prelude",play,4.1,0 -11403772,"Enemy Mind",purchase,1.0,0 -11403772,"Enemy Mind",play,4.1,0 -11403772,"No More Room in Hell",purchase,1.0,0 -11403772,"No More Room in Hell",play,4.0,0 -11403772,"Sir, You Are Being Hunted",purchase,1.0,0 -11403772,"Sir, You Are Being Hunted",play,4.0,0 -11403772,"Platypus II",purchase,1.0,0 -11403772,"Platypus II",play,4.0,0 -11403772,"Freedom Planet",purchase,1.0,0 -11403772,"Freedom Planet",play,4.0,0 -11403772,"Mark of the Ninja",purchase,1.0,0 -11403772,"Mark of the Ninja",play,3.9,0 -11403772,"Syberia",purchase,1.0,0 -11403772,"Syberia",play,3.8,0 -11403772,"Half-Life 2 Episode One",purchase,1.0,0 -11403772,"Half-Life 2 Episode One",play,3.8,0 -11403772,"Smashball",purchase,1.0,0 -11403772,"Smashball",play,3.7,0 -11403772,"Giana Sisters Twisted Dreams",purchase,1.0,0 -11403772,"Giana Sisters Twisted Dreams",play,3.7,0 -11403772,"Coffin Dodgers",purchase,1.0,0 -11403772,"Coffin Dodgers",play,3.7,0 -11403772,"Overcast - Walden and the Werewolf",purchase,1.0,0 -11403772,"Overcast - Walden and the Werewolf",play,3.7,0 -11403772,"Chaos on Deponia",purchase,1.0,0 -11403772,"Chaos on Deponia",play,3.5,0 -11403772,"Outland",purchase,1.0,0 -11403772,"Outland",play,3.4,0 -11403772,"Killing Floor",purchase,1.0,0 -11403772,"Killing Floor",play,3.4,0 -11403772,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -11403772,"Beatbuddy Tale of the Guardians",play,3.4,0 -11403772,"Prison Architect",purchase,1.0,0 -11403772,"Prison Architect",play,3.4,0 -11403772,"LUFTRAUSERS",purchase,1.0,0 -11403772,"LUFTRAUSERS",play,3.3,0 -11403772,"Shadow Warrior Classic Redux",purchase,1.0,0 -11403772,"Shadow Warrior Classic Redux",play,3.3,0 -11403772,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -11403772,"Medal of Honor(TM) Multiplayer",play,3.3,0 -11403772,"Humanity Asset",purchase,1.0,0 -11403772,"Humanity Asset",play,3.2,0 -11403772,"Batman Arkham City GOTY",purchase,1.0,0 -11403772,"Batman Arkham City GOTY",play,3.2,0 -11403772,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -11403772,"Red Faction Guerrilla Steam Edition",play,3.2,0 -11403772,"Particula",purchase,1.0,0 -11403772,"Particula",play,3.1,0 -11403772,"Sanctum 2",purchase,1.0,0 -11403772,"Sanctum 2",play,3.1,0 -11403772,"The Bridge",purchase,1.0,0 -11403772,"The Bridge",play,3.1,0 -11403772,"Europa Universalis III",purchase,1.0,0 -11403772,"Europa Universalis III",play,3.0,0 -11403772,"The Incredible Adventures of Van Helsing II",purchase,1.0,0 -11403772,"The Incredible Adventures of Van Helsing II",play,3.0,0 -11403772,"Insurgency",purchase,1.0,0 -11403772,"Insurgency",play,3.0,0 -11403772,"Terraria",purchase,1.0,0 -11403772,"Terraria",play,3.0,0 -11403772,"Company of Heroes 2",purchase,1.0,0 -11403772,"Company of Heroes 2",play,2.9,0 -11403772,"Super Meat Boy",purchase,1.0,0 -11403772,"Super Meat Boy",play,2.9,0 -11403772,"GRID 2",purchase,1.0,0 -11403772,"GRID 2",play,2.9,0 -11403772,"Pixel Piracy",purchase,1.0,0 -11403772,"Pixel Piracy",play,2.9,0 -11403772,"Dust An Elysian Tail",purchase,1.0,0 -11403772,"Dust An Elysian Tail",play,2.9,0 -11403772,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -11403772,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,2.8,0 -11403772,"Coin Crypt",purchase,1.0,0 -11403772,"Coin Crypt",play,2.8,0 -11403772,"Heavy Fire Afghanistan",purchase,1.0,0 -11403772,"Heavy Fire Afghanistan",play,2.8,0 -11403772,"Zero Gear",purchase,1.0,0 -11403772,"Zero Gear",play,2.8,0 -11403772,"Kidnapped",purchase,1.0,0 -11403772,"Kidnapped",play,2.8,0 -11403772,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -11403772,"Divinity Original Sin Enhanced Edition",play,2.8,0 -11403772,"Magic 2014 ",purchase,1.0,0 -11403772,"Magic 2014 ",play,2.7,0 -11403772,"BioShock 2",purchase,1.0,0 -11403772,"BioShock 2",play,2.7,0 -11403772,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -11403772,"Sonic & All-Stars Racing Transformed",play,2.6,0 -11403772,"Orcs Must Die! 2",purchase,1.0,0 -11403772,"Orcs Must Die! 2",play,2.6,0 -11403772,"Cook, Serve, Delicious!",purchase,1.0,0 -11403772,"Cook, Serve, Delicious!",play,2.6,0 -11403772,"Warhammer 40,000 Space Marine",purchase,1.0,0 -11403772,"Warhammer 40,000 Space Marine",play,2.6,0 -11403772,"Guardians of Middle-earth",purchase,1.0,0 -11403772,"Guardians of Middle-earth",play,2.5,0 -11403772,"Risen",purchase,1.0,0 -11403772,"Risen",play,2.5,0 -11403772,"Shank 2",purchase,1.0,0 -11403772,"Shank 2",play,2.5,0 -11403772,"Strike Suit Zero",purchase,1.0,0 -11403772,"Strike Suit Zero",play,2.5,0 -11403772,"Prime World Defenders",purchase,1.0,0 -11403772,"Prime World Defenders",play,2.4,0 -11403772,"PAYDAY The Heist",purchase,1.0,0 -11403772,"PAYDAY The Heist",play,2.4,0 -11403772,"Thief",purchase,1.0,0 -11403772,"Thief",play,2.4,0 -11403772,"Electronic Super Joy",purchase,1.0,0 -11403772,"Electronic Super Joy",play,2.4,0 -11403772,"Costume Quest",purchase,1.0,0 -11403772,"Costume Quest",play,2.3,0 -11403772,"Moonrise",purchase,1.0,0 -11403772,"Moonrise",play,2.3,0 -11403772,"Tower of Guns",purchase,1.0,0 -11403772,"Tower of Guns",play,2.3,0 -11403772,"MURDERED SOUL SUSPECT",purchase,1.0,0 -11403772,"MURDERED SOUL SUSPECT",play,2.3,0 -11403772,"Two Worlds Epic Edition",purchase,1.0,0 -11403772,"Two Worlds Epic Edition",play,2.3,0 -11403772,"Guns of Icarus Online",purchase,1.0,0 -11403772,"Guns of Icarus Online",play,2.3,0 -11403772,"Defense Grid The Awakening",purchase,1.0,0 -11403772,"Defense Grid The Awakening",play,2.2,0 -11403772,"Alien Breed Impact",purchase,1.0,0 -11403772,"Alien Breed Impact",play,2.2,0 -11403772,"Guacamelee! Gold Edition",purchase,1.0,0 -11403772,"Guacamelee! Gold Edition",play,2.2,0 -11403772,"Scribblenauts Unlimited",purchase,1.0,0 -11403772,"Scribblenauts Unlimited",play,2.2,0 -11403772,"Arma 2 Operation Arrowhead",purchase,1.0,0 -11403772,"Arma 2 Operation Arrowhead",play,2.2,0 -11403772,"The Binding of Isaac",purchase,1.0,0 -11403772,"The Binding of Isaac",play,2.2,0 -11403772,"Dino D-Day",purchase,1.0,0 -11403772,"Dino D-Day",play,2.1,0 -11403772,"Blockstorm",purchase,1.0,0 -11403772,"Blockstorm",play,2.1,0 -11403772,"Firefall",purchase,1.0,0 -11403772,"Firefall",play,2.1,0 -11403772,"Chip",purchase,1.0,0 -11403772,"Chip",play,2.0,0 -11403772,"Canyon Capers",purchase,1.0,0 -11403772,"Canyon Capers",play,2.0,0 -11403772,"Talisman Digital Edition",purchase,1.0,0 -11403772,"Talisman Digital Edition",play,2.0,0 -11403772,"Gun Monkeys",purchase,1.0,0 -11403772,"Gun Monkeys",play,2.0,0 -11403772,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -11403772,"Rocketbirds Hardboiled Chicken",play,1.9,0 -11403772,"Tropico 4",purchase,1.0,0 -11403772,"Tropico 4",play,1.9,0 -11403772,"KickBeat Steam Edition",purchase,1.0,0 -11403772,"KickBeat Steam Edition",play,1.9,0 -11403772,"Anna - Extended Edition",purchase,1.0,0 -11403772,"Anna - Extended Edition",play,1.9,0 -11403772,"Surgeon Simulator",purchase,1.0,0 -11403772,"Surgeon Simulator",play,1.9,0 -11403772,"Left 4 Dead 2",purchase,1.0,0 -11403772,"Left 4 Dead 2",play,1.9,0 -11403772,"Always Sometimes Monsters",purchase,1.0,0 -11403772,"Always Sometimes Monsters",play,1.9,0 -11403772,"Afterfall InSanity Extended Edition",purchase,1.0,0 -11403772,"Afterfall InSanity Extended Edition",play,1.9,0 -11403772,"Dead Bits",purchase,1.0,0 -11403772,"Dead Bits",play,1.8,0 -11403772,"The Culling Of The Cows",purchase,1.0,0 -11403772,"The Culling Of The Cows",play,1.8,0 -11403772,"Magic 2015",purchase,1.0,0 -11403772,"Magic 2015",play,1.8,0 -11403772,"Sniper Elite V2",purchase,1.0,0 -11403772,"Sniper Elite V2",play,1.8,0 -11403772,"Talisman Prologue",purchase,1.0,0 -11403772,"Talisman Prologue",play,1.8,0 -11403772,"Battlepaths",purchase,1.0,0 -11403772,"Battlepaths",play,1.8,0 -11403772,"Tetrobot and Co.",purchase,1.0,0 -11403772,"Tetrobot and Co.",play,1.8,0 -11403772,"Titan Quest",purchase,1.0,0 -11403772,"Titan Quest",play,1.7,0 -11403772,"Monaco",purchase,1.0,0 -11403772,"Monaco",play,1.7,0 -11403772,"Dead Space",purchase,1.0,0 -11403772,"Dead Space",play,1.7,0 -11403772,"Company of Heroes",purchase,1.0,0 -11403772,"Company of Heroes",play,1.6,0 -11403772,"Hitman Absolution",purchase,1.0,0 -11403772,"Hitman Absolution",play,1.6,0 -11403772,"Stronghold HD",purchase,1.0,0 -11403772,"Stronghold HD",play,1.6,0 -11403772,"Super Killer Hornet Resurrection",purchase,1.0,0 -11403772,"Super Killer Hornet Resurrection",play,1.6,0 -11403772,"Unepic",purchase,1.0,0 -11403772,"Unepic",play,1.6,0 -11403772,"Card City Nights",purchase,1.0,0 -11403772,"Card City Nights",play,1.6,0 -11403772,"Blood of Old",purchase,1.0,0 -11403772,"Blood of Old",play,1.6,0 -11403772,"Stronghold Crusader HD",purchase,1.0,0 -11403772,"Stronghold Crusader HD",play,1.6,0 -11403772,"Papers, Please",purchase,1.0,0 -11403772,"Papers, Please",play,1.6,0 -11403772,"Sine Mora",purchase,1.0,0 -11403772,"Sine Mora",play,1.6,0 -11403772,"Joe Danger 2 The Movie",purchase,1.0,0 -11403772,"Joe Danger 2 The Movie",play,1.5,0 -11403772,"Unturned",purchase,1.0,0 -11403772,"Unturned",play,1.5,0 -11403772,"Deus Ex The Fall",purchase,1.0,0 -11403772,"Deus Ex The Fall",play,1.5,0 -11403772,"Gunpoint",purchase,1.0,0 -11403772,"Gunpoint",play,1.5,0 -11403772,"Really Big Sky",purchase,1.0,0 -11403772,"Really Big Sky",play,1.5,0 -11403772,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -11403772,"Duke Nukem 3D Megaton Edition",play,1.5,0 -11403772,"Half-Life 2",purchase,1.0,0 -11403772,"Half-Life 2",play,1.5,0 -11403772,"Uriel's Chasm",purchase,1.0,0 -11403772,"Uriel's Chasm",play,1.4,0 -11403772,"RADical ROACH Deluxe Edition",purchase,1.0,0 -11403772,"RADical ROACH Deluxe Edition",play,1.4,0 -11403772,"Shadowgrounds",purchase,1.0,0 -11403772,"Shadowgrounds",play,1.4,0 -11403772,"Mechanic Escape",purchase,1.0,0 -11403772,"Mechanic Escape",play,1.4,0 -11403772,"A Virus Named TOM",purchase,1.0,0 -11403772,"A Virus Named TOM",play,1.4,0 -11403772,"Wanderlust Rebirth",purchase,1.0,0 -11403772,"Wanderlust Rebirth",play,1.4,0 -11403772,"Deponia",purchase,1.0,0 -11403772,"Deponia",play,1.4,0 -11403772,"The Chaos Engine",purchase,1.0,0 -11403772,"The Chaos Engine",play,1.4,0 -11403772,"Reus",purchase,1.0,0 -11403772,"Reus",play,1.4,0 -11403772,"Mass Effect 2",purchase,1.0,0 -11403772,"Mass Effect 2",play,1.4,0 -11403772,"Trine 2",purchase,1.0,0 -11403772,"Trine 2",play,1.4,0 -11403772,"Eets Munchies",purchase,1.0,0 -11403772,"Eets Munchies",play,1.4,0 -11403772,"Trine",purchase,1.0,0 -11403772,"Trine",play,1.4,0 -11403772,"Blackguards",purchase,1.0,0 -11403772,"Blackguards",play,1.3,0 -11403772,"Robocraft",purchase,1.0,0 -11403772,"Robocraft",play,1.3,0 -11403772,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -11403772,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",play,1.3,0 -11403772,"The Inner World",purchase,1.0,0 -11403772,"The Inner World",play,1.3,0 -11403772,"Anomaly Warzone Earth",purchase,1.0,0 -11403772,"Anomaly Warzone Earth",play,1.3,0 -11403772,"Grimm",purchase,1.0,0 -11403772,"Grimm",play,1.3,0 -11403772,"Knights of Pen and Paper +1",purchase,1.0,0 -11403772,"Knights of Pen and Paper +1",play,1.3,0 -11403772,"Racer 8",purchase,1.0,0 -11403772,"Racer 8",play,1.3,0 -11403772,"Memories of a Vagabond",purchase,1.0,0 -11403772,"Memories of a Vagabond",play,1.3,0 -11403772,"Zeno Clash",purchase,1.0,0 -11403772,"Zeno Clash",play,1.3,0 -11403772,"Frozen Hearth",purchase,1.0,0 -11403772,"Frozen Hearth",play,1.3,0 -11403772,"Universe Sandbox",purchase,1.0,0 -11403772,"Universe Sandbox",play,1.3,0 -11403772,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -11403772,"Nosferatu The Wrath of Malachi",play,1.3,0 -11403772,"SteamWorld Dig",purchase,1.0,0 -11403772,"SteamWorld Dig",play,1.3,0 -11403772,"Titan Attacks",purchase,1.0,0 -11403772,"Titan Attacks",play,1.3,0 -11403772,"Full Mojo Rampage",purchase,1.0,0 -11403772,"Full Mojo Rampage",play,1.3,0 -11403772,"Euro Truck Simulator 2",purchase,1.0,0 -11403772,"Euro Truck Simulator 2",play,1.3,0 -11403772,"Solar Flux",purchase,1.0,0 -11403772,"Solar Flux",play,1.3,0 -11403772,"The Lord of the Rings War in the North",purchase,1.0,0 -11403772,"The Lord of the Rings War in the North",play,1.2,0 -11403772,"Cargo Commander",purchase,1.0,0 -11403772,"Cargo Commander",play,1.2,0 -11403772,"Thomas Was Alone",purchase,1.0,0 -11403772,"Thomas Was Alone",play,1.2,0 -11403772,"D.I.P.R.I.P. Warm Up",purchase,1.0,0 -11403772,"D.I.P.R.I.P. Warm Up",play,1.2,0 -11403772,"Gone Home",purchase,1.0,0 -11403772,"Gone Home",play,1.2,0 -11403772,"Antichamber",purchase,1.0,0 -11403772,"Antichamber",play,1.2,0 -11403772,"Hammerwatch",purchase,1.0,0 -11403772,"Hammerwatch",play,1.1,0 -11403772,"Blaster Shooter GunGuy!",purchase,1.0,0 -11403772,"Blaster Shooter GunGuy!",play,1.1,0 -11403772,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -11403772,"The Elder Scrolls IV Oblivion ",play,1.1,0 -11403772,"PlanetSide 2",purchase,1.0,0 -11403772,"PlanetSide 2",play,1.1,0 -11403772,"Superfrog HD",purchase,1.0,0 -11403772,"Superfrog HD",play,1.1,0 -11403772,"Leviathan Warships",purchase,1.0,0 -11403772,"Leviathan Warships",play,1.1,0 -11403772,"Crysis 2 Maximum Edition",purchase,1.0,0 -11403772,"Crysis 2 Maximum Edition",play,1.1,0 -11403772,"Toki Tori 2+",purchase,1.0,0 -11403772,"Toki Tori 2+",play,1.1,0 -11403772,"Swipecart",purchase,1.0,0 -11403772,"Swipecart",play,1.0,0 -11403772,"Dear Esther",purchase,1.0,0 -11403772,"Dear Esther",play,1.0,0 -11403772,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -11403772,"F.E.A.R. 2 Project Origin",play,1.0,0 -11403772,"The Swapper",purchase,1.0,0 -11403772,"The Swapper",play,1.0,0 -11403772,"Dragon Age Origins Character Creator",purchase,1.0,0 -11403772,"Dragon Age Origins Character Creator",play,1.0,0 -11403772,"Knights and Merchants",purchase,1.0,0 -11403772,"Knights and Merchants",play,1.0,0 -11403772,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -11403772,"Tiny and Big Grandpa's Leftovers",play,0.9,0 -11403772,"Empire Total War",purchase,1.0,0 -11403772,"Empire Total War",play,0.9,0 -11403772,"Race The Sun",purchase,1.0,0 -11403772,"Race The Sun",play,0.9,0 -11403772,"Teleglitch Die More Edition",purchase,1.0,0 -11403772,"Teleglitch Die More Edition",play,0.9,0 -11403772,"Rush Bros",purchase,1.0,0 -11403772,"Rush Bros",play,0.9,0 -11403772,"Anomaly Korea",purchase,1.0,0 -11403772,"Anomaly Korea",play,0.9,0 -11403772,"SpaceChem",purchase,1.0,0 -11403772,"SpaceChem",play,0.9,0 -11403772,"To the Moon",purchase,1.0,0 -11403772,"To the Moon",play,0.9,0 -11403772,"Super Splatters",purchase,1.0,0 -11403772,"Super Splatters",play,0.9,0 -11403772,"Shadows on the Vatican - Act I Greed",purchase,1.0,0 -11403772,"Shadows on the Vatican - Act I Greed",play,0.9,0 -11403772,"Enclave",purchase,1.0,0 -11403772,"Enclave",play,0.9,0 -11403772,"Dungeonland",purchase,1.0,0 -11403772,"Dungeonland",play,0.9,0 -11403772,"Dead Island Epidemic",purchase,1.0,0 -11403772,"Dead Island Epidemic",play,0.9,0 -11403772,"Wickland",purchase,1.0,0 -11403772,"Wickland",play,0.7,0 -11403772,"Space Pirates and Zombies",purchase,1.0,0 -11403772,"Space Pirates and Zombies",play,0.7,0 -11403772,"Audiosurf",purchase,1.0,0 -11403772,"Audiosurf",play,0.7,0 -11403772,"Wasteland Angel",purchase,1.0,0 -11403772,"Wasteland Angel",play,0.6,0 -11403772,"Painkiller Overdose",purchase,1.0,0 -11403772,"Painkiller Overdose",play,0.6,0 -11403772,"Out There Somewhere",purchase,1.0,0 -11403772,"Out There Somewhere",play,0.6,0 -11403772,"Toast Time",purchase,1.0,0 -11403772,"Toast Time",play,0.6,0 -11403772,"Anomaly 2",purchase,1.0,0 -11403772,"Anomaly 2",play,0.6,0 -11403772,"Woodle Tree Adventures",purchase,1.0,0 -11403772,"Woodle Tree Adventures",play,0.6,0 -11403772,"FEZ",purchase,1.0,0 -11403772,"FEZ",play,0.6,0 -11403772,"SolForge",purchase,1.0,0 -11403772,"SolForge",play,0.6,0 -11403772,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -11403772,"Operation Flashpoint Dragon Rising",play,0.6,0 -11403772,"Portal",purchase,1.0,0 -11403772,"Portal",play,0.6,0 -11403772,"Shank",purchase,1.0,0 -11403772,"Shank",play,0.4,0 -11403772,"ArcaniA",purchase,1.0,0 -11403772,"ArcaniA",play,0.3,0 -11403772,"Fractured Space",purchase,1.0,0 -11403772,"Fractured Space",play,0.3,0 -11403772,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -11403772,"Tropico 3 - Steam Special Edition",play,0.3,0 -11403772,"Sins of a Dark Age",purchase,1.0,0 -11403772,"Sins of a Dark Age",play,0.3,0 -11403772,"The Ball",purchase,1.0,0 -11403772,"The Ball",play,0.2,0 -11403772,"DEFCON",purchase,1.0,0 -11403772,"DEFCON",play,0.2,0 -11403772,"Warface",purchase,1.0,0 -11403772,"Warface",play,0.2,0 -11403772,"Darksiders",purchase,1.0,0 -11403772,"Darksiders",play,0.2,0 -11403772,"Formula Fusion",purchase,1.0,0 -11403772,"Formula Fusion",play,0.1,0 -11403772,"Might & Magic Clash of Heroes",purchase,1.0,0 -11403772,"Might & Magic Clash of Heroes",play,0.1,0 -11403772,"BloodRealm Battlegrounds",purchase,1.0,0 -11403772,"BloodRealm Battlegrounds",play,0.1,0 -11403772,"Quake Live",purchase,1.0,0 -11403772,"Heroes of Might & Magic III - HD Edition",purchase,1.0,0 -11403772,"8BitBoy",purchase,1.0,0 -11403772,"ACE - Arena Cyber Evolution",purchase,1.0,0 -11403772,"Aces Wild Manic Brawling Action!",purchase,1.0,0 -11403772,"Adventures of Shuggy",purchase,1.0,0 -11403772,"Age of Wonders",purchase,1.0,0 -11403772,"Age of Wonders 2",purchase,1.0,0 -11403772,"Age of Wonders Shadow Magic",purchase,1.0,0 -11403772,"AirBuccaneers",purchase,1.0,0 -11403772,"Alien Breed 2 Assault",purchase,1.0,0 -11403772,"Alien Breed 3 Descent",purchase,1.0,0 -11403772,"Alien Hallway",purchase,1.0,0 -11403772,"Alien Shooter",purchase,1.0,0 -11403772,"Alien Shooter 2 Conscription",purchase,1.0,0 -11403772,"Alien Shooter 2 Reloaded",purchase,1.0,0 -11403772,"Altitude",purchase,1.0,0 -11403772,"Amnesia The Dark Descent",purchase,1.0,0 -11403772,"Anachronox",purchase,1.0,0 -11403772,"Aquaria",purchase,1.0,0 -11403772,"Arma 2",purchase,1.0,0 -11403772,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -11403772,"Arma Cold War Assault",purchase,1.0,0 -11403772,"Avencast",purchase,1.0,0 -11403772,"Bejeweled 3",purchase,1.0,0 -11403772,"Ben There, Dan That!",purchase,1.0,0 -11403772,"Beyond Divinity",purchase,1.0,0 -11403772,"Blast Em!",purchase,1.0,0 -11403772,"Block N Load",purchase,1.0,0 -11403772,"Blood Bowl Legendary Edition",purchase,1.0,0 -11403772,"Bloop",purchase,1.0,0 -11403772,"BookWorm Deluxe",purchase,1.0,0 -11403772,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -11403772,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -11403772,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -11403772,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -11403772,"Braid",purchase,1.0,0 -11403772,"Brawlhalla",purchase,1.0,0 -11403772,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -11403772,"Capsized",purchase,1.0,0 -11403772,"Cave Story+",purchase,1.0,0 -11403772,"Chaos Domain",purchase,1.0,0 -11403772,"Cities XL Platinum",purchase,1.0,0 -11403772,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -11403772,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -11403772,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -11403772,"Commander Conquest of the Americas Gold",purchase,1.0,0 -11403772,"Commando Jack",purchase,1.0,0 -11403772,"Company of Heroes (New Steam Version)",purchase,1.0,0 -11403772,"Company of Heroes Opposing Fronts",purchase,1.0,0 -11403772,"Company of Heroes Tales of Valor",purchase,1.0,0 -11403772,"Confrontation",purchase,1.0,0 -11403772,"CortexGearAngryDroids",purchase,1.0,0 -11403772,"Counter-Strike",purchase,1.0,0 -11403772,"Crash Time II",purchase,1.0,0 -11403772,"Crazy Taxi",purchase,1.0,0 -11403772,"Cry of Fear",purchase,1.0,0 -11403772,"CT Special Forces Fire for Effect",purchase,1.0,0 -11403772,"Cult of the Wind",purchase,1.0,0 -11403772,"Daikatana",purchase,1.0,0 -11403772,"Darkest Hour Europe '44-'45",purchase,1.0,0 -11403772,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -11403772,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -11403772,"Darksiders II",purchase,1.0,0 -11403772,"Darwinia",purchase,1.0,0 -11403772,"Day of Defeat",purchase,1.0,0 -11403772,"Dead Space 2",purchase,1.0,0 -11403772,"Deathmatch Classic",purchase,1.0,0 -11403772,"Deus Ex Game of the Year Edition",purchase,1.0,0 -11403772,"Deus Ex Invisible War",purchase,1.0,0 -11403772,"Deus Ex Revision",purchase,1.0,0 -11403772,"Divine Divinity",purchase,1.0,0 -11403772,"Dragon Age Origins",purchase,1.0,0 -11403772,"Dream Of Mirror Online",purchase,1.0,0 -11403772,"Duke Nukem Forever",purchase,1.0,0 -11403772,"Dungeon Defenders",purchase,1.0,0 -11403772,"Dungeonland - All access pass",purchase,1.0,0 -11403772,"Dwarfs!?",purchase,1.0,0 -11403772,"Earth 2150 Lost Souls",purchase,1.0,0 -11403772,"Earth 2150 The Moon Project",purchase,1.0,0 -11403772,"East India Company Gold",purchase,1.0,0 -11403772,"Eets",purchase,1.0,0 -11403772,"English Country Tune",purchase,1.0,0 -11403772,"Escape Rosecliff Island",purchase,1.0,0 -11403772,"Eufloria HD",purchase,1.0,0 -11403772,"F.E.A.R.",purchase,1.0,0 -11403772,"F.E.A.R. Extraction Point",purchase,1.0,0 -11403772,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -11403772,"Fallout New Vegas Dead Money",purchase,1.0,0 -11403772,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -11403772,"Feeding Frenzy 2 Shipwreck Showdown Deluxe",purchase,1.0,0 -11403772,"Game of Thrones ",purchase,1.0,0 -11403772,"Games of Glory",purchase,1.0,0 -11403772,"Gang Beasts",purchase,1.0,0 -11403772,"Gish",purchase,1.0,0 -11403772,"Gorky 17",purchase,1.0,0 -11403772,"GRID",purchase,1.0,0 -11403772,"GTR Evolution",purchase,1.0,0 -11403772,"Guild Wars",purchase,1.0,0 -11403772,"Guild Wars Nightfall",purchase,1.0,0 -11403772,"Half-Life",purchase,1.0,0 -11403772,"Half-Life 2 Deathmatch",purchase,1.0,0 -11403772,"Half-Life 2 Lost Coast",purchase,1.0,0 -11403772,"Half-Life Blue Shift",purchase,1.0,0 -11403772,"Half-Life Opposing Force",purchase,1.0,0 -11403772,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",purchase,1.0,0 -11403772,"Hard Reset Exile DLC",purchase,1.0,0 -11403772,"HOARD",purchase,1.0,0 -11403772,"Hostile Waters Antaeus Rising",purchase,1.0,0 -11403772,"Hyper Fighters",purchase,1.0,0 -11403772,"Insanely Twisted Shadow Planet",purchase,1.0,0 -11403772,"Insecticide Part 1",purchase,1.0,0 -11403772,"Intrusion 2",purchase,1.0,0 -11403772,"Isaac the Adventurer",purchase,1.0,0 -11403772,"Jagged Alliance Online Raven Pack",purchase,1.0,0 -11403772,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -11403772,"Kane & Lynch Dead Men",purchase,1.0,0 -11403772,"Killing Floor - Toy Master",purchase,1.0,0 -11403772,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -11403772,"KnightShift",purchase,1.0,0 -11403772,"Kung Fury",purchase,1.0,0 -11403772,"Kung Fu Strike The Warrior's Rise",purchase,1.0,0 -11403772,"Lara Croft and the Guardian of Light",purchase,1.0,0 -11403772,"Legendary",purchase,1.0,0 -11403772,"LIMBO",purchase,1.0,0 -11403772,"Litil Divil",purchase,1.0,0 -11403772,"Little Inferno",purchase,1.0,0 -11403772,"Lugaru HD ",purchase,1.0,0 -11403772,"Magicka Vietnam",purchase,1.0,0 -11403772,"Mare Nostrum",purchase,1.0,0 -11403772,"Marine Sharpshooter II Jungle Warfare",purchase,1.0,0 -11403772,"Medal of Honor Pre-Order",purchase,1.0,0 -11403772,"Midnight Club II",purchase,1.0,0 -11403772,"Might & Magic Duel of Champions - Christmas Alternate Art Cards Pack",purchase,1.0,0 -11403772,"Mini Ninjas",purchase,1.0,0 -11403772,"Mirror's Edge",purchase,1.0,0 -11403772,"Mortal Kombat Kollection",purchase,1.0,0 -11403772,"Mount & Blade With Fire and Sword",purchase,1.0,0 -11403772,"Multiwinia",purchase,1.0,0 -11403772,"MX vs. ATV Reflex",purchase,1.0,0 -11403772,"Neighbours from Hell",purchase,1.0,0 -11403772,"Neighbours from Hell 2",purchase,1.0,0 -11403772,"NiGHTS into Dreams...",purchase,1.0,0 -11403772,"Nikopol Secrets of the Immortals",purchase,1.0,0 -11403772,"Oddworld Abe's Oddysee",purchase,1.0,0 -11403772,"Oil Rush",purchase,1.0,0 -11403772,"OlliOlli",purchase,1.0,0 -11403772,"Operation Flashpoint Red River",purchase,1.0,0 -11403772,"Orborun",purchase,1.0,0 -11403772,"Out of the Park Baseball 14",purchase,1.0,0 -11403772,"Overgrowth",purchase,1.0,0 -11403772,"Overlord",purchase,1.0,0 -11403772,"Overlord Raising Hell",purchase,1.0,0 -11403772,"PAC-MAN Championship Edition DX+",purchase,1.0,0 -11403772,"Painkiller Recurring Evil",purchase,1.0,0 -11403772,"Painkiller Redemption",purchase,1.0,0 -11403772,"Pajama Sam in No Need to Hide When It's Dark Outside",purchase,1.0,0 -11403772,"Papo & Yo",purchase,1.0,0 -11403772,"Patch testing for Chivalry",purchase,1.0,0 -11403772,"Peggle Deluxe",purchase,1.0,0 -11403772,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",purchase,1.0,0 -11403772,"Penumbra Overture",purchase,1.0,0 -11403772,"Pid ",purchase,1.0,0 -11403772,"Pirates of Black Cove Gold",purchase,1.0,0 -11403772,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -11403772,"Puzzle Bots",purchase,1.0,0 -11403772,"Q.U.B.E Director's Cut",purchase,1.0,0 -11403772,"Quick Slick Deadly",purchase,1.0,0 -11403772,"RACE 07",purchase,1.0,0 -11403772,"RaceRoom Racing Experience ",purchase,1.0,0 -11403772,"RAW - Realms of Ancient War",purchase,1.0,0 -11403772,"Realm of the Mad God",purchase,1.0,0 -11403772,"Realms of the Haunting",purchase,1.0,0 -11403772,"Receiver",purchase,1.0,0 -11403772,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -11403772,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -11403772,"Ricochet",purchase,1.0,0 -11403772,"Rise of Incarnates",purchase,1.0,0 -11403772,"Rise of the Argonauts",purchase,1.0,0 -11403772,"Roogoo",purchase,1.0,0 -11403772,"Royal Quest",purchase,1.0,0 -11403772,"Ruzh Delta Z",purchase,1.0,0 -11403772,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -11403772,"Sacred Citadel",purchase,1.0,0 -11403772,"Saira",purchase,1.0,0 -11403772,"Samorost 2",purchase,1.0,0 -11403772,"Sanctum",purchase,1.0,0 -11403772,"SEGA Bass Fishing",purchase,1.0,0 -11403772,"Sideway",purchase,1.0,0 -11403772,"Sid Meier's Civilization III Complete",purchase,1.0,0 -11403772,"Sid Meier's Civilization IV",purchase,1.0,0 -11403772,"Sid Meier's Civilization IV",purchase,1.0,0 -11403772,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -11403772,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -11403772,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -11403772,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -11403772,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -11403772,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -11403772,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -11403772,"Skullgirls Endless Beta",purchase,1.0,0 -11403772,"SkyDrift",purchase,1.0,0 -11403772,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -11403772,"SMITE",purchase,1.0,0 -11403772,"Sonic Adventure DX",purchase,1.0,0 -11403772,"Sonic Generations",purchase,1.0,0 -11403772,"Space Channel 5 Part 2",purchase,1.0,0 -11403772,"Space Hack",purchase,1.0,0 -11403772,"SpellForce 2 - Faith in Destiny",purchase,1.0,0 -11403772,"Starbound - Unstable",purchase,1.0,0 -11403772,"Starseed Pilgrim",purchase,1.0,0 -11403772,"Startopia",purchase,1.0,0 -11403772,"Steel & Steam Episode 1",purchase,1.0,0 -11403772,"Stronghold 2",purchase,1.0,0 -11403772,"Stronghold Crusader Extreme HD",purchase,1.0,0 -11403772,"Stronghold Legends",purchase,1.0,0 -11403772,"Super Hexagon",purchase,1.0,0 -11403772,"Supreme Commander 2",purchase,1.0,0 -11403772,"Team Fortress Classic",purchase,1.0,0 -11403772,"Tesla Effect",purchase,1.0,0 -11403772,"The 39 Steps",purchase,1.0,0 -11403772,"The Desolate Hope",purchase,1.0,0 -11403772,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -11403772,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -11403772,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -11403772,"The Expendabros",purchase,1.0,0 -11403772,"The Last Remnant",purchase,1.0,0 -11403772,"The Ship",purchase,1.0,0 -11403772,"The Ship Single Player",purchase,1.0,0 -11403772,"The Ship Tutorial",purchase,1.0,0 -11403772,"The Stanley Parable",purchase,1.0,0 -11403772,"Thief Gold",purchase,1.0,0 -11403772,"Time Gentlemen, Please!",purchase,1.0,0 -11403772,"Tom Clancy's Ghost Recon Phantoms - EU 100% XP/AC Boost - 30 days",purchase,1.0,0 -11403772,"Tom Clancy's Ghost Recon Phantoms - EU Assault Starter Pack",purchase,1.0,0 -11403772,"Tom Clancy's Ghost Recon Phantoms - EU Looks and Power (Assault)",purchase,1.0,0 -11403772,"Tom Clancy's Ghost Recon Phantoms - EU Looks and Power (Recon)",purchase,1.0,0 -11403772,"Tom Clancy's Ghost Recon Phantoms - EU Looks and Power (Support)",purchase,1.0,0 -11403772,"Tom Clancy's Ghost Recon Phantoms - EU Recon Starter Pack",purchase,1.0,0 -11403772,"Tom Clancy's Ghost Recon Phantoms - EU Substance with Style pack (Assault)",purchase,1.0,0 -11403772,"Tom Clancy's Ghost Recon Phantoms - EU Substance with Style pack (Recon)",purchase,1.0,0 -11403772,"Tom Clancy's Ghost Recon Phantoms - EU Substance with Style pack (Support)",purchase,1.0,0 -11403772,"Tom Clancy's Ghost Recon Phantoms - EU Support Starter Pack",purchase,1.0,0 -11403772,"Tom Clancy's Ghost Recon Phantoms - EU The Thrill of the Surprise",purchase,1.0,0 -11403772,"Tom Clancy's Ghost Recon Phantoms - EU WAR Madness pack (Assault)",purchase,1.0,0 -11403772,"Tom Clancy's Ghost Recon Phantoms - EU WAR Madness pack (Recon)",purchase,1.0,0 -11403772,"Tom Clancy's Ghost Recon Phantoms - EU WAR Madness pack (Support)",purchase,1.0,0 -11403772,"Uplink",purchase,1.0,0 -11403772,"Velvet Assassin",purchase,1.0,0 -11403772,"Vertical Drop Heroes HD",purchase,1.0,0 -11403772,"Vertiginous Golf",purchase,1.0,0 -11403772,"Viking Battle for Asgard",purchase,1.0,0 -11403772,"Villagers and Heroes",purchase,1.0,0 -11403772,"Villagers and Heroes Hero of Stormhold Pack",purchase,1.0,0 -11403772,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -11403772,"VVVVVV",purchase,1.0,0 -11403772,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -11403772,"War of the Roses",purchase,1.0,0 -11403772,"War of the Roses Kingmaker",purchase,1.0,0 -11403772,"War of the Roses Balance Beta",purchase,1.0,0 -11403772,"Weird Worlds Return to Infinite Space",purchase,1.0,0 -11403772,"Wind of Luck Arena",purchase,1.0,0 -11403772,"Wind of Luck Arena - Mediterranean Captain pack",purchase,1.0,0 -11403772,"World of Goo",purchase,1.0,0 -11403772,"Worms Armageddon",purchase,1.0,0 -11403772,"Worms Blast",purchase,1.0,0 -11403772,"Worms Crazy Golf",purchase,1.0,0 -11403772,"Worms Pinball",purchase,1.0,0 -11403772,"Worms Ultimate Mayhem",purchase,1.0,0 -11403772,"X-COM Apocalypse",purchase,1.0,0 -11403772,"X-COM Enforcer",purchase,1.0,0 -11403772,"X-COM Interceptor",purchase,1.0,0 -11403772,"X-COM Terror from the Deep",purchase,1.0,0 -11403772,"X-COM UFO Defense",purchase,1.0,0 -11403772,"XCOM Enemy Within",purchase,1.0,0 -11403772,"Xotic",purchase,1.0,0 -11403772,"You Have to Win the Game",purchase,1.0,0 -11403772,"Zombie Shooter",purchase,1.0,0 -11403772,"Zombie Shooter 2",purchase,1.0,0 -227863185,"Team Fortress 2",purchase,1.0,0 -227863185,"Team Fortress 2",play,19.0,0 -227863185,"Source Filmmaker",purchase,1.0,0 -227863185,"Source Filmmaker",play,2.9,0 -227863185,"Aftermath",purchase,1.0,0 -227863185,"All Is Dust",purchase,1.0,0 -227863185,"Codename CURE",purchase,1.0,0 -227863185,"Counter-Strike Nexon Zombies",purchase,1.0,0 -227863185,"CrimeCraft GangWars",purchase,1.0,0 -227863185,"Cry of Fear",purchase,1.0,0 -227863185,"Defiance",purchase,1.0,0 -227863185,"Fallen Earth",purchase,1.0,0 -227863185,"Firefall",purchase,1.0,0 -227863185,"Haunted Memories",purchase,1.0,0 -227863185,"Heroes & Generals",purchase,1.0,0 -227863185,"Killing Floor - Toy Master",purchase,1.0,0 -227863185,"March of War",purchase,1.0,0 -227863185,"Modular Combat",purchase,1.0,0 -227863185,"No More Room in Hell",purchase,1.0,0 -227863185,"Passing Pineview Forest",purchase,1.0,0 -227863185,"PlanetSide 2",purchase,1.0,0 -227863185,"Rise of Incarnates",purchase,1.0,0 -227863185,"Robocraft",purchase,1.0,0 -227863185,"Silver Creek Falls - Chapter 1",purchase,1.0,0 -227863185,"Spooky's House of Jump Scares",purchase,1.0,0 -227863185,"Survarium",purchase,1.0,0 -227863185,"sZone-Online",purchase,1.0,0 -227863185,"Tactical Intervention",purchase,1.0,0 -227863185,"The Forgotten Ones",purchase,1.0,0 -227863185,"Unturned",purchase,1.0,0 -227863185,"Vindictus",purchase,1.0,0 -227863185,"War Inc. Battlezone",purchase,1.0,0 -227863185,"WARMODE",purchase,1.0,0 -139433517,"Dota 2",purchase,1.0,0 -139433517,"Dota 2",play,0.3,0 -254814380,"Counter-Strike Global Offensive",purchase,1.0,0 -254814380,"Counter-Strike Global Offensive",play,15.8,0 -254814380,"H1Z1",purchase,1.0,0 -254814380,"H1Z1",play,8.9,0 -254814380,"The Elder Scrolls V Skyrim",purchase,1.0,0 -254814380,"The Elder Scrolls V Skyrim",play,1.4,0 -254814380,"Counter-Strike Source",purchase,1.0,0 -254814380,"Counter-Strike Source",play,0.9,0 -254814380,"Grand Theft Auto IV",purchase,1.0,0 -254814380,"Grand Theft Auto IV",play,0.3,0 -254814380,"Counter-Strike",purchase,1.0,0 -254814380,"Counter-Strike Condition Zero",purchase,1.0,0 -254814380,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -254814380,"H1Z1 Test Server",purchase,1.0,0 -254814380,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -254814380,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -254814380,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -82695118,"Team Fortress 2",purchase,1.0,0 -82695118,"Team Fortress 2",play,96.0,0 -82695118,"Sniper Ghost Warrior",purchase,1.0,0 -82695118,"Sniper Ghost Warrior",play,65.0,0 -82695118,"Alien Swarm",purchase,1.0,0 -82695118,"Alien Swarm",play,10.3,0 -195322037,"RACE 07",purchase,1.0,0 -195322037,"RACE 07",play,0.8,0 -195322037,"GTR 2 - FIA GT Racing Game",purchase,1.0,0 -195322037,"GTR 2 - FIA GT Racing Game",play,0.5,0 -195322037,"STCC The Game",purchase,1.0,0 -195322037,"RACE On",purchase,1.0,0 -195322037,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -50744279,"Crusader Kings II",purchase,1.0,0 -50744279,"Crusader Kings II",play,79.0,0 -50744279,"Total War ROME II - Emperor Edition",purchase,1.0,0 -50744279,"Total War ROME II - Emperor Edition",play,78.0,0 -50744279,"Endless Space",purchase,1.0,0 -50744279,"Endless Space",play,60.0,0 -50744279,"Sid Meier's Civilization V",purchase,1.0,0 -50744279,"Sid Meier's Civilization V",play,60.0,0 -50744279,"Age of Wonders III",purchase,1.0,0 -50744279,"Age of Wonders III",play,59.0,0 -50744279,"XCOM Enemy Unknown",purchase,1.0,0 -50744279,"XCOM Enemy Unknown",play,52.0,0 -50744279,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -50744279,"Sid Meier's Civilization Beyond Earth",play,47.0,0 -50744279,"StarDrive 2",purchase,1.0,0 -50744279,"StarDrive 2",play,44.0,0 -50744279,"Sorcerer King",purchase,1.0,0 -50744279,"Sorcerer King",play,41.0,0 -50744279,"Eador. Masters of the Broken World",purchase,1.0,0 -50744279,"Eador. Masters of the Broken World",play,36.0,0 -50744279,"Galactic Civilizations III",purchase,1.0,0 -50744279,"Galactic Civilizations III",play,35.0,0 -50744279,"Tropico 5",purchase,1.0,0 -50744279,"Tropico 5",play,26.0,0 -50744279,"MASSIVE CHALICE",purchase,1.0,0 -50744279,"MASSIVE CHALICE",play,26.0,0 -50744279,"Fallen Enchantress Legendary Heroes",purchase,1.0,0 -50744279,"Fallen Enchantress Legendary Heroes",play,22.0,0 -50744279,"Grand Ages Medieval",purchase,1.0,0 -50744279,"Grand Ages Medieval",play,21.0,0 -50744279,"Homeworld Remastered Collection",purchase,1.0,0 -50744279,"Homeworld Remastered Collection",play,16.5,0 -50744279,"King Arthur - The Role-playing Wargame",purchase,1.0,0 -50744279,"King Arthur - The Role-playing Wargame",play,15.4,0 -50744279,"March of War",purchase,1.0,0 -50744279,"March of War",play,14.5,0 -50744279,"NOBUNAGA'S AMBITION Sphere of Influence",purchase,1.0,0 -50744279,"NOBUNAGA'S AMBITION Sphere of Influence",play,14.3,0 -50744279,"Cities Skylines",purchase,1.0,0 -50744279,"Cities Skylines",play,13.1,0 -50744279,"Empire Total War",purchase,1.0,0 -50744279,"Empire Total War",play,12.1,0 -50744279,"Endless Legend",purchase,1.0,0 -50744279,"Endless Legend",play,10.9,0 -50744279,"Star Trek Online",purchase,1.0,0 -50744279,"Star Trek Online",play,10.2,0 -50744279,"Star Ruler 2",purchase,1.0,0 -50744279,"Star Ruler 2",play,9.4,0 -50744279,"Age of Empires Online",purchase,1.0,0 -50744279,"Age of Empires Online",play,8.5,0 -50744279,"Total War SHOGUN 2",purchase,1.0,0 -50744279,"Total War SHOGUN 2",play,8.0,0 -50744279,"Galaxy on Fire 2 Full HD",purchase,1.0,0 -50744279,"Galaxy on Fire 2 Full HD",play,7.8,0 -50744279,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -50744279,"Sins of a Solar Empire Rebellion",play,7.4,0 -50744279,"Horizon",purchase,1.0,0 -50744279,"Horizon",play,7.4,0 -50744279,"StarDrive",purchase,1.0,0 -50744279,"StarDrive",play,6.8,0 -50744279,"Hegemony Rome The Rise of Caesar",purchase,1.0,0 -50744279,"Hegemony Rome The Rise of Caesar",play,6.0,0 -50744279,"FX Football - The Manager for Every Football Fan",purchase,1.0,0 -50744279,"FX Football - The Manager for Every Football Fan",play,5.9,0 -50744279,"Anno 2070",purchase,1.0,0 -50744279,"Anno 2070",play,5.8,0 -50744279,"Rebel Galaxy",purchase,1.0,0 -50744279,"Rebel Galaxy",play,4.7,0 -50744279,"Folk Tale",purchase,1.0,0 -50744279,"Folk Tale",play,4.5,0 -50744279,"Sid Meier's Starships",purchase,1.0,0 -50744279,"Sid Meier's Starships",play,4.4,0 -50744279,"Wargame AirLand Battle",purchase,1.0,0 -50744279,"Wargame AirLand Battle",play,4.1,0 -50744279,"Cities in Motion 2",purchase,1.0,0 -50744279,"Cities in Motion 2",play,3.8,0 -50744279,"Gemini Wars",purchase,1.0,0 -50744279,"Gemini Wars",play,3.7,0 -50744279,"Cosmonautica",purchase,1.0,0 -50744279,"Cosmonautica",play,3.6,0 -50744279,"Hegemony Philip of Macedon",purchase,1.0,0 -50744279,"Hegemony Philip of Macedon",play,3.1,0 -50744279,"Lords of the Black Sun",purchase,1.0,0 -50744279,"Lords of the Black Sun",play,3.0,0 -50744279,"Stronghold 3",purchase,1.0,0 -50744279,"Stronghold 3",play,2.8,0 -50744279,"Starpoint Gemini 2",purchase,1.0,0 -50744279,"Starpoint Gemini 2",play,2.6,0 -50744279,"Act of Aggression",purchase,1.0,0 -50744279,"Act of Aggression",play,2.3,0 -50744279,"Godus",purchase,1.0,0 -50744279,"Godus",play,1.8,0 -50744279,"Sword of the Stars II Enhanced Edition",purchase,1.0,0 -50744279,"Sword of the Stars II Enhanced Edition",play,1.3,0 -50744279,"FaceRig",purchase,1.0,0 -50744279,"FaceRig",play,1.2,0 -50744279,"Ultimate General Gettysburg",purchase,1.0,0 -50744279,"Ultimate General Gettysburg",play,1.0,0 -50744279,"Distant Star Revenant Fleet",purchase,1.0,0 -50744279,"Distant Star Revenant Fleet",play,1.0,0 -50744279,"R.U.S.E",purchase,1.0,0 -50744279,"R.U.S.E",play,0.9,0 -50744279,"Cities XL - Limited Edition",purchase,1.0,0 -50744279,"Cities XL - Limited Edition",play,0.9,0 -50744279,"Age of Empires III Complete Collection",purchase,1.0,0 -50744279,"Age of Empires III Complete Collection",play,0.9,0 -50744279,"Hegemony Gold Wars of Ancient Greece",purchase,1.0,0 -50744279,"Hegemony Gold Wars of Ancient Greece",play,0.7,0 -50744279,"The Elder Scrolls V Skyrim",purchase,1.0,0 -50744279,"The Elder Scrolls V Skyrim",play,0.7,0 -50744279,"A Game of Thrones - Genesis",purchase,1.0,0 -50744279,"A Game of Thrones - Genesis",play,0.7,0 -50744279,"Villagers and Heroes",purchase,1.0,0 -50744279,"Villagers and Heroes",play,0.7,0 -50744279,"Armada 2526",purchase,1.0,0 -50744279,"Armada 2526",play,0.6,0 -50744279,"Napoleon Total War",purchase,1.0,0 -50744279,"Napoleon Total War",play,0.5,0 -50744279,"The Political Machine",purchase,1.0,0 -50744279,"The Political Machine",play,0.5,0 -50744279,"Ryse Son of Rome",purchase,1.0,0 -50744279,"Ryse Son of Rome",play,0.5,0 -50744279,"Port Royale 3",purchase,1.0,0 -50744279,"Port Royale 3",play,0.4,0 -50744279,"Divinity Dragon Commander",purchase,1.0,0 -50744279,"Divinity Dragon Commander",play,0.4,0 -50744279,"Planetary Annihilation",purchase,1.0,0 -50744279,"Planetary Annihilation",play,0.4,0 -50744279,"The Last Federation",purchase,1.0,0 -50744279,"The Last Federation",play,0.3,0 -50744279,"Elite Dangerous",purchase,1.0,0 -50744279,"Elite Dangerous",play,0.3,0 -50744279,"Train Fever",purchase,1.0,0 -50744279,"Train Fever",play,0.3,0 -50744279,"Warlock - Master of the Arcane",purchase,1.0,0 -50744279,"Warlock - Master of the Arcane",play,0.2,0 -50744279,"Kingdom Wars",purchase,1.0,0 -50744279,"Kingdom Wars",play,0.2,0 -50744279,"Pride of Nations",purchase,1.0,0 -50744279,"Age of Empires II HD Edition",purchase,1.0,0 -50744279,"Age of Empires II HD The Forgotten",purchase,1.0,0 -50744279,"Cosmonautica - Soundtrack",purchase,1.0,0 -50744279,"Divinity Dragon Commander Beta",purchase,1.0,0 -50744279,"FX Football 3D Match",purchase,1.0,0 -50744279,"Galactic Civilizations III - Map Pack DLC",purchase,1.0,0 -50744279,"Galactic Civilizations III - Mega Events DLC",purchase,1.0,0 -50744279,"Galactic Civilizations III - Precursor Worlds DLC",purchase,1.0,0 -50744279,"Galactic Civilizations III - Revenge of the Snathi DLC",purchase,1.0,0 -50744279,"Galactic Civilizations III - Ship Designer's Toolbox DLC",purchase,1.0,0 -50744279,"Galactic Civilizations III Soundtrack",purchase,1.0,0 -50744279,"Path of Exile",purchase,1.0,0 -50744279,"R.U.S.E.",purchase,1.0,0 -50744279,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -50744279,"Starpoint Gemini",purchase,1.0,0 -50744279,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -50744279,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -50744279,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -50744279,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -50744279,"XCOM Enemy Within",purchase,1.0,0 -186673066,"7 Days to Die",purchase,1.0,0 -186673066,"7 Days to Die",play,619.0,0 -186673066,"The Forest",purchase,1.0,0 -186673066,"The Forest",play,166.0,0 -186673066,"Empyrion - Galactic Survival",purchase,1.0,0 -186673066,"Empyrion - Galactic Survival",play,86.0,0 -186673066,"Stranded Deep",purchase,1.0,0 -186673066,"Stranded Deep",play,62.0,0 -186673066,"ARK Survival Evolved",purchase,1.0,0 -186673066,"ARK Survival Evolved",play,50.0,0 -186673066,"Banished",purchase,1.0,0 -186673066,"Banished",play,40.0,0 -186673066,"Endless Space",purchase,1.0,0 -186673066,"Endless Space",play,26.0,0 -186673066,"Saints Row IV",purchase,1.0,0 -186673066,"Saints Row IV",play,15.1,0 -186673066,"Need for Speed Hot Pursuit",purchase,1.0,0 -186673066,"Need for Speed Hot Pursuit",play,8.3,0 -186673066,"Project CARS",purchase,1.0,0 -186673066,"Project CARS",play,8.2,0 -186673066,"Earth 2160",purchase,1.0,0 -186673066,"Earth 2160",play,7.9,0 -186673066,"Tomb Raider",purchase,1.0,0 -186673066,"Tomb Raider",play,7.6,0 -186673066,"Industry Giant 2",purchase,1.0,0 -186673066,"Industry Giant 2",play,4.7,0 -186673066,"Grand Theft Auto V",purchase,1.0,0 -186673066,"Grand Theft Auto V",play,2.5,0 -186673066,"Shift 2 Unleashed",purchase,1.0,0 -186673066,"Shift 2 Unleashed",play,1.2,0 -186673066,"Railroad Tycoon 2 Platinum",purchase,1.0,0 -186673066,"Railroad Tycoon 2 Platinum",play,0.8,0 -186673066,"Need for Speed SHIFT",purchase,1.0,0 -186673066,"Need for Speed SHIFT",play,0.6,0 -186673066,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -186673066,"Burnout Paradise The Ultimate Box",play,0.4,0 -186673066,"Need for Speed Undercover",purchase,1.0,0 -186673066,"Need for Speed Undercover",play,0.2,0 -186673066,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -186673066,"Tomb Raider (VI) The Angel of Darkness",play,0.2,0 -186673066,"Tomb Raider I",purchase,1.0,0 -186673066,"Tomb Raider I",play,0.1,0 -186673066,"Railroad Tycoon 3",purchase,1.0,0 -186673066,"Sid Meier's Railroads!",purchase,1.0,0 -186673066,"Earth 2140 HD",purchase,1.0,0 -186673066,"Earth 2150 Trilogy",purchase,1.0,0 -186673066,"Earth 2150 Lost Souls",purchase,1.0,0 -186673066,"Earth 2150 The Moon Project",purchase,1.0,0 -186673066,"Lara Croft and the Guardian of Light",purchase,1.0,0 -186673066,"Project CARS - Audi Ruapuna Speedway Expansion Pack",purchase,1.0,0 -186673066,"Project CARS - Modified Car Pack ",purchase,1.0,0 -186673066,"Project CARS - Old Vs New Car Pack",purchase,1.0,0 -186673066,"Saints Row 2",purchase,1.0,0 -186673066,"Saints Row The Third",purchase,1.0,0 -186673066,"Tomb Raider Anniversary",purchase,1.0,0 -186673066,"Tomb Raider Chronicles",purchase,1.0,0 -186673066,"Tomb Raider Legend",purchase,1.0,0 -186673066,"Tomb Raider The Last Revelation",purchase,1.0,0 -186673066,"Tomb Raider Underworld",purchase,1.0,0 -186673066,"Tomb Raider II",purchase,1.0,0 -186673066,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -178274653,"Heroes & Generals",purchase,1.0,0 -294130030,"Counter-Strike Nexon Zombies",purchase,1.0,0 -240312742,"Dota 2",purchase,1.0,0 -240312742,"Dota 2",play,17.1,0 -244855763,"Marvel Heroes 2015",purchase,1.0,0 -244855763,"Marvel Heroes 2015",play,0.6,0 -66078954,"Tropico 3 Absolute Power",purchase,1.0,0 -66078954,"Tropico 3 Absolute Power",play,29.0,0 -66078954,"Fable Anniversary",purchase,1.0,0 -66078954,"Fable Anniversary",play,26.0,0 -66078954,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -66078954,"Dragon Age Origins - Ultimate Edition",play,16.3,0 -66078954,"Magicka",purchase,1.0,0 -66078954,"Magicka",play,8.6,0 -66078954,"Portal",purchase,1.0,0 -66078954,"Portal",play,5.7,0 -66078954,"Sid Meier's Civilization V",purchase,1.0,0 -66078954,"Sid Meier's Civilization V",play,4.7,0 -66078954,"Banished",purchase,1.0,0 -66078954,"Banished",play,3.3,0 -66078954,"The Guild II - Pirates of the European Seas",purchase,1.0,0 -66078954,"The Guild II - Pirates of the European Seas",play,2.7,0 -66078954,"Peggle Deluxe",purchase,1.0,0 -66078954,"Peggle Deluxe",play,2.4,0 -66078954,"Grim Fandango Remastered",purchase,1.0,0 -66078954,"Grim Fandango Remastered",play,2.4,0 -66078954,"Bastion",purchase,1.0,0 -66078954,"Bastion",play,1.5,0 -66078954,"Half-Life 2",purchase,1.0,0 -66078954,"Half-Life 2",play,0.9,0 -66078954,"Left 4 Dead 2",purchase,1.0,0 -66078954,"Left 4 Dead 2",play,0.8,0 -66078954,"Castle Crashers",purchase,1.0,0 -66078954,"Deponia The Complete Journey",purchase,1.0,0 -66078954,"Half-Life 2 Episode One",purchase,1.0,0 -66078954,"Half-Life 2 Episode Two",purchase,1.0,0 -66078954,"Half-Life 2 Lost Coast",purchase,1.0,0 -66078954,"Left 4 Dead",purchase,1.0,0 -66078954,"Ori and the Blind Forest",purchase,1.0,0 -66078954,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -184807923,"Depression Quest",purchase,1.0,0 -184807923,"Dirty Bomb",purchase,1.0,0 -184807923,"Free to Play",purchase,1.0,0 -184807923,"Happy Wars",purchase,1.0,0 -184807923,"Magicka Wizard Wars",purchase,1.0,0 -184807923,"Nosgoth",purchase,1.0,0 -184807923,"Unturned",purchase,1.0,0 -184807923,"Warframe",purchase,1.0,0 -184807923,"War Thunder",purchase,1.0,0 -184807923,"Zombies Monsters Robots",purchase,1.0,0 -188491294,"Dota 2",purchase,1.0,0 -188491294,"Dota 2",play,0.7,0 -225289523,"The Talos Principle",purchase,1.0,0 -225289523,"The Talos Principle",play,85.0,0 -225289523,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -225289523,"Microsoft Flight Simulator X Steam Edition",play,1.8,0 -159867966,"Left 4 Dead 2",purchase,1.0,0 -130440628,"Dota 2",purchase,1.0,0 -130440628,"Dota 2",play,4.6,0 -82046939,"Terraria",purchase,1.0,0 -82046939,"Terraria",play,156.0,0 -82046939,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -82046939,"Call of Duty Black Ops II - Multiplayer",play,107.0,0 -82046939,"Clicker Heroes",purchase,1.0,0 -82046939,"Clicker Heroes",play,68.0,0 -82046939,"Garry's Mod",purchase,1.0,0 -82046939,"Garry's Mod",play,64.0,0 -82046939,"Portal 2",purchase,1.0,0 -82046939,"Portal 2",play,58.0,0 -82046939,"Left 4 Dead 2",purchase,1.0,0 -82046939,"Left 4 Dead 2",play,51.0,0 -82046939,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -82046939,"Grand Theft Auto Episodes from Liberty City",play,41.0,0 -82046939,"DayZ",purchase,1.0,0 -82046939,"DayZ",play,30.0,0 -82046939,"APB Reloaded",purchase,1.0,0 -82046939,"APB Reloaded",play,22.0,0 -82046939,"Team Fortress 2",purchase,1.0,0 -82046939,"Team Fortress 2",play,22.0,0 -82046939,"Alien Swarm",purchase,1.0,0 -82046939,"Alien Swarm",play,21.0,0 -82046939,"Cities Skylines",purchase,1.0,0 -82046939,"Cities Skylines",play,13.6,0 -82046939,"Magicka",purchase,1.0,0 -82046939,"Magicka",play,11.9,0 -82046939,"H1Z1",purchase,1.0,0 -82046939,"H1Z1",play,11.8,0 -82046939,"Deus Ex Human Revolution",purchase,1.0,0 -82046939,"Deus Ex Human Revolution",play,4.8,0 -82046939,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -82046939,"Burnout Paradise The Ultimate Box",play,4.2,0 -82046939,"Assassin's Creed",purchase,1.0,0 -82046939,"Assassin's Creed",play,4.0,0 -82046939,"The Forest",purchase,1.0,0 -82046939,"The Forest",play,3.7,0 -82046939,"Half-Life 2",purchase,1.0,0 -82046939,"Half-Life 2",play,3.7,0 -82046939,"Need for Speed Hot Pursuit",purchase,1.0,0 -82046939,"Need for Speed Hot Pursuit",play,3.6,0 -82046939,"Dead Space",purchase,1.0,0 -82046939,"Dead Space",play,3.3,0 -82046939,"Layers of Fear",purchase,1.0,0 -82046939,"Layers of Fear",play,3.0,0 -82046939,"Portal",purchase,1.0,0 -82046939,"Portal",play,2.8,0 -82046939,"The Elder Scrolls V Skyrim",purchase,1.0,0 -82046939,"The Elder Scrolls V Skyrim",play,2.8,0 -82046939,"Dream",purchase,1.0,0 -82046939,"Dream",play,2.5,0 -82046939,"Goat Simulator",purchase,1.0,0 -82046939,"Goat Simulator",play,2.5,0 -82046939,"Grand Theft Auto IV",purchase,1.0,0 -82046939,"Grand Theft Auto IV",play,2.2,0 -82046939,"Call of Duty Black Ops II",purchase,1.0,0 -82046939,"Call of Duty Black Ops II",play,2.1,0 -82046939,"Scribblenauts Unlimited",purchase,1.0,0 -82046939,"Scribblenauts Unlimited",play,2.1,0 -82046939,"Dungeon Defenders II",purchase,1.0,0 -82046939,"Dungeon Defenders II",play,2.0,0 -82046939,"Cities XL 2012",purchase,1.0,0 -82046939,"Cities XL 2012",play,1.7,0 -82046939,"Left 4 Dead",purchase,1.0,0 -82046939,"Left 4 Dead",play,1.6,0 -82046939,"The Evil Within",purchase,1.0,0 -82046939,"The Evil Within",play,1.5,0 -82046939,"Surgeon Simulator",purchase,1.0,0 -82046939,"Surgeon Simulator",play,1.5,0 -82046939,"Miasmata",purchase,1.0,0 -82046939,"Miasmata",play,1.5,0 -82046939,"BioShock 2",purchase,1.0,0 -82046939,"BioShock 2",play,1.4,0 -82046939,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -82046939,"Call of Duty Black Ops II - Zombies",play,1.4,0 -82046939,"BioShock Infinite",purchase,1.0,0 -82046939,"BioShock Infinite",play,1.3,0 -82046939,"Mirror's Edge",purchase,1.0,0 -82046939,"Mirror's Edge",play,1.0,0 -82046939,"Audiosurf",purchase,1.0,0 -82046939,"Audiosurf",play,1.0,0 -82046939,"Counter-Strike Global Offensive",purchase,1.0,0 -82046939,"Counter-Strike Global Offensive",play,1.0,0 -82046939,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -82046939,"Command and Conquer Red Alert 3 - Uprising",play,1.0,0 -82046939,"Antichamber",purchase,1.0,0 -82046939,"Antichamber",play,0.9,0 -82046939,"Crysis 2 Maximum Edition",purchase,1.0,0 -82046939,"Crysis 2 Maximum Edition",play,0.9,0 -82046939,"The Stanley Parable",purchase,1.0,0 -82046939,"The Stanley Parable",play,0.7,0 -82046939,"How to Survive",purchase,1.0,0 -82046939,"How to Survive",play,0.6,0 -82046939,"Medal of Honor(TM) Single Player",purchase,1.0,0 -82046939,"Medal of Honor(TM) Single Player",play,0.5,0 -82046939,"FINAL FANTASY VII",purchase,1.0,0 -82046939,"FINAL FANTASY VII",play,0.5,0 -82046939,"The Way of Life Free Edition",purchase,1.0,0 -82046939,"The Way of Life Free Edition",play,0.4,0 -82046939,"Half-Life",purchase,1.0,0 -82046939,"Half-Life",play,0.4,0 -82046939,"POSTAL 2",purchase,1.0,0 -82046939,"POSTAL 2",play,0.4,0 -82046939,"Crazy Machines 2",purchase,1.0,0 -82046939,"Crazy Machines 2",play,0.3,0 -82046939,"Let the Cat In",purchase,1.0,0 -82046939,"Let the Cat In",play,0.3,0 -82046939,"Defy Gravity",purchase,1.0,0 -82046939,"Defy Gravity",play,0.2,0 -82046939,"Unturned",purchase,1.0,0 -82046939,"Unturned",play,0.2,0 -82046939,"Outlast",purchase,1.0,0 -82046939,"Outlast",play,0.2,0 -82046939,"Far Cry 3",purchase,1.0,0 -82046939,"Far Cry 3",play,0.2,0 -82046939,"Magicka 2",purchase,1.0,0 -82046939,"Magicka 2",play,0.2,0 -82046939,"Metro 2033",purchase,1.0,0 -82046939,"Metro 2033",play,0.2,0 -82046939,"Counter-Strike",purchase,1.0,0 -82046939,"Counter-Strike",play,0.1,0 -82046939,"the static speaks my name",purchase,1.0,0 -82046939,"the static speaks my name",play,0.1,0 -82046939,"Assassin's Creed II",purchase,1.0,0 -82046939,"Assassin's Creed II",play,0.1,0 -82046939,"Far Cry",purchase,1.0,0 -82046939,"Half-Life 2 Episode Two",purchase,1.0,0 -82046939,"Far Cry 2",purchase,1.0,0 -82046939,"Clown House (Palyao Evi)",purchase,1.0,0 -82046939,"Counter-Strike Source",purchase,1.0,0 -82046939,"theHunter",purchase,1.0,0 -82046939,"H1Z1 Test Server",purchase,1.0,0 -82046939,"Starion Tactics",purchase,1.0,0 -82046939,"HAWKEN",purchase,1.0,0 -82046939,"Amnesia The Dark Descent",purchase,1.0,0 -82046939,"Counter-Strike Condition Zero",purchase,1.0,0 -82046939,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -82046939,"Crazy Machines 2 - Jewel Digger DLC",purchase,1.0,0 -82046939,"Crazy Machines 2 Fluid Add-On",purchase,1.0,0 -82046939,"Edna & Harvey Harvey's New Eyes",purchase,1.0,0 -82046939,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -82046939,"Far Cry 3 Blood Dragon",purchase,1.0,0 -82046939,"Half-Life 2 Lost Coast",purchase,1.0,0 -82046939,"LIMBO",purchase,1.0,0 -82046939,"Magicka Wizard Wars",purchase,1.0,0 -82046939,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -82046939,"Medal of Honor Pre-Order",purchase,1.0,0 -82046939,"Outlast Whistleblower DLC",purchase,1.0,0 -82046939,"Super Meat Boy",purchase,1.0,0 -82046939,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -82046939,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -82046939,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -82046939,"Viridi",purchase,1.0,0 -82046939,"War Thunder",purchase,1.0,0 -112459307,"Dota 2",purchase,1.0,0 -112459307,"Dota 2",play,1075.0,0 -112459307,"TERA",purchase,1.0,0 -112459307,"TERA",play,3.2,0 -258774423,"Team Fortress 2",purchase,1.0,0 -258774423,"Team Fortress 2",play,0.3,0 -111754806,"Counter-Strike Global Offensive",purchase,1.0,0 -111754806,"Counter-Strike Global Offensive",play,867.0,0 -111754806,"ARK Survival Evolved",purchase,1.0,0 -111754806,"ARK Survival Evolved",play,230.0,0 -111754806,"Rocket League",purchase,1.0,0 -111754806,"Rocket League",play,203.0,0 -111754806,"Assassin's Creed IV Black Flag",purchase,1.0,0 -111754806,"Assassin's Creed IV Black Flag",play,184.0,0 -111754806,"Grand Theft Auto V",purchase,1.0,0 -111754806,"Grand Theft Auto V",play,128.0,0 -111754806,"Rust",purchase,1.0,0 -111754806,"Rust",play,128.0,0 -111754806,"Warframe",purchase,1.0,0 -111754806,"Warframe",play,101.0,0 -111754806,"The Elder Scrolls V Skyrim",purchase,1.0,0 -111754806,"The Elder Scrolls V Skyrim",play,91.0,0 -111754806,"Borderlands 2",purchase,1.0,0 -111754806,"Borderlands 2",play,80.0,0 -111754806,"Fallout 4",purchase,1.0,0 -111754806,"Fallout 4",play,63.0,0 -111754806,"Garry's Mod",purchase,1.0,0 -111754806,"Garry's Mod",play,45.0,0 -111754806,"Dying Light",purchase,1.0,0 -111754806,"Dying Light",play,31.0,0 -111754806,"H1Z1",purchase,1.0,0 -111754806,"H1Z1",play,30.0,0 -111754806,"The Binding of Isaac",purchase,1.0,0 -111754806,"The Binding of Isaac",play,28.0,0 -111754806,"BioShock Infinite",purchase,1.0,0 -111754806,"BioShock Infinite",play,26.0,0 -111754806,"Middle-earth Shadow of Mordor",purchase,1.0,0 -111754806,"Middle-earth Shadow of Mordor",play,26.0,0 -111754806,"DayZ",purchase,1.0,0 -111754806,"DayZ",play,22.0,0 -111754806,"Robocraft",purchase,1.0,0 -111754806,"Robocraft",play,20.0,0 -111754806,"Don't Starve Together Beta",purchase,1.0,0 -111754806,"Don't Starve Together Beta",play,14.2,0 -111754806,"BattleBlock Theater",purchase,1.0,0 -111754806,"BattleBlock Theater",play,13.2,0 -111754806,"Tabletop Simulator",purchase,1.0,0 -111754806,"Tabletop Simulator",play,13.1,0 -111754806,"Team Fortress 2",purchase,1.0,0 -111754806,"Team Fortress 2",play,12.8,0 -111754806,"The Binding of Isaac Rebirth",purchase,1.0,0 -111754806,"The Binding of Isaac Rebirth",play,12.0,0 -111754806,"War Thunder",purchase,1.0,0 -111754806,"War Thunder",play,11.2,0 -111754806,"Chivalry Medieval Warfare",purchase,1.0,0 -111754806,"Chivalry Medieval Warfare",play,11.0,0 -111754806,"TERA",purchase,1.0,0 -111754806,"TERA",play,10.4,0 -111754806,"Planet Explorers",purchase,1.0,0 -111754806,"Planet Explorers",play,9.3,0 -111754806,"RIFT",purchase,1.0,0 -111754806,"RIFT",play,8.8,0 -111754806,"The Forest",purchase,1.0,0 -111754806,"The Forest",play,8.4,0 -111754806,"Project Zomboid",purchase,1.0,0 -111754806,"Project Zomboid",play,8.3,0 -111754806,"Block N Load",purchase,1.0,0 -111754806,"Block N Load",play,8.3,0 -111754806,"Realm of the Mad God",purchase,1.0,0 -111754806,"Realm of the Mad God",play,7.9,0 -111754806,"Borderlands The Pre-Sequel",purchase,1.0,0 -111754806,"Borderlands The Pre-Sequel",play,7.9,0 -111754806,"Kerbal Space Program",purchase,1.0,0 -111754806,"Kerbal Space Program",play,7.8,0 -111754806,"Sid Meier's Civilization V",purchase,1.0,0 -111754806,"Sid Meier's Civilization V",play,7.6,0 -111754806,"Pixel Piracy",purchase,1.0,0 -111754806,"Pixel Piracy",play,6.6,0 -111754806,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -111754806,"Fallout 3 - Game of the Year Edition",play,5.7,0 -111754806,"Terraria",purchase,1.0,0 -111754806,"Terraria",play,5.1,0 -111754806,"Depth",purchase,1.0,0 -111754806,"Depth",play,4.9,0 -111754806,"The Ship",purchase,1.0,0 -111754806,"The Ship",play,4.3,0 -111754806,"Serious Sam 3 BFE",purchase,1.0,0 -111754806,"Serious Sam 3 BFE",play,4.3,0 -111754806,"Game Dev Tycoon",purchase,1.0,0 -111754806,"Game Dev Tycoon",play,4.2,0 -111754806,"Dungeon Defenders II",purchase,1.0,0 -111754806,"Dungeon Defenders II",play,4.2,0 -111754806,"Thomas Was Alone",purchase,1.0,0 -111754806,"Thomas Was Alone",play,3.7,0 -111754806,"Magic 2015",purchase,1.0,0 -111754806,"Magic 2015",play,3.5,0 -111754806,"Castle Crashers",purchase,1.0,0 -111754806,"Castle Crashers",play,3.4,0 -111754806,"Sleeping Dogs",purchase,1.0,0 -111754806,"Sleeping Dogs",play,2.7,0 -111754806,"Grand Theft Auto IV",purchase,1.0,0 -111754806,"Grand Theft Auto IV",play,2.7,0 -111754806,"DARK SOULS II",purchase,1.0,0 -111754806,"DARK SOULS II",play,2.7,0 -111754806,"Space Engineers",purchase,1.0,0 -111754806,"Space Engineers",play,2.4,0 -111754806,"Take On Helicopters",purchase,1.0,0 -111754806,"Take On Helicopters",play,2.2,0 -111754806,"Besiege",purchase,1.0,0 -111754806,"Besiege",play,2.2,0 -111754806,"Little Inferno",purchase,1.0,0 -111754806,"Little Inferno",play,2.0,0 -111754806,"Torchlight II",purchase,1.0,0 -111754806,"Torchlight II",play,2.0,0 -111754806,"Robot Roller-Derby Disco Dodgeball",purchase,1.0,0 -111754806,"Robot Roller-Derby Disco Dodgeball",play,1.9,0 -111754806,"Hammerwatch",purchase,1.0,0 -111754806,"Hammerwatch",play,1.9,0 -111754806,"Only If",purchase,1.0,0 -111754806,"Only If",play,1.7,0 -111754806,"Grand Theft Auto San Andreas",purchase,1.0,0 -111754806,"Grand Theft Auto San Andreas",play,1.5,0 -111754806,"Magicka",purchase,1.0,0 -111754806,"Magicka",play,1.5,0 -111754806,"Thief",purchase,1.0,0 -111754806,"Thief",play,1.4,0 -111754806,"Turbo Dismount",purchase,1.0,0 -111754806,"Turbo Dismount",play,1.0,0 -111754806,"Don't Starve",purchase,1.0,0 -111754806,"Don't Starve",play,0.8,0 -111754806,"Spore Galactic Adventures",purchase,1.0,0 -111754806,"Spore Galactic Adventures",play,0.8,0 -111754806,"ORION Prelude",purchase,1.0,0 -111754806,"ORION Prelude",play,0.8,0 -111754806,"Bad Rats",purchase,1.0,0 -111754806,"Bad Rats",play,0.7,0 -111754806,"Fistful of Frags",purchase,1.0,0 -111754806,"Fistful of Frags",play,0.6,0 -111754806,"Double Action Boogaloo",purchase,1.0,0 -111754806,"Double Action Boogaloo",play,0.6,0 -111754806,"Dota 2",purchase,1.0,0 -111754806,"Dota 2",play,0.5,0 -111754806,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -111754806,"The Elder Scrolls IV Oblivion ",play,0.4,0 -111754806,"Natural Selection 2",purchase,1.0,0 -111754806,"Natural Selection 2",play,0.4,0 -111754806,"Murder Miners",purchase,1.0,0 -111754806,"Murder Miners",play,0.4,0 -111754806,"Sniper Elite Nazi Zombie Army 2",purchase,1.0,0 -111754806,"Sniper Elite Nazi Zombie Army 2",play,0.3,0 -111754806,"Surgeon Simulator",purchase,1.0,0 -111754806,"Surgeon Simulator",play,0.3,0 -111754806,"Emily is Away",purchase,1.0,0 -111754806,"Emily is Away",play,0.3,0 -111754806,"Spore",purchase,1.0,0 -111754806,"Spore",play,0.3,0 -111754806,"Vindictus",purchase,1.0,0 -111754806,"Vindictus",play,0.3,0 -111754806,"Hitman Absolution",purchase,1.0,0 -111754806,"Hitman Absolution",play,0.3,0 -111754806,"The Ship Tutorial",purchase,1.0,0 -111754806,"The Ship Tutorial",play,0.2,0 -111754806,"Risk of Rain",purchase,1.0,0 -111754806,"Risk of Rain",play,0.2,0 -111754806,"Really Big Sky",purchase,1.0,0 -111754806,"Really Big Sky",play,0.2,0 -111754806,"Dead Island Epidemic",purchase,1.0,0 -111754806,"Dead Island Epidemic",play,0.1,0 -111754806,"NotGTAV",purchase,1.0,0 -111754806,"NotGTAV",play,0.1,0 -111754806,"PAYDAY 2",purchase,1.0,0 -111754806,"PAYDAY 2",play,0.1,0 -111754806,"NightSky",purchase,1.0,0 -111754806,"Prison Architect",purchase,1.0,0 -111754806,"Shower With Your Dad Simulator 2015 Do You Still Shower With Your Dad",purchase,1.0,0 -111754806,"AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome",purchase,1.0,0 -111754806,"Jack Lumber",purchase,1.0,0 -111754806,"Anomaly 2",purchase,1.0,0 -111754806,"To the Moon",purchase,1.0,0 -111754806,"Sanctum 2",purchase,1.0,0 -111754806,"theHunter",purchase,1.0,0 -111754806,"Archeblade",purchase,1.0,0 -111754806,"BioShock",purchase,1.0,0 -111754806,"BioShock 2",purchase,1.0,0 -111754806,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -111754806,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -111754806,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -111754806,"CastleMiner Z",purchase,1.0,0 -111754806,"Counter-Strike Source",purchase,1.0,0 -111754806,"Counter-Strike Nexon Zombies",purchase,1.0,0 -111754806,"Deus Ex Human Revolution",purchase,1.0,0 -111754806,"Dino D-Day",purchase,1.0,0 -111754806,"Don't Starve Reign of Giants",purchase,1.0,0 -111754806,"Dungeons & Dragons Online",purchase,1.0,0 -111754806,"F.E.A.R. Online",purchase,1.0,0 -111754806,"Faerie Solitaire",purchase,1.0,0 -111754806,"Gemini Rue",purchase,1.0,0 -111754806,"Grand Theft Auto San Andreas",purchase,1.0,0 -111754806,"H1Z1 Test Server",purchase,1.0,0 -111754806,"Hero Academy",purchase,1.0,0 -111754806,"how do you Do It?",purchase,1.0,0 -111754806,"Joe Danger 2 The Movie",purchase,1.0,0 -111754806,"Knytt Underground",purchase,1.0,0 -111754806,"LEGO Worlds",purchase,1.0,0 -111754806,"Magic Duels",purchase,1.0,0 -111754806,"Magicka Vietnam",purchase,1.0,0 -111754806,"Orcs Must Die! 2",purchase,1.0,0 -111754806,"Papo & Yo",purchase,1.0,0 -111754806,"Patch testing for Chivalry",purchase,1.0,0 -111754806,"PlanetSide 2",purchase,1.0,0 -111754806,"POSTAL 2",purchase,1.0,0 -111754806,"Reus",purchase,1.0,0 -111754806,"Spore Creepy & Cute Parts Pack",purchase,1.0,0 -111754806,"Star Conflict",purchase,1.0,0 -111754806,"Survarium",purchase,1.0,0 -111754806,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -111754806,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -111754806,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -111754806,"The Ship Single Player",purchase,1.0,0 -111754806,"Unturned",purchase,1.0,0 -145927933,"Garry's Mod",purchase,1.0,0 -145927933,"Garry's Mod",play,480.0,0 -145927933,"Borderlands 2",purchase,1.0,0 -145927933,"Borderlands 2",play,176.0,0 -145927933,"The Binding of Isaac",purchase,1.0,0 -145927933,"The Binding of Isaac",play,128.0,0 -145927933,"Team Fortress 2",purchase,1.0,0 -145927933,"Team Fortress 2",play,46.0,0 -145927933,"Counter-Strike Source",purchase,1.0,0 -145927933,"Counter-Strike Source",play,31.0,0 -145927933,"Left 4 Dead 2",purchase,1.0,0 -145927933,"Left 4 Dead 2",play,30.0,0 -145927933,"Crysis 2 Maximum Edition",purchase,1.0,0 -145927933,"Crysis 2 Maximum Edition",play,23.0,0 -145927933,"Neverwinter",purchase,1.0,0 -145927933,"Neverwinter",play,13.8,0 -145927933,"Unturned",purchase,1.0,0 -145927933,"Unturned",play,13.3,0 -145927933,"Loadout",purchase,1.0,0 -145927933,"Loadout",play,3.3,0 -145927933,"Heroes & Generals",purchase,1.0,0 -145927933,"Heroes & Generals",play,1.9,0 -145927933,"Crysis Warhead",purchase,1.0,0 -145927933,"Crysis Warhead",play,0.5,0 -145927933,"Crysis Wars",purchase,1.0,0 -145927933,"Crysis",purchase,1.0,0 -139149185,"Counter-Strike Source",purchase,1.0,0 -139149185,"Counter-Strike Source",play,71.0,0 -139149185,"Counter-Strike Global Offensive",purchase,1.0,0 -139149185,"Counter-Strike Global Offensive",play,4.0,0 -139149185,"Counter-Strike",purchase,1.0,0 -139149185,"Counter-Strike Condition Zero",purchase,1.0,0 -139149185,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -107131506,"Call of Duty World at War",purchase,1.0,0 -107131506,"Call of Duty World at War",play,47.0,0 -107131506,"No More Room in Hell",purchase,1.0,0 -107131506,"No More Room in Hell",play,12.9,0 -107131506,"Team Fortress 2",purchase,1.0,0 -107131506,"Team Fortress 2",play,2.4,0 -107131506,"War Inc. Battlezone",purchase,1.0,0 -107131506,"War Inc. Battlezone",play,2.2,0 -107131506,"Star Trek Online",purchase,1.0,0 -107131506,"Star Trek Online",play,1.7,0 -107131506,"Fistful of Frags",purchase,1.0,0 -107131506,"Fistful of Frags",play,1.1,0 -107131506,"Unturned",purchase,1.0,0 -107131506,"Unturned",play,1.0,0 -107131506,"Counter-Strike Nexon Zombies",purchase,1.0,0 -107131506,"Counter-Strike Nexon Zombies",play,1.0,0 -107131506,"Star Conflict",purchase,1.0,0 -107131506,"Star Conflict",play,0.5,0 -107131506,"Double Action Boogaloo",purchase,1.0,0 -107131506,"Double Action Boogaloo",play,0.2,0 -107131506,"Heroes & Generals",purchase,1.0,0 -189818681,"Portal 2",purchase,1.0,0 -189818681,"Portal 2",play,13.3,0 -189818681,"Team Fortress 2",purchase,1.0,0 -189818681,"Team Fortress 2",play,2.4,0 -189818681,"Dota 2",purchase,1.0,0 -189818681,"Dota 2",play,1.5,0 -189818681,"Double Action Boogaloo",purchase,1.0,0 -189818681,"Double Action Boogaloo",play,1.1,0 -189818681,"PAYDAY 2",purchase,1.0,0 -189818681,"PAYDAY 2",play,1.0,0 -189818681,"Warframe",purchase,1.0,0 -189818681,"Warframe",play,0.9,0 -189818681,"Fork Parker's Holiday Profit Hike",purchase,1.0,0 -189818681,"Fork Parker's Holiday Profit Hike",play,0.5,0 -189818681,"F.E.A.R. Online",purchase,1.0,0 -189818681,"Marvel Heroes 2015",purchase,1.0,0 -189818681,"The Lord of the Rings Online",purchase,1.0,0 -20683035,"Counter-Strike",purchase,1.0,0 -20683035,"Counter-Strike",play,4.7,0 -20683035,"Counter-Strike Source",purchase,1.0,0 -20683035,"Counter-Strike Source",play,1.4,0 -20683035,"Counter-Strike Condition Zero",purchase,1.0,0 -20683035,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -20683035,"Day of Defeat",purchase,1.0,0 -20683035,"Day of Defeat Source",purchase,1.0,0 -20683035,"Deathmatch Classic",purchase,1.0,0 -20683035,"Half-Life 2 Deathmatch",purchase,1.0,0 -20683035,"Half-Life 2 Lost Coast",purchase,1.0,0 -20683035,"Ricochet",purchase,1.0,0 -161637382,"The Lord of the Rings War in the North",purchase,1.0,0 -161637382,"The Lord of the Rings War in the North",play,14.0,0 -86355338,"Dota 2",purchase,1.0,0 -86355338,"Dota 2",play,51.0,0 -86355338,"Empire Total War",purchase,1.0,0 -86355338,"Empire Total War",play,14.3,0 -158944454,"Team Fortress 2",purchase,1.0,0 -158944454,"Team Fortress 2",play,71.0,0 -158944454,"Garry's Mod",purchase,1.0,0 -158944454,"Garry's Mod",play,23.0,0 -158944454,"Warface",purchase,1.0,0 -158944454,"Warface",play,1.4,0 -158944454,"Warframe",purchase,1.0,0 -158944454,"Warframe",play,1.2,0 -158944454,"Path of Exile",purchase,1.0,0 -158944454,"Path of Exile",play,0.4,0 -158944454,"Devilian",purchase,1.0,0 -158944454,"Devilian",play,0.2,0 -158944454,"Gotham City Impostors Free To Play",purchase,1.0,0 -158944454,"Gotham City Impostors Free To Play",play,0.2,0 -158944454,"Puzzle Pirates",purchase,1.0,0 -158944454,"Pirates, Vikings, & Knights II",purchase,1.0,0 -158944454,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -133609786,"Dota 2",purchase,1.0,0 -133609786,"Dota 2",play,57.0,0 -65872385,"Left 4 Dead 2",purchase,1.0,0 -65872385,"Left 4 Dead 2",play,224.0,0 -65872385,"Call of Duty Black Ops",purchase,1.0,0 -65872385,"Call of Duty Black Ops",play,8.4,0 -65872385,"Section 8 Prejudice",purchase,1.0,0 -65872385,"Section 8 Prejudice",play,0.6,0 -65872385,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -65872385,"Call of Duty Black Ops - Multiplayer",play,0.2,0 -38968408,"Counter-Strike Source",purchase,1.0,0 -38968408,"Counter-Strike Source",play,1.3,0 -38968408,"Five Nights at Freddy's",purchase,1.0,0 -38968408,"Five Nights at Freddy's",play,0.2,0 -27171538,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -27171538,"Sid Meier's Civilization IV Beyond the Sword",play,463.0,0 -27171538,"The Witcher 3 Wild Hunt",purchase,1.0,0 -27171538,"The Witcher 3 Wild Hunt",play,84.0,0 -27171538,"The Elder Scrolls V Skyrim",purchase,1.0,0 -27171538,"The Elder Scrolls V Skyrim",play,75.0,0 -27171538,"Sid Meier's Civilization V",purchase,1.0,0 -27171538,"Sid Meier's Civilization V",play,23.0,0 -27171538,"Borderlands",purchase,1.0,0 -27171538,"Borderlands",play,20.0,0 -27171538,"Kerbal Space Program",purchase,1.0,0 -27171538,"Kerbal Space Program",play,15.0,0 -27171538,"Age of Empires III Complete Collection",purchase,1.0,0 -27171538,"Age of Empires III Complete Collection",play,12.2,0 -27171538,"Borderlands 2",purchase,1.0,0 -27171538,"Borderlands 2",play,7.4,0 -27171538,"Far Cry 3",purchase,1.0,0 -27171538,"Far Cry 3",play,5.5,0 -27171538,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -27171538,"Sid Meier's Civilization IV Colonization",play,4.3,0 -27171538,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -27171538,"Sid Meier's Civilization IV Warlords",play,1.2,0 -27171538,"7 Days to Die",purchase,1.0,0 -27171538,"7 Days to Die",play,1.0,0 -27171538,"DayZ",purchase,1.0,0 -27171538,"DayZ",play,0.8,0 -27171538,"Brothers - A Tale of Two Sons",purchase,1.0,0 -27171538,"Brothers - A Tale of Two Sons",play,0.7,0 -27171538,"Guns of Icarus Online",purchase,1.0,0 -27171538,"Guns of Icarus Online",play,0.6,0 -27171538,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -27171538,"Dragon Age Origins - Ultimate Edition",play,0.5,0 -27171538,"Team Fortress 2",purchase,1.0,0 -27171538,"Team Fortress 2",play,0.5,0 -27171538,"Sir, You Are Being Hunted",purchase,1.0,0 -27171538,"Sir, You Are Being Hunted",play,0.4,0 -27171538,"The Ship Single Player",purchase,1.0,0 -27171538,"The Ship Single Player",play,0.4,0 -27171538,"Europa Universalis IV",purchase,1.0,0 -27171538,"Europa Universalis IV",play,0.3,0 -27171538,"The Ship Tutorial",purchase,1.0,0 -27171538,"The Ship Tutorial",play,0.3,0 -27171538,"Survival Postapocalypse Now",purchase,1.0,0 -27171538,"Survival Postapocalypse Now",play,0.2,0 -27171538,"Thief 2",purchase,1.0,0 -27171538,"Thief 2",play,0.2,0 -27171538,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -27171538,"Age of Empires II HD Edition",purchase,1.0,0 -27171538,"Left 4 Dead 2",purchase,1.0,0 -27171538,"Assassin's Creed Freedom Cry",purchase,1.0,0 -27171538,"No More Room in Hell",purchase,1.0,0 -27171538,"Sid Meier's Civilization IV",purchase,1.0,0 -27171538,"Sid Meier's Civilization IV",purchase,1.0,0 -27171538,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -27171538,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -27171538,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -27171538,"The Ship",purchase,1.0,0 -27171538,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -27171538,"The Witcher Enhanced Edition",purchase,1.0,0 -27171538,"Thief Deadly Shadows",purchase,1.0,0 -27171538,"Thief Gold",purchase,1.0,0 -293551083,"Unturned",purchase,1.0,0 -240405101,"Counter-Strike Global Offensive",purchase,1.0,0 -240405101,"Counter-Strike Global Offensive",play,48.0,0 -240405101,"Medieval II Total War",purchase,1.0,0 -240405101,"Medieval II Total War",play,14.0,0 -240405101,"Left 4 Dead 2",purchase,1.0,0 -240405101,"Left 4 Dead 2",play,6.4,0 -240405101,"Pre-Civilization Marble Age",purchase,1.0,0 -240405101,"Pre-Civilization Marble Age",play,4.8,0 -240405101,"Assassin's Creed",purchase,1.0,0 -240405101,"Assassin's Creed",play,4.5,0 -240405101,"BLOCKADE 3D",purchase,1.0,0 -240405101,"BLOCKADE 3D",play,3.8,0 -240405101,"Garry's Mod",purchase,1.0,0 -240405101,"Garry's Mod",play,3.3,0 -240405101,"DiggerOnline",purchase,1.0,0 -240405101,"DiggerOnline",play,3.0,0 -240405101,"Pirates, Vikings, & Knights II",purchase,1.0,0 -240405101,"Pirates, Vikings, & Knights II",play,2.2,0 -240405101,"The Elder Scrolls V Skyrim",purchase,1.0,0 -240405101,"The Elder Scrolls V Skyrim",play,1.2,0 -240405101,"Worms Revolution",purchase,1.0,0 -240405101,"Worms Revolution",play,1.0,0 -240405101,"Unturned",purchase,1.0,0 -240405101,"Unturned",play,0.6,0 -240405101,"Heroes & Generals",purchase,1.0,0 -240405101,"Teeworlds",purchase,1.0,0 -240405101,"BEEP",purchase,1.0,0 -240405101,"Camera Obscura",purchase,1.0,0 -240405101,"GunZ 2 The Second Duel",purchase,1.0,0 -240405101,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -240405101,"Out There Somewhere",purchase,1.0,0 -240405101,"Polarity",purchase,1.0,0 -240405101,"Run and Fire",purchase,1.0,0 -240405101,"SMITE",purchase,1.0,0 -240405101,"TERA",purchase,1.0,0 -229111581,"Counter-Strike Nexon Zombies",purchase,1.0,0 -229111581,"Counter-Strike Nexon Zombies",play,59.0,0 -229111581,"Team Fortress 2",purchase,1.0,0 -229111581,"Team Fortress 2",play,0.3,0 -229111581,"RaceRoom Racing Experience ",purchase,1.0,0 -229111581,"RaceRoom Racing Experience ",play,0.2,0 -92314533,"Sid Meier's Civilization V",purchase,1.0,0 -92314533,"Sid Meier's Civilization V",play,0.1,0 -185849750,"Dota 2",purchase,1.0,0 -185849750,"Dota 2",play,6.6,0 -145722517,"Dota 2",purchase,1.0,0 -145722517,"Dota 2",play,176.0,0 -197157593,"Dota 2",purchase,1.0,0 -197157593,"Dota 2",play,3.2,0 -107383658,"Dota 2",purchase,1.0,0 -107383658,"Dota 2",play,28.0,0 -202465494,"Dota 2",purchase,1.0,0 -202465494,"Dota 2",play,1.6,0 -237156166,"Robocraft",purchase,1.0,0 -237156166,"Robocraft",play,64.0,0 -237156166,"Dirty Bomb",purchase,1.0,0 -237156166,"Victory Command",purchase,1.0,0 -237156166,"Batla",purchase,1.0,0 -237156166,"TERA",purchase,1.0,0 -132057825,"Counter-Strike",purchase,1.0,0 -132057825,"Counter-Strike",play,79.0,0 -132057825,"Counter-Strike Condition Zero",purchase,1.0,0 -132057825,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -202625117,"Dota 2",purchase,1.0,0 -202625117,"Dota 2",play,541.0,0 -47453568,"Empire Total War",purchase,1.0,0 -47453568,"Empire Total War",play,187.0,0 -47453568,"Total War SHOGUN 2",purchase,1.0,0 -47453568,"Total War SHOGUN 2",play,40.0,0 -168839130,"Happy Wars",purchase,1.0,0 -168839130,"Happy Wars",play,2.5,0 -300538511,"Mitos.is The Game",purchase,1.0,0 -300538511,"Mitos.is The Game",play,1.4,0 -138349389,"Dota 2",purchase,1.0,0 -138349389,"Dota 2",play,4.6,0 -192798536,"Gravity Badgers",purchase,1.0,0 -103966604,"London 2012 The Official Video Game of the Olympic Games",purchase,1.0,0 -103966604,"London 2012 The Official Video Game of the Olympic Games",play,17.4,0 -287948400,"Dota 2",purchase,1.0,0 -287948400,"Dota 2",play,0.7,0 -26753925,"Counter-Strike Source",purchase,1.0,0 -26753925,"Counter-Strike Source",play,2.8,0 -26753925,"Day of Defeat Source",purchase,1.0,0 -26753925,"Half-Life 2 Deathmatch",purchase,1.0,0 -26753925,"Half-Life 2 Lost Coast",purchase,1.0,0 -12130111,"The Sims(TM) 3",purchase,1.0,0 -12130111,"The Sims(TM) 3",play,219.0,0 -12130111,"Garry's Mod",purchase,1.0,0 -12130111,"Garry's Mod",play,123.0,0 -12130111,"Portal 2",purchase,1.0,0 -12130111,"Portal 2",play,90.0,0 -12130111,"Half-Life",purchase,1.0,0 -12130111,"Half-Life",play,66.0,0 -12130111,"Desktop Dungeons",purchase,1.0,0 -12130111,"Desktop Dungeons",play,65.0,0 -12130111,"Half-Life 2",purchase,1.0,0 -12130111,"Half-Life 2",play,41.0,0 -12130111,"Portal",purchase,1.0,0 -12130111,"Portal",play,39.0,0 -12130111,"Octodad Dadliest Catch",purchase,1.0,0 -12130111,"Octodad Dadliest Catch",play,39.0,0 -12130111,"SimCity 4 Deluxe",purchase,1.0,0 -12130111,"SimCity 4 Deluxe",play,29.0,0 -12130111,"BioShock Infinite",purchase,1.0,0 -12130111,"BioShock Infinite",play,23.0,0 -12130111,"The Talos Principle",purchase,1.0,0 -12130111,"The Talos Principle",play,21.0,0 -12130111,"The Stanley Parable",purchase,1.0,0 -12130111,"The Stanley Parable",play,12.3,0 -12130111,"Half-Life 2 Episode Two",purchase,1.0,0 -12130111,"Half-Life 2 Episode Two",play,10.1,0 -12130111,"Half-Life 2 Episode One",purchase,1.0,0 -12130111,"Half-Life 2 Episode One",play,9.8,0 -12130111,"Half-Life 2 Lost Coast",purchase,1.0,0 -12130111,"Half-Life 2 Lost Coast",play,6.4,0 -12130111,"Call of Duty Modern Warfare 2",purchase,1.0,0 -12130111,"Call of Duty Modern Warfare 2",play,3.5,0 -12130111,"The Escapists The Walking Dead",purchase,1.0,0 -12130111,"The Escapists The Walking Dead",play,1.9,0 -12130111,"Team Fortress 2",purchase,1.0,0 -12130111,"Team Fortress 2",play,1.4,0 -12130111,"Life Is Strange",purchase,1.0,0 -12130111,"Life Is Strange",play,1.3,0 -12130111,"Coffin Dodgers",purchase,1.0,0 -12130111,"Coffin Dodgers",play,0.5,0 -12130111,"Metro 2033 Redux",purchase,1.0,0 -12130111,"Metro 2033 Redux",play,0.5,0 -12130111,"Fahrenheit Indigo Prophecy Remastered",purchase,1.0,0 -12130111,"Fahrenheit Indigo Prophecy Remastered",play,0.4,0 -12130111,"Commandos 2 Men of Courage",purchase,1.0,0 -12130111,"Commandos 2 Men of Courage",play,0.2,0 -12130111,"Black Mesa",purchase,1.0,0 -12130111,"BioShock 2",purchase,1.0,0 -12130111,"Half-Life Source",purchase,1.0,0 -12130111,"Amnesia The Dark Descent",purchase,1.0,0 -12130111,"BioShock Infinite - Season Pass",purchase,1.0,0 -12130111,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -12130111,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -12130111,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -12130111,"Commandos 3 Destination Berlin",purchase,1.0,0 -12130111,"Counter-Strike Source",purchase,1.0,0 -12130111,"Half-Life 2 Deathmatch",purchase,1.0,0 -12130111,"Half-Life Deathmatch Source",purchase,1.0,0 -12130111,"Metro Last Light Redux",purchase,1.0,0 -12130111,"SiN",purchase,1.0,0 -12130111,"SiN Episodes Emergence",purchase,1.0,0 -12130111,"SiN Multiplayer",purchase,1.0,0 -200083714,"Borderlands The Pre-Sequel",purchase,1.0,0 -200083714,"Borderlands The Pre-Sequel",play,157.0,0 -186193491,"Unturned",purchase,1.0,0 -186193491,"Unturned",play,15.0,0 -94819329,"The Elder Scrolls V Skyrim",purchase,1.0,0 -94819329,"The Elder Scrolls V Skyrim",play,341.0,0 -199948316,"Amnesia A Machine for Pigs",purchase,1.0,0 -199948316,"Amnesia A Machine for Pigs",play,0.6,0 -199948316,"The Elder Scrolls V Skyrim",purchase,1.0,0 -199948316,"The Elder Scrolls V Skyrim",play,0.6,0 -216939765,"Pressured",purchase,1.0,0 -23096237,"Day of Defeat Source",purchase,1.0,0 -23096237,"Day of Defeat Source",play,11.1,0 -23096237,"Counter-Strike Source",purchase,1.0,0 -23096237,"Counter-Strike Source",play,3.9,0 -23096237,"Half-Life 2 Lost Coast",purchase,1.0,0 -23096237,"Half-Life 2 Lost Coast",play,0.4,0 -23096237,"Half-Life 2 Deathmatch",purchase,1.0,0 -23096237,"Half-Life 2 Deathmatch",play,0.4,0 -296557510,"Unturned",purchase,1.0,0 -296557510,"Unturned",play,4.9,0 -82728085,"Football Manager 2011",purchase,1.0,0 -82728085,"Football Manager 2011",play,37.0,0 -15305418,"Borderlands 2",purchase,1.0,0 -15305418,"Borderlands 2",play,229.0,0 -15305418,"Counter-Strike Global Offensive",purchase,1.0,0 -15305418,"Counter-Strike Global Offensive",play,168.0,0 -15305418,"Counter-Strike Source",purchase,1.0,0 -15305418,"Counter-Strike Source",play,71.0,0 -15305418,"DayZ",purchase,1.0,0 -15305418,"DayZ",play,51.0,0 -15305418,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -15305418,"Call of Duty Modern Warfare 2 - Multiplayer",play,42.0,0 -15305418,"Portal 2",purchase,1.0,0 -15305418,"Portal 2",play,40.0,0 -15305418,"Borderlands The Pre-Sequel",purchase,1.0,0 -15305418,"Borderlands The Pre-Sequel",play,39.0,0 -15305418,"Call of Duty Modern Warfare 2",purchase,1.0,0 -15305418,"Call of Duty Modern Warfare 2",play,26.0,0 -15305418,"Pro Evolution Soccer 2015",purchase,1.0,0 -15305418,"Pro Evolution Soccer 2015",play,19.1,0 -15305418,"Sniper Elite 3",purchase,1.0,0 -15305418,"Sniper Elite 3",play,16.2,0 -15305418,"Half-Life 2",purchase,1.0,0 -15305418,"Half-Life 2",play,15.6,0 -15305418,"Metro Last Light Redux",purchase,1.0,0 -15305418,"Metro Last Light Redux",play,13.7,0 -15305418,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -15305418,"Resident Evil 5 / Biohazard 5",play,12.6,0 -15305418,"Trine 2",purchase,1.0,0 -15305418,"Trine 2",play,10.7,0 -15305418,"The Wolf Among Us",purchase,1.0,0 -15305418,"The Wolf Among Us",play,8.4,0 -15305418,"Deponia",purchase,1.0,0 -15305418,"Deponia",play,7.9,0 -15305418,"Batman Arkham Origins",purchase,1.0,0 -15305418,"Batman Arkham Origins",play,5.2,0 -15305418,"Dead Island Epidemic",purchase,1.0,0 -15305418,"Dead Island Epidemic",play,2.7,0 -15305418,"PAYDAY 2",purchase,1.0,0 -15305418,"PAYDAY 2",play,2.2,0 -15305418,"The Beginner's Guide",purchase,1.0,0 -15305418,"The Beginner's Guide",play,1.5,0 -15305418,"Metro 2033 Redux",purchase,1.0,0 -15305418,"Metro 2033 Redux",play,1.4,0 -15305418,"Planetary Annihilation",purchase,1.0,0 -15305418,"Planetary Annihilation",play,1.0,0 -15305418,"Don't Starve",purchase,1.0,0 -15305418,"Don't Starve",play,1.0,0 -15305418,"Pool Nation",purchase,1.0,0 -15305418,"Pool Nation",play,0.9,0 -15305418,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -15305418,"Sonic & All-Stars Racing Transformed",play,0.7,0 -15305418,"Orbital Gear",purchase,1.0,0 -15305418,"Orbital Gear",play,0.6,0 -15305418,"The Walking Dead Season Two",purchase,1.0,0 -15305418,"The Walking Dead Season Two",play,0.5,0 -15305418,"Goodbye Deponia",purchase,1.0,0 -15305418,"Goodbye Deponia",play,0.1,0 -15305418,"Electronic Super Joy Groove City",purchase,1.0,0 -15305418,"Electronic Super Joy Groove City",play,0.1,0 -15305418,"Arma 2 Operation Arrowhead",purchase,1.0,0 -15305418,"Next Car Game Wreckfest",purchase,1.0,0 -15305418,"Age of Empires II HD Edition",purchase,1.0,0 -15305418,"Left 4 Dead 2",purchase,1.0,0 -15305418,"Arma 2",purchase,1.0,0 -15305418,"Alpha Protocol",purchase,1.0,0 -15305418,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -15305418,"Binary Domain",purchase,1.0,0 -15305418,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -15305418,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -15305418,"Company of Heroes",purchase,1.0,0 -15305418,"Company of Heroes (New Steam Version)",purchase,1.0,0 -15305418,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -15305418,"Dead Island",purchase,1.0,0 -15305418,"Dead Island Riptide",purchase,1.0,0 -15305418,"Don't Starve Together Beta",purchase,1.0,0 -15305418,"Half-Life 2 Deathmatch",purchase,1.0,0 -15305418,"Half-Life 2 Lost Coast",purchase,1.0,0 -15305418,"Hell Yeah!",purchase,1.0,0 -15305418,"Medieval II Total War",purchase,1.0,0 -15305418,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -15305418,"Renegade Ops",purchase,1.0,0 -15305418,"Rome Total War",purchase,1.0,0 -15305418,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -15305418,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -15305418,"Worms Ultimate Mayhem",purchase,1.0,0 -215786295,"Dota 2",purchase,1.0,0 -215786295,"Dota 2",play,45.0,0 -215786295,"FreeStyle2 Street Basketball",purchase,1.0,0 -215786295,"FreeStyle2 Street Basketball",play,3.3,0 -215786295,"Heroes & Generals",purchase,1.0,0 -215786295,"Marvel Heroes 2015",purchase,1.0,0 -215786295,"PlanetSide 2",purchase,1.0,0 -215786295,"Ragnarok Online 2",purchase,1.0,0 -215786295,"TERA",purchase,1.0,0 -215786295,"Warframe",purchase,1.0,0 -119170251,"The Elder Scrolls V Skyrim",purchase,1.0,0 -119170251,"The Elder Scrolls V Skyrim",play,41.0,0 -119170251,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -119170251,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -130303679,"Only If",purchase,1.0,0 -130303679,"Only If",play,0.3,0 -130303679,"APB Reloaded",purchase,1.0,0 -130303679,"Combat Arms",purchase,1.0,0 -130303679,"Defiance",purchase,1.0,0 -130303679,"Loadout",purchase,1.0,0 -130303679,"Mabinogi",purchase,1.0,0 -130303679,"Neverwinter",purchase,1.0,0 -130303679,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -130303679,"theHunter",purchase,1.0,0 -130303679,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -130303679,"Warframe",purchase,1.0,0 -130303679,"Zombies Monsters Robots",purchase,1.0,0 -241564427,"Dirty Bomb",purchase,1.0,0 -237704094,"Rocket League",purchase,1.0,0 -237704094,"Rocket League",play,109.0,0 -237704094,"The Banner Saga",purchase,1.0,0 -237704094,"The Banner Saga",play,40.0,0 -237704094,"Minecraft Story Mode - A Telltale Games Series",purchase,1.0,0 -237704094,"Minecraft Story Mode - A Telltale Games Series",play,5.7,0 -237704094,"Unturned",purchase,1.0,0 -237704094,"Unturned",play,4.4,0 -237704094,"The Stanley Parable",purchase,1.0,0 -237704094,"The Stanley Parable",play,3.9,0 -237704094,"ARK Survival Evolved",purchase,1.0,0 -237704094,"ARK Survival Evolved",play,2.4,0 -237704094,"Subnautica",purchase,1.0,0 -237704094,"Subnautica",play,1.9,0 -237704094,"TerraTech",purchase,1.0,0 -237704094,"TerraTech",play,1.3,0 -237704094,"AdVenture Capitalist",purchase,1.0,0 -237704094,"The Banner Saga - Mod Content",purchase,1.0,0 -146427029,"Dota 2",purchase,1.0,0 -146427029,"Dota 2",play,756.0,0 -146427029,"Rust",purchase,1.0,0 -146427029,"Rust",play,198.0,0 -146427029,"Euro Truck Simulator 2",purchase,1.0,0 -146427029,"Euro Truck Simulator 2",play,58.0,0 -146427029,"Left 4 Dead 2",purchase,1.0,0 -146427029,"Left 4 Dead 2",play,33.0,0 -146427029,"Unturned",purchase,1.0,0 -146427029,"Unturned",play,23.0,0 -146427029,"Team Fortress 2",purchase,1.0,0 -146427029,"Team Fortress 2",play,8.8,0 -146427029,"War Thunder",purchase,1.0,0 -146427029,"War Thunder",play,8.1,0 -146427029,"No More Room in Hell",purchase,1.0,0 -146427029,"No More Room in Hell",play,0.3,0 -146427029,"Heroes & Generals",purchase,1.0,0 -146427029,"Heroes & Generals",play,0.3,0 -201769914,"Counter-Strike Nexon Zombies",purchase,1.0,0 -201769914,"Counter-Strike Nexon Zombies",play,16.0,0 -254320799,"Archeblade",purchase,1.0,0 -254320799,"Trove",purchase,1.0,0 -254320799,"Unturned",purchase,1.0,0 -177146016,"Age of Empires II HD Edition",purchase,1.0,0 -177146016,"Age of Empires II HD Edition",play,35.0,0 -192443246,"World of Guns Gun Disassembly",purchase,1.0,0 -304435173,"Dota 2",purchase,1.0,0 -304435173,"Dota 2",play,13.1,0 -133729675,"Dota 2",purchase,1.0,0 -133729675,"Dota 2",play,0.8,0 -35330593,"Sid Meier's Civilization V",purchase,1.0,0 -35330593,"Sid Meier's Civilization V",play,15.8,0 -35330593,"City of Heroes",purchase,1.0,0 -35330593,"City of Heroes",play,7.6,0 -35330593,"Team Fortress 2",purchase,1.0,0 -35330593,"Team Fortress 2",play,6.7,0 -35330593,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -35330593,"Call of Duty 4 Modern Warfare",play,3.4,0 -35330593,"Half-Life 2",purchase,1.0,0 -35330593,"Half-Life 2",play,0.7,0 -35330593,"Half-Life 2 Episode One",purchase,1.0,0 -35330593,"Half-Life 2 Episode Two",purchase,1.0,0 -35330593,"Half-Life 2 Lost Coast",purchase,1.0,0 -35330593,"Portal",purchase,1.0,0 -144824885,"SMITE",purchase,1.0,0 -144824885,"SMITE",play,28.0,0 -144824885,"Max Payne 3",purchase,1.0,0 -144824885,"Max Payne 3",play,14.5,0 -144824885,"PAYDAY 2",purchase,1.0,0 -144824885,"PAYDAY 2",play,8.6,0 -144824885,"Borderlands 2",purchase,1.0,0 -144824885,"Borderlands 2",play,4.0,0 -144824885,"L.A. Noire",purchase,1.0,0 -144824885,"L.A. Noire",play,4.0,0 -144824885,"Hitman Absolution",purchase,1.0,0 -144824885,"Hitman Absolution",play,2.6,0 -144824885,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -144824885,"Injustice Gods Among Us Ultimate Edition",play,2.2,0 -144824885,"Grand Theft Auto San Andreas",purchase,1.0,0 -144824885,"Grand Theft Auto San Andreas",play,1.1,0 -144824885,"Batman Arkham Knight",purchase,1.0,0 -144824885,"Batman Arkham Knight",play,0.5,0 -144824885,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -144824885,"A.V.A - Alliance of Valiant Arms",play,0.4,0 -144824885,"AdVenture Capitalist",purchase,1.0,0 -144824885,"AdVenture Capitalist",play,0.1,0 -144824885,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -144824885,"Batman Arkham City GOTY",purchase,1.0,0 -144824885,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -144824885,"Batman Arkham Origins - Initiation",purchase,1.0,0 -144824885,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -144824885,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -144824885,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -144824885,"Batman Arkham Origins",purchase,1.0,0 -144824885,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -144824885,"Grand Theft Auto San Andreas",purchase,1.0,0 -82448039,"Portal 2",purchase,1.0,0 -82448039,"Portal 2",play,60.0,0 -82448039,"Dota 2",purchase,1.0,0 -82448039,"Dota 2",play,3.8,0 -99077905,"Dota 2",purchase,1.0,0 -99077905,"Dota 2",play,3309.0,0 -99077905,"Borderlands",purchase,1.0,0 -99077905,"Borderlands",play,524.0,0 -99077905,"Alan Wake",purchase,1.0,0 -99077905,"Alan Wake",play,431.0,0 -99077905,"Fallout 4",purchase,1.0,0 -99077905,"Fallout 4",play,428.0,0 -99077905,"Darksiders",purchase,1.0,0 -99077905,"Darksiders",play,262.0,0 -99077905,"I Am Alive",purchase,1.0,0 -99077905,"I Am Alive",play,250.0,0 -99077905,"Mafia II",purchase,1.0,0 -99077905,"Mafia II",play,180.0,0 -99077905,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -99077905,"Fallout 3 - Game of the Year Edition",play,154.0,0 -99077905,"The Walking Dead",purchase,1.0,0 -99077905,"The Walking Dead",play,137.0,0 -99077905,"Company of Heroes",purchase,1.0,0 -99077905,"Company of Heroes",play,106.0,0 -99077905,"Borderlands 2",purchase,1.0,0 -99077905,"Borderlands 2",play,100.0,0 -99077905,"Middle-earth Shadow of Mordor",purchase,1.0,0 -99077905,"Middle-earth Shadow of Mordor",play,80.0,0 -99077905,"War Thunder",purchase,1.0,0 -99077905,"War Thunder",play,68.0,0 -99077905,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -99077905,"The Witcher 2 Assassins of Kings Enhanced Edition",play,62.0,0 -99077905,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -99077905,"Batman Arkham Asylum GOTY Edition",play,62.0,0 -99077905,"Sid Meier's Civilization V",purchase,1.0,0 -99077905,"Sid Meier's Civilization V",play,50.0,0 -99077905,"Mortal Kombat X",purchase,1.0,0 -99077905,"Mortal Kombat X",play,47.0,0 -99077905,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -99077905,"Burnout Paradise The Ultimate Box",play,44.0,0 -99077905,"Spec Ops The Line",purchase,1.0,0 -99077905,"Spec Ops The Line",play,38.0,0 -99077905,"Resident Evil / biohazard HD REMASTER",purchase,1.0,0 -99077905,"Resident Evil / biohazard HD REMASTER",play,37.0,0 -99077905,"Portal 2",purchase,1.0,0 -99077905,"Portal 2",play,30.0,0 -99077905,"Max Payne 3",purchase,1.0,0 -99077905,"Max Payne 3",play,30.0,0 -99077905,"Crysis Warhead",purchase,1.0,0 -99077905,"Crysis Warhead",play,29.0,0 -99077905,"Metro Last Light",purchase,1.0,0 -99077905,"Metro Last Light",play,29.0,0 -99077905,"BioShock Infinite",purchase,1.0,0 -99077905,"BioShock Infinite",play,23.0,0 -99077905,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -99077905,"METAL GEAR RISING REVENGEANCE",play,23.0,0 -99077905,"DayZ",purchase,1.0,0 -99077905,"DayZ",play,22.0,0 -99077905,"Homefront",purchase,1.0,0 -99077905,"Homefront",play,19.6,0 -99077905,"Grand Theft Auto IV",purchase,1.0,0 -99077905,"Grand Theft Auto IV",play,17.5,0 -99077905,"Command and Conquer Red Alert 3",purchase,1.0,0 -99077905,"Command and Conquer Red Alert 3",play,15.1,0 -99077905,"RAGE",purchase,1.0,0 -99077905,"RAGE",play,13.5,0 -99077905,"Left 4 Dead 2",purchase,1.0,0 -99077905,"Left 4 Dead 2",play,12.0,0 -99077905,"Tomb Raider",purchase,1.0,0 -99077905,"Tomb Raider",play,11.9,0 -99077905,"Mortal Kombat Komplete Edition",purchase,1.0,0 -99077905,"Mortal Kombat Komplete Edition",play,11.0,0 -99077905,"Wolfenstein The New Order",purchase,1.0,0 -99077905,"Wolfenstein The New Order",play,9.6,0 -99077905,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -99077905,"Command and Conquer Red Alert 3 - Uprising",play,9.5,0 -99077905,"Shadow Warrior",purchase,1.0,0 -99077905,"Shadow Warrior",play,9.0,0 -99077905,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -99077905,"METAL GEAR SOLID V GROUND ZEROES",play,8.2,0 -99077905,"BioShock",purchase,1.0,0 -99077905,"BioShock",play,8.1,0 -99077905,"Tom Clancy's H.A.W.X. 2",purchase,1.0,0 -99077905,"Tom Clancy's H.A.W.X. 2",play,8.1,0 -99077905,"Batman Arkham Origins",purchase,1.0,0 -99077905,"Batman Arkham Origins",play,8.0,0 -99077905,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -99077905,"Just Cause 2 Multiplayer Mod",play,7.5,0 -99077905,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -99077905,"Injustice Gods Among Us Ultimate Edition",play,7.1,0 -99077905,"FINAL FANTASY VII",purchase,1.0,0 -99077905,"FINAL FANTASY VII",play,7.1,0 -99077905,"Darksiders II",purchase,1.0,0 -99077905,"Darksiders II",play,6.8,0 -99077905,"Metro 2033",purchase,1.0,0 -99077905,"Metro 2033",play,6.0,0 -99077905,"Mirror's Edge",purchase,1.0,0 -99077905,"Mirror's Edge",play,5.1,0 -99077905,"L.A. Noire",purchase,1.0,0 -99077905,"L.A. Noire",play,5.1,0 -99077905,"The Elder Scrolls V Skyrim",purchase,1.0,0 -99077905,"The Elder Scrolls V Skyrim",play,5.0,0 -99077905,"Sleeping Dogs Definitive Edition",purchase,1.0,0 -99077905,"Sleeping Dogs Definitive Edition",play,5.0,0 -99077905,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -99077905,"Sonic & All-Stars Racing Transformed",play,5.0,0 -99077905,"The Darkness II",purchase,1.0,0 -99077905,"The Darkness II",play,4.3,0 -99077905,"DRAGON BALL XENOVERSE",purchase,1.0,0 -99077905,"DRAGON BALL XENOVERSE",play,4.2,0 -99077905,"Age of Empires II HD Edition",purchase,1.0,0 -99077905,"Age of Empires II HD Edition",play,3.3,0 -99077905,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -99077905,"Deus Ex Human Revolution - Director's Cut",play,3.2,0 -99077905,"Serious Sam 3 BFE",purchase,1.0,0 -99077905,"Serious Sam 3 BFE",play,3.0,0 -99077905,"Alan Wake's American Nightmare",purchase,1.0,0 -99077905,"Alan Wake's American Nightmare",play,2.9,0 -99077905,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -99077905,"Dark Souls Prepare to Die Edition",play,2.7,0 -99077905,"DiRT Showdown",purchase,1.0,0 -99077905,"DiRT Showdown",play,2.6,0 -99077905,"Saints Row The Third",purchase,1.0,0 -99077905,"Saints Row The Third",play,2.5,0 -99077905,"Ultra Street Fighter IV",purchase,1.0,0 -99077905,"Ultra Street Fighter IV",play,2.5,0 -99077905,"Aliens vs. Predator",purchase,1.0,0 -99077905,"Aliens vs. Predator",play,2.3,0 -99077905,"Orcs Must Die!",purchase,1.0,0 -99077905,"Orcs Must Die!",play,2.3,0 -99077905,"Crysis 2 Maximum Edition",purchase,1.0,0 -99077905,"Crysis 2 Maximum Edition",play,2.2,0 -99077905,"Fallout New Vegas",purchase,1.0,0 -99077905,"Fallout New Vegas",play,1.9,0 -99077905,"Crysis",purchase,1.0,0 -99077905,"Crysis",play,1.7,0 -99077905,"State of Decay",purchase,1.0,0 -99077905,"State of Decay",play,1.5,0 -99077905,"PAYDAY The Heist",purchase,1.0,0 -99077905,"PAYDAY The Heist",play,1.4,0 -99077905,"Mortal Kombat Kollection",purchase,1.0,0 -99077905,"Mortal Kombat Kollection",play,1.3,0 -99077905,"DOOM 3 BFG Edition",purchase,1.0,0 -99077905,"DOOM 3 BFG Edition",play,1.2,0 -99077905,"BioShock 2",purchase,1.0,0 -99077905,"BioShock 2",play,1.0,0 -99077905,"Sniper Elite V2",purchase,1.0,0 -99077905,"Sniper Elite V2",play,1.0,0 -99077905,"MURDERED SOUL SUSPECT",purchase,1.0,0 -99077905,"MURDERED SOUL SUSPECT",play,1.0,0 -99077905,"Just Cause 2",purchase,1.0,0 -99077905,"Just Cause 2",play,0.9,0 -99077905,"FUEL",purchase,1.0,0 -99077905,"FUEL",play,0.8,0 -99077905,"Strike Suit Zero",purchase,1.0,0 -99077905,"Strike Suit Zero",play,0.8,0 -99077905,"Strike Suit Zero Director's Cut",purchase,1.0,0 -99077905,"Strike Suit Zero Director's Cut",play,0.7,0 -99077905,"The Legend of Korra",purchase,1.0,0 -99077905,"The Legend of Korra",play,0.7,0 -99077905,"Hard Reset",purchase,1.0,0 -99077905,"Hard Reset",play,0.6,0 -99077905,"Warhammer 40,000 Space Marine",purchase,1.0,0 -99077905,"Warhammer 40,000 Space Marine",play,0.6,0 -99077905,"Serious Sam HD The First Encounter",purchase,1.0,0 -99077905,"Serious Sam HD The First Encounter",play,0.5,0 -99077905,"Hitman Absolution",purchase,1.0,0 -99077905,"Hitman Absolution",play,0.5,0 -99077905,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -99077905,"Grand Theft Auto Episodes from Liberty City",play,0.4,0 -99077905,"Sniper Ghost Warrior 2",purchase,1.0,0 -99077905,"Sniper Ghost Warrior 2",play,0.4,0 -99077905,"Thief",purchase,1.0,0 -99077905,"Thief",play,0.3,0 -99077905,"Duke Nukem Forever",purchase,1.0,0 -99077905,"Duke Nukem Forever",play,0.3,0 -99077905,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -99077905,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,0.3,0 -99077905,"Commandos 2 Men of Courage",purchase,1.0,0 -99077905,"Commandos 2 Men of Courage",play,0.3,0 -99077905,"Dead Space 2",purchase,1.0,0 -99077905,"Dead Space 2",play,0.3,0 -99077905,"Medal of Honor(TM) Single Player",purchase,1.0,0 -99077905,"Medal of Honor(TM) Single Player",play,0.3,0 -99077905,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -99077905,"THE KING OF FIGHTERS XIII STEAM EDITION",play,0.3,0 -99077905,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -99077905,"Resident Evil 5 / Biohazard 5",play,0.3,0 -99077905,"Dishonored",purchase,1.0,0 -99077905,"Dishonored",play,0.3,0 -99077905,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -99077905,"Serious Sam Classic The Second Encounter",play,0.3,0 -99077905,"Red Faction Armageddon",purchase,1.0,0 -99077905,"Red Faction Armageddon",play,0.3,0 -99077905,"Painkiller Hell & Damnation",purchase,1.0,0 -99077905,"Painkiller Hell & Damnation",play,0.3,0 -99077905,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -99077905,"Resident Evil Revelations / Biohazard Revelations",play,0.3,0 -99077905,"DiRT 3",purchase,1.0,0 -99077905,"DiRT 3",play,0.2,0 -99077905,"Batman Arkham City GOTY",purchase,1.0,0 -99077905,"Batman Arkham City GOTY",play,0.2,0 -99077905,"Commandos Behind Enemy Lines",purchase,1.0,0 -99077905,"Commandos Behind Enemy Lines",play,0.2,0 -99077905,"Nail'd",purchase,1.0,0 -99077905,"Nail'd",play,0.2,0 -99077905,"Titan Quest",purchase,1.0,0 -99077905,"Titan Quest",play,0.2,0 -99077905,"Company of Heroes Opposing Fronts",purchase,1.0,0 -99077905,"Company of Heroes Opposing Fronts",play,0.2,0 -99077905,"Serious Sam 2",purchase,1.0,0 -99077905,"Serious Sam 2",play,0.2,0 -99077905,"F.E.A.R. 3",purchase,1.0,0 -99077905,"F.E.A.R. 3",play,0.2,0 -99077905,"Remember Me",purchase,1.0,0 -99077905,"Remember Me",play,0.1,0 -99077905,"Serious Sam Double D XXL",purchase,1.0,0 -99077905,"Serious Sam Double D XXL",play,0.1,0 -99077905,"Serious Sam Classic The First Encounter",purchase,1.0,0 -99077905,"Crysis Wars",purchase,1.0,0 -99077905,"RACE 07",purchase,1.0,0 -99077905,"Disciples III Reincarnation",purchase,1.0,0 -99077905,"Bloody Good Time",purchase,1.0,0 -99077905,"THE KING OF FIGHTERS '98 ULTIMATE MATCH FINAL EDITION",purchase,1.0,0 -99077905,"Serious Sam The Random Encounter",purchase,1.0,0 -99077905,"Nexuiz",purchase,1.0,0 -99077905,"Commandos Beyond the Call of Duty",purchase,1.0,0 -99077905,"THE KING OF FIGHTERS 2002 UNLIMITED MATCH",purchase,1.0,0 -99077905,"Commandos 3 Destination Berlin",purchase,1.0,0 -99077905,"Amnesia The Dark Descent",purchase,1.0,0 -99077905,"GTR Evolution",purchase,1.0,0 -99077905,"Age of Empires II HD The Forgotten",purchase,1.0,0 -99077905,"ArcaniA",purchase,1.0,0 -99077905,"Company of Heroes (New Steam Version)",purchase,1.0,0 -99077905,"Dead Space",purchase,1.0,0 -99077905,"DiRT 3 Complete Edition",purchase,1.0,0 -99077905,"DmC Devil May Cry",purchase,1.0,0 -99077905,"F.E.A.R.",purchase,1.0,0 -99077905,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -99077905,"F.E.A.R. Extraction Point",purchase,1.0,0 -99077905,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -99077905,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -99077905,"Fallout New Vegas Dead Money",purchase,1.0,0 -99077905,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -99077905,"Guardians of Middle-earth",purchase,1.0,0 -99077905,"Gun Monkeys",purchase,1.0,0 -99077905,"Hard Reset Exile DLC",purchase,1.0,0 -99077905,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -99077905,"Kane & Lynch Dead Men",purchase,1.0,0 -99077905,"Lara Croft and the Guardian of Light",purchase,1.0,0 -99077905,"Larva Mortus",purchase,1.0,0 -99077905,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -99077905,"Medal of Honor Pre-Order",purchase,1.0,0 -99077905,"Naval Warfare",purchase,1.0,0 -99077905,"New kind of adventure",purchase,1.0,0 -99077905,"Nexuiz Beta",purchase,1.0,0 -99077905,"Nexuiz STUPID Mode",purchase,1.0,0 -99077905,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -99077905,"Operation Flashpoint Red River",purchase,1.0,0 -99077905,"ORION Prelude",purchase,1.0,0 -99077905,"Overlord",purchase,1.0,0 -99077905,"Overlord Raising Hell",purchase,1.0,0 -99077905,"Overlord II",purchase,1.0,0 -99077905,"Platypus II",purchase,1.0,0 -99077905,"Power-Up",purchase,1.0,0 -99077905,"RaceRoom Racing Experience ",purchase,1.0,0 -99077905,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -99077905,"resident evil 4 / biohazard 4",purchase,1.0,0 -99077905,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -99077905,"Rise of the Argonauts",purchase,1.0,0 -99077905,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -99077905,"Serious Sam Classics Revolution",purchase,1.0,0 -99077905,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -99077905,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -99077905,"SpellForce 2 - Faith in Destiny",purchase,1.0,0 -99077905,"Supreme Commander",purchase,1.0,0 -99077905,"Supreme Commander Forged Alliance",purchase,1.0,0 -99077905,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -99077905,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -99077905,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -99077905,"The Guild II",purchase,1.0,0 -99077905,"The Lord of the Rings War in the North",purchase,1.0,0 -99077905,"Titan Quest Immortal Throne",purchase,1.0,0 -99077905,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -99077905,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -99077905,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -99077905,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -99077905,"Wolfenstein The Old Blood ",purchase,1.0,0 -130146848,"Dota 2",purchase,1.0,0 -130146848,"Dota 2",play,6.6,0 -130146848,"Serious Sam HD The Second Encounter",purchase,1.0,0 -130146848,"Serious Sam HD The Second Encounter",play,0.1,0 -184161063,"Dota 2",purchase,1.0,0 -184161063,"Dota 2",play,17.1,0 -249096057,"Codename CURE",purchase,1.0,0 -249096057,"Pirates, Vikings, & Knights II",purchase,1.0,0 -249096057,"Red Crucible Firestorm",purchase,1.0,0 -249096057,"Trove",purchase,1.0,0 -305093062,"F1 2015",purchase,1.0,0 -305093062,"F1 2015",play,1.2,0 -34618463,"Darkest Hour Europe '44-'45",purchase,1.0,0 -34618463,"Mare Nostrum",purchase,1.0,0 -34618463,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -221622562,"Loadout",purchase,1.0,0 -252159775,"RollerCoaster Tycoon 2 Triple Thrill Pack",purchase,1.0,0 -252159775,"RollerCoaster Tycoon 2 Triple Thrill Pack",play,2.7,0 -304032401,"Dota 2",purchase,1.0,0 -304032401,"Dota 2",play,72.0,0 -101395260,"Clicker Heroes",purchase,1.0,0 -101395260,"Clicker Heroes",play,178.0,0 -101395260,"Dota 2",purchase,1.0,0 -101395260,"Dota 2",play,58.0,0 -103093060,"Dota 2",purchase,1.0,0 -103093060,"Dota 2",play,1164.0,0 -120970326,"Team Fortress 2",purchase,1.0,0 -120970326,"Team Fortress 2",play,8.2,0 -194966014,"Unturned",purchase,1.0,0 -194966014,"Unturned",play,28.0,0 -180283418,"Counter-Strike Global Offensive",purchase,1.0,0 -180283418,"Counter-Strike Global Offensive",play,1352.0,0 -180283418,"Team Fortress 2",purchase,1.0,0 -180283418,"Team Fortress 2",play,49.0,0 -180283418,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -180283418,"Call of Duty Modern Warfare 2 - Multiplayer",play,8.5,0 -180283418,"Call of Duty Modern Warfare 2",purchase,1.0,0 -180283418,"Call of Duty Modern Warfare 2",play,2.7,0 -180283418,"Heroes & Generals",purchase,1.0,0 -180283418,"Heroes & Generals",play,2.1,0 -180283418,"Epigenesis",purchase,1.0,0 -180283418,"Epigenesis",play,0.5,0 -180283418,"Sacred Citadel",purchase,1.0,0 -180283418,"Sacred Citadel",play,0.4,0 -180283418,"Unturned",purchase,1.0,0 -180283418,"Unturned",play,0.4,0 -180283418,"Risen 2 - Dark Waters",purchase,1.0,0 -180283418,"Risen 2 - Dark Waters",play,0.2,0 -180283418,"Counter-Strike Nexon Zombies",purchase,1.0,0 -180283418,"Metro 2033",purchase,1.0,0 -180283418,"NEOTOKYO",purchase,1.0,0 -180283418,"Risen",purchase,1.0,0 -180283418,"Sacred 2 Gold",purchase,1.0,0 -180283418,"Saints Row 2",purchase,1.0,0 -180283418,"Saints Row The Third",purchase,1.0,0 -244441983,"War Thunder",purchase,1.0,0 -244441983,"War Thunder",play,0.3,0 -244441983,"DCS World",purchase,1.0,0 -81104015,"Total War SHOGUN 2",purchase,1.0,0 -81104015,"Total War SHOGUN 2",play,8.1,0 -81104015,"Saints Row 2",purchase,1.0,0 -91125135,"Empire Total War",purchase,1.0,0 -91125135,"Empire Total War",play,14.2,0 -150039339,"Dota 2",purchase,1.0,0 -150039339,"Dota 2",play,17.8,0 -302054444,"Counter-Strike Global Offensive",purchase,1.0,0 -302054444,"Counter-Strike Global Offensive",play,62.0,0 -90884508,"Serious Sam HD The Second Encounter",purchase,1.0,0 -90884508,"Serious Sam HD The Second Encounter",play,39.0,0 -90884508,"Prince of Persia The Forgotten Sands",purchase,1.0,0 -90884508,"Prince of Persia The Forgotten Sands",play,0.4,0 -90884508,"Team Fortress 2",purchase,1.0,0 -90884508,"Team Fortress 2",play,0.2,0 -243141191,"Dota 2",purchase,1.0,0 -243141191,"Dota 2",play,188.0,0 -243141191,"Warframe",purchase,1.0,0 -243141191,"Warframe",play,9.9,0 -243141191,"War Thunder",purchase,1.0,0 -243141191,"War Thunder",play,4.6,0 -243141191,"No More Room in Hell",purchase,1.0,0 -243141191,"No More Room in Hell",play,0.2,0 -243141191,"SMITE",purchase,1.0,0 -243141191,"SMITE",play,0.1,0 -243141191,"Quake Live",purchase,1.0,0 -233847882,"Dota 2",purchase,1.0,0 -233847882,"Dota 2",play,1.7,0 -150386429,"Dota 2",purchase,1.0,0 -150386429,"Dota 2",play,57.0,0 -139049885,"Dota 2",purchase,1.0,0 -139049885,"Dota 2",play,1.3,0 -112919409,"Team Fortress 2",purchase,1.0,0 -112919409,"Team Fortress 2",play,9.4,0 -182988804,"Football Manager 2014",purchase,1.0,0 -182988804,"Football Manager 2014",play,350.0,0 -182988804,"War Thunder",purchase,1.0,0 -182988804,"War Thunder",play,0.2,0 -10385370,"Counter-Strike Source",purchase,1.0,0 -10385370,"Counter-Strike Source",play,59.0,0 -10385370,"Insurgency Modern Infantry Combat",purchase,1.0,0 -10385370,"Insurgency Modern Infantry Combat",play,41.0,0 -10385370,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -10385370,"Call of Duty Modern Warfare 2 - Multiplayer",play,41.0,0 -10385370,"Crusader Kings II",purchase,1.0,0 -10385370,"Crusader Kings II",play,17.0,0 -10385370,"Call of Duty Modern Warfare 2",purchase,1.0,0 -10385370,"Call of Duty Modern Warfare 2",play,9.0,0 -10385370,"Team Fortress 2",purchase,1.0,0 -10385370,"Team Fortress 2",play,2.2,0 -10385370,"Half-Life 2 Lost Coast",purchase,1.0,0 -10385370,"Half-Life 2 Lost Coast",play,0.2,0 -10385370,"Counter-Strike",purchase,1.0,0 -10385370,"Day of Defeat",purchase,1.0,0 -10385370,"Deathmatch Classic",purchase,1.0,0 -10385370,"Half-Life",purchase,1.0,0 -10385370,"Half-Life 2",purchase,1.0,0 -10385370,"Half-Life 2 Deathmatch",purchase,1.0,0 -10385370,"Half-Life Blue Shift",purchase,1.0,0 -10385370,"Half-Life Opposing Force",purchase,1.0,0 -10385370,"Ricochet",purchase,1.0,0 -10385370,"Team Fortress Classic",purchase,1.0,0 -202836907,"Battlegrounds of Eldhelm",purchase,1.0,0 -244908996,"Five Nights at Freddy's",purchase,1.0,0 -244908996,"Five Nights at Freddy's",play,5.1,0 -244908996,"Passing Pineview Forest",purchase,1.0,0 -244908996,"theHunter",purchase,1.0,0 -301117259,"Dota 2",purchase,1.0,0 -301117259,"Dota 2",play,50.0,0 -28424408,"Counter-Strike Condition Zero",purchase,1.0,0 -28424408,"Counter-Strike Condition Zero",play,0.4,0 -28424408,"Counter-Strike",purchase,1.0,0 -28424408,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -28424408,"Day of Defeat",purchase,1.0,0 -28424408,"Deathmatch Classic",purchase,1.0,0 -28424408,"Ricochet",purchase,1.0,0 -244376049,"Dota 2",purchase,1.0,0 -244376049,"Dota 2",play,477.0,0 -217756269,"Dota 2",purchase,1.0,0 -217756269,"Dota 2",play,1.9,0 -191477470,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -191477470,"Call of Duty Black Ops II - Multiplayer",play,592.0,0 -191477470,"Left 4 Dead 2",purchase,1.0,0 -191477470,"Left 4 Dead 2",play,79.0,0 -191477470,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -191477470,"Call of Duty Black Ops II - Zombies",play,15.5,0 -191477470,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -191477470,"Call of Duty Ghosts - Multiplayer",play,3.0,0 -191477470,"Call of Duty Black Ops II",purchase,1.0,0 -191477470,"Call of Duty Black Ops II",play,0.3,0 -191477470,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -191477470,"Call of Duty Modern Warfare 3 - Multiplayer",play,0.2,0 -191477470,"DisplayFusion",purchase,1.0,0 -191477470,"DisplayFusion",play,0.2,0 -191477470,"Call of Duty Ghosts",purchase,1.0,0 -191477470,"Call of Duty Modern Warfare 3",purchase,1.0,0 -217580279,"Dota 2",purchase,1.0,0 -217580279,"Dota 2",play,0.3,0 -238013546,"Dota 2",purchase,1.0,0 -238013546,"Dota 2",play,28.0,0 -238013546,"FreeStyle2 Street Basketball",purchase,1.0,0 -238013546,"FreeStyle2 Street Basketball",play,4.2,0 -238013546,"Audition Online",purchase,1.0,0 -238013546,"Dirty Bomb",purchase,1.0,0 -238013546,"Strife",purchase,1.0,0 -221042905,"Dota 2",purchase,1.0,0 -221042905,"Dota 2",play,21.0,0 -17947811,"Counter-Strike Source",purchase,1.0,0 -17947811,"Half-Life 2",purchase,1.0,0 -17947811,"Half-Life 2 Deathmatch",purchase,1.0,0 -17947811,"Half-Life 2 Lost Coast",purchase,1.0,0 -201678836,"Dota 2",purchase,1.0,0 -201678836,"Dota 2",play,650.0,0 -201678836,"ACE - Arena Cyber Evolution",purchase,1.0,0 -201678836,"APB Reloaded",purchase,1.0,0 -201678836,"Archeblade",purchase,1.0,0 -201678836,"Aura Kingdom",purchase,1.0,0 -201678836,"Blacklight Retribution",purchase,1.0,0 -201678836,"C9",purchase,1.0,0 -201678836,"Chaos Heroes Online",purchase,1.0,0 -201678836,"Combat Monsters",purchase,1.0,0 -201678836,"Defiance",purchase,1.0,0 -201678836,"Face of Mankind",purchase,1.0,0 -201678836,"Fallen Earth",purchase,1.0,0 -201678836,"Firefall",purchase,1.0,0 -201678836,"FreeStyle2 Street Basketball",purchase,1.0,0 -201678836,"Gotham City Impostors Free To Play",purchase,1.0,0 -201678836,"GunZ 2 The Second Duel",purchase,1.0,0 -201678836,"HAWKEN",purchase,1.0,0 -201678836,"Heroes & Generals",purchase,1.0,0 -201678836,"Marvel Heroes 2015",purchase,1.0,0 -201678836,"Neverwinter",purchase,1.0,0 -201678836,"Nosgoth",purchase,1.0,0 -201678836,"PlanetSide 2",purchase,1.0,0 -201678836,"Quake Live",purchase,1.0,0 -201678836,"Realm of the Mad God",purchase,1.0,0 -201678836,"RIFT",purchase,1.0,0 -201678836,"Robocraft",purchase,1.0,0 -201678836,"Royal Quest",purchase,1.0,0 -201678836,"Spiral Knights",purchase,1.0,0 -201678836,"Star Trek Online",purchase,1.0,0 -201678836,"Tactical Intervention",purchase,1.0,0 -201678836,"TERA",purchase,1.0,0 -201678836,"theHunter",purchase,1.0,0 -201678836,"The Lord of the Rings Online",purchase,1.0,0 -201678836,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -201678836,"Warframe",purchase,1.0,0 -201678836,"War Thunder",purchase,1.0,0 -71760673,"Left 4 Dead",purchase,1.0,0 -71760673,"Left 4 Dead",play,2.2,0 -192204940,"The Expendabros",purchase,1.0,0 -192204940,"The Expendabros",play,0.4,0 -197642964,"Dota 2",purchase,1.0,0 -197642964,"Dota 2",play,9.2,0 -273901604,"Construction-Simulator 2015",purchase,1.0,0 -273901604,"Construction-Simulator 2015",play,31.0,0 -273901604,"Construction Simulator 2015 Liebherr 150 EC-B",purchase,1.0,0 -273901604,"Construction Simulator 2015 Vertical Skyline",purchase,1.0,0 -142001485,"Team Fortress 2",purchase,1.0,0 -142001485,"Team Fortress 2",play,16.1,0 -211267410,"Wolfenstein The New Order",purchase,1.0,0 -211267410,"Wolfenstein The New Order",play,27.0,0 -211267410,"Call of Duty Advanced Warfare",purchase,1.0,0 -211267410,"Call of Duty Advanced Warfare",play,9.5,0 -211267410,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -33300480,"Half-Life 2 Episode One",purchase,1.0,0 -33300480,"Half-Life 2 Episode One",play,3.1,0 -33300480,"Half-Life 2",purchase,1.0,0 -33300480,"Half-Life 2",play,1.8,0 -33300480,"Portal",purchase,1.0,0 -33300480,"Portal",play,0.8,0 -33300480,"Half-Life 2 Episode Two",purchase,1.0,0 -33300480,"Half-Life 2 Lost Coast",purchase,1.0,0 -191592097,"Stronghold 3",purchase,1.0,0 -191592097,"Stronghold 3",play,16.2,0 -191592097,"Mortal Online",purchase,1.0,0 -191592097,"Stronghold HD",purchase,1.0,0 -88344296,"Left 4 Dead 2",purchase,1.0,0 -88344296,"Left 4 Dead 2",play,25.0,0 -88344296,"Torchlight II",purchase,1.0,0 -88344296,"Torchlight II",play,12.1,0 -88344296,"Warframe",purchase,1.0,0 -88344296,"Warframe",play,11.4,0 -88344296,"Portal 2",purchase,1.0,0 -88344296,"Portal 2",play,9.7,0 -88344296,"Team Fortress 2",purchase,1.0,0 -88344296,"Team Fortress 2",play,9.6,0 -88344296,"Star Trek Online",purchase,1.0,0 -88344296,"Star Trek Online",play,6.9,0 -88344296,"Warface",purchase,1.0,0 -88344296,"Warface",play,6.1,0 -88344296,"Stronghold Crusader HD",purchase,1.0,0 -88344296,"Stronghold Crusader HD",play,4.8,0 -88344296,"Darksiders",purchase,1.0,0 -88344296,"Darksiders",play,3.3,0 -88344296,"Borderlands 2",purchase,1.0,0 -88344296,"Borderlands 2",play,2.8,0 -88344296,"Alien Swarm",purchase,1.0,0 -88344296,"Alien Swarm",play,2.8,0 -88344296,"Saints Row The Third",purchase,1.0,0 -88344296,"Saints Row The Third",play,2.7,0 -88344296,"Stronghold 3",purchase,1.0,0 -88344296,"Stronghold 3",play,2.1,0 -88344296,"Unturned",purchase,1.0,0 -88344296,"Unturned",play,2.0,0 -88344296,"Serious Sam HD The First Encounter",purchase,1.0,0 -88344296,"Serious Sam HD The First Encounter",play,1.8,0 -88344296,"Dota 2",purchase,1.0,0 -88344296,"Dota 2",play,1.7,0 -88344296,"Red Faction Armageddon",purchase,1.0,0 -88344296,"Red Faction Armageddon",play,1.1,0 -88344296,"Stronghold Legends",purchase,1.0,0 -88344296,"Stronghold Legends",play,0.8,0 -88344296,"Titan Quest",purchase,1.0,0 -88344296,"Titan Quest",play,0.6,0 -88344296,"Stronghold HD",purchase,1.0,0 -88344296,"Stronghold HD",play,0.5,0 -88344296,"Metro 2033",purchase,1.0,0 -88344296,"Metro 2033",play,0.4,0 -88344296,"Stronghold 2",purchase,1.0,0 -88344296,"Stronghold 2",play,0.2,0 -88344296,"Stronghold Crusader Extreme HD",purchase,1.0,0 -88344296,"Pinball FX2",purchase,1.0,0 -88344296,"Company of Heroes",purchase,1.0,0 -88344296,"Company of Heroes (New Steam Version)",purchase,1.0,0 -88344296,"Company of Heroes Opposing Fronts",purchase,1.0,0 -88344296,"Company of Heroes Tales of Valor",purchase,1.0,0 -88344296,"Fistful of Frags",purchase,1.0,0 -88344296,"War Thunder",purchase,1.0,0 -223124802,"Dota 2",purchase,1.0,0 -223124802,"Dota 2",play,1.6,0 -223124802,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -298215805,"Unturned",purchase,1.0,0 -214252753,"Team Fortress 2",purchase,1.0,0 -214252753,"Team Fortress 2",play,3.0,0 -116325720,"The Elder Scrolls V Skyrim",purchase,1.0,0 -116325720,"The Elder Scrolls V Skyrim",play,119.0,0 -116325720,"XCOM Enemy Unknown",purchase,1.0,0 -116325720,"XCOM Enemy Unknown",play,41.0,0 -116325720,"The Witcher Enhanced Edition",purchase,1.0,0 -116325720,"The Witcher Enhanced Edition",play,28.0,0 -116325720,"Portal 2",purchase,1.0,0 -116325720,"Portal 2",play,16.0,0 -116325720,"DmC Devil May Cry",purchase,1.0,0 -116325720,"DmC Devil May Cry",play,11.0,0 -116325720,"Portal",purchase,1.0,0 -116325720,"Portal",play,5.7,0 -116325720,"Sid Meier's Civilization V",purchase,1.0,0 -116325720,"Sid Meier's Civilization V",play,5.5,0 -116325720,"Devil May Cry 4",purchase,1.0,0 -116325720,"Devil May Cry 4",play,4.6,0 -116325720,"Assassin's Creed II",purchase,1.0,0 -116325720,"Assassin's Creed II",play,3.5,0 -116325720,"BioShock",purchase,1.0,0 -116325720,"BioShock",play,0.1,0 -116325720,"Half-Life 2",purchase,1.0,0 -116325720,"Assassin's Creed Brotherhood",purchase,1.0,0 -116325720,"Assassin's Creed Revelations",purchase,1.0,0 -116325720,"Assassin's Creed III",purchase,1.0,0 -116325720,"BioShock 2",purchase,1.0,0 -116325720,"BioShock Infinite",purchase,1.0,0 -116325720,"BioShock Infinite - Season Pass",purchase,1.0,0 -116325720,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -116325720,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -116325720,"Far Cry 3",purchase,1.0,0 -116325720,"Left 4 Dead 2",purchase,1.0,0 -116325720,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -116325720,"Sniper Elite V2",purchase,1.0,0 -116325720,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -116325720,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -116325720,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -116325720,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -116325720,"XCOM Enemy Within",purchase,1.0,0 -86635197,"Team Fortress 2",purchase,1.0,0 -86635197,"Team Fortress 2",play,2.6,0 -9128105,"Team Fortress 2",purchase,1.0,0 -9128105,"Team Fortress 2",play,206.0,0 -9128105,"Dragon Age II",purchase,1.0,0 -9128105,"Dragon Age II",play,153.0,0 -9128105,"Dragon Age Origins",purchase,1.0,0 -9128105,"Dragon Age Origins",play,132.0,0 -9128105,"The Elder Scrolls V Skyrim",purchase,1.0,0 -9128105,"The Elder Scrolls V Skyrim",play,118.0,0 -9128105,"Farming Simulator 2013",purchase,1.0,0 -9128105,"Farming Simulator 2013",play,81.0,0 -9128105,"Farming Simulator 15",purchase,1.0,0 -9128105,"Farming Simulator 15",play,59.0,0 -9128105,"Kerbal Space Program",purchase,1.0,0 -9128105,"Kerbal Space Program",play,57.0,0 -9128105,"Majesty 2",purchase,1.0,0 -9128105,"Majesty 2",play,56.0,0 -9128105,"Prison Architect",purchase,1.0,0 -9128105,"Prison Architect",play,54.0,0 -9128105,"Mass Effect 2",purchase,1.0,0 -9128105,"Mass Effect 2",play,46.0,0 -9128105,"Defense Grid The Awakening",purchase,1.0,0 -9128105,"Defense Grid The Awakening",play,44.0,0 -9128105,"Mad Max",purchase,1.0,0 -9128105,"Mad Max",play,41.0,0 -9128105,"Borderlands 2",purchase,1.0,0 -9128105,"Borderlands 2",play,41.0,0 -9128105,"DC Universe Online",purchase,1.0,0 -9128105,"DC Universe Online",play,38.0,0 -9128105,"Tropico 4",purchase,1.0,0 -9128105,"Tropico 4",play,35.0,0 -9128105,"Divinity II - The Dragon Knight Saga",purchase,1.0,0 -9128105,"Divinity II - The Dragon Knight Saga",play,33.0,0 -9128105,"Deus Ex Human Revolution",purchase,1.0,0 -9128105,"Deus Ex Human Revolution",play,31.0,0 -9128105,"Torchlight II",purchase,1.0,0 -9128105,"Torchlight II",play,30.0,0 -9128105,"Anno 2070",purchase,1.0,0 -9128105,"Anno 2070",play,27.0,0 -9128105,"Prototype",purchase,1.0,0 -9128105,"Prototype",play,27.0,0 -9128105,"Cities Skylines",purchase,1.0,0 -9128105,"Cities Skylines",play,25.0,0 -9128105,"EVE Online",purchase,1.0,0 -9128105,"EVE Online",play,24.0,0 -9128105,"Assassin's Creed III",purchase,1.0,0 -9128105,"Assassin's Creed III",play,24.0,0 -9128105,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -9128105,"Red Faction Guerrilla Steam Edition",play,24.0,0 -9128105,"Fallout 4",purchase,1.0,0 -9128105,"Fallout 4",play,21.0,0 -9128105,"Evil Genius",purchase,1.0,0 -9128105,"Evil Genius",play,21.0,0 -9128105,"Company of Heroes",purchase,1.0,0 -9128105,"Company of Heroes",play,20.0,0 -9128105,"DiRT 2",purchase,1.0,0 -9128105,"DiRT 2",play,19.8,0 -9128105,"Darksiders",purchase,1.0,0 -9128105,"Darksiders",play,19.5,0 -9128105,"Sleeping Dogs",purchase,1.0,0 -9128105,"Sleeping Dogs",play,18.0,0 -9128105,"Mass Effect",purchase,1.0,0 -9128105,"Mass Effect",play,17.3,0 -9128105,"XCOM Enemy Unknown",purchase,1.0,0 -9128105,"XCOM Enemy Unknown",play,16.9,0 -9128105,"Spintires",purchase,1.0,0 -9128105,"Spintires",play,16.7,0 -9128105,"Batman Arkham Origins",purchase,1.0,0 -9128105,"Batman Arkham Origins",play,16.6,0 -9128105,"The Lord of the Rings War in the North",purchase,1.0,0 -9128105,"The Lord of the Rings War in the North",play,16.2,0 -9128105,"Farming Simulator 2011",purchase,1.0,0 -9128105,"Farming Simulator 2011",play,15.7,0 -9128105,"Tomb Raider",purchase,1.0,0 -9128105,"Tomb Raider",play,15.3,0 -9128105,"GRID",purchase,1.0,0 -9128105,"GRID",play,15.3,0 -9128105,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -9128105,"Warhammer 40,000 Dawn of War II",play,15.2,0 -9128105,"Darksiders II",purchase,1.0,0 -9128105,"Darksiders II",play,15.0,0 -9128105,"BioShock Infinite",purchase,1.0,0 -9128105,"BioShock Infinite",play,14.6,0 -9128105,"GRID 2",purchase,1.0,0 -9128105,"GRID 2",play,14.4,0 -9128105,"Pirates of Black Cove",purchase,1.0,0 -9128105,"Pirates of Black Cove",play,14.3,0 -9128105,"Car Mechanic Simulator 2015",purchase,1.0,0 -9128105,"Car Mechanic Simulator 2015",play,14.2,0 -9128105,"FINAL FANTASY XIII",purchase,1.0,0 -9128105,"FINAL FANTASY XIII",play,14.1,0 -9128105,"Driver San Francisco",purchase,1.0,0 -9128105,"Driver San Francisco",play,13.9,0 -9128105,"Mafia II",purchase,1.0,0 -9128105,"Mafia II",play,12.6,0 -9128105,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -9128105,"Tropico 3 - Steam Special Edition",play,12.3,0 -9128105,"Torchlight",purchase,1.0,0 -9128105,"Torchlight",play,12.1,0 -9128105,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -9128105,"Dark Souls Prepare to Die Edition",play,12.1,0 -9128105,"Impire",purchase,1.0,0 -9128105,"Impire",play,11.8,0 -9128105,"Tomb Raider Underworld",purchase,1.0,0 -9128105,"Tomb Raider Underworld",play,11.4,0 -9128105,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -9128105,"The Witcher 2 Assassins of Kings Enhanced Edition",play,11.0,0 -9128105,"F1 2010",purchase,1.0,0 -9128105,"F1 2010",play,10.7,0 -9128105,"Divinity Original Sin",purchase,1.0,0 -9128105,"Divinity Original Sin",play,10.5,0 -9128105,"DmC Devil May Cry",purchase,1.0,0 -9128105,"DmC Devil May Cry",play,10.4,0 -9128105,"Need for Speed Hot Pursuit",purchase,1.0,0 -9128105,"Need for Speed Hot Pursuit",play,10.3,0 -9128105,"Fallout 3",purchase,1.0,0 -9128105,"Fallout 3",play,10.2,0 -9128105,"DiRT 3",purchase,1.0,0 -9128105,"DiRT 3",play,10.2,0 -9128105,"Prime World Defenders",purchase,1.0,0 -9128105,"Prime World Defenders",play,9.8,0 -9128105,"RAGE",purchase,1.0,0 -9128105,"RAGE",play,9.8,0 -9128105,"Brothers in Arms Hell's Highway",purchase,1.0,0 -9128105,"Brothers in Arms Hell's Highway",play,9.4,0 -9128105,"The Last Remnant",purchase,1.0,0 -9128105,"The Last Remnant",play,9.3,0 -9128105,"Hitman Blood Money",purchase,1.0,0 -9128105,"Hitman Blood Money",play,9.1,0 -9128105,"Grand Theft Auto V",purchase,1.0,0 -9128105,"Grand Theft Auto V",play,8.6,0 -9128105,"Trine",purchase,1.0,0 -9128105,"Trine",play,8.1,0 -9128105,"Dishonored",purchase,1.0,0 -9128105,"Dishonored",play,7.9,0 -9128105,"Brtal Legend",purchase,1.0,0 -9128105,"Brtal Legend",play,7.6,0 -9128105,"GRID Autosport",purchase,1.0,0 -9128105,"GRID Autosport",play,7.4,0 -9128105,"Shift 2 Unleashed",purchase,1.0,0 -9128105,"Shift 2 Unleashed",play,7.4,0 -9128105,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -9128105,"Star Wars - Jedi Knight II Jedi Outcast",play,7.2,0 -9128105,"Portal 2",purchase,1.0,0 -9128105,"Portal 2",play,7.2,0 -9128105,"Command and Conquer Red Alert 3",purchase,1.0,0 -9128105,"Command and Conquer Red Alert 3",play,6.7,0 -9128105,"Stronghold 2",purchase,1.0,0 -9128105,"Stronghold 2",play,6.6,0 -9128105,"Ghostbusters The Video Game",purchase,1.0,0 -9128105,"Ghostbusters The Video Game",play,6.2,0 -9128105,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -9128105,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,6.0,0 -9128105,"RIFT",purchase,1.0,0 -9128105,"RIFT",play,5.9,0 -9128105,"Alpha Protocol",purchase,1.0,0 -9128105,"Alpha Protocol",play,5.7,0 -9128105,"Of Orcs And Men",purchase,1.0,0 -9128105,"Of Orcs And Men",play,5.6,0 -9128105,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -9128105,"Call of Duty 4 Modern Warfare",play,5.3,0 -9128105,"You Need A Budget 4 (YNAB)",purchase,1.0,0 -9128105,"You Need A Budget 4 (YNAB)",play,5.2,0 -9128105,"Counter-Strike Global Offensive",purchase,1.0,0 -9128105,"Counter-Strike Global Offensive",play,5.1,0 -9128105,"Train Simulator",purchase,1.0,0 -9128105,"Train Simulator",play,5.1,0 -9128105,"Serious Sam 3 BFE",purchase,1.0,0 -9128105,"Serious Sam 3 BFE",play,4.9,0 -9128105,"Sniper Elite V2",purchase,1.0,0 -9128105,"Sniper Elite V2",play,4.8,0 -9128105,"Dead Island",purchase,1.0,0 -9128105,"Dead Island",play,4.6,0 -9128105,"F1 2012",purchase,1.0,0 -9128105,"F1 2012",play,4.4,0 -9128105,"Portal",purchase,1.0,0 -9128105,"Portal",play,4.4,0 -9128105,"SpellForce 2 Gold Edition",purchase,1.0,0 -9128105,"SpellForce 2 Gold Edition",play,4.1,0 -9128105,"Assassin's Creed",purchase,1.0,0 -9128105,"Assassin's Creed",play,3.5,0 -9128105,"Cogs",purchase,1.0,0 -9128105,"Cogs",play,3.5,0 -9128105,"Half-Life 2",purchase,1.0,0 -9128105,"Half-Life 2",play,3.4,0 -9128105,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -9128105,"METAL GEAR RISING REVENGEANCE",play,3.4,0 -9128105,"Serious Sam HD The First Encounter",purchase,1.0,0 -9128105,"Serious Sam HD The First Encounter",play,3.2,0 -9128105,"Alan Wake",purchase,1.0,0 -9128105,"Alan Wake",play,3.1,0 -9128105,"F1 2011",purchase,1.0,0 -9128105,"F1 2011",play,2.9,0 -9128105,"Overlord",purchase,1.0,0 -9128105,"Overlord",play,2.8,0 -9128105,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -9128105,"Divinity Original Sin Enhanced Edition",play,2.7,0 -9128105,"Oil Rush",purchase,1.0,0 -9128105,"Oil Rush",play,2.5,0 -9128105,"RACE 07",purchase,1.0,0 -9128105,"RACE 07",play,2.4,0 -9128105,"Age of Empires III Complete Collection",purchase,1.0,0 -9128105,"Age of Empires III Complete Collection",play,2.2,0 -9128105,"Next Car Game Wreckfest",purchase,1.0,0 -9128105,"Next Car Game Wreckfest",play,2.1,0 -9128105,"Hitman Absolution",purchase,1.0,0 -9128105,"Hitman Absolution",play,2.1,0 -9128105,"Just Cause 2",purchase,1.0,0 -9128105,"Just Cause 2",play,2.1,0 -9128105,"Earth 2160",purchase,1.0,0 -9128105,"Earth 2160",play,2.0,0 -9128105,"Anomaly Warzone Earth",purchase,1.0,0 -9128105,"Anomaly Warzone Earth",play,2.0,0 -9128105,"Quantum Conundrum",purchase,1.0,0 -9128105,"Quantum Conundrum",play,2.0,0 -9128105,"Helicopter Simulator 2014 Search and Rescue",purchase,1.0,0 -9128105,"Helicopter Simulator 2014 Search and Rescue",play,1.9,0 -9128105,"Far Cry 3",purchase,1.0,0 -9128105,"Far Cry 3",play,1.9,0 -9128105,"Alice Madness Returns",purchase,1.0,0 -9128105,"Alice Madness Returns",play,1.9,0 -9128105,"World of Goo",purchase,1.0,0 -9128105,"World of Goo",play,1.8,0 -9128105,"BeamNG.drive",purchase,1.0,0 -9128105,"BeamNG.drive",play,1.8,0 -9128105,"Star Wars Republic Commando",purchase,1.0,0 -9128105,"Star Wars Republic Commando",play,1.8,0 -9128105,"Penumbra Black Plague",purchase,1.0,0 -9128105,"Penumbra Black Plague",play,1.7,0 -9128105,"Spec Ops The Line",purchase,1.0,0 -9128105,"Spec Ops The Line",play,1.6,0 -9128105,"Machinarium",purchase,1.0,0 -9128105,"Machinarium",play,1.5,0 -9128105,"Defense Grid 2",purchase,1.0,0 -9128105,"Defense Grid 2",play,1.5,0 -9128105,"Remember Me",purchase,1.0,0 -9128105,"Remember Me",play,1.4,0 -9128105,"CastleStorm",purchase,1.0,0 -9128105,"CastleStorm",play,1.3,0 -9128105,"Max Payne 3",purchase,1.0,0 -9128105,"Max Payne 3",play,1.3,0 -9128105,"The Cave",purchase,1.0,0 -9128105,"The Cave",play,1.2,0 -9128105,"The Talos Principle",purchase,1.0,0 -9128105,"The Talos Principle",play,1.1,0 -9128105,"Castlevania Lords of Shadow - Ultimate Edition",purchase,1.0,0 -9128105,"Castlevania Lords of Shadow - Ultimate Edition",play,1.1,0 -9128105,"Pillars of Eternity",purchase,1.0,0 -9128105,"Pillars of Eternity",play,1.1,0 -9128105,"Mars War Logs",purchase,1.0,0 -9128105,"Mars War Logs",play,0.9,0 -9128105,"Besiege",purchase,1.0,0 -9128105,"Besiege",play,0.9,0 -9128105,"Shadowgrounds",purchase,1.0,0 -9128105,"Shadowgrounds",play,0.9,0 -9128105,"The Witcher Enhanced Edition",purchase,1.0,0 -9128105,"The Witcher Enhanced Edition",play,0.8,0 -9128105,"Warframe",purchase,1.0,0 -9128105,"Warframe",play,0.8,0 -9128105,"The Walking Dead",purchase,1.0,0 -9128105,"The Walking Dead",play,0.8,0 -9128105,"Zeno Clash",purchase,1.0,0 -9128105,"Zeno Clash",play,0.8,0 -9128105,"Euro Truck Simulator 2",purchase,1.0,0 -9128105,"Euro Truck Simulator 2",play,0.8,0 -9128105,"Zombie Driver",purchase,1.0,0 -9128105,"Zombie Driver",play,0.8,0 -9128105,"Greed Corp",purchase,1.0,0 -9128105,"Greed Corp",play,0.8,0 -9128105,"Hydrophobia Prophecy",purchase,1.0,0 -9128105,"Hydrophobia Prophecy",play,0.7,0 -9128105,"Counter-Strike Source",purchase,1.0,0 -9128105,"Counter-Strike Source",play,0.7,0 -9128105,"Assetto Corsa",purchase,1.0,0 -9128105,"Assetto Corsa",play,0.7,0 -9128105,"Emergency 2014",purchase,1.0,0 -9128105,"Emergency 2014",play,0.7,0 -9128105,"King Arthur Collection",purchase,1.0,0 -9128105,"King Arthur Collection",play,0.7,0 -9128105,"Valkyria Chronicles",purchase,1.0,0 -9128105,"Valkyria Chronicles",play,0.6,0 -9128105,"Iron Brigade",purchase,1.0,0 -9128105,"Iron Brigade",play,0.5,0 -9128105,"Dota 2",purchase,1.0,0 -9128105,"Dota 2",play,0.5,0 -9128105,"Alien Swarm",purchase,1.0,0 -9128105,"Alien Swarm",play,0.5,0 -9128105,"Dead Space",purchase,1.0,0 -9128105,"Dead Space",play,0.5,0 -9128105,"Titan Quest",purchase,1.0,0 -9128105,"Titan Quest",play,0.5,0 -9128105,"Metro 2033",purchase,1.0,0 -9128105,"Metro 2033",play,0.5,0 -9128105,"Battlefield Bad Company 2",purchase,1.0,0 -9128105,"Battlefield Bad Company 2",play,0.5,0 -9128105,"LEGO Worlds",purchase,1.0,0 -9128105,"LEGO Worlds",play,0.4,0 -9128105,"DUNGEONS - Steam Special Edition",purchase,1.0,0 -9128105,"DUNGEONS - Steam Special Edition",play,0.4,0 -9128105,"Unmechanical",purchase,1.0,0 -9128105,"Unmechanical",play,0.4,0 -9128105,"DiRT Showdown",purchase,1.0,0 -9128105,"DiRT Showdown",play,0.4,0 -9128105,"Tales of Monkey Island Chapter 1 - Launch of the Screaming Narwhal",purchase,1.0,0 -9128105,"Tales of Monkey Island Chapter 1 - Launch of the Screaming Narwhal",play,0.4,0 -9128105,"Krater",purchase,1.0,0 -9128105,"Krater",play,0.4,0 -9128105,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -9128105,"RollerCoaster Tycoon 3 Platinum!",play,0.4,0 -9128105,"Transformers War for Cybertron",purchase,1.0,0 -9128105,"Transformers War for Cybertron",play,0.3,0 -9128105,"Space Engineers",purchase,1.0,0 -9128105,"Space Engineers",play,0.3,0 -9128105,"Castle Crashers",purchase,1.0,0 -9128105,"Castle Crashers",play,0.3,0 -9128105,"Forge",purchase,1.0,0 -9128105,"Forge",play,0.2,0 -9128105,"Deadlight",purchase,1.0,0 -9128105,"Deadlight",play,0.2,0 -9128105,"Trine 2",purchase,1.0,0 -9128105,"Trine 2",play,0.2,0 -9128105,"World in Conflict Soviet Assault",purchase,1.0,0 -9128105,"World in Conflict Soviet Assault",play,0.1,0 -9128105,"Shattered Horizon",purchase,1.0,0 -9128105,"Lego Star Wars Saga",purchase,1.0,0 -9128105,"RACE On",purchase,1.0,0 -9128105,"The Ball",purchase,1.0,0 -9128105,"Arx Fatalis",purchase,1.0,0 -9128105,"Brothers - A Tale of Two Sons",purchase,1.0,0 -9128105,"Car Mechanic Simulator 2015 - Visual Tuning",purchase,1.0,0 -9128105,"Car Mechanic Simulator 2015 - Youngtimer",purchase,1.0,0 -9128105,"Cities XL Platinum",purchase,1.0,0 -9128105,"Command and Conquer 3 Kane's Wrath",purchase,1.0,0 -9128105,"Command and Conquer 3 Tiberium Wars",purchase,1.0,0 -9128105,"Command and Conquer 4 Tiberian Twilight",purchase,1.0,0 -9128105,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -9128105,"Company of Heroes (New Steam Version)",purchase,1.0,0 -9128105,"Company of Heroes Opposing Fronts",purchase,1.0,0 -9128105,"Company of Heroes Tales of Valor",purchase,1.0,0 -9128105,"Counter-Strike",purchase,1.0,0 -9128105,"Counter-Strike Condition Zero",purchase,1.0,0 -9128105,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -9128105,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -9128105,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -9128105,"Day of Defeat",purchase,1.0,0 -9128105,"Day of Defeat Source",purchase,1.0,0 -9128105,"Deadlight Original Soundtrack",purchase,1.0,0 -9128105,"Deathmatch Classic",purchase,1.0,0 -9128105,"Defense Grid 2 A Matter of Endurance",purchase,1.0,0 -9128105,"Defense Grid Resurgence Map Pack 1",purchase,1.0,0 -9128105,"Defense Grid Resurgence Map Pack 2 ",purchase,1.0,0 -9128105,"Defense Grid Resurgence Map Pack 3",purchase,1.0,0 -9128105,"Defense Grid Resurgence Map Pack 4",purchase,1.0,0 -9128105,"Deus Ex Game of the Year Edition",purchase,1.0,0 -9128105,"Deus Ex Invisible War",purchase,1.0,0 -9128105,"DiRT 3 Complete Edition",purchase,1.0,0 -9128105,"Divinity II Developer's Cut",purchase,1.0,0 -9128105,"Dungeon Defenders",purchase,1.0,0 -9128105,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -9128105,"Fable - The Lost Chapters",purchase,1.0,0 -9128105,"Far Cry 2",purchase,1.0,0 -9128105,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -9128105,"Far Cry 3 Blood Dragon",purchase,1.0,0 -9128105,"FTL Faster Than Light",purchase,1.0,0 -9128105,"Gone Home",purchase,1.0,0 -9128105,"Half-Life",purchase,1.0,0 -9128105,"Half-Life 2 Deathmatch",purchase,1.0,0 -9128105,"Half-Life 2 Episode One",purchase,1.0,0 -9128105,"Half-Life 2 Episode Two",purchase,1.0,0 -9128105,"Half-Life 2 Lost Coast",purchase,1.0,0 -9128105,"Half-Life Blue Shift",purchase,1.0,0 -9128105,"Half-Life Opposing Force",purchase,1.0,0 -9128105,"Half-Life Source",purchase,1.0,0 -9128105,"Half-Life Deathmatch Source",purchase,1.0,0 -9128105,"Hitman Sniper Challenge",purchase,1.0,0 -9128105,"How to Survive",purchase,1.0,0 -9128105,"Killing Floor",purchase,1.0,0 -9128105,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -9128105,"L.A. Noire",purchase,1.0,0 -9128105,"Lara Croft and the Guardian of Light",purchase,1.0,0 -9128105,"Left 4 Dead",purchase,1.0,0 -9128105,"Left 4 Dead 2",purchase,1.0,0 -9128105,"M.U.D. TV",purchase,1.0,0 -9128105,"Majesty Gold Edition",purchase,1.0,0 -9128105,"Majesty Gold HD",purchase,1.0,0 -9128105,"Mark of the Ninja",purchase,1.0,0 -9128105,"Midnight Club II",purchase,1.0,0 -9128105,"Mirror's Edge",purchase,1.0,0 -9128105,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -9128105,"Overlord Raising Hell",purchase,1.0,0 -9128105,"Overlord II",purchase,1.0,0 -9128105,"Papo & Yo",purchase,1.0,0 -9128105,"Penumbra Overture",purchase,1.0,0 -9128105,"Penumbra Requiem",purchase,1.0,0 -9128105,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -9128105,"Prey",purchase,1.0,0 -9128105,"Prince of Persia",purchase,1.0,0 -9128105,"Q.U.B.E.",purchase,1.0,0 -9128105,"Q.U.B.E Director's Cut",purchase,1.0,0 -9128105,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -9128105,"Rag Doll Kung Fu",purchase,1.0,0 -9128105,"Ricochet",purchase,1.0,0 -9128105,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -9128105,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -9128105,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -9128105,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -9128105,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -9128105,"Sid Meier's Civilization V",purchase,1.0,0 -9128105,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -9128105,"SpellForce Platinum Edition",purchase,1.0,0 -9128105,"STCC The Game",purchase,1.0,0 -9128105,"Stronghold Crusader Extreme HD",purchase,1.0,0 -9128105,"Stronghold Crusader HD",purchase,1.0,0 -9128105,"Stronghold HD",purchase,1.0,0 -9128105,"Stronghold Legends",purchase,1.0,0 -9128105,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -9128105,"Surgeon Simulator",purchase,1.0,0 -9128105,"Take On Helicopters",purchase,1.0,0 -9128105,"Tales of Monkey Island Chapter 2 - The Siege of Spinner Cay ",purchase,1.0,0 -9128105,"Tales of Monkey Island Chapter 3 - Lair of the Leviathan ",purchase,1.0,0 -9128105,"Tales of Monkey Island Chapter 4 - The Trial and Execution of Guybrush Threepwood ",purchase,1.0,0 -9128105,"Tales of Monkey Island Chapter 5 - Rise of the Pirate God",purchase,1.0,0 -9128105,"Team Fortress Classic",purchase,1.0,0 -9128105,"The LEGO Movie - Videogame",purchase,1.0,0 -9128105,"The Movies",purchase,1.0,0 -9128105,"The Movies Stunts and Effects",purchase,1.0,0 -9128105,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -9128105,"The Stanley Parable",purchase,1.0,0 -9128105,"Titan Quest Immortal Throne",purchase,1.0,0 -9128105,"Tomb Raider Anniversary",purchase,1.0,0 -9128105,"Transistor",purchase,1.0,0 -9128105,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -9128105,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -9128105,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -9128105,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -9128105,"Wargame European Escalation",purchase,1.0,0 -9128105,"Woody Two-Legs Attack of the Zombie Pirates",purchase,1.0,0 -9128105,"World in Conflict",purchase,1.0,0 -282638848,"Team Fortress 2",purchase,1.0,0 -282638848,"Team Fortress 2",play,1.0,0 -282638848,"Warframe",purchase,1.0,0 -282638848,"War Thunder",purchase,1.0,0 -124763074,"Dota 2",purchase,1.0,0 -124763074,"Dota 2",play,964.0,0 -118442089,"Dota 2",purchase,1.0,0 -118442089,"Dota 2",play,1.0,0 -224777419,"Dota 2",purchase,1.0,0 -224777419,"Dota 2",play,0.5,0 -253832736,"War Thunder",purchase,1.0,0 -219589039,"Free to Play",purchase,1.0,0 -219589039,"Pirates, Vikings, & Knights II",purchase,1.0,0 -219589039,"The Way of Life Free Edition",purchase,1.0,0 -147381026,"Dota 2",purchase,1.0,0 -147381026,"Dota 2",play,4.3,0 -201089557,"Source Filmmaker",purchase,1.0,0 -201089557,"Source Filmmaker",play,2.6,0 -204624428,"Counter-Strike Global Offensive",purchase,1.0,0 -204624428,"Counter-Strike Global Offensive",play,171.0,0 -204624428,"Dota 2",purchase,1.0,0 -204624428,"Dota 2",play,146.0,0 -204624428,"Heroes & Generals",purchase,1.0,0 -204624428,"Heroes & Generals",play,0.6,0 -204624428,"FreeStyle2 Street Basketball",purchase,1.0,0 -204624428,"Infinite Crisis",purchase,1.0,0 -204624428,"Karos",purchase,1.0,0 -204624428,"Robotex",purchase,1.0,0 -204624428,"Strife",purchase,1.0,0 -204624428,"Unturned",purchase,1.0,0 -244722763,"Team Fortress 2",purchase,1.0,0 -244722763,"Team Fortress 2",play,0.2,0 -244722763,"Audition Online",purchase,1.0,0 -301070733,"Dota 2",purchase,1.0,0 -301070733,"Dota 2",play,0.2,0 -239444411,"TERA",purchase,1.0,0 -126308758,"Assassin's Creed II",purchase,1.0,0 -126308758,"Assassin's Creed II",play,1.5,0 -194487033,"Dota 2",purchase,1.0,0 -194487033,"Dota 2",play,0.3,0 -194893507,"Counter-Strike Global Offensive",purchase,1.0,0 -194893507,"Counter-Strike Global Offensive",play,1058.0,0 -194893507,"Team Fortress 2",purchase,1.0,0 -194893507,"Team Fortress 2",play,27.0,0 -194893507,"Garry's Mod",purchase,1.0,0 -194893507,"Garry's Mod",play,10.3,0 -194893507,"Dota 2",purchase,1.0,0 -194893507,"Dota 2",play,6.1,0 -194893507,"Mitos.is The Game",purchase,1.0,0 -194893507,"Mitos.is The Game",play,0.6,0 -245005581,"Unturned",purchase,1.0,0 -245005581,"Unturned",play,13.9,0 -79537725,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -79537725,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,2.9,0 -72930582,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -72930582,"Call of Duty Black Ops - Multiplayer",play,61.0,0 -72930582,"Football Manager 2011",purchase,1.0,0 -72930582,"Football Manager 2011",play,12.9,0 -72930582,"Call of Duty Black Ops",purchase,1.0,0 -72930582,"Call of Duty Black Ops",play,8.3,0 -72930582,"Call of Duty Modern Warfare 3",purchase,1.0,0 -72930582,"Call of Duty Modern Warfare 3",play,4.5,0 -72930582,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -72930582,"Call of Duty Modern Warfare 3 - Multiplayer",play,3.8,0 -102623516,"RACE 07",purchase,1.0,0 -102623516,"RACE 07",play,2.1,0 -102623516,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -30548861,"Counter-Strike",purchase,1.0,0 -30548861,"Counter-Strike",play,0.2,0 -30548861,"Counter-Strike Condition Zero",purchase,1.0,0 -30548861,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -30548861,"Day of Defeat",purchase,1.0,0 -30548861,"Deathmatch Classic",purchase,1.0,0 -30548861,"Ricochet",purchase,1.0,0 -53779471,"Counter-Strike",purchase,1.0,0 -53779471,"Counter-Strike",play,1381.0,0 -53779471,"Counter-Strike Global Offensive",purchase,1.0,0 -53779471,"Counter-Strike Global Offensive",play,100.0,0 -53779471,"Sniper Elite V2",purchase,1.0,0 -53779471,"Sniper Elite V2",play,8.6,0 -53779471,"Rocket League",purchase,1.0,0 -53779471,"Rocket League",play,3.0,0 -53779471,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -53779471,"METAL GEAR SOLID V THE PHANTOM PAIN",play,2.7,0 -53779471,"Alien Swarm",purchase,1.0,0 -53779471,"Alien Swarm",play,1.3,0 -53779471,"Day of Defeat",purchase,1.0,0 -53779471,"Day of Defeat",play,0.3,0 -53779471,"Dustforce",purchase,1.0,0 -53779471,"Dustforce",play,0.1,0 -53779471,"Deathmatch Classic",purchase,1.0,0 -53779471,"Counter-Strike Condition Zero",purchase,1.0,0 -53779471,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -53779471,"Pool Nation FX",purchase,1.0,0 -53779471,"Ricochet",purchase,1.0,0 -94982344,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -94982344,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -197732882,"Dota 2",purchase,1.0,0 -197732882,"Dota 2",play,5.8,0 -197732882,"GunZ 2 The Second Duel",purchase,1.0,0 -58724834,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -58724834,"Call of Duty Modern Warfare 2 - Multiplayer",play,825.0,0 -58724834,"Call of Duty Modern Warfare 2",purchase,1.0,0 -58724834,"Call of Duty Modern Warfare 2",play,48.0,0 -58724834,"Heroes & Generals",purchase,1.0,0 -58724834,"Heroes & Generals",play,1.4,0 -203387556,"Mass Effect 2",purchase,1.0,0 -203387556,"Mass Effect 2",play,64.0,0 -203387556,"The Talos Principle",purchase,1.0,0 -203387556,"The Talos Principle",play,39.0,0 -203387556,"One Finger Death Punch",purchase,1.0,0 -203387556,"One Finger Death Punch",play,38.0,0 -203387556,"Star Wars Knights of the Old Republic",purchase,1.0,0 -203387556,"Star Wars Knights of the Old Republic",play,38.0,0 -203387556,"The Stanley Parable",purchase,1.0,0 -203387556,"The Stanley Parable",play,3.1,0 -131785763,"Team Fortress 2",purchase,1.0,0 -131785763,"Team Fortress 2",play,411.0,0 -131785763,"Garry's Mod",purchase,1.0,0 -131785763,"Garry's Mod",play,167.0,0 -131785763,"Counter-Strike Global Offensive",purchase,1.0,0 -131785763,"Counter-Strike Global Offensive",play,112.0,0 -131785763,"Terraria",purchase,1.0,0 -131785763,"Terraria",play,62.0,0 -131785763,"Left 4 Dead 2",purchase,1.0,0 -131785763,"Left 4 Dead 2",play,32.0,0 -131785763,"Combat Arms",purchase,1.0,0 -131785763,"Combat Arms",play,30.0,0 -131785763,"Elsword",purchase,1.0,0 -131785763,"Elsword",play,13.5,0 -131785763,"War Thunder",purchase,1.0,0 -131785763,"War Thunder",play,13.4,0 -131785763,"Soldier Front 2",purchase,1.0,0 -131785763,"Soldier Front 2",play,9.3,0 -131785763,"Warframe",purchase,1.0,0 -131785763,"Warframe",play,7.3,0 -131785763,"Unturned",purchase,1.0,0 -131785763,"Unturned",play,7.3,0 -131785763,"GunZ 2 The Second Duel",purchase,1.0,0 -131785763,"GunZ 2 The Second Duel",play,7.2,0 -131785763,"HAWKEN",purchase,1.0,0 -131785763,"HAWKEN",play,6.9,0 -131785763,"Legendary",purchase,1.0,0 -131785763,"Legendary",play,4.3,0 -131785763,"Cry of Fear",purchase,1.0,0 -131785763,"Cry of Fear",play,3.5,0 -131785763,"Dota 2",purchase,1.0,0 -131785763,"Dota 2",play,3.4,0 -131785763,"PlanetSide 2",purchase,1.0,0 -131785763,"PlanetSide 2",play,2.9,0 -131785763,"Fistful of Frags",purchase,1.0,0 -131785763,"Fistful of Frags",play,2.3,0 -131785763,"Codename CURE",purchase,1.0,0 -131785763,"Codename CURE",play,2.2,0 -131785763,"Marvel Heroes 2015",purchase,1.0,0 -131785763,"Marvel Heroes 2015",play,1.3,0 -131785763,"Path of Exile",purchase,1.0,0 -131785763,"Path of Exile",play,1.3,0 -131785763,"Saints Row The Third",purchase,1.0,0 -131785763,"Saints Row The Third",play,1.0,0 -131785763,"Deepworld",purchase,1.0,0 -131785763,"Deepworld",play,0.9,0 -131785763,"Happy Wars",purchase,1.0,0 -131785763,"Happy Wars",play,0.9,0 -131785763,"Infinite Crisis",purchase,1.0,0 -131785763,"Infinite Crisis",play,0.7,0 -131785763,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -131785763,"Boring Man - Online Tactical Stickman Combat",play,0.7,0 -131785763,"MapleStory",purchase,1.0,0 -131785763,"MapleStory",play,0.6,0 -131785763,"Sacred 2 Gold",purchase,1.0,0 -131785763,"Sacred 2 Gold",play,0.5,0 -131785763,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -131785763,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.4,0 -131785763,"Magicka Wizard Wars",purchase,1.0,0 -131785763,"Magicka Wizard Wars",play,0.4,0 -131785763,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -131785763,"Infinity Wars - Animated Trading Card Game",play,0.4,0 -131785763,"The Way of Life Free Edition",purchase,1.0,0 -131785763,"The Way of Life Free Edition",play,0.3,0 -131785763,"Dragon Nest",purchase,1.0,0 -131785763,"Dragon Nest",play,0.3,0 -131785763,"Trove",purchase,1.0,0 -131785763,"Trove",play,0.2,0 -131785763,"Neverwinter",purchase,1.0,0 -131785763,"Neverwinter",play,0.2,0 -131785763,"Lambda Wars Beta",purchase,1.0,0 -131785763,"Lambda Wars Beta",play,0.2,0 -131785763,"DiggerOnline",purchase,1.0,0 -131785763,"DiggerOnline",play,0.1,0 -131785763,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -131785763,"School of Dragons How to Train Your Dragon",play,0.1,0 -131785763,"ORION Prelude",purchase,1.0,0 -131785763,"ORION Prelude",play,0.1,0 -131785763,"Super Monday Night Combat",purchase,1.0,0 -131785763,"Super Monday Night Combat",play,0.1,0 -131785763,"Spiral Knights",purchase,1.0,0 -131785763,"Risen 2 - Dark Waters",purchase,1.0,0 -131785763,"Archeblade",purchase,1.0,0 -131785763,"Aion",purchase,1.0,0 -131785763,"America's Army Proving Grounds",purchase,1.0,0 -131785763,"ArcheAge",purchase,1.0,0 -131785763,"Aura Kingdom",purchase,1.0,0 -131785763,"Clicker Heroes",purchase,1.0,0 -131785763,"Curse of Mermos",purchase,1.0,0 -131785763,"Dragons and Titans",purchase,1.0,0 -131785763,"Dungeons & Dragons Online",purchase,1.0,0 -131785763,"HIT",purchase,1.0,0 -131785763,"No More Room in Hell",purchase,1.0,0 -131785763,"Saints Row 2",purchase,1.0,0 -131785763,"Strife",purchase,1.0,0 -131785763,"Survarium",purchase,1.0,0 -131785763,"sZone-Online",purchase,1.0,0 -131785763,"TDP5 Arena 3D",purchase,1.0,0 -131785763,"TERA",purchase,1.0,0 -131785763,"Vindictus",purchase,1.0,0 -131785763,"Warface",purchase,1.0,0 -131785763,"World of Guns Gun Disassembly",purchase,1.0,0 -131785763,"Zombies Monsters Robots",purchase,1.0,0 -114881003,"Dota 2",purchase,1.0,0 -114881003,"Dota 2",play,2.0,0 -114881003,"Team Fortress 2",purchase,1.0,0 -114881003,"Team Fortress 2",play,0.5,0 -145052189,"Team Fortress 2",purchase,1.0,0 -145052189,"Team Fortress 2",play,0.5,0 -184034224,"Dota 2",purchase,1.0,0 -184034224,"Dota 2",play,4.3,0 -164611728,"Space Engineers",purchase,1.0,0 -164611728,"Space Engineers",play,40.0,0 -193315427,"Dota 2",purchase,1.0,0 -193315427,"Dota 2",play,37.0,0 -121809665,"Team Fortress 2",purchase,1.0,0 -121809665,"Team Fortress 2",play,39.0,0 -121809665,"Chaos Heroes Online",purchase,1.0,0 -121809665,"Spartans Vs Zombies Defense",purchase,1.0,0 -21015565,"Counter-Strike",purchase,1.0,0 -21015565,"Counter-Strike",play,0.3,0 -21015565,"Counter-Strike Condition Zero",purchase,1.0,0 -21015565,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -21015565,"Day of Defeat",purchase,1.0,0 -21015565,"Deathmatch Classic",purchase,1.0,0 -21015565,"Ricochet",purchase,1.0,0 -206229824,"Sid Meier's Civilization V",purchase,1.0,0 -206229824,"Sid Meier's Civilization V",play,0.8,0 -206229824,"Lost Planet Extreme Condition",purchase,1.0,0 -58217836,"Warframe",purchase,1.0,0 -58217836,"Warframe",play,246.0,0 -58217836,"The Witcher Enhanced Edition",purchase,1.0,0 -58217836,"The Witcher Enhanced Edition",play,96.0,0 -58217836,"Sid Meier's Civilization V",purchase,1.0,0 -58217836,"Sid Meier's Civilization V",play,70.0,0 -58217836,"Terraria",purchase,1.0,0 -58217836,"Terraria",play,44.0,0 -58217836,"Banished",purchase,1.0,0 -58217836,"Banished",play,20.0,0 -58217836,"The Forest",purchase,1.0,0 -58217836,"The Forest",play,10.6,0 -58217836,"Don't Starve Together Beta",purchase,1.0,0 -58217836,"Don't Starve Together Beta",play,6.5,0 -58217836,"Knights and Merchants",purchase,1.0,0 -58217836,"Knights and Merchants",play,5.0,0 -58217836,"Don't Starve",purchase,1.0,0 -58217836,"Don't Starve",play,4.8,0 -58217836,"Age of Empires II HD Edition",purchase,1.0,0 -58217836,"Age of Empires II HD Edition",play,4.5,0 -58217836,"Europa Universalis IV",purchase,1.0,0 -58217836,"Europa Universalis IV",play,3.8,0 -58217836,"Torchlight II",purchase,1.0,0 -58217836,"Torchlight II",play,3.7,0 -58217836,"Borderlands 2",purchase,1.0,0 -58217836,"Borderlands 2",play,3.0,0 -58217836,"Skullgirls",purchase,1.0,0 -58217836,"Skullgirls",play,1.3,0 -58217836,"FINAL FANTASY VII",purchase,1.0,0 -58217836,"FINAL FANTASY VII",play,1.3,0 -58217836,"Total War SHOGUN 2",purchase,1.0,0 -58217836,"Total War SHOGUN 2",play,1.1,0 -58217836,"Magicka Wizards of the Square Tablet",purchase,1.0,0 -58217836,"Magicka Wizards of the Square Tablet",play,0.2,0 -58217836,"Trove",purchase,1.0,0 -58217836,"Trove",play,0.1,0 -58217836,"99 Levels To Hell",purchase,1.0,0 -58217836,"Age of Empires II HD The Forgotten",purchase,1.0,0 -58217836,"Don't Starve Shipwrecked",purchase,1.0,0 -58217836,"Haunted Memories",purchase,1.0,0 -58217836,"Might & Magic Heroes Online",purchase,1.0,0 -58217836,"Oddworld Abe's Exoddus",purchase,1.0,0 -58217836,"Oddworld Abe's Oddysee",purchase,1.0,0 -58217836,"Rune Classic",purchase,1.0,0 -58217836,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -58217836,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -58217836,"TowerFall Ascension",purchase,1.0,0 -252475396,"Dota 2",purchase,1.0,0 -252475396,"Dota 2",play,1.7,0 -252475396,"Unturned",purchase,1.0,0 -127325079,"Football Manager 2015",purchase,1.0,0 -127325079,"Football Manager 2015",play,703.0,0 -127325079,"Counter-Strike Global Offensive",purchase,1.0,0 -127325079,"Counter-Strike Global Offensive",play,495.0,0 -127325079,"Batman Arkham Origins",purchase,1.0,0 -127325079,"Batman Arkham Origins",play,16.4,0 -127325079,"The Elder Scrolls V Skyrim",purchase,1.0,0 -127325079,"The Elder Scrolls V Skyrim",play,5.9,0 -127325079,"PAYDAY 2",purchase,1.0,0 -127325079,"PAYDAY 2",play,1.4,0 -127325079,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -127325079,"The Witcher 2 Assassins of Kings Enhanced Edition",play,1.3,0 -127325079,"Counter-Strike Nexon Zombies",purchase,1.0,0 -127325079,"Counter-Strike Nexon Zombies",play,0.5,0 -127325079,"The Stomping Land",purchase,1.0,0 -127325079,"The Stomping Land",play,0.5,0 -127325079,"Duck Game",purchase,1.0,0 -127325079,"Duck Game",play,0.1,0 -127325079,"Grand Theft Auto IV",purchase,1.0,0 -127325079,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -140943875,"Metro Last Light",purchase,1.0,0 -140943875,"Metro Last Light",play,3.0,0 -95695156,"Killing Floor",purchase,1.0,0 -95695156,"Killing Floor",play,29.0,0 -95695156,"Portal 2",purchase,1.0,0 -95695156,"Portal 2",play,5.1,0 -95695156,"Cubemen",purchase,1.0,0 -95695156,"Cubemen",play,4.2,0 -95695156,"Portal",purchase,1.0,0 -95695156,"Portal",play,3.7,0 -95695156,"Left 4 Dead 2",purchase,1.0,0 -95695156,"Left 4 Dead 2",play,2.7,0 -95695156,"Amnesia The Dark Descent",purchase,1.0,0 -95695156,"Amnesia The Dark Descent",play,1.9,0 -95695156,"Anomaly Warzone Earth",purchase,1.0,0 -95695156,"Anomaly Warzone Earth",play,1.8,0 -95695156,"The Baconing",purchase,1.0,0 -95695156,"The Baconing",play,1.1,0 -95695156,"Driver San Francisco",purchase,1.0,0 -95695156,"Driver San Francisco",play,1.1,0 -95695156,"Team Fortress 2",purchase,1.0,0 -95695156,"Team Fortress 2",play,1.1,0 -95695156,"Lone Survivor The Director's Cut",purchase,1.0,0 -95695156,"Lone Survivor The Director's Cut",play,0.8,0 -95695156,"Dear Esther",purchase,1.0,0 -95695156,"Dear Esther",play,0.5,0 -95695156,"The Binding of Isaac",purchase,1.0,0 -95695156,"The Binding of Isaac",play,0.3,0 -95695156,"Cave Story+",purchase,1.0,0 -95695156,"Cave Story+",play,0.2,0 -95695156,"EDGE",purchase,1.0,0 -95695156,"Splice",purchase,1.0,0 -95695156,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -197966478,"Team Fortress 2",purchase,1.0,0 -197966478,"Team Fortress 2",play,480.0,0 -197966478,"Garry's Mod",purchase,1.0,0 -197966478,"Garry's Mod",play,234.0,0 -197966478,"Source Filmmaker",purchase,1.0,0 -197966478,"Source Filmmaker",play,34.0,0 -197966478,"Counter-Strike Global Offensive",purchase,1.0,0 -197966478,"Counter-Strike Global Offensive",play,17.4,0 -197966478,"Block N Load",purchase,1.0,0 -197966478,"Block N Load",play,16.8,0 -197966478,"FreeStyle2 Street Basketball",purchase,1.0,0 -197966478,"FreeStyle2 Street Basketball",play,13.4,0 -197966478,"No More Room in Hell",purchase,1.0,0 -197966478,"No More Room in Hell",play,13.0,0 -197966478,"Nosgoth",purchase,1.0,0 -197966478,"Nosgoth",play,12.4,0 -197966478,"Poly Bridge",purchase,1.0,0 -197966478,"Poly Bridge",play,11.8,0 -197966478,"The Escapists",purchase,1.0,0 -197966478,"The Escapists",play,11.3,0 -197966478,"Undertale",purchase,1.0,0 -197966478,"Undertale",play,9.8,0 -197966478,"Guns of Icarus Online",purchase,1.0,0 -197966478,"Guns of Icarus Online",play,8.5,0 -197966478,"Space Engineers",purchase,1.0,0 -197966478,"Space Engineers",play,3.9,0 -197966478,"BLOCKADE 3D",purchase,1.0,0 -197966478,"BLOCKADE 3D",play,3.3,0 -197966478,"Loadout",purchase,1.0,0 -197966478,"Loadout",play,2.4,0 -197966478,"Car Mechanic Simulator 2015",purchase,1.0,0 -197966478,"Car Mechanic Simulator 2015",play,1.8,0 -197966478,"Five Nights at Freddy's 2",purchase,1.0,0 -197966478,"Five Nights at Freddy's 2",play,1.4,0 -197966478,"Farming Simulator 15",purchase,1.0,0 -197966478,"Farming Simulator 15",play,1.3,0 -197966478,"Team Fortress Classic",purchase,1.0,0 -197966478,"Team Fortress Classic",play,1.2,0 -197966478,"Papers, Please",purchase,1.0,0 -197966478,"Papers, Please",play,0.8,0 -197966478,"Heroes & Generals",purchase,1.0,0 -197966478,"Heroes & Generals",play,0.8,0 -197966478,"Counter-Strike Source",purchase,1.0,0 -197966478,"Counter-Strike Source",play,0.6,0 -197966478,"Emily is Away",purchase,1.0,0 -197966478,"Emily is Away",play,0.5,0 -197966478,"PlanetSide 2",purchase,1.0,0 -197966478,"PlanetSide 2",play,0.4,0 -197966478,"Bloodline Champions",purchase,1.0,0 -197966478,"Bloodline Champions",play,0.3,0 -197966478,"Football Superstars",purchase,1.0,0 -197966478,"Football Superstars",play,0.3,0 -197966478,"Five Nights at Freddy's 4",purchase,1.0,0 -197966478,"Five Nights at Freddy's 4",play,0.2,0 -197966478,"Anarchy Arcade",purchase,1.0,0 -197966478,"Gear Up",purchase,1.0,0 -197966478,"The Mighty Quest For Epic Loot",purchase,1.0,0 -197966478,"Car Mechanic Simulator 2015 - Youngtimer",purchase,1.0,0 -197966478,"Dead Island Epidemic",purchase,1.0,0 -197966478,"Dirty Bomb",purchase,1.0,0 -197966478,"Dizzel",purchase,1.0,0 -197966478,"Half-Life 2 Update",purchase,1.0,0 -197966478,"Killing Floor Uncovered",purchase,1.0,0 -197966478,"Rising Angels Reborn",purchase,1.0,0 -197966478,"Tactical Intervention",purchase,1.0,0 -197966478,"theHunter",purchase,1.0,0 -197966478,"Unturned",purchase,1.0,0 -197966478,"War Inc. Battlezone",purchase,1.0,0 -143588434,"Dota 2",purchase,1.0,0 -143588434,"Dota 2",play,3.3,0 -186515716,"Unturned",purchase,1.0,0 -186515716,"Unturned",play,2.5,0 -71126210,"Sniper Ghost Warrior",purchase,1.0,0 -71126210,"Sniper Ghost Warrior",play,21.0,0 -173168090,"Counter-Strike Global Offensive",purchase,1.0,0 -173168090,"Counter-Strike Global Offensive",play,44.0,0 -173168090,"CrimeCraft GangWars",purchase,1.0,0 -173168090,"Quake Live",purchase,1.0,0 -292470488,"Dota 2",purchase,1.0,0 -292470488,"Dota 2",play,0.4,0 -292470488,"Counter-Strike Nexon Zombies",purchase,1.0,0 -292470488,"Warframe",purchase,1.0,0 -203222843,"Counter-Strike Global Offensive",purchase,1.0,0 -203222843,"Counter-Strike Global Offensive",play,302.0,0 -203222843,"Dota 2",purchase,1.0,0 -203222843,"Dota 2",play,170.0,0 -203222843,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -203222843,"Just Cause 2 Multiplayer Mod",play,4.4,0 -203222843,"No More Room in Hell",purchase,1.0,0 -203222843,"No More Room in Hell",play,1.7,0 -203222843,"Cry of Fear",purchase,1.0,0 -203222843,"Cry of Fear",play,0.4,0 -203222843,"Just Cause 2",purchase,1.0,0 -203222843,"Just Cause 2",play,0.1,0 -203222843,"AI War Fleet Command",purchase,1.0,0 -203222843,"Blacklight Retribution",purchase,1.0,0 -203222843,"Dead Island Epidemic",purchase,1.0,0 -203222843,"Neverwinter",purchase,1.0,0 -203222843,"Toribash",purchase,1.0,0 -86912006,"Dota 2",purchase,1.0,0 -86912006,"Dota 2",play,2755.0,0 -86912006,"Counter-Strike Global Offensive",purchase,1.0,0 -86912006,"Counter-Strike Global Offensive",play,1016.0,0 -86912006,"Path of Exile",purchase,1.0,0 -86912006,"Path of Exile",play,137.0,0 -86912006,"Clicker Heroes",purchase,1.0,0 -86912006,"Clicker Heroes",play,10.5,0 -86912006,"Warframe",purchase,1.0,0 -86912006,"Warframe",play,5.5,0 -86912006,"Super Hexagon",purchase,1.0,0 -86912006,"Super Hexagon",play,4.7,0 -86912006,"Magicka",purchase,1.0,0 -86912006,"Magicka",play,3.4,0 -86912006,"Sniper Elite V2",purchase,1.0,0 -86912006,"Sniper Elite V2",play,3.3,0 -86912006,"BIT.TRIP RUNNER",purchase,1.0,0 -86912006,"BIT.TRIP RUNNER",play,2.2,0 -86912006,"Arma 3",purchase,1.0,0 -86912006,"Arma 3",play,2.0,0 -86912006,"Garry's Mod",purchase,1.0,0 -86912006,"Garry's Mod",play,1.8,0 -86912006,"Half-Life 2",purchase,1.0,0 -86912006,"Half-Life 2",play,1.7,0 -86912006,"Dungeon Defenders",purchase,1.0,0 -86912006,"Dungeon Defenders",play,1.7,0 -86912006,"Don't Starve Together Beta",purchase,1.0,0 -86912006,"Don't Starve Together Beta",play,1.6,0 -86912006,"Torchlight II",purchase,1.0,0 -86912006,"Torchlight II",play,1.5,0 -86912006,"PAYDAY The Heist",purchase,1.0,0 -86912006,"PAYDAY The Heist",play,1.4,0 -86912006,"Lume",purchase,1.0,0 -86912006,"Lume",play,1.2,0 -86912006,"Left 4 Dead 2",purchase,1.0,0 -86912006,"Left 4 Dead 2",play,0.9,0 -86912006,"Borderlands 2",purchase,1.0,0 -86912006,"Borderlands 2",play,0.9,0 -86912006,"Gumboy Crazy Features",purchase,1.0,0 -86912006,"Gumboy Crazy Features",play,0.9,0 -86912006,"Contagion",purchase,1.0,0 -86912006,"Contagion",play,0.8,0 -86912006,"Defy Gravity",purchase,1.0,0 -86912006,"Defy Gravity",play,0.7,0 -86912006,"Windosill",purchase,1.0,0 -86912006,"Windosill",play,0.6,0 -86912006,"Pid ",purchase,1.0,0 -86912006,"Pid ",play,0.6,0 -86912006,"Worms Ultimate Mayhem",purchase,1.0,0 -86912006,"Worms Ultimate Mayhem",play,0.6,0 -86912006,"Team Fortress 2",purchase,1.0,0 -86912006,"Team Fortress 2",play,0.6,0 -86912006,"Guns of Icarus Online",purchase,1.0,0 -86912006,"Guns of Icarus Online",play,0.5,0 -86912006,"Assassin's Creed Revelations",purchase,1.0,0 -86912006,"Assassin's Creed Revelations",play,0.5,0 -86912006,"Dust An Elysian Tail",purchase,1.0,0 -86912006,"Dust An Elysian Tail",play,0.4,0 -86912006,"Kings Bounty Legions",purchase,1.0,0 -86912006,"Kings Bounty Legions",play,0.4,0 -86912006,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -86912006,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",play,0.4,0 -86912006,"Post Apocalyptic Mayhem",purchase,1.0,0 -86912006,"Post Apocalyptic Mayhem",play,0.3,0 -86912006,"Tower Wars",purchase,1.0,0 -86912006,"Tower Wars",play,0.2,0 -86912006,"Robocraft",purchase,1.0,0 -86912006,"Robocraft",play,0.2,0 -86912006,"Trine",purchase,1.0,0 -86912006,"Trine",play,0.1,0 -86912006,"Obulis",purchase,1.0,0 -86912006,"Unturned",purchase,1.0,0 -86912006,"Famaze",purchase,1.0,0 -86912006,"8BitMMO",purchase,1.0,0 -86912006,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -86912006,"ACE - Arena Cyber Evolution",purchase,1.0,0 -86912006,"Adventures of Shuggy",purchase,1.0,0 -86912006,"Afterfall InSanity Extended Edition",purchase,1.0,0 -86912006,"Age of Conan Unchained - EU version",purchase,1.0,0 -86912006,"Age of Empires II HD Edition",purchase,1.0,0 -86912006,"Age of Empires Online",purchase,1.0,0 -86912006,"AirBuccaneers",purchase,1.0,0 -86912006,"Alpha Prime",purchase,1.0,0 -86912006,"Always Sometimes Monsters Demo",purchase,1.0,0 -86912006,"Amazing World",purchase,1.0,0 -86912006,"America's Army 3",purchase,1.0,0 -86912006,"America's Army Proving Grounds",purchase,1.0,0 -86912006,"Anomaly Warzone Earth",purchase,1.0,0 -86912006,"APB Reloaded",purchase,1.0,0 -86912006,"Arcane Saga Online",purchase,1.0,0 -86912006,"Archeblade",purchase,1.0,0 -86912006,"Arctic Combat",purchase,1.0,0 -86912006,"Arma 2",purchase,1.0,0 -86912006,"Arma 2 Free",purchase,1.0,0 -86912006,"Arma 3 Zeus",purchase,1.0,0 -86912006,"Arma Gold Edition",purchase,1.0,0 -86912006,"Arma Tactics",purchase,1.0,0 -86912006,"Ascend Hand of Kul",purchase,1.0,0 -86912006,"Atlantica Online",purchase,1.0,0 -86912006,"Aura Kingdom",purchase,1.0,0 -86912006,"Avencast",purchase,1.0,0 -86912006,"AXYOS",purchase,1.0,0 -86912006,"Battle Islands",purchase,1.0,0 -86912006,"Battle Nations",purchase,1.0,0 -86912006,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -86912006,"Between IGF Demo",purchase,1.0,0 -86912006,"BioShock",purchase,1.0,0 -86912006,"Blacklight Retribution",purchase,1.0,0 -86912006,"Blob From Space",purchase,1.0,0 -86912006,"Blockstorm",purchase,1.0,0 -86912006,"Bloodline Champions",purchase,1.0,0 -86912006,"Brawl Busters",purchase,1.0,0 -86912006,"Brawlhalla",purchase,1.0,0 -86912006,"Bullet Run",purchase,1.0,0 -86912006,"C9",purchase,1.0,0 -86912006,"Cakewalk Loop Manager",purchase,1.0,0 -86912006,"Calibre 10 Racing Series",purchase,1.0,0 -86912006,"Cannons Lasers Rockets",purchase,1.0,0 -86912006,"Canyon Capers",purchase,1.0,0 -86912006,"Castle",purchase,1.0,0 -86912006,"Chains",purchase,1.0,0 -86912006,"Champions Online",purchase,1.0,0 -86912006,"Chaos Domain",purchase,1.0,0 -86912006,"City of Steam Arkadia",purchase,1.0,0 -86912006,"Clickr",purchase,1.0,0 -86912006,"Coil",purchase,1.0,0 -86912006,"Combat Arms",purchase,1.0,0 -86912006,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -86912006,"Commander Conquest of the Americas Gold",purchase,1.0,0 -86912006,"Commando Jack",purchase,1.0,0 -86912006,"Company of Heroes 2",purchase,1.0,0 -86912006,"Conquest of Champions",purchase,1.0,0 -86912006,"Construct 2 Free",purchase,1.0,0 -86912006,"Crash Time II",purchase,1.0,0 -86912006,"Crazy Machines 2",purchase,1.0,0 -86912006,"CrimeCraft GangWars",purchase,1.0,0 -86912006,"Cry of Fear",purchase,1.0,0 -86912006,"Crystal Rift",purchase,1.0,0 -86912006,"Cubic Castles",purchase,1.0,0 -86912006,"Dead Bits",purchase,1.0,0 -86912006,"Deadbreed",purchase,1.0,0 -86912006,"Deadbreed Undertaker Beta Pack",purchase,1.0,0 -86912006,"Dead Island Epidemic",purchase,1.0,0 -86912006,"Deadlight",purchase,1.0,0 -86912006,"Deadlight Original Soundtrack",purchase,1.0,0 -86912006,"Defiance",purchase,1.0,0 -86912006,"Dethroned!",purchase,1.0,0 -86912006,"Dino D-Day",purchase,1.0,0 -86912006,"District 187",purchase,1.0,0 -86912006,"Divine Souls",purchase,1.0,0 -86912006,"Dizzel",purchase,1.0,0 -86912006,"Dragon's Prophet",purchase,1.0,0 -86912006,"Dragon's Prophet (EU)",purchase,1.0,0 -86912006,"Dragon Nest",purchase,1.0,0 -86912006,"Dragon Nest Europe",purchase,1.0,0 -86912006,"Dragons and Titans",purchase,1.0,0 -86912006,"Driftmoon",purchase,1.0,0 -86912006,"Dungeon Fighter Online",purchase,1.0,0 -86912006,"Dungeonland",purchase,1.0,0 -86912006,"Dungeon Party",purchase,1.0,0 -86912006,"Dungeons & Dragons Online",purchase,1.0,0 -86912006,"Dungeons The Eye of Draconus",purchase,1.0,0 -86912006,"Dwarfs F2P",purchase,1.0,0 -86912006,"East India Company Gold",purchase,1.0,0 -86912006,"Elsword",purchase,1.0,0 -86912006,"Enclave",purchase,1.0,0 -86912006,"EverQuest Free-to-Play",purchase,1.0,0 -86912006,"EverQuest II",purchase,1.0,0 -86912006,"EVGA PrecisionX 16",purchase,1.0,0 -86912006,"Evolution RTS",purchase,1.0,0 -86912006,"Face of Mankind",purchase,1.0,0 -86912006,"Fallen Earth",purchase,1.0,0 -86912006,"Fiesta Online",purchase,1.0,0 -86912006,"Fiesta Online NA",purchase,1.0,0 -86912006,"Firefall",purchase,1.0,0 -86912006,"Fistful of Frags",purchase,1.0,0 -86912006,"Flashout 2",purchase,1.0,0 -86912006,"Floating Point",purchase,1.0,0 -86912006,"Football Superstars",purchase,1.0,0 -86912006,"Forge",purchase,1.0,0 -86912006,"Forsaken World ",purchase,1.0,0 -86912006,"Fractured Space",purchase,1.0,0 -86912006,"Frontline Tactics",purchase,1.0,0 -86912006,"Frozen Hearth",purchase,1.0,0 -86912006,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -86912006,"Galaxy on Fire 2 Full HD",purchase,1.0,0 -86912006,"GEARCRACK Arena",purchase,1.0,0 -86912006,"Gear Up",purchase,1.0,0 -86912006,"Global Agenda",purchase,1.0,0 -86912006,"Glorkian Warrior The Trials Of Glork",purchase,1.0,0 -86912006,"Gotham City Impostors Free To Play",purchase,1.0,0 -86912006,"Grand Chase",purchase,1.0,0 -86912006,"Grass Simulator",purchase,1.0,0 -86912006,"Grimoire Manastorm",purchase,1.0,0 -86912006,"Growing Pains",purchase,1.0,0 -86912006,"GTR Evolution",purchase,1.0,0 -86912006,"Guacamelee! Gold Edition",purchase,1.0,0 -86912006,"Gumboy Crazy Adventures",purchase,1.0,0 -86912006,"Gun Monkeys",purchase,1.0,0 -86912006,"Guns and Robots",purchase,1.0,0 -86912006,"GunZ 2 The Second Duel",purchase,1.0,0 -86912006,"Half-Life 2 Lost Coast",purchase,1.0,0 -86912006,"Happy Wars",purchase,1.0,0 -86912006,"HAWKEN",purchase,1.0,0 -86912006,"Heavy Fire Afghanistan",purchase,1.0,0 -86912006,"Heroes & Generals",purchase,1.0,0 -86912006,"Heroine's Quest The Herald of Ragnarok",purchase,1.0,0 -86912006,"HOMEFRONT Demo",purchase,1.0,0 -86912006,"Insurgency",purchase,1.0,0 -86912006,"Ionball 2 Ionstorm",purchase,1.0,0 -86912006,"Jet Gunner",purchase,1.0,0 -86912006,"Knights and Merchants",purchase,1.0,0 -86912006,"Lara Croft and the Guardian of Light",purchase,1.0,0 -86912006,"La Tale",purchase,1.0,0 -86912006,"Loadout",purchase,1.0,0 -86912006,"Mabinogi",purchase,1.0,0 -86912006,"Machinarium",purchase,1.0,0 -86912006,"Magic The Gathering Tactics",purchase,1.0,0 -86912006,"Magicka Wizard Wars",purchase,1.0,0 -86912006,"Make it indie!",purchase,1.0,0 -86912006,"March of War",purchase,1.0,0 -86912006,"Marvel Heroes 2015",purchase,1.0,0 -86912006,"Marvel Puzzle Quest",purchase,1.0,0 -86912006,"Mechanic Escape",purchase,1.0,0 -86912006,"Memoir '44 Online",purchase,1.0,0 -86912006,"Memories of a Vagabond",purchase,1.0,0 -86912006,"Metro 2033",purchase,1.0,0 -86912006,"MicroVolts Surge",purchase,1.0,0 -86912006,"Mightier",purchase,1.0,0 -86912006,"Moonbase Alpha",purchase,1.0,0 -86912006,"Moon Breakers",purchase,1.0,0 -86912006,"Mount & Blade",purchase,1.0,0 -86912006,"NEOTOKYO",purchase,1.0,0 -86912006,"Neverwinter",purchase,1.0,0 -86912006,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -86912006,"Nosgoth",purchase,1.0,0 -86912006,"Not The Robots",purchase,1.0,0 -86912006,"Ohm Studio",purchase,1.0,0 -86912006,"Only If",purchase,1.0,0 -86912006,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -86912006,"Operation Flashpoint Red River",purchase,1.0,0 -86912006,"Orbital Gear",purchase,1.0,0 -86912006,"Orborun",purchase,1.0,0 -86912006,"ORION Prelude",purchase,1.0,0 -86912006,"Overcast - Walden and the Werewolf",purchase,1.0,0 -86912006,"Overlord",purchase,1.0,0 -86912006,"Overlord Raising Hell",purchase,1.0,0 -86912006,"Pandora Saga Weapons of Balance",purchase,1.0,0 -86912006,"Panzar",purchase,1.0,0 -86912006,"PAYDAY The Web Series - Episode 1",purchase,1.0,0 -86912006,"Peggle Extreme",purchase,1.0,0 -86912006,"Penguins Arena Sedna's World",purchase,1.0,0 -86912006,"Pinball Arcade",purchase,1.0,0 -86912006,"Pinball FX2",purchase,1.0,0 -86912006,"Pirates of Black Cove Gold",purchase,1.0,0 -86912006,"PlanetSide 2",purchase,1.0,0 -86912006,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -86912006,"Pox Nora",purchase,1.0,0 -86912006,"Protocol",purchase,1.0,0 -86912006,"ProtoGalaxy",purchase,1.0,0 -86912006,"Psychonauts Demo",purchase,1.0,0 -86912006,"Puzzle Pirates",purchase,1.0,0 -86912006,"Quantum Rush Online",purchase,1.0,0 -86912006,"RACE 07",purchase,1.0,0 -86912006,"RaceRoom Racing Experience ",purchase,1.0,0 -86912006,"Race The Sun",purchase,1.0,0 -86912006,"Ragnarok",purchase,1.0,0 -86912006,"Ragnarok Online - Free to Play - European Version",purchase,1.0,0 -86912006,"Ragnarok Online 2",purchase,1.0,0 -86912006,"RaiderZ",purchase,1.0,0 -86912006,"Really Big Sky",purchase,1.0,0 -86912006,"Realm of the Mad God",purchase,1.0,0 -86912006,"Realms of the Haunting",purchase,1.0,0 -86912006,"Receiver",purchase,1.0,0 -86912006,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -86912006,"Renaissance Heroes",purchase,1.0,0 -86912006,"Retro/Grade IGF Demo",purchase,1.0,0 -86912006,"Reus",purchase,1.0,0 -86912006,"Reversion - The Escape",purchase,1.0,0 -86912006,"RIFT",purchase,1.0,0 -86912006,"Risen 2 - Dark Waters",purchase,1.0,0 -86912006,"Rise of Incarnates",purchase,1.0,0 -86912006,"Rise of the Argonauts",purchase,1.0,0 -86912006,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -86912006,"Robotex",purchase,1.0,0 -86912006,"ROSE Online",purchase,1.0,0 -86912006,"Royal Quest",purchase,1.0,0 -86912006,"RPG Maker Royal Tiles Resource Pack",purchase,1.0,0 -86912006,"RPG Maker Tyler Warren First 50 Battler Pack",purchase,1.0,0 -86912006,"RPG Maker VX Ace",purchase,1.0,0 -86912006,"Rush Bros",purchase,1.0,0 -86912006,"Rusty Hearts",purchase,1.0,0 -86912006,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -86912006,"Sacred 2 Gold",purchase,1.0,0 -86912006,"Saints Row 2",purchase,1.0,0 -86912006,"Saints Row The Third",purchase,1.0,0 -86912006,"Saints Row The Third - Initiation Station",purchase,1.0,0 -86912006,"Saints Row IV Inauguration Station",purchase,1.0,0 -86912006,"Saira",purchase,1.0,0 -86912006,"Serena",purchase,1.0,0 -86912006,"Shadow Warrior Classic (1997)",purchase,1.0,0 -86912006,"Skara - The Blade Remains",purchase,1.0,0 -86912006,"Sky Battles",purchase,1.0,0 -86912006,"Skyborn",purchase,1.0,0 -86912006,"Smashmuck Champions",purchase,1.0,0 -86912006,"Soldier Front 2",purchase,1.0,0 -86912006,"SolForge",purchase,1.0,0 -86912006,"Solstice Arena",purchase,1.0,0 -86912006,"SpaceChem",purchase,1.0,0 -86912006,"Space Hack",purchase,1.0,0 -86912006,"Spiral Knights",purchase,1.0,0 -86912006,"Spirits",purchase,1.0,0 -86912006,"Star Conflict",purchase,1.0,0 -86912006,"Starlaxis Supernova Edition",purchase,1.0,0 -86912006,"Star Trek Online",purchase,1.0,0 -86912006,"Stronghold Kingdoms",purchase,1.0,0 -86912006,"Sunrider Mask of Arcadius",purchase,1.0,0 -86912006,"Super Crate Box",purchase,1.0,0 -86912006,"Superfrog HD",purchase,1.0,0 -86912006,"Super Monday Night Combat",purchase,1.0,0 -86912006,"Super Sanctum TD",purchase,1.0,0 -86912006,"Sweet Lily Dreams",purchase,1.0,0 -86912006,"Swipecart",purchase,1.0,0 -86912006,"Tactical Intervention",purchase,1.0,0 -86912006,"Take On Helicopters",purchase,1.0,0 -86912006,"Teleglitch Die More Edition",purchase,1.0,0 -86912006,"Terrain Test",purchase,1.0,0 -86912006,"The Banner Saga Factions",purchase,1.0,0 -86912006,"The Bureau XCOM Declassified",purchase,1.0,0 -86912006,"The Cat and the Coup",purchase,1.0,0 -86912006,"The Darkness II",purchase,1.0,0 -86912006,"The Expendabros",purchase,1.0,0 -86912006,"The Fish Fillets 2",purchase,1.0,0 -86912006,"The Forgotten Ones",purchase,1.0,0 -86912006,"The Great Jitters Pudding Panic",purchase,1.0,0 -86912006,"The Guild II",purchase,1.0,0 -86912006,"The Guild II - Pirates of the European Seas",purchase,1.0,0 -86912006,"The Guild II Renaissance",purchase,1.0,0 -86912006,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -86912006,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -86912006,"The Lord of the Rings Online",purchase,1.0,0 -86912006,"The Plan",purchase,1.0,0 -86912006,"The Ship",purchase,1.0,0 -86912006,"The Ship Single Player",purchase,1.0,0 -86912006,"The Ship Tutorial",purchase,1.0,0 -86912006,"The Swapper",purchase,1.0,0 -86912006,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -86912006,"Thinking with Time Machine",purchase,1.0,0 -86912006,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -86912006,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -86912006,"Tom Clancy's Ghost Recon Phantoms - EU Assault Starter Pack",purchase,1.0,0 -86912006,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -86912006,"Toribash",purchase,1.0,0 -86912006,"Tribes Ascend",purchase,1.0,0 -86912006,"Trine 2",purchase,1.0,0 -86912006,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -86912006,"Tropico 4",purchase,1.0,0 -86912006,"Two Worlds Epic Edition",purchase,1.0,0 -86912006,"UFO Afterlight",purchase,1.0,0 -86912006,"Uncharted Waters Online",purchase,1.0,0 -86912006,"Uriel's Chasm",purchase,1.0,0 -86912006,"Velvet Sundown",purchase,1.0,0 -86912006,"Vigil Blood Bitterness",purchase,1.0,0 -86912006,"Villagers and Heroes",purchase,1.0,0 -86912006,"Villagers and Heroes Hero of Stormhold Pack",purchase,1.0,0 -86912006,"Vindictus",purchase,1.0,0 -86912006,"Warface",purchase,1.0,0 -86912006,"War Inc. Battlezone",purchase,1.0,0 -86912006,"Warlock - Master of the Arcane",purchase,1.0,0 -86912006,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -86912006,"War Thunder",purchase,1.0,0 -86912006,"Weird Worlds Return to Infinite Space",purchase,1.0,0 -86912006,"Wickland",purchase,1.0,0 -86912006,"Wizardry Online",purchase,1.0,0 -86912006,"Woodle Tree Adventures",purchase,1.0,0 -86912006,"World of Battles",purchase,1.0,0 -86912006,"World of Guns Gun Disassembly",purchase,1.0,0 -86912006,"Worms Blast",purchase,1.0,0 -86912006,"Worms Crazy Golf",purchase,1.0,0 -86912006,"Worms Pinball",purchase,1.0,0 -86912006,"Xam",purchase,1.0,0 -86912006,"XCOM Enemy Unknown",purchase,1.0,0 -86912006,"You Have to Win the Game",purchase,1.0,0 -188768764,"Defiance",purchase,1.0,0 -188768764,"Heroes & Generals",purchase,1.0,0 -188768764,"NEOTOKYO",purchase,1.0,0 -188784538,"Risen 2 - Dark Waters",purchase,1.0,0 -188784538,"Risen 2 - Dark Waters",play,26.0,0 -188784538,"Total War ROME II - Emperor Edition",purchase,1.0,0 -188784538,"Total War ROME II - Emperor Edition",play,6.5,0 -298557690,"Counter-Strike Global Offensive",purchase,1.0,0 -298557690,"Counter-Strike Global Offensive",play,41.0,0 -202347606,"Dota 2",purchase,1.0,0 -202347606,"Dota 2",play,1.5,0 -166149095,"Train Simulator",purchase,1.0,0 -166149095,"Train Simulator",play,25.0,0 -166149095,"Farming Simulator 2013",purchase,1.0,0 -166149095,"Farming Simulator 2013",play,14.8,0 -166149095,"X-Plane 10 Global - 64 Bit",purchase,1.0,0 -166149095,"X-Plane 10 Global - 64 Bit",play,4.8,0 -166149095,"Firefighters 2014",purchase,1.0,0 -166149095,"X-Plane 10 Global - 64 Bit - Africa Scenery",purchase,1.0,0 -166149095,"X-Plane 10 Global - 64 Bit - Asia Scenery",purchase,1.0,0 -166149095,"X-Plane 10 Global - 64 Bit - Australia Scenery",purchase,1.0,0 -166149095,"X-Plane 10 Global - 64 Bit - North America Scenery",purchase,1.0,0 -166149095,"X-Plane 10 Global - 64 Bit - South America Scenery",purchase,1.0,0 -141680691,"Dota 2",purchase,1.0,0 -141680691,"Dota 2",play,5.2,0 -275775796,"GunZ 2 The Second Duel",purchase,1.0,0 -59101095,"Left 4 Dead 2",purchase,1.0,0 -59101095,"Left 4 Dead 2",play,0.2,0 -200102265,"Dota 2",purchase,1.0,0 -200102265,"Dota 2",play,3.1,0 -152585209,"Dota 2",purchase,1.0,0 -152585209,"Dota 2",play,820.0,0 -152585209,"Saints Row The Third",purchase,1.0,0 -152585209,"Saints Row The Third",play,35.0,0 -152585209,"Saints Row IV",purchase,1.0,0 -152585209,"Saints Row IV",play,24.0,0 -152585209,"Tomb Raider",purchase,1.0,0 -152585209,"Tomb Raider",play,22.0,0 -152585209,"Unturned",purchase,1.0,0 -152585209,"Unturned",play,19.0,0 -152585209,"Infestation Survivor Stories",purchase,1.0,0 -152585209,"Infestation Survivor Stories",play,13.1,0 -152585209,"Burgers",purchase,1.0,0 -152585209,"Burgers",play,8.8,0 -152585209,"Archeblade",purchase,1.0,0 -152585209,"Archeblade",play,7.7,0 -152585209,"QuestRun",purchase,1.0,0 -152585209,"QuestRun",play,5.0,0 -152585209,"Fearless Fantasy",purchase,1.0,0 -152585209,"Fearless Fantasy",play,4.9,0 -152585209,"Dead Rising 3",purchase,1.0,0 -152585209,"Dead Rising 3",play,4.5,0 -152585209,"FreeStyle2 Street Basketball",purchase,1.0,0 -152585209,"FreeStyle2 Street Basketball",play,4.4,0 -152585209,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -152585209,"Resident Evil Revelations 2 / Biohazard Revelations 2",play,4.3,0 -152585209,"PAYDAY The Heist",purchase,1.0,0 -152585209,"PAYDAY The Heist",play,4.1,0 -152585209,"Left 4 Dead 2",purchase,1.0,0 -152585209,"Left 4 Dead 2",play,4.0,0 -152585209,"Afterfall InSanity Extended Edition",purchase,1.0,0 -152585209,"Afterfall InSanity Extended Edition",play,3.9,0 -152585209,"The Elder Scrolls V Skyrim",purchase,1.0,0 -152585209,"The Elder Scrolls V Skyrim",play,3.8,0 -152585209,"The Culling Of The Cows",purchase,1.0,0 -152585209,"The Culling Of The Cows",play,3.7,0 -152585209,"Super Killer Hornet Resurrection",purchase,1.0,0 -152585209,"Super Killer Hornet Resurrection",play,3.7,0 -152585209,"Blood of Old",purchase,1.0,0 -152585209,"Blood of Old",play,3.6,0 -152585209,"RADical ROACH Deluxe Edition",purchase,1.0,0 -152585209,"RADical ROACH Deluxe Edition",play,3.5,0 -152585209,"Goat Simulator",purchase,1.0,0 -152585209,"Goat Simulator",play,3.4,0 -152585209,"SpeedRunners",purchase,1.0,0 -152585209,"SpeedRunners",play,3.3,0 -152585209,"Enemy Mind",purchase,1.0,0 -152585209,"Enemy Mind",play,3.1,0 -152585209,"Grimoire Manastorm",purchase,1.0,0 -152585209,"Grimoire Manastorm",play,3.1,0 -152585209,"Alice Madness Returns",purchase,1.0,0 -152585209,"Alice Madness Returns",play,3.0,0 -152585209,"How to Survive",purchase,1.0,0 -152585209,"How to Survive",play,2.7,0 -152585209,"ORION Prelude",purchase,1.0,0 -152585209,"ORION Prelude",play,2.5,0 -152585209,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -152585209,"The Witcher 2 Assassins of Kings Enhanced Edition",play,2.3,0 -152585209,"Sakura Clicker",purchase,1.0,0 -152585209,"Sakura Clicker",play,0.9,0 -152585209,"Mortal Kombat Komplete Edition",purchase,1.0,0 -152585209,"Mortal Kombat Komplete Edition",play,0.6,0 -152585209,"APB Reloaded",purchase,1.0,0 -152585209,"APB Reloaded",play,0.5,0 -152585209,"The Expendabros",purchase,1.0,0 -152585209,"The Expendabros",play,0.5,0 -152585209,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -152585209,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.4,0 -152585209,"Color Symphony",purchase,1.0,0 -152585209,"Color Symphony",play,0.2,0 -152585209,"Lamia Must Die",purchase,1.0,0 -152585209,"Epic Cards Battle(TCG)",purchase,1.0,0 -152585209,"Blender 2.76b",purchase,1.0,0 -152585209,"The Lord of the Rings Online",purchase,1.0,0 -152585209,"AirBuccaneers",purchase,1.0,0 -152585209,"Ben There, Dan That!",purchase,1.0,0 -152585209,"Dead Rising 2",purchase,1.0,0 -152585209,"Dead Rising 3 DLC1",purchase,1.0,0 -152585209,"Dead Rising 3 DLC2",purchase,1.0,0 -152585209,"Dead Rising 3 DLC3",purchase,1.0,0 -152585209,"Dead Rising 3 DLC4",purchase,1.0,0 -152585209,"Desert Thunder",purchase,1.0,0 -152585209,"Divine Souls",purchase,1.0,0 -152585209,"Fork Parker's Holiday Profit Hike",purchase,1.0,0 -152585209,"Fractured Space",purchase,1.0,0 -152585209,"Hitman 2 Silent Assassin",purchase,1.0,0 -152585209,"Litil Divil",purchase,1.0,0 -152585209,"Murder Miners",purchase,1.0,0 -152585209,"Nosgoth",purchase,1.0,0 -152585209,"Realms of the Haunting",purchase,1.0,0 -152585209,"Royal Quest",purchase,1.0,0 -152585209,"Time Gentlemen, Please!",purchase,1.0,0 -227783598,"Don't Starve Together Beta",purchase,1.0,0 -227783598,"Don't Starve Together Beta",play,25.0,0 -227783598,"TDP5 Arena 3D",purchase,1.0,0 -227783598,"TDP5 Arena 3D",play,0.1,0 -227783598,"Dirty Bomb",purchase,1.0,0 -227783598,"Football Superstars",purchase,1.0,0 -57223013,"Team Fortress 2",purchase,1.0,0 -57223013,"Team Fortress 2",play,3.2,0 -217987498,"Unturned",purchase,1.0,0 -217987498,"Unturned",play,17.4,0 -193955543,"Dota 2",purchase,1.0,0 -193955543,"Dota 2",play,3.0,0 -58662652,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -58662652,"Call of Duty Modern Warfare 2 - Multiplayer",play,31.0,0 -58662652,"Call of Duty Modern Warfare 2",purchase,1.0,0 -58662652,"Call of Duty Modern Warfare 2",play,13.0,0 -43565258,"Team Fortress 2",purchase,1.0,0 -43565258,"Team Fortress 2",play,1.2,0 -173003298,"Dota 2",purchase,1.0,0 -173003298,"Dota 2",play,39.0,0 -202128053,"Dota 2",purchase,1.0,0 -202128053,"Dota 2",play,34.0,0 -202128053,"My Lands",purchase,1.0,0 -230103206,"Dota 2",purchase,1.0,0 -230103206,"Dota 2",play,0.8,0 -121582062,"Transformers Fall of Cybertron",purchase,1.0,0 -121582062,"Transformers Fall of Cybertron",play,5.2,0 -222045462,"Dota 2",purchase,1.0,0 -222045462,"Dota 2",play,328.0,0 -281846414,"Team Fortress 2",purchase,1.0,0 -281846414,"Team Fortress 2",play,311.0,0 -281846414,"Aftermath",purchase,1.0,0 -281846414,"Aftermath",play,12.0,0 -130029851,"Dota 2",purchase,1.0,0 -130029851,"Dota 2",play,2.0,0 -88139607,"Team Fortress 2",purchase,1.0,0 -88139607,"Team Fortress 2",play,151.0,0 -217892263,"Dota 2",purchase,1.0,0 -217892263,"Dota 2",play,1.9,0 -10595342,"Half-Life 2",purchase,1.0,0 -10595342,"Half-Life 2",play,46.0,0 -10595342,"Counter-Strike Source",purchase,1.0,0 -10595342,"Counter-Strike Source",play,1.6,0 -10595342,"Half-Life 2 Deathmatch",purchase,1.0,0 -10595342,"Half-Life 2 Deathmatch",play,0.9,0 -10595342,"Half-Life 2 Lost Coast",purchase,1.0,0 -10595342,"Half-Life 2 Lost Coast",play,0.8,0 -117312360,"Sid Meier's Civilization V",purchase,1.0,0 -117312360,"Sid Meier's Civilization V",play,194.0,0 -117312360,"Football Manager 2013",purchase,1.0,0 -117312360,"Football Manager 2013",play,37.0,0 -117312360,"Football Manager 2014",purchase,1.0,0 -117312360,"Football Manager 2014",play,30.0,0 -117312360,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -117312360,"Sid Meier's Civilization Beyond Earth",play,3.3,0 -117312360,"Team Fortress 2",purchase,1.0,0 -117312360,"Team Fortress 2",play,0.9,0 -117312360,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -173531795,"Dota 2",purchase,1.0,0 -173531795,"Dota 2",play,0.7,0 -209665002,"Garry's Mod",purchase,1.0,0 -209665002,"Garry's Mod",play,207.0,0 -209665002,"Terraria",purchase,1.0,0 -209665002,"Terraria",play,25.0,0 -209665002,"Magicka Wizard Wars",purchase,1.0,0 -209665002,"Magicka Wizard Wars",play,1.5,0 -209665002,"Team Fortress 2",purchase,1.0,0 -209665002,"Team Fortress 2",play,1.4,0 -209665002,"Rustbucket Rumble",purchase,1.0,0 -209665002,"Rustbucket Rumble",play,0.4,0 -209665002,"World of Guns Gun Disassembly",purchase,1.0,0 -209665002,"World of Guns Gun Disassembly",play,0.1,0 -244907939,"Run and Fire",purchase,1.0,0 -203986235,"Dota 2",purchase,1.0,0 -203986235,"Dota 2",play,4.6,0 -156879739,"Dota 2",purchase,1.0,0 -156879739,"Dota 2",play,1823.0,0 -156879739,"Counter-Strike Global Offensive",purchase,1.0,0 -156879739,"Counter-Strike Global Offensive",play,143.0,0 -156879739,"Rust",purchase,1.0,0 -156879739,"Rust",play,67.0,0 -156879739,"Team Fortress 2",purchase,1.0,0 -156879739,"Team Fortress 2",play,45.0,0 -156879739,"Fallout New Vegas",purchase,1.0,0 -156879739,"Fallout New Vegas",play,41.0,0 -156879739,"Portal 2",purchase,1.0,0 -156879739,"Portal 2",play,15.0,0 -156879739,"Portal Stories Mel",purchase,1.0,0 -156879739,"Portal Stories Mel",play,12.6,0 -156879739,"SMITE",purchase,1.0,0 -156879739,"SMITE",play,8.7,0 -156879739,"Deponia",purchase,1.0,0 -156879739,"Deponia",play,6.4,0 -156879739,"Unturned",purchase,1.0,0 -156879739,"Unturned",play,5.6,0 -156879739,"Aftermath",purchase,1.0,0 -156879739,"Aftermath",play,5.2,0 -156879739,"Fistful of Frags",purchase,1.0,0 -156879739,"Fistful of Frags",play,1.3,0 -156879739,"Syberia",purchase,1.0,0 -156879739,"Syberia",play,1.1,0 -156879739,"Worms Reloaded",purchase,1.0,0 -156879739,"Worms Reloaded",play,1.0,0 -156879739,"Capsized",purchase,1.0,0 -156879739,"Capsized",play,1.0,0 -156879739,"Counter-Strike Nexon Zombies",purchase,1.0,0 -156879739,"Counter-Strike Nexon Zombies",play,0.9,0 -156879739,"sZone-Online",purchase,1.0,0 -156879739,"sZone-Online",play,0.7,0 -156879739,"HAWKEN",purchase,1.0,0 -156879739,"HAWKEN",play,0.7,0 -156879739,"Codename CURE",purchase,1.0,0 -156879739,"Codename CURE",play,0.6,0 -156879739,"Syberia 2",purchase,1.0,0 -156879739,"Syberia 2",play,0.5,0 -156879739,"Survarium",purchase,1.0,0 -156879739,"Survarium",play,0.4,0 -156879739,"Thinking with Time Machine",purchase,1.0,0 -156879739,"Thinking with Time Machine",play,0.2,0 -156879739,"Super Meat Boy",purchase,1.0,0 -156879739,"Super Meat Boy",play,0.1,0 -156879739,"Super Monday Night Combat",purchase,1.0,0 -156879739,"Super Monday Night Combat",play,0.1,0 -156879739,"Broken Sword 1 - Shadow of the Templars Director's Cut",purchase,1.0,0 -156879739,"Poof",purchase,1.0,0 -156879739,"Dead Island Epidemic",purchase,1.0,0 -156879739,"Defiance",purchase,1.0,0 -156879739,"Hostile Waters Antaeus Rising",purchase,1.0,0 -156879739,"Victory The Age of Racing",purchase,1.0,0 -188893670,"Dota 2",purchase,1.0,0 -188893670,"Dota 2",play,0.1,0 -135066372,"Test Drive Unlimited 2",purchase,1.0,0 -135066372,"Test Drive Unlimited 2",play,205.0,0 -135066372,"Euro Truck Simulator 2",purchase,1.0,0 -135066372,"Euro Truck Simulator 2",play,121.0,0 -135066372,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -135066372,"Burnout Paradise The Ultimate Box",play,45.0,0 -135066372,"Grand Theft Auto V",purchase,1.0,0 -135066372,"Grand Theft Auto V",play,21.0,0 -135066372,"Need for Speed SHIFT",purchase,1.0,0 -135066372,"Need for Speed SHIFT",play,18.0,0 -135066372,"Project CARS",purchase,1.0,0 -135066372,"Project CARS",play,5.5,0 -135066372,"Need for Speed Undercover",purchase,1.0,0 -135066372,"Need for Speed Undercover",play,4.9,0 -135066372,"Shift 2 Unleashed",purchase,1.0,0 -135066372,"Shift 2 Unleashed",play,2.7,0 -135066372,"Need for Speed Hot Pursuit",purchase,1.0,0 -135066372,"Need for Speed Hot Pursuit",play,2.0,0 -135066372,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -135066372,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -64657716,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -64657716,"Call of Duty Modern Warfare 2 - Multiplayer",play,793.0,0 -64657716,"Dota 2",purchase,1.0,0 -64657716,"Dota 2",play,1.4,0 -64657716,"Call of Duty Modern Warfare 2",purchase,1.0,0 -120955239,"Team Fortress 2",purchase,1.0,0 -120955239,"Team Fortress 2",play,2.3,0 -139480472,"Dota 2",purchase,1.0,0 -139480472,"Dota 2",play,0.2,0 -191905471,"Team Fortress 2",purchase,1.0,0 -191905471,"Team Fortress 2",play,0.8,0 -258213980,"The Elder Scrolls V Skyrim",purchase,1.0,0 -258213980,"The Elder Scrolls V Skyrim",play,7.2,0 -258213980,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -258213980,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -258213980,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -97951693,"Team Fortress 2",purchase,1.0,0 -97951693,"Team Fortress 2",play,46.0,0 -39482136,"Trials 2 Second Edition",purchase,1.0,0 -39482136,"Trials 2 Second Edition",play,0.4,0 -284452410,"Karos Returns",purchase,1.0,0 -293978986,"Transformice",purchase,1.0,0 -293978986,"Transformice",play,486.0,0 -293978986,"Aura Kingdom",purchase,1.0,0 -143223745,"Dota 2",purchase,1.0,0 -143223745,"Dota 2",play,4.3,0 -228147470,"Counter-Strike Nexon Zombies",purchase,1.0,0 -118693973,"Team Fortress 2",purchase,1.0,0 -118693973,"Team Fortress 2",play,505.0,0 -118693973,"The Elder Scrolls V Skyrim",purchase,1.0,0 -118693973,"The Elder Scrolls V Skyrim",play,359.0,0 -118693973,"Counter-Strike Global Offensive",purchase,1.0,0 -118693973,"Counter-Strike Global Offensive",play,217.0,0 -118693973,"Terraria",purchase,1.0,0 -118693973,"Terraria",play,31.0,0 -118693973,"Unturned",purchase,1.0,0 -118693973,"Unturned",play,27.0,0 -118693973,"Dishonored",purchase,1.0,0 -118693973,"Dishonored",play,14.5,0 -118693973,"Garry's Mod",purchase,1.0,0 -118693973,"Garry's Mod",play,8.5,0 -118693973,"AdVenture Capitalist",purchase,1.0,0 -118693973,"AdVenture Capitalist",play,6.6,0 -118693973,"POSTAL 2",purchase,1.0,0 -118693973,"POSTAL 2",play,5.7,0 -118693973,"Portal 2",purchase,1.0,0 -118693973,"Portal 2",play,5.4,0 -118693973,"Dota 2",purchase,1.0,0 -118693973,"Dota 2",play,3.8,0 -118693973,"Greyfox",purchase,1.0,0 -118693973,"Greyfox",play,3.6,0 -118693973,"Goat Simulator",purchase,1.0,0 -118693973,"Goat Simulator",play,3.4,0 -118693973,"Clicker Heroes",purchase,1.0,0 -118693973,"Clicker Heroes",play,2.9,0 -118693973,"Alice Madness Returns",purchase,1.0,0 -118693973,"Alice Madness Returns",play,2.2,0 -118693973,"Chivalry Medieval Warfare",purchase,1.0,0 -118693973,"Chivalry Medieval Warfare",play,1.2,0 -118693973,"Assassin's Creed IV Black Flag",purchase,1.0,0 -118693973,"Assassin's Creed IV Black Flag",play,0.7,0 -118693973,"Devils Share",purchase,1.0,0 -118693973,"Devils Share",play,0.7,0 -118693973,"Far Cry 3",purchase,1.0,0 -118693973,"Far Cry 3",play,0.7,0 -118693973,"MapleStory",purchase,1.0,0 -118693973,"MapleStory",play,0.6,0 -118693973,"Super Hipster Lumberjack",purchase,1.0,0 -118693973,"Super Hipster Lumberjack",play,0.4,0 -118693973,"Trine",purchase,1.0,0 -118693973,"Trine",play,0.3,0 -118693973,"Caster",purchase,1.0,0 -118693973,"Caster",play,0.3,0 -118693973,"Neverwinter",purchase,1.0,0 -118693973,"Neverwinter",play,0.2,0 -118693973,"Modular Combat",purchase,1.0,0 -118693973,"Modular Combat",play,0.2,0 -118693973,"Sniper Elite V2",purchase,1.0,0 -118693973,"Aura Kingdom",purchase,1.0,0 -118693973,"CaesarIA",purchase,1.0,0 -118693973,"Outlast",purchase,1.0,0 -118693973,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -118693973,"Fingerbones",purchase,1.0,0 -118693973,"Aura Kingdom - Winter Gift",purchase,1.0,0 -118693973,"Dirty Bomb",purchase,1.0,0 -118693973,"Haunted Memories",purchase,1.0,0 -118693973,"Patch testing for Chivalry",purchase,1.0,0 -118693973,"Robocraft",purchase,1.0,0 -118693973,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -30432648,"Counter-Strike Source",purchase,1.0,0 -30432648,"Counter-Strike Source",play,600.0,0 -30432648,"Team Fortress 2",purchase,1.0,0 -30432648,"Team Fortress 2",play,159.0,0 -30432648,"Day of Defeat Source",purchase,1.0,0 -30432648,"Day of Defeat Source",play,0.5,0 -30432648,"Half-Life 2 Deathmatch",purchase,1.0,0 -30432648,"Half-Life 2 Deathmatch",play,0.2,0 -30432648,"Half-Life 2 Lost Coast",purchase,1.0,0 -163924362,"Dota 2",purchase,1.0,0 -163924362,"Dota 2",play,10.0,0 -244290943,"TERA",purchase,1.0,0 -244290943,"TERA",play,125.0,0 -244290943,"Elsword",purchase,1.0,0 -244290943,"Elsword",play,61.0,0 -244290943,"Jigoku Kisetsukan Sense of the Seasons",purchase,1.0,0 -244290943,"Jigoku Kisetsukan Sense of the Seasons",play,17.5,0 -244290943,"Stranded Deep",purchase,1.0,0 -244290943,"Stranded Deep",play,6.5,0 -244290943,"Bloons TD5",purchase,1.0,0 -244290943,"Bloons TD5",play,4.8,0 -244290943,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -244290943,"Viscera Cleanup Detail Santa's Rampage",play,4.4,0 -244290943,"Zombie Panic Source",purchase,1.0,0 -244290943,"Zombie Panic Source",play,3.5,0 -244290943,"Modular Combat",purchase,1.0,0 -244290943,"Modular Combat",play,3.4,0 -244290943,"No More Room in Hell",purchase,1.0,0 -244290943,"No More Room in Hell",play,1.9,0 -244290943,"Velvet Sundown",purchase,1.0,0 -244290943,"Velvet Sundown",play,1.9,0 -244290943,"Echo of Soul",purchase,1.0,0 -244290943,"Echo of Soul",play,1.3,0 -244290943,"Only If",purchase,1.0,0 -244290943,"Only If",play,1.1,0 -244290943,"RaiderZ",purchase,1.0,0 -244290943,"RaiderZ",play,0.9,0 -244290943,"Unturned",purchase,1.0,0 -244290943,"Unturned",play,0.6,0 -244290943,"Race The Sun",purchase,1.0,0 -244290943,"Race The Sun",play,0.6,0 -244290943,"Audition Online",purchase,1.0,0 -244290943,"Audition Online",play,0.6,0 -244290943,"Defiance",purchase,1.0,0 -244290943,"Defiance",play,0.5,0 -244290943,"Mabinogi",purchase,1.0,0 -244290943,"Mabinogi",play,0.4,0 -244290943,"Fallen Earth",purchase,1.0,0 -244290943,"Fallen Earth",play,0.3,0 -244290943,"Counter-Strike Nexon Zombies",purchase,1.0,0 -244290943,"Metro Conflict",purchase,1.0,0 -233104650,"Grand Theft Auto V",purchase,1.0,0 -233104650,"Grand Theft Auto V",play,273.0,0 -250966627,"Nikopol Secrets of the Immortals",purchase,1.0,0 -120055850,"Empire Total War",purchase,1.0,0 -90359362,"Terraria",purchase,1.0,0 -90359362,"Terraria",play,1.1,0 -112432049,"Snuggle Truck",purchase,1.0,0 -112432049,"Snuggle Truck",play,0.4,0 -217993378,"Gunscape",purchase,1.0,0 -217993378,"Gunscape",play,0.2,0 -217993378,"Warframe",purchase,1.0,0 -158481852,"Team Fortress 2",purchase,1.0,0 -158481852,"Team Fortress 2",play,1.5,0 -114287682,"Team Fortress 2",purchase,1.0,0 -114287682,"Team Fortress 2",play,0.8,0 -290948882,"Team Fortress 2",purchase,1.0,0 -290948882,"Team Fortress 2",play,2.6,0 -290948882,"Dungeon Defenders II",purchase,1.0,0 -290948882,"Dungeon Defenders II",play,0.2,0 -89539775,"Half-Life 2 Deathmatch",purchase,1.0,0 -89539775,"Half-Life 2 Lost Coast",purchase,1.0,0 -104132805,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -104132805,"Call of Duty Black Ops - Multiplayer",play,1019.0,0 -104132805,"Call of Duty Black Ops",purchase,1.0,0 -104132805,"Call of Duty Black Ops",play,0.3,0 -199816966,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -199816966,"Tom Clancy's Ghost Recon Phantoms - EU",play,45.0,0 -199816966,"Counter-Strike Nexon Zombies",purchase,1.0,0 -199816966,"Counter-Strike Nexon Zombies",play,7.2,0 -199816966,"Unturned",purchase,1.0,0 -199816966,"Unturned",play,5.0,0 -199816966,"APB Reloaded",purchase,1.0,0 -199816966,"APB Reloaded",play,1.7,0 -199816966,"Cubic Castles",purchase,1.0,0 -199816966,"Cubic Castles",play,0.7,0 -199816966,"sZone-Online",purchase,1.0,0 -199816966,"sZone-Online",play,0.3,0 -199816966,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -199816966,"Boring Man - Online Tactical Stickman Combat",play,0.3,0 -199816966,"HIS (Heroes In the Sky)",purchase,1.0,0 -199816966,"HIS (Heroes In the Sky)",play,0.2,0 -199816966,"Heroes & Generals",purchase,1.0,0 -199816966,"Heroes & Generals",play,0.2,0 -199816966,"BLOCKADE 3D",purchase,1.0,0 -199816966,"BLOCKADE 3D",play,0.2,0 -199816966,"TDP4Team Battle",purchase,1.0,0 -199816966,"TDP4Team Battle",play,0.2,0 -199816966,"PlanetSide 2",purchase,1.0,0 -199816966,"PlanetSide 2",play,0.1,0 -199816966,"Destination Sol",purchase,1.0,0 -199816966,"Gear Up",purchase,1.0,0 -116626402,"Torchlight II",purchase,1.0,0 -116626402,"Torchlight II",play,10.1,0 -165192959,"Team Fortress 2",purchase,1.0,0 -165192959,"Team Fortress 2",play,1.0,0 -202366002,"Team Fortress 2",purchase,1.0,0 -202366002,"Team Fortress 2",play,2.1,0 -245432485,"Dota 2",purchase,1.0,0 -245432485,"Dota 2",play,7.4,0 -232047954,"Unturned",purchase,1.0,0 -232047954,"Unturned",play,508.0,0 -232047954,"Robocraft",purchase,1.0,0 -232047954,"Robocraft",play,11.3,0 -232047954,"Warface",purchase,1.0,0 -232047954,"Warface",play,0.3,0 -232047954,"Red Crucible Firestorm",purchase,1.0,0 -232047954,"Blacklight Retribution",purchase,1.0,0 -232047954,"Aftermath",purchase,1.0,0 -232047954,"APB Reloaded",purchase,1.0,0 -26633617,"Counter-Strike Global Offensive",purchase,1.0,0 -26633617,"Counter-Strike Global Offensive",play,146.0,0 -26633617,"Counter-Strike Source",purchase,1.0,0 -26633617,"Counter-Strike Source",play,10.9,0 -26633617,"Day of Defeat Source",purchase,1.0,0 -26633617,"Half-Life 2 Deathmatch",purchase,1.0,0 -26633617,"Half-Life 2 Lost Coast",purchase,1.0,0 -7273540,"War Thunder",purchase,1.0,0 -7273540,"War Thunder",play,463.0,0 -7273540,"Battlefield Bad Company 2",purchase,1.0,0 -7273540,"Battlefield Bad Company 2",play,78.0,0 -7273540,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -7273540,"Counter-Strike",purchase,1.0,0 -7273540,"Day of Defeat",purchase,1.0,0 -7273540,"Deathmatch Classic",purchase,1.0,0 -7273540,"Half-Life",purchase,1.0,0 -7273540,"Half-Life Blue Shift",purchase,1.0,0 -7273540,"Half-Life Opposing Force",purchase,1.0,0 -7273540,"Ricochet",purchase,1.0,0 -7273540,"Team Fortress Classic",purchase,1.0,0 -25445382,"SiN Episodes Emergence",purchase,1.0,0 -25445382,"SiN Episodes Emergence",play,0.7,0 -25445382,"Half-Life 2 Lost Coast",purchase,1.0,0 -25445382,"Half-Life 2 Lost Coast",play,0.5,0 -25445382,"Half-Life 2 Deathmatch",purchase,1.0,0 -25445382,"Half-Life 2 Episode One",purchase,1.0,0 -25445382,"Half-Life Deathmatch Source",purchase,1.0,0 -25445382,"SiN",purchase,1.0,0 -25445382,"SiN Multiplayer",purchase,1.0,0 -200737797,"Dota 2",purchase,1.0,0 -200737797,"Dota 2",play,0.9,0 -283401578,"Dota 2",purchase,1.0,0 -283401578,"Dota 2",play,2.4,0 -149790632,"The Elder Scrolls V Skyrim",purchase,1.0,0 -149790632,"The Elder Scrolls V Skyrim",play,40.0,0 -145825155,"Euro Truck Simulator 2",purchase,1.0,0 -145825155,"Euro Truck Simulator 2",play,43.0,0 -145825155,"South Park The Stick of Truth",purchase,1.0,0 -145825155,"South Park The Stick of Truth",play,32.0,0 -145825155,"Saints Row IV",purchase,1.0,0 -145825155,"Saints Row IV",play,29.0,0 -145825155,"Cities Skylines",purchase,1.0,0 -145825155,"Cities Skylines",play,19.7,0 -145825155,"Dota 2",purchase,1.0,0 -145825155,"Dota 2",play,11.1,0 -145825155,"Left 4 Dead 2",purchase,1.0,0 -145825155,"Left 4 Dead 2",play,7.0,0 -145825155,"Counter-Strike Global Offensive",purchase,1.0,0 -145825155,"Counter-Strike Global Offensive",play,3.8,0 -145825155,"Garry's Mod",purchase,1.0,0 -145825155,"Garry's Mod",play,3.6,0 -145825155,"Team Fortress 2",purchase,1.0,0 -145825155,"Team Fortress 2",play,2.8,0 -145825155,"Unturned",purchase,1.0,0 -145825155,"Unturned",play,1.9,0 -145825155,"Just Cause 2",purchase,1.0,0 -145825155,"Just Cause 2",play,1.1,0 -145825155,"Grand Theft Auto San Andreas",purchase,1.0,0 -145825155,"Grand Theft Auto San Andreas",play,0.5,0 -145825155,"Car Mechanic Simulator 2015",purchase,1.0,0 -145825155,"Car Mechanic Simulator 2015",play,0.3,0 -145825155,"Amnesia The Dark Descent",purchase,1.0,0 -145825155,"Car Mechanic Simulator 2015 - Youngtimer",purchase,1.0,0 -145825155,"Grand Theft Auto San Andreas",purchase,1.0,0 -142279088,"Dota 2",purchase,1.0,0 -142279088,"Dota 2",play,0.3,0 -119311184,"Warlock - Master of the Arcane",purchase,1.0,0 -119311184,"Warlock - Master of the Arcane",play,29.0,0 -119311184,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -150397316,"Toribash",purchase,1.0,0 -150397316,"Toribash",play,96.0,0 -150397316,"Team Fortress 2",purchase,1.0,0 -150397316,"Team Fortress 2",play,62.0,0 -150397316,"PAYDAY 2",purchase,1.0,0 -150397316,"PAYDAY 2",play,46.0,0 -150397316,"War Thunder",purchase,1.0,0 -150397316,"War Thunder",play,5.3,0 -150397316,"Dream Of Mirror Online",purchase,1.0,0 -150397316,"Dream Of Mirror Online",play,2.9,0 -150397316,"Gotham City Impostors Free To Play",purchase,1.0,0 -150397316,"Gotham City Impostors Free To Play",play,2.6,0 -150397316,"World of Soccer online",purchase,1.0,0 -150397316,"World of Soccer online",play,1.8,0 -150397316,"Quake Live",purchase,1.0,0 -150397316,"Quake Live",play,1.1,0 -150397316,"Get Off My Lawn!",purchase,1.0,0 -150397316,"Get Off My Lawn!",play,1.1,0 -150397316,"Nosgoth",purchase,1.0,0 -150397316,"Nosgoth",play,0.9,0 -150397316,"Dota 2",purchase,1.0,0 -150397316,"Dota 2",play,0.6,0 -150397316,"Lost Saga North America",purchase,1.0,0 -150397316,"Lost Saga North America",play,0.5,0 -150397316,"Defiance",purchase,1.0,0 -150397316,"Defiance",play,0.2,0 -150397316,"Trove",purchase,1.0,0 -150397316,"Trove",play,0.1,0 -150397316,"SMITE",purchase,1.0,0 -212544433,"Dota 2",purchase,1.0,0 -212544433,"Dota 2",play,19.1,0 -59790700,"Borderlands 2",purchase,1.0,0 -59790700,"Borderlands 2",play,183.0,0 -59790700,"The Elder Scrolls V Skyrim",purchase,1.0,0 -59790700,"The Elder Scrolls V Skyrim",play,179.0,0 -59790700,"Borderlands",purchase,1.0,0 -59790700,"Borderlands",play,102.0,0 -59790700,"Grand Theft Auto V",purchase,1.0,0 -59790700,"Grand Theft Auto V",play,42.0,0 -59790700,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -59790700,"Deus Ex Human Revolution - Director's Cut",play,41.0,0 -59790700,"FINAL FANTASY VII",purchase,1.0,0 -59790700,"FINAL FANTASY VII",play,39.0,0 -59790700,"Call of Duty Modern Warfare 2",purchase,1.0,0 -59790700,"Call of Duty Modern Warfare 2",play,20.0,0 -59790700,"Gothic 3 Forsaken Gods Enhanced Edition",purchase,1.0,0 -59790700,"Gothic 3 Forsaken Gods Enhanced Edition",play,8.4,0 -59790700,"The Witcher 3 Wild Hunt",purchase,1.0,0 -59790700,"The Witcher 3 Wild Hunt",play,6.8,0 -59790700,"Call of Duty Modern Warfare 3",purchase,1.0,0 -59790700,"Call of Duty Modern Warfare 3",play,6.0,0 -59790700,"Borderlands The Pre-Sequel",purchase,1.0,0 -59790700,"Borderlands The Pre-Sequel",play,5.4,0 -59790700,"The Stanley Parable",purchase,1.0,0 -59790700,"The Stanley Parable",play,5.0,0 -59790700,"ArcaniA",purchase,1.0,0 -59790700,"ArcaniA",play,4.6,0 -59790700,"Portal 2",purchase,1.0,0 -59790700,"Portal 2",play,4.0,0 -59790700,"FINAL FANTASY VIII",purchase,1.0,0 -59790700,"FINAL FANTASY VIII",play,3.2,0 -59790700,"Mass Effect 2",purchase,1.0,0 -59790700,"Mass Effect 2",play,1.5,0 -59790700,"Tales from the Borderlands",purchase,1.0,0 -59790700,"Tales from the Borderlands",play,1.3,0 -59790700,"DARK SOULS II",purchase,1.0,0 -59790700,"DARK SOULS II",play,1.3,0 -59790700,"Mirror's Edge",purchase,1.0,0 -59790700,"Mirror's Edge",play,1.2,0 -59790700,"Grand Theft Auto IV",purchase,1.0,0 -59790700,"Grand Theft Auto IV",play,1.1,0 -59790700,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -59790700,"Call of Duty Modern Warfare 3 - Multiplayer",play,1.0,0 -59790700,"Dishonored",purchase,1.0,0 -59790700,"Dishonored",play,0.9,0 -59790700,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -59790700,"Grand Theft Auto Episodes from Liberty City",play,0.9,0 -59790700,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -59790700,"Shadowrun Dragonfall - Director's Cut",play,0.8,0 -59790700,"Mortal Kombat Kollection",purchase,1.0,0 -59790700,"Mortal Kombat Kollection",play,0.7,0 -59790700,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -59790700,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.5,0 -59790700,"Outlast",purchase,1.0,0 -59790700,"Outlast",play,0.4,0 -59790700,"Dead Space",purchase,1.0,0 -59790700,"Dead Space",play,0.3,0 -59790700,"Return to Castle Wolfenstein",purchase,1.0,0 -59790700,"Return to Castle Wolfenstein",play,0.2,0 -59790700,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -59790700,"The Secret of Monkey Island Special Edition",play,0.2,0 -59790700,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -59790700,"SEGA Genesis & Mega Drive Classics",play,0.1,0 -59790700,"Monkey Island 2 Special Edition",purchase,1.0,0 -59790700,"Monkey Island 2 Special Edition",play,0.1,0 -59790700,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -59790700,"Riven",purchase,1.0,0 -59790700,"Anna - Extended Edition",purchase,1.0,0 -59790700,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -59790700,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -59790700,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -59790700,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -59790700,"Fallout New Vegas",purchase,1.0,0 -59790700,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -59790700,"Fallout New Vegas Dead Money",purchase,1.0,0 -59790700,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -59790700,"Gothic",purchase,1.0,0 -59790700,"Gothic 3",purchase,1.0,0 -59790700,"Gothic II Gold Edition",purchase,1.0,0 -59790700,"Half-Life 2",purchase,1.0,0 -59790700,"Half-Life 2 Lost Coast",purchase,1.0,0 -59790700,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -59790700,"Red Faction",purchase,1.0,0 -59790700,"Red Faction II",purchase,1.0,0 -59790700,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -59790700,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -59790700,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -183963121,"Dota 2",purchase,1.0,0 -183963121,"Dota 2",play,1.0,0 -12259303,"Fallout 4",purchase,1.0,0 -12259303,"Fallout 4",play,127.0,0 -12259303,"South Park The Stick of Truth",purchase,1.0,0 -12259303,"South Park The Stick of Truth",play,18.0,0 -12259303,"Saints Row The Third",purchase,1.0,0 -12259303,"Saints Row The Third",play,14.0,0 -12259303,"RAGE",purchase,1.0,0 -12259303,"RAGE",play,13.4,0 -12259303,"Batman Arkham City",purchase,1.0,0 -12259303,"Batman Arkham City",play,8.3,0 -12259303,"Half-Life 2",purchase,1.0,0 -12259303,"Half-Life 2",play,8.0,0 -12259303,"Metro 2033",purchase,1.0,0 -12259303,"Metro 2033",play,7.6,0 -12259303,"Doctor Who The Eternity Clock",purchase,1.0,0 -12259303,"Doctor Who The Eternity Clock",play,5.0,0 -12259303,"Star Wars Knights of the Old Republic",purchase,1.0,0 -12259303,"Star Wars Knights of the Old Republic",play,4.6,0 -12259303,"Half-Life Opposing Force",purchase,1.0,0 -12259303,"Half-Life Opposing Force",play,2.7,0 -12259303,"Titan Quest",purchase,1.0,0 -12259303,"Titan Quest",play,1.4,0 -12259303,"Red Faction Armageddon",purchase,1.0,0 -12259303,"Red Faction Armageddon",play,1.3,0 -12259303,"Sniper Elite V2",purchase,1.0,0 -12259303,"Sniper Elite V2",play,1.1,0 -12259303,"Counter-Strike Source",purchase,1.0,0 -12259303,"Counter-Strike Source",play,1.0,0 -12259303,"Garry's Mod",purchase,1.0,0 -12259303,"Garry's Mod",play,0.9,0 -12259303,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -12259303,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,0.6,0 -12259303,"Half-Life Blue Shift",purchase,1.0,0 -12259303,"Half-Life Blue Shift",play,0.5,0 -12259303,"Half-Life 2 Lost Coast",purchase,1.0,0 -12259303,"Half-Life 2 Lost Coast",play,0.4,0 -12259303,"Company of Heroes",purchase,1.0,0 -12259303,"Company of Heroes",play,0.4,0 -12259303,"Star Wars Starfighter",purchase,1.0,0 -12259303,"Star Wars Starfighter",play,0.4,0 -12259303,"Darksiders",purchase,1.0,0 -12259303,"Darksiders",play,0.3,0 -12259303,"Half-Life 2 Deathmatch",purchase,1.0,0 -12259303,"Half-Life 2 Deathmatch",play,0.2,0 -12259303,"The Elder Scrolls III Morrowind",purchase,1.0,0 -12259303,"Batman Arkham City GOTY",purchase,1.0,0 -12259303,"Company of Heroes (New Steam Version)",purchase,1.0,0 -12259303,"Company of Heroes Opposing Fronts",purchase,1.0,0 -12259303,"Company of Heroes Tales of Valor",purchase,1.0,0 -96095486,"The Elder Scrolls V Skyrim",purchase,1.0,0 -96095486,"The Elder Scrolls V Skyrim",play,105.0,0 -136998614,"Team Fortress 2",purchase,1.0,0 -136998614,"Team Fortress 2",play,26.0,0 -136998614,"Counter-Strike Global Offensive",purchase,1.0,0 -136998614,"Counter-Strike Global Offensive",play,14.0,0 -136998614,"Guns and Robots",purchase,1.0,0 -136998614,"Guns and Robots",play,1.0,0 -136998614,"Robocraft",purchase,1.0,0 -136998614,"Robocraft",play,0.6,0 -136998614,"Heroes & Generals",purchase,1.0,0 -136998614,"Heroes & Generals",play,0.3,0 -136998614,"theHunter",purchase,1.0,0 -136998614,"theHunter",play,0.1,0 -136998614,"War Thunder",purchase,1.0,0 -218531534,"Dota 2",purchase,1.0,0 -218531534,"Dota 2",play,173.0,0 -294834367,"sZone-Online",purchase,1.0,0 -294834367,"sZone-Online",play,0.6,0 -199215257,"Dota 2",purchase,1.0,0 -199215257,"Dota 2",play,11.5,0 -66052983,"The Elder Scrolls V Skyrim",purchase,1.0,0 -66052983,"The Elder Scrolls V Skyrim",play,208.0,0 -66052983,"Team Fortress 2",purchase,1.0,0 -66052983,"Team Fortress 2",play,172.0,0 -66052983,"RIFT",purchase,1.0,0 -66052983,"RIFT",play,132.0,0 -66052983,"Left 4 Dead 2",purchase,1.0,0 -66052983,"Left 4 Dead 2",play,94.0,0 -66052983,"Age of Conan Unchained - EU version",purchase,1.0,0 -66052983,"Age of Conan Unchained - EU version",play,94.0,0 -66052983,"Counter-Strike Global Offensive",purchase,1.0,0 -66052983,"Counter-Strike Global Offensive",play,81.0,0 -66052983,"Neverwinter",purchase,1.0,0 -66052983,"Neverwinter",play,65.0,0 -66052983,"Reign Of Kings",purchase,1.0,0 -66052983,"Reign Of Kings",play,58.0,0 -66052983,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -66052983,"Tom Clancy's Ghost Recon Phantoms - EU",play,41.0,0 -66052983,"The Lord of the Rings Online",purchase,1.0,0 -66052983,"The Lord of the Rings Online",play,38.0,0 -66052983,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -66052983,"Call of Duty Black Ops II - Multiplayer",play,36.0,0 -66052983,"War of the Roses",purchase,1.0,0 -66052983,"War of the Roses",play,35.0,0 -66052983,"Mount & Blade With Fire and Sword",purchase,1.0,0 -66052983,"Mount & Blade With Fire and Sword",play,33.0,0 -66052983,"Nether",purchase,1.0,0 -66052983,"Nether",play,33.0,0 -66052983,"Panzar",purchase,1.0,0 -66052983,"Panzar",play,25.0,0 -66052983,"DC Universe Online",purchase,1.0,0 -66052983,"DC Universe Online",play,22.0,0 -66052983,"GunZ 2 The Second Duel",purchase,1.0,0 -66052983,"GunZ 2 The Second Duel",play,21.0,0 -66052983,"Stronghold Kingdoms",purchase,1.0,0 -66052983,"Stronghold Kingdoms",play,15.2,0 -66052983,"Ascend Hand of Kul",purchase,1.0,0 -66052983,"Ascend Hand of Kul",play,11.7,0 -66052983,"Nosgoth",purchase,1.0,0 -66052983,"Nosgoth",play,10.6,0 -66052983,"Chivalry Medieval Warfare",purchase,1.0,0 -66052983,"Chivalry Medieval Warfare",play,10.2,0 -66052983,"Depth",purchase,1.0,0 -66052983,"Depth",play,9.5,0 -66052983,"H1Z1",purchase,1.0,0 -66052983,"H1Z1",play,8.9,0 -66052983,"Dota 2",purchase,1.0,0 -66052983,"Dota 2",play,8.5,0 -66052983,"HAWKEN",purchase,1.0,0 -66052983,"HAWKEN",play,6.5,0 -66052983,"Infestation Survivor Stories",purchase,1.0,0 -66052983,"Infestation Survivor Stories",play,6.4,0 -66052983,"PAYDAY The Heist",purchase,1.0,0 -66052983,"PAYDAY The Heist",play,6.0,0 -66052983,"GameGuru",purchase,1.0,0 -66052983,"GameGuru",play,4.8,0 -66052983,"Unturned",purchase,1.0,0 -66052983,"Unturned",play,3.8,0 -66052983,"Kingdom Wars",purchase,1.0,0 -66052983,"Kingdom Wars",play,3.5,0 -66052983,"Goat Simulator",purchase,1.0,0 -66052983,"Goat Simulator",play,2.5,0 -66052983,"Terraria",purchase,1.0,0 -66052983,"Terraria",play,2.4,0 -66052983,"Trove",purchase,1.0,0 -66052983,"Trove",play,2.1,0 -66052983,"Kingdom Wars 2 Battles",purchase,1.0,0 -66052983,"Kingdom Wars 2 Battles",play,1.9,0 -66052983,"Arma 2 Operation Arrowhead",purchase,1.0,0 -66052983,"Arma 2 Operation Arrowhead",play,1.6,0 -66052983,"Steel Ocean",purchase,1.0,0 -66052983,"Steel Ocean",play,1.5,0 -66052983,"Dino D-Day",purchase,1.0,0 -66052983,"Dino D-Day",play,1.5,0 -66052983,"Fuse",purchase,1.0,0 -66052983,"Fuse",play,1.5,0 -66052983,"Face of Mankind",purchase,1.0,0 -66052983,"Face of Mankind",play,0.6,0 -66052983,"Blender 2.76b",purchase,1.0,0 -66052983,"Blender 2.76b",play,0.6,0 -66052983,"A Game of Thrones - Genesis",purchase,1.0,0 -66052983,"A Game of Thrones - Genesis",play,0.6,0 -66052983,"Arma 2 DayZ Mod",purchase,1.0,0 -66052983,"Arma 2 DayZ Mod",play,0.5,0 -66052983,"Echo of Soul",purchase,1.0,0 -66052983,"Echo of Soul",play,0.4,0 -66052983,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -66052983,"Call of Duty Black Ops II - Zombies",play,0.3,0 -66052983,"Call of Duty Black Ops II",purchase,1.0,0 -66052983,"Call of Duty Black Ops II",play,0.2,0 -66052983,"Star Conflict",purchase,1.0,0 -66052983,"Star Conflict",play,0.2,0 -66052983,"La Tale",purchase,1.0,0 -66052983,"La Tale",play,0.2,0 -66052983,"Esenthel Engine",purchase,1.0,0 -66052983,"Esenthel Engine",play,0.2,0 -66052983,"Dirty Bomb",purchase,1.0,0 -66052983,"Dirty Bomb",play,0.1,0 -66052983,"Firefall",purchase,1.0,0 -66052983,"Firefall",play,0.1,0 -66052983,"Warface",purchase,1.0,0 -66052983,"Mortal Online",purchase,1.0,0 -66052983,"Aftermath",purchase,1.0,0 -66052983,"Miscreated",purchase,1.0,0 -66052983,"sZone-Online",purchase,1.0,0 -66052983,"APB Reloaded",purchase,1.0,0 -66052983,"ArcheAge",purchase,1.0,0 -66052983,"Arma 2",purchase,1.0,0 -66052983,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -66052983,"Defiance",purchase,1.0,0 -66052983,"Forsaken Uprising",purchase,1.0,0 -66052983,"H1Z1 Test Server",purchase,1.0,0 -66052983,"Nether - Chosen",purchase,1.0,0 -66052983,"Nether Arena",purchase,1.0,0 -66052983,"Patch testing for Chivalry",purchase,1.0,0 -66052983,"RIFT Infusion Edition",purchase,1.0,0 -66052983,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -66052983,"Survarium",purchase,1.0,0 -66052983,"Tom Clancy's Ghost Recon Phantoms - EU 6000 GC Pack",purchase,1.0,0 -66052983,"War of the Roses Kingmaker",purchase,1.0,0 -66052983,"War of the Roses Balance Beta",purchase,1.0,0 -93669877,"The Elder Scrolls V Skyrim",purchase,1.0,0 -93669877,"The Elder Scrolls V Skyrim",play,12.1,0 -93669877,"Magicka",purchase,1.0,0 -93669877,"Magicka",play,2.9,0 -93669877,"Grand Theft Auto Vice City",purchase,1.0,0 -93669877,"Grand Theft Auto Vice City",play,1.7,0 -93669877,"Borderlands 2",purchase,1.0,0 -93669877,"Borderlands 2",play,1.0,0 -93669877,"Grand Theft Auto Vice City",purchase,1.0,0 -84738098,"Counter-Strike Source",purchase,1.0,0 -84738098,"Counter-Strike Source",play,12.0,0 -218734858,"Total War ATTILA",purchase,1.0,0 -218734858,"Total War ATTILA",play,112.0,0 -218734858,"Total War SHOGUN 2",purchase,1.0,0 -218734858,"Total War SHOGUN 2",play,37.0,0 -218734858,"Anno 1404",purchase,1.0,0 -218734858,"Anno 1404",play,26.0,0 -218734858,"Company of Heroes",purchase,1.0,0 -218734858,"Company of Heroes",play,11.9,0 -218734858,"Medieval II Total War",purchase,1.0,0 -218734858,"Medieval II Total War",play,10.0,0 -218734858,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -218734858,"RollerCoaster Tycoon 3 Platinum!",play,4.0,0 -218734858,"Company of Heroes Tales of Valor",purchase,1.0,0 -218734858,"Company of Heroes Tales of Valor",play,1.8,0 -218734858,"Company of Heroes (New Steam Version)",purchase,1.0,0 -218734858,"Company of Heroes (New Steam Version)",play,1.0,0 -218734858,"Company of Heroes Opposing Fronts",purchase,1.0,0 -218734858,"Medieval II Total War Kingdoms",purchase,1.0,0 -97886833,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -97886833,"Warhammer 40,000 Dawn of War II",play,4.3,0 -126269125,"Counter-Strike Global Offensive",purchase,1.0,0 -126269125,"Counter-Strike Global Offensive",play,483.0,0 -126269125,"Garry's Mod",purchase,1.0,0 -126269125,"Garry's Mod",play,313.0,0 -126269125,"DayZ",purchase,1.0,0 -126269125,"DayZ",play,244.0,0 -126269125,"Grand Theft Auto IV",purchase,1.0,0 -126269125,"Grand Theft Auto IV",play,120.0,0 -126269125,"Arma 2 Operation Arrowhead",purchase,1.0,0 -126269125,"Arma 2 Operation Arrowhead",play,117.0,0 -126269125,"Arma 3",purchase,1.0,0 -126269125,"Arma 3",play,94.0,0 -126269125,"Battlefield Bad Company 2",purchase,1.0,0 -126269125,"Battlefield Bad Company 2",play,65.0,0 -126269125,"Robocraft",purchase,1.0,0 -126269125,"Robocraft",play,61.0,0 -126269125,"The Forest",purchase,1.0,0 -126269125,"The Forest",play,29.0,0 -126269125,"Fallout New Vegas",purchase,1.0,0 -126269125,"Fallout New Vegas",play,25.0,0 -126269125,"Far Cry 3",purchase,1.0,0 -126269125,"Far Cry 3",play,19.8,0 -126269125,"Grand Theft Auto San Andreas",purchase,1.0,0 -126269125,"Grand Theft Auto San Andreas",play,18.0,0 -126269125,"Just Cause 2",purchase,1.0,0 -126269125,"Just Cause 2",play,11.8,0 -126269125,"Grand Theft Auto V",purchase,1.0,0 -126269125,"Grand Theft Auto V",play,11.8,0 -126269125,"Unturned",purchase,1.0,0 -126269125,"Unturned",play,11.4,0 -126269125,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -126269125,"Just Cause 2 Multiplayer Mod",play,11.1,0 -126269125,"Dead Rising 3",purchase,1.0,0 -126269125,"Dead Rising 3",play,10.4,0 -126269125,"PAYDAY 2",purchase,1.0,0 -126269125,"PAYDAY 2",play,10.2,0 -126269125,"Fistful of Frags",purchase,1.0,0 -126269125,"Fistful of Frags",play,8.6,0 -126269125,"Half-Life 2 Episode Two",purchase,1.0,0 -126269125,"Half-Life 2 Episode Two",play,7.3,0 -126269125,"War Thunder",purchase,1.0,0 -126269125,"War Thunder",play,4.8,0 -126269125,"Heroes & Generals",purchase,1.0,0 -126269125,"Heroes & Generals",play,4.3,0 -126269125,"H1Z1",purchase,1.0,0 -126269125,"H1Z1",play,3.5,0 -126269125,"BLOCKADE 3D",purchase,1.0,0 -126269125,"BLOCKADE 3D",play,3.2,0 -126269125,"Rust",purchase,1.0,0 -126269125,"Rust",play,2.9,0 -126269125,"Outlast",purchase,1.0,0 -126269125,"Outlast",play,2.1,0 -126269125,"Alan Wake",purchase,1.0,0 -126269125,"Alan Wake",play,1.7,0 -126269125,"Train Simulator",purchase,1.0,0 -126269125,"Train Simulator",play,1.2,0 -126269125,"Dead Island",purchase,1.0,0 -126269125,"Dead Island",play,0.9,0 -126269125,"Counter-Strike Source",purchase,1.0,0 -126269125,"Counter-Strike Source",play,0.8,0 -126269125,"Arma 2 DayZ Mod",purchase,1.0,0 -126269125,"Arma 2 DayZ Mod",play,0.6,0 -126269125,"ACE - Arena Cyber Evolution",purchase,1.0,0 -126269125,"ACE - Arena Cyber Evolution",play,0.4,0 -126269125,"Arma 2",purchase,1.0,0 -126269125,"Arma 2",play,0.3,0 -126269125,"Quake Live",purchase,1.0,0 -126269125,"Quake Live",play,0.2,0 -126269125,"60 Seconds!",purchase,1.0,0 -126269125,"Modular Combat",purchase,1.0,0 -126269125,"Fallout 3",purchase,1.0,0 -126269125,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -126269125,"Arma Cold War Assault",purchase,1.0,0 -126269125,"Arma 3 Zeus",purchase,1.0,0 -126269125,"Counter-Strike",purchase,1.0,0 -126269125,"Counter-Strike Condition Zero",purchase,1.0,0 -126269125,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -126269125,"Dead Rising 3 DLC1",purchase,1.0,0 -126269125,"Dead Rising 3 DLC2",purchase,1.0,0 -126269125,"Dead Rising 3 DLC3",purchase,1.0,0 -126269125,"Dead Rising 3 DLC4",purchase,1.0,0 -126269125,"Grand Theft Auto San Andreas",purchase,1.0,0 -126269125,"H1Z1 Test Server",purchase,1.0,0 -126269125,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -172860957,"Dota 2",purchase,1.0,0 -172860957,"Dota 2",play,11.7,0 -208216690,"Brick-Force",purchase,1.0,0 -208216690,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -32125590,"Counter-Strike",purchase,1.0,0 -32125590,"Counter-Strike",play,33.0,0 -32125590,"Company of Heroes 2",purchase,1.0,0 -32125590,"Company of Heroes 2",play,18.7,0 -32125590,"Saints Row The Third",purchase,1.0,0 -32125590,"Saints Row The Third",play,16.0,0 -32125590,"Counter-Strike Condition Zero",purchase,1.0,0 -32125590,"Counter-Strike Condition Zero",play,5.8,0 -32125590,"Dota 2",purchase,1.0,0 -32125590,"Dota 2",play,2.1,0 -32125590,"Men of War Red Tide",purchase,1.0,0 -32125590,"Men of War Red Tide",play,0.9,0 -32125590,"Men of War Vietnam",purchase,1.0,0 -32125590,"Men of War Vietnam",play,0.5,0 -32125590,"Theatre of War",purchase,1.0,0 -32125590,"Theatre of War",play,0.2,0 -32125590,"Deathmatch Classic",purchase,1.0,0 -32125590,"Deathmatch Classic",play,0.1,0 -32125590,"Real Warfare",purchase,1.0,0 -32125590,"Real Warfare",play,0.1,0 -32125590,"Day of Defeat",purchase,1.0,0 -32125590,"Men of War",purchase,1.0,0 -32125590,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -32125590,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -32125590,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -32125590,"Heroes & Generals",purchase,1.0,0 -32125590,"Real Warfare 2 Northern Crusades",purchase,1.0,0 -32125590,"Ricochet",purchase,1.0,0 -32125590,"Theatre of War 2 Africa 1943",purchase,1.0,0 -32125590,"Theatre of War 3 Korea",purchase,1.0,0 -32125590,"XIII Century",purchase,1.0,0 -250828184,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -250828184,"Star Wars The Force Unleashed Ultimate Sith Edition",play,11.9,0 -250828184,"Star Wars Knights of the Old Republic",purchase,1.0,0 -250828184,"Star Wars Knights of the Old Republic",play,2.2,0 -250828184,"Star Wars - Battlefront II",purchase,1.0,0 -35021321,"Codename Gordon",purchase,1.0,0 -35021321,"Codename Gordon",play,0.1,0 -106132774,"SpellForce 2 - Faith in Destiny",purchase,1.0,0 -106132774,"SpellForce 2 - Faith in Destiny",play,96.0,0 -106132774,"Dungeon Siege III",purchase,1.0,0 -106132774,"Dungeon Siege III",play,1.1,0 -106132774,"Rochard",purchase,1.0,0 -106132774,"Rochard",play,0.2,0 -170377069,"Cities Skylines",purchase,1.0,0 -170377069,"Cities Skylines",play,63.0,0 -170377069,"Never Alone (Kisima Ingitchuna)",purchase,1.0,0 -170377069,"Never Alone (Kisima Ingitchuna)",play,55.0,0 -170377069,"Portal 2",purchase,1.0,0 -170377069,"Portal 2",play,24.0,0 -170377069,"Dreamfall Chapters",purchase,1.0,0 -170377069,"Dreamfall Chapters",play,5.0,0 -170377069,"Papers, Please",purchase,1.0,0 -170377069,"Papers, Please",play,3.1,0 -170377069,"The Longest Journey",purchase,1.0,0 -170377069,"The Longest Journey",play,0.9,0 -170377069,"Dreamfall The Longest Journey",purchase,1.0,0 -250480120,"Life Is Strange",purchase,1.0,0 -250480120,"Life Is Strange",play,75.0,0 -168546873,"Dota 2",purchase,1.0,0 -168546873,"Dota 2",play,14.2,0 -168546873,"Free to Play",purchase,1.0,0 -168546873,"Happy Wars",purchase,1.0,0 -184536712,"Robocraft",purchase,1.0,0 -184536712,"Robocraft",play,1.4,0 -184536712,"Unturned",purchase,1.0,0 -184536712,"Unturned",play,0.2,0 -44197725,"Football Manager 2009",purchase,1.0,0 -44197725,"Football Manager 2009",play,24.0,0 -3244702,"Counter-Strike Global Offensive",purchase,1.0,0 -3244702,"Counter-Strike Global Offensive",play,63.0,0 -3244702,"Counter-Strike",purchase,1.0,0 -3244702,"Counter-Strike",play,4.3,0 -3244702,"Counter-Strike Source",purchase,1.0,0 -3244702,"Counter-Strike Source",play,1.2,0 -3244702,"Day of Defeat",purchase,1.0,0 -3244702,"Deathmatch Classic",purchase,1.0,0 -3244702,"Half-Life",purchase,1.0,0 -3244702,"Half-Life 2 Deathmatch",purchase,1.0,0 -3244702,"Half-Life 2 Lost Coast",purchase,1.0,0 -3244702,"Half-Life Blue Shift",purchase,1.0,0 -3244702,"Half-Life Opposing Force",purchase,1.0,0 -3244702,"Ricochet",purchase,1.0,0 -3244702,"Team Fortress Classic",purchase,1.0,0 -86448907,"Alien Swarm",purchase,1.0,0 -86448907,"Alien Swarm",play,0.2,0 -86448907,"Half-Life 2 Deathmatch",purchase,1.0,0 -86448907,"Half-Life 2 Lost Coast",purchase,1.0,0 -239135689,"Dota 2",purchase,1.0,0 -239135689,"Dota 2",play,102.0,0 -239135689,"FreeStyle2 Street Basketball",purchase,1.0,0 -239135689,"Free to Play",purchase,1.0,0 -239135689,"Strife",purchase,1.0,0 -207563790,"Goat Simulator",purchase,1.0,0 -207563790,"Goat Simulator",play,4.5,0 -207563790,"Team Fortress 2",purchase,1.0,0 -207563790,"Team Fortress 2",play,0.7,0 -153543959,"Call of Duty Ghosts",purchase,1.0,0 -153543959,"Call of Duty Ghosts",play,11.0,0 -153543959,"Lucius",purchase,1.0,0 -153543959,"Lucius",play,0.2,0 -153543959,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -153543959,"Call of Duty Ghosts - Multiplayer",play,0.2,0 -164511211,"Counter-Strike Global Offensive",purchase,1.0,0 -164511211,"Counter-Strike Global Offensive",play,365.0,0 -164511211,"The Elder Scrolls V Skyrim",purchase,1.0,0 -164511211,"The Elder Scrolls V Skyrim",play,147.0,0 -164511211,"Garry's Mod",purchase,1.0,0 -164511211,"Garry's Mod",play,122.0,0 -164511211,"Terraria",purchase,1.0,0 -164511211,"Terraria",play,100.0,0 -164511211,"Counter-Strike",purchase,1.0,0 -164511211,"Counter-Strike",play,83.0,0 -164511211,"Unturned",purchase,1.0,0 -164511211,"Unturned",play,51.0,0 -164511211,"Team Fortress 2",purchase,1.0,0 -164511211,"Team Fortress 2",play,44.0,0 -164511211,"Starbound - Unstable",purchase,1.0,0 -164511211,"Starbound - Unstable",play,28.0,0 -164511211,"Trove",purchase,1.0,0 -164511211,"Trove",play,21.0,0 -164511211,"The LEGO Movie - Videogame",purchase,1.0,0 -164511211,"The LEGO Movie - Videogame",play,18.2,0 -164511211,"Creativerse",purchase,1.0,0 -164511211,"Creativerse",play,15.2,0 -164511211,"Grand Theft Auto San Andreas",purchase,1.0,0 -164511211,"Grand Theft Auto San Andreas",play,13.2,0 -164511211,"Starbound",purchase,1.0,0 -164511211,"Starbound",play,11.8,0 -164511211,"Insurgency",purchase,1.0,0 -164511211,"Insurgency",play,11.6,0 -164511211,"Subnautica",purchase,1.0,0 -164511211,"Subnautica",play,11.0,0 -164511211,"Rust",purchase,1.0,0 -164511211,"Rust",play,10.7,0 -164511211,"War Thunder",purchase,1.0,0 -164511211,"War Thunder",play,7.1,0 -164511211,"Amazing World",purchase,1.0,0 -164511211,"Amazing World",play,6.8,0 -164511211,"Robocraft",purchase,1.0,0 -164511211,"Robocraft",play,6.4,0 -164511211,"The Escapists",purchase,1.0,0 -164511211,"The Escapists",play,6.3,0 -164511211,"Dead Bits",purchase,1.0,0 -164511211,"Dead Bits",play,6.0,0 -164511211,"Tactical Intervention",purchase,1.0,0 -164511211,"Tactical Intervention",play,5.0,0 -164511211,"No More Room in Hell",purchase,1.0,0 -164511211,"No More Room in Hell",play,4.0,0 -164511211,"Hurtworld",purchase,1.0,0 -164511211,"Hurtworld",play,2.6,0 -164511211,"Marvel Heroes 2015",purchase,1.0,0 -164511211,"Marvel Heroes 2015",play,2.3,0 -164511211,"Super Meat Boy",purchase,1.0,0 -164511211,"Super Meat Boy",play,2.1,0 -164511211,"Clicker Heroes",purchase,1.0,0 -164511211,"Clicker Heroes",play,2.0,0 -164511211,"Fistful of Frags",purchase,1.0,0 -164511211,"Fistful of Frags",play,1.7,0 -164511211,"Outlast",purchase,1.0,0 -164511211,"Outlast",play,1.2,0 -164511211,"BattleBlock Theater",purchase,1.0,0 -164511211,"BattleBlock Theater",play,1.1,0 -164511211,"Dota 2",purchase,1.0,0 -164511211,"Dota 2",play,0.9,0 -164511211,"The Adventures of Mr. Bobley",purchase,1.0,0 -164511211,"The Adventures of Mr. Bobley",play,0.8,0 -164511211,"Only If",purchase,1.0,0 -164511211,"Only If",play,0.6,0 -164511211,"Time Clickers",purchase,1.0,0 -164511211,"Time Clickers",play,0.6,0 -164511211,"Mitos.is The Game",purchase,1.0,0 -164511211,"Mitos.is The Game",play,0.4,0 -164511211,"Left 4 Dead 2",purchase,1.0,0 -164511211,"Left 4 Dead 2",play,0.4,0 -164511211,"Velvet Sundown",purchase,1.0,0 -164511211,"Velvet Sundown",play,0.4,0 -164511211,"Fishing Planet",purchase,1.0,0 -164511211,"Fishing Planet",play,0.4,0 -164511211,"AdVenture Capitalist",purchase,1.0,0 -164511211,"AdVenture Capitalist",play,0.3,0 -164511211,"the static speaks my name",purchase,1.0,0 -164511211,"the static speaks my name",play,0.3,0 -164511211,"Realm of the Mad God",purchase,1.0,0 -164511211,"Realm of the Mad God",play,0.2,0 -164511211,"Gear Up",purchase,1.0,0 -164511211,"Gear Up",play,0.1,0 -164511211,"Gravilon",purchase,1.0,0 -164511211,"Gravilon",play,0.1,0 -164511211,"Haunted Memories",purchase,1.0,0 -164511211,"Haunted Memories",play,0.1,0 -164511211,"The Expendabros",purchase,1.0,0 -164511211,"The Way of Life Free Edition",purchase,1.0,0 -164511211,"Double Action Boogaloo",purchase,1.0,0 -164511211,"Missing Translation",purchase,1.0,0 -164511211,"Assassin's Creed Brotherhood",purchase,1.0,0 -164511211,"Nyctophilia",purchase,1.0,0 -164511211,"Counter-Strike Condition Zero",purchase,1.0,0 -164511211,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -164511211,"Day of Defeat",purchase,1.0,0 -164511211,"Dead Bits (Soundtrack)",purchase,1.0,0 -164511211,"Deathmatch Classic",purchase,1.0,0 -164511211,"Grand Theft Auto San Andreas",purchase,1.0,0 -164511211,"Ricochet",purchase,1.0,0 -164511211,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -164511211,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -164511211,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -164511211,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -11207650,"Portal 2",purchase,1.0,0 -11207650,"Portal 2",play,289.0,0 -11207650,"Half-Life 2",purchase,1.0,0 -11207650,"Half-Life 2",play,41.0,0 -11207650,"Bulletstorm",purchase,1.0,0 -11207650,"Bulletstorm",play,39.0,0 -11207650,"F.E.A.R.",purchase,1.0,0 -11207650,"F.E.A.R.",play,37.0,0 -11207650,"Black Mesa",purchase,1.0,0 -11207650,"Black Mesa",play,32.0,0 -11207650,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -11207650,"F.E.A.R. 2 Project Origin",play,23.0,0 -11207650,"F.E.A.R. Extraction Point",purchase,1.0,0 -11207650,"F.E.A.R. Extraction Point",play,21.0,0 -11207650,"Portal",purchase,1.0,0 -11207650,"Portal",play,18.2,0 -11207650,"Painkiller Recurring Evil",purchase,1.0,0 -11207650,"Painkiller Recurring Evil",play,16.1,0 -11207650,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -11207650,"F.E.A.R. Perseus Mandate",play,15.1,0 -11207650,"Half-Life 2 Episode One",purchase,1.0,0 -11207650,"Half-Life 2 Episode One",play,12.0,0 -11207650,"Left 4 Dead",purchase,1.0,0 -11207650,"Left 4 Dead",play,8.7,0 -11207650,"Thinking with Time Machine",purchase,1.0,0 -11207650,"Thinking with Time Machine",play,8.3,0 -11207650,"Borderlands",purchase,1.0,0 -11207650,"Borderlands",play,7.9,0 -11207650,"Wolfenstein The New Order",purchase,1.0,0 -11207650,"Wolfenstein The New Order",play,7.4,0 -11207650,"Half-Life 2 Episode Two",purchase,1.0,0 -11207650,"Half-Life 2 Episode Two",play,6.9,0 -11207650,"Chaser",purchase,1.0,0 -11207650,"Chaser",play,6.6,0 -11207650,"Crysis",purchase,1.0,0 -11207650,"Crysis",play,5.5,0 -11207650,"Quake 4",purchase,1.0,0 -11207650,"Quake 4",play,5.5,0 -11207650,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -11207650,"Deus Ex Human Revolution - Director's Cut",play,4.9,0 -11207650,"Rocksmith",purchase,1.0,0 -11207650,"Rocksmith",play,4.0,0 -11207650,"Left 4 Dead 2",purchase,1.0,0 -11207650,"Left 4 Dead 2",play,3.6,0 -11207650,"Mass Effect",purchase,1.0,0 -11207650,"Mass Effect",play,2.9,0 -11207650,"F.E.A.R. 3",purchase,1.0,0 -11207650,"F.E.A.R. 3",play,2.1,0 -11207650,"Rise of the Triad",purchase,1.0,0 -11207650,"Rise of the Triad",play,1.7,0 -11207650,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -11207650,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,1.1,0 -11207650,"The Elder Scrolls V Skyrim",purchase,1.0,0 -11207650,"The Elder Scrolls V Skyrim",play,1.1,0 -11207650,"Day of Defeat",purchase,1.0,0 -11207650,"Day of Defeat",play,0.7,0 -11207650,"Counter-Strike Source",purchase,1.0,0 -11207650,"Counter-Strike Source",play,0.7,0 -11207650,"Antichamber",purchase,1.0,0 -11207650,"Antichamber",play,0.5,0 -11207650,"Call of Duty Modern Warfare 2",purchase,1.0,0 -11207650,"Call of Duty Modern Warfare 2",play,0.2,0 -11207650,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -11207650,"Counter-Strike",purchase,1.0,0 -11207650,"Deathmatch Classic",purchase,1.0,0 -11207650,"DOOM 3 BFG Edition",purchase,1.0,0 -11207650,"Dragon Nest",purchase,1.0,0 -11207650,"Far Cry",purchase,1.0,0 -11207650,"Far Cry 2",purchase,1.0,0 -11207650,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -11207650,"Far Cry 3",purchase,1.0,0 -11207650,"Far Cry 3 Blood Dragon",purchase,1.0,0 -11207650,"Fistful of Frags",purchase,1.0,0 -11207650,"Half-Life",purchase,1.0,0 -11207650,"Half-Life 2 Deathmatch",purchase,1.0,0 -11207650,"Half-Life 2 Lost Coast",purchase,1.0,0 -11207650,"Half-Life Blue Shift",purchase,1.0,0 -11207650,"Half-Life Opposing Force",purchase,1.0,0 -11207650,"Half-Life Deathmatch Source",purchase,1.0,0 -11207650,"Ricochet",purchase,1.0,0 -11207650,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -11207650,"Team Fortress Classic",purchase,1.0,0 -11207650,"Unturned",purchase,1.0,0 -173382820,"Counter-Strike",purchase,1.0,0 -173382820,"Counter-Strike",play,796.0,0 -173382820,"Dota 2",purchase,1.0,0 -173382820,"Dota 2",play,51.0,0 -173382820,"EasyAntiCheat eSports",purchase,1.0,0 -173382820,"EasyAntiCheat eSports",play,0.9,0 -173382820,"Counter-Strike Condition Zero",purchase,1.0,0 -173382820,"Counter-Strike Condition Zero",play,0.5,0 -173382820,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -173382820,"Counter-Strike Condition Zero Deleted Scenes",play,0.4,0 -173382820,"Blacklight Retribution",purchase,1.0,0 -173382820,"Path of Exile",purchase,1.0,0 -115163074,"Football Manager 2013",purchase,1.0,0 -115163074,"Football Manager 2013",play,12.5,0 -104707698,"Dead Island",purchase,1.0,0 -104707698,"Dead Island",play,18.7,0 -104707698,"Dead Island Riptide",purchase,1.0,0 -104707698,"Dead Island Riptide",play,12.5,0 -104707698,"Depression Quest",purchase,1.0,0 -174997093,"Train Simulator",purchase,1.0,0 -174997093,"Train Simulator",play,9.2,0 -194282276,"Dota 2",purchase,1.0,0 -194282276,"Dota 2",play,0.8,0 -83758687,"Team Fortress 2",purchase,1.0,0 -83758687,"Team Fortress 2",play,0.4,0 -15702351,"Half-Life",purchase,1.0,0 -15702351,"Half-Life",play,9.8,0 -15702351,"Half-Life Opposing Force",purchase,1.0,0 -15702351,"Half-Life Opposing Force",play,5.3,0 -15702351,"Counter-Strike Source",purchase,1.0,0 -15702351,"Counter-Strike Source",play,2.6,0 -15702351,"Half-Life 2",purchase,1.0,0 -15702351,"Half-Life 2",play,1.6,0 -15702351,"Half-Life 2 Deathmatch",purchase,1.0,0 -15702351,"Counter-Strike",purchase,1.0,0 -15702351,"Day of Defeat",purchase,1.0,0 -15702351,"Deathmatch Classic",purchase,1.0,0 -15702351,"Half-Life 2 Lost Coast",purchase,1.0,0 -15702351,"Half-Life Blue Shift",purchase,1.0,0 -15702351,"Ricochet",purchase,1.0,0 -15702351,"Team Fortress Classic",purchase,1.0,0 -238282687,"Call of Duty Modern Warfare 3",purchase,1.0,0 -238282687,"Call of Duty Modern Warfare 3",play,24.0,0 -238282687,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -171375833,"Dota 2",purchase,1.0,0 -171375833,"Dota 2",play,0.6,0 -38990345,"Portal",purchase,1.0,0 -38990345,"Portal",play,0.7,0 -188142305,"Dota 2",purchase,1.0,0 -188142305,"Dota 2",play,14.4,0 -106101617,"Terraria",purchase,1.0,0 -106101617,"Terraria",play,22.0,0 -45094639,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -45094639,"Resident Evil 6 / Biohazard 6",play,9.4,0 -45094639,"Age of Empires II HD Edition",purchase,1.0,0 -45094639,"Age of Empires II HD Edition",play,4.0,0 -45094639,"Tropico 5",purchase,1.0,0 -45094639,"Tropico 5",play,1.8,0 -45094639,"Tropico",purchase,1.0,0 -45094639,"Tropico",play,0.9,0 -45094639,"Cabela's African Adventures",purchase,1.0,0 -45094639,"Cabela's African Adventures",play,0.7,0 -45094639,"Democracy 3",purchase,1.0,0 -45094639,"Democracy 3",play,0.5,0 -45094639,"Rayman Legends",purchase,1.0,0 -45094639,"Rayman Legends",play,0.3,0 -45094639,"Tropico 2 Pirate Cove",purchase,1.0,0 -87341384,"PAYDAY 2",purchase,1.0,0 -87341384,"PAYDAY 2",play,278.0,0 -87341384,"Borderlands 2",purchase,1.0,0 -87341384,"Borderlands 2",play,111.0,0 -87341384,"Magic 2014 ",purchase,1.0,0 -87341384,"Magic 2014 ",play,86.0,0 -87341384,"DYNASTY WARRIORS 8 Xtreme Legends Complete Edition",purchase,1.0,0 -87341384,"DYNASTY WARRIORS 8 Xtreme Legends Complete Edition",play,61.0,0 -87341384,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -87341384,"Kingdoms of Amalur Reckoning",play,56.0,0 -87341384,"Borderlands The Pre-Sequel",purchase,1.0,0 -87341384,"Borderlands The Pre-Sequel",play,55.0,0 -87341384,"Left 4 Dead 2",purchase,1.0,0 -87341384,"Left 4 Dead 2",play,54.0,0 -87341384,"Saints Row IV",purchase,1.0,0 -87341384,"Saints Row IV",play,49.0,0 -87341384,"Saints Row The Third",purchase,1.0,0 -87341384,"Saints Row The Third",play,48.0,0 -87341384,"Age of Empires II HD Edition",purchase,1.0,0 -87341384,"Age of Empires II HD Edition",play,44.0,0 -87341384,"Evolve",purchase,1.0,0 -87341384,"Evolve",play,40.0,0 -87341384,"Borderlands",purchase,1.0,0 -87341384,"Borderlands",play,34.0,0 -87341384,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -87341384,"METAL GEAR RISING REVENGEANCE",play,33.0,0 -87341384,"Dishonored",purchase,1.0,0 -87341384,"Dishonored",play,30.0,0 -87341384,"Castlevania Lords of Shadow - Ultimate Edition",purchase,1.0,0 -87341384,"Castlevania Lords of Shadow - Ultimate Edition",play,26.0,0 -87341384,"Castlevania Lords of Shadow 2",purchase,1.0,0 -87341384,"Castlevania Lords of Shadow 2",play,25.0,0 -87341384,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -87341384,"The Incredible Adventures of Van Helsing",play,25.0,0 -87341384,"Far Cry 3",purchase,1.0,0 -87341384,"Far Cry 3",play,25.0,0 -87341384,"DmC Devil May Cry",purchase,1.0,0 -87341384,"DmC Devil May Cry",play,24.0,0 -87341384,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -87341384,"Resident Evil 6 / Biohazard 6",play,22.0,0 -87341384,"Plague Inc Evolved",purchase,1.0,0 -87341384,"Plague Inc Evolved",play,21.0,0 -87341384,"Saints Row Gat out of Hell",purchase,1.0,0 -87341384,"Saints Row Gat out of Hell",play,21.0,0 -87341384,"Wolfenstein The New Order German Edition",purchase,1.0,0 -87341384,"Wolfenstein The New Order German Edition",play,21.0,0 -87341384,"Company of Heroes 2",purchase,1.0,0 -87341384,"Company of Heroes 2",play,20.0,0 -87341384,"Darksiders",purchase,1.0,0 -87341384,"Darksiders",play,20.0,0 -87341384,"BioShock Infinite",purchase,1.0,0 -87341384,"BioShock Infinite",play,19.2,0 -87341384,"Thief",purchase,1.0,0 -87341384,"Thief",play,18.6,0 -87341384,"Darksiders II",purchase,1.0,0 -87341384,"Darksiders II",play,18.0,0 -87341384,"PROTOTYPE 2",purchase,1.0,0 -87341384,"PROTOTYPE 2",play,15.9,0 -87341384,"Tomb Raider",purchase,1.0,0 -87341384,"Tomb Raider",play,15.1,0 -87341384,"Remember Me",purchase,1.0,0 -87341384,"Remember Me",play,13.7,0 -87341384,"The Walking Dead",purchase,1.0,0 -87341384,"The Walking Dead",play,13.4,0 -87341384,"Supreme Commander 2",purchase,1.0,0 -87341384,"Supreme Commander 2",play,12.1,0 -87341384,"Dynasty Warriors 8 - Empires",purchase,1.0,0 -87341384,"Dynasty Warriors 8 - Empires",play,12.0,0 -87341384,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -87341384,"Resident Evil Revelations / Biohazard Revelations",play,11.7,0 -87341384,"Alan Wake",purchase,1.0,0 -87341384,"Alan Wake",play,11.4,0 -87341384,"Sacred 3",purchase,1.0,0 -87341384,"Sacred 3",play,11.2,0 -87341384,"The Walking Dead Season Two",purchase,1.0,0 -87341384,"The Walking Dead Season Two",play,10.8,0 -87341384,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -87341384,"Deus Ex Human Revolution - Director's Cut",play,10.8,0 -87341384,"Magic Duels",purchase,1.0,0 -87341384,"Magic Duels",play,10.0,0 -87341384,"Painkiller Hell & Damnation",purchase,1.0,0 -87341384,"Painkiller Hell & Damnation",play,9.1,0 -87341384,"The Last Remnant",purchase,1.0,0 -87341384,"The Last Remnant",play,8.2,0 -87341384,"Loadout",purchase,1.0,0 -87341384,"Loadout",play,7.8,0 -87341384,"Hitman Absolution",purchase,1.0,0 -87341384,"Hitman Absolution",play,7.4,0 -87341384,"Devil May Cry 4",purchase,1.0,0 -87341384,"Devil May Cry 4",play,6.9,0 -87341384,"BioShock 2",purchase,1.0,0 -87341384,"BioShock 2",play,6.5,0 -87341384,"Blood Knights",purchase,1.0,0 -87341384,"Blood Knights",play,4.6,0 -87341384,"Bound By Flame",purchase,1.0,0 -87341384,"Bound By Flame",play,2.3,0 -87341384,"The Incredible Adventures of Van Helsing II",purchase,1.0,0 -87341384,"The Incredible Adventures of Van Helsing II",play,2.2,0 -87341384,"Grotesque Tactics Evil Heroes",purchase,1.0,0 -87341384,"Grotesque Tactics Evil Heroes",play,1.5,0 -87341384,"Terraria",purchase,1.0,0 -87341384,"Terraria",play,1.5,0 -87341384,"Metro 2033 Redux",purchase,1.0,0 -87341384,"Metro 2033 Redux",play,1.1,0 -87341384,"Team Fortress 2",purchase,1.0,0 -87341384,"Team Fortress 2",play,0.7,0 -87341384,"Devil May Cry 3 Special Edition",purchase,1.0,0 -87341384,"Devil May Cry 3 Special Edition",play,0.6,0 -87341384,"Dungeon Siege III",purchase,1.0,0 -87341384,"Dungeon Siege III",play,0.6,0 -87341384,"Dungeon Defenders",purchase,1.0,0 -87341384,"Dungeon Defenders",play,0.5,0 -87341384,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -87341384,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.3,0 -87341384,"Dead Island Epidemic",purchase,1.0,0 -87341384,"AdVenture Capitalist",purchase,1.0,0 -87341384,"Age of Empires II HD The Forgotten",purchase,1.0,0 -87341384,"BioShock",purchase,1.0,0 -87341384,"BioShock Infinite - Season Pass",purchase,1.0,0 -87341384,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -87341384,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -87341384,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -87341384,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -87341384,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -87341384,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -87341384,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -87341384,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -87341384,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -87341384,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -87341384,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -87341384,"Castlevania Lords of Shadow 2 - Revelations DLC",purchase,1.0,0 -87341384,"Clicker Heroes",purchase,1.0,0 -87341384,"Darksiders II Deathinitive Edition",purchase,1.0,0 -87341384,"Darksiders II Soundtrack",purchase,1.0,0 -87341384,"Darksiders Soundtrack",purchase,1.0,0 -87341384,"Devil's Workshop pack",purchase,1.0,0 -87341384,"Evolve - Behemoth",purchase,1.0,0 -87341384,"Hitman Sniper Challenge",purchase,1.0,0 -87341384,"Metro Last Light Redux",purchase,1.0,0 -87341384,"Painkiller Hell & Damnation - The Clock Strikes Meat Night",purchase,1.0,0 -87341384,"Prototype 2 RADNET Access Pack",purchase,1.0,0 -87341384,"Rusty Hearts",purchase,1.0,0 -87341384,"Sakura Clicker",purchase,1.0,0 -87341384,"Supreme Commander 2 - Infinite War Battle Pack One",purchase,1.0,0 -87341384,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -87341384,"Thief - The Bank Heist",purchase,1.0,0 -87341384,"Time Clickers",purchase,1.0,0 -170944796,"Daylight",purchase,1.0,0 -170944796,"Daylight",play,0.5,0 -148831715,"Hero Siege",purchase,1.0,0 -148831715,"Hero Siege",play,50.0,0 -148831715,"Red Crucible Firestorm",purchase,1.0,0 -148831715,"Red Crucible Firestorm",play,23.0,0 -148831715,"Garry's Mod",purchase,1.0,0 -148831715,"Garry's Mod",play,19.7,0 -148831715,"Realm of the Mad God",purchase,1.0,0 -148831715,"Realm of the Mad God",play,7.3,0 -148831715,"Team Fortress 2",purchase,1.0,0 -148831715,"Team Fortress 2",play,6.6,0 -148831715,"Don't Starve Together Beta",purchase,1.0,0 -148831715,"Don't Starve Together Beta",play,4.4,0 -148831715,"Dungeon Defenders II",purchase,1.0,0 -148831715,"Dungeon Defenders II",play,3.0,0 -148831715,"Fight The Dragon",purchase,1.0,0 -148831715,"Fight The Dragon",play,2.4,0 -148831715,"Guns'N'Zombies",purchase,1.0,0 -148831715,"Guns'N'Zombies",play,2.3,0 -148831715,"No More Room in Hell",purchase,1.0,0 -148831715,"No More Room in Hell",play,2.1,0 -148831715,"Counter-Strike Global Offensive",purchase,1.0,0 -148831715,"Counter-Strike Global Offensive",play,1.4,0 -148831715,"ARK Survival Evolved",purchase,1.0,0 -148831715,"ARK Survival Evolved",play,1.3,0 -148831715,"Dungeonland",purchase,1.0,0 -148831715,"Dungeonland",play,1.2,0 -148831715,"Marvel Heroes 2015",purchase,1.0,0 -148831715,"Marvel Heroes 2015",play,1.1,0 -148831715,"Spiral Knights",purchase,1.0,0 -148831715,"Spiral Knights",play,0.9,0 -148831715,"Eldevin",purchase,1.0,0 -148831715,"Eldevin",play,0.7,0 -148831715,"Tactical Intervention",purchase,1.0,0 -148831715,"Tactical Intervention",play,0.7,0 -148831715,"Risk of Rain",purchase,1.0,0 -148831715,"Risk of Rain",play,0.4,0 -148831715,"Dungeons & Dragons Online",purchase,1.0,0 -148831715,"Dungeons & Dragons Online",play,0.1,0 -148831715,"Don't Starve",purchase,1.0,0 -148831715,"Don't Starve Reign of Giants",purchase,1.0,0 -148831715,"Hero Siege - The Depths of Hell",purchase,1.0,0 -148831715,"Hero Siege - The Karp of Doom",purchase,1.0,0 -144114673,"Dota 2",purchase,1.0,0 -144114673,"Dota 2",play,0.7,0 -213737989,"Robocraft",purchase,1.0,0 -213737989,"Robocraft",play,10.5,0 -213737989,"Unturned",purchase,1.0,0 -213737989,"Unturned",play,2.6,0 -213737989,"World of Guns Gun Disassembly",purchase,1.0,0 -213737989,"World of Guns Gun Disassembly",play,1.6,0 -213737989,"Gear Up",purchase,1.0,0 -213737989,"Gear Up",play,1.2,0 -213737989,"Trove",purchase,1.0,0 -213737989,"Trove",play,0.9,0 -213737989,"BLOCKADE 3D",purchase,1.0,0 -213737989,"BLOCKADE 3D",play,0.9,0 -213737989,"Blender 2.76b",purchase,1.0,0 -213737989,"Blender 2.76b",play,0.8,0 -294848255,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -294848255,"S.K.I.L.L. - Special Force 2",play,1.5,0 -296979942,"Earth 2150 Lost Souls",purchase,1.0,0 -219361406,"Counter-Strike Global Offensive",purchase,1.0,0 -219361406,"Counter-Strike Global Offensive",play,120.0,0 -219361406,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -219361406,"Navy Field 2 Conqueror of the Ocean",play,23.0,0 -219361406,"Heroes & Generals",purchase,1.0,0 -219361406,"War of the Roses",purchase,1.0,0 -255576471,"Marvel Heroes 2015",purchase,1.0,0 -252166407,"Basement",purchase,1.0,0 -252166407,"Basement",play,69.0,0 -252166407,"TerraTech",purchase,1.0,0 -252166407,"TerraTech",play,61.0,0 -252166407,"The Binding of Isaac Rebirth",purchase,1.0,0 -252166407,"The Binding of Isaac Rebirth",play,1.8,0 -252166407,"The Settlers Online",purchase,1.0,0 -87686595,"Team Fortress 2",purchase,1.0,0 -87686595,"Team Fortress 2",play,107.0,0 -181700777,"Dota 2",purchase,1.0,0 -181700777,"Dota 2",play,1069.0,0 -159780220,"Left 4 Dead 2",purchase,1.0,0 -188092362,"Unturned",purchase,1.0,0 -188092362,"Unturned",play,3.9,0 -208073859,"Quake Live",purchase,1.0,0 -208073859,"Quake Live",play,0.3,0 -301506413,"Counter-Strike Global Offensive",purchase,1.0,0 -301506413,"Counter-Strike Global Offensive",play,10.7,0 -121615038,"Football Manager 2014",purchase,1.0,0 -121615038,"Football Manager 2014",play,822.0,0 -121615038,"Football Manager 2015",purchase,1.0,0 -121615038,"Football Manager 2015",play,471.0,0 -121615038,"Football Manager 2013",purchase,1.0,0 -121615038,"Football Manager 2013",play,74.0,0 -121615038,"AdVenture Capitalist",purchase,1.0,0 -141918894,"Dota 2",purchase,1.0,0 -141918894,"Dota 2",play,3.9,0 -120106834,"Empire Total War",purchase,1.0,0 -120106834,"Empire Total War",play,105.0,0 -120106834,"Napoleon Total War",purchase,1.0,0 -120106834,"Napoleon Total War",play,73.0,0 -120106834,"Age of Empires II HD Edition",purchase,1.0,0 -120106834,"Age of Empires II HD Edition",play,12.7,0 -120106834,"Banished",purchase,1.0,0 -120106834,"Banished",play,11.2,0 -120106834,"Rise of Venice",purchase,1.0,0 -120106834,"Rise of Venice",play,9.6,0 -120106834,"Sid Meier's Civilization V",purchase,1.0,0 -120106834,"Sid Meier's Civilization V",play,4.2,0 -120106834,"Age of Empires III Complete Collection",purchase,1.0,0 -120106834,"Age of Empires III Complete Collection",play,0.8,0 -120106834,"Age of Empires II HD The Forgotten",purchase,1.0,0 -120106834,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -120106834,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -122188548,"Dota 2",purchase,1.0,0 -122188548,"Dota 2",play,9.7,0 -122188548,"Disciples III Reincarnation",purchase,1.0,0 -122188548,"Disciples III Reincarnation",play,4.8,0 -122188548,"Fallout New Vegas",purchase,1.0,0 -122188548,"Fallout New Vegas",play,0.7,0 -122188548,"No More Room in Hell",purchase,1.0,0 -122188548,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -81556495,"Banished",purchase,1.0,0 -81556495,"Banished",play,57.0,0 -81556495,"Left 4 Dead 2",purchase,1.0,0 -81556495,"Left 4 Dead 2",play,11.0,0 -81556495,"Amnesia The Dark Descent",purchase,1.0,0 -81556495,"Amnesia The Dark Descent",play,10.7,0 -81556495,"Far Cry 3",purchase,1.0,0 -81556495,"Far Cry 3",play,10.4,0 -81556495,"Castle Crashers",purchase,1.0,0 -81556495,"Castle Crashers",play,7.4,0 -81556495,"Amnesia A Machine for Pigs",purchase,1.0,0 -81556495,"Amnesia A Machine for Pigs",play,4.9,0 -81556495,"Terraria",purchase,1.0,0 -81556495,"Terraria",play,1.2,0 -81556495,"Goat Simulator",purchase,1.0,0 -81556495,"Goat Simulator",play,0.9,0 -81556495,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -295759540,"Dota 2",purchase,1.0,0 -295759540,"Dota 2",play,9.3,0 -203506108,"Firefall",purchase,1.0,0 -113260911,"Football Manager 2013",purchase,1.0,0 -113260911,"Football Manager 2013",play,598.0,0 -113260911,"Football Manager 2015",purchase,1.0,0 -113260911,"Football Manager 2015",play,323.0,0 -113260911,"Football Manager 2014",purchase,1.0,0 -113260911,"Football Manager 2014",play,303.0,0 -113260911,"Football Manager 2016",purchase,1.0,0 -113260911,"Football Manager 2016",play,90.0,0 -113260911,"RaceRoom Racing Experience ",purchase,1.0,0 -113260911,"RaceRoom Racing Experience ",play,11.5,0 -113260911,"Game Dev Tycoon",purchase,1.0,0 -113260911,"Game Dev Tycoon",play,4.0,0 -113260911,"F1 2014",purchase,1.0,0 -113260911,"F1 2014",play,2.7,0 -113260911,"Team Fortress 2",purchase,1.0,0 -113260911,"Team Fortress 2",play,1.5,0 -113260911,"Copa Petrobras de Marcas",purchase,1.0,0 -113260911,"Copa Petrobras de Marcas",play,0.1,0 -113260911,"Football Manager 2016 Touch Mode - Design a Son",purchase,1.0,0 -94961328,"Speedball 2 Tournament",purchase,1.0,0 -24204083,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -24204083,"Call of Duty Modern Warfare 2 - Multiplayer",play,740.0,0 -24204083,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -24204083,"Call of Duty Black Ops - Multiplayer",play,248.0,0 -24204083,"Battlefield Bad Company 2",purchase,1.0,0 -24204083,"Battlefield Bad Company 2",play,133.0,0 -24204083,"Counter-Strike Source",purchase,1.0,0 -24204083,"Counter-Strike Source",play,49.0,0 -24204083,"BRINK",purchase,1.0,0 -24204083,"BRINK",play,17.6,0 -24204083,"Team Fortress 2",purchase,1.0,0 -24204083,"Team Fortress 2",play,6.5,0 -24204083,"Counter-Strike Global Offensive",purchase,1.0,0 -24204083,"Counter-Strike Global Offensive",play,5.0,0 -24204083,"Call of Duty Modern Warfare 2",purchase,1.0,0 -24204083,"Call of Duty Modern Warfare 2",play,4.0,0 -24204083,"Garry's Mod",purchase,1.0,0 -24204083,"Garry's Mod",play,3.4,0 -24204083,"Call of Duty Black Ops",purchase,1.0,0 -24204083,"Call of Duty Black Ops",play,2.7,0 -24204083,"Half-Life 2 Deathmatch",purchase,1.0,0 -24204083,"Half-Life 2 Deathmatch",play,1.8,0 -24204083,"Call of Duty Modern Warfare 2 - Resurgence Pack",purchase,1.0,0 -24204083,"Call of Duty Modern Warfare 2 Stimulus Package",purchase,1.0,0 -24204083,"Counter-Strike",purchase,1.0,0 -24204083,"Counter-Strike Condition Zero",purchase,1.0,0 -24204083,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -24204083,"Half-Life 2",purchase,1.0,0 -24204083,"Half-Life 2 Lost Coast",purchase,1.0,0 -24204083,"Half-Life Source",purchase,1.0,0 -24204083,"Half-Life Deathmatch Source",purchase,1.0,0 -28443095,"Counter-Strike",purchase,1.0,0 -28443095,"Counter-Strike",play,5.1,0 -28443095,"Counter-Strike Condition Zero",purchase,1.0,0 -28443095,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -28443095,"Day of Defeat",purchase,1.0,0 -28443095,"Deathmatch Classic",purchase,1.0,0 -28443095,"Half-Life 2 Deathmatch",purchase,1.0,0 -28443095,"Half-Life 2 Lost Coast",purchase,1.0,0 -28443095,"Ricochet",purchase,1.0,0 -177537876,"Dota 2",purchase,1.0,0 -177537876,"Dota 2",play,0.6,0 -95362226,"Football Manager 2012",purchase,1.0,0 -95362226,"Football Manager 2012",play,679.0,0 -95362226,"Football Manager 2015",purchase,1.0,0 -95362226,"Football Manager 2015",play,1.7,0 -95362226,"Napoleon Total War",purchase,1.0,0 -251241445,"Marvel Heroes 2015",purchase,1.0,0 -251241445,"Marvel Heroes 2015",play,0.3,0 -251241445,"Counter-Strike Nexon Zombies",purchase,1.0,0 -251241445,"Path of Exile",purchase,1.0,0 -49688948,"Empire Total War",purchase,1.0,0 -49688948,"Empire Total War",play,10.3,0 -183486202,"Loadout",purchase,1.0,0 -183486202,"Loadout",play,0.7,0 -183486202,"theHunter",purchase,1.0,0 -183486202,"theHunter",play,0.1,0 -183486202,"Hazard Ops",purchase,1.0,0 -183486202,"The Four Kings Casino and Slots",purchase,1.0,0 -183486202,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -95562622,"Football Manager 2012",purchase,1.0,0 -95562622,"Football Manager 2012",play,115.0,0 -297278471,"Gotham City Impostors Free To Play",purchase,1.0,0 -297278471,"Gotham City Impostors Free To Play",play,1.6,0 -283636252,"Spooky's House of Jump Scares",purchase,1.0,0 -283636252,"Spooky's House of Jump Scares",play,0.1,0 -168641975,"Garry's Mod",purchase,1.0,0 -168641975,"Garry's Mod",play,204.0,0 -168641975,"Kerbal Space Program",purchase,1.0,0 -168641975,"Kerbal Space Program",play,13.9,0 -168641975,"Arma 3",purchase,1.0,0 -168641975,"Arma 3",play,13.4,0 -168641975,"Euro Truck Simulator 2",purchase,1.0,0 -168641975,"Euro Truck Simulator 2",play,10.0,0 -168641975,"Counter-Strike Source",purchase,1.0,0 -168641975,"Counter-Strike Source",play,6.1,0 -168641975,"Surgeon Simulator",purchase,1.0,0 -168641975,"Surgeon Simulator",play,4.4,0 -168641975,"Team Fortress 2",purchase,1.0,0 -168641975,"Team Fortress 2",play,3.3,0 -168641975,"Starbound",purchase,1.0,0 -168641975,"Starbound",play,3.0,0 -168641975,"Unturned",purchase,1.0,0 -168641975,"Unturned",play,1.4,0 -168641975,"Next Car Game Wreckfest",purchase,1.0,0 -168641975,"Next Car Game Wreckfest",play,1.1,0 -168641975,"Goat Simulator",purchase,1.0,0 -168641975,"Goat Simulator",play,0.7,0 -168641975,"Chivalry Medieval Warfare",purchase,1.0,0 -168641975,"Chivalry Medieval Warfare",play,0.4,0 -168641975,"Arma 3 Zeus",purchase,1.0,0 -168641975,"Gotham City Impostors Free To Play",purchase,1.0,0 -168641975,"Loadout",purchase,1.0,0 -168641975,"Marvel Heroes 2015",purchase,1.0,0 -168641975,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -168641975,"Patch testing for Chivalry",purchase,1.0,0 -168641975,"Starbound - Unstable",purchase,1.0,0 -168641975,"War Thunder",purchase,1.0,0 -200035911,"Dota 2",purchase,1.0,0 -200035911,"Dota 2",play,541.0,0 -302396512,"Mitos.is The Game",purchase,1.0,0 -302396512,"Mitos.is The Game",play,10.1,0 -201777630,"Dota 2",purchase,1.0,0 -201777630,"Dota 2",play,0.6,0 -225655173,"Dota 2",purchase,1.0,0 -225655173,"Dota 2",play,800.0,0 -225655173,"FreeStyle2 Street Basketball",purchase,1.0,0 -225655173,"Marvel Heroes 2015",purchase,1.0,0 -225655173,"Robotex",purchase,1.0,0 -237784559,"War Thunder",purchase,1.0,0 -237784559,"War Thunder",play,1.3,0 -82807945,"Sniper Ghost Warrior",purchase,1.0,0 -77924328,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -77924328,"Call of Duty Black Ops - Multiplayer",play,269.0,0 -77924328,"Call of Duty Black Ops",purchase,1.0,0 -77924328,"Call of Duty Black Ops",play,90.0,0 -77924328,"BioShock 2",purchase,1.0,0 -77924328,"BioShock 2",play,1.8,0 -77924328,"Counter-Strike Nexon Zombies",purchase,1.0,0 -77924328,"Counter-Strike Nexon Zombies",play,0.2,0 -150144638,"Team Fortress 2",purchase,1.0,0 -150144638,"Team Fortress 2",play,0.9,0 -61642722,"Call of Duty Modern Warfare 2",purchase,1.0,0 -61642722,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -151960085,"Dota 2",purchase,1.0,0 -151960085,"Dota 2",play,30.0,0 -176689215,"Marvel Heroes 2015",purchase,1.0,0 -301274389,"Cities Skylines",purchase,1.0,0 -301274389,"Cities Skylines",play,9.8,0 -77124916,"Grand Theft Auto V",purchase,1.0,0 -77124916,"Grand Theft Auto V",play,460.0,0 -77124916,"Fallout 4",purchase,1.0,0 -77124916,"Fallout 4",play,361.0,0 -77124916,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -77124916,"METAL GEAR SOLID V THE PHANTOM PAIN",play,165.0,0 -77124916,"Front Mission Evolved",purchase,1.0,0 -77124916,"Front Mission Evolved",play,27.0,0 -77124916,"Dead Island Epidemic",purchase,1.0,0 -77124916,"Dead Island Epidemic",play,14.9,0 -77124916,"Counter-Strike Global Offensive",purchase,1.0,0 -77124916,"Counter-Strike Global Offensive",play,0.9,0 -77124916,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -121900241,"Counter-Strike",purchase,1.0,0 -121900241,"Counter-Strike",play,4217.0,0 -121900241,"Counter-Strike Global Offensive",purchase,1.0,0 -121900241,"Counter-Strike Global Offensive",play,785.0,0 -121900241,"Left 4 Dead 2",purchase,1.0,0 -121900241,"Left 4 Dead 2",play,33.0,0 -121900241,"Half-Life 2",purchase,1.0,0 -121900241,"Half-Life 2",play,2.3,0 -121900241,"BattleBlock Theater",purchase,1.0,0 -121900241,"BattleBlock Theater",play,0.9,0 -121900241,"Counter-Strike Nexon Zombies",purchase,1.0,0 -121900241,"Counter-Strike Nexon Zombies",play,0.4,0 -121900241,"Counter-Strike Condition Zero",purchase,1.0,0 -121900241,"Counter-Strike Condition Zero",play,0.2,0 -121900241,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -121900241,"Counter-Strike Source",purchase,1.0,0 -121900241,"Left 4 Dead",purchase,1.0,0 -161632739,"Kerbal Space Program",purchase,1.0,0 -161632739,"Kerbal Space Program",play,84.0,0 -161632739,"Team Fortress 2",purchase,1.0,0 -161632739,"Team Fortress 2",play,44.0,0 -161632739,"Day of Defeat Source",purchase,1.0,0 -161632739,"Day of Defeat Source",play,2.3,0 -161632739,"Portal 2",purchase,1.0,0 -161632739,"Portal 2",play,0.2,0 -179404476,"Dota 2",purchase,1.0,0 -179404476,"Dota 2",play,150.0,0 -179404476,"Marvel Puzzle Quest",purchase,1.0,0 -179404476,"Marvel Puzzle Quest",play,46.0,0 -179404476,"Team Fortress 2",purchase,1.0,0 -179404476,"Team Fortress 2",play,38.0,0 -179404476,"AirMech",purchase,1.0,0 -179404476,"AirMech",play,35.0,0 -179404476,"Tribes Ascend",purchase,1.0,0 -179404476,"Tribes Ascend",play,10.2,0 -179404476,"March of War",purchase,1.0,0 -179404476,"March of War",play,7.2,0 -179404476,"Unturned",purchase,1.0,0 -179404476,"Unturned",play,6.0,0 -179404476,"The Escapists",purchase,1.0,0 -179404476,"The Escapists",play,5.4,0 -179404476,"Squishy the Suicidal Pig",purchase,1.0,0 -179404476,"Squishy the Suicidal Pig",play,4.2,0 -179404476,"Happy Wars",purchase,1.0,0 -179404476,"Happy Wars",play,2.4,0 -179404476,"Awesomenauts",purchase,1.0,0 -179404476,"Awesomenauts",play,1.4,0 -179404476,"Quake Live",purchase,1.0,0 -179404476,"Quake Live",play,1.2,0 -179404476,"Realm of the Mad God",purchase,1.0,0 -179404476,"Realm of the Mad God",play,1.2,0 -179404476,"Gotham City Impostors Free To Play",purchase,1.0,0 -179404476,"Gotham City Impostors Free To Play",play,1.2,0 -179404476,"Robocraft",purchase,1.0,0 -179404476,"Robocraft",play,0.6,0 -179404476,"Marvel Heroes 2015",purchase,1.0,0 -179404476,"Firefall",purchase,1.0,0 -179404476,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -179404476,"Yet Another Zombie Defense",purchase,1.0,0 -2259650,"Team Fortress 2",purchase,1.0,0 -2259650,"Team Fortress 2",play,557.0,0 -2259650,"Left 4 Dead 2",purchase,1.0,0 -2259650,"Left 4 Dead 2",play,505.0,0 -2259650,"Borderlands 2",purchase,1.0,0 -2259650,"Borderlands 2",play,223.0,0 -2259650,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -2259650,"Call of Duty Black Ops II - Multiplayer",play,195.0,0 -2259650,"Fallout 4",purchase,1.0,0 -2259650,"Fallout 4",play,116.0,0 -2259650,"Borderlands",purchase,1.0,0 -2259650,"Borderlands",play,103.0,0 -2259650,"Left 4 Dead",purchase,1.0,0 -2259650,"Left 4 Dead",play,91.0,0 -2259650,"South Park The Stick of Truth",purchase,1.0,0 -2259650,"South Park The Stick of Truth",play,22.0,0 -2259650,"Portal 2",purchase,1.0,0 -2259650,"Portal 2",play,21.0,0 -2259650,"RAGE",purchase,1.0,0 -2259650,"RAGE",play,17.1,0 -2259650,"Wolfenstein The New Order",purchase,1.0,0 -2259650,"Wolfenstein The New Order",play,14.7,0 -2259650,"BioShock 2",purchase,1.0,0 -2259650,"BioShock 2",play,12.3,0 -2259650,"BioShock Infinite",purchase,1.0,0 -2259650,"BioShock Infinite",play,12.2,0 -2259650,"Sid Meier's Civilization V",purchase,1.0,0 -2259650,"Sid Meier's Civilization V",play,12.0,0 -2259650,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -2259650,"Burnout Paradise The Ultimate Box",play,10.6,0 -2259650,"Max Payne 3",purchase,1.0,0 -2259650,"Max Payne 3",play,10.5,0 -2259650,"Saints Row The Third",purchase,1.0,0 -2259650,"Saints Row The Third",play,9.8,0 -2259650,"Battlefield Bad Company 2",purchase,1.0,0 -2259650,"Battlefield Bad Company 2",play,9.2,0 -2259650,"GRID 2",purchase,1.0,0 -2259650,"GRID 2",play,7.3,0 -2259650,"Counter-Strike Source",purchase,1.0,0 -2259650,"Counter-Strike Source",play,6.2,0 -2259650,"Call of Duty Advanced Warfare",purchase,1.0,0 -2259650,"Call of Duty Advanced Warfare",play,5.7,0 -2259650,"Poker Night 2",purchase,1.0,0 -2259650,"Poker Night 2",play,4.6,0 -2259650,"Counter-Strike Global Offensive",purchase,1.0,0 -2259650,"Counter-Strike Global Offensive",play,4.6,0 -2259650,"Wolfenstein The Old Blood ",purchase,1.0,0 -2259650,"Wolfenstein The Old Blood ",play,4.5,0 -2259650,"Grand Theft Auto V",purchase,1.0,0 -2259650,"Grand Theft Auto V",play,4.3,0 -2259650,"Rayman Legends",purchase,1.0,0 -2259650,"Rayman Legends",play,3.9,0 -2259650,"Street Fighter IV",purchase,1.0,0 -2259650,"Street Fighter IV",play,3.9,0 -2259650,"Killing Floor",purchase,1.0,0 -2259650,"Killing Floor",play,3.8,0 -2259650,"LIMBO",purchase,1.0,0 -2259650,"LIMBO",play,3.3,0 -2259650,"Alien Swarm",purchase,1.0,0 -2259650,"Alien Swarm",play,3.2,0 -2259650,"Grand Theft Auto IV",purchase,1.0,0 -2259650,"Grand Theft Auto IV",play,3.0,0 -2259650,"VVVVVV",purchase,1.0,0 -2259650,"VVVVVV",play,2.9,0 -2259650,"Quake",purchase,1.0,0 -2259650,"Quake",play,2.8,0 -2259650,"Sid Meier's Civilization IV",purchase,1.0,0 -2259650,"Sid Meier's Civilization IV",play,2.6,0 -2259650,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -2259650,"Duke Nukem 3D Megaton Edition",play,2.3,0 -2259650,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -2259650,"Sid Meier's Civilization IV Warlords",play,2.3,0 -2259650,"Cave Story+",purchase,1.0,0 -2259650,"Cave Story+",play,2.3,0 -2259650,"Tropico 4",purchase,1.0,0 -2259650,"Tropico 4",play,2.1,0 -2259650,"Magicka",purchase,1.0,0 -2259650,"Magicka",play,2.1,0 -2259650,"Crysis 2 Maximum Edition",purchase,1.0,0 -2259650,"Crysis 2 Maximum Edition",play,2.0,0 -2259650,"Bejeweled 2 Deluxe",purchase,1.0,0 -2259650,"Bejeweled 2 Deluxe",play,2.0,0 -2259650,"Sniper Elite 3",purchase,1.0,0 -2259650,"Sniper Elite 3",play,1.8,0 -2259650,"Ryse Son of Rome",purchase,1.0,0 -2259650,"Ryse Son of Rome",play,1.8,0 -2259650,"Dishonored",purchase,1.0,0 -2259650,"Dishonored",play,1.7,0 -2259650,"Shadow Warrior Classic Redux",purchase,1.0,0 -2259650,"Shadow Warrior Classic Redux",play,1.6,0 -2259650,"Don't Starve Together Beta",purchase,1.0,0 -2259650,"Don't Starve Together Beta",play,1.5,0 -2259650,"Broforce",purchase,1.0,0 -2259650,"Broforce",play,1.5,0 -2259650,"Saints Row IV",purchase,1.0,0 -2259650,"Saints Row IV",play,1.5,0 -2259650,"Rise of the Triad",purchase,1.0,0 -2259650,"Rise of the Triad",play,1.4,0 -2259650,"Spelunky",purchase,1.0,0 -2259650,"Spelunky",play,1.4,0 -2259650,"Mark of the Ninja",purchase,1.0,0 -2259650,"Mark of the Ninja",play,1.3,0 -2259650,"Dwarfs!?",purchase,1.0,0 -2259650,"Dwarfs!?",play,1.2,0 -2259650,"Company of Heroes (New Steam Version)",purchase,1.0,0 -2259650,"Company of Heroes (New Steam Version)",play,1.2,0 -2259650,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -2259650,"The Secret of Monkey Island Special Edition",play,1.2,0 -2259650,"The Elder Scrolls V Skyrim",purchase,1.0,0 -2259650,"The Elder Scrolls V Skyrim",play,1.2,0 -2259650,"Batman Arkham City GOTY",purchase,1.0,0 -2259650,"Batman Arkham City GOTY",play,1.1,0 -2259650,"Tomb Raider",purchase,1.0,0 -2259650,"Tomb Raider",play,1.1,0 -2259650,"Hammerwatch",purchase,1.0,0 -2259650,"Hammerwatch",play,0.9,0 -2259650,"Jamestown",purchase,1.0,0 -2259650,"Jamestown",play,0.9,0 -2259650,"Lost Planet 2",purchase,1.0,0 -2259650,"Lost Planet 2",play,0.9,0 -2259650,"Dota 2",purchase,1.0,0 -2259650,"Dota 2",play,0.9,0 -2259650,"Day of Defeat Source",purchase,1.0,0 -2259650,"Day of Defeat Source",play,0.8,0 -2259650,"Terraria",purchase,1.0,0 -2259650,"Terraria",play,0.8,0 -2259650,"Supreme Commander Forged Alliance",purchase,1.0,0 -2259650,"Supreme Commander Forged Alliance",play,0.8,0 -2259650,"Madballs in...Babo Invasion",purchase,1.0,0 -2259650,"Madballs in...Babo Invasion",play,0.8,0 -2259650,"GRID",purchase,1.0,0 -2259650,"GRID",play,0.7,0 -2259650,"The Ultimate DOOM",purchase,1.0,0 -2259650,"The Ultimate DOOM",play,0.7,0 -2259650,"Fallout New Vegas",purchase,1.0,0 -2259650,"Fallout New Vegas",play,0.7,0 -2259650,"Deadlight",purchase,1.0,0 -2259650,"Deadlight",play,0.7,0 -2259650,"SlamIt Pinball Big Score",purchase,1.0,0 -2259650,"SlamIt Pinball Big Score",play,0.7,0 -2259650,"Company of Heroes",purchase,1.0,0 -2259650,"Company of Heroes",play,0.7,0 -2259650,"Half-Life 2 Lost Coast",purchase,1.0,0 -2259650,"Half-Life 2 Lost Coast",play,0.6,0 -2259650,"The Stanley Parable",purchase,1.0,0 -2259650,"The Stanley Parable",play,0.6,0 -2259650,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -2259650,"Star Wars Jedi Knight Dark Forces II",play,0.5,0 -2259650,"Super Meat Boy",purchase,1.0,0 -2259650,"Super Meat Boy",play,0.5,0 -2259650,"Descent Underground",purchase,1.0,0 -2259650,"Descent Underground",play,0.5,0 -2259650,"Fallout 3",purchase,1.0,0 -2259650,"Fallout 3",play,0.5,0 -2259650,"Tales from Space Mutant Blobs Attack",purchase,1.0,0 -2259650,"Tales from Space Mutant Blobs Attack",play,0.5,0 -2259650,"Star Wars Dark Forces",purchase,1.0,0 -2259650,"Star Wars Dark Forces",play,0.4,0 -2259650,"Painkiller Redemption",purchase,1.0,0 -2259650,"Painkiller Redemption",play,0.4,0 -2259650,"Droplitz",purchase,1.0,0 -2259650,"Droplitz",play,0.4,0 -2259650,"F.E.A.R.",purchase,1.0,0 -2259650,"F.E.A.R.",play,0.4,0 -2259650,"Metro Last Light",purchase,1.0,0 -2259650,"Metro Last Light",play,0.4,0 -2259650,"PAYDAY 2",purchase,1.0,0 -2259650,"PAYDAY 2",play,0.3,0 -2259650,"Hotline Miami",purchase,1.0,0 -2259650,"Hotline Miami",play,0.3,0 -2259650,"From Dust",purchase,1.0,0 -2259650,"From Dust",play,0.3,0 -2259650,"Bookworm Adventures Deluxe",purchase,1.0,0 -2259650,"Bookworm Adventures Deluxe",play,0.3,0 -2259650,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -2259650,"Resident Evil 5 / Biohazard 5",play,0.3,0 -2259650,"Total Annihilation",purchase,1.0,0 -2259650,"Total Annihilation",play,0.3,0 -2259650,"Cogs",purchase,1.0,0 -2259650,"Cogs",play,0.3,0 -2259650,"Guacamelee! Gold Edition",purchase,1.0,0 -2259650,"Guacamelee! Gold Edition",play,0.3,0 -2259650,"Final DOOM",purchase,1.0,0 -2259650,"Final DOOM",play,0.2,0 -2259650,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -2259650,"Star Wars Jedi Knight Jedi Academy",play,0.2,0 -2259650,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -2259650,"Sid Meier's Civilization IV Colonization",play,0.2,0 -2259650,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -2259650,"Call of Duty Black Ops II - Zombies",play,0.2,0 -2259650,"Ghostbusters The Video Game",purchase,1.0,0 -2259650,"Ghostbusters The Video Game",play,0.2,0 -2259650,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -2259650,"Sonic & All-Stars Racing Transformed",play,0.2,0 -2259650,"Half-Life",purchase,1.0,0 -2259650,"Half-Life",play,0.2,0 -2259650,"Red Faction Armageddon",purchase,1.0,0 -2259650,"Red Faction Armageddon",play,0.1,0 -2259650,"Alien Shooter Vengeance",purchase,1.0,0 -2259650,"Alien Shooter Vengeance",play,0.1,0 -2259650,"Next Car Game Wreckfest",purchase,1.0,0 -2259650,"Next Car Game Wreckfest",play,0.1,0 -2259650,"DOOM II Hell on Earth",purchase,1.0,0 -2259650,"DOOM II Hell on Earth",play,0.1,0 -2259650,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -2259650,"Dark Souls Prepare to Die Edition",play,0.1,0 -2259650,"Mirror's Edge",purchase,1.0,0 -2259650,"Mirror's Edge",play,0.1,0 -2259650,"Red Faction",purchase,1.0,0 -2259650,"Red Faction",play,0.1,0 -2259650,"Dust An Elysian Tail",purchase,1.0,0 -2259650,"Dust An Elysian Tail",play,0.1,0 -2259650,"Natural Selection 2",purchase,1.0,0 -2259650,"Natural Selection 2",play,0.1,0 -2259650,"The Binding of Isaac",purchase,1.0,0 -2259650,"The Binding of Isaac",play,0.1,0 -2259650,"Trials 2 Second Edition",purchase,1.0,0 -2259650,"Trials 2 Second Edition",play,0.1,0 -2259650,"Call of Duty Black Ops II",purchase,1.0,0 -2259650,"Call of Duty Black Ops II",play,0.1,0 -2259650,"Half-Life Source",purchase,1.0,0 -2259650,"Half-Life Source",play,0.1,0 -2259650,"FEZ",purchase,1.0,0 -2259650,"DOOM 3 BFG Edition",purchase,1.0,0 -2259650,"Geometry Wars Retro Evolved",purchase,1.0,0 -2259650,"DogFighter",purchase,1.0,0 -2259650,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -2259650,"Brothers - A Tale of Two Sons",purchase,1.0,0 -2259650,"The Binding of Isaac Rebirth",purchase,1.0,0 -2259650,"Strike Suit Zero",purchase,1.0,0 -2259650,"Surgeon Simulator",purchase,1.0,0 -2259650,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -2259650,"Quake Live",purchase,1.0,0 -2259650,"Castle Crashers",purchase,1.0,0 -2259650,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -2259650,"Unturned",purchase,1.0,0 -2259650,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -2259650,"Alien Shooter 2 Reloaded",purchase,1.0,0 -2259650,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -2259650,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -2259650,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -2259650,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -2259650,"Braid",purchase,1.0,0 -2259650,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -2259650,"Counter-Strike",purchase,1.0,0 -2259650,"Day of Defeat",purchase,1.0,0 -2259650,"Dead Space",purchase,1.0,0 -2259650,"Deathmatch Classic",purchase,1.0,0 -2259650,"Deus Ex Human Revolution",purchase,1.0,0 -2259650,"Don't Starve",purchase,1.0,0 -2259650,"Don't Starve Reign of Giants",purchase,1.0,0 -2259650,"DOOM 3",purchase,1.0,0 -2259650,"DOOM 3 Resurrection of Evil",purchase,1.0,0 -2259650,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -2259650,"F.E.A.R. Extraction Point",purchase,1.0,0 -2259650,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -2259650,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -2259650,"Fallout New Vegas Dead Money",purchase,1.0,0 -2259650,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -2259650,"FlatOut 2",purchase,1.0,0 -2259650,"Garry's Mod",purchase,1.0,0 -2259650,"Grand Theft Auto",purchase,1.0,0 -2259650,"Grand Theft Auto 2",purchase,1.0,0 -2259650,"Grand Theft Auto San Andreas",purchase,1.0,0 -2259650,"Grand Theft Auto San Andreas",purchase,1.0,0 -2259650,"Grand Theft Auto Vice City",purchase,1.0,0 -2259650,"Grand Theft Auto Vice City",purchase,1.0,0 -2259650,"Grand Theft Auto III",purchase,1.0,0 -2259650,"Grand Theft Auto III",purchase,1.0,0 -2259650,"Half-Life 2",purchase,1.0,0 -2259650,"Half-Life 2 Deathmatch",purchase,1.0,0 -2259650,"Half-Life 2 Episode One",purchase,1.0,0 -2259650,"Half-Life 2 Episode Two",purchase,1.0,0 -2259650,"Half-Life Blue Shift",purchase,1.0,0 -2259650,"Half-Life Opposing Force",purchase,1.0,0 -2259650,"Half-Life Deathmatch Source",purchase,1.0,0 -2259650,"Insaniquarium! Deluxe",purchase,1.0,0 -2259650,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -2259650,"Manhunt",purchase,1.0,0 -2259650,"Master Levels for DOOM II",purchase,1.0,0 -2259650,"Max Payne",purchase,1.0,0 -2259650,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -2259650,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -2259650,"Medal of Honor(TM) Single Player",purchase,1.0,0 -2259650,"Medal of Honor Pre-Order",purchase,1.0,0 -2259650,"Midnight Club II",purchase,1.0,0 -2259650,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -2259650,"Painkiller Gold Edition",purchase,1.0,0 -2259650,"Path of Exile",purchase,1.0,0 -2259650,"Peggle Deluxe",purchase,1.0,0 -2259650,"Portal",purchase,1.0,0 -2259650,"Prey",purchase,1.0,0 -2259650,"Red Faction Armageddon Soundtrack",purchase,1.0,0 -2259650,"Red Faction II",purchase,1.0,0 -2259650,"Ricochet",purchase,1.0,0 -2259650,"Sid Meier's Civilization IV",purchase,1.0,0 -2259650,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -2259650,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -2259650,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -2259650,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -2259650,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -2259650,"Strike Suit Infinity",purchase,1.0,0 -2259650,"Team Fortress Classic",purchase,1.0,0 -2259650,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -2259650,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -2259650,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -2259650,"Titan Quest",purchase,1.0,0 -2259650,"Titan Quest Immortal Throne",purchase,1.0,0 -2259650,"Torchlight",purchase,1.0,0 -2259650,"Unmechanical",purchase,1.0,0 -2259650,"Vessel",purchase,1.0,0 -2259650,"Wild Metal Country",purchase,1.0,0 -2259650,"Zombies Monsters Robots",purchase,1.0,0 -2259650,"Zuma Deluxe",purchase,1.0,0 -234749963,"Arma 3",purchase,1.0,0 -234749963,"Arma 3",play,769.0,0 -234749963,"Kerbal Space Program",purchase,1.0,0 -234749963,"Kerbal Space Program",play,263.0,0 -234749963,"Stranded Deep",purchase,1.0,0 -234749963,"Stranded Deep",play,161.0,0 -234749963,"Arma 3 Helicopters",purchase,1.0,0 -234749963,"Arma 3 Karts",purchase,1.0,0 -234749963,"Arma 3 Marksmen",purchase,1.0,0 -234749963,"Arma 3 Zeus",purchase,1.0,0 -276101850,"Unturned",purchase,1.0,0 -276101850,"Unturned",play,1.1,0 -192997918,"Team Fortress 2",purchase,1.0,0 -192997918,"Team Fortress 2",play,273.0,0 -192997918,"Portal Stories Mel",purchase,1.0,0 -24445668,"Day of Defeat",purchase,1.0,0 -51766884,"Dota 2",purchase,1.0,0 -51766884,"Dota 2",play,1.7,0 -141571751,"Dota 2",purchase,1.0,0 -141571751,"Dota 2",play,3.4,0 -192186232,"Dota 2",purchase,1.0,0 -192186232,"Dota 2",play,3.0,0 -234299035,"Dota 2",purchase,1.0,0 -234299035,"Dota 2",play,20.0,0 -279487658,"Counter-Strike Global Offensive",purchase,1.0,0 -279487658,"Counter-Strike Global Offensive",play,316.0,0 -279487658,"Team Fortress 2",purchase,1.0,0 -279487658,"Team Fortress 2",play,0.2,0 -279487658,"Counter-Strike Nexon Zombies",purchase,1.0,0 -84432612,"Far Cry 3",purchase,1.0,0 -84432612,"Far Cry 3",play,38.0,0 -84432612,"Far Cry 3 Blood Dragon",purchase,1.0,0 -84432612,"Far Cry 3 Blood Dragon",play,20.0,0 -84432612,"BioShock Infinite",purchase,1.0,0 -84432612,"BioShock Infinite",play,1.7,0 -84432612,"Sanctum 2",purchase,1.0,0 -121080515,"Dota 2",purchase,1.0,0 -121080515,"Dota 2",play,523.0,0 -121080515,"Men of War Assault Squad 2",purchase,1.0,0 -121080515,"Men of War Assault Squad 2",play,0.3,0 -54992167,"Counter-Strike Source",purchase,1.0,0 -54992167,"Counter-Strike Source",play,100.0,0 -54992167,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -54992167,"Call of Duty Modern Warfare 2 - Multiplayer",play,5.6,0 -54992167,"Call of Duty Modern Warfare 2",purchase,1.0,0 -54992167,"Call of Duty Modern Warfare 2",play,5.4,0 -54992167,"Day of Defeat Source",purchase,1.0,0 -54992167,"Half-Life 2 Deathmatch",purchase,1.0,0 -54992167,"Half-Life 2 Lost Coast",purchase,1.0,0 -282755920,"Dota 2",purchase,1.0,0 -282755920,"Dota 2",play,51.0,0 -282755920,"Unturned",purchase,1.0,0 -282755920,"Unturned",play,7.0,0 -282755920,"Robocraft",purchase,1.0,0 -282755920,"Robocraft",play,2.5,0 -282755920,"Team Fortress 2",purchase,1.0,0 -282755920,"Team Fortress 2",play,1.2,0 -282755920,"Tactical Intervention",purchase,1.0,0 -282755920,"APB Reloaded",purchase,1.0,0 -282755920,"Blacklight Retribution",purchase,1.0,0 -282755920,"Counter-Strike Nexon Zombies",purchase,1.0,0 -282755920,"Nosgoth",purchase,1.0,0 -282755920,"RaceRoom Racing Experience ",purchase,1.0,0 -161919513,"Euro Truck Simulator 2",purchase,1.0,0 -161919513,"Euro Truck Simulator 2",play,16.5,0 -161919513,"Train Simulator",purchase,1.0,0 -161919513,"Train Simulator",play,10.1,0 -59115473,"H1Z1",purchase,1.0,0 -59115473,"H1Z1",play,141.0,0 -59115473,"Counter-Strike Global Offensive",purchase,1.0,0 -59115473,"Counter-Strike Global Offensive",play,36.0,0 -59115473,"Fallout 4",purchase,1.0,0 -59115473,"Fallout 4",play,30.0,0 -59115473,"Rocket League",purchase,1.0,0 -59115473,"Rocket League",play,24.0,0 -59115473,"Borderlands 2",purchase,1.0,0 -59115473,"Borderlands 2",play,14.2,0 -59115473,"ARK Survival Evolved",purchase,1.0,0 -59115473,"ARK Survival Evolved",play,8.9,0 -59115473,"The Elder Scrolls V Skyrim",purchase,1.0,0 -59115473,"The Elder Scrolls V Skyrim",play,6.6,0 -59115473,"Deadpool",purchase,1.0,0 -59115473,"Deadpool",play,6.4,0 -59115473,"GRID",purchase,1.0,0 -59115473,"GRID",play,2.4,0 -59115473,"Project CARS",purchase,1.0,0 -59115473,"Project CARS",play,1.3,0 -59115473,"Dying Light",purchase,1.0,0 -59115473,"Dying Light",play,0.7,0 -59115473,"DiRT",purchase,1.0,0 -59115473,"DiRT",play,0.6,0 -59115473,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -59115473,"Operation Flashpoint Dragon Rising",play,0.4,0 -59115473,"Rise of Incarnates",purchase,1.0,0 -59115473,"Rise of Incarnates",play,0.1,0 -59115473,"Lineage II",purchase,1.0,0 -59115473,"Lineage II",play,0.1,0 -59115473,"H1Z1 Test Server",purchase,1.0,0 -308440565,"Dota 2",purchase,1.0,0 -308440565,"Dota 2",play,4.9,0 -231456970,"Dota 2",purchase,1.0,0 -231456970,"Dota 2",play,1.2,0 -231456970,"Brick-Force",purchase,1.0,0 -231456970,"Defiance",purchase,1.0,0 -231456970,"Guns and Robots",purchase,1.0,0 -231456970,"GunZ 2 The Second Duel",purchase,1.0,0 -231456970,"Neverwinter",purchase,1.0,0 -231456970,"No More Room in Hell",purchase,1.0,0 -231456970,"Unturned",purchase,1.0,0 -231456970,"Warframe",purchase,1.0,0 -203172944,"Dirty Bomb",purchase,1.0,0 -203172944,"Dirty Bomb",play,6.0,0 -133237267,"Dota 2",purchase,1.0,0 -133237267,"Dota 2",play,0.8,0 -225434610,"Counter-Strike Global Offensive",purchase,1.0,0 -225434610,"Counter-Strike Global Offensive",play,11.2,0 -225434610,"Dead Island Epidemic",purchase,1.0,0 -225434610,"Dead Island Epidemic",play,2.2,0 -225434610,"Unturned",purchase,1.0,0 -225434610,"Unturned",play,0.6,0 -225434610,"Modular Combat",purchase,1.0,0 -225434610,"Modular Combat",play,0.3,0 -225434610,"The Forgotten Ones",purchase,1.0,0 -225434610,"The Forgotten Ones",play,0.1,0 -225434610,"BLOCKADE 3D",purchase,1.0,0 -225434610,"Realm of the Mad God",purchase,1.0,0 -225434610,"Tactical Intervention",purchase,1.0,0 -225434610,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -92091548,"Dota 2",purchase,1.0,0 -92091548,"Dota 2",play,6.8,0 -60296891,"Dota 2",purchase,1.0,0 -60296891,"Dota 2",play,361.0,0 -60296891,"Left 4 Dead 2",purchase,1.0,0 -60296891,"Left 4 Dead 2",play,88.0,0 -60296891,"Terraria",purchase,1.0,0 -60296891,"Terraria",play,88.0,0 -60296891,"Skullgirls",purchase,1.0,0 -60296891,"Skullgirls",play,82.0,0 -60296891,"Team Fortress 2",purchase,1.0,0 -60296891,"Team Fortress 2",play,63.0,0 -60296891,"Borderlands 2",purchase,1.0,0 -60296891,"Borderlands 2",play,62.0,0 -60296891,"Rusty Hearts",purchase,1.0,0 -60296891,"Rusty Hearts",play,60.0,0 -60296891,"PAYDAY The Heist",purchase,1.0,0 -60296891,"PAYDAY The Heist",play,41.0,0 -60296891,"Dungeons of Dredmor",purchase,1.0,0 -60296891,"Dungeons of Dredmor",play,35.0,0 -60296891,"XCOM Enemy Unknown",purchase,1.0,0 -60296891,"XCOM Enemy Unknown",play,30.0,0 -60296891,"Dustforce",purchase,1.0,0 -60296891,"Dustforce",play,30.0,0 -60296891,"Dishonored",purchase,1.0,0 -60296891,"Dishonored",play,29.0,0 -60296891,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -60296891,"Resident Evil 6 / Biohazard 6",play,27.0,0 -60296891,"Fairy Fencer F",purchase,1.0,0 -60296891,"Fairy Fencer F",play,23.0,0 -60296891,"BioShock Infinite",purchase,1.0,0 -60296891,"BioShock Infinite",play,19.1,0 -60296891,"Awesomenauts",purchase,1.0,0 -60296891,"Awesomenauts",play,17.6,0 -60296891,"PAYDAY 2",purchase,1.0,0 -60296891,"PAYDAY 2",play,17.1,0 -60296891,"Dead or Alive 5 Last Round",purchase,1.0,0 -60296891,"Dead or Alive 5 Last Round",play,16.3,0 -60296891,"Saints Row The Third",purchase,1.0,0 -60296891,"Saints Row The Third",play,15.2,0 -60296891,"Fairy Bloom Freesia",purchase,1.0,0 -60296891,"Fairy Bloom Freesia",play,14.6,0 -60296891,"Sniper Elite V2",purchase,1.0,0 -60296891,"Sniper Elite V2",play,12.0,0 -60296891,"Torchlight II",purchase,1.0,0 -60296891,"Torchlight II",play,11.7,0 -60296891,"Batman Arkham City GOTY",purchase,1.0,0 -60296891,"Batman Arkham City GOTY",play,11.6,0 -60296891,"Transistor",purchase,1.0,0 -60296891,"Transistor",play,10.2,0 -60296891,"The Binding of Isaac",purchase,1.0,0 -60296891,"The Binding of Isaac",play,9.6,0 -60296891,"Warframe",purchase,1.0,0 -60296891,"Warframe",play,8.9,0 -60296891,"Hitman Absolution",purchase,1.0,0 -60296891,"Hitman Absolution",play,8.8,0 -60296891,"Metro 2033",purchase,1.0,0 -60296891,"Metro 2033",play,8.3,0 -60296891,"Undertale",purchase,1.0,0 -60296891,"Undertale",play,8.2,0 -60296891,"Borderlands",purchase,1.0,0 -60296891,"Borderlands",play,8.2,0 -60296891,"Ys Origin",purchase,1.0,0 -60296891,"Ys Origin",play,7.8,0 -60296891,"Counter-Strike Source",purchase,1.0,0 -60296891,"Counter-Strike Source",play,7.3,0 -60296891,"Phantom Breaker Battle Grounds",purchase,1.0,0 -60296891,"Phantom Breaker Battle Grounds",play,7.1,0 -60296891,"Recettear An Item Shop's Tale",purchase,1.0,0 -60296891,"Recettear An Item Shop's Tale",play,7.0,0 -60296891,"FEZ",purchase,1.0,0 -60296891,"FEZ",play,5.9,0 -60296891,"Cherry Tree High I! My! Girls!",purchase,1.0,0 -60296891,"Cherry Tree High I! My! Girls!",play,5.3,0 -60296891,"The Swapper",purchase,1.0,0 -60296891,"The Swapper",play,4.7,0 -60296891,"Rise of Incarnates",purchase,1.0,0 -60296891,"Rise of Incarnates",play,4.2,0 -60296891,"L.A. Noire",purchase,1.0,0 -60296891,"L.A. Noire",play,4.0,0 -60296891,"Mirror's Edge",purchase,1.0,0 -60296891,"Mirror's Edge",play,3.1,0 -60296891,"Cherry Tree High Comedy Club",purchase,1.0,0 -60296891,"Cherry Tree High Comedy Club",play,3.1,0 -60296891,"Spec Ops The Line",purchase,1.0,0 -60296891,"Spec Ops The Line",play,2.9,0 -60296891,"Guacamelee! Gold Edition",purchase,1.0,0 -60296891,"Guacamelee! Gold Edition",play,2.8,0 -60296891,"Monaco",purchase,1.0,0 -60296891,"Monaco",play,2.6,0 -60296891,"Borderlands The Pre-Sequel",purchase,1.0,0 -60296891,"Borderlands The Pre-Sequel",play,2.4,0 -60296891,"Dysfunctional Systems Learning to Manage Chaos",purchase,1.0,0 -60296891,"Dysfunctional Systems Learning to Manage Chaos",play,2.4,0 -60296891,"Portal",purchase,1.0,0 -60296891,"Portal",play,2.3,0 -60296891,"BattleBlock Theater",purchase,1.0,0 -60296891,"BattleBlock Theater",play,2.2,0 -60296891,"Sakura Spirit",purchase,1.0,0 -60296891,"Sakura Spirit",play,2.2,0 -60296891,"Starbound",purchase,1.0,0 -60296891,"Starbound",play,2.1,0 -60296891,"Archeblade",purchase,1.0,0 -60296891,"Archeblade",play,1.7,0 -60296891,"Dungeonland",purchase,1.0,0 -60296891,"Dungeonland",play,1.7,0 -60296891,"Skullgirls Endless Beta",purchase,1.0,0 -60296891,"Skullgirls Endless Beta",play,1.7,0 -60296891,"BioShock",purchase,1.0,0 -60296891,"BioShock",play,1.6,0 -60296891,"Codename Gordon",purchase,1.0,0 -60296891,"Codename Gordon",play,1.5,0 -60296891,"Mafia II",purchase,1.0,0 -60296891,"Mafia II",play,1.4,0 -60296891,"Vanguard Princess",purchase,1.0,0 -60296891,"Vanguard Princess",play,1.4,0 -60296891,"Long Live The Queen",purchase,1.0,0 -60296891,"Long Live The Queen",play,1.4,0 -60296891,"Really Big Sky",purchase,1.0,0 -60296891,"Really Big Sky",play,1.2,0 -60296891,"METAL SLUG 3",purchase,1.0,0 -60296891,"METAL SLUG 3",play,1.1,0 -60296891,"Guardians of Middle-earth",purchase,1.0,0 -60296891,"Guardians of Middle-earth",play,0.8,0 -60296891,"Free to Play",purchase,1.0,0 -60296891,"Free to Play",play,0.7,0 -60296891,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",purchase,1.0,0 -60296891,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",play,0.6,0 -60296891,"Starseed Pilgrim",purchase,1.0,0 -60296891,"Starseed Pilgrim",play,0.5,0 -60296891,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -60296891,"Beatbuddy Tale of the Guardians",play,0.4,0 -60296891,"Antichamber",purchase,1.0,0 -60296891,"Antichamber",play,0.3,0 -60296891,"Giana Sisters Twisted Dreams",purchase,1.0,0 -60296891,"Giana Sisters Twisted Dreams",play,0.3,0 -60296891,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -60296891,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,0.2,0 -60296891,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",purchase,1.0,0 -60296891,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",play,0.2,0 -60296891,"Gotham City Impostors Free To Play",purchase,1.0,0 -60296891,"Gotham City Impostors Free To Play",play,0.1,0 -60296891,"The Expendabros",purchase,1.0,0 -60296891,"The Expendabros",play,0.1,0 -60296891,"KAMUI",purchase,1.0,0 -60296891,"Magical Battle Festa",purchase,1.0,0 -60296891,"Narcissu 1st & 2nd",purchase,1.0,0 -60296891,"Magicka Wizard Wars",purchase,1.0,0 -60296891,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -60296891,"Alien Breed Impact",purchase,1.0,0 -60296891,"ALLTYNEX Second",purchase,1.0,0 -60296891,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -60296891,"Canyon Capers",purchase,1.0,0 -60296891,"Castle Crashers",purchase,1.0,0 -60296891,"Defiance",purchase,1.0,0 -60296891,"Dust An Elysian Tail",purchase,1.0,0 -60296891,"F.E.A.R.",purchase,1.0,0 -60296891,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -60296891,"F.E.A.R. 3",purchase,1.0,0 -60296891,"F.E.A.R. Extraction Point",purchase,1.0,0 -60296891,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -60296891,"Fairy Bloom Freesia - Original Soundtrack",purchase,1.0,0 -60296891,"Half Minute Hero The Second Coming",purchase,1.0,0 -60296891,"Mortal Kombat Kollection",purchase,1.0,0 -60296891,"RefleX",purchase,1.0,0 -60296891,"REVOLVER360 REACTOR",purchase,1.0,0 -60296891,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -60296891,"Scribblenauts Unlimited",purchase,1.0,0 -60296891,"Sid Meier's Civilization V",purchase,1.0,0 -60296891,"Snuggle Truck",purchase,1.0,0 -60296891,"Starbound - Unstable",purchase,1.0,0 -60296891,"The Lord of the Rings War in the North",purchase,1.0,0 -60296891,"Transistor Soundtrack",purchase,1.0,0 -60296891,"Vanguard Princess Director's Cut",purchase,1.0,0 -60296891,"Vertiginous Golf",purchase,1.0,0 -60296891,"Warlock - Master of the Arcane",purchase,1.0,0 -60296891,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -128173430,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -128173430,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -261199100,"Dota 2",purchase,1.0,0 -261199100,"Dota 2",play,85.0,0 -274602960,"Cry of Fear",purchase,1.0,0 -258327971,"GunZ 2 The Second Duel",purchase,1.0,0 -200913780,"Terraria",purchase,1.0,0 -200913780,"Terraria",play,139.0,0 -200913780,"Euro Truck Simulator 2",purchase,1.0,0 -200913780,"Euro Truck Simulator 2",play,108.0,0 -200913780,"Farming Simulator 2013",purchase,1.0,0 -200913780,"Farming Simulator 2013",play,61.0,0 -200913780,"Spintires",purchase,1.0,0 -200913780,"Spintires",play,52.0,0 -200913780,"Train Simulator",purchase,1.0,0 -200913780,"Train Simulator",play,11.2,0 -200913780,"Construction-Simulator 2015",purchase,1.0,0 -200913780,"Construction-Simulator 2015",play,7.8,0 -200913780,"Magicka",purchase,1.0,0 -200913780,"Magicka",play,7.5,0 -200913780,"Left 4 Dead 2",purchase,1.0,0 -200913780,"Left 4 Dead 2",play,4.1,0 -200913780,"Borderlands 2 RU",purchase,1.0,0 -200913780,"Borderlands 2 RU",play,3.4,0 -200913780,"FORCED",purchase,1.0,0 -200913780,"FORCED",play,3.3,0 -200913780,"Farming Simulator 15",purchase,1.0,0 -200913780,"Farming Simulator 15",play,0.3,0 -200913780,"Robocraft",purchase,1.0,0 -200913780,"Trine 2",purchase,1.0,0 -200913780,"Gauntlet ",purchase,1.0,0 -200913780,"Borderlands",purchase,1.0,0 -200913780,"Borderlands 2",purchase,1.0,0 -200913780,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -200913780,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -200913780,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -200913780,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -200913780,"Construction Simulator 2015 Vertical Skyline",purchase,1.0,0 -200913780,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -200913780,"Farming Simulator 2013 - Modding Tutorials",purchase,1.0,0 -292652586,"Her Story",purchase,1.0,0 -292652586,"Her Story",play,5.6,0 -183235801,"Dota 2",purchase,1.0,0 -183235801,"Dota 2",play,11.8,0 -183235801,"Team Fortress 2",purchase,1.0,0 -183235801,"Team Fortress 2",play,2.8,0 -183235801,"Super Monday Night Combat",purchase,1.0,0 -183235801,"Super Monday Night Combat",play,0.1,0 -183235801,"APB Reloaded",purchase,1.0,0 -183235801,"Cry of Fear",purchase,1.0,0 -183235801,"GunZ 2 The Second Duel",purchase,1.0,0 -183235801,"Soldier Front 2",purchase,1.0,0 -183235801,"Unturned",purchase,1.0,0 -129928069,"Football Manager 2013",purchase,1.0,0 -129928069,"Football Manager 2013",play,64.0,0 -269759752,"Medieval II Total War",purchase,1.0,0 -269759752,"Medieval II Total War",play,8.5,0 -269759752,"Empire Total War",purchase,1.0,0 -269759752,"Napoleon Total War",purchase,1.0,0 -269759752,"Rome Total War",purchase,1.0,0 -42799637,"Football Manager 2009",purchase,1.0,0 -239926593,"Dota 2",purchase,1.0,0 -239926593,"Dota 2",play,5.3,0 -111313670,"Team Fortress 2",purchase,1.0,0 -111313670,"Team Fortress 2",play,28.0,0 -225829163,"The Elder Scrolls V Skyrim",purchase,1.0,0 -225829163,"The Elder Scrolls V Skyrim",play,70.0,0 -225829163,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -225829163,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -225829163,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -104543500,"The Elder Scrolls V Skyrim",purchase,1.0,0 -104543500,"The Elder Scrolls V Skyrim",play,271.0,0 -104543500,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -104543500,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -109669093,"Killing Floor",purchase,1.0,0 -109669093,"Killing Floor",play,225.0,0 -109669093,"LIGHTNING RETURNS FINAL FANTASY XIII",purchase,1.0,0 -109669093,"LIGHTNING RETURNS FINAL FANTASY XIII",play,109.0,0 -109669093,"Killing Floor 2",purchase,1.0,0 -109669093,"Killing Floor 2",play,57.0,0 -109669093,"Unturned",purchase,1.0,0 -109669093,"Unturned",play,29.0,0 -109669093,"Left 4 Dead 2",purchase,1.0,0 -109669093,"Left 4 Dead 2",play,28.0,0 -109669093,"Garry's Mod",purchase,1.0,0 -109669093,"Garry's Mod",play,15.3,0 -109669093,"Alien Swarm",purchase,1.0,0 -109669093,"Alien Swarm",play,4.6,0 -109669093,"DayZ",purchase,1.0,0 -109669093,"DayZ",play,3.2,0 -109669093,"PAYDAY The Heist",purchase,1.0,0 -109669093,"PAYDAY The Heist",play,1.2,0 -109669093,"Killing Floor - Toy Master",purchase,1.0,0 -109669093,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -282945740,"theHunter",purchase,1.0,0 -282945740,"theHunter",play,0.2,0 -103690917,"The Elder Scrolls V Skyrim",purchase,1.0,0 -103690917,"The Elder Scrolls V Skyrim",play,18.4,0 -103690917,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",purchase,1.0,0 -103690917,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",play,6.9,0 -103690917,"Dear Esther",purchase,1.0,0 -103690917,"Dear Esther",play,1.0,0 -103690917,"1954 Alcatraz",purchase,1.0,0 -103690917,"A New Beginning - Final Cut",purchase,1.0,0 -103690917,"Chaos on Deponia",purchase,1.0,0 -103690917,"Deponia",purchase,1.0,0 -103690917,"Edna & Harvey Harvey's New Eyes",purchase,1.0,0 -103690917,"Edna & Harvey The Breakout",purchase,1.0,0 -103690917,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -103690917,"Goodbye Deponia",purchase,1.0,0 -103690917,"Life Is Strange",purchase,1.0,0 -103690917,"Memoria",purchase,1.0,0 -103690917,"The Dark Eye Chains of Satinav",purchase,1.0,0 -103690917,"The Night of the Rabbit",purchase,1.0,0 -103690917,"The Whispered World Special Edition",purchase,1.0,0 -204480360,"Dota 2",purchase,1.0,0 -204480360,"Dota 2",play,2.5,0 -99704390,"Dota 2",purchase,1.0,0 -99704390,"Dota 2",play,288.0,0 -99704390,"Counter-Strike Global Offensive",purchase,1.0,0 -99704390,"Counter-Strike Global Offensive",play,161.0,0 -99704390,"Team Fortress 2",purchase,1.0,0 -99704390,"Team Fortress 2",play,108.0,0 -99704390,"TERA",purchase,1.0,0 -99704390,"TERA",play,38.0,0 -99704390,"PlanetSide 2",purchase,1.0,0 -99704390,"PlanetSide 2",play,12.1,0 -99704390,"APB Reloaded",purchase,1.0,0 -99704390,"APB Reloaded",play,9.1,0 -99704390,"Toribash",purchase,1.0,0 -99704390,"Toribash",play,6.0,0 -99704390,"Unturned",purchase,1.0,0 -99704390,"Unturned",play,4.1,0 -99704390,"Warframe",purchase,1.0,0 -99704390,"Warframe",play,3.1,0 -99704390,"No More Room in Hell",purchase,1.0,0 -99704390,"No More Room in Hell",play,2.9,0 -99704390,"Archeblade",purchase,1.0,0 -99704390,"Archeblade",play,1.2,0 -99704390,"Emily is Away",purchase,1.0,0 -99704390,"Emily is Away",play,0.7,0 -99704390,"Spooky's House of Jump Scares",purchase,1.0,0 -99704390,"Spooky's House of Jump Scares",play,0.1,0 -99704390,"Blender 2.76b",purchase,1.0,0 -99704390,"Chivalry Medieval Warfare",purchase,1.0,0 -99704390,"FreeStyle2 Street Basketball",purchase,1.0,0 -99704390,"Patch testing for Chivalry",purchase,1.0,0 -234684541,"Dota 2",purchase,1.0,0 -234684541,"Dota 2",play,0.2,0 -90735121,"Portal",purchase,1.0,0 -90735121,"RAGE",purchase,1.0,0 -256992469,"Rocket League",purchase,1.0,0 -256992469,"Rocket League",play,3.7,0 -256992469,"Mitos.is The Game",purchase,1.0,0 -256992469,"Mitos.is The Game",play,1.3,0 -256992469,"WARMODE",purchase,1.0,0 -256992469,"WARMODE",play,0.2,0 -277741936,"Dota 2",purchase,1.0,0 -277741936,"Dota 2",play,39.0,0 -181693930,"Age of Empires II HD Edition",purchase,1.0,0 -181693930,"Age of Empires II HD Edition",play,6.8,0 -181693930,"Castle Crashers",purchase,1.0,0 -181693930,"Castle Crashers",play,1.8,0 -181693930,"Age of Empires II HD The Forgotten",purchase,1.0,0 -181693930,"Alice Madness Returns",purchase,1.0,0 -181693930,"BattleBlock Theater",purchase,1.0,0 -181693930,"Prince of Persia The Forgotten Sands",purchase,1.0,0 -181693930,"Prince of Persia The Sands of Time",purchase,1.0,0 -51429054,"Race The WTCC Game",purchase,1.0,0 -51429054,"RACE Caterham Expansion",purchase,1.0,0 -131296919,"Team Fortress 2",purchase,1.0,0 -131296919,"Team Fortress 2",play,9.0,0 -303077093,"Dota 2",purchase,1.0,0 -303077093,"Dota 2",play,7.1,0 -13227113,"Counter-Strike",purchase,1.0,0 -13227113,"Counter-Strike",play,17.9,0 -13227113,"Counter-Strike Condition Zero",purchase,1.0,0 -13227113,"Counter-Strike Condition Zero",play,2.6,0 -13227113,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -239544929,"Geometry Wars Retro Evolved",purchase,1.0,0 -239544929,"Geometry Wars Retro Evolved",play,0.1,0 -239544929,"BlastZone 2",purchase,1.0,0 -239544929,"Echoes+",purchase,1.0,0 -239544929,"Geometry Wars 3 Dimensions Evolved",purchase,1.0,0 -239544929,"Marvel Heroes 2015",purchase,1.0,0 -239544929,"Marvel Puzzle Quest",purchase,1.0,0 -239544929,"Nation Red",purchase,1.0,0 -239544929,"Pinball FX2",purchase,1.0,0 -239544929,"Renegade Ops",purchase,1.0,0 -239544929,"Revolution Ace",purchase,1.0,0 -239544929,"Sanctum",purchase,1.0,0 -239544929,"Ultratron",purchase,1.0,0 -239544929,"Waves",purchase,1.0,0 -170650631,"MXGP - The Official Motocross Videogame",purchase,1.0,0 -170650631,"MXGP - The Official Motocross Videogame",play,17.0,0 -233424343,"Fallout 4",purchase,1.0,0 -233424343,"Fallout 4",play,97.0,0 -233424343,"TERA",purchase,1.0,0 -233424343,"TERA",play,95.0,0 -233424343,"Fallout New Vegas",purchase,1.0,0 -233424343,"Fallout New Vegas",play,37.0,0 -233424343,"Borderlands The Pre-Sequel",purchase,1.0,0 -233424343,"Borderlands The Pre-Sequel",play,25.0,0 -233424343,"Counter-Strike Global Offensive",purchase,1.0,0 -233424343,"Counter-Strike Global Offensive",play,12.0,0 -233424343,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -233424343,"Fallout New Vegas Dead Money",purchase,1.0,0 -233424343,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -46172640,"RACE 07",purchase,1.0,0 -46172640,"RACE 07",play,15.5,0 -46172640,"GTR Evolution",purchase,1.0,0 -46172640,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -6820462,"Enemy Territory Quake Wars",purchase,1.0,0 -6820462,"Enemy Territory Quake Wars",play,7.0,0 -6820462,"Half-Life Blue Shift",purchase,1.0,0 -6820462,"Half-Life Blue Shift",play,1.9,0 -6820462,"Half-Life Opposing Force",purchase,1.0,0 -6820462,"Half-Life Opposing Force",play,0.4,0 -6820462,"Team Fortress Classic",purchase,1.0,0 -6820462,"Counter-Strike",purchase,1.0,0 -6820462,"Day of Defeat",purchase,1.0,0 -6820462,"Deathmatch Classic",purchase,1.0,0 -6820462,"Half-Life",purchase,1.0,0 -6820462,"Ricochet",purchase,1.0,0 -200035884,"Dota 2",purchase,1.0,0 -200035884,"Dota 2",play,0.6,0 -297015894,"Mitos.is The Game",purchase,1.0,0 -297015894,"Blender 2.76b",purchase,1.0,0 -297015894,"Esenthel Engine",purchase,1.0,0 -297015894,"Warframe",purchase,1.0,0 -130133036,"Train Simulator",purchase,1.0,0 -130133036,"Train Simulator",play,110.0,0 -237475162,"Team Fortress 2",purchase,1.0,0 -237475162,"Team Fortress 2",play,0.8,0 -237475162,"Dirty Bomb",purchase,1.0,0 -237475162,"Dirty Bomb",play,0.2,0 -237475162,"Just Cause 2",purchase,1.0,0 -130993597,"Don't Starve",purchase,1.0,0 -130993597,"Don't Starve",play,12.5,0 -130993597,"Don't Starve Together Beta",purchase,1.0,0 -173114158,"Counter-Strike Global Offensive",purchase,1.0,0 -173114158,"Counter-Strike Global Offensive",play,881.0,0 -259587307,"Counter-Strike Global Offensive",purchase,1.0,0 -259587307,"Counter-Strike Global Offensive",play,15.3,0 -142065874,"Dota 2",purchase,1.0,0 -142065874,"Dota 2",play,6.6,0 -240697615,"Counter-Strike Global Offensive",purchase,1.0,0 -240697615,"Counter-Strike Global Offensive",play,262.0,0 -240697615,"Worms Revolution",purchase,1.0,0 -240697615,"Worms Revolution",play,2.6,0 -136791084,"Terraria",purchase,1.0,0 -136791084,"Terraria",play,128.0,0 -136791084,"Monkey Island 2 Special Edition",purchase,1.0,0 -136791084,"Monkey Island 2 Special Edition",play,19.7,0 -136791084,"Realm of the Mad God",purchase,1.0,0 -136791084,"Realm of the Mad God",play,16.7,0 -136791084,"Wallace & Gromit Ep 2 The Last Resort",purchase,1.0,0 -136791084,"Wallace & Gromit Ep 2 The Last Resort",play,15.4,0 -136791084,"Universe Sandbox",purchase,1.0,0 -136791084,"Universe Sandbox",play,15.0,0 -136791084,"Wallace & Gromit Ep 3 Muzzled!",purchase,1.0,0 -136791084,"Wallace & Gromit Ep 3 Muzzled!",play,12.7,0 -136791084,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -136791084,"The Secret of Monkey Island Special Edition",play,10.1,0 -136791084,"Sam & Max 202 Moai Better Blues",purchase,1.0,0 -136791084,"Sam & Max 202 Moai Better Blues",play,8.1,0 -136791084,"Sam & Max 106 Bright Side of the Moon",purchase,1.0,0 -136791084,"Sam & Max 106 Bright Side of the Moon",play,6.6,0 -136791084,"Sam & Max 205 What's New Beelzebub?",purchase,1.0,0 -136791084,"Sam & Max 205 What's New Beelzebub?",play,6.1,0 -136791084,"Wallace & Gromit Ep 4 The Bogey Man",purchase,1.0,0 -136791084,"Wallace & Gromit Ep 4 The Bogey Man",play,3.9,0 -136791084,"Sam & Max 201 Ice Station Santa",purchase,1.0,0 -136791084,"Sam & Max 201 Ice Station Santa",play,3.7,0 -136791084,"Wallace & Gromit Ep 1 Fright of the Bumblebees",purchase,1.0,0 -136791084,"Wallace & Gromit Ep 1 Fright of the Bumblebees",play,3.7,0 -136791084,"Sam & Max 101 Culture Shock",purchase,1.0,0 -136791084,"Sam & Max 101 Culture Shock",play,3.4,0 -136791084,"Sam & Max 104 Abe Lincoln Must Die!",purchase,1.0,0 -136791084,"Sam & Max 104 Abe Lincoln Must Die!",play,3.2,0 -136791084,"Sam & Max 102 Situation Comedy",purchase,1.0,0 -136791084,"Sam & Max 102 Situation Comedy",play,2.6,0 -136791084,"Sam & Max 105 Reality 2.0",purchase,1.0,0 -136791084,"Sam & Max 105 Reality 2.0",play,2.2,0 -136791084,"Sam & Max 103 The Mole, the Mob and the Meatball",purchase,1.0,0 -136791084,"Sam & Max 103 The Mole, the Mob and the Meatball",play,2.0,0 -136791084,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -136791084,"Sam & Max 301 The Penal Zone",play,1.0,0 -136791084,"Kung Fury",purchase,1.0,0 -136791084,"Kung Fury",play,0.2,0 -136791084,"Sam & Max 203 Night of the Raving Dead",purchase,1.0,0 -136791084,"Sam & Max 204 Chariots of the Dogs",purchase,1.0,0 -136791084,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -136791084,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -136791084,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -136791084,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -242988245,"Rugby League Team Manager 2015",purchase,1.0,0 -242988245,"Rugby League Team Manager 2015",play,11.5,0 -232037254,"Marvel Heroes 2015",purchase,1.0,0 -232037254,"Marvel Heroes 2015",play,0.1,0 -189417273,"Dota 2",purchase,1.0,0 -189417273,"Dota 2",play,32.0,0 -189417273,"Survarium",purchase,1.0,0 -189417273,"Survarium",play,0.3,0 -189417273,"Infinite Crisis",purchase,1.0,0 -97303314,"Dota 2",purchase,1.0,0 -97303314,"Dota 2",play,657.0,0 -97303314,"Team Fortress 2",purchase,1.0,0 -97303314,"Team Fortress 2",play,5.2,0 -97303314,"Left 4 Dead 2",purchase,1.0,0 -97303314,"Left 4 Dead 2",play,0.7,0 -97303314,"12 Labours of Hercules",purchase,1.0,0 -97303314,"Grand Chase",purchase,1.0,0 -213655302,"Dota 2",purchase,1.0,0 -213655302,"Dota 2",play,126.0,0 -213655302,"FreeStyle2 Street Basketball",purchase,1.0,0 -213655302,"Ragnarok Online 2",purchase,1.0,0 -213655302,"Warframe",purchase,1.0,0 -116038263,"Dota 2",purchase,1.0,0 -116038263,"Dota 2",play,42.0,0 -284897982,"Dota 2",purchase,1.0,0 -284897982,"Dota 2",play,2.1,0 -30452777,"Counter-Strike",purchase,1.0,0 -30452777,"Counter-Strike",play,0.3,0 -30452777,"Counter-Strike Condition Zero",purchase,1.0,0 -30452777,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -30452777,"Day of Defeat",purchase,1.0,0 -30452777,"Deathmatch Classic",purchase,1.0,0 -30452777,"Ricochet",purchase,1.0,0 -203572706,"F.E.A.R. Online",purchase,1.0,0 -203572706,"F.E.A.R. Online",play,0.5,0 -9180659,"Space Engineers",purchase,1.0,0 -9180659,"Space Engineers",play,321.0,0 -9180659,"PAYDAY 2",purchase,1.0,0 -9180659,"PAYDAY 2",play,132.0,0 -9180659,"Natural Selection 2",purchase,1.0,0 -9180659,"Natural Selection 2",play,94.0,0 -9180659,"Counter-Strike Source",purchase,1.0,0 -9180659,"Counter-Strike Source",play,90.0,0 -9180659,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -9180659,"Call of Duty Black Ops II - Zombies",play,77.0,0 -9180659,"Counter-Strike Global Offensive",purchase,1.0,0 -9180659,"Counter-Strike Global Offensive",play,72.0,0 -9180659,"Supreme Commander 2",purchase,1.0,0 -9180659,"Supreme Commander 2",play,65.0,0 -9180659,"Rust",purchase,1.0,0 -9180659,"Rust",play,58.0,0 -9180659,"PlanetSide 2",purchase,1.0,0 -9180659,"PlanetSide 2",play,57.0,0 -9180659,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -9180659,"Call of Duty Black Ops II - Multiplayer",play,40.0,0 -9180659,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -9180659,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,36.0,0 -9180659,"Grey Goo",purchase,1.0,0 -9180659,"Grey Goo",play,29.0,0 -9180659,"Planetary Annihilation",purchase,1.0,0 -9180659,"Planetary Annihilation",play,26.0,0 -9180659,"Evolve",purchase,1.0,0 -9180659,"Evolve",play,18.2,0 -9180659,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -9180659,"Warhammer 40,000 Dawn of War II",play,14.0,0 -9180659,"Robocraft",purchase,1.0,0 -9180659,"Robocraft",play,11.1,0 -9180659,"Left 4 Dead 2",purchase,1.0,0 -9180659,"Left 4 Dead 2",play,10.1,0 -9180659,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -9180659,"Warhammer 40,000 Dawn of War II Retribution",play,9.8,0 -9180659,"Borderlands The Pre-Sequel",purchase,1.0,0 -9180659,"Borderlands The Pre-Sequel",play,7.4,0 -9180659,"7 Days to Die",purchase,1.0,0 -9180659,"7 Days to Die",play,6.2,0 -9180659,"Unturned",purchase,1.0,0 -9180659,"Unturned",play,5.4,0 -9180659,"Loadout",purchase,1.0,0 -9180659,"Loadout",play,5.1,0 -9180659,"FTL Faster Than Light",purchase,1.0,0 -9180659,"FTL Faster Than Light",play,3.9,0 -9180659,"Gratuitous Space Battles",purchase,1.0,0 -9180659,"Gratuitous Space Battles",play,2.6,0 -9180659,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -9180659,"Call of Duty Ghosts - Multiplayer",play,1.5,0 -9180659,"Homeworld Remastered Collection",purchase,1.0,0 -9180659,"Homeworld Remastered Collection",play,1.4,0 -9180659,"Company of Heroes 2",purchase,1.0,0 -9180659,"Company of Heroes 2",play,1.3,0 -9180659,"R.U.S.E",purchase,1.0,0 -9180659,"R.U.S.E",play,1.1,0 -9180659,"Empire Total War",purchase,1.0,0 -9180659,"Empire Total War",play,1.1,0 -9180659,"Call of Duty Black Ops II",purchase,1.0,0 -9180659,"Call of Duty Black Ops II",play,0.8,0 -9180659,"Call of Duty Ghosts",purchase,1.0,0 -9180659,"Call of Duty Ghosts",play,0.6,0 -9180659,"Counter-Strike Nexon Zombies",purchase,1.0,0 -9180659,"Counter-Strike Nexon Zombies",play,0.4,0 -9180659,"Team Fortress 2",purchase,1.0,0 -9180659,"Team Fortress 2",play,0.2,0 -9180659,"Half-Life 2",purchase,1.0,0 -9180659,"Half-Life 2",play,0.2,0 -9180659,"DOOM 3 BFG Edition",purchase,1.0,0 -9180659,"DOOM 3 BFG Edition",play,0.1,0 -9180659,"Half-Life 2 Episode One",purchase,1.0,0 -9180659,"Crow - Hunter (Trapper Class)",purchase,1.0,0 -9180659,"Grey Goo - Emergence Campaign",purchase,1.0,0 -9180659,"Half-Life 2 Deathmatch",purchase,1.0,0 -9180659,"Half-Life 2 Lost Coast",purchase,1.0,0 -9180659,"Half-Life Deathmatch Source",purchase,1.0,0 -9180659,"R.U.S.E.",purchase,1.0,0 -9180659,"Slim - Hunter (Medic Class)",purchase,1.0,0 -9180659,"Sunny - Hunter (Support Class)",purchase,1.0,0 -9180659,"Supreme Commander 2 - Infinite War Battle Pack One",purchase,1.0,0 -9180659,"Torvald - Hunter (Assault Class)",purchase,1.0,0 -33214968,"Left 4 Dead 2",purchase,1.0,0 -33214968,"Left 4 Dead 2",play,1243.0,0 -33214968,"Left 4 Dead",purchase,1.0,0 -33214968,"Left 4 Dead",play,396.0,0 -33214968,"Killing Floor",purchase,1.0,0 -33214968,"Killing Floor",play,177.0,0 -33214968,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -33214968,"Plants vs. Zombies Game of the Year",play,113.0,0 -33214968,"PAYDAY The Heist",purchase,1.0,0 -33214968,"PAYDAY The Heist",play,80.0,0 -33214968,"The Darkness II",purchase,1.0,0 -33214968,"The Darkness II",play,31.0,0 -33214968,"Star Wars - Battlefront II",purchase,1.0,0 -33214968,"Star Wars - Battlefront II",play,18.8,0 -33214968,"Alien Swarm",purchase,1.0,0 -33214968,"Alien Swarm",play,14.9,0 -33214968,"Star Wars Republic Commando",purchase,1.0,0 -33214968,"Star Wars Republic Commando",play,12.2,0 -33214968,"BioShock",purchase,1.0,0 -33214968,"BioShock",play,8.2,0 -33214968,"Dead Island",purchase,1.0,0 -33214968,"Empires Dawn of the Modern World",purchase,1.0,0 -33214968,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -283840654,"Dota 2",purchase,1.0,0 -283840654,"Dota 2",play,2.3,0 -196886916,"Dota 2",purchase,1.0,0 -196886916,"Dota 2",play,0.9,0 -282529842,"Team Fortress 2",purchase,1.0,0 -282529842,"Team Fortress 2",play,2.3,0 -282529842,"Unturned",purchase,1.0,0 -282529842,"Unturned",play,2.2,0 -282529842,"Marvel Heroes 2015",purchase,1.0,0 -282529842,"Marvel Heroes 2015",play,0.3,0 -282529842,"Trove",purchase,1.0,0 -282529842,"Trove",play,0.1,0 -238411966,"Dota 2",purchase,1.0,0 -238411966,"Dota 2",play,19.2,0 -230161291,"Team Fortress 2",purchase,1.0,0 -230161291,"Team Fortress 2",play,1.2,0 -2531540,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -2531540,"Call of Duty 4 Modern Warfare",play,72.0,0 -2531540,"Serious Sam HD The First Encounter",purchase,1.0,0 -2531540,"Serious Sam HD The First Encounter",play,8.3,0 -2531540,"Counter-Strike Source",purchase,1.0,0 -2531540,"Counter-Strike Source",play,1.2,0 -2531540,"Ricochet",purchase,1.0,0 -2531540,"Ricochet",play,1.1,0 -2531540,"Half-Life 2",purchase,1.0,0 -2531540,"Half-Life 2",play,1.1,0 -2531540,"Mare Nostrum",purchase,1.0,0 -2531540,"Mare Nostrum",play,0.6,0 -2531540,"Serious Sam HD The Second Encounter",purchase,1.0,0 -2531540,"Serious Sam HD The Second Encounter",play,0.3,0 -2531540,"Serious Sam Classic The First Encounter",purchase,1.0,0 -2531540,"Counter-Strike",purchase,1.0,0 -2531540,"Counter-Strike Condition Zero",purchase,1.0,0 -2531540,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -2531540,"Darkest Hour Europe '44-'45",purchase,1.0,0 -2531540,"Day of Defeat",purchase,1.0,0 -2531540,"Day of Defeat Source",purchase,1.0,0 -2531540,"Deathmatch Classic",purchase,1.0,0 -2531540,"Half-Life",purchase,1.0,0 -2531540,"Half-Life 2 Deathmatch",purchase,1.0,0 -2531540,"Half-Life 2 Lost Coast",purchase,1.0,0 -2531540,"Half-Life Blue Shift",purchase,1.0,0 -2531540,"Half-Life Opposing Force",purchase,1.0,0 -2531540,"Half-Life Source",purchase,1.0,0 -2531540,"Half-Life Deathmatch Source",purchase,1.0,0 -2531540,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -2531540,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -2531540,"Serious Sam Classics Revolution",purchase,1.0,0 -2531540,"SiN",purchase,1.0,0 -2531540,"SiN Episodes Emergence",purchase,1.0,0 -2531540,"SiN Multiplayer",purchase,1.0,0 -2531540,"Team Fortress Classic",purchase,1.0,0 -185710844,"Unturned",purchase,1.0,0 -185710844,"Unturned",play,1.7,0 -185710844,"Robocraft",purchase,1.0,0 -302665101,"Dota 2",purchase,1.0,0 -302665101,"Dota 2",play,4.0,0 -289302686,"AdVenture Capitalist",purchase,1.0,0 -289302686,"Brick-Force",purchase,1.0,0 -141160698,"Wargame AirLand Battle",purchase,1.0,0 -141160698,"Wargame AirLand Battle",play,462.0,0 -141160698,"Arma 3",purchase,1.0,0 -141160698,"Arma 3",play,253.0,0 -141160698,"Wargame Red Dragon",purchase,1.0,0 -141160698,"Wargame Red Dragon",play,207.0,0 -141160698,"War Thunder",purchase,1.0,0 -141160698,"War Thunder",play,207.0,0 -141160698,"Men of War Assault Squad 2",purchase,1.0,0 -141160698,"Men of War Assault Squad 2",play,187.0,0 -141160698,"Counter-Strike Global Offensive",purchase,1.0,0 -141160698,"Counter-Strike Global Offensive",play,184.0,0 -141160698,"Arma 2 Operation Arrowhead",purchase,1.0,0 -141160698,"Arma 2 Operation Arrowhead",play,114.0,0 -141160698,"Crusader Kings II",purchase,1.0,0 -141160698,"Crusader Kings II",play,104.0,0 -141160698,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -141160698,"Rising Storm/Red Orchestra 2 Multiplayer",play,81.0,0 -141160698,"Europa Universalis IV",purchase,1.0,0 -141160698,"Europa Universalis IV",play,70.0,0 -141160698,"Insurgency",purchase,1.0,0 -141160698,"Insurgency",play,34.0,0 -141160698,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -141160698,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,19.0,0 -141160698,"Spintires",purchase,1.0,0 -141160698,"Spintires",play,15.0,0 -141160698,"Game Dev Tycoon",purchase,1.0,0 -141160698,"Game Dev Tycoon",play,8.8,0 -141160698,"Company of Heroes (New Steam Version)",purchase,1.0,0 -141160698,"Company of Heroes (New Steam Version)",play,5.0,0 -141160698,"PlanetSide 2",purchase,1.0,0 -141160698,"PlanetSide 2",play,2.7,0 -141160698,"Verdun",purchase,1.0,0 -141160698,"Verdun",play,2.5,0 -141160698,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -141160698,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,2.4,0 -141160698,"Arma 2",purchase,1.0,0 -141160698,"Arma 2",play,2.0,0 -141160698,"Arma Cold War Assault",purchase,1.0,0 -141160698,"Arma Cold War Assault",play,0.6,0 -141160698,"Arma 2 Private Military Company",purchase,1.0,0 -141160698,"Arma 2 Private Military Company",play,0.3,0 -141160698,"Arma 2 British Armed Forces",purchase,1.0,0 -141160698,"Arma 2 British Armed Forces",play,0.2,0 -141160698,"Arma 2 DayZ Mod",purchase,1.0,0 -141160698,"Arma 3 Zeus",purchase,1.0,0 -141160698,"Company of Heroes",purchase,1.0,0 -141160698,"Company of Heroes Opposing Fronts",purchase,1.0,0 -141160698,"Heroes & Generals",purchase,1.0,0 -46542904,"Half-Life Blue Shift",purchase,1.0,0 -46542904,"Half-Life Blue Shift",play,2.4,0 -46542904,"Half-Life Opposing Force",purchase,1.0,0 -46542904,"Half-Life Opposing Force",play,1.4,0 -46542904,"Half-Life",purchase,1.0,0 -46542904,"Half-Life",play,0.5,0 -46542904,"Team Fortress Classic",purchase,1.0,0 -46542904,"Team Fortress Classic",play,0.2,0 -287848624,"Call of Duty Black Ops III",purchase,1.0,0 -287848624,"Call of Duty Black Ops III",play,9.2,0 -287848624,"The Elder Scrolls V Skyrim",purchase,1.0,0 -287848624,"The Elder Scrolls V Skyrim",play,4.3,0 -287848624,"Borderlands 2",purchase,1.0,0 -287848624,"Borderlands 2",play,3.4,0 -287848624,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -287848624,"METAL GEAR SOLID V THE PHANTOM PAIN",play,1.7,0 -287848624,"Grand Theft Auto V",purchase,1.0,0 -287848624,"Grand Theft Auto V",play,1.4,0 -287848624,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -287848624,"Hitman Absolution",purchase,1.0,0 -287848624,"Hitman Sniper Challenge",purchase,1.0,0 -287848624,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -287848624,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -287848624,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -224988881,"Day of Defeat Source",purchase,1.0,0 -224988881,"Day of Defeat Source",play,8.1,0 -224988881,"Counter-Strike Source",purchase,1.0,0 -224988881,"Counter-Strike Source",play,2.1,0 -224988881,"Half-Life 2 Deathmatch",purchase,1.0,0 -224988881,"Half-Life 2 Lost Coast",purchase,1.0,0 -98951804,"Team Fortress 2",purchase,1.0,0 -98951804,"Team Fortress 2",play,9.5,0 -131539267,"Infestation Survivor Stories",purchase,1.0,0 -131539267,"Infestation Survivor Stories",play,90.0,0 -131539267,"Aftermath",purchase,1.0,0 -131539267,"Aftermath",play,28.0,0 -131539267,"Magic Duels",purchase,1.0,0 -131539267,"Magic Duels",play,19.5,0 -131539267,"Heroes & Generals",purchase,1.0,0 -131539267,"Heroes & Generals",play,0.5,0 -232662797,"Counter-Strike Global Offensive",purchase,1.0,0 -232662797,"Counter-Strike Global Offensive",play,1.7,0 -232662797,"Team Fortress Classic",purchase,1.0,0 -232662797,"Team Fortress Classic",play,0.3,0 -242267002,"Counter-Strike Global Offensive",purchase,1.0,0 -242267002,"Counter-Strike Global Offensive",play,1.9,0 -239816635,"Goat Simulator",purchase,1.0,0 -239816635,"Goat Simulator",play,34.0,0 -239816635,"Besiege",purchase,1.0,0 -239816635,"Besiege",play,2.6,0 -239816635,"LEGO Worlds",purchase,1.0,0 -239816635,"LEGO Worlds",play,0.7,0 -71574303,"Team Fortress 2",purchase,1.0,0 -71574303,"Team Fortress 2",play,12.6,0 -71574303,"Dead Island Epidemic",purchase,1.0,0 -71574303,"Heroes & Generals",purchase,1.0,0 -71574303,"Magicka Wizard Wars",purchase,1.0,0 -71574303,"Neverwinter",purchase,1.0,0 -71574303,"No More Room in Hell",purchase,1.0,0 -71574303,"Toribash",purchase,1.0,0 -71574303,"Warface",purchase,1.0,0 -145508370,"Dota 2",purchase,1.0,0 -145508370,"Dota 2",play,2.3,0 -187478430,"Dota 2",purchase,1.0,0 -187478430,"Dota 2",play,0.9,0 -85526871,"Worms Reloaded",purchase,1.0,0 -85526871,"Worms Reloaded",play,15.5,0 -185412742,"Total War ROME II - Emperor Edition",purchase,1.0,0 -185412742,"Total War ROME II - Emperor Edition",play,1.8,0 -185412742,"Dogfight 1942",purchase,1.0,0 -185412742,"Dogfight 1942",play,0.8,0 -185412742,"Sid Meier's Civilization V",purchase,1.0,0 -185412742,"Sid Meier's Civilization V",play,0.6,0 -185412742,"GRID 2",purchase,1.0,0 -185412742,"Nosgoth",purchase,1.0,0 -185412742,"Dogfight 1942 Fire over Africa",purchase,1.0,0 -185412742,"Dogfight 1942 Russia under Siege",purchase,1.0,0 -169577811,"Dota 2",purchase,1.0,0 -169577811,"Dota 2",play,1.3,0 -189813843,"Counter-Strike Global Offensive",purchase,1.0,0 -189813843,"Counter-Strike Global Offensive",play,1204.0,0 -189813843,"Rust",purchase,1.0,0 -189813843,"Rust",play,238.0,0 -189813843,"Arma 2 Operation Arrowhead",purchase,1.0,0 -189813843,"Arma 2 Operation Arrowhead",play,107.0,0 -189813843,"Grand Theft Auto V",purchase,1.0,0 -189813843,"Grand Theft Auto V",play,75.0,0 -189813843,"H1Z1",purchase,1.0,0 -189813843,"H1Z1",play,57.0,0 -189813843,"DayZ",purchase,1.0,0 -189813843,"DayZ",play,52.0,0 -189813843,"Miscreated",purchase,1.0,0 -189813843,"Miscreated",play,8.6,0 -189813843,"ARK Survival Evolved",purchase,1.0,0 -189813843,"ARK Survival Evolved",play,2.6,0 -189813843,"Hurtworld",purchase,1.0,0 -189813843,"Hurtworld",play,1.4,0 -189813843,"APB Reloaded",purchase,1.0,0 -189813843,"APB Reloaded",play,1.4,0 -189813843,"Dirty Bomb",purchase,1.0,0 -189813843,"Dirty Bomb",play,0.8,0 -189813843,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -189813843,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,0.3,0 -189813843,"Arma 2",purchase,1.0,0 -189813843,"Arma 2",play,0.1,0 -189813843,"War Thunder",purchase,1.0,0 -189813843,"Arma 2 DayZ Mod",purchase,1.0,0 -189813843,"Construct 2 Free",purchase,1.0,0 -189813843,"H1Z1 Test Server",purchase,1.0,0 -189813843,"Quake Live",purchase,1.0,0 -189813843,"Robocraft",purchase,1.0,0 -189813843,"The Mighty Quest For Epic Loot",purchase,1.0,0 -189813843,"Unturned",purchase,1.0,0 -189813843,"Warframe",purchase,1.0,0 -127461395,"Dota 2",purchase,1.0,0 -127461395,"Dota 2",play,3481.0,0 -127461395,"Counter-Strike Global Offensive",purchase,1.0,0 -127461395,"Counter-Strike Global Offensive",play,314.0,0 -77864647,"Synergy",purchase,1.0,0 -77864647,"Synergy",play,31.0,0 -77864647,"MLB Front Office Manager",purchase,1.0,0 -77864647,"MLB Front Office Manager",play,2.3,0 -77864647,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -77864647,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -1423371,"Counter-Strike Global Offensive",purchase,1.0,0 -1423371,"Counter-Strike Global Offensive",play,241.0,0 -1423371,"Counter-Strike",purchase,1.0,0 -1423371,"Day of Defeat",purchase,1.0,0 -1423371,"Deathmatch Classic",purchase,1.0,0 -1423371,"Half-Life",purchase,1.0,0 -1423371,"Half-Life Blue Shift",purchase,1.0,0 -1423371,"Half-Life Opposing Force",purchase,1.0,0 -1423371,"Ricochet",purchase,1.0,0 -1423371,"Team Fortress Classic",purchase,1.0,0 -159677499,"Insurgency",purchase,1.0,0 -159677499,"Insurgency",play,46.0,0 -159677499,"Total War SHOGUN 2",purchase,1.0,0 -159677499,"Total War SHOGUN 2",play,43.0,0 -159677499,"Left 4 Dead 2",purchase,1.0,0 -159677499,"Left 4 Dead 2",play,31.0,0 -159677499,"Men of War Assault Squad",purchase,1.0,0 -159677499,"Men of War Assault Squad",play,21.0,0 -159677499,"PAYDAY 2",purchase,1.0,0 -159677499,"PAYDAY 2",play,14.4,0 -159677499,"Kerbal Space Program",purchase,1.0,0 -159677499,"Kerbal Space Program",play,12.9,0 -159677499,"Total War ROME II - Emperor Edition",purchase,1.0,0 -159677499,"Total War ROME II - Emperor Edition",play,11.4,0 -159677499,"Theatre of War",purchase,1.0,0 -159677499,"Theatre of War",play,11.3,0 -159677499,"Company of Heroes (New Steam Version)",purchase,1.0,0 -159677499,"Company of Heroes (New Steam Version)",play,9.3,0 -159677499,"Men of War Assault Squad 2",purchase,1.0,0 -159677499,"Men of War Assault Squad 2",play,8.4,0 -159677499,"Company of Heroes 2",purchase,1.0,0 -159677499,"Company of Heroes 2",play,8.2,0 -159677499,"Star Wars - Battlefront II",purchase,1.0,0 -159677499,"Star Wars - Battlefront II",play,3.2,0 -159677499,"Heroes & Generals",purchase,1.0,0 -159677499,"Heroes & Generals",play,1.7,0 -159677499,"Sniper Elite V2",purchase,1.0,0 -159677499,"Sniper Elite V2",play,1.2,0 -159677499,"No More Room in Hell",purchase,1.0,0 -159677499,"No More Room in Hell",play,0.9,0 -159677499,"Company of Heroes Tales of Valor",purchase,1.0,0 -159677499,"Iron Front D-Day DLC",purchase,1.0,0 -159677499,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -139015518,"BattleBlock Theater",purchase,1.0,0 -139015518,"BattleBlock Theater",play,20.0,0 -139015518,"Don't Starve",purchase,1.0,0 -139015518,"Don't Starve",play,8.8,0 -139015518,"Don't Starve Together Beta",purchase,1.0,0 -84236369,"Spore",purchase,1.0,0 -84236369,"Spore",play,265.0,0 -84236369,"Sid Meier's Civilization V",purchase,1.0,0 -84236369,"Sid Meier's Civilization V",play,124.0,0 -66308898,"MLB Front Office Manager",purchase,1.0,0 -66308898,"MLB Front Office Manager",play,5.6,0 -66308898,"F.E.A.R. 3",purchase,1.0,0 -49312497,"Counter-Strike Source",purchase,1.0,0 -49312497,"Counter-Strike Source",play,4676.0,0 -49312497,"Counter-Strike Global Offensive",purchase,1.0,0 -49312497,"Counter-Strike Global Offensive",play,1477.0,0 -49312497,"Counter-Strike",purchase,1.0,0 -49312497,"Counter-Strike",play,90.0,0 -49312497,"Call of Duty Modern Warfare 2",purchase,1.0,0 -49312497,"Call of Duty Modern Warfare 2",play,32.0,0 -49312497,"Prince of Persia The Forgotten Sands",purchase,1.0,0 -49312497,"Prince of Persia The Forgotten Sands",play,25.0,0 -49312497,"Counter-Strike Condition Zero",purchase,1.0,0 -49312497,"Counter-Strike Condition Zero",play,19.1,0 -49312497,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -49312497,"Call of Duty Modern Warfare 2 - Multiplayer",play,10.4,0 -49312497,"LIMBO",purchase,1.0,0 -49312497,"LIMBO",play,9.8,0 -49312497,"Cities XL 2012",purchase,1.0,0 -49312497,"Cities XL 2012",play,3.6,0 -49312497,"Supreme Commander",purchase,1.0,0 -49312497,"Supreme Commander",play,2.5,0 -49312497,"Supreme Commander Forged Alliance",purchase,1.0,0 -49312497,"Supreme Commander Forged Alliance",play,1.8,0 -49312497,"Zombie Panic Source",purchase,1.0,0 -49312497,"Zombie Panic Source",play,1.7,0 -49312497,"Half-Life 2 Deathmatch",purchase,1.0,0 -49312497,"Half-Life 2 Deathmatch",play,1.6,0 -49312497,"Alien Swarm",purchase,1.0,0 -49312497,"Alien Swarm",play,1.4,0 -49312497,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -49312497,"Counter-Strike Condition Zero Deleted Scenes",play,1.3,0 -49312497,"Heroes & Generals",purchase,1.0,0 -49312497,"Heroes & Generals",play,0.8,0 -49312497,"Half-Life 2 Lost Coast",purchase,1.0,0 -49312497,"Half-Life 2 Lost Coast",play,0.6,0 -49312497,"HAWKEN",purchase,1.0,0 -49312497,"HAWKEN",play,0.5,0 -49312497,"PlanetSide 2",purchase,1.0,0 -49312497,"PlanetSide 2",play,0.4,0 -49312497,"Day of Defeat",purchase,1.0,0 -49312497,"Day of Defeat",play,0.3,0 -49312497,"Insurgency Modern Infantry Combat",purchase,1.0,0 -49312497,"Insurgency Modern Infantry Combat",play,0.2,0 -49312497,"Day of Defeat Source",purchase,1.0,0 -49312497,"Deathmatch Classic",purchase,1.0,0 -49312497,"Ricochet",purchase,1.0,0 -49312497,"Dirty Bomb",purchase,1.0,0 -49312497,"RUSH",purchase,1.0,0 -263385816,"Dota 2",purchase,1.0,0 -263385816,"Dota 2",play,723.0,0 -263385816,"Pirates of Black Cove Gold",purchase,1.0,0 -125108218,"Call of Duty Black Ops",purchase,1.0,0 -125108218,"Call of Duty Black Ops",play,42.0,0 -125108218,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -285664668,"Dota 2",purchase,1.0,0 -285664668,"Dota 2",play,143.0,0 -97006419,"Team Fortress 2",purchase,1.0,0 -97006419,"Team Fortress 2",play,1.0,0 -146567789,"Team Fortress 2",purchase,1.0,0 -146567789,"Team Fortress 2",play,498.0,0 -288787646,"Dota 2",purchase,1.0,0 -288787646,"Dota 2",play,1.9,0 -192105970,"Terraria",purchase,1.0,0 -192105970,"Terraria",play,18.1,0 -192105970,"Don't Starve Together Beta",purchase,1.0,0 -192105970,"Don't Starve Together Beta",play,7.3,0 -192105970,"Unturned",purchase,1.0,0 -192105970,"Unturned",play,5.8,0 -192105970,"Portal 2",purchase,1.0,0 -192105970,"Portal 2",play,4.5,0 -192105970,"SMITE",purchase,1.0,0 -192105970,"SMITE",play,4.1,0 -192105970,"Dragon Nest Europe",purchase,1.0,0 -192105970,"Dragon Nest Europe",play,4.0,0 -192105970,"BattleBlock Theater",purchase,1.0,0 -192105970,"BattleBlock Theater",play,3.8,0 -192105970,"Alice Madness Returns",purchase,1.0,0 -192105970,"Alice Madness Returns",play,3.3,0 -192105970,"Chivalry Medieval Warfare",purchase,1.0,0 -192105970,"Chivalry Medieval Warfare",play,2.7,0 -192105970,"Tabletop Simulator",purchase,1.0,0 -192105970,"Tabletop Simulator",play,2.3,0 -192105970,"SpeedRunners",purchase,1.0,0 -192105970,"SpeedRunners",play,2.1,0 -192105970,"Starbound",purchase,1.0,0 -192105970,"Starbound",play,2.0,0 -192105970,"Castle Crashers",purchase,1.0,0 -192105970,"Castle Crashers",play,2.0,0 -192105970,"Dota 2",purchase,1.0,0 -192105970,"Dota 2",play,1.6,0 -192105970,"You Have to Win the Game",purchase,1.0,0 -192105970,"You Have to Win the Game",play,1.4,0 -192105970,"Garry's Mod",purchase,1.0,0 -192105970,"Garry's Mod",play,1.3,0 -192105970,"Counter-Strike Global Offensive",purchase,1.0,0 -192105970,"Counter-Strike Global Offensive",play,1.2,0 -192105970,"Everlasting Summer",purchase,1.0,0 -192105970,"Everlasting Summer",play,0.7,0 -192105970,"Super Crate Box",purchase,1.0,0 -192105970,"Super Crate Box",play,0.6,0 -192105970,"Toribash",purchase,1.0,0 -192105970,"Toribash",play,0.3,0 -192105970,"Patch testing for Chivalry",purchase,1.0,0 -192105970,"Starbound - Unstable",purchase,1.0,0 -106986812,"Assassin's Creed Revelations",purchase,1.0,0 -106986812,"Assassin's Creed Revelations",play,26.0,0 -106986812,"BioShock Infinite",purchase,1.0,0 -106986812,"BioShock Infinite",play,14.2,0 -106986812,"Dishonored",purchase,1.0,0 -106986812,"Dishonored",play,8.2,0 -106986812,"Arma 3",purchase,1.0,0 -106986812,"Arma 3",play,6.9,0 -106986812,"Brothers - A Tale of Two Sons",purchase,1.0,0 -106986812,"Brothers - A Tale of Two Sons",play,5.6,0 -106986812,"Transistor",purchase,1.0,0 -106986812,"Transistor",play,5.4,0 -106986812,"Mark of the Ninja",purchase,1.0,0 -106986812,"Mark of the Ninja",play,5.0,0 -106986812,"Divinity Original Sin",purchase,1.0,0 -106986812,"Divinity Original Sin",play,4.1,0 -106986812,"Portal",purchase,1.0,0 -106986812,"Portal",play,3.8,0 -106986812,"Castle Crashers",purchase,1.0,0 -106986812,"Castle Crashers",play,2.5,0 -106986812,"Strike Vector",purchase,1.0,0 -106986812,"Strike Vector",play,2.2,0 -106986812,"FTL Faster Than Light",purchase,1.0,0 -106986812,"FTL Faster Than Light",play,1.9,0 -106986812,"Sid Meier's Civilization V",purchase,1.0,0 -106986812,"Sid Meier's Civilization V",play,1.2,0 -106986812,"World of Goo",purchase,1.0,0 -106986812,"World of Goo",play,1.1,0 -106986812,"Team Fortress 2",purchase,1.0,0 -106986812,"Team Fortress 2",play,0.7,0 -106986812,"Banished",purchase,1.0,0 -106986812,"Banished",play,0.7,0 -106986812,"Awesomenauts",purchase,1.0,0 -106986812,"Awesomenauts",play,0.1,0 -106986812,"Grim Dawn",purchase,1.0,0 -106986812,"Grim Dawn",play,0.1,0 -106986812,"Anomaly 2",purchase,1.0,0 -106986812,"Arma 3 Zeus",purchase,1.0,0 -106986812,"BattleBlock Theater",purchase,1.0,0 -106986812,"Castle Crashers - Blacksmith Pack",purchase,1.0,0 -106986812,"Castle Crashers - Pink Knight Pack",purchase,1.0,0 -106986812,"Cities in Motion 2",purchase,1.0,0 -106986812,"Company of Heroes",purchase,1.0,0 -106986812,"Company of Heroes (New Steam Version)",purchase,1.0,0 -106986812,"Company of Heroes Opposing Fronts",purchase,1.0,0 -106986812,"Company of Heroes Tales of Valor",purchase,1.0,0 -106986812,"Darksiders",purchase,1.0,0 -106986812,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -106986812,"Garry's Mod",purchase,1.0,0 -106986812,"Magicka",purchase,1.0,0 -106986812,"Magicka Vietnam",purchase,1.0,0 -106986812,"Metro 2033",purchase,1.0,0 -106986812,"Natural Selection 2",purchase,1.0,0 -106986812,"Orcs Must Die!",purchase,1.0,0 -106986812,"Orcs Must Die! 2",purchase,1.0,0 -106986812,"Red Faction Armageddon",purchase,1.0,0 -106986812,"Saints Row The Third",purchase,1.0,0 -106986812,"Sanctum",purchase,1.0,0 -106986812,"Sanctum 2",purchase,1.0,0 -106986812,"Serious Sam 3 BFE",purchase,1.0,0 -106986812,"Titan Quest",purchase,1.0,0 -106986812,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -71632904,"Sid Meier's Civilization V",purchase,1.0,0 -71632904,"Sid Meier's Civilization V",play,9.8,0 -78071174,"Call of Duty Black Ops",purchase,1.0,0 -78071174,"Call of Duty Black Ops",play,4.1,0 -78071174,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -214933922,"Dota 2",purchase,1.0,0 -214933922,"Dota 2",play,5.7,0 -182883046,"Dota 2",purchase,1.0,0 -182883046,"Dota 2",play,178.0,0 -182883046,"America's Army Proving Grounds",purchase,1.0,0 -182883046,"Unturned",purchase,1.0,0 -248076396,"Kingdom Wars",purchase,1.0,0 -248076396,"Kingdom Wars",play,15.8,0 -248076396,"CaesarIA",purchase,1.0,0 -248076396,"Ascend Hand of Kul",purchase,1.0,0 -248076396,"Dead Island Epidemic",purchase,1.0,0 -248076396,"Heroes & Generals",purchase,1.0,0 -248076396,"Loadout",purchase,1.0,0 -248076396,"Magicka Wizard Wars",purchase,1.0,0 -248076396,"March of War",purchase,1.0,0 -248076396,"Nosgoth",purchase,1.0,0 -248076396,"PlanetSide 2",purchase,1.0,0 -248076396,"Robocraft",purchase,1.0,0 -248076396,"The Banner Saga Factions",purchase,1.0,0 -248076396,"Total War Battles KINGDOM",purchase,1.0,0 -248076396,"Unturned",purchase,1.0,0 -248076396,"War Thunder",purchase,1.0,0 -220217607,"Dota 2",purchase,1.0,0 -220217607,"Dota 2",play,711.0,0 -220217607,"F.E.A.R. Online",purchase,1.0,0 -260455932,"Team Fortress 2",purchase,1.0,0 -260455932,"Team Fortress 2",play,0.1,0 -240835613,"Dota 2",purchase,1.0,0 -240835613,"Dota 2",play,10.4,0 -114751336,"Team Fortress 2",purchase,1.0,0 -114751336,"Team Fortress 2",play,0.7,0 -213610494,"Counter-Strike Global Offensive",purchase,1.0,0 -213610494,"Counter-Strike Global Offensive",play,717.0,0 -213610494,"Rust",purchase,1.0,0 -213610494,"Rust",play,303.0,0 -213610494,"Robocraft",purchase,1.0,0 -213610494,"Robocraft",play,13.9,0 -213610494,"ArcheAge",purchase,1.0,0 -213610494,"ArcheAge",play,11.5,0 -213610494,"Time Clickers",purchase,1.0,0 -213610494,"Time Clickers",play,6.6,0 -213610494,"Trove",purchase,1.0,0 -213610494,"Trove",play,5.5,0 -213610494,"Dirty Bomb",purchase,1.0,0 -213610494,"Dirty Bomb",play,3.7,0 -213610494,"Gear Up",purchase,1.0,0 -213610494,"Gear Up",play,2.2,0 -213610494,"Defiance",purchase,1.0,0 -213610494,"Defiance",play,2.1,0 -213610494,"Echo of Soul",purchase,1.0,0 -213610494,"Echo of Soul",play,1.7,0 -213610494,"Fishing Planet",purchase,1.0,0 -213610494,"Fishing Planet",play,1.4,0 -213610494,"Brick-Force",purchase,1.0,0 -213610494,"Brick-Force",play,1.2,0 -213610494,"Dead Island Epidemic",purchase,1.0,0 -213610494,"Dead Island Epidemic",play,0.7,0 -213610494,"Team Fortress 2",purchase,1.0,0 -213610494,"Team Fortress 2",play,0.6,0 -213610494,"Warface",purchase,1.0,0 -213610494,"Warface",play,0.6,0 -213610494,"Fallen Earth",purchase,1.0,0 -213610494,"Fallen Earth",play,0.2,0 -213610494,"Sakura Clicker",purchase,1.0,0 -213610494,"Sakura Clicker",play,0.2,0 -213610494,"Guns and Robots",purchase,1.0,0 -213610494,"Guns and Robots",play,0.1,0 -213610494,"APB Reloaded",purchase,1.0,0 -213610494,"Aura Kingdom",purchase,1.0,0 -213610494,"Commander Conquest of the Americas Gold",purchase,1.0,0 -213610494,"EverQuest II",purchase,1.0,0 -213610494,"Pinball FX2",purchase,1.0,0 -213610494,"Pirates of Black Cove Gold",purchase,1.0,0 -213610494,"Rise of Incarnates",purchase,1.0,0 -213610494,"Star Conflict",purchase,1.0,0 -213610494,"Survarium",purchase,1.0,0 -213610494,"X-Blades",purchase,1.0,0 -196274659,"Dota 2",purchase,1.0,0 -196274659,"Dota 2",play,5.9,0 -87909217,"DC Universe Online",purchase,1.0,0 -87909217,"DC Universe Online",play,3.4,0 -83355221,"Empire Total War",purchase,1.0,0 -83355221,"Empire Total War",play,86.0,0 -82112070,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -82112070,"Call of Duty Modern Warfare 2 - Multiplayer",play,80.0,0 -82112070,"Borderlands 2",purchase,1.0,0 -82112070,"Borderlands 2",play,17.2,0 -82112070,"Dota 2",purchase,1.0,0 -82112070,"Dota 2",play,14.7,0 -82112070,"Counter-Strike Global Offensive",purchase,1.0,0 -82112070,"Counter-Strike Global Offensive",play,4.5,0 -82112070,"Call of Duty Modern Warfare 2",purchase,1.0,0 -82112070,"Call of Duty Modern Warfare 2",play,2.2,0 -82112070,"Counter-Strike Source",purchase,1.0,0 -82112070,"Counter-Strike Source",play,1.9,0 -82112070,"Unturned",purchase,1.0,0 -82112070,"Unturned",play,0.3,0 -148833344,"Dota 2",purchase,1.0,0 -148833344,"Dota 2",play,1989.0,0 -231060378,"Dota 2",purchase,1.0,0 -231060378,"Dota 2",play,311.0,0 -231060378,"Counter-Strike Global Offensive",purchase,1.0,0 -231060378,"Counter-Strike Global Offensive",play,154.0,0 -231060378,"Unturned",purchase,1.0,0 -231060378,"Unturned",play,18.5,0 -231060378,"Nosgoth",purchase,1.0,0 -231060378,"Nosgoth",play,4.4,0 -231060378,"BLOCKADE 3D",purchase,1.0,0 -231060378,"BLOCKADE 3D",play,0.9,0 -231060378,"Trove",purchase,1.0,0 -231060378,"Trove",play,0.4,0 -231060378,"Dead Island Epidemic",purchase,1.0,0 -253048231,"theHunter",purchase,1.0,0 -298474942,"Warframe",purchase,1.0,0 -201506696,"Dota 2",purchase,1.0,0 -201506696,"Dota 2",play,4.6,0 -198782797,"Dota 2",purchase,1.0,0 -198782797,"Dota 2",play,8.1,0 -198782797,"Loadout Campaign Beta",purchase,1.0,0 -198782797,"Nosgoth",purchase,1.0,0 -86997363,"RaceRoom Racing Experience ",purchase,1.0,0 -86997363,"RaceRoom Racing Experience ",play,0.7,0 -86997363,"Battle for Graxia",purchase,1.0,0 -86997363,"Battle for Graxia",play,0.5,0 -52093628,"Counter-Strike",purchase,1.0,0 -52093628,"Counter-Strike",play,14.8,0 -52093628,"Anna - Extended Edition",purchase,1.0,0 -52093628,"Anna - Extended Edition",play,7.0,0 -52093628,"Counter-Strike Condition Zero",purchase,1.0,0 -52093628,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -52093628,"Day of Defeat",purchase,1.0,0 -52093628,"Deathmatch Classic",purchase,1.0,0 -52093628,"Ricochet",purchase,1.0,0 -102154135,"Men of War Assault Squad 2",purchase,1.0,0 -102154135,"Men of War Assault Squad 2",play,44.0,0 -102154135,"Total War SHOGUN 2",purchase,1.0,0 -102154135,"Total War SHOGUN 2",play,22.0,0 -102154135,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -71132696,"Warhammer 40,000 Space Marine",purchase,1.0,0 -71132696,"Warhammer 40,000 Space Marine",play,12.9,0 -71132696,"Darksiders",purchase,1.0,0 -256212075,"Dota 2",purchase,1.0,0 -256212075,"Dota 2",play,0.2,0 -217099682,"Uncharted Waters Online Gran Atlas",purchase,1.0,0 -217099682,"Uncharted Waters Online Gran Atlas",play,12.4,0 -217099682,"Unturned",purchase,1.0,0 -217099682,"Unturned",play,1.7,0 -217099682,"Robocraft",purchase,1.0,0 -217099682,"Robocraft",play,1.1,0 -217099682,"Passing Pineview Forest",purchase,1.0,0 -217099682,"Passing Pineview Forest",play,0.5,0 -217099682,"Kingdom Wars",purchase,1.0,0 -217099682,"Kingdom Wars",play,0.4,0 -217099682,"APB Reloaded",purchase,1.0,0 -217099682,"APB Reloaded",play,0.2,0 -217099682,"sZone-Online",purchase,1.0,0 -217099682,"sZone-Online",play,0.1,0 -217099682,"PAYDAY The Web Series - Episode 1",purchase,1.0,0 -217099682,"PAYDAY The Web Series - Episode 1",play,0.1,0 -217099682,"The Cat and the Coup",purchase,1.0,0 -217099682,"Age of Conan Unchained - EU version",purchase,1.0,0 -226928441,"Hatoful Boyfriend",purchase,1.0,0 -226928441,"Hatoful Boyfriend",play,1.2,0 -226928441,"Guilty Gear X2 #Reload",purchase,1.0,0 -226928441,"Guilty Gear X2 #Reload",play,0.8,0 -226928441,"Ori and the Blind Forest",purchase,1.0,0 -226928441,"Ori and the Blind Forest",play,0.5,0 -226928441,"Sakura Clicker",purchase,1.0,0 -226928441,"Sakura Clicker",play,0.3,0 -226928441,"Ragnarok",purchase,1.0,0 -226928441,"Aura Kingdom",purchase,1.0,0 -207468782,"Dota 2",purchase,1.0,0 -207468782,"Dota 2",play,1.1,0 -201696785,"Amnesia The Dark Descent",purchase,1.0,0 -201696785,"Amnesia The Dark Descent",play,1.4,0 -71390526,"Crusader Kings II",purchase,1.0,0 -71390526,"Crusader Kings II",play,760.0,0 -71390526,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -71390526,"Sid Meier's Civilization IV Beyond the Sword",play,473.0,0 -71390526,"Fallout New Vegas",purchase,1.0,0 -71390526,"Fallout New Vegas",play,141.0,0 -71390526,"The Elder Scrolls V Skyrim",purchase,1.0,0 -71390526,"The Elder Scrolls V Skyrim",play,136.0,0 -71390526,"Left 4 Dead 2",purchase,1.0,0 -71390526,"Left 4 Dead 2",play,106.0,0 -71390526,"Fallout 4",purchase,1.0,0 -71390526,"Fallout 4",play,102.0,0 -71390526,"Far Cry 4",purchase,1.0,0 -71390526,"Far Cry 4",play,58.0,0 -71390526,"Saints Row The Third",purchase,1.0,0 -71390526,"Saints Row The Third",play,48.0,0 -71390526,"Sid Meier's Civilization V",purchase,1.0,0 -71390526,"Sid Meier's Civilization V",play,47.0,0 -71390526,"Fallout",purchase,1.0,0 -71390526,"Fallout",play,46.0,0 -71390526,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -71390526,"Game of Thrones - A Telltale Games Series",play,44.0,0 -71390526,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -71390526,"Vampire The Masquerade - Bloodlines",play,40.0,0 -71390526,"The Wolf Among Us",purchase,1.0,0 -71390526,"The Wolf Among Us",play,39.0,0 -71390526,"Far Cry 3",purchase,1.0,0 -71390526,"Far Cry 3",play,32.0,0 -71390526,"Surgeon Simulator",purchase,1.0,0 -71390526,"Surgeon Simulator",play,31.0,0 -71390526,"The Elder Scrolls III Morrowind",purchase,1.0,0 -71390526,"The Elder Scrolls III Morrowind",play,25.0,0 -71390526,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -71390526,"The Elder Scrolls IV Oblivion ",play,22.0,0 -71390526,"The Forest",purchase,1.0,0 -71390526,"The Forest",play,21.0,0 -71390526,"LISA",purchase,1.0,0 -71390526,"LISA",play,16.4,0 -71390526,"Magicka",purchase,1.0,0 -71390526,"Magicka",play,15.7,0 -71390526,"Team Fortress 2",purchase,1.0,0 -71390526,"Team Fortress 2",play,14.9,0 -71390526,"Half-Life",purchase,1.0,0 -71390526,"Half-Life",play,12.6,0 -71390526,"Lakeview Cabin Collection",purchase,1.0,0 -71390526,"Lakeview Cabin Collection",play,12.1,0 -71390526,"Spec Ops The Line",purchase,1.0,0 -71390526,"Spec Ops The Line",play,11.4,0 -71390526,"ORION Prelude",purchase,1.0,0 -71390526,"ORION Prelude",play,10.6,0 -71390526,"Outlast",purchase,1.0,0 -71390526,"Outlast",play,10.4,0 -71390526,"POSTAL 2",purchase,1.0,0 -71390526,"POSTAL 2",play,8.5,0 -71390526,"PAYDAY The Heist",purchase,1.0,0 -71390526,"PAYDAY The Heist",play,8.4,0 -71390526,"Mount & Blade Warband",purchase,1.0,0 -71390526,"Mount & Blade Warband",play,7.9,0 -71390526,"Project Zomboid",purchase,1.0,0 -71390526,"Project Zomboid",play,7.7,0 -71390526,"BioShock",purchase,1.0,0 -71390526,"BioShock",play,7.3,0 -71390526,"Portal 2",purchase,1.0,0 -71390526,"Portal 2",play,6.7,0 -71390526,"White Noise Online",purchase,1.0,0 -71390526,"White Noise Online",play,6.6,0 -71390526,"PlanetSide 2",purchase,1.0,0 -71390526,"PlanetSide 2",play,6.6,0 -71390526,"Guns of Icarus Online",purchase,1.0,0 -71390526,"Guns of Icarus Online",play,6.4,0 -71390526,"The Ship",purchase,1.0,0 -71390526,"The Ship",play,6.4,0 -71390526,"Sid Meier's Civilization IV",purchase,1.0,0 -71390526,"Sid Meier's Civilization IV",play,6.1,0 -71390526,"Age of Chivalry",purchase,1.0,0 -71390526,"Age of Chivalry",play,5.3,0 -71390526,"Fallout 2",purchase,1.0,0 -71390526,"Fallout 2",play,5.2,0 -71390526,"Dungeon Defenders",purchase,1.0,0 -71390526,"Dungeon Defenders",play,5.1,0 -71390526,"IL-2 Sturmovik 1946",purchase,1.0,0 -71390526,"IL-2 Sturmovik 1946",play,3.9,0 -71390526,"The Long Dark",purchase,1.0,0 -71390526,"The Long Dark",play,3.5,0 -71390526,"Super Hexagon",purchase,1.0,0 -71390526,"Super Hexagon",play,3.1,0 -71390526,"Portal",purchase,1.0,0 -71390526,"Portal",play,3.0,0 -71390526,"Papers, Please",purchase,1.0,0 -71390526,"Papers, Please",play,2.7,0 -71390526,"Don't Starve Together Beta",purchase,1.0,0 -71390526,"Don't Starve Together Beta",play,2.2,0 -71390526,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -71390526,"Tropico 3 - Steam Special Edition",play,2.2,0 -71390526,"Darkest Hour A Hearts of Iron Game",purchase,1.0,0 -71390526,"Darkest Hour A Hearts of Iron Game",play,2.0,0 -71390526,"Subnautica",purchase,1.0,0 -71390526,"Subnautica",play,1.8,0 -71390526,"Garry's Mod",purchase,1.0,0 -71390526,"Garry's Mod",play,1.6,0 -71390526,"Sid Meier's Civilization III Complete",purchase,1.0,0 -71390526,"Sid Meier's Civilization III Complete",play,1.6,0 -71390526,"Unturned",purchase,1.0,0 -71390526,"Unturned",play,1.5,0 -71390526,"Heroes & Generals",purchase,1.0,0 -71390526,"Heroes & Generals",play,1.1,0 -71390526,"Dino D-Day",purchase,1.0,0 -71390526,"Dino D-Day",play,0.9,0 -71390526,"Sid Meier's Pirates!",purchase,1.0,0 -71390526,"Sid Meier's Pirates!",play,0.9,0 -71390526,"Half-Life Opposing Force",purchase,1.0,0 -71390526,"Half-Life Opposing Force",play,0.8,0 -71390526,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -71390526,"Sid Meier's Civilization IV Colonization",play,0.8,0 -71390526,"Half-Life Blue Shift",purchase,1.0,0 -71390526,"Half-Life Blue Shift",play,0.7,0 -71390526,"The Way of Life Free Edition",purchase,1.0,0 -71390526,"The Way of Life Free Edition",play,0.4,0 -71390526,"Fingerbones",purchase,1.0,0 -71390526,"Fingerbones",play,0.3,0 -71390526,"The Ship Single Player",purchase,1.0,0 -71390526,"The Ship Single Player",play,0.3,0 -71390526,"Left 4 Dead",purchase,1.0,0 -71390526,"Left 4 Dead",play,0.2,0 -71390526,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -71390526,"Fallout 3 - Game of the Year Edition",play,0.2,0 -71390526,"Aliens versus Predator Classic 2000",purchase,1.0,0 -71390526,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -71390526,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -71390526,"Amnesia The Dark Descent",purchase,1.0,0 -71390526,"Crusader Kings II Sons of Abraham",purchase,1.0,0 -71390526,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -71390526,"Fallout New Vegas Dead Money",purchase,1.0,0 -71390526,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -71390526,"Planetary Annihilation",purchase,1.0,0 -71390526,"Rock of Ages",purchase,1.0,0 -71390526,"Sid Meier's Civilization IV",purchase,1.0,0 -71390526,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -71390526,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -71390526,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -71390526,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -71390526,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -71390526,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -71390526,"The Ship Tutorial",purchase,1.0,0 -199745733,"Dota 2",purchase,1.0,0 -199745733,"Dota 2",play,1.0,0 -199745733,"Robocraft",purchase,1.0,0 -242632396,"Unturned",purchase,1.0,0 -242632396,"Unturned",play,1.2,0 -210525366,"Dota 2",purchase,1.0,0 -210525366,"Dota 2",play,0.6,0 -231443162,"Unturned",purchase,1.0,0 -231443162,"Unturned",play,2.2,0 -186969279,"Team Fortress 2",purchase,1.0,0 -186969279,"Team Fortress 2",play,2.2,0 -52217458,"Empire Total War",purchase,1.0,0 -52217458,"Empire Total War",play,163.0,0 -52217458,"Total War SHOGUN 2",purchase,1.0,0 -52217458,"Total War SHOGUN 2",play,75.0,0 -52217458,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -52217458,"Warhammer 40,000 Dawn of War II",play,67.0,0 -52217458,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -52217458,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,6.6,0 -52217458,"Order of War",purchase,1.0,0 -52217458,"Order of War",play,5.1,0 -52217458,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -95461199,"Counter-Strike",purchase,1.0,0 -95461199,"Counter-Strike",play,893.0,0 -95461199,"Counter-Strike Condition Zero",purchase,1.0,0 -95461199,"Counter-Strike Condition Zero",play,0.3,0 -95461199,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -135179790,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -135179790,"Call of Duty Modern Warfare 2 - Multiplayer",play,17.4,0 -135179790,"Call of Duty Modern Warfare 2",purchase,1.0,0 -135179790,"Call of Duty Modern Warfare 2",play,0.3,0 -48792936,"Empire Total War",purchase,1.0,0 -48792936,"Empire Total War",play,66.0,0 -94161846,"Counter-Strike Global Offensive",purchase,1.0,0 -94161846,"Counter-Strike Global Offensive",play,412.0,0 -94161846,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -94161846,"Call of Duty Modern Warfare 3 - Multiplayer",play,308.0,0 -94161846,"Call of Duty Modern Warfare 3",purchase,1.0,0 -94161846,"Call of Duty Modern Warfare 3",play,47.0,0 -94161846,"7 Days to Die",purchase,1.0,0 -94161846,"7 Days to Die",play,42.0,0 -94161846,"Tropico 4",purchase,1.0,0 -94161846,"Tropico 4",play,24.0,0 -94161846,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -94161846,"Warhammer 40,000 Dawn of War II",play,22.0,0 -94161846,"Grand Theft Auto San Andreas",purchase,1.0,0 -94161846,"Grand Theft Auto San Andreas",play,8.1,0 -94161846,"Call of Juarez The Cartel",purchase,1.0,0 -94161846,"Call of Juarez The Cartel",play,5.3,0 -94161846,"Grand Theft Auto IV",purchase,1.0,0 -94161846,"Grand Theft Auto IV",play,2.0,0 -94161846,"ORION Prelude",purchase,1.0,0 -94161846,"ORION Prelude",play,0.7,0 -94161846,"Team Fortress 2",purchase,1.0,0 -94161846,"Team Fortress 2",play,0.7,0 -94161846,"Afterfall InSanity Extended Edition",purchase,1.0,0 -94161846,"BLOCKADE 3D",purchase,1.0,0 -94161846,"Counter-Strike Nexon Zombies",purchase,1.0,0 -94161846,"Defiance",purchase,1.0,0 -94161846,"Double Action Boogaloo",purchase,1.0,0 -94161846,"GTA SA German Mac",purchase,1.0,0 -94161846,"Neverwinter",purchase,1.0,0 -94161846,"Nosgoth",purchase,1.0,0 -94161846,"Path of Exile",purchase,1.0,0 -94161846,"Tribes Ascend",purchase,1.0,0 -94161846,"Unturned",purchase,1.0,0 -94161846,"Warframe",purchase,1.0,0 -94161846,"War Thunder",purchase,1.0,0 -295138491,"Dota 2",purchase,1.0,0 -295138491,"Dota 2",play,2.2,0 -58907890,"Terraria",purchase,1.0,0 -58907890,"Terraria",play,200.0,0 -58907890,"The Elder Scrolls V Skyrim",purchase,1.0,0 -58907890,"The Elder Scrolls V Skyrim",play,137.0,0 -58907890,"Grand Theft Auto V",purchase,1.0,0 -58907890,"Grand Theft Auto V",play,89.0,0 -58907890,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -58907890,"Warhammer 40,000 Dawn of War II",play,34.0,0 -58907890,"Garry's Mod",purchase,1.0,0 -58907890,"Garry's Mod",play,21.0,0 -58907890,"Age of Empires II HD Edition",purchase,1.0,0 -58907890,"Age of Empires II HD Edition",play,21.0,0 -58907890,"Shadowgrounds",purchase,1.0,0 -58907890,"Shadowgrounds",play,6.0,0 -58907890,"Shadowgrounds Survivor",purchase,1.0,0 -58907890,"Shadowgrounds Survivor",play,2.4,0 -58907890,"Mount & Blade",purchase,1.0,0 -58907890,"Mount & Blade",play,0.8,0 -58907890,"Kerbal Space Program",purchase,1.0,0 -58907890,"Kerbal Space Program",play,0.3,0 -58907890,"Star Wolves",purchase,1.0,0 -58907890,"Star Wolves",play,0.1,0 -58907890,"Counter-Strike",purchase,1.0,0 -58907890,"Counter-Strike Source",purchase,1.0,0 -58907890,"Counter-Strike Condition Zero",purchase,1.0,0 -58907890,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -58907890,"Counter-Strike Global Offensive",purchase,1.0,0 -58907890,"Day of Defeat",purchase,1.0,0 -58907890,"Day of Defeat Source",purchase,1.0,0 -58907890,"Deathmatch Classic",purchase,1.0,0 -58907890,"Half-Life",purchase,1.0,0 -58907890,"Half-Life 2",purchase,1.0,0 -58907890,"Half-Life 2 Deathmatch",purchase,1.0,0 -58907890,"Half-Life 2 Episode One",purchase,1.0,0 -58907890,"Half-Life 2 Episode Two",purchase,1.0,0 -58907890,"Half-Life 2 Lost Coast",purchase,1.0,0 -58907890,"Half-Life Blue Shift",purchase,1.0,0 -58907890,"Half-Life Opposing Force",purchase,1.0,0 -58907890,"Half-Life Source",purchase,1.0,0 -58907890,"Half-Life Deathmatch Source",purchase,1.0,0 -58907890,"Left 4 Dead",purchase,1.0,0 -58907890,"Left 4 Dead 2",purchase,1.0,0 -58907890,"Portal",purchase,1.0,0 -58907890,"Portal 2",purchase,1.0,0 -58907890,"Ricochet",purchase,1.0,0 -58907890,"Rocket League",purchase,1.0,0 -58907890,"Team Fortress Classic",purchase,1.0,0 -58907890,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -58907890,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -58907890,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -191421015,"Dota 2",purchase,1.0,0 -191421015,"Dota 2",play,6.0,0 -241891753,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -241891753,"DARK SOULS II Scholar of the First Sin",play,144.0,0 -241891753,"Mount & Blade With Fire and Sword",purchase,1.0,0 -241891753,"Mount & Blade With Fire and Sword",play,95.0,0 -241891753,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -241891753,"The Witcher 2 Assassins of Kings Enhanced Edition",play,4.8,0 -163669475,"Counter-Strike Global Offensive",purchase,1.0,0 -163669475,"Counter-Strike Global Offensive",play,189.0,0 -163669475,"Broforce",purchase,1.0,0 -163669475,"Broforce",play,39.0,0 -163669475,"Garry's Mod",purchase,1.0,0 -163669475,"Garry's Mod",play,15.8,0 -163669475,"Hotline Miami",purchase,1.0,0 -163669475,"Hotline Miami",play,10.1,0 -163669475,"Loadout",purchase,1.0,0 -163669475,"Loadout",play,9.4,0 -163669475,"STARWHAL",purchase,1.0,0 -163669475,"STARWHAL",play,5.7,0 -163669475,"Peggle Deluxe",purchase,1.0,0 -163669475,"Peggle Deluxe",play,2.6,0 -163669475,"Borderlands 2",purchase,1.0,0 -163669475,"Borderlands 2",play,1.5,0 -163669475,"SpeedRunners",purchase,1.0,0 -163669475,"SpeedRunners",play,0.5,0 -163669475,"Trials Fusion",purchase,1.0,0 -163669475,"Trials Fusion",play,0.5,0 -163669475,"Unturned",purchase,1.0,0 -163669475,"Unturned",play,0.4,0 -163669475,"Nosgoth",purchase,1.0,0 -163669475,"Nosgoth",play,0.3,0 -163669475,"Assassin's Creed II",purchase,1.0,0 -163669475,"Assassin's Creed II",play,0.3,0 -163669475,"TowerFall Ascension",purchase,1.0,0 -163669475,"TowerFall Ascension",play,0.3,0 -163669475,"Warframe",purchase,1.0,0 -163669475,"Warframe",play,0.2,0 -163669475,"The Expendabros",purchase,1.0,0 -163669475,"The Expendabros",play,0.2,0 -163669475,"Dota 2",purchase,1.0,0 -163669475,"Dota 2",play,0.2,0 -163669475,"Scribblenauts Unmasked",purchase,1.0,0 -163669475,"Scribblenauts Unmasked",play,0.1,0 -163669475,"Call of Duty World at War",purchase,1.0,0 -163669475,"Super Panda Adventures",purchase,1.0,0 -163669475,"Mount Your Friends",purchase,1.0,0 -163669475,"Just Cause 2",purchase,1.0,0 -163669475,"FIST OF AWESOME",purchase,1.0,0 -163669475,"Gang Beasts",purchase,1.0,0 -163669475,"Fable - The Lost Chapters",purchase,1.0,0 -163669475,"Surgeon Simulator",purchase,1.0,0 -163669475,"Assassin's Creed Brotherhood",purchase,1.0,0 -99202472,"Saints Row 2",purchase,1.0,0 -166318971,"Dota 2",purchase,1.0,0 -166318971,"Dota 2",play,2.7,0 -206248602,"Dota 2",purchase,1.0,0 -206248602,"Dota 2",play,0.7,0 -27100840,"Counter-Strike Source",purchase,1.0,0 -27100840,"Counter-Strike Source",play,2.8,0 -101248210,"Dota 2",purchase,1.0,0 -101248210,"Dota 2",play,797.0,0 -101248210,"Natural Selection 2",purchase,1.0,0 -101248210,"Natural Selection 2",play,0.9,0 -61614735,"Arma 3",purchase,1.0,0 -61614735,"Arma 3",play,200.0,0 -61614735,"theHunter",purchase,1.0,0 -61614735,"theHunter",play,1.3,0 -61614735,"Tactical Intervention",purchase,1.0,0 -61614735,"Tactical Intervention",play,0.2,0 -61614735,"Arma 3 Zeus",purchase,1.0,0 -111130695,"Dota 2",purchase,1.0,0 -111130695,"Dota 2",play,1763.0,0 -111130695,"Counter-Strike Global Offensive",purchase,1.0,0 -111130695,"Counter-Strike Global Offensive",play,109.0,0 -111130695,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -111130695,"Call of Duty Modern Warfare 2 - Multiplayer",play,66.0,0 -111130695,"Left 4 Dead 2",purchase,1.0,0 -111130695,"Left 4 Dead 2",play,40.0,0 -111130695,"DayZ",purchase,1.0,0 -111130695,"DayZ",play,33.0,0 -111130695,"Counter-Strike Source",purchase,1.0,0 -111130695,"Counter-Strike Source",play,24.0,0 -111130695,"War Thunder",purchase,1.0,0 -111130695,"War Thunder",play,19.1,0 -111130695,"Battlefield Bad Company 2",purchase,1.0,0 -111130695,"Battlefield Bad Company 2",play,14.4,0 -111130695,"PAYDAY 2",purchase,1.0,0 -111130695,"PAYDAY 2",play,14.3,0 -111130695,"DiRT 3",purchase,1.0,0 -111130695,"DiRT 3",play,13.4,0 -111130695,"Killing Floor",purchase,1.0,0 -111130695,"Killing Floor",play,10.2,0 -111130695,"Euro Truck Simulator 2",purchase,1.0,0 -111130695,"Euro Truck Simulator 2",play,8.8,0 -111130695,"Call of Duty Modern Warfare 2",purchase,1.0,0 -111130695,"Call of Duty Modern Warfare 2",play,8.0,0 -111130695,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -111130695,"Grand Theft Auto Episodes from Liberty City",play,6.9,0 -111130695,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -111130695,"Warhammer 40,000 Dawn of War II",play,6.5,0 -111130695,"F1 2013",purchase,1.0,0 -111130695,"F1 2013",play,6.1,0 -111130695,"No More Room in Hell",purchase,1.0,0 -111130695,"No More Room in Hell",play,6.0,0 -111130695,"Insurgency",purchase,1.0,0 -111130695,"Insurgency",play,5.5,0 -111130695,"Half-Life 2 Deathmatch",purchase,1.0,0 -111130695,"Half-Life 2 Deathmatch",play,4.2,0 -111130695,"Age of Empires III Complete Collection",purchase,1.0,0 -111130695,"Age of Empires III Complete Collection",play,3.6,0 -111130695,"The Elder Scrolls V Skyrim",purchase,1.0,0 -111130695,"The Elder Scrolls V Skyrim",play,3.5,0 -111130695,"Half-Life 2 Lost Coast",purchase,1.0,0 -111130695,"Half-Life 2 Lost Coast",play,2.1,0 -111130695,"Saints Row IV",purchase,1.0,0 -111130695,"Saints Row IV",play,1.3,0 -111130695,"Heroes & Generals",purchase,1.0,0 -111130695,"Heroes & Generals",play,0.3,0 -111130695,"Day of Defeat Source",purchase,1.0,0 -111130695,"Day of Defeat Source",play,0.2,0 -111130695,"BLOCKADE 3D",purchase,1.0,0 -111130695,"Clicker Heroes",purchase,1.0,0 -111130695,"Counter-Strike Nexon Zombies",purchase,1.0,0 -111130695,"Cry of Fear",purchase,1.0,0 -111130695,"DiRT 3 Complete Edition",purchase,1.0,0 -111130695,"Double Action Boogaloo",purchase,1.0,0 -111130695,"Far Cry 3",purchase,1.0,0 -111130695,"Grand Theft Auto IV",purchase,1.0,0 -111130695,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -111130695,"Magicka Wizard Wars",purchase,1.0,0 -111130695,"Neverwinter",purchase,1.0,0 -111130695,"Nosgoth",purchase,1.0,0 -111130695,"Prime World",purchase,1.0,0 -111130695,"Quake Live",purchase,1.0,0 -111130695,"Robocraft",purchase,1.0,0 -111130695,"theHunter",purchase,1.0,0 -111130695,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -111130695,"Unturned",purchase,1.0,0 -111130695,"Warframe",purchase,1.0,0 -227490126,"Warframe",purchase,1.0,0 -227490126,"Warframe",play,591.0,0 -227490126,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -227490126,"DARK SOULS II Scholar of the First Sin",play,54.0,0 -227490126,"Grand Theft Auto V",purchase,1.0,0 -227490126,"Grand Theft Auto V",play,13.4,0 -227490126,"Counter-Strike Global Offensive",purchase,1.0,0 -227490126,"Counter-Strike Global Offensive",play,5.0,0 -227490126,"Left 4 Dead 2",purchase,1.0,0 -227490126,"Left 4 Dead 2",play,4.4,0 -227490126,"Race The Sun",purchase,1.0,0 -227490126,"Savage Lands",purchase,1.0,0 -227490126,"Sniper Elite 3",purchase,1.0,0 -75273484,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -75273484,"Call of Duty Black Ops - Multiplayer",play,436.0,0 -75273484,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -75273484,"Call of Duty Modern Warfare 3 - Multiplayer",play,42.0,0 -75273484,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -75273484,"Tom Clancy's Ghost Recon Phantoms - EU",play,40.0,0 -75273484,"Empire Total War",purchase,1.0,0 -75273484,"Empire Total War",play,24.0,0 -75273484,"Call of Duty Black Ops",purchase,1.0,0 -75273484,"Call of Duty Black Ops",play,13.0,0 -75273484,"Call of Duty Modern Warfare 3",purchase,1.0,0 -75273484,"Call of Duty Modern Warfare 3",play,6.0,0 -75273484,"Napoleon Total War",purchase,1.0,0 -75273484,"Napoleon Total War",play,2.7,0 -75273484,"Warface",purchase,1.0,0 -75273484,"Warface",play,1.1,0 -186645930,"Unturned",purchase,1.0,0 -186645930,"Unturned",play,49.0,0 -7987640,"Counter-Strike Condition Zero",purchase,1.0,0 -7987640,"Counter-Strike",purchase,1.0,0 -7987640,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -110708539,"DC Universe Online",purchase,1.0,0 -110708539,"DC Universe Online",play,3.6,0 -214988530,"Counter-Strike Global Offensive",purchase,1.0,0 -214988530,"Counter-Strike Global Offensive",play,37.0,0 -152375240,"Team Fortress 2",purchase,1.0,0 -152375240,"Team Fortress 2",play,106.0,0 -206178043,"Dota 2",purchase,1.0,0 -206178043,"Dota 2",play,3.0,0 -199344685,"Dota 2",purchase,1.0,0 -199344685,"Dota 2",play,1.0,0 -249480968,"Dota 2",purchase,1.0,0 -249480968,"Dota 2",play,2.4,0 -162894458,"Team Fortress 2",purchase,1.0,0 -162894458,"Team Fortress 2",play,16.9,0 -79124111,"Fallout New Vegas",purchase,1.0,0 -133407060,"Dota 2",purchase,1.0,0 -133407060,"Dota 2",play,0.6,0 -34556248,"Counter-Strike Source",purchase,1.0,0 -34556248,"Counter-Strike Source",play,3.9,0 -34556248,"Day of Defeat Source",purchase,1.0,0 -34556248,"Day of Defeat Source",play,1.4,0 -34556248,"Half-Life 2 Deathmatch",purchase,1.0,0 -34556248,"Half-Life 2 Deathmatch",play,0.2,0 -34556248,"Half-Life 2 Lost Coast",purchase,1.0,0 -40754921,"Half-Life 2",purchase,1.0,0 -40754921,"Half-Life 2",play,22.0,0 -40754921,"Half-Life 2 Deathmatch",purchase,1.0,0 -40754921,"Half-Life 2 Deathmatch",play,18.0,0 -40754921,"Half-Life 2 Lost Coast",purchase,1.0,0 -40754921,"Half-Life 2 Lost Coast",play,0.2,0 -162787304,"Dota 2",purchase,1.0,0 -162787304,"Dota 2",play,36.0,0 -171580979,"Need for Speed Hot Pursuit",purchase,1.0,0 -171580979,"Need for Speed Hot Pursuit",play,10.4,0 -171580979,"Call of Duty Black Ops III",purchase,1.0,0 -171580979,"Call of Duty Black Ops III",play,10.2,0 -171580979,"No More Room in Hell",purchase,1.0,0 -171580979,"No More Room in Hell",play,3.2,0 -171580979,"Castle Crashers",purchase,1.0,0 -171580979,"Castle Crashers",play,0.8,0 -171580979,"Loadout",purchase,1.0,0 -171580979,"8BitMMO",purchase,1.0,0 -171580979,"PAYDAY The Heist",purchase,1.0,0 -171580979,"Velvet Assassin",purchase,1.0,0 -214784227,"Dota 2",purchase,1.0,0 -214784227,"Dota 2",play,1.2,0 -47748424,"Empire Total War",purchase,1.0,0 -145646661,"Dota 2",purchase,1.0,0 -145646661,"Dota 2",play,352.0,0 -145646661,"FreeStyle2 Street Basketball",purchase,1.0,0 -145646661,"FreeStyle2 Street Basketball",play,1.6,0 -114416197,"Fallout New Vegas",purchase,1.0,0 -114416197,"Fallout New Vegas",play,0.5,0 -218110241,"Dota 2",purchase,1.0,0 -218110241,"Dota 2",play,1.6,0 -218110241,"Enclave",purchase,1.0,0 -218110241,"Knights and Merchants",purchase,1.0,0 -218110241,"Two Worlds Epic Edition",purchase,1.0,0 -123435296,"Dota 2",purchase,1.0,0 -123435296,"Dota 2",play,1.7,0 -108512521,"Mount & Blade Warband",purchase,1.0,0 -108512521,"Mount & Blade Warband",play,32.0,0 -108512521,"Don't Starve",purchase,1.0,0 -108512521,"Don't Starve",play,11.6,0 -108512521,"BloodRealm Battlegrounds",purchase,1.0,0 -108512521,"BloodRealm Battlegrounds",play,0.6,0 -108512521,"Don't Starve Reign of Giants",purchase,1.0,0 -108512521,"Don't Starve Together Beta",purchase,1.0,0 -108512521,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -181453879,"Counter-Strike Global Offensive",purchase,1.0,0 -181453879,"Counter-Strike Global Offensive",play,1190.0,0 -181453879,"Terraria",purchase,1.0,0 -181453879,"Terraria",play,285.0,0 -181453879,"Dota 2",purchase,1.0,0 -181453879,"Dota 2",play,247.0,0 -181453879,"Unturned",purchase,1.0,0 -181453879,"Unturned",play,54.0,0 -181453879,"Team Fortress 2",purchase,1.0,0 -181453879,"Team Fortress 2",play,51.0,0 -181453879,"The Binding of Isaac Rebirth",purchase,1.0,0 -181453879,"The Binding of Isaac Rebirth",play,42.0,0 -181453879,"The Elder Scrolls V Skyrim",purchase,1.0,0 -181453879,"The Elder Scrolls V Skyrim",play,25.0,0 -181453879,"Castle Crashers",purchase,1.0,0 -181453879,"Castle Crashers",play,15.1,0 -181453879,"Don't Starve Together Beta",purchase,1.0,0 -181453879,"Don't Starve Together Beta",play,11.9,0 -181453879,"The Binding of Isaac",purchase,1.0,0 -181453879,"The Binding of Isaac",play,11.6,0 -181453879,"Garry's Mod",purchase,1.0,0 -181453879,"Garry's Mod",play,11.5,0 -181453879,"Rust",purchase,1.0,0 -181453879,"Rust",play,8.9,0 -181453879,"War Thunder",purchase,1.0,0 -181453879,"War Thunder",play,7.7,0 -181453879,"Ace of Spades",purchase,1.0,0 -181453879,"Ace of Spades",play,5.3,0 -181453879,"Ori and the Blind Forest",purchase,1.0,0 -181453879,"Ori and the Blind Forest",play,3.6,0 -181453879,"Total War ATTILA",purchase,1.0,0 -181453879,"Total War ATTILA",play,3.1,0 -181453879,"Counter-Strike",purchase,1.0,0 -181453879,"Counter-Strike",play,1.1,0 -181453879,"Counter-Strike Source",purchase,1.0,0 -181453879,"Counter-Strike Source",play,1.1,0 -181453879,"PAYDAY The Heist",purchase,1.0,0 -181453879,"PAYDAY The Heist",play,0.4,0 -181453879,"Counter-Strike Nexon Zombies",purchase,1.0,0 -181453879,"Counter-Strike Nexon Zombies",play,0.3,0 -181453879,"Strife",purchase,1.0,0 -181453879,"Strife",play,0.2,0 -181453879,"Clicker Heroes",purchase,1.0,0 -181453879,"Clicker Heroes",play,0.2,0 -181453879,"ORION Prelude",purchase,1.0,0 -181453879,"Counter-Strike Condition Zero",purchase,1.0,0 -181453879,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -59103567,"Football Manager 2010",purchase,1.0,0 -59103567,"Football Manager 2010",play,2.6,0 -307886547,"Dota 2",purchase,1.0,0 -307886547,"Dota 2",play,36.0,0 -272542868,"Dota 2",purchase,1.0,0 -272542868,"Dota 2",play,418.0,0 -59107320,"Portal",purchase,1.0,0 -59107320,"Portal",play,0.3,0 -187817597,"Unturned",purchase,1.0,0 -187817597,"Unturned",play,3.9,0 -187817597,"Robocraft",purchase,1.0,0 -187817597,"Robocraft",play,0.6,0 -187817597,"Firefall",purchase,1.0,0 -187817597,"Heroes & Generals",purchase,1.0,0 -258095301,"Clicker Heroes",purchase,1.0,0 -176929122,"Dota 2",purchase,1.0,0 -176929122,"Dota 2",play,1234.0,0 -176929122,"Counter-Strike Global Offensive",purchase,1.0,0 -176929122,"Counter-Strike Global Offensive",play,466.0,0 -176929122,"AdVenture Capitalist",purchase,1.0,0 -176929122,"AdVenture Capitalist",play,171.0,0 -176929122,"War Thunder",purchase,1.0,0 -176929122,"War Thunder",play,71.0,0 -176929122,"Don't Starve Together Beta",purchase,1.0,0 -176929122,"Don't Starve Together Beta",play,49.0,0 -176929122,"Terraria",purchase,1.0,0 -176929122,"Terraria",play,38.0,0 -176929122,"7 Days to Die",purchase,1.0,0 -176929122,"7 Days to Die",play,26.0,0 -176929122,"PAYDAY 2",purchase,1.0,0 -176929122,"PAYDAY 2",play,17.0,0 -176929122,"Saints Row IV",purchase,1.0,0 -176929122,"Saints Row IV",play,15.7,0 -176929122,"APB Reloaded",purchase,1.0,0 -176929122,"APB Reloaded",play,11.6,0 -176929122,"Everlasting Summer",purchase,1.0,0 -176929122,"Everlasting Summer",play,10.2,0 -176929122,"theHunter",purchase,1.0,0 -176929122,"theHunter",play,10.1,0 -176929122,"FlatOut 2",purchase,1.0,0 -176929122,"FlatOut 2",play,6.2,0 -176929122,"Lucius",purchase,1.0,0 -176929122,"Lucius",play,5.9,0 -176929122,"Nosgoth",purchase,1.0,0 -176929122,"Nosgoth",play,5.4,0 -176929122,"Garry's Mod",purchase,1.0,0 -176929122,"Garry's Mod",play,4.1,0 -176929122,"Unturned",purchase,1.0,0 -176929122,"Unturned",play,3.1,0 -176929122,"Loadout",purchase,1.0,0 -176929122,"Loadout",play,2.6,0 -176929122,"Robocraft",purchase,1.0,0 -176929122,"Robocraft",play,1.5,0 -176929122,"Spooky's House of Jump Scares",purchase,1.0,0 -176929122,"Spooky's House of Jump Scares",play,1.0,0 -176929122,"The Hat Man Shadow Ward",purchase,1.0,0 -176929122,"The Hat Man Shadow Ward",play,0.8,0 -176929122,"Metal Reaper Online",purchase,1.0,0 -176929122,"Metal Reaper Online",play,0.1,0 -176929122,"AirMech",purchase,1.0,0 -176929122,"Clown House (Palyao Evi)",purchase,1.0,0 -176929122,"Gear Up",purchase,1.0,0 -176929122,"ORION Prelude",purchase,1.0,0 -176929122,"Panzar",purchase,1.0,0 -176929122,"PAYDAY The Heist",purchase,1.0,0 -176929122,"Strife",purchase,1.0,0 -176929122,"Victory Command",purchase,1.0,0 -176929122,"Warside",purchase,1.0,0 -297340723,"Dota 2",purchase,1.0,0 -297340723,"Dota 2",play,19.3,0 -234190577,"Counter-Strike Global Offensive",purchase,1.0,0 -234190577,"Counter-Strike Global Offensive",play,539.0,0 -234190577,"Grand Theft Auto V",purchase,1.0,0 -234190577,"Grand Theft Auto V",play,212.0,0 -234190577,"Fallout 4",purchase,1.0,0 -234190577,"Fallout 4",play,59.0,0 -234190577,"Minimum",purchase,1.0,0 -234190577,"Minimum",play,16.0,0 -234190577,"Apotheon Arena",purchase,1.0,0 -234190577,"Apotheon Arena",play,0.3,0 -233408698,"Bloodline Champions",purchase,1.0,0 -233408698,"Bloodline Champions",play,0.7,0 -138960345,"The Elder Scrolls V Skyrim",purchase,1.0,0 -138960345,"The Elder Scrolls V Skyrim",play,6.9,0 -67083031,"Counter-Strike Source",purchase,1.0,0 -67083031,"Counter-Strike Source",play,146.0,0 -67083031,"Counter-Strike Global Offensive",purchase,1.0,0 -67083031,"Counter-Strike Global Offensive",play,110.0,0 -67083031,"The Binding of Isaac Rebirth",purchase,1.0,0 -67083031,"The Binding of Isaac Rebirth",play,19.1,0 -67083031,"Magic The Gathering - Duels of the Planeswalkers 2013",purchase,1.0,0 -67083031,"Magic The Gathering - Duels of the Planeswalkers 2013",play,18.2,0 -67083031,"Sonic Generations",purchase,1.0,0 -67083031,"Sonic Generations",play,3.2,0 -67083031,"Spiral Knights",purchase,1.0,0 -67083031,"Spiral Knights",play,2.0,0 -67083031,"Trine 2",purchase,1.0,0 -67083031,"Trine 2",play,1.8,0 -67083031,"WAKFU",purchase,1.0,0 -67083031,"WAKFU",play,1.2,0 -67083031,"Team Fortress 2",purchase,1.0,0 -67083031,"Team Fortress 2",play,1.2,0 -67083031,"Left 4 Dead 2",purchase,1.0,0 -67083031,"Left 4 Dead 2",play,0.6,0 -67083031,"Portal",purchase,1.0,0 -67083031,"Portal",play,0.6,0 -67083031,"Euro Truck Simulator",purchase,1.0,0 -67083031,"Euro Truck Simulator",play,0.2,0 -67083031,"Half-Life 2 Deathmatch",purchase,1.0,0 -67083031,"Amnesia The Dark Descent",purchase,1.0,0 -67083031,"Day of Defeat Source",purchase,1.0,0 -67083031,"Half-Life 2 Lost Coast",purchase,1.0,0 -67083031,"Magic Duels",purchase,1.0,0 -67083031,"Path of Exile",purchase,1.0,0 -67083031,"Portal 2",purchase,1.0,0 -105782521,"Sid Meier's Civilization V",purchase,1.0,0 -105782521,"Sid Meier's Civilization V",play,184.0,0 -105782521,"DayZ",purchase,1.0,0 -105782521,"DayZ",play,106.0,0 -105782521,"Starbound",purchase,1.0,0 -105782521,"Starbound",play,102.0,0 -105782521,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -105782521,"Call of Duty Ghosts - Multiplayer",play,32.0,0 -105782521,"The Walking Dead",purchase,1.0,0 -105782521,"The Walking Dead",play,30.0,0 -105782521,"The Walking Dead Season Two",purchase,1.0,0 -105782521,"The Walking Dead Season Two",play,27.0,0 -105782521,"How to Survive",purchase,1.0,0 -105782521,"How to Survive",play,20.0,0 -105782521,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -105782521,"Dark Souls Prepare to Die Edition",play,14.0,0 -105782521,"Rocket League",purchase,1.0,0 -105782521,"Rocket League",play,13.9,0 -105782521,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -105782521,"Sid Meier's Civilization IV Beyond the Sword",play,12.9,0 -105782521,"PAYDAY 2",purchase,1.0,0 -105782521,"PAYDAY 2",play,11.2,0 -105782521,"Sniper Elite V2",purchase,1.0,0 -105782521,"Sniper Elite V2",play,7.4,0 -105782521,"XCOM Enemy Unknown",purchase,1.0,0 -105782521,"XCOM Enemy Unknown",play,4.8,0 -105782521,"Batman Arkham Origins",purchase,1.0,0 -105782521,"Batman Arkham Origins",play,3.8,0 -105782521,"Super Hexagon",purchase,1.0,0 -105782521,"Super Hexagon",play,1.5,0 -105782521,"F.E.A.R. 3",purchase,1.0,0 -105782521,"F.E.A.R. 3",play,1.3,0 -105782521,"The Stomping Land",purchase,1.0,0 -105782521,"The Stomping Land",play,1.2,0 -105782521,"Chivalry Medieval Warfare",purchase,1.0,0 -105782521,"Chivalry Medieval Warfare",play,1.2,0 -105782521,"Tomb Raider",purchase,1.0,0 -105782521,"Tomb Raider",play,1.1,0 -105782521,"Project Zomboid",purchase,1.0,0 -105782521,"Project Zomboid",play,1.1,0 -105782521,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -105782521,"Sid Meier's Civilization IV Colonization",play,1.0,0 -105782521,"Heroes & Generals",purchase,1.0,0 -105782521,"Heroes & Generals",play,0.7,0 -105782521,"Pool Nation",purchase,1.0,0 -105782521,"Pool Nation",play,0.6,0 -105782521,"Terraria",purchase,1.0,0 -105782521,"Terraria",play,0.2,0 -105782521,"FINAL FANTASY VII",purchase,1.0,0 -105782521,"FINAL FANTASY VII",play,0.2,0 -105782521,"Team Fortress 2",purchase,1.0,0 -105782521,"Team Fortress 2",play,0.1,0 -105782521,"Mass Effect",purchase,1.0,0 -105782521,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -105782521,"Sid Meier's Civilization IV",purchase,1.0,0 -105782521,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -105782521,"Call of Duty Ghosts",purchase,1.0,0 -105782521,"Arma 2 Operation Arrowhead",purchase,1.0,0 -105782521,"Agricultural Simulator 2013 Steam Edition",purchase,1.0,0 -105782521,"Agricultural Simulator Historical Farming",purchase,1.0,0 -105782521,"Alpha Prime",purchase,1.0,0 -105782521,"Arma 2",purchase,1.0,0 -105782521,"Arma 2 DayZ Mod",purchase,1.0,0 -105782521,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -105782521,"Arma Gold Edition",purchase,1.0,0 -105782521,"Arma Tactics",purchase,1.0,0 -105782521,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -105782521,"Batman Arkham City GOTY",purchase,1.0,0 -105782521,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -105782521,"Bridge Project",purchase,1.0,0 -105782521,"Carrier Command Gaea Mission",purchase,1.0,0 -105782521,"Counter-Strike Global Offensive",purchase,1.0,0 -105782521,"Euro Truck Simulator",purchase,1.0,0 -105782521,"F.E.A.R.",purchase,1.0,0 -105782521,"F.E.A.R. Extraction Point",purchase,1.0,0 -105782521,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -105782521,"Football Manager 2014",purchase,1.0,0 -105782521,"Garry's Mod",purchase,1.0,0 -105782521,"Guardians of Middle-earth",purchase,1.0,0 -105782521,"Mass Effect 2",purchase,1.0,0 -105782521,"Mortal Kombat Kollection",purchase,1.0,0 -105782521,"Patch testing for Chivalry",purchase,1.0,0 -105782521,"Scribblenauts Unlimited",purchase,1.0,0 -105782521,"Sid Meier's Civilization IV",purchase,1.0,0 -105782521,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -105782521,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -105782521,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -105782521,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -105782521,"Starbound - Unstable",purchase,1.0,0 -105782521,"Take On Helicopters",purchase,1.0,0 -105782521,"The Lord of the Rings War in the North",purchase,1.0,0 -105782521,"Trainz Simulator 12",purchase,1.0,0 -105782521,"UFO Afterlight",purchase,1.0,0 -288916596,"Dota 2",purchase,1.0,0 -288916596,"Dota 2",play,155.0,0 -288916596,"Dragon Nest Europe",purchase,1.0,0 -288916596,"Free to Play",purchase,1.0,0 -288916596,"TERA",purchase,1.0,0 -288916596,"Warframe",purchase,1.0,0 -244293895,"Dota 2",purchase,1.0,0 -244293895,"Dota 2",play,3.2,0 -240671554,"Dota 2",purchase,1.0,0 -240671554,"Dota 2",play,11.3,0 -242866088,"Dragon Nest Europe",purchase,1.0,0 -242866088,"Dragon Nest Europe",play,4.7,0 -274308276,"WTFast Gamers Private Network (GPN)",purchase,1.0,0 -274308276,"WTFast Gamers Private Network (GPN)",play,6.7,0 -294155812,"Team Fortress 2",purchase,1.0,0 -294155812,"Team Fortress 2",play,0.1,0 -228733650,"Dota 2",purchase,1.0,0 -228733650,"Dota 2",play,1.1,0 -148162764,"Dota 2",purchase,1.0,0 -148162764,"Dota 2",play,86.0,0 -148162764,"Endless Space",purchase,1.0,0 -148162764,"Endless Space",play,1.6,0 -148162764,"Dead Island Epidemic",purchase,1.0,0 -150282867,"Terraria",purchase,1.0,0 -150282867,"Terraria",play,119.0,0 -150282867,"Starbound",purchase,1.0,0 -150282867,"Starbound",play,30.0,0 -150282867,"Left 4 Dead 2",purchase,1.0,0 -150282867,"Left 4 Dead 2",play,4.0,0 -150282867,"Space Engineers",purchase,1.0,0 -150282867,"Space Engineers",play,3.5,0 -150282867,"Medieval Engineers",purchase,1.0,0 -150282867,"Medieval Engineers",play,1.2,0 -150282867,"East India Company Gold",purchase,1.0,0 -150282867,"Enclave",purchase,1.0,0 -150282867,"Knights and Merchants",purchase,1.0,0 -150282867,"Starbound - Unstable",purchase,1.0,0 -298446224,"Cities Skylines",purchase,1.0,0 -298446224,"Cities Skylines",play,21.0,0 -298446224,"Stronghold Kingdoms",purchase,1.0,0 -120420435,"The Elder Scrolls V Skyrim",purchase,1.0,0 -120420435,"The Elder Scrolls V Skyrim",play,343.0,0 -120420435,"Defiance",purchase,1.0,0 -120420435,"Defiance",play,5.3,0 -120420435,"Saints Row IV Inauguration Station",purchase,1.0,0 -120420435,"Saints Row IV Inauguration Station",play,1.3,0 -120420435,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -120420435,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -120420435,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -120420435,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -120420435,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -233407123,"Robocraft",purchase,1.0,0 -233407123,"Robocraft",play,2.9,0 -233407123,"Team Fortress 2",purchase,1.0,0 -233407123,"Team Fortress 2",play,0.6,0 -233407123,"Nosgoth",purchase,1.0,0 -233407123,"Nosgoth",play,0.6,0 -233407123,"Unturned",purchase,1.0,0 -233407123,"Unturned",play,0.6,0 -14717252,"Broken Sword 5 - the Serpent's Curse",purchase,1.0,0 -14717252,"Broken Sword 5 - the Serpent's Curse",play,7.9,0 -14717252,"Half-Life 2",purchase,1.0,0 -14717252,"Half-Life 2",play,2.4,0 -14717252,"Counter-Strike Source",purchase,1.0,0 -14717252,"Counter-Strike Source",play,0.1,0 -14717252,"Half-Life 2 Deathmatch",purchase,1.0,0 -14717252,"Half-Life 2 Lost Coast",purchase,1.0,0 -245052241,"Dota 2",purchase,1.0,0 -245052241,"Dota 2",play,1.1,0 -236078667,"Counter-Strike Global Offensive",purchase,1.0,0 -236078667,"Counter-Strike Global Offensive",play,323.0,0 -236078667,"Sword Coast Legends",purchase,1.0,0 -194201853,"East India Company Gold",purchase,1.0,0 -72907554,"Dota 2",purchase,1.0,0 -72907554,"Dota 2",play,482.0,0 -72907554,"The Elder Scrolls V Skyrim",purchase,1.0,0 -72907554,"The Elder Scrolls V Skyrim",play,165.0,0 -72907554,"Counter-Strike Source",purchase,1.0,0 -72907554,"Counter-Strike Source",play,116.0,0 -72907554,"SMITE",purchase,1.0,0 -72907554,"SMITE",play,30.0,0 -72907554,"Counter-Strike Global Offensive",purchase,1.0,0 -72907554,"Counter-Strike Global Offensive",play,15.3,0 -72907554,"Sid Meier's Civilization V",purchase,1.0,0 -72907554,"Sid Meier's Civilization V",play,9.0,0 -72907554,"Starbound",purchase,1.0,0 -72907554,"Starbound",play,5.8,0 -72907554,"Spelunky",purchase,1.0,0 -72907554,"Spelunky",play,3.8,0 -72907554,"Unepic",purchase,1.0,0 -72907554,"Unepic",play,1.1,0 -72907554,"Audiosurf",purchase,1.0,0 -72907554,"Audiosurf",play,0.5,0 -72907554,"The Witcher Enhanced Edition",purchase,1.0,0 -72907554,"The Witcher Enhanced Edition",play,0.4,0 -72907554,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -72907554,"Starbound - Unstable",purchase,1.0,0 -116450986,"PlanetSide 2",purchase,1.0,0 -116450986,"PlanetSide 2",play,11.0,0 -116450986,"Dota 2",purchase,1.0,0 -116450986,"Dota 2",play,0.4,0 -208433111,"Dota 2",purchase,1.0,0 -208433111,"Dota 2",play,0.2,0 -282464648,"Counter-Strike Nexon Zombies",purchase,1.0,0 -282464648,"Counter-Strike Nexon Zombies",play,21.0,0 -282464648,"Team Fortress 2",purchase,1.0,0 -282464648,"Team Fortress 2",play,18.3,0 -282464648,"Unturned",purchase,1.0,0 -282464648,"Unturned",play,16.8,0 -282464648,"Dragons and Titans",purchase,1.0,0 -282464648,"Dragons and Titans",play,16.0,0 -282464648,"Brawlhalla",purchase,1.0,0 -282464648,"Brawlhalla",play,13.6,0 -282464648,"Soccer Manager 2016",purchase,1.0,0 -282464648,"Soccer Manager 2016",play,4.1,0 -282464648,"Trove",purchase,1.0,0 -282464648,"Trove",play,3.7,0 -282464648,"Card Hunter",purchase,1.0,0 -282464648,"Card Hunter",play,3.0,0 -282464648,"CubeGun",purchase,1.0,0 -282464648,"CubeGun",play,1.1,0 -282464648,"BLOCKADE 3D",purchase,1.0,0 -282464648,"BLOCKADE 3D",play,0.6,0 -282464648,"Teeworlds",purchase,1.0,0 -282464648,"Teeworlds",play,0.4,0 -282464648,"Cubic Castles",purchase,1.0,0 -282464648,"Cubic Castles",play,0.4,0 -282464648,"WARMODE",purchase,1.0,0 -282464648,"WARMODE",play,0.2,0 -282464648,"World of Soccer online",purchase,1.0,0 -282464648,"World of Soccer online",play,0.2,0 -282464648,"The Mighty Quest For Epic Loot",purchase,1.0,0 -282464648,"The Mighty Quest For Epic Loot",play,0.1,0 -282464648,"Endless Sky",purchase,1.0,0 -282464648,"Audition Online",purchase,1.0,0 -282464648,"Codename CURE",purchase,1.0,0 -282464648,"HIS (Heroes In the Sky)",purchase,1.0,0 -282464648,"No More Room in Hell",purchase,1.0,0 -282464648,"TDP5 Arena 3D",purchase,1.0,0 -260265776,"Mad Max",purchase,1.0,0 -260265776,"Mad Max",play,36.0,0 -260265776,"AdVenture Capitalist",purchase,1.0,0 -260265776,"AdVenture Capitalist",play,1.9,0 -260265776,"Nosgoth",purchase,1.0,0 -260265776,"Nosgoth",play,0.4,0 -260265776,"Robocraft",purchase,1.0,0 -260265776,"Robocraft",play,0.4,0 -260265776,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -78369082,"Counter-Strike Source",purchase,1.0,0 -78369082,"Counter-Strike Source",play,16.0,0 -37643786,"Half-Life 2 Lost Coast",purchase,1.0,0 -37643786,"Half-Life 2 Deathmatch",purchase,1.0,0 -37643786,"Half-Life 2 Episode One",purchase,1.0,0 -37643786,"Half-Life 2 Episode Two",purchase,1.0,0 -101602586,"Dota 2",purchase,1.0,0 -101602586,"Dota 2",play,762.0,0 -101602586,"Borderlands 2",purchase,1.0,0 -101602586,"Borderlands 2",play,164.0,0 -101602586,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -101602586,"Dark Souls Prepare to Die Edition",play,87.0,0 -101602586,"Terraria",purchase,1.0,0 -101602586,"Terraria",play,55.0,0 -101602586,"Epic Battle Fantasy 4",purchase,1.0,0 -101602586,"Epic Battle Fantasy 4",play,51.0,0 -101602586,"TERA",purchase,1.0,0 -101602586,"TERA",play,50.0,0 -101602586,"Valkyria Chronicles",purchase,1.0,0 -101602586,"Valkyria Chronicles",play,43.0,0 -101602586,"This War of Mine",purchase,1.0,0 -101602586,"This War of Mine",play,38.0,0 -101602586,"Magicka",purchase,1.0,0 -101602586,"Magicka",play,33.0,0 -101602586,"Dishonored",purchase,1.0,0 -101602586,"Dishonored",play,31.0,0 -101602586,"Borderlands The Pre-Sequel",purchase,1.0,0 -101602586,"Borderlands The Pre-Sequel",play,27.0,0 -101602586,"Wolfenstein The New Order",purchase,1.0,0 -101602586,"Wolfenstein The New Order",play,23.0,0 -101602586,"BioShock Infinite",purchase,1.0,0 -101602586,"BioShock Infinite",play,16.0,0 -101602586,"Ori and the Blind Forest",purchase,1.0,0 -101602586,"Ori and the Blind Forest",play,13.9,0 -101602586,"Team Fortress 2",purchase,1.0,0 -101602586,"Team Fortress 2",play,9.6,0 -101602586,"Torchlight II",purchase,1.0,0 -101602586,"Torchlight II",play,8.8,0 -101602586,"Transistor",purchase,1.0,0 -101602586,"Transistor",play,8.4,0 -101602586,"The Darkness II",purchase,1.0,0 -101602586,"The Darkness II",play,7.5,0 -101602586,"Half-Life 2",purchase,1.0,0 -101602586,"Half-Life 2",play,5.1,0 -101602586,"FINAL FANTASY TYPE-0 HD",purchase,1.0,0 -101602586,"FINAL FANTASY TYPE-0 HD",play,4.3,0 -101602586,"Portal",purchase,1.0,0 -101602586,"Portal",play,3.9,0 -101602586,"Serious Sam 3 BFE",purchase,1.0,0 -101602586,"Serious Sam 3 BFE",play,3.7,0 -101602586,"Halo Spartan Assault",purchase,1.0,0 -101602586,"Halo Spartan Assault",play,3.2,0 -101602586,"Ikaruga",purchase,1.0,0 -101602586,"Ikaruga",play,2.3,0 -101602586,"Magicka 2",purchase,1.0,0 -101602586,"Magicka 2",play,2.1,0 -101602586,"Strider",purchase,1.0,0 -101602586,"Strider",play,1.5,0 -101602586,"Rocksmith",purchase,1.0,0 -101602586,"Rocksmith",play,1.4,0 -101602586,"BioShock",purchase,1.0,0 -101602586,"BioShock",play,0.5,0 -101602586,"Ragnarok",purchase,1.0,0 -101602586,"Ragnarok",play,0.5,0 -101602586,"3089 -- Futuristic Action RPG",purchase,1.0,0 -101602586,"3089 -- Futuristic Action RPG",play,0.3,0 -101602586,"Bastion",purchase,1.0,0 -101602586,"BioShock 2",purchase,1.0,0 -101602586,"Blood Omen 2 Legacy of Kain",purchase,1.0,0 -101602586,"Brtal Legend",purchase,1.0,0 -101602586,"Dust An Elysian Tail",purchase,1.0,0 -101602586,"Everlasting Summer",purchase,1.0,0 -101602586,"Fairy Fencer F",purchase,1.0,0 -101602586,"Fallout New Vegas",purchase,1.0,0 -101602586,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -101602586,"Fallout New Vegas Dead Money",purchase,1.0,0 -101602586,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -101602586,"Garry's Mod",purchase,1.0,0 -101602586,"Half-Life 2 Lost Coast",purchase,1.0,0 -101602586,"If My Heart Had Wings",purchase,1.0,0 -101602586,"Legacy of Kain Defiance",purchase,1.0,0 -101602586,"Legacy of Kain Soul Reaver",purchase,1.0,0 -101602586,"Legacy of Kain Soul Reaver 2",purchase,1.0,0 -101602586,"Magicka Final Frontier",purchase,1.0,0 -101602586,"Magicka Frozen Lake",purchase,1.0,0 -101602586,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -101602586,"Magicka Nippon",purchase,1.0,0 -101602586,"Magicka Party Robes",purchase,1.0,0 -101602586,"Magicka The Watchtower",purchase,1.0,0 -101602586,"Magicka Vietnam",purchase,1.0,0 -101602586,"Magicka Wizard's Survival Kit",purchase,1.0,0 -101602586,"Marvel Heroes 2015",purchase,1.0,0 -101602586,"Mitsurugi Kamui Hikae",purchase,1.0,0 -101602586,"Nosgoth",purchase,1.0,0 -101602586,"Portal 2",purchase,1.0,0 -101602586,"RPG Maker VX Ace",purchase,1.0,0 -101602586,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -101602586,"Strike Vector",purchase,1.0,0 -101602586,"Styx Master of Shadows",purchase,1.0,0 -101602586,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -101602586,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -101602586,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -101602586,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -101602586,"Warframe",purchase,1.0,0 -176709931,"FreeStyle2 Street Basketball",purchase,1.0,0 -176709931,"FreeStyle2 Street Basketball",play,25.0,0 -176709931,"Serious Sam HD The Second Encounter",purchase,1.0,0 -176709931,"Serious Sam HD The Second Encounter",play,1.4,0 -176709931,"Karos",purchase,1.0,0 -176709931,"Warface",purchase,1.0,0 -182961604,"Counter-Strike Global Offensive",purchase,1.0,0 -182961604,"Counter-Strike Global Offensive",play,777.0,0 -182961604,"Arma 3",purchase,1.0,0 -182961604,"Arma 3",play,646.0,0 -182961604,"Rust",purchase,1.0,0 -182961604,"Rust",play,127.0,0 -182961604,"Garry's Mod",purchase,1.0,0 -182961604,"Garry's Mod",play,35.0,0 -182961604,"Brick-Force",purchase,1.0,0 -182961604,"Brick-Force",play,16.1,0 -182961604,"AdVenture Capitalist",purchase,1.0,0 -182961604,"AdVenture Capitalist",play,10.8,0 -182961604,"Robocraft",purchase,1.0,0 -182961604,"Robocraft",play,6.6,0 -182961604,"Insurgency",purchase,1.0,0 -182961604,"Insurgency",play,5.5,0 -182961604,"Unturned",purchase,1.0,0 -182961604,"Unturned",play,4.0,0 -182961604,"Realm of the Mad God",purchase,1.0,0 -182961604,"Realm of the Mad God",play,3.7,0 -182961604,"War Thunder",purchase,1.0,0 -182961604,"War Thunder",play,1.7,0 -182961604,"DayZ",purchase,1.0,0 -182961604,"DayZ",play,1.1,0 -182961604,"Cry of Fear",purchase,1.0,0 -182961604,"Cry of Fear",play,0.7,0 -182961604,"Double Action Boogaloo",purchase,1.0,0 -182961604,"Double Action Boogaloo",play,0.3,0 -182961604,"Warface",purchase,1.0,0 -182961604,"Warface",play,0.2,0 -182961604,"Toribash",purchase,1.0,0 -182961604,"Arma 3 Zeus",purchase,1.0,0 -182961604,"Heroes & Generals",purchase,1.0,0 -182961604,"Spiral Knights",purchase,1.0,0 -182961604,"theHunter",purchase,1.0,0 -245583676,"Dota 2",purchase,1.0,0 -245583676,"Dota 2",play,2.7,0 -175223006,"Dota 2",purchase,1.0,0 -175223006,"Dota 2",play,3.8,0 -202287486,"Dota 2",purchase,1.0,0 -202287486,"Dota 2",play,1323.0,0 -112907304,"Sniper Elite V2",purchase,1.0,0 -112907304,"Sniper Elite V2",play,0.1,0 -286988428,"Audition Online",purchase,1.0,0 -286988428,"Firefall",purchase,1.0,0 -286988428,"FreeStyle2 Street Basketball",purchase,1.0,0 -286988428,"Gotham City Impostors Free To Play",purchase,1.0,0 -286988428,"TERA",purchase,1.0,0 -286988428,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -166598655,"Dota 2",purchase,1.0,0 -166598655,"Dota 2",play,1.6,0 -21557528,"Counter-Strike",purchase,1.0,0 -21557528,"Counter-Strike",play,21.0,0 -21557528,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -21557528,"Counter-Strike Condition Zero Deleted Scenes",play,0.5,0 -21557528,"Counter-Strike Condition Zero",purchase,1.0,0 -21557528,"Day of Defeat",purchase,1.0,0 -21557528,"Deathmatch Classic",purchase,1.0,0 -21557528,"Ricochet",purchase,1.0,0 -207860755,"Dota 2",purchase,1.0,0 -207860755,"Dota 2",play,10.6,0 -31069041,"Half-Life 2 Deathmatch",purchase,1.0,0 -31069041,"Half-Life 2 Lost Coast",purchase,1.0,0 -33904278,"Counter-Strike",purchase,1.0,0 -33904278,"Counter-Strike",play,388.0,0 -33904278,"Counter-Strike Source",purchase,1.0,0 -33904278,"Counter-Strike Source",play,13.0,0 -33904278,"Counter-Strike Condition Zero",purchase,1.0,0 -33904278,"Counter-Strike Condition Zero",play,3.2,0 -33904278,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -33904278,"Day of Defeat",purchase,1.0,0 -33904278,"Day of Defeat Source",purchase,1.0,0 -33904278,"Deathmatch Classic",purchase,1.0,0 -33904278,"Half-Life 2 Deathmatch",purchase,1.0,0 -33904278,"Half-Life 2 Lost Coast",purchase,1.0,0 -33904278,"Ricochet",purchase,1.0,0 -138010203,"Team Fortress 2",purchase,1.0,0 -138010203,"Team Fortress 2",play,14.6,0 -232959254,"Unturned",purchase,1.0,0 -232959254,"Unturned",play,1.3,0 -186078229,"Unturned",purchase,1.0,0 -186078229,"Unturned",play,3.9,0 -208747788,"GunZ 2 The Second Duel",purchase,1.0,0 -208747788,"GunZ 2 The Second Duel",play,2.6,0 -89422440,"Portal 2",purchase,1.0,0 -89422440,"Portal 2",play,2.9,0 -210975085,"Dota 2",purchase,1.0,0 -210975085,"Dota 2",play,3.8,0 -10869571,"Half-Life 2",purchase,1.0,0 -10869571,"Half-Life 2",play,23.0,0 -10869571,"Speedball 2 Tournament",purchase,1.0,0 -10869571,"Speedball 2 Tournament",play,0.4,0 -10869571,"Day of Defeat",purchase,1.0,0 -10869571,"Counter-Strike",purchase,1.0,0 -10869571,"Counter-Strike Source",purchase,1.0,0 -10869571,"Deathmatch Classic",purchase,1.0,0 -10869571,"Half-Life",purchase,1.0,0 -10869571,"Half-Life 2 Deathmatch",purchase,1.0,0 -10869571,"Half-Life 2 Lost Coast",purchase,1.0,0 -10869571,"Half-Life Blue Shift",purchase,1.0,0 -10869571,"Half-Life Opposing Force",purchase,1.0,0 -10869571,"Ricochet",purchase,1.0,0 -10869571,"Team Fortress Classic",purchase,1.0,0 -209820105,"Train Fever",purchase,1.0,0 -209820105,"Train Fever",play,0.6,0 -180612782,"Unturned",purchase,1.0,0 -180612782,"Unturned",play,8.2,0 -180612782,"Rise of Incarnates",purchase,1.0,0 -308695132,"La Tale",purchase,1.0,0 -308695132,"La Tale",play,4.7,0 -308695132,"Champions Online",purchase,1.0,0 -308695132,"Champions Online",play,4.3,0 -308695132,"Brawlhalla",purchase,1.0,0 -308695132,"Brawlhalla",play,1.5,0 -308695132,"Counter-Strike Nexon Zombies",purchase,1.0,0 -308695132,"Counter-Strike Nexon Zombies",play,0.6,0 -95918472,"Aliens vs. Predator",purchase,1.0,0 -95918472,"Aliens vs. Predator",play,1.6,0 -194858483,"Ascend Hand of Kul",purchase,1.0,0 -194858483,"Dirty Bomb",purchase,1.0,0 -221161433,"Gunscape",purchase,1.0,0 -221161433,"Gunscape",play,0.4,0 -221161433,"Unturned",purchase,1.0,0 -221161433,"Modular Combat",purchase,1.0,0 -221161433,"Running Shadow",purchase,1.0,0 -164473026,"Dota 2",purchase,1.0,0 -164473026,"Dota 2",play,1.4,0 -45274432,"PAYDAY The Heist",purchase,1.0,0 -100728962,"Dota 2",purchase,1.0,0 -100728962,"Dota 2",play,73.0,0 -227752269,"Transformice",purchase,1.0,0 -205204457,"Happy Wars",purchase,1.0,0 -205204457,"Happy Wars",play,0.7,0 -147114426,"Dota 2",purchase,1.0,0 -147114426,"Dota 2",play,1.8,0 -22673724,"Half-Life 2 Episode One",purchase,1.0,0 -22673724,"Half-Life 2 Episode One",play,0.8,0 -22673724,"Half-Life 2 Deathmatch",purchase,1.0,0 -22673724,"Half-Life 2 Lost Coast",purchase,1.0,0 -22673724,"Half-Life Deathmatch Source",purchase,1.0,0 -256967415,"FreeStyle2 Street Basketball",purchase,1.0,0 -256967415,"TERA",purchase,1.0,0 -147079200,"Unturned",purchase,1.0,0 -147079200,"Unturned",play,2.8,0 -147079200,"Gotham City Impostors Free To Play",purchase,1.0,0 -147079200,"Gotham City Impostors Free To Play",play,2.5,0 -147079200,"Dota 2",purchase,1.0,0 -147079200,"Dota 2",play,0.6,0 -147079200,"Robocraft",purchase,1.0,0 -147079200,"Robocraft",play,0.2,0 -147079200,"Guns and Robots",purchase,1.0,0 -147079200,"Heroes & Generals",purchase,1.0,0 -202239376,"Dota 2",purchase,1.0,0 -202239376,"Dota 2",play,1.6,0 -177924431,"Dota 2",purchase,1.0,0 -177924431,"Dota 2",play,3.9,0 -35935953,"Half-Life 2 Deathmatch",purchase,1.0,0 -35935953,"Half-Life 2 Lost Coast",purchase,1.0,0 -35935953,"Speedball 2 Tournament",purchase,1.0,0 -92842809,"Terraria",purchase,1.0,0 -92842809,"Terraria",play,4.8,0 -92842809,"Portal",purchase,1.0,0 -92842809,"Portal",play,1.1,0 -188110199,"Unturned",purchase,1.0,0 -188110199,"Unturned",play,0.9,0 -149556407,"Dota 2",purchase,1.0,0 -149556407,"Dota 2",play,0.5,0 -198327032,"Gotham City Impostors Free To Play",purchase,1.0,0 -198327032,"Gotham City Impostors Free To Play",play,0.5,0 -167935300,"Dota 2",purchase,1.0,0 -167935300,"Dota 2",play,1.7,0 -285316500,"Dota 2",purchase,1.0,0 -285316500,"Dota 2",play,0.1,0 -123988363,"Team Fortress 2",purchase,1.0,0 -123988363,"Team Fortress 2",play,0.7,0 -75092930,"Counter-Strike",purchase,1.0,0 -75092930,"Counter-Strike",play,2117.0,0 -75092930,"Dota 2",purchase,1.0,0 -75092930,"Dota 2",play,5.2,0 -75092930,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -75092930,"Counter-Strike Condition Zero Deleted Scenes",play,0.6,0 -75092930,"Counter-Strike Condition Zero",purchase,1.0,0 -75092930,"Counter-Strike Condition Zero",play,0.1,0 -75092930,"Rise of Incarnates",purchase,1.0,0 -75092930,"RaiderZ",purchase,1.0,0 -201889336,"Fallout New Vegas",purchase,1.0,0 -201889336,"Fallout New Vegas",play,49.0,0 -201889336,"Fallout 3",purchase,1.0,0 -201889336,"Fallout 3",play,0.2,0 -201889336,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -201889336,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.1,0 -201889336,"Alice Madness Returns",purchase,1.0,0 -201889336,"Running Shadow",purchase,1.0,0 -1612666,"BioShock Infinite",purchase,1.0,0 -1612666,"BioShock Infinite",play,28.0,0 -1612666,"Tomb Raider",purchase,1.0,0 -1612666,"Tomb Raider",play,20.0,0 -1612666,"Sid Meier's Civilization V",purchase,1.0,0 -1612666,"Sid Meier's Civilization V",play,19.1,0 -1612666,"Max Payne 3",purchase,1.0,0 -1612666,"Max Payne 3",play,16.7,0 -1612666,"Fallout New Vegas",purchase,1.0,0 -1612666,"Fallout New Vegas",play,14.4,0 -1612666,"Sleeping Dogs",purchase,1.0,0 -1612666,"Sleeping Dogs",play,12.9,0 -1612666,"Counter-Strike Global Offensive",purchase,1.0,0 -1612666,"Counter-Strike Global Offensive",play,11.9,0 -1612666,"Hitman Absolution",purchase,1.0,0 -1612666,"Hitman Absolution",play,10.5,0 -1612666,"Dota 2",purchase,1.0,0 -1612666,"Dota 2",play,7.4,0 -1612666,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -1612666,"The Witcher 2 Assassins of Kings Enhanced Edition",play,6.2,0 -1612666,"Kingdom Rush",purchase,1.0,0 -1612666,"Kingdom Rush",play,5.9,0 -1612666,"Left 4 Dead 2",purchase,1.0,0 -1612666,"Left 4 Dead 2",play,5.8,0 -1612666,"L.A. Noire",purchase,1.0,0 -1612666,"L.A. Noire",play,4.0,0 -1612666,"Grand Theft Auto IV",purchase,1.0,0 -1612666,"Grand Theft Auto IV",play,2.5,0 -1612666,"Counter-Strike",purchase,1.0,0 -1612666,"Counter-Strike",play,1.3,0 -1612666,"Red Faction Armageddon",purchase,1.0,0 -1612666,"Red Faction Armageddon",play,0.3,0 -1612666,"Hotline Miami",purchase,1.0,0 -1612666,"Hotline Miami",play,0.2,0 -1612666,"Darksiders",purchase,1.0,0 -1612666,"BioShock Infinite - Season Pass",purchase,1.0,0 -1612666,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -1612666,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -1612666,"Day of Defeat",purchase,1.0,0 -1612666,"Deathmatch Classic",purchase,1.0,0 -1612666,"Half-Life",purchase,1.0,0 -1612666,"Half-Life Blue Shift",purchase,1.0,0 -1612666,"Half-Life Opposing Force",purchase,1.0,0 -1612666,"Ricochet",purchase,1.0,0 -1612666,"Team Fortress Classic",purchase,1.0,0 -225942169,"Dota 2",purchase,1.0,0 -225942169,"Dota 2",play,43.0,0 -278825568,"Team Fortress 2",purchase,1.0,0 -278825568,"Team Fortress 2",play,0.9,0 -278825568,"Dirty Bomb",purchase,1.0,0 -278825568,"Dirty Bomb",play,0.3,0 -278825568,"Warframe",purchase,1.0,0 -278825568,"Warframe",play,0.2,0 -83234559,"Sid Meier's Civilization III Complete",purchase,1.0,0 -83234559,"Sid Meier's Civilization III Complete",play,299.0,0 -83234559,"Total War SHOGUN 2",purchase,1.0,0 -83234559,"Total War SHOGUN 2",play,89.0,0 -83234559,"Sid Meier's Civilization V",purchase,1.0,0 -83234559,"Sid Meier's Civilization V",play,51.0,0 -83234559,"The Elder Scrolls V Skyrim",purchase,1.0,0 -83234559,"The Elder Scrolls V Skyrim",play,12.1,0 -83234559,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -83234559,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -219435905,"Team Fortress 2",purchase,1.0,0 -219435905,"Team Fortress 2",play,0.4,0 -219435905,"Cobi Treasure Deluxe",purchase,1.0,0 -219435905,"Dead Bits",purchase,1.0,0 -219435905,"Unturned",purchase,1.0,0 -204795948,"Garry's Mod",purchase,1.0,0 -204795948,"Garry's Mod",play,122.0,0 -204795948,"Team Fortress 2",purchase,1.0,0 -204795948,"Team Fortress 2",play,15.3,0 -204795948,"Dota 2",purchase,1.0,0 -204795948,"Dota 2",play,5.2,0 -204795948,"Unturned",purchase,1.0,0 -204795948,"Unturned",play,3.5,0 -204795948,"Speedball 2 HD",purchase,1.0,0 -204795948,"Speedball 2 HD",play,1.9,0 -204795948,"Canyon Capers",purchase,1.0,0 -204795948,"Canyon Capers",play,1.4,0 -204795948,"PixelJunk Monsters Ultimate",purchase,1.0,0 -204795948,"PixelJunk Monsters Ultimate",play,1.2,0 -204795948,"Loadout",purchase,1.0,0 -204795948,"Loadout",play,1.0,0 -204795948,"Victim of Xen",purchase,1.0,0 -204795948,"Victim of Xen",play,0.7,0 -204795948,"Gun Monkeys",purchase,1.0,0 -204795948,"Gun Monkeys",play,0.5,0 -204795948,"World of Guns Gun Disassembly",purchase,1.0,0 -204795948,"World of Guns Gun Disassembly",play,0.2,0 -204795948,"America's Army Proving Grounds",purchase,1.0,0 -204795948,"America's Army Proving Grounds",play,0.1,0 -204795948,"Dead Island Epidemic",purchase,1.0,0 -204795948,"America's Army 3",purchase,1.0,0 -204795948,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -204795948,"Age of Empires Online",purchase,1.0,0 -204795948,"APB Reloaded",purchase,1.0,0 -204795948,"Thinking with Time Machine",purchase,1.0,0 -204795948,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -204795948,"Amazing World",purchase,1.0,0 -204795948,"CrimeCraft GangWars",purchase,1.0,0 -204795948,"The Forgotten Ones",purchase,1.0,0 -204795948,"Warface",purchase,1.0,0 -204795948,"Realm of the Mad God",purchase,1.0,0 -204795948,"Reversion - The Escape",purchase,1.0,0 -204795948,"Vindictus",purchase,1.0,0 -204795948,"Super Monday Night Combat",purchase,1.0,0 -204795948,"Marvel Heroes 2015",purchase,1.0,0 -204795948,"Guns and Robots",purchase,1.0,0 -204795948,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -204795948,"War Inc. Battlezone",purchase,1.0,0 -204795948,"War Thunder",purchase,1.0,0 -204795948,"La Tale",purchase,1.0,0 -204795948,"Tactical Intervention",purchase,1.0,0 -204795948,"Warframe",purchase,1.0,0 -204795948,"Arcane Saga Online",purchase,1.0,0 -204795948,"Archeblade",purchase,1.0,0 -204795948,"Arctic Combat",purchase,1.0,0 -204795948,"Atlantica Online",purchase,1.0,0 -204795948,"Aura Kingdom",purchase,1.0,0 -204795948,"Bloodline Champions",purchase,1.0,0 -204795948,"Brawl Busters",purchase,1.0,0 -204795948,"Bullet Run",purchase,1.0,0 -204795948,"C9",purchase,1.0,0 -204795948,"Cakewalk Loop Manager",purchase,1.0,0 -204795948,"Champions Online",purchase,1.0,0 -204795948,"Combat Arms",purchase,1.0,0 -204795948,"Construct 2 Free",purchase,1.0,0 -204795948,"Defiance",purchase,1.0,0 -204795948,"District 187",purchase,1.0,0 -204795948,"Dizzel",purchase,1.0,0 -204795948,"Dragon Nest",purchase,1.0,0 -204795948,"Dragon Nest Europe",purchase,1.0,0 -204795948,"Dragons and Titans",purchase,1.0,0 -204795948,"Dungeon Fighter Online",purchase,1.0,0 -204795948,"Dungeonland",purchase,1.0,0 -204795948,"Dungeon Party",purchase,1.0,0 -204795948,"Dwarfs F2P",purchase,1.0,0 -204795948,"EverQuest Free-to-Play",purchase,1.0,0 -204795948,"EverQuest II",purchase,1.0,0 -204795948,"EVGA PrecisionX 16",purchase,1.0,0 -204795948,"Face of Mankind",purchase,1.0,0 -204795948,"Fallen Earth",purchase,1.0,0 -204795948,"Fiesta Online",purchase,1.0,0 -204795948,"Fiesta Online NA",purchase,1.0,0 -204795948,"Firefall",purchase,1.0,0 -204795948,"Floating Point",purchase,1.0,0 -204795948,"Football Superstars",purchase,1.0,0 -204795948,"Forsaken World ",purchase,1.0,0 -204795948,"Frontline Tactics",purchase,1.0,0 -204795948,"Global Agenda",purchase,1.0,0 -204795948,"Gotham City Impostors Free To Play",purchase,1.0,0 -204795948,"Grand Chase",purchase,1.0,0 -204795948,"Heroes & Generals",purchase,1.0,0 -204795948,"HOMEFRONT Demo",purchase,1.0,0 -204795948,"Knights and Merchants",purchase,1.0,0 -204795948,"Mabinogi",purchase,1.0,0 -204795948,"Magic The Gathering Tactics",purchase,1.0,0 -204795948,"March of War",purchase,1.0,0 -204795948,"Memoir '44 Online",purchase,1.0,0 -204795948,"MicroVolts Surge",purchase,1.0,0 -204795948,"Moon Breakers",purchase,1.0,0 -204795948,"NEOTOKYO",purchase,1.0,0 -204795948,"Neverwinter",purchase,1.0,0 -204795948,"Nosgoth",purchase,1.0,0 -204795948,"Only If",purchase,1.0,0 -204795948,"Pandora Saga Weapons of Balance",purchase,1.0,0 -204795948,"Panzar",purchase,1.0,0 -204795948,"Path of Exile",purchase,1.0,0 -204795948,"Pinball Arcade",purchase,1.0,0 -204795948,"PlanetSide 2",purchase,1.0,0 -204795948,"Pox Nora",purchase,1.0,0 -204795948,"Puzzle Pirates",purchase,1.0,0 -204795948,"Quantum Rush Online",purchase,1.0,0 -204795948,"RaceRoom Racing Experience ",purchase,1.0,0 -204795948,"Ragnarok Online 2",purchase,1.0,0 -204795948,"Rise of Incarnates",purchase,1.0,0 -204795948,"Robocraft",purchase,1.0,0 -204795948,"ROSE Online",purchase,1.0,0 -204795948,"Royal Quest",purchase,1.0,0 -204795948,"Rusty Hearts",purchase,1.0,0 -204795948,"Saira",purchase,1.0,0 -204795948,"Shadow Warrior Classic (1997)",purchase,1.0,0 -204795948,"Spiral Knights",purchase,1.0,0 -204795948,"Star Conflict",purchase,1.0,0 -204795948,"Star Trek Online",purchase,1.0,0 -204795948,"Stronghold Kingdoms",purchase,1.0,0 -204795948,"Sunrider Mask of Arcadius",purchase,1.0,0 -204795948,"Super Crate Box",purchase,1.0,0 -204795948,"The Banner Saga Factions",purchase,1.0,0 -204795948,"The Expendabros",purchase,1.0,0 -204795948,"The Lord of the Rings Online",purchase,1.0,0 -204795948,"Tribes Ascend",purchase,1.0,0 -204795948,"Uncharted Waters Online",purchase,1.0,0 -204795948,"Velvet Sundown",purchase,1.0,0 -204795948,"World of Battles",purchase,1.0,0 -204795948,"Xam",purchase,1.0,0 -195414910,"Sakura Clicker",purchase,1.0,0 -195414910,"Sakura Clicker",play,240.0,0 -195414910,"War Thunder",purchase,1.0,0 -195414910,"War Thunder",play,82.0,0 -195414910,"Counter-Strike Global Offensive",purchase,1.0,0 -195414910,"Counter-Strike Global Offensive",play,63.0,0 -195414910,"Team Fortress 2",purchase,1.0,0 -195414910,"Team Fortress 2",play,52.0,0 -195414910,"Dota 2",purchase,1.0,0 -195414910,"Dota 2",play,31.0,0 -195414910,"Rocket League",purchase,1.0,0 -195414910,"Rocket League",play,31.0,0 -195414910,"Borderlands 2",purchase,1.0,0 -195414910,"Borderlands 2",play,24.0,0 -195414910,"PAYDAY 2",purchase,1.0,0 -195414910,"PAYDAY 2",play,22.0,0 -195414910,"Clicker Heroes",purchase,1.0,0 -195414910,"Clicker Heroes",play,10.6,0 -195414910,"PAYDAY The Heist",purchase,1.0,0 -195414910,"PAYDAY The Heist",play,5.0,0 -195414910,"Trove",purchase,1.0,0 -195414910,"Trove",play,3.8,0 -195414910,"Gear Up",purchase,1.0,0 -195414910,"Gear Up",play,3.1,0 -195414910,"Magic Duels",purchase,1.0,0 -195414910,"Magic Duels",play,2.8,0 -195414910,"Cry of Fear",purchase,1.0,0 -195414910,"Cry of Fear",play,2.7,0 -195414910,"Robocraft",purchase,1.0,0 -195414910,"Robocraft",play,2.2,0 -195414910,"Get Off My Lawn!",purchase,1.0,0 -195414910,"Get Off My Lawn!",play,1.7,0 -195414910,"Brick-Force",purchase,1.0,0 -195414910,"Brick-Force",play,0.6,0 -195414910,"H1Z1",purchase,1.0,0 -195414910,"H1Z1",play,0.5,0 -195414910,"Kung Fu Strike The Warrior's Rise",purchase,1.0,0 -195414910,"Kung Fu Strike The Warrior's Rise",play,0.4,0 -195414910,"UberStrike",purchase,1.0,0 -195414910,"UberStrike",play,0.3,0 -195414910,"8BitBoy",purchase,1.0,0 -195414910,"Afterfall InSanity Extended Edition",purchase,1.0,0 -195414910,"Anomaly Warzone Earth Mobile Campaign",purchase,1.0,0 -195414910,"Brawlhalla",purchase,1.0,0 -195414910,"Chaos Domain",purchase,1.0,0 -195414910,"Crash Time II",purchase,1.0,0 -195414910,"CT Special Forces Fire for Effect",purchase,1.0,0 -195414910,"Dead Bits",purchase,1.0,0 -195414910,"Dead Island Epidemic",purchase,1.0,0 -195414910,"Dream Of Mirror Online",purchase,1.0,0 -195414910,"Enemy Mind",purchase,1.0,0 -195414910,"Grimoire Manastorm",purchase,1.0,0 -195414910,"H1Z1 Test Server",purchase,1.0,0 -195414910,"Humanity Asset",purchase,1.0,0 -195414910,"Hyper Fighters",purchase,1.0,0 -195414910,"Jet Gunner",purchase,1.0,0 -195414910,"Lucius",purchase,1.0,0 -195414910,"Murder Miners",purchase,1.0,0 -195414910,"ORION Prelude",purchase,1.0,0 -195414910,"Particula",purchase,1.0,0 -195414910,"Realms of the Haunting",purchase,1.0,0 -195414910,"Rise of Incarnates",purchase,1.0,0 -195414910,"Shadows on the Vatican - Act I Greed",purchase,1.0,0 -195414910,"Stealth Inc 2",purchase,1.0,0 -195414910,"Steel & Steam Episode 1",purchase,1.0,0 -195414910,"Steel Ocean",purchase,1.0,0 -195414910,"The 39 Steps",purchase,1.0,0 -195414910,"Warframe",purchase,1.0,0 -195414910,"Written in the Sky",purchase,1.0,0 -93197620,"Cossacks II Battle for Europe",purchase,1.0,0 -93197620,"Cossacks II Battle for Europe",play,1.7,0 -79715089,"Warframe",purchase,1.0,0 -79715089,"Warframe",play,130.0,0 -79715089,"Batman Arkham City GOTY",purchase,1.0,0 -79715089,"Batman Arkham City GOTY",play,14.5,0 -79715089,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -79715089,"Resident Evil 6 / Biohazard 6",play,13.8,0 -79715089,"BioShock Infinite",purchase,1.0,0 -79715089,"BioShock Infinite",play,9.9,0 -79715089,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -79715089,"Tom Clancy's Ghost Recon Phantoms - NA",play,4.2,0 -79715089,"Fallout New Vegas",purchase,1.0,0 -79715089,"Fallout New Vegas",play,3.7,0 -79715089,"Dota 2",purchase,1.0,0 -79715089,"Dota 2",play,3.5,0 -79715089,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -79715089,"Batman Arkham Asylum GOTY Edition",play,2.4,0 -79715089,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -79715089,"The Witcher 2 Assassins of Kings Enhanced Edition",play,2.2,0 -79715089,"Team Fortress 2",purchase,1.0,0 -79715089,"Team Fortress 2",play,1.3,0 -79715089,"Dizzel",purchase,1.0,0 -79715089,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -79715089,"Fallout New Vegas Dead Money",purchase,1.0,0 -79715089,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -79715089,"The Witcher Enhanced Edition",purchase,1.0,0 -142721011,"Dota 2",purchase,1.0,0 -142721011,"Dota 2",play,69.0,0 -190049238,"The Walking Dead",purchase,1.0,0 -190049238,"The Walking Dead",play,40.0,0 -190049238,"Life Is Strange",purchase,1.0,0 -190049238,"Life Is Strange",play,15.4,0 -190049238,"The Walking Dead Season Two",purchase,1.0,0 -190049238,"The Walking Dead Season Two",play,6.1,0 -190049238,"The Elder Scrolls V Skyrim",purchase,1.0,0 -190049238,"The Elder Scrolls V Skyrim",play,0.8,0 -120171057,"Team Fortress 2",purchase,1.0,0 -120171057,"Team Fortress 2",play,2.9,0 -120171057,"Dota 2",purchase,1.0,0 -120171057,"Dota 2",play,2.0,0 -234360501,"Dota 2",purchase,1.0,0 -234360501,"Dota 2",play,0.2,0 -37435998,"Counter-Strike Global Offensive",purchase,1.0,0 -37435998,"Counter-Strike Global Offensive",play,668.0,0 -37435998,"Counter-Strike Source",purchase,1.0,0 -37435998,"Counter-Strike Source",play,118.0,0 -37435998,"PAYDAY 2",purchase,1.0,0 -37435998,"PAYDAY 2",play,14.8,0 -37435998,"Left 4 Dead 2",purchase,1.0,0 -37435998,"Left 4 Dead 2",play,9.5,0 -37435998,"Killing Floor",purchase,1.0,0 -37435998,"Killing Floor",play,6.0,0 -37435998,"Dota 2",purchase,1.0,0 -37435998,"Dota 2",play,5.6,0 -37435998,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -37435998,"Call of Duty Black Ops II - Zombies",play,2.6,0 -37435998,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -37435998,"Call of Duty Black Ops II - Multiplayer",play,2.5,0 -37435998,"Half-Life 2 Deathmatch",purchase,1.0,0 -37435998,"Half-Life 2 Deathmatch",play,1.1,0 -37435998,"Arma 2 DayZ Mod",purchase,1.0,0 -37435998,"Arma 2 Operation Arrowhead",purchase,1.0,0 -37435998,"Arma 2",purchase,1.0,0 -37435998,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -37435998,"Call of Duty Black Ops II",purchase,1.0,0 -37435998,"Day of Defeat Source",purchase,1.0,0 -37435998,"Half-Life 2 Lost Coast",purchase,1.0,0 -37435998,"Heroes & Generals",purchase,1.0,0 -37435998,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -37435998,"Natural Selection 2",purchase,1.0,0 -37435998,"Warframe",purchase,1.0,0 -37435998,"War Thunder",purchase,1.0,0 -284096202,"Robocraft",purchase,1.0,0 -284096202,"Robocraft",play,0.7,0 -284096202,"Unturned",purchase,1.0,0 -284096202,"Unturned",play,0.3,0 -284096202,"Mitos.is The Game",purchase,1.0,0 -284096202,"War Thunder",purchase,1.0,0 -227244326,"Dota 2",purchase,1.0,0 -227244326,"Dota 2",play,2.6,0 -227244326,"Ragnarok Online 2",purchase,1.0,0 -114620302,"Football Manager 2013",purchase,1.0,0 -114620302,"Football Manager 2013",play,7.6,0 -170130950,"Dota 2",purchase,1.0,0 -170130950,"Dota 2",play,142.0,0 -160673726,"Counter-Strike Global Offensive",purchase,1.0,0 -160673726,"Counter-Strike Global Offensive",play,263.0,0 -160673726,"Total War ROME II - Emperor Edition",purchase,1.0,0 -160673726,"Total War ROME II - Emperor Edition",play,98.0,0 -160673726,"Tomb Raider",purchase,1.0,0 -160673726,"Tomb Raider",play,0.6,0 -160673726,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -160673726,"Batman Arkham City GOTY",purchase,1.0,0 -160673726,"Middle-earth Shadow of Mordor",purchase,1.0,0 -275889776,"Team Fortress 2",purchase,1.0,0 -275889776,"Team Fortress 2",play,50.0,0 -286458362,"Dota 2",purchase,1.0,0 -286458362,"Dota 2",play,0.7,0 -260252363,"Dota 2",purchase,1.0,0 -260252363,"Dota 2",play,11.5,0 -207399776,"Brick-Force",purchase,1.0,0 -207399776,"Brick-Force",play,3.2,0 -98624963,"The Elder Scrolls V Skyrim",purchase,1.0,0 -98624963,"The Elder Scrolls V Skyrim",play,1336.0,0 -98624963,"Middle-earth Shadow of Mordor",purchase,1.0,0 -98624963,"Middle-earth Shadow of Mordor",play,103.0,0 -98624963,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -98624963,"Fallout 3 - Game of the Year Edition",play,102.0,0 -98624963,"Fallout 4",purchase,1.0,0 -98624963,"Fallout 4",play,79.0,0 -98624963,"Risen 2 - Dark Waters",purchase,1.0,0 -98624963,"Risen 2 - Dark Waters",play,69.0,0 -98624963,"Wolfenstein The New Order German Edition",purchase,1.0,0 -98624963,"Wolfenstein The New Order German Edition",play,55.0,0 -98624963,"Hitman Absolution",purchase,1.0,0 -98624963,"Hitman Absolution",play,44.0,0 -98624963,"Thief",purchase,1.0,0 -98624963,"Thief",play,38.0,0 -98624963,"Stronghold 3",purchase,1.0,0 -98624963,"Stronghold 3",play,36.0,0 -98624963,"Counter-Strike Global Offensive",purchase,1.0,0 -98624963,"Counter-Strike Global Offensive",play,31.0,0 -98624963,"Call of Duty Ghosts",purchase,1.0,0 -98624963,"Call of Duty Ghosts",play,20.0,0 -98624963,"Mafia II",purchase,1.0,0 -98624963,"Mafia II",play,16.1,0 -98624963,"Sniper Ghost Warrior",purchase,1.0,0 -98624963,"Sniper Ghost Warrior",play,13.3,0 -98624963,"Call of Juarez Gunslinger",purchase,1.0,0 -98624963,"Call of Juarez Gunslinger",play,11.6,0 -98624963,"BRINK",purchase,1.0,0 -98624963,"BRINK",play,10.7,0 -98624963,"Empire Total War",purchase,1.0,0 -98624963,"Empire Total War",play,9.2,0 -98624963,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -98624963,"Resident Evil Revelations / Biohazard Revelations",play,8.5,0 -98624963,"F.E.A.R. 3",purchase,1.0,0 -98624963,"F.E.A.R. 3",play,4.1,0 -98624963,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -98624963,"Call of Duty Ghosts - Multiplayer",play,0.1,0 -98624963,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -98624963,"Stronghold HD",purchase,1.0,0 -98624963,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -98624963,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -8795607,"Borderlands",purchase,1.0,0 -8795607,"Borderlands",play,119.0,0 -8795607,"Borderlands 2",purchase,1.0,0 -8795607,"Borderlands 2",play,70.0,0 -8795607,"Counter-Strike Source",purchase,1.0,0 -8795607,"Counter-Strike Source",play,48.0,0 -8795607,"Portal 2",purchase,1.0,0 -8795607,"Portal 2",play,31.0,0 -8795607,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -8795607,"Burnout Paradise The Ultimate Box",play,9.5,0 -8795607,"Day of Defeat Source",purchase,1.0,0 -8795607,"Day of Defeat Source",play,6.9,0 -8795607,"Half-Life 2 Episode Two",purchase,1.0,0 -8795607,"Half-Life 2 Episode Two",play,6.7,0 -8795607,"Counter-Strike",purchase,1.0,0 -8795607,"Counter-Strike",play,4.2,0 -8795607,"Portal",purchase,1.0,0 -8795607,"Portal",play,4.0,0 -8795607,"Killing Floor",purchase,1.0,0 -8795607,"Killing Floor",play,3.6,0 -8795607,"Team Fortress 2",purchase,1.0,0 -8795607,"Team Fortress 2",play,3.0,0 -8795607,"Half-Life 2",purchase,1.0,0 -8795607,"Half-Life 2",play,1.7,0 -8795607,"Battlefield Bad Company 2",purchase,1.0,0 -8795607,"Battlefield Bad Company 2",play,1.4,0 -8795607,"Audiosurf",purchase,1.0,0 -8795607,"Audiosurf",play,1.2,0 -8795607,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -8795607,"Tropico 3 - Steam Special Edition",play,1.0,0 -8795607,"Mirror's Edge",purchase,1.0,0 -8795607,"Mirror's Edge",play,0.8,0 -8795607,"Half-Life Source",purchase,1.0,0 -8795607,"Half-Life Source",play,0.7,0 -8795607,"Star Wars Starfighter",purchase,1.0,0 -8795607,"Star Wars Starfighter",play,0.6,0 -8795607,"Star Wars - Battlefront II",purchase,1.0,0 -8795607,"Star Wars - Battlefront II",play,0.4,0 -8795607,"BioShock",purchase,1.0,0 -8795607,"BioShock",play,0.3,0 -8795607,"Arma 2 Operation Arrowhead",purchase,1.0,0 -8795607,"Sid Meier's Railroads!",purchase,1.0,0 -8795607,"Arma 2",purchase,1.0,0 -8795607,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -8795607,"BioShock 2",purchase,1.0,0 -8795607,"BioShock Infinite",purchase,1.0,0 -8795607,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -8795607,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -8795607,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -8795607,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -8795607,"Counter-Strike Condition Zero",purchase,1.0,0 -8795607,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -8795607,"Day of Defeat",purchase,1.0,0 -8795607,"Dead Space",purchase,1.0,0 -8795607,"Dead Space 2",purchase,1.0,0 -8795607,"Deathmatch Classic",purchase,1.0,0 -8795607,"Half-Life",purchase,1.0,0 -8795607,"Half-Life 2 Deathmatch",purchase,1.0,0 -8795607,"Half-Life 2 Episode One",purchase,1.0,0 -8795607,"Half-Life 2 Lost Coast",purchase,1.0,0 -8795607,"Half-Life Blue Shift",purchase,1.0,0 -8795607,"Half-Life Opposing Force",purchase,1.0,0 -8795607,"Half-Life Deathmatch Source",purchase,1.0,0 -8795607,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -8795607,"Mass Effect",purchase,1.0,0 -8795607,"Mass Effect 2",purchase,1.0,0 -8795607,"Ricochet",purchase,1.0,0 -8795607,"Team Fortress Classic",purchase,1.0,0 -122679931,"Team Fortress 2",purchase,1.0,0 -122679931,"Team Fortress 2",play,2522.0,0 -122679931,"Don't Starve",purchase,1.0,0 -122679931,"Don't Starve",play,165.0,0 -122679931,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -122679931,"Call of Duty Modern Warfare 3 - Multiplayer",play,58.0,0 -122679931,"Counter-Strike Global Offensive",purchase,1.0,0 -122679931,"Counter-Strike Global Offensive",play,52.0,0 -122679931,"The Elder Scrolls V Skyrim",purchase,1.0,0 -122679931,"The Elder Scrolls V Skyrim",play,45.0,0 -122679931,"Call of Duty Modern Warfare 3",purchase,1.0,0 -122679931,"Call of Duty Modern Warfare 3",play,31.0,0 -122679931,"Rust",purchase,1.0,0 -122679931,"Rust",play,29.0,0 -122679931,"Poker Night at the Inventory",purchase,1.0,0 -122679931,"Poker Night at the Inventory",play,27.0,0 -122679931,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -122679931,"Resident Evil 5 / Biohazard 5",play,26.0,0 -122679931,"Unturned",purchase,1.0,0 -122679931,"Unturned",play,24.0,0 -122679931,"The Binding of Isaac Rebirth",purchase,1.0,0 -122679931,"The Binding of Isaac Rebirth",play,23.0,0 -122679931,"Portal 2",purchase,1.0,0 -122679931,"Portal 2",play,22.0,0 -122679931,"MicroVolts Surge",purchase,1.0,0 -122679931,"MicroVolts Surge",play,18.6,0 -122679931,"Realm of the Mad God",purchase,1.0,0 -122679931,"Realm of the Mad God",play,12.8,0 -122679931,"Ace of Spades",purchase,1.0,0 -122679931,"Ace of Spades",play,11.1,0 -122679931,"AdVenture Capitalist",purchase,1.0,0 -122679931,"AdVenture Capitalist",play,10.3,0 -122679931,"Scribblenauts Unlimited",purchase,1.0,0 -122679931,"Scribblenauts Unlimited",play,9.1,0 -122679931,"Garry's Mod",purchase,1.0,0 -122679931,"Garry's Mod",play,7.2,0 -122679931,"Blacklight Retribution",purchase,1.0,0 -122679931,"Blacklight Retribution",play,6.8,0 -122679931,"POSTAL 2",purchase,1.0,0 -122679931,"POSTAL 2",play,5.2,0 -122679931,"Outlast",purchase,1.0,0 -122679931,"Outlast",play,4.1,0 -122679931,"Battlepaths",purchase,1.0,0 -122679931,"Battlepaths",play,4.0,0 -122679931,"Age of Chivalry",purchase,1.0,0 -122679931,"Age of Chivalry",play,3.5,0 -122679931,"Dirty Bomb",purchase,1.0,0 -122679931,"Dirty Bomb",play,2.6,0 -122679931,"Overture",purchase,1.0,0 -122679931,"Overture",play,2.5,0 -122679931,"Portal Stories Mel",purchase,1.0,0 -122679931,"Portal Stories Mel",play,2.0,0 -122679931,"Poker Night 2",purchase,1.0,0 -122679931,"Poker Night 2",play,1.8,0 -122679931,"Fistful of Frags",purchase,1.0,0 -122679931,"Fistful of Frags",play,1.4,0 -122679931,"Loadout Campaign Beta",purchase,1.0,0 -122679931,"Loadout Campaign Beta",play,1.1,0 -122679931,"Dead Island Epidemic",purchase,1.0,0 -122679931,"Dead Island Epidemic",play,0.7,0 -122679931,"No More Room in Hell",purchase,1.0,0 -122679931,"No More Room in Hell",play,0.7,0 -122679931,"Besiege",purchase,1.0,0 -122679931,"Besiege",play,0.6,0 -122679931,"Cry of Fear",purchase,1.0,0 -122679931,"Cry of Fear",play,0.6,0 -122679931,"Super Crate Box",purchase,1.0,0 -122679931,"Super Crate Box",play,0.5,0 -122679931,"Path of Exile",purchase,1.0,0 -122679931,"Path of Exile",play,0.4,0 -122679931,"Chaos Heroes Online",purchase,1.0,0 -122679931,"Chaos Heroes Online",play,0.4,0 -122679931,"Magicka Wizard Wars",purchase,1.0,0 -122679931,"Magicka Wizard Wars",play,0.4,0 -122679931,"Warframe",purchase,1.0,0 -122679931,"Warframe",play,0.4,0 -122679931,"Only If",purchase,1.0,0 -122679931,"Only If",play,0.4,0 -122679931,"HAWKEN",purchase,1.0,0 -122679931,"HAWKEN",play,0.3,0 -122679931,"Gotham City Impostors Free To Play",purchase,1.0,0 -122679931,"Gotham City Impostors Free To Play",play,0.3,0 -122679931,"Robocraft",purchase,1.0,0 -122679931,"Robocraft",play,0.2,0 -122679931,"Haunted Memories",purchase,1.0,0 -122679931,"Haunted Memories",play,0.1,0 -122679931,"Magic Barrage - Bitferno",purchase,1.0,0 -122679931,"Don't Starve Together Beta",purchase,1.0,0 -122679931,"Arma 2 Free",purchase,1.0,0 -122679931,"Brawlhalla",purchase,1.0,0 -122679931,"Killing Floor Uncovered",purchase,1.0,0 -122679931,"Survarium",purchase,1.0,0 -122679931,"Among Ripples",purchase,1.0,0 -122679931,"Dizzel",purchase,1.0,0 -122679931,"Elsword",purchase,1.0,0 -181476633,"Max Payne 3",purchase,1.0,0 -181476633,"Max Payne 3",play,11.2,0 -181476633,"Max Payne 3 Season Pass",purchase,1.0,0 -204176632,"Dota 2",purchase,1.0,0 -204176632,"Dota 2",play,0.4,0 -127461743,"Grand Theft Auto V",purchase,1.0,0 -127461743,"Grand Theft Auto V",play,177.0,0 -127461743,"Trove",purchase,1.0,0 -127461743,"Trove",play,65.0,0 -127461743,"Just Cause 2",purchase,1.0,0 -127461743,"Just Cause 2",play,51.0,0 -127461743,"Blacklight Retribution",purchase,1.0,0 -127461743,"Blacklight Retribution",play,13.0,0 -127461743,"Warface",purchase,1.0,0 -127461743,"Warface",play,1.5,0 -127461743,"Realm of the Mad God",purchase,1.0,0 -127461743,"Realm of the Mad God",play,0.8,0 -127461743,"Nosgoth",purchase,1.0,0 -127461743,"Nosgoth",play,0.1,0 -127461743,"Dungeon Defenders II",purchase,1.0,0 -127461743,"Unturned",purchase,1.0,0 -83168693,"Team Fortress 2",purchase,1.0,0 -83168693,"Team Fortress 2",play,137.0,0 -83168693,"Left 4 Dead",purchase,1.0,0 -83168693,"Left 4 Dead",play,5.5,0 -83168693,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -83168693,"Batman Arkham Asylum GOTY Edition",play,4.1,0 -83168693,"Left 4 Dead 2",purchase,1.0,0 -83168693,"Left 4 Dead 2",play,2.3,0 -83168693,"Transformers War for Cybertron",purchase,1.0,0 -83168693,"Transformers War for Cybertron",play,0.5,0 -183337134,"Fallout 4",purchase,1.0,0 -183337134,"Fallout 4",play,183.0,0 -183337134,"The Witcher 3 Wild Hunt",purchase,1.0,0 -183337134,"The Witcher 3 Wild Hunt",play,158.0,0 -183337134,"Divinity Original Sin",purchase,1.0,0 -183337134,"Divinity Original Sin",play,88.0,0 -183337134,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -183337134,"The Witcher 2 Assassins of Kings Enhanced Edition",play,64.0,0 -183337134,"Terraria",purchase,1.0,0 -183337134,"Terraria",play,58.0,0 -183337134,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -183337134,"STAR WARS Knights of the Old Republic II The Sith Lords",play,22.0,0 -183337134,"GameMaker Studio",purchase,1.0,0 -183337134,"GameMaker Studio",play,21.0,0 -183337134,"Starbound",purchase,1.0,0 -183337134,"Starbound",play,18.9,0 -183337134,"Pillars of Eternity",purchase,1.0,0 -183337134,"Pillars of Eternity",play,15.0,0 -183337134,"Fallout 2",purchase,1.0,0 -183337134,"Fallout 2",play,12.3,0 -183337134,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -183337134,"Divinity Original Sin Enhanced Edition",play,12.1,0 -183337134,"Survivalist",purchase,1.0,0 -183337134,"Survivalist",play,1.0,0 -183337134,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -183337134,"Fallout 3 - Game of the Year Edition",play,0.7,0 -183337134,"Starbound - Unstable",purchase,1.0,0 -183337134,"The Witcher 3 Wild Hunt - Expansion Pass",purchase,1.0,0 -183337134,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -49584661,"Dota 2",purchase,1.0,0 -49584661,"Dota 2",play,15.0,0 -252071568,"Dota 2",purchase,1.0,0 -252071568,"Dota 2",play,66.0,0 -252071568,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -258337261,"Dota 2",purchase,1.0,0 -258337261,"Dota 2",play,17.0,0 -307389446,"Trove",purchase,1.0,0 -278315524,"Trove",purchase,1.0,0 -114632006,"Dota 2",purchase,1.0,0 -114632006,"Dota 2",play,1944.0,0 -114632006,"Counter-Strike",purchase,1.0,0 -114632006,"Counter-Strike",play,733.0,0 -114632006,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -114632006,"Tom Clancy's Ghost Recon Phantoms - EU",play,5.9,0 -114632006,"Loadout",purchase,1.0,0 -114632006,"Loadout",play,5.8,0 -114632006,"Dizzel",purchase,1.0,0 -114632006,"Dizzel",play,5.5,0 -114632006,"APB Reloaded",purchase,1.0,0 -114632006,"APB Reloaded",play,1.5,0 -114632006,"Heroes & Generals",purchase,1.0,0 -114632006,"Heroes & Generals",play,0.4,0 -114632006,"RaceRoom Racing Experience ",purchase,1.0,0 -114632006,"RaceRoom Racing Experience ",play,0.2,0 -114632006,"Rise of Incarnates",purchase,1.0,0 -114632006,"America's Army Proving Grounds",purchase,1.0,0 -114632006,"Black Fire",purchase,1.0,0 -114632006,"Counter-Strike Condition Zero",purchase,1.0,0 -114632006,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -114632006,"Marvel Heroes 2015",purchase,1.0,0 -114632006,"War Thunder",purchase,1.0,0 -256927813,"Team Fortress 2",purchase,1.0,0 -256927813,"Team Fortress 2",play,3.6,0 -256927813,"Skyborn",purchase,1.0,0 -256927813,"Dungeonland",purchase,1.0,0 -33071192,"Counter-Strike Source",purchase,1.0,0 -33071192,"Counter-Strike Source",play,4.7,0 -33071192,"Team Fortress 2",purchase,1.0,0 -33071192,"Team Fortress 2",play,3.4,0 -33071192,"Half-Life 2 Episode Two",purchase,1.0,0 -33071192,"Half-Life 2 Episode Two",play,3.0,0 -33071192,"Left 4 Dead",purchase,1.0,0 -33071192,"Left 4 Dead",play,1.6,0 -33071192,"Counter-Strike",purchase,1.0,0 -33071192,"Counter-Strike",play,1.6,0 -33071192,"Empire Total War",purchase,1.0,0 -33071192,"Empire Total War",play,0.9,0 -33071192,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -33071192,"F.E.A.R. 2 Project Origin",play,0.5,0 -33071192,"Counter-Strike Condition Zero",purchase,1.0,0 -33071192,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -33071192,"Portal",purchase,1.0,0 -188386352,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -188386352,"Infinity Wars - Animated Trading Card Game",play,14.0,0 -188386352,"The Bureau XCOM Declassified",purchase,1.0,0 -188386352,"The Bureau XCOM Declassified",play,5.9,0 -188386352,"Magicka Wizard Wars",purchase,1.0,0 -188386352,"Magicka Wizard Wars",play,2.3,0 -188386352,"Path of Exile",purchase,1.0,0 -188386352,"Path of Exile",play,2.1,0 -188386352,"Loadout",purchase,1.0,0 -188386352,"Robocraft",purchase,1.0,0 -293303005,"All Is Dust",purchase,1.0,0 -293303005,"All Is Dust",play,5.1,0 -293303005,"Block N Load",purchase,1.0,0 -293303005,"Block N Load",play,4.3,0 -293303005,"Dungeonland",purchase,1.0,0 -293303005,"Dungeonland",play,3.7,0 -293303005,"Trove",purchase,1.0,0 -293303005,"Trove",play,1.1,0 -293303005,"FreeStyle2 Street Basketball",purchase,1.0,0 -293303005,"FreeStyle2 Street Basketball",play,0.7,0 -293303005,"WARMODE",purchase,1.0,0 -293303005,"Dead Island Epidemic",purchase,1.0,0 -184556544,"Unturned",purchase,1.0,0 -184556544,"Unturned",play,24.0,0 -161777161,"Dota 2",purchase,1.0,0 -161777161,"Dota 2",play,30.0,0 -96781711,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -96781711,"Call of Duty Modern Warfare 2 - Multiplayer",play,22.0,0 -96781711,"Call of Duty Modern Warfare 2",purchase,1.0,0 -96781711,"Call of Duty Modern Warfare 2",play,4.2,0 -277557242,"ARK Survival Evolved",purchase,1.0,0 -277557242,"ARK Survival Evolved",play,7.3,0 -161615012,"Football Manager 2009",purchase,1.0,0 -161615012,"Football Manager 2009",play,2.8,0 -149194171,"Dota 2",purchase,1.0,0 -149194171,"Dota 2",play,79.0,0 -164059206,"DayZ",purchase,1.0,0 -164059206,"DayZ",play,0.4,0 -177441119,"Dota 2",purchase,1.0,0 -177441119,"Dota 2",play,180.0,0 -209013836,"Dizzel",purchase,1.0,0 -110304598,"Team Fortress 2",purchase,1.0,0 -110304598,"Team Fortress 2",play,0.8,0 -193136822,"Unturned",purchase,1.0,0 -193136822,"Unturned",play,9.2,0 -223064225,"Heroes & Generals",purchase,1.0,0 -223064225,"Heroes & Generals",play,160.0,0 -223064225,"Garry's Mod",purchase,1.0,0 -223064225,"Garry's Mod",play,109.0,0 -223064225,"War Thunder",purchase,1.0,0 -223064225,"War Thunder",play,38.0,0 -223064225,"Team Fortress 2",purchase,1.0,0 -223064225,"Team Fortress 2",play,35.0,0 -223064225,"Goat Simulator",purchase,1.0,0 -223064225,"Goat Simulator",play,33.0,0 -223064225,"BeamNG.drive",purchase,1.0,0 -223064225,"BeamNG.drive",play,25.0,0 -223064225,"Unturned",purchase,1.0,0 -223064225,"Unturned",play,7.9,0 -223064225,"I am Bread",purchase,1.0,0 -223064225,"I am Bread",play,6.1,0 -223064225,"Robocraft",purchase,1.0,0 -223064225,"Robocraft",play,4.6,0 -223064225,"UberStrike",purchase,1.0,0 -223064225,"UberStrike",play,2.2,0 -223064225,"Red Crucible Firestorm",purchase,1.0,0 -223064225,"Red Crucible Firestorm",play,2.1,0 -223064225,"Counter-Strike Nexon Zombies",purchase,1.0,0 -223064225,"Counter-Strike Nexon Zombies",play,0.3,0 -223064225,"theHunter",purchase,1.0,0 -223064225,"theHunter",play,0.2,0 -223064225,"Copa Petrobras de Marcas",purchase,1.0,0 -223064225,"Copa Petrobras de Marcas",play,0.1,0 -223064225,"Dungeonland",purchase,1.0,0 -223064225,"RaceRoom Racing Experience ",purchase,1.0,0 -201634197,"Dota 2",purchase,1.0,0 -201634197,"Dota 2",play,0.7,0 -233013810,"Team Fortress 2",purchase,1.0,0 -233013810,"Team Fortress 2",play,0.3,0 -218339090,"Counter-Strike Nexon Zombies",purchase,1.0,0 -218339090,"Counter-Strike Nexon Zombies",play,6.6,0 -218339090,"Unturned",purchase,1.0,0 -199973616,"Dota 2",purchase,1.0,0 -199973616,"Dota 2",play,3.3,0 -107475554,"Team Fortress 2",purchase,1.0,0 -107475554,"Team Fortress 2",play,8.5,0 -60343142,"Counter-Strike Condition Zero",purchase,1.0,0 -60343142,"Counter-Strike Condition Zero",play,232.0,0 -60343142,"Counter-Strike",purchase,1.0,0 -60343142,"Counter-Strike",play,174.0,0 -60343142,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -60343142,"Counter-Strike Condition Zero Deleted Scenes",play,47.0,0 -60343142,"Counter-Strike Global Offensive",purchase,1.0,0 -60343142,"Counter-Strike Global Offensive",play,3.2,0 -60343142,"Day of Defeat",purchase,1.0,0 -60343142,"Day of Defeat",play,1.1,0 -60343142,"Metro 2033",purchase,1.0,0 -60343142,"Metro 2033",play,0.4,0 -60343142,"Deathmatch Classic",purchase,1.0,0 -60343142,"Deathmatch Classic",play,0.2,0 -60343142,"Ricochet",purchase,1.0,0 -124570576,"Dota 2",purchase,1.0,0 -124570576,"Dota 2",play,5.3,0 -91716452,"Empire Total War",purchase,1.0,0 -91716452,"Empire Total War",play,11.3,0 -135957644,"Team Fortress 2",purchase,1.0,0 -135957644,"Team Fortress 2",play,1.0,0 -162076421,"Dota 2",purchase,1.0,0 -162076421,"Dota 2",play,1610.0,0 -162076421,"World of Guns Gun Disassembly",purchase,1.0,0 -162076421,"World of Guns Gun Disassembly",play,196.0,0 -162076421,"Gear Up",purchase,1.0,0 -162076421,"Gear Up",play,103.0,0 -162076421,"Ori and the Blind Forest",purchase,1.0,0 -162076421,"Ori and the Blind Forest",play,16.9,0 -162076421,"Strife",purchase,1.0,0 -162076421,"Strife",play,10.2,0 -162076421,"Counter-Strike Global Offensive",purchase,1.0,0 -162076421,"Counter-Strike Global Offensive",play,10.1,0 -162076421,"12 Labours of Hercules II The Cretan Bull",purchase,1.0,0 -162076421,"12 Labours of Hercules II The Cretan Bull",play,1.9,0 -162076421,"The Mighty Quest For Epic Loot",purchase,1.0,0 -162076421,"The Mighty Quest For Epic Loot",play,0.8,0 -162076421,"TERA",purchase,1.0,0 -162076421,"TERA",play,0.7,0 -162076421,"Team Fortress 2",purchase,1.0,0 -162076421,"Team Fortress 2",play,0.6,0 -162076421,"Chaos Heroes Online",purchase,1.0,0 -162076421,"Chaos Heroes Online",play,0.4,0 -162076421,"Kingdoms CCG",purchase,1.0,0 -162076421,"Kingdoms CCG",play,0.3,0 -162076421,"Kings Bounty Legions",purchase,1.0,0 -162076421,"Kings Bounty Legions",play,0.2,0 -162076421,"Darksiders II",purchase,1.0,0 -162076421,"Kung Fury",purchase,1.0,0 -162076421,"Pillars of Eternity",purchase,1.0,0 -150538933,"Dota 2",purchase,1.0,0 -150538933,"Dota 2",play,462.0,0 -199255181,"Dota 2",purchase,1.0,0 -199255181,"Dota 2",play,12.5,0 -202818659,"Pro Evolution Soccer 2015",purchase,1.0,0 -202818659,"Pro Evolution Soccer 2015",play,147.0,0 -289244540,"Dota 2",purchase,1.0,0 -289244540,"Dota 2",play,187.0,0 -289244540,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -289244540,"Tom Clancy's Ghost Recon Phantoms - EU",play,66.0,0 -289244540,"Dungeon Defenders II",purchase,1.0,0 -289244540,"Dungeon Defenders II",play,2.5,0 -289244540,"Unturned",purchase,1.0,0 -289244540,"Unturned",play,1.8,0 -289244540,"WARMODE",purchase,1.0,0 -289244540,"WARMODE",play,1.7,0 -289244540,"Team Fortress 2",purchase,1.0,0 -289244540,"Team Fortress 2",play,1.7,0 -289244540,"Loadout",purchase,1.0,0 -289244540,"Loadout",play,1.6,0 -289244540,"Mitos.is The Game",purchase,1.0,0 -289244540,"Mitos.is The Game",play,1.0,0 -289244540,"Dirty Bomb",purchase,1.0,0 -289244540,"Dirty Bomb",play,0.5,0 -289244540,"HAWKEN",purchase,1.0,0 -289244540,"HAWKEN",play,0.5,0 -289244540,"Warframe",purchase,1.0,0 -289244540,"AdVenture Capitalist",purchase,1.0,0 -289244540,"Half-Life 2 Update",purchase,1.0,0 -289244540,"Survarium",purchase,1.0,0 -289244540,"sZone-Online",purchase,1.0,0 -289244540,"Time Clickers",purchase,1.0,0 -65342306,"Team Fortress 2",purchase,1.0,0 -65342306,"Team Fortress 2",play,170.0,0 -65342306,"Dota 2",purchase,1.0,0 -65342306,"Dota 2",play,83.0,0 -65342306,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -65342306,"Dark Souls Prepare to Die Edition",play,77.0,0 -65342306,"Dungeon Defenders",purchase,1.0,0 -65342306,"Dungeon Defenders",play,69.0,0 -65342306,"Orcs Must Die!",purchase,1.0,0 -65342306,"Orcs Must Die!",play,59.0,0 -65342306,"Torchlight II",purchase,1.0,0 -65342306,"Torchlight II",play,50.0,0 -65342306,"Borderlands 2",purchase,1.0,0 -65342306,"Borderlands 2",play,49.0,0 -65342306,"Spelunky",purchase,1.0,0 -65342306,"Spelunky",play,45.0,0 -65342306,"Darksiders II",purchase,1.0,0 -65342306,"Darksiders II",play,36.0,0 -65342306,"FINAL FANTASY III",purchase,1.0,0 -65342306,"FINAL FANTASY III",play,31.0,0 -65342306,"FINAL FANTASY VII",purchase,1.0,0 -65342306,"FINAL FANTASY VII",play,26.0,0 -65342306,"South Park The Stick of Truth",purchase,1.0,0 -65342306,"South Park The Stick of Truth",play,24.0,0 -65342306,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -65342306,"Plants vs. Zombies Game of the Year",play,18.3,0 -65342306,"Orcs Must Die! 2",purchase,1.0,0 -65342306,"Orcs Must Die! 2",play,18.1,0 -65342306,"Warframe",purchase,1.0,0 -65342306,"Warframe",play,17.6,0 -65342306,"Age of Empires III Complete Collection",purchase,1.0,0 -65342306,"Age of Empires III Complete Collection",play,16.8,0 -65342306,"The Mighty Quest For Epic Loot",purchase,1.0,0 -65342306,"The Mighty Quest For Epic Loot",play,14.0,0 -65342306,"Alien Swarm",purchase,1.0,0 -65342306,"Alien Swarm",play,13.3,0 -65342306,"Castlevania Lords of Shadow - Ultimate Edition",purchase,1.0,0 -65342306,"Castlevania Lords of Shadow - Ultimate Edition",play,13.2,0 -65342306,"Skullgirls Endless Beta",purchase,1.0,0 -65342306,"Skullgirls Endless Beta",play,11.1,0 -65342306,"Deadpool",purchase,1.0,0 -65342306,"Deadpool",play,10.6,0 -65342306,"Castle In The Darkness",purchase,1.0,0 -65342306,"Castle In The Darkness",play,10.6,0 -65342306,"Gauntlet ",purchase,1.0,0 -65342306,"Gauntlet ",play,9.5,0 -65342306,"Portal",purchase,1.0,0 -65342306,"Portal",play,9.4,0 -65342306,"Alice Madness Returns",purchase,1.0,0 -65342306,"Alice Madness Returns",play,7.4,0 -65342306,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -65342306,"THE KING OF FIGHTERS XIII STEAM EDITION",play,7.0,0 -65342306,"Shovel Knight",purchase,1.0,0 -65342306,"Shovel Knight",play,6.8,0 -65342306,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -65342306,"RollerCoaster Tycoon 3 Platinum!",play,6.5,0 -65342306,"Cave Story+",purchase,1.0,0 -65342306,"Cave Story+",play,5.6,0 -65342306,"Capsized",purchase,1.0,0 -65342306,"Capsized",play,5.0,0 -65342306,"Angry Video Game Nerd Adventures",purchase,1.0,0 -65342306,"Angry Video Game Nerd Adventures",play,3.0,0 -65342306,"Strider",purchase,1.0,0 -65342306,"Strider",play,2.5,0 -65342306,"Path of Exile",purchase,1.0,0 -65342306,"Path of Exile",play,2.3,0 -65342306,"Portal 2",purchase,1.0,0 -65342306,"Portal 2",play,1.8,0 -65342306,"Magicka",purchase,1.0,0 -65342306,"Magicka",play,1.5,0 -65342306,"METAL SLUG 3",purchase,1.0,0 -65342306,"METAL SLUG 3",play,1.4,0 -65342306,"Blocks That Matter",purchase,1.0,0 -65342306,"Blocks That Matter",play,1.3,0 -65342306,"Deadly 30",purchase,1.0,0 -65342306,"Deadly 30",play,1.2,0 -65342306,"Forge",purchase,1.0,0 -65342306,"Forge",play,1.0,0 -65342306,"Hammerwatch",purchase,1.0,0 -65342306,"Hammerwatch",play,0.8,0 -65342306,"Skullgirls",purchase,1.0,0 -65342306,"Skullgirls",play,0.7,0 -65342306,"The Incredible Adventures of Van Helsing II",purchase,1.0,0 -65342306,"The Incredible Adventures of Van Helsing II",play,0.6,0 -65342306,"Tower Wars",purchase,1.0,0 -65342306,"Tower Wars",play,0.6,0 -65342306,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -65342306,"The Incredible Adventures of Van Helsing",play,0.6,0 -65342306,"Akaneiro Demon Hunters",purchase,1.0,0 -65342306,"Akaneiro Demon Hunters",play,0.4,0 -65342306,"Loadout",purchase,1.0,0 -65342306,"Loadout",play,0.4,0 -65342306,"Second Chance Heroes",purchase,1.0,0 -65342306,"Second Chance Heroes",play,0.3,0 -65342306,"ORION Prelude",purchase,1.0,0 -65342306,"Terraria",purchase,1.0,0 -65342306,"Akaneiro Early Access Starter Pack",purchase,1.0,0 -65342306,"Chunk of Change Knight",purchase,1.0,0 -65342306,"Crusader Kings II",purchase,1.0,0 -65342306,"Darksiders",purchase,1.0,0 -65342306,"Deadlight",purchase,1.0,0 -65342306,"Deadlight Original Soundtrack",purchase,1.0,0 -65342306,"FINAL FANTASY VIII",purchase,1.0,0 -65342306,"FORCED",purchase,1.0,0 -65342306,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -65342306,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -57319696,"Saints Row 2",purchase,1.0,0 -57319696,"Saints Row 2",play,96.0,0 -303669225,"Eternal Fate",purchase,1.0,0 -47021871,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -47021871,"F.E.A.R. 2 Project Origin",play,4.8,0 -183595009,"Unturned",purchase,1.0,0 -110906645,"Counter-Strike Global Offensive",purchase,1.0,0 -110906645,"Counter-Strike Global Offensive",play,866.0,0 -110906645,"Grand Theft Auto V",purchase,1.0,0 -110906645,"Grand Theft Auto V",play,297.0,0 -110906645,"Unturned",purchase,1.0,0 -110906645,"Unturned",play,162.0,0 -110906645,"The Elder Scrolls V Skyrim",purchase,1.0,0 -110906645,"The Elder Scrolls V Skyrim",play,104.0,0 -110906645,"PAYDAY 2",purchase,1.0,0 -110906645,"PAYDAY 2",play,92.0,0 -110906645,"Dead Island",purchase,1.0,0 -110906645,"Dead Island",play,78.0,0 -110906645,"Arma 2 Operation Arrowhead",purchase,1.0,0 -110906645,"Arma 2 Operation Arrowhead",play,47.0,0 -110906645,"Dying Light",purchase,1.0,0 -110906645,"Dying Light",play,45.0,0 -110906645,"Saints Row The Third",purchase,1.0,0 -110906645,"Saints Row The Third",play,42.0,0 -110906645,"Tactical Intervention",purchase,1.0,0 -110906645,"Tactical Intervention",play,39.0,0 -110906645,"Grand Theft Auto IV",purchase,1.0,0 -110906645,"Grand Theft Auto IV",play,36.0,0 -110906645,"Far Cry 3",purchase,1.0,0 -110906645,"Far Cry 3",play,34.0,0 -110906645,"Garry's Mod",purchase,1.0,0 -110906645,"Garry's Mod",play,28.0,0 -110906645,"Space Engineers",purchase,1.0,0 -110906645,"Space Engineers",play,28.0,0 -110906645,"PAYDAY The Heist",purchase,1.0,0 -110906645,"PAYDAY The Heist",play,26.0,0 -110906645,"Fallout New Vegas",purchase,1.0,0 -110906645,"Fallout New Vegas",play,24.0,0 -110906645,"Trove",purchase,1.0,0 -110906645,"Trove",play,21.0,0 -110906645,"Left 4 Dead 2",purchase,1.0,0 -110906645,"Left 4 Dead 2",play,19.6,0 -110906645,"Dead Rising 2",purchase,1.0,0 -110906645,"Dead Rising 2",play,17.4,0 -110906645,"The Forest",purchase,1.0,0 -110906645,"The Forest",play,15.6,0 -110906645,"Dead Island Epidemic",purchase,1.0,0 -110906645,"Dead Island Epidemic",play,11.0,0 -110906645,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -110906645,"Just Cause 2 Multiplayer Mod",play,10.1,0 -110906645,"No More Room in Hell",purchase,1.0,0 -110906645,"No More Room in Hell",play,9.4,0 -110906645,"Dead Island Riptide",purchase,1.0,0 -110906645,"Dead Island Riptide",play,9.0,0 -110906645,"Heroes & Generals",purchase,1.0,0 -110906645,"Heroes & Generals",play,8.9,0 -110906645,"Call of Duty Modern Warfare 2",purchase,1.0,0 -110906645,"Call of Duty Modern Warfare 2",play,7.7,0 -110906645,"Fallout 4",purchase,1.0,0 -110906645,"Fallout 4",play,7.6,0 -110906645,"sZone-Online",purchase,1.0,0 -110906645,"sZone-Online",play,6.7,0 -110906645,"Team Fortress 2",purchase,1.0,0 -110906645,"Team Fortress 2",play,5.3,0 -110906645,"Call of Duty Black Ops",purchase,1.0,0 -110906645,"Call of Duty Black Ops",play,4.6,0 -110906645,"Insurgency",purchase,1.0,0 -110906645,"Insurgency",play,4.2,0 -110906645,"Metro Last Light Redux",purchase,1.0,0 -110906645,"Metro Last Light Redux",play,3.7,0 -110906645,"Mount Your Friends",purchase,1.0,0 -110906645,"Mount Your Friends",play,3.6,0 -110906645,"Magicka Wizard Wars",purchase,1.0,0 -110906645,"Magicka Wizard Wars",play,2.6,0 -110906645,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -110906645,"Call of Duty Modern Warfare 2 - Multiplayer",play,2.5,0 -110906645,"BattleBlock Theater",purchase,1.0,0 -110906645,"BattleBlock Theater",play,2.4,0 -110906645,"Turbo Dismount",purchase,1.0,0 -110906645,"Turbo Dismount",play,1.8,0 -110906645,"Test Drive Unlimited 2",purchase,1.0,0 -110906645,"Test Drive Unlimited 2",play,1.7,0 -110906645,"Codename CURE",purchase,1.0,0 -110906645,"Codename CURE",play,1.4,0 -110906645,"Weapons Genius",purchase,1.0,0 -110906645,"Weapons Genius",play,1.4,0 -110906645,"Mortal Kombat Komplete Edition",purchase,1.0,0 -110906645,"Mortal Kombat Komplete Edition",play,1.4,0 -110906645,"Arma 2",purchase,1.0,0 -110906645,"Arma 2",play,1.2,0 -110906645,"Polarity",purchase,1.0,0 -110906645,"Polarity",play,0.5,0 -110906645,"Dirty Bomb",purchase,1.0,0 -110906645,"Dirty Bomb",play,0.5,0 -110906645,"Five Nights at Freddy's 2",purchase,1.0,0 -110906645,"Five Nights at Freddy's 2",play,0.3,0 -110906645,"Vertiginous Golf",purchase,1.0,0 -110906645,"Vertiginous Golf",play,0.2,0 -110906645,"Arma 2 DayZ Mod",purchase,1.0,0 -110906645,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -110906645,"Just Cause 2",purchase,1.0,0 -110906645,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -110906645,"Firefall",purchase,1.0,0 -110906645,"Grand Theft Auto San Andreas",purchase,1.0,0 -110906645,"Grand Theft Auto San Andreas",purchase,1.0,0 -110906645,"HIT",purchase,1.0,0 -110906645,"Kung Fury",purchase,1.0,0 -110906645,"PAYDAY Wolf Pack",purchase,1.0,0 -110906645,"Robocraft",purchase,1.0,0 -110906645,"Run and Fire",purchase,1.0,0 -110906645,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -110906645,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -110906645,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -110906645,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -110906645,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -110906645,"Warframe",purchase,1.0,0 -101725007,"Starbound",purchase,1.0,0 -101725007,"Starbound",play,285.0,0 -101725007,"Counter-Strike Global Offensive",purchase,1.0,0 -101725007,"Counter-Strike Global Offensive",play,152.0,0 -101725007,"ARK Survival Evolved",purchase,1.0,0 -101725007,"ARK Survival Evolved",play,110.0,0 -101725007,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -101725007,"Tom Clancy's Ghost Recon Phantoms - EU",play,106.0,0 -101725007,"Rust",purchase,1.0,0 -101725007,"Rust",play,53.0,0 -101725007,"Team Fortress 2",purchase,1.0,0 -101725007,"Team Fortress 2",play,41.0,0 -101725007,"Dota 2",purchase,1.0,0 -101725007,"Dota 2",play,31.0,0 -101725007,"EVE Online",purchase,1.0,0 -101725007,"EVE Online",play,24.0,0 -101725007,"PAYDAY 2",purchase,1.0,0 -101725007,"PAYDAY 2",play,11.3,0 -101725007,"Nether",purchase,1.0,0 -101725007,"Nether",play,10.9,0 -101725007,"Anno 2070",purchase,1.0,0 -101725007,"Anno 2070",play,6.4,0 -101725007,"The Forest",purchase,1.0,0 -101725007,"The Forest",play,3.1,0 -101725007,"WAKFU",purchase,1.0,0 -101725007,"WAKFU",play,3.1,0 -101725007,"The Mighty Quest For Epic Loot",purchase,1.0,0 -101725007,"The Mighty Quest For Epic Loot",play,2.9,0 -101725007,"BLOCKADE 3D",purchase,1.0,0 -101725007,"BLOCKADE 3D",play,2.8,0 -101725007,"Garry's Mod",purchase,1.0,0 -101725007,"Garry's Mod",play,2.4,0 -101725007,"Trove",purchase,1.0,0 -101725007,"Trove",play,1.7,0 -101725007,"DayZ",purchase,1.0,0 -101725007,"DayZ",play,1.4,0 -101725007,"FINAL FANTASY XIII",purchase,1.0,0 -101725007,"FINAL FANTASY XIII",play,0.9,0 -101725007,"Unturned",purchase,1.0,0 -101725007,"Unturned",play,0.6,0 -101725007,"The Elder Scrolls V Skyrim",purchase,1.0,0 -101725007,"The Elder Scrolls V Skyrim",play,0.6,0 -101725007,"Magicka",purchase,1.0,0 -101725007,"Magicka",play,0.4,0 -101725007,"Strike Vector",purchase,1.0,0 -101725007,"Strike Vector",play,0.1,0 -101725007,"Quake Live",purchase,1.0,0 -101725007,"Quake Live",play,0.1,0 -101725007,"Grimoire Manastorm",purchase,1.0,0 -101725007,"Starbound - Unstable",purchase,1.0,0 -101725007,"The Elder Scrolls III Morrowind",purchase,1.0,0 -101725007,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -101725007,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -101725007,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -101725007,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -231414706,"Dota 2",purchase,1.0,0 -231414706,"Dota 2",play,3.9,0 -24555705,"Half-Life",purchase,1.0,0 -24555705,"Half-Life Blue Shift",purchase,1.0,0 -24555705,"Half-Life Opposing Force",purchase,1.0,0 -24555705,"Team Fortress Classic",purchase,1.0,0 -206014489,"Age of Empires II HD Edition",purchase,1.0,0 -206014489,"Age of Empires II HD Edition",play,682.0,0 -206014489,"Counter-Strike Condition Zero",purchase,1.0,0 -206014489,"Counter-Strike Condition Zero",play,458.0,0 -206014489,"Serious Sam 3 BFE",purchase,1.0,0 -206014489,"Serious Sam 3 BFE",play,188.0,0 -206014489,"Dead Island Riptide",purchase,1.0,0 -206014489,"Dead Island Riptide",play,113.0,0 -206014489,"Gas Guzzlers Extreme",purchase,1.0,0 -206014489,"Gas Guzzlers Extreme",play,60.0,0 -206014489,"Counter-Strike Global Offensive",purchase,1.0,0 -206014489,"Counter-Strike Global Offensive",play,52.0,0 -206014489,"GRID 2",purchase,1.0,0 -206014489,"GRID 2",play,20.0,0 -206014489,"Ryse Son of Rome",purchase,1.0,0 -206014489,"Ryse Son of Rome",play,19.6,0 -206014489,"Just Cause 2",purchase,1.0,0 -206014489,"Just Cause 2",play,15.3,0 -206014489,"Total War ROME II - Emperor Edition",purchase,1.0,0 -206014489,"Total War ROME II - Emperor Edition",play,13.9,0 -206014489,"Empire Total War",purchase,1.0,0 -206014489,"Empire Total War",play,13.8,0 -206014489,"Middle-earth Shadow of Mordor",purchase,1.0,0 -206014489,"Middle-earth Shadow of Mordor",play,11.0,0 -206014489,"APB Reloaded",purchase,1.0,0 -206014489,"APB Reloaded",play,9.7,0 -206014489,"PAYDAY 2",purchase,1.0,0 -206014489,"PAYDAY 2",play,8.5,0 -206014489,"Rome Total War - Alexander",purchase,1.0,0 -206014489,"Rome Total War - Alexander",play,3.6,0 -206014489,"Sniper Elite 3",purchase,1.0,0 -206014489,"Sniper Elite 3",play,3.3,0 -206014489,"Worms Armageddon",purchase,1.0,0 -206014489,"Worms Armageddon",play,3.3,0 -206014489,"Homefront",purchase,1.0,0 -206014489,"Homefront",play,2.8,0 -206014489,"Wolfenstein The New Order",purchase,1.0,0 -206014489,"Wolfenstein The New Order",play,2.7,0 -206014489,"Left 4 Dead 2",purchase,1.0,0 -206014489,"Left 4 Dead 2",play,2.0,0 -206014489,"Mafia II",purchase,1.0,0 -206014489,"Mafia II",play,1.3,0 -206014489,"Counter-Strike",purchase,1.0,0 -206014489,"Counter-Strike",play,1.1,0 -206014489,"Flatout 3",purchase,1.0,0 -206014489,"Flatout 3",play,0.7,0 -206014489,"Terraria",purchase,1.0,0 -206014489,"Terraria",play,0.6,0 -206014489,"Counter-Strike Nexon Zombies",purchase,1.0,0 -206014489,"Counter-Strike Nexon Zombies",play,0.4,0 -206014489,"America's Army 3",purchase,1.0,0 -206014489,"America's Army 3",play,0.3,0 -206014489,"Dead Island Epidemic",purchase,1.0,0 -206014489,"Dead Island Epidemic",play,0.1,0 -206014489,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -206014489,"Counter-Strike Source",purchase,1.0,0 -206014489,"Age of Empires II HD The Forgotten",purchase,1.0,0 -206014489,"Age of Empires III Complete Collection",purchase,1.0,0 -206014489,"Arma 2",purchase,1.0,0 -206014489,"Arma 2 British Armed Forces",purchase,1.0,0 -206014489,"Arma 2 DayZ Mod",purchase,1.0,0 -206014489,"Arma 2 Operation Arrowhead",purchase,1.0,0 -206014489,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -206014489,"Arma 2 Private Military Company",purchase,1.0,0 -206014489,"Block N Load",purchase,1.0,0 -206014489,"Dead Island",purchase,1.0,0 -206014489,"F.E.A.R. Online",purchase,1.0,0 -206014489,"Left 4 Dead",purchase,1.0,0 -206014489,"PlanetSide 2",purchase,1.0,0 -206014489,"Rome Total War",purchase,1.0,0 -206014489,"The Evil Within",purchase,1.0,0 -206014489,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -206014489,"Warframe",purchase,1.0,0 -27338668,"Counter-Strike Source",purchase,1.0,0 -27338668,"Counter-Strike Source",play,31.0,0 -27338668,"Day of Defeat Source",purchase,1.0,0 -27338668,"Half-Life 2 Deathmatch",purchase,1.0,0 -27338668,"Half-Life 2 Lost Coast",purchase,1.0,0 -135475055,"Serious Sam HD The Second Encounter",purchase,1.0,0 -135475055,"Serious Sam HD The Second Encounter",play,31.0,0 -249996025,"Mafia II",purchase,1.0,0 -196171528,"Heroes & Generals",purchase,1.0,0 -196171528,"Heroes & Generals",play,18.3,0 -196171528,"The Mighty Quest For Epic Loot",purchase,1.0,0 -300938059,"Kingdom",purchase,1.0,0 -300938059,"Kingdom",play,6.3,0 -131217195,"Dota 2",purchase,1.0,0 -131217195,"Dota 2",play,2179.0,0 -20781671,"Counter-Strike",purchase,1.0,0 -20781671,"Counter-Strike Condition Zero",purchase,1.0,0 -20781671,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -156297441,"Fallout New Vegas",purchase,1.0,0 -156297441,"Fallout New Vegas",play,165.0,0 -156297441,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -156297441,"Fallout 3 - Game of the Year Edition",play,116.0,0 -156297441,"Star Wars Republic Commando",purchase,1.0,0 -156297441,"Star Wars Republic Commando",play,15.8,0 -156297441,"Company of Heroes 2",purchase,1.0,0 -156297441,"Company of Heroes 2",play,12.2,0 -156297441,"F.E.A.R.",purchase,1.0,0 -156297441,"F.E.A.R.",play,8.2,0 -156297441,"Company of Heroes (New Steam Version)",purchase,1.0,0 -156297441,"Company of Heroes (New Steam Version)",play,7.0,0 -156297441,"Company of Heroes Opposing Fronts",purchase,1.0,0 -156297441,"Company of Heroes Opposing Fronts",play,0.2,0 -156297441,"F.E.A.R. Extraction Point",purchase,1.0,0 -156297441,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -156297441,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -156297441,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -156297441,"Company of Heroes 2 - Ardennes Assault",purchase,1.0,0 -156297441,"Company of Heroes 2 - The British Forces",purchase,1.0,0 -156297441,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -156297441,"Fallout New Vegas Dead Money",purchase,1.0,0 -156297441,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -43248011,"H1Z1",purchase,1.0,0 -43248011,"H1Z1",play,36.0,0 -43248011,"Counter-Strike Global Offensive",purchase,1.0,0 -43248011,"Counter-Strike Global Offensive",play,1.1,0 -43248011,"PAYDAY 2",purchase,1.0,0 -43248011,"PAYDAY 2",play,1.0,0 -43248011,"Trove",purchase,1.0,0 -43248011,"H1Z1 Test Server",purchase,1.0,0 -164478205,"Dota 2",purchase,1.0,0 -164478205,"Dota 2",play,2046.0,0 -188167163,"Garry's Mod",purchase,1.0,0 -188167163,"Garry's Mod",play,197.0,0 -188167163,"Counter-Strike Source",purchase,1.0,0 -188167163,"Counter-Strike Source",play,72.0,0 -188167163,"Counter-Strike Global Offensive",purchase,1.0,0 -188167163,"Counter-Strike Global Offensive",play,58.0,0 -188167163,"Unturned",purchase,1.0,0 -188167163,"Unturned",play,28.0,0 -188167163,"World of Soccer online",purchase,1.0,0 -188167163,"World of Soccer online",play,0.2,0 -188167163,"Face of Mankind",purchase,1.0,0 -188167163,"Face of Mankind",play,0.1,0 -188167163,"F.E.A.R. Online",purchase,1.0,0 -31500407,"Counter-Strike Global Offensive",purchase,1.0,0 -31500407,"Counter-Strike Global Offensive",play,5.5,0 -31500407,"Serious Sam HD The Second Encounter",purchase,1.0,0 -31500407,"Serious Sam HD The Second Encounter",play,0.3,0 -31500407,"DCS World",purchase,1.0,0 -63595926,"Call of Duty Modern Warfare 2",purchase,1.0,0 -63595926,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -192888880,"Arena Wars 2",purchase,1.0,0 -30440303,"Counter-Strike Global Offensive",purchase,1.0,0 -30440303,"Counter-Strike Global Offensive",play,765.0,0 -30440303,"Team Fortress 2",purchase,1.0,0 -30440303,"Team Fortress 2",play,217.0,0 -30440303,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -30440303,"Call of Duty Modern Warfare 2 - Multiplayer",play,192.0,0 -30440303,"Arma 3",purchase,1.0,0 -30440303,"Arma 3",play,172.0,0 -30440303,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -30440303,"Call of Duty Black Ops - Multiplayer",play,127.0,0 -30440303,"Battlefield Bad Company 2",purchase,1.0,0 -30440303,"Battlefield Bad Company 2",play,105.0,0 -30440303,"DayZ",purchase,1.0,0 -30440303,"DayZ",play,97.0,0 -30440303,"ARK Survival Evolved",purchase,1.0,0 -30440303,"ARK Survival Evolved",play,52.0,0 -30440303,"Rust",purchase,1.0,0 -30440303,"Rust",play,49.0,0 -30440303,"ShootMania Storm",purchase,1.0,0 -30440303,"ShootMania Storm",play,39.0,0 -30440303,"PAYDAY 2",purchase,1.0,0 -30440303,"PAYDAY 2",play,37.0,0 -30440303,"Far Cry 3",purchase,1.0,0 -30440303,"Far Cry 3",play,36.0,0 -30440303,"Borderlands 2",purchase,1.0,0 -30440303,"Borderlands 2",play,34.0,0 -30440303,"Call of Duty Black Ops",purchase,1.0,0 -30440303,"Call of Duty Black Ops",play,33.0,0 -30440303,"Robocraft",purchase,1.0,0 -30440303,"Robocraft",play,30.0,0 -30440303,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -30440303,"Call of Duty Black Ops II - Multiplayer",play,27.0,0 -30440303,"The Forest",purchase,1.0,0 -30440303,"The Forest",play,25.0,0 -30440303,"Call of Duty Modern Warfare 2",purchase,1.0,0 -30440303,"Call of Duty Modern Warfare 2",play,25.0,0 -30440303,"Counter-Strike Source",purchase,1.0,0 -30440303,"Counter-Strike Source",play,24.0,0 -30440303,"The Elder Scrolls V Skyrim",purchase,1.0,0 -30440303,"The Elder Scrolls V Skyrim",play,23.0,0 -30440303,"Banished",purchase,1.0,0 -30440303,"Banished",play,22.0,0 -30440303,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -30440303,"Call of Duty Modern Warfare 3 - Multiplayer",play,21.0,0 -30440303,"Trials Evolution Gold Edition",purchase,1.0,0 -30440303,"Trials Evolution Gold Edition",play,20.0,0 -30440303,"Grand Theft Auto IV",purchase,1.0,0 -30440303,"Grand Theft Auto IV",play,16.2,0 -30440303,"Chivalry Medieval Warfare",purchase,1.0,0 -30440303,"Chivalry Medieval Warfare",play,13.6,0 -30440303,"Zombie Panic Source",purchase,1.0,0 -30440303,"Zombie Panic Source",play,12.9,0 -30440303,"Dead Space",purchase,1.0,0 -30440303,"Dead Space",play,12.7,0 -30440303,"Left 4 Dead 2",purchase,1.0,0 -30440303,"Left 4 Dead 2",play,12.6,0 -30440303,"Left 4 Dead",purchase,1.0,0 -30440303,"Left 4 Dead",play,12.5,0 -30440303,"DiRT 3",purchase,1.0,0 -30440303,"DiRT 3",play,12.4,0 -30440303,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -30440303,"Call of Duty Advanced Warfare - Multiplayer",play,10.2,0 -30440303,"Reign Of Kings",purchase,1.0,0 -30440303,"Reign Of Kings",play,9.8,0 -30440303,"Ace of Spades",purchase,1.0,0 -30440303,"Ace of Spades",play,8.3,0 -30440303,"BioShock Infinite",purchase,1.0,0 -30440303,"BioShock Infinite",play,8.2,0 -30440303,"Half-Life 2",purchase,1.0,0 -30440303,"Half-Life 2",play,8.1,0 -30440303,"Metro Last Light",purchase,1.0,0 -30440303,"Metro Last Light",play,8.0,0 -30440303,"Alan Wake",purchase,1.0,0 -30440303,"Alan Wake",play,7.8,0 -30440303,"Wolfenstein The New Order German Edition",purchase,1.0,0 -30440303,"Wolfenstein The New Order German Edition",play,7.7,0 -30440303,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -30440303,"Call of Duty Black Ops II - Zombies",play,7.2,0 -30440303,"Portal 2",purchase,1.0,0 -30440303,"Portal 2",play,6.8,0 -30440303,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -30440303,"Medal of Honor(TM) Multiplayer",play,6.2,0 -30440303,"Mirror's Edge",purchase,1.0,0 -30440303,"Mirror's Edge",play,5.9,0 -30440303,"7 Days to Die",purchase,1.0,0 -30440303,"7 Days to Die",play,5.4,0 -30440303,"Outlast",purchase,1.0,0 -30440303,"Outlast",play,5.3,0 -30440303,"Metro 2033",purchase,1.0,0 -30440303,"Metro 2033",play,5.2,0 -30440303,"Saints Row The Third",purchase,1.0,0 -30440303,"Saints Row The Third",play,4.5,0 -30440303,"Torchlight II",purchase,1.0,0 -30440303,"Torchlight II",play,4.5,0 -30440303,"Arma 2",purchase,1.0,0 -30440303,"Arma 2",play,4.2,0 -30440303,"The Walking Dead",purchase,1.0,0 -30440303,"The Walking Dead",play,4.2,0 -30440303,"Brothers - A Tale of Two Sons",purchase,1.0,0 -30440303,"Brothers - A Tale of Two Sons",play,4.0,0 -30440303,"F1 2013",purchase,1.0,0 -30440303,"F1 2013",play,3.4,0 -30440303,"Portal",purchase,1.0,0 -30440303,"Portal",play,3.1,0 -30440303,"Euro Truck Simulator 2",purchase,1.0,0 -30440303,"Euro Truck Simulator 2",play,3.0,0 -30440303,"DARK SOULS II",purchase,1.0,0 -30440303,"DARK SOULS II",play,2.9,0 -30440303,"BattleBlock Theater",purchase,1.0,0 -30440303,"BattleBlock Theater",play,2.9,0 -30440303,"The Ship",purchase,1.0,0 -30440303,"The Ship",play,2.7,0 -30440303,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -30440303,"Rising Storm/Red Orchestra 2 Multiplayer",play,2.5,0 -30440303,"Kerbal Space Program",purchase,1.0,0 -30440303,"Kerbal Space Program",play,2.5,0 -30440303,"Day of Defeat Source",purchase,1.0,0 -30440303,"Day of Defeat Source",play,2.5,0 -30440303,"Hotline Miami",purchase,1.0,0 -30440303,"Hotline Miami",play,2.3,0 -30440303,"Call of Duty Modern Warfare 3",purchase,1.0,0 -30440303,"Call of Duty Modern Warfare 3",play,2.3,0 -30440303,"Bridge Constructor",purchase,1.0,0 -30440303,"Bridge Constructor",play,2.2,0 -30440303,"Killing Floor",purchase,1.0,0 -30440303,"Killing Floor",play,2.1,0 -30440303,"Contagion",purchase,1.0,0 -30440303,"Contagion",play,2.1,0 -30440303,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -30440303,"Duke Nukem 3D Megaton Edition",play,2.0,0 -30440303,"Infestation Survivor Stories",purchase,1.0,0 -30440303,"Infestation Survivor Stories",play,1.7,0 -30440303,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -30440303,"Call of Duty 4 Modern Warfare",play,1.7,0 -30440303,"Crysis 2 Maximum Edition",purchase,1.0,0 -30440303,"Crysis 2 Maximum Edition",play,1.4,0 -30440303,"F.E.A.R. 3",purchase,1.0,0 -30440303,"F.E.A.R. 3",play,1.3,0 -30440303,"Don't Starve",purchase,1.0,0 -30440303,"Don't Starve",play,1.3,0 -30440303,"Garry's Mod",purchase,1.0,0 -30440303,"Garry's Mod",play,1.2,0 -30440303,"Don't Starve Together Beta",purchase,1.0,0 -30440303,"Don't Starve Together Beta",play,1.2,0 -30440303,"Tomb Raider",purchase,1.0,0 -30440303,"Tomb Raider",play,1.2,0 -30440303,"Half-Life 2 Deathmatch",purchase,1.0,0 -30440303,"Half-Life 2 Deathmatch",play,1.2,0 -30440303,"Natural Selection 2",purchase,1.0,0 -30440303,"Natural Selection 2",play,1.1,0 -30440303,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -30440303,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,1.1,0 -30440303,"Take On Helicopters",purchase,1.0,0 -30440303,"Take On Helicopters",play,1.0,0 -30440303,"Capsized",purchase,1.0,0 -30440303,"Capsized",play,1.0,0 -30440303,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -30440303,"Max Payne 2 The Fall of Max Payne",play,1.0,0 -30440303,"Dishonored",purchase,1.0,0 -30440303,"Dishonored",play,1.0,0 -30440303,"Call of Duty Black Ops II",purchase,1.0,0 -30440303,"Call of Duty Black Ops II",play,1.0,0 -30440303,"Alien Swarm",purchase,1.0,0 -30440303,"Alien Swarm",play,0.9,0 -30440303,"Just Cause 2",purchase,1.0,0 -30440303,"Just Cause 2",play,0.9,0 -30440303,"Bulletstorm",purchase,1.0,0 -30440303,"Bulletstorm",play,0.9,0 -30440303,"Fallout New Vegas",purchase,1.0,0 -30440303,"Fallout New Vegas",play,0.8,0 -30440303,"Serious Sam HD The Second Encounter",purchase,1.0,0 -30440303,"Serious Sam HD The Second Encounter",play,0.7,0 -30440303,"Half-Life 2 Lost Coast",purchase,1.0,0 -30440303,"Half-Life 2 Lost Coast",play,0.7,0 -30440303,"Super Hexagon",purchase,1.0,0 -30440303,"Super Hexagon",play,0.7,0 -30440303,"Little Inferno",purchase,1.0,0 -30440303,"Little Inferno",play,0.6,0 -30440303,"Stronghold 3",purchase,1.0,0 -30440303,"Stronghold 3",play,0.6,0 -30440303,"Insurgency",purchase,1.0,0 -30440303,"Insurgency",play,0.6,0 -30440303,"Return to Castle Wolfenstein",purchase,1.0,0 -30440303,"Return to Castle Wolfenstein",play,0.6,0 -30440303,"Hector Ep 1",purchase,1.0,0 -30440303,"Hector Ep 1",play,0.5,0 -30440303,"Super Meat Boy",purchase,1.0,0 -30440303,"Super Meat Boy",play,0.5,0 -30440303,"BioShock",purchase,1.0,0 -30440303,"BioShock",play,0.5,0 -30440303,"Arma 2 Operation Arrowhead",purchase,1.0,0 -30440303,"Arma 2 Operation Arrowhead",play,0.4,0 -30440303,"Dota 2",purchase,1.0,0 -30440303,"Dota 2",play,0.4,0 -30440303,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -30440303,"Burnout Paradise The Ultimate Box",play,0.3,0 -30440303,"Star Wars - Battlefront II",purchase,1.0,0 -30440303,"Star Wars - Battlefront II",play,0.3,0 -30440303,"Far Cry 2",purchase,1.0,0 -30440303,"Far Cry 2",play,0.3,0 -30440303,"Unturned",purchase,1.0,0 -30440303,"Unturned",play,0.2,0 -30440303,"Arma 2 DayZ Mod",purchase,1.0,0 -30440303,"Arma 2 DayZ Mod",play,0.2,0 -30440303,"Grand Theft Auto San Andreas",purchase,1.0,0 -30440303,"Grand Theft Auto San Andreas",play,0.2,0 -30440303,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -30440303,"Back to the Future Ep 1 - It's About Time",play,0.2,0 -30440303,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -30440303,"S.T.A.L.K.E.R. Clear Sky",play,0.2,0 -30440303,"Audiosurf",purchase,1.0,0 -30440303,"Audiosurf",play,0.1,0 -30440303,"Surgeon Simulator",purchase,1.0,0 -30440303,"Surgeon Simulator",play,0.1,0 -30440303,"Shadow Warrior Classic Redux",purchase,1.0,0 -30440303,"Shadow Warrior Classic Redux",play,0.1,0 -30440303,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -30440303,"Command and Conquer Red Alert 3 - Uprising",play,0.1,0 -30440303,"Far Cry",purchase,1.0,0 -30440303,"Far Cry",play,0.1,0 -30440303,"Max Payne 3",purchase,1.0,0 -30440303,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -30440303,"Max Payne",purchase,1.0,0 -30440303,"Alan Wake's American Nightmare",purchase,1.0,0 -30440303,"Space Farmers",purchase,1.0,0 -30440303,"The Ship Single Player",purchase,1.0,0 -30440303,"Alpha Prime",purchase,1.0,0 -30440303,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -30440303,"Arma 3 Helicopters",purchase,1.0,0 -30440303,"Arma 3 Karts",purchase,1.0,0 -30440303,"Arma 3 Marksmen",purchase,1.0,0 -30440303,"Arma 3 Zeus",purchase,1.0,0 -30440303,"Arma Gold Edition",purchase,1.0,0 -30440303,"Arma Tactics",purchase,1.0,0 -30440303,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -30440303,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -30440303,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -30440303,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -30440303,"BattleSpace",purchase,1.0,0 -30440303,"BioShock 2",purchase,1.0,0 -30440303,"BLOCKADE 3D",purchase,1.0,0 -30440303,"BloodRealm Battlegrounds",purchase,1.0,0 -30440303,"Brick-Force",purchase,1.0,0 -30440303,"Brtal Legend",purchase,1.0,0 -30440303,"Call of Duty Advanced Warfare",purchase,1.0,0 -30440303,"Chaos Heroes Online",purchase,1.0,0 -30440303,"Counter-Strike",purchase,1.0,0 -30440303,"Counter-Strike Condition Zero",purchase,1.0,0 -30440303,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -30440303,"DiRT 3 Complete Edition",purchase,1.0,0 -30440303,"DiRT Showdown",purchase,1.0,0 -30440303,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -30440303,"Fork Parker's Holiday Profit Hike",purchase,1.0,0 -30440303,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -30440303,"Grand Theft Auto San Andreas",purchase,1.0,0 -30440303,"Grand Theft Auto Vice City",purchase,1.0,0 -30440303,"Grand Theft Auto Vice City",purchase,1.0,0 -30440303,"Grand Theft Auto III",purchase,1.0,0 -30440303,"Grand Theft Auto III",purchase,1.0,0 -30440303,"Half-Life 2 Episode One",purchase,1.0,0 -30440303,"Half-Life 2 Episode Two",purchase,1.0,0 -30440303,"Halo Spartan Assault",purchase,1.0,0 -30440303,"Hector Ep 2",purchase,1.0,0 -30440303,"Hector Ep 3",purchase,1.0,0 -30440303,"Karos",purchase,1.0,0 -30440303,"LIMBO",purchase,1.0,0 -30440303,"Magic Barrage - Bitferno",purchase,1.0,0 -30440303,"Max Payne 3 Season Pass",purchase,1.0,0 -30440303,"Medal of Honor(TM) Single Player",purchase,1.0,0 -30440303,"Medal of Honor Pre-Order",purchase,1.0,0 -30440303,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -30440303,"Operation Flashpoint Red River",purchase,1.0,0 -30440303,"Overlord",purchase,1.0,0 -30440303,"Overlord Raising Hell",purchase,1.0,0 -30440303,"Overlord II",purchase,1.0,0 -30440303,"Patch testing for Chivalry",purchase,1.0,0 -30440303,"Poker Night at the Inventory",purchase,1.0,0 -30440303,"POSTAL 2",purchase,1.0,0 -30440303,"Prison Architect",purchase,1.0,0 -30440303,"Puzzle Agent",purchase,1.0,0 -30440303,"Puzzle Agent 2",purchase,1.0,0 -30440303,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -30440303,"Rise of the Argonauts",purchase,1.0,0 -30440303,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -30440303,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -30440303,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -30440303,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -30440303,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -30440303,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -30440303,"Serious Sam HD The First Encounter",purchase,1.0,0 -30440303,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -30440303,"Sniper Elite V2",purchase,1.0,0 -30440303,"Spartans Vs Zombies Defense",purchase,1.0,0 -30440303,"State of Decay",purchase,1.0,0 -30440303,"sZone-Online",purchase,1.0,0 -30440303,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -30440303,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -30440303,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -30440303,"theHunter",purchase,1.0,0 -30440303,"The Ship Tutorial",purchase,1.0,0 -30440303,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -30440303,"UFO Afterlight",purchase,1.0,0 -30440303,"Wallace & Gromit Ep 1 Fright of the Bumblebees",purchase,1.0,0 -30440303,"Wallace & Gromit Ep 2 The Last Resort",purchase,1.0,0 -30440303,"Wallace & Gromit Ep 3 Muzzled!",purchase,1.0,0 -30440303,"Wallace & Gromit Ep 4 The Bogey Man",purchase,1.0,0 -81537102,"Team Fortress 2",purchase,1.0,0 -81537102,"Team Fortress 2",play,0.3,0 -298950,"Team Fortress 2",purchase,1.0,0 -298950,"Team Fortress 2",play,1019.0,0 -298950,"Counter-Strike Global Offensive",purchase,1.0,0 -298950,"Counter-Strike Global Offensive",play,544.0,0 -298950,"Sid Meier's Civilization V",purchase,1.0,0 -298950,"Sid Meier's Civilization V",play,135.0,0 -298950,"The Elder Scrolls V Skyrim",purchase,1.0,0 -298950,"The Elder Scrolls V Skyrim",play,123.0,0 -298950,"Far Cry 3",purchase,1.0,0 -298950,"Far Cry 3",play,99.0,0 -298950,"Fallout New Vegas",purchase,1.0,0 -298950,"Fallout New Vegas",play,92.0,0 -298950,"The Witcher 3 Wild Hunt",purchase,1.0,0 -298950,"The Witcher 3 Wild Hunt",play,89.0,0 -298950,"Terraria",purchase,1.0,0 -298950,"Terraria",play,86.0,0 -298950,"Fallout 4",purchase,1.0,0 -298950,"Fallout 4",play,82.0,0 -298950,"Borderlands 2",purchase,1.0,0 -298950,"Borderlands 2",play,78.0,0 -298950,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -298950,"DARK SOULS II Scholar of the First Sin",play,74.0,0 -298950,"Endless Legend",purchase,1.0,0 -298950,"Endless Legend",play,66.0,0 -298950,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -298950,"METAL GEAR SOLID V THE PHANTOM PAIN",play,65.0,0 -298950,"Divinity Original Sin",purchase,1.0,0 -298950,"Divinity Original Sin",play,65.0,0 -298950,"DARK SOULS II",purchase,1.0,0 -298950,"DARK SOULS II",play,62.0,0 -298950,"Pillars of Eternity",purchase,1.0,0 -298950,"Pillars of Eternity",play,52.0,0 -298950,"Starbound",purchase,1.0,0 -298950,"Starbound",play,50.0,0 -298950,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -298950,"Dark Souls Prepare to Die Edition",play,49.0,0 -298950,"Rocket League",purchase,1.0,0 -298950,"Rocket League",play,49.0,0 -298950,"ARK Survival Evolved",purchase,1.0,0 -298950,"ARK Survival Evolved",play,41.0,0 -298950,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -298950,"The Witcher 2 Assassins of Kings Enhanced Edition",play,40.0,0 -298950,"Rust",purchase,1.0,0 -298950,"Rust",play,39.0,0 -298950,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -298950,"STAR WARS Knights of the Old Republic II The Sith Lords",play,33.0,0 -298950,"Tropico 4",purchase,1.0,0 -298950,"Tropico 4",play,29.0,0 -298950,"Deus Ex Human Revolution",purchase,1.0,0 -298950,"Deus Ex Human Revolution",play,28.0,0 -298950,"Dishonored",purchase,1.0,0 -298950,"Dishonored",play,27.0,0 -298950,"XCOM Enemy Unknown",purchase,1.0,0 -298950,"XCOM Enemy Unknown",play,25.0,0 -298950,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -298950,"Shadowrun Dragonfall - Director's Cut",play,24.0,0 -298950,"Darksiders II",purchase,1.0,0 -298950,"Darksiders II",play,22.0,0 -298950,"BioShock Infinite",purchase,1.0,0 -298950,"BioShock Infinite",play,21.0,0 -298950,"Legend of Grimrock",purchase,1.0,0 -298950,"Legend of Grimrock",play,19.3,0 -298950,"Dead Island",purchase,1.0,0 -298950,"Dead Island",play,19.2,0 -298950,"Portal 2",purchase,1.0,0 -298950,"Portal 2",play,17.1,0 -298950,"Left 4 Dead 2",purchase,1.0,0 -298950,"Left 4 Dead 2",play,16.3,0 -298950,"Batman Arkham Origins",purchase,1.0,0 -298950,"Batman Arkham Origins",play,15.2,0 -298950,"Mortal Kombat X",purchase,1.0,0 -298950,"Mortal Kombat X",play,14.5,0 -298950,"Hitman Absolution",purchase,1.0,0 -298950,"Hitman Absolution",play,14.3,0 -298950,"7 Days to Die",purchase,1.0,0 -298950,"7 Days to Die",play,14.3,0 -298950,"The Walking Dead",purchase,1.0,0 -298950,"The Walking Dead",play,13.7,0 -298950,"Torchlight II",purchase,1.0,0 -298950,"Torchlight II",play,13.6,0 -298950,"Wasteland 2",purchase,1.0,0 -298950,"Wasteland 2",play,12.9,0 -298950,"Tomb Raider",purchase,1.0,0 -298950,"Tomb Raider",play,12.5,0 -298950,"RAGE",purchase,1.0,0 -298950,"RAGE",play,12.2,0 -298950,"LEGO MARVEL Super Heroes",purchase,1.0,0 -298950,"LEGO MARVEL Super Heroes",play,10.8,0 -298950,"Shadowrun Returns",purchase,1.0,0 -298950,"Shadowrun Returns",play,10.6,0 -298950,"Chivalry Medieval Warfare",purchase,1.0,0 -298950,"Chivalry Medieval Warfare",play,10.2,0 -298950,"Metro Last Light",purchase,1.0,0 -298950,"Metro Last Light",play,9.8,0 -298950,"FTL Faster Than Light",purchase,1.0,0 -298950,"FTL Faster Than Light",play,9.7,0 -298950,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -298950,"Tom Clancy's Splinter Cell Blacklist",play,9.6,0 -298950,"Torchlight",purchase,1.0,0 -298950,"Torchlight",play,9.2,0 -298950,"Orcs Must Die! 2",purchase,1.0,0 -298950,"Orcs Must Die! 2",play,9.2,0 -298950,"Dying Light",purchase,1.0,0 -298950,"Dying Light",play,9.0,0 -298950,"Metro 2033",purchase,1.0,0 -298950,"Metro 2033",play,8.9,0 -298950,"Natural Selection 2",purchase,1.0,0 -298950,"Natural Selection 2",play,8.5,0 -298950,"Warhammer End Times - Vermintide",purchase,1.0,0 -298950,"Warhammer End Times - Vermintide",play,8.3,0 -298950,"Borderlands",purchase,1.0,0 -298950,"Borderlands",play,8.3,0 -298950,"The Wolf Among Us",purchase,1.0,0 -298950,"The Wolf Among Us",play,8.2,0 -298950,"Mark of the Ninja",purchase,1.0,0 -298950,"Mark of the Ninja",play,7.9,0 -298950,"Saints Row The Third",purchase,1.0,0 -298950,"Saints Row The Third",play,7.4,0 -298950,"Amnesia The Dark Descent",purchase,1.0,0 -298950,"Amnesia The Dark Descent",play,7.0,0 -298950,"The Forest",purchase,1.0,0 -298950,"The Forest",play,6.9,0 -298950,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -298950,"Sid Meier's Civilization Beyond Earth",play,6.4,0 -298950,"Rogue Legacy",purchase,1.0,0 -298950,"Rogue Legacy",play,6.4,0 -298950,"Garry's Mod",purchase,1.0,0 -298950,"Garry's Mod",play,6.2,0 -298950,"Killing Floor 2",purchase,1.0,0 -298950,"Killing Floor 2",play,5.9,0 -298950,"Sanctum",purchase,1.0,0 -298950,"Sanctum",play,5.8,0 -298950,"State of Decay",purchase,1.0,0 -298950,"State of Decay",play,5.5,0 -298950,"Dungeons of Dredmor",purchase,1.0,0 -298950,"Dungeons of Dredmor",play,5.4,0 -298950,"Hotline Miami",purchase,1.0,0 -298950,"Hotline Miami",play,4.9,0 -298950,"Armikrog",purchase,1.0,0 -298950,"Armikrog",play,4.7,0 -298950,"Sonic Generations",purchase,1.0,0 -298950,"Sonic Generations",play,4.4,0 -298950,"LEGO Batman 2",purchase,1.0,0 -298950,"LEGO Batman 2",play,4.2,0 -298950,"Machinarium",purchase,1.0,0 -298950,"Machinarium",play,3.8,0 -298950,"Broken Age",purchase,1.0,0 -298950,"Broken Age",play,3.7,0 -298950,"Unturned",purchase,1.0,0 -298950,"Unturned",play,3.5,0 -298950,"Serious Sam 3 BFE",purchase,1.0,0 -298950,"Serious Sam 3 BFE",play,3.5,0 -298950,"The Cave",purchase,1.0,0 -298950,"The Cave",play,3.5,0 -298950,"PAYDAY 2",purchase,1.0,0 -298950,"PAYDAY 2",play,3.4,0 -298950,"Max Payne 3",purchase,1.0,0 -298950,"Max Payne 3",play,3.4,0 -298950,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -298950,"METAL GEAR SOLID V GROUND ZEROES",play,3.2,0 -298950,"Brothers - A Tale of Two Sons",purchase,1.0,0 -298950,"Brothers - A Tale of Two Sons",play,3.2,0 -298950,"Castle Crashers",purchase,1.0,0 -298950,"Castle Crashers",play,2.9,0 -298950,"Thief",purchase,1.0,0 -298950,"Thief",play,2.9,0 -298950,"Don't Starve",purchase,1.0,0 -298950,"Don't Starve",play,2.9,0 -298950,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -298950,"Galactic Civilizations II Ultimate Edition",play,2.7,0 -298950,"Bulletstorm",purchase,1.0,0 -298950,"Bulletstorm",play,2.7,0 -298950,"Prison Architect",purchase,1.0,0 -298950,"Prison Architect",play,2.4,0 -298950,"Mass Effect 2",purchase,1.0,0 -298950,"Mass Effect 2",play,2.4,0 -298950,"Magicka",purchase,1.0,0 -298950,"Magicka",play,2.4,0 -298950,"DmC Devil May Cry",purchase,1.0,0 -298950,"DmC Devil May Cry",play,2.4,0 -298950,"Transformers Fall of Cybertron",purchase,1.0,0 -298950,"Transformers Fall of Cybertron",play,2.3,0 -298950,"Little Inferno",purchase,1.0,0 -298950,"Little Inferno",play,2.3,0 -298950,"The Long Dark",purchase,1.0,0 -298950,"The Long Dark",play,2.0,0 -298950,"Cities Skylines",purchase,1.0,0 -298950,"Cities Skylines",play,2.0,0 -298950,"Gone Home",purchase,1.0,0 -298950,"Gone Home",play,2.0,0 -298950,"The Stanley Parable",purchase,1.0,0 -298950,"The Stanley Parable",play,1.9,0 -298950,"Undertale",purchase,1.0,0 -298950,"Undertale",play,1.9,0 -298950,"Saints Row IV",purchase,1.0,0 -298950,"Saints Row IV",play,1.8,0 -298950,"ORION Prelude",purchase,1.0,0 -298950,"ORION Prelude",play,1.7,0 -298950,"Hardland",purchase,1.0,0 -298950,"Hardland",play,1.7,0 -298950,"Satellite Reign",purchase,1.0,0 -298950,"Satellite Reign",play,1.6,0 -298950,"Guns of Icarus Online",purchase,1.0,0 -298950,"Guns of Icarus Online",play,1.6,0 -298950,"Just Cause 2",purchase,1.0,0 -298950,"Just Cause 2",play,1.6,0 -298950,"Alien Swarm",purchase,1.0,0 -298950,"Alien Swarm",play,1.6,0 -298950,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -298950,"Red Faction Guerrilla Steam Edition",play,1.5,0 -298950,"Trine 2",purchase,1.0,0 -298950,"Trine 2",play,1.4,0 -298950,"Monaco",purchase,1.0,0 -298950,"Monaco",play,1.3,0 -298950,"Age of Empires II HD Edition",purchase,1.0,0 -298950,"Age of Empires II HD Edition",play,1.2,0 -298950,"Spec Ops The Line",purchase,1.0,0 -298950,"Spec Ops The Line",play,1.2,0 -298950,"NiGHTS into Dreams...",purchase,1.0,0 -298950,"NiGHTS into Dreams...",play,1.2,0 -298950,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -298950,"Divinity Original Sin Enhanced Edition",play,1.1,0 -298950,"Goat Simulator",purchase,1.0,0 -298950,"Goat Simulator",play,1.1,0 -298950,"Sleeping Dogs",purchase,1.0,0 -298950,"Sleeping Dogs",play,1.1,0 -298950,"Crusader Kings II",purchase,1.0,0 -298950,"Crusader Kings II",play,1.0,0 -298950,"Shadowrun Hong Kong",purchase,1.0,0 -298950,"Shadowrun Hong Kong",play,1.0,0 -298950,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -298950,"Kingdoms of Amalur Reckoning",play,0.9,0 -298950,"Left 4 Dead",purchase,1.0,0 -298950,"Left 4 Dead",play,0.9,0 -298950,"Crysis 2 Maximum Edition",purchase,1.0,0 -298950,"Crysis 2 Maximum Edition",play,0.9,0 -298950,"Sir, You Are Being Hunted",purchase,1.0,0 -298950,"Sir, You Are Being Hunted",play,0.9,0 -298950,"Dungeon Defenders",purchase,1.0,0 -298950,"Dungeon Defenders",play,0.9,0 -298950,"Call of Juarez Gunslinger",purchase,1.0,0 -298950,"Call of Juarez Gunslinger",play,0.9,0 -298950,"Darkest Dungeon",purchase,1.0,0 -298950,"Darkest Dungeon",play,0.9,0 -298950,"Dear Esther",purchase,1.0,0 -298950,"Dear Esther",play,0.9,0 -298950,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -298950,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,0.9,0 -298950,"Sanctum 2",purchase,1.0,0 -298950,"Sanctum 2",play,0.8,0 -298950,"Awesomenauts",purchase,1.0,0 -298950,"Awesomenauts",play,0.8,0 -298950,"Papers, Please",purchase,1.0,0 -298950,"Papers, Please",play,0.8,0 -298950,"Might & Magic Heroes VI",purchase,1.0,0 -298950,"Might & Magic Heroes VI",play,0.8,0 -298950,"Surgeon Simulator",purchase,1.0,0 -298950,"Surgeon Simulator",play,0.8,0 -298950,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -298950,"Sonic & All-Stars Racing Transformed",play,0.7,0 -298950,"Alpha Protocol",purchase,1.0,0 -298950,"Alpha Protocol",play,0.7,0 -298950,"Legend of Grimrock 2",purchase,1.0,0 -298950,"Legend of Grimrock 2",play,0.6,0 -298950,"Brtal Legend",purchase,1.0,0 -298950,"Brtal Legend",play,0.6,0 -298950,"Styx Master of Shadows",purchase,1.0,0 -298950,"Styx Master of Shadows",play,0.6,0 -298950,"Banished",purchase,1.0,0 -298950,"Banished",play,0.6,0 -298950,"Age of Wonders III",purchase,1.0,0 -298950,"Age of Wonders III",play,0.6,0 -298950,"Age of Empires III Complete Collection",purchase,1.0,0 -298950,"Age of Empires III Complete Collection",play,0.6,0 -298950,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -298950,"Just Cause 2 Multiplayer Mod",play,0.6,0 -298950,"Counter-Strike",purchase,1.0,0 -298950,"Counter-Strike",play,0.5,0 -298950,"The Talos Principle",purchase,1.0,0 -298950,"The Talos Principle",play,0.5,0 -298950,"Savage Lands",purchase,1.0,0 -298950,"Savage Lands",play,0.5,0 -298950,"Dota 2",purchase,1.0,0 -298950,"Dota 2",play,0.5,0 -298950,"Counter-Strike Source",purchase,1.0,0 -298950,"Counter-Strike Source",play,0.5,0 -298950,"Outlast",purchase,1.0,0 -298950,"Outlast",play,0.5,0 -298950,"Battlefield Bad Company 2",purchase,1.0,0 -298950,"Battlefield Bad Company 2",play,0.4,0 -298950,"The Lord of the Rings War in the North",purchase,1.0,0 -298950,"The Lord of the Rings War in the North",play,0.4,0 -298950,"Serious Sam HD The Second Encounter",purchase,1.0,0 -298950,"Serious Sam HD The Second Encounter",play,0.4,0 -298950,"Gunpoint",purchase,1.0,0 -298950,"Gunpoint",play,0.4,0 -298950,"Alan Wake",purchase,1.0,0 -298950,"Alan Wake",play,0.4,0 -298950,"Insurgency",purchase,1.0,0 -298950,"Insurgency",play,0.4,0 -298950,"Nexuiz",purchase,1.0,0 -298950,"Nexuiz",play,0.4,0 -298950,"The Binding of Isaac",purchase,1.0,0 -298950,"The Binding of Isaac",play,0.4,0 -298950,"Wasteland 2 Director's Cut",purchase,1.0,0 -298950,"Wasteland 2 Director's Cut",play,0.4,0 -298950,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -298950,"Warhammer 40,000 Dawn of War II",play,0.4,0 -298950,"BattleBlock Theater",purchase,1.0,0 -298950,"BattleBlock Theater",play,0.3,0 -298950,"Universe Sandbox",purchase,1.0,0 -298950,"Universe Sandbox",play,0.3,0 -298950,"Driver San Francisco",purchase,1.0,0 -298950,"Driver San Francisco",play,0.3,0 -298950,"DuckTales Remastered",purchase,1.0,0 -298950,"DuckTales Remastered",play,0.3,0 -298950,"Fallout",purchase,1.0,0 -298950,"Fallout",play,0.3,0 -298950,"Nidhogg",purchase,1.0,0 -298950,"Nidhogg",play,0.3,0 -298950,"Octodad Dadliest Catch",purchase,1.0,0 -298950,"Octodad Dadliest Catch",play,0.2,0 -298950,"Portal",purchase,1.0,0 -298950,"Portal",play,0.2,0 -298950,"Euro Truck Simulator 2",purchase,1.0,0 -298950,"Euro Truck Simulator 2",play,0.2,0 -298950,"Scribblenauts Unlimited",purchase,1.0,0 -298950,"Scribblenauts Unlimited",play,0.2,0 -298950,"Amnesia A Machine for Pigs",purchase,1.0,0 -298950,"Amnesia A Machine for Pigs",play,0.2,0 -298950,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -298950,"Dragon Age Origins - Ultimate Edition",play,0.2,0 -298950,"PROTOTYPE 2",purchase,1.0,0 -298950,"PROTOTYPE 2",play,0.2,0 -298950,"Guacamelee! Gold Edition",purchase,1.0,0 -298950,"Guacamelee! Gold Edition",play,0.2,0 -298950,"The Swapper",purchase,1.0,0 -298950,"The Swapper",play,0.2,0 -298950,"Shadow Warrior",purchase,1.0,0 -298950,"Shadow Warrior",play,0.2,0 -298950,"The Testament of Sherlock Holmes",purchase,1.0,0 -298950,"The Testament of Sherlock Holmes",play,0.1,0 -298950,"Half-Life 2",purchase,1.0,0 -298950,"Half-Life 2",play,0.1,0 -298950,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -298950,"The Secret of Monkey Island Special Edition",play,0.1,0 -298950,"Deus Ex Game of the Year Edition",purchase,1.0,0 -298950,"Deus Ex Game of the Year Edition",play,0.1,0 -298950,"Cave Story+",purchase,1.0,0 -298950,"Cave Story+",play,0.1,0 -298950,"Jet Set Radio",purchase,1.0,0 -298950,"The Banner Saga",purchase,1.0,0 -298950,"Baldur's Gate II Enhanced Edition",purchase,1.0,0 -298950,"Tomb Raider Anniversary",purchase,1.0,0 -298950,"Grim Fandango Remastered",purchase,1.0,0 -298950,"Age of Empires II HD The Forgotten",purchase,1.0,0 -298950,"Alan Wake's American Nightmare",purchase,1.0,0 -298950,"Alien Breed 2 Assault",purchase,1.0,0 -298950,"Aquaria",purchase,1.0,0 -298950,"Arx Fatalis",purchase,1.0,0 -298950,"BioShock Infinite - Season Pass",purchase,1.0,0 -298950,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -298950,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -298950,"Child of Light",purchase,1.0,0 -298950,"Company of Heroes",purchase,1.0,0 -298950,"Company of Heroes (New Steam Version)",purchase,1.0,0 -298950,"Company of Heroes Opposing Fronts",purchase,1.0,0 -298950,"Company of Heroes Tales of Valor",purchase,1.0,0 -298950,"Darksiders",purchase,1.0,0 -298950,"DARK SOULS II - Season Pass",purchase,1.0,0 -298950,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -298950,"Day of Defeat",purchase,1.0,0 -298950,"Deadlight",purchase,1.0,0 -298950,"Deathmatch Classic",purchase,1.0,0 -298950,"Don't Starve Together Beta",purchase,1.0,0 -298950,"F.E.A.R. 3",purchase,1.0,0 -298950,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -298950,"Fallout New Vegas Dead Money",purchase,1.0,0 -298950,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -298950,"Gish",purchase,1.0,0 -298950,"Half-Life",purchase,1.0,0 -298950,"Half-Life 2 Deathmatch",purchase,1.0,0 -298950,"Half-Life 2 Episode One",purchase,1.0,0 -298950,"Half-Life 2 Episode Two",purchase,1.0,0 -298950,"Half-Life 2 Lost Coast",purchase,1.0,0 -298950,"Half-Life Blue Shift",purchase,1.0,0 -298950,"Half-Life Opposing Force",purchase,1.0,0 -298950,"Half-Life Deathmatch Source",purchase,1.0,0 -298950,"Hitman Sniper Challenge",purchase,1.0,0 -298950,"Insanely Twisted Shadow Planet",purchase,1.0,0 -298950,"Jazzpunk",purchase,1.0,0 -298950,"Lara Croft and the Guardian of Light",purchase,1.0,0 -298950,"Lost Planet Extreme Condition",purchase,1.0,0 -298950,"Lugaru HD ",purchase,1.0,0 -298950,"Monkey Island 2 Special Edition",purchase,1.0,0 -298950,"Nexuiz Beta",purchase,1.0,0 -298950,"Nexuiz STUPID Mode",purchase,1.0,0 -298950,"OlliOlli",purchase,1.0,0 -298950,"Patch testing for Chivalry",purchase,1.0,0 -298950,"Penumbra Overture",purchase,1.0,0 -298950,"Prototype",purchase,1.0,0 -298950,"Prototype 2 RADNET Access Pack",purchase,1.0,0 -298950,"Red Faction Armageddon",purchase,1.0,0 -298950,"Ricochet",purchase,1.0,0 -298950,"Risk of Rain",purchase,1.0,0 -298950,"Samorost 2",purchase,1.0,0 -298950,"Shadowrun Dragonfall",purchase,1.0,0 -298950,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -298950,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -298950,"South Park The Stick of Truth",purchase,1.0,0 -298950,"Squishy the Suicidal Pig",purchase,1.0,0 -298950,"Stacking",purchase,1.0,0 -298950,"Starbound - Unstable",purchase,1.0,0 -298950,"Team Fortress Classic",purchase,1.0,0 -298950,"Teleglitch Die More Edition",purchase,1.0,0 -298950,"The Banner Saga - Mod Content",purchase,1.0,0 -298950,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -298950,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -298950,"The Walking Dead Season Two",purchase,1.0,0 -298950,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -298950,"Thief - Opportunist",purchase,1.0,0 -298950,"Thief - The Bank Heist",purchase,1.0,0 -298950,"Thief 2",purchase,1.0,0 -298950,"Thief Deadly Shadows",purchase,1.0,0 -298950,"Thief Gold",purchase,1.0,0 -298950,"To the Moon",purchase,1.0,0 -298950,"Tower of Guns",purchase,1.0,0 -298950,"Transistor",purchase,1.0,0 -298950,"Tribes Ascend - Steam Starter Pack",purchase,1.0,0 -298950,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -298950,"Warhammer End Times - Vermintide Sigmar's Blessing",purchase,1.0,0 -298950,"Wasteland 1 - The Original Classic",purchase,1.0,0 -298950,"World of Goo",purchase,1.0,0 -298950,"XCOM Enemy Within",purchase,1.0,0 -295117160,"Dota 2",purchase,1.0,0 -295117160,"Dota 2",play,64.0,0 -292422780,"Heroes & Generals",purchase,1.0,0 -292422780,"Heroes & Generals",play,7.3,0 -293204747,"Trove",purchase,1.0,0 -293204747,"Trove",play,1.5,0 -242819393,"Warface",purchase,1.0,0 -242819393,"Warface",play,12.9,0 -242819393,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -242819393,"Tom Clancy's Ghost Recon Phantoms - EU",play,2.5,0 -186154929,"Test Drive Unlimited 2",purchase,1.0,0 -186154929,"Test Drive Unlimited 2",play,5.9,0 -186154929,"Unturned",purchase,1.0,0 -186154929,"Unturned",play,0.3,0 -129501816,"Arma 2 Operation Arrowhead",purchase,1.0,0 -129501816,"Arma 2 Operation Arrowhead",play,133.0,0 -129501816,"DayZ",purchase,1.0,0 -129501816,"DayZ",play,117.0,0 -129501816,"Counter-Strike Global Offensive",purchase,1.0,0 -129501816,"Counter-Strike Global Offensive",play,69.0,0 -129501816,"Borderlands 2",purchase,1.0,0 -129501816,"Borderlands 2",play,4.9,0 -129501816,"Garry's Mod",purchase,1.0,0 -129501816,"Garry's Mod",play,3.0,0 -129501816,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -129501816,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,1.8,0 -129501816,"PAYDAY 2",purchase,1.0,0 -129501816,"PAYDAY 2",play,1.3,0 -129501816,"FTL Faster Than Light",purchase,1.0,0 -129501816,"FTL Faster Than Light",play,1.1,0 -129501816,"Rust",purchase,1.0,0 -129501816,"Rust",play,1.0,0 -129501816,"Special Forces Team X",purchase,1.0,0 -129501816,"Special Forces Team X",play,0.5,0 -129501816,"Warface",purchase,1.0,0 -129501816,"Warface",play,0.4,0 -129501816,"Arma 2",purchase,1.0,0 -129501816,"Heroes & Generals",purchase,1.0,0 -149873773,"Football Manager 2013",purchase,1.0,0 -149873773,"Football Manager 2013",play,105.0,0 -98102518,"Team Fortress 2",purchase,1.0,0 -98102518,"Team Fortress 2",play,2.7,0 -55319994,"Left 4 Dead 2",purchase,1.0,0 -55319994,"Left 4 Dead 2",play,124.0,0 -55319994,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -55319994,"Call of Duty Modern Warfare 2 - Multiplayer",play,52.0,0 -55319994,"Call of Duty Modern Warfare 2",purchase,1.0,0 -55319994,"Call of Duty Modern Warfare 2",play,34.0,0 -55319994,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -55319994,"Call of Duty Black Ops - Multiplayer",play,17.0,0 -55319994,"Call of Duty Black Ops",purchase,1.0,0 -55319994,"Call of Duty Black Ops",play,10.0,0 -204199622,"Pro Evolution Soccer 2015",purchase,1.0,0 -204199622,"Pro Evolution Soccer 2015",play,591.0,0 -204199622,"Pro Evolution Soccer 2016",purchase,1.0,0 -204199622,"Pro Evolution Soccer 2016",play,69.0,0 -124142651,"Rocksmith",purchase,1.0,0 -124142651,"Rocksmith",play,3.6,0 -260207401,"Dota 2",purchase,1.0,0 -260207401,"Dota 2",play,0.1,0 -62878249,"ARK Survival Evolved",purchase,1.0,0 -62878249,"ARK Survival Evolved",play,287.0,0 -62878249,"Arma 3",purchase,1.0,0 -62878249,"Arma 3",play,223.0,0 -62878249,"Total War ROME II - Emperor Edition",purchase,1.0,0 -62878249,"Total War ROME II - Emperor Edition",play,182.0,0 -62878249,"Men of War Assault Squad",purchase,1.0,0 -62878249,"Men of War Assault Squad",play,157.0,0 -62878249,"Total War SHOGUN 2",purchase,1.0,0 -62878249,"Total War SHOGUN 2",play,153.0,0 -62878249,"Mount & Blade Warband",purchase,1.0,0 -62878249,"Mount & Blade Warband",play,152.0,0 -62878249,"PAYDAY 2",purchase,1.0,0 -62878249,"PAYDAY 2",play,120.0,0 -62878249,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -62878249,"Rising Storm/Red Orchestra 2 Multiplayer",play,120.0,0 -62878249,"Fallout 4",purchase,1.0,0 -62878249,"Fallout 4",play,111.0,0 -62878249,"DayZ",purchase,1.0,0 -62878249,"DayZ",play,110.0,0 -62878249,"Left 4 Dead 2",purchase,1.0,0 -62878249,"Left 4 Dead 2",play,106.0,0 -62878249,"Napoleon Total War",purchase,1.0,0 -62878249,"Napoleon Total War",play,88.0,0 -62878249,"Battlefield 2",purchase,1.0,0 -62878249,"Battlefield 2",play,80.0,0 -62878249,"Total War ATTILA",purchase,1.0,0 -62878249,"Total War ATTILA",play,76.0,0 -62878249,"The Elder Scrolls V Skyrim",purchase,1.0,0 -62878249,"The Elder Scrolls V Skyrim",play,74.0,0 -62878249,"Insurgency",purchase,1.0,0 -62878249,"Insurgency",play,66.0,0 -62878249,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -62878249,"Tom Clancy's Ghost Recon Phantoms - NA",play,54.0,0 -62878249,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -62878249,"The Elder Scrolls IV Oblivion ",play,54.0,0 -62878249,"Mount & Blade With Fire and Sword",purchase,1.0,0 -62878249,"Mount & Blade With Fire and Sword",play,53.0,0 -62878249,"Emergency 2012",purchase,1.0,0 -62878249,"Emergency 2012",play,46.0,0 -62878249,"Orcs Must Die! 2",purchase,1.0,0 -62878249,"Orcs Must Die! 2",play,45.0,0 -62878249,"Call to Arms",purchase,1.0,0 -62878249,"Call to Arms",play,39.0,0 -62878249,"Tropico 3 Absolute Power",purchase,1.0,0 -62878249,"Tropico 3 Absolute Power",play,37.0,0 -62878249,"Tropico 5",purchase,1.0,0 -62878249,"Tropico 5",play,37.0,0 -62878249,"Serious Sam HD The Second Encounter",purchase,1.0,0 -62878249,"Serious Sam HD The Second Encounter",play,36.0,0 -62878249,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -62878249,"Call of Duty Modern Warfare 3 - Multiplayer",play,30.0,0 -62878249,"Empire Total War",purchase,1.0,0 -62878249,"Empire Total War",play,29.0,0 -62878249,"Arma 2 Operation Arrowhead",purchase,1.0,0 -62878249,"Arma 2 Operation Arrowhead",play,27.0,0 -62878249,"Aliens vs. Predator",purchase,1.0,0 -62878249,"Aliens vs. Predator",play,26.0,0 -62878249,"Sniper Elite V2",purchase,1.0,0 -62878249,"Sniper Elite V2",play,25.0,0 -62878249,"Homefront",purchase,1.0,0 -62878249,"Homefront",play,24.0,0 -62878249,"7 Days to Die",purchase,1.0,0 -62878249,"7 Days to Die",play,24.0,0 -62878249,"Star Wars - Battlefront II",purchase,1.0,0 -62878249,"Star Wars - Battlefront II",play,22.0,0 -62878249,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -62878249,"Medal of Honor(TM) Multiplayer",play,22.0,0 -62878249,"Men of War Assault Squad 2",purchase,1.0,0 -62878249,"Men of War Assault Squad 2",play,21.0,0 -62878249,"Stronghold Crusader 2",purchase,1.0,0 -62878249,"Stronghold Crusader 2",play,19.7,0 -62878249,"Chivalry Medieval Warfare",purchase,1.0,0 -62878249,"Chivalry Medieval Warfare",play,19.6,0 -62878249,"Tropico 4",purchase,1.0,0 -62878249,"Tropico 4",play,19.6,0 -62878249,"Men of War Condemned Heroes",purchase,1.0,0 -62878249,"Men of War Condemned Heroes",play,18.5,0 -62878249,"State of Decay",purchase,1.0,0 -62878249,"State of Decay",play,18.2,0 -62878249,"Call of Duty Modern Warfare 3",purchase,1.0,0 -62878249,"Call of Duty Modern Warfare 3",play,18.1,0 -62878249,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -62878249,"Warhammer 40,000 Dawn of War II Retribution",play,17.9,0 -62878249,"This War of Mine",purchase,1.0,0 -62878249,"This War of Mine",play,17.7,0 -62878249,"Metro 2033",purchase,1.0,0 -62878249,"Metro 2033",play,16.0,0 -62878249,"Orcs Must Die!",purchase,1.0,0 -62878249,"Orcs Must Die!",play,15.7,0 -62878249,"Grand Theft Auto IV",purchase,1.0,0 -62878249,"Grand Theft Auto IV",play,15.0,0 -62878249,"Killing Floor",purchase,1.0,0 -62878249,"Killing Floor",play,15.0,0 -62878249,"DiRT 2",purchase,1.0,0 -62878249,"DiRT 2",play,14.9,0 -62878249,"Primal Carnage",purchase,1.0,0 -62878249,"Primal Carnage",play,14.3,0 -62878249,"Gas Guzzlers Extreme",purchase,1.0,0 -62878249,"Gas Guzzlers Extreme",play,13.8,0 -62878249,"Killing Floor 2",purchase,1.0,0 -62878249,"Killing Floor 2",play,13.3,0 -62878249,"Star Wars The Force Unleashed II",purchase,1.0,0 -62878249,"Star Wars The Force Unleashed II",play,13.3,0 -62878249,"Men of War Vietnam",purchase,1.0,0 -62878249,"Men of War Vietnam",play,13.2,0 -62878249,"Wargame Red Dragon",purchase,1.0,0 -62878249,"Wargame Red Dragon",play,12.8,0 -62878249,"Insaniquarium! Deluxe",purchase,1.0,0 -62878249,"Insaniquarium! Deluxe",play,11.9,0 -62878249,"Assassin's Creed III",purchase,1.0,0 -62878249,"Assassin's Creed III",play,10.8,0 -62878249,"Stranded Deep",purchase,1.0,0 -62878249,"Stranded Deep",play,10.7,0 -62878249,"Cities XL 2011",purchase,1.0,0 -62878249,"Cities XL 2011",play,10.7,0 -62878249,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -62878249,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,10.7,0 -62878249,"ORION Prelude",purchase,1.0,0 -62878249,"ORION Prelude",play,10.2,0 -62878249,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -62878249,"Warhammer 40,000 Dawn of War II",play,9.9,0 -62878249,"theHunter Primal",purchase,1.0,0 -62878249,"theHunter Primal",play,9.4,0 -62878249,"RUNNING WITH RIFLES",purchase,1.0,0 -62878249,"RUNNING WITH RIFLES",play,9.0,0 -62878249,"Medal of Honor(TM) Single Player",purchase,1.0,0 -62878249,"Medal of Honor(TM) Single Player",play,7.7,0 -62878249,"Mad Max",purchase,1.0,0 -62878249,"Mad Max",play,7.6,0 -62878249,"Cossacks II Battle for Europe",purchase,1.0,0 -62878249,"Cossacks II Battle for Europe",play,7.5,0 -62878249,"Warframe",purchase,1.0,0 -62878249,"Warframe",play,7.2,0 -62878249,"WRC 4 FIA WORLD RALLY CHAMPIONSHIP",purchase,1.0,0 -62878249,"WRC 4 FIA WORLD RALLY CHAMPIONSHIP",play,7.1,0 -62878249,"Battlestations Pacific",purchase,1.0,0 -62878249,"Battlestations Pacific",play,7.1,0 -62878249,"Emergency 2014",purchase,1.0,0 -62878249,"Emergency 2014",play,6.8,0 -62878249,"theHunter",purchase,1.0,0 -62878249,"theHunter",play,6.3,0 -62878249,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -62878249,"Warhammer 40,000 Dawn of War Soulstorm",play,6.2,0 -62878249,"Red Faction Armageddon",purchase,1.0,0 -62878249,"Red Faction Armageddon",play,5.9,0 -62878249,"Age of Empires II HD Edition",purchase,1.0,0 -62878249,"Age of Empires II HD Edition",play,5.8,0 -62878249,"Depth",purchase,1.0,0 -62878249,"Depth",play,5.6,0 -62878249,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -62878249,"F.E.A.R. 2 Project Origin",play,4.9,0 -62878249,"Dive to the Titanic",purchase,1.0,0 -62878249,"Dive to the Titanic",play,4.7,0 -62878249,"Tomb Raider",purchase,1.0,0 -62878249,"Tomb Raider",play,4.1,0 -62878249,"PAYDAY The Heist",purchase,1.0,0 -62878249,"PAYDAY The Heist",play,3.7,0 -62878249,"Terminator Salvation",purchase,1.0,0 -62878249,"Terminator Salvation",play,3.7,0 -62878249,"Cabelas Trophy Bucks",purchase,1.0,0 -62878249,"Cabelas Trophy Bucks",play,3.4,0 -62878249,"Emergency 2013",purchase,1.0,0 -62878249,"Emergency 2013",play,3.3,0 -62878249,"Warface",purchase,1.0,0 -62878249,"Warface",play,3.3,0 -62878249,"Life is Feudal Your Own",purchase,1.0,0 -62878249,"Life is Feudal Your Own",play,2.2,0 -62878249,"Marvel Heroes 2015",purchase,1.0,0 -62878249,"Marvel Heroes 2015",play,2.2,0 -62878249,"POSTAL 2",purchase,1.0,0 -62878249,"POSTAL 2",play,1.8,0 -62878249,"Saw",purchase,1.0,0 -62878249,"Saw",play,1.7,0 -62878249,"War of the Roses",purchase,1.0,0 -62878249,"War of the Roses",play,1.6,0 -62878249,"Toy Soldiers",purchase,1.0,0 -62878249,"Toy Soldiers",play,1.6,0 -62878249,"Company of Heroes Tales of Valor",purchase,1.0,0 -62878249,"Company of Heroes Tales of Valor",play,1.4,0 -62878249,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -62878249,"Warhammer 40,000 Dawn of War Dark Crusade",play,1.3,0 -62878249,"Combat Arms",purchase,1.0,0 -62878249,"Combat Arms",play,1.2,0 -62878249,"Command and Conquer 3 Tiberium Wars",purchase,1.0,0 -62878249,"Command and Conquer 3 Tiberium Wars",play,1.0,0 -62878249,"Company of Heroes Opposing Fronts",purchase,1.0,0 -62878249,"Company of Heroes Opposing Fronts",play,0.9,0 -62878249,"Star Wars Republic Commando",purchase,1.0,0 -62878249,"Star Wars Republic Commando",play,0.9,0 -62878249,"Heroes & Generals",purchase,1.0,0 -62878249,"Heroes & Generals",play,0.8,0 -62878249,"Painkiller Hell & Damnation",purchase,1.0,0 -62878249,"Painkiller Hell & Damnation",play,0.8,0 -62878249,"Besiege",purchase,1.0,0 -62878249,"Besiege",play,0.7,0 -62878249,"Cossacks II Napoleonic Wars",purchase,1.0,0 -62878249,"Cossacks II Napoleonic Wars",play,0.6,0 -62878249,"Team Fortress 2",purchase,1.0,0 -62878249,"Team Fortress 2",play,0.6,0 -62878249,"March of War",purchase,1.0,0 -62878249,"March of War",play,0.5,0 -62878249,"Zuma Deluxe",purchase,1.0,0 -62878249,"Zuma Deluxe",play,0.5,0 -62878249,"Alien Swarm",purchase,1.0,0 -62878249,"Alien Swarm",play,0.3,0 -62878249,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -62878249,"Grand Theft Auto Episodes from Liberty City",play,0.3,0 -62878249,"World in Conflict",purchase,1.0,0 -62878249,"World in Conflict",play,0.3,0 -62878249,"Natural Selection 2",purchase,1.0,0 -62878249,"Natural Selection 2",play,0.3,0 -62878249,"Command and Conquer 4 Tiberian Twilight",purchase,1.0,0 -62878249,"Command and Conquer 4 Tiberian Twilight",play,0.2,0 -62878249,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -62878249,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,0.1,0 -62878249,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -62878249,"Warhammer 40,000 Dawn of War Winter Assault",play,0.1,0 -62878249,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -62878249,"Company of Heroes",purchase,1.0,0 -62878249,"911 First Responders",purchase,1.0,0 -62878249,"Arma 2 British Armed Forces",purchase,1.0,0 -62878249,"DCS World",purchase,1.0,0 -62878249,"American Conquest",purchase,1.0,0 -62878249,"American Conquest - Fight Back",purchase,1.0,0 -62878249,"Arma 2",purchase,1.0,0 -62878249,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -62878249,"Arma 2 Private Military Company",purchase,1.0,0 -62878249,"Arma 3 Zeus",purchase,1.0,0 -62878249,"Assassin's Creed IV Black Flag",purchase,1.0,0 -62878249,"Battlestations Midway",purchase,1.0,0 -62878249,"Call to Arms - Deluxe Edition",purchase,1.0,0 -62878249,"Company of Heroes (New Steam Version)",purchase,1.0,0 -62878249,"Cossacks Art of War",purchase,1.0,0 -62878249,"Cossacks Back to War",purchase,1.0,0 -62878249,"Cossacks European Wars",purchase,1.0,0 -62878249,"Defiance",purchase,1.0,0 -62878249,"Grand Theft Auto San Andreas",purchase,1.0,0 -62878249,"Grand Theft Auto San Andreas",purchase,1.0,0 -62878249,"Killing Floor Uncovered",purchase,1.0,0 -62878249,"Medal of Honor Pre-Order",purchase,1.0,0 -62878249,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -62878249,"Mount & Blade Warband - Viking Conquest Reforged Edition",purchase,1.0,0 -62878249,"Omerta - City of Gangsters",purchase,1.0,0 -62878249,"Patch testing for Chivalry",purchase,1.0,0 -62878249,"PAYDAY The Web Series - Episode 1",purchase,1.0,0 -62878249,"Quake Live",purchase,1.0,0 -62878249,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -62878249,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -62878249,"Sniper Elite",purchase,1.0,0 -62878249,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -62878249,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -62878249,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -62878249,"Vindictus",purchase,1.0,0 -62878249,"Wargame AirLand Battle",purchase,1.0,0 -62878249,"Wargame European Escalation",purchase,1.0,0 -62878249,"War of the Roses Kingmaker",purchase,1.0,0 -62878249,"War of the Roses Balance Beta",purchase,1.0,0 -62878249,"World in Conflict Soviet Assault",purchase,1.0,0 -46534663,"Robocraft",purchase,1.0,0 -46534663,"Robocraft",play,22.0,0 -46534663,"TERA",purchase,1.0,0 -46534663,"TERA",play,13.8,0 -46534663,"Dota 2",purchase,1.0,0 -46534663,"Dota 2",play,5.3,0 -46534663,"Dirty Bomb",purchase,1.0,0 -46534663,"Dirty Bomb",play,2.1,0 -46534663,"Dragons and Titans",purchase,1.0,0 -46534663,"Dragons and Titans",play,1.3,0 -46534663,"Dead Island Epidemic",purchase,1.0,0 -46534663,"Dead Island Epidemic",play,1.2,0 -46534663,"Team Fortress 2",purchase,1.0,0 -46534663,"Team Fortress 2",play,0.4,0 -46534663,"Unturned",purchase,1.0,0 -46534663,"Unturned",play,0.2,0 -46534663,"Trove",purchase,1.0,0 -46534663,"Trove",play,0.2,0 -46534663,"Copa Petrobras de Marcas",purchase,1.0,0 -46534663,"Copa Petrobras de Marcas",play,0.2,0 -46534663,"Clicker Heroes",purchase,1.0,0 -46534663,"Heroes & Generals",purchase,1.0,0 -207926270,"Unturned",purchase,1.0,0 -207926270,"Unturned",play,14.2,0 -207926270,"Robocraft",purchase,1.0,0 -207926270,"Robocraft",play,3.6,0 -207926270,"Counter-Strike Nexon Zombies",purchase,1.0,0 -207926270,"Counter-Strike Nexon Zombies",play,0.3,0 -207926270,"BLOCKADE 3D",purchase,1.0,0 -207926270,"BLOCKADE 3D",play,0.2,0 -91828380,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -91828380,"Call of Duty Modern Warfare 3 - Multiplayer",play,51.0,0 -91828380,"Counter-Strike Global Offensive",purchase,1.0,0 -91828380,"Counter-Strike Global Offensive",play,11.4,0 -91828380,"Magic 2014 ",purchase,1.0,0 -91828380,"Magic 2014 ",play,4.1,0 -91828380,"Call of Duty Modern Warfare 3",purchase,1.0,0 -91828380,"Call of Duty Modern Warfare 3",play,1.9,0 -91828380,"Team Fortress 2",purchase,1.0,0 -91828380,"Team Fortress 2",play,1.5,0 -182604019,"F1 2012",purchase,1.0,0 -182604019,"F1 2012",play,4.1,0 -182604019,"The LEGO Movie - Videogame",purchase,1.0,0 -182604019,"The LEGO Movie - Videogame",play,1.1,0 -186871803,"Unturned",purchase,1.0,0 -186871803,"Unturned",play,0.4,0 -261336456,"Dota 2",purchase,1.0,0 -261336456,"Dota 2",play,700.0,0 -261336456,"APB Reloaded",purchase,1.0,0 -261336456,"Audition Online",purchase,1.0,0 -261336456,"Clicker Heroes",purchase,1.0,0 -261336456,"Curse of Mermos",purchase,1.0,0 -261336456,"FreeStyle2 Street Basketball",purchase,1.0,0 -261336456,"Heroes & Generals",purchase,1.0,0 -261336456,"Neverwinter",purchase,1.0,0 -261336456,"PlanetSide 2",purchase,1.0,0 -261336456,"RaceRoom Racing Experience ",purchase,1.0,0 -261336456,"Warframe",purchase,1.0,0 -261336456,"War Thunder",purchase,1.0,0 -150137344,"Team Fortress 2",purchase,1.0,0 -150137344,"Team Fortress 2",play,1217.0,0 -150137344,"Garry's Mod",purchase,1.0,0 -150137344,"Garry's Mod",play,214.0,0 -150137344,"Counter-Strike Global Offensive",purchase,1.0,0 -150137344,"Counter-Strike Global Offensive",play,153.0,0 -150137344,"Terraria",purchase,1.0,0 -150137344,"Terraria",play,122.0,0 -150137344,"Dota 2",purchase,1.0,0 -150137344,"Dota 2",play,40.0,0 -150137344,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -150137344,"Tom Clancy's Ghost Recon Phantoms - NA",play,38.0,0 -150137344,"No More Room in Hell",purchase,1.0,0 -150137344,"No More Room in Hell",play,9.9,0 -150137344,"Trove",purchase,1.0,0 -150137344,"Trove",play,8.5,0 -150137344,"Realm of the Mad God",purchase,1.0,0 -150137344,"Realm of the Mad God",play,7.8,0 -150137344,"Loadout",purchase,1.0,0 -150137344,"Loadout",play,7.3,0 -150137344,"Warframe",purchase,1.0,0 -150137344,"Warframe",play,4.0,0 -150137344,"Spiral Knights",purchase,1.0,0 -150137344,"Spiral Knights",play,3.4,0 -150137344,"Stronghold Kingdoms",purchase,1.0,0 -150137344,"Stronghold Kingdoms",play,2.7,0 -150137344,"Unturned",purchase,1.0,0 -150137344,"Unturned",play,1.7,0 -150137344,"Grimm",purchase,1.0,0 -150137344,"Grimm",play,1.3,0 -150137344,"PlanetSide 2",purchase,1.0,0 -150137344,"PlanetSide 2",play,1.1,0 -150137344,"The Plan",purchase,1.0,0 -150137344,"The Plan",play,0.4,0 -150137344,"Dirty Bomb",purchase,1.0,0 -133800100,"Dota 2",purchase,1.0,0 -133800100,"Dota 2",play,6.9,0 -241424434,"Counter-Strike Global Offensive",purchase,1.0,0 -241424434,"Counter-Strike Global Offensive",play,24.0,0 -241424434,"Dragon's Prophet (EU)",purchase,1.0,0 -241424434,"Echo of Soul",purchase,1.0,0 -241424434,"TERA",purchase,1.0,0 -241424434,"Unturned",purchase,1.0,0 -121480841,"PROTOTYPE 2",purchase,1.0,0 -121480841,"PROTOTYPE 2",play,1.4,0 -121480841,"Prototype 2 RADNET Access Pack",purchase,1.0,0 -132381775,"Dota 2",purchase,1.0,0 -132381775,"Dota 2",play,1994.0,0 -132381775,"Counter-Strike Global Offensive",purchase,1.0,0 -132381775,"Counter-Strike Global Offensive",play,61.0,0 -173234140,"Dota 2",purchase,1.0,0 -173234140,"Dota 2",play,0.4,0 -113039667,"Dota 2",purchase,1.0,0 -113039667,"Dota 2",play,117.0,0 -113039667,"Torchlight II",purchase,1.0,0 -113039667,"Torchlight II",play,43.0,0 -113039667,"Borderlands 2",purchase,1.0,0 -113039667,"Borderlands 2",play,15.9,0 -113039667,"Endless Legend",purchase,1.0,0 -113039667,"Endless Legend",play,12.9,0 -113039667,"Team Fortress 2",purchase,1.0,0 -113039667,"Team Fortress 2",play,10.9,0 -113039667,"Castle Crashers",purchase,1.0,0 -113039667,"Castle Crashers",play,9.4,0 -113039667,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -113039667,"Kingdoms of Amalur Reckoning",play,6.4,0 -113039667,"Left 4 Dead 2",purchase,1.0,0 -113039667,"Left 4 Dead 2",play,1.1,0 -195453723,"Dota 2",purchase,1.0,0 -195453723,"Dota 2",play,3.0,0 -79219608,"Saints Row 2",purchase,1.0,0 -290842944,"The Settlers Online",purchase,1.0,0 -42464885,"Football Manager 2009",purchase,1.0,0 -183026447,"Dota 2",purchase,1.0,0 -183026447,"Dota 2",play,0.1,0 -161186800,"Terraria",purchase,1.0,0 -161186800,"Terraria",play,2.1,0 -102244595,"Dota 2",purchase,1.0,0 -102244595,"Dota 2",play,3.1,0 -223595417,"Unturned",purchase,1.0,0 -223595417,"Unturned",play,0.1,0 -293758845,"Block N Load",purchase,1.0,0 -293758845,"Block N Load",play,1.6,0 -293758845,"Heroes & Generals",purchase,1.0,0 -293758845,"Heroes & Generals",play,0.2,0 -293758845,"Dirty Bomb",purchase,1.0,0 -293758845,"America's Army Proving Grounds",purchase,1.0,0 -293758845,"Metro Conflict",purchase,1.0,0 -50801801,"The Elder Scrolls V Skyrim",purchase,1.0,0 -50801801,"The Elder Scrolls V Skyrim",play,87.0,0 -50801801,"Trials Evolution Gold Edition",purchase,1.0,0 -50801801,"Trials Evolution Gold Edition",play,12.1,0 -50801801,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -50801801,"Call of Duty Modern Warfare 2 - Multiplayer",play,9.5,0 -50801801,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -50801801,"Call of Duty Black Ops - Multiplayer",play,7.6,0 -50801801,"South Park The Stick of Truth",purchase,1.0,0 -50801801,"South Park The Stick of Truth",play,7.4,0 -50801801,"Call of Duty Modern Warfare 2",purchase,1.0,0 -50801801,"Call of Duty Modern Warfare 2",play,6.5,0 -50801801,"Euro Truck Simulator 2",purchase,1.0,0 -50801801,"Euro Truck Simulator 2",play,6.1,0 -50801801,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -50801801,"Warhammer 40,000 Dawn of War II",play,5.4,0 -50801801,"Quake Live",purchase,1.0,0 -50801801,"Quake Live",play,5.0,0 -50801801,"Serious Sam 3 BFE",purchase,1.0,0 -50801801,"Serious Sam 3 BFE",play,4.8,0 -50801801,"Warframe",purchase,1.0,0 -50801801,"Warframe",play,4.0,0 -50801801,"Magic The Gathering Duels of the Planeswalkers 2012",purchase,1.0,0 -50801801,"Magic The Gathering Duels of the Planeswalkers 2012",play,3.7,0 -50801801,"Magicka",purchase,1.0,0 -50801801,"Magicka",play,3.4,0 -50801801,"Dungeons & Dragons Daggerdale",purchase,1.0,0 -50801801,"Dungeons & Dragons Daggerdale",play,3.3,0 -50801801,"Rebel Galaxy",purchase,1.0,0 -50801801,"Rebel Galaxy",play,3.2,0 -50801801,"Fallout 4",purchase,1.0,0 -50801801,"Fallout 4",play,3.2,0 -50801801,"Call of Duty Black Ops",purchase,1.0,0 -50801801,"Call of Duty Black Ops",play,3.1,0 -50801801,"Orcs Must Die!",purchase,1.0,0 -50801801,"Orcs Must Die!",play,2.8,0 -50801801,"Rise of the Triad",purchase,1.0,0 -50801801,"Rise of the Triad",play,2.7,0 -50801801,"Supreme Commander 2",purchase,1.0,0 -50801801,"Supreme Commander 2",play,2.6,0 -50801801,"Dungeon Defenders",purchase,1.0,0 -50801801,"Dungeon Defenders",play,2.0,0 -50801801,"Bastion",purchase,1.0,0 -50801801,"Bastion",play,1.9,0 -50801801,"TrackMania Stadium",purchase,1.0,0 -50801801,"TrackMania Stadium",play,1.3,0 -50801801,"TrackMania Canyon",purchase,1.0,0 -50801801,"TrackMania Canyon",play,1.2,0 -50801801,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -50801801,"Unreal Tournament 3 Black Edition",play,1.2,0 -50801801,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -50801801,"Call of Duty Modern Warfare 3 - Multiplayer",play,1.1,0 -50801801,"Dishonored",purchase,1.0,0 -50801801,"Dishonored",play,0.8,0 -50801801,"Command and Conquer 4 Tiberian Twilight",purchase,1.0,0 -50801801,"Command and Conquer 4 Tiberian Twilight",play,0.7,0 -50801801,"Orcs Must Die! 2",purchase,1.0,0 -50801801,"Orcs Must Die! 2",play,0.7,0 -50801801,"Call of Duty Modern Warfare 3",purchase,1.0,0 -50801801,"Call of Duty Modern Warfare 3",play,0.3,0 -50801801,"Team Fortress 2",purchase,1.0,0 -50801801,"Team Fortress 2",play,0.3,0 -50801801,"Unreal Tournament 2004",purchase,1.0,0 -50801801,"Unreal Tournament 2004",play,0.2,0 -50801801,"Alien Swarm",purchase,1.0,0 -50801801,"Alien Swarm",play,0.2,0 -50801801,"Post Apocalyptic Mayhem",purchase,1.0,0 -50801801,"Post Apocalyptic Mayhem",play,0.2,0 -50801801,"Command and Conquer 3 Kane's Wrath",purchase,1.0,0 -50801801,"Command and Conquer 3 Kane's Wrath",play,0.1,0 -50801801,"Unreal Tournament Game of the Year Edition",purchase,1.0,0 -50801801,"Quake III Arena",purchase,1.0,0 -50801801,"Command and Conquer 3 Tiberium Wars",purchase,1.0,0 -50801801,"Command and Conquer Red Alert 3",purchase,1.0,0 -50801801,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -50801801,"EVE Online",purchase,1.0,0 -50801801,"Magicka Wizard's Survival Kit",purchase,1.0,0 -50801801,"Quake",purchase,1.0,0 -50801801,"Quake II",purchase,1.0,0 -50801801,"Quake II Ground Zero",purchase,1.0,0 -50801801,"Quake II The Reckoning",purchase,1.0,0 -50801801,"Quake III Team Arena",purchase,1.0,0 -50801801,"Quake Mission Pack 1 Scourge of Armagon",purchase,1.0,0 -50801801,"Quake Mission Pack 2 Dissolution of Eternity",purchase,1.0,0 -50801801,"Ride 'em Low",purchase,1.0,0 -50801801,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -50801801,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -50801801,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -50801801,"Trials Fusion",purchase,1.0,0 -50801801,"Unreal Gold",purchase,1.0,0 -50801801,"Unreal II The Awakening",purchase,1.0,0 -50801801,"Vertiginous Golf",purchase,1.0,0 -162479816,"Team Fortress 2",purchase,1.0,0 -162479816,"Team Fortress 2",play,35.0,0 -20630908,"Counter-Strike",purchase,1.0,0 -20630908,"Counter-Strike",play,2.8,0 -20630908,"Counter-Strike Condition Zero",purchase,1.0,0 -20630908,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -20630908,"Day of Defeat",purchase,1.0,0 -20630908,"Deathmatch Classic",purchase,1.0,0 -20630908,"Ricochet",purchase,1.0,0 -230947875,"Unturned",purchase,1.0,0 -230947875,"Unturned",play,13.0,0 -201576436,"Counter-Strike Global Offensive",purchase,1.0,0 -201576436,"Counter-Strike Global Offensive",play,21.0,0 -201576436,"Dota 2",purchase,1.0,0 -201576436,"Dota 2",play,2.2,0 -83671083,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -83671083,"Call of Duty Advanced Warfare - Multiplayer",play,91.0,0 -83671083,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -83671083,"Call of Duty Black Ops II - Multiplayer",play,70.0,0 -83671083,"War Thunder",purchase,1.0,0 -83671083,"War Thunder",play,48.0,0 -83671083,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -83671083,"Call of Duty Modern Warfare 2 - Multiplayer",play,40.0,0 -83671083,"Robocraft",purchase,1.0,0 -83671083,"Robocraft",play,21.0,0 -83671083,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -83671083,"Call of Duty Black Ops - Multiplayer",play,19.0,0 -83671083,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -83671083,"Call of Duty Modern Warfare 3 - Multiplayer",play,17.6,0 -83671083,"Terraria",purchase,1.0,0 -83671083,"Terraria",play,15.6,0 -83671083,"Total War SHOGUN 2",purchase,1.0,0 -83671083,"Total War SHOGUN 2",play,13.9,0 -83671083,"Warframe",purchase,1.0,0 -83671083,"Warframe",play,10.3,0 -83671083,"Age of Empires II HD Edition",purchase,1.0,0 -83671083,"Age of Empires II HD Edition",play,7.9,0 -83671083,"Game Dev Tycoon",purchase,1.0,0 -83671083,"Game Dev Tycoon",play,7.4,0 -83671083,"Space Engineers",purchase,1.0,0 -83671083,"Space Engineers",play,6.8,0 -83671083,"Call of Duty Black Ops",purchase,1.0,0 -83671083,"Call of Duty Black Ops",play,6.2,0 -83671083,"Call of Duty Modern Warfare 3",purchase,1.0,0 -83671083,"Call of Duty Modern Warfare 3",play,5.0,0 -83671083,"Cities Skylines",purchase,1.0,0 -83671083,"Cities Skylines",play,4.4,0 -83671083,"Team Fortress 2",purchase,1.0,0 -83671083,"Team Fortress 2",play,3.2,0 -83671083,"Dota 2",purchase,1.0,0 -83671083,"Dota 2",play,2.6,0 -83671083,"Call of Duty Advanced Warfare",purchase,1.0,0 -83671083,"Call of Duty Advanced Warfare",play,1.8,0 -83671083,"Heroes & Generals",purchase,1.0,0 -83671083,"Heroes & Generals",play,1.8,0 -83671083,"Call of Duty Black Ops II",purchase,1.0,0 -83671083,"Call of Duty Black Ops II",play,1.1,0 -83671083,"Alien Swarm",purchase,1.0,0 -83671083,"Alien Swarm",play,0.8,0 -83671083,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -83671083,"Call of Duty Black Ops II - Zombies",play,0.7,0 -83671083,"Age of Chivalry",purchase,1.0,0 -83671083,"Age of Chivalry",play,0.7,0 -83671083,"AdVenture Capitalist",purchase,1.0,0 -83671083,"AdVenture Capitalist",play,0.4,0 -83671083,"ARK Survival Evolved",purchase,1.0,0 -83671083,"ARK Survival Evolved",play,0.4,0 -83671083,"Super Hexagon",purchase,1.0,0 -83671083,"Super Hexagon",play,0.2,0 -83671083,"Toribash",purchase,1.0,0 -83671083,"Toribash",play,0.2,0 -83671083,"Guns and Robots",purchase,1.0,0 -83671083,"Super Amazing Wagon Adventure",purchase,1.0,0 -83671083,"Call of Duty Modern Warfare 2",purchase,1.0,0 -83671083,"DCS World",purchase,1.0,0 -83671083,"SMITE",purchase,1.0,0 -158265363,"Team Fortress 2",purchase,1.0,0 -158265363,"Team Fortress 2",play,0.6,0 -225933183,"Counter-Strike Global Offensive",purchase,1.0,0 -225933183,"Counter-Strike Global Offensive",play,297.0,0 -225933183,"H1Z1",purchase,1.0,0 -225933183,"H1Z1",play,92.0,0 -225933183,"WARMODE",purchase,1.0,0 -225933183,"WARMODE",play,0.1,0 -225933183,"ArcheAge",purchase,1.0,0 -225933183,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -225933183,"H1Z1 Test Server",purchase,1.0,0 -225933183,"Nosgoth",purchase,1.0,0 -225933183,"Rise of Incarnates",purchase,1.0,0 -14216099,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -14216099,"Rising Storm/Red Orchestra 2 Multiplayer",play,1450.0,0 -14216099,"IL-2 Sturmovik Cliffs of Dover",purchase,1.0,0 -14216099,"IL-2 Sturmovik Cliffs of Dover",play,184.0,0 -14216099,"Arma 3",purchase,1.0,0 -14216099,"Arma 3",play,22.0,0 -14216099,"Sid Meier's Civilization V",purchase,1.0,0 -14216099,"Sid Meier's Civilization V",play,16.3,0 -14216099,"Panzer Corps",purchase,1.0,0 -14216099,"Panzer Corps",play,5.9,0 -14216099,"Company of Heroes",purchase,1.0,0 -14216099,"Company of Heroes Opposing Fronts",purchase,1.0,0 -14216099,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -14216099,"Company of Heroes Tales of Valor",purchase,1.0,0 -14216099,"Arma 3 Zeus",purchase,1.0,0 -14216099,"Company of Heroes (New Steam Version)",purchase,1.0,0 -14216099,"Counter-Strike Source",purchase,1.0,0 -14216099,"Half-Life 2",purchase,1.0,0 -14216099,"Half-Life 2 Deathmatch",purchase,1.0,0 -14216099,"Half-Life 2 Lost Coast",purchase,1.0,0 -60557056,"Counter-Strike Source",purchase,1.0,0 -60557056,"Counter-Strike Source",play,125.0,0 -60557056,"Age of Chivalry",purchase,1.0,0 -60557056,"Age of Chivalry",play,54.0,0 -60557056,"D.I.P.R.I.P. Warm Up",purchase,1.0,0 -60557056,"D.I.P.R.I.P. Warm Up",play,2.4,0 -60557056,"Eternal Silence",purchase,1.0,0 -60557056,"Eternal Silence",play,0.2,0 -60557056,"Day of Defeat Source",purchase,1.0,0 -60557056,"Half-Life 2 Deathmatch",purchase,1.0,0 -60557056,"Half-Life 2 Lost Coast",purchase,1.0,0 -175690339,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -175690339,"Sonic & All-Stars Racing Transformed",play,0.7,0 -255306029,"Dota 2",purchase,1.0,0 -255306029,"Dota 2",play,5.1,0 -31839832,"Counter-Strike",purchase,1.0,0 -31839832,"Counter-Strike",play,230.0,0 -31839832,"Counter-Strike Condition Zero",purchase,1.0,0 -31839832,"Counter-Strike Condition Zero",play,3.9,0 -31839832,"Day of Defeat",purchase,1.0,0 -31839832,"Day of Defeat",play,3.5,0 -31839832,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -31839832,"Deathmatch Classic",purchase,1.0,0 -31839832,"Lost Planet Extreme Condition",purchase,1.0,0 -31839832,"Ricochet",purchase,1.0,0 -99766416,"Half-Life 2",purchase,1.0,0 -99766416,"Half-Life 2",play,21.0,0 -99766416,"Half-Life 2 Episode One",purchase,1.0,0 -99766416,"Half-Life 2 Episode One",play,6.4,0 -99766416,"Half-Life 2 Episode Two",purchase,1.0,0 -99766416,"Half-Life 2 Episode Two",play,4.8,0 -99766416,"Portal",purchase,1.0,0 -99766416,"Portal",play,0.3,0 -99766416,"Half-Life 2 Lost Coast",purchase,1.0,0 -168011250,"Dota 2",purchase,1.0,0 -168011250,"Dota 2",play,35.0,0 -253611147,"Sid Meier's Civilization V",purchase,1.0,0 -253611147,"Sid Meier's Civilization V",play,6.9,0 -253611147,"The Four Kings Casino and Slots",purchase,1.0,0 -161084485,"Cities in Motion",purchase,1.0,0 -161084485,"Cities in Motion",play,6.1,0 -161084485,"Cities in Motion 2",purchase,1.0,0 -161084485,"Cities in Motion 2",play,5.5,0 -274785080,"Team Fortress 2",purchase,1.0,0 -274785080,"Team Fortress 2",play,85.0,0 -274785080,"Clicker Heroes",purchase,1.0,0 -274785080,"Clicker Heroes",play,37.0,0 -274785080,"Trove",purchase,1.0,0 -274785080,"Trove",play,30.0,0 -274785080,"Teeworlds",purchase,1.0,0 -274785080,"Teeworlds",play,21.0,0 -274785080,"Unturned",purchase,1.0,0 -274785080,"Unturned",play,9.4,0 -274785080,"AdVenture Capitalist",purchase,1.0,0 -274785080,"AdVenture Capitalist",play,9.0,0 -274785080,"BLOCKADE 3D",purchase,1.0,0 -274785080,"BLOCKADE 3D",play,7.7,0 -274785080,"Magicka Wizard Wars",purchase,1.0,0 -274785080,"Magicka Wizard Wars",play,4.8,0 -274785080,"Block N Load",purchase,1.0,0 -274785080,"Block N Load",play,3.6,0 -274785080,"Dungeon Defenders II",purchase,1.0,0 -274785080,"Dungeon Defenders II",play,3.4,0 -274785080,"Magic Duels",purchase,1.0,0 -274785080,"Magic Duels",play,2.5,0 -274785080,"The Expendabros",purchase,1.0,0 -274785080,"The Expendabros",play,2.4,0 -274785080,"Missing Translation",purchase,1.0,0 -274785080,"Missing Translation",play,2.2,0 -274785080,"Mitos.is The Game",purchase,1.0,0 -274785080,"Mitos.is The Game",play,2.2,0 -274785080,"You Have to Win the Game",purchase,1.0,0 -274785080,"You Have to Win the Game",play,2.0,0 -274785080,"SMITE",purchase,1.0,0 -274785080,"SMITE",play,2.0,0 -274785080,"Super Crate Box",purchase,1.0,0 -274785080,"Super Crate Box",play,1.6,0 -274785080,"Robocraft",purchase,1.0,0 -274785080,"Robocraft",play,1.3,0 -274785080,"Fistful of Frags",purchase,1.0,0 -274785080,"Fistful of Frags",play,1.2,0 -274785080,"Realm of the Mad God",purchase,1.0,0 -274785080,"Realm of the Mad God",play,0.9,0 -274785080,"Loadout",purchase,1.0,0 -274785080,"Loadout",play,0.9,0 -274785080,"Emily is Away",purchase,1.0,0 -274785080,"Emily is Away",play,0.9,0 -274785080,"Time Clickers",purchase,1.0,0 -274785080,"Time Clickers",play,0.7,0 -274785080,"Subspace Continuum",purchase,1.0,0 -274785080,"Subspace Continuum",play,0.7,0 -274785080,"Relic Hunters Zero",purchase,1.0,0 -274785080,"Relic Hunters Zero",play,0.5,0 -274785080,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -274785080,"Boring Man - Online Tactical Stickman Combat",play,0.4,0 -274785080,"Aftermath",purchase,1.0,0 -274785080,"Aftermath",play,0.4,0 -274785080,"Anarchy Arcade",purchase,1.0,0 -274785080,"Anarchy Arcade",play,0.4,0 -274785080,"Red Crucible Firestorm",purchase,1.0,0 -274785080,"Red Crucible Firestorm",play,0.2,0 -274785080,"Counter-Strike Nexon Zombies",purchase,1.0,0 -274785080,"Counter-Strike Nexon Zombies",play,0.2,0 -274785080,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -274785080,"S.K.I.L.L. - Special Force 2",play,0.1,0 -274785080,"WARMODE",purchase,1.0,0 -274785080,"WARMODE",play,0.1,0 -274785080,"The Mighty Quest For Epic Loot",purchase,1.0,0 -274785080,"Endless Sky",purchase,1.0,0 -274785080,"Blender 2.76b",purchase,1.0,0 -274785080,"Brick-Force",purchase,1.0,0 -274785080,"ShareX",purchase,1.0,0 -274785080,"Fishing Planet",purchase,1.0,0 -274785080,"Might & Magic Heroes Online",purchase,1.0,0 -274785080,"Modular Combat",purchase,1.0,0 -274785080,"Moonbase Alpha",purchase,1.0,0 -274785080,"No More Room in Hell",purchase,1.0,0 -274785080,"Piercing Blow",purchase,1.0,0 -274785080,"Pink Heaven",purchase,1.0,0 -274785080,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -274785080,"Portal Stories Mel",purchase,1.0,0 -274785080,"Steel Ocean",purchase,1.0,0 -274785080,"Survarium",purchase,1.0,0 -274785080,"The Way of Life Free Edition",purchase,1.0,0 -274785080,"War Thunder",purchase,1.0,0 -274785080,"World of Soccer online",purchase,1.0,0 -223660563,"Team Fortress 2",purchase,1.0,0 -223660563,"Team Fortress 2",play,53.0,0 -223660563,"The Expendabros",purchase,1.0,0 -223660563,"The Expendabros",play,34.0,0 -223660563,"Dirty Bomb",purchase,1.0,0 -223660563,"Dirty Bomb",play,0.5,0 -223660563,"Battle Battalions",purchase,1.0,0 -223660563,"Battle Battalions",play,0.3,0 -176590636,"Counter-Strike Global Offensive",purchase,1.0,0 -176590636,"Counter-Strike Global Offensive",play,23.0,0 -176590636,"Garry's Mod",purchase,1.0,0 -176590636,"Garry's Mod",play,13.4,0 -176590636,"Counter-Strike Source",purchase,1.0,0 -176590636,"Counter-Strike Source",play,0.1,0 -176590636,"Heroes & Generals",purchase,1.0,0 -176590636,"Loadout",purchase,1.0,0 -176590636,"Path of Exile",purchase,1.0,0 -176590636,"The Mighty Quest For Epic Loot",purchase,1.0,0 -164608800,"Blacklight Retribution",purchase,1.0,0 -164608800,"Blacklight Retribution",play,9.8,0 -164608800,"Loadout",purchase,1.0,0 -164608800,"Loadout",play,1.2,0 -164608800,"Guns and Robots",purchase,1.0,0 -164608800,"Guns and Robots",play,0.2,0 -239099727,"Dota 2",purchase,1.0,0 -239099727,"Dota 2",play,0.4,0 -203114983,"Team Fortress 2",purchase,1.0,0 -203114983,"Team Fortress 2",play,0.5,0 -203114983,"Get Off My Lawn!",purchase,1.0,0 -267250336,"F1 2015",purchase,1.0,0 -267250336,"F1 2015",play,7.6,0 -173940259,"Counter-Strike Global Offensive",purchase,1.0,0 -173940259,"Counter-Strike Global Offensive",play,1402.0,0 -173940259,"DayZ",purchase,1.0,0 -173940259,"DayZ",play,1291.0,0 -173940259,"H1Z1",purchase,1.0,0 -173940259,"H1Z1",play,275.0,0 -173940259,"Arma 3",purchase,1.0,0 -173940259,"Arma 3",play,71.0,0 -173940259,"Defiance",purchase,1.0,0 -173940259,"Defiance",play,41.0,0 -173940259,"Fallout 4",purchase,1.0,0 -173940259,"Fallout 4",play,39.0,0 -173940259,"Dirty Bomb",purchase,1.0,0 -173940259,"Dirty Bomb",play,32.0,0 -173940259,"Grand Theft Auto V",purchase,1.0,0 -173940259,"Grand Theft Auto V",play,26.0,0 -173940259,"Rocket League",purchase,1.0,0 -173940259,"Rocket League",play,20.0,0 -173940259,"Bloodline Champions",purchase,1.0,0 -173940259,"Bloodline Champions",play,8.1,0 -173940259,"Garry's Mod",purchase,1.0,0 -173940259,"Garry's Mod",play,5.7,0 -173940259,"Fallout New Vegas",purchase,1.0,0 -173940259,"Fallout New Vegas",play,3.2,0 -173940259,"Arma 3 Zeus",purchase,1.0,0 -173940259,"H1Z1 Test Server",purchase,1.0,0 -54111916,"Unturned",purchase,1.0,0 -212570211,"Counter-Strike Global Offensive",purchase,1.0,0 -212570211,"Counter-Strike Global Offensive",play,455.0,0 -212570211,"The Witcher 3 Wild Hunt",purchase,1.0,0 -212570211,"The Witcher 3 Wild Hunt",play,31.0,0 -212570211,"ARK Survival Evolved",purchase,1.0,0 -212570211,"ARK Survival Evolved",play,9.8,0 -212570211,"Fallout 4",purchase,1.0,0 -212570211,"Fallout 4",play,4.0,0 -212570211,"RaceRoom Racing Experience ",purchase,1.0,0 -212570211,"Stronghold Kingdoms",purchase,1.0,0 -212570211,"Neverwinter",purchase,1.0,0 -212570211,"The Lord of the Rings Online",purchase,1.0,0 -212570211,"AdVenture Capitalist",purchase,1.0,0 -212570211,"Champions Online",purchase,1.0,0 -212570211,"Pirates, Vikings, & Knights II",purchase,1.0,0 -212570211,"PlanetSide 2",purchase,1.0,0 -212570211,"Quake Live",purchase,1.0,0 -212570211,"Realm of the Mad God",purchase,1.0,0 -212570211,"RIFT",purchase,1.0,0 -212570211,"Robocraft",purchase,1.0,0 -212570211,"Unturned",purchase,1.0,0 -212570211,"Warframe",purchase,1.0,0 -212570211,"War Thunder",purchase,1.0,0 -153097805,"Left 4 Dead 2",purchase,1.0,0 -153097805,"Left 4 Dead 2",play,54.0,0 -153097805,"DARK SOULS II",purchase,1.0,0 -153097805,"DARK SOULS II",play,27.0,0 -153097805,"Outlast",purchase,1.0,0 -153097805,"Outlast",play,8.2,0 -153097805,"Terraria",purchase,1.0,0 -153097805,"Terraria",play,1.7,0 -153097805,"War Thunder",purchase,1.0,0 -153097805,"War Thunder",play,1.3,0 -41294957,"Counter-Strike Global Offensive",purchase,1.0,0 -41294957,"Counter-Strike Global Offensive",play,11.8,0 -111529766,"Awesomenauts",purchase,1.0,0 -111529766,"Awesomenauts",play,188.0,0 -111529766,"Natural Selection 2",purchase,1.0,0 -111529766,"Natural Selection 2",play,0.2,0 -111529766,"Worms Revolution",purchase,1.0,0 -111529766,"Worms Revolution",play,0.1,0 -111529766,"Only If",purchase,1.0,0 -111529766,"Pinball Arcade",purchase,1.0,0 -111529766,"Thinking with Time Machine",purchase,1.0,0 -111529766,"You Have to Win the Game",purchase,1.0,0 -47500408,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -47500408,"Call of Duty Modern Warfare 3 - Multiplayer",play,526.0,0 -47500408,"Deus Ex Human Revolution",purchase,1.0,0 -47500408,"Deus Ex Human Revolution",play,73.0,0 -47500408,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -47500408,"Call of Duty Black Ops II - Multiplayer",play,38.0,0 -47500408,"Call of Duty Modern Warfare 2",purchase,1.0,0 -47500408,"Call of Duty Modern Warfare 2",play,28.0,0 -47500408,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -47500408,"F.E.A.R. 2 Project Origin",play,14.5,0 -47500408,"Half-Life 2",purchase,1.0,0 -47500408,"Half-Life 2",play,12.6,0 -47500408,"Duke Nukem Forever",purchase,1.0,0 -47500408,"Duke Nukem Forever",play,12.4,0 -47500408,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -47500408,"Call of Duty Ghosts - Multiplayer",play,11.6,0 -47500408,"Call of Duty Black Ops II",purchase,1.0,0 -47500408,"Call of Duty Black Ops II",play,9.3,0 -47500408,"Call of Duty Ghosts",purchase,1.0,0 -47500408,"Call of Duty Ghosts",play,8.0,0 -47500408,"Call of Duty Modern Warfare 3",purchase,1.0,0 -47500408,"Call of Duty Modern Warfare 3",play,3.7,0 -47500408,"Zombie Panic Source",purchase,1.0,0 -47500408,"Zombie Panic Source",play,1.8,0 -47500408,"Half-Life 2 Lost Coast",purchase,1.0,0 -47500408,"Half-Life 2 Lost Coast",play,1.1,0 -47500408,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -47500408,"Call of Duty Black Ops II - Zombies",play,0.4,0 -47500408,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -179772319,"The Elder Scrolls V Skyrim",purchase,1.0,0 -179772319,"The Elder Scrolls V Skyrim",play,13.5,0 -179772319,"Path of Exile",purchase,1.0,0 -179772319,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -179772319,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -179772319,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -136557761,"Dota 2",purchase,1.0,0 -136557761,"Dota 2",play,0.4,0 -96282673,"FINAL FANTASY VIII",purchase,1.0,0 -96282673,"FINAL FANTASY VIII",play,185.0,0 -96282673,"FINAL FANTASY XIII",purchase,1.0,0 -96282673,"FINAL FANTASY XIII",play,64.0,0 -96282673,"Dota 2",purchase,1.0,0 -96282673,"Dota 2",play,52.0,0 -96282673,"Don't Starve",purchase,1.0,0 -96282673,"Don't Starve",play,37.0,0 -96282673,"Tomb Raider",purchase,1.0,0 -96282673,"Tomb Raider",play,25.0,0 -96282673,"The Elder Scrolls V Skyrim",purchase,1.0,0 -96282673,"The Elder Scrolls V Skyrim",play,20.0,0 -96282673,"Dust An Elysian Tail",purchase,1.0,0 -96282673,"Dust An Elysian Tail",play,11.6,0 -96282673,"Child of Light",purchase,1.0,0 -96282673,"Child of Light",play,10.8,0 -96282673,"Undertale",purchase,1.0,0 -96282673,"Undertale",play,10.6,0 -96282673,"Spore Galactic Adventures",purchase,1.0,0 -96282673,"Spore Galactic Adventures",play,9.7,0 -96282673,"THE KING OF FIGHTERS 2002 UNLIMITED MATCH",purchase,1.0,0 -96282673,"THE KING OF FIGHTERS 2002 UNLIMITED MATCH",play,8.0,0 -96282673,"Portal 2",purchase,1.0,0 -96282673,"Portal 2",play,3.8,0 -96282673,"Don't Starve Together Beta",purchase,1.0,0 -96282673,"Don't Starve Together Beta",play,1.9,0 -96282673,"Worms Armageddon",purchase,1.0,0 -96282673,"Worms Armageddon",play,1.0,0 -96282673,"Team Fortress 2",purchase,1.0,0 -96282673,"Team Fortress 2",play,1.0,0 -96282673,"THE KING OF FIGHTERS '98 ULTIMATE MATCH FINAL EDITION",purchase,1.0,0 -96282673,"THE KING OF FIGHTERS '98 ULTIMATE MATCH FINAL EDITION",play,0.9,0 -96282673,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -96282673,"THE KING OF FIGHTERS XIII STEAM EDITION",play,0.7,0 -96282673,"Castle Crashers",purchase,1.0,0 -96282673,"Castle Crashers",play,0.7,0 -96282673,"Ragnarok Online 2",purchase,1.0,0 -96282673,"Ragnarok Online 2",play,0.5,0 -96282673,"Lara Croft and the Guardian of Light",purchase,1.0,0 -96282673,"Lara Croft and the Guardian of Light",play,0.4,0 -96282673,"Spore Creepy & Cute Parts Pack",purchase,1.0,0 -96282673,"Spore Creepy & Cute Parts Pack",play,0.2,0 -96282673,"Tomb Raider Legend",purchase,1.0,0 -96282673,"Tomb Raider Legend",play,0.2,0 -96282673,"Age of Empires III Complete Collection",purchase,1.0,0 -96282673,"Age of Empires III Complete Collection",play,0.1,0 -96282673,"Left 4 Dead 2",purchase,1.0,0 -96282673,"Spore",purchase,1.0,0 -96282673,"EVGA PrecisionX 16",purchase,1.0,0 -96282673,"Afterfall InSanity Extended Edition",purchase,1.0,0 -96282673,"Amnesia The Dark Descent",purchase,1.0,0 -96282673,"BattleBlock Theater",purchase,1.0,0 -96282673,"BioShock Infinite",purchase,1.0,0 -96282673,"Blender 2.76b",purchase,1.0,0 -96282673,"Dead Island Epidemic",purchase,1.0,0 -96282673,"Don't Starve Reign of Giants",purchase,1.0,0 -96282673,"Fractured Space",purchase,1.0,0 -96282673,"Lilly and Sasha Nexus of Souls",purchase,1.0,0 -96282673,"PAYDAY The Heist",purchase,1.0,0 -96282673,"Portal Stories Mel",purchase,1.0,0 -96282673,"Shadowgrounds",purchase,1.0,0 -96282673,"Shadowgrounds Survivor",purchase,1.0,0 -96282673,"Stealth Inc 2",purchase,1.0,0 -96282673,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -96282673,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -96282673,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -96282673,"Trine",purchase,1.0,0 -96282673,"Trine 2",purchase,1.0,0 -240955030,"Robocraft",purchase,1.0,0 -240955030,"Robocraft",play,4.2,0 -239181509,"Caster",purchase,1.0,0 -194266152,"Dota 2",purchase,1.0,0 -194266152,"Dota 2",play,12.9,0 -194266152,"Free to Play",purchase,1.0,0 -119211545,"PAYDAY 2",purchase,1.0,0 -119211545,"PAYDAY 2",play,241.0,0 -119211545,"Hotline Miami 2 Wrong Number",purchase,1.0,0 -119211545,"Hotline Miami 2 Wrong Number",play,20.0,0 -119211545,"Garry's Mod",purchase,1.0,0 -119211545,"Garry's Mod",play,13.2,0 -119211545,"The Elder Scrolls V Skyrim",purchase,1.0,0 -119211545,"The Elder Scrolls V Skyrim",play,12.8,0 -119211545,"No More Room in Hell",purchase,1.0,0 -119211545,"No More Room in Hell",play,9.9,0 -119211545,"Heroes & Generals",purchase,1.0,0 -119211545,"Heroes & Generals",play,4.3,0 -119211545,"WARMODE",purchase,1.0,0 -119211545,"WARMODE",play,1.7,0 -119211545,"World of Guns Gun Disassembly",purchase,1.0,0 -119211545,"World of Guns Gun Disassembly",play,1.0,0 -119211545,"Warface",purchase,1.0,0 -119211545,"Warface",play,0.9,0 -119211545,"Terraria",purchase,1.0,0 -119211545,"Terraria",play,0.5,0 -119211545,"Team Fortress 2",purchase,1.0,0 -119211545,"Team Fortress 2",play,0.3,0 -119211545,"Stronghold Kingdoms",purchase,1.0,0 -119211545,"Among Ripples",purchase,1.0,0 -119211545,"RIFT",purchase,1.0,0 -215039865,"Dota 2",purchase,1.0,0 -215039865,"Dota 2",play,50.0,0 -215039865,"Chaos Heroes Online",purchase,1.0,0 -162214363,"Dota 2",purchase,1.0,0 -162214363,"Dota 2",play,1242.0,0 -162214363,"Counter-Strike Global Offensive",purchase,1.0,0 -162214363,"Counter-Strike Global Offensive",play,282.0,0 -162214363,"DayZ",purchase,1.0,0 -162214363,"DayZ",play,90.0,0 -162214363,"Mortal Kombat X",purchase,1.0,0 -162214363,"Mortal Kombat X",play,24.0,0 -162214363,"Rust",purchase,1.0,0 -162214363,"Rust",play,17.3,0 -162214363,"The Walking Dead Season Two",purchase,1.0,0 -162214363,"The Walking Dead Season Two",play,5.9,0 -162214363,"Killing Floor",purchase,1.0,0 -162214363,"Killing Floor",play,5.5,0 -162214363,"Insurgency",purchase,1.0,0 -162214363,"Insurgency",play,4.9,0 -162214363,"PAYDAY 2",purchase,1.0,0 -162214363,"PAYDAY 2",play,3.0,0 -162214363,"Arma 2 Operation Arrowhead",purchase,1.0,0 -162214363,"Arma 2 Operation Arrowhead",play,2.9,0 -162214363,"Sanctum 2",purchase,1.0,0 -162214363,"Sanctum 2",play,0.7,0 -162214363,"Super Meat Boy",purchase,1.0,0 -162214363,"Super Meat Boy",play,0.7,0 -162214363,"Nosgoth",purchase,1.0,0 -162214363,"Nosgoth",play,0.6,0 -162214363,"Ampu-Tea",purchase,1.0,0 -162214363,"Ampu-Tea",play,0.2,0 -162214363,"Worms Revolution",purchase,1.0,0 -162214363,"Worms Revolution",play,0.1,0 -162214363,"Unturned",purchase,1.0,0 -162214363,"Arma 2",purchase,1.0,0 -162214363,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -162214363,"Battle Mages",purchase,1.0,0 -162214363,"Gun Metal",purchase,1.0,0 -162214363,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -162214363,"Metro 2033",purchase,1.0,0 -162214363,"Quake Live",purchase,1.0,0 -162214363,"Rise of Incarnates",purchase,1.0,0 -162214363,"Robocraft",purchase,1.0,0 -162214363,"Sniper Elite V2",purchase,1.0,0 -162214363,"Star Conflict",purchase,1.0,0 -162214363,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -162214363,"The 11th Hour",purchase,1.0,0 -162214363,"Tomb Raider",purchase,1.0,0 -162214363,"War Thunder",purchase,1.0,0 -147228931,"Dota 2",purchase,1.0,0 -147228931,"Dota 2",play,3.4,0 -242052237,"Dota 2",purchase,1.0,0 -242052237,"Dota 2",play,1.6,0 -242052237,"FreeStyle2 Street Basketball",purchase,1.0,0 -242052237,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -252984367,"Spiral Knights",purchase,1.0,0 -101641872,"Team Fortress 2",purchase,1.0,0 -101641872,"Team Fortress 2",play,1.2,0 -254836819,"Dota 2",purchase,1.0,0 -254836819,"Dota 2",play,0.3,0 -280275540,"Trove",purchase,1.0,0 -280275540,"Trove",play,2.0,0 -280275540,"Team Fortress 2",purchase,1.0,0 -280275540,"Team Fortress 2",play,1.7,0 -280275540,"Smashmuck Champions",purchase,1.0,0 -280275540,"Smashmuck Champions",play,0.3,0 -280275540,"Unturned",purchase,1.0,0 -280275540,"Unturned",play,0.1,0 -280275540,"RaceRoom Racing Experience ",purchase,1.0,0 -280275540,"APB Reloaded",purchase,1.0,0 -280275540,"theHunter",purchase,1.0,0 -280275540,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -280275540,"Ultimate Tic-Tac-Toe",purchase,1.0,0 -133267799,"Dota 2",purchase,1.0,0 -133267799,"Dota 2",play,452.0,0 -164711200,"Dota 2",purchase,1.0,0 -164711200,"Dota 2",play,0.8,0 -105048330,"Dota 2",purchase,1.0,0 -105048330,"Dota 2",play,1.0,0 -50699197,"Left 4 Dead",purchase,1.0,0 -50699197,"Left 4 Dead",play,7.3,0 -108219790,"Call of Duty Modern Warfare 3",purchase,1.0,0 -108219790,"Call of Duty Modern Warfare 3",play,35.0,0 -108219790,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -108219790,"Call of Duty Modern Warfare 3 - Multiplayer",play,0.2,0 -38323067,"Warframe",purchase,1.0,0 -38323067,"Warframe",play,65.0,0 -38323067,"Team Fortress 2",purchase,1.0,0 -38323067,"Team Fortress 2",play,61.0,0 -38323067,"Serious Sam 3 BFE",purchase,1.0,0 -38323067,"Serious Sam 3 BFE",play,5.4,0 -38323067,"Borderlands 2",purchase,1.0,0 -38323067,"Borderlands 2",play,1.7,0 -38323067,"Dota 2",purchase,1.0,0 -38323067,"Dota 2",play,1.3,0 -38323067,"Defiance",purchase,1.0,0 -38323067,"Defiance",play,0.6,0 -38323067,"Left 4 Dead 2",purchase,1.0,0 -38323067,"Left 4 Dead 2",play,0.4,0 -38323067,"PlanetSide 2",purchase,1.0,0 -38323067,"Firefall",purchase,1.0,0 -87059822,"Rust",purchase,1.0,0 -87059822,"Rust",play,70.0,0 -87059822,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -87059822,"Fallout 3 - Game of the Year Edition",play,5.2,0 -87059822,"DCS World",purchase,1.0,0 -127894126,"Team Fortress 2",purchase,1.0,0 -127894126,"Team Fortress 2",play,18.2,0 -127894126,"Alien Swarm",purchase,1.0,0 -127894126,"Alien Swarm",play,2.5,0 -115404202,"Left 4 Dead 2",purchase,1.0,0 -115404202,"Left 4 Dead 2",play,35.0,0 -250364324,"Dota 2",purchase,1.0,0 -250364324,"Dota 2",play,8.1,0 -187865224,"Dota 2",purchase,1.0,0 -187865224,"Dota 2",play,1.2,0 -153633636,"Batman Arkham Origins",purchase,1.0,0 -153633636,"Batman Arkham Origins",play,151.0,0 -153633636,"Batman Arkham Knight",purchase,1.0,0 -153633636,"Batman Arkham Knight",play,2.8,0 -153633636,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -153633636,"Batman Arkham City GOTY",purchase,1.0,0 -153633636,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -153633636,"Batman Arkham Origins - Initiation",purchase,1.0,0 -153633636,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -153633636,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -153633636,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -153633636,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -149505485,"Unturned",purchase,1.0,0 -149505485,"Unturned",play,191.0,0 -149505485,"Age of Empires III Complete Collection",purchase,1.0,0 -149505485,"Age of Empires III Complete Collection",play,67.0,0 -149505485,"Team Fortress 2",purchase,1.0,0 -149505485,"Team Fortress 2",play,59.0,0 -149505485,"Garry's Mod",purchase,1.0,0 -149505485,"Garry's Mod",play,33.0,0 -149505485,"The Escapists",purchase,1.0,0 -149505485,"The Escapists",play,7.8,0 -149505485,"Dirty Bomb",purchase,1.0,0 -149505485,"Dirty Bomb",play,0.3,0 -149505485,"theHunter",purchase,1.0,0 -149505485,"SMITE",purchase,1.0,0 -144578181,"Dota 2",purchase,1.0,0 -144578181,"Dota 2",play,28.0,0 -144578181,"Counter-Strike Global Offensive",purchase,1.0,0 -144578181,"Counter-Strike Global Offensive",play,1.1,0 -144578181,"You Need A Budget 4 (YNAB)",purchase,1.0,0 -144578181,"You Need A Budget 4 (YNAB)",play,1.0,0 -144578181,"Counter-Strike Condition Zero",purchase,1.0,0 -144578181,"Counter-Strike Condition Zero",play,0.2,0 -144578181,"Counter-Strike",purchase,1.0,0 -144578181,"Counter-Strike",play,0.1,0 -144578181,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -144578181,"Counter-Strike Source",purchase,1.0,0 -122026623,"Europa Universalis III",purchase,1.0,0 -122026623,"Europa Universalis III",play,306.0,0 -122026623,"Empire Total War",purchase,1.0,0 -122026623,"Empire Total War",play,296.0,0 -122026623,"Insurgency",purchase,1.0,0 -122026623,"Insurgency",play,283.0,0 -122026623,"Total War ROME II - Emperor Edition",purchase,1.0,0 -122026623,"Total War ROME II - Emperor Edition",play,272.0,0 -122026623,"Chivalry Medieval Warfare",purchase,1.0,0 -122026623,"Chivalry Medieval Warfare",play,186.0,0 -122026623,"Napoleon Total War",purchase,1.0,0 -122026623,"Napoleon Total War",play,121.0,0 -122026623,"Assassin's Creed IV Black Flag",purchase,1.0,0 -122026623,"Assassin's Creed IV Black Flag",play,116.0,0 -122026623,"Assassin's Creed Brotherhood",purchase,1.0,0 -122026623,"Assassin's Creed Brotherhood",play,96.0,0 -122026623,"Path of Exile",purchase,1.0,0 -122026623,"Path of Exile",play,91.0,0 -122026623,"Total War SHOGUN 2",purchase,1.0,0 -122026623,"Total War SHOGUN 2",play,69.0,0 -122026623,"Tropico 4",purchase,1.0,0 -122026623,"Tropico 4",play,65.0,0 -122026623,"Assassin's Creed III",purchase,1.0,0 -122026623,"Assassin's Creed III",play,63.0,0 -122026623,"Batman Arkham City GOTY",purchase,1.0,0 -122026623,"Batman Arkham City GOTY",play,60.0,0 -122026623,"Sleeping Dogs",purchase,1.0,0 -122026623,"Sleeping Dogs",play,52.0,0 -122026623,"Rise of Nations Extended Edition",purchase,1.0,0 -122026623,"Rise of Nations Extended Edition",play,46.0,0 -122026623,"Max Payne 3",purchase,1.0,0 -122026623,"Max Payne 3",play,38.0,0 -122026623,"Assassin's Creed Revelations",purchase,1.0,0 -122026623,"Assassin's Creed Revelations",play,38.0,0 -122026623,"Torchlight II",purchase,1.0,0 -122026623,"Torchlight II",play,37.0,0 -122026623,"Mount & Blade With Fire and Sword",purchase,1.0,0 -122026623,"Mount & Blade With Fire and Sword",play,33.0,0 -122026623,"The Darkness II",purchase,1.0,0 -122026623,"The Darkness II",play,31.0,0 -122026623,"Max Payne",purchase,1.0,0 -122026623,"Max Payne",play,31.0,0 -122026623,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -122026623,"Batman Arkham Asylum GOTY Edition",play,30.0,0 -122026623,"Assassin's Creed",purchase,1.0,0 -122026623,"Assassin's Creed",play,29.0,0 -122026623,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -122026623,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,24.0,0 -122026623,"Wolfenstein The Old Blood ",purchase,1.0,0 -122026623,"Wolfenstein The Old Blood ",play,24.0,0 -122026623,"Company of Heroes 2",purchase,1.0,0 -122026623,"Company of Heroes 2",play,22.0,0 -122026623,"Far Cry 3",purchase,1.0,0 -122026623,"Far Cry 3",play,22.0,0 -122026623,"Borderlands",purchase,1.0,0 -122026623,"Borderlands",play,22.0,0 -122026623,"Mount & Blade Warband",purchase,1.0,0 -122026623,"Mount & Blade Warband",play,21.0,0 -122026623,"Mafia II",purchase,1.0,0 -122026623,"Mafia II",play,21.0,0 -122026623,"MEDIEVAL Total War - Gold Edition",purchase,1.0,0 -122026623,"MEDIEVAL Total War - Gold Edition",play,20.0,0 -122026623,"DOOM II Hell on Earth",purchase,1.0,0 -122026623,"DOOM II Hell on Earth",play,19.9,0 -122026623,"Call of Juarez Gunslinger",purchase,1.0,0 -122026623,"Call of Juarez Gunslinger",play,19.6,0 -122026623,"Road Redemption",purchase,1.0,0 -122026623,"Road Redemption",play,19.4,0 -122026623,"Assassin's Creed II",purchase,1.0,0 -122026623,"Assassin's Creed II",play,19.3,0 -122026623,"Wolfenstein The New Order",purchase,1.0,0 -122026623,"Wolfenstein The New Order",play,19.0,0 -122026623,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -122026623,"Warhammer 40,000 Dawn of War Dark Crusade",play,18.9,0 -122026623,"Need for Speed Undercover",purchase,1.0,0 -122026623,"Need for Speed Undercover",play,18.0,0 -122026623,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -122026623,"Red Faction Guerrilla Steam Edition",play,17.9,0 -122026623,"Remember Me",purchase,1.0,0 -122026623,"Remember Me",play,17.6,0 -122026623,"Sniper Elite V2",purchase,1.0,0 -122026623,"Sniper Elite V2",play,16.0,0 -122026623,"Call of Duty Modern Warfare 2",purchase,1.0,0 -122026623,"Call of Duty Modern Warfare 2",play,15.6,0 -122026623,"Medieval II Total War",purchase,1.0,0 -122026623,"Medieval II Total War",play,14.2,0 -122026623,"Shadow Warrior",purchase,1.0,0 -122026623,"Shadow Warrior",play,13.6,0 -122026623,"Red Faction Armageddon",purchase,1.0,0 -122026623,"Red Faction Armageddon",play,13.2,0 -122026623,"Verdun",purchase,1.0,0 -122026623,"Verdun",play,12.0,0 -122026623,"Warhammer 40,000 Space Marine",purchase,1.0,0 -122026623,"Warhammer 40,000 Space Marine",play,10.5,0 -122026623,"Far Cry 3 Blood Dragon",purchase,1.0,0 -122026623,"Far Cry 3 Blood Dragon",play,10.4,0 -122026623,"Broforce",purchase,1.0,0 -122026623,"Broforce",play,10.3,0 -122026623,"Killing Floor 2",purchase,1.0,0 -122026623,"Killing Floor 2",play,10.2,0 -122026623,"Spec Ops The Line",purchase,1.0,0 -122026623,"Spec Ops The Line",play,9.6,0 -122026623,"Battlefield Bad Company 2",purchase,1.0,0 -122026623,"Battlefield Bad Company 2",play,9.4,0 -122026623,"Metro 2033 Redux",purchase,1.0,0 -122026623,"Metro 2033 Redux",play,9.2,0 -122026623,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -122026623,"The Witcher 2 Assassins of Kings Enhanced Edition",play,8.6,0 -122026623,"Portal 2",purchase,1.0,0 -122026623,"Portal 2",play,8.0,0 -122026623,"Renegade Ops",purchase,1.0,0 -122026623,"Renegade Ops",play,7.9,0 -122026623,"Hard Reset",purchase,1.0,0 -122026623,"Hard Reset",play,7.6,0 -122026623,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -122026623,"Warhammer 40,000 Dawn of War Winter Assault",play,7.4,0 -122026623,"Supreme Commander",purchase,1.0,0 -122026623,"Supreme Commander",play,7.1,0 -122026623,"Borderlands 2",purchase,1.0,0 -122026623,"Borderlands 2",play,7.1,0 -122026623,"Mirror's Edge",purchase,1.0,0 -122026623,"Mirror's Edge",play,6.7,0 -122026623,"Grand Theft Auto III",purchase,1.0,0 -122026623,"Grand Theft Auto III",play,5.6,0 -122026623,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -122026623,"Call of Duty 4 Modern Warfare",play,5.6,0 -122026623,"Hitman Absolution",purchase,1.0,0 -122026623,"Hitman Absolution",play,5.3,0 -122026623,"Platypus",purchase,1.0,0 -122026623,"Platypus",play,5.2,0 -122026623,"Platypus II",purchase,1.0,0 -122026623,"Platypus II",play,5.0,0 -122026623,"Deadlight",purchase,1.0,0 -122026623,"Deadlight",play,5.0,0 -122026623,"Gunpoint",purchase,1.0,0 -122026623,"Gunpoint",play,5.0,0 -122026623,"Trine",purchase,1.0,0 -122026623,"Trine",play,4.5,0 -122026623,"Age of Empires III Complete Collection",purchase,1.0,0 -122026623,"Age of Empires III Complete Collection",play,4.3,0 -122026623,"Mark of the Ninja",purchase,1.0,0 -122026623,"Mark of the Ninja",play,4.0,0 -122026623,"Race The Sun",purchase,1.0,0 -122026623,"Race The Sun",play,4.0,0 -122026623,"SteamWorld Dig",purchase,1.0,0 -122026623,"SteamWorld Dig",play,3.2,0 -122026623,"Portal",purchase,1.0,0 -122026623,"Portal",play,3.2,0 -122026623,"Deponia",purchase,1.0,0 -122026623,"Deponia",play,2.9,0 -122026623,"Natural Selection 2",purchase,1.0,0 -122026623,"Natural Selection 2",play,2.8,0 -122026623,"Company of Heroes (New Steam Version)",purchase,1.0,0 -122026623,"Company of Heroes (New Steam Version)",play,2.5,0 -122026623,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -122026623,"Fallout 3 - Game of the Year Edition",play,2.2,0 -122026623,"Apotheon",purchase,1.0,0 -122026623,"Apotheon",play,2.1,0 -122026623,"Wargame European Escalation",purchase,1.0,0 -122026623,"Wargame European Escalation",play,1.9,0 -122026623,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -122026623,"Rising Storm/Red Orchestra 2 Multiplayer",play,1.9,0 -122026623,"Victoria II",purchase,1.0,0 -122026623,"Victoria II",play,1.9,0 -122026623,"Strike Suit Infinity",purchase,1.0,0 -122026623,"Strike Suit Infinity",play,1.8,0 -122026623,"Monaco",purchase,1.0,0 -122026623,"Monaco",play,1.7,0 -122026623,"LUFTRAUSERS",purchase,1.0,0 -122026623,"LUFTRAUSERS",play,1.6,0 -122026623,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -122026623,"METAL GEAR RISING REVENGEANCE",play,1.6,0 -122026623,"Cossacks European Wars",purchase,1.0,0 -122026623,"Cossacks European Wars",play,1.5,0 -122026623,"Stealth Bastard Deluxe",purchase,1.0,0 -122026623,"Stealth Bastard Deluxe",play,1.3,0 -122026623,"LEGO The Lord of the Rings",purchase,1.0,0 -122026623,"LEGO The Lord of the Rings",play,1.2,0 -122026623,"Left 4 Dead 2",purchase,1.0,0 -122026623,"Left 4 Dead 2",play,1.2,0 -122026623,"Fallout New Vegas",purchase,1.0,0 -122026623,"Fallout New Vegas",play,1.1,0 -122026623,"Dishonored",purchase,1.0,0 -122026623,"Dishonored",play,1.1,0 -122026623,"Need for Speed Hot Pursuit",purchase,1.0,0 -122026623,"Need for Speed Hot Pursuit",play,1.0,0 -122026623,"Hitman Sniper Challenge",purchase,1.0,0 -122026623,"Hitman Sniper Challenge",play,0.9,0 -122026623,"Surgeon Simulator",purchase,1.0,0 -122026623,"Surgeon Simulator",play,0.8,0 -122026623,"Prince of Persia",purchase,1.0,0 -122026623,"Prince of Persia",play,0.8,0 -122026623,"Hearts of Iron III",purchase,1.0,0 -122026623,"Hearts of Iron III",play,0.7,0 -122026623,"The Elder Scrolls V Skyrim",purchase,1.0,0 -122026623,"The Elder Scrolls V Skyrim",play,0.7,0 -122026623,"World of Goo",purchase,1.0,0 -122026623,"World of Goo",play,0.6,0 -122026623,"Deus Ex Human Revolution",purchase,1.0,0 -122026623,"Deus Ex Human Revolution",play,0.6,0 -122026623,"Knights of Honor",purchase,1.0,0 -122026623,"Knights of Honor",play,0.6,0 -122026623,"Virtua Tennis 4",purchase,1.0,0 -122026623,"Virtua Tennis 4",play,0.6,0 -122026623,"The Witcher Enhanced Edition",purchase,1.0,0 -122026623,"The Witcher Enhanced Edition",play,0.5,0 -122026623,"The Expendabros",purchase,1.0,0 -122026623,"The Expendabros",play,0.5,0 -122026623,"Terraria",purchase,1.0,0 -122026623,"Terraria",play,0.5,0 -122026623,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -122026623,"Dragon Age Origins - Ultimate Edition",play,0.5,0 -122026623,"Risk of Rain",purchase,1.0,0 -122026623,"Risk of Rain",play,0.5,0 -122026623,"Super Meat Boy",purchase,1.0,0 -122026623,"Super Meat Boy",play,0.4,0 -122026623,"E.Y.E Divine Cybermancy",purchase,1.0,0 -122026623,"E.Y.E Divine Cybermancy",play,0.4,0 -122026623,"Company of Heroes Tales of Valor",purchase,1.0,0 -122026623,"Company of Heroes Tales of Valor",play,0.4,0 -122026623,"Grand Theft Auto Vice City",purchase,1.0,0 -122026623,"Grand Theft Auto Vice City",play,0.4,0 -122026623,"Need for Speed SHIFT",purchase,1.0,0 -122026623,"Need for Speed SHIFT",play,0.4,0 -122026623,"Interstellar Marines",purchase,1.0,0 -122026623,"Interstellar Marines",play,0.3,0 -122026623,"Euro Truck Simulator 2",purchase,1.0,0 -122026623,"Euro Truck Simulator 2",play,0.3,0 -122026623,"PixelJunk Eden",purchase,1.0,0 -122026623,"PixelJunk Eden",play,0.3,0 -122026623,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -122026623,"Deus Ex Human Revolution - The Missing Link",play,0.3,0 -122026623,"Saints Row 2",purchase,1.0,0 -122026623,"Saints Row 2",play,0.3,0 -122026623,"Dirty Bomb",purchase,1.0,0 -122026623,"Dirty Bomb",play,0.2,0 -122026623,"Machinarium",purchase,1.0,0 -122026623,"Machinarium",play,0.2,0 -122026623,"The Ultimate DOOM",purchase,1.0,0 -122026623,"The Ultimate DOOM",play,0.2,0 -122026623,"Monkey Island 2 Special Edition",purchase,1.0,0 -122026623,"Monkey Island 2 Special Edition",play,0.2,0 -122026623,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -122026623,"The Elder Scrolls IV Oblivion ",play,0.2,0 -122026623,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -122026623,"Viscera Cleanup Detail Shadow Warrior",play,0.2,0 -122026623,"Ring Runner Flight of the Sages",purchase,1.0,0 -122026623,"Ring Runner Flight of the Sages",play,0.1,0 -122026623,"Receiver",purchase,1.0,0 -122026623,"Receiver",play,0.1,0 -122026623,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -122026623,"THE KING OF FIGHTERS XIII STEAM EDITION",play,0.1,0 -122026623,"Saints Row The Third",purchase,1.0,0 -122026623,"Saints Row The Third",play,0.1,0 -122026623,"Arma Cold War Assault",purchase,1.0,0 -122026623,"Supreme Commander Forged Alliance",purchase,1.0,0 -122026623,"Kerbal Space Program",purchase,1.0,0 -122026623,"Wargame AirLand Battle",purchase,1.0,0 -122026623,"F.E.A.R.",purchase,1.0,0 -122026623,"Cossacks Back to War",purchase,1.0,0 -122026623,"Mass Effect",purchase,1.0,0 -122026623,"Shadow Warrior Classic (1997)",purchase,1.0,0 -122026623,"Men of War Assault Squad",purchase,1.0,0 -122026623,"Cossacks Art of War",purchase,1.0,0 -122026623,"Hitman Blood Money",purchase,1.0,0 -122026623,"Act of War Direct Action",purchase,1.0,0 -122026623,"Act of War High Treason",purchase,1.0,0 -122026623,"Afterfall InSanity Extended Edition",purchase,1.0,0 -122026623,"Age of Empires II HD Edition",purchase,1.0,0 -122026623,"Age of Empires II HD The Forgotten",purchase,1.0,0 -122026623,"Albedo Eyes from Outer Space",purchase,1.0,0 -122026623,"Alien Isolation",purchase,1.0,0 -122026623,"Alien Carnage / Halloween Harry",purchase,1.0,0 -122026623,"Alone in the Dark",purchase,1.0,0 -122026623,"Always Sometimes Monsters",purchase,1.0,0 -122026623,"American Conquest",purchase,1.0,0 -122026623,"American Conquest - Fight Back",purchase,1.0,0 -122026623,"Amnesia A Machine for Pigs",purchase,1.0,0 -122026623,"Amnesia The Dark Descent",purchase,1.0,0 -122026623,"Arctic Adventure",purchase,1.0,0 -122026623,"Balls of Steel",purchase,1.0,0 -122026623,"Battlestations Midway",purchase,1.0,0 -122026623,"Battlestations Pacific",purchase,1.0,0 -122026623,"Bio Menace",purchase,1.0,0 -122026623,"BioShock",purchase,1.0,0 -122026623,"BioShock 2",purchase,1.0,0 -122026623,"BioShock Infinite",purchase,1.0,0 -122026623,"BioShock Infinite - Season Pass",purchase,1.0,0 -122026623,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -122026623,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -122026623,"Blackguards",purchase,1.0,0 -122026623,"Blade Symphony",purchase,1.0,0 -122026623,"Blake Stone Aliens of Gold",purchase,1.0,0 -122026623,"Blake Stone Planet Strike",purchase,1.0,0 -122026623,"Boid",purchase,1.0,0 -122026623,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -122026623,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -122026623,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -122026623,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -122026623,"Brtal Legend",purchase,1.0,0 -122026623,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -122026623,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -122026623,"Call of Duty World at War",purchase,1.0,0 -122026623,"Call of Juarez",purchase,1.0,0 -122026623,"Call of Juarez Bound in Blood",purchase,1.0,0 -122026623,"Canyon Capers",purchase,1.0,0 -122026623,"Chaos Domain",purchase,1.0,0 -122026623,"Chariot",purchase,1.0,0 -122026623,"Cities in Motion",purchase,1.0,0 -122026623,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -122026623,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -122026623,"Commander Keen Complete Pack",purchase,1.0,0 -122026623,"Commandos 2 Men of Courage",purchase,1.0,0 -122026623,"Commandos 3 Destination Berlin",purchase,1.0,0 -122026623,"Commandos Behind Enemy Lines",purchase,1.0,0 -122026623,"Commandos Beyond the Call of Duty",purchase,1.0,0 -122026623,"Containment The Zombie Puzzler",purchase,1.0,0 -122026623,"Cosmo's Cosmic Adventure",purchase,1.0,0 -122026623,"Cossacks II Battle for Europe",purchase,1.0,0 -122026623,"Cossacks II Napoleonic Wars",purchase,1.0,0 -122026623,"Crusader Kings II",purchase,1.0,0 -122026623,"Crystal Caves",purchase,1.0,0 -122026623,"Dark Ages",purchase,1.0,0 -122026623,"Darkest Hour A Hearts of Iron Game",purchase,1.0,0 -122026623,"Dawn of Discovery",purchase,1.0,0 -122026623,"Dawn of Discovery - Demo",purchase,1.0,0 -122026623,"Dawn of Discovery - Venice",purchase,1.0,0 -122026623,"Deadbreed",purchase,1.0,0 -122026623,"Deadlight Original Soundtrack",purchase,1.0,0 -122026623,"Dead Space",purchase,1.0,0 -122026623,"Dead Space 2",purchase,1.0,0 -122026623,"Death Rally (Classic)",purchase,1.0,0 -122026623,"Demonicon",purchase,1.0,0 -122026623,"Deus Ex Game of the Year Edition",purchase,1.0,0 -122026623,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -122026623,"Deus Ex Invisible War",purchase,1.0,0 -122026623,"DmC Devil May Cry",purchase,1.0,0 -122026623,"DOOM 3 BFG Edition",purchase,1.0,0 -122026623,"Door Kickers",purchase,1.0,0 -122026623,"Duke Nukem",purchase,1.0,0 -122026623,"Duke Nukem 2",purchase,1.0,0 -122026623,"Duke Nukem 3D",purchase,1.0,0 -122026623,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -122026623,"Duke Nukem Manhattan Project",purchase,1.0,0 -122026623,"Eldritch",purchase,1.0,0 -122026623,"Eurofighter Typhoon",purchase,1.0,0 -122026623,"Europa Universalis Rome - Gold Edition",purchase,1.0,0 -122026623,"Europa Universalis Rome - Vae Victis",purchase,1.0,0 -122026623,"Europa Universalis III Divine Wind",purchase,1.0,0 -122026623,"Europa Universalis III Heir to the Throne",purchase,1.0,0 -122026623,"Evoland",purchase,1.0,0 -122026623,"Expeditions Conquistador",purchase,1.0,0 -122026623,"F.E.A.R. Extraction Point",purchase,1.0,0 -122026623,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -122026623,"Faces of War",purchase,1.0,0 -122026623,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -122026623,"Fallout New Vegas Dead Money",purchase,1.0,0 -122026623,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -122026623,"Far Cry 2",purchase,1.0,0 -122026623,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -122026623,"FEZ",purchase,1.0,0 -122026623,"Final DOOM",purchase,1.0,0 -122026623,"For The Glory",purchase,1.0,0 -122026623,"Full Mojo Rampage",purchase,1.0,0 -122026623,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -122026623,"GoD Factory Wingmen",purchase,1.0,0 -122026623,"God Mode",purchase,1.0,0 -122026623,"Gone Home",purchase,1.0,0 -122026623,"Grand Theft Auto",purchase,1.0,0 -122026623,"Grand Theft Auto 2",purchase,1.0,0 -122026623,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -122026623,"Grand Theft Auto San Andreas",purchase,1.0,0 -122026623,"Grand Theft Auto San Andreas",purchase,1.0,0 -122026623,"Grand Theft Auto Vice City",purchase,1.0,0 -122026623,"Grand Theft Auto III",purchase,1.0,0 -122026623,"Grand Theft Auto IV",purchase,1.0,0 -122026623,"Gray Matter",purchase,1.0,0 -122026623,"GRID",purchase,1.0,0 -122026623,"GRID 2",purchase,1.0,0 -122026623,"Grimoire Manastorm",purchase,1.0,0 -122026623,"Guacamelee! Super Turbo Championship Edition",purchase,1.0,0 -122026623,"Gun Monkeys",purchase,1.0,0 -122026623,"Half-Life 2",purchase,1.0,0 -122026623,"Half-Life 2 Episode One",purchase,1.0,0 -122026623,"Half-Life 2 Episode Two",purchase,1.0,0 -122026623,"Half-Life 2 Lost Coast",purchase,1.0,0 -122026623,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",purchase,1.0,0 -122026623,"Hammerwatch",purchase,1.0,0 -122026623,"Hard Reset Exile DLC",purchase,1.0,0 -122026623,"HAWKEN",purchase,1.0,0 -122026623,"Hearts of Iron II Complete",purchase,1.0,0 -122026623,"Hearts of Iron III German II Sprite Pack",purchase,1.0,0 -122026623,"Hocus Pocus",purchase,1.0,0 -122026623,"Imperial Glory",purchase,1.0,0 -122026623,"Imperium Romanum Gold Edition",purchase,1.0,0 -122026623,"Insanely Twisted Shadow Planet",purchase,1.0,0 -122026623,"Ionball 2 Ionstorm",purchase,1.0,0 -122026623,"Iron Warriors T-72 Tank Command",purchase,1.0,0 -122026623,"Jamestown",purchase,1.0,0 -122026623,"Jazzpunk",purchase,1.0,0 -122026623,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -122026623,"Kane & Lynch Dead Men",purchase,1.0,0 -122026623,"KickBeat Steam Edition",purchase,1.0,0 -122026623,"Killing Floor",purchase,1.0,0 -122026623,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -122026623,"Knytt Underground",purchase,1.0,0 -122026623,"L.A. Noire",purchase,1.0,0 -122026623,"Lara Croft and the Guardian of Light",purchase,1.0,0 -122026623,"Legend of Grimrock",purchase,1.0,0 -122026623,"LEGO The Hobbit",purchase,1.0,0 -122026623,"Lichdom Battlemage",purchase,1.0,0 -122026623,"Magicka",purchase,1.0,0 -122026623,"Magicka Final Frontier",purchase,1.0,0 -122026623,"Magicka Frozen Lake",purchase,1.0,0 -122026623,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -122026623,"Magicka Nippon",purchase,1.0,0 -122026623,"Magicka Party Robes",purchase,1.0,0 -122026623,"Magicka The Watchtower",purchase,1.0,0 -122026623,"Magicka Vietnam",purchase,1.0,0 -122026623,"Magicka Wizard's Survival Kit",purchase,1.0,0 -122026623,"Major Stryker",purchase,1.0,0 -122026623,"March of the Eagles",purchase,1.0,0 -122026623,"Mark of the Ninja Special Edition DLC",purchase,1.0,0 -122026623,"Master Levels for DOOM II",purchase,1.0,0 -122026623,"Math Rescue",purchase,1.0,0 -122026623,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -122026623,"Max Payne 3 Season Pass",purchase,1.0,0 -122026623,"Medieval II Total War Kingdoms",purchase,1.0,0 -122026623,"Memories of a Vagabond",purchase,1.0,0 -122026623,"Men of War",purchase,1.0,0 -122026623,"Men of War Red Tide",purchase,1.0,0 -122026623,"Men of War Vietnam",purchase,1.0,0 -122026623,"Metro 2033",purchase,1.0,0 -122026623,"Metro Last Light Redux",purchase,1.0,0 -122026623,"Monster Bash",purchase,1.0,0 -122026623,"Monuments of Mars",purchase,1.0,0 -122026623,"MURDERED SOUL SUSPECT",purchase,1.0,0 -122026623,"Mystic Towers",purchase,1.0,0 -122026623,"Nosgoth",purchase,1.0,0 -122026623,"Nux",purchase,1.0,0 -122026623,"Oddworld Abe's Oddysee",purchase,1.0,0 -122026623,"Of Orcs And Men",purchase,1.0,0 -122026623,"OlliOlli",purchase,1.0,0 -122026623,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -122026623,"Operation Flashpoint Red River",purchase,1.0,0 -122026623,"Orcs Must Die! 2",purchase,1.0,0 -122026623,"ORION Prelude",purchase,1.0,0 -122026623,"Overlord",purchase,1.0,0 -122026623,"Overlord Raising Hell",purchase,1.0,0 -122026623,"Overlord II",purchase,1.0,0 -122026623,"Paganitzu",purchase,1.0,0 -122026623,"Patch testing for Chivalry",purchase,1.0,0 -122026623,"PAYDAY The Heist",purchase,1.0,0 -122026623,"PAYDAY The Web Series - Episode 1",purchase,1.0,0 -122026623,"Penguins Arena Sedna's World",purchase,1.0,0 -122026623,"Pharaoh's Tomb",purchase,1.0,0 -122026623,"PixelJunk Monsters Ultimate",purchase,1.0,0 -122026623,"PixelJunk Shooter",purchase,1.0,0 -122026623,"Pixel Piracy",purchase,1.0,0 -122026623,"Planetary Annihilation",purchase,1.0,0 -122026623,"POSTAL",purchase,1.0,0 -122026623,"Praetorians",purchase,1.0,0 -122026623,"Primal Carnage",purchase,1.0,0 -122026623,"Prison Architect",purchase,1.0,0 -122026623,"Prototype",purchase,1.0,0 -122026623,"R.U.S.E",purchase,1.0,0 -122026623,"R.U.S.E.",purchase,1.0,0 -122026623,"Racer 8",purchase,1.0,0 -122026623,"RAGE",purchase,1.0,0 -122026623,"Raptor Call of the Shadows (1994 Classic Edition)",purchase,1.0,0 -122026623,"Real Boxing",purchase,1.0,0 -122026623,"Realms of Chaos",purchase,1.0,0 -122026623,"Risen",purchase,1.0,0 -122026623,"Rise of the Argonauts",purchase,1.0,0 -122026623,"Rise of the Triad Dark War",purchase,1.0,0 -122026623,"Rock of Ages",purchase,1.0,0 -122026623,"Rome Total War",purchase,1.0,0 -122026623,"Rome Total War - Alexander",purchase,1.0,0 -122026623,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -122026623,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -122026623,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -122026623,"Saints Row IV",purchase,1.0,0 -122026623,"Sanctum",purchase,1.0,0 -122026623,"Secret Agent",purchase,1.0,0 -122026623,"Shadow Warrior (Classic)",purchase,1.0,0 -122026623,"Shattered Horizon",purchase,1.0,0 -122026623,"Shift 2 Unleashed",purchase,1.0,0 -122026623,"SHOGUN Total War - Gold Edition",purchase,1.0,0 -122026623,"Sid Meier's Pirates!",purchase,1.0,0 -122026623,"Sigils of Elohim",purchase,1.0,0 -122026623,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -122026623,"Sniper Elite 3",purchase,1.0,0 -122026623,"Sniper Ghost Warrior 2",purchase,1.0,0 -122026623,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -122026623,"Solar 2",purchase,1.0,0 -122026623,"Stargunner",purchase,1.0,0 -122026623,"Stealth Inc 2",purchase,1.0,0 -122026623,"Steel Storm Burning Retribution",purchase,1.0,0 -122026623,"STORM Frontline Nation",purchase,1.0,0 -122026623,"Supreme Commander 2",purchase,1.0,0 -122026623,"Tales from Space Mutant Blobs Attack",purchase,1.0,0 -122026623,"Teleglitch Die More Edition",purchase,1.0,0 -122026623,"Terminal Velocity",purchase,1.0,0 -122026623,"Tesla Effect",purchase,1.0,0 -122026623,"Theatre of War 2 Africa 1943",purchase,1.0,0 -122026623,"The Book of Unwritten Tales",purchase,1.0,0 -122026623,"The Bridge",purchase,1.0,0 -122026623,"The Bureau XCOM Declassified",purchase,1.0,0 -122026623,"The Bureau XCOM Declassified - Light Plasma Pistol",purchase,1.0,0 -122026623,"The Bureau XCOM Hangar 6 R&D",purchase,1.0,0 -122026623,"The Elder Scrolls III Morrowind",purchase,1.0,0 -122026623,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -122026623,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -122026623,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -122026623,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -122026623,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -122026623,"The Novelist",purchase,1.0,0 -122026623,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -122026623,"The Swapper",purchase,1.0,0 -122026623,"The Wolf Among Us",purchase,1.0,0 -122026623,"Thief",purchase,1.0,0 -122026623,"Thief Deadly Shadows",purchase,1.0,0 -122026623,"Tomb Raider",purchase,1.0,0 -122026623,"Tom Clancy's H.A.W.X.",purchase,1.0,0 -122026623,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -122026623,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -122026623,"Tower of Guns",purchase,1.0,0 -122026623,"Trine 2",purchase,1.0,0 -122026623,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -122026623,"Victoria Revolutions",purchase,1.0,0 -122026623,"Victoria II Interwar Cavalry Unit Pack",purchase,1.0,0 -122026623,"Viking Battle for Asgard",purchase,1.0,0 -122026623,"Wacky Wheels",purchase,1.0,0 -122026623,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -122026623,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -122026623,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -122026623,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -122026623,"Warlock - Master of the Arcane",purchase,1.0,0 -122026623,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -122026623,"Wolfenstein 3D",purchase,1.0,0 -122026623,"Word Rescue",purchase,1.0,0 -122026623,"X2 The Threat",purchase,1.0,0 -122026623,"XCOM Enemy Unknown",purchase,1.0,0 -122026623,"XCOM Enemy Within",purchase,1.0,0 -122026623,"Xenophage",purchase,1.0,0 -122026623,"Zeno Clash",purchase,1.0,0 -75639638,"Football Manager 2012",purchase,1.0,0 -75639638,"Football Manager 2012",play,135.0,0 -75639638,"Football Manager 2011",purchase,1.0,0 -75639638,"Football Manager 2011",play,130.0,0 -75639638,"Football Manager 2014",purchase,1.0,0 -75639638,"Football Manager 2014",play,65.0,0 -75639638,"Counter-Strike Global Offensive",purchase,1.0,0 -75639638,"Counter-Strike Global Offensive",play,41.0,0 -75639638,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -75639638,"Call of Duty Modern Warfare 2 - Multiplayer",play,9.1,0 -75639638,"Call of Duty Modern Warfare 2",purchase,1.0,0 -154745722,"Dota 2",purchase,1.0,0 -154745722,"Dota 2",play,0.2,0 -145132643,"Team Fortress 2",purchase,1.0,0 -145132643,"Team Fortress 2",play,1.0,0 -219894679,"Dota 2",purchase,1.0,0 -219894679,"Dota 2",play,49.0,0 -187378013,"Universal Combat CE",purchase,1.0,0 -187378013,"America's Army 3",purchase,1.0,0 -187378013,"Heroes & Generals",purchase,1.0,0 -216047302,"Age of Empires II HD Edition",purchase,1.0,0 -216047302,"Age of Empires II HD Edition",play,82.0,0 -189795214,"Counter-Strike Global Offensive",purchase,1.0,0 -189795214,"Counter-Strike Global Offensive",play,257.0,0 -189795214,"Defiance",purchase,1.0,0 -189795214,"Clicker Heroes",purchase,1.0,0 -189795214,"AdVenture Capitalist",purchase,1.0,0 -189795214,"Dungeonland",purchase,1.0,0 -189795214,"Global Agenda",purchase,1.0,0 -189795214,"Heroes & Generals",purchase,1.0,0 -189795214,"Quake Live",purchase,1.0,0 -189795214,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -189795214,"Transformice",purchase,1.0,0 -189795214,"Warframe",purchase,1.0,0 -145507090,"Dota 2",purchase,1.0,0 -145507090,"Dota 2",play,1.4,0 -244844115,"Unturned",purchase,1.0,0 -244844115,"Unturned",play,0.2,0 -308122123,"Dota 2",purchase,1.0,0 -308122123,"Dota 2",play,6.9,0 -104826174,"Team Fortress 2",purchase,1.0,0 -104826174,"Team Fortress 2",play,1.7,0 -104408704,"The Elder Scrolls V Skyrim",purchase,1.0,0 -104408704,"The Elder Scrolls V Skyrim",play,149.0,0 -104408704,"Garry's Mod",purchase,1.0,0 -104408704,"Garry's Mod",play,10.8,0 -104408704,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -104408704,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -104408704,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -104408704,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -54293428,"Star Trek Online",purchase,1.0,0 -54293428,"Star Trek Online",play,492.0,0 -54293428,"The Binding of Isaac Rebirth",purchase,1.0,0 -54293428,"The Binding of Isaac Rebirth",play,469.0,0 -54293428,"Sid Meier's Civilization V",purchase,1.0,0 -54293428,"Sid Meier's Civilization V",play,275.0,0 -54293428,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -54293428,"Dark Souls Prepare to Die Edition",play,222.0,0 -54293428,"Fallout New Vegas",purchase,1.0,0 -54293428,"Fallout New Vegas",play,199.0,0 -54293428,"DARK SOULS II",purchase,1.0,0 -54293428,"DARK SOULS II",play,112.0,0 -54293428,"The Elder Scrolls V Skyrim",purchase,1.0,0 -54293428,"The Elder Scrolls V Skyrim",play,95.0,0 -54293428,"Port Royale 3",purchase,1.0,0 -54293428,"Port Royale 3",play,76.0,0 -54293428,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -54293428,"STAR WARS Knights of the Old Republic II The Sith Lords",play,58.0,0 -54293428,"Tropico 4",purchase,1.0,0 -54293428,"Tropico 4",play,51.0,0 -54293428,"LEGO Harry Potter Years 5-7",purchase,1.0,0 -54293428,"LEGO Harry Potter Years 5-7",play,41.0,0 -54293428,"Dawn of Discovery - Venice",purchase,1.0,0 -54293428,"Dawn of Discovery - Venice",play,40.0,0 -54293428,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -54293428,"Vampire The Masquerade - Bloodlines",play,38.0,0 -54293428,"Star Wars Knights of the Old Republic",purchase,1.0,0 -54293428,"Star Wars Knights of the Old Republic",play,33.0,0 -54293428,"Command and Conquer Red Alert 3",purchase,1.0,0 -54293428,"Command and Conquer Red Alert 3",play,31.0,0 -54293428,"Patrician IV Rise of a Dynasty",purchase,1.0,0 -54293428,"Patrician IV Rise of a Dynasty",play,30.0,0 -54293428,"DarkStar One",purchase,1.0,0 -54293428,"DarkStar One",play,27.0,0 -54293428,"Tropico 5",purchase,1.0,0 -54293428,"Tropico 5",play,26.0,0 -54293428,"Dead Island",purchase,1.0,0 -54293428,"Dead Island",play,25.0,0 -54293428,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -54293428,"Shadowrun Dragonfall - Director's Cut",play,23.0,0 -54293428,"Universe at War Earth Assault",purchase,1.0,0 -54293428,"Universe at War Earth Assault",play,19.8,0 -54293428,"This War of Mine",purchase,1.0,0 -54293428,"This War of Mine",play,19.3,0 -54293428,"Dying Light",purchase,1.0,0 -54293428,"Dying Light",play,17.4,0 -54293428,"Dead Island Riptide",purchase,1.0,0 -54293428,"Dead Island Riptide",play,17.0,0 -54293428,"The Guild II Renaissance",purchase,1.0,0 -54293428,"The Guild II Renaissance",play,16.4,0 -54293428,"State of Decay Year-One",purchase,1.0,0 -54293428,"State of Decay Year-One",play,16.2,0 -54293428,"Xenonauts",purchase,1.0,0 -54293428,"Xenonauts",play,13.5,0 -54293428,"Rise of Nations Extended Edition",purchase,1.0,0 -54293428,"Rise of Nations Extended Edition",play,13.4,0 -54293428,"Plague Inc Evolved",purchase,1.0,0 -54293428,"Plague Inc Evolved",play,11.3,0 -54293428,"Banished",purchase,1.0,0 -54293428,"Banished",play,11.1,0 -54293428,"Lego Harry Potter",purchase,1.0,0 -54293428,"Lego Harry Potter",play,10.6,0 -54293428,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -54293428,"S.T.A.L.K.E.R. Clear Sky",play,9.4,0 -54293428,"Darkest Dungeon",purchase,1.0,0 -54293428,"Darkest Dungeon",play,8.8,0 -54293428,"Pandora First Contact",purchase,1.0,0 -54293428,"Pandora First Contact",play,7.8,0 -54293428,"The Settlers 7 Paths to a Kingdom - Gold Edition",purchase,1.0,0 -54293428,"The Settlers 7 Paths to a Kingdom - Gold Edition",play,6.8,0 -54293428,"Sid Meier's Civilization III Complete",purchase,1.0,0 -54293428,"Sid Meier's Civilization III Complete",play,5.9,0 -54293428,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -54293428,"Galactic Civilizations II Ultimate Edition",play,5.6,0 -54293428,"The Binding of Isaac",purchase,1.0,0 -54293428,"The Binding of Isaac",play,5.6,0 -54293428,"Metro 2033 Redux",purchase,1.0,0 -54293428,"Metro 2033 Redux",play,4.1,0 -54293428,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -54293428,"Sid Meier's Civilization Beyond Earth",play,3.8,0 -54293428,"Age of Empires II HD Edition",purchase,1.0,0 -54293428,"Age of Empires II HD Edition",play,3.6,0 -54293428,"Spelunky",purchase,1.0,0 -54293428,"Spelunky",play,2.3,0 -54293428,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -54293428,"The Elder Scrolls IV Oblivion ",play,2.2,0 -54293428,"X-COM Apocalypse",purchase,1.0,0 -54293428,"X-COM Apocalypse",play,1.7,0 -54293428,"Age of Mythology Extended Edition",purchase,1.0,0 -54293428,"Age of Mythology Extended Edition",play,1.6,0 -54293428,"Patrician III",purchase,1.0,0 -54293428,"Patrician III",play,1.5,0 -54293428,"The Guild II",purchase,1.0,0 -54293428,"The Guild II",play,1.1,0 -54293428,"Light of Altair",purchase,1.0,0 -54293428,"Light of Altair",play,1.0,0 -54293428,"Killing Floor",purchase,1.0,0 -54293428,"Killing Floor",play,0.9,0 -54293428,"Sunless Sea",purchase,1.0,0 -54293428,"Sunless Sea",play,0.8,0 -54293428,"Mass Effect 2",purchase,1.0,0 -54293428,"Mass Effect 2",play,0.5,0 -54293428,"PAC-MAN Championship Edition DX+",purchase,1.0,0 -54293428,"PAC-MAN Championship Edition DX+",play,0.4,0 -54293428,"Age of Empires III Complete Collection",purchase,1.0,0 -54293428,"Age of Empires III Complete Collection",play,0.4,0 -54293428,"Fallout",purchase,1.0,0 -54293428,"Fallout",play,0.3,0 -54293428,"Patrician IV Steam Special Edition",purchase,1.0,0 -54293428,"Patrician IV Steam Special Edition",play,0.2,0 -54293428,"Fallout 4",purchase,1.0,0 -54293428,"Fallout 4",play,0.2,0 -54293428,"Arma 2",purchase,1.0,0 -54293428,"Arma 2",play,0.1,0 -54293428,"The Guild II - Pirates of the European Seas",purchase,1.0,0 -54293428,"X-COM Terror from the Deep",purchase,1.0,0 -54293428,"Fallout Tactics",purchase,1.0,0 -54293428,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -54293428,"Age of Empires II HD The Forgotten",purchase,1.0,0 -54293428,"DARK SOULS II - Season Pass",purchase,1.0,0 -54293428,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -54293428,"Dawn of Discovery",purchase,1.0,0 -54293428,"Dawn of Discovery - Demo",purchase,1.0,0 -54293428,"Fallout 2",purchase,1.0,0 -54293428,"Fallout New Vegas Dead Money",purchase,1.0,0 -54293428,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -54293428,"Pandora Eclipse of Nashira",purchase,1.0,0 -54293428,"Shadowrun Hong Kong",purchase,1.0,0 -54293428,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -54293428,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -54293428,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -54293428,"The Great Art Race",purchase,1.0,0 -54293428,"The Guild Gold Edition",purchase,1.0,0 -54293428,"The Wolf Among Us",purchase,1.0,0 -54293428,"Tropico 5 - Generalissimo",purchase,1.0,0 -54293428,"Tropico 5 - Mad World",purchase,1.0,0 -54293428,"X-COM Enforcer",purchase,1.0,0 -54293428,"X-COM Interceptor",purchase,1.0,0 -54293428,"X-COM UFO Defense",purchase,1.0,0 -282349848,"Ragnarok",purchase,1.0,0 -282349848,"Ragnarok",play,0.2,0 -123397302,"Dota 2",purchase,1.0,0 -123397302,"Dota 2",play,89.0,0 -123397302,"Counter-Strike Global Offensive",purchase,1.0,0 -123397302,"Counter-Strike Global Offensive",play,39.0,0 -123397302,"Team Fortress 2",purchase,1.0,0 -123397302,"Team Fortress 2",play,0.5,0 -249520540,"Nosgoth",purchase,1.0,0 -267633580,"Garry's Mod",purchase,1.0,0 -267633580,"Garry's Mod",play,642.0,0 -267633580,"Team Fortress 2",purchase,1.0,0 -267633580,"Team Fortress 2",play,1.1,0 -267633580,"Gotham City Impostors Free To Play",purchase,1.0,0 -182076616,"Dota 2",purchase,1.0,0 -182076616,"Dota 2",play,84.0,0 -297771244,"Dota 2",purchase,1.0,0 -297771244,"Dota 2",play,2.6,0 -192245266,"STORM Frontline Nation",purchase,1.0,0 -192245266,"STORM Frontline Nation",play,465.0,0 -222134637,"Running Shadow",purchase,1.0,0 -222134637,"Running Shadow",play,0.3,0 -222134637,"Unturned",purchase,1.0,0 -222134637,"Unturned",play,0.2,0 -123325040,"Counter-Strike",purchase,1.0,0 -123325040,"Counter-Strike",play,70.0,0 -123325040,"Team Fortress 2",purchase,1.0,0 -123325040,"Team Fortress 2",play,0.9,0 -123325040,"Counter-Strike Condition Zero",purchase,1.0,0 -123325040,"Counter-Strike Condition Zero",play,0.8,0 -123325040,"Day of Defeat",purchase,1.0,0 -123325040,"Day of Defeat",play,0.1,0 -123325040,"APB Reloaded",purchase,1.0,0 -123325040,"BLOCKADE 3D",purchase,1.0,0 -123325040,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -123325040,"Counter-Strike Nexon Zombies",purchase,1.0,0 -123325040,"Cry of Fear",purchase,1.0,0 -123325040,"Deathmatch Classic",purchase,1.0,0 -123325040,"EVGA PrecisionX 16",purchase,1.0,0 -123325040,"Fistful of Frags",purchase,1.0,0 -123325040,"PlanetSide 2",purchase,1.0,0 -123325040,"Realm of the Mad God",purchase,1.0,0 -123325040,"Ricochet",purchase,1.0,0 -123325040,"Robocraft",purchase,1.0,0 -123325040,"Tactical Intervention",purchase,1.0,0 -123325040,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -123325040,"Unturned",purchase,1.0,0 -121535800,"Counter-Strike Source",purchase,1.0,0 -121535800,"Counter-Strike Source",play,6.4,0 -188641919,"Dota 2",purchase,1.0,0 -188641919,"Dota 2",play,1.3,0 -110268888,"Team Fortress 2",purchase,1.0,0 -110268888,"Team Fortress 2",play,0.2,0 -171383863,"Dota 2",purchase,1.0,0 -171383863,"Dota 2",play,2402.0,0 -171383863,"Left 4 Dead 2",purchase,1.0,0 -171383863,"Left 4 Dead 2",play,31.0,0 -171383863,"Counter-Strike Global Offensive",purchase,1.0,0 -171383863,"Counter-Strike Global Offensive",play,24.0,0 -171383863,"HuniePop",purchase,1.0,0 -171383863,"HuniePop",play,10.6,0 -171383863,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -171383863,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,9.4,0 -171383863,"Aura Kingdom",purchase,1.0,0 -171383863,"Aura Kingdom",play,8.2,0 -171383863,"Garry's Mod",purchase,1.0,0 -171383863,"Garry's Mod",play,6.3,0 -171383863,"Sakura Clicker",purchase,1.0,0 -171383863,"Sakura Clicker",play,4.7,0 -171383863,"Sakura Spirit",purchase,1.0,0 -171383863,"Sakura Spirit",play,1.1,0 -171383863,"Blacklight Retribution",purchase,1.0,0 -171383863,"Blacklight Retribution",play,1.1,0 -171383863,"Infinite Crisis",purchase,1.0,0 -171383863,"Infinite Crisis",play,0.8,0 -171383863,"Elsword",purchase,1.0,0 -171383863,"Elsword",play,0.8,0 -171383863,"NEKOPARA Vol. 1",purchase,1.0,0 -171383863,"NEKOPARA Vol. 1",play,0.7,0 -171383863,"Team Fortress 2",purchase,1.0,0 -171383863,"Team Fortress 2",play,0.6,0 -171383863,"Go! Go! Nippon! ~My First Trip to Japan~",purchase,1.0,0 -171383863,"Go! Go! Nippon! ~My First Trip to Japan~",play,0.5,0 -171383863,"If My Heart Had Wings",purchase,1.0,0 -171383863,"If My Heart Had Wings",play,0.5,0 -171383863,"Warface",purchase,1.0,0 -171383863,"Warface",play,0.5,0 -171383863,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -171383863,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.4,0 -171383863,"NEOTOKYO",purchase,1.0,0 -171383863,"NEOTOKYO",play,0.3,0 -171383863,"Everlasting Summer",purchase,1.0,0 -171383863,"Everlasting Summer",play,0.1,0 -171383863,"Shadow Warrior Classic (1997)",purchase,1.0,0 -171383863,"Deadbreed",purchase,1.0,0 -171383863,"Defiance",purchase,1.0,0 -171383863,"FreeStyle2 Street Basketball",purchase,1.0,0 -171383863,"No More Room in Hell",purchase,1.0,0 -171383863,"Unturned",purchase,1.0,0 -171383863,"Warframe",purchase,1.0,0 -196324436,"Dota 2",purchase,1.0,0 -196324436,"Dota 2",play,8.6,0 -188627637,"Unturned",purchase,1.0,0 -188627637,"Unturned",play,34.0,0 -188627637,"Robocraft",purchase,1.0,0 -188627637,"Robocraft",play,15.0,0 -180800031,"Dota 2",purchase,1.0,0 -180800031,"Dota 2",play,664.0,0 -185271773,"Unturned",purchase,1.0,0 -185271773,"Warface",purchase,1.0,0 -157341587,"Warframe",purchase,1.0,0 -157341587,"Warframe",play,753.0,0 -157341587,"Borderlands 2",purchase,1.0,0 -157341587,"Borderlands 2",play,83.0,0 -157341587,"Counter-Strike Global Offensive",purchase,1.0,0 -157341587,"Counter-Strike Global Offensive",play,72.0,0 -157341587,"Borderlands The Pre-Sequel",purchase,1.0,0 -157341587,"Borderlands The Pre-Sequel",play,40.0,0 -157341587,"Tomb Raider",purchase,1.0,0 -157341587,"Tomb Raider",play,20.0,0 -157341587,"Tribes Ascend",purchase,1.0,0 -157341587,"Tribes Ascend",play,19.7,0 -157341587,"FINAL FANTASY XIV A Realm Reborn",purchase,1.0,0 -157341587,"FINAL FANTASY XIV A Realm Reborn",play,16.8,0 -157341587,"TrackMania Stadium",purchase,1.0,0 -157341587,"TrackMania Stadium",play,14.9,0 -157341587,"Defiance",purchase,1.0,0 -157341587,"Defiance",play,14.5,0 -157341587,"BioShock",purchase,1.0,0 -157341587,"BioShock",play,13.9,0 -157341587,"Unturned",purchase,1.0,0 -157341587,"Unturned",play,13.2,0 -157341587,"Garry's Mod",purchase,1.0,0 -157341587,"Garry's Mod",play,13.0,0 -157341587,"Dota 2",purchase,1.0,0 -157341587,"Dota 2",play,12.9,0 -157341587,"Goat Simulator",purchase,1.0,0 -157341587,"Goat Simulator",play,8.0,0 -157341587,"DiRT 2",purchase,1.0,0 -157341587,"DiRT 2",play,7.4,0 -157341587,"Overlord II",purchase,1.0,0 -157341587,"Overlord II",play,6.7,0 -157341587,"DiRT Showdown",purchase,1.0,0 -157341587,"DiRT Showdown",play,5.8,0 -157341587,"Dishonored",purchase,1.0,0 -157341587,"Dishonored",play,3.5,0 -157341587,"Star Conflict",purchase,1.0,0 -157341587,"Star Conflict",play,3.4,0 -157341587,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -157341587,"Tom Clancy's Ghost Recon Phantoms - NA",play,2.8,0 -157341587,"Clicker Heroes",purchase,1.0,0 -157341587,"Clicker Heroes",play,2.1,0 -157341587,"Warface",purchase,1.0,0 -157341587,"Warface",play,1.9,0 -157341587,"Borderlands",purchase,1.0,0 -157341587,"Borderlands",play,1.8,0 -157341587,"Killing Floor",purchase,1.0,0 -157341587,"Killing Floor",play,1.5,0 -157341587,"Spiral Knights",purchase,1.0,0 -157341587,"Spiral Knights",play,1.0,0 -157341587,"WAKFU",purchase,1.0,0 -157341587,"WAKFU",play,0.8,0 -157341587,"Cry of Fear",purchase,1.0,0 -157341587,"Cry of Fear",play,0.8,0 -157341587,"Team Fortress 2",purchase,1.0,0 -157341587,"Team Fortress 2",play,0.7,0 -157341587,"sZone-Online",purchase,1.0,0 -157341587,"sZone-Online",play,0.4,0 -157341587,"Forge",purchase,1.0,0 -157341587,"Forge",play,0.3,0 -157341587,"MicroVolts Surge",purchase,1.0,0 -157341587,"MicroVolts Surge",play,0.2,0 -157341587,"DiRT 3",purchase,1.0,0 -157341587,"DiRT 3",play,0.2,0 -157341587,"BioShock 2",purchase,1.0,0 -157341587,"BioShock 2",play,0.2,0 -157341587,"Copa Petrobras de Marcas",purchase,1.0,0 -157341587,"Copa Petrobras de Marcas",play,0.2,0 -157341587,"Spooky's House of Jump Scares",purchase,1.0,0 -157341587,"Spooky's House of Jump Scares",play,0.1,0 -157341587,"ORION Prelude",purchase,1.0,0 -157341587,"Aura Kingdom",purchase,1.0,0 -157341587,"BioShock Infinite",purchase,1.0,0 -157341587,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -157341587,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -157341587,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -157341587,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -157341587,"DiRT 3 Complete Edition",purchase,1.0,0 -157341587,"Dungeon Party",purchase,1.0,0 -157341587,"FINAL FANTASY XIV A Realm Reborn (PAL version)",purchase,1.0,0 -157341587,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -157341587,"Marlow Briggs",purchase,1.0,0 -157341587,"Marvel Heroes 2015",purchase,1.0,0 -157341587,"PAYDAY The Heist",purchase,1.0,0 -157341587,"RaiderZ",purchase,1.0,0 -157341587,"theHunter",purchase,1.0,0 -259263507,"Dota 2",purchase,1.0,0 -259263507,"Dota 2",play,8.7,0 -183999220,"Dota 2",purchase,1.0,0 -183999220,"Dota 2",play,1.3,0 -66939289,"Counter-Strike Source",purchase,1.0,0 -66939289,"Counter-Strike Source",play,280.0,0 -66939289,"Day of Defeat Source",purchase,1.0,0 -66939289,"Day of Defeat Source",play,16.0,0 -66939289,"Half-Life 2 Deathmatch",purchase,1.0,0 -66939289,"Half-Life 2 Deathmatch",play,4.0,0 -66939289,"Killing Floor",purchase,1.0,0 -66939289,"Killing Floor",play,3.0,0 -66939289,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -66939289,"Killing Floor Mod Defence Alliance 2",play,1.7,0 -66939289,"Half-Life 2 Lost Coast",purchase,1.0,0 -66939289,"Half-Life 2 Lost Coast",play,0.5,0 -208470492,"Dota 2",purchase,1.0,0 -208470492,"Dota 2",play,2.3,0 -197406178,"Codename CURE",purchase,1.0,0 -197406178,"Codename CURE",play,64.0,0 -197406178,"No More Room in Hell",purchase,1.0,0 -197406178,"No More Room in Hell",play,30.0,0 -197406178,"DRAGON BALL XENOVERSE",purchase,1.0,0 -197406178,"DRAGON BALL XENOVERSE",play,21.0,0 -197406178,"Run and Fire",purchase,1.0,0 -197406178,"Run and Fire",play,8.7,0 -197406178,"Fistful of Frags",purchase,1.0,0 -197406178,"Fistful of Frags",play,5.0,0 -197406178,"Tactical Intervention",purchase,1.0,0 -197406178,"Tactical Intervention",play,4.4,0 -197406178,"Modular Combat",purchase,1.0,0 -197406178,"Modular Combat",play,3.9,0 -197406178,"Pirates, Vikings, & Knights II",purchase,1.0,0 -197406178,"Pirates, Vikings, & Knights II",play,3.1,0 -197406178,"Team Fortress 2",purchase,1.0,0 -197406178,"Team Fortress 2",play,3.1,0 -197406178,"Nosgoth",purchase,1.0,0 -197406178,"Nosgoth",play,2.7,0 -197406178,"Zombie Panic Source",purchase,1.0,0 -197406178,"Zombie Panic Source",play,2.5,0 -197406178,"Warframe",purchase,1.0,0 -197406178,"Warframe",play,2.4,0 -197406178,"CroNix",purchase,1.0,0 -197406178,"CroNix",play,1.8,0 -197406178,"Dead Island Epidemic",purchase,1.0,0 -197406178,"Dead Island Epidemic",play,1.4,0 -197406178,"America's Army 3",purchase,1.0,0 -197406178,"America's Army 3",play,0.7,0 -197406178,"Trove",purchase,1.0,0 -197406178,"Trove",play,0.6,0 -197406178,"Cry of Fear",purchase,1.0,0 -197406178,"Cry of Fear",play,0.6,0 -197406178,"Dirty Bomb",purchase,1.0,0 -197406178,"Dirty Bomb",play,0.6,0 -197406178,"sZone-Online",purchase,1.0,0 -197406178,"sZone-Online",play,0.6,0 -197406178,"Heroes & Generals",purchase,1.0,0 -197406178,"Heroes & Generals",play,0.4,0 -197406178,"Warside",purchase,1.0,0 -197406178,"Warside",play,0.4,0 -197406178,"Batla",purchase,1.0,0 -197406178,"Batla",play,0.3,0 -197406178,"HIT",purchase,1.0,0 -197406178,"HIT",play,0.3,0 -197406178,"Unturned",purchase,1.0,0 -197406178,"Unturned",play,0.1,0 -197406178,"Firefall",purchase,1.0,0 -197406178,"Firefall",play,0.1,0 -197406178,"All Is Dust",purchase,1.0,0 -197406178,"Fallen Earth",purchase,1.0,0 -197406178,"Robocraft",purchase,1.0,0 -197406178,"Toribash",purchase,1.0,0 -197406178,"Global Agenda",purchase,1.0,0 -197406178,"Loadout",purchase,1.0,0 -197406178,"Quake Live",purchase,1.0,0 -197406178,"War Inc. Battlezone",purchase,1.0,0 -197406178,"APB Reloaded",purchase,1.0,0 -197406178,"CrimeCraft GangWars",purchase,1.0,0 -197406178,"Gunscape",purchase,1.0,0 -197406178,"Half-Life 2 Update",purchase,1.0,0 -197406178,"Killing Floor - Toy Master",purchase,1.0,0 -197406178,"Marvel Heroes 2015",purchase,1.0,0 -197406178,"PlanetSide 2",purchase,1.0,0 -197406178,"theHunter",purchase,1.0,0 -197406178,"Tribes Ascend",purchase,1.0,0 -197406178,"War Thunder",purchase,1.0,0 -212758245,"Dota 2",purchase,1.0,0 -212758245,"Dota 2",play,4.2,0 -209219032,"Warframe",purchase,1.0,0 -209219032,"Warframe",play,1.2,0 -209219032,"Team Fortress 2",purchase,1.0,0 -209219032,"Team Fortress 2",play,1.2,0 -209219032,"Unturned",purchase,1.0,0 -209219032,"Unturned",play,0.7,0 -209219032,"Brawlhalla",purchase,1.0,0 -209219032,"Brawlhalla",play,0.7,0 -209219032,"Alien Breed Impact",purchase,1.0,0 -209219032,"DogFighter",purchase,1.0,0 -209219032,"Elsword",purchase,1.0,0 -209219032,"Enemy Mind",purchase,1.0,0 -209219032,"Ragnarok Online 2",purchase,1.0,0 -113444723,"Dota 2",purchase,1.0,0 -113444723,"Dota 2",play,3744.0,0 -113444723,"Insurgency Modern Infantry Combat",purchase,1.0,0 -113444723,"Insurgency Modern Infantry Combat",play,5.3,0 -252978483,"Dota 2",purchase,1.0,0 -252978483,"Dota 2",play,3.8,0 -243712157,"The Mighty Quest For Epic Loot",purchase,1.0,0 -243712157,"The Mighty Quest For Epic Loot",play,7.3,0 -254935843,"Counter-Strike Global Offensive",purchase,1.0,0 -254935843,"Counter-Strike Global Offensive",play,34.0,0 -254935843,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -254935843,"Tom Clancy's Ghost Recon Phantoms - EU",play,4.7,0 -254935843,"Team Fortress 2",purchase,1.0,0 -254935843,"Team Fortress 2",play,4.6,0 -254935843,"AirMech",purchase,1.0,0 -254935843,"AirMech",play,4.3,0 -254935843,"Dota 2",purchase,1.0,0 -254935843,"Dota 2",play,3.3,0 -254935843,"War Thunder",purchase,1.0,0 -254935843,"War Thunder",play,3.3,0 -254935843,"Robocraft",purchase,1.0,0 -254935843,"Robocraft",play,2.9,0 -254935843,"Unturned",purchase,1.0,0 -254935843,"Unturned",play,2.4,0 -254935843,"Counter-Strike",purchase,1.0,0 -254935843,"Counter-Strike",play,2.1,0 -254935843,"HAWKEN",purchase,1.0,0 -254935843,"HAWKEN",play,2.0,0 -254935843,"Block N Load",purchase,1.0,0 -254935843,"Block N Load",play,1.9,0 -254935843,"Aftermath",purchase,1.0,0 -254935843,"Aftermath",play,1.9,0 -254935843,"Trove",purchase,1.0,0 -254935843,"Trove",play,1.6,0 -254935843,"Clicker Heroes",purchase,1.0,0 -254935843,"Clicker Heroes",play,1.5,0 -254935843,"Counter-Strike Condition Zero",purchase,1.0,0 -254935843,"Counter-Strike Condition Zero",play,1.5,0 -254935843,"Teeworlds",purchase,1.0,0 -254935843,"Teeworlds",play,1.4,0 -254935843,"Counter-Strike Source",purchase,1.0,0 -254935843,"Counter-Strike Source",play,1.3,0 -254935843,"Weapons Genius",purchase,1.0,0 -254935843,"Weapons Genius",play,1.1,0 -254935843,"Counter-Strike Nexon Zombies",purchase,1.0,0 -254935843,"Counter-Strike Nexon Zombies",play,1.1,0 -254935843,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -254935843,"Counter-Strike Condition Zero Deleted Scenes",play,0.2,0 -254935843,"Nomad",purchase,1.0,0 -254935843,"The Flying Dutchman",purchase,1.0,0 -254935843,"Urban Trial Freestyle",purchase,1.0,0 -254935843,"Nux",purchase,1.0,0 -254935843,"America's Army Proving Grounds",purchase,1.0,0 -238621950,"ArcheAge",purchase,1.0,0 -238621950,"Aura Kingdom",purchase,1.0,0 -238621950,"FreeStyle2 Street Basketball",purchase,1.0,0 -238621950,"Mabinogi",purchase,1.0,0 -238621950,"Vindictus",purchase,1.0,0 -271047352,"Dota 2",purchase,1.0,0 -271047352,"Dota 2",play,3.2,0 -224998865,"Grand Theft Auto V",purchase,1.0,0 -224998865,"Grand Theft Auto V",play,158.0,0 -224998865,"Ultimate Tic-Tac-Toe",purchase,1.0,0 -224998865,"Ultimate Tic-Tac-Toe",play,0.2,0 -224998865,"APB Reloaded",purchase,1.0,0 -224998865,"Copa Petrobras de Marcas",purchase,1.0,0 -224998865,"Toribash",purchase,1.0,0 -224998865,"Warframe",purchase,1.0,0 -300589624,"Counter-Strike Global Offensive",purchase,1.0,0 -92025878,"The Elder Scrolls V Skyrim",purchase,1.0,0 -92025878,"The Elder Scrolls V Skyrim",play,229.0,0 -92025878,"Supreme Commander",purchase,1.0,0 -92025878,"Supreme Commander",play,54.0,0 -92025878,"Dishonored",purchase,1.0,0 -92025878,"Dishonored",play,35.0,0 -92025878,"Supreme Commander Forged Alliance",purchase,1.0,0 -92025878,"Supreme Commander Forged Alliance",play,35.0,0 -92025878,"Total War SHOGUN 2",purchase,1.0,0 -92025878,"Total War SHOGUN 2",play,7.5,0 -92025878,"Sniper Ghost Warrior 2",purchase,1.0,0 -92025878,"Sniper Ghost Warrior 2",play,2.2,0 -92025878,"Endless Space",purchase,1.0,0 -92025878,"Endless Space",play,0.5,0 -92025878,"The Evil Within",purchase,1.0,0 -92025878,"The Evil Within",play,0.4,0 -92025878,"Spec Ops The Line",purchase,1.0,0 -92025878,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -92025878,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -92025878,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -92025878,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -107652130,"Team Fortress 2",purchase,1.0,0 -107652130,"Team Fortress 2",play,0.1,0 -193811490,"Dota 2",purchase,1.0,0 -193811490,"Dota 2",play,1.1,0 -141408990,"Grand Theft Auto V",purchase,1.0,0 -141408990,"Grand Theft Auto V",play,47.0,0 -141408990,"Dota 2",purchase,1.0,0 -141408990,"Dota 2",play,8.1,0 -64060101,"Dota 2",purchase,1.0,0 -64060101,"Dota 2",play,3539.0,0 -64060101,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -64060101,"Call of Duty Black Ops II - Multiplayer",play,49.0,0 -64060101,"Left 4 Dead 2",purchase,1.0,0 -64060101,"Left 4 Dead 2",play,29.0,0 -64060101,"Call of Duty Black Ops II",purchase,1.0,0 -64060101,"Call of Duty Black Ops II",play,8.1,0 -64060101,"Natural Selection 2",purchase,1.0,0 -64060101,"Natural Selection 2",play,0.6,0 -64060101,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -64060101,"Call of Duty Black Ops II - Zombies",play,0.2,0 -64060101,"Loadout",purchase,1.0,0 -64060101,"Tribes Ascend",purchase,1.0,0 -64060101,"Warframe",purchase,1.0,0 -171252939,"Garry's Mod",purchase,1.0,0 -171252939,"Garry's Mod",play,36.0,0 -171252939,"Warframe",purchase,1.0,0 -171252939,"Warframe",play,18.3,0 -171252939,"Guns of Icarus Online",purchase,1.0,0 -171252939,"Guns of Icarus Online",play,13.3,0 -171252939,"DayZ",purchase,1.0,0 -171252939,"DayZ",play,4.7,0 -171252939,"Team Fortress 2",purchase,1.0,0 -171252939,"Team Fortress 2",play,3.3,0 -171252939,"Moonbase Alpha",purchase,1.0,0 -171252939,"Moonbase Alpha",play,1.2,0 -171252939,"Sakura Clicker",purchase,1.0,0 -171252939,"Sakura Clicker",play,0.9,0 -171252939,"Damned",purchase,1.0,0 -171252939,"Damned",play,0.2,0 -208061820,"Call of Juarez The Cartel",purchase,1.0,0 -208061820,"Call of Juarez The Cartel",play,11.9,0 -208061820,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",purchase,1.0,0 -208061820,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",play,7.9,0 -208061820,"Team Fortress 2",purchase,1.0,0 -208061820,"Team Fortress 2",play,2.6,0 -208061820,"Disney Infinity 3.0 Play Without Limits",purchase,1.0,0 -208061820,"Disney Infinity 3.0 Play Without Limits",play,0.9,0 -208061820,"Killer is Dead",purchase,1.0,0 -208061820,"Killer is Dead",play,0.6,0 -208061820,"Eternal Senia",purchase,1.0,0 -90672622,"Sid Meier's Civilization V",purchase,1.0,0 -90672622,"Sid Meier's Civilization V",play,1367.0,0 -90672622,"Crusader Kings II",purchase,1.0,0 -90672622,"Crusader Kings II",play,678.0,0 -90672622,"Omerta - City of Gangsters",purchase,1.0,0 -90672622,"Omerta - City of Gangsters",play,58.0,0 -90672622,"Far Cry 3",purchase,1.0,0 -90672622,"Far Cry 3",play,56.0,0 -90672622,"The Sims(TM) 3",purchase,1.0,0 -90672622,"The Sims(TM) 3",play,39.0,0 -90672622,"Europa Universalis IV",purchase,1.0,0 -90672622,"Europa Universalis IV",play,1.9,0 -90672622,"Team Fortress 2",purchase,1.0,0 -90672622,"Team Fortress 2",play,1.5,0 -90672622,"Infinite Crisis",purchase,1.0,0 -90672622,"Crusader Kings II Sons of Abraham",purchase,1.0,0 -90672622,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -177457582,"Dota 2",purchase,1.0,0 -177457582,"Dota 2",play,154.0,0 -129525006,"Dota 2",purchase,1.0,0 -129525006,"Dota 2",play,0.5,0 -97291615,"Sid Meier's Civilization V",purchase,1.0,0 -97291615,"Sid Meier's Civilization V",play,506.0,0 -186642906,"Garry's Mod",purchase,1.0,0 -186642906,"Garry's Mod",play,31.0,0 -186642906,"Neverwinter",purchase,1.0,0 -186642906,"Neverwinter",play,11.9,0 -186642906,"Back to Dinosaur Island ",purchase,1.0,0 -186642906,"Back to Dinosaur Island ",play,9.8,0 -186642906,"Heroes & Generals",purchase,1.0,0 -186642906,"Heroes & Generals",play,8.8,0 -186642906,"Fallout New Vegas",purchase,1.0,0 -186642906,"Fallout New Vegas",play,5.6,0 -186642906,"Surgeon Simulator",purchase,1.0,0 -186642906,"Surgeon Simulator",play,5.0,0 -186642906,"Warface",purchase,1.0,0 -186642906,"Warface",play,3.1,0 -186642906,"Aftermath",purchase,1.0,0 -186642906,"Aftermath",play,2.7,0 -186642906,"Orcs Must Die!",purchase,1.0,0 -186642906,"Orcs Must Die!",play,2.4,0 -186642906,"No More Room in Hell",purchase,1.0,0 -186642906,"No More Room in Hell",play,2.4,0 -186642906,"Unturned",purchase,1.0,0 -186642906,"Unturned",play,2.1,0 -186642906,"Goat Simulator",purchase,1.0,0 -186642906,"Goat Simulator",play,1.3,0 -186642906,"Rocket League",purchase,1.0,0 -186642906,"Rocket League",play,1.3,0 -186642906,"Outlast",purchase,1.0,0 -186642906,"Outlast",play,0.9,0 -186642906,"Murder Miners",purchase,1.0,0 -186642906,"Murder Miners",play,0.6,0 -186642906,"Shadow Warrior Classic (1997)",purchase,1.0,0 -186642906,"Shadow Warrior Classic (1997)",play,0.2,0 -186642906,"Moonbase Alpha",purchase,1.0,0 -186642906,"Moonbase Alpha",play,0.2,0 -186642906,"Revolution Ace",purchase,1.0,0 -186642906,"Revolution Ace",play,0.1,0 -186642906,"Piercing Blow",purchase,1.0,0 -186642906,"All Is Dust",purchase,1.0,0 -186642906,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -186642906,"Fallout New Vegas Dead Money",purchase,1.0,0 -186642906,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -186642906,"Orcs Must Die! 2",purchase,1.0,0 -186642906,"Saviors",purchase,1.0,0 -186642906,"SMITE",purchase,1.0,0 -186642906,"Warframe",purchase,1.0,0 -186642906,"Waveform",purchase,1.0,0 -99723205,"Counter-Strike Global Offensive",purchase,1.0,0 -99723205,"Counter-Strike Global Offensive",play,67.0,0 -99723205,"Arma 2 Operation Arrowhead",purchase,1.0,0 -99723205,"Arma 2 Operation Arrowhead",play,46.0,0 -99723205,"Counter-Strike Source",purchase,1.0,0 -99723205,"Counter-Strike Source",play,25.0,0 -99723205,"Team Fortress 2",purchase,1.0,0 -99723205,"Team Fortress 2",play,14.6,0 -99723205,"Garry's Mod",purchase,1.0,0 -99723205,"Garry's Mod",play,13.5,0 -99723205,"Grand Theft Auto V",purchase,1.0,0 -99723205,"Grand Theft Auto V",play,11.9,0 -99723205,"The Elder Scrolls V Skyrim",purchase,1.0,0 -99723205,"The Elder Scrolls V Skyrim",play,9.2,0 -99723205,"Far Cry 3",purchase,1.0,0 -99723205,"Far Cry 3",play,8.5,0 -99723205,"Far Cry 4",purchase,1.0,0 -99723205,"Far Cry 4",play,8.1,0 -99723205,"Arma 3",purchase,1.0,0 -99723205,"Arma 3",play,7.4,0 -99723205,"Insurgency",purchase,1.0,0 -99723205,"Insurgency",play,6.6,0 -99723205,"Borderlands 2",purchase,1.0,0 -99723205,"Borderlands 2",play,4.7,0 -99723205,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -99723205,"Rising Storm/Red Orchestra 2 Multiplayer",play,4.0,0 -99723205,"DayZ",purchase,1.0,0 -99723205,"DayZ",play,3.0,0 -99723205,"Batman Arkham Origins",purchase,1.0,0 -99723205,"Batman Arkham Origins",play,2.4,0 -99723205,"Battlefield Bad Company 2",purchase,1.0,0 -99723205,"Battlefield Bad Company 2",play,2.4,0 -99723205,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -99723205,"Call of Duty Advanced Warfare - Multiplayer",play,2.3,0 -99723205,"Arma 2",purchase,1.0,0 -99723205,"Arma 2",play,1.6,0 -99723205,"Dota 2",purchase,1.0,0 -99723205,"Dota 2",play,1.0,0 -99723205,"Mirror's Edge",purchase,1.0,0 -99723205,"Mirror's Edge",play,0.9,0 -99723205,"Sid Meier's Civilization V",purchase,1.0,0 -99723205,"Sid Meier's Civilization V",play,0.1,0 -99723205,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -99723205,"Arma 3 Zeus",purchase,1.0,0 -99723205,"Call of Duty Advanced Warfare",purchase,1.0,0 -99723205,"PAYDAY 2",purchase,1.0,0 -99723205,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -99723205,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -99723205,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -99723205,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -257108952,"Counter-Strike Global Offensive",purchase,1.0,0 -257108952,"Counter-Strike Global Offensive",play,18.3,0 -257108952,"Team Fortress 2",purchase,1.0,0 -257108952,"Team Fortress 2",play,0.8,0 -257108952,"Nosgoth",purchase,1.0,0 -257108952,"Marvel Heroes 2015",purchase,1.0,0 -76856277,"Sid Meier's Civilization V",purchase,1.0,0 -76856277,"Sid Meier's Civilization V",play,0.6,0 -170975218,"Dead Island Epidemic",purchase,1.0,0 -48951291,"Quake Live",purchase,1.0,0 -113771004,"Dota 2",purchase,1.0,0 -113771004,"Dota 2",play,18.9,0 -113771004,"Team Fortress 2",purchase,1.0,0 -113771004,"Team Fortress 2",play,1.1,0 -136866564,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -136866564,"Call of Duty Black Ops II - Multiplayer",play,74.0,0 -136866564,"The Elder Scrolls V Skyrim",purchase,1.0,0 -136866564,"The Elder Scrolls V Skyrim",play,48.0,0 -136866564,"Batman Arkham Origins",purchase,1.0,0 -136866564,"Batman Arkham Origins",play,18.3,0 -136866564,"NBA 2K13",purchase,1.0,0 -136866564,"NBA 2K13",play,10.2,0 -136866564,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -136866564,"Call of Duty Black Ops II - Zombies",play,7.7,0 -136866564,"Hitman Absolution",purchase,1.0,0 -136866564,"Hitman Absolution",play,5.5,0 -136866564,"BioShock Infinite",purchase,1.0,0 -136866564,"BioShock Infinite",play,4.6,0 -136866564,"Thief",purchase,1.0,0 -136866564,"Thief",play,4.1,0 -136866564,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -136866564,"Injustice Gods Among Us Ultimate Edition",play,3.5,0 -136866564,"Warface",purchase,1.0,0 -136866564,"Warface",play,2.2,0 -136866564,"Dota 2",purchase,1.0,0 -136866564,"Dota 2",play,0.1,0 -136866564,"Call of Duty Black Ops II",purchase,1.0,0 -136866564,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -136866564,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -136866564,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -136866564,"Toribash",purchase,1.0,0 -181212,"Counter-Strike",purchase,1.0,0 -181212,"Counter-Strike",play,1.8,0 -181212,"Half-Life 2 Lost Coast",purchase,1.0,0 -181212,"Half-Life 2 Lost Coast",play,0.4,0 -181212,"Counter-Strike Source",purchase,1.0,0 -181212,"Day of Defeat",purchase,1.0,0 -181212,"Deathmatch Classic",purchase,1.0,0 -181212,"Half-Life",purchase,1.0,0 -181212,"Half-Life 2",purchase,1.0,0 -181212,"Half-Life 2 Deathmatch",purchase,1.0,0 -181212,"Half-Life Blue Shift",purchase,1.0,0 -181212,"Half-Life Opposing Force",purchase,1.0,0 -181212,"Ricochet",purchase,1.0,0 -181212,"Team Fortress Classic",purchase,1.0,0 -251123935,"Dota 2",purchase,1.0,0 -251123935,"Dota 2",play,11.1,0 -251123935,"Path of Exile",purchase,1.0,0 -246949212,"Dota 2",purchase,1.0,0 -246949212,"Dota 2",play,24.0,0 -246949212,"Robocraft",purchase,1.0,0 -106746754,"Deus Ex Human Revolution",purchase,1.0,0 -106746754,"Deus Ex Human Revolution",play,0.4,0 -106216084,"Infestation Survivor Stories",purchase,1.0,0 -106216084,"Infestation Survivor Stories",play,3.0,0 -86239250,"Team Fortress 2",purchase,1.0,0 -86239250,"Team Fortress 2",play,2.7,0 -44147477,"Football Manager 2009",purchase,1.0,0 -44147477,"Football Manager 2009",play,198.0,0 -307597897,"Dota 2",purchase,1.0,0 -307597897,"Dota 2",play,1.1,0 -138115430,"Counter-Strike Global Offensive",purchase,1.0,0 -138115430,"Counter-Strike Global Offensive",play,1498.0,0 -138115430,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -138115430,"Burnout Paradise The Ultimate Box",play,12.9,0 -138115430,"Team Fortress 2",purchase,1.0,0 -138115430,"Team Fortress 2",play,1.7,0 -138115430,"PAYDAY 2",purchase,1.0,0 -138115430,"PAYDAY 2",play,1.1,0 -138115430,"Evil Genius",purchase,1.0,0 -138115430,"Imagine Me",purchase,1.0,0 -138115430,"Numba Deluxe",purchase,1.0,0 -138115430,"Tropico",purchase,1.0,0 -138115430,"Tropico 2 Pirate Cove",purchase,1.0,0 -138115430,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -138115430,"Tropico 3 Absolute Power",purchase,1.0,0 -182984820,"Dota 2",purchase,1.0,0 -182984820,"Dota 2",play,0.3,0 -121352371,"Dota 2",purchase,1.0,0 -121352371,"Dota 2",play,2442.0,0 -53778883,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -53778883,"Red Orchestra Ostfront 41-45",play,15.2,0 -53778883,"Darkest Hour Europe '44-'45",purchase,1.0,0 -53778883,"Mare Nostrum",purchase,1.0,0 -105384518,"Space Engineers",purchase,1.0,0 -105384518,"Space Engineers",play,323.0,0 -105384518,"Kenshi",purchase,1.0,0 -105384518,"Kenshi",play,266.0,0 -105384518,"Kerbal Space Program",purchase,1.0,0 -105384518,"Kerbal Space Program",play,238.0,0 -105384518,"X Rebirth",purchase,1.0,0 -105384518,"X Rebirth",play,236.0,0 -105384518,"The Elder Scrolls V Skyrim",purchase,1.0,0 -105384518,"The Elder Scrolls V Skyrim",play,168.0,0 -105384518,"Spore Galactic Adventures",purchase,1.0,0 -105384518,"Spore Galactic Adventures",play,94.0,0 -105384518,"Project Zomboid",purchase,1.0,0 -105384518,"Project Zomboid",play,78.0,0 -105384518,"EverQuest II",purchase,1.0,0 -105384518,"EverQuest II",play,67.0,0 -105384518,"State of Decay",purchase,1.0,0 -105384518,"State of Decay",play,51.0,0 -105384518,"Survivalist",purchase,1.0,0 -105384518,"Survivalist",play,48.0,0 -105384518,"Godus",purchase,1.0,0 -105384518,"Godus",play,40.0,0 -105384518,"Planetary Annihilation",purchase,1.0,0 -105384518,"Planetary Annihilation",play,36.0,0 -105384518,"Endless Space",purchase,1.0,0 -105384518,"Endless Space",play,30.0,0 -105384518,"Life is Feudal Your Own",purchase,1.0,0 -105384518,"Life is Feudal Your Own",play,29.0,0 -105384518,"Skyscraper Simulator",purchase,1.0,0 -105384518,"Skyscraper Simulator",play,27.0,0 -105384518,"Supreme Commander 2",purchase,1.0,0 -105384518,"Supreme Commander 2",play,23.0,0 -105384518,"Metro 2033",purchase,1.0,0 -105384518,"Metro 2033",play,21.0,0 -105384518,"Homeworld Remastered Collection",purchase,1.0,0 -105384518,"Homeworld Remastered Collection",play,19.0,0 -105384518,"Mafia II",purchase,1.0,0 -105384518,"Mafia II",play,18.9,0 -105384518,"X3 Terran Conflict",purchase,1.0,0 -105384518,"X3 Terran Conflict",play,18.5,0 -105384518,"This War of Mine",purchase,1.0,0 -105384518,"This War of Mine",play,16.7,0 -105384518,"Wargame European Escalation",purchase,1.0,0 -105384518,"Wargame European Escalation",play,14.8,0 -105384518,"Defiance",purchase,1.0,0 -105384518,"Defiance",play,13.6,0 -105384518,"PAYDAY 2",purchase,1.0,0 -105384518,"PAYDAY 2",play,13.0,0 -105384518,"Salvation Prophecy",purchase,1.0,0 -105384518,"Salvation Prophecy",play,11.5,0 -105384518,"Starpoint Gemini 2",purchase,1.0,0 -105384518,"Starpoint Gemini 2",play,11.1,0 -105384518,"Take On Mars",purchase,1.0,0 -105384518,"Take On Mars",play,10.2,0 -105384518,"Metro Last Light",purchase,1.0,0 -105384518,"Metro Last Light",play,9.9,0 -105384518,"Gratuitous Space Battles",purchase,1.0,0 -105384518,"Gratuitous Space Battles",play,8.7,0 -105384518,"Eden Star Destroy - Build - Protect",purchase,1.0,0 -105384518,"Eden Star Destroy - Build - Protect",play,8.6,0 -105384518,"BeamNG.drive",purchase,1.0,0 -105384518,"BeamNG.drive",play,7.9,0 -105384518,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -105384518,"Deus Ex Human Revolution - Director's Cut",play,7.6,0 -105384518,"Automation - The Car Company Tycoon Game",purchase,1.0,0 -105384518,"Automation - The Car Company Tycoon Game",play,6.9,0 -105384518,"DayZ",purchase,1.0,0 -105384518,"DayZ",play,6.9,0 -105384518,"Stranded Deep",purchase,1.0,0 -105384518,"Stranded Deep",play,6.5,0 -105384518,"Unturned",purchase,1.0,0 -105384518,"Unturned",play,6.3,0 -105384518,"Banished",purchase,1.0,0 -105384518,"Banished",play,6.1,0 -105384518,"Maia",purchase,1.0,0 -105384518,"Maia",play,5.7,0 -105384518,"Lunar Flight",purchase,1.0,0 -105384518,"Lunar Flight",play,5.5,0 -105384518,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -105384518,"Vampire The Masquerade - Bloodlines",play,5.5,0 -105384518,"PlanetSide 2",purchase,1.0,0 -105384518,"PlanetSide 2",play,4.9,0 -105384518,"BioShock Infinite",purchase,1.0,0 -105384518,"BioShock Infinite",play,4.8,0 -105384518,"Mars Colony Challenger",purchase,1.0,0 -105384518,"Mars Colony Challenger",play,4.8,0 -105384518,"The Stanley Parable",purchase,1.0,0 -105384518,"The Stanley Parable",play,4.6,0 -105384518,"Car Mechanic Simulator 2014",purchase,1.0,0 -105384518,"Car Mechanic Simulator 2014",play,4.2,0 -105384518,"7 Days to Die",purchase,1.0,0 -105384518,"7 Days to Die",play,4.0,0 -105384518,"Hitman 2 Silent Assassin",purchase,1.0,0 -105384518,"Hitman 2 Silent Assassin",play,3.2,0 -105384518,"Far Cry 3",purchase,1.0,0 -105384518,"Far Cry 3",play,3.2,0 -105384518,"Universe Sandbox ",purchase,1.0,0 -105384518,"Universe Sandbox ",play,2.6,0 -105384518,"How to Survive",purchase,1.0,0 -105384518,"How to Survive",play,2.6,0 -105384518,"Aliens vs. Predator",purchase,1.0,0 -105384518,"Aliens vs. Predator",play,2.5,0 -105384518,"Kinetic Void",purchase,1.0,0 -105384518,"Kinetic Void",play,2.2,0 -105384518,"The Fifth Day",purchase,1.0,0 -105384518,"The Fifth Day",play,2.1,0 -105384518,"Car Mechanic Simulator 2015",purchase,1.0,0 -105384518,"Car Mechanic Simulator 2015",play,2.1,0 -105384518,"StarForge",purchase,1.0,0 -105384518,"StarForge",play,1.9,0 -105384518,"Empyrion - Galactic Survival",purchase,1.0,0 -105384518,"Empyrion - Galactic Survival",play,1.7,0 -105384518,"The Dead Linger",purchase,1.0,0 -105384518,"The Dead Linger",play,1.6,0 -105384518,"No More Room in Hell",purchase,1.0,0 -105384518,"No More Room in Hell",play,1.6,0 -105384518,"Cry of Fear",purchase,1.0,0 -105384518,"Cry of Fear",play,1.2,0 -105384518,"Outlast",purchase,1.0,0 -105384518,"Outlast",play,1.0,0 -105384518,"Day One Garry's Incident",purchase,1.0,0 -105384518,"Day One Garry's Incident",play,1.0,0 -105384518,"Besiege",purchase,1.0,0 -105384518,"Besiege",play,1.0,0 -105384518,"Mars War Logs",purchase,1.0,0 -105384518,"Mars War Logs",play,1.0,0 -105384518,"Ravaged Zombie Apocalypse",purchase,1.0,0 -105384518,"Ravaged Zombie Apocalypse",play,0.5,0 -105384518,"Hard Reset",purchase,1.0,0 -105384518,"Hard Reset",play,0.4,0 -105384518,"Toribash",purchase,1.0,0 -105384518,"Toribash",play,0.3,0 -105384518,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -105384518,"Sins of a Solar Empire Rebellion",play,0.3,0 -105384518,"Proteus",purchase,1.0,0 -105384518,"Proteus",play,0.1,0 -105384518,"Spore",purchase,1.0,0 -105384518,"Spore",play,0.1,0 -105384518,"Critical Mass",purchase,1.0,0 -105384518,"Hitman Blood Money",purchase,1.0,0 -105384518,"Contagion",purchase,1.0,0 -105384518,"Return to Mysterious Island",purchase,1.0,0 -105384518,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -105384518,"Car Mechanic Simulator 2015 - TraderPack",purchase,1.0,0 -105384518,"Car Mechanic Simulator 2015 - Visual Tuning",purchase,1.0,0 -105384518,"Car Mechanic Simulator 2015 - Youngtimer",purchase,1.0,0 -105384518,"Hard Reset Exile DLC",purchase,1.0,0 -105384518,"Hitman Codename 47",purchase,1.0,0 -105384518,"Spore Creepy & Cute Parts Pack",purchase,1.0,0 -105384518,"State of Decay - Breakdown",purchase,1.0,0 -105384518,"State of Decay - Lifeline",purchase,1.0,0 -105384518,"Supreme Commander 2 - Infinite War Battle Pack One",purchase,1.0,0 -105384518,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -105384518,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -105384518,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -105384518,"X Rebirth The Teladi Outpost",purchase,1.0,0 -36546868,"Space Engineers",purchase,1.0,0 -36546868,"Space Engineers",play,819.0,0 -36546868,"Team Fortress 2",purchase,1.0,0 -36546868,"Team Fortress 2",play,374.0,0 -36546868,"Left 4 Dead",purchase,1.0,0 -36546868,"Left 4 Dead",play,270.0,0 -36546868,"Sid Meier's Civilization V",purchase,1.0,0 -36546868,"Sid Meier's Civilization V",play,134.0,0 -36546868,"Global Agenda",purchase,1.0,0 -36546868,"Global Agenda",play,97.0,0 -36546868,"Borderlands",purchase,1.0,0 -36546868,"Borderlands",play,87.0,0 -36546868,"Grand Theft Auto IV",purchase,1.0,0 -36546868,"Grand Theft Auto IV",play,85.0,0 -36546868,"Battlefield Bad Company 2",purchase,1.0,0 -36546868,"Battlefield Bad Company 2",play,84.0,0 -36546868,"Grand Theft Auto V",purchase,1.0,0 -36546868,"Grand Theft Auto V",play,73.0,0 -36546868,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -36546868,"Warhammer 40,000 Dawn of War II",play,69.0,0 -36546868,"Guns of Icarus Online",purchase,1.0,0 -36546868,"Guns of Icarus Online",play,52.0,0 -36546868,"Star Wars Knights of the Old Republic",purchase,1.0,0 -36546868,"Star Wars Knights of the Old Republic",play,52.0,0 -36546868,"Arma 2 Operation Arrowhead",purchase,1.0,0 -36546868,"Arma 2 Operation Arrowhead",play,51.0,0 -36546868,"Killing Floor",purchase,1.0,0 -36546868,"Killing Floor",play,42.0,0 -36546868,"DayZ",purchase,1.0,0 -36546868,"DayZ",play,41.0,0 -36546868,"Left 4 Dead 2",purchase,1.0,0 -36546868,"Left 4 Dead 2",play,35.0,0 -36546868,"The Walking Dead",purchase,1.0,0 -36546868,"The Walking Dead",play,35.0,0 -36546868,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -36546868,"Tom Clancy's Splinter Cell Conviction",play,34.0,0 -36546868,"Portal 2",purchase,1.0,0 -36546868,"Portal 2",play,30.0,0 -36546868,"Rayman Legends",purchase,1.0,0 -36546868,"Rayman Legends",play,29.0,0 -36546868,"Street Fighter IV",purchase,1.0,0 -36546868,"Street Fighter IV",play,27.0,0 -36546868,"FTL Faster Than Light",purchase,1.0,0 -36546868,"FTL Faster Than Light",play,25.0,0 -36546868,"Rayman Origins",purchase,1.0,0 -36546868,"Rayman Origins",play,25.0,0 -36546868,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -36546868,"Warhammer 40,000 Dawn of War Soulstorm",play,23.0,0 -36546868,"Magicka",purchase,1.0,0 -36546868,"Magicka",play,21.0,0 -36546868,"Worms Reloaded",purchase,1.0,0 -36546868,"Worms Reloaded",play,20.0,0 -36546868,"Chivalry Medieval Warfare",purchase,1.0,0 -36546868,"Chivalry Medieval Warfare",play,19.8,0 -36546868,"Ultra Street Fighter IV",purchase,1.0,0 -36546868,"Ultra Street Fighter IV",play,18.1,0 -36546868,"Depth",purchase,1.0,0 -36546868,"Depth",play,17.9,0 -36546868,"EVE Online",purchase,1.0,0 -36546868,"EVE Online",play,14.7,0 -36546868,"Counter-Strike Global Offensive",purchase,1.0,0 -36546868,"Counter-Strike Global Offensive",play,14.2,0 -36546868,"Trine 2",purchase,1.0,0 -36546868,"Trine 2",play,13.9,0 -36546868,"Spore Galactic Adventures",purchase,1.0,0 -36546868,"Spore Galactic Adventures",play,13.9,0 -36546868,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -36546868,"Unreal Tournament 3 Black Edition",play,13.5,0 -36546868,"BIT.TRIP RUNNER",purchase,1.0,0 -36546868,"BIT.TRIP RUNNER",play,13.1,0 -36546868,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -36546868,"Sonic & All-Stars Racing Transformed",play,12.7,0 -36546868,"Braid",purchase,1.0,0 -36546868,"Braid",play,11.7,0 -36546868,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -36546868,"Injustice Gods Among Us Ultimate Edition",play,11.4,0 -36546868,"Empire Total War",purchase,1.0,0 -36546868,"Empire Total War",play,11.1,0 -36546868,"Super Meat Boy",purchase,1.0,0 -36546868,"Super Meat Boy",play,10.8,0 -36546868,"Mass Effect",purchase,1.0,0 -36546868,"Mass Effect",play,10.8,0 -36546868,"The Walking Dead Season Two",purchase,1.0,0 -36546868,"The Walking Dead Season Two",play,10.5,0 -36546868,"Portal",purchase,1.0,0 -36546868,"Portal",play,10.3,0 -36546868,"Keep Talking and Nobody Explodes",purchase,1.0,0 -36546868,"Keep Talking and Nobody Explodes",play,9.6,0 -36546868,"Trine 3 The Artifacts of Power",purchase,1.0,0 -36546868,"Trine 3 The Artifacts of Power",play,9.4,0 -36546868,"The Elder Scrolls V Skyrim",purchase,1.0,0 -36546868,"The Elder Scrolls V Skyrim",play,9.3,0 -36546868,"Beat Hazard",purchase,1.0,0 -36546868,"Beat Hazard",play,9.2,0 -36546868,"Monday Night Combat",purchase,1.0,0 -36546868,"Monday Night Combat",play,9.1,0 -36546868,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -36546868,"Resident Evil 5 / Biohazard 5",play,8.9,0 -36546868,"Arma 2",purchase,1.0,0 -36546868,"Arma 2",play,8.6,0 -36546868,"From Dust",purchase,1.0,0 -36546868,"From Dust",play,8.5,0 -36546868,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -36546868,"Sid Meier's Civilization Beyond Earth",play,8.2,0 -36546868,"Bastion",purchase,1.0,0 -36546868,"Bastion",play,7.9,0 -36546868,"Madballs in...Babo Invasion",purchase,1.0,0 -36546868,"Madballs in...Babo Invasion",play,7.7,0 -36546868,"And Yet It Moves",purchase,1.0,0 -36546868,"And Yet It Moves",play,7.4,0 -36546868,"Project Zomboid",purchase,1.0,0 -36546868,"Project Zomboid",play,7.4,0 -36546868,"Shank",purchase,1.0,0 -36546868,"Shank",play,7.4,0 -36546868,"DRAGON BALL XENOVERSE",purchase,1.0,0 -36546868,"DRAGON BALL XENOVERSE",play,7.4,0 -36546868,"Terraria",purchase,1.0,0 -36546868,"Terraria",play,6.1,0 -36546868,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -36546868,"F.E.A.R. 2 Project Origin",play,6.1,0 -36546868,"Adventures of Shuggy",purchase,1.0,0 -36546868,"Adventures of Shuggy",play,5.9,0 -36546868,"Poker Night at the Inventory",purchase,1.0,0 -36546868,"Poker Night at the Inventory",play,5.7,0 -36546868,"Dead Island",purchase,1.0,0 -36546868,"Dead Island",play,5.6,0 -36546868,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -36546868,"Red Faction Guerrilla Steam Edition",play,5.3,0 -36546868,"Total War ROME II - Emperor Edition",purchase,1.0,0 -36546868,"Total War ROME II - Emperor Edition",play,5.2,0 -36546868,"PAYDAY 2",purchase,1.0,0 -36546868,"PAYDAY 2",play,5.1,0 -36546868,"Far Cry 2",purchase,1.0,0 -36546868,"Far Cry 2",play,4.8,0 -36546868,"Warhammer 40,000 Space Marine",purchase,1.0,0 -36546868,"Warhammer 40,000 Space Marine",play,4.7,0 -36546868,"The Amazing Spider-Man",purchase,1.0,0 -36546868,"The Amazing Spider-Man",play,4.4,0 -36546868,"Borderlands 2",purchase,1.0,0 -36546868,"Borderlands 2",play,4.1,0 -36546868,"Frozen Synapse",purchase,1.0,0 -36546868,"Frozen Synapse",play,3.7,0 -36546868,"Saints Row The Third",purchase,1.0,0 -36546868,"Saints Row The Third",play,3.6,0 -36546868,"LEGO MARVEL Super Heroes",purchase,1.0,0 -36546868,"LEGO MARVEL Super Heroes",play,3.6,0 -36546868,"The Witcher Enhanced Edition",purchase,1.0,0 -36546868,"The Witcher Enhanced Edition",play,3.5,0 -36546868,"Jurassic Park The Game",purchase,1.0,0 -36546868,"Jurassic Park The Game",play,3.5,0 -36546868,"Serious Sam HD The First Encounter",purchase,1.0,0 -36546868,"Serious Sam HD The First Encounter",play,3.5,0 -36546868,"Minecraft Story Mode - A Telltale Games Series",purchase,1.0,0 -36546868,"Minecraft Story Mode - A Telltale Games Series",play,3.4,0 -36546868,"Quake Live",purchase,1.0,0 -36546868,"Quake Live",play,3.4,0 -36546868,"South Park The Stick of Truth",purchase,1.0,0 -36546868,"South Park The Stick of Truth",play,3.2,0 -36546868,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -36546868,"Batman Arkham Asylum GOTY Edition",play,3.2,0 -36546868,"Blur",purchase,1.0,0 -36546868,"Blur",play,3.2,0 -36546868,"Osmos",purchase,1.0,0 -36546868,"Osmos",play,3.2,0 -36546868,"LIMBO",purchase,1.0,0 -36546868,"LIMBO",play,3.1,0 -36546868,"L.A. Noire",purchase,1.0,0 -36546868,"L.A. Noire",play,2.9,0 -36546868,"Rock of Ages",purchase,1.0,0 -36546868,"Rock of Ages",play,2.9,0 -36546868,"Farming Simulator 2013",purchase,1.0,0 -36546868,"Farming Simulator 2013",play,2.8,0 -36546868,"F1 Race Stars",purchase,1.0,0 -36546868,"F1 Race Stars",play,2.7,0 -36546868,"Serious Sam 3 BFE",purchase,1.0,0 -36546868,"Serious Sam 3 BFE",play,2.6,0 -36546868,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -36546868,"Back to the Future Ep 1 - It's About Time",play,2.6,0 -36546868,"Cogs",purchase,1.0,0 -36546868,"Cogs",play,2.5,0 -36546868,"Star Trek Online",purchase,1.0,0 -36546868,"Star Trek Online",play,2.4,0 -36546868,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -36546868,"Warhammer 40,000 Dawn of War II Retribution",play,2.4,0 -36546868,"Natural Selection 2",purchase,1.0,0 -36546868,"Natural Selection 2",play,2.4,0 -36546868,"Duke Nukem Forever",purchase,1.0,0 -36546868,"Duke Nukem Forever",play,2.4,0 -36546868,"Total War SHOGUN 2",purchase,1.0,0 -36546868,"Total War SHOGUN 2",play,2.3,0 -36546868,"Dota 2",purchase,1.0,0 -36546868,"Dota 2",play,2.3,0 -36546868,"Killing Floor 2",purchase,1.0,0 -36546868,"Killing Floor 2",play,2.1,0 -36546868,"Sonic Generations",purchase,1.0,0 -36546868,"Sonic Generations",play,2.0,0 -36546868,"BRINK",purchase,1.0,0 -36546868,"BRINK",play,2.0,0 -36546868,"Octodad Dadliest Catch",purchase,1.0,0 -36546868,"Octodad Dadliest Catch",play,2.0,0 -36546868,"Castle Crashers",purchase,1.0,0 -36546868,"Castle Crashers",play,2.0,0 -36546868,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -36546868,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",play,1.9,0 -36546868,"Strike Suit Zero",purchase,1.0,0 -36546868,"Strike Suit Zero",play,1.9,0 -36546868,"Atom Zombie Smasher ",purchase,1.0,0 -36546868,"Atom Zombie Smasher ",play,1.9,0 -36546868,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -36546868,"Game of Thrones - A Telltale Games Series",play,1.8,0 -36546868,"Mad Max",purchase,1.0,0 -36546868,"Mad Max",play,1.8,0 -36546868,"Toki Tori",purchase,1.0,0 -36546868,"Toki Tori",play,1.8,0 -36546868,"Hitman Absolution",purchase,1.0,0 -36546868,"Hitman Absolution",play,1.8,0 -36546868,"Overlord II",purchase,1.0,0 -36546868,"Overlord II",play,1.8,0 -36546868,"Starbound",purchase,1.0,0 -36546868,"Starbound",play,1.7,0 -36546868,"Counter-Strike Source",purchase,1.0,0 -36546868,"Counter-Strike Source",play,1.6,0 -36546868,"Deadlight",purchase,1.0,0 -36546868,"Deadlight",play,1.6,0 -36546868,"Trine",purchase,1.0,0 -36546868,"Trine",play,1.5,0 -36546868,"Deus Ex Human Revolution",purchase,1.0,0 -36546868,"Deus Ex Human Revolution",play,1.5,0 -36546868,"Goat Simulator",purchase,1.0,0 -36546868,"Goat Simulator",play,1.5,0 -36546868,"BattleBlock Theater",purchase,1.0,0 -36546868,"BattleBlock Theater",play,1.4,0 -36546868,"Arma 3",purchase,1.0,0 -36546868,"Arma 3",play,1.4,0 -36546868,"Rust",purchase,1.0,0 -36546868,"Rust",play,1.4,0 -36546868,"Driver San Francisco",purchase,1.0,0 -36546868,"Driver San Francisco",play,1.3,0 -36546868,"Infestation Survivor Stories",purchase,1.0,0 -36546868,"Infestation Survivor Stories",play,1.3,0 -36546868,"WARP",purchase,1.0,0 -36546868,"WARP",play,1.3,0 -36546868,"Garry's Mod",purchase,1.0,0 -36546868,"Garry's Mod",play,1.3,0 -36546868,"The Amazing Spider-Man 2",purchase,1.0,0 -36546868,"The Amazing Spider-Man 2",play,1.2,0 -36546868,"Her Story",purchase,1.0,0 -36546868,"Her Story",play,1.2,0 -36546868,"Awesomenauts",purchase,1.0,0 -36546868,"Awesomenauts",play,1.1,0 -36546868,"Universe Sandbox",purchase,1.0,0 -36546868,"Universe Sandbox",play,1.1,0 -36546868,"Grand Theft Auto San Andreas",purchase,1.0,0 -36546868,"Grand Theft Auto San Andreas",play,1.1,0 -36546868,"PAYDAY The Heist",purchase,1.0,0 -36546868,"PAYDAY The Heist",play,1.0,0 -36546868,"Electronic Super Joy",purchase,1.0,0 -36546868,"Electronic Super Joy",play,1.0,0 -36546868,"Half-Life",purchase,1.0,0 -36546868,"Half-Life",play,1.0,0 -36546868,"Don't Starve Together Beta",purchase,1.0,0 -36546868,"Don't Starve Together Beta",play,1.0,0 -36546868,"VVVVVV",purchase,1.0,0 -36546868,"VVVVVV",play,1.0,0 -36546868,"Tomb Raider",purchase,1.0,0 -36546868,"Tomb Raider",play,1.0,0 -36546868,"Blocks That Matter",purchase,1.0,0 -36546868,"Blocks That Matter",play,0.9,0 -36546868,"Rocket League",purchase,1.0,0 -36546868,"Rocket League",play,0.9,0 -36546868,"Darksiders",purchase,1.0,0 -36546868,"Darksiders",play,0.9,0 -36546868,"Giana Sisters Twisted Dreams",purchase,1.0,0 -36546868,"Giana Sisters Twisted Dreams",play,0.9,0 -36546868,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -36546868,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,0.8,0 -36546868,"Batman Arkham Origins",purchase,1.0,0 -36546868,"Batman Arkham Origins",play,0.8,0 -36546868,"The Binding of Isaac",purchase,1.0,0 -36546868,"The Binding of Isaac",play,0.8,0 -36546868,"Synergy",purchase,1.0,0 -36546868,"Synergy",play,0.8,0 -36546868,"7 Days to Die",purchase,1.0,0 -36546868,"7 Days to Die",play,0.8,0 -36546868,"X3 Terran Conflict",purchase,1.0,0 -36546868,"X3 Terran Conflict",play,0.8,0 -36546868,"The Bridge",purchase,1.0,0 -36546868,"The Bridge",play,0.8,0 -36546868,"Dungeon Defenders",purchase,1.0,0 -36546868,"Dungeon Defenders",play,0.7,0 -36546868,"Bob Came in Pieces",purchase,1.0,0 -36546868,"Bob Came in Pieces",play,0.7,0 -36546868,"Tom Clancy's Splinter Cell",purchase,1.0,0 -36546868,"Tom Clancy's Splinter Cell",play,0.7,0 -36546868,"Insurgency",purchase,1.0,0 -36546868,"Insurgency",play,0.7,0 -36546868,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -36546868,"Sins of a Solar Empire Rebellion",play,0.7,0 -36546868,"Sideway",purchase,1.0,0 -36546868,"Sideway",play,0.6,0 -36546868,"The Beginner's Guide",purchase,1.0,0 -36546868,"The Beginner's Guide",play,0.6,0 -36546868,"Orcs Must Die!",purchase,1.0,0 -36546868,"Orcs Must Die!",play,0.6,0 -36546868,"Alien Swarm",purchase,1.0,0 -36546868,"Alien Swarm",play,0.6,0 -36546868,"Shank 2",purchase,1.0,0 -36546868,"Shank 2",play,0.6,0 -36546868,"Watch_Dogs",purchase,1.0,0 -36546868,"Watch_Dogs",play,0.6,0 -36546868,"Mark of the Ninja",purchase,1.0,0 -36546868,"Mark of the Ninja",play,0.6,0 -36546868,"Darkspore",purchase,1.0,0 -36546868,"Darkspore",play,0.6,0 -36546868,"Amnesia The Dark Descent",purchase,1.0,0 -36546868,"Amnesia The Dark Descent",play,0.6,0 -36546868,"DEFCON",purchase,1.0,0 -36546868,"DEFCON",play,0.5,0 -36546868,"Just Cause 2",purchase,1.0,0 -36546868,"Just Cause 2",play,0.5,0 -36546868,"Prison Architect",purchase,1.0,0 -36546868,"Prison Architect",play,0.5,0 -36546868,"The Stanley Parable",purchase,1.0,0 -36546868,"The Stanley Parable",play,0.5,0 -36546868,"Dead Rising 3",purchase,1.0,0 -36546868,"Dead Rising 3",play,0.5,0 -36546868,"Super Monday Night Combat",purchase,1.0,0 -36546868,"Super Monday Night Combat",play,0.5,0 -36546868,"Rochard",purchase,1.0,0 -36546868,"Rochard",play,0.5,0 -36546868,"Thinking with Time Machine",purchase,1.0,0 -36546868,"Thinking with Time Machine",play,0.5,0 -36546868,"Guacamelee! Gold Edition",purchase,1.0,0 -36546868,"Guacamelee! Gold Edition",play,0.4,0 -36546868,"XCOM Enemy Unknown",purchase,1.0,0 -36546868,"XCOM Enemy Unknown",play,0.4,0 -36546868,"Starpoint Gemini 2",purchase,1.0,0 -36546868,"Starpoint Gemini 2",play,0.4,0 -36546868,"Planetary Annihilation",purchase,1.0,0 -36546868,"Planetary Annihilation",play,0.4,0 -36546868,"Eternal Silence",purchase,1.0,0 -36546868,"Eternal Silence",play,0.4,0 -36546868,"Lucidity",purchase,1.0,0 -36546868,"Lucidity",play,0.4,0 -36546868,"EDGE",purchase,1.0,0 -36546868,"EDGE",play,0.4,0 -36546868,"GunZ 2 The Second Duel",purchase,1.0,0 -36546868,"GunZ 2 The Second Duel",play,0.4,0 -36546868,"Overlord",purchase,1.0,0 -36546868,"Overlord",play,0.4,0 -36546868,"Shadow Warrior",purchase,1.0,0 -36546868,"Shadow Warrior",play,0.4,0 -36546868,"DiRT 3",purchase,1.0,0 -36546868,"DiRT 3",play,0.4,0 -36546868,"Dungeons of Dredmor",purchase,1.0,0 -36546868,"Dungeons of Dredmor",play,0.3,0 -36546868,"State of Decay",purchase,1.0,0 -36546868,"State of Decay",play,0.3,0 -36546868,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -36546868,"Dark Souls Prepare to Die Edition",play,0.3,0 -36546868,"BioShock Infinite",purchase,1.0,0 -36546868,"BioShock Infinite",play,0.3,0 -36546868,"LEGO The Hobbit",purchase,1.0,0 -36546868,"LEGO The Hobbit",play,0.3,0 -36546868,"DmC Devil May Cry",purchase,1.0,0 -36546868,"DmC Devil May Cry",play,0.3,0 -36546868,"Broforce",purchase,1.0,0 -36546868,"Broforce",play,0.3,0 -36546868,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -36546868,"Sam & Max 301 The Penal Zone",play,0.3,0 -36546868,"Shoot Many Robots",purchase,1.0,0 -36546868,"Shoot Many Robots",play,0.3,0 -36546868,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -36546868,"Resident Evil 6 / Biohazard 6",play,0.3,0 -36546868,"Q.U.B.E.",purchase,1.0,0 -36546868,"Q.U.B.E.",play,0.3,0 -36546868,"inMomentum",purchase,1.0,0 -36546868,"inMomentum",play,0.3,0 -36546868,"The Yawhg",purchase,1.0,0 -36546868,"The Yawhg",play,0.3,0 -36546868,"Rush Bros",purchase,1.0,0 -36546868,"Rush Bros",play,0.3,0 -36546868,"Jamestown",purchase,1.0,0 -36546868,"Jamestown",play,0.3,0 -36546868,"Dishonored",purchase,1.0,0 -36546868,"Dishonored",play,0.3,0 -36546868,"Don't Starve",purchase,1.0,0 -36546868,"Don't Starve",play,0.3,0 -36546868,"FEZ",purchase,1.0,0 -36546868,"FEZ",play,0.3,0 -36546868,"Strike Suit Infinity",purchase,1.0,0 -36546868,"Strike Suit Infinity",play,0.3,0 -36546868,"Lara Croft and the Guardian of Light",purchase,1.0,0 -36546868,"Lara Croft and the Guardian of Light",play,0.3,0 -36546868,"BIT.TRIP BEAT",purchase,1.0,0 -36546868,"BIT.TRIP BEAT",play,0.3,0 -36546868,"Ace of Spades",purchase,1.0,0 -36546868,"Ace of Spades",play,0.2,0 -36546868,"Party of Sin",purchase,1.0,0 -36546868,"Party of Sin",play,0.2,0 -36546868,"Half-Life 2 Deathmatch",purchase,1.0,0 -36546868,"Half-Life 2 Deathmatch",play,0.2,0 -36546868,"Nexuiz",purchase,1.0,0 -36546868,"Nexuiz",play,0.2,0 -36546868,"Bully Scholarship Edition",purchase,1.0,0 -36546868,"Bully Scholarship Edition",play,0.2,0 -36546868,"Hero Academy",purchase,1.0,0 -36546868,"Hero Academy",play,0.2,0 -36546868,"The LEGO Movie - Videogame",purchase,1.0,0 -36546868,"The LEGO Movie - Videogame",play,0.2,0 -36546868,"Child of Light",purchase,1.0,0 -36546868,"Child of Light",play,0.2,0 -36546868,"The Path",purchase,1.0,0 -36546868,"The Path",play,0.2,0 -36546868,"Wizorb",purchase,1.0,0 -36546868,"Wizorb",play,0.2,0 -36546868,"Pid ",purchase,1.0,0 -36546868,"Pid ",play,0.2,0 -36546868,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -36546868,"Dragon Age Origins - Ultimate Edition",play,0.2,0 -36546868,"ibb & obb",purchase,1.0,0 -36546868,"ibb & obb",play,0.2,0 -36546868,"Revenge of the Titans",purchase,1.0,0 -36546868,"Revenge of the Titans",play,0.2,0 -36546868,"Space Pirates and Zombies",purchase,1.0,0 -36546868,"Space Pirates and Zombies",play,0.2,0 -36546868,"Gish",purchase,1.0,0 -36546868,"Gish",play,0.2,0 -36546868,"Steel Storm Burning Retribution",purchase,1.0,0 -36546868,"Steel Storm Burning Retribution",play,0.2,0 -36546868,"SkyDrift",purchase,1.0,0 -36546868,"SkyDrift",play,0.2,0 -36546868,"Team Fortress Classic",purchase,1.0,0 -36546868,"Team Fortress Classic",play,0.2,0 -36546868,"Spelunky",purchase,1.0,0 -36546868,"Spelunky",play,0.2,0 -36546868,"Flight Control HD",purchase,1.0,0 -36546868,"Flight Control HD",play,0.2,0 -36546868,"Kerbal Space Program",purchase,1.0,0 -36546868,"Kerbal Space Program",play,0.1,0 -36546868,"Transistor",purchase,1.0,0 -36546868,"Transistor",play,0.1,0 -36546868,"Eufloria",purchase,1.0,0 -36546868,"Eufloria",play,0.1,0 -36546868,"Cave Story+",purchase,1.0,0 -36546868,"Cave Story+",play,0.1,0 -36546868,"Blood Bowl Legendary Edition",purchase,1.0,0 -36546868,"Blood Bowl Legendary Edition",play,0.1,0 -36546868,"Torchlight",purchase,1.0,0 -36546868,"Torchlight",play,0.1,0 -36546868,"Legend of Dungeon",purchase,1.0,0 -36546868,"Legend of Dungeon",play,0.1,0 -36546868,"Aquaria",purchase,1.0,0 -36546868,"Aquaria",play,0.1,0 -36546868,"Jazzpunk",purchase,1.0,0 -36546868,"Jazzpunk",play,0.1,0 -36546868,"Medieval Engineers",purchase,1.0,0 -36546868,"Medieval Engineers",play,0.1,0 -36546868,"Bunch Of Heroes",purchase,1.0,0 -36546868,"Bunch Of Heroes",play,0.1,0 -36546868,"Assault Android Cactus",purchase,1.0,0 -36546868,"Assault Android Cactus",play,0.1,0 -36546868,"Spore",purchase,1.0,0 -36546868,"Spore",play,0.1,0 -36546868,"Crayon Physics Deluxe",purchase,1.0,0 -36546868,"Crayon Physics Deluxe",play,0.1,0 -36546868,"Another World",purchase,1.0,0 -36546868,"Another World",play,0.1,0 -36546868,"Dear Esther",purchase,1.0,0 -36546868,"Dear Esther",play,0.1,0 -36546868,"Surgeon Simulator",purchase,1.0,0 -36546868,"Hotline Miami",purchase,1.0,0 -36546868,"RUSH",purchase,1.0,0 -36546868,"Dead Pixels",purchase,1.0,0 -36546868,"Dead Realm",purchase,1.0,0 -36546868,"The Wolf Among Us",purchase,1.0,0 -36546868,"Age of Empires III Complete Collection",purchase,1.0,0 -36546868,"Angry Video Game Nerd Adventures",purchase,1.0,0 -36546868,"SpeedRunners",purchase,1.0,0 -36546868,"Thomas Was Alone",purchase,1.0,0 -36546868,"Shadowgrounds",purchase,1.0,0 -36546868,"Super Puzzle Platformer Deluxe",purchase,1.0,0 -36546868,"Gratuitous Space Battles",purchase,1.0,0 -36546868,"Tidalis",purchase,1.0,0 -36546868,"Ballpoint Universe Infinite",purchase,1.0,0 -36546868,"Kentucky Route Zero",purchase,1.0,0 -36546868,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",purchase,1.0,0 -36546868,"Proteus",purchase,1.0,0 -36546868,"Monaco",purchase,1.0,0 -36546868,"Half-Life 2",purchase,1.0,0 -36546868,"Half-Life 2 Episode Two",purchase,1.0,0 -36546868,"Spore Creepy & Cute Parts Pack",purchase,1.0,0 -36546868,"Brothers - A Tale of Two Sons",purchase,1.0,0 -36546868,"Demolition, Inc.",purchase,1.0,0 -36546868,"Ms. Splosion Man",purchase,1.0,0 -36546868,"Torchlight II",purchase,1.0,0 -36546868,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -36546868,"Offspring Fling!",purchase,1.0,0 -36546868,"Alan Wake",purchase,1.0,0 -36546868,"Alan Wake's American Nightmare",purchase,1.0,0 -36546868,"Alien Spidy",purchase,1.0,0 -36546868,"Always Sometimes Monsters",purchase,1.0,0 -36546868,"Amnesia A Machine for Pigs",purchase,1.0,0 -36546868,"Anomaly Warzone Earth",purchase,1.0,0 -36546868,"Antichamber",purchase,1.0,0 -36546868,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -36546868,"Arma 3 Helicopters",purchase,1.0,0 -36546868,"Arma 3 Karts",purchase,1.0,0 -36546868,"Arma 3 Marksmen",purchase,1.0,0 -36546868,"Arma 3 Zeus",purchase,1.0,0 -36546868,"Avadon The Black Fortress",purchase,1.0,0 -36546868,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -36546868,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -36546868,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -36546868,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -36546868,"Batman Arkham City GOTY",purchase,1.0,0 -36546868,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -36546868,"Batman Arkham Origins - Initiation",purchase,1.0,0 -36546868,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -36546868,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -36546868,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -36546868,"BioShock",purchase,1.0,0 -36546868,"BioShock 2",purchase,1.0,0 -36546868,"BIT.TRIP VOID",purchase,1.0,0 -36546868,"Blackguards",purchase,1.0,0 -36546868,"Botanicula",purchase,1.0,0 -36546868,"Broken Age",purchase,1.0,0 -36546868,"Brtal Legend",purchase,1.0,0 -36546868,"Bulletstorm",purchase,1.0,0 -36546868,"Call of Juarez Gunslinger",purchase,1.0,0 -36546868,"CastleStorm",purchase,1.0,0 -36546868,"CastleStorm - From Outcast to Savior",purchase,1.0,0 -36546868,"CastleStorm - The Warrior Queen",purchase,1.0,0 -36546868,"Castlevania Lords of Shadow - Ultimate Edition",purchase,1.0,0 -36546868,"Chantelise",purchase,1.0,0 -36546868,"Cloning Clyde",purchase,1.0,0 -36546868,"Company of Heroes",purchase,1.0,0 -36546868,"Company of Heroes (New Steam Version)",purchase,1.0,0 -36546868,"Company of Heroes Opposing Fronts",purchase,1.0,0 -36546868,"Company of Heroes Tales of Valor",purchase,1.0,0 -36546868,"Contagion",purchase,1.0,0 -36546868,"Darwinia",purchase,1.0,0 -36546868,"Dead Rising 3 DLC1",purchase,1.0,0 -36546868,"Dead Rising 3 DLC2",purchase,1.0,0 -36546868,"Dead Rising 3 DLC3",purchase,1.0,0 -36546868,"Dead Rising 3 DLC4",purchase,1.0,0 -36546868,"Depth DEV",purchase,1.0,0 -36546868,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -36546868,"DiRT 3 Complete Edition",purchase,1.0,0 -36546868,"DLC Quest",purchase,1.0,0 -36546868,"Dust An Elysian Tail",purchase,1.0,0 -36546868,"Electronic Super Joy Bonus Content",purchase,1.0,0 -36546868,"Element4l",purchase,1.0,0 -36546868,"Endless Space",purchase,1.0,0 -36546868,"Epigenesis",purchase,1.0,0 -36546868,"Eufloria HD",purchase,1.0,0 -36546868,"Eufloria HD Original Soundtrack",purchase,1.0,0 -36546868,"Euro Truck Simulator 2",purchase,1.0,0 -36546868,"F.E.A.R. 3",purchase,1.0,0 -36546868,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -36546868,"Far Cry 3",purchase,1.0,0 -36546868,"Fight The Dragon",purchase,1.0,0 -36546868,"Firefall",purchase,1.0,0 -36546868,"FLY'N",purchase,1.0,0 -36546868,"FORCED",purchase,1.0,0 -36546868,"Full Mojo Rampage",purchase,1.0,0 -36546868,"Gone Home",purchase,1.0,0 -36546868,"Grand Theft Auto San Andreas",purchase,1.0,0 -36546868,"Greed Corp",purchase,1.0,0 -36546868,"GRID",purchase,1.0,0 -36546868,"GRID 2",purchase,1.0,0 -36546868,"Hack 'n' Slash",purchase,1.0,0 -36546868,"Half-Life 2 Episode One",purchase,1.0,0 -36546868,"Half-Life 2 Lost Coast",purchase,1.0,0 -36546868,"Half-Life Blue Shift",purchase,1.0,0 -36546868,"Half-Life Opposing Force",purchase,1.0,0 -36546868,"Hammerfight",purchase,1.0,0 -36546868,"HOARD",purchase,1.0,0 -36546868,"Insanely Twisted Shadow Planet",purchase,1.0,0 -36546868,"Intrusion 2",purchase,1.0,0 -36546868,"KickBeat Steam Edition",purchase,1.0,0 -36546868,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -36546868,"King's Bounty The Legend",purchase,1.0,0 -36546868,"Legend of Grimrock",purchase,1.0,0 -36546868,"Machinarium",purchase,1.0,0 -36546868,"Magicka Final Frontier",purchase,1.0,0 -36546868,"Magicka Frozen Lake",purchase,1.0,0 -36546868,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -36546868,"Magicka Nippon",purchase,1.0,0 -36546868,"Magicka Party Robes",purchase,1.0,0 -36546868,"Magicka The Watchtower",purchase,1.0,0 -36546868,"Magicka Vietnam",purchase,1.0,0 -36546868,"Magicka Wizard's Survival Kit",purchase,1.0,0 -36546868,"Mark of the Ninja Special Edition DLC",purchase,1.0,0 -36546868,"Mass Effect 2",purchase,1.0,0 -36546868,"Metro 2033",purchase,1.0,0 -36546868,"Middle-earth Shadow of Mordor",purchase,1.0,0 -36546868,"Multiwinia",purchase,1.0,0 -36546868,"Nether",purchase,1.0,0 -36546868,"Nexuiz Beta",purchase,1.0,0 -36546868,"Nexuiz STUPID Mode",purchase,1.0,0 -36546868,"NightSky",purchase,1.0,0 -36546868,"Orcs Must Die! 2",purchase,1.0,0 -36546868,"Outlast",purchase,1.0,0 -36546868,"Overlord Raising Hell",purchase,1.0,0 -36546868,"Painkiller Hell & Damnation",purchase,1.0,0 -36546868,"Painkiller Hell & Damnation - The Clock Strikes Meat Night",purchase,1.0,0 -36546868,"Papers, Please",purchase,1.0,0 -36546868,"Patch testing for Chivalry",purchase,1.0,0 -36546868,"PAYDAY Wolf Pack",purchase,1.0,0 -36546868,"PixelJunk Eden",purchase,1.0,0 -36546868,"Plague Inc Evolved",purchase,1.0,0 -36546868,"Poker Night 2",purchase,1.0,0 -36546868,"Primal Carnage",purchase,1.0,0 -36546868,"Puddle",purchase,1.0,0 -36546868,"Q.U.B.E Director's Cut",purchase,1.0,0 -36546868,"Really Big Sky",purchase,1.0,0 -36546868,"Recettear An Item Shop's Tale",purchase,1.0,0 -36546868,"Red Faction Armageddon",purchase,1.0,0 -36546868,"Resident Evil 6 Mercenaries No Mercy",purchase,1.0,0 -36546868,"Reus",purchase,1.0,0 -36546868,"Risk of Rain",purchase,1.0,0 -36546868,"Rogue Legacy",purchase,1.0,0 -36546868,"Saints Row IV",purchase,1.0,0 -36546868,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -36546868,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -36546868,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -36546868,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -36546868,"Scarygirl",purchase,1.0,0 -36546868,"Shadowgrounds Survivor",purchase,1.0,0 -36546868,"Sid Meier's Civilization Beyond Earth - Rising Tide",purchase,1.0,0 -36546868,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -36546868,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -36546868,"Sins of a Solar Empire Rebellion - Stellar Phenomena DLC",purchase,1.0,0 -36546868,"Sins of a Solar Empire Rebellion Forbidden Worlds",purchase,1.0,0 -36546868,"Solar 2",purchase,1.0,0 -36546868,"Splice",purchase,1.0,0 -36546868,"Stacking",purchase,1.0,0 -36546868,"Starbound - Unstable",purchase,1.0,0 -36546868,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -36546868,"State of Decay - Breakdown",purchase,1.0,0 -36546868,"Stealth Bastard Deluxe",purchase,1.0,0 -36546868,"Stealth Bastard Deluxe - The Teleporter Chambers",purchase,1.0,0 -36546868,"Sugar Cube Bittersweet Factory",purchase,1.0,0 -36546868,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -36546868,"Tales from the Borderlands",purchase,1.0,0 -36546868,"Tesla Effect",purchase,1.0,0 -36546868,"The Cave",purchase,1.0,0 -36546868,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -36546868,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -36546868,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -36546868,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -36546868,"The Fall",purchase,1.0,0 -36546868,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -36546868,"They Bleed Pixels",purchase,1.0,0 -36546868,"Thief",purchase,1.0,0 -36546868,"Timberman",purchase,1.0,0 -36546868,"Toki Tori 2+",purchase,1.0,0 -36546868,"Uplink",purchase,1.0,0 -36546868,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -36546868,"World of Goo",purchase,1.0,0 -36546868,"Wrack",purchase,1.0,0 -36546868,"X3 Albion Prelude",purchase,1.0,0 -36546868,"X3 Reunion",purchase,1.0,0 -36546868,"XCOM Enemy Within",purchase,1.0,0 -133234931,"Team Fortress 2",purchase,1.0,0 -133234931,"Team Fortress 2",play,173.0,0 -133234931,"Dota 2",purchase,1.0,0 -133234931,"Dota 2",play,132.0,0 -133234931,"Terraria",purchase,1.0,0 -133234931,"Terraria",play,14.5,0 -133234931,"Marvel Heroes 2015",purchase,1.0,0 -133234931,"Marvel Heroes 2015",play,1.8,0 -133234931,"Gotham City Impostors Free To Play",purchase,1.0,0 -133234931,"Gotham City Impostors Free To Play",play,1.0,0 -277339358,"Dota 2",purchase,1.0,0 -277339358,"Dota 2",play,0.1,0 -204543155,"Dota 2",purchase,1.0,0 -204543155,"Dota 2",play,7.5,0 -231310711,"Dota 2",purchase,1.0,0 -231310711,"Dota 2",play,1.8,0 -104635003,"Dota 2",purchase,1.0,0 -104635003,"Dota 2",play,964.0,0 -104635003,"War Thunder",purchase,1.0,0 -104635003,"War Thunder",play,93.0,0 -104635003,"City of Steam Arkadia",purchase,1.0,0 -104635003,"Neverwinter",purchase,1.0,0 -104635003,"Path of Exile",purchase,1.0,0 -173433898,"Dead Island Epidemic",purchase,1.0,0 -173433898,"Dead Island Epidemic",play,1.2,0 -223181037,"Quake Live",purchase,1.0,0 -223181037,"Quake Live",play,0.8,0 -223181037,"Dota 2",purchase,1.0,0 -223181037,"Dota 2",play,0.7,0 -223181037,"Team Fortress 2",purchase,1.0,0 -223181037,"Team Fortress 2",play,0.3,0 -223181037,"Super Monday Night Combat",purchase,1.0,0 -223181037,"Unturned",purchase,1.0,0 -146355606,"Team Fortress 2",purchase,1.0,0 -146355606,"Team Fortress 2",play,16.6,0 -261670300,"Dota 2",purchase,1.0,0 -261670300,"Dota 2",play,1.6,0 -170057163,"Dota 2",purchase,1.0,0 -170057163,"Dota 2",play,21.0,0 -171916530,"South Park The Stick of Truth",purchase,1.0,0 -171916530,"South Park The Stick of Truth",play,21.0,0 -238451023,"No More Room in Hell",purchase,1.0,0 -238451023,"No More Room in Hell",play,10.1,0 -170382539,"Warframe",purchase,1.0,0 -170382539,"Warframe",play,286.0,0 -170382539,"Sid Meier's Civilization V",purchase,1.0,0 -170382539,"Sid Meier's Civilization V",play,38.0,0 -170382539,"Left 4 Dead 2",purchase,1.0,0 -170382539,"Left 4 Dead 2",play,30.0,0 -170382539,"Sid Meier's Starships",purchase,1.0,0 -170382539,"Sid Meier's Starships",play,26.0,0 -170382539,"Karos Returns",purchase,1.0,0 -170382539,"Karos Returns",play,3.6,0 -170382539,"Left 4 Dead",purchase,1.0,0 -170382539,"Left 4 Dead",play,2.9,0 -170382539,"PAYDAY The Heist",purchase,1.0,0 -170382539,"PAYDAY The Heist",play,1.6,0 -170382539,"Dead Island Riptide",purchase,1.0,0 -170382539,"Dead Island Riptide",play,0.6,0 -170382539,"PAYDAY 2",purchase,1.0,0 -170382539,"PAYDAY 2",play,0.2,0 -170382539,"PlanetSide 2",purchase,1.0,0 -170382539,"PlanetSide 2",play,0.1,0 -170382539,"Nosgoth",purchase,1.0,0 -170382539,"Nosgoth",play,0.1,0 -170382539,"War Thunder",purchase,1.0,0 -170382539,"War Thunder",play,0.1,0 -170382539,"Loadout",purchase,1.0,0 -170382539,"Loadout",play,0.1,0 -170382539,"Dead Island",purchase,1.0,0 -170382539,"Magicka Wizard Wars",purchase,1.0,0 -170382539,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -170382539,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -170382539,"The Lord of the Rings Online",purchase,1.0,0 -149368095,"Team Fortress 2",purchase,1.0,0 -149368095,"Team Fortress 2",play,149.0,0 -37396841,"Half-Life 2",purchase,1.0,0 -37396841,"Half-Life 2",play,14.9,0 -37396841,"Half-Life 2 Episode One",purchase,1.0,0 -37396841,"Half-Life 2 Episode Two",purchase,1.0,0 -37396841,"Half-Life 2 Lost Coast",purchase,1.0,0 -37396841,"Portal",purchase,1.0,0 -237724900,"Rust",purchase,1.0,0 -237724900,"Rust",play,77.0,0 -237724900,"Heroes & Generals",purchase,1.0,0 -237724900,"Unturned",purchase,1.0,0 -102927775,"The Binding of Isaac Rebirth",purchase,1.0,0 -102927775,"The Binding of Isaac Rebirth",play,122.0,0 -102927775,"The Binding of Isaac",purchase,1.0,0 -102927775,"The Binding of Isaac",play,66.0,0 -102927775,"Garry's Mod",purchase,1.0,0 -102927775,"Garry's Mod",play,63.0,0 -102927775,"Left 4 Dead 2",purchase,1.0,0 -102927775,"Left 4 Dead 2",play,37.0,0 -102927775,"Team Fortress 2",purchase,1.0,0 -102927775,"Team Fortress 2",play,27.0,0 -102927775,"Counter-Strike Global Offensive",purchase,1.0,0 -102927775,"Counter-Strike Global Offensive",play,11.6,0 -102927775,"Portal 2",purchase,1.0,0 -102927775,"Portal 2",play,10.2,0 -102927775,"Unturned",purchase,1.0,0 -102927775,"Unturned",play,8.5,0 -102927775,"PAYDAY The Heist",purchase,1.0,0 -102927775,"PAYDAY The Heist",play,7.1,0 -102927775,"Castle Crashers",purchase,1.0,0 -102927775,"Castle Crashers",play,6.4,0 -102927775,"Grand Theft Auto IV",purchase,1.0,0 -102927775,"Grand Theft Auto IV",play,5.9,0 -102927775,"Terraria",purchase,1.0,0 -102927775,"Terraria",play,3.9,0 -102927775,"Counter-Strike Source",purchase,1.0,0 -102927775,"Counter-Strike Source",play,3.5,0 -102927775,"Dota 2",purchase,1.0,0 -102927775,"Dota 2",play,3.3,0 -102927775,"No More Room in Hell",purchase,1.0,0 -102927775,"No More Room in Hell",play,1.1,0 -102927775,"Killing Floor",purchase,1.0,0 -102927775,"Killing Floor",play,0.2,0 -102927775,"BLOCKADE 3D",purchase,1.0,0 -102927775,"BLOCKADE 3D",play,0.2,0 -102927775,"8BitMMO",purchase,1.0,0 -102927775,"8BitMMO",play,0.1,0 -102927775,"Magicka Wizard Wars",purchase,1.0,0 -102927775,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -175044682,"Counter-Strike Global Offensive",purchase,1.0,0 -175044682,"Counter-Strike Global Offensive",play,80.0,0 -156506614,"Rocksmith 2014",purchase,1.0,0 -156506614,"Rocksmith 2014",play,3.7,0 -296371285,"Dota 2",purchase,1.0,0 -296371285,"Dota 2",play,41.0,0 -172623126,"Dota 2",purchase,1.0,0 -172623126,"Dota 2",play,0.5,0 -186863874,"Dota 2",purchase,1.0,0 -186863874,"Dota 2",play,0.5,0 -244866157,"Dirty Bomb",purchase,1.0,0 -129019336,"Farming Simulator 2013",purchase,1.0,0 -129019336,"Farming Simulator 2013",play,548.0,0 -283326616,"War Thunder",purchase,1.0,0 -283326616,"War Thunder",play,1.2,0 -283326616,"BLOCKADE 3D",purchase,1.0,0 -283326616,"BLOCKADE 3D",play,0.3,0 -283326616,"HIS (Heroes In the Sky)",purchase,1.0,0 -283326616,"Robocraft",purchase,1.0,0 -283326616,"Star Conflict",purchase,1.0,0 -227800694,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -227800694,"Warframe",purchase,1.0,0 -12034137,"Counter-Strike Source",purchase,1.0,0 -12034137,"Half-Life 2",purchase,1.0,0 -12034137,"Half-Life 2 Deathmatch",purchase,1.0,0 -12034137,"Half-Life 2 Lost Coast",purchase,1.0,0 -241842320,"Dota 2",purchase,1.0,0 -241842320,"Dota 2",play,456.0,0 -275529528,"Warface",purchase,1.0,0 -275529528,"Warface",play,5.9,0 -275529528,"Dirty Bomb",purchase,1.0,0 -275529528,"Dirty Bomb",play,5.2,0 -275529528,"RaceRoom Racing Experience ",purchase,1.0,0 -275529528,"RaceRoom Racing Experience ",play,2.3,0 -275529528,"APB Reloaded",purchase,1.0,0 -275529528,"APB Reloaded",play,0.8,0 -72989129,"Counter-Strike Source",purchase,1.0,0 -72989129,"Counter-Strike Source",play,376.0,0 -72989129,"Counter-Strike Condition Zero",purchase,1.0,0 -72989129,"Counter-Strike Condition Zero",play,301.0,0 -72989129,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -72989129,"Call of Duty Modern Warfare 2 - Multiplayer",play,241.0,0 -72989129,"Farming Simulator 15",purchase,1.0,0 -72989129,"Farming Simulator 15",play,66.0,0 -72989129,"Mount & Blade",purchase,1.0,0 -72989129,"Mount & Blade",play,40.0,0 -72989129,"Space Engineers",purchase,1.0,0 -72989129,"Space Engineers",play,38.0,0 -72989129,"Saints Row The Third",purchase,1.0,0 -72989129,"Saints Row The Third",play,36.0,0 -72989129,"Call of Duty Modern Warfare 2",purchase,1.0,0 -72989129,"Call of Duty Modern Warfare 2",play,24.0,0 -72989129,"Just Cause 2",purchase,1.0,0 -72989129,"Just Cause 2",play,18.9,0 -72989129,"PAYDAY 2",purchase,1.0,0 -72989129,"PAYDAY 2",play,13.7,0 -72989129,"PAYDAY The Heist",purchase,1.0,0 -72989129,"PAYDAY The Heist",play,11.0,0 -72989129,"Killing Floor",purchase,1.0,0 -72989129,"Killing Floor",play,10.7,0 -72989129,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -72989129,"Tom Clancy's Splinter Cell Blacklist",play,10.7,0 -72989129,"Left 4 Dead 2",purchase,1.0,0 -72989129,"Left 4 Dead 2",play,8.7,0 -72989129,"Serious Sam 3 BFE",purchase,1.0,0 -72989129,"Serious Sam 3 BFE",play,8.2,0 -72989129,"Grand Theft Auto IV",purchase,1.0,0 -72989129,"Grand Theft Auto IV",play,7.5,0 -72989129,"Counter-Strike",purchase,1.0,0 -72989129,"Counter-Strike",play,5.3,0 -72989129,"Tomb Raider",purchase,1.0,0 -72989129,"Tomb Raider",play,4.5,0 -72989129,"PROTOTYPE 2",purchase,1.0,0 -72989129,"PROTOTYPE 2",play,4.1,0 -72989129,"Worms Revolution",purchase,1.0,0 -72989129,"Worms Revolution",play,3.8,0 -72989129,"SimCity 4 Deluxe",purchase,1.0,0 -72989129,"SimCity 4 Deluxe",play,3.0,0 -72989129,"Counter-Strike Global Offensive",purchase,1.0,0 -72989129,"Counter-Strike Global Offensive",play,3.0,0 -72989129,"Silent Hunter III",purchase,1.0,0 -72989129,"Silent Hunter III",play,2.9,0 -72989129,"Team Fortress 2",purchase,1.0,0 -72989129,"Team Fortress 2",play,2.8,0 -72989129,"South Park The Stick of Truth",purchase,1.0,0 -72989129,"South Park The Stick of Truth",play,2.2,0 -72989129,"Garry's Mod",purchase,1.0,0 -72989129,"Garry's Mod",play,1.8,0 -72989129,"DayZ",purchase,1.0,0 -72989129,"DayZ",play,1.6,0 -72989129,"Day of Defeat Source",purchase,1.0,0 -72989129,"Day of Defeat Source",play,1.4,0 -72989129,"Metro 2033",purchase,1.0,0 -72989129,"Metro 2033",play,1.0,0 -72989129,"Half-Life 2 Deathmatch",purchase,1.0,0 -72989129,"Half-Life 2 Deathmatch",play,0.9,0 -72989129,"Train Simulator",purchase,1.0,0 -72989129,"Train Simulator",play,0.8,0 -72989129,"Infestation Survivor Stories",purchase,1.0,0 -72989129,"Infestation Survivor Stories",play,0.7,0 -72989129,"Ace of Spades",purchase,1.0,0 -72989129,"Ace of Spades",play,0.5,0 -72989129,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -72989129,"Burnout Paradise The Ultimate Box",play,0.5,0 -72989129,"Ricochet",purchase,1.0,0 -72989129,"Ricochet",play,0.3,0 -72989129,"Tom Clancy's Splinter Cell",purchase,1.0,0 -72989129,"Tom Clancy's Splinter Cell",play,0.1,0 -72989129,"Tom Clancy's Splinter Cell Chaos Theory",purchase,1.0,0 -72989129,"Tom Clancy's Splinter Cell Chaos Theory",play,0.1,0 -72989129,"Day of Defeat",purchase,1.0,0 -72989129,"Afterfall InSanity Extended Edition",purchase,1.0,0 -72989129,"Anomaly 2",purchase,1.0,0 -72989129,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -72989129,"Dead Island",purchase,1.0,0 -72989129,"Dead Island Riptide",purchase,1.0,0 -72989129,"Deathmatch Classic",purchase,1.0,0 -72989129,"Half-Life 2 Lost Coast",purchase,1.0,0 -72989129,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -72989129,"Magicka Wizard Wars",purchase,1.0,0 -72989129,"Mortal Kombat Kollection",purchase,1.0,0 -72989129,"MX vs. ATV Reflex",purchase,1.0,0 -72989129,"Pid ",purchase,1.0,0 -72989129,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -72989129,"Risen",purchase,1.0,0 -72989129,"Risen 2 - Dark Waters",purchase,1.0,0 -72989129,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -72989129,"Sacred 2 Gold",purchase,1.0,0 -72989129,"Sacred Citadel",purchase,1.0,0 -72989129,"Saints Row 2",purchase,1.0,0 -72989129,"Sid Meier's Civilization III Complete",purchase,1.0,0 -72989129,"South Park The Stick of Truth - Super Samurai Spaceman Pack",purchase,1.0,0 -72989129,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -72989129,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -72989129,"Tom Clancy's Splinter Cell Double Agent",purchase,1.0,0 -72989129,"World of Guns Gun Disassembly",purchase,1.0,0 -72996988,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -72996988,"Call of Duty Black Ops - Multiplayer",play,261.0,0 -72996988,"H1Z1",purchase,1.0,0 -72996988,"H1Z1",play,152.0,0 -72996988,"Echo of Soul",purchase,1.0,0 -72996988,"Echo of Soul",play,118.0,0 -72996988,"FreeStyle2 Street Basketball",purchase,1.0,0 -72996988,"FreeStyle2 Street Basketball",play,92.0,0 -72996988,"Dota 2",purchase,1.0,0 -72996988,"Dota 2",play,83.0,0 -72996988,"War Thunder",purchase,1.0,0 -72996988,"War Thunder",play,80.0,0 -72996988,"NBA 2K14",purchase,1.0,0 -72996988,"NBA 2K14",play,79.0,0 -72996988,"TOME Immortal Arena",purchase,1.0,0 -72996988,"TOME Immortal Arena",play,76.0,0 -72996988,"Watch_Dogs",purchase,1.0,0 -72996988,"Watch_Dogs",play,58.0,0 -72996988,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -72996988,"Tom Clancy's Ghost Recon Phantoms - EU",play,29.0,0 -72996988,"South Park The Stick of Truth",purchase,1.0,0 -72996988,"South Park The Stick of Truth",play,19.4,0 -72996988,"Sleeping Dogs",purchase,1.0,0 -72996988,"Sleeping Dogs",play,16.9,0 -72996988,"Assassin's Creed IV Black Flag",purchase,1.0,0 -72996988,"Assassin's Creed IV Black Flag",play,16.6,0 -72996988,"DayZ",purchase,1.0,0 -72996988,"DayZ",play,15.9,0 -72996988,"PAYDAY 2",purchase,1.0,0 -72996988,"PAYDAY 2",play,11.9,0 -72996988,"Might & Magic Duel of Champions",purchase,1.0,0 -72996988,"Might & Magic Duel of Champions",play,10.4,0 -72996988,"Magic Duels",purchase,1.0,0 -72996988,"Magic Duels",play,8.2,0 -72996988,"Torchlight II",purchase,1.0,0 -72996988,"Torchlight II",play,6.6,0 -72996988,"Counter-Strike Global Offensive",purchase,1.0,0 -72996988,"Counter-Strike Global Offensive",play,5.6,0 -72996988,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -72996988,"School of Dragons How to Train Your Dragon",play,4.9,0 -72996988,"Hitman Absolution",purchase,1.0,0 -72996988,"Hitman Absolution",play,4.7,0 -72996988,"This War of Mine",purchase,1.0,0 -72996988,"This War of Mine",play,4.2,0 -72996988,"GunZ 2 The Second Duel",purchase,1.0,0 -72996988,"GunZ 2 The Second Duel",play,3.8,0 -72996988,"Age of Empires II HD Edition",purchase,1.0,0 -72996988,"Age of Empires II HD Edition",play,3.5,0 -72996988,"Thief",purchase,1.0,0 -72996988,"Thief",play,3.3,0 -72996988,"Magicka Wizard Wars",purchase,1.0,0 -72996988,"Magicka Wizard Wars",play,3.0,0 -72996988,"Strife",purchase,1.0,0 -72996988,"Strife",play,3.0,0 -72996988,"Assassins Creed Chronicles China",purchase,1.0,0 -72996988,"Assassins Creed Chronicles China",play,3.0,0 -72996988,"GRID Autosport",purchase,1.0,0 -72996988,"GRID Autosport",play,3.0,0 -72996988,"Call of Duty Black Ops",purchase,1.0,0 -72996988,"Call of Duty Black Ops",play,2.7,0 -72996988,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -72996988,"The Witcher 2 Assassins of Kings Enhanced Edition",play,2.3,0 -72996988,"Mark of the Ninja",purchase,1.0,0 -72996988,"Mark of the Ninja",play,2.3,0 -72996988,"The Elder Scrolls V Skyrim",purchase,1.0,0 -72996988,"The Elder Scrolls V Skyrim",play,2.1,0 -72996988,"Teenage Mutant Ninja Turtles Out of the Shadows",purchase,1.0,0 -72996988,"Teenage Mutant Ninja Turtles Out of the Shadows",play,1.9,0 -72996988,"Foosball - Street Edition",purchase,1.0,0 -72996988,"Foosball - Street Edition",play,1.6,0 -72996988,"NBA 2K13",purchase,1.0,0 -72996988,"NBA 2K13",play,1.5,0 -72996988,"Just Cause 2",purchase,1.0,0 -72996988,"Just Cause 2",play,1.4,0 -72996988,"KnightShift",purchase,1.0,0 -72996988,"KnightShift",play,1.4,0 -72996988,"Devil May Cry 4",purchase,1.0,0 -72996988,"Devil May Cry 4",play,1.3,0 -72996988,"Prime World",purchase,1.0,0 -72996988,"Prime World",play,1.2,0 -72996988,"Evoland",purchase,1.0,0 -72996988,"Evoland",play,1.2,0 -72996988,"Grand Chase",purchase,1.0,0 -72996988,"Grand Chase",play,1.1,0 -72996988,"Path of Exile",purchase,1.0,0 -72996988,"Path of Exile",play,1.1,0 -72996988,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -72996988,"STAR WARS Knights of the Old Republic II The Sith Lords",play,0.8,0 -72996988,"The Lord of the Rings Online",purchase,1.0,0 -72996988,"The Lord of the Rings Online",play,0.7,0 -72996988,"Nosgoth",purchase,1.0,0 -72996988,"Nosgoth",play,0.6,0 -72996988,"ACE - Arena Cyber Evolution",purchase,1.0,0 -72996988,"ACE - Arena Cyber Evolution",play,0.4,0 -72996988,"International Snooker",purchase,1.0,0 -72996988,"International Snooker",play,0.4,0 -72996988,"Zack Zero",purchase,1.0,0 -72996988,"Zack Zero",play,0.4,0 -72996988,"Urban Trial Freestyle",purchase,1.0,0 -72996988,"Urban Trial Freestyle",play,0.3,0 -72996988,"Ultimate Tic-Tac-Toe",purchase,1.0,0 -72996988,"Ultimate Tic-Tac-Toe",play,0.3,0 -72996988,"Blade Symphony",purchase,1.0,0 -72996988,"Blade Symphony",play,0.3,0 -72996988,"Heroes & Generals",purchase,1.0,0 -72996988,"Heroes & Generals",play,0.3,0 -72996988,"Dead Island Epidemic",purchase,1.0,0 -72996988,"Dead Island Epidemic",play,0.2,0 -72996988,"Kung Fu Strike The Warrior's Rise",purchase,1.0,0 -72996988,"Kung Fu Strike The Warrior's Rise",play,0.2,0 -72996988,"America's Army Proving Grounds",purchase,1.0,0 -72996988,"America's Army Proving Grounds",play,0.2,0 -72996988,"Hitman Sniper Challenge",purchase,1.0,0 -72996988,"Warface",purchase,1.0,0 -72996988,"Age of Empires II HD The Forgotten",purchase,1.0,0 -72996988,"H1Z1 Test Server",purchase,1.0,0 -298902962,"Red Crucible Firestorm",purchase,1.0,0 -298902962,"Red Crucible Firestorm",play,4.6,0 -298902962,"Trove",purchase,1.0,0 -298902962,"Trove",play,0.5,0 -298902962,"Unturned",purchase,1.0,0 -23714890,"Counter-Strike",purchase,1.0,0 -23714890,"Counter-Strike",play,1.7,0 -23714890,"Day of Defeat",purchase,1.0,0 -23714890,"Counter-Strike Condition Zero",purchase,1.0,0 -23714890,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -23714890,"Deathmatch Classic",purchase,1.0,0 -23714890,"Ricochet",purchase,1.0,0 -140372243,"Dota 2",purchase,1.0,0 -140372243,"Dota 2",play,33.0,0 -73094362,"Football Manager 2011",purchase,1.0,0 -73094362,"Football Manager 2011",play,506.0,0 -73094362,"Football Manager 2012",purchase,1.0,0 -73094362,"Football Manager 2012",play,385.0,0 -73094362,"Football Manager 2013",purchase,1.0,0 -73094362,"Football Manager 2013",play,69.0,0 -73094362,"Football Manager 2014",purchase,1.0,0 -73094362,"Football Manager 2014",play,45.0,0 -95325409,"HuniePop",purchase,1.0,0 -95325409,"HuniePop",play,34.0,0 -95325409,"BioShock Infinite",purchase,1.0,0 -95325409,"BioShock Infinite",play,25.0,0 -95325409,"Saints Row The Third",purchase,1.0,0 -95325409,"Saints Row The Third",play,5.7,0 -95325409,"The Elder Scrolls V Skyrim",purchase,1.0,0 -95325409,"The Elder Scrolls V Skyrim",play,5.0,0 -95325409,"Dungeon Siege 2",purchase,1.0,0 -95325409,"Dungeon Siege 2",play,2.7,0 -95325409,"Borderlands 2",purchase,1.0,0 -95325409,"Borderlands 2",play,0.7,0 -95325409,"Deus Ex Human Revolution",purchase,1.0,0 -95325409,"Deus Ex Human Revolution",play,0.5,0 -95325409,"Unreal Tournament Game of the Year Edition",purchase,1.0,0 -95325409,"Unreal Tournament Game of the Year Edition",play,0.5,0 -95325409,"Torchlight II",purchase,1.0,0 -95325409,"Torchlight II",play,0.4,0 -95325409,"Borderlands",purchase,1.0,0 -95325409,"Borderlands",play,0.3,0 -95325409,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -95325409,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.2,0 -95325409,"Freedom Force",purchase,1.0,0 -95325409,"Freedom Force",play,0.1,0 -95325409,"BioShock Infinite - Season Pass",purchase,1.0,0 -95325409,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -95325409,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -95325409,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -95325409,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -95325409,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -95325409,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -95325409,"Deus Ex Game of the Year Edition",purchase,1.0,0 -95325409,"Freedom Force vs. the 3rd Reich",purchase,1.0,0 -95325409,"Yesterday",purchase,1.0,0 -98796965,"Team Fortress 2",purchase,1.0,0 -98796965,"Team Fortress 2",play,0.1,0 -152959594,"TERA",purchase,1.0,0 -152959594,"TERA",play,536.0,0 -152959594,"Garry's Mod",purchase,1.0,0 -152959594,"Garry's Mod",play,129.0,0 -152959594,"Counter-Strike Global Offensive",purchase,1.0,0 -152959594,"Counter-Strike Global Offensive",play,112.0,0 -152959594,"Trove",purchase,1.0,0 -152959594,"Trove",play,81.0,0 -152959594,"Warframe",purchase,1.0,0 -152959594,"Warframe",play,77.0,0 -152959594,"Dirty Bomb",purchase,1.0,0 -152959594,"Dirty Bomb",play,76.0,0 -152959594,"Combat Arms",purchase,1.0,0 -152959594,"Combat Arms",play,70.0,0 -152959594,"Call of Duty World at War",purchase,1.0,0 -152959594,"Call of Duty World at War",play,68.0,0 -152959594,"Grand Theft Auto IV",purchase,1.0,0 -152959594,"Grand Theft Auto IV",play,54.0,0 -152959594,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -152959594,"Tom Clancy's Ghost Recon Phantoms - NA",play,46.0,0 -152959594,"Battlefield Bad Company 2",purchase,1.0,0 -152959594,"Battlefield Bad Company 2",play,43.0,0 -152959594,"Zombies Monsters Robots",purchase,1.0,0 -152959594,"Zombies Monsters Robots",play,41.0,0 -152959594,"Blacklight Retribution",purchase,1.0,0 -152959594,"Blacklight Retribution",play,28.0,0 -152959594,"Defiance",purchase,1.0,0 -152959594,"Defiance",play,28.0,0 -152959594,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -152959594,"Call of Duty 4 Modern Warfare",play,26.0,0 -152959594,"H1Z1",purchase,1.0,0 -152959594,"H1Z1",play,23.0,0 -152959594,"The Mighty Quest For Epic Loot",purchase,1.0,0 -152959594,"The Mighty Quest For Epic Loot",play,22.0,0 -152959594,"HAWKEN",purchase,1.0,0 -152959594,"HAWKEN",play,20.0,0 -152959594,"Team Fortress 2",purchase,1.0,0 -152959594,"Team Fortress 2",play,19.1,0 -152959594,"Terraria",purchase,1.0,0 -152959594,"Terraria",play,15.0,0 -152959594,"The Forest",purchase,1.0,0 -152959594,"The Forest",play,13.2,0 -152959594,"Warface",purchase,1.0,0 -152959594,"Warface",play,12.0,0 -152959594,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -152959594,"A.V.A - Alliance of Valiant Arms",play,11.0,0 -152959594,"Dota 2",purchase,1.0,0 -152959594,"Dota 2",play,10.4,0 -152959594,"Left 4 Dead 2",purchase,1.0,0 -152959594,"Left 4 Dead 2",play,9.9,0 -152959594,"Clicker Heroes",purchase,1.0,0 -152959594,"Clicker Heroes",play,9.5,0 -152959594,"PlanetSide 2",purchase,1.0,0 -152959594,"PlanetSide 2",play,8.7,0 -152959594,"Quake Live",purchase,1.0,0 -152959594,"Quake Live",play,8.2,0 -152959594,"Counter-Strike Nexon Zombies",purchase,1.0,0 -152959594,"Counter-Strike Nexon Zombies",play,7.3,0 -152959594,"Brawlhalla",purchase,1.0,0 -152959594,"Brawlhalla",play,7.0,0 -152959594,"Metro Conflict",purchase,1.0,0 -152959594,"Metro Conflict",play,6.5,0 -152959594,"F.E.A.R. Online",purchase,1.0,0 -152959594,"F.E.A.R. Online",play,6.2,0 -152959594,"Path of Exile",purchase,1.0,0 -152959594,"Path of Exile",play,6.1,0 -152959594,"War Thunder",purchase,1.0,0 -152959594,"War Thunder",play,6.1,0 -152959594,"Killing Floor",purchase,1.0,0 -152959594,"Killing Floor",play,6.1,0 -152959594,"Double Action Boogaloo",purchase,1.0,0 -152959594,"Double Action Boogaloo",play,6.0,0 -152959594,"Loadout",purchase,1.0,0 -152959594,"Loadout",play,5.7,0 -152959594,"R.U.S.E",purchase,1.0,0 -152959594,"R.U.S.E",play,5.3,0 -152959594,"Champions Online",purchase,1.0,0 -152959594,"Champions Online",play,5.0,0 -152959594,"APB Reloaded",purchase,1.0,0 -152959594,"APB Reloaded",play,4.2,0 -152959594,"Soldier Front 2",purchase,1.0,0 -152959594,"Soldier Front 2",play,4.2,0 -152959594,"Tribes Ascend",purchase,1.0,0 -152959594,"Tribes Ascend",play,4.1,0 -152959594,"AdVenture Capitalist",purchase,1.0,0 -152959594,"AdVenture Capitalist",play,4.0,0 -152959594,"Pirates, Vikings, & Knights II",purchase,1.0,0 -152959594,"Pirates, Vikings, & Knights II",play,3.8,0 -152959594,"Heroes & Generals",purchase,1.0,0 -152959594,"Heroes & Generals",play,3.7,0 -152959594,"Fistful of Frags",purchase,1.0,0 -152959594,"Fistful of Frags",play,3.4,0 -152959594,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -152959594,"Grand Theft Auto Episodes from Liberty City",play,3.3,0 -152959594,"America's Army Proving Grounds",purchase,1.0,0 -152959594,"America's Army Proving Grounds",play,2.7,0 -152959594,"Red Crucible Firestorm",purchase,1.0,0 -152959594,"Red Crucible Firestorm",play,2.7,0 -152959594,"Survarium",purchase,1.0,0 -152959594,"Survarium",play,2.6,0 -152959594,"Race The Sun",purchase,1.0,0 -152959594,"Race The Sun",play,2.4,0 -152959594,"ORION Prelude",purchase,1.0,0 -152959594,"ORION Prelude",play,2.2,0 -152959594,"theHunter",purchase,1.0,0 -152959594,"theHunter",play,2.1,0 -152959594,"Caster",purchase,1.0,0 -152959594,"Caster",play,2.0,0 -152959594,"Two Worlds Epic Edition",purchase,1.0,0 -152959594,"Two Worlds Epic Edition",play,1.8,0 -152959594,"GunZ 2 The Second Duel",purchase,1.0,0 -152959594,"GunZ 2 The Second Duel",play,1.8,0 -152959594,"Grand Theft Auto III",purchase,1.0,0 -152959594,"Grand Theft Auto III",play,1.6,0 -152959594,"Unturned",purchase,1.0,0 -152959594,"Unturned",play,1.6,0 -152959594,"Counter-Strike Condition Zero",purchase,1.0,0 -152959594,"Counter-Strike Condition Zero",play,1.5,0 -152959594,"Metro 2033",purchase,1.0,0 -152959594,"Metro 2033",play,1.3,0 -152959594,"Grand Theft Auto San Andreas",purchase,1.0,0 -152959594,"Grand Theft Auto San Andreas",play,1.1,0 -152959594,"Boson X",purchase,1.0,0 -152959594,"Boson X",play,1.1,0 -152959594,"Particula",purchase,1.0,0 -152959594,"Particula",play,1.0,0 -152959594,"Infinite Crisis",purchase,1.0,0 -152959594,"Infinite Crisis",play,1.0,0 -152959594,"Gotham City Impostors Free To Play",purchase,1.0,0 -152959594,"Gotham City Impostors Free To Play",play,0.9,0 -152959594,"Half-Life 2",purchase,1.0,0 -152959594,"Half-Life 2",play,0.8,0 -152959594,"CroNix",purchase,1.0,0 -152959594,"CroNix",play,0.8,0 -152959594,"Day of Defeat",purchase,1.0,0 -152959594,"Day of Defeat",play,0.8,0 -152959594,"BLOCKADE 3D",purchase,1.0,0 -152959594,"BLOCKADE 3D",play,0.7,0 -152959594,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -152959594,"Boring Man - Online Tactical Stickman Combat",play,0.7,0 -152959594,"Magicka Wizard Wars",purchase,1.0,0 -152959594,"Magicka Wizard Wars",play,0.7,0 -152959594,"Deadbreed",purchase,1.0,0 -152959594,"Deadbreed",play,0.6,0 -152959594,"Modular Combat",purchase,1.0,0 -152959594,"Modular Combat",play,0.6,0 -152959594,"sZone-Online",purchase,1.0,0 -152959594,"sZone-Online",play,0.6,0 -152959594,"Hacker Evolution",purchase,1.0,0 -152959594,"Hacker Evolution",play,0.6,0 -152959594,"Firefall",purchase,1.0,0 -152959594,"Firefall",play,0.6,0 -152959594,"The Expendabros",purchase,1.0,0 -152959594,"The Expendabros",play,0.5,0 -152959594,"H1Z1 Test Server",purchase,1.0,0 -152959594,"H1Z1 Test Server",play,0.5,0 -152959594,"Tactical Intervention",purchase,1.0,0 -152959594,"Tactical Intervention",play,0.4,0 -152959594,"Enclave",purchase,1.0,0 -152959594,"Enclave",play,0.4,0 -152959594,"WARMODE",purchase,1.0,0 -152959594,"WARMODE",play,0.4,0 -152959594,"Robocraft",purchase,1.0,0 -152959594,"Robocraft",play,0.4,0 -152959594,"No More Room in Hell",purchase,1.0,0 -152959594,"No More Room in Hell",play,0.4,0 -152959594,"HIS (Heroes In the Sky)",purchase,1.0,0 -152959594,"HIS (Heroes In the Sky)",play,0.3,0 -152959594,"Brick-Force",purchase,1.0,0 -152959594,"Brick-Force",play,0.3,0 -152959594,"Nosgoth",purchase,1.0,0 -152959594,"Nosgoth",play,0.2,0 -152959594,"Fallen Earth",purchase,1.0,0 -152959594,"Fallen Earth",play,0.2,0 -152959594,"Victim of Xen",purchase,1.0,0 -152959594,"Victim of Xen",play,0.2,0 -152959594,"Floating Point",purchase,1.0,0 -152959594,"Floating Point",play,0.1,0 -152959594,"Wickland",purchase,1.0,0 -152959594,"Wickland",play,0.1,0 -152959594,"Bad Rats",purchase,1.0,0 -152959594,"Pixel Piracy",purchase,1.0,0 -152959594,"Grand Theft Auto Vice City",purchase,1.0,0 -152959594,"Counter-Strike",purchase,1.0,0 -152959594,"Ricochet",purchase,1.0,0 -152959594,"Knights and Merchants",purchase,1.0,0 -152959594,"Archeblade",purchase,1.0,0 -152959594,"Ascend Hand of Kul",purchase,1.0,0 -152959594,"Commander Conquest of the Americas Gold",purchase,1.0,0 -152959594,"Commando Jack",purchase,1.0,0 -152959594,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -152959594,"Cry of Fear",purchase,1.0,0 -152959594,"Deathmatch Classic",purchase,1.0,0 -152959594,"East India Company Gold",purchase,1.0,0 -152959594,"Escape",purchase,1.0,0 -152959594,"Grand Theft Auto San Andreas",purchase,1.0,0 -152959594,"Grand Theft Auto Vice City",purchase,1.0,0 -152959594,"Grand Theft Auto III",purchase,1.0,0 -152959594,"Half-Life 2 Lost Coast",purchase,1.0,0 -152959594,"Killing Floor Uncovered",purchase,1.0,0 -152959594,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -152959594,"KnightShift",purchase,1.0,0 -152959594,"NEOTOKYO",purchase,1.0,0 -152959594,"Pirates of Black Cove Gold",purchase,1.0,0 -152959594,"R.U.S.E.",purchase,1.0,0 -152959594,"Rise of Incarnates",purchase,1.0,0 -152959594,"Run and Fire",purchase,1.0,0 -152959594,"SMITE",purchase,1.0,0 -161601485,"Dota 2",purchase,1.0,0 -161601485,"Dota 2",play,0.4,0 -110473936,"Sid Meier's Civilization V",purchase,1.0,0 -11650340,"Half-Life 2",purchase,1.0,0 -11650340,"Counter-Strike Source",purchase,1.0,0 -11650340,"Half-Life 2 Deathmatch",purchase,1.0,0 -11650340,"Half-Life 2 Lost Coast",purchase,1.0,0 -22371742,"Mass Effect",purchase,1.0,0 -22371742,"Mass Effect",play,58.0,0 -22371742,"Mass Effect 2",purchase,1.0,0 -22371742,"Mass Effect 2",play,30.0,0 -22371742,"Portal 2",purchase,1.0,0 -22371742,"Portal 2",play,20.0,0 -22371742,"Rayman Origins",purchase,1.0,0 -22371742,"Rayman Origins",play,14.1,0 -22371742,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -22371742,"Batman Arkham Asylum GOTY Edition",play,11.3,0 -22371742,"Assassin's Creed",purchase,1.0,0 -22371742,"Assassin's Creed",play,10.9,0 -22371742,"Braid",purchase,1.0,0 -22371742,"Braid",play,10.6,0 -22371742,"Grand Theft Auto V",purchase,1.0,0 -22371742,"Grand Theft Auto V",play,7.3,0 -22371742,"DC Universe Online",purchase,1.0,0 -22371742,"DC Universe Online",play,6.6,0 -22371742,"Grand Theft Auto San Andreas",purchase,1.0,0 -22371742,"Grand Theft Auto San Andreas",play,5.7,0 -22371742,"FINAL FANTASY VII",purchase,1.0,0 -22371742,"FINAL FANTASY VII",play,5.0,0 -22371742,"Magicka",purchase,1.0,0 -22371742,"Magicka",play,4.9,0 -22371742,"Grand Theft Auto IV",purchase,1.0,0 -22371742,"Grand Theft Auto IV",play,3.2,0 -22371742,"Day of Defeat Source",purchase,1.0,0 -22371742,"Day of Defeat Source",play,3.2,0 -22371742,"Worms Reloaded",purchase,1.0,0 -22371742,"Worms Reloaded",play,3.1,0 -22371742,"Machinarium",purchase,1.0,0 -22371742,"Machinarium",play,2.7,0 -22371742,"BioShock",purchase,1.0,0 -22371742,"BioShock",play,2.7,0 -22371742,"Trine",purchase,1.0,0 -22371742,"Trine",play,2.3,0 -22371742,"Duke Nukem Forever",purchase,1.0,0 -22371742,"Duke Nukem Forever",play,2.2,0 -22371742,"Max Payne 3",purchase,1.0,0 -22371742,"Max Payne 3",play,2.0,0 -22371742,"Left 4 Dead 2",purchase,1.0,0 -22371742,"Left 4 Dead 2",play,1.7,0 -22371742,"Portal",purchase,1.0,0 -22371742,"Portal",play,1.6,0 -22371742,"Battlefield Bad Company 2",purchase,1.0,0 -22371742,"Battlefield Bad Company 2",play,1.5,0 -22371742,"Sonic Generations",purchase,1.0,0 -22371742,"Sonic Generations",play,1.5,0 -22371742,"Quantum of Solace",purchase,1.0,0 -22371742,"Quantum of Solace",play,1.4,0 -22371742,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -22371742,"Resident Evil Revelations / Biohazard Revelations",play,1.0,0 -22371742,"The Last Remnant",purchase,1.0,0 -22371742,"The Last Remnant",play,0.6,0 -22371742,"Deus Ex Human Revolution",purchase,1.0,0 -22371742,"Deus Ex Human Revolution",play,0.6,0 -22371742,"Bastion",purchase,1.0,0 -22371742,"Bastion",play,0.5,0 -22371742,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -22371742,"Resident Evil 5 / Biohazard 5",play,0.5,0 -22371742,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -22371742,"The Secret of Monkey Island Special Edition",play,0.5,0 -22371742,"Team Fortress 2",purchase,1.0,0 -22371742,"Team Fortress 2",play,0.5,0 -22371742,"Space Quest Collection",purchase,1.0,0 -22371742,"Space Quest Collection",play,0.5,0 -22371742,"Uplink",purchase,1.0,0 -22371742,"Uplink",play,0.5,0 -22371742,"Crysis",purchase,1.0,0 -22371742,"Crysis",play,0.3,0 -22371742,"Grand Theft Auto",purchase,1.0,0 -22371742,"Grand Theft Auto",play,0.2,0 -22371742,"Dreamfall The Longest Journey",purchase,1.0,0 -22371742,"Dreamfall The Longest Journey",play,0.2,0 -22371742,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -22371742,"Back to the Future Ep 2 - Get Tannen!",play,0.2,0 -22371742,"Commandos 2 Men of Courage",purchase,1.0,0 -22371742,"Commandos 2 Men of Courage",play,0.2,0 -22371742,"Indiana Jones and the Last Crusade",purchase,1.0,0 -22371742,"Indiana Jones and the Last Crusade",play,0.2,0 -22371742,"Loom",purchase,1.0,0 -22371742,"Loom",play,0.2,0 -22371742,"Grand Theft Auto 2",purchase,1.0,0 -22371742,"Grand Theft Auto 2",play,0.2,0 -22371742,"Indiana Jones and the Fate of Atlantis",purchase,1.0,0 -22371742,"Indiana Jones and the Fate of Atlantis",play,0.1,0 -22371742,"Borderlands",purchase,1.0,0 -22371742,"Borderlands",play,0.1,0 -22371742,"Monkey Island 2 Special Edition",purchase,1.0,0 -22371742,"The Dig",purchase,1.0,0 -22371742,"A.R.E.S.",purchase,1.0,0 -22371742,"Alan Wake",purchase,1.0,0 -22371742,"Alan Wake's American Nightmare",purchase,1.0,0 -22371742,"Amnesia The Dark Descent",purchase,1.0,0 -22371742,"Assassin's Creed II",purchase,1.0,0 -22371742,"Atom Zombie Smasher ",purchase,1.0,0 -22371742,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -22371742,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -22371742,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -22371742,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -22371742,"Batman Arkham City GOTY",purchase,1.0,0 -22371742,"Battlefield 2",purchase,1.0,0 -22371742,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -22371742,"Battlestations Midway",purchase,1.0,0 -22371742,"Battlestations Pacific",purchase,1.0,0 -22371742,"BioShock 2",purchase,1.0,0 -22371742,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -22371742,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -22371742,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -22371742,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -22371742,"Broken Sword 1 - Shadow of the Templars Director's Cut",purchase,1.0,0 -22371742,"Broken Sword 2 - the Smoking Mirror Remastered",purchase,1.0,0 -22371742,"Broken Sword 3 - the Sleeping Dragon",purchase,1.0,0 -22371742,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -22371742,"Call of Duty Modern Warfare 2",purchase,1.0,0 -22371742,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -22371742,"Capsized",purchase,1.0,0 -22371742,"Commandos 3 Destination Berlin",purchase,1.0,0 -22371742,"Commandos Behind Enemy Lines",purchase,1.0,0 -22371742,"Commandos Beyond the Call of Duty",purchase,1.0,0 -22371742,"Conflict Denied Ops",purchase,1.0,0 -22371742,"Counter-Strike",purchase,1.0,0 -22371742,"Counter-Strike Condition Zero",purchase,1.0,0 -22371742,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -22371742,"Counter-Strike Global Offensive",purchase,1.0,0 -22371742,"Counter-Strike Source",purchase,1.0,0 -22371742,"Crysis Warhead",purchase,1.0,0 -22371742,"Crysis Wars",purchase,1.0,0 -22371742,"Dark Fall Lost Souls",purchase,1.0,0 -22371742,"Darksiders",purchase,1.0,0 -22371742,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -22371742,"Deus Ex Game of the Year Edition",purchase,1.0,0 -22371742,"Deus Ex Invisible War",purchase,1.0,0 -22371742,"F.E.A.R.",purchase,1.0,0 -22371742,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -22371742,"F.E.A.R. 3",purchase,1.0,0 -22371742,"F.E.A.R. Extraction Point",purchase,1.0,0 -22371742,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -22371742,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -22371742,"Far Cry",purchase,1.0,0 -22371742,"Far Cry 2",purchase,1.0,0 -22371742,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -22371742,"FINAL FANTASY XI",purchase,1.0,0 -22371742,"FINAL FANTASY XI Ultimate Collection - Abyssea Edition",purchase,1.0,0 -22371742,"Flora's Fruit Farm",purchase,1.0,0 -22371742,"Front Mission Evolved",purchase,1.0,0 -22371742,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -22371742,"Grand Theft Auto San Andreas",purchase,1.0,0 -22371742,"Grand Theft Auto Vice City",purchase,1.0,0 -22371742,"Grand Theft Auto Vice City",purchase,1.0,0 -22371742,"Grand Theft Auto III",purchase,1.0,0 -22371742,"Grand Theft Auto III",purchase,1.0,0 -22371742,"Gyromancer",purchase,1.0,0 -22371742,"Half-Life 2",purchase,1.0,0 -22371742,"Half-Life 2 Episode One",purchase,1.0,0 -22371742,"Half-Life 2 Episode Two",purchase,1.0,0 -22371742,"Half-Life 2 Lost Coast",purchase,1.0,0 -22371742,"Hitman 2 Silent Assassin",purchase,1.0,0 -22371742,"Hitman Blood Money",purchase,1.0,0 -22371742,"Hitman Codename 47",purchase,1.0,0 -22371742,"Hydrophobia Prophecy",purchase,1.0,0 -22371742,"Infernal",purchase,1.0,0 -22371742,"James Bond Blood Stone",purchase,1.0,0 -22371742,"Just Cause",purchase,1.0,0 -22371742,"Just Cause 2",purchase,1.0,0 -22371742,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -22371742,"Kane & Lynch Dead Men",purchase,1.0,0 -22371742,"L.A. Noire",purchase,1.0,0 -22371742,"Lara Croft and the Guardian of Light",purchase,1.0,0 -22371742,"Max Payne",purchase,1.0,0 -22371742,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -22371742,"Medal of Honor Airborne",purchase,1.0,0 -22371742,"Metro 2033",purchase,1.0,0 -22371742,"Mini Ninjas",purchase,1.0,0 -22371742,"Mirror's Edge",purchase,1.0,0 -22371742,"Orcs Must Die!",purchase,1.0,0 -22371742,"Penumbra Black Plague",purchase,1.0,0 -22371742,"Penumbra Overture",purchase,1.0,0 -22371742,"Penumbra Requiem",purchase,1.0,0 -22371742,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -22371742,"Prince of Persia",purchase,1.0,0 -22371742,"Prince of Persia The Forgotten Sands",purchase,1.0,0 -22371742,"Prince of Persia The Sands of Time",purchase,1.0,0 -22371742,"Prince of Persia The Two Thrones",purchase,1.0,0 -22371742,"Prince of Persia Warrior Within",purchase,1.0,0 -22371742,"Project Snowblind",purchase,1.0,0 -22371742,"Rogue Trooper",purchase,1.0,0 -22371742,"Sam & Max 101 Culture Shock",purchase,1.0,0 -22371742,"Sam & Max 102 Situation Comedy",purchase,1.0,0 -22371742,"Sam & Max 103 The Mole, the Mob and the Meatball",purchase,1.0,0 -22371742,"Sam & Max 105 Reality 2.0",purchase,1.0,0 -22371742,"Sam & Max 106 Bright Side of the Moon",purchase,1.0,0 -22371742,"Sam & Max 201 Ice Station Santa",purchase,1.0,0 -22371742,"Sam & Max 202 Moai Better Blues",purchase,1.0,0 -22371742,"Sam & Max 203 Night of the Raving Dead",purchase,1.0,0 -22371742,"Sam & Max 204 Chariots of the Dogs",purchase,1.0,0 -22371742,"Sam & Max 205 What's New Beelzebub?",purchase,1.0,0 -22371742,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -22371742,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -22371742,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -22371742,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -22371742,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -22371742,"Season of Mystery The Cherry Blossom Murders",purchase,1.0,0 -22371742,"Shadowgrounds",purchase,1.0,0 -22371742,"Shadowgrounds Survivor",purchase,1.0,0 -22371742,"Shellshock 2 Blood Trails",purchase,1.0,0 -22371742,"Singularity",purchase,1.0,0 -22371742,"Supreme Commander 2",purchase,1.0,0 -22371742,"Supreme Commander 2 - Infinite War Battle Pack One",purchase,1.0,0 -22371742,"Swords and Soldiers HD",purchase,1.0,0 -22371742,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -22371742,"The Longest Journey",purchase,1.0,0 -22371742,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -22371742,"The Witcher Enhanced Edition",purchase,1.0,0 -22371742,"Thief Deadly Shadows",purchase,1.0,0 -22371742,"Tomb Raider Anniversary",purchase,1.0,0 -22371742,"Tomb Raider Legend",purchase,1.0,0 -22371742,"Tomb Raider Underworld",purchase,1.0,0 -22371742,"Tom Clancy's Splinter Cell",purchase,1.0,0 -22371742,"Tom Clancy's Splinter Cell Chaos Theory",purchase,1.0,0 -22371742,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -22371742,"Tom Clancy's Splinter Cell Double Agent",purchase,1.0,0 -22371742,"Trine 2",purchase,1.0,0 -22371742,"Yosumin!",purchase,1.0,0 -157578481,"Farming Simulator 2013",purchase,1.0,0 -100351493,"EVE Online",purchase,1.0,0 -100351493,"EVE Online",play,36.0,0 -100351493,"Nevermind",purchase,1.0,0 -100351493,"Nevermind",play,36.0,0 -100351493,"Fallout 4",purchase,1.0,0 -100351493,"Fallout 4",play,35.0,0 -100351493,"The Stanley Parable",purchase,1.0,0 -100351493,"The Stanley Parable",play,10.6,0 -100351493,"Cities Skylines",purchase,1.0,0 -100351493,"Cities Skylines",play,10.4,0 -100351493,"Fallout 3",purchase,1.0,0 -100351493,"Fallout 3",play,9.3,0 -100351493,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -100351493,"Fallout 3 - Game of the Year Edition",play,8.0,0 -100351493,"Sid Meier's Civilization IV",purchase,1.0,0 -100351493,"Sid Meier's Civilization IV",play,6.4,0 -100351493,"The Talos Principle",purchase,1.0,0 -100351493,"The Talos Principle",play,3.4,0 -100351493,"Magicka",purchase,1.0,0 -100351493,"Magicka",play,2.9,0 -100351493,"The Beginner's Guide",purchase,1.0,0 -100351493,"The Beginner's Guide",play,2.8,0 -100351493,"Portal Stories Mel",purchase,1.0,0 -100351493,"Portal Stories Mel",play,2.4,0 -100351493,"Take On Mars",purchase,1.0,0 -100351493,"Take On Mars",play,2.1,0 -100351493,"Portal 2",purchase,1.0,0 -100351493,"Portal 2",play,1.9,0 -100351493,"Uplink",purchase,1.0,0 -100351493,"Uplink",play,1.9,0 -100351493,"Sid Meier's Civilization V",purchase,1.0,0 -100351493,"Sid Meier's Civilization V",play,1.5,0 -100351493,"PlanetSide 2",purchase,1.0,0 -100351493,"PlanetSide 2",play,1.4,0 -100351493,"World of Goo",purchase,1.0,0 -100351493,"World of Goo",play,0.8,0 -100351493,"A Story About My Uncle",purchase,1.0,0 -100351493,"A Story About My Uncle",play,0.7,0 -100351493,"Space Engineers",purchase,1.0,0 -100351493,"Space Engineers",play,0.4,0 -100351493,"BioShock",purchase,1.0,0 -100351493,"BioShock",play,0.4,0 -100351493,"CRYENGINE",purchase,1.0,0 -100351493,"CRYENGINE",play,0.1,0 -100351493,"Rexaura",purchase,1.0,0 -100351493,"Rexaura",play,0.1,0 -100351493,"Thinking with Time Machine",purchase,1.0,0 -100351493,"Portal",purchase,1.0,0 -100351493,"BioShock 2",purchase,1.0,0 -100351493,"BioShock Infinite",purchase,1.0,0 -100351493,"Sid Meier's Civilization IV",purchase,1.0,0 -100351493,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -100351493,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -100351493,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -100351493,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -100351493,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -100351493,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -176855190,"Dota 2",purchase,1.0,0 -176855190,"Dota 2",play,1.9,0 -73518199,"Dota 2",purchase,1.0,0 -73518199,"Dota 2",play,300.0,0 -73518199,"Endless Legend",purchase,1.0,0 -73518199,"Endless Legend",play,144.0,0 -73518199,"Divinity Original Sin",purchase,1.0,0 -73518199,"Divinity Original Sin",play,113.0,0 -73518199,"Age of Wonders III",purchase,1.0,0 -73518199,"Age of Wonders III",play,100.0,0 -73518199,"Fallout 4",purchase,1.0,0 -73518199,"Fallout 4",play,94.0,0 -73518199,"Sid Meier's Civilization V",purchase,1.0,0 -73518199,"Sid Meier's Civilization V",play,92.0,0 -73518199,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -73518199,"Call of Duty Black Ops - Multiplayer",play,91.0,0 -73518199,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -73518199,"Tom Clancy's Ghost Recon Phantoms - EU",play,68.0,0 -73518199,"Fallen Earth",purchase,1.0,0 -73518199,"Fallen Earth",play,54.0,0 -73518199,"Magic The Gathering - Duels of the Planeswalkers 2013",purchase,1.0,0 -73518199,"Magic The Gathering - Duels of the Planeswalkers 2013",play,52.0,0 -73518199,"Europa Universalis IV",purchase,1.0,0 -73518199,"Europa Universalis IV",play,52.0,0 -73518199,"How to Survive",purchase,1.0,0 -73518199,"How to Survive",play,51.0,0 -73518199,"Firefall",purchase,1.0,0 -73518199,"Firefall",play,47.0,0 -73518199,"Borderlands The Pre-Sequel",purchase,1.0,0 -73518199,"Borderlands The Pre-Sequel",play,44.0,0 -73518199,"Magic Duels",purchase,1.0,0 -73518199,"Magic Duels",play,43.0,0 -73518199,"Far Cry 3",purchase,1.0,0 -73518199,"Far Cry 3",play,37.0,0 -73518199,"Warlock - Master of the Arcane",purchase,1.0,0 -73518199,"Warlock - Master of the Arcane",play,36.0,0 -73518199,"Football Manager 2014",purchase,1.0,0 -73518199,"Football Manager 2014",play,28.0,0 -73518199,"Big Pharma",purchase,1.0,0 -73518199,"Big Pharma",play,26.0,0 -73518199,"Dead Island",purchase,1.0,0 -73518199,"Dead Island",play,26.0,0 -73518199,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -73518199,"Shadowrun Dragonfall - Director's Cut",play,26.0,0 -73518199,"Total War ROME II - Emperor Edition",purchase,1.0,0 -73518199,"Total War ROME II - Emperor Edition",play,25.0,0 -73518199,"State of Decay",purchase,1.0,0 -73518199,"State of Decay",play,25.0,0 -73518199,"Unturned",purchase,1.0,0 -73518199,"Unturned",play,25.0,0 -73518199,"Dungeon of the Endless",purchase,1.0,0 -73518199,"Dungeon of the Endless",play,25.0,0 -73518199,"Far Cry 4",purchase,1.0,0 -73518199,"Far Cry 4",play,23.0,0 -73518199,"Terraria",purchase,1.0,0 -73518199,"Terraria",play,23.0,0 -73518199,"Torchlight II",purchase,1.0,0 -73518199,"Torchlight II",play,20.0,0 -73518199,"Rogue Shooter The FPS Roguelike",purchase,1.0,0 -73518199,"Rogue Shooter The FPS Roguelike",play,20.0,0 -73518199,"Perpetuum",purchase,1.0,0 -73518199,"Perpetuum",play,16.4,0 -73518199,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -73518199,"Tropico 3 - Steam Special Edition",play,13.6,0 -73518199,"Magic 2014 ",purchase,1.0,0 -73518199,"Magic 2014 ",play,12.8,0 -73518199,"Metal Reaper Online",purchase,1.0,0 -73518199,"Metal Reaper Online",play,11.4,0 -73518199,"XCOM Enemy Unknown",purchase,1.0,0 -73518199,"XCOM Enemy Unknown",play,10.5,0 -73518199,"Sniper Elite 3",purchase,1.0,0 -73518199,"Sniper Elite 3",play,10.4,0 -73518199,"Empyrion - Galactic Survival",purchase,1.0,0 -73518199,"Empyrion - Galactic Survival",play,7.8,0 -73518199,"Wargame Red Dragon",purchase,1.0,0 -73518199,"Wargame Red Dragon",play,6.8,0 -73518199,"RAGE",purchase,1.0,0 -73518199,"RAGE",play,6.6,0 -73518199,"Path of Exile",purchase,1.0,0 -73518199,"Path of Exile",play,5.2,0 -73518199,"Magicka",purchase,1.0,0 -73518199,"Magicka",play,5.1,0 -73518199,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -73518199,"The Witcher 2 Assassins of Kings Enhanced Edition",play,4.7,0 -73518199,"March of War",purchase,1.0,0 -73518199,"March of War",play,4.2,0 -73518199,"Far Cry 2",purchase,1.0,0 -73518199,"Far Cry 2",play,4.0,0 -73518199,"Loadout",purchase,1.0,0 -73518199,"Loadout",play,3.9,0 -73518199,"System Shock 2",purchase,1.0,0 -73518199,"System Shock 2",play,3.9,0 -73518199,"Stranded Deep",purchase,1.0,0 -73518199,"Stranded Deep",play,3.7,0 -73518199,"Project Zomboid",purchase,1.0,0 -73518199,"Project Zomboid",play,3.6,0 -73518199,"Metro 2033",purchase,1.0,0 -73518199,"Metro 2033",play,3.5,0 -73518199,"Card Hunter",purchase,1.0,0 -73518199,"Card Hunter",play,3.3,0 -73518199,"Planetary Annihilation",purchase,1.0,0 -73518199,"Planetary Annihilation",play,1.7,0 -73518199,"Call of Duty Black Ops",purchase,1.0,0 -73518199,"Call of Duty Black Ops",play,1.4,0 -73518199,"Dogs of War Online - Beta",purchase,1.0,0 -73518199,"Dogs of War Online - Beta",play,1.3,0 -73518199,"Dungeonland",purchase,1.0,0 -73518199,"Dungeonland",play,1.3,0 -73518199,"Left 4 Dead 2",purchase,1.0,0 -73518199,"Left 4 Dead 2",play,1.0,0 -73518199,"Robocraft",purchase,1.0,0 -73518199,"Robocraft",play,0.5,0 -73518199,"Stealth Inc 2",purchase,1.0,0 -73518199,"Stealth Inc 2",play,0.4,0 -73518199,"Realm of the Mad God",purchase,1.0,0 -73518199,"Realm of the Mad God",play,0.3,0 -73518199,"The Way of Life Free Edition",purchase,1.0,0 -73518199,"The Way of Life Free Edition",play,0.2,0 -73518199,"Heroes & Generals",purchase,1.0,0 -73518199,"The Mighty Quest For Epic Loot",purchase,1.0,0 -73518199,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -73518199,"Europa Universalis IV American Dream DLC",purchase,1.0,0 -73518199,"Europa Universalis IV Conquest of Paradise",purchase,1.0,0 -73518199,"Europa Universalis IV Conquistadors Unit pack ",purchase,1.0,0 -73518199,"Europa Universalis IV National Monuments II",purchase,1.0,0 -73518199,"Europa Universalis IVNative Americans Unit Pack",purchase,1.0,0 -73518199,"Europa Universalis IV Songs of the New World",purchase,1.0,0 -73518199,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -73518199,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -73518199,"Magicka Final Frontier",purchase,1.0,0 -73518199,"Magicka Frozen Lake",purchase,1.0,0 -73518199,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -73518199,"Magicka Nippon",purchase,1.0,0 -73518199,"Magicka Party Robes",purchase,1.0,0 -73518199,"Magicka The Watchtower",purchase,1.0,0 -73518199,"Magicka Vietnam",purchase,1.0,0 -73518199,"Magicka Wizard's Survival Kit",purchase,1.0,0 -73518199,"Magicka Wizard Wars",purchase,1.0,0 -73518199,"Rexaura",purchase,1.0,0 -73518199,"The Banner Saga Factions",purchase,1.0,0 -73518199,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -73518199,"XCOM Enemy Within",purchase,1.0,0 -66592754,"Alien Swarm",purchase,1.0,0 -66592754,"Alien Swarm",play,18.9,0 -20207081,"Dota 2",purchase,1.0,0 -20207081,"Dota 2",play,4845.0,0 -20207081,"Company of Heroes Opposing Fronts",purchase,1.0,0 -20207081,"Company of Heroes Opposing Fronts",play,271.0,0 -20207081,"Counter-Strike Global Offensive",purchase,1.0,0 -20207081,"Counter-Strike Global Offensive",play,73.0,0 -20207081,"War Thunder",purchase,1.0,0 -20207081,"War Thunder",play,52.0,0 -20207081,"Arma 3",purchase,1.0,0 -20207081,"Arma 3",play,33.0,0 -20207081,"Heroes & Generals",purchase,1.0,0 -20207081,"Heroes & Generals",play,15.2,0 -20207081,"Company of Heroes",purchase,1.0,0 -20207081,"Company of Heroes",play,11.7,0 -20207081,"Empire Total War",purchase,1.0,0 -20207081,"Empire Total War",play,11.6,0 -20207081,"Counter-Strike",purchase,1.0,0 -20207081,"Counter-Strike",play,3.9,0 -20207081,"Day of Defeat",purchase,1.0,0 -20207081,"Mass Effect",purchase,1.0,0 -20207081,"Arma 3 Zeus",purchase,1.0,0 -20207081,"Company of Heroes (New Steam Version)",purchase,1.0,0 -20207081,"Counter-Strike Condition Zero",purchase,1.0,0 -20207081,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -20207081,"Deathmatch Classic",purchase,1.0,0 -20207081,"Ricochet",purchase,1.0,0 -77632511,"RIFT",purchase,1.0,0 -77632511,"RIFT",play,248.0,0 -77632511,"Two Worlds II",purchase,1.0,0 -77632511,"Two Worlds II",play,21.0,0 -77632511,"Neverwinter Nights 2 Platinum",purchase,1.0,0 -77632511,"Neverwinter Nights 2 Platinum",play,12.4,0 -245859173,"Unturned",purchase,1.0,0 -245859173,"Unturned",play,65.0,0 -245859173,"Team Fortress 2",purchase,1.0,0 -245859173,"Team Fortress 2",play,33.0,0 -245859173,"Warface",purchase,1.0,0 -245859173,"Warface",play,23.0,0 -245859173,"Trove",purchase,1.0,0 -245859173,"Trove",play,9.5,0 -245859173,"Mitos.is The Game",purchase,1.0,0 -245859173,"Mitos.is The Game",play,7.7,0 -245859173,"Cry of Fear",purchase,1.0,0 -245859173,"Cry of Fear",play,6.2,0 -245859173,"Codename CURE",purchase,1.0,0 -245859173,"Codename CURE",play,4.3,0 -245859173,"Fistful of Frags",purchase,1.0,0 -245859173,"Fistful of Frags",play,2.8,0 -245859173,"WARMODE",purchase,1.0,0 -245859173,"WARMODE",play,2.7,0 -245859173,"Dota 2",purchase,1.0,0 -245859173,"Dota 2",play,2.1,0 -245859173,"No More Room in Hell",purchase,1.0,0 -245859173,"No More Room in Hell",play,1.9,0 -245859173,"Robocraft",purchase,1.0,0 -245859173,"Robocraft",play,1.7,0 -245859173,"Genesis Online",purchase,1.0,0 -245859173,"Genesis Online",play,0.8,0 -245859173,"RaceRoom Racing Experience ",purchase,1.0,0 -245859173,"RaceRoom Racing Experience ",play,0.6,0 -245859173,"Red Crucible Firestorm",purchase,1.0,0 -245859173,"Red Crucible Firestorm",play,0.2,0 -245859173,"APB Reloaded",purchase,1.0,0 -245859173,"APB Reloaded",play,0.2,0 -245859173,"Fishing Planet",purchase,1.0,0 -245859173,"Fishing Planet",play,0.2,0 -245859173,"Run and Fire",purchase,1.0,0 -245859173,"Run and Fire",play,0.1,0 -245859173,"Archeblade",purchase,1.0,0 -245859173,"Dirty Bomb",purchase,1.0,0 -245859173,"PlanetSide 2",purchase,1.0,0 -270165540,"Unturned",purchase,1.0,0 -270165540,"Unturned",play,0.1,0 -270165540,"Panzar",purchase,1.0,0 -270165540,"Survarium",purchase,1.0,0 -268474336,"Dota 2",purchase,1.0,0 -268474336,"Dota 2",play,1.9,0 -192839333,"Dota 2",purchase,1.0,0 -192839333,"Dota 2",play,326.0,0 -192839333,"Quake Live",purchase,1.0,0 -192839333,"Quake Live",play,0.2,0 -303854541,"Steel Ocean",purchase,1.0,0 -303854541,"Steel Ocean",play,0.7,0 -303854541,"RaceRoom Racing Experience ",purchase,1.0,0 -303854541,"RaceRoom Racing Experience ",play,0.2,0 -303854541,"Unturned",purchase,1.0,0 -99304780,"King Arthur II - The Role-playing Wargame",purchase,1.0,0 -99304780,"King Arthur II - The Role-playing Wargame",play,0.5,0 -206232608,"Dota 2",purchase,1.0,0 -206232608,"Dota 2",play,2.8,0 -271146672,"Run and Fire",purchase,1.0,0 -271146672,"Run and Fire",play,0.1,0 -252932627,"Dota 2",purchase,1.0,0 -252932627,"Dota 2",play,0.6,0 -249543309,"Dota 2",purchase,1.0,0 -249543309,"Dota 2",play,6.1,0 -85342296,"Empire Total War",purchase,1.0,0 -85342296,"Empire Total War",play,93.0,0 -135277795,"Team Fortress 2",purchase,1.0,0 -135277795,"Team Fortress 2",play,1.8,0 -69856757,"Dota 2",purchase,1.0,0 -69856757,"Dota 2",play,1377.0,0 -69856757,"Medieval II Total War Kingdoms",purchase,1.0,0 -69856757,"Medieval II Total War Kingdoms",play,378.0,0 -69856757,"Total War ROME II - Emperor Edition",purchase,1.0,0 -69856757,"Total War ROME II - Emperor Edition",play,129.0,0 -69856757,"Empire Total War",purchase,1.0,0 -69856757,"Empire Total War",play,122.0,0 -69856757,"Mount & Blade Warband",purchase,1.0,0 -69856757,"Mount & Blade Warband",play,120.0,0 -69856757,"Rome Total War",purchase,1.0,0 -69856757,"Rome Total War",play,116.0,0 -69856757,"PAYDAY 2",purchase,1.0,0 -69856757,"PAYDAY 2",play,98.0,0 -69856757,"The Witcher 3 Wild Hunt",purchase,1.0,0 -69856757,"The Witcher 3 Wild Hunt",play,88.0,0 -69856757,"Sid Meier's Civilization V",purchase,1.0,0 -69856757,"Sid Meier's Civilization V",play,84.0,0 -69856757,"Don't Starve Together Beta",purchase,1.0,0 -69856757,"Don't Starve Together Beta",play,82.0,0 -69856757,"7 Days to Die",purchase,1.0,0 -69856757,"7 Days to Die",play,81.0,0 -69856757,"Rome Total War - Alexander",purchase,1.0,0 -69856757,"Rome Total War - Alexander",play,63.0,0 -69856757,"Borderlands 2",purchase,1.0,0 -69856757,"Borderlands 2",play,50.0,0 -69856757,"Total War SHOGUN 2",purchase,1.0,0 -69856757,"Total War SHOGUN 2",play,45.0,0 -69856757,"Middle-earth Shadow of Mordor",purchase,1.0,0 -69856757,"Middle-earth Shadow of Mordor",play,42.0,0 -69856757,"Left 4 Dead 2",purchase,1.0,0 -69856757,"Left 4 Dead 2",play,38.0,0 -69856757,"Team Fortress 2",purchase,1.0,0 -69856757,"Team Fortress 2",play,25.0,0 -69856757,"Nosgoth",purchase,1.0,0 -69856757,"Nosgoth",play,24.0,0 -69856757,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -69856757,"Operation Flashpoint Dragon Rising",play,23.0,0 -69856757,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -69856757,"Batman Arkham Asylum GOTY Edition",play,21.0,0 -69856757,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -69856757,"Vampire The Masquerade - Bloodlines",play,20.0,0 -69856757,"Mafia",purchase,1.0,0 -69856757,"Mafia",play,18.1,0 -69856757,"Medieval II Total War",purchase,1.0,0 -69856757,"Medieval II Total War",play,17.7,0 -69856757,"Divinity Original Sin",purchase,1.0,0 -69856757,"Divinity Original Sin",play,15.1,0 -69856757,"Sleeping Dogs Definitive Edition",purchase,1.0,0 -69856757,"Sleeping Dogs Definitive Edition",play,14.7,0 -69856757,"Game of Thrones ",purchase,1.0,0 -69856757,"Game of Thrones ",play,14.7,0 -69856757,"Batman Arkham City",purchase,1.0,0 -69856757,"Batman Arkham City",play,12.9,0 -69856757,"Dungeon Defenders",purchase,1.0,0 -69856757,"Dungeon Defenders",play,11.7,0 -69856757,"Chivalry Medieval Warfare",purchase,1.0,0 -69856757,"Chivalry Medieval Warfare",play,11.7,0 -69856757,"ARK Survival Evolved",purchase,1.0,0 -69856757,"ARK Survival Evolved",play,11.3,0 -69856757,"Star Wars - Battlefront II",purchase,1.0,0 -69856757,"Star Wars - Battlefront II",play,10.0,0 -69856757,"Damned",purchase,1.0,0 -69856757,"Damned",play,7.2,0 -69856757,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -69856757,"Max Payne 2 The Fall of Max Payne",play,6.0,0 -69856757,"Mount & Blade",purchase,1.0,0 -69856757,"Mount & Blade",play,5.7,0 -69856757,"Arma 2 Operation Arrowhead",purchase,1.0,0 -69856757,"Arma 2 Operation Arrowhead",play,4.9,0 -69856757,"Nation Red",purchase,1.0,0 -69856757,"Nation Red",play,4.8,0 -69856757,"Star Wars Knights of the Old Republic",purchase,1.0,0 -69856757,"Star Wars Knights of the Old Republic",play,4.6,0 -69856757,"Vlad the Impaler",purchase,1.0,0 -69856757,"Vlad the Impaler",play,4.5,0 -69856757,"Operation Flashpoint Red River",purchase,1.0,0 -69856757,"Operation Flashpoint Red River",play,4.3,0 -69856757,"Max Payne",purchase,1.0,0 -69856757,"Max Payne",play,3.9,0 -69856757,"Frozen Synapse",purchase,1.0,0 -69856757,"Frozen Synapse",play,2.7,0 -69856757,"Napoleon Total War",purchase,1.0,0 -69856757,"Napoleon Total War",play,2.5,0 -69856757,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -69856757,"Grand Theft Auto Episodes from Liberty City",play,2.3,0 -69856757,"Dead Island Epidemic",purchase,1.0,0 -69856757,"Dead Island Epidemic",play,2.1,0 -69856757,"Titan Quest Immortal Throne",purchase,1.0,0 -69856757,"Titan Quest Immortal Throne",play,2.0,0 -69856757,"Titan Quest",purchase,1.0,0 -69856757,"Titan Quest",play,1.9,0 -69856757,"HOARD",purchase,1.0,0 -69856757,"HOARD",play,1.9,0 -69856757,"SimCity 4 Deluxe",purchase,1.0,0 -69856757,"SimCity 4 Deluxe",play,1.9,0 -69856757,"Contagion",purchase,1.0,0 -69856757,"Contagion",play,1.3,0 -69856757,"Grand Theft Auto San Andreas",purchase,1.0,0 -69856757,"Grand Theft Auto San Andreas",play,1.0,0 -69856757,"Arma 2",purchase,1.0,0 -69856757,"Arma 2",play,0.7,0 -69856757,"No More Room in Hell",purchase,1.0,0 -69856757,"No More Room in Hell",play,0.6,0 -69856757,"Arma Cold War Assault",purchase,1.0,0 -69856757,"Arma Cold War Assault",play,0.6,0 -69856757,"Panzar",purchase,1.0,0 -69856757,"Panzar",play,0.4,0 -69856757,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -69856757,"Game of Thrones - A Telltale Games Series",play,0.3,0 -69856757,"DogFighter",purchase,1.0,0 -69856757,"DogFighter",play,0.3,0 -69856757,"AdVenture Capitalist",purchase,1.0,0 -69856757,"AdVenture Capitalist",play,0.3,0 -69856757,"Take Command Second Manassas",purchase,1.0,0 -69856757,"Take Command Second Manassas",play,0.3,0 -69856757,"Grand Theft Auto Vice City",purchase,1.0,0 -69856757,"Divine Divinity",purchase,1.0,0 -69856757,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -69856757,"Batman Arkham City GOTY",purchase,1.0,0 -69856757,"Beyond Divinity",purchase,1.0,0 -69856757,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -69856757,"Grand Theft Auto San Andreas",purchase,1.0,0 -69856757,"Grand Theft Auto Vice City",purchase,1.0,0 -69856757,"Mount & Blade Warband - Viking Conquest Reforged Edition",purchase,1.0,0 -69856757,"Patch testing for Chivalry",purchase,1.0,0 -69856757,"theHunter",purchase,1.0,0 -69856757,"The Witcher 3 Wild Hunt - Expansion Pass",purchase,1.0,0 -69856757,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -69856757,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -116411567,"Tomb Raider",purchase,1.0,0 -116411567,"Tomb Raider",play,40.0,0 -116411567,"Mass Effect 2",purchase,1.0,0 -116411567,"Mass Effect 2",play,29.0,0 -116411567,"Remember Me",purchase,1.0,0 -116411567,"Remember Me",play,5.2,0 -116411567,"Far Cry 3",purchase,1.0,0 -116411567,"Far Cry 3",play,3.3,0 -116411567,"Middle-earth Shadow of Mordor",purchase,1.0,0 -116411567,"Middle-earth Shadow of Mordor",play,2.6,0 -116411567,"Mass Effect",purchase,1.0,0 -116411567,"Mass Effect",play,2.2,0 -116411567,"Blades of Time",purchase,1.0,0 -116411567,"Blades of Time",play,2.2,0 -116411567,"HeXen II",purchase,1.0,0 -116411567,"HeXen II",play,0.9,0 -116411567,"Alien Rage - Unlimited",purchase,1.0,0 -116411567,"Alien Rage - Unlimited",play,0.8,0 -116411567,"RAW - Realms of Ancient War",purchase,1.0,0 -116411567,"RAW - Realms of Ancient War",play,0.4,0 -116411567,"Alien Swarm",purchase,1.0,0 -116411567,"Alien Swarm",play,0.4,0 -116411567,"Dismal Swamp DLC",purchase,1.0,0 -116411567,"Limited Edition",purchase,1.0,0 -100895530,"Dota 2",purchase,1.0,0 -100895530,"Dota 2",play,0.2,0 -83849502,"The Binding of Isaac Rebirth",purchase,1.0,0 -83849502,"The Binding of Isaac Rebirth",play,410.0,0 -83849502,"DARK SOULS II",purchase,1.0,0 -83849502,"DARK SOULS II",play,88.0,0 -83849502,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -83849502,"Dark Souls Prepare to Die Edition",play,59.0,0 -83849502,"The Binding of Isaac",purchase,1.0,0 -83849502,"The Binding of Isaac",play,32.0,0 -83849502,"Magic 2014 ",purchase,1.0,0 -83849502,"Magic 2014 ",play,26.0,0 -83849502,"Knights of Pen and Paper +1",purchase,1.0,0 -83849502,"Knights of Pen and Paper +1",play,15.8,0 -83849502,"Guacamelee! Gold Edition",purchase,1.0,0 -83849502,"Guacamelee! Gold Edition",play,10.3,0 -83849502,"Counter-Strike Global Offensive",purchase,1.0,0 -83849502,"Counter-Strike Global Offensive",play,8.6,0 -83849502,"Team Fortress 2",purchase,1.0,0 -83849502,"Team Fortress 2",play,3.1,0 -83849502,"Sniper Ghost Warrior 2",purchase,1.0,0 -83849502,"Sniper Ghost Warrior 2",play,1.0,0 -83849502,"Mirror's Edge",purchase,1.0,0 -83849502,"Mirror's Edge",play,0.8,0 -83849502,"Just Cause 2",purchase,1.0,0 -83849502,"Just Cause 2",play,0.6,0 -83849502,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -83849502,"THE KING OF FIGHTERS XIII STEAM EDITION",play,0.5,0 -83849502,"Fallout New Vegas",purchase,1.0,0 -83849502,"Fallout New Vegas",play,0.4,0 -83849502,"SolForge",purchase,1.0,0 -83849502,"SolForge",play,0.4,0 -83849502,"The Witcher Enhanced Edition",purchase,1.0,0 -83849502,"The Witcher Enhanced Edition",play,0.4,0 -83849502,"Chivalry Medieval Warfare",purchase,1.0,0 -83849502,"Chivalry Medieval Warfare",play,0.4,0 -83849502,"Marvel Heroes 2015",purchase,1.0,0 -83849502,"Marvel Heroes 2015",play,0.3,0 -83849502,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -83849502,"SEGA Genesis & Mega Drive Classics",play,0.3,0 -83849502,"Euro Truck Simulator 2",purchase,1.0,0 -83849502,"Euro Truck Simulator 2",play,0.3,0 -83849502,"Bridge Constructor",purchase,1.0,0 -83849502,"Bridge Constructor",play,0.2,0 -83849502,"System Shock 2",purchase,1.0,0 -83849502,"System Shock 2",play,0.2,0 -83849502,"Giana Sisters Twisted Dreams",purchase,1.0,0 -83849502,"Giana Sisters Twisted Dreams",play,0.2,0 -83849502,"Terraria",purchase,1.0,0 -83849502,"Terraria",play,0.1,0 -83849502,"Mark of the Ninja",purchase,1.0,0 -83849502,"Mark of the Ninja",play,0.1,0 -83849502,"The Swapper",purchase,1.0,0 -83849502,"The Swapper",play,0.1,0 -83849502,"Rome Total War",purchase,1.0,0 -83849502,"Rome Total War",play,0.1,0 -83849502,"BIT.TRIP RUNNER",purchase,1.0,0 -83849502,"BIT.TRIP RUNNER",play,0.1,0 -83849502,"Counter-Strike",purchase,1.0,0 -83849502,"Counter-Strike",play,0.1,0 -83849502,"Spirits",purchase,1.0,0 -83849502,"Thief Deadly Shadows",purchase,1.0,0 -83849502,"Awesomenauts",purchase,1.0,0 -83849502,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -83849502,"Thief Gold",purchase,1.0,0 -83849502,"TypeRider",purchase,1.0,0 -83849502,"ArcaniA",purchase,1.0,0 -83849502,"Puzzle Bots",purchase,1.0,0 -83849502,"Thomas Was Alone",purchase,1.0,0 -83849502,"Deus Ex Human Revolution",purchase,1.0,0 -83849502,"Thief 2",purchase,1.0,0 -83849502,"140",purchase,1.0,0 -83849502,"AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome",purchase,1.0,0 -83849502,"Alpha Protocol",purchase,1.0,0 -83849502,"Anachronox",purchase,1.0,0 -83849502,"Ballpoint Universe Infinite",purchase,1.0,0 -83849502,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -83849502,"Before the Echo",purchase,1.0,0 -83849502,"Binary Domain",purchase,1.0,0 -83849502,"BioShock",purchase,1.0,0 -83849502,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -83849502,"Blocks That Matter",purchase,1.0,0 -83849502,"Broken Sword 2 - the Smoking Mirror Remastered",purchase,1.0,0 -83849502,"Card City Nights",purchase,1.0,0 -83849502,"Cave Story+",purchase,1.0,0 -83849502,"Company of Heroes",purchase,1.0,0 -83849502,"Company of Heroes (New Steam Version)",purchase,1.0,0 -83849502,"Cook, Serve, Delicious!",purchase,1.0,0 -83849502,"Counter-Strike Condition Zero",purchase,1.0,0 -83849502,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -83849502,"Counter-Strike Source",purchase,1.0,0 -83849502,"Crazy Machines 2",purchase,1.0,0 -83849502,"Crusader Kings II",purchase,1.0,0 -83849502,"Daikatana",purchase,1.0,0 -83849502,"Deadlight",purchase,1.0,0 -83849502,"Deadlight Original Soundtrack",purchase,1.0,0 -83849502,"Dust An Elysian Tail",purchase,1.0,0 -83849502,"Dustforce",purchase,1.0,0 -83849502,"Ethan Meteor Hunter",purchase,1.0,0 -83849502,"Fable - The Lost Chapters",purchase,1.0,0 -83849502,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -83849502,"Fallout New Vegas Dead Money",purchase,1.0,0 -83849502,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -83849502,"Finding Teddy",purchase,1.0,0 -83849502,"Finding Teddy Soundtrack",purchase,1.0,0 -83849502,"FLY'N",purchase,1.0,0 -83849502,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -83849502,"Galaxy on Fire 2 Full HD",purchase,1.0,0 -83849502,"Hell Yeah!",purchase,1.0,0 -83849502,"Hitman 2 Silent Assassin",purchase,1.0,0 -83849502,"Hitman Codename 47",purchase,1.0,0 -83849502,"KAMI",purchase,1.0,0 -83849502,"King Arthur's Gold",purchase,1.0,0 -83849502,"Kingdom Rush",purchase,1.0,0 -83849502,"Legend of Grimrock",purchase,1.0,0 -83849502,"Magic 2015",purchase,1.0,0 -83849502,"Magical Diary",purchase,1.0,0 -83849502,"Mark of the Ninja Special Edition DLC",purchase,1.0,0 -83849502,"Mechanic Escape",purchase,1.0,0 -83849502,"Medieval II Total War",purchase,1.0,0 -83849502,"Megabyte Punch",purchase,1.0,0 -83849502,"Mini Ninjas",purchase,1.0,0 -83849502,"NEO Scavenger",purchase,1.0,0 -83849502,"Offspring Fling!",purchase,1.0,0 -83849502,"Orcs Must Die! 2",purchase,1.0,0 -83849502,"Osmos",purchase,1.0,0 -83849502,"Out of the Park Baseball 14",purchase,1.0,0 -83849502,"Patch testing for Chivalry",purchase,1.0,0 -83849502,"PixelJunk Eden",purchase,1.0,0 -83849502,"Ravensword Shadowlands",purchase,1.0,0 -83849502,"Renegade Ops",purchase,1.0,0 -83849502,"Risen",purchase,1.0,0 -83849502,"Sanctum 2",purchase,1.0,0 -83849502,"Savant - Ascent",purchase,1.0,0 -83849502,"Shank 2",purchase,1.0,0 -83849502,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -83849502,"Super Hexagon",purchase,1.0,0 -83849502,"Syder Arcade",purchase,1.0,0 -83849502,"Symphony",purchase,1.0,0 -83849502,"Talisman Digital Edition",purchase,1.0,0 -83849502,"Talisman Prologue",purchase,1.0,0 -83849502,"The Book of Unwritten Tales",purchase,1.0,0 -83849502,"The Book of Unwritten Tales Extras",purchase,1.0,0 -83849502,"The Bureau XCOM Declassified",purchase,1.0,0 -83849502,"The Darkness II",purchase,1.0,0 -83849502,"The Great Jitters Pudding Panic",purchase,1.0,0 -83849502,"The Guild II",purchase,1.0,0 -83849502,"The Guild II - Pirates of the European Seas",purchase,1.0,0 -83849502,"The Guild II Renaissance",purchase,1.0,0 -83849502,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -83849502,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -83849502,"The Shivah",purchase,1.0,0 -83849502,"The Typing of The Dead Overkill",purchase,1.0,0 -83849502,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -83849502,"Universe Sandbox",purchase,1.0,0 -83849502,"VVVVVV",purchase,1.0,0 -83849502,"Wanderlust Rebirth",purchase,1.0,0 -83849502,"Warlock - Master of the Arcane",purchase,1.0,0 -83849502,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -83849502,"Zen Bound 2",purchase,1.0,0 -125654059,"Serious Sam HD The Second Encounter",purchase,1.0,0 -125654059,"Serious Sam HD The Second Encounter",play,1.7,0 -115958331,"The Elder Scrolls V Skyrim",purchase,1.0,0 -115958331,"The Elder Scrolls V Skyrim",play,57.0,0 -115958331,"Unturned",purchase,1.0,0 -115958331,"Unturned",play,10.0,0 -115958331,"Team Fortress 2",purchase,1.0,0 -115958331,"Team Fortress 2",play,5.9,0 -115958331,"Dota 2",purchase,1.0,0 -115958331,"Dota 2",play,0.9,0 -115958331,"Guns and Robots",purchase,1.0,0 -115958331,"Guns and Robots",play,0.4,0 -115958331,"Dead Island Epidemic",purchase,1.0,0 -115958331,"The Mighty Quest For Epic Loot",purchase,1.0,0 -104198851,"Team Fortress 2",purchase,1.0,0 -104198851,"Team Fortress 2",play,36.0,0 -100311267,"Garry's Mod",purchase,1.0,0 -100311267,"Garry's Mod",play,94.0,0 -100311267,"Team Fortress 2",purchase,1.0,0 -100311267,"Team Fortress 2",play,29.0,0 -100311267,"Counter-Strike Global Offensive",purchase,1.0,0 -100311267,"Counter-Strike Global Offensive",play,25.0,0 -100311267,"Warframe",purchase,1.0,0 -100311267,"Warframe",play,13.9,0 -100311267,"Fallout 4",purchase,1.0,0 -100311267,"Fallout 4",play,12.0,0 -100311267,"No More Room in Hell",purchase,1.0,0 -100311267,"No More Room in Hell",play,8.1,0 -100311267,"Call of Duty World at War",purchase,1.0,0 -100311267,"Call of Duty World at War",play,7.8,0 -100311267,"Neverwinter",purchase,1.0,0 -100311267,"Neverwinter",play,7.5,0 -100311267,"H1Z1",purchase,1.0,0 -100311267,"H1Z1",play,6.2,0 -100311267,"Trove",purchase,1.0,0 -100311267,"Trove",play,5.1,0 -100311267,"Rust",purchase,1.0,0 -100311267,"Rust",play,4.9,0 -100311267,"Path of Exile",purchase,1.0,0 -100311267,"Path of Exile",play,4.5,0 -100311267,"PAYDAY 2",purchase,1.0,0 -100311267,"PAYDAY 2",play,4.2,0 -100311267,"DC Universe Online",purchase,1.0,0 -100311267,"DC Universe Online",play,4.0,0 -100311267,"America's Army Proving Grounds",purchase,1.0,0 -100311267,"America's Army Proving Grounds",play,4.0,0 -100311267,"Metro Conflict",purchase,1.0,0 -100311267,"Metro Conflict",play,3.2,0 -100311267,"Shadow Warrior",purchase,1.0,0 -100311267,"Shadow Warrior",play,2.1,0 -100311267,"AdVenture Capitalist",purchase,1.0,0 -100311267,"AdVenture Capitalist",play,1.7,0 -100311267,"Cry of Fear",purchase,1.0,0 -100311267,"Cry of Fear",play,1.6,0 -100311267,"F.E.A.R. Online",purchase,1.0,0 -100311267,"F.E.A.R. Online",play,1.4,0 -100311267,"APB Reloaded",purchase,1.0,0 -100311267,"APB Reloaded",play,1.4,0 -100311267,"Aftermath",purchase,1.0,0 -100311267,"Aftermath",play,1.3,0 -100311267,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -100311267,"Tom Clancy's Ghost Recon Phantoms - EU",play,1.2,0 -100311267,"Smashmuck Champions",purchase,1.0,0 -100311267,"Smashmuck Champions",play,1.2,0 -100311267,"Unturned",purchase,1.0,0 -100311267,"Unturned",play,1.1,0 -100311267,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -100311267,"Red Faction Guerrilla Steam Edition",play,1.0,0 -100311267,"ArcheAge",purchase,1.0,0 -100311267,"ArcheAge",play,0.9,0 -100311267,"WARMODE",purchase,1.0,0 -100311267,"WARMODE",play,0.9,0 -100311267,"Red Faction Armageddon",purchase,1.0,0 -100311267,"Red Faction Armageddon",play,0.9,0 -100311267,"Remember Me",purchase,1.0,0 -100311267,"Remember Me",play,0.9,0 -100311267,"PAYDAY The Heist",purchase,1.0,0 -100311267,"PAYDAY The Heist",play,0.9,0 -100311267,"Nosgoth",purchase,1.0,0 -100311267,"Nosgoth",play,0.8,0 -100311267,"Lost Planet 3",purchase,1.0,0 -100311267,"Lost Planet 3",play,0.8,0 -100311267,"RaceRoom Racing Experience ",purchase,1.0,0 -100311267,"RaceRoom Racing Experience ",play,0.7,0 -100311267,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -100311267,"Viscera Cleanup Detail Shadow Warrior",play,0.6,0 -100311267,"Red Faction",purchase,1.0,0 -100311267,"Red Faction",play,0.5,0 -100311267,"Deadbreed",purchase,1.0,0 -100311267,"Deadbreed",play,0.5,0 -100311267,"DmC Devil May Cry",purchase,1.0,0 -100311267,"DmC Devil May Cry",play,0.4,0 -100311267,"Dungeonland",purchase,1.0,0 -100311267,"Dungeonland",play,0.4,0 -100311267,"Rise of Incarnates",purchase,1.0,0 -100311267,"Rise of Incarnates",play,0.4,0 -100311267,"Double Action Boogaloo",purchase,1.0,0 -100311267,"Double Action Boogaloo",play,0.4,0 -100311267,"Survarium",purchase,1.0,0 -100311267,"Survarium",play,0.4,0 -100311267,"Counter-Strike Nexon Zombies",purchase,1.0,0 -100311267,"Counter-Strike Nexon Zombies",play,0.3,0 -100311267,"Anarchy Arcade",purchase,1.0,0 -100311267,"Anarchy Arcade",play,0.3,0 -100311267,"Dirty Bomb",purchase,1.0,0 -100311267,"Dirty Bomb",play,0.3,0 -100311267,"RACE 07",purchase,1.0,0 -100311267,"RACE 07",play,0.2,0 -100311267,"Fistful of Frags",purchase,1.0,0 -100311267,"Fistful of Frags",play,0.2,0 -100311267,"Afterfall InSanity Extended Edition",purchase,1.0,0 -100311267,"Afterfall InSanity Extended Edition",play,0.2,0 -100311267,"Heroes & Generals",purchase,1.0,0 -100311267,"Heroes & Generals",play,0.2,0 -100311267,"Dino D-Day",purchase,1.0,0 -100311267,"Dino D-Day",play,0.2,0 -100311267,"Dead Island Epidemic",purchase,1.0,0 -100311267,"Dead Island Epidemic",play,0.2,0 -100311267,"Vertiginous Golf",purchase,1.0,0 -100311267,"Vertiginous Golf",play,0.2,0 -100311267,"Defiance",purchase,1.0,0 -100311267,"Defiance",play,0.2,0 -100311267,"Pyramid Raid",purchase,1.0,0 -100311267,"Pyramid Raid",play,0.2,0 -100311267,"PlanetSide 2",purchase,1.0,0 -100311267,"PlanetSide 2",play,0.1,0 -100311267,"Lost Lands A Hidden Object Adventure",purchase,1.0,0 -100311267,"Lost Lands A Hidden Object Adventure",play,0.1,0 -100311267,"Frozen Free Fall Snowball Fight",purchase,1.0,0 -100311267,"Frozen Free Fall Snowball Fight",play,0.1,0 -100311267,"Modular Combat",purchase,1.0,0 -100311267,"Modular Combat",play,0.1,0 -100311267,"Moonbase Alpha",purchase,1.0,0 -100311267,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -100311267,"Dungeons & Dragons Online",purchase,1.0,0 -100311267,"Amnesia The Dark Descent",purchase,1.0,0 -100311267,"Bionic Commando Rearmed",purchase,1.0,0 -100311267,"BioShock Infinite",purchase,1.0,0 -100311267,"Canyon Capers",purchase,1.0,0 -100311267,"Chaos Domain",purchase,1.0,0 -100311267,"Crash Time II",purchase,1.0,0 -100311267,"Deadbreed Undertaker Beta Pack",purchase,1.0,0 -100311267,"Disney Infinity 3.0 Play Without Limits",purchase,1.0,0 -100311267,"East India Company Gold",purchase,1.0,0 -100311267,"Enclave",purchase,1.0,0 -100311267,"Fractured Space",purchase,1.0,0 -100311267,"GTR Evolution",purchase,1.0,0 -100311267,"Gun Monkeys",purchase,1.0,0 -100311267,"H1Z1 Test Server",purchase,1.0,0 -100311267,"Ionball 2 Ionstorm",purchase,1.0,0 -100311267,"Knights and Merchants",purchase,1.0,0 -100311267,"KnightShift",purchase,1.0,0 -100311267,"Marine Sharpshooter II Jungle Warfare",purchase,1.0,0 -100311267,"Pid ",purchase,1.0,0 -100311267,"Pirates of Black Cove Gold",purchase,1.0,0 -100311267,"Realms of the Haunting",purchase,1.0,0 -100311267,"Red Faction Armageddon Soundtrack",purchase,1.0,0 -100311267,"Red Faction II",purchase,1.0,0 -100311267,"resident evil 4 / biohazard 4",purchase,1.0,0 -100311267,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -100311267,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -100311267,"Sanctum",purchase,1.0,0 -100311267,"Space Hack",purchase,1.0,0 -100311267,"Strider",purchase,1.0,0 -100311267,"sZone-Online",purchase,1.0,0 -100311267,"The Culling Of The Cows",purchase,1.0,0 -100311267,"Ultra Street Fighter IV",purchase,1.0,0 -100311267,"Weird Worlds Return to Infinite Space",purchase,1.0,0 -100311267,"XCOM Enemy Unknown",purchase,1.0,0 -258478416,"Transformice",purchase,1.0,0 -258478416,"Transformice",play,5.2,0 -258478416,"Gunscape",purchase,1.0,0 -258478416,"HIS (Heroes In the Sky)",purchase,1.0,0 -40797591,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -40797591,"Counter-Strike Condition Zero Deleted Scenes",play,2.9,0 -40797591,"Counter-Strike Condition Zero",purchase,1.0,0 -40797591,"Counter-Strike Condition Zero",play,1.5,0 -40797591,"Deathmatch Classic",purchase,1.0,0 -40797591,"Deathmatch Classic",play,1.1,0 -40797591,"Day of Defeat",purchase,1.0,0 -40797591,"Day of Defeat",play,0.8,0 -40797591,"Counter-Strike",purchase,1.0,0 -40797591,"Counter-Strike",play,0.2,0 -40797591,"Ricochet",purchase,1.0,0 -23717586,"Battlefield Bad Company 2",purchase,1.0,0 -23717586,"Battlefield Bad Company 2",play,1022.0,0 -23717586,"Max Payne 3",purchase,1.0,0 -23717586,"Max Payne 3",play,246.0,0 -23717586,"The Elder Scrolls V Skyrim",purchase,1.0,0 -23717586,"The Elder Scrolls V Skyrim",play,193.0,0 -23717586,"Grand Theft Auto IV",purchase,1.0,0 -23717586,"Grand Theft Auto IV",play,154.0,0 -23717586,"Fallout New Vegas",purchase,1.0,0 -23717586,"Fallout New Vegas",play,97.0,0 -23717586,"Sid Meier's Civilization V",purchase,1.0,0 -23717586,"Sid Meier's Civilization V",play,89.0,0 -23717586,"Saints Row IV",purchase,1.0,0 -23717586,"Saints Row IV",play,53.0,0 -23717586,"Dishonored",purchase,1.0,0 -23717586,"Dishonored",play,47.0,0 -23717586,"Portal 2",purchase,1.0,0 -23717586,"Portal 2",play,42.0,0 -23717586,"From The Depths",purchase,1.0,0 -23717586,"From The Depths",play,42.0,0 -23717586,"Counter-Strike Source",purchase,1.0,0 -23717586,"Counter-Strike Source",play,41.0,0 -23717586,"Mirror's Edge",purchase,1.0,0 -23717586,"Mirror's Edge",play,36.0,0 -23717586,"Half-Life 2",purchase,1.0,0 -23717586,"Half-Life 2",play,36.0,0 -23717586,"L.A. Noire",purchase,1.0,0 -23717586,"L.A. Noire",play,30.0,0 -23717586,"Saints Row The Third",purchase,1.0,0 -23717586,"Saints Row The Third",play,30.0,0 -23717586,"Sleeping Dogs",purchase,1.0,0 -23717586,"Sleeping Dogs",play,30.0,0 -23717586,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -23717586,"Grand Theft Auto Episodes from Liberty City",play,21.0,0 -23717586,"Max Payne",purchase,1.0,0 -23717586,"Max Payne",play,19.6,0 -23717586,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -23717586,"Call of Duty Black Ops - Multiplayer",play,17.8,0 -23717586,"FTL Faster Than Light",purchase,1.0,0 -23717586,"FTL Faster Than Light",play,14.6,0 -23717586,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -23717586,"Max Payne 2 The Fall of Max Payne",play,11.7,0 -23717586,"Call of Duty Black Ops",purchase,1.0,0 -23717586,"Call of Duty Black Ops",play,11.5,0 -23717586,"Medal of Honor(TM) Single Player",purchase,1.0,0 -23717586,"Medal of Honor(TM) Single Player",play,11.2,0 -23717586,"Shattered Horizon",purchase,1.0,0 -23717586,"Shattered Horizon",play,10.6,0 -23717586,"Half-Life 2 Episode One",purchase,1.0,0 -23717586,"Half-Life 2 Episode One",play,10.3,0 -23717586,"Portal",purchase,1.0,0 -23717586,"Portal",play,10.1,0 -23717586,"Half-Life 2 Episode Two",purchase,1.0,0 -23717586,"Half-Life 2 Episode Two",play,10.0,0 -23717586,"Sniper Elite 3",purchase,1.0,0 -23717586,"Sniper Elite 3",play,9.4,0 -23717586,"Team Fortress 2",purchase,1.0,0 -23717586,"Team Fortress 2",play,9.3,0 -23717586,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -23717586,"Tom Clancy's Splinter Cell Conviction",play,8.3,0 -23717586,"Life Is Strange",purchase,1.0,0 -23717586,"Life Is Strange",play,5.5,0 -23717586,"TIS-100",purchase,1.0,0 -23717586,"TIS-100",play,4.7,0 -23717586,"Universe Sandbox",purchase,1.0,0 -23717586,"Universe Sandbox",play,4.3,0 -23717586,"I Am Alive",purchase,1.0,0 -23717586,"I Am Alive",play,1.9,0 -23717586,"The Stanley Parable",purchase,1.0,0 -23717586,"The Stanley Parable",play,1.9,0 -23717586,"BioShock",purchase,1.0,0 -23717586,"BioShock",play,1.7,0 -23717586,"Deus Ex Game of the Year Edition",purchase,1.0,0 -23717586,"Deus Ex Game of the Year Edition",play,1.2,0 -23717586,"Far Cry 2",purchase,1.0,0 -23717586,"Far Cry 2",play,1.1,0 -23717586,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -23717586,"Medal of Honor(TM) Multiplayer",play,1.0,0 -23717586,"Half-Life 2 Lost Coast",purchase,1.0,0 -23717586,"Half-Life 2 Lost Coast",play,0.9,0 -23717586,"Half-Life 2 Deathmatch",purchase,1.0,0 -23717586,"Half-Life 2 Deathmatch",play,0.9,0 -23717586,"Deus Ex Human Revolution",purchase,1.0,0 -23717586,"Deus Ex Human Revolution",play,0.9,0 -23717586,"Thief Gold",purchase,1.0,0 -23717586,"Thief Gold",play,0.5,0 -23717586,"Democracy 3",purchase,1.0,0 -23717586,"Democracy 3",play,0.4,0 -23717586,"Cities Skylines",purchase,1.0,0 -23717586,"Cities Skylines",play,0.3,0 -23717586,"Antichamber",purchase,1.0,0 -23717586,"Antichamber",play,0.3,0 -23717586,"Shattered Horizon Arconauts",purchase,1.0,0 -23717586,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -23717586,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -23717586,"BioShock 2",purchase,1.0,0 -23717586,"Crysis",purchase,1.0,0 -23717586,"Crysis 2 Maximum Edition",purchase,1.0,0 -23717586,"Crysis Warhead",purchase,1.0,0 -23717586,"Crysis Wars",purchase,1.0,0 -23717586,"Democracy 3 Clones and Drones",purchase,1.0,0 -23717586,"Democracy 3 Extremism",purchase,1.0,0 -23717586,"Democracy 3 Extremism Linux",purchase,1.0,0 -23717586,"Democracy 3 Extremism Mac",purchase,1.0,0 -23717586,"Democracy 3 Social Engineering",purchase,1.0,0 -23717586,"Democracy 3 Social Engineering Linux",purchase,1.0,0 -23717586,"Democracy 3 Social Engineering Mac",purchase,1.0,0 -23717586,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -23717586,"Deus Ex Invisible War",purchase,1.0,0 -23717586,"Fallout New Vegas Dead Money",purchase,1.0,0 -23717586,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -23717586,"Far Cry",purchase,1.0,0 -23717586,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -23717586,"Half-Life",purchase,1.0,0 -23717586,"Half-Life Blue Shift",purchase,1.0,0 -23717586,"Half-Life Opposing Force",purchase,1.0,0 -23717586,"Kerbal Space Program",purchase,1.0,0 -23717586,"Medal of Honor Pre-Order",purchase,1.0,0 -23717586,"Psychonauts",purchase,1.0,0 -23717586,"Psychonauts Demo",purchase,1.0,0 -23717586,"Team Fortress Classic",purchase,1.0,0 -23717586,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -23717586,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -23717586,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -23717586,"Thief 2",purchase,1.0,0 -23717586,"Thief Deadly Shadows",purchase,1.0,0 -301299641,"Fallout 4",purchase,1.0,0 -301299641,"Fallout 4",play,14.2,0 -189792144,"Unturned",purchase,1.0,0 -189792144,"Unturned",play,1.7,0 -189792144,"Ubersoldier II",purchase,1.0,0 -189792144,"Ubersoldier II",play,0.2,0 -189792144,"Robocraft",purchase,1.0,0 -189424582,"Dota 2",purchase,1.0,0 -189424582,"Dota 2",play,272.0,0 -189424582,"Cry of Fear",purchase,1.0,0 -189424582,"Free to Play",purchase,1.0,0 -189424582,"GunZ 2 The Second Duel",purchase,1.0,0 -189424582,"HAWKEN",purchase,1.0,0 -189424582,"Warframe",purchase,1.0,0 -189424582,"War Thunder",purchase,1.0,0 -66463490,"Alien Swarm",purchase,1.0,0 -66463490,"Alien Swarm",play,0.4,0 -302387415,"Dota 2",purchase,1.0,0 -302387415,"Dota 2",play,0.6,0 -302387415,"Dirty Bomb",purchase,1.0,0 -302387415,"Dirty Bomb",play,0.6,0 -111575581,"Dota 2",purchase,1.0,0 -111575581,"Dota 2",play,23.0,0 -304294579,"F1 2015",purchase,1.0,0 -254250501,"METAL SLUG DEFENSE",purchase,1.0,0 -254250501,"METAL SLUG DEFENSE",play,0.8,0 -177050329,"Dota 2",purchase,1.0,0 -177050329,"Dota 2",play,1497.0,0 -177050329,"AdVenture Capitalist",purchase,1.0,0 -177050329,"Archeblade",purchase,1.0,0 -177050329,"Defiance",purchase,1.0,0 -177050329,"Dwarfs F2P",purchase,1.0,0 -177050329,"Narcissu 1st & 2nd",purchase,1.0,0 -177050329,"Neverwinter",purchase,1.0,0 -177050329,"Nosgoth",purchase,1.0,0 -177050329,"Quake Live",purchase,1.0,0 -177050329,"Rising Angels Reborn",purchase,1.0,0 -177050329,"Spartans Vs Zombies Defense",purchase,1.0,0 -177050329,"theHunter",purchase,1.0,0 -177050329,"Unturned",purchase,1.0,0 -177050329,"War Thunder",purchase,1.0,0 -142794497,"Dota 2",purchase,1.0,0 -142794497,"Dota 2",play,1.8,0 -202595220,"Choplifter HD",purchase,1.0,0 -101552080,"Football Manager 2012",purchase,1.0,0 -101552080,"Football Manager 2012",play,190.0,0 -101552080,"Pro Cycling Manager 2013",purchase,1.0,0 -101552080,"Pro Cycling Manager 2013",play,48.0,0 -101552080,"Counter-Strike Global Offensive",purchase,1.0,0 -101552080,"Counter-Strike Global Offensive",play,3.4,0 -9811609,"Counter-Strike",purchase,1.0,0 -9811609,"Day of Defeat",purchase,1.0,0 -9811609,"Deathmatch Classic",purchase,1.0,0 -9811609,"Half-Life",purchase,1.0,0 -9811609,"Half-Life Blue Shift",purchase,1.0,0 -9811609,"Half-Life Opposing Force",purchase,1.0,0 -9811609,"Ricochet",purchase,1.0,0 -9811609,"Team Fortress Classic",purchase,1.0,0 -35442153,"Race The WTCC Game",purchase,1.0,0 -35442153,"Race The WTCC Game",play,0.4,0 -284769694,"Dota 2",purchase,1.0,0 -284769694,"Dota 2",play,5.0,0 -195105284,"Team Fortress 2",purchase,1.0,0 -195105284,"Team Fortress 2",play,315.0,0 -195105284,"Left 4 Dead 2",purchase,1.0,0 -195105284,"Left 4 Dead 2",play,266.0,0 -195105284,"SpeedRunners",purchase,1.0,0 -195105284,"SpeedRunners",play,64.0,0 -195105284,"Left 4 Dead",purchase,1.0,0 -195105284,"Left 4 Dead",play,15.9,0 -195105284,"Half-Life 2",purchase,1.0,0 -195105284,"Half-Life 2",play,9.4,0 -195105284,"Garry's Mod",purchase,1.0,0 -195105284,"Garry's Mod",play,7.3,0 -195105284,"Cosmophony",purchase,1.0,0 -195105284,"Cosmophony",play,3.5,0 -195105284,"Unturned",purchase,1.0,0 -195105284,"Unturned",play,1.2,0 -195105284,"Chivalry Medieval Warfare",purchase,1.0,0 -195105284,"Chivalry Medieval Warfare",play,0.9,0 -195105284,"Amnesia The Dark Descent",purchase,1.0,0 -195105284,"Amnesia The Dark Descent",play,0.9,0 -195105284,"Mitos.is The Game",purchase,1.0,0 -195105284,"Mitos.is The Game",play,0.4,0 -195105284,"Arma 2 Free",purchase,1.0,0 -195105284,"Arma 2 Free",play,0.3,0 -195105284,"Nosgoth",purchase,1.0,0 -195105284,"Age of Empires II HD Edition",purchase,1.0,0 -195105284,"BioShock",purchase,1.0,0 -195105284,"BioShock 2",purchase,1.0,0 -195105284,"BioShock Infinite",purchase,1.0,0 -195105284,"Brawlhalla",purchase,1.0,0 -195105284,"Counter-Strike Global Offensive",purchase,1.0,0 -195105284,"Deadbreed",purchase,1.0,0 -195105284,"Dirty Bomb",purchase,1.0,0 -195105284,"Half-Life 2 Deathmatch",purchase,1.0,0 -195105284,"Half-Life 2 Episode One",purchase,1.0,0 -195105284,"Half-Life 2 Episode Two",purchase,1.0,0 -195105284,"Half-Life 2 Lost Coast",purchase,1.0,0 -195105284,"Half-Life Deathmatch Source",purchase,1.0,0 -195105284,"Patch testing for Chivalry",purchase,1.0,0 -195105284,"Zombies Monsters Robots",purchase,1.0,0 -300177729,"Strife",purchase,1.0,0 -300177729,"Strife",play,2.7,0 -172470005,"Counter-Strike Global Offensive",purchase,1.0,0 -172470005,"Counter-Strike Global Offensive",play,59.0,0 -172470005,"Dota 2",purchase,1.0,0 -172470005,"Dota 2",play,43.0,0 -172470005,"The Elder Scrolls V Skyrim",purchase,1.0,0 -172470005,"The Elder Scrolls V Skyrim",play,12.2,0 -172470005,"Tomb Raider",purchase,1.0,0 -172470005,"Tomb Raider",play,7.2,0 -172470005,"Dead Island Riptide",purchase,1.0,0 -172470005,"Dead Island Riptide",play,6.7,0 -172470005,"Counter-Strike",purchase,1.0,0 -172470005,"Counter-Strike",play,3.6,0 -172470005,"The Expendabros",purchase,1.0,0 -172470005,"The Expendabros",play,2.7,0 -172470005,"Unturned",purchase,1.0,0 -172470005,"Unturned",play,0.8,0 -172470005,"Fallout 3",purchase,1.0,0 -172470005,"Fallout 3",play,0.8,0 -172470005,"Amnesia The Dark Descent",purchase,1.0,0 -172470005,"Counter-Strike Condition Zero",purchase,1.0,0 -172470005,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -172470005,"Counter-Strike Source",purchase,1.0,0 -172470005,"Dead Island",purchase,1.0,0 -172470005,"Dead Island Epidemic",purchase,1.0,0 -172470005,"E.Y.E Divine Cybermancy",purchase,1.0,0 -172470005,"FreeStyle2 Street Basketball",purchase,1.0,0 -172470005,"Nosgoth",purchase,1.0,0 -172470005,"PAYDAY The Heist",purchase,1.0,0 -172470005,"Robocraft",purchase,1.0,0 -172470005,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -172470005,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -172470005,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -193792189,"Team Fortress 2",purchase,1.0,0 -193792189,"Team Fortress 2",play,5.0,0 -193792189,"Realm of the Mad God",purchase,1.0,0 -193792189,"Realm of the Mad God",play,1.9,0 -193792189,"Cubic Castles",purchase,1.0,0 -193792189,"Cubic Castles",play,0.8,0 -47672756,"Half-Life 2",purchase,1.0,0 -47672756,"Half-Life 2",play,18.9,0 -47672756,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -47672756,"S.T.A.L.K.E.R. Call of Pripyat",play,18.7,0 -47672756,"Team Fortress 2",purchase,1.0,0 -47672756,"Team Fortress 2",play,14.1,0 -47672756,"Grand Theft Auto III",purchase,1.0,0 -47672756,"Grand Theft Auto III",play,13.1,0 -47672756,"Call of Duty Modern Warfare 2",purchase,1.0,0 -47672756,"Call of Duty Modern Warfare 2",play,12.7,0 -47672756,"Half-Life 2 Episode Two",purchase,1.0,0 -47672756,"Half-Life 2 Episode Two",play,8.5,0 -47672756,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -47672756,"Call of Duty Modern Warfare 2 - Multiplayer",play,8.3,0 -47672756,"Half-Life 2 Episode One",purchase,1.0,0 -47672756,"Half-Life 2 Episode One",play,5.8,0 -47672756,"Portal",purchase,1.0,0 -47672756,"Portal",play,4.5,0 -47672756,"Sid Meier's Civilization V",purchase,1.0,0 -47672756,"Sid Meier's Civilization V",play,4.4,0 -47672756,"The Long Dark",purchase,1.0,0 -47672756,"The Long Dark",play,2.3,0 -47672756,"Alien Swarm",purchase,1.0,0 -47672756,"Alien Swarm",play,1.6,0 -47672756,"Grand Theft Auto San Andreas",purchase,1.0,0 -47672756,"Grand Theft Auto San Andreas",play,1.3,0 -47672756,"Grand Theft Auto Vice City",purchase,1.0,0 -47672756,"Grand Theft Auto Vice City",play,1.2,0 -47672756,"Deadly Premonition The Director's Cut",purchase,1.0,0 -47672756,"Deadly Premonition The Director's Cut",play,0.6,0 -47672756,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -47672756,"Vampire The Masquerade - Bloodlines",play,0.6,0 -47672756,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -47672756,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,0.3,0 -47672756,"Dear Esther",purchase,1.0,0 -47672756,"Dear Esther",play,0.2,0 -47672756,"Max Payne",purchase,1.0,0 -47672756,"Max Payne",play,0.1,0 -47672756,"Commandos 3 Destination Berlin",purchase,1.0,0 -47672756,"Doc Clock The Toasted Sandwich of Time",purchase,1.0,0 -47672756,"Grand Theft Auto San Andreas",purchase,1.0,0 -47672756,"Grand Theft Auto Vice City",purchase,1.0,0 -47672756,"Grand Theft Auto III",purchase,1.0,0 -47672756,"Half-Life 2 Lost Coast",purchase,1.0,0 -47672756,"Star Wolves 3 Civil War",purchase,1.0,0 -47672756,"Syberia",purchase,1.0,0 -47672756,"Syberia 2",purchase,1.0,0 -47672756,"System Shock 2",purchase,1.0,0 -261373664,"Loadout",purchase,1.0,0 -261373664,"Loadout",play,0.9,0 -111142411,"The Binding of Isaac",purchase,1.0,0 -111142411,"The Binding of Isaac",play,104.0,0 -181156459,"Dota 2",purchase,1.0,0 -181156459,"Dota 2",play,190.0,0 -293197798,"Tomb Raider",purchase,1.0,0 -246453577,"Unturned",purchase,1.0,0 -246453577,"Unturned",play,1.8,0 -77310637,"Tropico 5",purchase,1.0,0 -77310637,"Tropico 5",play,18.9,0 -77310637,"Secret of the Magic Crystal",purchase,1.0,0 -77310637,"Secret of the Magic Crystal",play,4.6,0 -77310637,"Dangerous High School Girls in Trouble!",purchase,1.0,0 -77310637,"Dangerous High School Girls in Trouble!",play,0.5,0 -152934929,"Dota 2",purchase,1.0,0 -152934929,"Dota 2",play,18.7,0 -141773234,"Dota 2",purchase,1.0,0 -141773234,"Dota 2",play,1944.0,0 -141773234,"FreeStyle2 Street Basketball",purchase,1.0,0 -141773234,"FreeStyle2 Street Basketball",play,13.4,0 -141773234,"Aura Kingdom",purchase,1.0,0 -141773234,"Aura Kingdom",play,7.3,0 -141773234,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -141773234,"Tom Clancy's Ghost Recon Phantoms - NA",play,6.8,0 -141773234,"Team Fortress 2",purchase,1.0,0 -141773234,"Team Fortress 2",play,1.5,0 -141773234,"C9",purchase,1.0,0 -141773234,"C9",play,0.1,0 -141773234,"BEEP",purchase,1.0,0 -141773234,"Blender 2.76b",purchase,1.0,0 -141773234,"Aura Kingdom - Winter Gift",purchase,1.0,0 -250436709,"CrimeCraft GangWars",purchase,1.0,0 -250436709,"CrimeCraft GangWars",play,2.6,0 -250436709,"Blacklight Retribution",purchase,1.0,0 -250436709,"Warface",purchase,1.0,0 -183531966,"Dota 2",purchase,1.0,0 -183531966,"Dota 2",play,77.0,0 -115008799,"Counter-Strike",purchase,1.0,0 -115008799,"Counter-Strike",play,1176.0,0 -115008799,"Counter-Strike Global Offensive",purchase,1.0,0 -115008799,"Counter-Strike Global Offensive",play,352.0,0 -115008799,"H1Z1",purchase,1.0,0 -115008799,"H1Z1",play,42.0,0 -115008799,"Infestation Survivor Stories",purchase,1.0,0 -115008799,"Infestation Survivor Stories",play,21.0,0 -115008799,"Dota 2",purchase,1.0,0 -115008799,"Dota 2",play,10.3,0 -115008799,"Grand Theft Auto V",purchase,1.0,0 -115008799,"Grand Theft Auto V",play,6.9,0 -115008799,"Counter-Strike Condition Zero",purchase,1.0,0 -115008799,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -115008799,"H1Z1 Test Server",purchase,1.0,0 -164865114,"Dota 2",purchase,1.0,0 -164865114,"Dota 2",play,17.0,0 -145840451,"Dota 2",purchase,1.0,0 -145840451,"Dota 2",play,113.0,0 -152485214,"Dota 2",purchase,1.0,0 -152485214,"Dota 2",play,0.1,0 -294757149,"Fuse",purchase,1.0,0 -294757149,"Fuse",play,0.4,0 -301910202,"Dota 2",purchase,1.0,0 -301910202,"Dota 2",play,2.0,0 -39990790,"Counter-Strike Condition Zero",purchase,1.0,0 -39990790,"Counter-Strike Condition Zero",play,4.3,0 -39990790,"Counter-Strike",purchase,1.0,0 -39990790,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -163360656,"Dota 2",purchase,1.0,0 -163360656,"Dota 2",play,0.3,0 -300187809,"Brawlhalla",purchase,1.0,0 -300187809,"Brawlhalla",play,0.8,0 -141950398,"Dota 2",purchase,1.0,0 -141950398,"Dota 2",play,1316.0,0 -141950398,"Team Fortress 2",purchase,1.0,0 -141950398,"Team Fortress 2",play,4.8,0 -141950398,"Trove",purchase,1.0,0 -141950398,"Age of Wushu",purchase,1.0,0 -141950398,"FreeStyle2 Street Basketball",purchase,1.0,0 -141950398,"GunZ 2 The Second Duel",purchase,1.0,0 -141950398,"Left 4 Dead 2",purchase,1.0,0 -91736333,"Garry's Mod",purchase,1.0,0 -91736333,"Garry's Mod",play,16.6,0 -91736333,"No More Room in Hell",purchase,1.0,0 -91736333,"No More Room in Hell",play,10.0,0 -91736333,"Blacklight Retribution",purchase,1.0,0 -91736333,"Gear Up",purchase,1.0,0 -91736333,"Rise of Incarnates",purchase,1.0,0 -91736333,"Warframe",purchase,1.0,0 -166927601,"Dota 2",purchase,1.0,0 -166927601,"Dota 2",play,429.0,0 -166927601,"Bloodline Champions",purchase,1.0,0 -166927601,"Bloodline Champions",play,47.0,0 -166927601,"The Mighty Quest For Epic Loot",purchase,1.0,0 -166927601,"The Mighty Quest For Epic Loot",play,38.0,0 -166927601,"Robocraft",purchase,1.0,0 -166927601,"Robocraft",play,6.4,0 -166927601,"Magicka Wizard Wars",purchase,1.0,0 -166927601,"Magicka Wizard Wars",play,5.5,0 -166927601,"Mortal Online",purchase,1.0,0 -166927601,"Mortal Online",play,5.4,0 -166927601,"The Lord of the Rings Online",purchase,1.0,0 -166927601,"The Lord of the Rings Online",play,0.8,0 -166927601,"Trove",purchase,1.0,0 -166927601,"Trove",play,0.7,0 -166927601,"Immortal Empire",purchase,1.0,0 -166927601,"Immortal Empire",play,0.6,0 -166927601,"Magic Duels",purchase,1.0,0 -166927601,"Magic Duels",play,0.5,0 -166927601,"Toribash",purchase,1.0,0 -166927601,"Toribash",play,0.3,0 -166927601,"RPG MO",purchase,1.0,0 -166927601,"RPG MO",play,0.2,0 -166927601,"Survarium",purchase,1.0,0 -166927601,"Survarium",play,0.1,0 -166927601,"DiggerOnline",purchase,1.0,0 -166927601,"Fractured Space",purchase,1.0,0 -166927601,"8BitMMO",purchase,1.0,0 -166927601,"Archeblade",purchase,1.0,0 -166927601,"Dwarfs F2P",purchase,1.0,0 -166927601,"Global Agenda",purchase,1.0,0 -166927601,"Magic Barrage - Bitferno",purchase,1.0,0 -166927601,"Might & Magic Heroes Online",purchase,1.0,0 -166927601,"Nosgoth",purchase,1.0,0 -166927601,"Spiral Knights",purchase,1.0,0 -166927601,"Star Conflict",purchase,1.0,0 -166927601,"Transformice",purchase,1.0,0 -189526724,"Robocraft",purchase,1.0,0 -73835640,"Warframe",purchase,1.0,0 -73835640,"Warframe",play,916.0,0 -73835640,"Path of Exile",purchase,1.0,0 -73835640,"Path of Exile",play,301.0,0 -73835640,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -73835640,"Call of Duty Modern Warfare 3 - Multiplayer",play,118.0,0 -73835640,"The Elder Scrolls V Skyrim",purchase,1.0,0 -73835640,"The Elder Scrolls V Skyrim",play,110.0,0 -73835640,"Age of Empires Online",purchase,1.0,0 -73835640,"Age of Empires Online",play,101.0,0 -73835640,"RIFT",purchase,1.0,0 -73835640,"RIFT",play,77.0,0 -73835640,"Marvel Heroes 2015",purchase,1.0,0 -73835640,"Marvel Heroes 2015",play,42.0,0 -73835640,"Dishonored",purchase,1.0,0 -73835640,"Dishonored",play,41.0,0 -73835640,"Borderlands 2",purchase,1.0,0 -73835640,"Borderlands 2",play,38.0,0 -73835640,"Grim Dawn",purchase,1.0,0 -73835640,"Grim Dawn",play,32.0,0 -73835640,"Torchlight II",purchase,1.0,0 -73835640,"Torchlight II",play,30.0,0 -73835640,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -73835640,"Baldur's Gate Enhanced Edition",play,28.0,0 -73835640,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -73835640,"Deus Ex Human Revolution - Director's Cut",play,28.0,0 -73835640,"Fable III",purchase,1.0,0 -73835640,"Fable III",play,25.0,0 -73835640,"LEGO The Lord of the Rings",purchase,1.0,0 -73835640,"LEGO The Lord of the Rings",play,23.0,0 -73835640,"Saints Row IV",purchase,1.0,0 -73835640,"Saints Row IV",play,22.0,0 -73835640,"Trine 2",purchase,1.0,0 -73835640,"Trine 2",play,19.5,0 -73835640,"Dota 2",purchase,1.0,0 -73835640,"Dota 2",play,16.7,0 -73835640,"Driver San Francisco",purchase,1.0,0 -73835640,"Driver San Francisco",play,16.2,0 -73835640,"Hitman Absolution",purchase,1.0,0 -73835640,"Hitman Absolution",play,16.0,0 -73835640,"Euro Truck Simulator 2",purchase,1.0,0 -73835640,"Euro Truck Simulator 2",play,15.4,0 -73835640,"Unepic",purchase,1.0,0 -73835640,"Unepic",play,15.3,0 -73835640,"Devilian",purchase,1.0,0 -73835640,"Devilian",play,14.2,0 -73835640,"Sid Meier's Civilization V",purchase,1.0,0 -73835640,"Sid Meier's Civilization V",play,14.1,0 -73835640,"Bastion",purchase,1.0,0 -73835640,"Bastion",play,14.1,0 -73835640,"Orcs Must Die!",purchase,1.0,0 -73835640,"Orcs Must Die!",play,13.9,0 -73835640,"XCOM Enemy Unknown",purchase,1.0,0 -73835640,"XCOM Enemy Unknown",play,13.5,0 -73835640,"Medieval II Total War Kingdoms",purchase,1.0,0 -73835640,"Medieval II Total War Kingdoms",play,12.6,0 -73835640,"Tomb Raider",purchase,1.0,0 -73835640,"Tomb Raider",play,12.4,0 -73835640,"Call of Duty Modern Warfare 3",purchase,1.0,0 -73835640,"Call of Duty Modern Warfare 3",play,11.8,0 -73835640,"Child of Light",purchase,1.0,0 -73835640,"Child of Light",play,11.7,0 -73835640,"Orcs Must Die! 2",purchase,1.0,0 -73835640,"Orcs Must Die! 2",play,11.7,0 -73835640,"Scribblenauts Unlimited",purchase,1.0,0 -73835640,"Scribblenauts Unlimited",play,11.5,0 -73835640,"The Walking Dead",purchase,1.0,0 -73835640,"The Walking Dead",play,11.3,0 -73835640,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -73835640,"The Incredible Adventures of Van Helsing",play,11.2,0 -73835640,"Portal 2",purchase,1.0,0 -73835640,"Portal 2",play,10.9,0 -73835640,"Dungeon Siege III",purchase,1.0,0 -73835640,"Dungeon Siege III",play,10.8,0 -73835640,"BioShock Infinite",purchase,1.0,0 -73835640,"BioShock Infinite",play,10.7,0 -73835640,"Need for Speed Hot Pursuit",purchase,1.0,0 -73835640,"Need for Speed Hot Pursuit",play,10.4,0 -73835640,"Call of Juarez Gunslinger",purchase,1.0,0 -73835640,"Call of Juarez Gunslinger",play,10.2,0 -73835640,"F1 2012",purchase,1.0,0 -73835640,"F1 2012",play,10.2,0 -73835640,"System Shock 2",purchase,1.0,0 -73835640,"System Shock 2",play,10.1,0 -73835640,"Age of Empires II HD Edition",purchase,1.0,0 -73835640,"Age of Empires II HD Edition",play,10.0,0 -73835640,"Apotheon",purchase,1.0,0 -73835640,"Apotheon",play,9.9,0 -73835640,"The Binding of Isaac",purchase,1.0,0 -73835640,"The Binding of Isaac",play,9.6,0 -73835640,"Mars War Logs",purchase,1.0,0 -73835640,"Mars War Logs",play,9.3,0 -73835640,"Hammerwatch",purchase,1.0,0 -73835640,"Hammerwatch",play,9.3,0 -73835640,"Legend of Grimrock",purchase,1.0,0 -73835640,"Legend of Grimrock",play,9.1,0 -73835640,"Shadowrun Returns",purchase,1.0,0 -73835640,"Shadowrun Returns",play,8.8,0 -73835640,"BioShock",purchase,1.0,0 -73835640,"BioShock",play,8.2,0 -73835640,"Prince of Persia Warrior Within",purchase,1.0,0 -73835640,"Prince of Persia Warrior Within",play,8.2,0 -73835640,"Castle Crashers",purchase,1.0,0 -73835640,"Castle Crashers",play,7.7,0 -73835640,"The Baconing",purchase,1.0,0 -73835640,"The Baconing",play,7.3,0 -73835640,"Prince of Persia The Sands of Time",purchase,1.0,0 -73835640,"Prince of Persia The Sands of Time",play,7.2,0 -73835640,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -73835640,"Dark Messiah of Might & Magic Single Player",play,7.0,0 -73835640,"The Treasures of Montezuma 4",purchase,1.0,0 -73835640,"The Treasures of Montezuma 4",play,7.0,0 -73835640,"Space Pirates and Zombies",purchase,1.0,0 -73835640,"Space Pirates and Zombies",play,7.0,0 -73835640,"BioShock 2",purchase,1.0,0 -73835640,"BioShock 2",play,6.9,0 -73835640,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -73835640,"Tom Clancy's Splinter Cell Blacklist",play,6.8,0 -73835640,"The Mighty Quest For Epic Loot",purchase,1.0,0 -73835640,"The Mighty Quest For Epic Loot",play,6.6,0 -73835640,"Stealth Bastard Deluxe",purchase,1.0,0 -73835640,"Stealth Bastard Deluxe",play,6.6,0 -73835640,"Sacred Citadel",purchase,1.0,0 -73835640,"Sacred Citadel",play,6.4,0 -73835640,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",purchase,1.0,0 -73835640,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",play,6.4,0 -73835640,"The Banner Saga",purchase,1.0,0 -73835640,"The Banner Saga",play,6.1,0 -73835640,"12 Labours of Hercules",purchase,1.0,0 -73835640,"12 Labours of Hercules",play,6.0,0 -73835640,"Don't Starve",purchase,1.0,0 -73835640,"Don't Starve",play,6.0,0 -73835640,"The Incredible Adventures of Van Helsing II",purchase,1.0,0 -73835640,"The Incredible Adventures of Van Helsing II",play,5.7,0 -73835640,"SMITE",purchase,1.0,0 -73835640,"SMITE",play,5.7,0 -73835640,"PAYDAY The Heist",purchase,1.0,0 -73835640,"PAYDAY The Heist",play,5.6,0 -73835640,"12 Labours of Hercules II The Cretan Bull",purchase,1.0,0 -73835640,"12 Labours of Hercules II The Cretan Bull",play,5.4,0 -73835640,"Outland",purchase,1.0,0 -73835640,"Outland",play,5.4,0 -73835640,"Trine",purchase,1.0,0 -73835640,"Trine",play,5.1,0 -73835640,"Sacred 2 Gold",purchase,1.0,0 -73835640,"Sacred 2 Gold",play,4.8,0 -73835640,"Cthulhu Saves the World ",purchase,1.0,0 -73835640,"Cthulhu Saves the World ",play,4.7,0 -73835640,"Need for Speed SHIFT",purchase,1.0,0 -73835640,"Need for Speed SHIFT",play,4.6,0 -73835640,"12 Labours of Hercules III Girl Power",purchase,1.0,0 -73835640,"12 Labours of Hercules III Girl Power",play,4.4,0 -73835640,"Insanely Twisted Shadow Planet",purchase,1.0,0 -73835640,"Insanely Twisted Shadow Planet",play,4.3,0 -73835640,"Anomaly Warzone Earth",purchase,1.0,0 -73835640,"Anomaly Warzone Earth",play,4.1,0 -73835640,"Toki Tori",purchase,1.0,0 -73835640,"Toki Tori",play,3.8,0 -73835640,"The Swapper",purchase,1.0,0 -73835640,"The Swapper",play,3.2,0 -73835640,"Hero of the Kingdom",purchase,1.0,0 -73835640,"Hero of the Kingdom",play,3.1,0 -73835640,"Age of Empires III Complete Collection",purchase,1.0,0 -73835640,"Age of Empires III Complete Collection",play,3.1,0 -73835640,"Kyn",purchase,1.0,0 -73835640,"Kyn",play,3.0,0 -73835640,"Prison Architect",purchase,1.0,0 -73835640,"Prison Architect",play,2.8,0 -73835640,"Burn Zombie Burn",purchase,1.0,0 -73835640,"Burn Zombie Burn",play,2.7,0 -73835640,"Cook, Serve, Delicious!",purchase,1.0,0 -73835640,"Cook, Serve, Delicious!",play,2.7,0 -73835640,"All Zombies Must Die!",purchase,1.0,0 -73835640,"All Zombies Must Die!",play,2.6,0 -73835640,"Lara Croft and the Guardian of Light",purchase,1.0,0 -73835640,"Lara Croft and the Guardian of Light",play,2.5,0 -73835640,"EDGE",purchase,1.0,0 -73835640,"EDGE",play,2.4,0 -73835640,"Trials Evolution Gold Edition",purchase,1.0,0 -73835640,"Trials Evolution Gold Edition",play,2.4,0 -73835640,"Beware Planet Earth",purchase,1.0,0 -73835640,"Beware Planet Earth",play,2.2,0 -73835640,"The Marvellous Miss Take",purchase,1.0,0 -73835640,"The Marvellous Miss Take",play,2.1,0 -73835640,"Reus",purchase,1.0,0 -73835640,"Reus",play,2.0,0 -73835640,"Evoland",purchase,1.0,0 -73835640,"Evoland",play,1.9,0 -73835640,"Far Cry 3 Blood Dragon",purchase,1.0,0 -73835640,"Far Cry 3 Blood Dragon",play,1.9,0 -73835640,"Grow Home",purchase,1.0,0 -73835640,"Grow Home",play,1.8,0 -73835640,"Toki Tori 2+",purchase,1.0,0 -73835640,"Toki Tori 2+",play,1.6,0 -73835640,"Thief Gold",purchase,1.0,0 -73835640,"Thief Gold",play,1.3,0 -73835640,"Terraria",purchase,1.0,0 -73835640,"Terraria",play,1.2,0 -73835640,"DLC Quest",purchase,1.0,0 -73835640,"DLC Quest",play,1.0,0 -73835640,"Stealth Inc 2",purchase,1.0,0 -73835640,"Stealth Inc 2",play,0.5,0 -73835640,"Blocks That Matter",purchase,1.0,0 -73835640,"Blocks That Matter",play,0.4,0 -73835640,"Lone Survivor The Director's Cut",purchase,1.0,0 -73835640,"Lone Survivor The Director's Cut",play,0.3,0 -73835640,"Dungeon Defenders",purchase,1.0,0 -73835640,"Dungeon Defenders",play,0.2,0 -73835640,"Dungeon Siege",purchase,1.0,0 -73835640,"Dungeon Siege",play,0.1,0 -73835640,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -73835640,"Risen",purchase,1.0,0 -73835640,"Aarklash Legacy",purchase,1.0,0 -73835640,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",purchase,1.0,0 -73835640,"Age of Empires II HD The Forgotten",purchase,1.0,0 -73835640,"Age of Mythology Extended Edition",purchase,1.0,0 -73835640,"Anno 2070",purchase,1.0,0 -73835640,"Anomaly 2",purchase,1.0,0 -73835640,"Anomaly 2 Soundtrack",purchase,1.0,0 -73835640,"Anomaly Defenders",purchase,1.0,0 -73835640,"Anomaly Korea",purchase,1.0,0 -73835640,"Anomaly Warzone Earth Mobile Campaign",purchase,1.0,0 -73835640,"AZMD! Scorepocalypse ",purchase,1.0,0 -73835640,"Baldur's Gate II Enhanced Edition",purchase,1.0,0 -73835640,"BattleBlock Theater",purchase,1.0,0 -73835640,"Beyond Divinity",purchase,1.0,0 -73835640,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -73835640,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -73835640,"Breath of Death VII ",purchase,1.0,0 -73835640,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -73835640,"Castle Crashers - Blacksmith Pack",purchase,1.0,0 -73835640,"Castle Crashers - Pink Knight Pack",purchase,1.0,0 -73835640,"Cave Story+",purchase,1.0,0 -73835640,"Cloudbuilt",purchase,1.0,0 -73835640,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -73835640,"DeadCore",purchase,1.0,0 -73835640,"Dead Island",purchase,1.0,0 -73835640,"Deadly Premonition The Director's Cut",purchase,1.0,0 -73835640,"Deus Ex Game of the Year Edition",purchase,1.0,0 -73835640,"DiRT 3",purchase,1.0,0 -73835640,"DiRT 3 Complete Edition",purchase,1.0,0 -73835640,"Divine Divinity",purchase,1.0,0 -73835640,"Divinity II Developer's Cut",purchase,1.0,0 -73835640,"Don't Starve Together Beta",purchase,1.0,0 -73835640,"Door Kickers",purchase,1.0,0 -73835640,"DuckTales Remastered",purchase,1.0,0 -73835640,"Dungeon Siege 2",purchase,1.0,0 -73835640,"ENSLAVED Odyssey to the West Premium Edition",purchase,1.0,0 -73835640,"Ether One",purchase,1.0,0 -73835640,"Ether One Redux",purchase,1.0,0 -73835640,"Fight The Dragon",purchase,1.0,0 -73835640,"FTL Faster Than Light",purchase,1.0,0 -73835640,"GRID 2",purchase,1.0,0 -73835640,"Hero Siege",purchase,1.0,0 -73835640,"Homeworld Remastered Collection",purchase,1.0,0 -73835640,"Icewind Dale Enhanced Edition",purchase,1.0,0 -73835640,"King Arthur's Gold",purchase,1.0,0 -73835640,"Kingdom Rush",purchase,1.0,0 -73835640,"Kromaia",purchase,1.0,0 -73835640,"LEGO Pirates of the Caribbean The Video Game",purchase,1.0,0 -73835640,"LEGO The Hobbit",purchase,1.0,0 -73835640,"Medieval II Total War",purchase,1.0,0 -73835640,"Metro 2033",purchase,1.0,0 -73835640,"Need for Speed Undercover",purchase,1.0,0 -73835640,"One Finger Death Punch",purchase,1.0,0 -73835640,"PAC-MAN Championship Edition DX+",purchase,1.0,0 -73835640,"PAYDAY 2",purchase,1.0,0 -73835640,"PAYDAY Wolf Pack",purchase,1.0,0 -73835640,"Platformines",purchase,1.0,0 -73835640,"Prince of Persia",purchase,1.0,0 -73835640,"Prince of Persia The Forgotten Sands",purchase,1.0,0 -73835640,"Prince of Persia The Two Thrones",purchase,1.0,0 -73835640,"Ridge Racer Unbounded",purchase,1.0,0 -73835640,"Risen 2 - Dark Waters",purchase,1.0,0 -73835640,"Rise of Nations Extended Edition",purchase,1.0,0 -73835640,"Saints Row 2",purchase,1.0,0 -73835640,"Saints Row The Third",purchase,1.0,0 -73835640,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -73835640,"Shadow Warrior",purchase,1.0,0 -73835640,"Shift 2 Unleashed",purchase,1.0,0 -73835640,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -73835640,"Test Drive Unlimited 2",purchase,1.0,0 -73835640,"The Banner Saga - Mod Content",purchase,1.0,0 -73835640,"The Fall",purchase,1.0,0 -73835640,"The LEGO Movie - Videogame",purchase,1.0,0 -73835640,"Thief 2",purchase,1.0,0 -73835640,"Transistor",purchase,1.0,0 -73835640,"Trials Fusion",purchase,1.0,0 -73835640,"Tulpa",purchase,1.0,0 -73835640,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -73835640,"Vertical Drop Heroes HD",purchase,1.0,0 -73835640,"Vertiginous Golf",purchase,1.0,0 -73835640,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -73835640,"Waking Mars",purchase,1.0,0 -197861486,"LEGO MARVEL Super Heroes",purchase,1.0,0 -197861486,"LEGO MARVEL Super Heroes",play,27.0,0 -302442858,"Dota 2",purchase,1.0,0 -302442858,"Dota 2",play,53.0,0 -190654528,"Dota 2",purchase,1.0,0 -190654528,"Dota 2",play,146.0,0 -121577821,"Dota 2",purchase,1.0,0 -121577821,"Dota 2",play,1884.0,0 -121577821,"Left 4 Dead 2",purchase,1.0,0 -121577821,"Left 4 Dead 2",play,19.4,0 -158195187,"Dota 2",purchase,1.0,0 -158195187,"Dota 2",play,0.3,0 -276467194,"Echo of Soul",purchase,1.0,0 -276467194,"Echo of Soul",play,0.7,0 -276467194,"Eternal Senia",purchase,1.0,0 -276467194,"Eternal Senia",play,0.3,0 -28711405,"Dota 2",purchase,1.0,0 -28711405,"Dota 2",play,1477.0,0 -28711405,"Left 4 Dead 2",purchase,1.0,0 -28711405,"Left 4 Dead 2",play,33.0,0 -206071342,"Rust",purchase,1.0,0 -206071342,"Rust",play,1.8,0 -75232211,"The Elder Scrolls V Skyrim",purchase,1.0,0 -75232211,"The Elder Scrolls V Skyrim",play,322.0,0 -75232211,"Fallout New Vegas",purchase,1.0,0 -75232211,"Fallout New Vegas",play,135.0,0 -75232211,"Medieval II Total War",purchase,1.0,0 -75232211,"Medieval II Total War",play,105.0,0 -75232211,"TERA",purchase,1.0,0 -75232211,"TERA",play,72.0,0 -75232211,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -75232211,"The Elder Scrolls IV Oblivion ",play,57.0,0 -75232211,"SimCity 4 Deluxe",purchase,1.0,0 -75232211,"SimCity 4 Deluxe",play,56.0,0 -75232211,"Grand Theft Auto San Andreas",purchase,1.0,0 -75232211,"Grand Theft Auto San Andreas",play,50.0,0 -75232211,"Dota 2",purchase,1.0,0 -75232211,"Dota 2",play,47.0,0 -75232211,"Blood Bowl Legendary Edition",purchase,1.0,0 -75232211,"Blood Bowl Legendary Edition",play,47.0,0 -75232211,"Star Trek Online",purchase,1.0,0 -75232211,"Star Trek Online",play,41.0,0 -75232211,"Star Wars Knights of the Old Republic",purchase,1.0,0 -75232211,"Star Wars Knights of the Old Republic",play,33.0,0 -75232211,"Age of Mythology Extended Edition",purchase,1.0,0 -75232211,"Age of Mythology Extended Edition",play,30.0,0 -75232211,"Mass Effect 2",purchase,1.0,0 -75232211,"Mass Effect 2",play,26.0,0 -75232211,"Mass Effect",purchase,1.0,0 -75232211,"Mass Effect",play,25.0,0 -75232211,"Avernum Escape From the Pit",purchase,1.0,0 -75232211,"Avernum Escape From the Pit",play,25.0,0 -75232211,"DC Universe Online",purchase,1.0,0 -75232211,"DC Universe Online",play,23.0,0 -75232211,"Dragon Age II",purchase,1.0,0 -75232211,"Dragon Age II",play,19.8,0 -75232211,"Counter-Strike Global Offensive",purchase,1.0,0 -75232211,"Counter-Strike Global Offensive",play,19.7,0 -75232211,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -75232211,"STAR WARS Knights of the Old Republic II The Sith Lords",play,19.2,0 -75232211,"Fallout",purchase,1.0,0 -75232211,"Fallout",play,13.8,0 -75232211,"Mount & Blade",purchase,1.0,0 -75232211,"Mount & Blade",play,13.4,0 -75232211,"King Arthur II - The Role-playing Wargame",purchase,1.0,0 -75232211,"King Arthur II - The Role-playing Wargame",play,13.3,0 -75232211,"Team Fortress 2",purchase,1.0,0 -75232211,"Team Fortress 2",play,12.9,0 -75232211,"Napoleon Total War",purchase,1.0,0 -75232211,"Napoleon Total War",play,12.5,0 -75232211,"Game Dev Tycoon",purchase,1.0,0 -75232211,"Game Dev Tycoon",play,12.4,0 -75232211,"Medieval II Total War Kingdoms",purchase,1.0,0 -75232211,"Medieval II Total War Kingdoms",play,11.2,0 -75232211,"Supreme Commander Forged Alliance",purchase,1.0,0 -75232211,"Supreme Commander Forged Alliance",play,10.8,0 -75232211,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -75232211,"Galactic Civilizations II Ultimate Edition",play,8.5,0 -75232211,"Total War SHOGUN 2",purchase,1.0,0 -75232211,"Total War SHOGUN 2",play,8.4,0 -75232211,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -75232211,"Warhammer 40,000 Dawn of War II Retribution",play,3.3,0 -75232211,"Democracy 3",purchase,1.0,0 -75232211,"Democracy 3",play,3.0,0 -75232211,"PAYDAY 2",purchase,1.0,0 -75232211,"PAYDAY 2",play,2.5,0 -75232211,"Choice of the Deathless",purchase,1.0,0 -75232211,"Choice of the Deathless",play,2.2,0 -75232211,"Empire Total War",purchase,1.0,0 -75232211,"Empire Total War",play,2.2,0 -75232211,"Bastion",purchase,1.0,0 -75232211,"Bastion",play,0.9,0 -75232211,"Dead Space 2",purchase,1.0,0 -75232211,"Dead Space 2",play,0.8,0 -75232211,"Heroes & Generals",purchase,1.0,0 -75232211,"Heroes & Generals",play,0.8,0 -75232211,"Trove",purchase,1.0,0 -75232211,"Trove",play,0.8,0 -75232211,"Fallout Tactics",purchase,1.0,0 -75232211,"Fallout Tactics",play,0.8,0 -75232211,"Warframe",purchase,1.0,0 -75232211,"Warframe",play,0.7,0 -75232211,"Dead Effect",purchase,1.0,0 -75232211,"Dead Effect",play,0.6,0 -75232211,"Chivalry Medieval Warfare",purchase,1.0,0 -75232211,"Chivalry Medieval Warfare",play,0.6,0 -75232211,"Dirty Bomb",purchase,1.0,0 -75232211,"Dirty Bomb",play,0.6,0 -75232211,"America's Army Proving Grounds",purchase,1.0,0 -75232211,"America's Army Proving Grounds",play,0.4,0 -75232211,"Emily is Away",purchase,1.0,0 -75232211,"Emily is Away",play,0.4,0 -75232211,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -75232211,"Warhammer 40,000 Dawn of War II",play,0.2,0 -75232211,"Dead Space",purchase,1.0,0 -75232211,"Dead Space",play,0.2,0 -75232211,"Fallout 2",purchase,1.0,0 -75232211,"Fallout 2",play,0.2,0 -75232211,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -75232211,"War Thunder",purchase,1.0,0 -75232211,"Fractured Space",purchase,1.0,0 -75232211,"Galactic Civilizations I Ultimate Edition",purchase,1.0,0 -75232211,"Grand Theft Auto San Andreas",purchase,1.0,0 -75232211,"Mount & Blade Warband",purchase,1.0,0 -75232211,"Patch testing for Chivalry",purchase,1.0,0 -75232211,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -278329690,"Dying Light",purchase,1.0,0 -278329690,"Dying Light",play,5.8,0 -281985866,"Team Fortress 2",purchase,1.0,0 -281985866,"Team Fortress 2",play,0.5,0 -302711124,"Call of Duty Advanced Warfare",purchase,1.0,0 -302711124,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -101447015,"Dota 2",purchase,1.0,0 -101447015,"Dota 2",play,970.0,0 -101447015,"Counter-Strike Global Offensive",purchase,1.0,0 -101447015,"Counter-Strike Global Offensive",play,516.0,0 -302363079,"Team Fortress 2",purchase,1.0,0 -302363079,"Team Fortress 2",play,54.0,0 -302363079,"Unturned",purchase,1.0,0 -302363079,"Unturned",play,7.7,0 -302363079,"Block N Load",purchase,1.0,0 -302363079,"Block N Load",play,4.6,0 -302363079,"Run and Fire",purchase,1.0,0 -302363079,"Run and Fire",play,0.4,0 -302363079,"Trove",purchase,1.0,0 -302363079,"Robocraft",purchase,1.0,0 -302363079,"ShareX",purchase,1.0,0 -266367020,"Counter-Strike Global Offensive",purchase,1.0,0 -266367020,"Counter-Strike Global Offensive",play,50.0,0 -266367020,"Ultra Street Fighter IV",purchase,1.0,0 -266367020,"Ultra Street Fighter IV",play,14.9,0 -266367020,"Team Fortress 2",purchase,1.0,0 -266367020,"Team Fortress 2",play,1.3,0 -69658686,"Mafia II",purchase,1.0,0 -69658686,"Mafia II",play,10.5,0 -234449643,"Dota 2",purchase,1.0,0 -234449643,"Dota 2",play,4.9,0 -129659946,"Total War ROME II - Emperor Edition",purchase,1.0,0 -129659946,"Total War ROME II - Emperor Edition",play,96.0,0 -129659946,"Football Manager 2013",purchase,1.0,0 -129659946,"Football Manager 2013",play,62.0,0 -13614852,"Counter-Strike Source",purchase,1.0,0 -13614852,"Counter-Strike Source",play,1.1,0 -13614852,"Half-Life 2",purchase,1.0,0 -13614852,"Half-Life 2 Deathmatch",purchase,1.0,0 -13614852,"Half-Life 2 Lost Coast",purchase,1.0,0 -84024556,"Call of Duty Black Ops",purchase,1.0,0 -84024556,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -209897237,"Unturned",purchase,1.0,0 -209897237,"Unturned",play,0.1,0 -78335076,"Team Fortress 2",purchase,1.0,0 -78335076,"Team Fortress 2",play,10.0,0 -78335076,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -78335076,"Call of Duty Black Ops - Multiplayer",play,8.8,0 -78335076,"Call of Duty Black Ops",purchase,1.0,0 -78335076,"Call of Duty Black Ops",play,7.5,0 -151465345,"Mafia II",purchase,1.0,0 -151465345,"Mafia II",play,22.0,0 -151465345,"Left 4 Dead 2",purchase,1.0,0 -173002032,"Dota 2",purchase,1.0,0 -173002032,"Dota 2",play,232.0,0 -262543812,"Infinite Crisis",purchase,1.0,0 -151058601,"Dota 2",purchase,1.0,0 -151058601,"Dota 2",play,12.9,0 -118834514,"Zombie Panic Source",purchase,1.0,0 -118834514,"Zombie Panic Source",play,0.3,0 -246908963,"UberStrike",purchase,1.0,0 -246908963,"UberStrike",play,4.8,0 -246908963,"Counter-Strike Global Offensive",purchase,1.0,0 -246908963,"Counter-Strike Global Offensive",play,3.7,0 -246908963,"Blender 2.76b",purchase,1.0,0 -246908963,"Metro Conflict",purchase,1.0,0 -246908963,"Tactical Intervention",purchase,1.0,0 -189649899,"Dota 2",purchase,1.0,0 -189649899,"Dota 2",play,1.8,0 -225734651,"BLOCKADE 3D",purchase,1.0,0 -225734651,"BLOCKADE 3D",play,40.0,0 -225734651,"PlanetSide 2",purchase,1.0,0 -225734651,"PlanetSide 2",play,2.1,0 -225734651,"HAWKEN",purchase,1.0,0 -225734651,"HAWKEN",play,0.5,0 -225734651,"Rustbucket Rumble",purchase,1.0,0 -225734651,"Rustbucket Rumble",play,0.3,0 -225734651,"Counter-Strike Nexon Zombies",purchase,1.0,0 -225734651,"Counter-Strike Nexon Zombies",play,0.3,0 -225734651,"Batla",purchase,1.0,0 -225734651,"Batla",play,0.3,0 -225734651,"Dungeonland",purchase,1.0,0 -225734651,"Firefall",purchase,1.0,0 -225734651,"The Expendabros",purchase,1.0,0 -225734651,"Warframe",purchase,1.0,0 -123122821,"Dota 2",purchase,1.0,0 -123122821,"Dota 2",play,14.5,0 -108726847,"Infested Planet",purchase,1.0,0 -108726847,"Sid Meier's Civilization V",purchase,1.0,0 -108726847,"Star Wars Knights of the Old Republic",purchase,1.0,0 -108726847,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -108726847,"The Banner Saga",purchase,1.0,0 -108726847,"The Banner Saga - Mod Content",purchase,1.0,0 -108726847,"Undertale",purchase,1.0,0 -296260221,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -296260221,"Resident Evil Revelations / Biohazard Revelations",play,11.0,0 -296260221,"Sinister City",purchase,1.0,0 -296260221,"Sinister City",play,5.2,0 -296260221,"Counter-Strike Global Offensive",purchase,1.0,0 -296260221,"Counter-Strike Global Offensive",play,1.3,0 -296260221,"Marvel Heroes 2015",purchase,1.0,0 -296260221,"Marvel Heroes 2015",play,0.8,0 -296260221,"Resident Evil / biohazard HD REMASTER",purchase,1.0,0 -296260221,"Resident Evil / biohazard HD REMASTER",play,0.6,0 -296260221,"Dota 2",purchase,1.0,0 -296260221,"Dota 2",play,0.5,0 -296260221,"Dragons and Titans",purchase,1.0,0 -296260221,"Dragons and Titans",play,0.3,0 -296260221,"The 7th Guest",purchase,1.0,0 -296260221,"The 7th Guest",play,0.3,0 -296260221,"Disney Infinity 3.0 Play Without Limits",purchase,1.0,0 -296260221,"Disney Infinity 3.0 Play Without Limits",play,0.2,0 -296260221,"Dungeon Defenders II",purchase,1.0,0 -296260221,"Dungeon Defenders II",play,0.2,0 -296260221,"The 11th Hour",purchase,1.0,0 -296260221,"Archeblade",purchase,1.0,0 -296260221,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -296260221,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -58882137,"Team Fortress 2",purchase,1.0,0 -58882137,"Team Fortress 2",play,0.4,0 -252386228,"Dota 2",purchase,1.0,0 -252386228,"Dota 2",play,0.3,0 -191945723,"Gumboy Tournament",purchase,1.0,0 -55525449,"Football Manager 2010",purchase,1.0,0 -211054311,"Dota 2",purchase,1.0,0 -211054311,"Dota 2",play,8.5,0 -175806506,"Dota 2",purchase,1.0,0 -175806506,"Dota 2",play,92.0,0 -300292281,"Team Fortress 2",purchase,1.0,0 -300292281,"Team Fortress 2",play,0.6,0 -199681294,"EverQuest Free-to-Play",purchase,1.0,0 -133402780,"Team Fortress 2",purchase,1.0,0 -133402780,"Team Fortress 2",play,4.8,0 -200857908,"Team Fortress 2",purchase,1.0,0 -200857908,"Team Fortress 2",play,0.2,0 -200857908,"No More Room in Hell",purchase,1.0,0 -200857908,"Robocraft",purchase,1.0,0 -200857908,"Super Monday Night Combat",purchase,1.0,0 -200857908,"The Expendabros",purchase,1.0,0 -40576653,"Counter-Strike",purchase,1.0,0 -40576653,"Counter-Strike",play,347.0,0 -40576653,"Counter-Strike Condition Zero",purchase,1.0,0 -40576653,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -40576653,"Day of Defeat",purchase,1.0,0 -40576653,"Deathmatch Classic",purchase,1.0,0 -40576653,"Ricochet",purchase,1.0,0 -147340721,"Dota 2",purchase,1.0,0 -147340721,"Dota 2",play,15.6,0 -221702697,"Dota 2",purchase,1.0,0 -221702697,"Dota 2",play,16.0,0 -46637811,"Dota 2",purchase,1.0,0 -46637811,"Dota 2",play,2563.0,0 -46637811,"Warframe",purchase,1.0,0 -46637811,"Warframe",play,372.0,0 -46637811,"The Elder Scrolls V Skyrim",purchase,1.0,0 -46637811,"The Elder Scrolls V Skyrim",play,289.0,0 -46637811,"DayZ",purchase,1.0,0 -46637811,"DayZ",play,179.0,0 -46637811,"DARK SOULS II",purchase,1.0,0 -46637811,"DARK SOULS II",play,131.0,0 -46637811,"Trove",purchase,1.0,0 -46637811,"Trove",play,124.0,0 -46637811,"Fallout 4",purchase,1.0,0 -46637811,"Fallout 4",play,94.0,0 -46637811,"Starbound",purchase,1.0,0 -46637811,"Starbound",play,93.0,0 -46637811,"Grand Theft Auto V",purchase,1.0,0 -46637811,"Grand Theft Auto V",play,93.0,0 -46637811,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -46637811,"Warhammer 40,000 Dawn of War II",play,91.0,0 -46637811,"Endless Legend",purchase,1.0,0 -46637811,"Endless Legend",play,74.0,0 -46637811,"Neverwinter",purchase,1.0,0 -46637811,"Neverwinter",play,69.0,0 -46637811,"Age of Empires II HD Edition",purchase,1.0,0 -46637811,"Age of Empires II HD Edition",play,60.0,0 -46637811,"Pillars of Eternity",purchase,1.0,0 -46637811,"Pillars of Eternity",play,53.0,0 -46637811,"Terraria",purchase,1.0,0 -46637811,"Terraria",play,47.0,0 -46637811,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -46637811,"METAL GEAR SOLID V THE PHANTOM PAIN",play,47.0,0 -46637811,"Tales of Zestiria",purchase,1.0,0 -46637811,"Tales of Zestiria",play,39.0,0 -46637811,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -46637811,"Sid Meier's Civilization Beyond Earth",play,35.0,0 -46637811,"The Witcher Enhanced Edition",purchase,1.0,0 -46637811,"The Witcher Enhanced Edition",play,35.0,0 -46637811,"Devilian",purchase,1.0,0 -46637811,"Devilian",play,34.0,0 -46637811,"Dust An Elysian Tail",purchase,1.0,0 -46637811,"Dust An Elysian Tail",play,27.0,0 -46637811,"Dungeon Defenders II",purchase,1.0,0 -46637811,"Dungeon Defenders II",play,24.0,0 -46637811,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -46637811,"Kingdoms of Amalur Reckoning",play,24.0,0 -46637811,"Middle-earth Shadow of Mordor",purchase,1.0,0 -46637811,"Middle-earth Shadow of Mordor",play,24.0,0 -46637811,"Assassins Creed Unity",purchase,1.0,0 -46637811,"Assassins Creed Unity",play,23.0,0 -46637811,"Counter-Strike Global Offensive",purchase,1.0,0 -46637811,"Counter-Strike Global Offensive",play,22.0,0 -46637811,"Age of Empires III Complete Collection",purchase,1.0,0 -46637811,"Age of Empires III Complete Collection",play,21.0,0 -46637811,"SpeedRunners",purchase,1.0,0 -46637811,"SpeedRunners",play,19.9,0 -46637811,"Rocket League",purchase,1.0,0 -46637811,"Rocket League",play,18.4,0 -46637811,"The Forest",purchase,1.0,0 -46637811,"The Forest",play,17.7,0 -46637811,"Supreme Commander 2",purchase,1.0,0 -46637811,"Supreme Commander 2",play,15.4,0 -46637811,"Path of Exile",purchase,1.0,0 -46637811,"Path of Exile",play,13.1,0 -46637811,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -46637811,"Warhammer 40,000 Dawn of War Dark Crusade",play,12.7,0 -46637811,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -46637811,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,12.6,0 -46637811,"Aura Kingdom",purchase,1.0,0 -46637811,"Aura Kingdom",play,12.1,0 -46637811,"One Finger Death Punch",purchase,1.0,0 -46637811,"One Finger Death Punch",play,11.1,0 -46637811,"Lords Of The Fallen",purchase,1.0,0 -46637811,"Lords Of The Fallen",play,11.0,0 -46637811,"Beat Hazard",purchase,1.0,0 -46637811,"Beat Hazard",play,10.2,0 -46637811,"Dungeons 2",purchase,1.0,0 -46637811,"Dungeons 2",play,9.2,0 -46637811,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -46637811,"Baldur's Gate Enhanced Edition",play,8.3,0 -46637811,"Loadout",purchase,1.0,0 -46637811,"Loadout",play,7.6,0 -46637811,"RaiderZ",purchase,1.0,0 -46637811,"RaiderZ",play,6.9,0 -46637811,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -46637811,"Dragon Age Origins - Ultimate Edition",play,5.8,0 -46637811,"DmC Devil May Cry",purchase,1.0,0 -46637811,"DmC Devil May Cry",play,5.7,0 -46637811,"Left 4 Dead 2",purchase,1.0,0 -46637811,"Left 4 Dead 2",play,5.7,0 -46637811,"Thief",purchase,1.0,0 -46637811,"Thief",play,5.6,0 -46637811,"ArcheAge",purchase,1.0,0 -46637811,"ArcheAge",play,5.4,0 -46637811,"Brawlhalla",purchase,1.0,0 -46637811,"Brawlhalla",play,5.2,0 -46637811,"SMITE",purchase,1.0,0 -46637811,"SMITE",play,5.1,0 -46637811,"Eden Star Destroy - Build - Protect",purchase,1.0,0 -46637811,"Eden Star Destroy - Build - Protect",play,4.5,0 -46637811,"Portal",purchase,1.0,0 -46637811,"Portal",play,4.4,0 -46637811,"Fight The Dragon",purchase,1.0,0 -46637811,"Fight The Dragon",play,4.2,0 -46637811,"Sins of a Dark Age",purchase,1.0,0 -46637811,"Sins of a Dark Age",play,3.8,0 -46637811,"Torchlight II",purchase,1.0,0 -46637811,"Torchlight II",play,3.2,0 -46637811,"Bound By Flame",purchase,1.0,0 -46637811,"Bound By Flame",play,2.7,0 -46637811,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -46637811,"METAL GEAR SOLID V GROUND ZEROES",play,2.3,0 -46637811,"Divinity II Developer's Cut",purchase,1.0,0 -46637811,"Divinity II Developer's Cut",play,1.6,0 -46637811,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -46637811,"Warhammer 40,000 Dawn of War II Retribution",play,1.6,0 -46637811,"Grim Dawn",purchase,1.0,0 -46637811,"Grim Dawn",play,1.6,0 -46637811,"Risen 2 - Dark Waters",purchase,1.0,0 -46637811,"Risen 2 - Dark Waters",play,1.5,0 -46637811,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -46637811,"Call of Duty Black Ops II - Multiplayer",play,1.3,0 -46637811,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -46637811,"METAL GEAR RISING REVENGEANCE",play,1.3,0 -46637811,"Star Wars - Battlefront II",purchase,1.0,0 -46637811,"Star Wars - Battlefront II",play,1.2,0 -46637811,"Dishonored",purchase,1.0,0 -46637811,"Dishonored",play,1.0,0 -46637811,"Dungeon Siege III",purchase,1.0,0 -46637811,"Dungeon Siege III",play,1.0,0 -46637811,"Sacred 3",purchase,1.0,0 -46637811,"Sacred 3",play,0.9,0 -46637811,"RAGE",purchase,1.0,0 -46637811,"RAGE",play,0.9,0 -46637811,"Vindictus",purchase,1.0,0 -46637811,"Vindictus",play,0.8,0 -46637811,"The Legend of Heroes Trails in the Sky",purchase,1.0,0 -46637811,"The Legend of Heroes Trails in the Sky",play,0.8,0 -46637811,"Dead Island",purchase,1.0,0 -46637811,"Dead Island",play,0.8,0 -46637811,"Ravensword Shadowlands",purchase,1.0,0 -46637811,"Ravensword Shadowlands",play,0.8,0 -46637811,"Warhammer 40,000 Kill Team",purchase,1.0,0 -46637811,"Warhammer 40,000 Kill Team",play,0.7,0 -46637811,"Arma 2 Operation Arrowhead",purchase,1.0,0 -46637811,"Arma 2 Operation Arrowhead",play,0.6,0 -46637811,"Dungeon of the Endless",purchase,1.0,0 -46637811,"Dungeon of the Endless",play,0.6,0 -46637811,"Blood Knights",purchase,1.0,0 -46637811,"Blood Knights",play,0.4,0 -46637811,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -46637811,"DARK SOULS II Scholar of the First Sin",play,0.4,0 -46637811,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -46637811,"Warhammer 40,000 Dawn of War Soulstorm",play,0.4,0 -46637811,"Archeblade",purchase,1.0,0 -46637811,"Archeblade",play,0.3,0 -46637811,"RAW - Realms of Ancient War",purchase,1.0,0 -46637811,"RAW - Realms of Ancient War",play,0.3,0 -46637811,"Age of Mythology Extended Edition",purchase,1.0,0 -46637811,"Age of Mythology Extended Edition",play,0.3,0 -46637811,"Divine Souls",purchase,1.0,0 -46637811,"Divine Souls",play,0.2,0 -46637811,"Ascend Hand of Kul",purchase,1.0,0 -46637811,"Ascend Hand of Kul",play,0.2,0 -46637811,"Divinity Original Sin",purchase,1.0,0 -46637811,"Divinity Original Sin",play,0.1,0 -46637811,"Deadbreed",purchase,1.0,0 -46637811,"Deadbreed",play,0.1,0 -46637811,"Prime World",purchase,1.0,0 -46637811,"Prime World",play,0.1,0 -46637811,"FORCED",purchase,1.0,0 -46637811,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -46637811,"Baldur's Gate II Enhanced Edition",purchase,1.0,0 -46637811,"Arma 2",purchase,1.0,0 -46637811,"Block N Load",purchase,1.0,0 -46637811,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -46637811,"Age of Empires II HD The Forgotten",purchase,1.0,0 -46637811,"Aion",purchase,1.0,0 -46637811,"ArcheAge Archeum Founders Pack",purchase,1.0,0 -46637811,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -46637811,"Aura Kingdom - Winter Gift",purchase,1.0,0 -46637811,"Brtal Legend",purchase,1.0,0 -46637811,"Call of Duty Black Ops II",purchase,1.0,0 -46637811,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -46637811,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -46637811,"Dead Island Riptide",purchase,1.0,0 -46637811,"Devil May Cry 3 Special Edition",purchase,1.0,0 -46637811,"Devil May Cry 4",purchase,1.0,0 -46637811,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -46637811,"Dungeon Siege",purchase,1.0,0 -46637811,"Dungeon Siege 2",purchase,1.0,0 -46637811,"Echo of Soul",purchase,1.0,0 -46637811,"Edge of Space",purchase,1.0,0 -46637811,"Firefall",purchase,1.0,0 -46637811,"Mortal Online",purchase,1.0,0 -46637811,"PlanetSide 2",purchase,1.0,0 -46637811,"Ragnarok Online 2",purchase,1.0,0 -46637811,"Royal Quest",purchase,1.0,0 -46637811,"Sacred 3 Underworld Story",purchase,1.0,0 -46637811,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -46637811,"Starbound - Unstable",purchase,1.0,0 -46637811,"Survarium",purchase,1.0,0 -46637811,"Sword Coast Legends",purchase,1.0,0 -46637811,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -46637811,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -46637811,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -46637811,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -46637811,"The Last Remnant",purchase,1.0,0 -46637811,"The Mighty Quest For Epic Loot",purchase,1.0,0 -46637811,"Thief - Ghost",purchase,1.0,0 -46637811,"Thief - The Bank Heist",purchase,1.0,0 -46637811,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -46637811,"Torchlight",purchase,1.0,0 -46637811,"Trove Power Pack",purchase,1.0,0 -46637811,"Vlad the Impaler",purchase,1.0,0 -253253005,"The Binding of Isaac",purchase,1.0,0 -253253005,"The Binding of Isaac",play,29.0,0 -253253005,"DLC Quest",purchase,1.0,0 -253253005,"DLC Quest",play,2.7,0 -253253005,"World of Soccer online",purchase,1.0,0 -253253005,"World of Soccer online",play,0.1,0 -139388319,"Dota 2",purchase,1.0,0 -139388319,"Dota 2",play,1499.0,0 -80309714,"Medieval II Total War Kingdoms",purchase,1.0,0 -80309714,"Medieval II Total War Kingdoms",play,184.0,0 -80309714,"Medieval II Total War",purchase,1.0,0 -80309714,"Medieval II Total War",play,132.0,0 -229556803,"Team Fortress 2",purchase,1.0,0 -229556803,"Team Fortress 2",play,23.0,0 -229556803,"AdVenture Capitalist",purchase,1.0,0 -229556803,"AdVenture Capitalist",play,0.8,0 -229556803,"No More Room in Hell",purchase,1.0,0 -229556803,"No More Room in Hell",play,0.3,0 -229556803,"Survarium",purchase,1.0,0 -229556803,"Survarium",play,0.1,0 -229556803,"Loadout",purchase,1.0,0 -229556803,"HAWKEN",purchase,1.0,0 -229556803,"Nosgoth",purchase,1.0,0 -124878949,"Team Fortress 2",purchase,1.0,0 -124878949,"Team Fortress 2",play,200.0,0 -124878949,"Sid Meier's Civilization V",purchase,1.0,0 -124878949,"Sid Meier's Civilization V",play,71.0,0 -124878949,"The Elder Scrolls V Skyrim",purchase,1.0,0 -124878949,"The Elder Scrolls V Skyrim",play,55.0,0 -124878949,"Portal 2",purchase,1.0,0 -124878949,"Portal 2",play,26.0,0 -124878949,"Robocraft",purchase,1.0,0 -124878949,"Robocraft",play,5.4,0 -124878949,"Garry's Mod",purchase,1.0,0 -124878949,"Garry's Mod",play,4.0,0 -124878949,"Dota 2",purchase,1.0,0 -124878949,"Dota 2",play,2.8,0 -124878949,"NEOTOKYO",purchase,1.0,0 -124878949,"Portal",purchase,1.0,0 -124878949,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -124878949,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -124878949,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -170215786,"War Thunder",purchase,1.0,0 -170215786,"War Thunder",play,242.0,0 -170215786,"PAYDAY 2",purchase,1.0,0 -170215786,"PAYDAY 2",play,96.0,0 -170215786,"Dead Island",purchase,1.0,0 -170215786,"Dead Island",play,23.0,0 -170215786,"Garry's Mod",purchase,1.0,0 -170215786,"Garry's Mod",play,14.7,0 -170215786,"No More Room in Hell",purchase,1.0,0 -170215786,"No More Room in Hell",play,8.8,0 -170215786,"Unturned",purchase,1.0,0 -170215786,"Unturned",play,7.7,0 -170215786,"Saints Row The Third",purchase,1.0,0 -170215786,"Saints Row The Third",play,7.4,0 -170215786,"Dead Island Riptide",purchase,1.0,0 -170215786,"Dead Island Riptide",play,6.5,0 -170215786,"Archeblade",purchase,1.0,0 -170215786,"Archeblade",play,4.0,0 -170215786,"Heroes & Generals",purchase,1.0,0 -170215786,"Heroes & Generals",play,3.4,0 -170215786,"Counter-Strike Global Offensive",purchase,1.0,0 -170215786,"Counter-Strike Global Offensive",play,2.2,0 -170215786,"Cry of Fear",purchase,1.0,0 -170215786,"Cry of Fear",play,1.7,0 -170215786,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -170215786,"Tom Clancy's Ghost Recon Phantoms - NA",play,1.3,0 -170215786,"Metro 2033",purchase,1.0,0 -170215786,"Risen",purchase,1.0,0 -170215786,"Risen 2 - Dark Waters",purchase,1.0,0 -170215786,"Sacred 2 Gold",purchase,1.0,0 -170215786,"Sacred Citadel",purchase,1.0,0 -170215786,"Saints Row 2",purchase,1.0,0 -202557205,"Dota 2",purchase,1.0,0 -202557205,"Dota 2",play,0.4,0 -295363571,"Counter-Strike Global Offensive",purchase,1.0,0 -295363571,"Counter-Strike Global Offensive",play,248.0,0 -295363571,"Dota 2",purchase,1.0,0 -295363571,"Dota 2",play,0.3,0 -236466534,"War Inc. Battlezone",purchase,1.0,0 -236466534,"War Inc. Battlezone",play,1.6,0 -236466534,"Loadout",purchase,1.0,0 -62562867,"Supreme Commander 2",purchase,1.0,0 -62562867,"Supreme Commander 2",play,97.0,0 -300217861,"Portal 2",purchase,1.0,0 -300217861,"Portal 2",play,9.7,0 -99372794,"STCC The Game",purchase,1.0,0 -99372794,"RACE 07",purchase,1.0,0 -99372794,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -99372794,"RACE On",purchase,1.0,0 -49469819,"Rogue Warrior",purchase,1.0,0 -218054193,"H1Z1",purchase,1.0,0 -218054193,"H1Z1",play,7.2,0 -218054193,"PAYDAY 2",purchase,1.0,0 -218054193,"PAYDAY 2",play,6.4,0 -218054193,"H1Z1 Test Server",purchase,1.0,0 -199336988,"Dota 2",purchase,1.0,0 -199336988,"Dota 2",play,0.3,0 -144546440,"Dota 2",purchase,1.0,0 -144546440,"Dota 2",play,4.4,0 -184332447,"Dota 2",purchase,1.0,0 -184332447,"Dota 2",play,0.2,0 -170023764,"Dota 2",purchase,1.0,0 -170023764,"Dota 2",play,0.2,0 -57755503,"Serious Sam HD The Second Encounter",purchase,1.0,0 -57755503,"Serious Sam HD The Second Encounter",play,3.3,0 -147395962,"Team Fortress 2",purchase,1.0,0 -147395962,"Team Fortress 2",play,167.0,0 -147395962,"Killing Floor",purchase,1.0,0 -147395962,"Killing Floor",play,22.0,0 -147395962,"Garry's Mod",purchase,1.0,0 -147395962,"Garry's Mod",play,19.3,0 -147395962,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -147395962,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -234100567,"Dota 2",purchase,1.0,0 -234100567,"Dota 2",play,2.5,0 -172585885,"Dota 2",purchase,1.0,0 -172585885,"Dota 2",play,0.3,0 -188573606,"Dota 2",purchase,1.0,0 -188573606,"Dota 2",play,27.0,0 -54477968,"Counter-Strike Condition Zero",purchase,1.0,0 -54477968,"Counter-Strike Condition Zero",play,19.9,0 -54477968,"Counter-Strike",purchase,1.0,0 -54477968,"Counter-Strike",play,15.2,0 -54477968,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -54477968,"Counter-Strike Condition Zero Deleted Scenes",play,0.9,0 -54477968,"Day of Defeat",purchase,1.0,0 -54477968,"Day of Defeat",play,0.4,0 -54477968,"Ricochet",purchase,1.0,0 -54477968,"Deathmatch Classic",purchase,1.0,0 -131949880,"Dota 2",purchase,1.0,0 -131949880,"Dota 2",play,0.7,0 -190246455,"Unturned",purchase,1.0,0 -190246455,"Unturned",play,0.9,0 -190246455,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -195219679,"Dota 2",purchase,1.0,0 -195219679,"Dota 2",play,3.3,0 -131227682,"Counter-Strike Global Offensive",purchase,1.0,0 -131227682,"Counter-Strike Global Offensive",play,465.0,0 -131227682,"Call of Duty Modern Warfare 2",purchase,1.0,0 -131227682,"Call of Duty Modern Warfare 2",play,83.0,0 -131227682,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -131227682,"Call of Duty Modern Warfare 2 - Multiplayer",play,45.0,0 -131227682,"Trine 2",purchase,1.0,0 -131227682,"Trine 2",play,30.0,0 -131227682,"METAL SLUG DEFENSE",purchase,1.0,0 -131227682,"METAL SLUG DEFENSE",play,10.4,0 -131227682,"Call of Duty World at War",purchase,1.0,0 -131227682,"Call of Duty World at War",play,7.3,0 -131227682,"Trine 3 The Artifacts of Power",purchase,1.0,0 -131227682,"Trine 3 The Artifacts of Power",play,2.6,0 -131227682,"Assassins Creed Unity",purchase,1.0,0 -131227682,"Assassins Creed Unity",play,2.5,0 -131227682,"Sniper Elite V2",purchase,1.0,0 -131227682,"Sniper Elite V2",play,1.4,0 -131227682,"Total War SHOGUN 2",purchase,1.0,0 -131227682,"Total War SHOGUN 2",play,0.7,0 -131227682,"SpeedRunners",purchase,1.0,0 -131227682,"SpeedRunners",play,0.6,0 -131227682,"Unturned",purchase,1.0,0 -131227682,"Unturned",play,0.4,0 -131227682,"Awesomenauts",purchase,1.0,0 -131227682,"METAL SLUG DEFENSE - Ptolemaic Army Pack Vol.1",purchase,1.0,0 -131227682,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -150424384,"Dota 2",purchase,1.0,0 -150424384,"Dota 2",play,0.3,0 -272499996,"Unturned",purchase,1.0,0 -272499996,"Unturned",play,110.0,0 -272499996,"Team Fortress 2",purchase,1.0,0 -272499996,"Team Fortress 2",play,59.0,0 -272499996,"Brawlhalla",purchase,1.0,0 -272499996,"Brawlhalla",play,20.0,0 -272499996,"Codename CURE",purchase,1.0,0 -272499996,"Codename CURE",play,13.4,0 -272499996,"SMITE",purchase,1.0,0 -272499996,"SMITE",play,9.9,0 -272499996,"Lambda Wars Beta",purchase,1.0,0 -272499996,"Lambda Wars Beta",play,5.7,0 -272499996,"Heroes & Generals",purchase,1.0,0 -272499996,"Heroes & Generals",play,5.7,0 -272499996,"Red Crucible Firestorm",purchase,1.0,0 -272499996,"Red Crucible Firestorm",play,2.6,0 -272499996,"AirMech",purchase,1.0,0 -272499996,"AirMech",play,1.8,0 -272499996,"Happy Wars",purchase,1.0,0 -272499996,"Happy Wars",play,1.0,0 -272499996,"Robocraft",purchase,1.0,0 -272499996,"Robocraft",play,0.9,0 -272499996,"Block N Load",purchase,1.0,0 -272499996,"Block N Load",play,0.7,0 -272499996,"Genesis Online",purchase,1.0,0 -272499996,"Genesis Online",play,0.3,0 -272499996,"CrimeCraft GangWars",purchase,1.0,0 -272499996,"Dream Of Mirror Online",purchase,1.0,0 -272499996,"Firefall",purchase,1.0,0 -223187857,"Dota 2",purchase,1.0,0 -223187857,"Dota 2",play,0.3,0 -85518568,"Dead Island",purchase,1.0,0 -85518568,"Dead Island",play,15.9,0 -85518568,"Team Fortress 2",purchase,1.0,0 -85518568,"Team Fortress 2",play,5.7,0 -85518568,"Arma 2",purchase,1.0,0 -85518568,"Arma 2",play,4.6,0 -85518568,"Virtual Villagers A New Home",purchase,1.0,0 -85518568,"Virtual Villagers A New Home",play,4.3,0 -85518568,"Arma 2 Operation Arrowhead",purchase,1.0,0 -85518568,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -140800500,"Dota 2",purchase,1.0,0 -140800500,"Dota 2",play,0.6,0 -293211305,"Dota 2",purchase,1.0,0 -293211305,"Dota 2",play,1.4,0 -235770634,"Total War Battles KINGDOM",purchase,1.0,0 -235770634,"Total War Battles KINGDOM",play,39.0,0 -224587014,"Dota 2",purchase,1.0,0 -224587014,"Dota 2",play,0.5,0 -202906277,"Dota 2",purchase,1.0,0 -202906277,"Dota 2",play,24.0,0 -228314669,"Dota 2",purchase,1.0,0 -228314669,"Dota 2",play,0.7,0 -238698018,"Dota 2",purchase,1.0,0 -238698018,"Dota 2",play,1.2,0 -242200471,"Counter-Strike Global Offensive",purchase,1.0,0 -242200471,"Counter-Strike Global Offensive",play,171.0,0 -242200471,"Clicker Heroes",purchase,1.0,0 -242200471,"Heroes & Generals",purchase,1.0,0 -242200471,"Unturned",purchase,1.0,0 -296285114,"Dota 2",purchase,1.0,0 -296285114,"Dota 2",play,113.0,0 -195814783,"Dota 2",purchase,1.0,0 -195814783,"Dota 2",play,1.9,0 -70351792,"Football Manager 2011",purchase,1.0,0 -70351792,"Football Manager 2011",play,162.0,0 -70351792,"Football Manager 2010",purchase,1.0,0 -70351792,"Football Manager 2010",play,96.0,0 -70351792,"Football Manager 2012",purchase,1.0,0 -70351792,"Football Manager 2012",play,12.1,0 -70351792,"Football Manager 2013",purchase,1.0,0 -70351792,"Football Manager 2013",play,11.3,0 -285704870,"Dota 2",purchase,1.0,0 -285704870,"Dota 2",play,7.5,0 -257299708,"Dota 2",purchase,1.0,0 -257299708,"Dota 2",play,107.0,0 -89988424,"EVE Online",purchase,1.0,0 -283979950,"Robocraft",purchase,1.0,0 -71480053,"Empire Total War",purchase,1.0,0 -71480053,"Empire Total War",play,31.0,0 -35419030,"Half-Life 2",purchase,1.0,0 -35419030,"Half-Life 2",play,1.8,0 -35419030,"Half-Life 2 Deathmatch",purchase,1.0,0 -35419030,"Half-Life 2 Deathmatch",play,0.1,0 -35419030,"Half-Life 2 Lost Coast",purchase,1.0,0 -192538478,"Starbound",purchase,1.0,0 -192538478,"Starbound",play,19.4,0 -192538478,"Unturned",purchase,1.0,0 -192538478,"Unturned",play,8.9,0 -192538478,"Team Fortress 2",purchase,1.0,0 -192538478,"Team Fortress 2",play,4.3,0 -192538478,"Dota 2",purchase,1.0,0 -192538478,"Dota 2",play,3.6,0 -192538478,"Anarchy Arcade",purchase,1.0,0 -192538478,"Anarchy Arcade",play,1.2,0 -192538478,"Heroes & Generals",purchase,1.0,0 -192538478,"Heroes & Generals",play,0.4,0 -192538478,"Counter-Strike Nexon Zombies",purchase,1.0,0 -192538478,"Face of Mankind",purchase,1.0,0 -192538478,"Starbound - Unstable",purchase,1.0,0 -192538478,"Thinking with Time Machine",purchase,1.0,0 -181154544,"APB Reloaded",purchase,1.0,0 -181154544,"Defiance",purchase,1.0,0 -181154544,"Magicka Wizard Wars",purchase,1.0,0 -181154544,"March of War",purchase,1.0,0 -181154544,"Nosgoth",purchase,1.0,0 -181154544,"Path of Exile",purchase,1.0,0 -181154544,"PlanetSide 2",purchase,1.0,0 -181154544,"RIFT",purchase,1.0,0 -181154544,"Robocraft",purchase,1.0,0 -181154544,"Warframe",purchase,1.0,0 -181154544,"War of the Roses",purchase,1.0,0 -181154544,"War Thunder",purchase,1.0,0 -171067153,"Counter-Strike Global Offensive",purchase,1.0,0 -171067153,"Counter-Strike Global Offensive",play,795.0,0 -171067153,"DayZ",purchase,1.0,0 -171067153,"DayZ",play,505.0,0 -171067153,"PAYDAY 2",purchase,1.0,0 -171067153,"PAYDAY 2",play,77.0,0 -171067153,"Fallout 4",purchase,1.0,0 -171067153,"Fallout 4",play,72.0,0 -171067153,"Arma 3",purchase,1.0,0 -171067153,"Arma 3",play,59.0,0 -171067153,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -171067153,"METAL GEAR SOLID V THE PHANTOM PAIN",play,58.0,0 -171067153,"Rocket League",purchase,1.0,0 -171067153,"Rocket League",play,34.0,0 -171067153,"Fallout New Vegas",purchase,1.0,0 -171067153,"Fallout New Vegas",play,32.0,0 -171067153,"Garry's Mod",purchase,1.0,0 -171067153,"Garry's Mod",play,32.0,0 -171067153,"Arma 2 Operation Arrowhead",purchase,1.0,0 -171067153,"Arma 2 Operation Arrowhead",play,30.0,0 -171067153,"H1Z1",purchase,1.0,0 -171067153,"H1Z1",play,26.0,0 -171067153,"Middle-earth Shadow of Mordor",purchase,1.0,0 -171067153,"Middle-earth Shadow of Mordor",play,19.1,0 -171067153,"Unturned",purchase,1.0,0 -171067153,"Unturned",play,17.2,0 -171067153,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -171067153,"Call of Duty Advanced Warfare - Multiplayer",play,16.7,0 -171067153,"The Walking Dead",purchase,1.0,0 -171067153,"The Walking Dead",play,15.0,0 -171067153,"This War of Mine",purchase,1.0,0 -171067153,"This War of Mine",play,14.8,0 -171067153,"The Elder Scrolls V Skyrim",purchase,1.0,0 -171067153,"The Elder Scrolls V Skyrim",play,14.2,0 -171067153,"Life Is Strange",purchase,1.0,0 -171067153,"Life Is Strange",play,13.2,0 -171067153,"SpeedRunners",purchase,1.0,0 -171067153,"SpeedRunners",play,9.5,0 -171067153,"Space Engineers",purchase,1.0,0 -171067153,"Space Engineers",play,8.8,0 -171067153,"The Walking Dead Season Two",purchase,1.0,0 -171067153,"The Walking Dead Season Two",play,8.5,0 -171067153,"Borderlands 2",purchase,1.0,0 -171067153,"Borderlands 2",play,7.9,0 -171067153,"Dirty Bomb",purchase,1.0,0 -171067153,"Dirty Bomb",play,7.2,0 -171067153,"Infestation Survivor Stories",purchase,1.0,0 -171067153,"Infestation Survivor Stories",play,5.6,0 -171067153,"BioShock Infinite",purchase,1.0,0 -171067153,"BioShock Infinite",play,5.5,0 -171067153,"Left 4 Dead 2",purchase,1.0,0 -171067153,"Left 4 Dead 2",play,5.3,0 -171067153,"Nidhogg",purchase,1.0,0 -171067153,"Nidhogg",play,5.0,0 -171067153,"Chivalry Medieval Warfare",purchase,1.0,0 -171067153,"Chivalry Medieval Warfare",play,5.0,0 -171067153,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -171067153,"Tom Clancy's Ghost Recon Phantoms - NA",play,4.8,0 -171067153,"Dungeon Defenders II",purchase,1.0,0 -171067153,"Dungeon Defenders II",play,4.5,0 -171067153,"Insurgency",purchase,1.0,0 -171067153,"Insurgency",play,3.9,0 -171067153,"The Forest",purchase,1.0,0 -171067153,"The Forest",play,3.5,0 -171067153,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -171067153,"Just Cause 2 Multiplayer Mod",play,3.2,0 -171067153,"Gunpoint",purchase,1.0,0 -171067153,"Gunpoint",play,3.2,0 -171067153,"Terraria",purchase,1.0,0 -171067153,"Terraria",play,2.4,0 -171067153,"Hitman Absolution",purchase,1.0,0 -171067153,"Hitman Absolution",play,2.2,0 -171067153,"Warframe",purchase,1.0,0 -171067153,"Warframe",play,2.2,0 -171067153,"Don't Starve",purchase,1.0,0 -171067153,"Don't Starve",play,2.1,0 -171067153,"The Binding of Isaac",purchase,1.0,0 -171067153,"The Binding of Isaac",play,2.1,0 -171067153,"Call of Duty Advanced Warfare",purchase,1.0,0 -171067153,"Call of Duty Advanced Warfare",play,2.1,0 -171067153,"Don't Starve Together Beta",purchase,1.0,0 -171067153,"Don't Starve Together Beta",play,2.1,0 -171067153,"Killing Floor",purchase,1.0,0 -171067153,"Killing Floor",play,1.9,0 -171067153,"Counter-Strike Source",purchase,1.0,0 -171067153,"Counter-Strike Source",play,1.7,0 -171067153,"Survarium",purchase,1.0,0 -171067153,"Survarium",play,1.6,0 -171067153,"Sniper Elite 3",purchase,1.0,0 -171067153,"Sniper Elite 3",play,1.4,0 -171067153,"Warface",purchase,1.0,0 -171067153,"Warface",play,1.1,0 -171067153,"Nether",purchase,1.0,0 -171067153,"Nether",play,1.0,0 -171067153,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -171067153,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.9,0 -171067153,"State of Decay",purchase,1.0,0 -171067153,"State of Decay",play,0.9,0 -171067153,"Gotham City Impostors Free To Play",purchase,1.0,0 -171067153,"Gotham City Impostors Free To Play",play,0.8,0 -171067153,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -171067153,"Rising Storm/Red Orchestra 2 Multiplayer",play,0.7,0 -171067153,"Team Fortress 2",purchase,1.0,0 -171067153,"Team Fortress 2",play,0.7,0 -171067153,"Surgeon Simulator",purchase,1.0,0 -171067153,"Surgeon Simulator",play,0.4,0 -171067153,"Contagion",purchase,1.0,0 -171067153,"Contagion",play,0.4,0 -171067153,"Magic 2014 ",purchase,1.0,0 -171067153,"Magic 2014 ",play,0.3,0 -171067153,"Bloody Trapland",purchase,1.0,0 -171067153,"Bloody Trapland",play,0.2,0 -171067153,"Arma 2 DayZ Mod",purchase,1.0,0 -171067153,"Arma 2 DayZ Mod",play,0.2,0 -171067153,"LEGO The Lord of the Rings",purchase,1.0,0 -171067153,"LEGO The Lord of the Rings",play,0.2,0 -171067153,"Castle Crashers",purchase,1.0,0 -171067153,"Castle Crashers",play,0.1,0 -171067153,"Amnesia A Machine for Pigs",purchase,1.0,0 -171067153,"Amnesia A Machine for Pigs",play,0.1,0 -171067153,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -171067153,"Skullgirls",purchase,1.0,0 -171067153,"Murder Miners",purchase,1.0,0 -171067153,"Just Cause 2",purchase,1.0,0 -171067153,"Arma 2",purchase,1.0,0 -171067153,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -171067153,"Abyss Odyssey",purchase,1.0,0 -171067153,"Arma 3 Zeus",purchase,1.0,0 -171067153,"Bejeweled 3",purchase,1.0,0 -171067153,"BioShock Infinite - Season Pass",purchase,1.0,0 -171067153,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -171067153,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -171067153,"Company of Heroes",purchase,1.0,0 -171067153,"Company of Heroes (New Steam Version)",purchase,1.0,0 -171067153,"Contraption Maker",purchase,1.0,0 -171067153,"Dead Space 2",purchase,1.0,0 -171067153,"Dino D-Day",purchase,1.0,0 -171067153,"Dragon Age Origins",purchase,1.0,0 -171067153,"H1Z1 Test Server",purchase,1.0,0 -171067153,"Half-Life 2 Update",purchase,1.0,0 -171067153,"Hitman Sniper Challenge",purchase,1.0,0 -171067153,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -171067153,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -171067153,"Patch testing for Chivalry",purchase,1.0,0 -171067153,"Skullgirls Endless Beta",purchase,1.0,0 -171067153,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -171067153,"Sniper Elite V2",purchase,1.0,0 -171067153,"TERA",purchase,1.0,0 -171067153,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -171067153,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -171067153,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -171067153,"Two Worlds Epic Edition",purchase,1.0,0 -116283279,"Killing Floor",purchase,1.0,0 -116283279,"Killing Floor",play,142.0,0 -116283279,"Left 4 Dead 2",purchase,1.0,0 -116283279,"Left 4 Dead 2",play,30.0,0 -116283279,"Contagion",purchase,1.0,0 -116283279,"Contagion",play,27.0,0 -116283279,"Sniper Elite Nazi Zombie Army",purchase,1.0,0 -116283279,"Sniper Elite Nazi Zombie Army",play,4.7,0 -116283279,"No More Room in Hell",purchase,1.0,0 -116283279,"No More Room in Hell",play,4.1,0 -116283279,"Fallout New Vegas",purchase,1.0,0 -116283279,"Fallout New Vegas",play,1.9,0 -116283279,"Don't Starve Together Beta",purchase,1.0,0 -116283279,"Don't Starve Together Beta",play,1.5,0 -116283279,"Dino D-Day",purchase,1.0,0 -116283279,"Dino D-Day",play,1.5,0 -116283279,"Fallen Earth",purchase,1.0,0 -116283279,"Fallen Earth",play,1.2,0 -116283279,"POSTAL 2",purchase,1.0,0 -116283279,"POSTAL 2",play,1.0,0 -116283279,"Fallout Tactics",purchase,1.0,0 -116283279,"Fallout Tactics",play,0.5,0 -116283279,"Earth 2160",purchase,1.0,0 -116283279,"Earth 2160",play,0.3,0 -116283279,"Sniper Elite Nazi Zombie Army 2",purchase,1.0,0 -116283279,"Sniper Elite Nazi Zombie Army 2",play,0.3,0 -116283279,"Cry of Fear",purchase,1.0,0 -116283279,"Don't Starve",purchase,1.0,0 -116283279,"Fallout",purchase,1.0,0 -116283279,"Fallout 2",purchase,1.0,0 -116283279,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -116283279,"Fallout New Vegas Dead Money",purchase,1.0,0 -116283279,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -116283279,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -121382416,"Total War SHOGUN 2",purchase,1.0,0 -149331941,"Counter-Strike Global Offensive",purchase,1.0,0 -149331941,"Counter-Strike Global Offensive",play,85.0,0 -149331941,"Left 4 Dead 2",purchase,1.0,0 -149331941,"Left 4 Dead 2",play,65.0,0 -149331941,"PAYDAY 2",purchase,1.0,0 -149331941,"PAYDAY 2",play,28.0,0 -149331941,"Dota 2",purchase,1.0,0 -149331941,"Dota 2",play,4.4,0 -149331941,"Team Fortress 2",purchase,1.0,0 -149331941,"Team Fortress 2",play,1.3,0 -149331941,"Lost Planet 2",purchase,1.0,0 -149331941,"Lost Planet 2",play,1.0,0 -149331941,"H1Z1",purchase,1.0,0 -149331941,"H1Z1",play,0.8,0 -149331941,"Rise of Incarnates",purchase,1.0,0 -149331941,"H1Z1 Test Server",purchase,1.0,0 -153945772,"Dota 2",purchase,1.0,0 -153945772,"Dota 2",play,1625.0,0 -153945772,"Neverwinter",purchase,1.0,0 -153945772,"Neverwinter",play,89.0,0 -153945772,"Counter-Strike Global Offensive",purchase,1.0,0 -153945772,"Counter-Strike Global Offensive",play,33.0,0 -153945772,"Team Fortress 2",purchase,1.0,0 -153945772,"Team Fortress 2",play,17.8,0 -153945772,"No More Room in Hell",purchase,1.0,0 -153945772,"No More Room in Hell",play,8.2,0 -153945772,"Magicka Wizard Wars",purchase,1.0,0 -153945772,"Magicka Wizard Wars",play,3.1,0 -153945772,"PlanetSide 2",purchase,1.0,0 -153945772,"PlanetSide 2",play,1.6,0 -153945772,"Warframe",purchase,1.0,0 -153945772,"Warframe",play,1.3,0 -153945772,"FreeStyle2 Street Basketball",purchase,1.0,0 -153945772,"FreeStyle2 Street Basketball",play,1.2,0 -153945772,"Garry's Mod",purchase,1.0,0 -153945772,"Garry's Mod",play,1.1,0 -153945772,"Unturned",purchase,1.0,0 -153945772,"Unturned",play,0.3,0 -153945772,"Brick-Force",purchase,1.0,0 -153945772,"Cubic Castles",purchase,1.0,0 -153945772,"Nosgoth",purchase,1.0,0 -153945772,"ORION Prelude",purchase,1.0,0 -153945772,"Robocraft",purchase,1.0,0 -61502266,"Napoleon Total War",purchase,1.0,0 -61502266,"Napoleon Total War",play,5.0,0 -102921672,"Terraria",purchase,1.0,0 -102921672,"Terraria",play,25.0,0 -102921672,"Fallout New Vegas",purchase,1.0,0 -102921672,"Fallout New Vegas",play,19.0,0 -102921672,"Darksiders II",purchase,1.0,0 -102921672,"Darksiders II",play,10.3,0 -102921672,"Killing Floor",purchase,1.0,0 -102921672,"Killing Floor",play,9.4,0 -102921672,"Assassin's Creed III",purchase,1.0,0 -102921672,"Assassin's Creed III",play,5.8,0 -102921672,"Counter-Strike Global Offensive",purchase,1.0,0 -102921672,"Counter-Strike Global Offensive",play,5.4,0 -102921672,"Torchlight II",purchase,1.0,0 -102921672,"Torchlight II",play,4.7,0 -102921672,"Borderlands 2",purchase,1.0,0 -102921672,"Borderlands 2",play,3.0,0 -102921672,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -102921672,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,2.7,0 -102921672,"Sid Meier's Civilization V",purchase,1.0,0 -102921672,"Sid Meier's Civilization V",play,2.3,0 -102921672,"The Binding of Isaac",purchase,1.0,0 -102921672,"The Binding of Isaac",play,2.0,0 -102921672,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -102921672,"Call of Duty Modern Warfare 2 - Multiplayer",play,1.6,0 -102921672,"Garry's Mod",purchase,1.0,0 -102921672,"Garry's Mod",play,1.5,0 -102921672,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -102921672,"Warhammer 40,000 Dawn of War II Retribution",play,0.5,0 -102921672,"Metro 2033",purchase,1.0,0 -102921672,"Metro 2033",play,0.3,0 -102921672,"Star Wars - Battlefront II",purchase,1.0,0 -102921672,"Star Wars - Battlefront II",play,0.3,0 -102921672,"Arma 2 Operation Arrowhead",purchase,1.0,0 -102921672,"Arma 2",purchase,1.0,0 -102921672,"Call of Duty Modern Warfare 2",purchase,1.0,0 -102921672,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -102921672,"Awesomenauts",purchase,1.0,0 -102921672,"Company of Heroes",purchase,1.0,0 -102921672,"Company of Heroes (New Steam Version)",purchase,1.0,0 -102921672,"Company of Heroes Opposing Fronts",purchase,1.0,0 -102921672,"Counter-Strike Source",purchase,1.0,0 -102921672,"Darksiders",purchase,1.0,0 -102921672,"Homefront",purchase,1.0,0 -102921672,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -102921672,"MX vs. ATV Reflex",purchase,1.0,0 -102921672,"Nexuiz",purchase,1.0,0 -102921672,"Nexuiz Beta",purchase,1.0,0 -102921672,"Nexuiz STUPID Mode",purchase,1.0,0 -102921672,"Poker Night 2",purchase,1.0,0 -102921672,"Poker Night at the Inventory",purchase,1.0,0 -102921672,"Red Faction",purchase,1.0,0 -102921672,"Red Faction Armageddon",purchase,1.0,0 -102921672,"Red Faction II",purchase,1.0,0 -102921672,"Saints Row 2",purchase,1.0,0 -102921672,"Saints Row The Third",purchase,1.0,0 -102921672,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -102921672,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -102921672,"Supreme Commander",purchase,1.0,0 -102921672,"Supreme Commander Forged Alliance",purchase,1.0,0 -102921672,"Titan Quest",purchase,1.0,0 -102921672,"Titan Quest Immortal Throne",purchase,1.0,0 -102921672,"Warhammer 40,000 Space Marine",purchase,1.0,0 -102921672,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -230967602,"Dota 2",purchase,1.0,0 -230967602,"Dota 2",play,76.0,0 -230967602,"Dogs of War Online - Beta",purchase,1.0,0 -230967602,"Dragons and Titans",purchase,1.0,0 -230967602,"HAWKEN",purchase,1.0,0 -230967602,"Kings Bounty Legions",purchase,1.0,0 -230967602,"Loadout",purchase,1.0,0 -230967602,"Marvel Puzzle Quest",purchase,1.0,0 -230967602,"Neverwinter",purchase,1.0,0 -230967602,"Panzar",purchase,1.0,0 -230967602,"Prime World",purchase,1.0,0 -230967602,"Ragnarok",purchase,1.0,0 -230967602,"Star Trek Online",purchase,1.0,0 -230967602,"Stronghold Kingdoms",purchase,1.0,0 -230967602,"Tactical Intervention",purchase,1.0,0 -230967602,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -230967602,"War Inc. Battlezone",purchase,1.0,0 -230967602,"War Thunder",purchase,1.0,0 -250014989,"Warframe",purchase,1.0,0 -124566319,"Team Fortress 2",purchase,1.0,0 -124566319,"Team Fortress 2",play,2.5,0 -73274639,"Call of Duty Black Ops",purchase,1.0,0 -73274639,"Call of Duty Black Ops",play,0.2,0 -73274639,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -260567796,"BLOCKADE 3D",purchase,1.0,0 -260567796,"BLOCKADE 3D",play,3.1,0 -260567796,"Brick-Force",purchase,1.0,0 -260567796,"Brick-Force",play,0.1,0 -113530439,"Dota 2",purchase,1.0,0 -113530439,"Dota 2",play,809.0,0 -186452942,"Dota 2",purchase,1.0,0 -186452942,"Dota 2",play,14.8,0 -186452942,"Unturned",purchase,1.0,0 -259038184,"Dota 2",purchase,1.0,0 -259038184,"Dota 2",play,124.0,0 -259038184,"Grand Theft Auto V",purchase,1.0,0 -259038184,"Grand Theft Auto V",play,96.0,0 -149820947,"Dota 2",purchase,1.0,0 -149820947,"Dota 2",play,274.0,0 -149820947,"APB Reloaded",purchase,1.0,0 -149820947,"Blacklight Retribution",purchase,1.0,0 -149820947,"HAWKEN",purchase,1.0,0 -149820947,"Heroes & Generals",purchase,1.0,0 -149820947,"ROSE Online",purchase,1.0,0 -149820947,"Spiral Knights",purchase,1.0,0 -149820947,"Unturned",purchase,1.0,0 -149820947,"War Inc. Battlezone",purchase,1.0,0 -213235578,"Warface",purchase,1.0,0 -213235578,"Warface",play,9.8,0 -213235578,"Happy Wars",purchase,1.0,0 -213235578,"Happy Wars",play,1.0,0 -160430559,"Dota 2",purchase,1.0,0 -160430559,"Dota 2",play,2.6,0 -40045419,"Counter-Strike Source",purchase,1.0,0 -40045419,"Day of Defeat Source",purchase,1.0,0 -40045419,"Half-Life 2 Deathmatch",purchase,1.0,0 -40045419,"Half-Life 2 Lost Coast",purchase,1.0,0 -190798987,"Unturned",purchase,1.0,0 -190798987,"Unturned",play,2.3,0 -210296537,"Unturned",purchase,1.0,0 -210296537,"Unturned",play,0.5,0 -118236431,"Dota 2",purchase,1.0,0 -118236431,"Dota 2",play,216.0,0 -248364783,"Dota 2",purchase,1.0,0 -248364783,"Dota 2",play,161.0,0 -104418822,"Football Manager 2012",purchase,1.0,0 -104418822,"Football Manager 2012",play,514.0,0 -22875444,"Half-Life 2",purchase,1.0,0 -22875444,"Half-Life 2",play,3.4,0 -22875444,"Half-Life 2 Lost Coast",purchase,1.0,0 -22875444,"Half-Life 2 Lost Coast",play,0.2,0 -22875444,"Counter-Strike Source",purchase,1.0,0 -22875444,"Half-Life 2 Deathmatch",purchase,1.0,0 -22875444,"Half-Life Source",purchase,1.0,0 -22875444,"Half-Life Deathmatch Source",purchase,1.0,0 -224929163,"Euro Truck Simulator 2",purchase,1.0,0 -224929163,"Euro Truck Simulator 2",play,32.0,0 -224929163,"Scania Truck Driving Simulator",purchase,1.0,0 -224929163,"Scania Truck Driving Simulator",play,0.7,0 -224929163,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -224929163,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -144463433,"Call of Duty Modern Warfare 3",purchase,1.0,0 -144463433,"Call of Duty Modern Warfare 3",play,48.0,0 -144463433,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -144463433,"Call of Duty Modern Warfare 3 - Multiplayer",play,1.1,0 -62858973,"Tomb Raider",purchase,1.0,0 -62858973,"Tomb Raider",play,63.0,0 -62858973,"Portal 2",purchase,1.0,0 -62858973,"Portal 2",play,11.1,0 -62858973,"Waking Mars",purchase,1.0,0 -62858973,"Waking Mars",play,8.1,0 -62858973,"The Talos Principle",purchase,1.0,0 -62858973,"The Talos Principle",play,4.5,0 -62858973,"Thomas Was Alone",purchase,1.0,0 -62858973,"Thomas Was Alone",play,2.6,0 -62858973,"Grim Fandango Remastered",purchase,1.0,0 -62858973,"Grim Fandango Remastered",play,2.4,0 -165130273,"Dota 2",purchase,1.0,0 -165130273,"Dota 2",play,0.2,0 -199637398,"Dota 2",purchase,1.0,0 -199637398,"Dota 2",play,22.0,0 -199637398,"Neverwinter",purchase,1.0,0 -199637398,"Neverwinter",play,7.9,0 -199637398,"Path of Exile",purchase,1.0,0 -199637398,"Path of Exile",play,3.7,0 -205329032,"Counter-Strike Global Offensive",purchase,1.0,0 -205329032,"Counter-Strike Global Offensive",play,1447.0,0 -205329032,"Warframe",purchase,1.0,0 -205329032,"Warframe",play,6.0,0 -205329032,"CSGO Player Profiles",purchase,1.0,0 -205329032,"CSGO Player Profiles - Device",purchase,1.0,0 -205329032,"CSGO Player Profiles - Edward",purchase,1.0,0 -205329032,"CSGO Player Profiles - Fallen",purchase,1.0,0 -205329032,"CSGO Player Profiles - Get_Right",purchase,1.0,0 -205329032,"CSGO Player Profiles - KennyS",purchase,1.0,0 -205329032,"CSGO Player Profiles - Markeloff",purchase,1.0,0 -205329032,"CSGO Player Profiles - N0thing",purchase,1.0,0 -205329032,"CSGO Player Profiles - Olofmeister",purchase,1.0,0 -205329032,"CSGO Player Profiles - Taz",purchase,1.0,0 -233692859,"Dota 2",purchase,1.0,0 -233692859,"Dota 2",play,495.0,0 -233692859,"Archeblade",purchase,1.0,0 -200734968,"Counter-Strike Nexon Zombies",purchase,1.0,0 -170460109,"Counter-Strike Global Offensive",purchase,1.0,0 -170460109,"Counter-Strike Global Offensive",play,484.0,0 -170460109,"DayZ",purchase,1.0,0 -170460109,"DayZ",play,117.0,0 -170460109,"Vindictus",purchase,1.0,0 -170460109,"Vindictus",play,50.0,0 -170460109,"Warframe",purchase,1.0,0 -170460109,"Warframe",play,48.0,0 -170460109,"Fallout New Vegas",purchase,1.0,0 -170460109,"Fallout New Vegas",play,46.0,0 -170460109,"Fallout 4",purchase,1.0,0 -170460109,"Fallout 4",play,42.0,0 -170460109,"America's Army Proving Grounds",purchase,1.0,0 -170460109,"America's Army Proving Grounds",play,27.0,0 -170460109,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -170460109,"Tom Clancy's Ghost Recon Phantoms - NA",play,25.0,0 -170460109,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -170460109,"Kingdoms of Amalur Reckoning",play,11.9,0 -170460109,"Relic Hunters Zero",purchase,1.0,0 -170460109,"Relic Hunters Zero",play,7.4,0 -170460109,"Dirty Bomb",purchase,1.0,0 -170460109,"Dirty Bomb",play,5.6,0 -170460109,"Ultra Street Fighter IV",purchase,1.0,0 -170460109,"Ultra Street Fighter IV",play,5.5,0 -170460109,"Soldier Front 2",purchase,1.0,0 -170460109,"Soldier Front 2",play,3.6,0 -170460109,"Elsword",purchase,1.0,0 -170460109,"Elsword",play,3.6,0 -170460109,"PlanetSide 2",purchase,1.0,0 -170460109,"PlanetSide 2",play,1.8,0 -170460109,"Unturned",purchase,1.0,0 -170460109,"Unturned",play,1.6,0 -170460109,"Arma 2 Operation Arrowhead",purchase,1.0,0 -170460109,"Arma 2 Operation Arrowhead",play,1.4,0 -170460109,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -170460109,"Fallout 3 - Game of the Year Edition",play,1.4,0 -170460109,"Rise of Incarnates",purchase,1.0,0 -170460109,"Rise of Incarnates",play,1.3,0 -170460109,"Dragon Nest",purchase,1.0,0 -170460109,"Dragon Nest",play,1.2,0 -170460109,"Left 4 Dead",purchase,1.0,0 -170460109,"Left 4 Dead",play,1.1,0 -170460109,"Heroes & Generals",purchase,1.0,0 -170460109,"Heroes & Generals",play,0.9,0 -170460109,"Sleeping Dogs",purchase,1.0,0 -170460109,"Sleeping Dogs",play,0.9,0 -170460109,"Tactical Intervention",purchase,1.0,0 -170460109,"Tactical Intervention",play,0.8,0 -170460109,"APB Reloaded",purchase,1.0,0 -170460109,"APB Reloaded",play,0.8,0 -170460109,"Brawlhalla",purchase,1.0,0 -170460109,"Brawlhalla",play,0.8,0 -170460109,"FreeStyle2 Street Basketball",purchase,1.0,0 -170460109,"FreeStyle2 Street Basketball",play,0.6,0 -170460109,"Warside",purchase,1.0,0 -170460109,"Warside",play,0.6,0 -170460109,"Spooky's House of Jump Scares",purchase,1.0,0 -170460109,"Spooky's House of Jump Scares",play,0.6,0 -170460109,"Blacklight Retribution",purchase,1.0,0 -170460109,"Blacklight Retribution",play,0.5,0 -170460109,"Trove",purchase,1.0,0 -170460109,"Trove",play,0.4,0 -170460109,"Dead Space 2",purchase,1.0,0 -170460109,"Dead Space 2",play,0.4,0 -170460109,"Cry of Fear",purchase,1.0,0 -170460109,"Cry of Fear",play,0.4,0 -170460109,"Left 4 Dead 2",purchase,1.0,0 -170460109,"Left 4 Dead 2",play,0.4,0 -170460109,"No More Room in Hell",purchase,1.0,0 -170460109,"No More Room in Hell",play,0.3,0 -170460109,"Team Fortress 2",purchase,1.0,0 -170460109,"Team Fortress 2",play,0.2,0 -170460109,"Mitsurugi Kamui Hikae",purchase,1.0,0 -170460109,"Mitsurugi Kamui Hikae",play,0.2,0 -170460109,"Gear Up",purchase,1.0,0 -170460109,"Gear Up",play,0.2,0 -170460109,"Arma 2",purchase,1.0,0 -170460109,"MapleStory",purchase,1.0,0 -170460109,"Ultimate Tic-Tac-Toe",purchase,1.0,0 -170460109,"Arma 2 DayZ Mod",purchase,1.0,0 -170460109,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -170460109,"Crystals of Time",purchase,1.0,0 -170460109,"EVGA PrecisionX 16",purchase,1.0,0 -170460109,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -170460109,"Fallout New Vegas Dead Money",purchase,1.0,0 -170460109,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -170460109,"Hacker Evolution Duality",purchase,1.0,0 -170460109,"iBomber Defense Pacific",purchase,1.0,0 -170460109,"Iron Soul",purchase,1.0,0 -170460109,"KnightShift",purchase,1.0,0 -170460109,"Mortal Kombat Legacy - Ep. 3 Johnny Cage",purchase,1.0,0 -170460109,"Mortal Kombat Legacy - Ep. 4 Kitana & Mileena (Part 1)",purchase,1.0,0 -170460109,"Mortal Kombat Legacy - Ep. 5 Kitana & Mileena (Part 2)",purchase,1.0,0 -170460109,"Mortal Kombat Legacy - Ep. 6 Raiden",purchase,1.0,0 -170460109,"Mortal Kombat Legacy - Ep. 7 Scorpion and Sub-Zero (Part 1)",purchase,1.0,0 -170460109,"Mortal Kombat Legacy - Ep. 8 Scorpion and Sub-Zero (Part 2)",purchase,1.0,0 -170460109,"Mortal Kombat Legacy - Ep. 9 Cyrax & Sektor",purchase,1.0,0 -170460109,"Nosgoth",purchase,1.0,0 -170460109,"Survarium",purchase,1.0,0 -170460109,"TERA",purchase,1.0,0 -170460109,"Zombies Monsters Robots",purchase,1.0,0 -231190223,"Dota 2",purchase,1.0,0 -231190223,"Dota 2",play,0.5,0 -36791999,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -36791999,"Rising Storm/Red Orchestra 2 Multiplayer",play,150.0,0 -36791999,"Counter-Strike Source",purchase,1.0,0 -36791999,"Counter-Strike Source",play,74.0,0 -36791999,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -36791999,"Call of Duty Black Ops - Multiplayer",play,40.0,0 -36791999,"Mafia II",purchase,1.0,0 -36791999,"Mafia II",play,32.0,0 -36791999,"Fallout New Vegas",purchase,1.0,0 -36791999,"Fallout New Vegas",play,14.9,0 -36791999,"Lead and Gold - Gangs of the Wild West",purchase,1.0,0 -36791999,"Lead and Gold - Gangs of the Wild West",play,11.5,0 -36791999,"Max Payne 3",purchase,1.0,0 -36791999,"Max Payne 3",play,10.9,0 -36791999,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -36791999,"Call of Duty Modern Warfare 3 - Multiplayer",play,10.7,0 -36791999,"Day of Defeat Source",purchase,1.0,0 -36791999,"Day of Defeat Source",play,7.7,0 -36791999,"Call of Duty Black Ops",purchase,1.0,0 -36791999,"Call of Duty Black Ops",play,6.4,0 -36791999,"Game of Thrones ",purchase,1.0,0 -36791999,"Game of Thrones ",play,5.6,0 -36791999,"Risen 2 - Dark Waters",purchase,1.0,0 -36791999,"Risen 2 - Dark Waters",play,1.2,0 -36791999,"Call of Duty Modern Warfare 3",purchase,1.0,0 -36791999,"Half-Life 2 Deathmatch",purchase,1.0,0 -36791999,"Half-Life 2 Lost Coast",purchase,1.0,0 -36791999,"Men of War Red Tide",purchase,1.0,0 -36791999,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -635733,"Counter-Strike",purchase,1.0,0 -635733,"Counter-Strike",play,0.6,0 -635733,"Day of Defeat",purchase,1.0,0 -635733,"Deathmatch Classic",purchase,1.0,0 -635733,"Half-Life",purchase,1.0,0 -635733,"Half-Life Blue Shift",purchase,1.0,0 -635733,"Half-Life Opposing Force",purchase,1.0,0 -635733,"Ricochet",purchase,1.0,0 -635733,"Team Fortress Classic",purchase,1.0,0 -183170604,"Dota 2",purchase,1.0,0 -183170604,"Dota 2",play,2.9,0 -116494569,"Counter-Strike Global Offensive",purchase,1.0,0 -116494569,"Counter-Strike Global Offensive",play,1899.0,0 -116494569,"Counter-Strike Source",purchase,1.0,0 -116494569,"Counter-Strike Source",play,246.0,0 -116494569,"Arma 2 Operation Arrowhead",purchase,1.0,0 -116494569,"Arma 2 Operation Arrowhead",play,204.0,0 -116494569,"Heroes & Generals",purchase,1.0,0 -116494569,"Heroes & Generals",play,47.0,0 -116494569,"Team Fortress 2",purchase,1.0,0 -116494569,"Team Fortress 2",play,46.0,0 -116494569,"Rust",purchase,1.0,0 -116494569,"Rust",play,29.0,0 -116494569,"Garry's Mod",purchase,1.0,0 -116494569,"Garry's Mod",play,15.2,0 -116494569,"Euro Truck Simulator 2",purchase,1.0,0 -116494569,"Euro Truck Simulator 2",play,14.7,0 -116494569,"Ace of Spades",purchase,1.0,0 -116494569,"Ace of Spades",play,10.1,0 -116494569,"Left 4 Dead 2",purchase,1.0,0 -116494569,"Left 4 Dead 2",play,8.5,0 -116494569,"APB Reloaded",purchase,1.0,0 -116494569,"APB Reloaded",play,2.6,0 -116494569,"Unturned",purchase,1.0,0 -116494569,"Unturned",play,2.6,0 -116494569,"Arma 2",purchase,1.0,0 -116494569,"Arma 2",play,2.1,0 -116494569,"Sniper Elite Nazi Zombie Army",purchase,1.0,0 -116494569,"Sniper Elite Nazi Zombie Army",play,2.0,0 -116494569,"Saints Row 2",purchase,1.0,0 -116494569,"Saints Row 2",play,1.0,0 -116494569,"RACE 07",purchase,1.0,0 -116494569,"RACE 07",play,0.8,0 -116494569,"theHunter",purchase,1.0,0 -116494569,"theHunter",play,0.8,0 -116494569,"Sniper Elite V2",purchase,1.0,0 -116494569,"Sniper Elite V2",play,0.7,0 -116494569,"PAYDAY The Heist",purchase,1.0,0 -116494569,"PAYDAY The Heist",play,0.7,0 -116494569,"Arma 2 DayZ Mod",purchase,1.0,0 -116494569,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -116494569,"GT Power Expansion",purchase,1.0,0 -116494569,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -116494569,"STCC II",purchase,1.0,0 -116494569,"The Retro Expansion",purchase,1.0,0 -116494569,"The WTCC 2010 Pack",purchase,1.0,0 -220302789,"Dota 2",purchase,1.0,0 -220302789,"Dota 2",play,2.6,0 -291527866,"GameMaker Studio",purchase,1.0,0 -291527866,"GameMaker Studio",play,2.0,0 -291527866,"ACE - Arena Cyber Evolution",purchase,1.0,0 -291527866,"Heroes Never Lose Professor Puzzler's Perplexing Ploy",purchase,1.0,0 -291527866,"Tiny Brains",purchase,1.0,0 -185390486,"Dota 2",purchase,1.0,0 -185390486,"Dota 2",play,1298.0,0 -185390486,"Counter-Strike Global Offensive",purchase,1.0,0 -185390486,"Counter-Strike Global Offensive",play,26.0,0 -185390486,"SMITE",purchase,1.0,0 -185390486,"SMITE",play,1.4,0 -185390486,"Fishing Planet",purchase,1.0,0 -185390486,"Fishing Planet",play,0.6,0 -185390486,"Quake Live",purchase,1.0,0 -185390486,"Quake Live",play,0.3,0 -185390486,"Counter-Strike Source",purchase,1.0,0 -185390486,"Counter-Strike Source",play,0.3,0 -185390486,"Counter-Strike Condition Zero",purchase,1.0,0 -185390486,"Counter-Strike Condition Zero",play,0.2,0 -185390486,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -185390486,"Counter-Strike",purchase,1.0,0 -185390486,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -94429644,"AirMech",purchase,1.0,0 -94429644,"Dead Island Epidemic",purchase,1.0,0 -94429644,"Nosgoth",purchase,1.0,0 -94429644,"War Thunder",purchase,1.0,0 -20464587,"Terraria",purchase,1.0,0 -20464587,"Terraria",play,78.0,0 -20464587,"Time Clickers",purchase,1.0,0 -20464587,"Time Clickers",play,71.0,0 -20464587,"AdVenture Capitalist",purchase,1.0,0 -20464587,"AdVenture Capitalist",play,57.0,0 -20464587,"Path of Exile",purchase,1.0,0 -20464587,"Path of Exile",play,56.0,0 -20464587,"X-COM UFO Defense",purchase,1.0,0 -20464587,"X-COM UFO Defense",play,31.0,0 -20464587,"Creativerse",purchase,1.0,0 -20464587,"Creativerse",play,6.3,0 -20464587,"Counter-Strike Source",purchase,1.0,0 -20464587,"Counter-Strike Source",play,5.8,0 -20464587,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -20464587,"Tom Clancy's Ghost Recon Phantoms - NA",play,3.5,0 -20464587,"Neverwinter",purchase,1.0,0 -20464587,"Neverwinter",play,2.9,0 -20464587,"Day of Defeat Source",purchase,1.0,0 -20464587,"Day of Defeat Source",play,1.9,0 -20464587,"No More Room in Hell",purchase,1.0,0 -20464587,"No More Room in Hell",play,1.2,0 -20464587,"Team Fortress 2",purchase,1.0,0 -20464587,"Team Fortress 2",play,0.9,0 -20464587,"HAWKEN",purchase,1.0,0 -20464587,"HAWKEN",play,0.9,0 -20464587,"Half-Life 2 Lost Coast",purchase,1.0,0 -20464587,"Half-Life 2 Lost Coast",play,0.8,0 -20464587,"RIFT",purchase,1.0,0 -20464587,"RIFT",play,0.8,0 -20464587,"Robocraft",purchase,1.0,0 -20464587,"Robocraft",play,0.6,0 -20464587,"Battle Nations",purchase,1.0,0 -20464587,"Battle Nations",play,0.6,0 -20464587,"Stronghold Kingdoms",purchase,1.0,0 -20464587,"Stronghold Kingdoms",play,0.6,0 -20464587,"Magic Duels",purchase,1.0,0 -20464587,"Magic Duels",play,0.5,0 -20464587,"MechWarrior Online",purchase,1.0,0 -20464587,"MechWarrior Online",play,0.5,0 -20464587,"AirMech",purchase,1.0,0 -20464587,"AirMech",play,0.3,0 -20464587,"Loadout",purchase,1.0,0 -20464587,"Loadout",play,0.3,0 -20464587,"Endless Sky",purchase,1.0,0 -20464587,"Endless Sky",play,0.3,0 -20464587,"Counter-Strike Nexon Zombies",purchase,1.0,0 -20464587,"Counter-Strike Nexon Zombies",play,0.3,0 -20464587,"MoW Face Off XL",purchase,1.0,0 -20464587,"MoW Face Off XL",play,0.3,0 -20464587,"Alien Swarm",purchase,1.0,0 -20464587,"Alien Swarm",play,0.3,0 -20464587,"Immortal Empire",purchase,1.0,0 -20464587,"Immortal Empire",play,0.3,0 -20464587,"Unturned",purchase,1.0,0 -20464587,"Unturned",play,0.3,0 -20464587,"Total War Battles KINGDOM",purchase,1.0,0 -20464587,"Total War Battles KINGDOM",play,0.3,0 -20464587,"NEOTOKYO",purchase,1.0,0 -20464587,"NEOTOKYO",play,0.2,0 -20464587,"Evolution RTS",purchase,1.0,0 -20464587,"Evolution RTS",play,0.2,0 -20464587,"Infinite Crisis",purchase,1.0,0 -20464587,"Infinite Crisis",play,0.1,0 -20464587,"Defiance",purchase,1.0,0 -20464587,"Defiance",play,0.1,0 -20464587,"Walkover",purchase,1.0,0 -20464587,"BLOCKADE 3D",purchase,1.0,0 -20464587,"Apotheon Arena",purchase,1.0,0 -20464587,"Back to Dinosaur Island ",purchase,1.0,0 -20464587,"The Settlers Online",purchase,1.0,0 -20464587,"X-COM Apocalypse",purchase,1.0,0 -20464587,"Tactical Intervention",purchase,1.0,0 -20464587,"Aftermath",purchase,1.0,0 -20464587,"Warface",purchase,1.0,0 -20464587,"Heroes of SoulCraft",purchase,1.0,0 -20464587,"SAGA",purchase,1.0,0 -20464587,"Odyssey Reborn",purchase,1.0,0 -20464587,"CroNix",purchase,1.0,0 -20464587,"Dethroned!",purchase,1.0,0 -20464587,"Dungeons & Dragons Online",purchase,1.0,0 -20464587,"Half-Life 2 Deathmatch",purchase,1.0,0 -20464587,"Heroes & Generals",purchase,1.0,0 -20464587,"Marvel Heroes 2015",purchase,1.0,0 -20464587,"Nosgoth",purchase,1.0,0 -20464587,"Warframe",purchase,1.0,0 -20464587,"X-COM Enforcer",purchase,1.0,0 -20464587,"X-COM Interceptor",purchase,1.0,0 -20464587,"X-COM Terror from the Deep",purchase,1.0,0 -178224490,"Dota 2",purchase,1.0,0 -178224490,"Dota 2",play,0.2,0 -161211955,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -161211955,"Call of Duty Black Ops II - Multiplayer",play,150.0,0 -161211955,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -161211955,"Call of Duty Modern Warfare 3 - Multiplayer",play,19.3,0 -161211955,"Counter-Strike Global Offensive",purchase,1.0,0 -161211955,"Counter-Strike Global Offensive",play,5.2,0 -161211955,"Far Cry 3",purchase,1.0,0 -161211955,"Far Cry 3",play,1.9,0 -161211955,"Call of Duty Modern Warfare 3",purchase,1.0,0 -161211955,"Call of Duty Modern Warfare 3",play,1.3,0 -161211955,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -161211955,"Call of Duty Black Ops II",purchase,1.0,0 -279204362,"Dota 2",purchase,1.0,0 -279204362,"Dota 2",play,1.0,0 -96723015,"Team Fortress 2",purchase,1.0,0 -96723015,"Team Fortress 2",play,1.7,0 -241410229,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -241410229,"Unturned",purchase,1.0,0 -180836607,"Team Fortress 2",purchase,1.0,0 -180836607,"Team Fortress 2",play,0.6,0 -240157419,"Dota 2",purchase,1.0,0 -240157419,"Dota 2",play,0.3,0 -238285173,"Dota 2",purchase,1.0,0 -238285173,"Dota 2",play,0.5,0 -60859324,"Warframe",purchase,1.0,0 -60859324,"Warframe",play,603.0,0 -60859324,"Sid Meier's Civilization V",purchase,1.0,0 -60859324,"Sid Meier's Civilization V",play,199.0,0 -60859324,"ARK Survival Evolved",purchase,1.0,0 -60859324,"ARK Survival Evolved",play,160.0,0 -60859324,"Fallout 4",purchase,1.0,0 -60859324,"Fallout 4",play,71.0,0 -60859324,"DRAGON BALL XENOVERSE",purchase,1.0,0 -60859324,"DRAGON BALL XENOVERSE",play,70.0,0 -60859324,"Terraria",purchase,1.0,0 -60859324,"Terraria",play,57.0,0 -60859324,"PlanetSide 2",purchase,1.0,0 -60859324,"PlanetSide 2",play,51.0,0 -60859324,"Dying Light",purchase,1.0,0 -60859324,"Dying Light",play,49.0,0 -60859324,"Batman Arkham Knight",purchase,1.0,0 -60859324,"Batman Arkham Knight",play,39.0,0 -60859324,"The Elder Scrolls Online Tamriel Unlimited",purchase,1.0,0 -60859324,"The Elder Scrolls Online Tamriel Unlimited",play,35.0,0 -60859324,"Assassins Creed Unity",purchase,1.0,0 -60859324,"Assassins Creed Unity",play,31.0,0 -60859324,"The Elder Scrolls V Skyrim",purchase,1.0,0 -60859324,"The Elder Scrolls V Skyrim",play,28.0,0 -60859324,"The Crew",purchase,1.0,0 -60859324,"The Crew",play,26.0,0 -60859324,"Warhammer End Times - Vermintide",purchase,1.0,0 -60859324,"Warhammer End Times - Vermintide",play,23.0,0 -60859324,"Marvel Heroes 2015",purchase,1.0,0 -60859324,"Marvel Heroes 2015",play,21.0,0 -60859324,"Starbound",purchase,1.0,0 -60859324,"Starbound",play,20.0,0 -60859324,"Batman Arkham City GOTY",purchase,1.0,0 -60859324,"Batman Arkham City GOTY",play,19.4,0 -60859324,"PAYDAY 2",purchase,1.0,0 -60859324,"PAYDAY 2",play,17.8,0 -60859324,"War Thunder",purchase,1.0,0 -60859324,"War Thunder",play,15.7,0 -60859324,"Borderlands The Pre-Sequel",purchase,1.0,0 -60859324,"Borderlands The Pre-Sequel",play,12.7,0 -60859324,"Evolve",purchase,1.0,0 -60859324,"Evolve",play,10.1,0 -60859324,"Dungeon Defenders II",purchase,1.0,0 -60859324,"Dungeon Defenders II",play,9.1,0 -60859324,"FORCED",purchase,1.0,0 -60859324,"FORCED",play,7.0,0 -60859324,"Defiance",purchase,1.0,0 -60859324,"Defiance",play,4.7,0 -60859324,"Mad Max",purchase,1.0,0 -60859324,"Mad Max",play,3.9,0 -60859324,"HELLDIVERS",purchase,1.0,0 -60859324,"HELLDIVERS",play,3.4,0 -60859324,"Darksiders II",purchase,1.0,0 -60859324,"Darksiders II",play,3.0,0 -60859324,"Alien Swarm",purchase,1.0,0 -60859324,"Alien Swarm",play,2.5,0 -60859324,"Fallout New Vegas",purchase,1.0,0 -60859324,"Fallout New Vegas",play,2.3,0 -60859324,"Nation Red",purchase,1.0,0 -60859324,"Nation Red",play,1.9,0 -60859324,"Middle-earth Shadow of Mordor",purchase,1.0,0 -60859324,"Middle-earth Shadow of Mordor",play,1.7,0 -60859324,"Thief",purchase,1.0,0 -60859324,"Thief",play,0.2,0 -60859324,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -60859324,"FINAL FANTASY XI",purchase,1.0,0 -60859324,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -60859324,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -60859324,"Batman Arkham Origins - Initiation",purchase,1.0,0 -60859324,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -60859324,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -60859324,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -60859324,"Batman Arkham Origins",purchase,1.0,0 -60859324,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -60859324,"Dead Island Epidemic",purchase,1.0,0 -60859324,"Evolve - Behemoth",purchase,1.0,0 -60859324,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -60859324,"Fallout New Vegas Dead Money",purchase,1.0,0 -60859324,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -60859324,"Left 4 Dead",purchase,1.0,0 -60859324,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -60859324,"Starbound - Unstable",purchase,1.0,0 -60859324,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -60859324,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -60859324,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -60859324,"Warhammer End Times - Vermintide Sigmar's Blessing",purchase,1.0,0 -86828660,"Curse of Mermos",purchase,1.0,0 -280027508,"Counter-Strike Global Offensive",purchase,1.0,0 -280027508,"Counter-Strike Global Offensive",play,266.0,0 -57905818,"Counter-Strike Source",purchase,1.0,0 -57905818,"Counter-Strike Source",play,4405.0,0 -57905818,"Battle Nations",purchase,1.0,0 -57905818,"Battle Nations",play,1047.0,0 -57905818,"Counter-Strike Global Offensive",purchase,1.0,0 -57905818,"Counter-Strike Global Offensive",play,75.0,0 -57905818,"Infestation Survivor Stories",purchase,1.0,0 -57905818,"Infestation Survivor Stories",play,3.7,0 -57905818,"Street Fighter IV",purchase,1.0,0 -57905818,"Street Fighter IV",play,0.9,0 -57905818,"Arma 2",purchase,1.0,0 -57905818,"Arma 2",play,0.8,0 -57905818,"Team Fortress 2",purchase,1.0,0 -57905818,"Team Fortress 2",play,0.8,0 -57905818,"Dota 2",purchase,1.0,0 -57905818,"Dota 2",play,0.6,0 -57905818,"Counter-Strike",purchase,1.0,0 -57905818,"Counter-Strike",play,0.3,0 -57905818,"Arma 2 Operation Arrowhead",purchase,1.0,0 -57905818,"Arma 2 Operation Arrowhead",play,0.2,0 -57905818,"Worms Revolution",purchase,1.0,0 -57905818,"Worms Revolution",play,0.2,0 -57905818,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -57905818,"Counter-Strike Condition Zero Deleted Scenes",play,0.2,0 -57905818,"LIMBO",purchase,1.0,0 -57905818,"LIMBO",play,0.1,0 -57905818,"Day of Defeat",purchase,1.0,0 -57905818,"Deathmatch Classic",purchase,1.0,0 -57905818,"Counter-Strike Condition Zero",purchase,1.0,0 -57905818,"Ricochet",purchase,1.0,0 -57905818,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -143127924,"Dota 2",purchase,1.0,0 -143127924,"Dota 2",play,2.4,0 -248155783,"Dota 2",purchase,1.0,0 -248155783,"Dota 2",play,2.8,0 -237281095,"Dota 2",purchase,1.0,0 -237281095,"Dota 2",play,6.2,0 -283482222,"Dota 2",purchase,1.0,0 -283482222,"Dota 2",play,2.4,0 -283482222,"Dirty Bomb",purchase,1.0,0 -283482222,"FreeStyle2 Street Basketball",purchase,1.0,0 -283482222,"ROSE Online",purchase,1.0,0 -283482222,"Strife",purchase,1.0,0 -283482222,"TERA",purchase,1.0,0 -283482222,"Warframe",purchase,1.0,0 -79542039,"Total War ATTILA",purchase,1.0,0 -79542039,"Total War ATTILA",play,34.0,0 -79542039,"Sid Meier's Civilization V",purchase,1.0,0 -79542039,"Sid Meier's Civilization V",play,12.8,0 -79542039,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -79542039,"Sid Meier's Civilization Beyond Earth",play,7.6,0 -79542039,"Men of War",purchase,1.0,0 -79542039,"Men of War",play,2.6,0 -79542039,"Star Wars Empire at War Gold",purchase,1.0,0 -79542039,"Star Wars Empire at War Gold",play,1.7,0 -79542039,"R.U.S.E",purchase,1.0,0 -79542039,"R.U.S.E",play,1.7,0 -79542039,"Theatre of War 2 Africa 1943",purchase,1.0,0 -79542039,"Theatre of War 2 Africa 1943",play,1.3,0 -79542039,"Men of War Red Tide",purchase,1.0,0 -79542039,"Men of War Red Tide",play,0.6,0 -79542039,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -79542039,"STAR WARS Knights of the Old Republic II The Sith Lords",play,0.3,0 -79542039,"Theatre of War 2 Kursk 1943 ",purchase,1.0,0 -79542039,"Theatre of War 2 Kursk 1943 ",play,0.2,0 -79542039,"R.U.S.E.",purchase,1.0,0 -79542039,"Theatre of War",purchase,1.0,0 -79542039,"XIII Century",purchase,1.0,0 -161007736,"Counter-Strike Global Offensive",purchase,1.0,0 -161007736,"Counter-Strike Global Offensive",play,117.0,0 -161007736,"Stronghold Kingdoms",purchase,1.0,0 -161007736,"Counter-Strike Nexon Zombies",purchase,1.0,0 -161007736,"Loadout",purchase,1.0,0 -161007736,"RIFT",purchase,1.0,0 -161007736,"Tactical Intervention",purchase,1.0,0 -67713900,"Empire Total War",purchase,1.0,0 -67713900,"Empire Total War",play,825.0,0 -67713900,"Supreme Ruler Cold War",purchase,1.0,0 -67713900,"Supreme Ruler Cold War",play,412.0,0 -67713900,"Football Manager 2011",purchase,1.0,0 -67713900,"Football Manager 2011",play,407.0,0 -67713900,"STORM Frontline Nation",purchase,1.0,0 -67713900,"STORM Frontline Nation",play,275.0,0 -67713900,"SimCity 4 Deluxe",purchase,1.0,0 -67713900,"SimCity 4 Deluxe",play,199.0,0 -67713900,"Call of Duty Modern Warfare 3",purchase,1.0,0 -67713900,"Call of Duty Modern Warfare 3",play,136.0,0 -67713900,"Command and Conquer 4 Tiberian Twilight",purchase,1.0,0 -67713900,"Command and Conquer 4 Tiberian Twilight",play,121.0,0 -67713900,"Call of Duty Modern Warfare 2",purchase,1.0,0 -67713900,"Call of Duty Modern Warfare 2",play,116.0,0 -67713900,"Build-A-Lot 4",purchase,1.0,0 -67713900,"Build-A-Lot 4",play,97.0,0 -67713900,"Democracy 2",purchase,1.0,0 -67713900,"Democracy 2",play,74.0,0 -67713900,"Hotel Giant 2",purchase,1.0,0 -67713900,"Hotel Giant 2",play,44.0,0 -67713900,"Comanche 4",purchase,1.0,0 -67713900,"Comanche 4",play,22.0,0 -67713900,"Build-A-Lot",purchase,1.0,0 -67713900,"Build-A-Lot",play,8.9,0 -67713900,"Pride of Nations",purchase,1.0,0 -67713900,"Pride of Nations",play,5.3,0 -67713900,"Build-A-Lot 2",purchase,1.0,0 -67713900,"Build-A-Lot 2",play,5.2,0 -67713900,"Iron Warriors T-72 Tank Command",purchase,1.0,0 -67713900,"Iron Warriors T-72 Tank Command",play,1.2,0 -67713900,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -67713900,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -67713900,"Build-A-Lot 3",purchase,1.0,0 -67713900,"Theatre of War",purchase,1.0,0 -146016192,"The Lord of the Rings War in the North",purchase,1.0,0 -146016192,"The Lord of the Rings War in the North",play,5.1,0 -146016192,"Counter-Strike Source",purchase,1.0,0 -146016192,"Counter-Strike Source",play,2.3,0 -146016192,"Call of Duty Black Ops II",purchase,1.0,0 -146016192,"Call of Duty Black Ops II",play,0.4,0 -146016192,"Half-Life 2 Deathmatch",purchase,1.0,0 -146016192,"Half-Life 2 Deathmatch",play,0.1,0 -146016192,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -146016192,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -146016192,"Day of Defeat Source",purchase,1.0,0 -146016192,"Half-Life 2 Lost Coast",purchase,1.0,0 -248580432,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -301249176,"Counter-Strike Global Offensive",purchase,1.0,0 -301249176,"Counter-Strike Global Offensive",play,5.1,0 -301249176,"Don't Starve Together Beta",purchase,1.0,0 -231191282,"Dota 2",purchase,1.0,0 -231191282,"Dota 2",play,93.0,0 -231191282,"GunZ 2 The Second Duel",purchase,1.0,0 -231191282,"No More Room in Hell",purchase,1.0,0 -231191282,"Tribes Ascend",purchase,1.0,0 -116756674,"Counter-Strike Global Offensive",purchase,1.0,0 -116756674,"Counter-Strike Global Offensive",play,38.0,0 -116756674,"Ace of Spades",purchase,1.0,0 -116756674,"Ace of Spades",play,9.5,0 -24258916,"Counter-Strike",purchase,1.0,0 -24258916,"Counter-Strike Condition Zero",purchase,1.0,0 -24258916,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -177734872,"The Incredible Adventures of Van Helsing II",purchase,1.0,0 -177734872,"The Incredible Adventures of Van Helsing II",play,19.1,0 -238625455,"Dota 2",purchase,1.0,0 -238625455,"Dota 2",play,8.7,0 -101826973,"Napoleon Total War",purchase,1.0,0 -101826973,"Napoleon Total War",play,89.0,0 -68540434,"Dota 2",purchase,1.0,0 -68540434,"Dota 2",play,106.0,0 -68540434,"Infestation Survivor Stories",purchase,1.0,0 -68540434,"Infestation Survivor Stories",play,106.0,0 -68540434,"Aftermath",purchase,1.0,0 -68540434,"Aftermath",play,63.0,0 -68540434,"FreeStyle2 Street Basketball",purchase,1.0,0 -68540434,"Grand Chase",purchase,1.0,0 -68540434,"GunZ 2 The Second Duel",purchase,1.0,0 -68540434,"HAWKEN",purchase,1.0,0 -68540434,"Path of Exile",purchase,1.0,0 -68540434,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -68540434,"Unturned",purchase,1.0,0 -68540434,"Warframe",purchase,1.0,0 -68540434,"War Thunder",purchase,1.0,0 -266035768,"Counter-Strike Global Offensive",purchase,1.0,0 -266035768,"Counter-Strike Global Offensive",play,28.0,0 -266035768,"Clicker Heroes",purchase,1.0,0 -266035768,"The Expendabros",purchase,1.0,0 -266035768,"Warframe",purchase,1.0,0 -171665006,"Dota 2",purchase,1.0,0 -171665006,"Dota 2",play,1.2,0 -282935858,"Warface",purchase,1.0,0 -294255087,"Dota 2",purchase,1.0,0 -294255087,"Dota 2",play,0.8,0 -161672514,"Counter-Strike Source",purchase,1.0,0 -161672514,"Counter-Strike Source",play,14.1,0 -84824859,"Dota 2",purchase,1.0,0 -84824859,"Dota 2",play,845.0,0 -84824859,"Lara Croft and the Guardian of Light",purchase,1.0,0 -84824859,"Left 4 Dead 2",purchase,1.0,0 -210824241,"Dota 2",purchase,1.0,0 -210824241,"Dota 2",play,0.3,0 -161428298,"Professional Farmer 2014",purchase,1.0,0 -161428298,"Professional Farmer 2014",play,0.2,0 -198019368,"Dota 2",purchase,1.0,0 -198019368,"Dota 2",play,85.0,0 -303007171,"Counter-Strike Global Offensive",purchase,1.0,0 -303007171,"Counter-Strike Global Offensive",play,27.0,0 -303007171,"Day of Defeat",purchase,1.0,0 -303007171,"Day of Defeat",play,3.3,0 -303007171,"Portal 2",purchase,1.0,0 -303007171,"Portal 2",play,0.8,0 -303007171,"Half-Life 2",purchase,1.0,0 -303007171,"Half-Life 2",play,0.7,0 -303007171,"Counter-Strike",purchase,1.0,0 -303007171,"Counter-Strike",play,0.2,0 -303007171,"Counter-Strike Source",purchase,1.0,0 -303007171,"Left 4 Dead 2",purchase,1.0,0 -303007171,"Half-Life",purchase,1.0,0 -303007171,"Day of Defeat Source",purchase,1.0,0 -303007171,"Counter-Strike Condition Zero",purchase,1.0,0 -303007171,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -303007171,"CSGO Player Profiles",purchase,1.0,0 -303007171,"CSGO Player Profiles - Device",purchase,1.0,0 -303007171,"CSGO Player Profiles - Edward",purchase,1.0,0 -303007171,"CSGO Player Profiles - Fallen",purchase,1.0,0 -303007171,"CSGO Player Profiles - Get_Right",purchase,1.0,0 -303007171,"CSGO Player Profiles - KennyS",purchase,1.0,0 -303007171,"CSGO Player Profiles - Markeloff",purchase,1.0,0 -303007171,"CSGO Player Profiles - N0thing",purchase,1.0,0 -303007171,"CSGO Player Profiles - Olofmeister",purchase,1.0,0 -303007171,"CSGO Player Profiles - Taz",purchase,1.0,0 -303007171,"Deathmatch Classic",purchase,1.0,0 -303007171,"Fistful of Frags",purchase,1.0,0 -303007171,"Half-Life 2 Deathmatch",purchase,1.0,0 -303007171,"Half-Life 2 Episode One",purchase,1.0,0 -303007171,"Half-Life 2 Episode Two",purchase,1.0,0 -303007171,"Half-Life 2 Lost Coast",purchase,1.0,0 -303007171,"Half-Life Blue Shift",purchase,1.0,0 -303007171,"Half-Life Opposing Force",purchase,1.0,0 -303007171,"Half-Life Source",purchase,1.0,0 -303007171,"Half-Life Deathmatch Source",purchase,1.0,0 -303007171,"Left 4 Dead",purchase,1.0,0 -303007171,"Portal",purchase,1.0,0 -303007171,"Ricochet",purchase,1.0,0 -303007171,"Team Fortress Classic",purchase,1.0,0 -289428854,"Dota 2",purchase,1.0,0 -289428854,"Dota 2",play,4.1,0 -289428854,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -90956570,"Team Fortress 2",purchase,1.0,0 -90956570,"Team Fortress 2",play,9.8,0 -90956570,"Tactical Intervention",purchase,1.0,0 -90956570,"Tactical Intervention",play,2.9,0 -90956570,"Neverwinter",purchase,1.0,0 -90956570,"Neverwinter",play,2.4,0 -90956570,"Left 4 Dead 2",purchase,1.0,0 -90956570,"Left 4 Dead 2",play,0.2,0 -208680989,"GEARCRACK Arena",purchase,1.0,0 -163558271,"Dota 2",purchase,1.0,0 -163558271,"Dota 2",play,2.1,0 -47164966,"Counter-Strike",purchase,1.0,0 -47164966,"Counter-Strike",play,646.0,0 -47164966,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -47164966,"Counter-Strike Condition Zero Deleted Scenes",play,25.0,0 -47164966,"Day of Defeat",purchase,1.0,0 -47164966,"Day of Defeat",play,5.1,0 -47164966,"Half-Life",purchase,1.0,0 -47164966,"Half-Life",play,1.6,0 -47164966,"Counter-Strike Condition Zero",purchase,1.0,0 -47164966,"Counter-Strike Condition Zero",play,1.4,0 -47164966,"Deathmatch Classic",purchase,1.0,0 -47164966,"Deathmatch Classic",play,0.4,0 -47164966,"Ricochet",purchase,1.0,0 -47164966,"Ricochet",play,0.2,0 -160725611,"Dota 2",purchase,1.0,0 -160725611,"Dota 2",play,8.0,0 -160725611,"Garry's Mod",purchase,1.0,0 -160725611,"Garry's Mod",play,1.3,0 -119670302,"Dota 2",purchase,1.0,0 -119670302,"Dota 2",play,532.0,0 -119670302,"Counter-Strike Global Offensive",purchase,1.0,0 -119670302,"Counter-Strike Global Offensive",play,383.0,0 -201600354,"Unturned",purchase,1.0,0 -201600354,"Unturned",play,0.3,0 -201600354,"Team Fortress 2",purchase,1.0,0 -201600354,"Team Fortress 2",play,0.3,0 -201600354,"Counter-Strike Nexon Zombies",purchase,1.0,0 -201600354,"Counter-Strike Nexon Zombies",play,0.2,0 -201600354,"theHunter",purchase,1.0,0 -201600354,"Fallen Earth",purchase,1.0,0 -201600354,"Heroes & Generals",purchase,1.0,0 -201600354,"Quake Live",purchase,1.0,0 -201600354,"RaceRoom Racing Experience ",purchase,1.0,0 -201600354,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -50837658,"Left 4 Dead",purchase,1.0,0 -50837658,"Left 4 Dead",play,1.4,0 -302477662,"Undertale",purchase,1.0,0 -302477662,"Undertale",play,13.4,0 -229203462,"Dota 2",purchase,1.0,0 -229203462,"Dota 2",play,77.0,0 -191792074,"Dota 2",purchase,1.0,0 -191792074,"Dota 2",play,14.5,0 -191792074,"Dead Island Epidemic",purchase,1.0,0 -191792074,"Heroes & Generals",purchase,1.0,0 -191792074,"Neverwinter",purchase,1.0,0 -191792074,"Path of Exile",purchase,1.0,0 -191792074,"Quake Live",purchase,1.0,0 -191792074,"Unturned",purchase,1.0,0 -100053304,"Petz Horsez 2",purchase,1.0,0 -100053304,"Petz Horsez 2",play,17.0,0 -100053304,"Dungeons & Dragons Online",purchase,1.0,0 -100053304,"Dungeons & Dragons Online",play,12.6,0 -100053304,"Portal 2",purchase,1.0,0 -100053304,"Portal 2",play,4.4,0 -100053304,"PAYDAY The Heist",purchase,1.0,0 -100053304,"PAYDAY The Heist",play,1.1,0 -100053304,"Dota 2",purchase,1.0,0 -100053304,"Dota 2",play,1.0,0 -100053304,"Dream Of Mirror Online",purchase,1.0,0 -100053304,"Dream Of Mirror Online",play,0.5,0 -100053304,"The Lord of the Rings Online",purchase,1.0,0 -26729643,"Garry's Mod",purchase,1.0,0 -26729643,"Garry's Mod",play,526.0,0 -26729643,"Sid Meier's Civilization V",purchase,1.0,0 -26729643,"Sid Meier's Civilization V",play,448.0,0 -26729643,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -26729643,"Dark Souls Prepare to Die Edition",play,383.0,0 -26729643,"Team Fortress 2",purchase,1.0,0 -26729643,"Team Fortress 2",play,237.0,0 -26729643,"Dota 2",purchase,1.0,0 -26729643,"Dota 2",play,222.0,0 -26729643,"Rust",purchase,1.0,0 -26729643,"Rust",play,186.0,0 -26729643,"Kerbal Space Program",purchase,1.0,0 -26729643,"Kerbal Space Program",play,174.0,0 -26729643,"Mount & Blade Warband",purchase,1.0,0 -26729643,"Mount & Blade Warband",play,156.0,0 -26729643,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -26729643,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,138.0,0 -26729643,"Distant Worlds Universe",purchase,1.0,0 -26729643,"Distant Worlds Universe",play,132.0,0 -26729643,"Starbound",purchase,1.0,0 -26729643,"Starbound",play,125.0,0 -26729643,"Terraria",purchase,1.0,0 -26729643,"Terraria",play,114.0,0 -26729643,"The Elder Scrolls V Skyrim",purchase,1.0,0 -26729643,"The Elder Scrolls V Skyrim",play,109.0,0 -26729643,"Path of Exile",purchase,1.0,0 -26729643,"Path of Exile",play,96.0,0 -26729643,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -26729643,"S.T.A.L.K.E.R. Call of Pripyat",play,84.0,0 -26729643,"Wasteland 2",purchase,1.0,0 -26729643,"Wasteland 2",play,76.0,0 -26729643,"Fallout Tactics",purchase,1.0,0 -26729643,"Fallout Tactics",play,76.0,0 -26729643,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -26729643,"S.T.A.L.K.E.R. Clear Sky",play,68.0,0 -26729643,"Don't Starve",purchase,1.0,0 -26729643,"Don't Starve",play,60.0,0 -26729643,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -26729643,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,60.0,0 -26729643,"Xenonauts",purchase,1.0,0 -26729643,"Xenonauts",play,56.0,0 -26729643,"War Thunder",purchase,1.0,0 -26729643,"War Thunder",play,54.0,0 -26729643,"Mount & Blade With Fire and Sword",purchase,1.0,0 -26729643,"Mount & Blade With Fire and Sword",play,48.0,0 -26729643,"Borderlands 2",purchase,1.0,0 -26729643,"Borderlands 2",play,45.0,0 -26729643,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -26729643,"Sid Meier's Civilization IV Beyond the Sword",play,43.0,0 -26729643,"Anno 2070",purchase,1.0,0 -26729643,"Anno 2070",play,42.0,0 -26729643,"MechWarrior Online",purchase,1.0,0 -26729643,"MechWarrior Online",play,41.0,0 -26729643,"Don't Starve Together Beta",purchase,1.0,0 -26729643,"Don't Starve Together Beta",play,41.0,0 -26729643,"Fallout",purchase,1.0,0 -26729643,"Fallout",play,36.0,0 -26729643,"Pillars of Eternity",purchase,1.0,0 -26729643,"Pillars of Eternity",play,36.0,0 -26729643,"Darkest Dungeon",purchase,1.0,0 -26729643,"Darkest Dungeon",play,35.0,0 -26729643,"Brawlhalla",purchase,1.0,0 -26729643,"Brawlhalla",play,32.0,0 -26729643,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -26729643,"Warhammer 40,000 Dawn of War II Retribution",play,31.0,0 -26729643,"The Binding of Isaac",purchase,1.0,0 -26729643,"The Binding of Isaac",play,31.0,0 -26729643,"Fallout 2",purchase,1.0,0 -26729643,"Fallout 2",play,30.0,0 -26729643,"The Walking Dead",purchase,1.0,0 -26729643,"The Walking Dead",play,27.0,0 -26729643,"Risk of Rain",purchase,1.0,0 -26729643,"Risk of Rain",play,23.0,0 -26729643,"Galactic Civilizations III",purchase,1.0,0 -26729643,"Galactic Civilizations III",play,23.0,0 -26729643,"Company of Heroes Opposing Fronts",purchase,1.0,0 -26729643,"Company of Heroes Opposing Fronts",play,23.0,0 -26729643,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -26729643,"Sid Meier's Civilization Beyond Earth",play,22.0,0 -26729643,"Chivalry Medieval Warfare",purchase,1.0,0 -26729643,"Chivalry Medieval Warfare",play,21.0,0 -26729643,"Nuclear Throne",purchase,1.0,0 -26729643,"Nuclear Throne",play,20.0,0 -26729643,"Legend of Grimrock",purchase,1.0,0 -26729643,"Legend of Grimrock",play,19.2,0 -26729643,"Metro 2033",purchase,1.0,0 -26729643,"Metro 2033",play,18.6,0 -26729643,"The Settlers 7 Paths to a Kingdom - Gold Edition",purchase,1.0,0 -26729643,"The Settlers 7 Paths to a Kingdom - Gold Edition",play,18.5,0 -26729643,"Heroes & Generals",purchase,1.0,0 -26729643,"Heroes & Generals",play,17.7,0 -26729643,"Borderlands",purchase,1.0,0 -26729643,"Borderlands",play,17.7,0 -26729643,"Medieval II Total War Kingdoms",purchase,1.0,0 -26729643,"Medieval II Total War Kingdoms",play,16.8,0 -26729643,"Empire Total War",purchase,1.0,0 -26729643,"Empire Total War",play,16.6,0 -26729643,"Total War SHOGUN 2",purchase,1.0,0 -26729643,"Total War SHOGUN 2",play,16.4,0 -26729643,"Warhammer 40,000 Space Marine",purchase,1.0,0 -26729643,"Warhammer 40,000 Space Marine",play,16.3,0 -26729643,"The Elder Scrolls III Morrowind",purchase,1.0,0 -26729643,"The Elder Scrolls III Morrowind",play,15.5,0 -26729643,"DayZ",purchase,1.0,0 -26729643,"DayZ",play,12.8,0 -26729643,"Half-Life Source",purchase,1.0,0 -26729643,"Half-Life Source",play,12.1,0 -26729643,"PAYDAY 2",purchase,1.0,0 -26729643,"PAYDAY 2",play,11.2,0 -26729643,"Rome Total War",purchase,1.0,0 -26729643,"Rome Total War",play,10.8,0 -26729643,"Age of Chivalry",purchase,1.0,0 -26729643,"Age of Chivalry",play,10.7,0 -26729643,"Guns of Icarus Online",purchase,1.0,0 -26729643,"Guns of Icarus Online",play,10.6,0 -26729643,"SpeedRunners",purchase,1.0,0 -26729643,"SpeedRunners",play,10.4,0 -26729643,"Alien Swarm",purchase,1.0,0 -26729643,"Alien Swarm",play,10.4,0 -26729643,"Arma 2 Operation Arrowhead",purchase,1.0,0 -26729643,"Arma 2 Operation Arrowhead",play,10.2,0 -26729643,"The Binding of Isaac Rebirth",purchase,1.0,0 -26729643,"The Binding of Isaac Rebirth",play,10.1,0 -26729643,"E.Y.E Divine Cybermancy",purchase,1.0,0 -26729643,"E.Y.E Divine Cybermancy",play,10.0,0 -26729643,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -26729643,"Rising Storm/Red Orchestra 2 Multiplayer",play,9.8,0 -26729643,"Elite Dangerous",purchase,1.0,0 -26729643,"Elite Dangerous",play,9.6,0 -26729643,"Zombie Shooter 2",purchase,1.0,0 -26729643,"Zombie Shooter 2",play,9.3,0 -26729643,"No More Room in Hell",purchase,1.0,0 -26729643,"No More Room in Hell",play,7.9,0 -26729643,"Skullgirls",purchase,1.0,0 -26729643,"Skullgirls",play,7.2,0 -26729643,"Counter-Strike Source",purchase,1.0,0 -26729643,"Counter-Strike Source",play,6.8,0 -26729643,"Unturned",purchase,1.0,0 -26729643,"Unturned",play,6.8,0 -26729643,"Gear Up",purchase,1.0,0 -26729643,"Gear Up",play,6.6,0 -26729643,"BattleBlock Theater",purchase,1.0,0 -26729643,"BattleBlock Theater",play,6.1,0 -26729643,"Magicka",purchase,1.0,0 -26729643,"Magicka",play,5.6,0 -26729643,"Reus",purchase,1.0,0 -26729643,"Reus",play,5.3,0 -26729643,"Arma 2",purchase,1.0,0 -26729643,"Arma 2",play,5.2,0 -26729643,"Serious Sam 3 BFE",purchase,1.0,0 -26729643,"Serious Sam 3 BFE",play,5.1,0 -26729643,"Trine",purchase,1.0,0 -26729643,"Trine",play,5.0,0 -26729643,"Medieval II Total War",purchase,1.0,0 -26729643,"Medieval II Total War",play,4.9,0 -26729643,"Zombie Panic Source",purchase,1.0,0 -26729643,"Zombie Panic Source",play,4.8,0 -26729643,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -26729643,"Red Orchestra Ostfront 41-45",play,4.4,0 -26729643,"Fractured Space",purchase,1.0,0 -26729643,"Fractured Space",play,4.0,0 -26729643,"Castle Crashers",purchase,1.0,0 -26729643,"Castle Crashers",play,3.9,0 -26729643,"Company of Heroes (New Steam Version)",purchase,1.0,0 -26729643,"Company of Heroes (New Steam Version)",play,2.3,0 -26729643,"Half-Life 2",purchase,1.0,0 -26729643,"Half-Life 2",play,2.3,0 -26729643,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -26729643,"Tropico 3 - Steam Special Edition",play,2.2,0 -26729643,"Crypt of the NecroDancer",purchase,1.0,0 -26729643,"Crypt of the NecroDancer",play,2.2,0 -26729643,"Silverfall",purchase,1.0,0 -26729643,"Silverfall",play,2.2,0 -26729643,"Realm of the Mad God",purchase,1.0,0 -26729643,"Realm of the Mad God",play,2.1,0 -26729643,"Rigonauts",purchase,1.0,0 -26729643,"Rigonauts",play,1.8,0 -26729643,"How to Survive",purchase,1.0,0 -26729643,"How to Survive",play,1.6,0 -26729643,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -26729643,"Warhammer 40,000 Dawn of War II",play,1.4,0 -26729643,"Solar 2",purchase,1.0,0 -26729643,"Solar 2",play,1.4,0 -26729643,"Hammerfight",purchase,1.0,0 -26729643,"Hammerfight",play,1.3,0 -26729643,"Capsized",purchase,1.0,0 -26729643,"Capsized",play,1.2,0 -26729643,"World in Conflict Soviet Assault",purchase,1.0,0 -26729643,"World in Conflict Soviet Assault",play,1.1,0 -26729643,"Half-Life 2 Deathmatch",purchase,1.0,0 -26729643,"Half-Life 2 Deathmatch",play,1.1,0 -26729643,"Sid Meier's Civilization IV",purchase,1.0,0 -26729643,"Sid Meier's Civilization IV",play,1.0,0 -26729643,"Sid Meier's Civilization III Complete",purchase,1.0,0 -26729643,"Sid Meier's Civilization III Complete",play,0.9,0 -26729643,"Broforce",purchase,1.0,0 -26729643,"Broforce",play,0.9,0 -26729643,"Reign Of Kings",purchase,1.0,0 -26729643,"Reign Of Kings",play,0.9,0 -26729643,"Long Live The Queen",purchase,1.0,0 -26729643,"Long Live The Queen",play,0.8,0 -26729643,"Amnesia The Dark Descent",purchase,1.0,0 -26729643,"Amnesia The Dark Descent",play,0.8,0 -26729643,"Wasteland 2 Director's Cut",purchase,1.0,0 -26729643,"Wasteland 2 Director's Cut",play,0.7,0 -26729643,"Mare Nostrum",purchase,1.0,0 -26729643,"Mare Nostrum",play,0.6,0 -26729643,"Nosgoth",purchase,1.0,0 -26729643,"Nosgoth",play,0.4,0 -26729643,"Darkest Hour Europe '44-'45",purchase,1.0,0 -26729643,"Darkest Hour Europe '44-'45",play,0.3,0 -26729643,"Half-Life 2 Lost Coast",purchase,1.0,0 -26729643,"Half-Life 2 Lost Coast",play,0.2,0 -26729643,"Trove",purchase,1.0,0 -26729643,"Trove",play,0.2,0 -26729643,"World in Conflict",purchase,1.0,0 -26729643,"Dino D-Day",purchase,1.0,0 -26729643,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -26729643,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -26729643,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -26729643,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -26729643,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -26729643,"Company of Heroes",purchase,1.0,0 -26729643,"Half-Life Deathmatch Source",purchase,1.0,0 -26729643,"Magicka Party Robes",purchase,1.0,0 -26729643,"Mount & Blade Warband - Viking Conquest Reforged Edition",purchase,1.0,0 -26729643,"Patch testing for Chivalry",purchase,1.0,0 -26729643,"Planetary Annihilation",purchase,1.0,0 -26729643,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -26729643,"Sid Meier's Civilization IV",purchase,1.0,0 -26729643,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -26729643,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -26729643,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -26729643,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -26729643,"Skullgirls Endless Beta",purchase,1.0,0 -26729643,"Starbound - Unstable",purchase,1.0,0 -26729643,"Wasteland 1 - The Original Classic",purchase,1.0,0 -108223505,"Total War ROME II - Emperor Edition",purchase,1.0,0 -108223505,"Total War ROME II - Emperor Edition",play,92.0,0 -108223505,"Empire Total War",purchase,1.0,0 -108223505,"Empire Total War",play,37.0,0 -108223505,"Dying Light",purchase,1.0,0 -108223505,"Dying Light",play,19.0,0 -108223505,"Supreme Commander 2",purchase,1.0,0 -108223505,"Supreme Commander 2",play,1.2,0 -108223505,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -108223505,"Fallout 3 - Game of the Year Edition",play,1.1,0 -108223505,"Fallout 4",purchase,1.0,0 -108223505,"Fallout 4",play,0.3,0 -108223505,"Thief",purchase,1.0,0 -108223505,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -108223505,"Hitman Absolution",purchase,1.0,0 -108223505,"MURDERED SOUL SUSPECT",purchase,1.0,0 -108223505,"Sleeping Dogs",purchase,1.0,0 -108223505,"The Elder Scrolls V Skyrim",purchase,1.0,0 -108223505,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -108223505,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -108223505,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -108223505,"Tomb Raider",purchase,1.0,0 -231469827,"Dota 2",purchase,1.0,0 -231469827,"Dota 2",play,34.0,0 -231469827,"Archeblade",purchase,1.0,0 -231469827,"Battlegrounds of Eldhelm",purchase,1.0,0 -231469827,"Heroes & Generals",purchase,1.0,0 -231469827,"Magicka Wizard Wars",purchase,1.0,0 -231469827,"theHunter",purchase,1.0,0 -231469827,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -231469827,"Warframe",purchase,1.0,0 -193012627,"Dota 2",purchase,1.0,0 -193012627,"Dota 2",play,0.1,0 -187937296,"Dota 2",purchase,1.0,0 -187937296,"Dota 2",play,14.1,0 -64137709,"Counter-Strike Source",purchase,1.0,0 -64137709,"Counter-Strike Source",play,38.0,0 -64137709,"Counter-Strike Global Offensive",purchase,1.0,0 -64137709,"Counter-Strike Global Offensive",play,22.0,0 -64137709,"Sniper Elite V2",purchase,1.0,0 -64137709,"Sniper Elite V2",play,6.6,0 -152983035,"Left 4 Dead 2",purchase,1.0,0 -152983035,"Left 4 Dead 2",play,0.6,0 -201680419,"Dota 2",purchase,1.0,0 -201680419,"Dota 2",play,475.0,0 -201680419,"Defend Your Life",purchase,1.0,0 -201680419,"Defend Your Life",play,2.3,0 -180763362,"Dota 2",purchase,1.0,0 -180763362,"Dota 2",play,16.1,0 -115655987,"Dota 2",purchase,1.0,0 -115655987,"Dota 2",play,601.0,0 -115655987,"Counter-Strike",purchase,1.0,0 -115655987,"Counter-Strike",play,420.0,0 -115655987,"Counter-Strike Global Offensive",purchase,1.0,0 -115655987,"Counter-Strike Global Offensive",play,375.0,0 -115655987,"No More Room in Hell",purchase,1.0,0 -115655987,"No More Room in Hell",play,0.4,0 -115655987,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -115655987,"Counter-Strike Condition Zero Deleted Scenes",play,0.1,0 -115655987,"Counter-Strike Nexon Zombies",purchase,1.0,0 -115655987,"Counter-Strike Nexon Zombies",play,0.1,0 -115655987,"Counter-Strike Condition Zero",purchase,1.0,0 -235239851,"Team Fortress 2",purchase,1.0,0 -235239851,"Team Fortress 2",play,2.5,0 -235239851,"Star Conflict",purchase,1.0,0 -235239851,"Star Conflict",play,0.3,0 -235239851,"Unturned",purchase,1.0,0 -235239851,"Unturned",play,0.2,0 -235239851,"Robocraft",purchase,1.0,0 -91815420,"Call of Duty Modern Warfare 3",purchase,1.0,0 -91815420,"Call of Duty Modern Warfare 3",play,24.0,0 -91815420,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -91815420,"Call of Duty Modern Warfare 3 - Multiplayer",play,0.4,0 -114244707,"Dota 2",purchase,1.0,0 -114244707,"Dota 2",play,7.2,0 -253549183,"Dota 2",purchase,1.0,0 -253549183,"Dota 2",play,1155.0,0 -253549183,"AdVenture Capitalist",purchase,1.0,0 -253549183,"FreeStyle2 Street Basketball",purchase,1.0,0 -253549183,"APB Reloaded",purchase,1.0,0 -253549183,"Audition Online",purchase,1.0,0 -253549183,"Epic Arena",purchase,1.0,0 -253549183,"HAWKEN",purchase,1.0,0 -253549183,"Heroes & Generals",purchase,1.0,0 -253549183,"METAL SLUG DEFENSE",purchase,1.0,0 -253549183,"Red Crucible Firestorm",purchase,1.0,0 -253549183,"Robocraft",purchase,1.0,0 -253549183,"Viridi",purchase,1.0,0 -253549183,"Warframe",purchase,1.0,0 -109969767,"Magicka",purchase,1.0,0 -109969767,"Magicka",play,0.2,0 -26461910,"Counter-Strike",purchase,1.0,0 -26461910,"Counter-Strike",play,329.0,0 -26461910,"Counter-Strike Condition Zero",purchase,1.0,0 -26461910,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -26461910,"Day of Defeat",purchase,1.0,0 -26461910,"Deathmatch Classic",purchase,1.0,0 -26461910,"Ricochet",purchase,1.0,0 -52321307,"Hearts of Iron III",purchase,1.0,0 -52321307,"Hearts of Iron III",play,893.0,0 -52321307,"Crusader Kings II",purchase,1.0,0 -52321307,"Crusader Kings II",play,591.0,0 -52321307,"Mount & Blade Warband",purchase,1.0,0 -52321307,"Mount & Blade Warband",play,514.0,0 -52321307,"Europa Universalis IV",purchase,1.0,0 -52321307,"Europa Universalis IV",play,390.0,0 -52321307,"Empire Total War",purchase,1.0,0 -52321307,"Empire Total War",play,276.0,0 -52321307,"Mount & Blade With Fire and Sword",purchase,1.0,0 -52321307,"Mount & Blade With Fire and Sword",play,195.0,0 -52321307,"Uncharted Waters Online",purchase,1.0,0 -52321307,"Uncharted Waters Online",play,181.0,0 -52321307,"The Lord of the Rings Online",purchase,1.0,0 -52321307,"The Lord of the Rings Online",play,178.0,0 -52321307,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -52321307,"Dragon Age Origins - Ultimate Edition",play,176.0,0 -52321307,"Sid Meier's Civilization V",purchase,1.0,0 -52321307,"Sid Meier's Civilization V",play,157.0,0 -52321307,"Total War SHOGUN 2",purchase,1.0,0 -52321307,"Total War SHOGUN 2",play,116.0,0 -52321307,"Mount & Blade",purchase,1.0,0 -52321307,"Mount & Blade",play,115.0,0 -52321307,"Game of Thrones ",purchase,1.0,0 -52321307,"Game of Thrones ",play,63.0,0 -52321307,"East India Company",purchase,1.0,0 -52321307,"East India Company",play,50.0,0 -52321307,"The Age of Decadence",purchase,1.0,0 -52321307,"The Age of Decadence",play,47.0,0 -52321307,"Wargame AirLand Battle",purchase,1.0,0 -52321307,"Wargame AirLand Battle",play,45.0,0 -52321307,"Wargame European Escalation",purchase,1.0,0 -52321307,"Wargame European Escalation",play,32.0,0 -52321307,"Naval War Arctic Circle",purchase,1.0,0 -52321307,"Naval War Arctic Circle",play,27.0,0 -52321307,"The Banner Saga",purchase,1.0,0 -52321307,"The Banner Saga",play,17.7,0 -52321307,"Team Fortress 2",purchase,1.0,0 -52321307,"Team Fortress 2",play,16.4,0 -52321307,"Goat Simulator",purchase,1.0,0 -52321307,"Goat Simulator",play,12.6,0 -52321307,"PT Boats Knights of the Sea",purchase,1.0,0 -52321307,"PT Boats Knights of the Sea",play,11.3,0 -52321307,"East India Company Pirate Bay",purchase,1.0,0 -52321307,"East India Company Pirate Bay",play,5.8,0 -52321307,"Heroes Over Europe",purchase,1.0,0 -52321307,"Heroes Over Europe",play,3.2,0 -52321307,"Garry's Mod",purchase,1.0,0 -52321307,"Garry's Mod",play,3.0,0 -52321307,"Victoria II",purchase,1.0,0 -52321307,"Victoria II",play,1.3,0 -52321307,"Pacific Storm Allies",purchase,1.0,0 -52321307,"Pacific Storm Allies",play,0.3,0 -52321307,"East India Company Privateer",purchase,1.0,0 -52321307,"East India Company Privateer",play,0.3,0 -52321307,"King Arthur Collection",purchase,1.0,0 -52321307,"King Arthur Collection",play,0.3,0 -52321307,"PT Boats South Gambit",purchase,1.0,0 -52321307,"PT Boats South Gambit",play,0.3,0 -52321307,"Pacific Storm",purchase,1.0,0 -52321307,"A Game of Thrones - Genesis",purchase,1.0,0 -52321307,"Crusader Kings II Military Orders Unit Pack",purchase,1.0,0 -52321307,"Crusader Kings II Sons of Abraham",purchase,1.0,0 -52321307,"Europa Universalis IV American Dream DLC",purchase,1.0,0 -52321307,"Europa Universalis IV Conquest of Paradise",purchase,1.0,0 -52321307,"Europa Universalis IV Conquistadors Unit pack ",purchase,1.0,0 -52321307,"Europa Universalis IV National Monuments II",purchase,1.0,0 -52321307,"Europa Universalis IVNative Americans Unit Pack",purchase,1.0,0 -52321307,"Hearts of Iron III German II Sprite Pack",purchase,1.0,0 -52321307,"Path of Exile",purchase,1.0,0 -52321307,"The Banner Saga - Mod Content",purchase,1.0,0 -302328584,"Electric Highways",purchase,1.0,0 -302328584,"Electric Highways",play,0.3,0 -302328584,"Bloodwood Reload",purchase,1.0,0 -302328584,"Back to Dinosaur Island ",purchase,1.0,0 -275086284,"Unturned",purchase,1.0,0 -275086284,"Unturned",play,11.6,0 -275086284,"APB Reloaded",purchase,1.0,0 -275086284,"APB Reloaded",play,2.3,0 -275086284,"Loadout",purchase,1.0,0 -275086284,"Loadout",play,1.0,0 -275086284,"sZone-Online",purchase,1.0,0 -275086284,"sZone-Online",play,0.4,0 -275086284,"FreeStyle2 Street Basketball",purchase,1.0,0 -275086284,"FreeStyle2 Street Basketball",play,0.4,0 -275086284,"Dirty Bomb",purchase,1.0,0 -275086284,"Dirty Bomb",play,0.3,0 -275086284,"Robocraft",purchase,1.0,0 -275086284,"Robocraft",play,0.3,0 -220808791,"Dota 2",purchase,1.0,0 -220808791,"Dota 2",play,4.0,0 -221738571,"Garry's Mod",purchase,1.0,0 -221738571,"Garry's Mod",play,27.0,0 -212146550,"Tactical Intervention",purchase,1.0,0 -212146550,"Tactical Intervention",play,0.7,0 -212146550,"America's Army Proving Grounds",purchase,1.0,0 -190502181,"Arma 3",purchase,1.0,0 -190502181,"Arma 3",play,1031.0,0 -190502181,"Arma 2 Operation Arrowhead",purchase,1.0,0 -190502181,"Arma 2 Operation Arrowhead",play,253.0,0 -190502181,"DayZ",purchase,1.0,0 -190502181,"DayZ",play,237.0,0 -190502181,"War Thunder",purchase,1.0,0 -190502181,"War Thunder",play,141.0,0 -190502181,"Insurgency",purchase,1.0,0 -190502181,"Insurgency",play,39.0,0 -190502181,"Chivalry Medieval Warfare",purchase,1.0,0 -190502181,"Chivalry Medieval Warfare",play,5.2,0 -190502181,"Dirty Bomb",purchase,1.0,0 -190502181,"Dirty Bomb",play,4.7,0 -190502181,"Reign Of Kings",purchase,1.0,0 -190502181,"Reign Of Kings",play,3.4,0 -190502181,"Star Wars - Battlefront II",purchase,1.0,0 -190502181,"Star Wars - Battlefront II",play,3.2,0 -190502181,"Counter-Strike Global Offensive",purchase,1.0,0 -190502181,"Counter-Strike Global Offensive",play,2.2,0 -190502181,"Heroes & Generals",purchase,1.0,0 -190502181,"Heroes & Generals",play,1.1,0 -190502181,"The Forest",purchase,1.0,0 -190502181,"The Forest",play,1.0,0 -190502181,"Patch testing for Chivalry",purchase,1.0,0 -190502181,"Patch testing for Chivalry",play,0.3,0 -190502181,"Fistful of Frags",purchase,1.0,0 -190502181,"Fistful of Frags",play,0.2,0 -190502181,"Arma 2",purchase,1.0,0 -190502181,"Arma 2 DayZ Mod",purchase,1.0,0 -190502181,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -190502181,"Arma 3 Helicopters",purchase,1.0,0 -190502181,"Arma 3 Zeus",purchase,1.0,0 -190502181,"Counter-Strike Nexon Zombies",purchase,1.0,0 -190502181,"Dead Island Epidemic",purchase,1.0,0 -190502181,"Tactical Intervention",purchase,1.0,0 -190502181,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -190502181,"Unturned",purchase,1.0,0 -165779930,"APB Reloaded",purchase,1.0,0 -165779930,"APB Reloaded",play,1073.0,0 -165779930,"Space Engineers",purchase,1.0,0 -165779930,"Space Engineers",play,439.0,0 -165779930,"Firefall",purchase,1.0,0 -165779930,"Firefall",play,393.0,0 -165779930,"Robocraft",purchase,1.0,0 -165779930,"Robocraft",play,212.0,0 -165779930,"Rust",purchase,1.0,0 -165779930,"Rust",play,207.0,0 -165779930,"Stronghold Kingdoms",purchase,1.0,0 -165779930,"Stronghold Kingdoms",play,135.0,0 -165779930,"Star Conflict",purchase,1.0,0 -165779930,"Star Conflict",play,126.0,0 -165779930,"Blacklight Retribution",purchase,1.0,0 -165779930,"Blacklight Retribution",play,50.0,0 -165779930,"Hitman Absolution",purchase,1.0,0 -165779930,"Hitman Absolution",play,31.0,0 -165779930,"Warface",purchase,1.0,0 -165779930,"Warface",play,26.0,0 -165779930,"Mass Effect 2",purchase,1.0,0 -165779930,"Mass Effect 2",play,22.0,0 -165779930,"Star Trek Online",purchase,1.0,0 -165779930,"Star Trek Online",play,19.0,0 -165779930,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -165779930,"Red Faction Guerrilla Steam Edition",play,15.8,0 -165779930,"Counter-Strike Global Offensive",purchase,1.0,0 -165779930,"Counter-Strike Global Offensive",play,13.9,0 -165779930,"Tomb Raider",purchase,1.0,0 -165779930,"Tomb Raider",play,12.2,0 -165779930,"Red Faction Armageddon",purchase,1.0,0 -165779930,"Red Faction Armageddon",play,11.9,0 -165779930,"The Fifth Day",purchase,1.0,0 -165779930,"The Fifth Day",play,10.8,0 -165779930,"Aion",purchase,1.0,0 -165779930,"Aion",play,7.7,0 -165779930,"Hydrophobia Prophecy",purchase,1.0,0 -165779930,"Hydrophobia Prophecy",play,6.7,0 -165779930,"Need for Speed Hot Pursuit",purchase,1.0,0 -165779930,"Need for Speed Hot Pursuit",play,4.7,0 -165779930,"Dirty Bomb",purchase,1.0,0 -165779930,"Dirty Bomb",play,4.5,0 -165779930,"HAWKEN",purchase,1.0,0 -165779930,"HAWKEN",play,4.2,0 -165779930,"PlanetSide 2",purchase,1.0,0 -165779930,"PlanetSide 2",play,2.9,0 -165779930,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",purchase,1.0,0 -165779930,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",play,2.6,0 -165779930,"Saints Row IV Inauguration Station",purchase,1.0,0 -165779930,"Saints Row IV Inauguration Station",play,2.5,0 -165779930,"Defiance",purchase,1.0,0 -165779930,"Defiance",play,1.5,0 -165779930,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -165779930,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.9,0 -165779930,"World of Guns Gun Disassembly",purchase,1.0,0 -165779930,"World of Guns Gun Disassembly",play,0.7,0 -165779930,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -165779930,"Deus Ex Human Revolution - Director's Cut",play,0.3,0 -165779930,"War Thunder",purchase,1.0,0 -165779930,"War Thunder",play,0.2,0 -165779930,"Velvet Sundown",purchase,1.0,0 -165779930,"America's Army Proving Grounds",purchase,1.0,0 -165779930,"Combat Arms",purchase,1.0,0 -165779930,"Deus Ex The Fall",purchase,1.0,0 -165779930,"Haunted Memories",purchase,1.0,0 -165779930,"Hitman Sniper Challenge",purchase,1.0,0 -165779930,"Red Faction Armageddon Soundtrack",purchase,1.0,0 -165779930,"Rise of Incarnates",purchase,1.0,0 -165779930,"Unturned",purchase,1.0,0 -67001780,"Napoleon Total War",purchase,1.0,0 -67001780,"Napoleon Total War",play,645.0,0 -67001780,"Total War SHOGUN 2",purchase,1.0,0 -67001780,"Total War SHOGUN 2",play,433.0,0 -67001780,"Empire Total War",purchase,1.0,0 -67001780,"Empire Total War",play,246.0,0 -67001780,"Grand Theft Auto San Andreas",purchase,1.0,0 -67001780,"Grand Theft Auto San Andreas",play,79.0,0 -67001780,"Grand Theft Auto Vice City",purchase,1.0,0 -67001780,"Grand Theft Auto Vice City",play,17.9,0 -67001780,"Rome Total War",purchase,1.0,0 -67001780,"Rome Total War",play,2.7,0 -67001780,"Rome Total War - Alexander",purchase,1.0,0 -67001780,"Rome Total War - Alexander",play,0.8,0 -67001780,"Medieval II Total War",purchase,1.0,0 -67001780,"Medieval II Total War",play,0.1,0 -67001780,"Grand Theft Auto San Andreas",purchase,1.0,0 -67001780,"Grand Theft Auto Vice City",purchase,1.0,0 -67001780,"Medieval II Total War Kingdoms",purchase,1.0,0 -67001780,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -185336345,"C9",purchase,1.0,0 -138375115,"Dota 2",purchase,1.0,0 -138375115,"Dota 2",play,319.0,0 -247544697,"Dota 2",purchase,1.0,0 -247544697,"Dota 2",play,9.3,0 -235329083,"Marvel Heroes 2015",purchase,1.0,0 -131929080,"Critical Mass",purchase,1.0,0 -173394554,"Counter-Strike Global Offensive",purchase,1.0,0 -173394554,"Counter-Strike Global Offensive",play,3.2,0 -173394554,"DayZ",purchase,1.0,0 -173394554,"DayZ",play,2.0,0 -170264961,"Dota 2",purchase,1.0,0 -170264961,"Dota 2",play,5.4,0 -170264961,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -223133463,"Dota 2",purchase,1.0,0 -223133463,"Dota 2",play,1.4,0 -210860807,"GEARCRACK Arena",purchase,1.0,0 -104470331,"Team Fortress 2",purchase,1.0,0 -104470331,"Team Fortress 2",play,2.2,0 -302004137,"Dota 2",purchase,1.0,0 -302004137,"Dota 2",play,4.9,0 -56002861,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -56002861,"Call of Duty Modern Warfare 2 - Multiplayer",play,233.0,0 -56002861,"Call of Duty Modern Warfare 2",purchase,1.0,0 -56002861,"Call of Duty Modern Warfare 2",play,19.1,0 -56002861,"Day of Defeat Source",purchase,1.0,0 -56002861,"Day of Defeat Source",play,17.4,0 -56002861,"Counter-Strike Global Offensive",purchase,1.0,0 -56002861,"Counter-Strike Global Offensive",play,14.6,0 -56002861,"Team Fortress 2",purchase,1.0,0 -56002861,"Team Fortress 2",play,7.0,0 -56002861,"Counter-Strike Source",purchase,1.0,0 -56002861,"Counter-Strike Source",play,0.2,0 -56002861,"Counter-Strike Condition Zero",purchase,1.0,0 -56002861,"Call of Duty Modern Warfare 2 - Resurgence Pack",purchase,1.0,0 -56002861,"Call of Duty Modern Warfare 2 Stimulus Package",purchase,1.0,0 -56002861,"Counter-Strike",purchase,1.0,0 -56002861,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -201283792,"Dota 2",purchase,1.0,0 -201283792,"Dota 2",play,209.0,0 -201283792,"Counter-Strike Global Offensive",purchase,1.0,0 -201283792,"Counter-Strike Global Offensive",play,107.0,0 -201283792,"PAYDAY 2",purchase,1.0,0 -201283792,"PAYDAY 2",play,8.5,0 -201283792,"Euro Truck Simulator 2",purchase,1.0,0 -201283792,"Euro Truck Simulator 2",play,5.6,0 -201283792,"Pool Nation FX",purchase,1.0,0 -202775025,"Wolfenstein The New Order",purchase,1.0,0 -202775025,"Wolfenstein The New Order",play,122.0,0 -202775025,"Call of Duty Modern Warfare 2",purchase,1.0,0 -202775025,"Call of Duty Modern Warfare 2",play,8.2,0 -202775025,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -296106225,"Dota 2",purchase,1.0,0 -296106225,"Dota 2",play,15.3,0 -152793135,"Dota 2",purchase,1.0,0 -152793135,"Dota 2",play,7.8,0 -3527485,"Dota 2",purchase,1.0,0 -3527485,"Dota 2",play,455.0,0 -3527485,"Far Cry 2",purchase,1.0,0 -3527485,"Far Cry 2",play,29.0,0 -3527485,"Portal 2",purchase,1.0,0 -3527485,"Portal 2",play,11.4,0 -3527485,"Left 4 Dead 2",purchase,1.0,0 -3527485,"Left 4 Dead 2",play,10.5,0 -3527485,"Counter-Strike",purchase,1.0,0 -3527485,"Counter-Strike",play,6.6,0 -3527485,"Half-Life 2",purchase,1.0,0 -3527485,"Half-Life 2",play,3.8,0 -3527485,"Garry's Mod",purchase,1.0,0 -3527485,"Garry's Mod",play,3.0,0 -3527485,"Portal",purchase,1.0,0 -3527485,"Portal",play,2.7,0 -3527485,"Half-Life 2 Deathmatch",purchase,1.0,0 -3527485,"Half-Life 2 Deathmatch",play,2.3,0 -3527485,"Half-Life",purchase,1.0,0 -3527485,"Half-Life",play,2.0,0 -3527485,"No More Room in Hell",purchase,1.0,0 -3527485,"No More Room in Hell",play,1.3,0 -3527485,"Aliens vs. Predator",purchase,1.0,0 -3527485,"Aliens vs. Predator",play,1.2,0 -3527485,"Duke Nukem Forever",purchase,1.0,0 -3527485,"Duke Nukem Forever",play,0.8,0 -3527485,"Alien Swarm",purchase,1.0,0 -3527485,"Alien Swarm",play,0.2,0 -3527485,"Half-Life 2 Lost Coast",purchase,1.0,0 -3527485,"Half-Life 2 Lost Coast",play,0.1,0 -3527485,"Counter-Strike Source",purchase,1.0,0 -3527485,"Day of Defeat",purchase,1.0,0 -3527485,"Deathmatch Classic",purchase,1.0,0 -3527485,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -3527485,"Half-Life Blue Shift",purchase,1.0,0 -3527485,"Half-Life Opposing Force",purchase,1.0,0 -3527485,"Ricochet",purchase,1.0,0 -3527485,"Team Fortress Classic",purchase,1.0,0 -304037281,"Emily is Away",purchase,1.0,0 -304037281,"Emily is Away",play,0.8,0 -304037281,"Carpe Diem",purchase,1.0,0 -304037281,"Carpe Diem",play,0.2,0 -52863875,"Counter-Strike Source",purchase,1.0,0 -52863875,"Counter-Strike Source",play,16.6,0 -52863875,"Day of Defeat Source",purchase,1.0,0 -52863875,"Day of Defeat Source",play,0.2,0 -52863875,"Half-Life 2 Deathmatch",purchase,1.0,0 -52863875,"Half-Life 2 Deathmatch",play,0.2,0 -52863875,"Half-Life 2 Lost Coast",purchase,1.0,0 -254095448,"Dota 2",purchase,1.0,0 -254095448,"Dota 2",play,4.3,0 -182548589,"Dota 2",purchase,1.0,0 -182548589,"Dota 2",play,3.1,0 -127606511,"Serious Sam HD The Second Encounter",purchase,1.0,0 -127606511,"Serious Sam HD The Second Encounter",play,0.2,0 -150472108,"Counter-Strike Global Offensive",purchase,1.0,0 -150472108,"Counter-Strike Global Offensive",play,202.0,0 -150472108,"Don't Starve Together Beta",purchase,1.0,0 -150472108,"Don't Starve Together Beta",play,26.0,0 -150472108,"Unturned",purchase,1.0,0 -150472108,"Unturned",play,23.0,0 -150472108,"Dota 2",purchase,1.0,0 -150472108,"Dota 2",play,11.1,0 -150472108,"BattleBlock Theater",purchase,1.0,0 -150472108,"BattleBlock Theater",play,3.4,0 -150472108,"No More Room in Hell",purchase,1.0,0 -150472108,"No More Room in Hell",play,0.8,0 -150472108,"TERA",purchase,1.0,0 -150472108,"Warframe",purchase,1.0,0 -276505968,"Counter-Strike Global Offensive",purchase,1.0,0 -276505968,"Counter-Strike Global Offensive",play,1.6,0 -125226713,"Counter-Strike",purchase,1.0,0 -125226713,"Counter-Strike",play,510.0,0 -125226713,"Counter-Strike Condition Zero",purchase,1.0,0 -125226713,"Counter-Strike Condition Zero",play,7.1,0 -125226713,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -285860790,"Counter-Strike Global Offensive",purchase,1.0,0 -285860790,"Counter-Strike Global Offensive",play,261.0,0 -285860790,"Darksiders II",purchase,1.0,0 -285860790,"Darksiders II",play,34.0,0 -285860790,"Fallout New Vegas",purchase,1.0,0 -285860790,"Fallout New Vegas",play,24.0,0 -285860790,"Darksiders",purchase,1.0,0 -285860790,"Darksiders",play,22.0,0 -285860790,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -285860790,"Deus Ex Human Revolution - Director's Cut",play,22.0,0 -285860790,"Assassin's Creed Revelations",purchase,1.0,0 -285860790,"Assassin's Creed Revelations",play,18.9,0 -285860790,"PROTOTYPE 2",purchase,1.0,0 -285860790,"PROTOTYPE 2",play,14.5,0 -285860790,"Half-Life 2",purchase,1.0,0 -285860790,"Half-Life 2",play,12.9,0 -285860790,"Remember Me",purchase,1.0,0 -285860790,"Remember Me",play,9.7,0 -285860790,"Fallout 3",purchase,1.0,0 -285860790,"Fallout 3",play,9.2,0 -285860790,"Borderlands",purchase,1.0,0 -285860790,"Borderlands",play,9.0,0 -285860790,"Hard Reset",purchase,1.0,0 -285860790,"Hard Reset",play,8.3,0 -285860790,"Metro 2033",purchase,1.0,0 -285860790,"Metro 2033",play,6.1,0 -285860790,"ORION Prelude",purchase,1.0,0 -285860790,"ORION Prelude",play,0.9,0 -285860790,"Hitman Codename 47",purchase,1.0,0 -285860790,"Hitman Codename 47",play,0.4,0 -285860790,"One Finger Death Punch",purchase,1.0,0 -285860790,"Ascend Hand of Kul",purchase,1.0,0 -285860790,"Half-Life 2 Lost Coast",purchase,1.0,0 -285860790,"Hard Reset Exile DLC",purchase,1.0,0 -285860790,"Hitman 2 Silent Assassin",purchase,1.0,0 -285860790,"Hitman Absolution",purchase,1.0,0 -285860790,"Hitman Blood Money",purchase,1.0,0 -285860790,"Hitman Contracts",purchase,1.0,0 -285860790,"Hitman Sniper Challenge",purchase,1.0,0 -285860790,"PAYDAY The Heist",purchase,1.0,0 -285860790,"Prototype 2 RADNET Access Pack",purchase,1.0,0 -285860790,"The Elder Scrolls V Skyrim",purchase,1.0,0 -285860790,"War Thunder",purchase,1.0,0 -84555487,"Team Fortress 2",purchase,1.0,0 -84555487,"Team Fortress 2",play,2.1,0 -271886944,"Dota 2",purchase,1.0,0 -271886944,"Dota 2",play,0.4,0 -167608965,"Dota 2",purchase,1.0,0 -167608965,"Dota 2",play,16.1,0 -186010200,"Heroes & Generals",purchase,1.0,0 -186010200,"Heroes & Generals",play,14.0,0 -216029829,"Team Fortress 2",purchase,1.0,0 -216029829,"Team Fortress 2",play,0.9,0 -206701226,"Dota 2",purchase,1.0,0 -206701226,"Dota 2",play,89.0,0 -195584941,"Warframe",purchase,1.0,0 -195584941,"Warframe",play,100.0,0 -195584941,"Defiance",purchase,1.0,0 -195584941,"Defiance",play,39.0,0 -195584941,"Team Fortress 2",purchase,1.0,0 -195584941,"Team Fortress 2",play,24.0,0 -195584941,"Unturned",purchase,1.0,0 -195584941,"Unturned",play,23.0,0 -195584941,"Loadout Campaign Beta",purchase,1.0,0 -195584941,"Loadout Campaign Beta",play,16.0,0 -195584941,"Goat Simulator",purchase,1.0,0 -195584941,"Goat Simulator",play,3.2,0 -195584941,"Warface",purchase,1.0,0 -195584941,"Warface",play,1.6,0 -195584941,"Heroes & Generals",purchase,1.0,0 -195584941,"Heroes & Generals",play,1.3,0 -195584941,"theHunter",purchase,1.0,0 -195584941,"theHunter",play,0.3,0 -195584941,"PlanetSide 2",purchase,1.0,0 -195584941,"Cannons Lasers Rockets",purchase,1.0,0 -195584941,"Counter-Strike Nexon Zombies",purchase,1.0,0 -195584941,"RIFT",purchase,1.0,0 -195584941,"War Thunder",purchase,1.0,0 -215127686,"Unturned",purchase,1.0,0 -215127686,"Unturned",play,2.0,0 -131237387,"Dota 2",purchase,1.0,0 -131237387,"Dota 2",play,7.1,0 -199768117,"Counter-Strike Global Offensive",purchase,1.0,0 -199768117,"Counter-Strike Global Offensive",play,761.0,0 -199768117,"Garry's Mod",purchase,1.0,0 -199768117,"Garry's Mod",play,16.5,0 -199768117,"Rocket League",purchase,1.0,0 -199768117,"Rocket League",play,8.9,0 -199768117,"Nidhogg",purchase,1.0,0 -199768117,"Nidhogg",play,3.3,0 -114617787,"Dota 2",purchase,1.0,0 -114617787,"Dota 2",play,2254.0,0 -114617787,"Counter-Strike Global Offensive",purchase,1.0,0 -114617787,"Counter-Strike Global Offensive",play,343.0,0 -114617787,"Warframe",purchase,1.0,0 -114617787,"Warframe",play,46.0,0 -114617787,"Mortal Kombat Komplete Edition",purchase,1.0,0 -114617787,"Mortal Kombat Komplete Edition",play,13.3,0 -114617787,"Fistful of Frags",purchase,1.0,0 -114617787,"Fistful of Frags",play,4.5,0 -114617787,"The Mighty Quest For Epic Loot",purchase,1.0,0 -114617787,"The Mighty Quest For Epic Loot",play,3.2,0 -114617787,"Counter-Strike",purchase,1.0,0 -114617787,"Counter-Strike",play,3.2,0 -114617787,"ARK Survival Evolved",purchase,1.0,0 -114617787,"ARK Survival Evolved",play,2.9,0 -114617787,"Garry's Mod",purchase,1.0,0 -114617787,"Garry's Mod",play,1.2,0 -114617787,"Gorky 17",purchase,1.0,0 -114617787,"Counter-Strike Condition Zero",purchase,1.0,0 -114617787,"Heroes & Generals",purchase,1.0,0 -114617787,"SMITE",purchase,1.0,0 -114617787,"A Valley Without Wind",purchase,1.0,0 -114617787,"A Valley Without Wind 2",purchase,1.0,0 -114617787,"Batla",purchase,1.0,0 -114617787,"BattleBlock Theater",purchase,1.0,0 -114617787,"Black Fire",purchase,1.0,0 -114617787,"C9",purchase,1.0,0 -114617787,"Card Hunter",purchase,1.0,0 -114617787,"Clicker Heroes",purchase,1.0,0 -114617787,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -114617787,"Counter-Strike Nexon Zombies",purchase,1.0,0 -114617787,"Dead Island Epidemic",purchase,1.0,0 -114617787,"Dragon Nest Europe",purchase,1.0,0 -114617787,"Eldevin",purchase,1.0,0 -114617787,"Electronic Super Joy Groove City",purchase,1.0,0 -114617787,"Fallen Earth",purchase,1.0,0 -114617787,"Frontline Tactics",purchase,1.0,0 -114617787,"Guns and Robots",purchase,1.0,0 -114617787,"Happy Wars",purchase,1.0,0 -114617787,"Haunted Memories",purchase,1.0,0 -114617787,"Karos",purchase,1.0,0 -114617787,"Kingdoms CCG",purchase,1.0,0 -114617787,"Loadout",purchase,1.0,0 -114617787,"Loadout Campaign Beta",purchase,1.0,0 -114617787,"Magic Duels",purchase,1.0,0 -114617787,"Magicka Wizard Wars",purchase,1.0,0 -114617787,"Marvel Heroes 2015",purchase,1.0,0 -114617787,"Mortal Online",purchase,1.0,0 -114617787,"Neverwinter",purchase,1.0,0 -114617787,"Nightbanes",purchase,1.0,0 -114617787,"No More Room in Hell",purchase,1.0,0 -114617787,"Nosgoth",purchase,1.0,0 -114617787,"Prime World",purchase,1.0,0 -114617787,"Quake Live",purchase,1.0,0 -114617787,"Red Crucible Firestorm",purchase,1.0,0 -114617787,"Requiem",purchase,1.0,0 -114617787,"Robocraft",purchase,1.0,0 -114617787,"Running Shadow",purchase,1.0,0 -114617787,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -114617787,"Sins of a Dark Age",purchase,1.0,0 -114617787,"Survarium",purchase,1.0,0 -114617787,"sZone-Online",purchase,1.0,0 -114617787,"Tactical Intervention",purchase,1.0,0 -114617787,"TDP5 Arena 3D",purchase,1.0,0 -114617787,"The Banner Saga Factions",purchase,1.0,0 -114617787,"The Gate",purchase,1.0,0 -114617787,"theHunter",purchase,1.0,0 -114617787,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -114617787,"Tribes Ascend",purchase,1.0,0 -114617787,"Trove",purchase,1.0,0 -114617787,"Unturned",purchase,1.0,0 -114617787,"War of the Roses",purchase,1.0,0 -211088737,"Dota 2",purchase,1.0,0 -211088737,"Dota 2",play,2.0,0 -37490443,"Team Fortress 2",purchase,1.0,0 -37490443,"Team Fortress 2",play,440.0,0 -37490443,"Dota 2",purchase,1.0,0 -37490443,"Dota 2",play,330.0,0 -37490443,"Counter-Strike Source",purchase,1.0,0 -37490443,"Counter-Strike Source",play,190.0,0 -37490443,"The Elder Scrolls V Skyrim",purchase,1.0,0 -37490443,"The Elder Scrolls V Skyrim",play,144.0,0 -37490443,"Grand Theft Auto IV",purchase,1.0,0 -37490443,"Grand Theft Auto IV",play,65.0,0 -37490443,"Mafia II",purchase,1.0,0 -37490443,"Mafia II",play,43.0,0 -37490443,"Left 4 Dead",purchase,1.0,0 -37490443,"Left 4 Dead",play,40.0,0 -37490443,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -37490443,"Call of Duty Modern Warfare 2 - Multiplayer",play,39.0,0 -37490443,"Sid Meier's Civilization V",purchase,1.0,0 -37490443,"Sid Meier's Civilization V",play,31.0,0 -37490443,"Assassin's Creed II",purchase,1.0,0 -37490443,"Assassin's Creed II",play,30.0,0 -37490443,"Assassin's Creed",purchase,1.0,0 -37490443,"Assassin's Creed",play,29.0,0 -37490443,"Half-Life 2 Deathmatch",purchase,1.0,0 -37490443,"Half-Life 2 Deathmatch",play,26.0,0 -37490443,"Saints Row 2",purchase,1.0,0 -37490443,"Saints Row 2",play,24.0,0 -37490443,"Call of Duty Modern Warfare 2",purchase,1.0,0 -37490443,"Call of Duty Modern Warfare 2",play,24.0,0 -37490443,"Half-Life 2",purchase,1.0,0 -37490443,"Half-Life 2",play,15.7,0 -37490443,"Left 4 Dead 2",purchase,1.0,0 -37490443,"Left 4 Dead 2",play,13.9,0 -37490443,"Batman Arkham City GOTY",purchase,1.0,0 -37490443,"Batman Arkham City GOTY",play,13.1,0 -37490443,"Call of Duty Modern Warfare 3",purchase,1.0,0 -37490443,"Call of Duty Modern Warfare 3",play,7.1,0 -37490443,"Age of Chivalry",purchase,1.0,0 -37490443,"Age of Chivalry",play,6.6,0 -37490443,"BioShock",purchase,1.0,0 -37490443,"BioShock",play,3.8,0 -37490443,"Super Hexagon",purchase,1.0,0 -37490443,"Super Hexagon",play,3.1,0 -37490443,"Company of Heroes (New Steam Version)",purchase,1.0,0 -37490443,"Company of Heroes (New Steam Version)",play,0.6,0 -37490443,"Zombie Panic Source",purchase,1.0,0 -37490443,"Zombie Panic Source",play,0.4,0 -37490443,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -37490443,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,0.3,0 -37490443,"Day of Defeat Source",purchase,1.0,0 -37490443,"Half-Life 2 Lost Coast",purchase,1.0,0 -37490443,"BioShock 2",purchase,1.0,0 -37490443,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -37490443,"Company of Heroes",purchase,1.0,0 -37490443,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -172766915,"Team Fortress 2",purchase,1.0,0 -172766915,"Team Fortress 2",play,5.9,0 -302228798,"Mitos.is The Game",purchase,1.0,0 -302228798,"Mitos.is The Game",play,14.2,0 -302228798,"Unturned",purchase,1.0,0 -302228798,"Unturned",play,2.0,0 -181230674,"Guns of Icarus Online",purchase,1.0,0 -181230674,"Guns of Icarus Online",play,0.3,0 -77018622,"R.U.S.E",purchase,1.0,0 -77018622,"R.U.S.E",play,0.6,0 -77018622,"R.U.S.E.",purchase,1.0,0 -239488605,"TERA",purchase,1.0,0 -239488605,"TERA",play,66.0,0 -182478684,"Team Fortress 2",purchase,1.0,0 -182478684,"Team Fortress 2",play,57.0,0 -182478684,"Dota 2",purchase,1.0,0 -182478684,"Dota 2",play,1.3,0 -297391224,"Team Fortress 2",purchase,1.0,0 -297391224,"Team Fortress 2",play,0.3,0 -209804474,"Counter-Strike Global Offensive",purchase,1.0,0 -209804474,"Counter-Strike Global Offensive",play,17.7,0 -209804474,"No More Room in Hell",purchase,1.0,0 -209804474,"No More Room in Hell",play,6.6,0 -197666345,"Dota 2",purchase,1.0,0 -197666345,"Dota 2",play,27.0,0 -181112485,"Dota 2",purchase,1.0,0 -181112485,"Dota 2",play,7.8,0 -104727643,"The Elder Scrolls V Skyrim",purchase,1.0,0 -104727643,"The Elder Scrolls V Skyrim",play,385.0,0 -104727643,"Champions Online",purchase,1.0,0 -104727643,"Champions Online",play,178.0,0 -104727643,"Counter-Strike Global Offensive",purchase,1.0,0 -104727643,"Counter-Strike Global Offensive",play,64.0,0 -104727643,"Nosgoth",purchase,1.0,0 -104727643,"Nosgoth",play,39.0,0 -104727643,"Ascend Hand of Kul",purchase,1.0,0 -104727643,"Ascend Hand of Kul",play,35.0,0 -104727643,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -104727643,"Vampire The Masquerade - Bloodlines",play,34.0,0 -104727643,"Total War SHOGUN 2",purchase,1.0,0 -104727643,"Total War SHOGUN 2",play,23.0,0 -104727643,"APB Reloaded",purchase,1.0,0 -104727643,"APB Reloaded",play,19.9,0 -104727643,"Divinity Dragon Commander",purchase,1.0,0 -104727643,"Divinity Dragon Commander",play,18.3,0 -104727643,"DARK SOULS II",purchase,1.0,0 -104727643,"DARK SOULS II",play,12.7,0 -104727643,"DARK",purchase,1.0,0 -104727643,"DARK",play,10.8,0 -104727643,"Killing Floor",purchase,1.0,0 -104727643,"Killing Floor",play,7.5,0 -104727643,"Plague Inc Evolved",purchase,1.0,0 -104727643,"Plague Inc Evolved",play,7.2,0 -104727643,"X Rebirth",purchase,1.0,0 -104727643,"X Rebirth",play,7.1,0 -104727643,"7 Days to Die",purchase,1.0,0 -104727643,"7 Days to Die",play,6.6,0 -104727643,"The Secret World",purchase,1.0,0 -104727643,"The Secret World",play,4.6,0 -104727643,"Outlast",purchase,1.0,0 -104727643,"Outlast",play,4.4,0 -104727643,"Defiance",purchase,1.0,0 -104727643,"Defiance",play,3.4,0 -104727643,"Sniper Elite Nazi Zombie Army",purchase,1.0,0 -104727643,"Sniper Elite Nazi Zombie Army",play,2.9,0 -104727643,"Blood Omen 2 Legacy of Kain",purchase,1.0,0 -104727643,"Blood Omen 2 Legacy of Kain",play,2.6,0 -104727643,"Scribblenauts Unmasked",purchase,1.0,0 -104727643,"Scribblenauts Unmasked",play,2.0,0 -104727643,"Postal 3",purchase,1.0,0 -104727643,"Postal 3",play,1.6,0 -104727643,"The Binding of Isaac",purchase,1.0,0 -104727643,"The Binding of Isaac",play,1.5,0 -104727643,"State of Decay",purchase,1.0,0 -104727643,"State of Decay",play,1.1,0 -104727643,"Team Fortress 2",purchase,1.0,0 -104727643,"Team Fortress 2",play,0.6,0 -104727643,"Infestation Survivor Stories",purchase,1.0,0 -104727643,"Infestation Survivor Stories",play,0.5,0 -104727643,"Robocraft",purchase,1.0,0 -104727643,"Robocraft",play,0.4,0 -104727643,"ArcheAge",purchase,1.0,0 -104727643,"ArcheAge",play,0.4,0 -104727643,"Heroes & Generals",purchase,1.0,0 -104727643,"Heroes & Generals",play,0.4,0 -104727643,"Hacker Evolution",purchase,1.0,0 -104727643,"Hacker Evolution",play,0.3,0 -104727643,"Rise of Incarnates",purchase,1.0,0 -104727643,"Rise of Incarnates",play,0.2,0 -104727643,"Card Hunter",purchase,1.0,0 -104727643,"Card Hunter",play,0.2,0 -104727643,"World of Guns Gun Disassembly",purchase,1.0,0 -104727643,"World of Guns Gun Disassembly",play,0.1,0 -104727643,"Dota 2",purchase,1.0,0 -104727643,"Dota 2",play,0.1,0 -104727643,"Spooky's House of Jump Scares",purchase,1.0,0 -104727643,"Spooky's House of Jump Scares",play,0.1,0 -104727643,"Divine Souls",purchase,1.0,0 -104727643,"Double Action Boogaloo",purchase,1.0,0 -104727643,"Dizzel",purchase,1.0,0 -104727643,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -104727643,"Divinity Dragon Commander Beta",purchase,1.0,0 -104727643,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -104727643,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -104727643,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -104727643,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -237012219,"Dota 2",purchase,1.0,0 -237012219,"Dota 2",play,276.0,0 -192012936,"Unturned",purchase,1.0,0 -192012936,"Unturned",play,6.3,0 -192012936,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -192012936,"Tom Clancy's Ghost Recon Phantoms - NA",play,3.7,0 -192012936,"Cubic Castles",purchase,1.0,0 -192012936,"Cubic Castles",play,0.7,0 -192012936,"Only If",purchase,1.0,0 -299586690,"DmC Devil May Cry",purchase,1.0,0 -225848614,"Terraria",purchase,1.0,0 -225848614,"Terraria",play,246.0,0 -225848614,"Overlord Raising Hell",purchase,1.0,0 -225848614,"Overlord Raising Hell",play,4.1,0 -225848614,"Overlord",purchase,1.0,0 -225848614,"Overlord",play,1.0,0 -225848614,"9.03m",purchase,1.0,0 -225848614,"Brick-Force",purchase,1.0,0 -225848614,"Happy Wars",purchase,1.0,0 -225848614,"Overlord II",purchase,1.0,0 -225848614,"Trine",purchase,1.0,0 -225848614,"Unturned",purchase,1.0,0 -10144504,"Half-Life 2 Episode Two",purchase,1.0,0 -10144504,"Half-Life 2 Episode Two",play,5.0,0 -10144504,"Half-Life 2",purchase,1.0,0 -10144504,"Half-Life 2",play,0.4,0 -10144504,"Counter-Strike Source",purchase,1.0,0 -10144504,"Counter-Strike Source",play,0.3,0 -10144504,"Day of Defeat Source",purchase,1.0,0 -10144504,"Half-Life 2 Deathmatch",purchase,1.0,0 -10144504,"Half-Life 2 Episode One",purchase,1.0,0 -10144504,"Half-Life 2 Lost Coast",purchase,1.0,0 -10144504,"Half-Life Deathmatch Source",purchase,1.0,0 -3674653,"Counter-Strike",purchase,1.0,0 -3674653,"Counter-Strike",play,772.0,0 -3674653,"Day of Defeat",purchase,1.0,0 -3674653,"Deathmatch Classic",purchase,1.0,0 -3674653,"Half-Life",purchase,1.0,0 -3674653,"Half-Life Blue Shift",purchase,1.0,0 -3674653,"Half-Life Opposing Force",purchase,1.0,0 -3674653,"Ricochet",purchase,1.0,0 -3674653,"Team Fortress Classic",purchase,1.0,0 -197949629,"Saints Row IV",purchase,1.0,0 -197949629,"Saints Row IV",play,84.0,0 -197949629,"Team Fortress 2",purchase,1.0,0 -197949629,"Team Fortress 2",play,78.0,0 -197949629,"Call of Duty World at War",purchase,1.0,0 -197949629,"Call of Duty World at War",play,74.0,0 -197949629,"Counter-Strike Global Offensive",purchase,1.0,0 -197949629,"Counter-Strike Global Offensive",play,16.1,0 -197949629,"Dirty Bomb",purchase,1.0,0 -197949629,"Dirty Bomb",play,9.9,0 -197949629,"Garry's Mod",purchase,1.0,0 -197949629,"Garry's Mod",play,7.8,0 -197949629,"Town of Salem",purchase,1.0,0 -197949629,"Town of Salem",play,7.6,0 -197949629,"Warframe",purchase,1.0,0 -197949629,"Warframe",play,5.1,0 -197949629,"PAYDAY 2",purchase,1.0,0 -197949629,"PAYDAY 2",play,2.8,0 -197949629,"Rocket League",purchase,1.0,0 -197949629,"Rocket League",play,2.6,0 -197949629,"Five Nights at Freddy's 2",purchase,1.0,0 -197949629,"Five Nights at Freddy's 2",play,0.9,0 -197949629,"Dota 2",purchase,1.0,0 -197949629,"Dota 2",play,0.5,0 -197949629,"Endless Sky",purchase,1.0,0 -197949629,"Endless Sky",play,0.3,0 -197949629,"GASP",purchase,1.0,0 -197949629,"GASP",play,0.3,0 -197949629,"Lineage II",purchase,1.0,0 -197949629,"Lineage II",play,0.2,0 -197949629,"SMITE",purchase,1.0,0 -197949629,"SMITE",play,0.2,0 -197949629,"Counter-Strike Nexon Zombies",purchase,1.0,0 -197949629,"Counter-Strike Nexon Zombies",play,0.1,0 -197949629,"Aion",purchase,1.0,0 -197949629,"Counter-Strike Nexon Zombies - Starter Pack",purchase,1.0,0 -197949629,"Happy Wars",purchase,1.0,0 -197949629,"Might & Magic Heroes Online",purchase,1.0,0 -197949629,"Rising Angels Reborn",purchase,1.0,0 -76177929,"Football Manager 2009",purchase,1.0,0 -76177929,"Football Manager 2009",play,0.7,0 -180887333,"Sid Meier's Civilization V",purchase,1.0,0 -180887333,"Sid Meier's Civilization V",play,66.0,0 -146994562,"Stronghold 3",purchase,1.0,0 -146994562,"Stronghold 3",play,0.8,0 -146994562,"Stronghold HD",purchase,1.0,0 -202700286,"Dota 2",purchase,1.0,0 -202700286,"Dota 2",play,2.5,0 -112944877,"Dota 2",purchase,1.0,0 -112944877,"Dota 2",play,0.2,0 -112944877,"Team Fortress 2",purchase,1.0,0 -112944877,"Team Fortress 2",play,0.1,0 -112944877,"Heroes & Generals",purchase,1.0,0 -112944877,"Heroes & Generals",play,0.1,0 -112944877,"Warface",purchase,1.0,0 -192274690,"Team Fortress 2",purchase,1.0,0 -192274690,"Team Fortress 2",play,0.8,0 -192274690,"Arma 2 Free",purchase,1.0,0 -192274690,"Unturned",purchase,1.0,0 -110480529,"Call of Duty Modern Warfare 2",purchase,1.0,0 -110480529,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -155242980,"Dota 2",purchase,1.0,0 -155242980,"Dota 2",play,0.5,0 -61099969,"Left 4 Dead 2",purchase,1.0,0 -61099969,"Left 4 Dead 2",play,10.4,0 -61099969,"Guns of Icarus Online",purchase,1.0,0 -61099969,"Guns of Icarus Online",play,6.1,0 -248899637,"Dota 2",purchase,1.0,0 -248899637,"Dota 2",play,1.7,0 -248899637,"Marvel Heroes 2015",purchase,1.0,0 -248899637,"Nosgoth",purchase,1.0,0 -248899637,"Ragnarok Online 2",purchase,1.0,0 -248899637,"Strife",purchase,1.0,0 -248899637,"TOME Immortal Arena",purchase,1.0,0 -156382881,"Dota 2",purchase,1.0,0 -156382881,"Dota 2",play,0.4,0 -160042745,"Dota 2",purchase,1.0,0 -160042745,"Dota 2",play,998.0,0 -160042745,"Left 4 Dead 2",purchase,1.0,0 -160042745,"Left 4 Dead 2",play,21.0,0 -160042745,"This War of Mine",purchase,1.0,0 -160042745,"This War of Mine",play,7.7,0 -160042745,"War Thunder",purchase,1.0,0 -160042745,"War Thunder",play,6.6,0 -160042745,"The Long Dark",purchase,1.0,0 -160042745,"The Long Dark",play,6.4,0 -160042745,"Mount & Blade Warband",purchase,1.0,0 -160042745,"Mount & Blade Warband",play,4.3,0 -160042745,"Fallen Earth",purchase,1.0,0 -239449577,"Team Fortress 2",purchase,1.0,0 -239449577,"Team Fortress 2",play,0.4,0 -208994172,"Unturned",purchase,1.0,0 -208994172,"Unturned",play,2.0,0 -208994172,"Metal War Online Retribution",purchase,1.0,0 -201763859,"Dota 2",purchase,1.0,0 -201763859,"Dota 2",play,448.0,0 -66615366,"Fallout New Vegas",purchase,1.0,0 -66615366,"Fallout New Vegas",play,417.0,0 -66615366,"Borderlands 2",purchase,1.0,0 -66615366,"Borderlands 2",play,359.0,0 -66615366,"Torchlight II",purchase,1.0,0 -66615366,"Torchlight II",play,237.0,0 -66615366,"The Elder Scrolls V Skyrim",purchase,1.0,0 -66615366,"The Elder Scrolls V Skyrim",play,204.0,0 -66615366,"Team Fortress 2",purchase,1.0,0 -66615366,"Team Fortress 2",play,181.0,0 -66615366,"Dishonored",purchase,1.0,0 -66615366,"Dishonored",play,88.0,0 -66615366,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -66615366,"Batman Arkham Asylum GOTY Edition",play,66.0,0 -66615366,"Darkest Dungeon",purchase,1.0,0 -66615366,"Darkest Dungeon",play,49.0,0 -66615366,"BioShock Infinite",purchase,1.0,0 -66615366,"BioShock Infinite",play,25.0,0 -66615366,"Magic The Gathering - Duels of the Planeswalkers 2013",purchase,1.0,0 -66615366,"Magic The Gathering - Duels of the Planeswalkers 2013",play,23.0,0 -66615366,"Torchlight",purchase,1.0,0 -66615366,"Torchlight",play,23.0,0 -66615366,"Metro Last Light",purchase,1.0,0 -66615366,"Metro Last Light",play,23.0,0 -66615366,"Starbound",purchase,1.0,0 -66615366,"Starbound",play,19.5,0 -66615366,"DC Universe Online",purchase,1.0,0 -66615366,"DC Universe Online",play,9.7,0 -66615366,"Dead Space",purchase,1.0,0 -66615366,"Dead Space",play,9.0,0 -66615366,"Mark of the Ninja",purchase,1.0,0 -66615366,"Mark of the Ninja",play,8.1,0 -66615366,"Super Meat Boy",purchase,1.0,0 -66615366,"Super Meat Boy",play,7.7,0 -66615366,"Counter-Strike Global Offensive",purchase,1.0,0 -66615366,"Counter-Strike Global Offensive",play,6.5,0 -66615366,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -66615366,"Fallout 3 - Game of the Year Edition",play,4.5,0 -66615366,"Orcs Must Die! 2",purchase,1.0,0 -66615366,"Orcs Must Die! 2",play,4.4,0 -66615366,"Scribblenauts Unlimited",purchase,1.0,0 -66615366,"Scribblenauts Unlimited",play,4.3,0 -66615366,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -66615366,"S.T.A.L.K.E.R. Call of Pripyat",play,4.2,0 -66615366,"Psychonauts",purchase,1.0,0 -66615366,"Psychonauts",play,3.7,0 -66615366,"Alien Swarm",purchase,1.0,0 -66615366,"Alien Swarm",play,2.6,0 -66615366,"Amnesia The Dark Descent",purchase,1.0,0 -66615366,"Amnesia The Dark Descent",play,2.1,0 -66615366,"Rogue Legacy",purchase,1.0,0 -66615366,"Rogue Legacy",play,1.8,0 -66615366,"Neverwinter",purchase,1.0,0 -66615366,"Neverwinter",play,1.4,0 -66615366,"LIMBO",purchase,1.0,0 -66615366,"LIMBO",play,1.3,0 -66615366,"Batman Arkham City GOTY",purchase,1.0,0 -66615366,"Batman Arkham City GOTY",play,1.0,0 -66615366,"Company of Heroes",purchase,1.0,0 -66615366,"Company of Heroes",play,1.0,0 -66615366,"Dota 2",purchase,1.0,0 -66615366,"Dota 2",play,0.6,0 -66615366,"Left 4 Dead 2",purchase,1.0,0 -66615366,"Left 4 Dead 2",play,0.4,0 -66615366,"Brtal Legend",purchase,1.0,0 -66615366,"Brtal Legend",play,0.4,0 -66615366,"Saints Row The Third",purchase,1.0,0 -66615366,"Saints Row The Third",play,0.2,0 -66615366,"FEZ",purchase,1.0,0 -66615366,"FEZ",play,0.1,0 -66615366,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -66615366,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -66615366,"Portal 2",purchase,1.0,0 -66615366,"A Virus Named TOM",purchase,1.0,0 -66615366,"Bastion",purchase,1.0,0 -66615366,"Company of Heroes (New Steam Version)",purchase,1.0,0 -66615366,"Dead Space 2",purchase,1.0,0 -66615366,"Eets Munchies",purchase,1.0,0 -66615366,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -66615366,"Fallout New Vegas Dead Money",purchase,1.0,0 -66615366,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -66615366,"FTL Faster Than Light",purchase,1.0,0 -66615366,"Half-Life 2",purchase,1.0,0 -66615366,"Half-Life 2 Lost Coast",purchase,1.0,0 -66615366,"Portal",purchase,1.0,0 -66615366,"Psychonauts Demo",purchase,1.0,0 -66615366,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -66615366,"Starbound - Unstable",purchase,1.0,0 -66615366,"Team Fortress Classic",purchase,1.0,0 -66615366,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -66615366,"Trine 2",purchase,1.0,0 -118541865,"PAYDAY 2",purchase,1.0,0 -118541865,"PAYDAY 2",play,58.0,0 -118541865,"The Walking Dead",purchase,1.0,0 -118541865,"The Walking Dead",play,26.0,0 -118541865,"Left 4 Dead 2",purchase,1.0,0 -118541865,"Left 4 Dead 2",play,24.0,0 -118541865,"Magic Duels",purchase,1.0,0 -118541865,"Magic Duels",play,8.8,0 -118541865,"PlanetSide 2",purchase,1.0,0 -118541865,"PlanetSide 2",play,8.2,0 -118541865,"The Walking Dead Season Two",purchase,1.0,0 -118541865,"The Walking Dead Season Two",play,8.0,0 -118541865,"PAYDAY The Heist",purchase,1.0,0 -118541865,"PAYDAY The Heist",play,7.7,0 -118541865,"Afterfall InSanity Extended Edition",purchase,1.0,0 -118541865,"Afterfall InSanity Extended Edition",play,7.5,0 -118541865,"Counter-Strike Global Offensive",purchase,1.0,0 -118541865,"Counter-Strike Global Offensive",play,6.4,0 -118541865,"Sniper Elite V2",purchase,1.0,0 -118541865,"Sniper Elite V2",play,6.2,0 -118541865,"The Ship",purchase,1.0,0 -118541865,"The Ship",play,3.8,0 -118541865,"Goat Simulator",purchase,1.0,0 -118541865,"Goat Simulator",play,3.7,0 -118541865,"White Noise Online",purchase,1.0,0 -118541865,"White Noise Online",play,2.4,0 -118541865,"BioShock",purchase,1.0,0 -118541865,"BioShock",play,2.0,0 -118541865,"Adventures of Shuggy",purchase,1.0,0 -118541865,"Adventures of Shuggy",play,1.9,0 -118541865,"GunZ 2 The Second Duel",purchase,1.0,0 -118541865,"GunZ 2 The Second Duel",play,1.7,0 -118541865,"Enclave",purchase,1.0,0 -118541865,"Enclave",play,1.6,0 -118541865,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -118541865,"Deus Ex Human Revolution - Director's Cut",play,1.3,0 -118541865,"The Ship Single Player",purchase,1.0,0 -118541865,"The Ship Single Player",play,1.3,0 -118541865,"Anomaly Warzone Earth",purchase,1.0,0 -118541865,"Anomaly Warzone Earth",play,1.3,0 -118541865,"Arma Cold War Assault",purchase,1.0,0 -118541865,"Arma Cold War Assault",play,0.8,0 -118541865,"Saira",purchase,1.0,0 -118541865,"Saira",play,0.8,0 -118541865,"Frozen Hearth",purchase,1.0,0 -118541865,"Frozen Hearth",play,0.8,0 -118541865,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -118541865,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.8,0 -118541865,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -118541865,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,0.7,0 -118541865,"RACE 07",purchase,1.0,0 -118541865,"RACE 07",play,0.6,0 -118541865,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -118541865,"SEGA Genesis & Mega Drive Classics",play,0.4,0 -118541865,"SpaceChem",purchase,1.0,0 -118541865,"SpaceChem",play,0.4,0 -118541865,"Woodle Tree Adventures",purchase,1.0,0 -118541865,"Woodle Tree Adventures",play,0.3,0 -118541865,"Really Big Sky",purchase,1.0,0 -118541865,"Really Big Sky",play,0.3,0 -118541865,"Dino D-Day",purchase,1.0,0 -118541865,"Dino D-Day",play,0.3,0 -118541865,"Space Hack",purchase,1.0,0 -118541865,"Space Hack",play,0.2,0 -118541865,"RaceRoom Racing Experience ",purchase,1.0,0 -118541865,"RaceRoom Racing Experience ",play,0.2,0 -118541865,"Gun Monkeys",purchase,1.0,0 -118541865,"Gun Monkeys",play,0.2,0 -118541865,"East India Company Gold",purchase,1.0,0 -118541865,"East India Company Gold",play,0.1,0 -118541865,"Final Slam 2",purchase,1.0,0 -118541865,"Final Slam 2",play,0.1,0 -118541865,"GTR Evolution",purchase,1.0,0 -118541865,"8BitBoy",purchase,1.0,0 -118541865,"Alien Breed Impact",purchase,1.0,0 -118541865,"Altitude",purchase,1.0,0 -118541865,"Amnesia The Dark Descent",purchase,1.0,0 -118541865,"Anomaly Korea",purchase,1.0,0 -118541865,"Anoxemia",purchase,1.0,0 -118541865,"Avencast",purchase,1.0,0 -118541865,"Aveyond 3-2 Gates of Night",purchase,1.0,0 -118541865,"Battlepaths",purchase,1.0,0 -118541865,"Ben There, Dan That!",purchase,1.0,0 -118541865,"Bionic Dues",purchase,1.0,0 -118541865,"BioShock Infinite",purchase,1.0,0 -118541865,"Blaster Shooter GunGuy!",purchase,1.0,0 -118541865,"Blood of Old",purchase,1.0,0 -118541865,"Bloop",purchase,1.0,0 -118541865,"Borealis",purchase,1.0,0 -118541865,"Brawlhalla",purchase,1.0,0 -118541865,"Break Into Zatwor",purchase,1.0,0 -118541865,"Brilliant Bob",purchase,1.0,0 -118541865,"Burgers",purchase,1.0,0 -118541865,"Burstfire",purchase,1.0,0 -118541865,"Canyon Capers",purchase,1.0,0 -118541865,"Chaos Domain",purchase,1.0,0 -118541865,"Chip",purchase,1.0,0 -118541865,"Cobi Treasure Deluxe",purchase,1.0,0 -118541865,"Commander Conquest of the Americas Gold",purchase,1.0,0 -118541865,"Commando Jack",purchase,1.0,0 -118541865,"Counter-Strike Nexon Zombies",purchase,1.0,0 -118541865,"Crash Time II",purchase,1.0,0 -118541865,"CT Special Forces Fire for Effect",purchase,1.0,0 -118541865,"Cubetractor",purchase,1.0,0 -118541865,"Cult of the Wind",purchase,1.0,0 -118541865,"Dead Bits",purchase,1.0,0 -118541865,"Deadbreed",purchase,1.0,0 -118541865,"Desert Thunder",purchase,1.0,0 -118541865,"DogFighter",purchase,1.0,0 -118541865,"Earth 2150 The Moon Project",purchase,1.0,0 -118541865,"Enemy Mind",purchase,1.0,0 -118541865,"Epigenesis",purchase,1.0,0 -118541865,"Eurofighter Typhoon",purchase,1.0,0 -118541865,"Famaze",purchase,1.0,0 -118541865,"Glacier 3 The Meltdown",purchase,1.0,0 -118541865,"Gorky 17",purchase,1.0,0 -118541865,"Grimoire Manastorm",purchase,1.0,0 -118541865,"Gun Metal",purchase,1.0,0 -118541865,"Hitman 2 Silent Assassin",purchase,1.0,0 -118541865,"Hitman Absolution",purchase,1.0,0 -118541865,"Hostile Waters Antaeus Rising",purchase,1.0,0 -118541865,"Hyper Fighters",purchase,1.0,0 -118541865,"iBomber Defense Pacific",purchase,1.0,0 -118541865,"Incoming Forces",purchase,1.0,0 -118541865,"Ionball 2 Ionstorm",purchase,1.0,0 -118541865,"Jet Gunner",purchase,1.0,0 -118541865,"Knights and Merchants",purchase,1.0,0 -118541865,"KnightShift",purchase,1.0,0 -118541865,"Kung Fu Strike The Warrior's Rise",purchase,1.0,0 -118541865,"Litil Divil",purchase,1.0,0 -118541865,"Lucius",purchase,1.0,0 -118541865,"Magicka Wizard Wars",purchase,1.0,0 -118541865,"Make it indie!",purchase,1.0,0 -118541865,"Marine Sharpshooter II Jungle Warfare",purchase,1.0,0 -118541865,"Mechanic Escape",purchase,1.0,0 -118541865,"Memories of a Vagabond",purchase,1.0,0 -118541865,"Metro 2033",purchase,1.0,0 -118541865,"Murder Miners",purchase,1.0,0 -118541865,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -118541865,"Nosgoth",purchase,1.0,0 -118541865,"Numba Deluxe",purchase,1.0,0 -118541865,"Nux",purchase,1.0,0 -118541865,"Oddworld Abe's Oddysee",purchase,1.0,0 -118541865,"Orbital Gear",purchase,1.0,0 -118541865,"Orborun",purchase,1.0,0 -118541865,"Overcast - Walden and the Werewolf",purchase,1.0,0 -118541865,"Particula",purchase,1.0,0 -118541865,"PAYDAY The Web Series - Episode 1",purchase,1.0,0 -118541865,"PAYDAY Wolf Pack",purchase,1.0,0 -118541865,"Phoenix Force",purchase,1.0,0 -118541865,"Pid ",purchase,1.0,0 -118541865,"Pirates of Black Cove Gold",purchase,1.0,0 -118541865,"PixelJunk Monsters Ultimate",purchase,1.0,0 -118541865,"Pixel Puzzles Japan",purchase,1.0,0 -118541865,"Platypus II",purchase,1.0,0 -118541865,"POSTAL",purchase,1.0,0 -118541865,"ProtoGalaxy",purchase,1.0,0 -118541865,"QuestRun",purchase,1.0,0 -118541865,"Racer 8",purchase,1.0,0 -118541865,"Race The Sun",purchase,1.0,0 -118541865,"RADical ROACH Deluxe Edition",purchase,1.0,0 -118541865,"Realms of the Haunting",purchase,1.0,0 -118541865,"Receiver",purchase,1.0,0 -118541865,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -118541865,"Sanctum",purchase,1.0,0 -118541865,"Shadows on the Vatican - Act I Greed",purchase,1.0,0 -118541865,"Skyborn",purchase,1.0,0 -118541865,"Speedball 2 HD",purchase,1.0,0 -118541865,"Stealth Inc 2",purchase,1.0,0 -118541865,"Steel & Steam Episode 1",purchase,1.0,0 -118541865,"SUPER DISTRO",purchase,1.0,0 -118541865,"Super Killer Hornet Resurrection",purchase,1.0,0 -118541865,"Swipecart",purchase,1.0,0 -118541865,"Tea Party Simulator 2015",purchase,1.0,0 -118541865,"Teleglitch Die More Edition",purchase,1.0,0 -118541865,"The 39 Steps",purchase,1.0,0 -118541865,"The Culling Of The Cows",purchase,1.0,0 -118541865,"The Expendabros",purchase,1.0,0 -118541865,"The Journey Down Chapter One",purchase,1.0,0 -118541865,"The Ship Tutorial",purchase,1.0,0 -118541865,"Time Gentlemen, Please!",purchase,1.0,0 -118541865,"Tom Clancy's Ghost Recon Phantoms - NA Assault Starter Pack",purchase,1.0,0 -118541865,"Tom Clancy's Ghost Recon Phantoms - NA Looks and Power (Assault)",purchase,1.0,0 -118541865,"Tom Clancy's Ghost Recon Phantoms - NA Looks and Power (Recon)",purchase,1.0,0 -118541865,"Tom Clancy's Ghost Recon Phantoms - NA Looks and Power (Support)",purchase,1.0,0 -118541865,"Tom Clancy's Ghost Recon Phantoms - NA Recon Starter Pack",purchase,1.0,0 -118541865,"Tom Clancy's Ghost Recon Phantoms - NA Substance with Style pack (Assault)",purchase,1.0,0 -118541865,"Tom Clancy's Ghost Recon Phantoms - NA Support Starter Pack",purchase,1.0,0 -118541865,"Tom Clancy's Ghost Recon Phantoms - NA The Thrill of the Surprise",purchase,1.0,0 -118541865,"Tom Clancy's Ghost Recon Phantoms - NA WAR Madness pack (Recon)",purchase,1.0,0 -118541865,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -118541865,"Two Worlds Epic Edition",purchase,1.0,0 -118541865,"Two Worlds II",purchase,1.0,0 -118541865,"Ubinota",purchase,1.0,0 -118541865,"Vertical Drop Heroes HD",purchase,1.0,0 -118541865,"Victim of Xen",purchase,1.0,0 -118541865,"Victory Command",purchase,1.0,0 -118541865,"Warlock - Master of the Arcane",purchase,1.0,0 -118541865,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -118541865,"Weird Worlds Return to Infinite Space",purchase,1.0,0 -118541865,"Why So Evil",purchase,1.0,0 -118541865,"Why So Evil 2 Dystopia",purchase,1.0,0 -118541865,"Wickland",purchase,1.0,0 -118541865,"X-Blades",purchase,1.0,0 -118541865,"XCOM Enemy Unknown",purchase,1.0,0 -297925945,"Dota 2",purchase,1.0,0 -297925945,"Dota 2",play,118.0,0 -129910954,"Dota 2",purchase,1.0,0 -129910954,"Dota 2",play,0.1,0 -225512626,"Team Fortress 2",purchase,1.0,0 -225512626,"Team Fortress 2",play,0.9,0 -225512626,"Brick-Force",purchase,1.0,0 -225512626,"Dead Island Epidemic",purchase,1.0,0 -225512626,"Rise of Incarnates",purchase,1.0,0 -225512626,"Unturned",purchase,1.0,0 -54553556,"Quake Live",purchase,1.0,0 -54553556,"Spiral Knights",purchase,1.0,0 -54553556,"Transformice",purchase,1.0,0 -54553556,"Warframe",purchase,1.0,0 -54553556,"War Thunder",purchase,1.0,0 -185515672,"Unturned",purchase,1.0,0 -185515672,"Unturned",play,0.4,0 -203735948,"Team Fortress 2",purchase,1.0,0 -203735948,"Team Fortress 2",play,17.8,0 -281857216,"Counter-Strike Global Offensive",purchase,1.0,0 -281857216,"Counter-Strike Global Offensive",play,471.0,0 -281857216,"Hurtworld",purchase,1.0,0 -281857216,"Hurtworld",play,39.0,0 -281857216,"Trove",purchase,1.0,0 -281857216,"Trove",play,1.9,0 -281857216,"Rocket League",purchase,1.0,0 -281857216,"Rocket League",play,1.9,0 -281857216,"Savage Lands",purchase,1.0,0 -281857216,"Savage Lands",play,0.9,0 -281857216,"Dota 2",purchase,1.0,0 -281857216,"Dota 2",play,0.3,0 -281857216,"GRAV",purchase,1.0,0 -281857216,"GRAV",play,0.2,0 -281857216,"APB Reloaded",purchase,1.0,0 -281857216,"Archeblade",purchase,1.0,0 -281857216,"CSGO Player Profiles",purchase,1.0,0 -281857216,"CSGO Player Profiles - Device",purchase,1.0,0 -281857216,"CSGO Player Profiles - Edward",purchase,1.0,0 -281857216,"CSGO Player Profiles - Fallen",purchase,1.0,0 -281857216,"CSGO Player Profiles - Get_Right",purchase,1.0,0 -281857216,"CSGO Player Profiles - KennyS",purchase,1.0,0 -281857216,"CSGO Player Profiles - Markeloff",purchase,1.0,0 -281857216,"CSGO Player Profiles - N0thing",purchase,1.0,0 -281857216,"CSGO Player Profiles - Olofmeister",purchase,1.0,0 -281857216,"CSGO Player Profiles - Taz",purchase,1.0,0 -281857216,"Dead Island Epidemic",purchase,1.0,0 -281857216,"Dirty Bomb",purchase,1.0,0 -281857216,"Double Action Boogaloo",purchase,1.0,0 -281857216,"FreeStyle2 Street Basketball",purchase,1.0,0 -281857216,"Guns and Robots",purchase,1.0,0 -281857216,"HAWKEN",purchase,1.0,0 -281857216,"Heroes & Generals",purchase,1.0,0 -281857216,"Magicka Wizard Wars",purchase,1.0,0 -281857216,"Murder Miners",purchase,1.0,0 -281857216,"No More Room in Hell",purchase,1.0,0 -281857216,"Robocraft",purchase,1.0,0 -281857216,"Soldier Front 2",purchase,1.0,0 -281857216,"Strife",purchase,1.0,0 -281857216,"Unturned",purchase,1.0,0 -281857216,"Warface",purchase,1.0,0 -185467694,"DayZ",purchase,1.0,0 -185467694,"DayZ",play,8.3,0 -144515751,"Dota 2",purchase,1.0,0 -144515751,"Dota 2",play,0.3,0 -60736966,"Counter-Strike",purchase,1.0,0 -60736966,"Counter-Strike",play,994.0,0 -60736966,"Counter-Strike Condition Zero",purchase,1.0,0 -60736966,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -60736966,"Day of Defeat",purchase,1.0,0 -60736966,"Deathmatch Classic",purchase,1.0,0 -60736966,"Ricochet",purchase,1.0,0 -297650024,"Borderlands 2",purchase,1.0,0 -297650024,"Borderlands 2",play,46.0,0 -297650024,"Portal 2",purchase,1.0,0 -297650024,"Portal 2",play,7.8,0 -297650024,"Left 4 Dead 2",purchase,1.0,0 -297650024,"Left 4 Dead 2",play,5.7,0 -297650024,"Remember Me",purchase,1.0,0 -297650024,"Remember Me",play,2.0,0 -297650024,"Insurgency",purchase,1.0,0 -297650024,"Insurgency",play,0.3,0 -297650024,"Warframe",purchase,1.0,0 -297650024,"Warframe",play,0.3,0 -297650024,"Cry of Fear",purchase,1.0,0 -297650024,"Cry of Fear",play,0.2,0 -297650024,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -297650024,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -297650024,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -297650024,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -297650024,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -210925699,"Counter-Strike Nexon Zombies",purchase,1.0,0 -210925699,"Dizzel",purchase,1.0,0 -210925699,"Neverwinter",purchase,1.0,0 -210925699,"Prime World",purchase,1.0,0 -115358376,"Team Fortress 2",purchase,1.0,0 -115358376,"Team Fortress 2",play,0.6,0 -130581074,"Dota 2",purchase,1.0,0 -130581074,"Dota 2",play,4.2,0 -6717871,"Borderlands 2",purchase,1.0,0 -6717871,"Borderlands 2",play,86.0,0 -6717871,"Borderlands The Pre-Sequel",purchase,1.0,0 -6717871,"Borderlands The Pre-Sequel",play,42.0,0 -6717871,"Rocket League",purchase,1.0,0 -6717871,"Rocket League",play,22.0,0 -6717871,"Borderlands",purchase,1.0,0 -6717871,"Borderlands",play,19.7,0 -6717871,"Portal 2",purchase,1.0,0 -6717871,"Portal 2",play,18.5,0 -6717871,"RAGE",purchase,1.0,0 -6717871,"RAGE",play,17.1,0 -6717871,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -6717871,"Batman Arkham Asylum GOTY Edition",play,16.7,0 -6717871,"Euro Truck Simulator 2",purchase,1.0,0 -6717871,"Euro Truck Simulator 2",play,10.7,0 -6717871,"Tomb Raider",purchase,1.0,0 -6717871,"Tomb Raider",play,9.9,0 -6717871,"Battlefield Bad Company 2",purchase,1.0,0 -6717871,"Battlefield Bad Company 2",play,8.7,0 -6717871,"SimCity 4 Deluxe",purchase,1.0,0 -6717871,"SimCity 4 Deluxe",play,8.1,0 -6717871,"F1 2010",purchase,1.0,0 -6717871,"F1 2010",play,7.8,0 -6717871,"Dishonored",purchase,1.0,0 -6717871,"Dishonored",play,7.0,0 -6717871,"FTL Faster Than Light",purchase,1.0,0 -6717871,"FTL Faster Than Light",play,6.2,0 -6717871,"Batman Arkham City GOTY",purchase,1.0,0 -6717871,"Batman Arkham City GOTY",play,5.8,0 -6717871,"The Elder Scrolls V Skyrim",purchase,1.0,0 -6717871,"The Elder Scrolls V Skyrim",play,5.4,0 -6717871,"Torchlight",purchase,1.0,0 -6717871,"Torchlight",play,5.0,0 -6717871,"PlanetSide 2",purchase,1.0,0 -6717871,"PlanetSide 2",play,4.3,0 -6717871,"Assetto Corsa",purchase,1.0,0 -6717871,"Assetto Corsa",play,4.2,0 -6717871,"DiRT 2",purchase,1.0,0 -6717871,"DiRT 2",play,4.1,0 -6717871,"Half-Life 2 Episode Two",purchase,1.0,0 -6717871,"Half-Life 2 Episode Two",play,3.5,0 -6717871,"Crysis 2",purchase,1.0,0 -6717871,"Crysis 2",play,2.7,0 -6717871,"The Walking Dead",purchase,1.0,0 -6717871,"The Walking Dead",play,2.0,0 -6717871,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -6717871,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,2.0,0 -6717871,"Torchlight II",purchase,1.0,0 -6717871,"Torchlight II",play,2.0,0 -6717871,"Left 4 Dead 2",purchase,1.0,0 -6717871,"Left 4 Dead 2",play,1.9,0 -6717871,"Homeworld Remastered Collection",purchase,1.0,0 -6717871,"Homeworld Remastered Collection",play,1.8,0 -6717871,"Kerbal Space Program",purchase,1.0,0 -6717871,"Kerbal Space Program",play,1.8,0 -6717871,"RACE 07",purchase,1.0,0 -6717871,"RACE 07",play,1.7,0 -6717871,"Metro 2033",purchase,1.0,0 -6717871,"Metro 2033",play,1.3,0 -6717871,"Deus Ex Human Revolution",purchase,1.0,0 -6717871,"Deus Ex Human Revolution",play,1.2,0 -6717871,"Street Fighter IV",purchase,1.0,0 -6717871,"Street Fighter IV",play,1.1,0 -6717871,"Warhammer 40,000 Space Marine",purchase,1.0,0 -6717871,"Warhammer 40,000 Space Marine",play,1.1,0 -6717871,"Left 4 Dead",purchase,1.0,0 -6717871,"Left 4 Dead",play,0.9,0 -6717871,"Dota 2",purchase,1.0,0 -6717871,"Dota 2",play,0.7,0 -6717871,"Scribblenauts Unlimited",purchase,1.0,0 -6717871,"Scribblenauts Unlimited",play,0.6,0 -6717871,"Peggle Extreme",purchase,1.0,0 -6717871,"Peggle Extreme",play,0.6,0 -6717871,"Counter-Strike Source",purchase,1.0,0 -6717871,"Counter-Strike Source",play,0.5,0 -6717871,"Max Payne 3",purchase,1.0,0 -6717871,"Max Payne 3",play,0.3,0 -6717871,"Orcs Must Die!",purchase,1.0,0 -6717871,"Orcs Must Die!",play,0.3,0 -6717871,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -6717871,"Warhammer 40,000 Dawn of War II",play,0.3,0 -6717871,"Portal",purchase,1.0,0 -6717871,"Portal",play,0.3,0 -6717871,"Metro Last Light",purchase,1.0,0 -6717871,"Metro Last Light",play,0.3,0 -6717871,"Day of Defeat Source",purchase,1.0,0 -6717871,"Day of Defeat Source",play,0.3,0 -6717871,"Half-Life 2",purchase,1.0,0 -6717871,"Half-Life 2",play,0.2,0 -6717871,"Batman Arkham Asylum",purchase,1.0,0 -6717871,"Batman Arkham Asylum",play,0.2,0 -6717871,"World of Goo",purchase,1.0,0 -6717871,"World of Goo",play,0.1,0 -6717871,"Serious Sam HD The First Encounter",purchase,1.0,0 -6717871,"Serious Sam HD The First Encounter",play,0.1,0 -6717871,"Half-Life",purchase,1.0,0 -6717871,"Half-Life",play,0.1,0 -6717871,"GT Power Expansion",purchase,1.0,0 -6717871,"RACE On",purchase,1.0,0 -6717871,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -6717871,"Batman Arkham Origins - Initiation",purchase,1.0,0 -6717871,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -6717871,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -6717871,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -6717871,"Batman Arkham Knight",purchase,1.0,0 -6717871,"Batman Arkham Origins",purchase,1.0,0 -6717871,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -6717871,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -6717871,"Battlestations Midway",purchase,1.0,0 -6717871,"Battlestations Pacific",purchase,1.0,0 -6717871,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -6717871,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -6717871,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -6717871,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -6717871,"Bus Driver",purchase,1.0,0 -6717871,"Conflict Denied Ops",purchase,1.0,0 -6717871,"Counter-Strike",purchase,1.0,0 -6717871,"Counter-Strike Condition Zero",purchase,1.0,0 -6717871,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -6717871,"Counter-Strike Global Offensive",purchase,1.0,0 -6717871,"Crysis 2",purchase,1.0,0 -6717871,"Day of Defeat",purchase,1.0,0 -6717871,"Deathmatch Classic",purchase,1.0,0 -6717871,"Deus Ex Game of the Year Edition",purchase,1.0,0 -6717871,"Deus Ex Invisible War",purchase,1.0,0 -6717871,"Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald A Whirlwind Heist",purchase,1.0,0 -6717871,"Emily is Away",purchase,1.0,0 -6717871,"Enemy Territory Quake Wars",purchase,1.0,0 -6717871,"Euro Truck Simulator",purchase,1.0,0 -6717871,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -6717871,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -6717871,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -6717871,"F.E.A.R. 3",purchase,1.0,0 -6717871,"Flora's Fruit Farm",purchase,1.0,0 -6717871,"GRID Autosport",purchase,1.0,0 -6717871,"GTR Evolution",purchase,1.0,0 -6717871,"Half-Life 2 Deathmatch",purchase,1.0,0 -6717871,"Half-Life 2 Episode One",purchase,1.0,0 -6717871,"Half-Life 2 Lost Coast",purchase,1.0,0 -6717871,"Half-Life Blue Shift",purchase,1.0,0 -6717871,"Half-Life Opposing Force",purchase,1.0,0 -6717871,"Half-Life Source",purchase,1.0,0 -6717871,"Half-Life Deathmatch Source",purchase,1.0,0 -6717871,"Hitman 2 Silent Assassin",purchase,1.0,0 -6717871,"Hitman Blood Money",purchase,1.0,0 -6717871,"Hitman Codename 47",purchase,1.0,0 -6717871,"Infernal",purchase,1.0,0 -6717871,"Just Cause",purchase,1.0,0 -6717871,"Kane & Lynch Dead Men",purchase,1.0,0 -6717871,"Mini Ninjas",purchase,1.0,0 -6717871,"Orcs Must Die! 2",purchase,1.0,0 -6717871,"Project Snowblind",purchase,1.0,0 -6717871,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -6717871,"Ricochet",purchase,1.0,0 -6717871,"Rogue Trooper",purchase,1.0,0 -6717871,"Scania Truck Driving Simulator",purchase,1.0,0 -6717871,"Serious Sam Classic The First Encounter",purchase,1.0,0 -6717871,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -6717871,"Serious Sam Classics Revolution",purchase,1.0,0 -6717871,"Shellshock 2 Blood Trails",purchase,1.0,0 -6717871,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -6717871,"Team Fortress Classic",purchase,1.0,0 -6717871,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -6717871,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -6717871,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -6717871,"The Lord of the Rings War in the North",purchase,1.0,0 -6717871,"Thief Deadly Shadows",purchase,1.0,0 -6717871,"Tomb Raider Legend",purchase,1.0,0 -6717871,"Tomb Raider Underworld",purchase,1.0,0 -6717871,"Trucks & Trailers",purchase,1.0,0 -246439849,"Counter-Strike Global Offensive",purchase,1.0,0 -246439849,"Counter-Strike Global Offensive",play,148.0,0 -246439849,"Dota 2",purchase,1.0,0 -246439849,"Dota 2",play,4.6,0 -246439849,"Unturned",purchase,1.0,0 -246439849,"Unturned",play,3.4,0 -246439849,"Heroes & Generals",purchase,1.0,0 -246439849,"Heroes & Generals",play,2.8,0 -246439849,"sZone-Online",purchase,1.0,0 -246439849,"sZone-Online",play,1.0,0 -246439849,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -246439849,"Age of Empires Online",purchase,1.0,0 -246439849,"Amazing World",purchase,1.0,0 -246439849,"America's Army 3",purchase,1.0,0 -246439849,"America's Army Proving Grounds",purchase,1.0,0 -246439849,"APB Reloaded",purchase,1.0,0 -246439849,"Arcane Saga Online",purchase,1.0,0 -246439849,"Archeblade",purchase,1.0,0 -246439849,"Arctic Combat",purchase,1.0,0 -246439849,"Atlantica Online",purchase,1.0,0 -246439849,"Aura Kingdom",purchase,1.0,0 -246439849,"Bloodline Champions",purchase,1.0,0 -246439849,"Brawl Busters",purchase,1.0,0 -246439849,"Bullet Run",purchase,1.0,0 -246439849,"C9",purchase,1.0,0 -246439849,"Cakewalk Loop Manager",purchase,1.0,0 -246439849,"Champions Online",purchase,1.0,0 -246439849,"Construct 2 Free",purchase,1.0,0 -246439849,"CrimeCraft GangWars",purchase,1.0,0 -246439849,"Dead Island Epidemic",purchase,1.0,0 -246439849,"Defiance",purchase,1.0,0 -246439849,"District 187",purchase,1.0,0 -246439849,"Dragon Nest",purchase,1.0,0 -246439849,"Dragon Nest Europe",purchase,1.0,0 -246439849,"Dragons and Titans",purchase,1.0,0 -246439849,"Dungeon Fighter Online",purchase,1.0,0 -246439849,"Dungeonland",purchase,1.0,0 -246439849,"Dungeon Party",purchase,1.0,0 -246439849,"Dwarfs F2P",purchase,1.0,0 -246439849,"EverQuest Free-to-Play",purchase,1.0,0 -246439849,"EverQuest II",purchase,1.0,0 -246439849,"EVGA PrecisionX 16",purchase,1.0,0 -246439849,"Face of Mankind",purchase,1.0,0 -246439849,"Fallen Earth",purchase,1.0,0 -246439849,"Fiesta Online",purchase,1.0,0 -246439849,"Fiesta Online NA",purchase,1.0,0 -246439849,"Firefall",purchase,1.0,0 -246439849,"Floating Point",purchase,1.0,0 -246439849,"Football Superstars",purchase,1.0,0 -246439849,"Forsaken World ",purchase,1.0,0 -246439849,"Frontline Tactics",purchase,1.0,0 -246439849,"Gotham City Impostors Free To Play",purchase,1.0,0 -246439849,"Grand Chase",purchase,1.0,0 -246439849,"Guns and Robots",purchase,1.0,0 -246439849,"HOMEFRONT Demo",purchase,1.0,0 -246439849,"La Tale",purchase,1.0,0 -246439849,"Loadout",purchase,1.0,0 -246439849,"Mabinogi",purchase,1.0,0 -246439849,"Magic The Gathering Tactics",purchase,1.0,0 -246439849,"March of War",purchase,1.0,0 -246439849,"Marvel Heroes 2015",purchase,1.0,0 -246439849,"Memoir '44 Online",purchase,1.0,0 -246439849,"MicroVolts Surge",purchase,1.0,0 -246439849,"Moon Breakers",purchase,1.0,0 -246439849,"NEOTOKYO",purchase,1.0,0 -246439849,"Neverwinter",purchase,1.0,0 -246439849,"Nosgoth",purchase,1.0,0 -246439849,"Only If",purchase,1.0,0 -246439849,"Pandora Saga Weapons of Balance",purchase,1.0,0 -246439849,"Panzar",purchase,1.0,0 -246439849,"Path of Exile",purchase,1.0,0 -246439849,"Pinball Arcade",purchase,1.0,0 -246439849,"PlanetSide 2",purchase,1.0,0 -246439849,"Pox Nora",purchase,1.0,0 -246439849,"Puzzle Pirates",purchase,1.0,0 -246439849,"Quantum Rush Online",purchase,1.0,0 -246439849,"RaceRoom Racing Experience ",purchase,1.0,0 -246439849,"Ragnarok Online 2",purchase,1.0,0 -246439849,"Realm of the Mad God",purchase,1.0,0 -246439849,"Reversion - The Escape",purchase,1.0,0 -246439849,"Rise of Incarnates",purchase,1.0,0 -246439849,"Robocraft",purchase,1.0,0 -246439849,"ROSE Online",purchase,1.0,0 -246439849,"Royal Quest",purchase,1.0,0 -246439849,"Rusty Hearts",purchase,1.0,0 -246439849,"Saira",purchase,1.0,0 -246439849,"Shadow Warrior Classic (1997)",purchase,1.0,0 -246439849,"Spiral Knights",purchase,1.0,0 -246439849,"Star Conflict",purchase,1.0,0 -246439849,"Star Trek Online",purchase,1.0,0 -246439849,"Stronghold Kingdoms",purchase,1.0,0 -246439849,"Sunrider Mask of Arcadius",purchase,1.0,0 -246439849,"Super Crate Box",purchase,1.0,0 -246439849,"Super Monday Night Combat",purchase,1.0,0 -246439849,"Survarium",purchase,1.0,0 -246439849,"Tactical Intervention",purchase,1.0,0 -246439849,"The Banner Saga Factions",purchase,1.0,0 -246439849,"The Expendabros",purchase,1.0,0 -246439849,"The Forgotten Ones",purchase,1.0,0 -246439849,"The Lord of the Rings Online",purchase,1.0,0 -246439849,"Thinking with Time Machine",purchase,1.0,0 -246439849,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -246439849,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -246439849,"Tribes Ascend",purchase,1.0,0 -246439849,"Uncharted Waters Online",purchase,1.0,0 -246439849,"Velvet Sundown",purchase,1.0,0 -246439849,"Vindictus",purchase,1.0,0 -246439849,"Warface",purchase,1.0,0 -246439849,"Warframe",purchase,1.0,0 -246439849,"War Inc. Battlezone",purchase,1.0,0 -246439849,"War Thunder",purchase,1.0,0 -246439849,"World of Battles",purchase,1.0,0 -246439849,"World of Guns Gun Disassembly",purchase,1.0,0 -246439849,"Xam",purchase,1.0,0 -191857652,"Dota 2",purchase,1.0,0 -191857652,"Dota 2",play,0.3,0 -93021129,"Team Fortress 2",purchase,1.0,0 -93021129,"Team Fortress 2",play,127.0,0 -101597552,"Team Fortress 2",purchase,1.0,0 -101597552,"Team Fortress 2",play,34.0,0 -101597552,"Unturned",purchase,1.0,0 -62352668,"Counter-Strike",purchase,1.0,0 -62352668,"Counter-Strike",play,51.0,0 -62352668,"Day of Defeat",purchase,1.0,0 -62352668,"Deathmatch Classic",purchase,1.0,0 -62352668,"Half-Life",purchase,1.0,0 -62352668,"Half-Life Blue Shift",purchase,1.0,0 -62352668,"Half-Life Opposing Force",purchase,1.0,0 -62352668,"Ricochet",purchase,1.0,0 -62352668,"Team Fortress Classic",purchase,1.0,0 -87938922,"Team Fortress 2",purchase,1.0,0 -87938922,"Team Fortress 2",play,2.5,0 -87938922,"D.I.P.R.I.P. Warm Up",purchase,1.0,0 -87938922,"D.I.P.R.I.P. Warm Up",play,0.2,0 -87938922,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -87938922,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -87938922,"Half-Life 2 Deathmatch",purchase,1.0,0 -87938922,"Half-Life 2 Lost Coast",purchase,1.0,0 -159000186,"DiRT Showdown",purchase,1.0,0 -159000186,"DiRT Showdown",play,11.1,0 -175012202,"Counter-Strike Global Offensive",purchase,1.0,0 -176771895,"Dota 2",purchase,1.0,0 -176771895,"Dota 2",play,587.0,0 -176771895,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -176771895,"Age of Empires Online",purchase,1.0,0 -176771895,"Amazing World",purchase,1.0,0 -176771895,"America's Army 3",purchase,1.0,0 -176771895,"America's Army Proving Grounds",purchase,1.0,0 -176771895,"APB Reloaded",purchase,1.0,0 -176771895,"Arcane Saga Online",purchase,1.0,0 -176771895,"Archeblade",purchase,1.0,0 -176771895,"Arctic Combat",purchase,1.0,0 -176771895,"Atlantica Online",purchase,1.0,0 -176771895,"Aura Kingdom",purchase,1.0,0 -176771895,"Bloodline Champions",purchase,1.0,0 -176771895,"Brawl Busters",purchase,1.0,0 -176771895,"Bullet Run",purchase,1.0,0 -176771895,"C9",purchase,1.0,0 -176771895,"Cakewalk Loop Manager",purchase,1.0,0 -176771895,"Champions Online",purchase,1.0,0 -176771895,"Combat Arms",purchase,1.0,0 -176771895,"Construct 2 Free",purchase,1.0,0 -176771895,"CrimeCraft GangWars",purchase,1.0,0 -176771895,"Dead Island Epidemic",purchase,1.0,0 -176771895,"Defiance",purchase,1.0,0 -176771895,"District 187",purchase,1.0,0 -176771895,"Dragon Nest",purchase,1.0,0 -176771895,"Dragons and Titans",purchase,1.0,0 -176771895,"Dungeon Fighter Online",purchase,1.0,0 -176771895,"Dungeonland",purchase,1.0,0 -176771895,"Dungeon Party",purchase,1.0,0 -176771895,"Dwarfs F2P",purchase,1.0,0 -176771895,"EverQuest Free-to-Play",purchase,1.0,0 -176771895,"EverQuest II",purchase,1.0,0 -176771895,"EVGA PrecisionX 16",purchase,1.0,0 -176771895,"Face of Mankind",purchase,1.0,0 -176771895,"Fallen Earth",purchase,1.0,0 -176771895,"Fiesta Online",purchase,1.0,0 -176771895,"Fiesta Online NA",purchase,1.0,0 -176771895,"Firefall",purchase,1.0,0 -176771895,"Floating Point",purchase,1.0,0 -176771895,"Football Superstars",purchase,1.0,0 -176771895,"Forsaken World ",purchase,1.0,0 -176771895,"Frontline Tactics",purchase,1.0,0 -176771895,"Global Agenda",purchase,1.0,0 -176771895,"Gotham City Impostors Free To Play",purchase,1.0,0 -176771895,"Grand Chase",purchase,1.0,0 -176771895,"Guns and Robots",purchase,1.0,0 -176771895,"Heroes & Generals",purchase,1.0,0 -176771895,"HOMEFRONT Demo",purchase,1.0,0 -176771895,"La Tale",purchase,1.0,0 -176771895,"Loadout",purchase,1.0,0 -176771895,"Mabinogi",purchase,1.0,0 -176771895,"Magic The Gathering Tactics",purchase,1.0,0 -176771895,"March of War",purchase,1.0,0 -176771895,"Marvel Heroes 2015",purchase,1.0,0 -176771895,"Memoir '44 Online",purchase,1.0,0 -176771895,"MicroVolts Surge",purchase,1.0,0 -176771895,"Moon Breakers",purchase,1.0,0 -176771895,"NEOTOKYO",purchase,1.0,0 -176771895,"Neverwinter",purchase,1.0,0 -176771895,"Nosgoth",purchase,1.0,0 -176771895,"Only If",purchase,1.0,0 -176771895,"Pandora Saga Weapons of Balance",purchase,1.0,0 -176771895,"Panzar",purchase,1.0,0 -176771895,"Path of Exile",purchase,1.0,0 -176771895,"Pinball Arcade",purchase,1.0,0 -176771895,"PlanetSide 2",purchase,1.0,0 -176771895,"Pox Nora",purchase,1.0,0 -176771895,"Puzzle Pirates",purchase,1.0,0 -176771895,"Quantum Rush Online",purchase,1.0,0 -176771895,"RaceRoom Racing Experience ",purchase,1.0,0 -176771895,"Ragnarok Online 2",purchase,1.0,0 -176771895,"Realm of the Mad God",purchase,1.0,0 -176771895,"Reversion - The Escape",purchase,1.0,0 -176771895,"Rise of Incarnates",purchase,1.0,0 -176771895,"Robocraft",purchase,1.0,0 -176771895,"ROSE Online",purchase,1.0,0 -176771895,"Royal Quest",purchase,1.0,0 -176771895,"Rusty Hearts",purchase,1.0,0 -176771895,"Saira",purchase,1.0,0 -176771895,"Shadow Warrior Classic (1997)",purchase,1.0,0 -176771895,"Spiral Knights",purchase,1.0,0 -176771895,"Star Conflict",purchase,1.0,0 -176771895,"Star Trek Online",purchase,1.0,0 -176771895,"Stronghold Kingdoms",purchase,1.0,0 -176771895,"Sunrider Mask of Arcadius",purchase,1.0,0 -176771895,"Super Crate Box",purchase,1.0,0 -176771895,"Super Monday Night Combat",purchase,1.0,0 -176771895,"Tactical Intervention",purchase,1.0,0 -176771895,"The Banner Saga Factions",purchase,1.0,0 -176771895,"The Expendabros",purchase,1.0,0 -176771895,"The Forgotten Ones",purchase,1.0,0 -176771895,"The Lord of the Rings Online",purchase,1.0,0 -176771895,"Thinking with Time Machine",purchase,1.0,0 -176771895,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -176771895,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -176771895,"Tribes Ascend",purchase,1.0,0 -176771895,"Uncharted Waters Online",purchase,1.0,0 -176771895,"Unturned",purchase,1.0,0 -176771895,"Velvet Sundown",purchase,1.0,0 -176771895,"Vindictus",purchase,1.0,0 -176771895,"Warface",purchase,1.0,0 -176771895,"Warframe",purchase,1.0,0 -176771895,"War Inc. Battlezone",purchase,1.0,0 -176771895,"War Thunder",purchase,1.0,0 -176771895,"World of Battles",purchase,1.0,0 -176771895,"World of Guns Gun Disassembly",purchase,1.0,0 -176771895,"Xam",purchase,1.0,0 -173249224,"Counter-Strike",purchase,1.0,0 -173249224,"Counter-Strike",play,59.0,0 -173249224,"Counter-Strike Global Offensive",purchase,1.0,0 -173249224,"Counter-Strike Global Offensive",play,10.0,0 -173249224,"Dota 2",purchase,1.0,0 -173249224,"Dota 2",play,0.7,0 -173249224,"Arma Cold War Assault",purchase,1.0,0 -173249224,"Counter-Strike Condition Zero",purchase,1.0,0 -173249224,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -173249224,"Enclave",purchase,1.0,0 -181593489,"Terraria",purchase,1.0,0 -181593489,"Terraria",play,255.0,0 -181593489,"Garry's Mod",purchase,1.0,0 -181593489,"Garry's Mod",play,83.0,0 -181593489,"The Escapists",purchase,1.0,0 -181593489,"The Escapists",play,28.0,0 -181593489,"Trove",purchase,1.0,0 -181593489,"Trove",play,23.0,0 -181593489,"Magicite",purchase,1.0,0 -181593489,"Magicite",play,16.7,0 -181593489,"Dig or Die",purchase,1.0,0 -181593489,"Dig or Die",play,12.6,0 -181593489,"LEGO Worlds",purchase,1.0,0 -181593489,"LEGO Worlds",play,10.6,0 -181593489,"Don't Starve",purchase,1.0,0 -181593489,"Don't Starve",play,7.1,0 -181593489,"The Escapists The Walking Dead",purchase,1.0,0 -181593489,"The Escapists The Walking Dead",play,6.6,0 -181593489,"Dota 2",purchase,1.0,0 -181593489,"Dota 2",play,2.9,0 -181593489,"Warface",purchase,1.0,0 -157391838,"Counter-Strike Global Offensive",purchase,1.0,0 -157391838,"Counter-Strike Global Offensive",play,760.0,0 -157391838,"Portal 2",purchase,1.0,0 -157391838,"Portal 2",play,34.0,0 -157391838,"Team Fortress 2",purchase,1.0,0 -157391838,"Team Fortress 2",play,12.3,0 -157391838,"Age of Empires II HD Edition",purchase,1.0,0 -157391838,"Age of Empires II HD Edition",play,8.9,0 -157391838,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -157391838,"Rising Storm/Red Orchestra 2 Multiplayer",play,3.4,0 -157391838,"Half-Life 2",purchase,1.0,0 -157391838,"Half-Life 2",play,3.0,0 -157391838,"Portal",purchase,1.0,0 -157391838,"Portal",play,1.1,0 -157391838,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -157391838,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,1.1,0 -157391838,"Defy Gravity",purchase,1.0,0 -157391838,"Defy Gravity",play,0.9,0 -157391838,"Half-Life Deathmatch Source",purchase,1.0,0 -157391838,"Half-Life Deathmatch Source",play,0.6,0 -157391838,"Arma Cold War Assault",purchase,1.0,0 -157391838,"Arma Cold War Assault",play,0.4,0 -157391838,"Half-Life 2 Deathmatch",purchase,1.0,0 -157391838,"Half-Life 2 Deathmatch",play,0.1,0 -157391838,"Revolution Ace",purchase,1.0,0 -157391838,"Age of Empires II HD The Forgotten",purchase,1.0,0 -157391838,"Half-Life 2 Episode One",purchase,1.0,0 -157391838,"Half-Life 2 Episode Two",purchase,1.0,0 -157391838,"Half-Life 2 Lost Coast",purchase,1.0,0 -157391838,"Saviors",purchase,1.0,0 -157391838,"Waveform",purchase,1.0,0 -133573140,"Counter-Strike Global Offensive",purchase,1.0,0 -133573140,"Counter-Strike Global Offensive",play,798.0,0 -133573140,"Dirty Bomb",purchase,1.0,0 -133573140,"Dirty Bomb",play,79.0,0 -232864591,"Heroes & Generals",purchase,1.0,0 -232864591,"Heroes & Generals",play,0.2,0 -232864591,"DiggerOnline",purchase,1.0,0 -232864591,"DiggerOnline",play,0.2,0 -232864591,"BLOCKADE 3D",purchase,1.0,0 -232864591,"East India Company Gold",purchase,1.0,0 -232864591,"Enclave",purchase,1.0,0 -232864591,"Glacier 3 The Meltdown",purchase,1.0,0 -232864591,"Marvel Heroes 2015",purchase,1.0,0 -232864591,"Prime World",purchase,1.0,0 -232864591,"Vertiginous Golf",purchase,1.0,0 -232864591,"War Thunder",purchase,1.0,0 -245816621,"Dota 2",purchase,1.0,0 -245816621,"Dota 2",play,9.7,0 -162844395,"Dota 2",purchase,1.0,0 -162844395,"Dota 2",play,0.5,0 -26465134,"Warframe",purchase,1.0,0 -26465134,"Warframe",play,571.0,0 -26465134,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -26465134,"Call of Duty Modern Warfare 2 - Multiplayer",play,296.0,0 -26465134,"The Elder Scrolls V Skyrim",purchase,1.0,0 -26465134,"The Elder Scrolls V Skyrim",play,217.0,0 -26465134,"Killing Floor",purchase,1.0,0 -26465134,"Killing Floor",play,216.0,0 -26465134,"Team Fortress 2",purchase,1.0,0 -26465134,"Team Fortress 2",play,77.0,0 -26465134,"Left 4 Dead",purchase,1.0,0 -26465134,"Left 4 Dead",play,50.0,0 -26465134,"Half-Life 2",purchase,1.0,0 -26465134,"Half-Life 2",play,49.0,0 -26465134,"Dishonored",purchase,1.0,0 -26465134,"Dishonored",play,47.0,0 -26465134,"BioShock Infinite",purchase,1.0,0 -26465134,"BioShock Infinite",play,47.0,0 -26465134,"Left 4 Dead 2",purchase,1.0,0 -26465134,"Left 4 Dead 2",play,46.0,0 -26465134,"Fallout New Vegas",purchase,1.0,0 -26465134,"Fallout New Vegas",play,45.0,0 -26465134,"Grand Theft Auto IV",purchase,1.0,0 -26465134,"Grand Theft Auto IV",play,43.0,0 -26465134,"Counter-Strike Source",purchase,1.0,0 -26465134,"Counter-Strike Source",play,42.0,0 -26465134,"Metro 2033",purchase,1.0,0 -26465134,"Metro 2033",play,40.0,0 -26465134,"Metro Last Light",purchase,1.0,0 -26465134,"Metro Last Light",play,39.0,0 -26465134,"Duke Nukem Forever",purchase,1.0,0 -26465134,"Duke Nukem Forever",play,24.0,0 -26465134,"Tomb Raider",purchase,1.0,0 -26465134,"Tomb Raider",play,23.0,0 -26465134,"Audiosurf",purchase,1.0,0 -26465134,"Audiosurf",play,15.2,0 -26465134,"Half-Life",purchase,1.0,0 -26465134,"Half-Life",play,12.5,0 -26465134,"Far Cry 3 Blood Dragon",purchase,1.0,0 -26465134,"Far Cry 3 Blood Dragon",play,11.2,0 -26465134,"F.E.A.R. 3",purchase,1.0,0 -26465134,"F.E.A.R. 3",play,10.9,0 -26465134,"ORION Prelude",purchase,1.0,0 -26465134,"ORION Prelude",play,10.1,0 -26465134,"Tomb Raider Underworld",purchase,1.0,0 -26465134,"Tomb Raider Underworld",play,10.1,0 -26465134,"Trine",purchase,1.0,0 -26465134,"Trine",play,10.1,0 -26465134,"Deus Ex Human Revolution",purchase,1.0,0 -26465134,"Deus Ex Human Revolution",play,9.8,0 -26465134,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -26465134,"Unreal Tournament 3 Black Edition",play,8.6,0 -26465134,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -26465134,"The Elder Scrolls IV Oblivion ",play,7.9,0 -26465134,"RAGE",purchase,1.0,0 -26465134,"RAGE",play,6.6,0 -26465134,"Half-Life 2 Episode Two",purchase,1.0,0 -26465134,"Half-Life 2 Episode Two",play,6.4,0 -26465134,"Half-Life 2 Episode One",purchase,1.0,0 -26465134,"Half-Life 2 Episode One",play,5.3,0 -26465134,"Portal",purchase,1.0,0 -26465134,"Portal",play,5.0,0 -26465134,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -26465134,"Tomb Raider (VI) The Angel of Darkness",play,3.7,0 -26465134,"Contrast",purchase,1.0,0 -26465134,"Contrast",play,3.5,0 -26465134,"LIMBO",purchase,1.0,0 -26465134,"LIMBO",play,3.4,0 -26465134,"Thief",purchase,1.0,0 -26465134,"Thief",play,3.2,0 -26465134,"Amnesia The Dark Descent",purchase,1.0,0 -26465134,"Amnesia The Dark Descent",play,2.2,0 -26465134,"Deus Ex Game of the Year Edition",purchase,1.0,0 -26465134,"Deus Ex Game of the Year Edition",play,2.0,0 -26465134,"Saints Row The Third",purchase,1.0,0 -26465134,"Saints Row The Third",play,1.9,0 -26465134,"From Dust",purchase,1.0,0 -26465134,"From Dust",play,1.1,0 -26465134,"Portal 2",purchase,1.0,0 -26465134,"Portal 2",play,0.7,0 -26465134,"The Polynomial",purchase,1.0,0 -26465134,"The Polynomial",play,0.5,0 -26465134,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -26465134,"Red Faction Guerrilla Steam Edition",play,0.5,0 -26465134,"Alien Swarm",purchase,1.0,0 -26465134,"Alien Swarm",play,0.4,0 -26465134,"Mount & Blade",purchase,1.0,0 -26465134,"Mount & Blade",play,0.3,0 -26465134,"Deus Ex Invisible War",purchase,1.0,0 -26465134,"Deus Ex Invisible War",play,0.2,0 -26465134,"Sanctum",purchase,1.0,0 -26465134,"Sanctum",play,0.1,0 -26465134,"Alan Wake",purchase,1.0,0 -26465134,"Borderlands",purchase,1.0,0 -26465134,"Borderlands 2",purchase,1.0,0 -26465134,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -26465134,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -26465134,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -26465134,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -26465134,"Call of Duty Modern Warfare 2",purchase,1.0,0 -26465134,"Day of Defeat Source",purchase,1.0,0 -26465134,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -26465134,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -26465134,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -26465134,"Fallout New Vegas Dead Money",purchase,1.0,0 -26465134,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -26465134,"Half-Life 2 Deathmatch",purchase,1.0,0 -26465134,"Half-Life 2 Lost Coast",purchase,1.0,0 -26465134,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -26465134,"L.A. Noire",purchase,1.0,0 -26465134,"Mount & Blade Warband",purchase,1.0,0 -26465134,"Mount & Blade With Fire and Sword",purchase,1.0,0 -26465134,"PAYDAY The Heist",purchase,1.0,0 -26465134,"Super Monday Night Combat",purchase,1.0,0 -26465134,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -26465134,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -26465134,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -26465134,"Thief - Opportunist",purchase,1.0,0 -26465134,"Thief 2",purchase,1.0,0 -26465134,"Thief Deadly Shadows",purchase,1.0,0 -26465134,"Thief Gold",purchase,1.0,0 -26465134,"Tomb Raider Anniversary",purchase,1.0,0 -26465134,"Tomb Raider Chronicles",purchase,1.0,0 -26465134,"Tomb Raider Legend",purchase,1.0,0 -26465134,"Tomb Raider The Last Revelation",purchase,1.0,0 -26465134,"Tomb Raider I",purchase,1.0,0 -26465134,"Tomb Raider II",purchase,1.0,0 -26465134,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -26465134,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -26465134,"Tribes Ascend",purchase,1.0,0 -26465134,"Unreal Gold",purchase,1.0,0 -26465134,"Unreal II The Awakening",purchase,1.0,0 -26465134,"Unreal Tournament 2004",purchase,1.0,0 -26465134,"Unreal Tournament Game of the Year Edition",purchase,1.0,0 -42777729,"Football Manager 2009",purchase,1.0,0 -42777729,"Football Manager 2009",play,0.2,0 -24872208,"Counter-Strike",purchase,1.0,0 -24872208,"Counter-Strike Condition Zero",purchase,1.0,0 -24872208,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -24872208,"Day of Defeat",purchase,1.0,0 -24872208,"Deathmatch Classic",purchase,1.0,0 -24872208,"Ricochet",purchase,1.0,0 -199025228,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -199025228,"Warframe",purchase,1.0,0 -279130412,"RIFT",purchase,1.0,0 -212519365,"Dota 2",purchase,1.0,0 -212519365,"Dota 2",play,0.4,0 -139122042,"Dota 2",purchase,1.0,0 -139122042,"Dota 2",play,54.0,0 -11978743,"3DMark",purchase,1.0,0 -11978743,"3DMark",play,170.0,0 -11978743,"Call of Duty Black Ops II",purchase,1.0,0 -11978743,"Call of Duty Black Ops II",play,88.0,0 -11978743,"Heroes of Might & Magic III - HD Edition",purchase,1.0,0 -11978743,"Heroes of Might & Magic III - HD Edition",play,83.0,0 -11978743,"Wolfenstein The New Order German Edition",purchase,1.0,0 -11978743,"Wolfenstein The New Order German Edition",play,69.0,0 -11978743,"Call of Duty Modern Warfare 3",purchase,1.0,0 -11978743,"Call of Duty Modern Warfare 3",play,27.0,0 -11978743,"Call of Duty Black Ops",purchase,1.0,0 -11978743,"Call of Duty Black Ops",play,25.0,0 -11978743,"Counter-Strike Source",purchase,1.0,0 -11978743,"Counter-Strike Source",play,23.0,0 -11978743,"Need for Speed Hot Pursuit",purchase,1.0,0 -11978743,"Need for Speed Hot Pursuit",play,21.0,0 -11978743,"3DMark Vantage",purchase,1.0,0 -11978743,"3DMark Vantage",play,21.0,0 -11978743,"Counter-Strike Global Offensive",purchase,1.0,0 -11978743,"Counter-Strike Global Offensive",play,17.9,0 -11978743,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -11978743,"Call of Duty Black Ops II - Zombies",play,15.5,0 -11978743,"Anno 2070",purchase,1.0,0 -11978743,"Anno 2070",play,13.7,0 -11978743,"Company of Heroes Opposing Fronts",purchase,1.0,0 -11978743,"Company of Heroes Opposing Fronts",play,10.5,0 -11978743,"Call of Duty Modern Warfare 2",purchase,1.0,0 -11978743,"Call of Duty Modern Warfare 2",play,6.3,0 -11978743,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -11978743,"Call of Duty Black Ops II - Multiplayer",play,4.4,0 -11978743,"Heroes of Might & Magic V",purchase,1.0,0 -11978743,"Heroes of Might & Magic V",play,3.2,0 -11978743,"BioShock Infinite",purchase,1.0,0 -11978743,"BioShock Infinite",play,2.2,0 -11978743,"Far Cry 3",purchase,1.0,0 -11978743,"Far Cry 3",play,2.0,0 -11978743,"DiRT 2",purchase,1.0,0 -11978743,"DiRT 2",play,1.8,0 -11978743,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -11978743,"Call of Duty 4 Modern Warfare",play,1.4,0 -11978743,"Mafia II",purchase,1.0,0 -11978743,"Mafia II",play,0.9,0 -11978743,"Grand Theft Auto V",purchase,1.0,0 -11978743,"Grand Theft Auto V",play,0.8,0 -11978743,"Sniper Elite 3",purchase,1.0,0 -11978743,"Sniper Elite 3",play,0.8,0 -11978743,"Crysis Warhead",purchase,1.0,0 -11978743,"Crysis Warhead",play,0.8,0 -11978743,"Far Cry 2",purchase,1.0,0 -11978743,"Far Cry 2",play,0.7,0 -11978743,"Left 4 Dead 2",purchase,1.0,0 -11978743,"Left 4 Dead 2",play,0.6,0 -11978743,"Battlefield 2",purchase,1.0,0 -11978743,"Battlefield 2",play,0.5,0 -11978743,"F.E.A.R. 3",purchase,1.0,0 -11978743,"F.E.A.R. 3",play,0.5,0 -11978743,"R.U.S.E",purchase,1.0,0 -11978743,"R.U.S.E",play,0.5,0 -11978743,"RAGE",purchase,1.0,0 -11978743,"RAGE",play,0.4,0 -11978743,"Call of Duty World at War",purchase,1.0,0 -11978743,"Call of Duty World at War",play,0.4,0 -11978743,"Borderlands 2",purchase,1.0,0 -11978743,"Borderlands 2",play,0.4,0 -11978743,"Metro 2033",purchase,1.0,0 -11978743,"Metro 2033",play,0.3,0 -11978743,"Dishonored",purchase,1.0,0 -11978743,"Dishonored",play,0.3,0 -11978743,"Postal 3",purchase,1.0,0 -11978743,"Postal 3",play,0.3,0 -11978743,"DiRT 3",purchase,1.0,0 -11978743,"DiRT 3",play,0.3,0 -11978743,"Far Cry",purchase,1.0,0 -11978743,"Far Cry",play,0.3,0 -11978743,"The Elder Scrolls V Skyrim",purchase,1.0,0 -11978743,"The Elder Scrolls V Skyrim",play,0.3,0 -11978743,"PAYDAY 2",purchase,1.0,0 -11978743,"PAYDAY 2",play,0.2,0 -11978743,"Tomb Raider",purchase,1.0,0 -11978743,"Tomb Raider",play,0.2,0 -11978743,"Call of Duty 2",purchase,1.0,0 -11978743,"Call of Duty 2",play,0.2,0 -11978743,"GRID",purchase,1.0,0 -11978743,"GRID",play,0.2,0 -11978743,"Tom Clancy's Rainbow Six 3 Gold Edition",purchase,1.0,0 -11978743,"Tom Clancy's Rainbow Six 3 Gold Edition",play,0.2,0 -11978743,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -11978743,"Call of Duty Modern Warfare 3 - Multiplayer",play,0.2,0 -11978743,"Sid Meier's Civilization V",purchase,1.0,0 -11978743,"Sid Meier's Civilization V",play,0.2,0 -11978743,"Crysis Wars",purchase,1.0,0 -11978743,"Crysis Wars",play,0.1,0 -11978743,"DiRT 3 Complete Edition",purchase,1.0,0 -11978743,"Company of Heroes",purchase,1.0,0 -11978743,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -11978743,"Insurgency",purchase,1.0,0 -11978743,"SimCity 4 Deluxe",purchase,1.0,0 -11978743,"Sniper Elite",purchase,1.0,0 -11978743,"Company of Heroes 2",purchase,1.0,0 -11978743,"Quake Live",purchase,1.0,0 -11978743,"Counter-Strike Nexon Zombies",purchase,1.0,0 -11978743,"Half-Life 2 Update",purchase,1.0,0 -11978743,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -11978743,"BioShock",purchase,1.0,0 -11978743,"3DMark API Overhead feature test",purchase,1.0,0 -11978743,"3DMark Cloud Gate benchmark",purchase,1.0,0 -11978743,"3DMark Fire Strike benchmark",purchase,1.0,0 -11978743,"3DMark Ice Storm benchmark",purchase,1.0,0 -11978743,"3DMark Sky Diver benchmark",purchase,1.0,0 -11978743,"Another World",purchase,1.0,0 -11978743,"Audiosurf",purchase,1.0,0 -11978743,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -11978743,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -11978743,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -11978743,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -11978743,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -11978743,"BattleBlock Theater",purchase,1.0,0 -11978743,"Blood Bowl Chaos Edition",purchase,1.0,0 -11978743,"Bone Out from Boneville",purchase,1.0,0 -11978743,"Bone The Great Cow Race",purchase,1.0,0 -11978743,"Bound By Flame",purchase,1.0,0 -11978743,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -11978743,"Call of Duty Modern Warfare 2 Stimulus Package",purchase,1.0,0 -11978743,"Cities XXL",purchase,1.0,0 -11978743,"Company of Heroes (New Steam Version)",purchase,1.0,0 -11978743,"Company of Heroes Tales of Valor",purchase,1.0,0 -11978743,"Contrast",purchase,1.0,0 -11978743,"Darkest Hour Europe '44-'45",purchase,1.0,0 -11978743,"Dead Space",purchase,1.0,0 -11978743,"DEFCON",purchase,1.0,0 -11978743,"Deus Ex Human Revolution",purchase,1.0,0 -11978743,"DiRT",purchase,1.0,0 -11978743,"DOOM 3",purchase,1.0,0 -11978743,"Etherium",purchase,1.0,0 -11978743,"F1 2011",purchase,1.0,0 -11978743,"F1 2013",purchase,1.0,0 -11978743,"Fable - The Lost Chapters",purchase,1.0,0 -11978743,"Faery - Legends of Avalon",purchase,1.0,0 -11978743,"Fallout New Vegas",purchase,1.0,0 -11978743,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -11978743,"Farming Simulator 2013",purchase,1.0,0 -11978743,"Final Exam",purchase,1.0,0 -11978743,"Frontlines Fuel of War",purchase,1.0,0 -11978743,"FUEL",purchase,1.0,0 -11978743,"Full Spectrum Warrior",purchase,1.0,0 -11978743,"Full Spectrum Warrior Ten Hammers",purchase,1.0,0 -11978743,"Game of Thrones ",purchase,1.0,0 -11978743,"Half-Life 2",purchase,1.0,0 -11978743,"Half-Life 2 Deathmatch",purchase,1.0,0 -11978743,"Half-Life 2 Episode One",purchase,1.0,0 -11978743,"Half-Life 2 Episode Two",purchase,1.0,0 -11978743,"Half-Life 2 Lost Coast",purchase,1.0,0 -11978743,"Half-Life Deathmatch Source",purchase,1.0,0 -11978743,"Hector Ep 1",purchase,1.0,0 -11978743,"Hector Ep 2",purchase,1.0,0 -11978743,"Hector Ep 3",purchase,1.0,0 -11978743,"Hitman Absolution",purchase,1.0,0 -11978743,"Hitman Sniper Challenge",purchase,1.0,0 -11978743,"Juiced 2 Hot Import Nights",purchase,1.0,0 -11978743,"Jurassic Park The Game",purchase,1.0,0 -11978743,"Just Cause 2",purchase,1.0,0 -11978743,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -11978743,"Law & Order Legacies",purchase,1.0,0 -11978743,"Left 4 Dead",purchase,1.0,0 -11978743,"Mare Nostrum",purchase,1.0,0 -11978743,"Mars War Logs",purchase,1.0,0 -11978743,"Mass Effect 2",purchase,1.0,0 -11978743,"Men of War",purchase,1.0,0 -11978743,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -11978743,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -11978743,"Mirror's Edge",purchase,1.0,0 -11978743,"Napoleon Total War",purchase,1.0,0 -11978743,"Natural Selection 2",purchase,1.0,0 -11978743,"Of Orcs And Men",purchase,1.0,0 -11978743,"Outlast",purchase,1.0,0 -11978743,"Pacific Storm",purchase,1.0,0 -11978743,"Poker Night 2",purchase,1.0,0 -11978743,"Poker Night at the Inventory",purchase,1.0,0 -11978743,"Portal",purchase,1.0,0 -11978743,"Portal 2",purchase,1.0,0 -11978743,"Pro Cycling Manager 2015",purchase,1.0,0 -11978743,"Puzzle Agent",purchase,1.0,0 -11978743,"Puzzle Agent 2",purchase,1.0,0 -11978743,"R.U.S.E.",purchase,1.0,0 -11978743,"RAW - Realms of Ancient War",purchase,1.0,0 -11978743,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -11978743,"Resident Evil / biohazard HD REMASTER",purchase,1.0,0 -11978743,"Rocket League",purchase,1.0,0 -11978743,"Runaway A Road Adventure",purchase,1.0,0 -11978743,"Runaway A Twist of Fate",purchase,1.0,0 -11978743,"Runaway The Dream of the Turtle",purchase,1.0,0 -11978743,"Sam & Max 101 Culture Shock",purchase,1.0,0 -11978743,"Sam & Max 102 Situation Comedy",purchase,1.0,0 -11978743,"Sam & Max 103 The Mole, the Mob and the Meatball",purchase,1.0,0 -11978743,"Sam & Max 105 Reality 2.0",purchase,1.0,0 -11978743,"Sam & Max 106 Bright Side of the Moon",purchase,1.0,0 -11978743,"Sam & Max 201 Ice Station Santa",purchase,1.0,0 -11978743,"Sam & Max 202 Moai Better Blues",purchase,1.0,0 -11978743,"Sam & Max 203 Night of the Raving Dead",purchase,1.0,0 -11978743,"Sam & Max 204 Chariots of the Dogs",purchase,1.0,0 -11978743,"Sam & Max 205 What's New Beelzebub?",purchase,1.0,0 -11978743,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -11978743,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -11978743,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -11978743,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -11978743,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -11978743,"Sleeping Dogs",purchase,1.0,0 -11978743,"Space Run",purchase,1.0,0 -11978743,"State of Decay",purchase,1.0,0 -11978743,"Steel Ocean",purchase,1.0,0 -11978743,"Strong Bad Episode 1 Homestar Ruiner",purchase,1.0,0 -11978743,"Strong Bad Episode 2 Strong Badia the Free",purchase,1.0,0 -11978743,"Strong Bad Episode 3 Baddest of the Bands",purchase,1.0,0 -11978743,"Strong Bad Episode 4 Dangeresque 3",purchase,1.0,0 -11978743,"Strong Bad Episode 5 8-Bit Is Enough",purchase,1.0,0 -11978743,"Styx Master of Shadows",purchase,1.0,0 -11978743,"Tales of Monkey Island Chapter 1 - Launch of the Screaming Narwhal",purchase,1.0,0 -11978743,"Tales of Monkey Island Chapter 2 - The Siege of Spinner Cay ",purchase,1.0,0 -11978743,"Tales of Monkey Island Chapter 3 - Lair of the Leviathan ",purchase,1.0,0 -11978743,"Tales of Monkey Island Chapter 4 - The Trial and Execution of Guybrush Threepwood ",purchase,1.0,0 -11978743,"Tales of Monkey Island Chapter 5 - Rise of the Pirate God",purchase,1.0,0 -11978743,"Telltale Texas Hold'Em",purchase,1.0,0 -11978743,"theHunter",purchase,1.0,0 -11978743,"The Walking Dead",purchase,1.0,0 -11978743,"The Walking Dead Season Two",purchase,1.0,0 -11978743,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -11978743,"The Witcher 3 Wild Hunt",purchase,1.0,0 -11978743,"The Wolf Among Us",purchase,1.0,0 -11978743,"Titan Quest",purchase,1.0,0 -11978743,"Titan Quest Immortal Throne",purchase,1.0,0 -11978743,"ToCA Race Driver 3",purchase,1.0,0 -11978743,"Tom Clancy's Rainbow Six 3 Athena Sword",purchase,1.0,0 -11978743,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -11978743,"Transformers War for Cybertron",purchase,1.0,0 -11978743,"Trine",purchase,1.0,0 -11978743,"Tropico 4",purchase,1.0,0 -11978743,"Wargame Red Dragon",purchase,1.0,0 -11978743,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -11978743,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -11978743,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -11978743,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -11978743,"Yesterday",purchase,1.0,0 -266885016,"Dota 2",purchase,1.0,0 -266885016,"Dota 2",play,14.3,0 -55776971,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -55776971,"Call of Duty Black Ops - Multiplayer",play,79.0,0 -55776971,"Call of Duty Black Ops",purchase,1.0,0 -55776971,"Call of Duty Black Ops",play,40.0,0 -55776971,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -55776971,"Call of Duty Modern Warfare 2 - Multiplayer",play,29.0,0 -55776971,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -55776971,"Call of Duty Ghosts - Multiplayer",play,18.5,0 -55776971,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -55776971,"Call of Duty Modern Warfare 3 - Multiplayer",play,15.5,0 -55776971,"Just Cause 2",purchase,1.0,0 -55776971,"Just Cause 2",play,3.4,0 -55776971,"Call of Duty Modern Warfare 2",purchase,1.0,0 -55776971,"Call of Duty Modern Warfare 2",play,2.9,0 -55776971,"Call of Duty Modern Warfare 3",purchase,1.0,0 -55776971,"Call of Duty Modern Warfare 3",play,2.3,0 -55776971,"Call of Duty Ghosts",purchase,1.0,0 -147440059,"Dota 2",purchase,1.0,0 -147440059,"Dota 2",play,0.6,0 -221432905,"Counter-Strike Global Offensive",purchase,1.0,0 -221432905,"Counter-Strike Global Offensive",play,32.0,0 -221432905,"Team Fortress 2",purchase,1.0,0 -221432905,"Team Fortress 2",play,7.6,0 -221432905,"MapleStory",purchase,1.0,0 -221432905,"MapleStory",play,0.1,0 -221432905,"Gear Up",purchase,1.0,0 -178675666,"Dota 2",purchase,1.0,0 -178675666,"Dota 2",play,58.0,0 -160310816,"Dota 2",purchase,1.0,0 -160310816,"Dota 2",play,32.0,0 -162763644,"Dota 2",purchase,1.0,0 -162763644,"Dota 2",play,88.0,0 -284189098,"Dota 2",purchase,1.0,0 -284189098,"Dota 2",play,0.7,0 -120405554,"Team Fortress 2",purchase,1.0,0 -120405554,"Team Fortress 2",play,0.4,0 -195248182,"Aliens Colonial Marines",purchase,1.0,0 -195248182,"Aliens Colonial Marines",play,0.9,0 -129006700,"Battle Battalions",purchase,1.0,0 -235297215,"Robocraft",purchase,1.0,0 -235297215,"Robocraft",play,0.2,0 -124234882,"PAYDAY 2",purchase,1.0,0 -124234882,"PAYDAY 2",play,108.0,0 -124234882,"DayZ",purchase,1.0,0 -124234882,"DayZ",play,41.0,0 -124234882,"Space Engineers",purchase,1.0,0 -124234882,"Space Engineers",play,39.0,0 -124234882,"Chivalry Medieval Warfare",purchase,1.0,0 -124234882,"Chivalry Medieval Warfare",play,33.0,0 -124234882,"Heroes & Generals",purchase,1.0,0 -124234882,"Heroes & Generals",play,30.0,0 -124234882,"Mortal Kombat Komplete Edition",purchase,1.0,0 -124234882,"Mortal Kombat Komplete Edition",play,18.5,0 -124234882,"Warframe",purchase,1.0,0 -124234882,"Warframe",play,7.1,0 -124234882,"Toribash",purchase,1.0,0 -124234882,"Toribash",play,4.4,0 -124234882,"Magicka Wizard Wars",purchase,1.0,0 -124234882,"Magicka Wizard Wars",play,2.2,0 -124234882,"Rise of Incarnates",purchase,1.0,0 -124234882,"Rise of Incarnates",play,0.6,0 -124234882,"AirMech",purchase,1.0,0 -124234882,"AirMech",play,0.2,0 -124234882,"No More Room in Hell",purchase,1.0,0 -124234882,"Blender 2.76b",purchase,1.0,0 -124234882,"Patch testing for Chivalry",purchase,1.0,0 -164633248,"Call of Duty Black Ops",purchase,1.0,0 -164633248,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -164633248,"Order of War",purchase,1.0,0 -74749851,"Fallout New Vegas",purchase,1.0,0 -74749851,"Fallout New Vegas",play,67.0,0 -188991147,"Unturned",purchase,1.0,0 -188991147,"Unturned",play,6.8,0 -68337019,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -68337019,"Call of Duty Modern Warfare 2 - Multiplayer",play,136.0,0 -68337019,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -68337019,"Call of Duty Black Ops - Multiplayer",play,75.0,0 -68337019,"PAYDAY 2",purchase,1.0,0 -68337019,"PAYDAY 2",play,11.7,0 -68337019,"Call of Duty Modern Warfare 2",purchase,1.0,0 -68337019,"Call of Duty Modern Warfare 2",play,1.3,0 -68337019,"Call of Duty Black Ops",purchase,1.0,0 -68337019,"Call of Duty Black Ops",play,0.7,0 -68337019,"Blacklight Retribution",purchase,1.0,0 -68337019,"Loadout",purchase,1.0,0 -68337019,"Nosgoth",purchase,1.0,0 -68337019,"RIFT",purchase,1.0,0 -68337019,"Warframe",purchase,1.0,0 -2083767,"Hero Academy",purchase,1.0,0 -2083767,"Hero Academy",play,196.0,0 -2083767,"The Elder Scrolls V Skyrim",purchase,1.0,0 -2083767,"The Elder Scrolls V Skyrim",play,42.0,0 -2083767,"Defense Grid The Awakening",purchase,1.0,0 -2083767,"Defense Grid The Awakening",play,33.0,0 -2083767,"War of the Roses",purchase,1.0,0 -2083767,"War of the Roses",play,28.0,0 -2083767,"Orcs Must Die! 2",purchase,1.0,0 -2083767,"Orcs Must Die! 2",play,28.0,0 -2083767,"Might & Magic Heroes VI",purchase,1.0,0 -2083767,"Might & Magic Heroes VI",play,17.2,0 -2083767,"Torchlight",purchase,1.0,0 -2083767,"Torchlight",play,15.8,0 -2083767,"Path of Exile",purchase,1.0,0 -2083767,"Path of Exile",play,13.1,0 -2083767,"Dungeon of the Endless",purchase,1.0,0 -2083767,"Dungeon of the Endless",play,12.0,0 -2083767,"Orcs Must Die!",purchase,1.0,0 -2083767,"Orcs Must Die!",play,11.4,0 -2083767,"Clicker Heroes",purchase,1.0,0 -2083767,"Clicker Heroes",play,11.1,0 -2083767,"Rocket League",purchase,1.0,0 -2083767,"Rocket League",play,10.1,0 -2083767,"Rocksmith 2014",purchase,1.0,0 -2083767,"Rocksmith 2014",play,8.1,0 -2083767,"Tap Tap Infinity",purchase,1.0,0 -2083767,"Tap Tap Infinity",play,7.3,0 -2083767,"Darkest Dungeon",purchase,1.0,0 -2083767,"Darkest Dungeon",play,6.8,0 -2083767,"Counter-Strike Global Offensive",purchase,1.0,0 -2083767,"Counter-Strike Global Offensive",play,5.0,0 -2083767,"Counter-Strike Source",purchase,1.0,0 -2083767,"Counter-Strike Source",play,3.4,0 -2083767,"Castle Story",purchase,1.0,0 -2083767,"Castle Story",play,3.2,0 -2083767,"Dota 2",purchase,1.0,0 -2083767,"Dota 2",play,3.1,0 -2083767,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -2083767,"Call of Duty Modern Warfare 3 - Multiplayer",play,2.9,0 -2083767,"Retro-Pixel Castles",purchase,1.0,0 -2083767,"Retro-Pixel Castles",play,2.7,0 -2083767,"Counter-Strike",purchase,1.0,0 -2083767,"Counter-Strike",play,2.1,0 -2083767,"Dishonored",purchase,1.0,0 -2083767,"Dishonored",play,2.0,0 -2083767,"Torchlight II",purchase,1.0,0 -2083767,"Torchlight II",play,1.5,0 -2083767,"Dungeon Defenders",purchase,1.0,0 -2083767,"Dungeon Defenders",play,0.9,0 -2083767,"CastleStorm",purchase,1.0,0 -2083767,"CastleStorm",play,0.7,0 -2083767,"Portal",purchase,1.0,0 -2083767,"Portal",play,0.7,0 -2083767,"Borderlands 2",purchase,1.0,0 -2083767,"Borderlands 2",play,0.6,0 -2083767,"Magicka",purchase,1.0,0 -2083767,"Magicka",play,0.3,0 -2083767,"Hammerwatch",purchase,1.0,0 -2083767,"Hammerwatch",play,0.2,0 -2083767,"Time Clickers",purchase,1.0,0 -2083767,"Time Clickers",play,0.1,0 -2083767,"Sid Meier's Civilization V",purchase,1.0,0 -2083767,"Sid Meier's Civilization V",play,0.1,0 -2083767,"Chivalry Medieval Warfare",purchase,1.0,0 -2083767,"Pre-Civilization Marble Age",purchase,1.0,0 -2083767,"Assassin's Creed Brotherhood",purchase,1.0,0 -2083767,"Call of Duty Modern Warfare 3",purchase,1.0,0 -2083767,"CastleStorm - From Outcast to Savior",purchase,1.0,0 -2083767,"CastleStorm - The Warrior Queen",purchase,1.0,0 -2083767,"Counter-Strike Condition Zero",purchase,1.0,0 -2083767,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -2083767,"Day of Defeat",purchase,1.0,0 -2083767,"Deathmatch Classic",purchase,1.0,0 -2083767,"Defense Grid Resurgence Map Pack 1",purchase,1.0,0 -2083767,"Defense Grid Resurgence Map Pack 2 ",purchase,1.0,0 -2083767,"Defense Grid Resurgence Map Pack 3",purchase,1.0,0 -2083767,"Defense Grid Resurgence Map Pack 4",purchase,1.0,0 -2083767,"Half-Life",purchase,1.0,0 -2083767,"Half-Life 2",purchase,1.0,0 -2083767,"Half-Life 2 Deathmatch",purchase,1.0,0 -2083767,"Half-Life 2 Lost Coast",purchase,1.0,0 -2083767,"Half-Life Blue Shift",purchase,1.0,0 -2083767,"Half-Life Opposing Force",purchase,1.0,0 -2083767,"Heroes & Generals",purchase,1.0,0 -2083767,"Left 4 Dead 2",purchase,1.0,0 -2083767,"Nosgoth",purchase,1.0,0 -2083767,"Patch testing for Chivalry",purchase,1.0,0 -2083767,"Ricochet",purchase,1.0,0 -2083767,"Stronghold Kingdoms",purchase,1.0,0 -2083767,"Team Fortress Classic",purchase,1.0,0 -2083767,"War of the Roses Kingmaker",purchase,1.0,0 -2083767,"War of the Roses Balance Beta",purchase,1.0,0 -297089707,"Dota 2",purchase,1.0,0 -297089707,"Dota 2",play,1.0,0 -146230543,"Dota 2",purchase,1.0,0 -146230543,"Dota 2",play,0.8,0 -244193381,"Team Fortress 2",purchase,1.0,0 -244193381,"Team Fortress 2",play,0.4,0 -179936723,"ARK Survival Evolved",purchase,1.0,0 -179936723,"ARK Survival Evolved",play,107.0,0 -179936723,"Sid Meier's Civilization V",purchase,1.0,0 -179936723,"Sid Meier's Civilization V",play,35.0,0 -179936723,"Banished",purchase,1.0,0 -179936723,"Banished",play,22.0,0 -179936723,"Grand Theft Auto V",purchase,1.0,0 -179936723,"Grand Theft Auto V",play,10.8,0 -179936723,"Subnautica",purchase,1.0,0 -179936723,"Subnautica",play,6.6,0 -179936723,"Left 4 Dead 2",purchase,1.0,0 -179936723,"Left 4 Dead 2",play,2.5,0 -179936723,"Marvel Heroes 2015",purchase,1.0,0 -179936723,"Marvel Heroes 2015",play,1.4,0 -179936723,"Mafia II",purchase,1.0,0 -179936723,"Mafia II",play,1.1,0 -179936723,"Dota 2",purchase,1.0,0 -179936723,"Dota 2",play,1.1,0 -179936723,"The Forest",purchase,1.0,0 -179936723,"The Forest",play,1.0,0 -179936723,"Democracy 3",purchase,1.0,0 -179936723,"Democracy 3",play,0.3,0 -179936723,"Grand Theft Auto San Andreas",purchase,1.0,0 -179936723,"Grand Theft Auto San Andreas",purchase,1.0,0 -179936723,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -179936723,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -179936723,"Warframe",purchase,1.0,0 -148467772,"Counter-Strike Global Offensive",purchase,1.0,0 -148467772,"Counter-Strike Global Offensive",play,93.0,0 -148467772,"PAYDAY 2",purchase,1.0,0 -148467772,"PAYDAY 2",play,41.0,0 -148467772,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -148467772,"Tom Clancy's Ghost Recon Phantoms - NA",play,16.1,0 -148467772,"Left 4 Dead 2",purchase,1.0,0 -148467772,"Left 4 Dead 2",play,13.8,0 -148467772,"Unturned",purchase,1.0,0 -148467772,"Unturned",play,11.8,0 -148467772,"APB Reloaded",purchase,1.0,0 -148467772,"APB Reloaded",play,9.9,0 -148467772,"No More Room in Hell",purchase,1.0,0 -148467772,"No More Room in Hell",play,7.0,0 -148467772,"Blacklight Retribution",purchase,1.0,0 -148467772,"Blacklight Retribution",play,0.5,0 -148467772,"RACE 07",purchase,1.0,0 -148467772,"RACE 07",play,0.1,0 -148467772,"Run and Fire",purchase,1.0,0 -148467772,"Dino D-Day",purchase,1.0,0 -148467772,"GTR Evolution",purchase,1.0,0 -148467772,"PAYDAY The Heist",purchase,1.0,0 -148467772,"RaceRoom Racing Experience ",purchase,1.0,0 -148467772,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -148467772,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -198350044,"Dota 2",purchase,1.0,0 -198350044,"Dota 2",play,137.0,0 -164948794,"Team Fortress 2",purchase,1.0,0 -164948794,"Team Fortress 2",play,546.0,0 -48429360,"Football Manager 2009",purchase,1.0,0 -48429360,"Football Manager 2009",play,0.2,0 -48429360,"Football Manager 2010",purchase,1.0,0 -297022016,"Dota 2",purchase,1.0,0 -297022016,"Dota 2",play,0.5,0 -85968997,"Team Fortress 2",purchase,1.0,0 -85968997,"Team Fortress 2",play,24.0,0 -228826954,"Construction-Simulator 2015",purchase,1.0,0 -228826954,"Construction-Simulator 2015",play,46.0,0 -37466720,"Counter-Strike Source",purchase,1.0,0 -37466720,"Counter-Strike Source",play,158.0,0 -37466720,"Half-Life 2 Deathmatch",purchase,1.0,0 -37466720,"Half-Life 2 Deathmatch",play,3.0,0 -37466720,"Counter-Strike",purchase,1.0,0 -37466720,"Counter-Strike",play,1.4,0 -37466720,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -37466720,"Counter-Strike Condition Zero Deleted Scenes",play,1.1,0 -37466720,"Half-Life 2 Lost Coast",purchase,1.0,0 -37466720,"Half-Life 2 Lost Coast",play,0.9,0 -37466720,"Counter-Strike Condition Zero",purchase,1.0,0 -37466720,"Counter-Strike Condition Zero",play,0.9,0 -37466720,"Zombie Panic Source",purchase,1.0,0 -37466720,"Zombie Panic Source",play,0.4,0 -37466720,"Day of Defeat Source",purchase,1.0,0 -37466720,"Day of Defeat Source",play,0.2,0 -37466720,"Deathmatch Classic",purchase,1.0,0 -37466720,"Ricochet",purchase,1.0,0 -37466720,"Day of Defeat",purchase,1.0,0 -171087166,"Dota 2",purchase,1.0,0 -171087166,"Dota 2",play,120.0,0 -13646256,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -13646256,"Tom Clancy's Splinter Cell Blacklist",play,12.4,0 -13646256,"Tomb Raider",purchase,1.0,0 -13646256,"Tomb Raider",play,11.1,0 -13646256,"Blood Bowl Legendary Edition",purchase,1.0,0 -13646256,"Blood Bowl Legendary Edition",play,8.4,0 -13646256,"Sleeping Dogs Definitive Edition",purchase,1.0,0 -13646256,"Sleeping Dogs Definitive Edition",play,4.1,0 -13646256,"Oddworld New 'n' Tasty",purchase,1.0,0 -13646256,"Oddworld New 'n' Tasty",play,1.5,0 -13646256,"Magic The Gathering - Duels of the Planeswalkers 2013",purchase,1.0,0 -13646256,"Magic The Gathering - Duels of the Planeswalkers 2013",play,0.9,0 -13646256,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -13646256,"Infinity Wars - Animated Trading Card Game",play,0.9,0 -13646256,"Counter-Strike Source",purchase,1.0,0 -13646256,"Counter-Strike Source",play,0.3,0 -13646256,"Lara Croft and the Guardian of Light",purchase,1.0,0 -13646256,"Half-Life 2",purchase,1.0,0 -13646256,"Half-Life 2 Deathmatch",purchase,1.0,0 -13646256,"Half-Life 2 Lost Coast",purchase,1.0,0 -178730299,"Dota 2",purchase,1.0,0 -178730299,"Dota 2",play,29.0,0 -181329087,"Counter-Strike Global Offensive",purchase,1.0,0 -181329087,"Counter-Strike Global Offensive",play,41.0,0 -181329087,"Team Fortress 2",purchase,1.0,0 -181329087,"Team Fortress 2",play,0.5,0 -181329087,"Sine Mora",purchase,1.0,0 -181329087,"Sine Mora",play,0.4,0 -252963100,"Team Fortress 2",purchase,1.0,0 -252963100,"Team Fortress 2",play,0.5,0 -269347396,"PAYDAY 2",purchase,1.0,0 -269347396,"PAYDAY 2",play,119.0,0 -269347396,"FreeStyle2 Street Basketball",purchase,1.0,0 -269347396,"FreeStyle2 Street Basketball",play,45.0,0 -91479671,"FINAL FANTASY VII",purchase,1.0,0 -91479671,"FINAL FANTASY VII",play,2.2,0 -91479671,"Evoland",purchase,1.0,0 -91479671,"Evoland",play,1.5,0 -91479671,"Total War SHOGUN 2",purchase,1.0,0 -102175618,"Napoleon Total War",purchase,1.0,0 -102175618,"Napoleon Total War",play,0.4,0 -56497895,"Portal",purchase,1.0,0 -56497895,"Portal",play,21.0,0 -56497895,"Half-Life 2 Deathmatch",purchase,1.0,0 -56497895,"Half-Life 2 Deathmatch",play,21.0,0 -56497895,"Half-Life 2 Lost Coast",purchase,1.0,0 -56497895,"Half-Life 2 Lost Coast",play,3.5,0 -56497895,"Smashball",purchase,1.0,0 -56497895,"Smashball",play,0.8,0 -195130514,"Dota 2",purchase,1.0,0 -195130514,"Dota 2",play,79.0,0 -67694595,"Dota 2",purchase,1.0,0 -67694595,"Dota 2",play,5608.0,0 -67694595,"Counter-Strike Global Offensive",purchase,1.0,0 -67694595,"Counter-Strike Global Offensive",play,463.0,0 -67694595,"Path of Exile",purchase,1.0,0 -67694595,"Path of Exile",play,337.0,0 -67694595,"The Elder Scrolls V Skyrim",purchase,1.0,0 -67694595,"The Elder Scrolls V Skyrim",play,178.0,0 -67694595,"PAYDAY 2",purchase,1.0,0 -67694595,"PAYDAY 2",play,71.0,0 -67694595,"Torchlight II",purchase,1.0,0 -67694595,"Torchlight II",play,47.0,0 -67694595,"The Witcher Enhanced Edition",purchase,1.0,0 -67694595,"The Witcher Enhanced Edition",play,44.0,0 -67694595,"Titan Quest",purchase,1.0,0 -67694595,"Titan Quest",play,35.0,0 -67694595,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -67694595,"Dark Souls Prepare to Die Edition",play,35.0,0 -67694595,"Titan Quest Immortal Throne",purchase,1.0,0 -67694595,"Titan Quest Immortal Throne",play,32.0,0 -67694595,"Dying Light",purchase,1.0,0 -67694595,"Dying Light",play,30.0,0 -67694595,"DARK SOULS II",purchase,1.0,0 -67694595,"DARK SOULS II",play,26.0,0 -67694595,"Torchlight",purchase,1.0,0 -67694595,"Torchlight",play,23.0,0 -67694595,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -67694595,"Call of Duty Black Ops - Multiplayer",play,21.0,0 -67694595,"Magicka",purchase,1.0,0 -67694595,"Magicka",play,21.0,0 -67694595,"Game Dev Tycoon",purchase,1.0,0 -67694595,"Game Dev Tycoon",play,19.1,0 -67694595,"Cities Skylines",purchase,1.0,0 -67694595,"Cities Skylines",play,14.5,0 -67694595,"Team Fortress 2",purchase,1.0,0 -67694595,"Team Fortress 2",play,13.0,0 -67694595,"The Incredible Adventures of Van Helsing II",purchase,1.0,0 -67694595,"The Incredible Adventures of Van Helsing II",play,11.7,0 -67694595,"Portal 2",purchase,1.0,0 -67694595,"Portal 2",play,11.4,0 -67694595,"Borderlands 2",purchase,1.0,0 -67694595,"Borderlands 2",play,10.5,0 -67694595,"Metro Last Light",purchase,1.0,0 -67694595,"Metro Last Light",play,9.4,0 -67694595,"FTL Faster Than Light",purchase,1.0,0 -67694595,"FTL Faster Than Light",play,7.9,0 -67694595,"Call of Juarez Gunslinger",purchase,1.0,0 -67694595,"Call of Juarez Gunslinger",play,7.7,0 -67694595,"Sid Meier's Civilization V",purchase,1.0,0 -67694595,"Sid Meier's Civilization V",play,7.5,0 -67694595,"Left 4 Dead 2",purchase,1.0,0 -67694595,"Left 4 Dead 2",play,7.0,0 -67694595,"PlanetSide 2",purchase,1.0,0 -67694595,"PlanetSide 2",play,6.2,0 -67694595,"Call of Duty Black Ops",purchase,1.0,0 -67694595,"Call of Duty Black Ops",play,6.1,0 -67694595,"Mirror's Edge",purchase,1.0,0 -67694595,"Mirror's Edge",play,5.1,0 -67694595,"Chivalry Medieval Warfare",purchase,1.0,0 -67694595,"Chivalry Medieval Warfare",play,4.9,0 -67694595,"Warframe",purchase,1.0,0 -67694595,"Warframe",play,4.0,0 -67694595,"Star Wars The Force Unleashed II",purchase,1.0,0 -67694595,"Star Wars The Force Unleashed II",play,3.8,0 -67694595,"Middle-earth Shadow of Mordor",purchase,1.0,0 -67694595,"Middle-earth Shadow of Mordor",play,2.8,0 -67694595,"Magicka Wizard Wars",purchase,1.0,0 -67694595,"Magicka Wizard Wars",play,2.5,0 -67694595,"Super Monday Night Combat",purchase,1.0,0 -67694595,"Super Monday Night Combat",play,2.5,0 -67694595,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -67694595,"Star Wars The Force Unleashed Ultimate Sith Edition",play,2.3,0 -67694595,"Darksiders",purchase,1.0,0 -67694595,"Darksiders",play,2.1,0 -67694595,"The Binding of Isaac",purchase,1.0,0 -67694595,"The Binding of Isaac",play,2.1,0 -67694595,"Worms Armageddon",purchase,1.0,0 -67694595,"Worms Armageddon",play,1.9,0 -67694595,"Metro 2033",purchase,1.0,0 -67694595,"Metro 2033",play,1.9,0 -67694595,"Bastion",purchase,1.0,0 -67694595,"Bastion",play,1.9,0 -67694595,"Alien Swarm",purchase,1.0,0 -67694595,"Alien Swarm",play,1.6,0 -67694595,"Korwin The Game",purchase,1.0,0 -67694595,"Korwin The Game",play,1.6,0 -67694595,"Company of Heroes (New Steam Version)",purchase,1.0,0 -67694595,"Company of Heroes (New Steam Version)",play,1.4,0 -67694595,"Trine 2",purchase,1.0,0 -67694595,"Trine 2",play,1.2,0 -67694595,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -67694595,"Burnout Paradise The Ultimate Box",play,0.8,0 -67694595,"Heroes of Might & Magic V",purchase,1.0,0 -67694595,"Heroes of Might & Magic V",play,0.8,0 -67694595,"Assassin's Creed II",purchase,1.0,0 -67694595,"Assassin's Creed II",play,0.7,0 -67694595,"Trine",purchase,1.0,0 -67694595,"Trine",play,0.6,0 -67694595,"ArcheAge",purchase,1.0,0 -67694595,"ArcheAge",play,0.5,0 -67694595,"Goat Simulator",purchase,1.0,0 -67694595,"Goat Simulator",play,0.4,0 -67694595,"Crysis 2 Maximum Edition",purchase,1.0,0 -67694595,"Crysis 2 Maximum Edition",play,0.4,0 -67694595,"Anomaly 2",purchase,1.0,0 -67694595,"Anomaly 2",play,0.3,0 -67694595,"Star Wars Empire at War Gold",purchase,1.0,0 -67694595,"Star Wars Empire at War Gold",play,0.3,0 -67694595,"Medal of Honor(TM) Single Player",purchase,1.0,0 -67694595,"Medal of Honor(TM) Single Player",play,0.2,0 -67694595,"Serious Sam 3 BFE",purchase,1.0,0 -67694595,"Serious Sam 3 BFE",play,0.1,0 -67694595,"Super Meat Boy",purchase,1.0,0 -67694595,"Super Meat Boy",play,0.1,0 -67694595,"Dungeon Defenders II",purchase,1.0,0 -67694595,"Dungeon Defenders II",play,0.1,0 -67694595,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -67694595,"Command and Conquer Red Alert 3 - Uprising",play,0.1,0 -67694595,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -67694595,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,0.1,0 -67694595,"Superfrog HD",purchase,1.0,0 -67694595,"Warlock - Master of the Arcane",purchase,1.0,0 -67694595,"Bridge Project",purchase,1.0,0 -67694595,"Closure",purchase,1.0,0 -67694595,"Company of Heroes",purchase,1.0,0 -67694595,"Company of Heroes Opposing Fronts",purchase,1.0,0 -67694595,"Company of Heroes Tales of Valor",purchase,1.0,0 -67694595,"Dead Island Epidemic",purchase,1.0,0 -67694595,"Dead Space",purchase,1.0,0 -67694595,"Indie Game The Movie",purchase,1.0,0 -67694595,"Insurgency",purchase,1.0,0 -67694595,"Magicka Vietnam",purchase,1.0,0 -67694595,"Magicka Wizard's Survival Kit",purchase,1.0,0 -67694595,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -67694595,"Medal of Honor Pre-Order",purchase,1.0,0 -67694595,"MX vs. ATV Reflex",purchase,1.0,0 -67694595,"No More Room in Hell",purchase,1.0,0 -67694595,"Patch testing for Chivalry",purchase,1.0,0 -67694595,"PAYDAY The Heist",purchase,1.0,0 -67694595,"Red Faction Armageddon",purchase,1.0,0 -67694595,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -67694595,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -67694595,"Sid Meier's Civilization III Complete",purchase,1.0,0 -67694595,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -67694595,"Snapshot",purchase,1.0,0 -67694595,"Sniper Elite V2",purchase,1.0,0 -67694595,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -67694595,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -67694595,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -67694595,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -67694595,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -67694595,"Worms Blast",purchase,1.0,0 -67694595,"Worms Crazy Golf",purchase,1.0,0 -67694595,"Worms Pinball",purchase,1.0,0 -67694595,"Worms Ultimate Mayhem",purchase,1.0,0 -175063109,"Dota 2",purchase,1.0,0 -175063109,"Dota 2",play,268.0,0 -254544187,"Dota 2",purchase,1.0,0 -254544187,"Dota 2",play,0.2,0 -143124637,"Neverwinter",purchase,1.0,0 -143124637,"Neverwinter",play,28.0,0 -143124637,"Marvel Heroes 2015",purchase,1.0,0 -143124637,"Marvel Heroes 2015",play,9.6,0 -143124637,"Jigoku Kisetsukan Sense of the Seasons",purchase,1.0,0 -143124637,"Jigoku Kisetsukan Sense of the Seasons",play,3.7,0 -143124637,"Team Fortress 2",purchase,1.0,0 -143124637,"Team Fortress 2",play,0.9,0 -143124637,"Dragon Nest",purchase,1.0,0 -143124637,"Dragon Nest",play,0.9,0 -143124637,"Path of Exile",purchase,1.0,0 -143124637,"Path of Exile",play,0.6,0 -143124637,"Dota 2",purchase,1.0,0 -143124637,"Dota 2",play,0.2,0 -143124637,"Nosgoth",purchase,1.0,0 -143124637,"Nosgoth",play,0.2,0 -143124637,"Magicka Wizard Wars",purchase,1.0,0 -303486706,"Dota 2",purchase,1.0,0 -303486706,"Dota 2",play,35.0,0 -158923194,"Dota 2",purchase,1.0,0 -158923194,"Dota 2",play,6.2,0 -305993961,"Team Fortress 2",purchase,1.0,0 -305993961,"Team Fortress 2",play,0.1,0 -305993961,"Warframe",purchase,1.0,0 -253469905,"Time Clickers",purchase,1.0,0 -253469905,"Time Clickers",play,2.6,0 -253469905,"Trove",purchase,1.0,0 -253469905,"Trove",play,0.9,0 -253469905,"Fishing Planet",purchase,1.0,0 -253469905,"Fishing Planet",play,0.2,0 -253469905,"sZone-Online",purchase,1.0,0 -253469905,"sZone-Online",play,0.1,0 -253469905,"Mitos.is The Game",purchase,1.0,0 -253469905,"Cubic Castles",purchase,1.0,0 -253469905,"Mortal Online",purchase,1.0,0 -253469905,"UberStrike",purchase,1.0,0 -10809782,"Half-Life 2",purchase,1.0,0 -10809782,"Half-Life 2",play,0.8,0 -10809782,"Counter-Strike Source",purchase,1.0,0 -10809782,"Half-Life 2 Deathmatch",purchase,1.0,0 -10809782,"Half-Life 2 Lost Coast",purchase,1.0,0 -258602617,"Robocraft",purchase,1.0,0 -258602617,"Robocraft",play,438.0,0 -258602617,"Garry's Mod",purchase,1.0,0 -258602617,"Garry's Mod",play,6.0,0 -258602617,"Terraria",purchase,1.0,0 -258602617,"Terraria",play,4.2,0 -258602617,"Don't Starve Together Beta",purchase,1.0,0 -258602617,"Don't Starve Together Beta",play,3.7,0 -258602617,"Unturned",purchase,1.0,0 -258602617,"Unturned",play,0.6,0 -258602617,"EasyAntiCheat eSports",purchase,1.0,0 -222642374,"Dota 2",purchase,1.0,0 -222642374,"Dota 2",play,0.7,0 -307708163,"Emily is Away",purchase,1.0,0 -307708163,"Emily is Away",play,0.7,0 -24583127,"Counter-Strike",purchase,1.0,0 -24583127,"Counter-Strike Condition Zero",purchase,1.0,0 -24583127,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -24583127,"Day of Defeat",purchase,1.0,0 -24583127,"Deathmatch Classic",purchase,1.0,0 -24583127,"Ricochet",purchase,1.0,0 -223586930,"Dota 2",purchase,1.0,0 -223586930,"Dota 2",play,0.4,0 -187484302,"Warframe",purchase,1.0,0 -187484302,"Warframe",play,15.3,0 -187484302,"FINAL FANTASY VII",purchase,1.0,0 -187484302,"FINAL FANTASY VII",play,5.0,0 -187484302,"Nosgoth",purchase,1.0,0 -187484302,"Nosgoth",play,3.9,0 -187484302,"Team Fortress 2",purchase,1.0,0 -187484302,"Team Fortress 2",play,2.2,0 -187484302,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -187484302,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.7,0 -187484302,"Piercing Blow",purchase,1.0,0 -187484302,"Piercing Blow",play,0.1,0 -187484302,"Path of Exile",purchase,1.0,0 -187484302,"Neverwinter",purchase,1.0,0 -187484302,"PlanetSide 2",purchase,1.0,0 -138455695,"Dota 2",purchase,1.0,0 -138455695,"Dota 2",play,112.0,0 -250395724,"Cobi Treasure Deluxe",purchase,1.0,0 -136705294,"Dota 2",purchase,1.0,0 -136705294,"Dota 2",play,61.0,0 -157109900,"Team Fortress 2",purchase,1.0,0 -157109900,"Team Fortress 2",play,150.0,0 -173558102,"South Park The Stick of Truth",purchase,1.0,0 -173558102,"South Park The Stick of Truth",play,27.0,0 -277283114,"Dota 2",purchase,1.0,0 -277283114,"Dota 2",play,1.9,0 -200376716,"Spiral Knights",purchase,1.0,0 -200376716,"Spiral Knights",play,1.2,0 -200376716,"Heroes & Generals",purchase,1.0,0 -200376716,"Heroes & Generals",play,0.4,0 -200376716,"America's Army Proving Grounds",purchase,1.0,0 -200376716,"APB Reloaded",purchase,1.0,0 -200376716,"Blacklight Retribution",purchase,1.0,0 -200376716,"Defiance",purchase,1.0,0 -200376716,"Firefall",purchase,1.0,0 -200376716,"Loadout",purchase,1.0,0 -200376716,"PlanetSide 2",purchase,1.0,0 -200376716,"theHunter",purchase,1.0,0 -200376716,"The Mighty Quest For Epic Loot",purchase,1.0,0 -200376716,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -200376716,"Warface",purchase,1.0,0 -103520209,"SONIC THE HEDGEHOG 4 Episode II",purchase,1.0,0 -103520209,"SONIC THE HEDGEHOG 4 Episode II",play,9.4,0 -215380327,"Warframe",purchase,1.0,0 -215380327,"Warframe",play,10.4,0 -215380327,"Fallen Earth",purchase,1.0,0 -215380327,"Fallen Earth",play,8.5,0 -215380327,"APB Reloaded",purchase,1.0,0 -215380327,"APB Reloaded",play,6.5,0 -215380327,"Heroes & Generals",purchase,1.0,0 -215380327,"Heroes & Generals",play,4.4,0 -215380327,"Nosgoth",purchase,1.0,0 -215380327,"Nosgoth",play,2.2,0 -215380327,"No More Room in Hell",purchase,1.0,0 -215380327,"No More Room in Hell",play,1.9,0 -215380327,"Dead Island Epidemic",purchase,1.0,0 -215380327,"Dead Island Epidemic",play,1.4,0 -215380327,"Codename CURE",purchase,1.0,0 -215380327,"Codename CURE",play,1.2,0 -215380327,"War of the Roses",purchase,1.0,0 -171726897,"Undertale",purchase,1.0,0 -171726897,"Undertale",play,4.2,0 -171726897,"Long Live The Queen",purchase,1.0,0 -171726897,"Long Live The Queen",play,3.6,0 -171726897,"To the Moon",purchase,1.0,0 -171726897,"To the Moon",play,3.5,0 -171726897,"Dragon Age Origins",purchase,1.0,0 -171726897,"Dragon Age Origins",play,2.1,0 -171726897,"BioShock",purchase,1.0,0 -171726897,"BioShock",play,1.8,0 -171726897,"Age of Empires II HD Edition",purchase,1.0,0 -171726897,"Age of Empires II HD Edition",play,1.6,0 -171726897,"Stealth Inc 2",purchase,1.0,0 -171726897,"Stealth Inc 2",play,0.5,0 -171726897,"BioShock 2",purchase,1.0,0 -171726897,"BioShock Infinite",purchase,1.0,0 -182822996,"Dota 2",purchase,1.0,0 -182822996,"Dota 2",play,1.5,0 -68025732,"Alien Swarm",purchase,1.0,0 -68025732,"Alien Swarm",play,2.4,0 -147064019,"Dota 2",purchase,1.0,0 -147064019,"Dota 2",play,1.3,0 -134416946,"Infestation Survivor Stories",purchase,1.0,0 -285252660,"Counter-Strike Nexon Zombies",purchase,1.0,0 -285252660,"Counter-Strike Nexon Zombies",play,166.0,0 -285252660,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -285252660,"Navy Field 2 Conqueror of the Ocean",play,1.3,0 -285252660,"Heroes & Generals",purchase,1.0,0 -242914933,"Dota 2",purchase,1.0,0 -242914933,"Dota 2",play,16.5,0 -242914933,"FreeStyle2 Street Basketball",purchase,1.0,0 -228063098,"Dota 2",purchase,1.0,0 -228063098,"Dota 2",play,15.1,0 -259057827,"Dota 2",purchase,1.0,0 -259057827,"Dota 2",play,0.7,0 -47644729,"Race The WTCC Game",purchase,1.0,0 -47644729,"Race The WTCC Game",play,0.8,0 -47644729,"RACE Caterham Expansion",purchase,1.0,0 -47644729,"RACE Caterham Expansion",play,0.3,0 -231472933,"Dota 2",purchase,1.0,0 -231472933,"Dota 2",play,1.3,0 -139673932,"Football Manager 2013",purchase,1.0,0 -139673932,"Football Manager 2013",play,3374.0,0 -139673932,"Cossacks Art of War",purchase,1.0,0 -139673932,"Cossacks Art of War",play,36.0,0 -139673932,"Age of Mythology Extended Edition",purchase,1.0,0 -139673932,"Age of Mythology Extended Edition",play,29.0,0 -139673932,"Cricket Captain 2014",purchase,1.0,0 -139673932,"Cricket Captain 2014",play,23.0,0 -139673932,"To End All Wars",purchase,1.0,0 -139673932,"To End All Wars",play,15.3,0 -139673932,"Age of Empires II HD Edition",purchase,1.0,0 -139673932,"Age of Empires II HD Edition",play,10.2,0 -139673932,"Medieval II Total War",purchase,1.0,0 -139673932,"Medieval II Total War",play,0.1,0 -139673932,"Age of Empires II HD The Forgotten",purchase,1.0,0 -108569990,"XCOM Enemy Unknown",purchase,1.0,0 -108569990,"XCOM Enemy Unknown",play,5.0,0 -108569990,"Counter-Strike Global Offensive",purchase,1.0,0 -108569990,"Counter-Strike Global Offensive",play,1.4,0 -108569990,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -108569990,"Warhammer 40,000 Dawn of War II",play,0.5,0 -108569990,"Batman Arkham Origins",purchase,1.0,0 -108569990,"Batman Arkham Origins",play,0.3,0 -108569990,"XCOM Enemy Within",purchase,1.0,0 -63615483,"APB Reloaded",purchase,1.0,0 -63615483,"APB Reloaded",play,4749.0,0 -63615483,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -63615483,"Call of Duty Modern Warfare 3 - Multiplayer",play,404.0,0 -63615483,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -63615483,"Tom Clancy's Ghost Recon Phantoms - EU",play,260.0,0 -63615483,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -63615483,"Call of Duty Black Ops II - Multiplayer",play,258.0,0 -63615483,"Farming Simulator 2011",purchase,1.0,0 -63615483,"Farming Simulator 2011",play,236.0,0 -63615483,"Call of Duty Black Ops III",purchase,1.0,0 -63615483,"Call of Duty Black Ops III",play,208.0,0 -63615483,"Counter-Strike Global Offensive",purchase,1.0,0 -63615483,"Counter-Strike Global Offensive",play,190.0,0 -63615483,"Farming Simulator 15",purchase,1.0,0 -63615483,"Farming Simulator 15",play,132.0,0 -63615483,"Farming Simulator 2013",purchase,1.0,0 -63615483,"Farming Simulator 2013",play,130.0,0 -63615483,"Euro Truck Simulator 2",purchase,1.0,0 -63615483,"Euro Truck Simulator 2",play,122.0,0 -63615483,"Counter-Strike",purchase,1.0,0 -63615483,"Counter-Strike",play,74.0,0 -63615483,"DayZ",purchase,1.0,0 -63615483,"DayZ",play,64.0,0 -63615483,"GRID 2",purchase,1.0,0 -63615483,"GRID 2",play,51.0,0 -63615483,"Grand Theft Auto IV",purchase,1.0,0 -63615483,"Grand Theft Auto IV",play,39.0,0 -63615483,"Counter-Strike Condition Zero",purchase,1.0,0 -63615483,"Counter-Strike Condition Zero",play,37.0,0 -63615483,"Far Cry 3",purchase,1.0,0 -63615483,"Far Cry 3",play,35.0,0 -63615483,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -63615483,"Counter-Strike Condition Zero Deleted Scenes",play,34.0,0 -63615483,"Mafia II",purchase,1.0,0 -63615483,"Mafia II",play,26.0,0 -63615483,"Call of Duty Modern Warfare 3",purchase,1.0,0 -63615483,"Call of Duty Modern Warfare 3",play,25.0,0 -63615483,"Need for Speed Hot Pursuit",purchase,1.0,0 -63615483,"Need for Speed Hot Pursuit",play,22.0,0 -63615483,"Farming Simulator 2013 - Modding Tutorials",purchase,1.0,0 -63615483,"Farming Simulator 2013 - Modding Tutorials",play,14.7,0 -63615483,"Wolfenstein The New Order",purchase,1.0,0 -63615483,"Wolfenstein The New Order",play,10.5,0 -63615483,"F.E.A.R. 3",purchase,1.0,0 -63615483,"F.E.A.R. 3",play,8.8,0 -63615483,"Pinball FX2",purchase,1.0,0 -63615483,"Pinball FX2",play,7.5,0 -63615483,"Infestation Survivor Stories",purchase,1.0,0 -63615483,"Infestation Survivor Stories",play,7.2,0 -63615483,"Loadout",purchase,1.0,0 -63615483,"Loadout",play,5.7,0 -63615483,"Bridge Project",purchase,1.0,0 -63615483,"Bridge Project",play,4.6,0 -63615483,"Half-Life",purchase,1.0,0 -63615483,"Half-Life",play,4.2,0 -63615483,"Xpand Rally Xtreme",purchase,1.0,0 -63615483,"Xpand Rally Xtreme",play,4.1,0 -63615483,"MotoGP13",purchase,1.0,0 -63615483,"MotoGP13",play,2.9,0 -63615483,"Hitman 2 Silent Assassin",purchase,1.0,0 -63615483,"Hitman 2 Silent Assassin",play,2.6,0 -63615483,"Construction-Simulator 2015",purchase,1.0,0 -63615483,"Construction-Simulator 2015",play,2.1,0 -63615483,"Arma 2 Operation Arrowhead",purchase,1.0,0 -63615483,"Arma 2 Operation Arrowhead",play,1.9,0 -63615483,"The Settlers 7 Paths to a Kingdom - Gold Edition",purchase,1.0,0 -63615483,"The Settlers 7 Paths to a Kingdom - Gold Edition",play,1.4,0 -63615483,"Mirror's Edge",purchase,1.0,0 -63615483,"Mirror's Edge",play,1.2,0 -63615483,"Red Bull X-Fighters",purchase,1.0,0 -63615483,"Red Bull X-Fighters",play,1.2,0 -63615483,"Lara Croft and the Guardian of Light",purchase,1.0,0 -63615483,"Lara Croft and the Guardian of Light",play,1.1,0 -63615483,"Hitman Absolution",purchase,1.0,0 -63615483,"Hitman Absolution",play,1.1,0 -63615483,"theHunter",purchase,1.0,0 -63615483,"theHunter",play,1.0,0 -63615483,"Arma 2",purchase,1.0,0 -63615483,"Arma 2",play,1.0,0 -63615483,"Sniper Elite",purchase,1.0,0 -63615483,"Sniper Elite",play,0.9,0 -63615483,"Medal of Honor(TM) Single Player",purchase,1.0,0 -63615483,"Medal of Honor(TM) Single Player",play,0.9,0 -63615483,"Heroes & Generals",purchase,1.0,0 -63615483,"Heroes & Generals",play,0.9,0 -63615483,"Counter-Strike Source",purchase,1.0,0 -63615483,"Counter-Strike Source",play,0.8,0 -63615483,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -63615483,"Call of Duty Black Ops II - Zombies",play,0.8,0 -63615483,"Fishing Planet",purchase,1.0,0 -63615483,"Fishing Planet",play,0.8,0 -63615483,"Hitman Codename 47",purchase,1.0,0 -63615483,"Hitman Codename 47",play,0.7,0 -63615483,"Crysis 2 Maximum Edition",purchase,1.0,0 -63615483,"Crysis 2 Maximum Edition",play,0.7,0 -63615483,"War Thunder",purchase,1.0,0 -63615483,"War Thunder",play,0.7,0 -63615483,"Hitman Blood Money",purchase,1.0,0 -63615483,"Hitman Blood Money",play,0.6,0 -63615483,"Source Filmmaker",purchase,1.0,0 -63615483,"Source Filmmaker",play,0.5,0 -63615483,"Call of Duty Black Ops II",purchase,1.0,0 -63615483,"Call of Duty Black Ops II",play,0.5,0 -63615483,"Hitman Sniper Challenge",purchase,1.0,0 -63615483,"Hitman Sniper Challenge",play,0.3,0 -63615483,"Master Levels for DOOM II",purchase,1.0,0 -63615483,"Master Levels for DOOM II",play,0.2,0 -63615483,"The Ultimate DOOM",purchase,1.0,0 -63615483,"The Ultimate DOOM",play,0.1,0 -63615483,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -63615483,"Medal of Honor(TM) Multiplayer",play,0.1,0 -63615483,"Agricultural Simulator 2011 Extended Edition",purchase,1.0,0 -63615483,"Agricultural Simulator 2011 Extended Edition",play,0.1,0 -63615483,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -63615483,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -63615483,"Construction Simulator 2015 Vertical Skyline",purchase,1.0,0 -63615483,"DarkBase 01",purchase,1.0,0 -63615483,"Dead Space",purchase,1.0,0 -63615483,"DETOUR",purchase,1.0,0 -63615483,"DOOM II Hell on Earth",purchase,1.0,0 -63615483,"Final DOOM",purchase,1.0,0 -63615483,"Hazard Ops",purchase,1.0,0 -63615483,"Larva Mortus",purchase,1.0,0 -63615483,"Medal of Honor Pre-Order",purchase,1.0,0 -63615483,"MotoGP13 2012 Top Riders",purchase,1.0,0 -63615483,"MotoGP13 Moto2 and Moto3",purchase,1.0,0 -63615483,"Naval Warfare",purchase,1.0,0 -63615483,"New kind of adventure",purchase,1.0,0 -63615483,"Nosgoth",purchase,1.0,0 -63615483,"Pinball FX2 - Core pack",purchase,1.0,0 -63615483,"Pinball FX2 - Earth Defense Table",purchase,1.0,0 -63615483,"Pinball FX2 - Epic Quest Table",purchase,1.0,0 -63615483,"Pinball FX2 - Paranormal Table",purchase,1.0,0 -63615483,"Pinball FX2 - Zen Classics Pack",purchase,1.0,0 -63615483,"PlanetSide 2",purchase,1.0,0 -63615483,"Platypus II",purchase,1.0,0 -63615483,"Survarium",purchase,1.0,0 -63615483,"Unturned",purchase,1.0,0 -63615483,"Warface",purchase,1.0,0 -63615483,"Warframe",purchase,1.0,0 -63615483,"War of the Roses",purchase,1.0,0 -40286953,"Half-Life 2",purchase,1.0,0 -40286953,"Half-Life 2",play,42.0,0 -40286953,"Half-Life 2 Deathmatch",purchase,1.0,0 -40286953,"Half-Life 2 Lost Coast",purchase,1.0,0 -259953528,"Dota 2",purchase,1.0,0 -259953528,"Dota 2",play,0.8,0 -174357608,"Dota 2",purchase,1.0,0 -174357608,"Dota 2",play,1.4,0 -51300149,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -51300149,"Warhammer 40,000 Dawn of War II",play,16.5,0 -51300149,"Omerta - City of Gangsters",purchase,1.0,0 -51300149,"Omerta - City of Gangsters",play,12.0,0 -51300149,"Sniper Ghost Warrior",purchase,1.0,0 -51300149,"Sniper Ghost Warrior",play,9.8,0 -51300149,"Call of Duty Black Ops",purchase,1.0,0 -51300149,"Call of Duty Black Ops",play,8.9,0 -51300149,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -51300149,"F.E.A.R. 2 Project Origin",play,7.8,0 -51300149,"Call of Duty Modern Warfare 2",purchase,1.0,0 -51300149,"Call of Duty Modern Warfare 2",play,7.5,0 -51300149,"Sid Meier's Civilization V",purchase,1.0,0 -51300149,"Sid Meier's Civilization V",play,4.5,0 -51300149,"Aliens Colonial Marines",purchase,1.0,0 -51300149,"Aliens Colonial Marines",play,3.1,0 -51300149,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -51300149,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.4,0 -51300149,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -183803328,"Team Fortress 2",purchase,1.0,0 -183803328,"Team Fortress 2",play,2.3,0 -183803328,"RACE 07",purchase,1.0,0 -183803328,"RACE 07",play,1.1,0 -183803328,"Robocraft",purchase,1.0,0 -183803328,"Robocraft",play,0.8,0 -183803328,"Amazing World",purchase,1.0,0 -183803328,"Amazing World",play,0.3,0 -183803328,"Gun Monkeys",purchase,1.0,0 -183803328,"The Expendabros",purchase,1.0,0 -183803328,"GTR Evolution",purchase,1.0,0 -183803328,"Battle Islands",purchase,1.0,0 -183803328,"Happy Wars",purchase,1.0,0 -183803328,"RaceRoom Racing Experience ",purchase,1.0,0 -87424218,"Sid Meier's Civilization III Complete",purchase,1.0,0 -87424218,"Sid Meier's Civilization III Complete",play,72.0,0 -87424218,"Toki Tori",purchase,1.0,0 -87424218,"Toki Tori",play,3.0,0 -87424218,"Altitude",purchase,1.0,0 -87424218,"Magicka Wizard Wars",purchase,1.0,0 -87424218,"Super Crate Box",purchase,1.0,0 -87424218,"The Way of Life Free Edition",purchase,1.0,0 -87424218,"Transformice",purchase,1.0,0 -111688835,"MX vs. ATV Reflex",purchase,1.0,0 -106834867,"Team Fortress 2",purchase,1.0,0 -106834867,"Team Fortress 2",play,1043.0,0 -106834867,"Left 4 Dead 2",purchase,1.0,0 -106834867,"Left 4 Dead 2",play,27.0,0 -106834867,"Portal 2",purchase,1.0,0 -106834867,"Portal 2",play,25.0,0 -106834867,"Half-Life",purchase,1.0,0 -106834867,"Half-Life",play,25.0,0 -106834867,"Reign Of Kings",purchase,1.0,0 -106834867,"Reign Of Kings",play,24.0,0 -106834867,"Mortal Kombat Komplete Edition",purchase,1.0,0 -106834867,"Mortal Kombat Komplete Edition",play,12.8,0 -106834867,"Half-Life Opposing Force",purchase,1.0,0 -106834867,"Half-Life Opposing Force",play,11.6,0 -106834867,"Garry's Mod",purchase,1.0,0 -106834867,"Garry's Mod",play,7.3,0 -106834867,"Unturned",purchase,1.0,0 -106834867,"Unturned",play,7.2,0 -106834867,"Portal",purchase,1.0,0 -106834867,"Portal",play,4.9,0 -106834867,"Half-Life 2",purchase,1.0,0 -106834867,"Half-Life 2",play,3.8,0 -106834867,"Double Action Boogaloo",purchase,1.0,0 -106834867,"Double Action Boogaloo",play,3.4,0 -106834867,"Counter-Strike Global Offensive",purchase,1.0,0 -106834867,"Counter-Strike Global Offensive",play,3.3,0 -106834867,"Source Filmmaker",purchase,1.0,0 -106834867,"Source Filmmaker",play,3.0,0 -106834867,"Counter-Strike Source",purchase,1.0,0 -106834867,"Counter-Strike Source",play,1.6,0 -106834867,"The Showdown Effect",purchase,1.0,0 -106834867,"The Showdown Effect",play,1.4,0 -106834867,"Crysis 2 Maximum Edition",purchase,1.0,0 -106834867,"Crysis 2 Maximum Edition",play,0.8,0 -106834867,"Warface",purchase,1.0,0 -106834867,"Warface",play,0.4,0 -106834867,"Counter-Strike",purchase,1.0,0 -106834867,"Half-Life 2 Episode One",purchase,1.0,0 -106834867,"Half-Life Blue Shift",purchase,1.0,0 -106834867,"BioShock Infinite",purchase,1.0,0 -106834867,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -106834867,"Counter-Strike Condition Zero",purchase,1.0,0 -106834867,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -106834867,"Dead Island Epidemic",purchase,1.0,0 -106834867,"Dead Space",purchase,1.0,0 -106834867,"Defy Gravity",purchase,1.0,0 -106834867,"Fallout New Vegas",purchase,1.0,0 -106834867,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -106834867,"Fallout New Vegas Dead Money",purchase,1.0,0 -106834867,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -106834867,"Half-Life 2 Deathmatch",purchase,1.0,0 -106834867,"Half-Life 2 Episode Two",purchase,1.0,0 -106834867,"Half-Life 2 Lost Coast",purchase,1.0,0 -106834867,"Half-Life Deathmatch Source",purchase,1.0,0 -106834867,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -106834867,"Medal of Honor(TM) Single Player",purchase,1.0,0 -106834867,"Medal of Honor Pre-Order",purchase,1.0,0 -106834867,"Mirror's Edge",purchase,1.0,0 -106834867,"Risen 2 - Dark Waters",purchase,1.0,0 -106834867,"Sacred 2 Gold",purchase,1.0,0 -106834867,"Saints Row 2",purchase,1.0,0 -106834867,"Saints Row The Third",purchase,1.0,0 -106834867,"Sniper Elite V2",purchase,1.0,0 -106834867,"The Binding of Isaac",purchase,1.0,0 -106834867,"The Witcher Enhanced Edition",purchase,1.0,0 -222989310,"Robocraft",purchase,1.0,0 -254205257,"Dota 2",purchase,1.0,0 -254205257,"Dota 2",play,0.1,0 -90809240,"Half-Life 2",purchase,1.0,0 -90809240,"Half-Life 2",play,36.0,0 -90809240,"Half-Life 2 Deathmatch",purchase,1.0,0 -90809240,"Half-Life 2 Deathmatch",play,0.8,0 -90809240,"Half-Life 2 Lost Coast",purchase,1.0,0 -90809240,"Half-Life 2 Lost Coast",play,0.5,0 -222284298,"Divinity Original Sin",purchase,1.0,0 -222284298,"Divinity Original Sin",play,12.6,0 -222284298,"Squishy the Suicidal Pig",purchase,1.0,0 -222284298,"NEED FOR MADNESS ?",purchase,1.0,0 -222284298,"Beyond Divinity",purchase,1.0,0 -222284298,"Divine Divinity",purchase,1.0,0 -222284298,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -200036280,"Sid Meier's Civilization V",purchase,1.0,0 -200036280,"Sid Meier's Civilization V",play,19.8,0 -200036280,"War Thunder",purchase,1.0,0 -200036280,"War Thunder",play,4.3,0 -200036280,"Arma Tactics",purchase,1.0,0 -200036280,"Arma Tactics",play,2.8,0 -200036280,"Blitzkrieg Anthology",purchase,1.0,0 -200036280,"Blitzkrieg Anthology",play,2.5,0 -200036280,"March of War",purchase,1.0,0 -200036280,"March of War",play,1.9,0 -200036280,"The Four Kings Casino and Slots",purchase,1.0,0 -200036280,"The Four Kings Casino and Slots",play,1.3,0 -200036280,"Heroes & Generals",purchase,1.0,0 -200036280,"Heroes & Generals",play,0.8,0 -200036280,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -200036280,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -281992088,"UberStrike",purchase,1.0,0 -297510921,"Tomb Raider",purchase,1.0,0 -297510921,"Tomb Raider",play,4.1,0 -297510921,"Counter-Strike Global Offensive",purchase,1.0,0 -297510921,"Counter-Strike Global Offensive",play,2.3,0 -297510921,"Left 4 Dead 2",purchase,1.0,0 -297510921,"Left 4 Dead 2",play,0.9,0 -297510921,"BioShock Infinite",purchase,1.0,0 -297510921,"BioShock Infinite",play,0.9,0 -297510921,"Block N Load",purchase,1.0,0 -297510921,"Block N Load",play,0.4,0 -297510921,"Dota 2",purchase,1.0,0 -297510921,"Dota 2",play,0.3,0 -297510921,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -297510921,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.3,0 -297510921,"Left 4 Dead",purchase,1.0,0 -297510921,"Left 4 Dead",play,0.2,0 -297510921,"No More Room in Hell",purchase,1.0,0 -297510921,"No More Room in Hell",play,0.1,0 -297510921,"CSGO Player Profiles",purchase,1.0,0 -297510921,"CSGO Player Profiles - Device",purchase,1.0,0 -297510921,"CSGO Player Profiles - Edward",purchase,1.0,0 -297510921,"CSGO Player Profiles - Fallen",purchase,1.0,0 -297510921,"CSGO Player Profiles - Get_Right",purchase,1.0,0 -297510921,"CSGO Player Profiles - KennyS",purchase,1.0,0 -297510921,"CSGO Player Profiles - Markeloff",purchase,1.0,0 -297510921,"CSGO Player Profiles - N0thing",purchase,1.0,0 -297510921,"CSGO Player Profiles - Olofmeister",purchase,1.0,0 -297510921,"CSGO Player Profiles - Taz",purchase,1.0,0 -297510921,"RaceRoom Racing Experience ",purchase,1.0,0 -215627519,"Call of Duty World at War",purchase,1.0,0 -215627519,"Call of Duty World at War",play,58.0,0 -16081636,"Kerbal Space Program",purchase,1.0,0 -16081636,"Kerbal Space Program",play,121.0,0 -16081636,"Counter-Strike Global Offensive",purchase,1.0,0 -16081636,"Counter-Strike Global Offensive",play,77.0,0 -16081636,"Day of Defeat Source",purchase,1.0,0 -16081636,"Day of Defeat Source",play,57.0,0 -16081636,"F1 2013",purchase,1.0,0 -16081636,"F1 2013",play,41.0,0 -16081636,"Team Fortress 2",purchase,1.0,0 -16081636,"Team Fortress 2",play,39.0,0 -16081636,"Universe Sandbox",purchase,1.0,0 -16081636,"Universe Sandbox",play,26.0,0 -16081636,"Counter-Strike Source",purchase,1.0,0 -16081636,"Counter-Strike Source",play,21.0,0 -16081636,"DiRT 3",purchase,1.0,0 -16081636,"DiRT 3",play,19.4,0 -16081636,"Dying Light",purchase,1.0,0 -16081636,"Dying Light",play,13.4,0 -16081636,"Borderlands The Pre-Sequel",purchase,1.0,0 -16081636,"Borderlands The Pre-Sequel",play,11.1,0 -16081636,"Portal",purchase,1.0,0 -16081636,"Portal",play,9.1,0 -16081636,"Besiege",purchase,1.0,0 -16081636,"Besiege",play,7.8,0 -16081636,"Half-Life 2",purchase,1.0,0 -16081636,"Half-Life 2",play,6.4,0 -16081636,"Lost Planet 2",purchase,1.0,0 -16081636,"Lost Planet 2",play,6.0,0 -16081636,"Poly Bridge",purchase,1.0,0 -16081636,"Poly Bridge",play,5.7,0 -16081636,"Half-Life 2 Episode Two",purchase,1.0,0 -16081636,"Half-Life 2 Episode Two",play,5.5,0 -16081636,"LIMBO",purchase,1.0,0 -16081636,"LIMBO",play,3.8,0 -16081636,"War Thunder",purchase,1.0,0 -16081636,"War Thunder",play,3.4,0 -16081636,"Sir, You Are Being Hunted",purchase,1.0,0 -16081636,"Sir, You Are Being Hunted",play,1.1,0 -16081636,"Dishonored",purchase,1.0,0 -16081636,"Dishonored",play,0.7,0 -16081636,"Universe Sandbox ",purchase,1.0,0 -16081636,"Universe Sandbox ",play,0.7,0 -16081636,"Super Meat Boy",purchase,1.0,0 -16081636,"Super Meat Boy",play,0.5,0 -16081636,"Dota 2",purchase,1.0,0 -16081636,"Dota 2",play,0.5,0 -16081636,"Rust",purchase,1.0,0 -16081636,"Rust",play,0.2,0 -16081636,"Strife",purchase,1.0,0 -16081636,"Strife",play,0.1,0 -16081636,"DiRT 3 Complete Edition",purchase,1.0,0 -16081636,"Half-Life 2 Deathmatch",purchase,1.0,0 -16081636,"Half-Life 2 Lost Coast",purchase,1.0,0 -93907820,"Dota 2",purchase,1.0,0 -93907820,"Dota 2",play,358.0,0 -38049880,"PlanetSide 2",purchase,1.0,0 -38049880,"PlanetSide 2",play,1539.0,0 -38049880,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -38049880,"Call of Duty Modern Warfare 3 - Multiplayer",play,733.0,0 -38049880,"The Elder Scrolls V Skyrim",purchase,1.0,0 -38049880,"The Elder Scrolls V Skyrim",play,219.0,0 -38049880,"Supreme Commander Forged Alliance",purchase,1.0,0 -38049880,"Supreme Commander Forged Alliance",play,209.0,0 -38049880,"Warframe",purchase,1.0,0 -38049880,"Warframe",play,110.0,0 -38049880,"Titan Quest Immortal Throne",purchase,1.0,0 -38049880,"Titan Quest Immortal Throne",play,75.0,0 -38049880,"Gothic 3",purchase,1.0,0 -38049880,"Gothic 3",play,55.0,0 -38049880,"Terraria",purchase,1.0,0 -38049880,"Terraria",play,53.0,0 -38049880,"Dota 2",purchase,1.0,0 -38049880,"Dota 2",play,49.0,0 -38049880,"DayZ",purchase,1.0,0 -38049880,"DayZ",play,34.0,0 -38049880,"Call of Duty Modern Warfare 3",purchase,1.0,0 -38049880,"Call of Duty Modern Warfare 3",play,30.0,0 -38049880,"SpellForce Platinum Edition",purchase,1.0,0 -38049880,"SpellForce Platinum Edition",play,29.0,0 -38049880,"Alien Isolation",purchase,1.0,0 -38049880,"Alien Isolation",play,27.0,0 -38049880,"Risen 2 - Dark Waters",purchase,1.0,0 -38049880,"Risen 2 - Dark Waters",play,26.0,0 -38049880,"Grim Dawn",purchase,1.0,0 -38049880,"Grim Dawn",play,23.0,0 -38049880,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -38049880,"Warhammer 40,000 Dawn of War II Retribution",play,22.0,0 -38049880,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -38049880,"Call of Duty Ghosts - Multiplayer",play,22.0,0 -38049880,"Supreme Commander",purchase,1.0,0 -38049880,"Supreme Commander",play,22.0,0 -38049880,"Thief",purchase,1.0,0 -38049880,"Thief",play,21.0,0 -38049880,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -38049880,"Dark Messiah of Might & Magic Single Player",play,21.0,0 -38049880,"Middle-earth Shadow of Mordor",purchase,1.0,0 -38049880,"Middle-earth Shadow of Mordor",play,19.9,0 -38049880,"Supreme Commander 2",purchase,1.0,0 -38049880,"Supreme Commander 2",play,19.1,0 -38049880,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -38049880,"Warhammer 40,000 Dawn of War Soulstorm",play,18.6,0 -38049880,"Overlord Raising Hell",purchase,1.0,0 -38049880,"Overlord Raising Hell",play,18.0,0 -38049880,"Metro 2033",purchase,1.0,0 -38049880,"Metro 2033",play,17.8,0 -38049880,"Valkyria Chronicles",purchase,1.0,0 -38049880,"Valkyria Chronicles",play,17.2,0 -38049880,"Counter-Strike Global Offensive",purchase,1.0,0 -38049880,"Counter-Strike Global Offensive",play,17.1,0 -38049880,"Metro Last Light",purchase,1.0,0 -38049880,"Metro Last Light",play,15.6,0 -38049880,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -38049880,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,15.4,0 -38049880,"DarkStar One",purchase,1.0,0 -38049880,"DarkStar One",play,14.1,0 -38049880,"Metro 2033 Redux",purchase,1.0,0 -38049880,"Metro 2033 Redux",play,13.8,0 -38049880,"Left 4 Dead 2",purchase,1.0,0 -38049880,"Left 4 Dead 2",play,13.8,0 -38049880,"Lost Planet 3",purchase,1.0,0 -38049880,"Lost Planet 3",play,13.8,0 -38049880,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -38049880,"Star Wars Jedi Knight Jedi Academy",play,13.2,0 -38049880,"Dishonored",purchase,1.0,0 -38049880,"Dishonored",play,13.2,0 -38049880,"Tomb Raider",purchase,1.0,0 -38049880,"Tomb Raider",play,13.0,0 -38049880,"Tomb Raider I",purchase,1.0,0 -38049880,"Tomb Raider I",play,12.4,0 -38049880,"Planetary Annihilation TITANS",purchase,1.0,0 -38049880,"Planetary Annihilation TITANS",play,11.8,0 -38049880,"Wolfenstein The New Order German Edition",purchase,1.0,0 -38049880,"Wolfenstein The New Order German Edition",play,11.7,0 -38049880,"Elite Dangerous",purchase,1.0,0 -38049880,"Elite Dangerous",play,11.6,0 -38049880,"The Witcher Enhanced Edition",purchase,1.0,0 -38049880,"The Witcher Enhanced Edition",play,11.6,0 -38049880,"Sniper Ghost Warrior 2",purchase,1.0,0 -38049880,"Sniper Ghost Warrior 2",play,11.4,0 -38049880,"Ace of Spades",purchase,1.0,0 -38049880,"Ace of Spades",play,10.5,0 -38049880,"Star Wars Republic Commando",purchase,1.0,0 -38049880,"Star Wars Republic Commando",play,10.2,0 -38049880,"Enclave",purchase,1.0,0 -38049880,"Enclave",play,9.9,0 -38049880,"Half-Life",purchase,1.0,0 -38049880,"Half-Life",play,9.9,0 -38049880,"Battlefield Bad Company 2",purchase,1.0,0 -38049880,"Battlefield Bad Company 2",play,9.4,0 -38049880,"BioShock Infinite",purchase,1.0,0 -38049880,"BioShock Infinite",play,9.4,0 -38049880,"Counter-Strike Source",purchase,1.0,0 -38049880,"Counter-Strike Source",play,9.3,0 -38049880,"ARK Survival Evolved",purchase,1.0,0 -38049880,"ARK Survival Evolved",play,9.2,0 -38049880,"Portal 2",purchase,1.0,0 -38049880,"Portal 2",play,9.1,0 -38049880,"The Forest",purchase,1.0,0 -38049880,"The Forest",play,8.5,0 -38049880,"Stronghold HD",purchase,1.0,0 -38049880,"Stronghold HD",play,8.4,0 -38049880,"Dungeon Siege",purchase,1.0,0 -38049880,"Dungeon Siege",play,8.1,0 -38049880,"Outlast",purchase,1.0,0 -38049880,"Outlast",play,7.9,0 -38049880,"Alan Wake",purchase,1.0,0 -38049880,"Alan Wake",play,7.7,0 -38049880,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -38049880,"Star Wars Jedi Knight Dark Forces II",play,7.7,0 -38049880,"Super Meat Boy",purchase,1.0,0 -38049880,"Super Meat Boy",play,6.9,0 -38049880,"DOOM 3 BFG Edition",purchase,1.0,0 -38049880,"DOOM 3 BFG Edition",play,6.8,0 -38049880,"Warhammer 40,000 Space Marine",purchase,1.0,0 -38049880,"Warhammer 40,000 Space Marine",play,6.7,0 -38049880,"Crysis",purchase,1.0,0 -38049880,"Crysis",play,6.5,0 -38049880,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -38049880,"Dark Souls Prepare to Die Edition",play,6.4,0 -38049880,"Shadowgrounds",purchase,1.0,0 -38049880,"Shadowgrounds",play,6.2,0 -38049880,"Sanctum",purchase,1.0,0 -38049880,"Sanctum",play,6.2,0 -38049880,"Call of Duty Ghosts",purchase,1.0,0 -38049880,"Call of Duty Ghosts",play,6.1,0 -38049880,"Star Wars Dark Forces",purchase,1.0,0 -38049880,"Star Wars Dark Forces",play,6.0,0 -38049880,"VVVVVV",purchase,1.0,0 -38049880,"VVVVVV",play,6.0,0 -38049880,"Sniper Ghost Warrior",purchase,1.0,0 -38049880,"Sniper Ghost Warrior",play,5.9,0 -38049880,"TERA",purchase,1.0,0 -38049880,"TERA",play,5.9,0 -38049880,"Grand Theft Auto IV",purchase,1.0,0 -38049880,"Grand Theft Auto IV",play,5.7,0 -38049880,"Portal",purchase,1.0,0 -38049880,"Portal",play,5.6,0 -38049880,"Serious Sam Classic The First Encounter",purchase,1.0,0 -38049880,"Serious Sam Classic The First Encounter",play,5.4,0 -38049880,"Half-Life 2",purchase,1.0,0 -38049880,"Half-Life 2",play,5.2,0 -38049880,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -38049880,"Star Wars - Jedi Knight II Jedi Outcast",play,5.1,0 -38049880,"Aliens Colonial Marines",purchase,1.0,0 -38049880,"Aliens Colonial Marines",play,4.9,0 -38049880,"Half-Life Opposing Force",purchase,1.0,0 -38049880,"Half-Life Opposing Force",play,4.9,0 -38049880,"E.Y.E Divine Cybermancy",purchase,1.0,0 -38049880,"E.Y.E Divine Cybermancy",play,4.7,0 -38049880,"Mark of the Ninja",purchase,1.0,0 -38049880,"Mark of the Ninja",play,4.4,0 -38049880,"Need for Speed Undercover",purchase,1.0,0 -38049880,"Need for Speed Undercover",play,4.3,0 -38049880,"Far Cry 3",purchase,1.0,0 -38049880,"Far Cry 3",play,4.2,0 -38049880,"Sparkle 2 Evo",purchase,1.0,0 -38049880,"Sparkle 2 Evo",play,4.1,0 -38049880,"Q.U.B.E Director's Cut",purchase,1.0,0 -38049880,"Q.U.B.E Director's Cut",play,3.9,0 -38049880,"Fallout New Vegas",purchase,1.0,0 -38049880,"Fallout New Vegas",play,3.7,0 -38049880,"Duke Nukem Forever",purchase,1.0,0 -38049880,"Duke Nukem Forever",play,3.5,0 -38049880,"The Binding of Isaac",purchase,1.0,0 -38049880,"The Binding of Isaac",play,3.5,0 -38049880,"Shadowgrounds Survivor",purchase,1.0,0 -38049880,"Shadowgrounds Survivor",play,3.3,0 -38049880,"Metro Last Light Redux",purchase,1.0,0 -38049880,"Metro Last Light Redux",play,3.2,0 -38049880,"BioShock 2",purchase,1.0,0 -38049880,"BioShock 2",play,3.2,0 -38049880,"The Elder Scrolls III Morrowind",purchase,1.0,0 -38049880,"The Elder Scrolls III Morrowind",play,3.1,0 -38049880,"Deus Ex Human Revolution",purchase,1.0,0 -38049880,"Deus Ex Human Revolution",play,3.1,0 -38049880,"Lost Planet Extreme Condition - Colonies Edition",purchase,1.0,0 -38049880,"Lost Planet Extreme Condition - Colonies Edition",play,3.0,0 -38049880,"TimeShift",purchase,1.0,0 -38049880,"TimeShift",play,2.9,0 -38049880,"Serious Sam 3 BFE",purchase,1.0,0 -38049880,"Serious Sam 3 BFE",play,2.9,0 -38049880,"Castle Crashers",purchase,1.0,0 -38049880,"Castle Crashers",play,2.8,0 -38049880,"Viking Battle for Asgard",purchase,1.0,0 -38049880,"Viking Battle for Asgard",play,2.7,0 -38049880,"Spore Galactic Adventures",purchase,1.0,0 -38049880,"Spore Galactic Adventures",play,2.7,0 -38049880,"South Park The Stick of Truth",purchase,1.0,0 -38049880,"South Park The Stick of Truth",play,2.7,0 -38049880,"System Shock 2",purchase,1.0,0 -38049880,"System Shock 2",play,2.7,0 -38049880,"Company of Heroes 2",purchase,1.0,0 -38049880,"Company of Heroes 2",play,2.5,0 -38049880,"Nihilumbra",purchase,1.0,0 -38049880,"Nihilumbra",play,2.5,0 -38049880,"Stealth Bastard Deluxe",purchase,1.0,0 -38049880,"Stealth Bastard Deluxe",play,2.4,0 -38049880,"Tomb Raider II",purchase,1.0,0 -38049880,"Tomb Raider II",play,2.4,0 -38049880,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -38049880,"METAL GEAR RISING REVENGEANCE",play,2.4,0 -38049880,"Cthulhu Saves the World ",purchase,1.0,0 -38049880,"Cthulhu Saves the World ",play,2.2,0 -38049880,"Rise of the Triad",purchase,1.0,0 -38049880,"Rise of the Triad",play,2.2,0 -38049880,"Lost Planet 2",purchase,1.0,0 -38049880,"Lost Planet 2",play,2.1,0 -38049880,"Half-Life Blue Shift",purchase,1.0,0 -38049880,"Half-Life Blue Shift",play,2.1,0 -38049880,"ORION Prelude",purchase,1.0,0 -38049880,"ORION Prelude",play,2.0,0 -38049880,"Ultratron",purchase,1.0,0 -38049880,"Ultratron",play,2.0,0 -38049880,"Gish",purchase,1.0,0 -38049880,"Gish",play,1.9,0 -38049880,"Chaser",purchase,1.0,0 -38049880,"Chaser",play,1.9,0 -38049880,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -38049880,"Dragon Age Origins - Ultimate Edition",play,1.8,0 -38049880,"The Bridge",purchase,1.0,0 -38049880,"The Bridge",play,1.8,0 -38049880,"Descent",purchase,1.0,0 -38049880,"Descent",play,1.8,0 -38049880,"Depth",purchase,1.0,0 -38049880,"Depth",play,1.8,0 -38049880,"Worms Armageddon",purchase,1.0,0 -38049880,"Worms Armageddon",play,1.8,0 -38049880,"Gothic",purchase,1.0,0 -38049880,"Gothic",play,1.7,0 -38049880,"The Ball",purchase,1.0,0 -38049880,"The Ball",play,1.7,0 -38049880,"Dust An Elysian Tail",purchase,1.0,0 -38049880,"Dust An Elysian Tail",play,1.7,0 -38049880,"LYNE",purchase,1.0,0 -38049880,"LYNE",play,1.7,0 -38049880,"Tomb Raider Chronicles",purchase,1.0,0 -38049880,"Tomb Raider Chronicles",play,1.7,0 -38049880,"Doorways Prelude",purchase,1.0,0 -38049880,"Doorways Prelude",play,1.7,0 -38049880,"The Darkness II",purchase,1.0,0 -38049880,"The Darkness II",play,1.6,0 -38049880,"Natural Selection 2",purchase,1.0,0 -38049880,"Natural Selection 2",play,1.6,0 -38049880,"Droid Assault",purchase,1.0,0 -38049880,"Droid Assault",play,1.5,0 -38049880,"LIMBO",purchase,1.0,0 -38049880,"LIMBO",play,1.5,0 -38049880,"Solar Flux",purchase,1.0,0 -38049880,"Solar Flux",play,1.5,0 -38049880,"Aliens versus Predator Classic 2000",purchase,1.0,0 -38049880,"Aliens versus Predator Classic 2000",play,1.4,0 -38049880,"Ryse Son of Rome",purchase,1.0,0 -38049880,"Ryse Son of Rome",play,1.4,0 -38049880,"RAGE",purchase,1.0,0 -38049880,"RAGE",play,1.4,0 -38049880,"Age of Empires II HD Edition",purchase,1.0,0 -38049880,"Age of Empires II HD Edition",play,1.4,0 -38049880,"Brtal Legend",purchase,1.0,0 -38049880,"Brtal Legend",play,1.3,0 -38049880,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -38049880,"Warhammer 40,000 Dawn of War II",play,1.3,0 -38049880,"Cry of Fear",purchase,1.0,0 -38049880,"Cry of Fear",play,1.3,0 -38049880,"VelocityUltra",purchase,1.0,0 -38049880,"VelocityUltra",play,1.3,0 -38049880,"Sacred 2 Gold",purchase,1.0,0 -38049880,"Sacred 2 Gold",play,1.3,0 -38049880,"Call of Juarez Gunslinger",purchase,1.0,0 -38049880,"Call of Juarez Gunslinger",play,1.3,0 -38049880,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -38049880,"Kingdoms of Amalur Reckoning",play,1.3,0 -38049880,"The Talos Principle",purchase,1.0,0 -38049880,"The Talos Principle",play,1.2,0 -38049880,"Warface",purchase,1.0,0 -38049880,"Warface",play,1.2,0 -38049880,"Axiom Verge",purchase,1.0,0 -38049880,"Axiom Verge",play,1.2,0 -38049880,"X-Blades",purchase,1.0,0 -38049880,"X-Blades",play,1.2,0 -38049880,"Gigantic Army",purchase,1.0,0 -38049880,"Gigantic Army",play,1.1,0 -38049880,"Ori and the Blind Forest",purchase,1.0,0 -38049880,"Ori and the Blind Forest",play,1.1,0 -38049880,"Titan Attacks",purchase,1.0,0 -38049880,"Titan Attacks",play,1.1,0 -38049880,"MDK",purchase,1.0,0 -38049880,"MDK",play,1.1,0 -38049880,"Legendary",purchase,1.0,0 -38049880,"Legendary",play,1.0,0 -38049880,"Takedown Red Sabre",purchase,1.0,0 -38049880,"Takedown Red Sabre",play,1.0,0 -38049880,"Slender The Arrival",purchase,1.0,0 -38049880,"Slender The Arrival",play,1.0,0 -38049880,"Thief Gold",purchase,1.0,0 -38049880,"Thief Gold",play,1.0,0 -38049880,"Defense Grid 2",purchase,1.0,0 -38049880,"Defense Grid 2",play,1.0,0 -38049880,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -38049880,"Red Faction Guerrilla Steam Edition",play,1.0,0 -38049880,"Breath of Death VII ",purchase,1.0,0 -38049880,"Breath of Death VII ",play,0.9,0 -38049880,"Alien Rage - Unlimited",purchase,1.0,0 -38049880,"Alien Rage - Unlimited",play,0.9,0 -38049880,"The Void",purchase,1.0,0 -38049880,"The Void",play,0.9,0 -38049880,"HAWKEN",purchase,1.0,0 -38049880,"HAWKEN",play,0.9,0 -38049880,"Sanctum 2",purchase,1.0,0 -38049880,"Sanctum 2",play,0.9,0 -38049880,"Just Cause 2",purchase,1.0,0 -38049880,"Just Cause 2",play,0.9,0 -38049880,"Interstellar Marines",purchase,1.0,0 -38049880,"Interstellar Marines",play,0.9,0 -38049880,"Star Wars Empire at War Gold",purchase,1.0,0 -38049880,"Star Wars Empire at War Gold",play,0.9,0 -38049880,"Planetary Annihilation",purchase,1.0,0 -38049880,"Planetary Annihilation",play,0.9,0 -38049880,"Waking Mars",purchase,1.0,0 -38049880,"Waking Mars",play,0.8,0 -38049880,"Arx Fatalis",purchase,1.0,0 -38049880,"Arx Fatalis",play,0.8,0 -38049880,"Gothic 3 Forsaken Gods Enhanced Edition",purchase,1.0,0 -38049880,"Gothic 3 Forsaken Gods Enhanced Edition",play,0.8,0 -38049880,"Prototype",purchase,1.0,0 -38049880,"Prototype",play,0.8,0 -38049880,"Star Wars - Battlefront II",purchase,1.0,0 -38049880,"Star Wars - Battlefront II",play,0.8,0 -38049880,"Serious Sam 2",purchase,1.0,0 -38049880,"Serious Sam 2",play,0.7,0 -38049880,"F.E.A.R. 3",purchase,1.0,0 -38049880,"F.E.A.R. 3",play,0.7,0 -38049880,"DmC Devil May Cry",purchase,1.0,0 -38049880,"DmC Devil May Cry",play,0.7,0 -38049880,"Ghost in the Shell Stand Alone Complex First Assault Online",purchase,1.0,0 -38049880,"Ghost in the Shell Stand Alone Complex First Assault Online",play,0.7,0 -38049880,"Need for Speed Hot Pursuit",purchase,1.0,0 -38049880,"Need for Speed Hot Pursuit",play,0.6,0 -38049880,"AquaNox",purchase,1.0,0 -38049880,"AquaNox",play,0.6,0 -38049880,"Serious Sam Double D XXL",purchase,1.0,0 -38049880,"Serious Sam Double D XXL",play,0.6,0 -38049880,"Prince of Persia The Sands of Time",purchase,1.0,0 -38049880,"Prince of Persia The Sands of Time",play,0.6,0 -38049880,"BioShock",purchase,1.0,0 -38049880,"BioShock",play,0.6,0 -38049880,"Day of Defeat Source",purchase,1.0,0 -38049880,"Day of Defeat Source",play,0.5,0 -38049880,"Worms Reloaded",purchase,1.0,0 -38049880,"Worms Reloaded",play,0.5,0 -38049880,"Far Cry 3 Blood Dragon",purchase,1.0,0 -38049880,"Far Cry 3 Blood Dragon",play,0.5,0 -38049880,"From Dust",purchase,1.0,0 -38049880,"From Dust",play,0.5,0 -38049880,"DeadCore",purchase,1.0,0 -38049880,"DeadCore",play,0.4,0 -38049880,"Dead Effect",purchase,1.0,0 -38049880,"Dead Effect",play,0.4,0 -38049880,"Turok Dinosaur Hunter",purchase,1.0,0 -38049880,"Turok Dinosaur Hunter",play,0.4,0 -38049880,"GRAV",purchase,1.0,0 -38049880,"GRAV",play,0.4,0 -38049880,"Dark Void",purchase,1.0,0 -38049880,"Dark Void",play,0.4,0 -38049880,"Hammerwatch",purchase,1.0,0 -38049880,"Hammerwatch",play,0.4,0 -38049880,"Quake Live",purchase,1.0,0 -38049880,"Quake Live",play,0.4,0 -38049880,"Two Worlds II",purchase,1.0,0 -38049880,"Two Worlds II",play,0.3,0 -38049880,"Garry's Mod",purchase,1.0,0 -38049880,"Garry's Mod",play,0.3,0 -38049880,"Braid",purchase,1.0,0 -38049880,"Braid",play,0.3,0 -38049880,"X2 The Threat",purchase,1.0,0 -38049880,"X2 The Threat",play,0.3,0 -38049880,"Alien Swarm",purchase,1.0,0 -38049880,"Alien Swarm",play,0.3,0 -38049880,"Quake",purchase,1.0,0 -38049880,"Quake",play,0.3,0 -38049880,"Earth 2160",purchase,1.0,0 -38049880,"Earth 2160",play,0.2,0 -38049880,"Far Cry",purchase,1.0,0 -38049880,"Far Cry",play,0.2,0 -38049880,"Gothic II Gold Edition",purchase,1.0,0 -38049880,"Gothic II Gold Edition",play,0.2,0 -38049880,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -38049880,"Tomb Raider III Adventures of Lara Croft",play,0.2,0 -38049880,"X Beyond the Frontier",purchase,1.0,0 -38049880,"X Beyond the Frontier",play,0.2,0 -38049880,"Titan Quest",purchase,1.0,0 -38049880,"Titan Quest",play,0.1,0 -38049880,"Descent 2",purchase,1.0,0 -38049880,"Descent 2",play,0.1,0 -38049880,"Blender 2.76b",purchase,1.0,0 -38049880,"Blender 2.76b",play,0.1,0 -38049880,"Dungeon Siege 2",purchase,1.0,0 -38049880,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -38049880,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -38049880,"The Expendabros",purchase,1.0,0 -38049880,"MDK 2",purchase,1.0,0 -38049880,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -38049880,"War Thunder",purchase,1.0,0 -38049880,"Nosgoth",purchase,1.0,0 -38049880,"Anna - Extended Edition",purchase,1.0,0 -38049880,"Fractured Space",purchase,1.0,0 -38049880,"Insurgency",purchase,1.0,0 -38049880,"X3 Reunion",purchase,1.0,0 -38049880,"X3 Albion Prelude",purchase,1.0,0 -38049880,"Serious Sam HD The First Encounter",purchase,1.0,0 -38049880,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -38049880,"Demigod",purchase,1.0,0 -38049880,"Age of Empires II HD The Forgotten",purchase,1.0,0 -38049880,"Alan Wake's American Nightmare",purchase,1.0,0 -38049880,"AquaNox 2 Revelation",purchase,1.0,0 -38049880,"Axiom Verge Original Soundtrack",purchase,1.0,0 -38049880,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -38049880,"BEEP",purchase,1.0,0 -38049880,"BioShock Infinite - Season Pass",purchase,1.0,0 -38049880,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -38049880,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -38049880,"Camera Obscura",purchase,1.0,0 -38049880,"Castle Crashers - Blacksmith Pack",purchase,1.0,0 -38049880,"Castle Crashers - Pink Knight Pack",purchase,1.0,0 -38049880,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -38049880,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -38049880,"Company of Heroes",purchase,1.0,0 -38049880,"Company of Heroes (New Steam Version)",purchase,1.0,0 -38049880,"Company of Heroes Opposing Fronts",purchase,1.0,0 -38049880,"Company of Heroes Tales of Valor",purchase,1.0,0 -38049880,"Dead Space",purchase,1.0,0 -38049880,"Descent 3",purchase,1.0,0 -38049880,"Deus Ex Game of the Year Edition",purchase,1.0,0 -38049880,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -38049880,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -38049880,"Deus Ex Invisible War",purchase,1.0,0 -38049880,"Deus Ex The Fall",purchase,1.0,0 -38049880,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -38049880,"Fallout New Vegas Dead Money",purchase,1.0,0 -38049880,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -38049880,"Far Cry 2",purchase,1.0,0 -38049880,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -38049880,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -38049880,"Half-Life 2 Deathmatch",purchase,1.0,0 -38049880,"Half-Life 2 Episode One",purchase,1.0,0 -38049880,"Half-Life 2 Episode Two",purchase,1.0,0 -38049880,"Half-Life 2 Lost Coast",purchase,1.0,0 -38049880,"Half-Life 2 Update",purchase,1.0,0 -38049880,"Half-Life Source",purchase,1.0,0 -38049880,"Half-Life Deathmatch Source",purchase,1.0,0 -38049880,"Just Cause",purchase,1.0,0 -38049880,"Lara Croft and the Guardian of Light",purchase,1.0,0 -38049880,"Mark of the Ninja Special Edition DLC",purchase,1.0,0 -38049880,"Outlast Whistleblower DLC",purchase,1.0,0 -38049880,"Out There Somewhere",purchase,1.0,0 -38049880,"Overlord",purchase,1.0,0 -38049880,"Overlord II",purchase,1.0,0 -38049880,"Path of Exile",purchase,1.0,0 -38049880,"Planetary Annihilation - Digital Deluxe Bundle",purchase,1.0,0 -38049880,"Planetary Annihilation - Original Soundtrack",purchase,1.0,0 -38049880,"Polarity",purchase,1.0,0 -38049880,"Prince of Persia",purchase,1.0,0 -38049880,"Prince of Persia The Forgotten Sands",purchase,1.0,0 -38049880,"Prince of Persia The Two Thrones",purchase,1.0,0 -38049880,"Prince of Persia Warrior Within",purchase,1.0,0 -38049880,"Quake Mission Pack 1 Scourge of Armagon",purchase,1.0,0 -38049880,"Quake Mission Pack 2 Dissolution of Eternity",purchase,1.0,0 -38049880,"Red Faction Armageddon",purchase,1.0,0 -38049880,"Red Faction Armageddon Soundtrack",purchase,1.0,0 -38049880,"Revenge of the Titans",purchase,1.0,0 -38049880,"Risen",purchase,1.0,0 -38049880,"Robocraft",purchase,1.0,0 -38049880,"Rochard",purchase,1.0,0 -38049880,"Rochard - Hard Times",purchase,1.0,0 -38049880,"Serious Sam The Random Encounter",purchase,1.0,0 -38049880,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -38049880,"Serious Sam Classics Revolution",purchase,1.0,0 -38049880,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -38049880,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -38049880,"Sniper Ghost Warrior 2 World Hunter Pack",purchase,1.0,0 -38049880,"SpellForce 2 - Demons of the Past",purchase,1.0,0 -38049880,"SpellForce 2 - Demons of the Past - Soundtrack",purchase,1.0,0 -38049880,"SpellForce 2 - Faith in Destiny",purchase,1.0,0 -38049880,"SpellForce 2 Gold Edition",purchase,1.0,0 -38049880,"Spore",purchase,1.0,0 -38049880,"Spore Creepy & Cute Parts Pack",purchase,1.0,0 -38049880,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -38049880,"Stealth Bastard Deluxe - The Teleporter Chambers",purchase,1.0,0 -38049880,"Stronghold Crusader Extreme HD",purchase,1.0,0 -38049880,"Stronghold Crusader HD",purchase,1.0,0 -38049880,"Supreme Commander 2 - Infinite War Battle Pack One",purchase,1.0,0 -38049880,"Team Fortress Classic",purchase,1.0,0 -38049880,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -38049880,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -38049880,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -38049880,"The Forgotten Ones",purchase,1.0,0 -38049880,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -38049880,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -38049880,"The Talos Principle - Bonus Content",purchase,1.0,0 -38049880,"The Talos Principle - Prototype",purchase,1.0,0 -38049880,"The Talos Principle - Soundtrack",purchase,1.0,0 -38049880,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -38049880,"Thief - Opportunist",purchase,1.0,0 -38049880,"Thief - The Bank Heist",purchase,1.0,0 -38049880,"Thief 2",purchase,1.0,0 -38049880,"Thief Deadly Shadows",purchase,1.0,0 -38049880,"This War of Mine",purchase,1.0,0 -38049880,"This War of Mine - War Child Charity DLC",purchase,1.0,0 -38049880,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -38049880,"Tomb Raider Anniversary",purchase,1.0,0 -38049880,"Tomb Raider Legend",purchase,1.0,0 -38049880,"Tomb Raider The Last Revelation",purchase,1.0,0 -38049880,"Tomb Raider Underworld",purchase,1.0,0 -38049880,"Trine",purchase,1.0,0 -38049880,"Trine 2",purchase,1.0,0 -38049880,"Two Worlds 2 - Pirates of the Flying Fortress ",purchase,1.0,0 -38049880,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -38049880,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -38049880,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -38049880,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -38049880,"X-Tension",purchase,1.0,0 -38049880,"X3 Terran Conflict",purchase,1.0,0 -189971720,"Dota 2",purchase,1.0,0 -189971720,"Dota 2",play,16.9,0 -49669626,"Grand Theft Auto V",purchase,1.0,0 -49669626,"Grand Theft Auto V",play,20.0,0 -83589156,"Team Fortress 2",purchase,1.0,0 -83589156,"Team Fortress 2",play,72.0,0 -83589156,"Portal 2",purchase,1.0,0 -83589156,"Portal 2",play,12.7,0 -256613211,"Unturned",purchase,1.0,0 -256613211,"Unturned",play,11.8,0 -256613211,"Amnesia The Dark Descent",purchase,1.0,0 -256613211,"Amnesia The Dark Descent",play,11.2,0 -256613211,"Warframe",purchase,1.0,0 -256613211,"Warframe",play,8.3,0 -256613211,"Spooky's House of Jump Scares",purchase,1.0,0 -256613211,"Spooky's House of Jump Scares",play,1.0,0 -256613211,"Happy Wars",purchase,1.0,0 -256613211,"Happy Wars",play,0.6,0 -256613211,"Clown House (Palyao Evi)",purchase,1.0,0 -256613211,"Clown House (Palyao Evi)",play,0.5,0 -256613211,"Counter-Strike Nexon Zombies",purchase,1.0,0 -256613211,"Counter-Strike Nexon Zombies",play,0.5,0 -256613211,"World of Guns Gun Disassembly",purchase,1.0,0 -256613211,"World of Guns Gun Disassembly",play,0.4,0 -256613211,"WARMODE",purchase,1.0,0 -256613211,"One Manga Day",purchase,1.0,0 -256613211,"Mortal Online",purchase,1.0,0 -183086571,"The Witcher Enhanced Edition",purchase,1.0,0 -183086571,"No More Room in Hell",purchase,1.0,0 -201929912,"Dota 2",purchase,1.0,0 -201929912,"Dota 2",play,0.3,0 -33282871,"Counter-Strike Global Offensive",purchase,1.0,0 -33282871,"Counter-Strike Global Offensive",play,334.0,0 -33282871,"ARK Survival Evolved",purchase,1.0,0 -33282871,"ARK Survival Evolved",play,331.0,0 -33282871,"Terraria",purchase,1.0,0 -33282871,"Terraria",play,90.0,0 -33282871,"Team Fortress 2",purchase,1.0,0 -33282871,"Team Fortress 2",play,85.0,0 -33282871,"XCOM Enemy Unknown",purchase,1.0,0 -33282871,"XCOM Enemy Unknown",play,55.0,0 -33282871,"Counter-Strike Source",purchase,1.0,0 -33282871,"Counter-Strike Source",play,55.0,0 -33282871,"Sid Meier's Civilization V",purchase,1.0,0 -33282871,"Sid Meier's Civilization V",play,55.0,0 -33282871,"PAYDAY 2",purchase,1.0,0 -33282871,"PAYDAY 2",play,50.0,0 -33282871,"Assassin's Creed IV Black Flag",purchase,1.0,0 -33282871,"Assassin's Creed IV Black Flag",play,48.0,0 -33282871,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -33282871,"Call of Duty Black Ops II - Multiplayer",play,41.0,0 -33282871,"Rust",purchase,1.0,0 -33282871,"Rust",play,37.0,0 -33282871,"Dota 2",purchase,1.0,0 -33282871,"Dota 2",play,36.0,0 -33282871,"Counter-Strike",purchase,1.0,0 -33282871,"Counter-Strike",play,34.0,0 -33282871,"Insurgency",purchase,1.0,0 -33282871,"Insurgency",play,28.0,0 -33282871,"Batman Arkham Knight",purchase,1.0,0 -33282871,"Batman Arkham Knight",play,27.0,0 -33282871,"Rocket League",purchase,1.0,0 -33282871,"Rocket League",play,24.0,0 -33282871,"Portal 2",purchase,1.0,0 -33282871,"Portal 2",play,21.0,0 -33282871,"Dead Island",purchase,1.0,0 -33282871,"Dead Island",play,21.0,0 -33282871,"The Witcher 3 Wild Hunt",purchase,1.0,0 -33282871,"The Witcher 3 Wild Hunt",play,21.0,0 -33282871,"Magicka",purchase,1.0,0 -33282871,"Magicka",play,21.0,0 -33282871,"Mad Max",purchase,1.0,0 -33282871,"Mad Max",play,20.0,0 -33282871,"Sleeping Dogs",purchase,1.0,0 -33282871,"Sleeping Dogs",play,19.6,0 -33282871,"Command and Conquer 4 Tiberian Twilight",purchase,1.0,0 -33282871,"Command and Conquer 4 Tiberian Twilight",play,18.8,0 -33282871,"Watch_Dogs",purchase,1.0,0 -33282871,"Watch_Dogs",play,18.4,0 -33282871,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -33282871,"Sid Meier's Civilization Beyond Earth",play,17.9,0 -33282871,"The Mighty Quest For Epic Loot",purchase,1.0,0 -33282871,"The Mighty Quest For Epic Loot",play,17.8,0 -33282871,"Dead Rising 2",purchase,1.0,0 -33282871,"Dead Rising 2",play,17.4,0 -33282871,"Darkspore",purchase,1.0,0 -33282871,"Darkspore",play,17.1,0 -33282871,"Gotham City Impostors",purchase,1.0,0 -33282871,"Gotham City Impostors",play,15.9,0 -33282871,"Arma 3",purchase,1.0,0 -33282871,"Arma 3",play,15.2,0 -33282871,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -33282871,"Batman Arkham Asylum GOTY Edition",play,14.1,0 -33282871,"Primal Carnage",purchase,1.0,0 -33282871,"Primal Carnage",play,13.9,0 -33282871,"Hurtworld",purchase,1.0,0 -33282871,"Hurtworld",play,13.8,0 -33282871,"Dirty Bomb",purchase,1.0,0 -33282871,"Dirty Bomb",play,13.8,0 -33282871,"TrackMania Valley",purchase,1.0,0 -33282871,"TrackMania Valley",play,13.7,0 -33282871,"Garry's Mod",purchase,1.0,0 -33282871,"Garry's Mod",play,13.6,0 -33282871,"The Stomping Land",purchase,1.0,0 -33282871,"The Stomping Land",play,12.4,0 -33282871,"Left 4 Dead",purchase,1.0,0 -33282871,"Left 4 Dead",play,11.5,0 -33282871,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -33282871,"Rising Storm/Red Orchestra 2 Multiplayer",play,11.4,0 -33282871,"Transformers War for Cybertron",purchase,1.0,0 -33282871,"Transformers War for Cybertron",play,10.6,0 -33282871,"Borderlands 2",purchase,1.0,0 -33282871,"Borderlands 2",play,8.2,0 -33282871,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -33282871,"Call of Duty Ghosts - Multiplayer",play,7.1,0 -33282871,"Company of Heroes 2",purchase,1.0,0 -33282871,"Company of Heroes 2",play,7.1,0 -33282871,"Titan Quest",purchase,1.0,0 -33282871,"Titan Quest",play,7.1,0 -33282871,"Loadout",purchase,1.0,0 -33282871,"Loadout",play,7.0,0 -33282871,"Serious Sam 3 BFE",purchase,1.0,0 -33282871,"Serious Sam 3 BFE",play,6.6,0 -33282871,"Fallout 4",purchase,1.0,0 -33282871,"Fallout 4",play,6.5,0 -33282871,"Crysis Warhead",purchase,1.0,0 -33282871,"Crysis Warhead",play,6.5,0 -33282871,"Insurgency Modern Infantry Combat",purchase,1.0,0 -33282871,"Insurgency Modern Infantry Combat",play,5.3,0 -33282871,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -33282871,"Dark Messiah of Might & Magic Single Player",play,5.2,0 -33282871,"Call of Duty Black Ops II",purchase,1.0,0 -33282871,"Call of Duty Black Ops II",play,5.2,0 -33282871,"PlanetSide 2",purchase,1.0,0 -33282871,"PlanetSide 2",play,4.5,0 -33282871,"Crysis Wars",purchase,1.0,0 -33282871,"Crysis Wars",play,4.5,0 -33282871,"BioShock Infinite",purchase,1.0,0 -33282871,"BioShock Infinite",play,4.5,0 -33282871,"Nosgoth",purchase,1.0,0 -33282871,"Nosgoth",play,4.4,0 -33282871,"Left 4 Dead 2",purchase,1.0,0 -33282871,"Left 4 Dead 2",play,4.3,0 -33282871,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -33282871,"Tom Clancy's Splinter Cell Blacklist",play,4.2,0 -33282871,"Grand Theft Auto V",purchase,1.0,0 -33282871,"Grand Theft Auto V",play,4.2,0 -33282871,"Driver San Francisco",purchase,1.0,0 -33282871,"Driver San Francisco",play,4.0,0 -33282871,"Sniper Elite V2",purchase,1.0,0 -33282871,"Sniper Elite V2",play,3.9,0 -33282871,"Darksiders",purchase,1.0,0 -33282871,"Darksiders",play,3.7,0 -33282871,"Starbound",purchase,1.0,0 -33282871,"Starbound",play,3.6,0 -33282871,"Just Cause 2",purchase,1.0,0 -33282871,"Just Cause 2",play,3.4,0 -33282871,"Audiosurf",purchase,1.0,0 -33282871,"Audiosurf",play,3.3,0 -33282871,"Aliens vs. Predator",purchase,1.0,0 -33282871,"Aliens vs. Predator",play,3.1,0 -33282871,"Savage Lands",purchase,1.0,0 -33282871,"Savage Lands",play,3.1,0 -33282871,"Frozen Synapse",purchase,1.0,0 -33282871,"Frozen Synapse",play,3.0,0 -33282871,"Awesomenauts",purchase,1.0,0 -33282871,"Awesomenauts",play,3.0,0 -33282871,"Grand Theft Auto IV",purchase,1.0,0 -33282871,"Grand Theft Auto IV",play,2.9,0 -33282871,"Call of Duty Ghosts",purchase,1.0,0 -33282871,"Call of Duty Ghosts",play,2.9,0 -33282871,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -33282871,"Dark Messiah of Might & Magic Multi-Player",play,2.6,0 -33282871,"Portal",purchase,1.0,0 -33282871,"Portal",play,2.5,0 -33282871,"The Walking Dead",purchase,1.0,0 -33282871,"The Walking Dead",play,2.2,0 -33282871,"Natural Selection 2",purchase,1.0,0 -33282871,"Natural Selection 2",play,2.1,0 -33282871,"Fallout New Vegas",purchase,1.0,0 -33282871,"Fallout New Vegas",play,2.0,0 -33282871,"Sniper Elite 3",purchase,1.0,0 -33282871,"Sniper Elite 3",play,2.0,0 -33282871,"TrackMania Stadium",purchase,1.0,0 -33282871,"TrackMania Stadium",play,1.8,0 -33282871,"Smashball",purchase,1.0,0 -33282871,"Smashball",play,1.6,0 -33282871,"Blood Bowl 2",purchase,1.0,0 -33282871,"Blood Bowl 2",play,1.6,0 -33282871,"Chivalry Medieval Warfare",purchase,1.0,0 -33282871,"Chivalry Medieval Warfare",play,1.6,0 -33282871,"DARK SOULS II",purchase,1.0,0 -33282871,"DARK SOULS II",play,1.4,0 -33282871,"Darkest Hour Europe '44-'45",purchase,1.0,0 -33282871,"Darkest Hour Europe '44-'45",play,1.3,0 -33282871,"Age of Chivalry",purchase,1.0,0 -33282871,"Age of Chivalry",play,1.0,0 -33282871,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -33282871,"Red Orchestra Ostfront 41-45",play,0.9,0 -33282871,"BioShock",purchase,1.0,0 -33282871,"BioShock",play,0.7,0 -33282871,"DC Universe Online",purchase,1.0,0 -33282871,"DC Universe Online",play,0.7,0 -33282871,"Half-Life",purchase,1.0,0 -33282871,"Half-Life",play,0.6,0 -33282871,"FlatOut 2",purchase,1.0,0 -33282871,"FlatOut 2",play,0.5,0 -33282871,"DiRT 3",purchase,1.0,0 -33282871,"DiRT 3",play,0.4,0 -33282871,"Counter-Strike Condition Zero",purchase,1.0,0 -33282871,"Counter-Strike Condition Zero",play,0.3,0 -33282871,"Zombie Panic Source",purchase,1.0,0 -33282871,"Zombie Panic Source",play,0.3,0 -33282871,"Grand Theft Auto San Andreas",purchase,1.0,0 -33282871,"Grand Theft Auto San Andreas",play,0.3,0 -33282871,"Forge",purchase,1.0,0 -33282871,"Forge",play,0.2,0 -33282871,"Star Wars - Battlefront II",purchase,1.0,0 -33282871,"Star Wars - Battlefront II",play,0.2,0 -33282871,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -33282871,"Counter-Strike Condition Zero Deleted Scenes",play,0.1,0 -33282871,"Half-Life 2 Deathmatch",purchase,1.0,0 -33282871,"Depth",purchase,1.0,0 -33282871,"Arma 3 Zeus",purchase,1.0,0 -33282871,"Batman Arkham City GOTY",purchase,1.0,0 -33282871,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -33282871,"Batman Arkham Origins - Initiation",purchase,1.0,0 -33282871,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -33282871,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -33282871,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -33282871,"Batman Arkham Origins",purchase,1.0,0 -33282871,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -33282871,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -33282871,"Call of Juarez",purchase,1.0,0 -33282871,"Day of Defeat Source",purchase,1.0,0 -33282871,"DiRT 3 Complete Edition",purchase,1.0,0 -33282871,"Don't Starve",purchase,1.0,0 -33282871,"Don't Starve Together Beta",purchase,1.0,0 -33282871,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -33282871,"Fallout New Vegas Dead Money",purchase,1.0,0 -33282871,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -33282871,"FlatOut",purchase,1.0,0 -33282871,"Gotham City Impostors Free To Play",purchase,1.0,0 -33282871,"Grand Theft Auto",purchase,1.0,0 -33282871,"Grand Theft Auto 2",purchase,1.0,0 -33282871,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -33282871,"Grand Theft Auto San Andreas",purchase,1.0,0 -33282871,"Grand Theft Auto Vice City",purchase,1.0,0 -33282871,"Grand Theft Auto Vice City",purchase,1.0,0 -33282871,"Grand Theft Auto III",purchase,1.0,0 -33282871,"Grand Theft Auto III",purchase,1.0,0 -33282871,"Half-Life Blue Shift",purchase,1.0,0 -33282871,"Half-Life Opposing Force",purchase,1.0,0 -33282871,"Ironclad Tactics",purchase,1.0,0 -33282871,"Magicka Wizard's Survival Kit",purchase,1.0,0 -33282871,"Mare Nostrum",purchase,1.0,0 -33282871,"ORION Prelude",purchase,1.0,0 -33282871,"Patch testing for Chivalry",purchase,1.0,0 -33282871,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -33282871,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -33282871,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -33282871,"Starbound - Unstable",purchase,1.0,0 -33282871,"Team Fortress Classic",purchase,1.0,0 -33282871,"TERA",purchase,1.0,0 -33282871,"Titan Quest Immortal Throne",purchase,1.0,0 -195193671,"Dota 2",purchase,1.0,0 -195193671,"Dota 2",play,6.0,0 -195193671,"Quake Live",purchase,1.0,0 -49893565,"Team Fortress 2",purchase,1.0,0 -49893565,"Team Fortress 2",play,1605.0,0 -49893565,"Dota 2",purchase,1.0,0 -49893565,"Dota 2",play,976.0,0 -49893565,"Warframe",purchase,1.0,0 -49893565,"Warframe",play,492.0,0 -49893565,"Garry's Mod",purchase,1.0,0 -49893565,"Garry's Mod",play,312.0,0 -49893565,"ArcheAge",purchase,1.0,0 -49893565,"ArcheAge",play,164.0,0 -49893565,"Left 4 Dead 2",purchase,1.0,0 -49893565,"Left 4 Dead 2",play,140.0,0 -49893565,"Terraria",purchase,1.0,0 -49893565,"Terraria",play,126.0,0 -49893565,"Dungeon Defenders",purchase,1.0,0 -49893565,"Dungeon Defenders",play,122.0,0 -49893565,"Chivalry Medieval Warfare",purchase,1.0,0 -49893565,"Chivalry Medieval Warfare",play,114.0,0 -49893565,"Starbound",purchase,1.0,0 -49893565,"Starbound",play,102.0,0 -49893565,"Sid Meier's Civilization V",purchase,1.0,0 -49893565,"Sid Meier's Civilization V",play,98.0,0 -49893565,"The Elder Scrolls V Skyrim",purchase,1.0,0 -49893565,"The Elder Scrolls V Skyrim",play,95.0,0 -49893565,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -49893565,"Dark Souls Prepare to Die Edition",play,93.0,0 -49893565,"Borderlands 2",purchase,1.0,0 -49893565,"Borderlands 2",play,78.0,0 -49893565,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -49893565,"Call of Duty Modern Warfare 2 - Multiplayer",play,76.0,0 -49893565,"Fallout 4",purchase,1.0,0 -49893565,"Fallout 4",play,73.0,0 -49893565,"Mortal Kombat Komplete Edition",purchase,1.0,0 -49893565,"Mortal Kombat Komplete Edition",play,68.0,0 -49893565,"Endless Legend",purchase,1.0,0 -49893565,"Endless Legend",play,64.0,0 -49893565,"Borderlands",purchase,1.0,0 -49893565,"Borderlands",play,63.0,0 -49893565,"Mortal Kombat X",purchase,1.0,0 -49893565,"Mortal Kombat X",play,59.0,0 -49893565,"Grand Theft Auto IV",purchase,1.0,0 -49893565,"Grand Theft Auto IV",play,53.0,0 -49893565,"APB Reloaded",purchase,1.0,0 -49893565,"APB Reloaded",play,52.0,0 -49893565,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -49893565,"Unreal Tournament 3 Black Edition",play,51.0,0 -49893565,"Path of Exile",purchase,1.0,0 -49893565,"Path of Exile",play,47.0,0 -49893565,"DC Universe Online",purchase,1.0,0 -49893565,"DC Universe Online",play,46.0,0 -49893565,"Battlefield Bad Company 2",purchase,1.0,0 -49893565,"Battlefield Bad Company 2",play,44.0,0 -49893565,"Supreme Commander Forged Alliance",purchase,1.0,0 -49893565,"Supreme Commander Forged Alliance",play,42.0,0 -49893565,"Killing Floor",purchase,1.0,0 -49893565,"Killing Floor",play,39.0,0 -49893565,"Awesomenauts",purchase,1.0,0 -49893565,"Awesomenauts",play,38.0,0 -49893565,"Robocraft",purchase,1.0,0 -49893565,"Robocraft",play,36.0,0 -49893565,"Natural Selection 2",purchase,1.0,0 -49893565,"Natural Selection 2",play,34.0,0 -49893565,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -49893565,"Warhammer 40,000 Dawn of War II Retribution",play,33.0,0 -49893565,"DARK SOULS II",purchase,1.0,0 -49893565,"DARK SOULS II",play,33.0,0 -49893565,"Saints Row The Third",purchase,1.0,0 -49893565,"Saints Row The Third",play,31.0,0 -49893565,"Portal 2",purchase,1.0,0 -49893565,"Portal 2",play,29.0,0 -49893565,"Torchlight II",purchase,1.0,0 -49893565,"Torchlight II",play,28.0,0 -49893565,"Tabletop Simulator",purchase,1.0,0 -49893565,"Tabletop Simulator",play,27.0,0 -49893565,"Worms Revolution",purchase,1.0,0 -49893565,"Worms Revolution",play,26.0,0 -49893565,"Magicka",purchase,1.0,0 -49893565,"Magicka",play,26.0,0 -49893565,"ARK Survival Evolved",purchase,1.0,0 -49893565,"ARK Survival Evolved",play,24.0,0 -49893565,"Dungeon Defenders II",purchase,1.0,0 -49893565,"Dungeon Defenders II",play,24.0,0 -49893565,"Grand Theft Auto V",purchase,1.0,0 -49893565,"Grand Theft Auto V",play,23.0,0 -49893565,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -49893565,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,22.0,0 -49893565,"Counter-Strike",purchase,1.0,0 -49893565,"Counter-Strike",play,22.0,0 -49893565,"Titan Quest Immortal Throne",purchase,1.0,0 -49893565,"Titan Quest Immortal Throne",play,21.0,0 -49893565,"Killing Floor 2",purchase,1.0,0 -49893565,"Killing Floor 2",play,21.0,0 -49893565,"PAYDAY 2",purchase,1.0,0 -49893565,"PAYDAY 2",play,19.3,0 -49893565,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -49893565,"Dragon Age Origins - Ultimate Edition",play,19.2,0 -49893565,"Castle Crashers",purchase,1.0,0 -49893565,"Castle Crashers",play,18.9,0 -49893565,"Aliens vs. Predator",purchase,1.0,0 -49893565,"Aliens vs. Predator",play,18.6,0 -49893565,"Dragon Nest Europe",purchase,1.0,0 -49893565,"Dragon Nest Europe",play,18.5,0 -49893565,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -49893565,"Red Faction Guerrilla Steam Edition",play,17.9,0 -49893565,"Ultra Street Fighter IV",purchase,1.0,0 -49893565,"Ultra Street Fighter IV",play,17.7,0 -49893565,"Just Cause 2",purchase,1.0,0 -49893565,"Just Cause 2",play,17.2,0 -49893565,"Insurgency Modern Infantry Combat",purchase,1.0,0 -49893565,"Insurgency Modern Infantry Combat",play,16.1,0 -49893565,"Dead Island",purchase,1.0,0 -49893565,"Dead Island",play,16.0,0 -49893565,"Star Wars - Battlefront II",purchase,1.0,0 -49893565,"Star Wars - Battlefront II",play,15.9,0 -49893565,"Supreme Commander 2",purchase,1.0,0 -49893565,"Supreme Commander 2",play,15.7,0 -49893565,"Don't Starve",purchase,1.0,0 -49893565,"Don't Starve",play,15.7,0 -49893565,"Trine 2",purchase,1.0,0 -49893565,"Trine 2",play,14.6,0 -49893565,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -49893565,"Star Wars Jedi Knight Jedi Academy",play,14.4,0 -49893565,"PlanetSide 2",purchase,1.0,0 -49893565,"PlanetSide 2",play,14.1,0 -49893565,"Zombie Panic Source",purchase,1.0,0 -49893565,"Zombie Panic Source",play,14.1,0 -49893565,"Unturned",purchase,1.0,0 -49893565,"Unturned",play,13.9,0 -49893565,"XCOM Enemy Unknown",purchase,1.0,0 -49893565,"XCOM Enemy Unknown",play,13.4,0 -49893565,"Empires",purchase,1.0,0 -49893565,"Empires",play,12.9,0 -49893565,"Age of Empires II HD Edition",purchase,1.0,0 -49893565,"Age of Empires II HD Edition",play,12.6,0 -49893565,"Psychonauts",purchase,1.0,0 -49893565,"Psychonauts",play,12.5,0 -49893565,"Realm of the Mad God",purchase,1.0,0 -49893565,"Realm of the Mad God",play,12.2,0 -49893565,"Half-Life 2",purchase,1.0,0 -49893565,"Half-Life 2",play,11.8,0 -49893565,"Half-Life",purchase,1.0,0 -49893565,"Half-Life",play,11.8,0 -49893565,"Dungeons of Dredmor",purchase,1.0,0 -49893565,"Dungeons of Dredmor",play,11.8,0 -49893565,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -49893565,"Warhammer 40,000 Dawn of War II",play,11.3,0 -49893565,"Blood Bowl Legendary Edition",purchase,1.0,0 -49893565,"Blood Bowl Legendary Edition",play,11.3,0 -49893565,"Fallout New Vegas",purchase,1.0,0 -49893565,"Fallout New Vegas",play,11.2,0 -49893565,"Half-Life 2 Deathmatch",purchase,1.0,0 -49893565,"Half-Life 2 Deathmatch",play,11.1,0 -49893565,"Worms Armageddon",purchase,1.0,0 -49893565,"Worms Armageddon",play,11.1,0 -49893565,"Worms Ultimate Mayhem",purchase,1.0,0 -49893565,"Worms Ultimate Mayhem",play,10.4,0 -49893565,"Call of Duty Modern Warfare 2",purchase,1.0,0 -49893565,"Call of Duty Modern Warfare 2",play,10.4,0 -49893565,"PAYDAY The Heist",purchase,1.0,0 -49893565,"PAYDAY The Heist",play,10.0,0 -49893565,"Risk of Rain",purchase,1.0,0 -49893565,"Risk of Rain",play,9.5,0 -49893565,"Overlord",purchase,1.0,0 -49893565,"Overlord",play,9.4,0 -49893565,"EverQuest II",purchase,1.0,0 -49893565,"EverQuest II",play,9.1,0 -49893565,"Loadout",purchase,1.0,0 -49893565,"Loadout",play,9.1,0 -49893565,"Devil May Cry 4",purchase,1.0,0 -49893565,"Devil May Cry 4",play,9.0,0 -49893565,"Counter-Strike Source",purchase,1.0,0 -49893565,"Counter-Strike Source",play,9.0,0 -49893565,"RIFT",purchase,1.0,0 -49893565,"RIFT",play,8.9,0 -49893565,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -49893565,"The Elder Scrolls IV Oblivion ",play,8.9,0 -49893565,"Monday Night Combat",purchase,1.0,0 -49893565,"Monday Night Combat",play,8.9,0 -49893565,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -49893565,"Warhammer 40,000 Dawn of War Dark Crusade",play,8.7,0 -49893565,"SpeedRunners",purchase,1.0,0 -49893565,"SpeedRunners",play,8.5,0 -49893565,"Left 4 Dead",purchase,1.0,0 -49893565,"Left 4 Dead",play,8.5,0 -49893565,"DRAGON BALL XENOVERSE",purchase,1.0,0 -49893565,"DRAGON BALL XENOVERSE",play,8.2,0 -49893565,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -49893565,"Just Cause 2 Multiplayer Mod",play,8.2,0 -49893565,"Batman Arkham City",purchase,1.0,0 -49893565,"Batman Arkham City",play,8.1,0 -49893565,"Transformers War for Cybertron",purchase,1.0,0 -49893565,"Transformers War for Cybertron",play,8.1,0 -49893565,"Gotham City Impostors",purchase,1.0,0 -49893565,"Gotham City Impostors",play,8.1,0 -49893565,"Warhammer 40,000 Space Marine",purchase,1.0,0 -49893565,"Warhammer 40,000 Space Marine",play,8.1,0 -49893565,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -49893565,"The Witcher 2 Assassins of Kings Enhanced Edition",play,7.9,0 -49893565,"Mount & Blade With Fire and Sword",purchase,1.0,0 -49893565,"Mount & Blade With Fire and Sword",play,7.9,0 -49893565,"Space Engineers",purchase,1.0,0 -49893565,"Space Engineers",play,7.7,0 -49893565,"Titan Quest",purchase,1.0,0 -49893565,"Titan Quest",play,7.6,0 -49893565,"Counter-Strike Global Offensive",purchase,1.0,0 -49893565,"Counter-Strike Global Offensive",play,7.6,0 -49893565,"Blade Symphony",purchase,1.0,0 -49893565,"Blade Symphony",play,7.5,0 -49893565,"Half-Life 2 Episode Two",purchase,1.0,0 -49893565,"Half-Life 2 Episode Two",play,7.4,0 -49893565,"Alien Swarm",purchase,1.0,0 -49893565,"Alien Swarm",play,7.3,0 -49893565,"Gear Up",purchase,1.0,0 -49893565,"Gear Up",play,7.1,0 -49893565,"Section 8 Prejudice",purchase,1.0,0 -49893565,"Section 8 Prejudice",play,7.1,0 -49893565,"Frozen Synapse",purchase,1.0,0 -49893565,"Frozen Synapse",play,7.0,0 -49893565,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -49893565,"Batman Arkham Asylum GOTY Edition",play,6.7,0 -49893565,"Post Apocalyptic Mayhem",purchase,1.0,0 -49893565,"Post Apocalyptic Mayhem",play,6.7,0 -49893565,"Beat Hazard",purchase,1.0,0 -49893565,"Beat Hazard",play,6.6,0 -49893565,"Prototype",purchase,1.0,0 -49893565,"Prototype",play,6.6,0 -49893565,"Orcs Must Die! 2",purchase,1.0,0 -49893565,"Orcs Must Die! 2",play,6.5,0 -49893565,"Lead and Gold - Gangs of the Wild West",purchase,1.0,0 -49893565,"Lead and Gold - Gangs of the Wild West",play,6.3,0 -49893565,"Trine",purchase,1.0,0 -49893565,"Trine",play,6.3,0 -49893565,"Brtal Legend",purchase,1.0,0 -49893565,"Brtal Legend",play,5.8,0 -49893565,"Gang Beasts",purchase,1.0,0 -49893565,"Gang Beasts",play,5.6,0 -49893565,"The Binding of Isaac",purchase,1.0,0 -49893565,"The Binding of Isaac",play,5.6,0 -49893565,"Portal",purchase,1.0,0 -49893565,"Portal",play,5.6,0 -49893565,"7 Days to Die",purchase,1.0,0 -49893565,"7 Days to Die",play,5.4,0 -49893565,"Guns of Icarus Online",purchase,1.0,0 -49893565,"Guns of Icarus Online",play,5.4,0 -49893565,"Mount & Blade Warband",purchase,1.0,0 -49893565,"Mount & Blade Warband",play,5.3,0 -49893565,"Skullgirls Endless Beta",purchase,1.0,0 -49893565,"Skullgirls Endless Beta",play,5.3,0 -49893565,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -49893565,"METAL GEAR SOLID V THE PHANTOM PAIN",play,5.1,0 -49893565,"Worms Reloaded",purchase,1.0,0 -49893565,"Worms Reloaded",play,5.0,0 -49893565,"Team Fortress Classic",purchase,1.0,0 -49893565,"Team Fortress Classic",play,5.0,0 -49893565,"Life Is Strange",purchase,1.0,0 -49893565,"Life Is Strange",play,5.0,0 -49893565,"Darksiders",purchase,1.0,0 -49893565,"Darksiders",play,5.0,0 -49893565,"Shelter 2",purchase,1.0,0 -49893565,"Shelter 2",play,4.7,0 -49893565,"Star Wars Knights of the Old Republic",purchase,1.0,0 -49893565,"Star Wars Knights of the Old Republic",play,4.7,0 -49893565,"Don't Starve Together Beta",purchase,1.0,0 -49893565,"Don't Starve Together Beta",play,4.5,0 -49893565,"Shadow Warrior",purchase,1.0,0 -49893565,"Shadow Warrior",play,4.0,0 -49893565,"Shatter",purchase,1.0,0 -49893565,"Shatter",play,4.0,0 -49893565,"Half-Life 2 Episode One",purchase,1.0,0 -49893565,"Half-Life 2 Episode One",play,3.9,0 -49893565,"Cubemen 2",purchase,1.0,0 -49893565,"Cubemen 2",play,3.9,0 -49893565,"Skullgirls",purchase,1.0,0 -49893565,"Skullgirls",play,3.8,0 -49893565,"Street Fighter V Beta",purchase,1.0,0 -49893565,"Street Fighter V Beta",play,3.8,0 -49893565,"Gotham City Impostors Free To Play",purchase,1.0,0 -49893565,"Gotham City Impostors Free To Play",play,3.8,0 -49893565,"Blacklight Retribution",purchase,1.0,0 -49893565,"Blacklight Retribution",play,3.7,0 -49893565,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -49893565,"Rising Storm/Red Orchestra 2 Multiplayer",play,3.7,0 -49893565,"DayZ",purchase,1.0,0 -49893565,"DayZ",play,3.6,0 -49893565,"Audiosurf",purchase,1.0,0 -49893565,"Audiosurf",play,3.6,0 -49893565,"Poker Night at the Inventory",purchase,1.0,0 -49893565,"Poker Night at the Inventory",play,3.6,0 -49893565,"Little Inferno",purchase,1.0,0 -49893565,"Little Inferno",play,3.5,0 -49893565,"Dead Island Epidemic",purchase,1.0,0 -49893565,"Dead Island Epidemic",play,3.5,0 -49893565,"Counter-Strike Condition Zero",purchase,1.0,0 -49893565,"Counter-Strike Condition Zero",play,3.4,0 -49893565,"GRID",purchase,1.0,0 -49893565,"GRID",play,3.3,0 -49893565,"Tom Clancy's Rainbow Six Vegas 2",purchase,1.0,0 -49893565,"Tom Clancy's Rainbow Six Vegas 2",play,3.3,0 -49893565,"Bastion",purchase,1.0,0 -49893565,"Bastion",play,3.3,0 -49893565,"Magic 2014 ",purchase,1.0,0 -49893565,"Magic 2014 ",play,3.2,0 -49893565,"BattleBlock Theater",purchase,1.0,0 -49893565,"BattleBlock Theater",play,3.2,0 -49893565,"Day of Defeat Source",purchase,1.0,0 -49893565,"Day of Defeat Source",play,3.2,0 -49893565,"No More Room in Hell",purchase,1.0,0 -49893565,"No More Room in Hell",play,3.2,0 -49893565,"Sanctum",purchase,1.0,0 -49893565,"Sanctum",play,3.2,0 -49893565,"Bloodline Champions",purchase,1.0,0 -49893565,"Bloodline Champions",play,3.1,0 -49893565,"Quantum Conundrum",purchase,1.0,0 -49893565,"Quantum Conundrum",play,3.1,0 -49893565,"Defense Grid The Awakening",purchase,1.0,0 -49893565,"Defense Grid The Awakening",play,3.0,0 -49893565,"Half-Life Opposing Force",purchase,1.0,0 -49893565,"Half-Life Opposing Force",play,3.0,0 -49893565,"Serious Sam HD The First Encounter",purchase,1.0,0 -49893565,"Serious Sam HD The First Encounter",play,3.0,0 -49893565,"Elsword",purchase,1.0,0 -49893565,"Elsword",play,3.0,0 -49893565,"Sonic Generations",purchase,1.0,0 -49893565,"Sonic Generations",play,3.0,0 -49893565,"Broforce",purchase,1.0,0 -49893565,"Broforce",play,2.9,0 -49893565,"BlazBlue Continuum Shift Extend",purchase,1.0,0 -49893565,"BlazBlue Continuum Shift Extend",play,2.9,0 -49893565,"Age of Chivalry",purchase,1.0,0 -49893565,"Age of Chivalry",play,2.9,0 -49893565,"Antichamber",purchase,1.0,0 -49893565,"Antichamber",play,2.9,0 -49893565,"Dungeonland",purchase,1.0,0 -49893565,"Dungeonland",play,2.8,0 -49893565,"Eryi's Action",purchase,1.0,0 -49893565,"Eryi's Action",play,2.7,0 -49893565,"Greed Corp",purchase,1.0,0 -49893565,"Greed Corp",play,2.7,0 -49893565,"The Mean Greens - Plastic Warfare",purchase,1.0,0 -49893565,"The Mean Greens - Plastic Warfare",play,2.7,0 -49893565,"A.R.E.S.",purchase,1.0,0 -49893565,"A.R.E.S.",play,2.7,0 -49893565,"DmC Devil May Cry",purchase,1.0,0 -49893565,"DmC Devil May Cry",play,2.6,0 -49893565,"Super Meat Boy",purchase,1.0,0 -49893565,"Super Meat Boy",play,2.5,0 -49893565,"Gish",purchase,1.0,0 -49893565,"Gish",play,2.5,0 -49893565,"Planetary Annihilation",purchase,1.0,0 -49893565,"Planetary Annihilation",play,2.4,0 -49893565,"1... 2... 3... KICK IT! (Drop That Beat Like an Ugly Baby)",purchase,1.0,0 -49893565,"1... 2... 3... KICK IT! (Drop That Beat Like an Ugly Baby)",play,2.4,0 -49893565,"Firefall",purchase,1.0,0 -49893565,"Firefall",play,2.3,0 -49893565,"Castle Story",purchase,1.0,0 -49893565,"Castle Story",play,2.3,0 -49893565,"Sanctum 2",purchase,1.0,0 -49893565,"Sanctum 2",play,2.3,0 -49893565,"Unepic",purchase,1.0,0 -49893565,"Unepic",play,2.3,0 -49893565,"Shadowgrounds Survivor",purchase,1.0,0 -49893565,"Shadowgrounds Survivor",play,2.3,0 -49893565,"The Forest",purchase,1.0,0 -49893565,"The Forest",play,2.3,0 -49893565,"Freedom Force",purchase,1.0,0 -49893565,"Freedom Force",play,2.1,0 -49893565,"Spelunky",purchase,1.0,0 -49893565,"Spelunky",play,2.1,0 -49893565,"Serious Sam 3 BFE",purchase,1.0,0 -49893565,"Serious Sam 3 BFE",play,2.1,0 -49893565,"Overlord II",purchase,1.0,0 -49893565,"Overlord II",play,2.1,0 -49893565,"Monaco",purchase,1.0,0 -49893565,"Monaco",play,2.1,0 -49893565,"The Ship",purchase,1.0,0 -49893565,"The Ship",play,2.0,0 -49893565,"Source Filmmaker",purchase,1.0,0 -49893565,"Source Filmmaker",play,2.0,0 -49893565,"Quake",purchase,1.0,0 -49893565,"Quake",play,1.9,0 -49893565,"Nosgoth",purchase,1.0,0 -49893565,"Nosgoth",play,1.9,0 -49893565,"Hotline Miami",purchase,1.0,0 -49893565,"Hotline Miami",play,1.9,0 -49893565,"Frozen Synapse Prime",purchase,1.0,0 -49893565,"Frozen Synapse Prime",play,1.8,0 -49893565,"Half-Life 2 Update",purchase,1.0,0 -49893565,"Half-Life 2 Update",play,1.7,0 -49893565,"Deathmatch Classic",purchase,1.0,0 -49893565,"Deathmatch Classic",play,1.7,0 -49893565,"Aura Kingdom",purchase,1.0,0 -49893565,"Aura Kingdom",play,1.7,0 -49893565,"Torchlight",purchase,1.0,0 -49893565,"Torchlight",play,1.7,0 -49893565,"Sakura Clicker",purchase,1.0,0 -49893565,"Sakura Clicker",play,1.6,0 -49893565,"Intrusion 2",purchase,1.0,0 -49893565,"Intrusion 2",play,1.6,0 -49893565,"D.I.P.R.I.P. Warm Up",purchase,1.0,0 -49893565,"D.I.P.R.I.P. Warm Up",play,1.5,0 -49893565,"Synergy",purchase,1.0,0 -49893565,"Synergy",play,1.5,0 -49893565,"La Tale",purchase,1.0,0 -49893565,"La Tale",play,1.4,0 -49893565,"LIMBO",purchase,1.0,0 -49893565,"LIMBO",play,1.4,0 -49893565,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -49893565,"Sins of a Solar Empire Rebellion",play,1.4,0 -49893565,"Red Faction Armageddon",purchase,1.0,0 -49893565,"Red Faction Armageddon",play,1.4,0 -49893565,"Total War SHOGUN 2",purchase,1.0,0 -49893565,"Total War SHOGUN 2",play,1.3,0 -49893565,"Cubemen",purchase,1.0,0 -49893565,"Cubemen",play,1.3,0 -49893565,"Metro 2033",purchase,1.0,0 -49893565,"Metro 2033",play,1.3,0 -49893565,"FINAL FANTASY TYPE-0 HD",purchase,1.0,0 -49893565,"FINAL FANTASY TYPE-0 HD",play,1.3,0 -49893565,"Mortal Kombat Kollection",purchase,1.0,0 -49893565,"Mortal Kombat Kollection",play,1.3,0 -49893565,"Zombie Driver",purchase,1.0,0 -49893565,"Zombie Driver",play,1.2,0 -49893565,"Supreme Commander",purchase,1.0,0 -49893565,"Supreme Commander",play,1.2,0 -49893565,"Vessel",purchase,1.0,0 -49893565,"Vessel",play,1.2,0 -49893565,"Planetary Annihilation TITANS",purchase,1.0,0 -49893565,"Planetary Annihilation TITANS",play,1.2,0 -49893565,"Robot Roller-Derby Disco Dodgeball",purchase,1.0,0 -49893565,"Robot Roller-Derby Disco Dodgeball",play,1.2,0 -49893565,"Operation Flashpoint Red River",purchase,1.0,0 -49893565,"Operation Flashpoint Red River",play,1.2,0 -49893565,"Dead Space",purchase,1.0,0 -49893565,"Dead Space",play,1.1,0 -49893565,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -49893565,"Tiny and Big Grandpa's Leftovers",play,1.1,0 -49893565,"Grand Theft Auto",purchase,1.0,0 -49893565,"Grand Theft Auto",play,1.1,0 -49893565,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -49893565,"Kane & Lynch 2 Dog Days",play,1.1,0 -49893565,"Cry of Fear",purchase,1.0,0 -49893565,"Cry of Fear",play,1.0,0 -49893565,"Botanicula",purchase,1.0,0 -49893565,"Botanicula",play,1.0,0 -49893565,"Serious Sam HD The Second Encounter",purchase,1.0,0 -49893565,"Serious Sam HD The Second Encounter",play,1.0,0 -49893565,"RAGE",purchase,1.0,0 -49893565,"RAGE",play,0.9,0 -49893565,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -49893565,"Plants vs. Zombies Game of the Year",play,0.9,0 -49893565,"On the Rain-Slick Precipice of Darkness, Episode One",purchase,1.0,0 -49893565,"On the Rain-Slick Precipice of Darkness, Episode One",play,0.9,0 -49893565,"The Haunted Hells Reach",purchase,1.0,0 -49893565,"The Haunted Hells Reach",play,0.9,0 -49893565,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -49893565,"Injustice Gods Among Us Ultimate Edition",play,0.9,0 -49893565,"Viscera Cleanup Detail",purchase,1.0,0 -49893565,"Viscera Cleanup Detail",play,0.9,0 -49893565,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -49893565,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,0.9,0 -49893565,"Velvet Sundown",purchase,1.0,0 -49893565,"Velvet Sundown",play,0.9,0 -49893565,"Thomas Was Alone",purchase,1.0,0 -49893565,"Thomas Was Alone",play,0.8,0 -49893565,"War Thunder",purchase,1.0,0 -49893565,"War Thunder",play,0.8,0 -49893565,"AaAaAA!!! - A Reckless Disregard for Gravity",purchase,1.0,0 -49893565,"AaAaAA!!! - A Reckless Disregard for Gravity",play,0.7,0 -49893565,"Lego Star Wars Saga",purchase,1.0,0 -49893565,"Lego Star Wars Saga",play,0.7,0 -49893565,"Relic Hunters Zero",purchase,1.0,0 -49893565,"Relic Hunters Zero",play,0.7,0 -49893565,"E.Y.E Divine Cybermancy",purchase,1.0,0 -49893565,"E.Y.E Divine Cybermancy",play,0.7,0 -49893565,"Divinity II Developer's Cut",purchase,1.0,0 -49893565,"Divinity II Developer's Cut",play,0.7,0 -49893565,"Next Car Game Wreckfest",purchase,1.0,0 -49893565,"Next Car Game Wreckfest",play,0.7,0 -49893565,"Half-Life Blue Shift",purchase,1.0,0 -49893565,"Half-Life Blue Shift",play,0.7,0 -49893565,"Far Cry 2",purchase,1.0,0 -49893565,"Far Cry 2",play,0.7,0 -49893565,"Grand Chase",purchase,1.0,0 -49893565,"Grand Chase",play,0.7,0 -49893565,"Zeno Clash",purchase,1.0,0 -49893565,"Zeno Clash",play,0.7,0 -49893565,"Thief Deadly Shadows",purchase,1.0,0 -49893565,"Thief Deadly Shadows",play,0.6,0 -49893565,"Half-Life 2 Lost Coast",purchase,1.0,0 -49893565,"Half-Life 2 Lost Coast",play,0.6,0 -49893565,"Deus Ex Game of the Year Edition",purchase,1.0,0 -49893565,"Deus Ex Game of the Year Edition",play,0.6,0 -49893565,"Under the Ocean",purchase,1.0,0 -49893565,"Under the Ocean",play,0.6,0 -49893565,"The Showdown Effect",purchase,1.0,0 -49893565,"The Showdown Effect",play,0.6,0 -49893565,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -49893565,"Counter-Strike Condition Zero Deleted Scenes",play,0.6,0 -49893565,"Portal 2 - The Final Hours",purchase,1.0,0 -49893565,"Portal 2 - The Final Hours",play,0.6,0 -49893565,"Braid",purchase,1.0,0 -49893565,"Braid",play,0.5,0 -49893565,"Rag Doll Kung Fu",purchase,1.0,0 -49893565,"Rag Doll Kung Fu",play,0.5,0 -49893565,"FTL Faster Than Light",purchase,1.0,0 -49893565,"FTL Faster Than Light",play,0.5,0 -49893565,"Company of Heroes",purchase,1.0,0 -49893565,"Company of Heroes",play,0.5,0 -49893565,"Lugaru HD ",purchase,1.0,0 -49893565,"Lugaru HD ",play,0.5,0 -49893565,"Magicka Wizard Wars",purchase,1.0,0 -49893565,"Magicka Wizard Wars",play,0.5,0 -49893565,"Interstellar Marines",purchase,1.0,0 -49893565,"Interstellar Marines",play,0.5,0 -49893565,"Overlord Raising Hell",purchase,1.0,0 -49893565,"Overlord Raising Hell",play,0.5,0 -49893565,"World of Goo",purchase,1.0,0 -49893565,"World of Goo",play,0.4,0 -49893565,"Penumbra Overture",purchase,1.0,0 -49893565,"Penumbra Overture",play,0.4,0 -49893565,"Half-Life Deathmatch Source",purchase,1.0,0 -49893565,"Half-Life Deathmatch Source",play,0.4,0 -49893565,"Deadbreed",purchase,1.0,0 -49893565,"Deadbreed",play,0.4,0 -49893565,"Star Wars Republic Commando",purchase,1.0,0 -49893565,"Star Wars Republic Commando",play,0.4,0 -49893565,"Shadowgrounds",purchase,1.0,0 -49893565,"Shadowgrounds",play,0.3,0 -49893565,"King Arthur's Gold",purchase,1.0,0 -49893565,"King Arthur's Gold",play,0.3,0 -49893565,"Quake III Arena",purchase,1.0,0 -49893565,"Quake III Arena",play,0.3,0 -49893565,"Cortex Command",purchase,1.0,0 -49893565,"Cortex Command",play,0.3,0 -49893565,"HeXen II",purchase,1.0,0 -49893565,"HeXen II",play,0.3,0 -49893565,"Heroes & Generals",purchase,1.0,0 -49893565,"Heroes & Generals",play,0.3,0 -49893565,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -49893565,"Star Wars Jedi Knight Dark Forces II",play,0.3,0 -49893565,"Grand Theft Auto San Andreas",purchase,1.0,0 -49893565,"Grand Theft Auto San Andreas",play,0.3,0 -49893565,"RAW - Realms of Ancient War",purchase,1.0,0 -49893565,"RAW - Realms of Ancient War",play,0.3,0 -49893565,"EverQuest Free-to-Play",purchase,1.0,0 -49893565,"EverQuest Free-to-Play",play,0.3,0 -49893565,"ProtoGalaxy",purchase,1.0,0 -49893565,"ProtoGalaxy",play,0.3,0 -49893565,"VVVVVV",purchase,1.0,0 -49893565,"VVVVVV",play,0.2,0 -49893565,"Rise of Incarnates",purchase,1.0,0 -49893565,"Rise of Incarnates",play,0.2,0 -49893565,"Blocks That Matter",purchase,1.0,0 -49893565,"Blocks That Matter",play,0.2,0 -49893565,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -49893565,"Star Wars - Jedi Knight II Jedi Outcast",play,0.2,0 -49893565,"Tropico 4",purchase,1.0,0 -49893565,"Tropico 4",play,0.2,0 -49893565,"Codename Gordon",purchase,1.0,0 -49893565,"Codename Gordon",play,0.2,0 -49893565,"GridRunner Revolution",purchase,1.0,0 -49893565,"GridRunner Revolution",play,0.2,0 -49893565,"Osmos",purchase,1.0,0 -49893565,"Osmos",play,0.2,0 -49893565,"Day of Defeat",purchase,1.0,0 -49893565,"Day of Defeat",play,0.2,0 -49893565,"HAWKEN",purchase,1.0,0 -49893565,"HAWKEN",play,0.2,0 -49893565,"Eternal Silence",purchase,1.0,0 -49893565,"Eternal Silence",play,0.2,0 -49893565,"Chantelise",purchase,1.0,0 -49893565,"Chantelise",play,0.2,0 -49893565,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -49893565,"Star Wars - Jedi Knight Mysteries of the Sith",play,0.2,0 -49893565,"Dirty Bomb",purchase,1.0,0 -49893565,"Dirty Bomb",play,0.2,0 -49893565,"Half-Life Source",purchase,1.0,0 -49893565,"Half-Life Source",play,0.2,0 -49893565,"BRAINPIPE A Plunge to Unhumanity",purchase,1.0,0 -49893565,"BRAINPIPE A Plunge to Unhumanity",play,0.2,0 -49893565,"Hammerfight",purchase,1.0,0 -49893565,"Hammerfight",play,0.1,0 -49893565,"Cannons Lasers Rockets",purchase,1.0,0 -49893565,"Cannons Lasers Rockets",play,0.1,0 -49893565,"Ricochet",purchase,1.0,0 -49893565,"Ricochet",play,0.1,0 -49893565,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -49893565,"Killing Floor Mod Defence Alliance 2",play,0.1,0 -49893565,"And Yet It Moves",purchase,1.0,0 -49893565,"And Yet It Moves",play,0.1,0 -49893565,"sZone-Online",purchase,1.0,0 -49893565,"sZone-Online",play,0.1,0 -49893565,"Galcon Fusion",purchase,1.0,0 -49893565,"Galcon Fusion",play,0.1,0 -49893565,"Star Wars Dark Forces",purchase,1.0,0 -49893565,"The Misadventures of P.B. Winterbottom",purchase,1.0,0 -49893565,"Oil Rush",purchase,1.0,0 -49893565,"Mount Your Friends",purchase,1.0,0 -49893565,"Heretic Shadow of the Serpent Riders",purchase,1.0,0 -49893565,"Crayon Physics Deluxe",purchase,1.0,0 -49893565,"Aliens versus Predator Classic 2000",purchase,1.0,0 -49893565,"Pixel Piracy",purchase,1.0,0 -49893565,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -49893565,"Rome Total War",purchase,1.0,0 -49893565,"Fractured Space",purchase,1.0,0 -49893565,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -49893565,"Atom Zombie Smasher ",purchase,1.0,0 -49893565,"Let the Cat In",purchase,1.0,0 -49893565,"Revenge of the Titans",purchase,1.0,0 -49893565,"Company of Heroes Opposing Fronts",purchase,1.0,0 -49893565,"Company of Heroes Tales of Valor",purchase,1.0,0 -49893565,"Time Clickers",purchase,1.0,0 -49893565,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -49893565,"Worms Pinball",purchase,1.0,0 -49893565,"Amnesia The Dark Descent",purchase,1.0,0 -49893565,"1Heart",purchase,1.0,0 -49893565,"8BitBoy",purchase,1.0,0 -49893565,"AdVenture Capitalist",purchase,1.0,0 -49893565,"Afterfall InSanity Extended Edition",purchase,1.0,0 -49893565,"Age of Empires II HD The Forgotten",purchase,1.0,0 -49893565,"Age of Fear 2 The Chaos Lord",purchase,1.0,0 -49893565,"Anomaly 2",purchase,1.0,0 -49893565,"Aquaria",purchase,1.0,0 -49893565,"ArcheAge Gold Founders Pack",purchase,1.0,0 -49893565,"Arma Cold War Assault",purchase,1.0,0 -49893565,"Batman Arkham City GOTY",purchase,1.0,0 -49893565,"Betrayer",purchase,1.0,0 -49893565,"Bionic Dues",purchase,1.0,0 -49893565,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -49893565,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -49893565,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -49893565,"Brick-Force",purchase,1.0,0 -49893565,"Capsized",purchase,1.0,0 -49893565,"Castle Crashers - Blacksmith Pack",purchase,1.0,0 -49893565,"Castle Crashers - Pink Knight Pack",purchase,1.0,0 -49893565,"Cities XL Platinum",purchase,1.0,0 -49893565,"Clicker Heroes",purchase,1.0,0 -49893565,"Cogs",purchase,1.0,0 -49893565,"Command HQ",purchase,1.0,0 -49893565,"Company of Heroes (New Steam Version)",purchase,1.0,0 -49893565,"Confrontation",purchase,1.0,0 -49893565,"Crash Time II",purchase,1.0,0 -49893565,"Dear Esther",purchase,1.0,0 -49893565,"Defense Grid Resurgence Map Pack 1",purchase,1.0,0 -49893565,"Defense Grid Resurgence Map Pack 2 ",purchase,1.0,0 -49893565,"Defense Grid Resurgence Map Pack 3",purchase,1.0,0 -49893565,"Defense Grid Resurgence Map Pack 4",purchase,1.0,0 -49893565,"Deus Ex Invisible War",purchase,1.0,0 -49893565,"Distance",purchase,1.0,0 -49893565,"Double Action Boogaloo",purchase,1.0,0 -49893565,"Dragon's Prophet (EU)",purchase,1.0,0 -49893565,"Dungeonland - All access pass",purchase,1.0,0 -49893565,"Empire Total War",purchase,1.0,0 -49893565,"English Country Tune",purchase,1.0,0 -49893565,"Everlasting Summer",purchase,1.0,0 -49893565,"F.E.A.R. Online",purchase,1.0,0 -49893565,"Far Cry",purchase,1.0,0 -49893565,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -49893565,"Fortune Summoners Secret of the Elemental Stone",purchase,1.0,0 -49893565,"Freedom Force vs. the 3rd Reich",purchase,1.0,0 -49893565,"Free to Play",purchase,1.0,0 -49893565,"Game of Thrones ",purchase,1.0,0 -49893565,"Gold Rush! Anniversary",purchase,1.0,0 -49893565,"Grand Theft Auto 2",purchase,1.0,0 -49893565,"Grand Theft Auto San Andreas",purchase,1.0,0 -49893565,"Grand Theft Auto Vice City",purchase,1.0,0 -49893565,"Grand Theft Auto Vice City",purchase,1.0,0 -49893565,"Grand Theft Auto III",purchase,1.0,0 -49893565,"Grand Theft Auto III",purchase,1.0,0 -49893565,"Guns'N'Zombies",purchase,1.0,0 -49893565,"Gunship!",purchase,1.0,0 -49893565,"Hazard Ops",purchase,1.0,0 -49893565,"HeXen Beyond Heretic",purchase,1.0,0 -49893565,"HeXen Deathkings of the Dark Citadel",purchase,1.0,0 -49893565,"Hitman Absolution",purchase,1.0,0 -49893565,"Hitman Sniper Challenge",purchase,1.0,0 -49893565,"Jagged Alliance Online - Steam Edition",purchase,1.0,0 -49893565,"Jagged Alliance Online Raven Pack",purchase,1.0,0 -49893565,"Kane & Lynch Dead Men",purchase,1.0,0 -49893565,"Kraven Manor",purchase,1.0,0 -49893565,"Lone Survivor The Director's Cut",purchase,1.0,0 -49893565,"Machinarium",purchase,1.0,0 -49893565,"Magicka Final Frontier",purchase,1.0,0 -49893565,"Magicka Nippon",purchase,1.0,0 -49893565,"Magicka Party Robes",purchase,1.0,0 -49893565,"Magicka Vietnam",purchase,1.0,0 -49893565,"Magicka Wizard's Survival Kit",purchase,1.0,0 -49893565,"Making History The Great War",purchase,1.0,0 -49893565,"Mechanic Escape",purchase,1.0,0 -49893565,"Medieval II Total War",purchase,1.0,0 -49893565,"Medieval II Total War Kingdoms",purchase,1.0,0 -49893565,"Metro 2033 Redux",purchase,1.0,0 -49893565,"Metro Last Light Redux",purchase,1.0,0 -49893565,"Montague's Mount",purchase,1.0,0 -49893565,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -49893565,"MX vs. ATV Reflex",purchase,1.0,0 -49893565,"NAM",purchase,1.0,0 -49893565,"Napoleon Total War",purchase,1.0,0 -49893565,"Narcissu 1st & 2nd",purchase,1.0,0 -49893565,"Oddworld Abe's Oddysee",purchase,1.0,0 -49893565,"On the Rain-Slick Precipice of Darkness, Episode Two",purchase,1.0,0 -49893565,"Patch testing for Chivalry",purchase,1.0,0 -49893565,"Post Apocalyptic Mayhem DLC 2 Chaos Pack",purchase,1.0,0 -49893565,"Prophour23",purchase,1.0,0 -49893565,"Proteus",purchase,1.0,0 -49893565,"Psychonauts Demo",purchase,1.0,0 -49893565,"Quake II",purchase,1.0,0 -49893565,"Quake II Ground Zero",purchase,1.0,0 -49893565,"Quake II The Reckoning",purchase,1.0,0 -49893565,"Quake III Team Arena",purchase,1.0,0 -49893565,"Quake Mission Pack 1 Scourge of Armagon",purchase,1.0,0 -49893565,"Quake Mission Pack 2 Dissolution of Eternity",purchase,1.0,0 -49893565,"QuantZ",purchase,1.0,0 -49893565,"Race The Sun",purchase,1.0,0 -49893565,"Ragnarok",purchase,1.0,0 -49893565,"Recettear An Item Shop's Tale",purchase,1.0,0 -49893565,"Rex Nebular and the Cosmic Gender Bender",purchase,1.0,0 -49893565,"Rise of the Argonauts",purchase,1.0,0 -49893565,"Rome Total War - Alexander",purchase,1.0,0 -49893565,"Samorost 2",purchase,1.0,0 -49893565,"Serena",purchase,1.0,0 -49893565,"Serious Sam 2",purchase,1.0,0 -49893565,"Serious Sam The Random Encounter",purchase,1.0,0 -49893565,"Serious Sam Classic The First Encounter",purchase,1.0,0 -49893565,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -49893565,"Serious Sam Classics Revolution",purchase,1.0,0 -49893565,"Serious Sam Double D XXL",purchase,1.0,0 -49893565,"Sid Meier's Civilization III Complete",purchase,1.0,0 -49893565,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -49893565,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -49893565,"Sid Meier's Covert Action (Classic)",purchase,1.0,0 -49893565,"Skulls of the Shogun",purchase,1.0,0 -49893565,"Skyborn",purchase,1.0,0 -49893565,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -49893565,"Slave Zero",purchase,1.0,0 -49893565,"SMITE",purchase,1.0,0 -49893565,"Sniper Elite V2",purchase,1.0,0 -49893565,"Soccertron",purchase,1.0,0 -49893565,"Space Hack",purchase,1.0,0 -49893565,"Sparkle 2 Evo",purchase,1.0,0 -49893565,"Spooky's House of Jump Scares",purchase,1.0,0 -49893565,"Starbound - Unstable",purchase,1.0,0 -49893565,"StarMade",purchase,1.0,0 -49893565,"Starship Rubicon",purchase,1.0,0 -49893565,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -49893565,"Stealth Inc 2",purchase,1.0,0 -49893565,"Steel Storm Burning Retribution",purchase,1.0,0 -49893565,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -49893565,"Superfrog HD",purchase,1.0,0 -49893565,"Super Splatters",purchase,1.0,0 -49893565,"Supreme Commander 2 - Infinite War Battle Pack One",purchase,1.0,0 -49893565,"Sword of the Samurai",purchase,1.0,0 -49893565,"Symphony",purchase,1.0,0 -49893565,"Tactical Intervention",purchase,1.0,0 -49893565,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -49893565,"theHunter",purchase,1.0,0 -49893565,"The Moon Sliver",purchase,1.0,0 -49893565,"The Path",purchase,1.0,0 -49893565,"The Samaritan Paradox",purchase,1.0,0 -49893565,"The Ship Single Player",purchase,1.0,0 -49893565,"The Ship Tutorial",purchase,1.0,0 -49893565,"The UnderGarden",purchase,1.0,0 -49893565,"Toribash",purchase,1.0,0 -49893565,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -49893565,"Total War Battles SHOGUN",purchase,1.0,0 -49893565,"Tycoon City New York",purchase,1.0,0 -49893565,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -49893565,"Viking Battle for Asgard",purchase,1.0,0 -49893565,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -49893565,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -49893565,"WAKFU",purchase,1.0,0 -49893565,"Worms Blast",purchase,1.0,0 -49893565,"Worms Crazy Golf",purchase,1.0,0 -49893565,"XCOM Enemy Within",purchase,1.0,0 -22689481,"Counter-Strike",purchase,1.0,0 -22689481,"Counter-Strike",play,34.0,0 -22689481,"Counter-Strike Condition Zero",purchase,1.0,0 -22689481,"Counter-Strike Condition Zero",play,5.6,0 -22689481,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -22689481,"Counter-Strike Source",purchase,1.0,0 -22689481,"Day of Defeat",purchase,1.0,0 -22689481,"Day of Defeat Source",purchase,1.0,0 -22689481,"Deathmatch Classic",purchase,1.0,0 -22689481,"Half-Life 2 Deathmatch",purchase,1.0,0 -22689481,"Half-Life 2 Lost Coast",purchase,1.0,0 -22689481,"Ricochet",purchase,1.0,0 -136850924,"Football Manager 2013",purchase,1.0,0 -136850924,"Football Manager 2013",play,1.9,0 -297838495,"Dota 2",purchase,1.0,0 -297838495,"Dota 2",play,0.4,0 -121154091,"Team Fortress 2",purchase,1.0,0 -121154091,"Team Fortress 2",play,3.0,0 -136301597,"Dota 2",purchase,1.0,0 -136301597,"Dota 2",play,1.7,0 -163001223,"Dota 2",purchase,1.0,0 -163001223,"Dota 2",play,584.0,0 -163001223,"FreeStyle2 Street Basketball",purchase,1.0,0 -163001223,"FreeStyle2 Street Basketball",play,0.9,0 -163001223,"Archeblade",purchase,1.0,0 -163001223,"Fallen Earth",purchase,1.0,0 -163001223,"GunZ 2 The Second Duel",purchase,1.0,0 -163001223,"Ragnarok",purchase,1.0,0 -163001223,"Wrath of Athena",purchase,1.0,0 -250497204,"Dota 2",purchase,1.0,0 -250497204,"Dota 2",play,0.8,0 -47291376,"Counter-Strike",purchase,1.0,0 -47291376,"Counter-Strike",play,2889.0,0 -47291376,"Counter-Strike Global Offensive",purchase,1.0,0 -47291376,"Counter-Strike Global Offensive",play,1145.0,0 -47291376,"Team Fortress 2",purchase,1.0,0 -47291376,"Team Fortress 2",play,62.0,0 -47291376,"Dota 2",purchase,1.0,0 -47291376,"Dota 2",play,44.0,0 -47291376,"Counter-Strike Source",purchase,1.0,0 -47291376,"Counter-Strike Source",play,21.0,0 -47291376,"GRID 2",purchase,1.0,0 -47291376,"GRID 2",play,8.3,0 -47291376,"Counter-Strike Condition Zero",purchase,1.0,0 -47291376,"Counter-Strike Condition Zero",play,2.9,0 -47291376,"Portal",purchase,1.0,0 -47291376,"Portal",play,1.5,0 -47291376,"Half-Life 2 Deathmatch",purchase,1.0,0 -47291376,"Half-Life 2 Deathmatch",play,0.9,0 -47291376,"Half-Life 2 Lost Coast",purchase,1.0,0 -47291376,"Half-Life 2 Lost Coast",play,0.4,0 -47291376,"Arma 2 Operation Arrowhead",purchase,1.0,0 -47291376,"Arma 2 Operation Arrowhead",play,0.3,0 -47291376,"Arma 2",purchase,1.0,0 -47291376,"Arma 2",play,0.2,0 -47291376,"Arma 2 DayZ Mod",purchase,1.0,0 -47291376,"Arma 2 DayZ Mod",play,0.2,0 -47291376,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -47291376,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -47291376,"Crash Time II",purchase,1.0,0 -47291376,"Day of Defeat Source",purchase,1.0,0 -47291376,"Total War ROME II - Emperor Edition",purchase,1.0,0 -136640372,"Dota 2",purchase,1.0,0 -136640372,"Dota 2",play,47.0,0 -133885796,"Team Fortress 2",purchase,1.0,0 -133885796,"Team Fortress 2",play,8.0,0 -133885796,"ARK Survival Evolved",purchase,1.0,0 -133885796,"ARK Survival Evolved",play,3.5,0 -133885796,"Shoppe Keep",purchase,1.0,0 -133885796,"Shoppe Keep",play,0.2,0 -188189790,"The Elder Scrolls V Skyrim",purchase,1.0,0 -188189790,"The Elder Scrolls V Skyrim",play,1.7,0 -188189790,"Dota 2",purchase,1.0,0 -188189790,"Dota 2",play,1.0,0 -188189790,"Cry of Fear",purchase,1.0,0 -188189790,"Cry of Fear",play,0.9,0 -188189790,"The Mighty Quest For Epic Loot",purchase,1.0,0 -188189790,"The Mighty Quest For Epic Loot",play,0.9,0 -188189790,"Cubic Castles",purchase,1.0,0 -188189790,"Cubic Castles",play,0.8,0 -188189790,"Warframe",purchase,1.0,0 -188189790,"Warframe",play,0.7,0 -188189790,"Super Crate Box",purchase,1.0,0 -188189790,"Super Crate Box",play,0.2,0 -188189790,"Magicka Wizard Wars",purchase,1.0,0 -188189790,"Magicka Wizard Wars",play,0.2,0 -188189790,"Unturned",purchase,1.0,0 -188189790,"Defiance",purchase,1.0,0 -179848102,"Terraria",purchase,1.0,0 -179848102,"Terraria",play,15.1,0 -179848102,"Turbo Dismount",purchase,1.0,0 -179848102,"Turbo Dismount",play,9.1,0 -179848102,"Football Manager 2015",purchase,1.0,0 -131533123,"Team Fortress 2",purchase,1.0,0 -131533123,"Team Fortress 2",play,0.1,0 -167564834,"Counter-Strike Global Offensive",purchase,1.0,0 -167564834,"Counter-Strike Global Offensive",play,128.0,0 -257934949,"Dota 2",purchase,1.0,0 -257934949,"Dota 2",play,302.0,0 -257934949,"Team Fortress 2",purchase,1.0,0 -257934949,"Team Fortress 2",play,0.2,0 -97686700,"Ship Simulator Extremes",purchase,1.0,0 -97686700,"Ship Simulator Extremes",play,43.0,0 -73725335,"Darksiders",purchase,1.0,0 -73725335,"Darksiders",play,5.3,0 -103649913,"Age of Empires II HD Edition",purchase,1.0,0 -103649913,"Age of Empires II HD Edition",play,6.7,0 -103649913,"Counter-Strike Source",purchase,1.0,0 -103649913,"Counter-Strike Source",play,1.8,0 -103649913,"Age of Empires II HD The Forgotten",purchase,1.0,0 -103649913,"Age of Mythology Extended Edition",purchase,1.0,0 -103649913,"Day of Defeat Source",purchase,1.0,0 -103649913,"Half-Life 2 Deathmatch",purchase,1.0,0 -103649913,"Half-Life 2 Lost Coast",purchase,1.0,0 -197903023,"Unturned",purchase,1.0,0 -197903023,"Unturned",play,1.6,0 -153434378,"Team Fortress 2",purchase,1.0,0 -153434378,"Team Fortress 2",play,21.0,0 -10714039,"Half-Life 2",purchase,1.0,0 -10714039,"Half-Life 2",play,17.5,0 -10714039,"Counter-Strike Source",purchase,1.0,0 -10714039,"Half-Life 2 Deathmatch",purchase,1.0,0 -10714039,"Half-Life 2 Lost Coast",purchase,1.0,0 -282052972,"Dota 2",purchase,1.0,0 -282052972,"Dota 2",play,100.0,0 -282052972,"Aura Kingdom",purchase,1.0,0 -282052972,"FreeStyle2 Street Basketball",purchase,1.0,0 -282052972,"GunZ 2 The Second Duel",purchase,1.0,0 -282052972,"Ragnarok Online 2",purchase,1.0,0 -282052972,"Rise of Incarnates",purchase,1.0,0 -282052972,"Soccer Manager 2015",purchase,1.0,0 -282052972,"TOME Immortal Arena",purchase,1.0,0 -282052972,"Trove",purchase,1.0,0 -88759352,"Battle for Graxia",purchase,1.0,0 -88759352,"Battle for Graxia",play,1.6,0 -88759352,"The Lord of the Rings Online",purchase,1.0,0 -88759352,"The Lord of the Rings Online",play,0.3,0 -88759352,"Metro 2033",purchase,1.0,0 -88759352,"Warframe",purchase,1.0,0 -92102177,"DC Universe Online",purchase,1.0,0 -92102177,"DC Universe Online",play,1.6,0 -35264447,"BookWorm Adventures Volume 2",purchase,1.0,0 -35264447,"BookWorm Adventures Volume 2",play,107.0,0 -35264447,"Bookworm Adventures Deluxe",purchase,1.0,0 -35264447,"Bookworm Adventures Deluxe",play,11.6,0 -35264447,"BookWorm Deluxe",purchase,1.0,0 -35264447,"BookWorm Deluxe",play,6.7,0 -35264447,"Bejeweled 2 Deluxe",purchase,1.0,0 -35264447,"Bejeweled 2 Deluxe",play,0.1,0 -35264447,"Half-Life 2 Deathmatch",purchase,1.0,0 -35264447,"Half-Life 2 Lost Coast",purchase,1.0,0 -35264447,"Insaniquarium! Deluxe",purchase,1.0,0 -35264447,"Peggle Deluxe",purchase,1.0,0 -35264447,"Zen of Sudoku",purchase,1.0,0 -35264447,"Zuma Deluxe",purchase,1.0,0 -202901139,"Realm of the Mad God",purchase,1.0,0 -48118779,"Half-Life 2",purchase,1.0,0 -48118779,"Half-Life 2",play,22.0,0 -48118779,"Half-Life 2 Episode One",purchase,1.0,0 -48118779,"Half-Life 2 Episode One",play,3.2,0 -48118779,"Portal",purchase,1.0,0 -48118779,"Portal",play,1.4,0 -48118779,"Team Fortress 2",purchase,1.0,0 -48118779,"Team Fortress 2",play,1.3,0 -48118779,"Half-Life 2 Lost Coast",purchase,1.0,0 -48118779,"Half-Life 2 Lost Coast",play,0.8,0 -48118779,"Defiance",purchase,1.0,0 -48118779,"Half-Life 2 Episode Two",purchase,1.0,0 -45120292,"The Elder Scrolls V Skyrim",purchase,1.0,0 -45120292,"The Elder Scrolls V Skyrim",play,62.0,0 -32248913,"Counter-Strike Source",purchase,1.0,0 -32248913,"Counter-Strike Source",play,14.6,0 -32248913,"Counter-Strike",purchase,1.0,0 -32248913,"Counter-Strike Condition Zero",purchase,1.0,0 -32248913,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -106014415,"Team Fortress 2",purchase,1.0,0 -106014415,"Team Fortress 2",play,4.4,0 -237578633,"Team Fortress 2",purchase,1.0,0 -237578633,"Team Fortress 2",play,100.0,0 -237578633,"Dota 2",purchase,1.0,0 -237578633,"Dota 2",play,4.1,0 -237578633,"Gotham City Impostors Free To Play",purchase,1.0,0 -237578633,"Gotham City Impostors Free To Play",play,1.2,0 -237578633,"Trove",purchase,1.0,0 -237578633,"Trove",play,0.4,0 -237578633,"UberStrike",purchase,1.0,0 -237578633,"UberStrike",play,0.2,0 -237578633,"Counter-Strike Nexon Zombies",purchase,1.0,0 -237578633,"Counter-Strike Nexon Zombies",play,0.1,0 -237578633,"Mitos.is The Game",purchase,1.0,0 -237578633,"Unturned",purchase,1.0,0 -304084564,"Dota 2",purchase,1.0,0 -304084564,"Dota 2",play,0.9,0 -265103440,"Two Worlds Epic Edition",purchase,1.0,0 -218938553,"Team Fortress 2",purchase,1.0,0 -218938553,"Team Fortress 2",play,4.8,0 -218938553,"Spiral Knights",purchase,1.0,0 -218938553,"Spiral Knights",play,2.4,0 -218938553,"Unturned",purchase,1.0,0 -218938553,"Unturned",play,1.8,0 -158481258,"Dota 2",purchase,1.0,0 -158481258,"Dota 2",play,2260.0,0 -158481258,"AdVenture Capitalist",purchase,1.0,0 -158481258,"AdVenture Capitalist",play,52.0,0 -158481258,"The Four Kings Casino and Slots",purchase,1.0,0 -158481258,"Aura Kingdom",purchase,1.0,0 -158481258,"Face of Mankind",purchase,1.0,0 -158481258,"Fiesta Online NA",purchase,1.0,0 -158481258,"Floating Point",purchase,1.0,0 -158481258,"Grand Chase",purchase,1.0,0 -158481258,"Happy Wars",purchase,1.0,0 -158481258,"Heroes & Generals",purchase,1.0,0 -158481258,"La Tale",purchase,1.0,0 -158481258,"March of War",purchase,1.0,0 -158481258,"NEOTOKYO",purchase,1.0,0 -158481258,"Neverwinter",purchase,1.0,0 -158481258,"Robocraft",purchase,1.0,0 -158481258,"Sunrider Mask of Arcadius",purchase,1.0,0 -158481258,"The Forgotten Ones",purchase,1.0,0 -158481258,"theHunter",purchase,1.0,0 -158481258,"Unturned",purchase,1.0,0 -158481258,"Velvet Sundown",purchase,1.0,0 -158481258,"War Thunder",purchase,1.0,0 -158481258,"Xam",purchase,1.0,0 -309434439,"Dota 2",purchase,1.0,0 -309434439,"Dota 2",play,0.8,0 -28257781,"Counter-Strike Source",purchase,1.0,0 -28257781,"Counter-Strike Source",play,28.0,0 -28257781,"Half-Life 2",purchase,1.0,0 -28257781,"Half-Life 2 Deathmatch",purchase,1.0,0 -28257781,"Half-Life 2 Lost Coast",purchase,1.0,0 -69305825,"Mafia II",purchase,1.0,0 -69305825,"Mafia II",play,55.0,0 -299764859,"Nobunaga's Ambition Souzou with Power Up Kit",purchase,1.0,0 -299764859,"Nobunaga's Ambition Souzou with Power Up Kit",play,133.0,0 -151257543,"Dota 2",purchase,1.0,0 -151257543,"Dota 2",play,1168.0,0 -116314616,"Football Manager 2013",purchase,1.0,0 -116314616,"Football Manager 2013",play,394.0,0 -144059425,"Dota 2",purchase,1.0,0 -144059425,"Dota 2",play,7.0,0 -92044753,"Just Cause 2",purchase,1.0,0 -92044753,"Just Cause 2",play,40.0,0 -89523414,"Counter-Strike Global Offensive",purchase,1.0,0 -89523414,"Counter-Strike Global Offensive",play,137.0,0 -89523414,"Terraria",purchase,1.0,0 -89523414,"Terraria",play,51.0,0 -89523414,"Rust",purchase,1.0,0 -89523414,"Rust",play,50.0,0 -89523414,"Clicker Heroes",purchase,1.0,0 -89523414,"Clicker Heroes",play,41.0,0 -89523414,"War Thunder",purchase,1.0,0 -89523414,"War Thunder",play,36.0,0 -89523414,"Fistful of Frags",purchase,1.0,0 -89523414,"Fistful of Frags",play,33.0,0 -89523414,"Loadout",purchase,1.0,0 -89523414,"Loadout",play,18.2,0 -89523414,"Heroes & Generals",purchase,1.0,0 -89523414,"Heroes & Generals",play,15.9,0 -89523414,"Unturned",purchase,1.0,0 -89523414,"Unturned",play,13.6,0 -89523414,"Left 4 Dead 2",purchase,1.0,0 -89523414,"Left 4 Dead 2",play,8.4,0 -89523414,"War of the Roses",purchase,1.0,0 -89523414,"War of the Roses",play,6.8,0 -89523414,"Total War Battles KINGDOM",purchase,1.0,0 -89523414,"Total War Battles KINGDOM",play,6.5,0 -89523414,"Garry's Mod",purchase,1.0,0 -89523414,"Garry's Mod",play,6.2,0 -89523414,"TERA",purchase,1.0,0 -89523414,"TERA",play,6.2,0 -89523414,"Knights of Pen and Paper +1",purchase,1.0,0 -89523414,"Knights of Pen and Paper +1",play,5.5,0 -89523414,"Team Fortress 2",purchase,1.0,0 -89523414,"Team Fortress 2",play,5.0,0 -89523414,"The Mighty Quest For Epic Loot",purchase,1.0,0 -89523414,"The Mighty Quest For Epic Loot",play,4.6,0 -89523414,"Chivalry Medieval Warfare",purchase,1.0,0 -89523414,"Chivalry Medieval Warfare",play,4.5,0 -89523414,"World of Guns Gun Disassembly",purchase,1.0,0 -89523414,"World of Guns Gun Disassembly",play,4.0,0 -89523414,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -89523414,"Tom Clancy's Ghost Recon Phantoms - EU",play,3.7,0 -89523414,"Survarium",purchase,1.0,0 -89523414,"Survarium",play,3.7,0 -89523414,"Magicka Wizard Wars",purchase,1.0,0 -89523414,"Magicka Wizard Wars",play,2.5,0 -89523414,"PAYDAY The Heist",purchase,1.0,0 -89523414,"PAYDAY The Heist",play,2.3,0 -89523414,"Magicka",purchase,1.0,0 -89523414,"Magicka",play,2.2,0 -89523414,"Nosgoth",purchase,1.0,0 -89523414,"Nosgoth",play,2.2,0 -89523414,"Sniper Elite V2",purchase,1.0,0 -89523414,"Sniper Elite V2",play,2.1,0 -89523414,"Afterfall InSanity Extended Edition",purchase,1.0,0 -89523414,"Afterfall InSanity Extended Edition",play,2.1,0 -89523414,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -89523414,"Rising Storm/Red Orchestra 2 Multiplayer",play,2.0,0 -89523414,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -89523414,"The Witcher 2 Assassins of Kings Enhanced Edition",play,2.0,0 -89523414,"Napoleon Total War",purchase,1.0,0 -89523414,"Napoleon Total War",play,1.9,0 -89523414,"Dino D-Day",purchase,1.0,0 -89523414,"Dino D-Day",play,1.9,0 -89523414,"Victoria II",purchase,1.0,0 -89523414,"Victoria II",play,1.7,0 -89523414,"OTTTD",purchase,1.0,0 -89523414,"OTTTD",play,1.5,0 -89523414,"Path of Exile",purchase,1.0,0 -89523414,"Path of Exile",play,1.3,0 -89523414,"Metrocide",purchase,1.0,0 -89523414,"Metrocide",play,1.3,0 -89523414,"Oscura Lost Light",purchase,1.0,0 -89523414,"Oscura Lost Light",play,1.3,0 -89523414,"The Culling Of The Cows",purchase,1.0,0 -89523414,"The Culling Of The Cows",play,1.3,0 -89523414,"Warface",purchase,1.0,0 -89523414,"Warface",play,1.3,0 -89523414,"Really Big Sky",purchase,1.0,0 -89523414,"Really Big Sky",play,1.2,0 -89523414,"Destination Sol",purchase,1.0,0 -89523414,"Destination Sol",play,1.2,0 -89523414,"Robocraft",purchase,1.0,0 -89523414,"Robocraft",play,1.1,0 -89523414,"How to Survive",purchase,1.0,0 -89523414,"How to Survive",play,0.9,0 -89523414,"Gun Monkeys",purchase,1.0,0 -89523414,"Gun Monkeys",play,0.9,0 -89523414,"Brawlhalla",purchase,1.0,0 -89523414,"Brawlhalla",play,0.8,0 -89523414,"HAWKEN",purchase,1.0,0 -89523414,"HAWKEN",play,0.6,0 -89523414,"Firefall",purchase,1.0,0 -89523414,"Firefall",play,0.5,0 -89523414,"Loadout Campaign Beta",purchase,1.0,0 -89523414,"Loadout Campaign Beta",play,0.5,0 -89523414,"Dirty Bomb",purchase,1.0,0 -89523414,"Dirty Bomb",play,0.3,0 -89523414,"Dungeon Siege III",purchase,1.0,0 -89523414,"Dungeon Siege III",play,0.3,0 -89523414,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -89523414,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,0.2,0 -89523414,"Brick-Force",purchase,1.0,0 -89523414,"Brick-Force",play,0.2,0 -89523414,"Blender 2.76b",purchase,1.0,0 -89523414,"Blender 2.76b",play,0.1,0 -89523414,"War of the Roses Balance Beta",purchase,1.0,0 -89523414,"War of the Roses Balance Beta",play,0.1,0 -89523414,"Divinity Dragon Commander Beta",purchase,1.0,0 -89523414,"Anno Online",purchase,1.0,0 -89523414,"Dead Island Epidemic",purchase,1.0,0 -89523414,"Amnesia The Dark Descent",purchase,1.0,0 -89523414,"Commandos 2 Men of Courage",purchase,1.0,0 -89523414,"Crash Time II",purchase,1.0,0 -89523414,"Cubic Castles",purchase,1.0,0 -89523414,"Fallen Enchantress Legendary Heroes",purchase,1.0,0 -89523414,"Grimoire Manastorm",purchase,1.0,0 -89523414,"GTR Evolution",purchase,1.0,0 -89523414,"Kung Fury",purchase,1.0,0 -89523414,"Moonrise",purchase,1.0,0 -89523414,"Patch testing for Chivalry",purchase,1.0,0 -89523414,"RACE 07",purchase,1.0,0 -89523414,"RaceRoom Racing Experience ",purchase,1.0,0 -89523414,"Screencheat",purchase,1.0,0 -89523414,"The Expendabros",purchase,1.0,0 -89523414,"Trove",purchase,1.0,0 -89523414,"War of the Roses Kingmaker",purchase,1.0,0 -293766234,"Dwarfs F2P",purchase,1.0,0 -92639430,"The Elder Scrolls V Skyrim",purchase,1.0,0 -92639430,"The Elder Scrolls V Skyrim",play,1111.0,0 -92639430,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -10964000,"Counter-Strike Source",purchase,1.0,0 -10964000,"Counter-Strike Source",play,29.0,0 -10964000,"Half-Life 2",purchase,1.0,0 -10964000,"Half-Life 2 Deathmatch",purchase,1.0,0 -10964000,"Half-Life 2 Lost Coast",purchase,1.0,0 -260300423,"Dota 2",purchase,1.0,0 -260300423,"Dota 2",play,0.3,0 -577614,"Counter-Strike",purchase,1.0,0 -577614,"Counter-Strike",play,36.0,0 -577614,"Day of Defeat",purchase,1.0,0 -577614,"Deathmatch Classic",purchase,1.0,0 -577614,"Half-Life",purchase,1.0,0 -577614,"Half-Life Blue Shift",purchase,1.0,0 -577614,"Half-Life Opposing Force",purchase,1.0,0 -577614,"Ricochet",purchase,1.0,0 -577614,"Team Fortress Classic",purchase,1.0,0 -108033629,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -108033629,"Call of Duty Modern Warfare 3 - Multiplayer",play,116.0,0 -108033629,"Call of Duty Modern Warfare 3",purchase,1.0,0 -108033629,"Call of Duty Modern Warfare 3",play,0.3,0 -306893799,"Dota 2",purchase,1.0,0 -306893799,"Dota 2",play,47.0,0 -151234988,"Dota 2",purchase,1.0,0 -151234988,"Dota 2",play,1406.0,0 -151234988,"Rust",purchase,1.0,0 -151234988,"Rust",play,151.0,0 -151234988,"DayZ",purchase,1.0,0 -151234988,"DayZ",play,57.0,0 -151234988,"The Elder Scrolls V Skyrim",purchase,1.0,0 -151234988,"The Elder Scrolls V Skyrim",play,44.0,0 -151234988,"Reign Of Kings",purchase,1.0,0 -151234988,"Reign Of Kings",play,2.7,0 -13227098,"Counter-Strike",purchase,1.0,0 -13227098,"Counter-Strike",play,0.6,0 -13227098,"Counter-Strike Condition Zero",purchase,1.0,0 -13227098,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -13227098,"Darkest Hour Europe '44-'45",purchase,1.0,0 -13227098,"Day of Defeat",purchase,1.0,0 -13227098,"Deathmatch Classic",purchase,1.0,0 -13227098,"Mare Nostrum",purchase,1.0,0 -13227098,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -13227098,"Ricochet",purchase,1.0,0 -148773331,"Counter-Strike Global Offensive",purchase,1.0,0 -148773331,"Counter-Strike Global Offensive",play,79.0,0 -148773331,"Team Fortress 2",purchase,1.0,0 -148773331,"Team Fortress 2",play,65.0,0 -148773331,"Unturned",purchase,1.0,0 -148773331,"Unturned",play,42.0,0 -148773331,"Piercing Blow",purchase,1.0,0 -148773331,"Piercing Blow",play,1.9,0 -148773331,"Brick-Force",purchase,1.0,0 -148773331,"Brick-Force",play,0.3,0 -153823616,"Far Cry 3",purchase,1.0,0 -153823616,"Far Cry 3",play,87.0,0 -153823616,"GRID 2",purchase,1.0,0 -153823616,"GRID 2",play,38.0,0 -153823616,"Project CARS",purchase,1.0,0 -153823616,"Project CARS",play,20.0,0 -153823616,"BioShock Infinite",purchase,1.0,0 -153823616,"BioShock Infinite",play,18.3,0 -153823616,"Metro Last Light",purchase,1.0,0 -153823616,"Metro Last Light",play,17.0,0 -166385573,"Dota 2",purchase,1.0,0 -166385573,"Dota 2",play,1121.0,0 -166385573,"APB Reloaded",purchase,1.0,0 -166385573,"Dethroned!",purchase,1.0,0 -166385573,"DRAKERZ-Confrontation",purchase,1.0,0 -166385573,"FreeStyle2 Street Basketball",purchase,1.0,0 -166385573,"Free to Play",purchase,1.0,0 -166385573,"Grand Chase",purchase,1.0,0 -166385573,"Heroes & Generals",purchase,1.0,0 -166385573,"Neverwinter",purchase,1.0,0 -166385573,"RIFT",purchase,1.0,0 -166385573,"ROSE Online",purchase,1.0,0 -166385573,"Star Conflict",purchase,1.0,0 -166385573,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -166385573,"Warframe",purchase,1.0,0 -166385573,"War Thunder",purchase,1.0,0 -240948167,"Dota 2",purchase,1.0,0 -240948167,"Dota 2",play,310.0,0 -240948167,"Team Fortress 2",purchase,1.0,0 -240948167,"Team Fortress 2",play,0.2,0 -240948167,"Clicker Heroes",purchase,1.0,0 -240948167,"AdVenture Capitalist",purchase,1.0,0 -240948167,"Neverwinter",purchase,1.0,0 -230187829,"Football Manager 2015",purchase,1.0,0 -230187829,"Football Manager 2015",play,436.0,0 -231098765,"FreeStyle2 Street Basketball",purchase,1.0,0 -252869367,"Heroes & Generals",purchase,1.0,0 -252869367,"No More Room in Hell",purchase,1.0,0 -187877855,"Unturned",purchase,1.0,0 -187877855,"Unturned",play,16.2,0 -187877855,"Team Fortress 2",purchase,1.0,0 -187877855,"Team Fortress 2",play,8.5,0 -187877855,"Robocraft",purchase,1.0,0 -187877855,"Robocraft",play,4.1,0 -187877855,"Toribash",purchase,1.0,0 -187877855,"Toribash",play,1.4,0 -187877855,"Heroes & Generals",purchase,1.0,0 -187877855,"Heroes & Generals",play,0.6,0 -187877855,"Warframe",purchase,1.0,0 -187877855,"Warframe",play,0.4,0 -141593830,"Serious Sam HD The Second Encounter",purchase,1.0,0 -141593830,"Serious Sam HD The Second Encounter",play,2.1,0 -178789623,"Dota 2",purchase,1.0,0 -178789623,"Dota 2",play,1252.0,0 -178789623,"PAYDAY 2",purchase,1.0,0 -178789623,"PAYDAY 2",play,392.0,0 -178789623,"Team Fortress 2",purchase,1.0,0 -178789623,"Team Fortress 2",play,295.0,0 -178789623,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -178789623,"Tom Clancy's Ghost Recon Phantoms - NA",play,8.8,0 -178789623,"CrimeCraft GangWars",purchase,1.0,0 -178789623,"GunZ 2 The Second Duel",purchase,1.0,0 -178789623,"Heroes & Generals",purchase,1.0,0 -178789623,"Loadout",purchase,1.0,0 -173931686,"Dota 2",purchase,1.0,0 -173931686,"Dota 2",play,82.0,0 -173931686,"FreeStyle2 Street Basketball",purchase,1.0,0 -173931686,"FreeStyle2 Street Basketball",play,0.3,0 -173931686,"Dream Of Mirror Online",purchase,1.0,0 -173931686,"Dream Of Mirror Online",play,0.2,0 -173931686,"Heroes & Generals",purchase,1.0,0 -173931686,"Heroes & Generals",play,0.1,0 -173931686,"PlanetSide 2",purchase,1.0,0 -49724738,"Team Fortress 2",purchase,1.0,0 -49724738,"Team Fortress 2",play,15.8,0 -49724738,"Dota 2",purchase,1.0,0 -49724738,"Dota 2",play,10.5,0 -49724738,"Warframe",purchase,1.0,0 -49724738,"Warframe",play,6.5,0 -49724738,"Left 4 Dead 2",purchase,1.0,0 -49724738,"Left 4 Dead 2",play,4.8,0 -49724738,"Cry of Fear",purchase,1.0,0 -49724738,"Cry of Fear",play,0.5,0 -147154527,"Dota 2",purchase,1.0,0 -147154527,"Dota 2",play,542.0,0 -150968058,"Dota 2",purchase,1.0,0 -150968058,"Dota 2",play,1126.0,0 -150968058,"Prime World",purchase,1.0,0 -207319056,"Team Fortress 2",purchase,1.0,0 -207319056,"Team Fortress 2",play,134.0,0 -207319056,"Unturned",purchase,1.0,0 -207319056,"Unturned",play,2.6,0 -207319056,"Brick-Force",purchase,1.0,0 -207319056,"Brick-Force",play,0.3,0 -290573962,"Dota 2",purchase,1.0,0 -290573962,"Dota 2",play,8.4,0 -166081897,"Dota 2",purchase,1.0,0 -166081897,"Dota 2",play,770.0,0 -166081897,"Free to Play",purchase,1.0,0 -166081897,"Free to Play",play,2.0,0 -166081897,"Team Fortress 2",purchase,1.0,0 -166081897,"Team Fortress 2",play,1.3,0 -166081897,"Metro 2033",purchase,1.0,0 -166081897,"Metro 2033",play,1.0,0 -166081897,"Sniper Elite V2",purchase,1.0,0 -166081897,"Sniper Elite V2",play,0.8,0 -166081897,"Deadbreed",purchase,1.0,0 -166081897,"Deadbreed",play,0.5,0 -166081897,"No More Room in Hell",purchase,1.0,0 -241834303,"Dota 2",purchase,1.0,0 -241834303,"Dota 2",play,1.0,0 -137837203,"Counter-Strike Global Offensive",purchase,1.0,0 -137837203,"Counter-Strike Global Offensive",play,19.5,0 -137837203,"Warhammer End Times - Vermintide",purchase,1.0,0 -137837203,"Warhammer End Times - Vermintide",play,13.7,0 -137837203,"H1Z1",purchase,1.0,0 -137837203,"H1Z1",play,12.2,0 -137837203,"The Elder Scrolls V Skyrim",purchase,1.0,0 -137837203,"The Elder Scrolls V Skyrim",play,6.9,0 -137837203,"Hitman Absolution",purchase,1.0,0 -137837203,"Hitman Absolution",play,4.6,0 -137837203,"Medieval II Total War",purchase,1.0,0 -137837203,"Medieval II Total War",play,2.9,0 -137837203,"Portal",purchase,1.0,0 -137837203,"Portal",play,2.7,0 -137837203,"The Witcher Enhanced Edition",purchase,1.0,0 -137837203,"The Witcher Enhanced Edition",play,1.7,0 -137837203,"Middle-earth Shadow of Mordor",purchase,1.0,0 -137837203,"Middle-earth Shadow of Mordor",play,1.1,0 -137837203,"Overlord II",purchase,1.0,0 -137837203,"Overlord II",play,0.8,0 -137837203,"ArcheAge",purchase,1.0,0 -137837203,"ArcheAge",play,0.5,0 -137837203,"Loadout",purchase,1.0,0 -137837203,"Loadout",play,0.4,0 -137837203,"Trine",purchase,1.0,0 -137837203,"Trine",play,0.1,0 -137837203,"Echo of Soul",purchase,1.0,0 -137837203,"H1Z1 Test Server",purchase,1.0,0 -137837203,"Hitman Sniper Challenge",purchase,1.0,0 -137837203,"Medieval II Total War Kingdoms",purchase,1.0,0 -137837203,"Warhammer End Times - Vermintide Sigmar's Blessing",purchase,1.0,0 -297059619,"Counter-Strike Global Offensive",purchase,1.0,0 -297059619,"Counter-Strike Global Offensive",play,97.0,0 -297059619,"Saints Row The Third",purchase,1.0,0 -297059619,"Saints Row The Third",play,16.2,0 -297059619,"Dota 2",purchase,1.0,0 -297059619,"Dota 2",play,9.5,0 -297059619,"Warframe",purchase,1.0,0 -297059619,"SMITE",purchase,1.0,0 -297059619,"Commander Conquest of the Americas Gold",purchase,1.0,0 -297059619,"Vertiginous Golf",purchase,1.0,0 -293478944,"Car Mechanic Simulator 2015",purchase,1.0,0 -293478944,"Car Mechanic Simulator 2015",play,8.2,0 -293478944,"Car Mechanic Simulator 2015 - PickUp & SUV DLC",purchase,1.0,0 -293478944,"Car Mechanic Simulator 2015 - TraderPack",purchase,1.0,0 -293478944,"Car Mechanic Simulator 2015 - Visual Tuning",purchase,1.0,0 -293478944,"Car Mechanic Simulator 2015 - Youngtimer",purchase,1.0,0 -227047211,"Team Fortress 2",purchase,1.0,0 -227047211,"Team Fortress 2",play,0.4,0 -231945021,"Dota 2",purchase,1.0,0 -231945021,"Dota 2",play,21.0,0 -222238581,"Unturned",purchase,1.0,0 -204319528,"Dota 2",purchase,1.0,0 -204319528,"Dota 2",play,17.4,0 -13873032,"Counter-Strike Source",purchase,1.0,0 -13873032,"Counter-Strike Source",play,197.0,0 -13873032,"Half-Life 2",purchase,1.0,0 -13873032,"Half-Life 2 Deathmatch",purchase,1.0,0 -13873032,"Half-Life 2 Lost Coast",purchase,1.0,0 -154276203,"Dota 2",purchase,1.0,0 -154276203,"Dota 2",play,2.5,0 -233269898,"Counter-Strike Nexon Zombies",purchase,1.0,0 -222259537,"MicroVolts Surge",purchase,1.0,0 -222259537,"MicroVolts Surge",play,2.4,0 -226111113,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -215727147,"Dota 2",purchase,1.0,0 -215727147,"Dota 2",play,0.6,0 -207248568,"Nightbanes",purchase,1.0,0 -207248568,"Nightbanes",play,202.0,0 -207248568,"Anno Online",purchase,1.0,0 -207248568,"Alpha Prime",purchase,1.0,0 -207248568,"Arson & Plunder Unleashed",purchase,1.0,0 -207248568,"Avencast",purchase,1.0,0 -207248568,"Bridge Constructor",purchase,1.0,0 -207248568,"Bridge Constructor Medieval",purchase,1.0,0 -207248568,"Bridge Constructor Playground",purchase,1.0,0 -207248568,"Chains",purchase,1.0,0 -207248568,"Chrome",purchase,1.0,0 -207248568,"Chrome Specforce",purchase,1.0,0 -207248568,"Crash Time II",purchase,1.0,0 -207248568,"Deadly 30",purchase,1.0,0 -207248568,"Devils & Demons",purchase,1.0,0 -207248568,"Frontline Tactics",purchase,1.0,0 -207248568,"Frontline Tactics - Close Quater Combat Soldier",purchase,1.0,0 -207248568,"Frontline Tactics - Medic Soldier Pack",purchase,1.0,0 -207248568,"Frontline Tactics - Sniper",purchase,1.0,0 -207248568,"Future Wars",purchase,1.0,0 -207248568,"Greed Black Border",purchase,1.0,0 -207248568,"Grotesque Tactics 2 - Dungeons and Donuts",purchase,1.0,0 -207248568,"Grotesque Tactics Evil Heroes",purchase,1.0,0 -207248568,"Grotesque Tactics Evil Heroes - Dev",purchase,1.0,0 -207248568,"Holy Avatar vs. Maidens of the Dead",purchase,1.0,0 -207248568,"In Between",purchase,1.0,0 -207248568,"In Between - Soundtrack",purchase,1.0,0 -207248568,"Larva Mortus",purchase,1.0,0 -207248568,"Nikopol Secrets of the Immortals",purchase,1.0,0 -207248568,"Obulis",purchase,1.0,0 -207248568,"Pacific Storm",purchase,1.0,0 -207248568,"Pacific Storm Allies",purchase,1.0,0 -207248568,"Path of Exile",purchase,1.0,0 -207248568,"Penguins Arena Sedna's World",purchase,1.0,0 -207248568,"Pixel Heroes Byte & Magic",purchase,1.0,0 -207248568,"Post Apocalyptic Mayhem",purchase,1.0,0 -207248568,"Post Apocalyptic Mayhem DLC 2 Chaos Pack",purchase,1.0,0 -207248568,"Post Mortem",purchase,1.0,0 -207248568,"RIP",purchase,1.0,0 -207248568,"RIP 2 Strike Back",purchase,1.0,0 -207248568,"RIP 3 The Last Hero",purchase,1.0,0 -207248568,"Robin Hood",purchase,1.0,0 -207248568,"Scratches Director's Cut",purchase,1.0,0 -207248568,"Shadowgrounds",purchase,1.0,0 -207248568,"Shadowgrounds Survivor",purchase,1.0,0 -207248568,"Skilltree Saga",purchase,1.0,0 -207248568,"Solar Shifter EX",purchase,1.0,0 -207248568,"SoulCraft",purchase,1.0,0 -207248568,"Space Trader Merchant Marine",purchase,1.0,0 -207248568,"Stellar Impact",purchase,1.0,0 -207248568,"Still Life",purchase,1.0,0 -207248568,"Still Life 2",purchase,1.0,0 -207248568,"Syberia",purchase,1.0,0 -207248568,"Syberia 2",purchase,1.0,0 -207248568,"Tank Universal",purchase,1.0,0 -207248568,"The Inner World",purchase,1.0,0 -207248568,"Trapped Dead",purchase,1.0,0 -207248568,"Trapped Dead Lockdown",purchase,1.0,0 -207248568,"Vigil Blood Bitterness",purchase,1.0,0 -207248568,"Wasteland Angel",purchase,1.0,0 -199806970,"HAWKEN",purchase,1.0,0 -199806970,"HAWKEN",play,0.7,0 -192429833,"Team Fortress 2",purchase,1.0,0 -192429833,"Team Fortress 2",play,1.7,0 -165683591,"Dota 2",purchase,1.0,0 -165683591,"Dota 2",play,381.0,0 -213231597,"Counter-Strike Global Offensive",purchase,1.0,0 -213231597,"Counter-Strike Global Offensive",play,171.0,0 -213231597,"PAYDAY 2",purchase,1.0,0 -213231597,"PAYDAY 2",play,134.0,0 -213231597,"Creativerse",purchase,1.0,0 -213231597,"Creativerse",play,17.3,0 -213231597,"BattleBlock Theater",purchase,1.0,0 -213231597,"BattleBlock Theater",play,14.6,0 -213231597,"Sniper Elite 3",purchase,1.0,0 -213231597,"Sniper Elite 3",play,13.0,0 -213231597,"Left 4 Dead 2",purchase,1.0,0 -213231597,"Left 4 Dead 2",play,9.8,0 -213231597,"Warframe",purchase,1.0,0 -213231597,"Warframe",play,8.8,0 -213231597,"BLOCKADE 3D",purchase,1.0,0 -213231597,"BLOCKADE 3D",play,8.3,0 -213231597,"Counter-Strike Source",purchase,1.0,0 -213231597,"Counter-Strike Source",play,7.2,0 -213231597,"HELLDIVERS",purchase,1.0,0 -213231597,"HELLDIVERS",play,3.9,0 -213231597,"Garry's Mod",purchase,1.0,0 -213231597,"Garry's Mod",play,3.8,0 -213231597,"Dota 2",purchase,1.0,0 -213231597,"Dota 2",play,2.1,0 -213231597,"Cannons Lasers Rockets",purchase,1.0,0 -213231597,"Cannons Lasers Rockets",play,1.7,0 -213231597,"Guns and Robots",purchase,1.0,0 -213231597,"Guns and Robots",play,0.9,0 -213231597,"Trove",purchase,1.0,0 -213231597,"Trove",play,0.7,0 -213231597,"Day of Defeat Source",purchase,1.0,0 -213231597,"Day of Defeat Source",play,0.6,0 -213231597,"Team Fortress 2",purchase,1.0,0 -213231597,"Team Fortress 2",play,0.4,0 -213231597,"War Inc. Battlezone",purchase,1.0,0 -213231597,"War Inc. Battlezone",play,0.4,0 -213231597,"Dizzel",purchase,1.0,0 -213231597,"Dizzel",play,0.4,0 -213231597,"Brick-Force",purchase,1.0,0 -213231597,"Brick-Force",play,0.2,0 -213231597,"Tribes Ascend",purchase,1.0,0 -213231597,"Tribes Ascend",play,0.2,0 -213231597,"Wild Warfare",purchase,1.0,0 -213231597,"Wild Warfare",play,0.2,0 -213231597,"Chaos Heroes Online",purchase,1.0,0 -213231597,"Defiance",purchase,1.0,0 -213231597,"Dirty Bomb",purchase,1.0,0 -213231597,"Double Action Boogaloo",purchase,1.0,0 -213231597,"Half-Life 2 Deathmatch",purchase,1.0,0 -213231597,"Karos",purchase,1.0,0 -213231597,"Loadout",purchase,1.0,0 -213231597,"NEOTOKYO",purchase,1.0,0 -213231597,"Panzar",purchase,1.0,0 -213231597,"PAYDAY The Heist",purchase,1.0,0 -213231597,"PlanetSide 2",purchase,1.0,0 -213231597,"Star Conflict",purchase,1.0,0 -213231597,"Tactical Intervention",purchase,1.0,0 -213231597,"Viridi",purchase,1.0,0 -213231597,"War Thunder",purchase,1.0,0 -150820937,"Dota 2",purchase,1.0,0 -150820937,"Dota 2",play,16.1,0 -46301758,"FIFA Manager 09",purchase,1.0,0 -46301758,"FIFA Manager 09",play,411.0,0 -46301758,"Left 4 Dead",purchase,1.0,0 -46301758,"Left 4 Dead",play,99.0,0 -46301758,"Just Cause 2",purchase,1.0,0 -46301758,"Just Cause 2",play,84.0,0 -46301758,"Cities Skylines",purchase,1.0,0 -46301758,"Cities Skylines",play,70.0,0 -46301758,"Left 4 Dead 2",purchase,1.0,0 -46301758,"Left 4 Dead 2",play,63.0,0 -46301758,"Prison Architect",purchase,1.0,0 -46301758,"Prison Architect",play,32.0,0 -46301758,"Demigod",purchase,1.0,0 -46301758,"Demigod",play,31.0,0 -46301758,"Team Fortress 2",purchase,1.0,0 -46301758,"Team Fortress 2",play,22.0,0 -46301758,"L.A. Noire",purchase,1.0,0 -46301758,"L.A. Noire",play,19.7,0 -46301758,"The Showdown Effect",purchase,1.0,0 -46301758,"The Showdown Effect",play,15.3,0 -46301758,"Waking Mars",purchase,1.0,0 -46301758,"Waking Mars",play,14.8,0 -46301758,"Infestation Survivor Stories",purchase,1.0,0 -46301758,"Infestation Survivor Stories",play,11.0,0 -46301758,"Multiwinia",purchase,1.0,0 -46301758,"Multiwinia",play,10.8,0 -46301758,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -46301758,"The Secret of Monkey Island Special Edition",play,8.7,0 -46301758,"Frozen Synapse",purchase,1.0,0 -46301758,"Frozen Synapse",play,6.5,0 -46301758,"Chains",purchase,1.0,0 -46301758,"Chains",play,6.3,0 -46301758,"Machinarium",purchase,1.0,0 -46301758,"Machinarium",play,6.3,0 -46301758,"From Dust",purchase,1.0,0 -46301758,"From Dust",play,5.5,0 -46301758,"Anno 2070",purchase,1.0,0 -46301758,"Anno 2070",play,4.5,0 -46301758,"Papers, Please",purchase,1.0,0 -46301758,"Papers, Please",play,4.1,0 -46301758,"DayZ",purchase,1.0,0 -46301758,"DayZ",play,3.3,0 -46301758,"Alien Swarm",purchase,1.0,0 -46301758,"Alien Swarm",play,2.8,0 -46301758,"Artemis Spaceship Bridge Simulator",purchase,1.0,0 -46301758,"Artemis Spaceship Bridge Simulator",play,2.6,0 -46301758,"Torchlight II",purchase,1.0,0 -46301758,"Torchlight II",play,2.1,0 -46301758,"FTL Faster Than Light",purchase,1.0,0 -46301758,"FTL Faster Than Light",play,2.0,0 -46301758,"Lost Horizon",purchase,1.0,0 -46301758,"Lost Horizon",play,1.9,0 -46301758,"Torchlight",purchase,1.0,0 -46301758,"Torchlight",play,1.8,0 -46301758,"Bridge It (plus)",purchase,1.0,0 -46301758,"Bridge It (plus)",play,1.8,0 -46301758,"Universe Sandbox",purchase,1.0,0 -46301758,"Universe Sandbox",play,1.5,0 -46301758,"Monaco",purchase,1.0,0 -46301758,"Monaco",play,1.2,0 -46301758,"Secret Files Tunguska",purchase,1.0,0 -46301758,"Secret Files Tunguska",play,0.9,0 -46301758,"The Misadventures of P.B. Winterbottom",purchase,1.0,0 -46301758,"The Misadventures of P.B. Winterbottom",play,0.8,0 -46301758,"The Next BIG Thing",purchase,1.0,0 -46301758,"The Next BIG Thing",play,0.7,0 -46301758,"Singularity",purchase,1.0,0 -46301758,"Singularity",play,0.7,0 -46301758,"Mirror's Edge",purchase,1.0,0 -46301758,"Mirror's Edge",play,0.5,0 -46301758,"Sid Meier's Civilization IV",purchase,1.0,0 -46301758,"Sid Meier's Civilization IV",play,0.4,0 -46301758,"Portal",purchase,1.0,0 -46301758,"Portal",play,0.4,0 -46301758,"Surgeon Simulator",purchase,1.0,0 -46301758,"Surgeon Simulator",play,0.4,0 -46301758,"Another World",purchase,1.0,0 -46301758,"Another World",play,0.2,0 -46301758,"The Flame in the Flood",purchase,1.0,0 -46301758,"The Flame in the Flood",play,0.2,0 -46301758,"Audiosurf",purchase,1.0,0 -46301758,"Audiosurf",play,0.1,0 -46301758,"SpaceChem",purchase,1.0,0 -46301758,"SpaceChem",play,0.1,0 -46301758,"Cities XL 2012",purchase,1.0,0 -46301758,"Cities XL 2012",play,0.1,0 -46301758,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -46301758,"Gemini Rue",purchase,1.0,0 -46301758,"Sniper Elite Zombie Army",purchase,1.0,0 -46301758,"Home",purchase,1.0,0 -46301758,"Alan Wake",purchase,1.0,0 -46301758,"Alan Wake's American Nightmare",purchase,1.0,0 -46301758,"Amnesia The Dark Descent",purchase,1.0,0 -46301758,"Bloody Good Time",purchase,1.0,0 -46301758,"Darwinia",purchase,1.0,0 -46301758,"Democracy 3",purchase,1.0,0 -46301758,"Greed Corp",purchase,1.0,0 -46301758,"GRID",purchase,1.0,0 -46301758,"Half-Life 2",purchase,1.0,0 -46301758,"Half-Life 2 Episode One",purchase,1.0,0 -46301758,"Half-Life 2 Episode Two",purchase,1.0,0 -46301758,"Half-Life 2 Lost Coast",purchase,1.0,0 -46301758,"How to Survive",purchase,1.0,0 -46301758,"LIMBO",purchase,1.0,0 -46301758,"Monkey Island 2 Special Edition",purchase,1.0,0 -46301758,"Portal 2",purchase,1.0,0 -46301758,"Reus",purchase,1.0,0 -46301758,"Scratches Director's Cut",purchase,1.0,0 -46301758,"Secret Files Puritas Cordis",purchase,1.0,0 -46301758,"Secret Files Sam Peters",purchase,1.0,0 -46301758,"Sid Meier's Civilization IV",purchase,1.0,0 -46301758,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -46301758,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -46301758,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -46301758,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -46301758,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -46301758,"The Mighty Quest For Epic Loot",purchase,1.0,0 -46301758,"The Walking Dead",purchase,1.0,0 -46301758,"This War of Mine",purchase,1.0,0 -46301758,"Tomb Raider",purchase,1.0,0 -46301758,"Tony Hawk's Pro Skater HD",purchase,1.0,0 -46301758,"Windosill",purchase,1.0,0 -46301758,"Worms Revolution",purchase,1.0,0 -192627895,"Dota 2",purchase,1.0,0 -192627895,"Dota 2",play,131.0,0 -161811523,"Team Fortress 2",purchase,1.0,0 -161811523,"Team Fortress 2",play,347.0,0 -161811523,"Unturned",purchase,1.0,0 -161811523,"Unturned",play,156.0,0 -161811523,"No More Room in Hell",purchase,1.0,0 -161811523,"No More Room in Hell",play,0.6,0 -161811523,"SMITE",purchase,1.0,0 -161811523,"SMITE",play,0.1,0 -161811523,"Warframe",purchase,1.0,0 -161811523,"Codename CURE",purchase,1.0,0 -206595308,"Dota 2",purchase,1.0,0 -206595308,"Dota 2",play,112.0,0 -206595308,"C9",purchase,1.0,0 -63075948,"Train Simulator",purchase,1.0,0 -63075948,"Train Simulator",play,60.0,0 -188642720,"Unturned",purchase,1.0,0 -188642720,"Unturned",play,11.0,0 -300513907,"Dota 2",purchase,1.0,0 -300513907,"Dota 2",play,1.4,0 -302823979,"Dota 2",purchase,1.0,0 -302823979,"Dota 2",play,2.1,0 -148631188,"Dota 2",purchase,1.0,0 -148631188,"Dota 2",play,269.0,0 -148631188,"TERA",purchase,1.0,0 -148631188,"TERA",play,1.3,0 -148631188,"Unturned",purchase,1.0,0 -148631188,"Unturned",play,0.9,0 -148631188,"Marvel Heroes 2015",purchase,1.0,0 -148631188,"Dead Island Epidemic",purchase,1.0,0 -148631188,"Archeblade",purchase,1.0,0 -148631188,"Robocraft",purchase,1.0,0 -64689644,"Portal",purchase,1.0,0 -139804310,"Dota 2",purchase,1.0,0 -139804310,"Dota 2",play,62.0,0 -14153959,"Counter-Strike Global Offensive",purchase,1.0,0 -14153959,"Counter-Strike Global Offensive",play,16.1,0 -14153959,"Counter-Strike Condition Zero",purchase,1.0,0 -14153959,"Counter-Strike Condition Zero",play,15.2,0 -14153959,"The Witcher Enhanced Edition",purchase,1.0,0 -14153959,"The Witcher Enhanced Edition",play,3.2,0 -14153959,"Counter-Strike",purchase,1.0,0 -14153959,"Counter-Strike",play,2.0,0 -14153959,"Marvel Heroes 2015",purchase,1.0,0 -14153959,"Marvel Heroes 2015",play,0.2,0 -14153959,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -278601876,"Robocraft",purchase,1.0,0 -153495323,"Left 4 Dead 2",purchase,1.0,0 -153495323,"Left 4 Dead 2",play,6.1,0 -103260848,"Garry's Mod",purchase,1.0,0 -103260848,"Garry's Mod",play,1759.0,0 -103260848,"Team Fortress 2",purchase,1.0,0 -103260848,"Team Fortress 2",play,1044.0,0 -103260848,"Grand Theft Auto V",purchase,1.0,0 -103260848,"Grand Theft Auto V",play,495.0,0 -103260848,"War Thunder",purchase,1.0,0 -103260848,"War Thunder",play,282.0,0 -103260848,"The Elder Scrolls V Skyrim",purchase,1.0,0 -103260848,"The Elder Scrolls V Skyrim",play,202.0,0 -103260848,"Counter-Strike Global Offensive",purchase,1.0,0 -103260848,"Counter-Strike Global Offensive",play,172.0,0 -103260848,"Far Cry 3",purchase,1.0,0 -103260848,"Far Cry 3",play,171.0,0 -103260848,"Left 4 Dead 2",purchase,1.0,0 -103260848,"Left 4 Dead 2",play,111.0,0 -103260848,"Day of Defeat Source",purchase,1.0,0 -103260848,"Day of Defeat Source",play,108.0,0 -103260848,"Portal 2",purchase,1.0,0 -103260848,"Portal 2",play,92.0,0 -103260848,"PAYDAY 2",purchase,1.0,0 -103260848,"PAYDAY 2",play,88.0,0 -103260848,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -103260848,"METAL GEAR SOLID V THE PHANTOM PAIN",play,74.0,0 -103260848,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -103260848,"Rising Storm/Red Orchestra 2 Multiplayer",play,72.0,0 -103260848,"Counter-Strike Source",purchase,1.0,0 -103260848,"Counter-Strike Source",play,69.0,0 -103260848,"Star Wars - Battlefront II",purchase,1.0,0 -103260848,"Star Wars - Battlefront II",play,66.0,0 -103260848,"Assassin's Creed Brotherhood",purchase,1.0,0 -103260848,"Assassin's Creed Brotherhood",play,51.0,0 -103260848,"Sniper Elite 3",purchase,1.0,0 -103260848,"Sniper Elite 3",play,40.0,0 -103260848,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -103260848,"Red Faction Guerrilla Steam Edition",play,39.0,0 -103260848,"Starbound",purchase,1.0,0 -103260848,"Starbound",play,36.0,0 -103260848,"Fallout New Vegas",purchase,1.0,0 -103260848,"Fallout New Vegas",play,35.0,0 -103260848,"Half-Life 2",purchase,1.0,0 -103260848,"Half-Life 2",play,33.0,0 -103260848,"Crysis",purchase,1.0,0 -103260848,"Crysis",play,30.0,0 -103260848,"Medal of Honor Airborne",purchase,1.0,0 -103260848,"Medal of Honor Airborne",play,30.0,0 -103260848,"Call of Duty 2",purchase,1.0,0 -103260848,"Call of Duty 2",play,26.0,0 -103260848,"Space Engineers",purchase,1.0,0 -103260848,"Space Engineers",play,25.0,0 -103260848,"Sniper Elite V2",purchase,1.0,0 -103260848,"Sniper Elite V2",play,23.0,0 -103260848,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -103260848,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,21.0,0 -103260848,"Half-Life 2 Episode Two",purchase,1.0,0 -103260848,"Half-Life 2 Episode Two",play,19.8,0 -103260848,"Half-Life Source",purchase,1.0,0 -103260848,"Half-Life Source",play,19.6,0 -103260848,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -103260848,"Deus Ex Human Revolution - Director's Cut",play,19.5,0 -103260848,"Sniper Elite Nazi Zombie Army",purchase,1.0,0 -103260848,"Sniper Elite Nazi Zombie Army",play,18.1,0 -103260848,"Synergy",purchase,1.0,0 -103260848,"Synergy",play,14.7,0 -103260848,"Company of Heroes 2",purchase,1.0,0 -103260848,"Company of Heroes 2",play,14.6,0 -103260848,"Grand Theft Auto IV",purchase,1.0,0 -103260848,"Grand Theft Auto IV",play,12.8,0 -103260848,"Audiosurf",purchase,1.0,0 -103260848,"Audiosurf",play,12.7,0 -103260848,"Assassin's Creed",purchase,1.0,0 -103260848,"Assassin's Creed",play,12.4,0 -103260848,"Half-Life Opposing Force",purchase,1.0,0 -103260848,"Half-Life Opposing Force",play,9.1,0 -103260848,"Portal",purchase,1.0,0 -103260848,"Portal",play,8.9,0 -103260848,"Half-Life Blue Shift",purchase,1.0,0 -103260848,"Half-Life Blue Shift",play,7.7,0 -103260848,"PAYDAY The Heist",purchase,1.0,0 -103260848,"PAYDAY The Heist",play,6.8,0 -103260848,"Battlefield Bad Company 2",purchase,1.0,0 -103260848,"Battlefield Bad Company 2",play,6.3,0 -103260848,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -103260848,"Grand Theft Auto Episodes from Liberty City",play,6.0,0 -103260848,"FTL Faster Than Light",purchase,1.0,0 -103260848,"FTL Faster Than Light",play,5.9,0 -103260848,"Half-Life 2 Episode One",purchase,1.0,0 -103260848,"Half-Life 2 Episode One",play,4.7,0 -103260848,"Poker Night at the Inventory",purchase,1.0,0 -103260848,"Poker Night at the Inventory",play,4.7,0 -103260848,"Source Filmmaker",purchase,1.0,0 -103260848,"Source Filmmaker",play,4.1,0 -103260848,"Half-Life Deathmatch Source",purchase,1.0,0 -103260848,"Half-Life Deathmatch Source",play,3.1,0 -103260848,"Insurgency Modern Infantry Combat",purchase,1.0,0 -103260848,"Insurgency Modern Infantry Combat",play,2.8,0 -103260848,"PlanetSide 2",purchase,1.0,0 -103260848,"PlanetSide 2",play,2.6,0 -103260848,"Ace of Spades",purchase,1.0,0 -103260848,"Ace of Spades",play,2.4,0 -103260848,"Half-Life 2 Deathmatch",purchase,1.0,0 -103260848,"Half-Life 2 Deathmatch",play,1.9,0 -103260848,"Wings of Prey",purchase,1.0,0 -103260848,"Wings of Prey",play,1.0,0 -103260848,"Unturned",purchase,1.0,0 -103260848,"Unturned",play,0.9,0 -103260848,"Half-Life 2 Lost Coast",purchase,1.0,0 -103260848,"Half-Life 2 Lost Coast",play,0.7,0 -103260848,"Poker Night 2",purchase,1.0,0 -103260848,"Poker Night 2",play,0.6,0 -103260848,"Age of Chivalry",purchase,1.0,0 -103260848,"Age of Chivalry",play,0.3,0 -103260848,"D.I.P.R.I.P. Warm Up",purchase,1.0,0 -103260848,"D.I.P.R.I.P. Warm Up",play,0.3,0 -103260848,"Eternal Silence",purchase,1.0,0 -103260848,"Eternal Silence",play,0.3,0 -103260848,"Contagion",purchase,1.0,0 -103260848,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -103260848,"Starbound - Unstable",purchase,1.0,0 -103260848,"Titan Quest",purchase,1.0,0 -219747318,"Dota 2",purchase,1.0,0 -219747318,"Dota 2",play,6.4,0 -257045927,"Teeworlds",purchase,1.0,0 -257045927,"Teeworlds",play,0.2,0 -83123832,"Counter-Strike Condition Zero",purchase,1.0,0 -83123832,"Counter-Strike Condition Zero",play,441.0,0 -83123832,"Counter-Strike",purchase,1.0,0 -83123832,"Counter-Strike",play,21.0,0 -83123832,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -83123832,"Counter-Strike Condition Zero Deleted Scenes",play,0.8,0 -83123832,"Day of Defeat",purchase,1.0,0 -83123832,"Deathmatch Classic",purchase,1.0,0 -83123832,"Ricochet",purchase,1.0,0 -298144216,"Dota 2",purchase,1.0,0 -298144216,"Dota 2",play,27.0,0 -106346875,"Call of Duty Modern Warfare 2",purchase,1.0,0 -106346875,"Call of Duty Modern Warfare 2",play,55.0,0 -106346875,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -106346875,"Call of Duty Black Ops II - Zombies",play,6.5,0 -106346875,"Call of Duty Black Ops II",purchase,1.0,0 -106346875,"Call of Duty Black Ops II",play,4.2,0 -106346875,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -106346875,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -220235189,"Dota 2",purchase,1.0,0 -220235189,"Dota 2",play,70.0,0 -220235189,"Team Fortress 2",purchase,1.0,0 -220235189,"Team Fortress 2",play,0.7,0 -247669967,"Dota 2",purchase,1.0,0 -247669967,"Dota 2",play,0.6,0 -142408262,"Dota 2",purchase,1.0,0 -142408262,"Dota 2",play,647.0,0 -142408262,"FreeStyle2 Street Basketball",purchase,1.0,0 -142408262,"FreeStyle2 Street Basketball",play,3.5,0 -142408262,"Warframe",purchase,1.0,0 -142408262,"Warframe",play,0.2,0 -142408262,"Transformice",purchase,1.0,0 -142408262,"AdVenture Capitalist",purchase,1.0,0 -142408262,"Clicker Heroes",purchase,1.0,0 -142408262,"Get Off My Lawn!",purchase,1.0,0 -142408262,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -142408262,"Neverwinter",purchase,1.0,0 -142408262,"Time Clickers",purchase,1.0,0 -142408262,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -261745164,"Dota 2",purchase,1.0,0 -261745164,"Dota 2",play,66.0,0 -261745164,"Warframe",purchase,1.0,0 -177578580,"Dota 2",purchase,1.0,0 -177578580,"Dota 2",play,0.8,0 -162453723,"Garry's Mod",purchase,1.0,0 -162453723,"Garry's Mod",play,229.0,0 -162453723,"Counter-Strike Global Offensive",purchase,1.0,0 -162453723,"Counter-Strike Global Offensive",play,171.0,0 -162453723,"PAYDAY 2",purchase,1.0,0 -162453723,"PAYDAY 2",play,128.0,0 -162453723,"The Crew",purchase,1.0,0 -162453723,"The Crew",play,27.0,0 -162453723,"Team Fortress 2",purchase,1.0,0 -162453723,"Team Fortress 2",play,21.0,0 -162453723,"Toribash",purchase,1.0,0 -162453723,"Toribash",play,11.8,0 -162453723,"How to Survive",purchase,1.0,0 -162453723,"How to Survive",play,5.6,0 -162453723,"Turbo Dismount",purchase,1.0,0 -162453723,"Turbo Dismount",play,2.5,0 -162453723,"World of Guns Gun Disassembly",purchase,1.0,0 -162453723,"World of Guns Gun Disassembly",play,1.3,0 -162453723,"Dizzel",purchase,1.0,0 -162453723,"Dizzel",play,1.0,0 -162453723,"Grand Theft Auto IV",purchase,1.0,0 -162453723,"Grand Theft Auto IV",play,0.9,0 -162453723,"theHunter",purchase,1.0,0 -162453723,"theHunter",play,0.5,0 -162453723,"Rust",purchase,1.0,0 -162453723,"Rust",play,0.4,0 -162453723,"APB Reloaded",purchase,1.0,0 -162453723,"APB Reloaded",play,0.4,0 -162453723,"Color Symphony",purchase,1.0,0 -162453723,"Color Symphony",play,0.3,0 -162453723,"Counter-Strike Source",purchase,1.0,0 -162453723,"Counter-Strike Source",play,0.2,0 -162453723,"Dead Island Epidemic",purchase,1.0,0 -162453723,"Dead Island Epidemic",play,0.2,0 -162453723,"Zombie Panic Source",purchase,1.0,0 -162453723,"Zombie Panic Source",play,0.2,0 -162453723,"Velvet Sundown",purchase,1.0,0 -162453723,"Velvet Sundown",play,0.1,0 -162453723,"Face of Mankind",purchase,1.0,0 -162453723,"Soccer Manager 2015",purchase,1.0,0 -162453723,"Robocraft",purchase,1.0,0 -162453723,"No More Room in Hell",purchase,1.0,0 -162453723,"Aura Kingdom",purchase,1.0,0 -162453723,"Aura Kingdom - Winter Gift",purchase,1.0,0 -162453723,"Euro Truck Simulator 2",purchase,1.0,0 -162453723,"Firefall",purchase,1.0,0 -162453723,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -162453723,"Guns and Robots",purchase,1.0,0 -171986932,"Dota 2",purchase,1.0,0 -171986932,"Dota 2",play,0.7,0 -164196144,"Dota 2",purchase,1.0,0 -164196144,"Dota 2",play,289.0,0 -164196144,"METAL SLUG DEFENSE",purchase,1.0,0 -164196144,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -34582304,"Tomb Raider",purchase,1.0,0 -34582304,"Tomb Raider",play,54.0,0 -34582304,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -34582304,"Call of Duty Modern Warfare 3 - Multiplayer",play,45.0,0 -34582304,"BioShock Infinite",purchase,1.0,0 -34582304,"BioShock Infinite",play,28.0,0 -34582304,"Grand Theft Auto IV",purchase,1.0,0 -34582304,"Grand Theft Auto IV",play,26.0,0 -34582304,"Left 4 Dead 2",purchase,1.0,0 -34582304,"Left 4 Dead 2",play,21.0,0 -34582304,"BioShock",purchase,1.0,0 -34582304,"BioShock",play,18.2,0 -34582304,"Left 4 Dead",purchase,1.0,0 -34582304,"Left 4 Dead",play,16.3,0 -34582304,"Half-Life 2 Episode Two",purchase,1.0,0 -34582304,"Half-Life 2 Episode Two",play,16.0,0 -34582304,"Portal 2",purchase,1.0,0 -34582304,"Portal 2",play,12.9,0 -34582304,"Assassin's Creed",purchase,1.0,0 -34582304,"Assassin's Creed",play,11.5,0 -34582304,"Star Wars - Battlefront II",purchase,1.0,0 -34582304,"Star Wars - Battlefront II",play,11.0,0 -34582304,"Call of Duty Modern Warfare 3",purchase,1.0,0 -34582304,"Call of Duty Modern Warfare 3",play,10.0,0 -34582304,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -34582304,"Call of Duty 4 Modern Warfare",play,8.4,0 -34582304,"Portal",purchase,1.0,0 -34582304,"Portal",play,8.1,0 -34582304,"Sid Meier's Civilization IV",purchase,1.0,0 -34582304,"Sid Meier's Civilization IV",play,6.9,0 -34582304,"Quantum Conundrum",purchase,1.0,0 -34582304,"Quantum Conundrum",play,5.1,0 -34582304,"Half-Life 2 Lost Coast",purchase,1.0,0 -34582304,"Half-Life 2 Lost Coast",play,0.8,0 -34582304,"Lara Croft and the Guardian of Light",purchase,1.0,0 -34582304,"Lara Croft and the Guardian of Light",play,0.6,0 -34582304,"Team Fortress 2",purchase,1.0,0 -34582304,"Team Fortress 2",play,0.4,0 -34582304,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -34582304,"Half-Life 2",purchase,1.0,0 -34582304,"Half-Life 2 Episode One",purchase,1.0,0 -34582304,"Sid Meier's Civilization IV",purchase,1.0,0 -185825658,"Dota 2",purchase,1.0,0 -185825658,"Dota 2",play,2.7,0 -185825658,"Unturned",purchase,1.0,0 -283558096,"Counter-Strike Global Offensive",purchase,1.0,0 -283558096,"Counter-Strike Global Offensive",play,3.3,0 -283558096,"Batla",purchase,1.0,0 -283558096,"Clicker Heroes",purchase,1.0,0 -283558096,"Robocraft",purchase,1.0,0 -283558096,"Unturned",purchase,1.0,0 -144505477,"Dota 2",purchase,1.0,0 -144505477,"Dota 2",play,1.5,0 -234262106,"Dota 2",purchase,1.0,0 -234262106,"Dota 2",play,38.0,0 -234262106,"Robocraft",purchase,1.0,0 -234262106,"Robocraft",play,19.4,0 -234262106,"Unturned",purchase,1.0,0 -234262106,"Unturned",play,4.7,0 -234262106,"Counter-Strike Nexon Zombies",purchase,1.0,0 -234262106,"Counter-Strike Nexon Zombies",play,4.1,0 -234262106,"Warframe",purchase,1.0,0 -234262106,"Warframe",play,3.8,0 -234262106,"Black Fire",purchase,1.0,0 -245844624,"Dota 2",purchase,1.0,0 -245844624,"Dota 2",play,0.8,0 -149144202,"Dota 2",purchase,1.0,0 -149144202,"Dota 2",play,0.5,0 -18611287,"Counter-Strike",purchase,1.0,0 -18611287,"Counter-Strike Condition Zero",purchase,1.0,0 -18611287,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -29239329,"The Elder Scrolls V Skyrim",purchase,1.0,0 -29239329,"The Elder Scrolls V Skyrim",play,177.0,0 -29239329,"Sid Meier's Civilization V",purchase,1.0,0 -29239329,"Sid Meier's Civilization V",play,37.0,0 -29239329,"Deus Ex Human Revolution",purchase,1.0,0 -29239329,"Deus Ex Human Revolution",play,30.0,0 -29239329,"Mount & Blade Warband",purchase,1.0,0 -29239329,"Mount & Blade Warband",play,29.0,0 -29239329,"Legend of Grimrock",purchase,1.0,0 -29239329,"Legend of Grimrock",play,20.0,0 -29239329,"BioShock Infinite",purchase,1.0,0 -29239329,"BioShock Infinite",play,12.7,0 -29239329,"Torchlight II",purchase,1.0,0 -29239329,"Torchlight II",play,12.7,0 -29239329,"Portal 2",purchase,1.0,0 -29239329,"Portal 2",play,12.3,0 -29239329,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -29239329,"Deus Ex Human Revolution - Director's Cut",play,11.7,0 -29239329,"Left 4 Dead 2",purchase,1.0,0 -29239329,"Left 4 Dead 2",play,10.4,0 -29239329,"Transistor",purchase,1.0,0 -29239329,"Transistor",play,8.9,0 -29239329,"Alien Swarm",purchase,1.0,0 -29239329,"Alien Swarm",play,8.5,0 -29239329,"Age of Empires II HD Edition",purchase,1.0,0 -29239329,"Age of Empires II HD Edition",play,8.5,0 -29239329,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",purchase,1.0,0 -29239329,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",play,8.4,0 -29239329,"Magicka",purchase,1.0,0 -29239329,"Magicka",play,6.5,0 -29239329,"Trine 2",purchase,1.0,0 -29239329,"Trine 2",play,6.2,0 -29239329,"FTL Faster Than Light",purchase,1.0,0 -29239329,"FTL Faster Than Light",play,5.8,0 -29239329,"Gunpoint",purchase,1.0,0 -29239329,"Gunpoint",play,4.5,0 -29239329,"Team Fortress 2",purchase,1.0,0 -29239329,"Team Fortress 2",play,3.9,0 -29239329,"To the Moon",purchase,1.0,0 -29239329,"To the Moon",play,3.4,0 -29239329,"Besiege",purchase,1.0,0 -29239329,"Besiege",play,3.2,0 -29239329,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -29239329,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,3.1,0 -29239329,"Analogue A Hate Story",purchase,1.0,0 -29239329,"Analogue A Hate Story",play,2.8,0 -29239329,"Chivalry Medieval Warfare",purchase,1.0,0 -29239329,"Chivalry Medieval Warfare",play,2.7,0 -29239329,"Waking Mars",purchase,1.0,0 -29239329,"Waking Mars",play,2.1,0 -29239329,"Braid",purchase,1.0,0 -29239329,"Braid",play,2.1,0 -29239329,"Saints Row The Third",purchase,1.0,0 -29239329,"Saints Row The Third",play,1.9,0 -29239329,"Dear Esther",purchase,1.0,0 -29239329,"Dear Esther",play,1.7,0 -29239329,"King's Bounty The Legend",purchase,1.0,0 -29239329,"King's Bounty The Legend",play,1.6,0 -29239329,"Papers, Please",purchase,1.0,0 -29239329,"Papers, Please",play,1.5,0 -29239329,"Counter-Strike Source",purchase,1.0,0 -29239329,"Counter-Strike Source",play,1.3,0 -29239329,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",purchase,1.0,0 -29239329,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",play,1.3,0 -29239329,"Bastion",purchase,1.0,0 -29239329,"Bastion",play,1.2,0 -29239329,"Supreme Commander",purchase,1.0,0 -29239329,"Supreme Commander",play,0.8,0 -29239329,"Alan Wake",purchase,1.0,0 -29239329,"Alan Wake",play,0.6,0 -29239329,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -29239329,"Superbrothers Sword & Sworcery EP",play,0.5,0 -29239329,"Tomb Raider",purchase,1.0,0 -29239329,"Tomb Raider",play,0.4,0 -29239329,"Day of Defeat Source",purchase,1.0,0 -29239329,"Day of Defeat Source",play,0.3,0 -29239329,"BioShock",purchase,1.0,0 -29239329,"BioShock",play,0.3,0 -29239329,"The Stanley Parable",purchase,1.0,0 -29239329,"The Stanley Parable",play,0.3,0 -29239329,"PAYDAY The Heist",purchase,1.0,0 -29239329,"PAYDAY The Heist",play,0.3,0 -29239329,"Divine Divinity",purchase,1.0,0 -29239329,"Divine Divinity",play,0.2,0 -29239329,"The Dark Eye Chains of Satinav",purchase,1.0,0 -29239329,"The Dark Eye Chains of Satinav",play,0.2,0 -29239329,"Day of Defeat",purchase,1.0,0 -29239329,"Day of Defeat",play,0.2,0 -29239329,"Rise of Nations Extended Edition",purchase,1.0,0 -29239329,"Rise of Nations Extended Edition",play,0.2,0 -29239329,"Counter-Strike",purchase,1.0,0 -29239329,"Counter-Strike",play,0.2,0 -29239329,"King's Bounty Crossworlds",purchase,1.0,0 -29239329,"King's Bounty Crossworlds",play,0.1,0 -29239329,"Space Pirates and Zombies",purchase,1.0,0 -29239329,"Age of Empires II HD The Forgotten",purchase,1.0,0 -29239329,"Alan Wake's American Nightmare",purchase,1.0,0 -29239329,"BioShock 2",purchase,1.0,0 -29239329,"Brtal Legend",purchase,1.0,0 -29239329,"Dead Island",purchase,1.0,0 -29239329,"Deathmatch Classic",purchase,1.0,0 -29239329,"Eets Munchies",purchase,1.0,0 -29239329,"FEZ",purchase,1.0,0 -29239329,"Half-Life",purchase,1.0,0 -29239329,"Half-Life Blue Shift",purchase,1.0,0 -29239329,"Half-Life Opposing Force",purchase,1.0,0 -29239329,"Hate Plus",purchase,1.0,0 -29239329,"King's Bounty Armored Princess",purchase,1.0,0 -29239329,"Magicka Final Frontier",purchase,1.0,0 -29239329,"Magicka Frozen Lake",purchase,1.0,0 -29239329,"Magicka Nippon",purchase,1.0,0 -29239329,"Magicka Party Robes",purchase,1.0,0 -29239329,"Magicka The Watchtower",purchase,1.0,0 -29239329,"Magicka Vietnam",purchase,1.0,0 -29239329,"Magicka Wizard's Survival Kit",purchase,1.0,0 -29239329,"Mark of the Ninja",purchase,1.0,0 -29239329,"Metro 2033",purchase,1.0,0 -29239329,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -29239329,"Operation Flashpoint Red River",purchase,1.0,0 -29239329,"Overlord",purchase,1.0,0 -29239329,"Overlord Raising Hell",purchase,1.0,0 -29239329,"Patch testing for Chivalry",purchase,1.0,0 -29239329,"Reveal The Deep",purchase,1.0,0 -29239329,"Ricochet",purchase,1.0,0 -29239329,"Risen",purchase,1.0,0 -29239329,"Risen 2 - Dark Waters",purchase,1.0,0 -29239329,"Rise of the Argonauts",purchase,1.0,0 -29239329,"Sacred 2 Gold",purchase,1.0,0 -29239329,"Sacred Citadel",purchase,1.0,0 -29239329,"Saints Row 2",purchase,1.0,0 -29239329,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -29239329,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -29239329,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -29239329,"Team Fortress Classic",purchase,1.0,0 -29239329,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -29239329,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -29239329,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -29239329,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -29239329,"The Witcher Enhanced Edition",purchase,1.0,0 -29239329,"Transistor Soundtrack",purchase,1.0,0 -135091121,"Dota 2",purchase,1.0,0 -135091121,"Dota 2",play,1107.0,0 -135091121,"Left 4 Dead 2",purchase,1.0,0 -135091121,"Left 4 Dead 2",play,10.9,0 -135091121,"Counter-Strike Global Offensive",purchase,1.0,0 -135091121,"Counter-Strike Global Offensive",play,1.2,0 -242325247,"Star Traders 4X Empires",purchase,1.0,0 -242325247,"Star Traders 4X Empires",play,8.4,0 -242325247,"Toribash",purchase,1.0,0 -242325247,"Toribash",play,0.5,0 -242325247,"No More Room in Hell",purchase,1.0,0 -215877085,"Panzar",purchase,1.0,0 -215877085,"Panzar",play,7.4,0 -215877085,"Robocraft",purchase,1.0,0 -215877085,"Robocraft",play,4.4,0 -215877085,"Age of Conan Unchained - EU version",purchase,1.0,0 -215877085,"Haunted Memories",purchase,1.0,0 -215877085,"Killing Floor - Toy Master",purchase,1.0,0 -215877085,"Killing Floor Uncovered",purchase,1.0,0 -215877085,"Unturned",purchase,1.0,0 -215877085,"Warface",purchase,1.0,0 -215877085,"Warframe",purchase,1.0,0 -215877085,"War Thunder",purchase,1.0,0 -160620803,"Alice Madness Returns",purchase,1.0,0 -160620803,"Alice Madness Returns",play,24.0,0 -160620803,"Undertale",purchase,1.0,0 -160620803,"Undertale",play,3.1,0 -92600849,"Call of Duty Modern Warfare 3",purchase,1.0,0 -92600849,"Call of Duty Modern Warfare 3",play,215.0,0 -92600849,"Call of Duty Black Ops II",purchase,1.0,0 -92600849,"Call of Duty Black Ops II",play,81.0,0 -92600849,"Call of Duty Ghosts",purchase,1.0,0 -92600849,"Call of Duty Ghosts",play,67.0,0 -92600849,"Call of Duty World at War",purchase,1.0,0 -92600849,"Call of Duty World at War",play,19.5,0 -92600849,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -92600849,"Call of Duty Black Ops II - Zombies",play,0.4,0 -92600849,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -92600849,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -92600849,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -190061555,"Dota 2",purchase,1.0,0 -190061555,"Dota 2",play,0.8,0 -232844363,"Loadout",purchase,1.0,0 -232844363,"Unturned",purchase,1.0,0 -46585543,"Unturned",purchase,1.0,0 -46585543,"Unturned",play,5.9,0 -46585543,"Dota 2",purchase,1.0,0 -46585543,"Dota 2",play,1.2,0 -46585543,"Dino D-Day",purchase,1.0,0 -46585543,"Dino D-Day",play,0.2,0 -46585543,"Commander Conquest of the Americas Gold",purchase,1.0,0 -46585543,"East India Company Gold",purchase,1.0,0 -46585543,"Enclave",purchase,1.0,0 -46585543,"Knights and Merchants",purchase,1.0,0 -46585543,"KnightShift",purchase,1.0,0 -46585543,"Pirates of Black Cove Gold",purchase,1.0,0 -46585543,"Racer 8",purchase,1.0,0 -46585543,"Two Worlds Epic Edition",purchase,1.0,0 -27262175,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -27262175,"Call of Duty Modern Warfare 2 - Multiplayer",play,435.0,0 -27262175,"Counter-Strike Global Offensive",purchase,1.0,0 -27262175,"Counter-Strike Global Offensive",play,167.0,0 -27262175,"H1Z1",purchase,1.0,0 -27262175,"H1Z1",play,156.0,0 -27262175,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -27262175,"Call of Duty Black Ops - Multiplayer",play,28.0,0 -27262175,"Call of Duty Modern Warfare 2",purchase,1.0,0 -27262175,"Call of Duty Modern Warfare 2",play,27.0,0 -27262175,"Call of Duty Black Ops",purchase,1.0,0 -27262175,"Call of Duty Black Ops",play,26.0,0 -27262175,"Fallout New Vegas",purchase,1.0,0 -27262175,"Fallout New Vegas",play,15.2,0 -27262175,"Counter-Strike Source",purchase,1.0,0 -27262175,"Counter-Strike Source",play,9.9,0 -27262175,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -27262175,"Call of Duty Black Ops II - Multiplayer",play,9.1,0 -27262175,"Worms Revolution",purchase,1.0,0 -27262175,"Worms Revolution",play,8.7,0 -27262175,"Arma 2 Operation Arrowhead",purchase,1.0,0 -27262175,"Arma 2 Operation Arrowhead",play,8.0,0 -27262175,"Cities Skylines",purchase,1.0,0 -27262175,"Cities Skylines",play,6.6,0 -27262175,"Sid Meier's Civilization V",purchase,1.0,0 -27262175,"Sid Meier's Civilization V",play,6.6,0 -27262175,"Call of Duty Black Ops II",purchase,1.0,0 -27262175,"Call of Duty Black Ops II",play,5.5,0 -27262175,"Arma 2 DayZ Mod",purchase,1.0,0 -27262175,"Arma 2 DayZ Mod",play,3.5,0 -27262175,"Magicka 2",purchase,1.0,0 -27262175,"Magicka 2",play,3.3,0 -27262175,"Torchlight II",purchase,1.0,0 -27262175,"Torchlight II",play,2.8,0 -27262175,"Fallout 4",purchase,1.0,0 -27262175,"Fallout 4",play,2.1,0 -27262175,"Aliens vs. Predator",purchase,1.0,0 -27262175,"Aliens vs. Predator",play,1.2,0 -27262175,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -27262175,"Call of Duty Black Ops II - Zombies",play,1.2,0 -27262175,"Batman Arkham Knight",purchase,1.0,0 -27262175,"Batman Arkham Knight",play,0.4,0 -27262175,"Arma 2",purchase,1.0,0 -27262175,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -27262175,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -27262175,"Batman Arkham City GOTY",purchase,1.0,0 -27262175,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -27262175,"Batman Arkham Origins - Initiation",purchase,1.0,0 -27262175,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -27262175,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -27262175,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -27262175,"Batman Arkham Origins",purchase,1.0,0 -27262175,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -27262175,"Biology Battle",purchase,1.0,0 -27262175,"Crystals of Time",purchase,1.0,0 -27262175,"DarkBase 01",purchase,1.0,0 -27262175,"Fine Sweeper",purchase,1.0,0 -27262175,"Fort Defense",purchase,1.0,0 -27262175,"H1Z1 Test Server",purchase,1.0,0 -27262175,"Hacker Evolution Duality",purchase,1.0,0 -27262175,"Lilly and Sasha Nexus of Souls",purchase,1.0,0 -27262175,"N.P.P.D. RUSH - The milk of Ultra violet",purchase,1.0,0 -27262175,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -27262175,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -27262175,"Space Trader Merchant Marine",purchase,1.0,0 -27262175,"Tiamat X",purchase,1.0,0 -164805863,"Sid Meier's Civilization V",purchase,1.0,0 -164805863,"Sid Meier's Civilization V",play,8.3,0 -164805863,"The Sims(TM) 3",purchase,1.0,0 -164805863,"The Sims(TM) 3",play,5.5,0 -164805863,"The Sims(TM) Medieval",purchase,1.0,0 -164805863,"The Sims(TM) Medieval",play,3.3,0 -164805863,"Car Mechanic Simulator 2014",purchase,1.0,0 -164805863,"Car Mechanic Simulator 2014",play,2.4,0 -164805863,"Commandos 3 Destination Berlin",purchase,1.0,0 -164805863,"Commandos 3 Destination Berlin",play,0.5,0 -164805863,"Commandos 2 Men of Courage",purchase,1.0,0 -164805863,"Commandos 2 Men of Courage",play,0.4,0 -164805863,"Euro Truck Simulator 2",purchase,1.0,0 -164805863,"Euro Truck Simulator 2",play,0.3,0 -164805863,"Empire Total War",purchase,1.0,0 -164805863,"Empire Total War",play,0.3,0 -164805863,"Age of Wonders III",purchase,1.0,0 -164805863,"Age of Wonders III",play,0.2,0 -164805863,"Commandos Behind Enemy Lines",purchase,1.0,0 -164805863,"Commandos Beyond the Call of Duty",purchase,1.0,0 -133459021,"Left 4 Dead 2",purchase,1.0,0 -133459021,"Left 4 Dead 2",play,2.1,0 -216487495,"Team Fortress 2",purchase,1.0,0 -216487495,"Team Fortress 2",play,1.3,0 -216487495,"Spartans Vs Zombies Defense",purchase,1.0,0 -216487495,"Spartans Vs Zombies Defense",play,0.4,0 -216487495,"Marvel Heroes 2015",purchase,1.0,0 -231584646,"Counter-Strike Nexon Zombies",purchase,1.0,0 -231584646,"Counter-Strike Nexon Zombies",play,0.7,0 -238808025,"Stronghold Crusader HD",purchase,1.0,0 -238808025,"Stronghold Crusader HD",play,3.3,0 -238808025,"Warface",purchase,1.0,0 -238808025,"Warface",play,0.4,0 -238808025,"AdVenture Capitalist",purchase,1.0,0 -238808025,"AdVenture Capitalist",play,0.4,0 -238808025,"Stronghold Crusader Extreme HD",purchase,1.0,0 -238808025,"Stronghold HD",purchase,1.0,0 -96167505,"Sid Meier's Civilization V",purchase,1.0,0 -96167505,"Sid Meier's Civilization V",play,741.0,0 -96167505,"Mount & Blade Warband",purchase,1.0,0 -96167505,"Mount & Blade Warband",play,351.0,0 -96167505,"Sniper Elite V2",purchase,1.0,0 -96167505,"Sniper Elite V2",play,123.0,0 -96167505,"Enemy Front",purchase,1.0,0 -96167505,"Enemy Front",play,18.7,0 -96167505,"Sniper Ghost Warrior 2",purchase,1.0,0 -96167505,"Sniper Ghost Warrior 2",play,10.7,0 -96167505,"Ryse Son of Rome",purchase,1.0,0 -96167505,"Ryse Son of Rome",play,10.5,0 -96167505,"Tomb Raider",purchase,1.0,0 -96167505,"Tomb Raider",play,1.6,0 -96167505,"Hitman Absolution",purchase,1.0,0 -96167505,"Hitman Absolution",play,0.8,0 -96167505,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -136357840,"Dota 2",purchase,1.0,0 -136357840,"Dota 2",play,1.4,0 -63808332,"Stronghold Kingdoms",purchase,1.0,0 -63808332,"Stronghold Kingdoms",play,440.0,0 -63808332,"Napoleon Total War",purchase,1.0,0 -63808332,"Napoleon Total War",play,30.0,0 -63808332,"The Kings' Crusade",purchase,1.0,0 -63808332,"The Kings' Crusade",play,5.8,0 -63808332,"Fallout New Vegas",purchase,1.0,0 -63808332,"Fallout New Vegas",play,0.2,0 -63808332,"King Arthur - The Role-playing Wargame",purchase,1.0,0 -124070622,"F1 2012",purchase,1.0,0 -124070622,"F1 2012",play,248.0,0 -124070622,"Killing Floor",purchase,1.0,0 -124070622,"Killing Floor",play,59.0,0 -124070622,"Test Drive Unlimited 2",purchase,1.0,0 -124070622,"Test Drive Unlimited 2",play,42.0,0 -124070622,"GRID",purchase,1.0,0 -124070622,"GRID",play,31.0,0 -124070622,"Assetto Corsa",purchase,1.0,0 -124070622,"Assetto Corsa",play,13.7,0 -124070622,"State of Decay",purchase,1.0,0 -124070622,"State of Decay",play,2.8,0 -124070622,"Saints Row The Third",purchase,1.0,0 -124070622,"Saints Row The Third",play,2.7,0 -124070622,"Goat Simulator",purchase,1.0,0 -124070622,"Goat Simulator",play,2.1,0 -124070622,"Left 4 Dead 2",purchase,1.0,0 -124070622,"Left 4 Dead 2",play,0.9,0 -124070622,"RaceRoom Racing Experience ",purchase,1.0,0 -124070622,"RaceRoom Racing Experience ",play,0.6,0 -124070622,"Dota 2",purchase,1.0,0 -124070622,"Dota 2",play,0.4,0 -124070622,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -117483116,"Age of Empires II HD Edition",purchase,1.0,0 -157899431,"The Elder Scrolls V Skyrim",purchase,1.0,0 -157899431,"The Elder Scrolls V Skyrim",play,92.0,0 -157899431,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -157899431,"Call of Duty Ghosts - Multiplayer",play,65.0,0 -157899431,"Shift 2 Unleashed",purchase,1.0,0 -157899431,"Shift 2 Unleashed",play,49.0,0 -157899431,"The Amazing Spider-Man 2",purchase,1.0,0 -157899431,"The Amazing Spider-Man 2",play,9.8,0 -157899431,"Counter-Strike Global Offensive",purchase,1.0,0 -157899431,"Counter-Strike Global Offensive",play,8.2,0 -157899431,"Call of Duty Ghosts",purchase,1.0,0 -157899431,"Call of Duty Ghosts",play,6.7,0 -157899431,"The Forest",purchase,1.0,0 -157899431,"The Forest",play,6.4,0 -157899431,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -157899431,"METAL GEAR SOLID V GROUND ZEROES",play,5.4,0 -157899431,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -157899431,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.1,0 -157899431,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -157899431,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -157899431,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -192623666,"Dota 2",purchase,1.0,0 -192623666,"Dota 2",play,56.0,0 -184508601,"Age of Empires II HD Edition",purchase,1.0,0 -184508601,"Age of Empires II HD The Forgotten",purchase,1.0,0 -184508601,"Age of Empires III Complete Collection",purchase,1.0,0 -184508601,"Age of Mythology Extended Edition",purchase,1.0,0 -184508601,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -184508601,"Rise of Nations Extended Edition",purchase,1.0,0 -184508601,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -184508601,"The Elder Scrolls V Skyrim",purchase,1.0,0 -184508601,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -184508601,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -184508601,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -184508601,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -184508601,"The Witcher 3 Wild Hunt",purchase,1.0,0 -184508601,"The Witcher Enhanced Edition",purchase,1.0,0 -184508601,"War Thunder",purchase,1.0,0 -30064076,"Counter-Strike Condition Zero",purchase,1.0,0 -30064076,"Counter-Strike Condition Zero",play,0.6,0 -30064076,"Counter-Strike",purchase,1.0,0 -30064076,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -7203603,"Counter-Strike Global Offensive",purchase,1.0,0 -7203603,"Counter-Strike Global Offensive",play,449.0,0 -7203603,"The Lord of the Rings Online",purchase,1.0,0 -7203603,"The Lord of the Rings Online",play,263.0,0 -7203603,"Rust",purchase,1.0,0 -7203603,"Rust",play,262.0,0 -7203603,"Marvel Heroes 2015",purchase,1.0,0 -7203603,"Marvel Heroes 2015",play,164.0,0 -7203603,"Counter-Strike Source",purchase,1.0,0 -7203603,"Counter-Strike Source",play,115.0,0 -7203603,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -7203603,"Call of Duty Modern Warfare 2 - Multiplayer",play,71.0,0 -7203603,"Chivalry Medieval Warfare",purchase,1.0,0 -7203603,"Chivalry Medieval Warfare",play,44.0,0 -7203603,"Call of Duty Modern Warfare 2",purchase,1.0,0 -7203603,"Call of Duty Modern Warfare 2",play,14.3,0 -7203603,"Sins of a Dark Age",purchase,1.0,0 -7203603,"Sins of a Dark Age",play,10.7,0 -7203603,"Team Fortress 2",purchase,1.0,0 -7203603,"Team Fortress 2",play,10.3,0 -7203603,"America's Army Proving Grounds",purchase,1.0,0 -7203603,"America's Army Proving Grounds",play,9.1,0 -7203603,"Counter-Strike",purchase,1.0,0 -7203603,"Counter-Strike",play,7.0,0 -7203603,"Dead Island Epidemic",purchase,1.0,0 -7203603,"Dead Island Epidemic",play,6.0,0 -7203603,"Age of Conan Unchained - EU version",purchase,1.0,0 -7203603,"Age of Conan Unchained - EU version",play,4.2,0 -7203603,"PlanetSide 2",purchase,1.0,0 -7203603,"PlanetSide 2",play,1.7,0 -7203603,"F.E.A.R. Online",purchase,1.0,0 -7203603,"F.E.A.R. Online",play,0.4,0 -7203603,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -7203603,"Operation Flashpoint Dragon Rising",play,0.2,0 -7203603,"ArcheAge",purchase,1.0,0 -7203603,"RaceRoom Racing Experience ",purchase,1.0,0 -7203603,"Day of Defeat",purchase,1.0,0 -7203603,"Deathmatch Classic",purchase,1.0,0 -7203603,"Half-Life",purchase,1.0,0 -7203603,"Half-Life 2",purchase,1.0,0 -7203603,"Half-Life 2 Deathmatch",purchase,1.0,0 -7203603,"Half-Life 2 Lost Coast",purchase,1.0,0 -7203603,"Half-Life Blue Shift",purchase,1.0,0 -7203603,"Half-Life Opposing Force",purchase,1.0,0 -7203603,"Patch testing for Chivalry",purchase,1.0,0 -7203603,"Portal",purchase,1.0,0 -7203603,"Ricochet",purchase,1.0,0 -7203603,"Robocraft",purchase,1.0,0 -7203603,"Team Fortress Classic",purchase,1.0,0 -7203603,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -150789931,"The Elder Scrolls V Skyrim",purchase,1.0,0 -150789931,"The Elder Scrolls V Skyrim",play,295.0,0 -150789931,"Total War SHOGUN 2",purchase,1.0,0 -150789931,"Total War SHOGUN 2",play,158.0,0 -150789931,"Fallout New Vegas",purchase,1.0,0 -150789931,"Fallout New Vegas",play,153.0,0 -150789931,"The Elder Scrolls III Morrowind",purchase,1.0,0 -150789931,"The Elder Scrolls III Morrowind",play,132.0,0 -150789931,"Mount & Blade Warband",purchase,1.0,0 -150789931,"Mount & Blade Warband",play,117.0,0 -150789931,"Sid Meier's Civilization V",purchase,1.0,0 -150789931,"Sid Meier's Civilization V",play,103.0,0 -150789931,"PAYDAY 2",purchase,1.0,0 -150789931,"PAYDAY 2",play,71.0,0 -150789931,"Gothic 3",purchase,1.0,0 -150789931,"Gothic 3",play,54.0,0 -150789931,"Terraria",purchase,1.0,0 -150789931,"Terraria",play,40.0,0 -150789931,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -150789931,"The Elder Scrolls IV Oblivion ",play,35.0,0 -150789931,"FINAL FANTASY VII",purchase,1.0,0 -150789931,"FINAL FANTASY VII",play,23.0,0 -150789931,"Mount & Blade With Fire and Sword",purchase,1.0,0 -150789931,"Mount & Blade With Fire and Sword",play,22.0,0 -150789931,"7 Days to Die",purchase,1.0,0 -150789931,"7 Days to Die",play,13.1,0 -150789931,"The Guild II Renaissance",purchase,1.0,0 -150789931,"The Guild II Renaissance",play,12.6,0 -150789931,"Valkyria Chronicles",purchase,1.0,0 -150789931,"Valkyria Chronicles",play,11.0,0 -150789931,"The Escapists",purchase,1.0,0 -150789931,"The Escapists",play,10.8,0 -150789931,"RPG Maker VX Ace",purchase,1.0,0 -150789931,"RPG Maker VX Ace",play,8.8,0 -150789931,"Life is Feudal Your Own",purchase,1.0,0 -150789931,"Life is Feudal Your Own",play,5.5,0 -150789931,"Revolution Ace",purchase,1.0,0 -150789931,"Revolution Ace",play,5.2,0 -150789931,"Evil Genius",purchase,1.0,0 -150789931,"Evil Genius",play,3.6,0 -150789931,"Space Engineers",purchase,1.0,0 -150789931,"Space Engineers",play,2.6,0 -150789931,"The Banner Saga",purchase,1.0,0 -150789931,"The Banner Saga",play,2.3,0 -150789931,"The Guild II",purchase,1.0,0 -150789931,"The Guild II",play,2.2,0 -150789931,"Stranded Deep",purchase,1.0,0 -150789931,"Stranded Deep",play,2.1,0 -150789931,"Mount & Blade",purchase,1.0,0 -150789931,"Mount & Blade",play,1.7,0 -150789931,"Starpoint Gemini 2",purchase,1.0,0 -150789931,"Starpoint Gemini 2",play,1.2,0 -150789931,"Crusader Kings II",purchase,1.0,0 -150789931,"Crusader Kings II",play,1.1,0 -150789931,"The Long Dark",purchase,1.0,0 -150789931,"The Long Dark",play,1.0,0 -150789931,"Clergy Splode",purchase,1.0,0 -150789931,"Clergy Splode",play,0.4,0 -150789931,"The Guild Gold Edition",purchase,1.0,0 -150789931,"The Guild Gold Edition",play,0.4,0 -150789931,"SpellForce Platinum Edition",purchase,1.0,0 -150789931,"SpellForce Platinum Edition",play,0.2,0 -150789931,"Age of Empires II HD Edition",purchase,1.0,0 -150789931,"Age of Empires II HD Edition",play,0.1,0 -150789931,"FINAL FANTASY VIII",purchase,1.0,0 -150789931,"Age of Empires II HD The Forgotten",purchase,1.0,0 -150789931,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -150789931,"Fallout New Vegas Dead Money",purchase,1.0,0 -150789931,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -150789931,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -150789931,"Mount & Blade Warband - Viking Conquest Reforged Edition",purchase,1.0,0 -150789931,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -150789931,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -150789931,"SpellForce 2 - Demons of the Past",purchase,1.0,0 -150789931,"SpellForce 2 - Demons of the Past - Soundtrack",purchase,1.0,0 -150789931,"SpellForce 2 - Faith in Destiny",purchase,1.0,0 -150789931,"SpellForce 2 Gold Edition",purchase,1.0,0 -150789931,"The Banner Saga - Mod Content",purchase,1.0,0 -150789931,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -150789931,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -150789931,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -150789931,"The Guild II - Pirates of the European Seas",purchase,1.0,0 -150789931,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -150789931,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -150789931,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -150789931,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -150789931,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -48415876,"Wargame European Escalation",purchase,1.0,0 -48415876,"Wargame European Escalation",play,2.9,0 -48415876,"Risen 2 - Dark Waters",purchase,1.0,0 -48415876,"Risen 2 - Dark Waters",play,0.8,0 -198380393,"GunZ 2 The Second Duel",purchase,1.0,0 -198380393,"GunZ 2 The Second Duel",play,2.4,0 -198380393,"Unturned",purchase,1.0,0 -235692659,"Team Fortress 2",purchase,1.0,0 -235692659,"Team Fortress 2",play,152.0,0 -235692659,"Terraria",purchase,1.0,0 -235692659,"Terraria",play,68.0,0 -235692659,"Unturned",purchase,1.0,0 -235692659,"Unturned",play,50.0,0 -235692659,"Dota 2",purchase,1.0,0 -235692659,"Dota 2",play,36.0,0 -235692659,"Hitman Blood Money",purchase,1.0,0 -235692659,"Hitman Blood Money",play,15.2,0 -235692659,"Portal 2",purchase,1.0,0 -235692659,"Portal 2",play,13.1,0 -235692659,"Counter-Strike Global Offensive",purchase,1.0,0 -235692659,"Counter-Strike Global Offensive",play,12.9,0 -235692659,"PAYDAY 2",purchase,1.0,0 -235692659,"PAYDAY 2",play,10.5,0 -235692659,"NOT A HERO",purchase,1.0,0 -235692659,"NOT A HERO",play,10.4,0 -235692659,"Left 4 Dead 2",purchase,1.0,0 -235692659,"Left 4 Dead 2",play,8.2,0 -235692659,"Dead Island Riptide",purchase,1.0,0 -235692659,"Dead Island Riptide",play,6.2,0 -235692659,"Warframe",purchase,1.0,0 -235692659,"Warframe",play,5.7,0 -235692659,"Shadow Warrior",purchase,1.0,0 -235692659,"Shadow Warrior",play,4.9,0 -235692659,"Dead Island",purchase,1.0,0 -235692659,"Dead Island",play,4.8,0 -235692659,"Saints Row The Third",purchase,1.0,0 -235692659,"Saints Row The Third",play,4.7,0 -235692659,"Mirror's Edge",purchase,1.0,0 -235692659,"Mirror's Edge",play,4.0,0 -235692659,"The Expendabros",purchase,1.0,0 -235692659,"The Expendabros",play,3.2,0 -235692659,"Trove",purchase,1.0,0 -235692659,"Trove",play,2.1,0 -235692659,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -235692659,"Viscera Cleanup Detail Shadow Warrior",play,1.6,0 -235692659,"Apotheon",purchase,1.0,0 -235692659,"Apotheon",play,1.6,0 -235692659,"Clicker Heroes",purchase,1.0,0 -235692659,"Clicker Heroes",play,1.2,0 -235692659,"TERA",purchase,1.0,0 -235692659,"TERA",play,1.1,0 -235692659,"Serious Sam HD The First Encounter",purchase,1.0,0 -235692659,"Serious Sam HD The First Encounter",play,1.1,0 -235692659,"Dirty Bomb",purchase,1.0,0 -235692659,"Dirty Bomb",play,0.9,0 -235692659,"sZone-Online",purchase,1.0,0 -235692659,"sZone-Online",play,0.6,0 -235692659,"Dead Island Epidemic",purchase,1.0,0 -235692659,"Dead Island Epidemic",play,0.5,0 -235692659,"Block N Load",purchase,1.0,0 -235692659,"Block N Load",play,0.4,0 -235692659,"The Binding of Isaac",purchase,1.0,0 -235692659,"The Binding of Isaac",play,0.4,0 -235692659,"Fistful of Frags",purchase,1.0,0 -235692659,"Fistful of Frags",play,0.3,0 -235692659,"Defy Gravity",purchase,1.0,0 -235692659,"Defy Gravity",play,0.2,0 -235692659,"Legend of Dungeon Masters",purchase,1.0,0 -235692659,"Legend of Dungeon Masters",play,0.2,0 -235692659,"Insurgency",purchase,1.0,0 -235692659,"Insurgency",play,0.1,0 -235692659,"Time Gentlemen, Please!",purchase,1.0,0 -235692659,"Robocraft",purchase,1.0,0 -235692659,"Amnesia The Dark Descent",purchase,1.0,0 -235692659,"Anarchy Arcade",purchase,1.0,0 -235692659,"Ben There, Dan That!",purchase,1.0,0 -235692659,"Panzar",purchase,1.0,0 -235692659,"Pirates of Black Cove Gold",purchase,1.0,0 -235692659,"Serious Sam Classic The First Encounter",purchase,1.0,0 -235692659,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -235692659,"Serious Sam Classics Revolution",purchase,1.0,0 -235692659,"Sun Blast",purchase,1.0,0 -235692659,"Survarium",purchase,1.0,0 -235692659,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -136953993,"Dota 2",purchase,1.0,0 -136953993,"Dota 2",play,0.3,0 -268585240,"HAWKEN",purchase,1.0,0 -268585240,"HAWKEN",play,0.6,0 -95819457,"Dungeon Defenders",purchase,1.0,0 -95819457,"Dungeon Defenders",play,5.5,0 -117402082,"Path of Exile",purchase,1.0,0 -117402082,"Path of Exile",play,6.6,0 -117402082,"Dota 2",purchase,1.0,0 -117402082,"Dota 2",play,2.4,0 -117402082,"Archeblade",purchase,1.0,0 -117402082,"Archeblade",play,0.4,0 -117402082,"Marvel Heroes 2015",purchase,1.0,0 -117402082,"Marvel Heroes 2015",play,0.3,0 -93034535,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -93034535,"Call of Duty Modern Warfare 3 - Multiplayer",play,25.0,0 -93034535,"Call of Duty Modern Warfare 3",purchase,1.0,0 -93034535,"Call of Duty Modern Warfare 3",play,8.1,0 -200524998,"Path of Exile",purchase,1.0,0 -200524998,"Path of Exile",play,75.0,0 -200524998,"Chivalry Medieval Warfare",purchase,1.0,0 -200524998,"Chivalry Medieval Warfare",play,41.0,0 -200524998,"Endless Legend",purchase,1.0,0 -200524998,"Endless Legend",play,4.0,0 -200524998,"Garry's Mod",purchase,1.0,0 -200524998,"Garry's Mod",play,1.6,0 -200524998,"Patch testing for Chivalry",purchase,1.0,0 -266278004,"Team Fortress 2",purchase,1.0,0 -266278004,"Team Fortress 2",play,31.0,0 -266278004,"Realm of the Mad God",purchase,1.0,0 -66357156,"Half-Life 2",purchase,1.0,0 -66357156,"Half-Life 2",play,27.0,0 -66357156,"Half-Life 2 Episode One",purchase,1.0,0 -66357156,"Half-Life 2 Episode One",play,8.8,0 -66357156,"Team Fortress 2",purchase,1.0,0 -66357156,"Team Fortress 2",play,7.6,0 -66357156,"Portal",purchase,1.0,0 -66357156,"Portal",play,5.1,0 -66357156,"Half-Life 2 Episode Two",purchase,1.0,0 -66357156,"Half-Life 2 Episode Two",play,0.5,0 -66357156,"Half-Life 2 Lost Coast",purchase,1.0,0 -193539193,"Dota 2",purchase,1.0,0 -193539193,"Dota 2",play,1.0,0 -193539193,"Free to Play",purchase,1.0,0 -36611463,"Counter-Strike Source",purchase,1.0,0 -36611463,"Counter-Strike Source",play,25.0,0 -36611463,"Counter-Strike",purchase,1.0,0 -36611463,"Counter-Strike",play,1.7,0 -36611463,"Counter-Strike Condition Zero",purchase,1.0,0 -36611463,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -36611463,"Day of Defeat",purchase,1.0,0 -36611463,"Day of Defeat Source",purchase,1.0,0 -36611463,"Deathmatch Classic",purchase,1.0,0 -36611463,"Half-Life 2 Deathmatch",purchase,1.0,0 -36611463,"Half-Life 2 Lost Coast",purchase,1.0,0 -36611463,"Ricochet",purchase,1.0,0 -159524722,"Dota 2",purchase,1.0,0 -159524722,"Dota 2",play,34.0,0 -159524722,"Dead Island Epidemic",purchase,1.0,0 -159524722,"Dead Island Epidemic",play,21.0,0 -159524722,"Left 4 Dead 2",purchase,1.0,0 -159524722,"Left 4 Dead 2",play,2.1,0 -159524722,"Team Fortress 2",purchase,1.0,0 -159524722,"Team Fortress 2",play,0.8,0 -159524722,"War Thunder",purchase,1.0,0 -159524722,"War Thunder",play,0.4,0 -159524722,"Endless Sky",purchase,1.0,0 -159524722,"Endless Sky",play,0.2,0 -159524722,"Amnesia The Dark Descent",purchase,1.0,0 -159524722,"Heroes & Generals",purchase,1.0,0 -159524722,"RaceRoom Racing Experience ",purchase,1.0,0 -159524722,"Warframe",purchase,1.0,0 -166234928,"Dota 2",purchase,1.0,0 -166234928,"Dota 2",play,856.0,0 -239413586,"ARK Survival Evolved",purchase,1.0,0 -239413586,"ARK Survival Evolved",play,153.0,0 -239413586,"Cities Skylines",purchase,1.0,0 -239413586,"Cities Skylines",play,70.0,0 -239413586,"Counter-Strike Global Offensive",purchase,1.0,0 -239413586,"Counter-Strike Global Offensive",play,49.0,0 -239413586,"Dead Rising 3",purchase,1.0,0 -239413586,"Dead Rising 3",play,21.0,0 -239413586,"BeamNG.drive",purchase,1.0,0 -239413586,"BeamNG.drive",play,16.2,0 -239413586,"Spintires",purchase,1.0,0 -239413586,"Spintires",play,13.4,0 -239413586,"R.U.S.E",purchase,1.0,0 -239413586,"R.U.S.E",play,12.0,0 -239413586,"Just Cause 3",purchase,1.0,0 -239413586,"Just Cause 3",play,11.4,0 -239413586,"Batman Arkham Knight",purchase,1.0,0 -239413586,"Batman Arkham Knight",play,8.1,0 -239413586,"Total War ROME II - Emperor Edition",purchase,1.0,0 -239413586,"Total War ROME II - Emperor Edition",play,6.4,0 -239413586,"Left 4 Dead 2",purchase,1.0,0 -239413586,"Left 4 Dead 2",play,5.3,0 -239413586,"7 Days to Die",purchase,1.0,0 -239413586,"7 Days to Die",play,5.2,0 -239413586,"RACE 07",purchase,1.0,0 -239413586,"RACE 07",play,4.2,0 -239413586,"HAWKEN",purchase,1.0,0 -239413586,"HAWKEN",play,2.0,0 -239413586,"RaceRoom Racing Experience ",purchase,1.0,0 -239413586,"RaceRoom Racing Experience ",play,0.5,0 -239413586,"GTR Evolution",purchase,1.0,0 -239413586,"STCC II",purchase,1.0,0 -239413586,"GT Legends",purchase,1.0,0 -239413586,"The WTCC 2010 Pack",purchase,1.0,0 -239413586,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -239413586,"Batman Arkham City GOTY",purchase,1.0,0 -239413586,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -239413586,"Batman Arkham Origins - Initiation",purchase,1.0,0 -239413586,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -239413586,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -239413586,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -239413586,"Batman Arkham Origins",purchase,1.0,0 -239413586,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -239413586,"Dead Rising 3 DLC1",purchase,1.0,0 -239413586,"Dead Rising 3 DLC2",purchase,1.0,0 -239413586,"Dead Rising 3 DLC3",purchase,1.0,0 -239413586,"Dead Rising 3 DLC4",purchase,1.0,0 -239413586,"GT Power Expansion",purchase,1.0,0 -239413586,"GTR 2 - FIA GT Racing Game",purchase,1.0,0 -239413586,"R.U.S.E.",purchase,1.0,0 -239413586,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -239413586,"RACE Caterham Expansion",purchase,1.0,0 -239413586,"Race The WTCC Game",purchase,1.0,0 -239413586,"RACE On",purchase,1.0,0 -239413586,"STCC The Game",purchase,1.0,0 -239413586,"The Retro Expansion",purchase,1.0,0 -239413586,"Victory Command",purchase,1.0,0 -169183481,"Team Fortress 2",purchase,1.0,0 -169183481,"Team Fortress 2",play,0.1,0 -204084775,"Firefall",purchase,1.0,0 -30041199,"Half-Life 2",purchase,1.0,0 -30041199,"Half-Life 2 Lost Coast",purchase,1.0,0 -169688576,"The Elder Scrolls V Skyrim",purchase,1.0,0 -169688576,"The Elder Scrolls V Skyrim",play,0.1,0 -169688576,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -169688576,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -169688576,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -18036199,"Counter-Strike Source",purchase,1.0,0 -18036199,"Counter-Strike Source",play,269.0,0 -18036199,"Left 4 Dead 2",purchase,1.0,0 -18036199,"Left 4 Dead 2",play,29.0,0 -18036199,"Sleeping Dogs",purchase,1.0,0 -18036199,"Sleeping Dogs",play,14.2,0 -18036199,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -18036199,"Call of Duty 4 Modern Warfare",play,13.6,0 -18036199,"Just Cause 3",purchase,1.0,0 -18036199,"Just Cause 3",play,9.2,0 -18036199,"Counter-Strike Nexon Zombies",purchase,1.0,0 -18036199,"Counter-Strike Nexon Zombies",play,4.8,0 -18036199,"DC Universe Online",purchase,1.0,0 -18036199,"DC Universe Online",play,1.7,0 -18036199,"Alien Swarm",purchase,1.0,0 -18036199,"Alien Swarm",play,0.3,0 -18036199,"Fishing Planet",purchase,1.0,0 -18036199,"Fishing Planet",play,0.1,0 -18036199,"Aion",purchase,1.0,0 -18036199,"Counter-Strike",purchase,1.0,0 -18036199,"Counter-Strike Condition Zero",purchase,1.0,0 -18036199,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -18036199,"Day of Defeat",purchase,1.0,0 -18036199,"Day of Defeat Source",purchase,1.0,0 -18036199,"Deathmatch Classic",purchase,1.0,0 -18036199,"Half-Life",purchase,1.0,0 -18036199,"Half-Life 2",purchase,1.0,0 -18036199,"Half-Life 2 Deathmatch",purchase,1.0,0 -18036199,"Half-Life 2 Lost Coast",purchase,1.0,0 -18036199,"Half-Life Blue Shift",purchase,1.0,0 -18036199,"Half-Life Opposing Force",purchase,1.0,0 -18036199,"Half-Life Source",purchase,1.0,0 -18036199,"Half-Life Deathmatch Source",purchase,1.0,0 -18036199,"Ricochet",purchase,1.0,0 -18036199,"Team Fortress Classic",purchase,1.0,0 -297690673,"Unturned",purchase,1.0,0 -297690673,"Unturned",play,26.0,0 -297690673,"Counter-Strike Condition Zero",purchase,1.0,0 -297690673,"Counter-Strike Condition Zero",play,8.7,0 -297690673,"Counter-Strike",purchase,1.0,0 -297690673,"Counter-Strike",play,0.1,0 -297690673,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -158000494,"Left 4 Dead 2",purchase,1.0,0 -309181805,"Brawlhalla",purchase,1.0,0 -309181805,"Brawlhalla",play,3.2,0 -309181805,"Apotheon Arena",purchase,1.0,0 -227535595,"Dota 2",purchase,1.0,0 -227535595,"Dota 2",play,2.1,0 -189957616,"Team Fortress 2",purchase,1.0,0 -189957616,"Team Fortress 2",play,0.8,0 -100267049,"Sid Meier's Civilization V",purchase,1.0,0 -100267049,"Sid Meier's Civilization V",play,15.2,0 -153545980,"Dota 2",purchase,1.0,0 -153545980,"Dota 2",play,0.5,0 -74716918,"Fallout New Vegas",purchase,1.0,0 -74716918,"Fallout New Vegas",play,173.0,0 -74709077,"Call of Duty Black Ops",purchase,1.0,0 -74709077,"Call of Duty Black Ops",play,10.2,0 -74709077,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -76881558,"Alien Swarm",purchase,1.0,0 -76881558,"Alien Swarm",play,2.5,0 -217770237,"Dota 2",purchase,1.0,0 -217770237,"Dota 2",play,1.8,0 -169576959,"Dota 2",purchase,1.0,0 -169576959,"Dota 2",play,0.3,0 -66464409,"Fallout 4",purchase,1.0,0 -66464409,"Fallout 4",play,38.0,0 -66464409,"Darkest Dungeon",purchase,1.0,0 -66464409,"Darkest Dungeon",play,10.4,0 -66464409,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -66464409,"STAR WARS Knights of the Old Republic II The Sith Lords",play,5.4,0 -66464409,"Empire Total War",purchase,1.0,0 -66464409,"Empire Total War",play,1.6,0 -66464409,"DayZ",purchase,1.0,0 -66464409,"DayZ",play,1.1,0 -66464409,"Age of Empires II HD Edition",purchase,1.0,0 -66464409,"Age of Empires II HD Edition",play,0.3,0 -66464409,"Arma 2 Operation Arrowhead",purchase,1.0,0 -66464409,"Arma 2 Operation Arrowhead",play,0.2,0 -66464409,"Arma 2",purchase,1.0,0 -66464409,"Age of Empires II HD The Forgotten",purchase,1.0,0 -66464409,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -7585698,"Counter-Strike",purchase,1.0,0 -7585698,"Counter-Strike",play,0.5,0 -7585698,"Counter-Strike Condition Zero",purchase,1.0,0 -7585698,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -7585698,"Day of Defeat",purchase,1.0,0 -7585698,"Deathmatch Classic",purchase,1.0,0 -7585698,"Half-Life",purchase,1.0,0 -7585698,"Half-Life Blue Shift",purchase,1.0,0 -7585698,"Half-Life Opposing Force",purchase,1.0,0 -7585698,"Ricochet",purchase,1.0,0 -7585698,"Team Fortress Classic",purchase,1.0,0 -277984366,"Unturned",purchase,1.0,0 -277984366,"Unturned",play,13.5,0 -277984366,"Trove",purchase,1.0,0 -277984366,"Trove",play,0.6,0 -277984366,"UberStrike",purchase,1.0,0 -277984366,"UberStrike",play,0.3,0 -277984366,"Haunted Memories",purchase,1.0,0 -277984366,"All Is Dust",purchase,1.0,0 -277984366,"No More Room in Hell",purchase,1.0,0 -193058986,"Unturned",purchase,1.0,0 -193058986,"Unturned",play,1.9,0 -106042595,"Garry's Mod",purchase,1.0,0 -106042595,"Garry's Mod",play,64.0,0 -106042595,"Dota 2",purchase,1.0,0 -106042595,"Dota 2",play,15.2,0 -106042595,"Team Fortress 2",purchase,1.0,0 -106042595,"Team Fortress 2",play,12.4,0 -106042595,"Alien Swarm",purchase,1.0,0 -106042595,"Alien Swarm",play,3.4,0 -106042595,"Depression Quest",purchase,1.0,0 -33013552,"GameMaker Studio",purchase,1.0,0 -33013552,"GameMaker Studio",play,730.0,0 -33013552,"Battlefield Bad Company 2",purchase,1.0,0 -33013552,"Battlefield Bad Company 2",play,86.0,0 -33013552,"Sid Meier's Civilization V",purchase,1.0,0 -33013552,"Sid Meier's Civilization V",play,46.0,0 -33013552,"Magicka",purchase,1.0,0 -33013552,"Magicka",play,31.0,0 -33013552,"The Secret World",purchase,1.0,0 -33013552,"The Secret World",play,28.0,0 -33013552,"Terraria",purchase,1.0,0 -33013552,"Terraria",play,27.0,0 -33013552,"Portal 2",purchase,1.0,0 -33013552,"Portal 2",play,27.0,0 -33013552,"Dota 2",purchase,1.0,0 -33013552,"Dota 2",play,24.0,0 -33013552,"Sleeping Dogs",purchase,1.0,0 -33013552,"Sleeping Dogs",play,23.0,0 -33013552,"EVE Online",purchase,1.0,0 -33013552,"EVE Online",play,21.0,0 -33013552,"Middle-earth Shadow of Mordor",purchase,1.0,0 -33013552,"Middle-earth Shadow of Mordor",play,19.4,0 -33013552,"Valdis Story Abyssal City",purchase,1.0,0 -33013552,"Valdis Story Abyssal City",play,15.2,0 -33013552,"Ultra Street Fighter IV",purchase,1.0,0 -33013552,"Ultra Street Fighter IV",play,14.9,0 -33013552,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -33013552,"Star Wars Jedi Knight Dark Forces II",play,14.8,0 -33013552,"Left 4 Dead 2",purchase,1.0,0 -33013552,"Left 4 Dead 2",play,13.4,0 -33013552,"The Walking Dead",purchase,1.0,0 -33013552,"The Walking Dead",play,12.3,0 -33013552,"Tomb Raider",purchase,1.0,0 -33013552,"Tomb Raider",play,10.3,0 -33013552,"Global Agenda",purchase,1.0,0 -33013552,"Global Agenda",play,9.4,0 -33013552,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -33013552,"Star Wars - Jedi Knight II Jedi Outcast",play,8.9,0 -33013552,"The Wolf Among Us",purchase,1.0,0 -33013552,"The Wolf Among Us",play,8.3,0 -33013552,"The Walking Dead Season Two",purchase,1.0,0 -33013552,"The Walking Dead Season Two",play,8.1,0 -33013552,"Lara Croft and the Guardian of Light",purchase,1.0,0 -33013552,"Lara Croft and the Guardian of Light",play,7.9,0 -33013552,"Team Fortress 2",purchase,1.0,0 -33013552,"Team Fortress 2",play,7.8,0 -33013552,"Elite Dangerous",purchase,1.0,0 -33013552,"Elite Dangerous",play,7.8,0 -33013552,"Starbound",purchase,1.0,0 -33013552,"Starbound",play,7.6,0 -33013552,"Don't Starve",purchase,1.0,0 -33013552,"Don't Starve",play,7.4,0 -33013552,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -33013552,"The Witcher 2 Assassins of Kings Enhanced Edition",play,7.1,0 -33013552,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -33013552,"Dragon Age Origins - Ultimate Edition",play,6.8,0 -33013552,"Magic 2014 ",purchase,1.0,0 -33013552,"Magic 2014 ",play,6.6,0 -33013552,"Alien Swarm",purchase,1.0,0 -33013552,"Alien Swarm",play,6.5,0 -33013552,"BioShock Infinite",purchase,1.0,0 -33013552,"BioShock Infinite",play,6.3,0 -33013552,"Euro Truck Simulator 2",purchase,1.0,0 -33013552,"Euro Truck Simulator 2",play,6.2,0 -33013552,"Chivalry Medieval Warfare",purchase,1.0,0 -33013552,"Chivalry Medieval Warfare",play,6.1,0 -33013552,"Tom Clancy's Rainbow Six Siege",purchase,1.0,0 -33013552,"Tom Clancy's Rainbow Six Siege",play,6.1,0 -33013552,"Mortal Kombat Komplete Edition",purchase,1.0,0 -33013552,"Mortal Kombat Komplete Edition",play,5.3,0 -33013552,"Crusader Kings II",purchase,1.0,0 -33013552,"Crusader Kings II",play,5.2,0 -33013552,"The Elder Scrolls V Skyrim",purchase,1.0,0 -33013552,"The Elder Scrolls V Skyrim",play,5.0,0 -33013552,"Nether",purchase,1.0,0 -33013552,"Nether",play,4.5,0 -33013552,"Magic The Gathering - Duels of the Planeswalkers 2013",purchase,1.0,0 -33013552,"Magic The Gathering - Duels of the Planeswalkers 2013",play,4.3,0 -33013552,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -33013552,"Rising Storm/Red Orchestra 2 Multiplayer",play,4.2,0 -33013552,"Hotline Miami",purchase,1.0,0 -33013552,"Hotline Miami",play,4.1,0 -33013552,"God Mode",purchase,1.0,0 -33013552,"God Mode",play,4.0,0 -33013552,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -33013552,"Injustice Gods Among Us Ultimate Edition",play,3.9,0 -33013552,"Street Fighter X Tekken",purchase,1.0,0 -33013552,"Street Fighter X Tekken",play,3.9,0 -33013552,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -33013552,"Dark Souls Prepare to Die Edition",play,3.7,0 -33013552,"Counter-Strike Source",purchase,1.0,0 -33013552,"Counter-Strike Source",play,3.7,0 -33013552,"Space Run",purchase,1.0,0 -33013552,"Space Run",play,3.7,0 -33013552,"Bastion",purchase,1.0,0 -33013552,"Bastion",play,3.6,0 -33013552,"Altitude",purchase,1.0,0 -33013552,"Altitude",play,3.0,0 -33013552,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -33013552,"Call of Duty 4 Modern Warfare",play,3.0,0 -33013552,"Transistor",purchase,1.0,0 -33013552,"Transistor",play,3.0,0 -33013552,"DRAGON BALL XENOVERSE",purchase,1.0,0 -33013552,"DRAGON BALL XENOVERSE",play,3.0,0 -33013552,"Trine",purchase,1.0,0 -33013552,"Trine",play,2.9,0 -33013552,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -33013552,"Unreal Tournament 3 Black Edition",play,2.9,0 -33013552,"Dungeonland",purchase,1.0,0 -33013552,"Dungeonland",play,2.6,0 -33013552,"Plain Sight",purchase,1.0,0 -33013552,"Plain Sight",play,2.6,0 -33013552,"XCOM Enemy Unknown",purchase,1.0,0 -33013552,"XCOM Enemy Unknown",play,2.5,0 -33013552,"Torchlight II",purchase,1.0,0 -33013552,"Torchlight II",play,2.5,0 -33013552,"Don't Starve Together Beta",purchase,1.0,0 -33013552,"Don't Starve Together Beta",play,2.4,0 -33013552,"Monaco",purchase,1.0,0 -33013552,"Monaco",play,2.4,0 -33013552,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -33013552,"Sonic & All-Stars Racing Transformed",play,2.3,0 -33013552,"State of Decay",purchase,1.0,0 -33013552,"State of Decay",play,2.2,0 -33013552,"LIMBO",purchase,1.0,0 -33013552,"LIMBO",play,2.2,0 -33013552,"FINAL FANTASY XIII",purchase,1.0,0 -33013552,"FINAL FANTASY XIII",play,2.2,0 -33013552,"Deadlight",purchase,1.0,0 -33013552,"Deadlight",play,2.1,0 -33013552,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -33013552,"Game of Thrones - A Telltale Games Series",play,2.1,0 -33013552,"Tony Hawk's Pro Skater HD",purchase,1.0,0 -33013552,"Tony Hawk's Pro Skater HD",play,2.1,0 -33013552,"Super Meat Boy",purchase,1.0,0 -33013552,"Super Meat Boy",play,2.0,0 -33013552,"Star Wars Knights of the Old Republic",purchase,1.0,0 -33013552,"Star Wars Knights of the Old Republic",play,1.8,0 -33013552,"A.R.E.S.",purchase,1.0,0 -33013552,"A.R.E.S.",play,1.8,0 -33013552,"Indie Game The Movie",purchase,1.0,0 -33013552,"Indie Game The Movie",play,1.8,0 -33013552,"FTL Faster Than Light",purchase,1.0,0 -33013552,"FTL Faster Than Light",play,1.8,0 -33013552,"Trine 2",purchase,1.0,0 -33013552,"Trine 2",play,1.7,0 -33013552,"Deus Ex Human Revolution",purchase,1.0,0 -33013552,"Deus Ex Human Revolution",play,1.7,0 -33013552,"Surgeon Simulator",purchase,1.0,0 -33013552,"Surgeon Simulator",play,1.7,0 -33013552,"This War of Mine",purchase,1.0,0 -33013552,"This War of Mine",play,1.7,0 -33013552,"The Legend of Heroes Trails in the Sky",purchase,1.0,0 -33013552,"The Legend of Heroes Trails in the Sky",play,1.7,0 -33013552,"The Lord of the Rings War in the North",purchase,1.0,0 -33013552,"The Lord of the Rings War in the North",play,1.6,0 -33013552,"Beat Hazard",purchase,1.0,0 -33013552,"Beat Hazard",play,1.6,0 -33013552,"Starpoint Gemini 2",purchase,1.0,0 -33013552,"Starpoint Gemini 2",play,1.5,0 -33013552,"Insurgency",purchase,1.0,0 -33013552,"Insurgency",play,1.5,0 -33013552,"One Finger Death Punch",purchase,1.0,0 -33013552,"One Finger Death Punch",play,1.5,0 -33013552,"Batman Arkham City GOTY",purchase,1.0,0 -33013552,"Batman Arkham City GOTY",play,1.5,0 -33013552,"Universe Sandbox",purchase,1.0,0 -33013552,"Universe Sandbox",play,1.4,0 -33013552,"The Showdown Effect",purchase,1.0,0 -33013552,"The Showdown Effect",play,1.4,0 -33013552,"Audiosurf",purchase,1.0,0 -33013552,"Audiosurf",play,1.3,0 -33013552,"Company of Heroes",purchase,1.0,0 -33013552,"Company of Heroes",play,1.3,0 -33013552,"Child of Light",purchase,1.0,0 -33013552,"Child of Light",play,1.3,0 -33013552,"RollerCoaster Tycoon Deluxe",purchase,1.0,0 -33013552,"RollerCoaster Tycoon Deluxe",play,1.2,0 -33013552,"SkyDrift",purchase,1.0,0 -33013552,"SkyDrift",play,1.2,0 -33013552,"Giana Sisters Twisted Dreams",purchase,1.0,0 -33013552,"Giana Sisters Twisted Dreams",play,1.2,0 -33013552,"Counter-Strike Global Offensive",purchase,1.0,0 -33013552,"Counter-Strike Global Offensive",play,1.2,0 -33013552,"DC Universe Online",purchase,1.0,0 -33013552,"DC Universe Online",play,1.2,0 -33013552,"A Valley Without Wind",purchase,1.0,0 -33013552,"A Valley Without Wind",play,1.2,0 -33013552,"Defiance",purchase,1.0,0 -33013552,"Defiance",play,1.1,0 -33013552,"Star Wars - Battlefront II",purchase,1.0,0 -33013552,"Star Wars - Battlefront II",play,1.1,0 -33013552,"Super Hexagon",purchase,1.0,0 -33013552,"Super Hexagon",play,1.0,0 -33013552,"Call of Juarez Gunslinger",purchase,1.0,0 -33013552,"Call of Juarez Gunslinger",play,1.0,0 -33013552,"Braid",purchase,1.0,0 -33013552,"Braid",play,1.0,0 -33013552,"Super House of Dead Ninjas",purchase,1.0,0 -33013552,"Super House of Dead Ninjas",play,0.9,0 -33013552,"L.A. Noire",purchase,1.0,0 -33013552,"L.A. Noire",play,0.9,0 -33013552,"Unepic",purchase,1.0,0 -33013552,"Unepic",play,0.9,0 -33013552,"Rogue Legacy",purchase,1.0,0 -33013552,"Rogue Legacy",play,0.9,0 -33013552,"Dishonored",purchase,1.0,0 -33013552,"Dishonored",play,0.8,0 -33013552,"Garry's Mod",purchase,1.0,0 -33013552,"Garry's Mod",play,0.8,0 -33013552,"Castlevania Lords of Shadow - Ultimate Edition",purchase,1.0,0 -33013552,"Castlevania Lords of Shadow - Ultimate Edition",play,0.8,0 -33013552,"The Banner Saga",purchase,1.0,0 -33013552,"The Banner Saga",play,0.8,0 -33013552,"They Bleed Pixels",purchase,1.0,0 -33013552,"They Bleed Pixels",play,0.7,0 -33013552,"Star Wars Dark Forces",purchase,1.0,0 -33013552,"Star Wars Dark Forces",play,0.7,0 -33013552,"Cities XL Platinum",purchase,1.0,0 -33013552,"Cities XL Platinum",play,0.7,0 -33013552,"Gemini Rue",purchase,1.0,0 -33013552,"Gemini Rue",play,0.7,0 -33013552,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -33013552,"The Incredible Adventures of Van Helsing",play,0.7,0 -33013552,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -33013552,"Back to the Future Ep 1 - It's About Time",play,0.7,0 -33013552,"SpeedRunners",purchase,1.0,0 -33013552,"SpeedRunners",play,0.7,0 -33013552,"Papers, Please",purchase,1.0,0 -33013552,"Papers, Please",play,0.7,0 -33013552,"Sniper Elite V2",purchase,1.0,0 -33013552,"Sniper Elite V2",play,0.7,0 -33013552,"DiRT 3",purchase,1.0,0 -33013552,"DiRT 3",play,0.7,0 -33013552,"VVVVVV",purchase,1.0,0 -33013552,"VVVVVV",play,0.6,0 -33013552,"Hacker Evolution - Untold",purchase,1.0,0 -33013552,"Hacker Evolution - Untold",play,0.6,0 -33013552,"Dustforce",purchase,1.0,0 -33013552,"Dustforce",play,0.6,0 -33013552,"BioShock",purchase,1.0,0 -33013552,"BioShock",play,0.6,0 -33013552,"Orcs Must Die!",purchase,1.0,0 -33013552,"Orcs Must Die!",play,0.6,0 -33013552,"Dead Island",purchase,1.0,0 -33013552,"Dead Island",play,0.5,0 -33013552,"Sine Mora",purchase,1.0,0 -33013552,"Sine Mora",play,0.5,0 -33013552,"Joe Danger 2 The Movie",purchase,1.0,0 -33013552,"Joe Danger 2 The Movie",play,0.5,0 -33013552,"Jamestown",purchase,1.0,0 -33013552,"Jamestown",play,0.5,0 -33013552,"Atom Zombie Smasher ",purchase,1.0,0 -33013552,"Atom Zombie Smasher ",play,0.5,0 -33013552,"The Bridge",purchase,1.0,0 -33013552,"The Bridge",play,0.4,0 -33013552,"Capsized",purchase,1.0,0 -33013552,"Capsized",play,0.4,0 -33013552,"X3 Albion Prelude",purchase,1.0,0 -33013552,"X3 Albion Prelude",play,0.4,0 -33013552,"Ghostbusters The Video Game",purchase,1.0,0 -33013552,"Ghostbusters The Video Game",play,0.4,0 -33013552,"Crysis 2 Maximum Edition",purchase,1.0,0 -33013552,"Crysis 2 Maximum Edition",play,0.4,0 -33013552,"Poker Night 2",purchase,1.0,0 -33013552,"Poker Night 2",play,0.4,0 -33013552,"Retro City Rampage DX",purchase,1.0,0 -33013552,"Retro City Rampage DX",play,0.4,0 -33013552,"Castlevania Lords of Shadow Mirror of Fate HD",purchase,1.0,0 -33013552,"Castlevania Lords of Shadow Mirror of Fate HD",play,0.4,0 -33013552,"Total War SHOGUN 2",purchase,1.0,0 -33013552,"Total War SHOGUN 2",play,0.4,0 -33013552,"Door Kickers",purchase,1.0,0 -33013552,"Door Kickers",play,0.4,0 -33013552,"FEZ",purchase,1.0,0 -33013552,"FEZ",play,0.4,0 -33013552,"Mark of the Ninja",purchase,1.0,0 -33013552,"Mark of the Ninja",play,0.4,0 -33013552,"ENSLAVED Odyssey to the West Premium Edition",purchase,1.0,0 -33013552,"ENSLAVED Odyssey to the West Premium Edition",play,0.4,0 -33013552,"Gunpoint",purchase,1.0,0 -33013552,"Gunpoint",play,0.4,0 -33013552,"Symphony",purchase,1.0,0 -33013552,"Symphony",play,0.4,0 -33013552,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -33013552,"METAL GEAR RISING REVENGEANCE",play,0.4,0 -33013552,"Spec Ops The Line",purchase,1.0,0 -33013552,"Spec Ops The Line",play,0.4,0 -33013552,"Castle Crashers",purchase,1.0,0 -33013552,"Castle Crashers",play,0.3,0 -33013552,"X3 Terran Conflict",purchase,1.0,0 -33013552,"X3 Terran Conflict",play,0.3,0 -33013552,"Electronic Super Joy",purchase,1.0,0 -33013552,"Electronic Super Joy",play,0.3,0 -33013552,"PAC-MAN Championship Edition DX+",purchase,1.0,0 -33013552,"PAC-MAN Championship Edition DX+",play,0.3,0 -33013552,"Dust An Elysian Tail",purchase,1.0,0 -33013552,"Dust An Elysian Tail",play,0.3,0 -33013552,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -33013552,"Microsoft Flight Simulator X Steam Edition",play,0.3,0 -33013552,"BIT.TRIP RUNNER",purchase,1.0,0 -33013552,"BIT.TRIP RUNNER",play,0.3,0 -33013552,"Valkyria Chronicles",purchase,1.0,0 -33013552,"Valkyria Chronicles",play,0.3,0 -33013552,"Antichamber",purchase,1.0,0 -33013552,"Antichamber",play,0.3,0 -33013552,"Crayon Physics Deluxe",purchase,1.0,0 -33013552,"Crayon Physics Deluxe",play,0.3,0 -33013552,"Outlast",purchase,1.0,0 -33013552,"Outlast",play,0.3,0 -33013552,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -33013552,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.3,0 -33013552,"Arma 2 Operation Arrowhead",purchase,1.0,0 -33013552,"Arma 2 Operation Arrowhead",play,0.3,0 -33013552,"Dynamite Jack",purchase,1.0,0 -33013552,"Dynamite Jack",play,0.3,0 -33013552,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",purchase,1.0,0 -33013552,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",play,0.3,0 -33013552,"The Swapper",purchase,1.0,0 -33013552,"The Swapper",play,0.3,0 -33013552,"Vessel",purchase,1.0,0 -33013552,"Vessel",play,0.3,0 -33013552,"Guacamelee! Gold Edition",purchase,1.0,0 -33013552,"Guacamelee! Gold Edition",play,0.3,0 -33013552,"Shoot Many Robots",purchase,1.0,0 -33013552,"Shoot Many Robots",play,0.3,0 -33013552,"Sideway",purchase,1.0,0 -33013552,"Sideway",play,0.3,0 -33013552,"The Binding of Isaac",purchase,1.0,0 -33013552,"The Binding of Isaac",play,0.3,0 -33013552,"Steel Storm Burning Retribution",purchase,1.0,0 -33013552,"Steel Storm Burning Retribution",play,0.2,0 -33013552,"Breach & Clear",purchase,1.0,0 -33013552,"Breach & Clear",play,0.2,0 -33013552,"Nidhogg",purchase,1.0,0 -33013552,"Nidhogg",play,0.2,0 -33013552,"Arma 2",purchase,1.0,0 -33013552,"Arma 2",play,0.2,0 -33013552,"Hammerwatch",purchase,1.0,0 -33013552,"Hammerwatch",play,0.2,0 -33013552,"BloodRayne Betrayal",purchase,1.0,0 -33013552,"BloodRayne Betrayal",play,0.2,0 -33013552,"Strider",purchase,1.0,0 -33013552,"Strider",play,0.2,0 -33013552,"Source Filmmaker",purchase,1.0,0 -33013552,"Source Filmmaker",play,0.2,0 -33013552,"Blood Bowl Legendary Edition",purchase,1.0,0 -33013552,"Blood Bowl Legendary Edition",play,0.2,0 -33013552,"Shadowrun Returns",purchase,1.0,0 -33013552,"Shadowrun Returns",play,0.2,0 -33013552,"Brothers - A Tale of Two Sons",purchase,1.0,0 -33013552,"Brothers - A Tale of Two Sons",play,0.2,0 -33013552,"Pinball FX2",purchase,1.0,0 -33013552,"Pinball FX2",play,0.2,0 -33013552,"Savant - Ascent",purchase,1.0,0 -33013552,"Savant - Ascent",play,0.2,0 -33013552,"Cave Story+",purchase,1.0,0 -33013552,"Cave Story+",play,0.2,0 -33013552,"Hitman Sniper Challenge",purchase,1.0,0 -33013552,"Hitman Sniper Challenge",play,0.2,0 -33013552,"Saira",purchase,1.0,0 -33013552,"Saira",play,0.2,0 -33013552,"Lego Star Wars Saga",purchase,1.0,0 -33013552,"Lego Star Wars Saga",play,0.2,0 -33013552,"Age of Empires II HD Edition",purchase,1.0,0 -33013552,"Age of Empires II HD Edition",play,0.2,0 -33013552,"Samorost 2",purchase,1.0,0 -33013552,"Samorost 2",play,0.2,0 -33013552,"Mortal Kombat Kollection",purchase,1.0,0 -33013552,"Mortal Kombat Kollection",play,0.2,0 -33013552,"Dead Pixels",purchase,1.0,0 -33013552,"Dead Pixels",play,0.2,0 -33013552,"Lone Survivor The Director's Cut",purchase,1.0,0 -33013552,"Lone Survivor The Director's Cut",play,0.2,0 -33013552,"SteamWorld Dig",purchase,1.0,0 -33013552,"SteamWorld Dig",play,0.2,0 -33013552,"Aquaria",purchase,1.0,0 -33013552,"Aquaria",play,0.2,0 -33013552,"Ninja Reflex Steamworks Edition",purchase,1.0,0 -33013552,"Ninja Reflex Steamworks Edition",play,0.2,0 -33013552,"Wasteland Angel",purchase,1.0,0 -33013552,"Wasteland Angel",play,0.2,0 -33013552,"Strike Suit Infinity",purchase,1.0,0 -33013552,"Strike Suit Infinity",play,0.1,0 -33013552,"Closure",purchase,1.0,0 -33013552,"Closure",play,0.1,0 -33013552,"Risk of Rain",purchase,1.0,0 -33013552,"Risk of Rain",play,0.1,0 -33013552,"Star Wars Empire at War Gold",purchase,1.0,0 -33013552,"Star Wars Empire at War Gold",play,0.1,0 -33013552,"Hamilton's Great Adventure",purchase,1.0,0 -33013552,"Hamilton's Great Adventure",play,0.1,0 -33013552,"BattleBlock Theater",purchase,1.0,0 -33013552,"BattleBlock Theater",play,0.1,0 -33013552,"Gratuitous Space Battles",purchase,1.0,0 -33013552,"Gratuitous Space Battles",play,0.1,0 -33013552,"The Expendabros",purchase,1.0,0 -33013552,"The Expendabros",play,0.1,0 -33013552,"Nimbus",purchase,1.0,0 -33013552,"Nimbus",play,0.1,0 -33013552,"Offspring Fling!",purchase,1.0,0 -33013552,"Another Perspective",purchase,1.0,0 -33013552,"And Yet It Moves",purchase,1.0,0 -33013552,"Outland",purchase,1.0,0 -33013552,"Bleed",purchase,1.0,0 -33013552,"DeadCore",purchase,1.0,0 -33013552,"Sacred Citadel",purchase,1.0,0 -33013552,"RAW - Realms of Ancient War",purchase,1.0,0 -33013552,"Shadowgrounds",purchase,1.0,0 -33013552,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -33013552,"Uplink",purchase,1.0,0 -33013552,"Fortix 2",purchase,1.0,0 -33013552,"Frozen Synapse",purchase,1.0,0 -33013552,"Gish",purchase,1.0,0 -33013552,"BEEP",purchase,1.0,0 -33013552,"Ben There, Dan That!",purchase,1.0,0 -33013552,"AI War Fleet Command",purchase,1.0,0 -33013552,"Stealth Bastard Deluxe",purchase,1.0,0 -33013552,"Oil Rush",purchase,1.0,0 -33013552,"Race The Sun",purchase,1.0,0 -33013552,"Hammerfight",purchase,1.0,0 -33013552,"Hacker Evolution Duality",purchase,1.0,0 -33013552,"Dungeons of Dredmor",purchase,1.0,0 -33013552,"Aion",purchase,1.0,0 -33013552,"SpaceChem",purchase,1.0,0 -33013552,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -33013552,"10 Second Ninja",purchase,1.0,0 -33013552,"Afterfall InSanity Extended Edition",purchase,1.0,0 -33013552,"Alan Wake",purchase,1.0,0 -33013552,"Alan Wake's American Nightmare",purchase,1.0,0 -33013552,"Alien Breed 2 Assault",purchase,1.0,0 -33013552,"Always Sometimes Monsters",purchase,1.0,0 -33013552,"Amnesia The Dark Descent",purchase,1.0,0 -33013552,"Anomaly Warzone Earth",purchase,1.0,0 -33013552,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -33013552,"A Valley Without Wind 2",purchase,1.0,0 -33013552,"AVSEQ",purchase,1.0,0 -33013552,"Awesomenauts",purchase,1.0,0 -33013552,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -33013552,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -33013552,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -33013552,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -33013552,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -33013552,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -33013552,"Bionic Commando Rearmed",purchase,1.0,0 -33013552,"BioShock 2",purchase,1.0,0 -33013552,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -33013552,"Blackwell Convergence",purchase,1.0,0 -33013552,"Blackwell Deception",purchase,1.0,0 -33013552,"Blackwell Unbound",purchase,1.0,0 -33013552,"Blades of Time",purchase,1.0,0 -33013552,"Breath of Death VII ",purchase,1.0,0 -33013552,"Broken Sword 2 - the Smoking Mirror Remastered",purchase,1.0,0 -33013552,"Brtal Legend",purchase,1.0,0 -33013552,"Bunch Of Heroes",purchase,1.0,0 -33013552,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -33013552,"Chaos Domain",purchase,1.0,0 -33013552,"Cogs",purchase,1.0,0 -33013552,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -33013552,"Commandos Behind Enemy Lines",purchase,1.0,0 -33013552,"Commandos Beyond the Call of Duty",purchase,1.0,0 -33013552,"Company of Heroes (New Steam Version)",purchase,1.0,0 -33013552,"Company of Heroes Opposing Fronts",purchase,1.0,0 -33013552,"Company of Heroes Tales of Valor",purchase,1.0,0 -33013552,"Confrontation",purchase,1.0,0 -33013552,"Cortex Command",purchase,1.0,0 -33013552,"Crazy Machines",purchase,1.0,0 -33013552,"Crazy Machines 1.5 Inventors Training Camp",purchase,1.0,0 -33013552,"Crazy Machines 1.5 New from the Lab",purchase,1.0,0 -33013552,"Crazy Machines 2",purchase,1.0,0 -33013552,"Crazy Machines Elements",purchase,1.0,0 -33013552,"Critical Mass",purchase,1.0,0 -33013552,"Cthulhu Saves the World ",purchase,1.0,0 -33013552,"Darkest Hour Europe '44-'45",purchase,1.0,0 -33013552,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -33013552,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -33013552,"Darksiders",purchase,1.0,0 -33013552,"Darwinia",purchase,1.0,0 -33013552,"Dead Space",purchase,1.0,0 -33013552,"Dear Esther",purchase,1.0,0 -33013552,"Death Ray Manta",purchase,1.0,0 -33013552,"DEFCON",purchase,1.0,0 -33013552,"Defense Grid The Awakening",purchase,1.0,0 -33013552,"Detective Case and Clown Bot in Murder in the Hotel Lisbon",purchase,1.0,0 -33013552,"Dino D-Day",purchase,1.0,0 -33013552,"DiRT 3 Complete Edition",purchase,1.0,0 -33013552,"Dismal Swamp DLC",purchase,1.0,0 -33013552,"Divinity II Developer's Cut",purchase,1.0,0 -33013552,"Draw a Stickman EPIC",purchase,1.0,0 -33013552,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -33013552,"Dungeonland - All access pass",purchase,1.0,0 -33013552,"Eets Munchies",purchase,1.0,0 -33013552,"Electronic Super Joy Bonus Content",purchase,1.0,0 -33013552,"Enclave",purchase,1.0,0 -33013552,"English Country Tune",purchase,1.0,0 -33013552,"Eufloria",purchase,1.0,0 -33013552,"Eufloria HD",purchase,1.0,0 -33013552,"Eufloria HD Original Soundtrack",purchase,1.0,0 -33013552,"Europa Universalis III",purchase,1.0,0 -33013552,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -33013552,"F.E.A.R. 3",purchase,1.0,0 -33013552,"Fable - The Lost Chapters",purchase,1.0,0 -33013552,"Fallen Enchantress Legendary Heroes",purchase,1.0,0 -33013552,"Fate of the World",purchase,1.0,0 -33013552,"Fieldrunners",purchase,1.0,0 -33013552,"Fieldrunners 2",purchase,1.0,0 -33013552,"Fractured Space",purchase,1.0,0 -33013552,"Full Mojo Rampage",purchase,1.0,0 -33013552,"Future Wars",purchase,1.0,0 -33013552,"Galcon Fusion",purchase,1.0,0 -33013552,"Galcon Legends",purchase,1.0,0 -33013552,"GameMaker Studio Android",purchase,1.0,0 -33013552,"GameMaker Studio HTML5",purchase,1.0,0 -33013552,"GameMaker Studio Professional",purchase,1.0,0 -33013552,"GameMaker Studio Ubuntu Export",purchase,1.0,0 -33013552,"Game of Thrones ",purchase,1.0,0 -33013552,"Greed Black Border",purchase,1.0,0 -33013552,"GTR Evolution",purchase,1.0,0 -33013552,"Gun Monkeys",purchase,1.0,0 -33013552,"Hacker Evolution",purchase,1.0,0 -33013552,"Half-Life 2",purchase,1.0,0 -33013552,"Half-Life 2 Deathmatch",purchase,1.0,0 -33013552,"Half-Life 2 Episode One",purchase,1.0,0 -33013552,"Half-Life 2 Episode Two",purchase,1.0,0 -33013552,"Half-Life 2 Lost Coast",purchase,1.0,0 -33013552,"Hector Ep 1",purchase,1.0,0 -33013552,"Hector Ep 2",purchase,1.0,0 -33013552,"Hector Ep 3",purchase,1.0,0 -33013552,"Hero Academy",purchase,1.0,0 -33013552,"inMomentum",purchase,1.0,0 -33013552,"Intrusion 2",purchase,1.0,0 -33013552,"Ionball 2 Ionstorm",purchase,1.0,0 -33013552,"Ittle Dew",purchase,1.0,0 -33013552,"Just Cause 2",purchase,1.0,0 -33013552,"Killing Floor",purchase,1.0,0 -33013552,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -33013552,"King's Bounty The Legend",purchase,1.0,0 -33013552,"Kung Fury",purchase,1.0,0 -33013552,"Left 4 Dead",purchase,1.0,0 -33013552,"Leviathan Warships",purchase,1.0,0 -33013552,"Limited Edition",purchase,1.0,0 -33013552,"Little Inferno",purchase,1.0,0 -33013552,"Lost Planet 3",purchase,1.0,0 -33013552,"Lucius",purchase,1.0,0 -33013552,"Lugaru HD ",purchase,1.0,0 -33013552,"Machinarium",purchase,1.0,0 -33013552,"Mafia II",purchase,1.0,0 -33013552,"Magicka Final Frontier",purchase,1.0,0 -33013552,"Magicka Frozen Lake",purchase,1.0,0 -33013552,"Magicka Nippon",purchase,1.0,0 -33013552,"Magicka Party Robes",purchase,1.0,0 -33013552,"Magicka The Watchtower",purchase,1.0,0 -33013552,"Magicka Vietnam",purchase,1.0,0 -33013552,"Magicka Wizard's Survival Kit",purchase,1.0,0 -33013552,"Mare Nostrum",purchase,1.0,0 -33013552,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -33013552,"Medal of Honor(TM) Single Player",purchase,1.0,0 -33013552,"Medal of Honor Pre-Order",purchase,1.0,0 -33013552,"Mercenary Kings",purchase,1.0,0 -33013552,"METAL SLUG 3",purchase,1.0,0 -33013552,"Metro 2033",purchase,1.0,0 -33013552,"Mirror's Edge",purchase,1.0,0 -33013552,"Multiwinia",purchase,1.0,0 -33013552,"Neverwinter",purchase,1.0,0 -33013552,"NightSky",purchase,1.0,0 -33013552,"Nikopol Secrets of the Immortals",purchase,1.0,0 -33013552,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -33013552,"Nuclear Dawn",purchase,1.0,0 -33013552,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -33013552,"Operation Flashpoint Red River",purchase,1.0,0 -33013552,"Orcs Must Die! 2",purchase,1.0,0 -33013552,"Osmos",purchase,1.0,0 -33013552,"Outlast Whistleblower DLC",purchase,1.0,0 -33013552,"Overlord",purchase,1.0,0 -33013552,"Overlord Raising Hell",purchase,1.0,0 -33013552,"Papo & Yo",purchase,1.0,0 -33013552,"Patch testing for Chivalry",purchase,1.0,0 -33013552,"PAYDAY The Heist",purchase,1.0,0 -33013552,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",purchase,1.0,0 -33013552,"Penumbra Overture",purchase,1.0,0 -33013552,"Pid ",purchase,1.0,0 -33013552,"Pinball FX2 - Captain America Table",purchase,1.0,0 -33013552,"Pinball FX2 - Civil War Table",purchase,1.0,0 -33013552,"Pinball FX2 - Doctor Strange Table",purchase,1.0,0 -33013552,"Pinball FX2 - Excalibur Table",purchase,1.0,0 -33013552,"Pinball FX2 - Mars Table",purchase,1.0,0 -33013552,"Pinball FX2 - Star Wars Pack",purchase,1.0,0 -33013552,"Pinball FX2 - Star Wars Pinball Balance of the Force Pack",purchase,1.0,0 -33013552,"Platformines",purchase,1.0,0 -33013552,"Poker Night at the Inventory",purchase,1.0,0 -33013552,"Portal",purchase,1.0,0 -33013552,"Proteus",purchase,1.0,0 -33013552,"Psychonauts",purchase,1.0,0 -33013552,"Psychonauts Demo",purchase,1.0,0 -33013552,"Puzzle Agent",purchase,1.0,0 -33013552,"Puzzle Agent 2",purchase,1.0,0 -33013552,"Puzzle Bots",purchase,1.0,0 -33013552,"RACE 07",purchase,1.0,0 -33013552,"RaceRoom Racing Experience ",purchase,1.0,0 -33013552,"Really Big Sky",purchase,1.0,0 -33013552,"Real World Racing",purchase,1.0,0 -33013552,"Real World Racing Amsterdam & Oakland",purchase,1.0,0 -33013552,"Receiver",purchase,1.0,0 -33013552,"Red Faction Armageddon",purchase,1.0,0 -33013552,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -33013552,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -33013552,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -33013552,"Resonance",purchase,1.0,0 -33013552,"Revenge of the Titans",purchase,1.0,0 -33013552,"Risen",purchase,1.0,0 -33013552,"Risen 2 - Dark Waters",purchase,1.0,0 -33013552,"Rise of the Argonauts",purchase,1.0,0 -33013552,"Rochard",purchase,1.0,0 -33013552,"RollerCoaster Tycoon 2 Triple Thrill Pack",purchase,1.0,0 -33013552,"RPG Maker Royal Tiles Resource Pack",purchase,1.0,0 -33013552,"RPG Maker Tyler Warren First 50 Battler Pack",purchase,1.0,0 -33013552,"RPG Maker VX Ace",purchase,1.0,0 -33013552,"Runespell Overture",purchase,1.0,0 -33013552,"RWRZ",purchase,1.0,0 -33013552,"Sacred 2 Gold",purchase,1.0,0 -33013552,"Saints Row 2",purchase,1.0,0 -33013552,"Saints Row The Third",purchase,1.0,0 -33013552,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -33013552,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -33013552,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -33013552,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -33013552,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -33013552,"Sanctum",purchase,1.0,0 -33013552,"Scoregasm",purchase,1.0,0 -33013552,"Serious Sam HD The First Encounter",purchase,1.0,0 -33013552,"Shadowgrounds Survivor",purchase,1.0,0 -33013552,"Shadow Warrior Classic Redux",purchase,1.0,0 -33013552,"Shank",purchase,1.0,0 -33013552,"Shank 2",purchase,1.0,0 -33013552,"Shatter",purchase,1.0,0 -33013552,"Sid Meier's Ace Patrol",purchase,1.0,0 -33013552,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -33013552,"Sid Meier's Civilization III Complete",purchase,1.0,0 -33013552,"Sid Meier's Civilization IV",purchase,1.0,0 -33013552,"Sid Meier's Civilization IV",purchase,1.0,0 -33013552,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -33013552,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -33013552,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -33013552,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -33013552,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -33013552,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -33013552,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -33013552,"Sid Meier's Railroads!",purchase,1.0,0 -33013552,"Skulls of the Shogun",purchase,1.0,0 -33013552,"Skyborn",purchase,1.0,0 -33013552,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -33013552,"Snapshot",purchase,1.0,0 -33013552,"Space Hack",purchase,1.0,0 -33013552,"Space Pirates and Zombies",purchase,1.0,0 -33013552,"Spoiler Alert",purchase,1.0,0 -33013552,"Spriter Pro",purchase,1.0,0 -33013552,"Starbound - Unstable",purchase,1.0,0 -33013552,"Star Ruler",purchase,1.0,0 -33013552,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -33013552,"Star Wars Republic Commando",purchase,1.0,0 -33013552,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -33013552,"State of Decay - Breakdown",purchase,1.0,0 -33013552,"Stealth Inc 2",purchase,1.0,0 -33013552,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -33013552,"Sweet Lily Dreams",purchase,1.0,0 -33013552,"Tesla Effect",purchase,1.0,0 -33013552,"The Ball",purchase,1.0,0 -33013552,"The Banner Saga - Mod Content",purchase,1.0,0 -33013552,"The Basement Collection",purchase,1.0,0 -33013552,"The Blackwell Legacy",purchase,1.0,0 -33013552,"The Bureau XCOM Declassified",purchase,1.0,0 -33013552,"The Darkness II",purchase,1.0,0 -33013552,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -33013552,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -33013552,"The Lost Crown",purchase,1.0,0 -33013552,"The Void",purchase,1.0,0 -33013552,"Thomas Was Alone",purchase,1.0,0 -33013552,"Tidalis",purchase,1.0,0 -33013552,"Time Gentlemen, Please!",purchase,1.0,0 -33013552,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -33013552,"Titan Quest",purchase,1.0,0 -33013552,"Tom Clancy's Rainbow Six Vegas",purchase,1.0,0 -33013552,"Torchlight",purchase,1.0,0 -33013552,"To the Moon",purchase,1.0,0 -33013552,"Trapped Dead",purchase,1.0,0 -33013552,"TRAUMA",purchase,1.0,0 -33013552,"Tropico 4",purchase,1.0,0 -33013552,"Ubinota",purchase,1.0,0 -33013552,"Urban Trial Freestyle",purchase,1.0,0 -33013552,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -33013552,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -33013552,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -33013552,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -33013552,"Wallace & Gromit Ep 1 Fright of the Bumblebees",purchase,1.0,0 -33013552,"Wallace & Gromit Ep 2 The Last Resort",purchase,1.0,0 -33013552,"Wallace & Gromit Ep 3 Muzzled!",purchase,1.0,0 -33013552,"Wallace & Gromit Ep 4 The Bogey Man",purchase,1.0,0 -33013552,"Warlock - Master of the Arcane",purchase,1.0,0 -33013552,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -33013552,"War of the Roses",purchase,1.0,0 -33013552,"War of the Roses Kingmaker",purchase,1.0,0 -33013552,"War of the Roses Balance Beta",purchase,1.0,0 -33013552,"Weird Worlds Return to Infinite Space",purchase,1.0,0 -33013552,"Wizorb",purchase,1.0,0 -33013552,"World of Goo",purchase,1.0,0 -33013552,"WRC Powerslide",purchase,1.0,0 -33013552,"X-COM Apocalypse",purchase,1.0,0 -33013552,"X-COM Enforcer",purchase,1.0,0 -33013552,"X-COM Interceptor",purchase,1.0,0 -33013552,"X-COM Terror from the Deep",purchase,1.0,0 -33013552,"X-COM UFO Defense",purchase,1.0,0 -33013552,"X-Tension",purchase,1.0,0 -33013552,"X2 The Threat",purchase,1.0,0 -33013552,"X3 Reunion",purchase,1.0,0 -33013552,"X Beyond the Frontier",purchase,1.0,0 -33013552,"Xotic",purchase,1.0,0 -33013552,"Your Doodles Are Bugged!",purchase,1.0,0 -33013552,"Zombie Pirates",purchase,1.0,0 -33013552,"Zombie Shooter",purchase,1.0,0 -33013552,"Zombie Shooter 2",purchase,1.0,0 -43684632,"Counter-Strike Global Offensive",purchase,1.0,0 -43684632,"Counter-Strike Global Offensive",play,3626.0,0 -43684632,"Football Manager 2015",purchase,1.0,0 -43684632,"Football Manager 2015",play,997.0,0 -43684632,"Football Manager 2012",purchase,1.0,0 -43684632,"Football Manager 2012",play,665.0,0 -43684632,"Football Manager 2013",purchase,1.0,0 -43684632,"Football Manager 2013",play,622.0,0 -43684632,"Football Manager 2014",purchase,1.0,0 -43684632,"Football Manager 2014",play,522.0,0 -43684632,"AdVenture Capitalist",purchase,1.0,0 -43684632,"AdVenture Capitalist",play,344.0,0 -43684632,"Counter-Strike Source",purchase,1.0,0 -43684632,"Counter-Strike Source",play,224.0,0 -43684632,"Pro Cycling Manager 2013",purchase,1.0,0 -43684632,"Pro Cycling Manager 2013",play,213.0,0 -43684632,"The Elder Scrolls V Skyrim",purchase,1.0,0 -43684632,"The Elder Scrolls V Skyrim",play,208.0,0 -43684632,"Dungeon Defenders",purchase,1.0,0 -43684632,"Dungeon Defenders",play,186.0,0 -43684632,"Football Manager 2016",purchase,1.0,0 -43684632,"Football Manager 2016",play,184.0,0 -43684632,"Clicker Heroes",purchase,1.0,0 -43684632,"Clicker Heroes",play,113.0,0 -43684632,"Total War ROME II - Emperor Edition",purchase,1.0,0 -43684632,"Total War ROME II - Emperor Edition",play,96.0,0 -43684632,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -43684632,"METAL GEAR SOLID V THE PHANTOM PAIN",play,95.0,0 -43684632,"Two Worlds II",purchase,1.0,0 -43684632,"Two Worlds II",play,83.0,0 -43684632,"Mount & Blade Warband",purchase,1.0,0 -43684632,"Mount & Blade Warband",play,79.0,0 -43684632,"Star Trek Online",purchase,1.0,0 -43684632,"Star Trek Online",play,78.0,0 -43684632,"Team Fortress 2",purchase,1.0,0 -43684632,"Team Fortress 2",play,66.0,0 -43684632,"Pro Cycling Manager 2014",purchase,1.0,0 -43684632,"Pro Cycling Manager 2014",play,63.0,0 -43684632,"Arma 2 Operation Arrowhead",purchase,1.0,0 -43684632,"Arma 2 Operation Arrowhead",play,57.0,0 -43684632,"Pro Cycling Manager 2015",purchase,1.0,0 -43684632,"Pro Cycling Manager 2015",play,48.0,0 -43684632,"TrackMania United",purchase,1.0,0 -43684632,"TrackMania United",play,41.0,0 -43684632,"Killing Floor",purchase,1.0,0 -43684632,"Killing Floor",play,40.0,0 -43684632,"The Walking Dead",purchase,1.0,0 -43684632,"The Walking Dead",play,35.0,0 -43684632,"Dead Island",purchase,1.0,0 -43684632,"Dead Island",play,34.0,0 -43684632,"Guild Wars",purchase,1.0,0 -43684632,"Guild Wars",play,34.0,0 -43684632,"Total War SHOGUN 2",purchase,1.0,0 -43684632,"Total War SHOGUN 2",play,31.0,0 -43684632,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -43684632,"STAR WARS Knights of the Old Republic II The Sith Lords",play,31.0,0 -43684632,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -43684632,"Medal of Honor(TM) Multiplayer",play,29.0,0 -43684632,"Homefront",purchase,1.0,0 -43684632,"Homefront",play,28.0,0 -43684632,"South Park The Stick of Truth",purchase,1.0,0 -43684632,"South Park The Stick of Truth",play,27.0,0 -43684632,"Fallout 4",purchase,1.0,0 -43684632,"Fallout 4",play,27.0,0 -43684632,"Infestation Survivor Stories",purchase,1.0,0 -43684632,"Infestation Survivor Stories",play,24.0,0 -43684632,"Medal of Honor(TM) Single Player",purchase,1.0,0 -43684632,"Medal of Honor(TM) Single Player",play,24.0,0 -43684632,"PAYDAY 2",purchase,1.0,0 -43684632,"PAYDAY 2",play,24.0,0 -43684632,"Game Dev Tycoon",purchase,1.0,0 -43684632,"Game Dev Tycoon",play,23.0,0 -43684632,"Rust",purchase,1.0,0 -43684632,"Rust",play,22.0,0 -43684632,"TrackMania Stadium",purchase,1.0,0 -43684632,"TrackMania Stadium",play,21.0,0 -43684632,"Stronghold 3",purchase,1.0,0 -43684632,"Stronghold 3",play,21.0,0 -43684632,"Sniper Elite V2",purchase,1.0,0 -43684632,"Sniper Elite V2",play,20.0,0 -43684632,"Saints Row The Third",purchase,1.0,0 -43684632,"Saints Row The Third",play,19.7,0 -43684632,"Grand Theft Auto IV",purchase,1.0,0 -43684632,"Grand Theft Auto IV",play,18.7,0 -43684632,"Empire Total War",purchase,1.0,0 -43684632,"Empire Total War",play,18.1,0 -43684632,"Grand Theft Auto V",purchase,1.0,0 -43684632,"Grand Theft Auto V",play,18.0,0 -43684632,"Just Cause 2",purchase,1.0,0 -43684632,"Just Cause 2",play,17.8,0 -43684632,"Arma 3",purchase,1.0,0 -43684632,"Arma 3",play,17.4,0 -43684632,"Star Wars Knights of the Old Republic",purchase,1.0,0 -43684632,"Star Wars Knights of the Old Republic",play,16.2,0 -43684632,"Rome Total War",purchase,1.0,0 -43684632,"Rome Total War",play,15.9,0 -43684632,"Airline Tycoon 2",purchase,1.0,0 -43684632,"Airline Tycoon 2",play,15.9,0 -43684632,"Star Wars - Battlefront II",purchase,1.0,0 -43684632,"Star Wars - Battlefront II",play,15.5,0 -43684632,"Fable III",purchase,1.0,0 -43684632,"Fable III",play,14.8,0 -43684632,"Arma 2",purchase,1.0,0 -43684632,"Arma 2",play,12.4,0 -43684632,"Age of Empires II HD Edition",purchase,1.0,0 -43684632,"Age of Empires II HD Edition",play,12.3,0 -43684632,"Game of Thrones ",purchase,1.0,0 -43684632,"Game of Thrones ",play,12.1,0 -43684632,"Town of Salem",purchase,1.0,0 -43684632,"Town of Salem",play,10.2,0 -43684632,"Orcs Must Die!",purchase,1.0,0 -43684632,"Orcs Must Die!",play,9.5,0 -43684632,"Counter-Strike",purchase,1.0,0 -43684632,"Counter-Strike",play,8.3,0 -43684632,"Company of Heroes",purchase,1.0,0 -43684632,"Company of Heroes",play,8.3,0 -43684632,"Stronghold HD",purchase,1.0,0 -43684632,"Stronghold HD",play,8.2,0 -43684632,"Orcs Must Die! 2",purchase,1.0,0 -43684632,"Orcs Must Die! 2",play,7.4,0 -43684632,"DayZ",purchase,1.0,0 -43684632,"DayZ",play,7.3,0 -43684632,"Company of Heroes (New Steam Version)",purchase,1.0,0 -43684632,"Company of Heroes (New Steam Version)",play,7.3,0 -43684632,"The Walking Dead Survival Instinct",purchase,1.0,0 -43684632,"The Walking Dead Survival Instinct",play,7.3,0 -43684632,"Magic The Gathering Duels of the Planeswalkers 2012",purchase,1.0,0 -43684632,"Magic The Gathering Duels of the Planeswalkers 2012",play,7.1,0 -43684632,"Men of War Assault Squad",purchase,1.0,0 -43684632,"Men of War Assault Squad",play,7.1,0 -43684632,"The Sims(TM) 3",purchase,1.0,0 -43684632,"The Sims(TM) 3",play,5.8,0 -43684632,"18 Wheels of Steel American Long Haul",purchase,1.0,0 -43684632,"18 Wheels of Steel American Long Haul",play,5.8,0 -43684632,"Postal 3",purchase,1.0,0 -43684632,"Postal 3",play,5.3,0 -43684632,"Sid Meier's Pirates!",purchase,1.0,0 -43684632,"Sid Meier's Pirates!",play,5.1,0 -43684632,"Two Worlds II Castle Defense",purchase,1.0,0 -43684632,"Two Worlds II Castle Defense",play,5.0,0 -43684632,"Stronghold 2",purchase,1.0,0 -43684632,"Stronghold 2",play,4.9,0 -43684632,"H1Z1",purchase,1.0,0 -43684632,"H1Z1",play,4.8,0 -43684632,"Tabletop Simulator",purchase,1.0,0 -43684632,"Tabletop Simulator",play,4.8,0 -43684632,"Fallout New Vegas",purchase,1.0,0 -43684632,"Fallout New Vegas",play,4.8,0 -43684632,"Mount & Blade With Fire and Sword",purchase,1.0,0 -43684632,"Mount & Blade With Fire and Sword",play,4.7,0 -43684632,"7 Days to Die",purchase,1.0,0 -43684632,"7 Days to Die",play,4.4,0 -43684632,"Company of Heroes 2",purchase,1.0,0 -43684632,"Company of Heroes 2",play,3.9,0 -43684632,"The Walking Dead Season Two",purchase,1.0,0 -43684632,"The Walking Dead Season Two",play,3.9,0 -43684632,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -43684632,"The Elder Scrolls IV Oblivion ",play,3.8,0 -43684632,"Mount & Blade",purchase,1.0,0 -43684632,"Mount & Blade",play,3.5,0 -43684632,"Dead Rising 3",purchase,1.0,0 -43684632,"Dead Rising 3",play,3.4,0 -43684632,"War of the Roses",purchase,1.0,0 -43684632,"War of the Roses",play,3.4,0 -43684632,"Sniper Ghost Warrior",purchase,1.0,0 -43684632,"Sniper Ghost Warrior",play,3.3,0 -43684632,"Fable - The Lost Chapters",purchase,1.0,0 -43684632,"Fable - The Lost Chapters",play,2.8,0 -43684632,"The Witcher 3 Wild Hunt",purchase,1.0,0 -43684632,"The Witcher 3 Wild Hunt",play,2.6,0 -43684632,"R.U.S.E",purchase,1.0,0 -43684632,"R.U.S.E",play,2.3,0 -43684632,"Middle-earth Shadow of Mordor",purchase,1.0,0 -43684632,"Middle-earth Shadow of Mordor",play,2.3,0 -43684632,"Battlefield 2",purchase,1.0,0 -43684632,"Battlefield 2",play,2.1,0 -43684632,"Day of Defeat Source",purchase,1.0,0 -43684632,"Day of Defeat Source",play,2.1,0 -43684632,"Stronghold Crusader HD",purchase,1.0,0 -43684632,"Stronghold Crusader HD",play,2.0,0 -43684632,"Counter-Strike Condition Zero",purchase,1.0,0 -43684632,"Counter-Strike Condition Zero",play,2.0,0 -43684632,"Sniper Elite 3",purchase,1.0,0 -43684632,"Sniper Elite 3",play,2.0,0 -43684632,"Natural Selection 2",purchase,1.0,0 -43684632,"Natural Selection 2",play,1.9,0 -43684632,"PAYDAY The Heist",purchase,1.0,0 -43684632,"PAYDAY The Heist",play,1.8,0 -43684632,"Age of Chivalry",purchase,1.0,0 -43684632,"Age of Chivalry",play,1.6,0 -43684632,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -43684632,"Warhammer 40,000 Dawn of War II Retribution",play,1.5,0 -43684632,"Magic Duels",purchase,1.0,0 -43684632,"Magic Duels",play,1.4,0 -43684632,"King Arthur Collection",purchase,1.0,0 -43684632,"King Arthur Collection",play,1.3,0 -43684632,"Grand Theft Auto San Andreas",purchase,1.0,0 -43684632,"Grand Theft Auto San Andreas",play,1.3,0 -43684632,"Port Royale 3",purchase,1.0,0 -43684632,"Port Royale 3",play,1.3,0 -43684632,"Stranded Deep",purchase,1.0,0 -43684632,"Stranded Deep",play,1.2,0 -43684632,"Goat Simulator",purchase,1.0,0 -43684632,"Goat Simulator",play,1.2,0 -43684632,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -43684632,"The Witcher 2 Assassins of Kings Enhanced Edition",play,1.2,0 -43684632,"Banished",purchase,1.0,0 -43684632,"Banished",play,1.1,0 -43684632,"Killing Floor 2",purchase,1.0,0 -43684632,"Killing Floor 2",play,1.0,0 -43684632,"Chivalry Medieval Warfare",purchase,1.0,0 -43684632,"Chivalry Medieval Warfare",play,0.9,0 -43684632,"Governor of Poker 2 Premium Edition",purchase,1.0,0 -43684632,"Governor of Poker 2 Premium Edition",play,0.9,0 -43684632,"Day of Defeat",purchase,1.0,0 -43684632,"Day of Defeat",play,0.9,0 -43684632,"Saints Row 2",purchase,1.0,0 -43684632,"Saints Row 2",play,0.8,0 -43684632,"Gotham City Impostors Free To Play",purchase,1.0,0 -43684632,"Gotham City Impostors Free To Play",play,0.7,0 -43684632,"Euro Truck Simulator 2",purchase,1.0,0 -43684632,"Euro Truck Simulator 2",play,0.7,0 -43684632,"Grand Theft Auto Vice City",purchase,1.0,0 -43684632,"Grand Theft Auto Vice City",play,0.7,0 -43684632,"Star Trek",purchase,1.0,0 -43684632,"Star Trek",play,0.6,0 -43684632,"Stronghold Legends",purchase,1.0,0 -43684632,"Stronghold Legends",play,0.6,0 -43684632,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -43684632,"Star Wars - Jedi Knight II Jedi Outcast",play,0.6,0 -43684632,"Half-Life 2 Deathmatch",purchase,1.0,0 -43684632,"Half-Life 2 Deathmatch",play,0.5,0 -43684632,"Dota 2",purchase,1.0,0 -43684632,"Dota 2",play,0.4,0 -43684632,"Homeworld Remastered Collection",purchase,1.0,0 -43684632,"Homeworld Remastered Collection",play,0.4,0 -43684632,"Portal",purchase,1.0,0 -43684632,"Portal",play,0.4,0 -43684632,"Half-Life 2 Lost Coast",purchase,1.0,0 -43684632,"Half-Life 2 Lost Coast",play,0.3,0 -43684632,"Medieval Engineers",purchase,1.0,0 -43684632,"Medieval Engineers",play,0.3,0 -43684632,"ARK Survival Evolved",purchase,1.0,0 -43684632,"ARK Survival Evolved",play,0.2,0 -43684632,"Arma 2 DayZ Mod",purchase,1.0,0 -43684632,"Prison Architect",purchase,1.0,0 -43684632,"Arma 2 Private Military Company",purchase,1.0,0 -43684632,"Arma 2 British Armed Forces",purchase,1.0,0 -43684632,"America's Army 3",purchase,1.0,0 -43684632,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -43684632,"Arma 3 Zeus",purchase,1.0,0 -43684632,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -43684632,"Dead Rising 3 DLC1",purchase,1.0,0 -43684632,"Dead Rising 3 DLC2",purchase,1.0,0 -43684632,"Dead Rising 3 DLC3",purchase,1.0,0 -43684632,"Dead Rising 3 DLC4",purchase,1.0,0 -43684632,"Deathmatch Classic",purchase,1.0,0 -43684632,"Don't Starve Together Beta",purchase,1.0,0 -43684632,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -43684632,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -43684632,"Fable Anniversary",purchase,1.0,0 -43684632,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -43684632,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -43684632,"Fallout New Vegas Dead Money",purchase,1.0,0 -43684632,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -43684632,"Garry's Mod",purchase,1.0,0 -43684632,"Grand Theft Auto",purchase,1.0,0 -43684632,"Grand Theft Auto 2",purchase,1.0,0 -43684632,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -43684632,"Grand Theft Auto San Andreas",purchase,1.0,0 -43684632,"Grand Theft Auto Vice City",purchase,1.0,0 -43684632,"Grand Theft Auto III",purchase,1.0,0 -43684632,"Grand Theft Auto III",purchase,1.0,0 -43684632,"Guild Wars Trilogy",purchase,1.0,0 -43684632,"H1Z1 Test Server",purchase,1.0,0 -43684632,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -43684632,"Medal of Honor Pre-Order",purchase,1.0,0 -43684632,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -43684632,"NASCAR '14",purchase,1.0,0 -43684632,"Patch testing for Chivalry",purchase,1.0,0 -43684632,"R.U.S.E.",purchase,1.0,0 -43684632,"Ricochet",purchase,1.0,0 -43684632,"Ship Simulator Extremes",purchase,1.0,0 -43684632,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -43684632,"South Park The Stick of Truth - Super Samurai Spaceman Pack",purchase,1.0,0 -43684632,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -43684632,"Stronghold Crusader Extreme HD",purchase,1.0,0 -43684632,"Survarium",purchase,1.0,0 -43684632,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -43684632,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -43684632,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -43684632,"Two Worlds 2 - Pirates of the Flying Fortress ",purchase,1.0,0 -43684632,"War of the Roses Kingmaker",purchase,1.0,0 -43684632,"War of the Roses Balance Beta",purchase,1.0,0 -57271785,"Counter-Strike",purchase,1.0,0 -57271785,"Counter-Strike",play,1201.0,0 -57271785,"Counter-Strike Source",purchase,1.0,0 -57271785,"Counter-Strike Source",play,4.9,0 -57271785,"Counter-Strike Condition Zero",purchase,1.0,0 -57271785,"Counter-Strike Condition Zero",play,1.1,0 -57271785,"Half-Life 2 Lost Coast",purchase,1.0,0 -57271785,"Half-Life 2 Lost Coast",play,0.9,0 -57271785,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -57271785,"Day of Defeat",purchase,1.0,0 -57271785,"Day of Defeat Source",purchase,1.0,0 -57271785,"Deathmatch Classic",purchase,1.0,0 -57271785,"Half-Life 2 Deathmatch",purchase,1.0,0 -57271785,"Ricochet",purchase,1.0,0 -238481802,"Dota 2",purchase,1.0,0 -238481802,"Dota 2",play,4.8,0 -298020652,"Trove",purchase,1.0,0 -17531316,"Counter-Strike Source",purchase,1.0,0 -17531316,"Half-Life 2",purchase,1.0,0 -17531316,"Half-Life 2 Deathmatch",purchase,1.0,0 -17531316,"Half-Life 2 Lost Coast",purchase,1.0,0 -17531316,"Half-Life Source",purchase,1.0,0 -17531316,"Half-Life Deathmatch Source",purchase,1.0,0 -121168851,"Dota 2",purchase,1.0,0 -121168851,"Dota 2",play,69.0,0 -121168851,"Blacklight Retribution",purchase,1.0,0 -121168851,"FreeStyle2 Street Basketball",purchase,1.0,0 -121168851,"GunZ 2 The Second Duel",purchase,1.0,0 -121168851,"Magicka Wizard Wars",purchase,1.0,0 -121168851,"Spooky's House of Jump Scares",purchase,1.0,0 -121168851,"Victory Command",purchase,1.0,0 -292710310,"Dota 2",purchase,1.0,0 -292710310,"Dota 2",play,0.2,0 -48984158,"Dota 2",purchase,1.0,0 -48984158,"Dota 2",play,2458.0,0 -48984158,"The Elder Scrolls V Skyrim",purchase,1.0,0 -48984158,"The Elder Scrolls V Skyrim",play,232.0,0 -48984158,"Elite Dangerous",purchase,1.0,0 -48984158,"Elite Dangerous",play,96.0,0 -48984158,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -48984158,"Deus Ex Human Revolution - Director's Cut",play,69.0,0 -48984158,"Grand Theft Auto V",purchase,1.0,0 -48984158,"Grand Theft Auto V",play,57.0,0 -48984158,"The Witcher Enhanced Edition",purchase,1.0,0 -48984158,"The Witcher Enhanced Edition",play,41.0,0 -48984158,"Sleeping Dogs",purchase,1.0,0 -48984158,"Sleeping Dogs",play,33.0,0 -48984158,"Saints Row IV",purchase,1.0,0 -48984158,"Saints Row IV",play,31.0,0 -48984158,"Clicker Heroes",purchase,1.0,0 -48984158,"Clicker Heroes",play,27.0,0 -48984158,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -48984158,"The Witcher 2 Assassins of Kings Enhanced Edition",play,26.0,0 -48984158,"Endless Legend",purchase,1.0,0 -48984158,"Endless Legend",play,25.0,0 -48984158,"Game Dev Tycoon",purchase,1.0,0 -48984158,"Game Dev Tycoon",play,21.0,0 -48984158,"The Walking Dead",purchase,1.0,0 -48984158,"The Walking Dead",play,21.0,0 -48984158,"XCOM Enemy Unknown",purchase,1.0,0 -48984158,"XCOM Enemy Unknown",play,20.0,0 -48984158,"Dying Light",purchase,1.0,0 -48984158,"Dying Light",play,19.6,0 -48984158,"Terraria",purchase,1.0,0 -48984158,"Terraria",play,18.9,0 -48984158,"FTL Faster Than Light",purchase,1.0,0 -48984158,"FTL Faster Than Light",play,16.9,0 -48984158,"Half-Life 2",purchase,1.0,0 -48984158,"Half-Life 2",play,11.2,0 -48984158,"The Elder Scrolls Online Tamriel Unlimited",purchase,1.0,0 -48984158,"The Elder Scrolls Online Tamriel Unlimited",play,10.2,0 -48984158,"The Walking Dead Season Two",purchase,1.0,0 -48984158,"The Walking Dead Season Two",play,9.8,0 -48984158,"Sid Meier's Civilization V",purchase,1.0,0 -48984158,"Sid Meier's Civilization V",play,9.5,0 -48984158,"The Wolf Among Us",purchase,1.0,0 -48984158,"The Wolf Among Us",play,8.4,0 -48984158,"Warframe",purchase,1.0,0 -48984158,"Warframe",play,7.2,0 -48984158,"The Cave",purchase,1.0,0 -48984158,"The Cave",play,6.9,0 -48984158,"DmC Devil May Cry",purchase,1.0,0 -48984158,"DmC Devil May Cry",play,4.9,0 -48984158,"Dino D-Day",purchase,1.0,0 -48984158,"Dino D-Day",play,4.8,0 -48984158,"Brtal Legend",purchase,1.0,0 -48984158,"Brtal Legend",play,4.7,0 -48984158,"Counter-Strike Global Offensive",purchase,1.0,0 -48984158,"Counter-Strike Global Offensive",play,4.2,0 -48984158,"Besiege",purchase,1.0,0 -48984158,"Besiege",play,3.4,0 -48984158,"Watch_Dogs",purchase,1.0,0 -48984158,"Watch_Dogs",play,3.2,0 -48984158,"The Stanley Parable",purchase,1.0,0 -48984158,"The Stanley Parable",play,3.1,0 -48984158,"Mirror's Edge",purchase,1.0,0 -48984158,"Mirror's Edge",play,2.9,0 -48984158,"Bad Rats",purchase,1.0,0 -48984158,"Bad Rats",play,2.2,0 -48984158,"Left 4 Dead",purchase,1.0,0 -48984158,"Left 4 Dead",play,2.2,0 -48984158,"Grand Theft Auto IV",purchase,1.0,0 -48984158,"Grand Theft Auto IV",play,2.0,0 -48984158,"Papers, Please",purchase,1.0,0 -48984158,"Papers, Please",play,1.9,0 -48984158,"Bastion",purchase,1.0,0 -48984158,"Bastion",play,1.9,0 -48984158,"Space Engineers",purchase,1.0,0 -48984158,"Space Engineers",play,1.9,0 -48984158,"Why So Evil",purchase,1.0,0 -48984158,"Why So Evil",play,1.9,0 -48984158,"Dead Bits",purchase,1.0,0 -48984158,"Dead Bits",play,1.9,0 -48984158,"King's Bounty The Legend",purchase,1.0,0 -48984158,"King's Bounty The Legend",play,1.7,0 -48984158,"Magicka",purchase,1.0,0 -48984158,"Magicka",play,1.6,0 -48984158,"Castle Crashers",purchase,1.0,0 -48984158,"Castle Crashers",play,1.5,0 -48984158,"DC Universe Online",purchase,1.0,0 -48984158,"DC Universe Online",play,1.5,0 -48984158,"Grand Theft Auto Vice City",purchase,1.0,0 -48984158,"Grand Theft Auto Vice City",play,1.4,0 -48984158,"Grand Theft Auto III",purchase,1.0,0 -48984158,"Grand Theft Auto III",play,1.4,0 -48984158,"Day of Defeat Source",purchase,1.0,0 -48984158,"Day of Defeat Source",play,1.3,0 -48984158,"Left 4 Dead 2",purchase,1.0,0 -48984158,"Left 4 Dead 2",play,1.3,0 -48984158,"L.A. Noire",purchase,1.0,0 -48984158,"L.A. Noire",play,1.2,0 -48984158,"Team Fortress 2",purchase,1.0,0 -48984158,"Team Fortress 2",play,1.2,0 -48984158,"Divinity Original Sin",purchase,1.0,0 -48984158,"Divinity Original Sin",play,1.1,0 -48984158,"Half-Life",purchase,1.0,0 -48984158,"Half-Life",play,0.9,0 -48984158,"Knights and Merchants",purchase,1.0,0 -48984158,"Knights and Merchants",play,0.9,0 -48984158,"Grand Theft Auto San Andreas",purchase,1.0,0 -48984158,"Grand Theft Auto San Andreas",play,0.7,0 -48984158,"Defy Gravity",purchase,1.0,0 -48984158,"Defy Gravity",play,0.6,0 -48984158,"The Swapper",purchase,1.0,0 -48984158,"The Swapper",play,0.6,0 -48984158,"Saints Row 2",purchase,1.0,0 -48984158,"Saints Row 2",play,0.6,0 -48984158,"DETOUR",purchase,1.0,0 -48984158,"DETOUR",play,0.6,0 -48984158,"Revolution Ace",purchase,1.0,0 -48984158,"Revolution Ace",play,0.6,0 -48984158,"Trine",purchase,1.0,0 -48984158,"Trine",play,0.5,0 -48984158,"Half-Life 2 Deathmatch",purchase,1.0,0 -48984158,"Half-Life 2 Deathmatch",play,0.5,0 -48984158,"Half-Life 2 Lost Coast",purchase,1.0,0 -48984158,"Half-Life 2 Lost Coast",play,0.5,0 -48984158,"The Forest",purchase,1.0,0 -48984158,"The Forest",play,0.4,0 -48984158,"Enclave",purchase,1.0,0 -48984158,"Enclave",play,0.3,0 -48984158,"Portal 2",purchase,1.0,0 -48984158,"Portal 2",play,0.3,0 -48984158,"Fractured Space",purchase,1.0,0 -48984158,"Fractured Space",play,0.2,0 -48984158,"Deus Ex Game of the Year Edition",purchase,1.0,0 -48984158,"Deus Ex Game of the Year Edition",play,0.1,0 -48984158,"EDGE",purchase,1.0,0 -48984158,"EDGE",play,0.1,0 -48984158,"The Witcher 3 Wild Hunt",purchase,1.0,0 -48984158,"Super Meat Boy",purchase,1.0,0 -48984158,"Half-Life Source",purchase,1.0,0 -48984158,"Beyond Divinity",purchase,1.0,0 -48984158,"BioShock",purchase,1.0,0 -48984158,"BioShock 2",purchase,1.0,0 -48984158,"BioShock Infinite",purchase,1.0,0 -48984158,"Chaos Domain",purchase,1.0,0 -48984158,"Commander Conquest of the Americas Gold",purchase,1.0,0 -48984158,"Counter-Strike",purchase,1.0,0 -48984158,"Counter-Strike Condition Zero",purchase,1.0,0 -48984158,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -48984158,"Counter-Strike Source",purchase,1.0,0 -48984158,"Day of Defeat",purchase,1.0,0 -48984158,"Deathmatch Classic",purchase,1.0,0 -48984158,"Deus Ex Invisible War",purchase,1.0,0 -48984158,"Divine Divinity",purchase,1.0,0 -48984158,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -48984158,"Dungeon of the Endless",purchase,1.0,0 -48984158,"East India Company Gold",purchase,1.0,0 -48984158,"Endless Space",purchase,1.0,0 -48984158,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -48984158,"Grand Theft Auto San Andreas",purchase,1.0,0 -48984158,"Grand Theft Auto Vice City",purchase,1.0,0 -48984158,"Grand Theft Auto III",purchase,1.0,0 -48984158,"Half-Life 2 Episode One",purchase,1.0,0 -48984158,"Half-Life 2 Episode Two",purchase,1.0,0 -48984158,"Half-Life Blue Shift",purchase,1.0,0 -48984158,"Half-Life Opposing Force",purchase,1.0,0 -48984158,"Half-Life Deathmatch Source",purchase,1.0,0 -48984158,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -48984158,"King's Bounty Armored Princess",purchase,1.0,0 -48984158,"King's Bounty Crossworlds",purchase,1.0,0 -48984158,"KnightShift",purchase,1.0,0 -48984158,"LIMBO",purchase,1.0,0 -48984158,"Magicka Final Frontier",purchase,1.0,0 -48984158,"Magicka Frozen Lake",purchase,1.0,0 -48984158,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -48984158,"Magicka Nippon",purchase,1.0,0 -48984158,"Magicka Party Robes",purchase,1.0,0 -48984158,"Magicka The Watchtower",purchase,1.0,0 -48984158,"Magicka Vietnam",purchase,1.0,0 -48984158,"Magicka Wizard's Survival Kit",purchase,1.0,0 -48984158,"Metro 2033",purchase,1.0,0 -48984158,"Middle-earth Shadow of Mordor",purchase,1.0,0 -48984158,"Mortal Kombat Komplete Edition",purchase,1.0,0 -48984158,"Pirates of Black Cove Gold",purchase,1.0,0 -48984158,"Portal",purchase,1.0,0 -48984158,"Ricochet",purchase,1.0,0 -48984158,"Saints Row The Third",purchase,1.0,0 -48984158,"Serena",purchase,1.0,0 -48984158,"Shadows on the Vatican - Act I Greed",purchase,1.0,0 -48984158,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -48984158,"Super Killer Hornet Resurrection",purchase,1.0,0 -48984158,"Team Fortress Classic",purchase,1.0,0 -48984158,"Teleglitch Die More Edition",purchase,1.0,0 -48984158,"The Elder Scrolls III Morrowind",purchase,1.0,0 -48984158,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -48984158,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -48984158,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -48984158,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -48984158,"Transistor",purchase,1.0,0 -48984158,"Trine 2",purchase,1.0,0 -48984158,"Two Worlds Epic Edition",purchase,1.0,0 -48984158,"XCOM Enemy Within",purchase,1.0,0 -197328486,"Assassin's Creed Brotherhood",purchase,1.0,0 -197328486,"Assassin's Creed Brotherhood",play,68.0,0 -197328486,"100% Orange Juice",purchase,1.0,0 -197328486,"100% Orange Juice",play,35.0,0 -197328486,"The Elder Scrolls V Skyrim",purchase,1.0,0 -197328486,"The Elder Scrolls V Skyrim",play,11.6,0 -197328486,"Marvel Heroes 2015",purchase,1.0,0 -197328486,"Marvel Heroes 2015",play,1.9,0 -197328486,"Assassin's Creed Revelations",purchase,1.0,0 -197328486,"The Lord of the Rings Online",purchase,1.0,0 -167153680,"Dota 2",purchase,1.0,0 -167153680,"Dota 2",play,195.0,0 -167153680,"GunZ 2 The Second Duel",purchase,1.0,0 -167153680,"Trove",purchase,1.0,0 -76767,"Counter-Strike",purchase,1.0,0 -76767,"Counter-Strike",play,365.0,0 -76767,"Call of Duty World at War",purchase,1.0,0 -76767,"Call of Duty World at War",play,271.0,0 -76767,"Total War ATTILA",purchase,1.0,0 -76767,"Total War ATTILA",play,207.0,0 -76767,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -76767,"Call of Duty Modern Warfare 2 - Multiplayer",play,165.0,0 -76767,"Call of Duty Modern Warfare 2",purchase,1.0,0 -76767,"Call of Duty Modern Warfare 2",play,65.0,0 -76767,"Counter-Strike Source",purchase,1.0,0 -76767,"Counter-Strike Source",play,25.0,0 -76767,"Banished",purchase,1.0,0 -76767,"Banished",play,24.0,0 -76767,"Call of Duty Black Ops",purchase,1.0,0 -76767,"Call of Duty Black Ops",play,22.0,0 -76767,"Call of Duty Modern Warfare 3",purchase,1.0,0 -76767,"Call of Duty Modern Warfare 3",play,15.9,0 -76767,"Portal 2",purchase,1.0,0 -76767,"Portal 2",play,15.0,0 -76767,"Age of Empires II HD Edition",purchase,1.0,0 -76767,"Age of Empires II HD Edition",play,13.1,0 -76767,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -76767,"Call of Duty Black Ops - Multiplayer",play,12.5,0 -76767,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -76767,"Call of Duty Modern Warfare 3 - Multiplayer",play,9.7,0 -76767,"Rise of Nations Extended Edition",purchase,1.0,0 -76767,"Rise of Nations Extended Edition",play,5.7,0 -76767,"Counter-Strike Global Offensive",purchase,1.0,0 -76767,"Counter-Strike Global Offensive",play,3.5,0 -76767,"Thief Deadly Shadows",purchase,1.0,0 -76767,"Thief Deadly Shadows",play,3.4,0 -76767,"The Stanley Parable",purchase,1.0,0 -76767,"The Stanley Parable",play,1.8,0 -76767,"Half-Life",purchase,1.0,0 -76767,"Half-Life",play,1.2,0 -76767,"Alien Swarm",purchase,1.0,0 -76767,"Alien Swarm",play,0.8,0 -76767,"Worms Armageddon",purchase,1.0,0 -76767,"Worms Armageddon",play,0.4,0 -76767,"Arma 2",purchase,1.0,0 -76767,"Arma 2 Operation Arrowhead",purchase,1.0,0 -76767,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -76767,"Day of Defeat",purchase,1.0,0 -76767,"Deathmatch Classic",purchase,1.0,0 -76767,"Half-Life Blue Shift",purchase,1.0,0 -76767,"Half-Life Opposing Force",purchase,1.0,0 -76767,"Ricochet",purchase,1.0,0 -76767,"Team Fortress Classic",purchase,1.0,0 -76767,"Thief",purchase,1.0,0 -76767,"Thief - Ghost",purchase,1.0,0 -76767,"Thief - Opportunist",purchase,1.0,0 -76767,"Thief - Predator",purchase,1.0,0 -76767,"Thief - The Bank Heist",purchase,1.0,0 -76767,"Thief 2",purchase,1.0,0 -76767,"Thief Gold",purchase,1.0,0 -3498717,"Counter-Strike Source",purchase,1.0,0 -3498717,"Counter-Strike Source",play,0.2,0 -3498717,"Counter-Strike",purchase,1.0,0 -3498717,"Day of Defeat",purchase,1.0,0 -3498717,"Deathmatch Classic",purchase,1.0,0 -3498717,"Half-Life",purchase,1.0,0 -3498717,"Half-Life 2",purchase,1.0,0 -3498717,"Half-Life 2 Deathmatch",purchase,1.0,0 -3498717,"Half-Life 2 Lost Coast",purchase,1.0,0 -3498717,"Half-Life Blue Shift",purchase,1.0,0 -3498717,"Half-Life Opposing Force",purchase,1.0,0 -3498717,"Ricochet",purchase,1.0,0 -3498717,"Team Fortress Classic",purchase,1.0,0 -196435579,"Dota 2",purchase,1.0,0 -196435579,"Dota 2",play,2.1,0 -10515535,"Counter-Strike Source",purchase,1.0,0 -10515535,"Counter-Strike Source",play,0.1,0 -10515535,"Half-Life 2",purchase,1.0,0 -10515535,"Half-Life 2 Deathmatch",purchase,1.0,0 -10515535,"Half-Life 2 Lost Coast",purchase,1.0,0 -152497084,"Counter-Strike Global Offensive",purchase,1.0,0 -152497084,"Counter-Strike Global Offensive",play,845.0,0 -152497084,"Grand Theft Auto V",purchase,1.0,0 -152497084,"Grand Theft Auto V",play,35.0,0 -152497084,"FINAL FANTASY XIII",purchase,1.0,0 -152497084,"FINAL FANTASY XIII",play,34.0,0 -152497084,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -152497084,"Resident Evil Revelations 2 / Biohazard Revelations 2",play,25.0,0 -152497084,"Dying Light",purchase,1.0,0 -152497084,"Dying Light",play,23.0,0 -152497084,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -152497084,"Resident Evil 6 / Biohazard 6",play,21.0,0 -152497084,"Dota 2",purchase,1.0,0 -152497084,"Dota 2",play,17.1,0 -152497084,"Infestation Survivor Stories",purchase,1.0,0 -152497084,"Infestation Survivor Stories",play,12.9,0 -152497084,"The Evil Within",purchase,1.0,0 -152497084,"The Evil Within",play,9.8,0 -152497084,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -152497084,"Resident Evil 5 / Biohazard 5",play,9.0,0 -152497084,"Left 4 Dead 2",purchase,1.0,0 -152497084,"Left 4 Dead 2",play,8.9,0 -152497084,"Dead Island",purchase,1.0,0 -152497084,"Dead Island",play,8.5,0 -152497084,"FINAL FANTASY XIII-2",purchase,1.0,0 -152497084,"FINAL FANTASY XIII-2",play,4.5,0 -152497084,"The Elder Scrolls V Skyrim",purchase,1.0,0 -152497084,"The Elder Scrolls V Skyrim",play,3.4,0 -152497084,"Heroes & Generals",purchase,1.0,0 -152497084,"Heroes & Generals",play,1.8,0 -152497084,"Tomb Raider",purchase,1.0,0 -152497084,"Tomb Raider",play,1.6,0 -152497084,"Contagion",purchase,1.0,0 -152497084,"Contagion",play,1.3,0 -152497084,"H1Z1",purchase,1.0,0 -152497084,"H1Z1",play,1.2,0 -152497084,"Serious Sam HD The Second Encounter",purchase,1.0,0 -152497084,"Serious Sam HD The Second Encounter",play,1.0,0 -152497084,"Left 4 Dead",purchase,1.0,0 -152497084,"Left 4 Dead",play,0.8,0 -152497084,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -152497084,"Counter-Strike Condition Zero Deleted Scenes",play,0.4,0 -152497084,"Counter-Strike",purchase,1.0,0 -152497084,"Aftermath",purchase,1.0,0 -152497084,"Counter-Strike Condition Zero",purchase,1.0,0 -152497084,"Day of Defeat",purchase,1.0,0 -152497084,"Deathmatch Classic",purchase,1.0,0 -152497084,"FreeStyle2 Street Basketball",purchase,1.0,0 -152497084,"H1Z1 Test Server",purchase,1.0,0 -152497084,"LIGHTNING RETURNS FINAL FANTASY XIII",purchase,1.0,0 -152497084,"Ricochet",purchase,1.0,0 -152497084,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -152497084,"Strife",purchase,1.0,0 -152497084,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -152497084,"Unturned",purchase,1.0,0 -152497084,"War Thunder",purchase,1.0,0 -107346769,"Gotham City Impostors Free To Play",purchase,1.0,0 -107346769,"Gotham City Impostors Free To Play",play,9.9,0 -107346769,"Terraria",purchase,1.0,0 -107346769,"Terraria",play,7.4,0 -107346769,"Team Fortress 2",purchase,1.0,0 -107346769,"Team Fortress 2",play,1.7,0 -107346769,"The Lord of the Rings Online",purchase,1.0,0 -149384813,"Dota 2",purchase,1.0,0 -149384813,"Dota 2",play,6.9,0 -158620881,"Dota 2",purchase,1.0,0 -158620881,"Dota 2",play,92.0,0 -158620881,"Grand Theft Auto V",purchase,1.0,0 -158620881,"Grand Theft Auto V",play,18.6,0 -158620881,"Mirror's Edge",purchase,1.0,0 -158620881,"Mirror's Edge",play,4.8,0 -158620881,"Robocraft",purchase,1.0,0 -158620881,"Robocraft",play,3.7,0 -158620881,"Dungeon Defenders II",purchase,1.0,0 -158620881,"Dungeon Defenders II",play,0.2,0 -158620881,"Unturned",purchase,1.0,0 -158620881,"Unturned",play,0.1,0 -108241539,"Team Fortress 2",purchase,1.0,0 -108241539,"Team Fortress 2",play,0.8,0 -224594322,"Dota 2",purchase,1.0,0 -224594322,"Dota 2",play,0.6,0 -224594322,"8BitMMO",purchase,1.0,0 -224594322,"Fistful of Frags",purchase,1.0,0 -106066141,"The Elder Scrolls V Skyrim",purchase,1.0,0 -106066141,"The Elder Scrolls V Skyrim",play,7.5,0 -106066141,"RPG Maker VX Ace",purchase,1.0,0 -106066141,"RPG Maker VX Ace",play,5.7,0 -94269421,"The Elder Scrolls V Skyrim",purchase,1.0,0 -94269421,"The Elder Scrolls V Skyrim",play,225.0,0 -94269421,"South Park The Stick of Truth",purchase,1.0,0 -94269421,"South Park The Stick of Truth",play,58.0,0 -94269421,"PlanetSide 2",purchase,1.0,0 -94269421,"PlanetSide 2",play,50.0,0 -94269421,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -94269421,"The Elder Scrolls IV Oblivion ",play,50.0,0 -94269421,"Borderlands 2",purchase,1.0,0 -94269421,"Borderlands 2",play,47.0,0 -94269421,"Mass Effect",purchase,1.0,0 -94269421,"Mass Effect",play,44.0,0 -94269421,"L.A. Noire",purchase,1.0,0 -94269421,"L.A. Noire",play,42.0,0 -94269421,"AdVenture Capitalist",purchase,1.0,0 -94269421,"AdVenture Capitalist",play,42.0,0 -94269421,"Sherlock Holmes Crimes and Punishments",purchase,1.0,0 -94269421,"Sherlock Holmes Crimes and Punishments",play,30.0,0 -94269421,"Mass Effect 2",purchase,1.0,0 -94269421,"Mass Effect 2",play,27.0,0 -94269421,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -94269421,"Fallout 3 - Game of the Year Edition",play,24.0,0 -94269421,"The Testament of Sherlock Holmes",purchase,1.0,0 -94269421,"The Testament of Sherlock Holmes",play,21.0,0 -94269421,"Tales from the Borderlands",purchase,1.0,0 -94269421,"Tales from the Borderlands",play,19.4,0 -94269421,"BioShock Infinite",purchase,1.0,0 -94269421,"BioShock Infinite",play,19.0,0 -94269421,"BioShock",purchase,1.0,0 -94269421,"BioShock",play,13.9,0 -94269421,"Broken Age",purchase,1.0,0 -94269421,"Broken Age",play,13.2,0 -94269421,"Grim Fandango Remastered",purchase,1.0,0 -94269421,"Grim Fandango Remastered",play,11.6,0 -94269421,"Sherlock Holmes versus Jack the Ripper",purchase,1.0,0 -94269421,"Sherlock Holmes versus Jack the Ripper",play,11.3,0 -94269421,"Fallout New Vegas",purchase,1.0,0 -94269421,"Fallout New Vegas",play,11.0,0 -94269421,"Fallout 4",purchase,1.0,0 -94269421,"Fallout 4",play,10.1,0 -94269421,"Dishonored",purchase,1.0,0 -94269421,"Dishonored",play,9.8,0 -94269421,"Nancy Drew Tomb of the Lost Queen",purchase,1.0,0 -94269421,"Nancy Drew Tomb of the Lost Queen",play,8.4,0 -94269421,"Portal 2",purchase,1.0,0 -94269421,"Portal 2",play,8.3,0 -94269421,"Farm for your Life",purchase,1.0,0 -94269421,"Farm for your Life",play,8.0,0 -94269421,"PAYDAY 2",purchase,1.0,0 -94269421,"PAYDAY 2",play,7.5,0 -94269421,"Sid Meier's Civilization V",purchase,1.0,0 -94269421,"Sid Meier's Civilization V",play,7.5,0 -94269421,"Nancy Drew The Captive Curse",purchase,1.0,0 -94269421,"Nancy Drew The Captive Curse",play,7.4,0 -94269421,"Lego Harry Potter",purchase,1.0,0 -94269421,"Lego Harry Potter",play,7.3,0 -94269421,"Nancy Drew The Deadly Device",purchase,1.0,0 -94269421,"Nancy Drew The Deadly Device",play,6.1,0 -94269421,"Prison Architect",purchase,1.0,0 -94269421,"Prison Architect",play,5.9,0 -94269421,"Portal",purchase,1.0,0 -94269421,"Portal",play,5.9,0 -94269421,"Scribblenauts Unlimited",purchase,1.0,0 -94269421,"Scribblenauts Unlimited",play,5.4,0 -94269421,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -94269421,"Call of Duty 4 Modern Warfare",play,4.9,0 -94269421,"Nancy Drew Ghost of Thornton Hall",purchase,1.0,0 -94269421,"Nancy Drew Ghost of Thornton Hall",play,4.8,0 -94269421,"Nancy Drew Alibi in Ashes",purchase,1.0,0 -94269421,"Nancy Drew Alibi in Ashes",play,4.7,0 -94269421,"Alan Wake",purchase,1.0,0 -94269421,"Alan Wake",play,4.6,0 -94269421,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -94269421,"Vampire The Masquerade - Bloodlines",play,4.2,0 -94269421,"Psychonauts",purchase,1.0,0 -94269421,"Psychonauts",play,3.8,0 -94269421,"Assassin's Creed",purchase,1.0,0 -94269421,"Assassin's Creed",play,3.7,0 -94269421,"Cinders",purchase,1.0,0 -94269421,"Cinders",play,3.2,0 -94269421,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -94269421,"Back to the Future Ep 2 - Get Tannen!",play,3.1,0 -94269421,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -94269421,"Back to the Future Ep 1 - It's About Time",play,3.1,0 -94269421,"Terraria",purchase,1.0,0 -94269421,"Terraria",play,3.0,0 -94269421,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -94269421,"Back to the Future Ep 4 - Double Visions",play,2.8,0 -94269421,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -94269421,"Back to the Future Ep 3 - Citizen Brown",play,2.5,0 -94269421,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -94269421,"Back to the Future Ep 5 - OUTATIME",play,2.5,0 -94269421,"Ether One",purchase,1.0,0 -94269421,"Ether One",play,2.3,0 -94269421,"Sherlock Holmes Nemesis",purchase,1.0,0 -94269421,"Sherlock Holmes Nemesis",play,2.0,0 -94269421,"Black Sails",purchase,1.0,0 -94269421,"Black Sails",play,1.8,0 -94269421,"Warframe",purchase,1.0,0 -94269421,"Warframe",play,1.5,0 -94269421,"Deus Ex Human Revolution",purchase,1.0,0 -94269421,"Deus Ex Human Revolution",play,1.5,0 -94269421,"Don't Starve Together Beta",purchase,1.0,0 -94269421,"Don't Starve Together Beta",play,1.2,0 -94269421,"Serena",purchase,1.0,0 -94269421,"Serena",play,0.9,0 -94269421,"Black Mirror",purchase,1.0,0 -94269421,"Black Mirror",play,0.9,0 -94269421,"The Stanley Parable",purchase,1.0,0 -94269421,"The Stanley Parable",play,0.9,0 -94269421,"Fingerbones",purchase,1.0,0 -94269421,"Fingerbones",play,0.3,0 -94269421,"Cook, Serve, Delicious!",purchase,1.0,0 -94269421,"Cook, Serve, Delicious!",play,0.3,0 -94269421,"the static speaks my name",purchase,1.0,0 -94269421,"the static speaks my name",play,0.2,0 -94269421,"The Plan",purchase,1.0,0 -94269421,"The Plan",play,0.1,0 -94269421,"Alan Wake's American Nightmare",purchase,1.0,0 -94269421,"Among the Sleep",purchase,1.0,0 -94269421,"BattleBlock Theater",purchase,1.0,0 -94269421,"BioShock 2",purchase,1.0,0 -94269421,"BioShock Infinite - Season Pass",purchase,1.0,0 -94269421,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -94269421,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -94269421,"Call of Duty 2",purchase,1.0,0 -94269421,"Castle Crashers",purchase,1.0,0 -94269421,"Dead Space",purchase,1.0,0 -94269421,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -94269421,"Ether One Redux",purchase,1.0,0 -94269421,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -94269421,"Fallout New Vegas Dead Money",purchase,1.0,0 -94269421,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -94269421,"Half-Life 2",purchase,1.0,0 -94269421,"Left 4 Dead 2",purchase,1.0,0 -94269421,"METAL SLUG 3",purchase,1.0,0 -94269421,"Mirror's Edge",purchase,1.0,0 -94269421,"Psychonauts Demo",purchase,1.0,0 -94269421,"Secrets of Rtikon",purchase,1.0,0 -94269421,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -94269421,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -94269421,"Summoner",purchase,1.0,0 -94269421,"System Shock 2",purchase,1.0,0 -94269421,"The Elder Scrolls III Morrowind",purchase,1.0,0 -94269421,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -94269421,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -94269421,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -94269421,"Tomb Raider",purchase,1.0,0 -153428440,"Football Manager 2013",purchase,1.0,0 -153428440,"Football Manager 2013",play,110.0,0 -174033209,"Counter-Strike Global Offensive",purchase,1.0,0 -174033209,"Counter-Strike Global Offensive",play,78.0,0 -174033209,"Left 4 Dead 2",purchase,1.0,0 -174033209,"Left 4 Dead 2",play,12.0,0 -174033209,"War Thunder",purchase,1.0,0 -174033209,"Warframe",purchase,1.0,0 -228045441,"Unturned",purchase,1.0,0 -228045441,"Unturned",play,4.1,0 -228045441,"Firefall",purchase,1.0,0 -228045441,"Firefall",play,0.3,0 -228045441,"Quintet",purchase,1.0,0 -228045441,"Quintet",play,0.3,0 -228045441,"Batla",purchase,1.0,0 -228045441,"Infinite Crisis",purchase,1.0,0 -68736721,"Alien Swarm",purchase,1.0,0 -68736721,"Alien Swarm",play,0.9,0 -300078123,"War Inc. Battlezone",purchase,1.0,0 -300078123,"War Inc. Battlezone",play,0.4,0 -297101826,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -297101826,"Call of Duty Modern Warfare 3",purchase,1.0,0 -287122626,"Dota 2",purchase,1.0,0 -287122626,"Dota 2",play,3.4,0 -287122626,"Everlasting Summer",purchase,1.0,0 -287122626,"Fork Parker's Holiday Profit Hike",purchase,1.0,0 -287122626,"HAWKEN",purchase,1.0,0 -287122626,"Hotline Miami 2 Wrong Number Digital Comic",purchase,1.0,0 -287122626,"Jigoku Kisetsukan Sense of the Seasons",purchase,1.0,0 -287122626,"La Tale",purchase,1.0,0 -287122626,"Quake Live",purchase,1.0,0 -287122626,"Sakura Clicker",purchase,1.0,0 -26897314,"Space Empires IV Deluxe",purchase,1.0,0 -26897314,"Space Empires IV Deluxe",play,25.0,0 -26897314,"Counter-Strike",purchase,1.0,0 -26897314,"Counter-Strike Condition Zero",purchase,1.0,0 -26897314,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -26897314,"Counter-Strike Source",purchase,1.0,0 -26897314,"Day of Defeat Source",purchase,1.0,0 -26897314,"Half-Life 2 Deathmatch",purchase,1.0,0 -26897314,"Half-Life 2 Lost Coast",purchase,1.0,0 -181070203,"Unturned",purchase,1.0,0 -181070203,"Unturned",play,19.6,0 -181070203,"War Thunder",purchase,1.0,0 -181070203,"War Thunder",play,10.0,0 -181070203,"Toribash",purchase,1.0,0 -181070203,"Toribash",play,7.6,0 -181070203,"Warface",purchase,1.0,0 -181070203,"Warface",play,2.7,0 -181070203,"Team Fortress 2",purchase,1.0,0 -181070203,"Team Fortress 2",play,0.8,0 -181070203,"theHunter",purchase,1.0,0 -181070203,"theHunter",play,0.3,0 -177362386,"Team Fortress 2",purchase,1.0,0 -177362386,"Team Fortress 2",play,2.7,0 -211153613,"Rise of Incarnates",purchase,1.0,0 -234150209,"Dota 2",purchase,1.0,0 -234150209,"Dota 2",play,0.6,0 -255408941,"Dota 2",purchase,1.0,0 -255408941,"Dota 2",play,0.1,0 -15382030,"Half-Life 2",purchase,1.0,0 -15382030,"Half-Life 2",play,18.8,0 -15382030,"Counter-Strike Source",purchase,1.0,0 -15382030,"Half-Life 2 Deathmatch",purchase,1.0,0 -15382030,"Half-Life 2 Lost Coast",purchase,1.0,0 -148546383,"Dota 2",purchase,1.0,0 -148546383,"Dota 2",play,116.0,0 -217574533,"theHunter",purchase,1.0,0 -217574533,"theHunter",play,2.7,0 -217574533,"Unturned",purchase,1.0,0 -217574533,"Unturned",play,2.3,0 -217574533,"War Thunder",purchase,1.0,0 -241742834,"Dota 2",purchase,1.0,0 -241742834,"Dota 2",play,4.3,0 -241742834,"Everlasting Summer",purchase,1.0,0 -241742834,"Everlasting Summer",play,0.9,0 -181549899,"Dead Island",purchase,1.0,0 -181549899,"Dead Island",play,37.0,0 -181549899,"Garry's Mod",purchase,1.0,0 -181549899,"Garry's Mod",play,1.9,0 -307704705,"Dota 2",purchase,1.0,0 -307704705,"Dota 2",play,3.2,0 -137939290,"Dota 2",purchase,1.0,0 -137939290,"Dota 2",play,50.0,0 -201022896,"PAYDAY 2",purchase,1.0,0 -201022896,"PAYDAY 2",play,415.0,0 -201022896,"Team Fortress 2",purchase,1.0,0 -201022896,"Team Fortress 2",play,189.0,0 -201022896,"Counter-Strike Global Offensive",purchase,1.0,0 -201022896,"Counter-Strike Global Offensive",play,1.0,0 -201022896,"Dota 2",purchase,1.0,0 -201022896,"Dota 2",play,0.3,0 -193076632,"Elsword",purchase,1.0,0 -193076632,"Elsword",play,0.7,0 -193076632,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -58316550,"Counter-Strike Source",purchase,1.0,0 -58316550,"Counter-Strike Source",play,39.0,0 -58316550,"Day of Defeat Source",purchase,1.0,0 -58316550,"Day of Defeat Source",play,0.3,0 -58316550,"Half-Life 2 Deathmatch",purchase,1.0,0 -58316550,"Half-Life 2 Deathmatch",play,0.2,0 -58316550,"Half-Life 2 Lost Coast",purchase,1.0,0 -122798021,"Dota 2",purchase,1.0,0 -122798021,"Dota 2",play,1001.0,0 -122798021,"Rust",purchase,1.0,0 -122798021,"Rust",play,82.0,0 -122798021,"Counter-Strike Global Offensive",purchase,1.0,0 -122798021,"Counter-Strike Global Offensive",play,52.0,0 -122798021,"The Elder Scrolls V Skyrim",purchase,1.0,0 -122798021,"The Elder Scrolls V Skyrim",play,35.0,0 -122798021,"Wolfenstein The New Order",purchase,1.0,0 -122798021,"Wolfenstein The New Order",play,19.2,0 -122798021,"Heroes & Generals",purchase,1.0,0 -122798021,"Heroes & Generals",play,18.6,0 -122798021,"Metro Last Light Redux",purchase,1.0,0 -122798021,"Metro Last Light Redux",play,16.6,0 -122798021,"Tomb Raider",purchase,1.0,0 -122798021,"Tomb Raider",play,16.1,0 -122798021,"Sniper Elite V2",purchase,1.0,0 -122798021,"Sniper Elite V2",play,14.5,0 -122798021,"Men of War Assault Squad 2",purchase,1.0,0 -122798021,"Men of War Assault Squad 2",play,13.1,0 -122798021,"Left 4 Dead",purchase,1.0,0 -122798021,"Left 4 Dead",play,5.7,0 -122798021,"Outlast",purchase,1.0,0 -122798021,"Outlast",play,5.1,0 -122798021,"Don't Starve Together Beta",purchase,1.0,0 -122798021,"Don't Starve Together Beta",play,4.6,0 -122798021,"Spore",purchase,1.0,0 -122798021,"Spore",play,4.2,0 -122798021,"Hammerwatch",purchase,1.0,0 -122798021,"Hammerwatch",play,3.8,0 -122798021,"The Darkness II",purchase,1.0,0 -122798021,"The Darkness II",play,3.3,0 -122798021,"Left 4 Dead 2",purchase,1.0,0 -122798021,"Left 4 Dead 2",play,2.5,0 -122798021,"Terraria",purchase,1.0,0 -122798021,"Terraria",play,2.1,0 -122798021,"Company of Heroes (New Steam Version)",purchase,1.0,0 -122798021,"Company of Heroes (New Steam Version)",play,1.7,0 -122798021,"Magicka Wizard Wars",purchase,1.0,0 -122798021,"Magicka Wizard Wars",play,1.5,0 -122798021,"Damned",purchase,1.0,0 -122798021,"Damned",play,1.2,0 -122798021,"Team Fortress 2",purchase,1.0,0 -122798021,"Team Fortress 2",play,1.0,0 -122798021,"Verdun",purchase,1.0,0 -122798021,"Verdun",play,1.0,0 -122798021,"theHunter",purchase,1.0,0 -122798021,"theHunter",play,1.0,0 -122798021,"Dead Pixels",purchase,1.0,0 -122798021,"Dead Pixels",play,0.2,0 -122798021,"The Witcher Enhanced Edition",purchase,1.0,0 -122798021,"The Witcher Enhanced Edition",play,0.1,0 -122798021,"Napoleon Total War",purchase,1.0,0 -122798021,"Napoleon Total War",play,0.1,0 -122798021,"Spore Galactic Adventures",purchase,1.0,0 -122798021,"BLOCKADE 3D",purchase,1.0,0 -122798021,"Company of Heroes",purchase,1.0,0 -122798021,"Company of Heroes Opposing Fronts",purchase,1.0,0 -122798021,"Company of Heroes Tales of Valor",purchase,1.0,0 -122798021,"Counter-Strike",purchase,1.0,0 -122798021,"Counter-Strike Condition Zero",purchase,1.0,0 -122798021,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -122798021,"Counter-Strike Source",purchase,1.0,0 -122798021,"Cry of Fear",purchase,1.0,0 -122798021,"DCS World",purchase,1.0,0 -122798021,"Dogs of War Online - Beta",purchase,1.0,0 -122798021,"Don't Starve",purchase,1.0,0 -122798021,"Don't Starve Reign of Giants",purchase,1.0,0 -122798021,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -122798021,"Hitman 2 Silent Assassin",purchase,1.0,0 -122798021,"Hitman Absolution",purchase,1.0,0 -122798021,"Hitman Blood Money",purchase,1.0,0 -122798021,"Hitman Codename 47",purchase,1.0,0 -122798021,"Hitman Contracts",purchase,1.0,0 -122798021,"Hitman Sniper Challenge",purchase,1.0,0 -122798021,"Loadout",purchase,1.0,0 -122798021,"Metro 2033 Redux",purchase,1.0,0 -122798021,"No More Room in Hell",purchase,1.0,0 -122798021,"Outlast Whistleblower DLC",purchase,1.0,0 -122798021,"PAYDAY 2",purchase,1.0,0 -122798021,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -122798021,"Rome Total War",purchase,1.0,0 -122798021,"Spore Creepy & Cute Parts Pack",purchase,1.0,0 -122798021,"Star Conflict",purchase,1.0,0 -122798021,"Survarium",purchase,1.0,0 -122798021,"Tactical Intervention",purchase,1.0,0 -122798021,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -122798021,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -122798021,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -122798021,"The Hat Man Shadow Ward",purchase,1.0,0 -122798021,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -122798021,"Tomb Raider Anniversary",purchase,1.0,0 -122798021,"Tomb Raider Chronicles",purchase,1.0,0 -122798021,"Tomb Raider Legend",purchase,1.0,0 -122798021,"Tomb Raider The Last Revelation",purchase,1.0,0 -122798021,"Tomb Raider Underworld",purchase,1.0,0 -122798021,"Tomb Raider I",purchase,1.0,0 -122798021,"Tomb Raider II",purchase,1.0,0 -122798021,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -122798021,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -122798021,"Unturned",purchase,1.0,0 -122798021,"Warframe",purchase,1.0,0 -213022303,"H1Z1",purchase,1.0,0 -213022303,"H1Z1",play,6.7,0 -213022303,"The Elder Scrolls V Skyrim",purchase,1.0,0 -213022303,"The Elder Scrolls V Skyrim",play,1.3,0 -213022303,"Portal 2",purchase,1.0,0 -213022303,"Portal 2",play,0.4,0 -213022303,"Soccer Manager 2015",purchase,1.0,0 -213022303,"Soccer Manager 2015",play,0.1,0 -213022303,"H1Z1 Test Server",purchase,1.0,0 -213022303,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -213022303,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -213022303,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -269058144,"Call of Duty Black Ops II",purchase,1.0,0 -269058144,"Call of Duty Black Ops II",play,6.2,0 -269058144,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -269058144,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -61289147,"Left 4 Dead 2",purchase,1.0,0 -61289147,"Left 4 Dead 2",play,8.5,0 -282676810,"Unturned",purchase,1.0,0 -282676810,"Unturned",play,3.3,0 -106901665,"PAYDAY The Heist",purchase,1.0,0 -106901665,"PAYDAY The Heist",play,21.0,0 -106901665,"Left 4 Dead 2",purchase,1.0,0 -106901665,"Left 4 Dead 2",play,2.8,0 -189827182,"Dota 2",purchase,1.0,0 -189827182,"Dota 2",play,1.0,0 -72971410,"Day of Defeat Source",purchase,1.0,0 -72971410,"Day of Defeat Source",play,0.4,0 -193202632,"Unturned",purchase,1.0,0 -193202632,"Unturned",play,3.3,0 -193202632,"No More Room in Hell",purchase,1.0,0 -193202632,"No More Room in Hell",play,0.7,0 -215255305,"Dota 2",purchase,1.0,0 -215255305,"Dota 2",play,3.8,0 -215892858,"Double Action Boogaloo",purchase,1.0,0 -84318201,"Team Fortress 2",purchase,1.0,0 -84318201,"Team Fortress 2",play,27.0,0 -84318201,"Don't Starve Together Beta",purchase,1.0,0 -84318201,"Don't Starve Together Beta",play,26.0,0 -84318201,"Dead Island",purchase,1.0,0 -84318201,"Dead Island",play,23.0,0 -84318201,"DC Universe Online",purchase,1.0,0 -84318201,"DC Universe Online",play,16.1,0 -84318201,"Age of Empires II HD Edition",purchase,1.0,0 -84318201,"Age of Empires II HD Edition",play,11.6,0 -84318201,"The Witcher Enhanced Edition",purchase,1.0,0 -84318201,"The Witcher Enhanced Edition",play,9.7,0 -84318201,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -84318201,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,9.3,0 -84318201,"Portal",purchase,1.0,0 -84318201,"Portal",play,4.0,0 -84318201,"Heretic Shadow of the Serpent Riders",purchase,1.0,0 -84318201,"Heretic Shadow of the Serpent Riders",play,1.9,0 -84318201,"Fallout",purchase,1.0,0 -84318201,"Fallout",play,0.1,0 -84318201,"No More Room in Hell",purchase,1.0,0 -84318201,"HeXen Deathkings of the Dark Citadel",purchase,1.0,0 -84318201,"HeXen II",purchase,1.0,0 -84318201,"HeXen Beyond Heretic",purchase,1.0,0 -33706322,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -33706322,"Dark Souls Prepare to Die Edition",play,44.0,0 -33706322,"Fallout New Vegas",purchase,1.0,0 -33706322,"Fallout New Vegas",play,18.3,0 -33706322,"Half-Life",purchase,1.0,0 -33706322,"Half-Life",play,12.9,0 -33706322,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -33706322,"Duke Nukem 3D Megaton Edition",play,12.2,0 -33706322,"Quake",purchase,1.0,0 -33706322,"Quake",play,9.6,0 -33706322,"Cave Story+",purchase,1.0,0 -33706322,"Cave Story+",play,8.9,0 -33706322,"The Elder Scrolls V Skyrim",purchase,1.0,0 -33706322,"The Elder Scrolls V Skyrim",play,6.8,0 -33706322,"Call of Duty World at War",purchase,1.0,0 -33706322,"Call of Duty World at War",play,6.4,0 -33706322,"Undertale",purchase,1.0,0 -33706322,"Undertale",play,3.3,0 -33706322,"Portal 2",purchase,1.0,0 -33706322,"Portal 2",play,3.1,0 -33706322,"Super Meat Boy",purchase,1.0,0 -33706322,"Super Meat Boy",play,2.1,0 -33706322,"Saints Row The Third",purchase,1.0,0 -33706322,"Saints Row The Third",play,2.0,0 -33706322,"Left 4 Dead 2",purchase,1.0,0 -33706322,"Left 4 Dead 2",play,2.0,0 -33706322,"Team Fortress 2",purchase,1.0,0 -33706322,"Team Fortress 2",play,1.9,0 -33706322,"Sonic CD",purchase,1.0,0 -33706322,"Sonic CD",play,1.7,0 -33706322,"Commander Keen Complete Pack",purchase,1.0,0 -33706322,"Commander Keen Complete Pack",play,1.7,0 -33706322,"Wizardry 8",purchase,1.0,0 -33706322,"Wizardry 8",play,1.4,0 -33706322,"Half-Life 2",purchase,1.0,0 -33706322,"Half-Life 2",play,1.3,0 -33706322,"DOOM 3",purchase,1.0,0 -33706322,"DOOM 3",play,1.3,0 -33706322,"Spelunky",purchase,1.0,0 -33706322,"Spelunky",play,1.1,0 -33706322,"Legend of Grimrock",purchase,1.0,0 -33706322,"Legend of Grimrock",play,1.0,0 -33706322,"The Ultimate DOOM",purchase,1.0,0 -33706322,"The Ultimate DOOM",play,1.0,0 -33706322,"resident evil 4 / biohazard 4",purchase,1.0,0 -33706322,"resident evil 4 / biohazard 4",play,0.8,0 -33706322,"Ultra Street Fighter IV",purchase,1.0,0 -33706322,"Ultra Street Fighter IV",play,0.7,0 -33706322,"Quake II",purchase,1.0,0 -33706322,"Quake II",play,0.7,0 -33706322,"Company of Heroes (New Steam Version)",purchase,1.0,0 -33706322,"Company of Heroes (New Steam Version)",play,0.7,0 -33706322,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -33706322,"SEGA Genesis & Mega Drive Classics",play,0.6,0 -33706322,"Quake III Arena",purchase,1.0,0 -33706322,"Quake III Arena",play,0.6,0 -33706322,"VVVVVV",purchase,1.0,0 -33706322,"VVVVVV",play,0.6,0 -33706322,"Borderlands",purchase,1.0,0 -33706322,"Borderlands",play,0.5,0 -33706322,"Metro 2033",purchase,1.0,0 -33706322,"Metro 2033",play,0.5,0 -33706322,"Master Levels for DOOM II",purchase,1.0,0 -33706322,"Master Levels for DOOM II",play,0.3,0 -33706322,"Homefront",purchase,1.0,0 -33706322,"Homefront",play,0.3,0 -33706322,"Wolfenstein 3D",purchase,1.0,0 -33706322,"Wolfenstein 3D",play,0.3,0 -33706322,"Strider",purchase,1.0,0 -33706322,"Strider",play,0.3,0 -33706322,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -33706322,"Rising Storm/Red Orchestra 2 Multiplayer",play,0.3,0 -33706322,"Wolfenstein 3D Spear of Destiny",purchase,1.0,0 -33706322,"Wolfenstein 3D Spear of Destiny",play,0.3,0 -33706322,"Bionic Commando Rearmed",purchase,1.0,0 -33706322,"Bionic Commando Rearmed",play,0.2,0 -33706322,"Return to Castle Wolfenstein",purchase,1.0,0 -33706322,"Return to Castle Wolfenstein",play,0.2,0 -33706322,"DOOM II Hell on Earth",purchase,1.0,0 -33706322,"DOOM II Hell on Earth",play,0.2,0 -33706322,"DOOM 3 Resurrection of Evil",purchase,1.0,0 -33706322,"DOOM 3 Resurrection of Evil",play,0.2,0 -33706322,"Quake III Team Arena",purchase,1.0,0 -33706322,"Quake III Team Arena",play,0.2,0 -33706322,"Quake Mission Pack 1 Scourge of Armagon",purchase,1.0,0 -33706322,"Quake Mission Pack 1 Scourge of Armagon",play,0.2,0 -33706322,"Heretic Shadow of the Serpent Riders",purchase,1.0,0 -33706322,"Heretic Shadow of the Serpent Riders",play,0.2,0 -33706322,"Final DOOM",purchase,1.0,0 -33706322,"Final DOOM",play,0.2,0 -33706322,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -33706322,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,0.2,0 -33706322,"Quake 4",purchase,1.0,0 -33706322,"Quake 4",play,0.1,0 -33706322,"Quake Mission Pack 2 Dissolution of Eternity",purchase,1.0,0 -33706322,"Quake Mission Pack 2 Dissolution of Eternity",play,0.1,0 -33706322,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -33706322,"Warhammer 40,000 Dawn of War II",play,0.1,0 -33706322,"HeXen Beyond Heretic",purchase,1.0,0 -33706322,"HeXen Beyond Heretic",play,0.1,0 -33706322,"Legend of Dungeon",purchase,1.0,0 -33706322,"Legend of Dungeon",play,0.1,0 -33706322,"Nexuiz",purchase,1.0,0 -33706322,"HeXen II",purchase,1.0,0 -33706322,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -33706322,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -33706322,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -33706322,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -33706322,"Company of Heroes",purchase,1.0,0 -33706322,"Company of Heroes Opposing Fronts",purchase,1.0,0 -33706322,"Counter-Strike",purchase,1.0,0 -33706322,"Darksiders",purchase,1.0,0 -33706322,"Day of Defeat",purchase,1.0,0 -33706322,"Deathmatch Classic",purchase,1.0,0 -33706322,"DmC Devil May Cry",purchase,1.0,0 -33706322,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -33706322,"Fallout New Vegas Dead Money",purchase,1.0,0 -33706322,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -33706322,"Half-Life 2 Deathmatch",purchase,1.0,0 -33706322,"Half-Life 2 Lost Coast",purchase,1.0,0 -33706322,"Half-Life Blue Shift",purchase,1.0,0 -33706322,"Half-Life Opposing Force",purchase,1.0,0 -33706322,"HeXen Deathkings of the Dark Citadel",purchase,1.0,0 -33706322,"Lost Planet 3",purchase,1.0,0 -33706322,"Nexuiz Beta",purchase,1.0,0 -33706322,"Nexuiz STUPID Mode",purchase,1.0,0 -33706322,"Quake II Ground Zero",purchase,1.0,0 -33706322,"Quake II The Reckoning",purchase,1.0,0 -33706322,"RAGE",purchase,1.0,0 -33706322,"Remember Me",purchase,1.0,0 -33706322,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -33706322,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -33706322,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -33706322,"Ricochet",purchase,1.0,0 -33706322,"Team Fortress Classic",purchase,1.0,0 -33706322,"Titan Quest",purchase,1.0,0 -33706322,"Titan Quest Immortal Throne",purchase,1.0,0 -33706322,"Warhammer 40,000 Space Marine",purchase,1.0,0 -33706322,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -33706322,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -274581452,"Team Fortress 2",purchase,1.0,0 -274581452,"Team Fortress 2",play,7.0,0 -138918389,"Dota 2",purchase,1.0,0 -138918389,"Dota 2",play,153.0,0 -100057229,"The Elder Scrolls V Skyrim",purchase,1.0,0 -100057229,"The Elder Scrolls V Skyrim",play,19.3,0 -100057229,"Spore Galactic Adventures",purchase,1.0,0 -100057229,"Spore Galactic Adventures",play,8.7,0 -100057229,"Chivalry Medieval Warfare",purchase,1.0,0 -100057229,"Chivalry Medieval Warfare",play,8.6,0 -100057229,"Spore",purchase,1.0,0 -100057229,"Spore",play,6.7,0 -100057229,"Patch testing for Chivalry",purchase,1.0,0 -263171804,"Team Fortress 2",purchase,1.0,0 -263171804,"Team Fortress 2",play,4.4,0 -263171804,"Clicker Heroes",purchase,1.0,0 -263171804,"Floating Point",purchase,1.0,0 -263171804,"La Tale",purchase,1.0,0 -263171804,"Narcissu 1st & 2nd",purchase,1.0,0 -263171804,"Only If",purchase,1.0,0 -263171804,"Peggle Extreme",purchase,1.0,0 -263171804,"Quake Live",purchase,1.0,0 -263171804,"Spiral Knights",purchase,1.0,0 -263171804,"Super Crate Box",purchase,1.0,0 -263171804,"Super Monday Night Combat",purchase,1.0,0 -263171804,"The Cat and the Coup",purchase,1.0,0 -263171804,"The Expendabros",purchase,1.0,0 -263171804,"Toribash",purchase,1.0,0 -263171804,"Transformice",purchase,1.0,0 -263171804,"Unturned",purchase,1.0,0 -263171804,"You Have to Win the Game",purchase,1.0,0 -31764594,"Counter-Strike Source",purchase,1.0,0 -31764594,"Counter-Strike Source",play,5.7,0 -31764594,"Day of Defeat Source",purchase,1.0,0 -31764594,"Half-Life 2 Deathmatch",purchase,1.0,0 -31764594,"Half-Life 2 Lost Coast",purchase,1.0,0 -246970452,"Dota 2",purchase,1.0,0 -246970452,"Dota 2",play,0.2,0 -231103175,"Blacklight Retribution",purchase,1.0,0 -231103175,"Blacklight Retribution",play,16.7,0 -250054424,"Spintires",purchase,1.0,0 -250054424,"Spintires",play,23.0,0 -250054424,"Euro Truck Simulator 2",purchase,1.0,0 -250054424,"Euro Truck Simulator 2",play,2.5,0 -250054424,"RACE 07",purchase,1.0,0 -250054424,"RACE 07",play,0.3,0 -250054424,"GTR Evolution",purchase,1.0,0 -250054424,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -199594907,"Dota 2",purchase,1.0,0 -199594907,"Dota 2",play,0.5,0 -121808566,"Serious Sam HD The Second Encounter",purchase,1.0,0 -121808566,"Serious Sam HD The Second Encounter",play,9.1,0 -121808566,"Insurgency Modern Infantry Combat",purchase,1.0,0 -121808566,"Insurgency Modern Infantry Combat",play,5.9,0 -121808566,"Team Fortress 2",purchase,1.0,0 -121808566,"Team Fortress 2",play,3.3,0 -285543474,"Dota 2",purchase,1.0,0 -285543474,"Dota 2",play,2.2,0 -297455922,"Dota 2",purchase,1.0,0 -297455922,"Dota 2",play,7.1,0 -95531306,"The Elder Scrolls V Skyrim",purchase,1.0,0 -95531306,"The Elder Scrolls V Skyrim",play,222.0,0 -95531306,"Borderlands 2",purchase,1.0,0 -95531306,"Borderlands 2",play,62.0,0 -95531306,"Rocksmith 2014",purchase,1.0,0 -95531306,"Rocksmith 2014",play,35.0,0 -95531306,"FINAL FANTASY VII",purchase,1.0,0 -95531306,"FINAL FANTASY VII",play,32.0,0 -95531306,"Borderlands The Pre-Sequel",purchase,1.0,0 -95531306,"Borderlands The Pre-Sequel",play,31.0,0 -95531306,"Dishonored",purchase,1.0,0 -95531306,"Dishonored",play,19.2,0 -95531306,"Spore",purchase,1.0,0 -95531306,"Spore",play,12.5,0 -95531306,"Crysis",purchase,1.0,0 -95531306,"Crysis",play,11.5,0 -95531306,"Dota 2",purchase,1.0,0 -95531306,"Dota 2",play,11.1,0 -95531306,"Crysis 2 Maximum Edition",purchase,1.0,0 -95531306,"Crysis 2 Maximum Edition",play,10.9,0 -95531306,"BioShock",purchase,1.0,0 -95531306,"BioShock",play,10.4,0 -95531306,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -95531306,"Dragon Age Origins - Ultimate Edition",play,8.9,0 -95531306,"Brothers - A Tale of Two Sons",purchase,1.0,0 -95531306,"Brothers - A Tale of Two Sons",play,3.3,0 -95531306,"Defense Grid The Awakening",purchase,1.0,0 -95531306,"Defense Grid The Awakening",play,3.0,0 -95531306,"Thief",purchase,1.0,0 -95531306,"Thief",play,1.5,0 -95531306,"Defense Grid 2",purchase,1.0,0 -95531306,"Defense Grid 2",play,0.3,0 -95531306,"BioShock 2",purchase,1.0,0 -95531306,"BioShock Infinite",purchase,1.0,0 -95531306,"Defense Grid 2 A Matter of Endurance",purchase,1.0,0 -95531306,"Deus Ex Game of the Year Edition",purchase,1.0,0 -95531306,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -95531306,"Sid Meier's Civilization V",purchase,1.0,0 -95531306,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -95531306,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -95531306,"Thief - Opportunist",purchase,1.0,0 -95531306,"Thief - The Bank Heist",purchase,1.0,0 -301047544,"Dota 2",purchase,1.0,0 -301047544,"Dota 2",play,0.8,0 -217611749,"PlanetSide 2",purchase,1.0,0 -217611749,"PlanetSide 2",play,0.2,0 -151038065,"Dota 2",purchase,1.0,0 -151038065,"Dota 2",play,225.0,0 -136788043,"Dota 2",purchase,1.0,0 -136788043,"Dota 2",play,17.5,0 -150652861,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -150652861,"Viscera Cleanup Detail Santa's Rampage",play,4.6,0 -150652861,"Garry's Mod",purchase,1.0,0 -153144971,"Terraria",purchase,1.0,0 -153144971,"Terraria",play,991.0,0 -153144971,"Counter-Strike Global Offensive",purchase,1.0,0 -153144971,"Counter-Strike Global Offensive",play,15.5,0 -153144971,"Game Dev Tycoon",purchase,1.0,0 -153144971,"Game Dev Tycoon",play,9.4,0 -153144971,"Portal 2",purchase,1.0,0 -153144971,"Portal 2",play,6.7,0 -153144971,"Portal",purchase,1.0,0 -153144971,"Portal",play,6.5,0 -153144971,"Craft The World",purchase,1.0,0 -7163917,"Left 4 Dead 2",purchase,1.0,0 -7163917,"Left 4 Dead 2",play,33.0,0 -7163917,"Half-Life Source",purchase,1.0,0 -7163917,"Half-Life Source",play,9.0,0 -7163917,"Team Fortress 2",purchase,1.0,0 -7163917,"Team Fortress 2",play,8.5,0 -7163917,"Portal",purchase,1.0,0 -7163917,"Portal",play,5.7,0 -7163917,"Half-Life 2 Episode Two",purchase,1.0,0 -7163917,"Half-Life 2 Episode Two",play,4.5,0 -7163917,"Half-Life 2",purchase,1.0,0 -7163917,"Half-Life 2",play,2.8,0 -7163917,"Half-Life 2 Lost Coast",purchase,1.0,0 -7163917,"Half-Life 2 Lost Coast",play,0.7,0 -7163917,"Antichamber",purchase,1.0,0 -7163917,"Counter-Strike",purchase,1.0,0 -7163917,"Day of Defeat",purchase,1.0,0 -7163917,"Deathmatch Classic",purchase,1.0,0 -7163917,"Half-Life",purchase,1.0,0 -7163917,"Half-Life 2 Episode One",purchase,1.0,0 -7163917,"Half-Life Blue Shift",purchase,1.0,0 -7163917,"Half-Life Opposing Force",purchase,1.0,0 -7163917,"Half-Life Deathmatch Source",purchase,1.0,0 -7163917,"Portal 2",purchase,1.0,0 -7163917,"Ricochet",purchase,1.0,0 -7163917,"Team Fortress Classic",purchase,1.0,0 -7163917,"The Stanley Parable",purchase,1.0,0 -61635781,"Football Manager 2010",purchase,1.0,0 -102552233,"The Elder Scrolls V Skyrim",purchase,1.0,0 -102552233,"The Elder Scrolls V Skyrim",play,66.0,0 -102552233,"Spore",purchase,1.0,0 -102552233,"Spore",play,45.0,0 -102552233,"Sid Meier's Civilization V",purchase,1.0,0 -102552233,"Sid Meier's Civilization V",play,19.0,0 -102552233,"The Sims(TM) 3",purchase,1.0,0 -102552233,"The Sims(TM) 3",play,16.7,0 -102552233,"Dragon Age Origins",purchase,1.0,0 -102552233,"Dragon Age Origins",play,12.5,0 -102552233,"Dishonored",purchase,1.0,0 -102552233,"Dishonored",play,11.7,0 -102552233,"The Elder Scrolls III Morrowind",purchase,1.0,0 -102552233,"The Elder Scrolls III Morrowind",play,10.4,0 -102552233,"Westward",purchase,1.0,0 -102552233,"Westward",play,4.2,0 -102552233,"Anno 2070",purchase,1.0,0 -102552233,"Anno 2070",play,3.3,0 -102552233,"Sid Meier's Pirates!",purchase,1.0,0 -102552233,"Sid Meier's Pirates!",play,2.8,0 -102552233,"The Long Dark",purchase,1.0,0 -102552233,"The Long Dark",play,2.0,0 -102552233,"Tradewinds Caravans",purchase,1.0,0 -102552233,"Tradewinds Caravans",play,1.5,0 -102552233,"War of the Vikings",purchase,1.0,0 -102552233,"War of the Vikings",play,0.7,0 -102552233,"Westward 3",purchase,1.0,0 -102552233,"Westward 3",play,0.2,0 -102552233,"Thief",purchase,1.0,0 -102552233,"Thief",play,0.1,0 -102552233,"Westward 2",purchase,1.0,0 -102552233,"Star Wars Knights of the Old Republic",purchase,1.0,0 -102552233,"Far Cry 3",purchase,1.0,0 -102552233,"Thief 2",purchase,1.0,0 -102552233,"Westward IV",purchase,1.0,0 -102552233,"Thief - Ghost",purchase,1.0,0 -102552233,"Thief - Opportunist",purchase,1.0,0 -102552233,"Thief - Predator",purchase,1.0,0 -102552233,"Thief - The Bank Heist",purchase,1.0,0 -102552233,"Thief Deadly Shadows",purchase,1.0,0 -102552233,"Thief Gold",purchase,1.0,0 -102552233,"Tradewinds Odyssey",purchase,1.0,0 -193486352,"Magic Duels",purchase,1.0,0 -193486352,"Magic Duels",play,8.3,0 -193486352,"Neverwinter",purchase,1.0,0 -193486352,"Neverwinter",play,4.1,0 -193486352,"Sphere III Enchanted World",purchase,1.0,0 -193486352,"Sphere III Enchanted World",play,2.6,0 -193486352,"Magicka Wizard Wars",purchase,1.0,0 -193486352,"Magicka Wizard Wars",play,2.6,0 -193486352,"Warframe",purchase,1.0,0 -193486352,"Warframe",play,1.7,0 -193486352,"Firefall",purchase,1.0,0 -193486352,"Firefall",play,1.3,0 -193486352,"TOME Immortal Arena",purchase,1.0,0 -193486352,"TOME Immortal Arena",play,0.9,0 -193486352,"Nosgoth",purchase,1.0,0 -193486352,"Nosgoth",play,0.8,0 -193486352,"Path of Exile",purchase,1.0,0 -193486352,"Path of Exile",play,0.7,0 -193486352,"Might & Magic Duel of Champions",purchase,1.0,0 -193486352,"Might & Magic Duel of Champions",play,0.7,0 -193486352,"Quake Live",purchase,1.0,0 -193486352,"Quake Live",play,0.3,0 -193486352,"Eldevin",purchase,1.0,0 -193486352,"Eldevin",play,0.3,0 -193486352,"WARMODE",purchase,1.0,0 -193486352,"WARMODE",play,0.2,0 -193486352,"Strife",purchase,1.0,0 -193486352,"Strife",play,0.2,0 -193486352,"Sins of a Dark Age",purchase,1.0,0 -193486352,"Sins of a Dark Age",play,0.2,0 -193486352,"Unturned",purchase,1.0,0 -193486352,"Unturned",play,0.2,0 -193486352,"Dirty Bomb",purchase,1.0,0 -193486352,"Dirty Bomb",play,0.2,0 -193486352,"Red Crucible Firestorm",purchase,1.0,0 -193486352,"Red Crucible Firestorm",play,0.1,0 -193486352,"Ragnarok Online 2",purchase,1.0,0 -193486352,"Loadout",purchase,1.0,0 -193486352,"Royal Quest",purchase,1.0,0 -152552195,"Dota 2",purchase,1.0,0 -152552195,"Dota 2",play,8.9,0 -225773581,"Dota 2",purchase,1.0,0 -225773581,"Dota 2",play,0.8,0 -221134306,"Dota 2",purchase,1.0,0 -221134306,"Dota 2",play,796.0,0 -226260133,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -226260133,"Navy Field 2 Conqueror of the Ocean",play,1.6,0 -226260133,"Robocraft",purchase,1.0,0 -226260133,"Robocraft",play,0.9,0 -226260133,"Heroes & Generals",purchase,1.0,0 -226260133,"Modular Combat",purchase,1.0,0 -226260133,"Rise of Incarnates",purchase,1.0,0 -226260133,"Warframe",purchase,1.0,0 -244563268,"Football Manager 2015",purchase,1.0,0 -244563268,"Football Manager 2015",play,132.0,0 -256436660,"Team Fortress 2",purchase,1.0,0 -256436660,"Team Fortress 2",play,0.8,0 -178389754,"Dota 2",purchase,1.0,0 -178389754,"Dota 2",play,0.7,0 -163995791,"Total War ROME II - Emperor Edition",purchase,1.0,0 -5689496,"Counter-Strike Source",purchase,1.0,0 -5689496,"Counter-Strike Source",play,9.9,0 -5689496,"Counter-Strike",purchase,1.0,0 -5689496,"Counter-Strike Condition Zero",purchase,1.0,0 -5689496,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -5689496,"Day of Defeat",purchase,1.0,0 -5689496,"Day of Defeat Source",purchase,1.0,0 -5689496,"Deathmatch Classic",purchase,1.0,0 -5689496,"Half-Life",purchase,1.0,0 -5689496,"Half-Life Blue Shift",purchase,1.0,0 -5689496,"Half-Life Opposing Force",purchase,1.0,0 -5689496,"Ricochet",purchase,1.0,0 -5689496,"Team Fortress Classic",purchase,1.0,0 -130742617,"Dota 2",purchase,1.0,0 -130742617,"Dota 2",play,3.9,0 -147810275,"Dota 2",purchase,1.0,0 -147810275,"Dota 2",play,1.4,0 -147810275,"Aura Kingdom",purchase,1.0,0 -147810275,"Gotham City Impostors Free To Play",purchase,1.0,0 -147810275,"Magic The Gathering Tactics",purchase,1.0,0 -209626174,"The Elder Scrolls V Skyrim",purchase,1.0,0 -209626174,"The Elder Scrolls V Skyrim",play,33.0,0 -209626174,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -209626174,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -209626174,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -209626174,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -226095163,"Dota 2",purchase,1.0,0 -226095163,"Dota 2",play,7.6,0 -299821244,"Dota 2",purchase,1.0,0 -299821244,"Dota 2",play,0.5,0 -166823535,"Football Manager 2014",purchase,1.0,0 -166823535,"Football Manager 2014",play,202.0,0 -50769696,"Football Manager 2011",purchase,1.0,0 -50769696,"Football Manager 2011",play,264.0,0 -50769696,"Football Manager 2012",purchase,1.0,0 -50769696,"Football Manager 2012",play,263.0,0 -50769696,"Football Manager 2013",purchase,1.0,0 -50769696,"Football Manager 2013",play,233.0,0 -50769696,"Football Manager 2014",purchase,1.0,0 -50769696,"Football Manager 2014",play,229.0,0 -50769696,"Football Manager 2010",purchase,1.0,0 -50769696,"Football Manager 2010",play,229.0,0 -50769696,"Football Manager 2015",purchase,1.0,0 -50769696,"Football Manager 2015",play,183.0,0 -50769696,"Football Manager 2009",purchase,1.0,0 -50769696,"Football Manager 2009",play,137.0,0 -50769696,"The Sims(TM) 3",purchase,1.0,0 -50769696,"The Sims(TM) 3",play,47.0,0 -50769696,"Sid Meier's Civilization V",purchase,1.0,0 -50769696,"Sid Meier's Civilization V",play,37.0,0 -50769696,"Out of the Park Baseball 15",purchase,1.0,0 -50769696,"Out of the Park Baseball 15",play,28.0,0 -50769696,"L.A. Noire",purchase,1.0,0 -50769696,"L.A. Noire",play,22.0,0 -50769696,"Democracy 3",purchase,1.0,0 -50769696,"Democracy 3",play,13.9,0 -50769696,"SimCity 4 Deluxe",purchase,1.0,0 -50769696,"SimCity 4 Deluxe",play,13.6,0 -50769696,"The Political Machine",purchase,1.0,0 -50769696,"The Political Machine",play,13.5,0 -50769696,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -50769696,"Game of Thrones - A Telltale Games Series",play,12.1,0 -50769696,"Grand Theft Auto San Andreas",purchase,1.0,0 -50769696,"Grand Theft Auto San Andreas",play,10.9,0 -50769696,"Cities Skylines",purchase,1.0,0 -50769696,"Cities Skylines",play,10.3,0 -50769696,"Tropico 5",purchase,1.0,0 -50769696,"Tropico 5",play,10.0,0 -50769696,"Out of the Park Baseball 16",purchase,1.0,0 -50769696,"Out of the Park Baseball 16",play,8.8,0 -50769696,"Tropico 4",purchase,1.0,0 -50769696,"Tropico 4",play,6.3,0 -50769696,"Prison Architect",purchase,1.0,0 -50769696,"Prison Architect",play,5.3,0 -50769696,"Cricket Captain 2014",purchase,1.0,0 -50769696,"Cricket Captain 2014",play,5.2,0 -50769696,"The Political Machine 2016",purchase,1.0,0 -50769696,"The Political Machine 2016",play,3.6,0 -50769696,"Grand Theft Auto San Andreas",purchase,1.0,0 -50769696,"Grand Theft Auto San Andreas",play,3.1,0 -50769696,"AdVenture Capitalist",purchase,1.0,0 -50769696,"AdVenture Capitalist",play,1.8,0 -50769696,"Anno 1404",purchase,1.0,0 -50769696,"Anno 1404",play,1.7,0 -50769696,"Garry's Mod",purchase,1.0,0 -50769696,"Garry's Mod",play,0.3,0 -50769696,"Democracy 3 Extremism",purchase,1.0,0 -50769696,"Democracy 3 Extremism Linux",purchase,1.0,0 -50769696,"Democracy 3 Extremism Mac",purchase,1.0,0 -50769696,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -183617329,"Dota 2",purchase,1.0,0 -183617329,"Dota 2",play,2.5,0 -155277811,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -155277811,"Call of Duty Black Ops II - Multiplayer",play,33.0,0 -155277811,"Call of Duty Black Ops II",purchase,1.0,0 -155277811,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -63965791,"Supreme Commander Forged Alliance",purchase,1.0,0 -63965791,"Supreme Commander Forged Alliance",play,472.0,0 -63965791,"Cities XL 2012",purchase,1.0,0 -63965791,"Cities XL 2012",play,332.0,0 -63965791,"Supreme Commander 2",purchase,1.0,0 -63965791,"Supreme Commander 2",play,49.0,0 -63965791,"The Elder Scrolls V Skyrim",purchase,1.0,0 -63965791,"The Elder Scrolls V Skyrim",play,21.0,0 -63965791,"Age of Empires II HD Edition",purchase,1.0,0 -63965791,"Age of Empires II HD Edition",play,10.2,0 -63965791,"Supreme Commander",purchase,1.0,0 -63965791,"Supreme Commander",play,9.2,0 -63965791,"DiRT 3",purchase,1.0,0 -63965791,"DiRT 3",play,4.7,0 -63965791,"Descent",purchase,1.0,0 -63965791,"Descent",play,3.2,0 -63965791,"Descent 2",purchase,1.0,0 -63965791,"Descent 2",play,0.2,0 -63965791,"DiRT 3 Complete Edition",purchase,1.0,0 -155155363,"Garry's Mod",purchase,1.0,0 -155155363,"Garry's Mod",play,6.1,0 -155155363,"Dota 2",purchase,1.0,0 -155155363,"Dota 2",play,2.0,0 -155155363,"Team Fortress 2",purchase,1.0,0 -155155363,"Team Fortress 2",play,0.5,0 -93301496,"Team Fortress 2",purchase,1.0,0 -93301496,"Team Fortress 2",play,175.0,0 -216023925,"Team Fortress 2",purchase,1.0,0 -216023925,"Team Fortress 2",play,41.0,0 -216023925,"Space Channel 5 Part 2",purchase,1.0,0 -216023925,"Space Channel 5 Part 2",play,0.7,0 -216023925,"Emily is Away",purchase,1.0,0 -216023925,"Emily is Away",play,0.4,0 -216023925,"Transformice",purchase,1.0,0 -216023925,"Transformice",play,0.4,0 -216023925,"Source Filmmaker",purchase,1.0,0 -216023925,"Source Filmmaker",play,0.4,0 -216023925,"the static speaks my name",purchase,1.0,0 -216023925,"the static speaks my name",play,0.3,0 -216023925,"Audition Online",purchase,1.0,0 -216023925,"Echoes+",purchase,1.0,0 -216023925,"Let the Cat In",purchase,1.0,0 -216023925,"Thinking with Time Machine",purchase,1.0,0 -216023925,"Two Worlds Epic Edition",purchase,1.0,0 -283594208,"Free to Play",purchase,1.0,0 -252282604,"Dota 2",purchase,1.0,0 -252282604,"Dota 2",play,136.0,0 -183054457,"Dota 2",purchase,1.0,0 -183054457,"Dota 2",play,2.2,0 -114325392,"Bejeweled 3",purchase,1.0,0 -114325392,"Bejeweled 3",play,1.4,0 -114325392,"Jurassic Park The Game",purchase,1.0,0 -114325392,"Jurassic Park The Game",play,0.2,0 -114325392,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -114325392,"Sam & Max 301 The Penal Zone",play,0.2,0 -114325392,"Strong Bad Episode 5 8-Bit Is Enough",purchase,1.0,0 -114325392,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -114325392,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -114325392,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -114325392,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -114325392,"Strong Bad Episode 1 Homestar Ruiner",purchase,1.0,0 -114325392,"Strong Bad Episode 2 Strong Badia the Free",purchase,1.0,0 -114325392,"Strong Bad Episode 3 Baddest of the Bands",purchase,1.0,0 -114325392,"Strong Bad Episode 4 Dangeresque 3",purchase,1.0,0 -154730370,"Counter-Strike Global Offensive",purchase,1.0,0 -154730370,"Counter-Strike Global Offensive",play,936.0,0 -154730370,"Warframe",purchase,1.0,0 -154730370,"Warframe",play,189.0,0 -154730370,"H1Z1",purchase,1.0,0 -154730370,"H1Z1",play,113.0,0 -154730370,"The Elder Scrolls V Skyrim",purchase,1.0,0 -154730370,"The Elder Scrolls V Skyrim",play,85.0,0 -154730370,"PAYDAY 2",purchase,1.0,0 -154730370,"PAYDAY 2",play,65.0,0 -154730370,"Besiege",purchase,1.0,0 -154730370,"Besiege",play,52.0,0 -154730370,"The Mighty Quest For Epic Loot",purchase,1.0,0 -154730370,"The Mighty Quest For Epic Loot",play,51.0,0 -154730370,"EasyAntiCheat eSports",purchase,1.0,0 -154730370,"EasyAntiCheat eSports",play,41.0,0 -154730370,"War Thunder",purchase,1.0,0 -154730370,"War Thunder",play,22.0,0 -154730370,"Garry's Mod",purchase,1.0,0 -154730370,"Garry's Mod",play,20.0,0 -154730370,"Unturned",purchase,1.0,0 -154730370,"Unturned",play,15.7,0 -154730370,"DayZ",purchase,1.0,0 -154730370,"DayZ",play,15.2,0 -154730370,"Robocraft",purchase,1.0,0 -154730370,"Robocraft",play,14.7,0 -154730370,"This War of Mine",purchase,1.0,0 -154730370,"This War of Mine",play,13.5,0 -154730370,"Rocket League",purchase,1.0,0 -154730370,"Rocket League",play,11.1,0 -154730370,"Life is Feudal Your Own",purchase,1.0,0 -154730370,"Life is Feudal Your Own",play,7.4,0 -154730370,"PlanetSide 2",purchase,1.0,0 -154730370,"PlanetSide 2",play,5.5,0 -154730370,"Saints Row IV",purchase,1.0,0 -154730370,"Saints Row IV",play,5.3,0 -154730370,"The Forest",purchase,1.0,0 -154730370,"The Forest",play,5.1,0 -154730370,"Mirror's Edge",purchase,1.0,0 -154730370,"Mirror's Edge",play,4.6,0 -154730370,"Team Fortress 2",purchase,1.0,0 -154730370,"Team Fortress 2",play,4.5,0 -154730370,"Outlast",purchase,1.0,0 -154730370,"Outlast",play,3.1,0 -154730370,"Rust",purchase,1.0,0 -154730370,"Rust",play,2.6,0 -154730370,"Poker Night 2",purchase,1.0,0 -154730370,"Poker Night 2",play,2.6,0 -154730370,"Turbo Dismount",purchase,1.0,0 -154730370,"Turbo Dismount",play,2.1,0 -154730370,"Hitman Absolution",purchase,1.0,0 -154730370,"Hitman Absolution",play,1.9,0 -154730370,"Heroes & Generals",purchase,1.0,0 -154730370,"Heroes & Generals",play,1.6,0 -154730370,"Blacklight Retribution",purchase,1.0,0 -154730370,"Blacklight Retribution",play,1.3,0 -154730370,"Sniper Elite Nazi Zombie Army 2",purchase,1.0,0 -154730370,"Sniper Elite Nazi Zombie Army 2",play,1.3,0 -154730370,"Ace of Spades",purchase,1.0,0 -154730370,"Ace of Spades",play,1.1,0 -154730370,"Fallout New Vegas",purchase,1.0,0 -154730370,"Fallout New Vegas",play,1.0,0 -154730370,"PAYDAY The Heist",purchase,1.0,0 -154730370,"PAYDAY The Heist",play,1.0,0 -154730370,"Fractured Space",purchase,1.0,0 -154730370,"Fractured Space",play,0.5,0 -154730370,"Spiral Knights",purchase,1.0,0 -154730370,"Spiral Knights",play,0.4,0 -154730370,"Dota 2",purchase,1.0,0 -154730370,"Dota 2",play,0.4,0 -154730370,"Mini Metro",purchase,1.0,0 -154730370,"Mini Metro",play,0.3,0 -154730370,"Sakura Clicker",purchase,1.0,0 -154730370,"Sakura Clicker",play,0.3,0 -154730370,"Portal 2",purchase,1.0,0 -154730370,"Portal 2",play,0.3,0 -154730370,"Sakura Angels",purchase,1.0,0 -154730370,"Sakura Angels",play,0.2,0 -154730370,"Portal",purchase,1.0,0 -154730370,"Portal",play,0.2,0 -154730370,"H1Z1 Test Server",purchase,1.0,0 -154730370,"H1Z1 Test Server",play,0.1,0 -154730370,"World of Guns Gun Disassembly",purchase,1.0,0 -154730370,"AdVenture Capitalist",purchase,1.0,0 -154730370,"FreeStyle2 Street Basketball",purchase,1.0,0 -154730370,"The Plan",purchase,1.0,0 -154730370,"Moonbase Alpha",purchase,1.0,0 -154730370,"Toribash",purchase,1.0,0 -154730370,"Arma 3",purchase,1.0,0 -154730370,"Arma 3 Zeus",purchase,1.0,0 -154730370,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -154730370,"Fallout New Vegas Dead Money",purchase,1.0,0 -154730370,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -154730370,"Hitman Sniper Challenge",purchase,1.0,0 -154730370,"Path of Exile",purchase,1.0,0 -154730370,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -154730370,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -154730370,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -154730370,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -154730370,"The Four Kings Casino and Slots",purchase,1.0,0 -154730370,"This War of Mine - War Child Charity DLC",purchase,1.0,0 -154730370,"Trove",purchase,1.0,0 -30042027,"Dota 2",purchase,1.0,0 -30042027,"Dota 2",play,215.0,0 -30042027,"Terraria",purchase,1.0,0 -30042027,"Terraria",play,171.0,0 -30042027,"Age of Chivalry",purchase,1.0,0 -30042027,"Age of Chivalry",play,137.0,0 -30042027,"Counter-Strike Source",purchase,1.0,0 -30042027,"Counter-Strike Source",play,32.0,0 -30042027,"Half-Life 2",purchase,1.0,0 -30042027,"Half-Life 2",play,28.0,0 -30042027,"Half-Life 2 Episode Two",purchase,1.0,0 -30042027,"Half-Life 2 Episode Two",play,9.7,0 -30042027,"Half-Life 2 Episode One",purchase,1.0,0 -30042027,"Half-Life 2 Episode One",play,9.7,0 -30042027,"Half-Life Opposing Force",purchase,1.0,0 -30042027,"Half-Life Opposing Force",play,8.9,0 -30042027,"Natural Selection 2",purchase,1.0,0 -30042027,"Natural Selection 2",play,4.8,0 -30042027,"Portal",purchase,1.0,0 -30042027,"Portal",play,2.8,0 -30042027,"Half-Life Blue Shift",purchase,1.0,0 -30042027,"Half-Life Blue Shift",play,2.6,0 -30042027,"Day of Defeat Source",purchase,1.0,0 -30042027,"Day of Defeat Source",play,0.9,0 -30042027,"Team Fortress 2",purchase,1.0,0 -30042027,"Team Fortress 2",play,0.9,0 -30042027,"Team Fortress Classic",purchase,1.0,0 -30042027,"Team Fortress Classic",play,0.4,0 -30042027,"Half-Life",purchase,1.0,0 -30042027,"Half-Life",play,0.3,0 -30042027,"Half-Life 2 Deathmatch",purchase,1.0,0 -30042027,"Half-Life 2 Lost Coast",purchase,1.0,0 -126233699,"Mafia II",purchase,1.0,0 -126233699,"Mafia II",play,0.1,0 -172417199,"Dota 2",purchase,1.0,0 -172417199,"Dota 2",play,10.9,0 -207124179,"Dota 2",purchase,1.0,0 -207124179,"Dota 2",play,3.1,0 -207124179,"No More Room in Hell",purchase,1.0,0 -212289859,"Dota 2",purchase,1.0,0 -212289859,"Dota 2",play,1.0,0 -180648547,"Counter-Strike Global Offensive",purchase,1.0,0 -180648547,"Counter-Strike Global Offensive",play,30.0,0 -180648547,"Counter-Strike Nexon Zombies",purchase,1.0,0 -180648547,"Counter-Strike Nexon Zombies",play,4.4,0 -180648547,"Team Fortress 2",purchase,1.0,0 -180648547,"Team Fortress 2",play,3.2,0 -180648547,"Dota 2",purchase,1.0,0 -180648547,"Dota 2",play,0.6,0 -180648547,"Brawlhalla",purchase,1.0,0 -180648547,"Fistful of Frags",purchase,1.0,0 -180648547,"MicroVolts Surge",purchase,1.0,0 -180648547,"Robocraft",purchase,1.0,0 -180648547,"Warframe",purchase,1.0,0 -59529444,"Call of Duty Modern Warfare 2",purchase,1.0,0 -59529444,"Call of Duty Modern Warfare 2",play,126.0,0 -59529444,"Half-Life 2",purchase,1.0,0 -59529444,"Half-Life 2",play,42.0,0 -59529444,"Call of Duty Black Ops",purchase,1.0,0 -59529444,"Call of Duty Black Ops",play,26.0,0 -59529444,"Half-Life 2 Episode One",purchase,1.0,0 -59529444,"Half-Life 2 Episode One",play,15.0,0 -59529444,"Half-Life 2 Episode Two",purchase,1.0,0 -59529444,"Half-Life 2 Episode Two",play,14.7,0 -59529444,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -59529444,"F.E.A.R. 2 Project Origin",play,13.3,0 -59529444,"Aliens vs. Predator",purchase,1.0,0 -59529444,"Aliens vs. Predator",play,8.2,0 -59529444,"Counter-Strike",purchase,1.0,0 -59529444,"Counter-Strike",play,7.6,0 -59529444,"Half-Life 2 Lost Coast",purchase,1.0,0 -59529444,"Half-Life 2 Lost Coast",play,1.3,0 -59529444,"Half-Life Blue Shift",purchase,1.0,0 -59529444,"Half-Life Blue Shift",play,1.2,0 -59529444,"Portal",purchase,1.0,0 -59529444,"Portal",play,0.9,0 -59529444,"Counter-Strike Condition Zero",purchase,1.0,0 -59529444,"Counter-Strike Condition Zero",play,0.8,0 -59529444,"Half-Life",purchase,1.0,0 -59529444,"Half-Life",play,0.5,0 -59529444,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -59529444,"Call of Duty Black Ops - Multiplayer",play,0.2,0 -59529444,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -59529444,"Counter-Strike Condition Zero Deleted Scenes",play,0.2,0 -59529444,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -59529444,"Half-Life Opposing Force",purchase,1.0,0 -59529444,"Day of Defeat",purchase,1.0,0 -59529444,"Deathmatch Classic",purchase,1.0,0 -59529444,"Ricochet",purchase,1.0,0 -59529444,"Team Fortress Classic",purchase,1.0,0 -63750749,"Call of Duty Modern Warfare 2",purchase,1.0,0 -63750749,"Call of Duty Modern Warfare 2",play,12.8,0 -63750749,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -63750749,"Call of Duty Modern Warfare 2 - Multiplayer",play,10.8,0 -209131025,"Team Fortress 2",purchase,1.0,0 -209131025,"Team Fortress 2",play,26.0,0 -93950791,"Sid Meier's Civilization V",purchase,1.0,0 -93950791,"Sid Meier's Civilization V",play,5720.0,0 -306957991,"Unturned",purchase,1.0,0 -306957991,"Unturned",play,2.3,0 -121383308,"Team Fortress 2",purchase,1.0,0 -121383308,"Team Fortress 2",play,2.0,0 -240957458,"Unturned",purchase,1.0,0 -278678644,"The Elder Scrolls V Skyrim",purchase,1.0,0 -278678644,"The Elder Scrolls V Skyrim",play,60.0,0 -278678644,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -278678644,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -278678644,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -164010859,"Air Conflicts Pacific Carriers",purchase,1.0,0 -164010859,"Air Conflicts Pacific Carriers",play,1.7,0 -149032069,"Team Fortress 2",purchase,1.0,0 -149032069,"Team Fortress 2",play,1.1,0 -267901212,"Dota 2",purchase,1.0,0 -267901212,"Dota 2",play,1.0,0 -267901212,"FreeStyle2 Street Basketball",purchase,1.0,0 -129704982,"Counter-Strike Source",purchase,1.0,0 -129704982,"Counter-Strike Source",play,143.0,0 -129704982,"Team Fortress 2",purchase,1.0,0 -129704982,"Team Fortress 2",play,2.6,0 -129704982,"Amnesia The Dark Descent",purchase,1.0,0 -167785065,"Dota 2",purchase,1.0,0 -167785065,"Dota 2",play,299.0,0 -167785065,"Grand Theft Auto V",purchase,1.0,0 -167785065,"Grand Theft Auto V",play,104.0,0 -167785065,"Left 4 Dead 2",purchase,1.0,0 -167785065,"Left 4 Dead 2",play,77.0,0 -167785065,"Counter-Strike Global Offensive",purchase,1.0,0 -167785065,"Counter-Strike Global Offensive",play,22.0,0 -167785065,"DiRT 3 Complete Edition",purchase,1.0,0 -167785065,"DiRT 3 Complete Edition",play,3.2,0 -167785065,"No More Room in Hell",purchase,1.0,0 -167785065,"DiRT 3",purchase,1.0,0 -166391678,"Day of Defeat Source",purchase,1.0,0 -166391678,"Day of Defeat Source",play,0.4,0 -247912887,"Counter-Strike Global Offensive",purchase,1.0,0 -247912887,"Counter-Strike Global Offensive",play,60.0,0 -247912887,"Dota 2",purchase,1.0,0 -247912887,"Dota 2",play,46.0,0 -247912887,"PAYDAY 2",purchase,1.0,0 -247912887,"PAYDAY 2",play,38.0,0 -247912887,"Trove",purchase,1.0,0 -247912887,"Trove",play,31.0,0 -247912887,"Neverwinter",purchase,1.0,0 -247912887,"Neverwinter",play,8.2,0 -247912887,"AirMech",purchase,1.0,0 -247912887,"AirMech",play,6.8,0 -247912887,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -247912887,"Tom Clancy's Ghost Recon Phantoms - EU",play,6.3,0 -247912887,"Toribash",purchase,1.0,0 -247912887,"Toribash",play,6.2,0 -247912887,"Ace of Spades",purchase,1.0,0 -247912887,"Ace of Spades",play,3.6,0 -247912887,"TERA",purchase,1.0,0 -247912887,"TERA",play,2.0,0 -247912887,"Gear Up",purchase,1.0,0 -247912887,"Gear Up",play,1.7,0 -247912887,"Team Fortress 2",purchase,1.0,0 -247912887,"Team Fortress 2",play,0.8,0 -247912887,"Robocraft",purchase,1.0,0 -247912887,"Robocraft",play,0.8,0 -247912887,"Race The Sun",purchase,1.0,0 -247912887,"Race The Sun",play,0.6,0 -247912887,"Blender 2.76b",purchase,1.0,0 -247912887,"Blender 2.76b",play,0.3,0 -247912887,"Unturned",purchase,1.0,0 -247912887,"Unturned",play,0.3,0 -247912887,"Red Crucible Firestorm",purchase,1.0,0 -247912887,"Red Crucible Firestorm",play,0.2,0 -247912887,"ORION Prelude",purchase,1.0,0 -247912887,"Run and Fire",purchase,1.0,0 -247912887,"Villagers and Heroes",purchase,1.0,0 -247912887,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -247912887,"Star Conflict",purchase,1.0,0 -247912887,"Survarium",purchase,1.0,0 -157628719,"Dota 2",purchase,1.0,0 -157628719,"Dota 2",play,1.5,0 -234950941,"Dota 2",purchase,1.0,0 -234950941,"Dota 2",play,115.0,0 -234950941,"Warframe",purchase,1.0,0 -234950941,"Warframe",play,1.0,0 -234950941,"Heroes & Generals",purchase,1.0,0 -234950941,"Dungeons & Dragons Online",purchase,1.0,0 -148674157,"Garry's Mod",purchase,1.0,0 -148674157,"Garry's Mod",play,72.0,0 -148674157,"Plague Inc Evolved",purchase,1.0,0 -148674157,"Plague Inc Evolved",play,50.0,0 -148674157,"Unturned",purchase,1.0,0 -148674157,"Unturned",play,28.0,0 -148674157,"Counter-Strike Global Offensive",purchase,1.0,0 -148674157,"Counter-Strike Global Offensive",play,24.0,0 -148674157,"Half-Life 2",purchase,1.0,0 -148674157,"Half-Life 2",play,23.0,0 -148674157,"Left 4 Dead 2",purchase,1.0,0 -148674157,"Left 4 Dead 2",play,23.0,0 -148674157,"Portal 2",purchase,1.0,0 -148674157,"Portal 2",play,16.6,0 -148674157,"The Binding of Isaac",purchase,1.0,0 -148674157,"The Binding of Isaac",play,15.7,0 -148674157,"Archeblade",purchase,1.0,0 -148674157,"Archeblade",play,14.0,0 -148674157,"The Expendabros",purchase,1.0,0 -148674157,"The Expendabros",play,13.3,0 -148674157,"Half-Life Source",purchase,1.0,0 -148674157,"Half-Life Source",play,12.3,0 -148674157,"The Witcher Enhanced Edition",purchase,1.0,0 -148674157,"The Witcher Enhanced Edition",play,10.7,0 -148674157,"Counter-Strike Source",purchase,1.0,0 -148674157,"Counter-Strike Source",play,10.7,0 -148674157,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -148674157,"Boring Man - Online Tactical Stickman Combat",play,8.0,0 -148674157,"Trove",purchase,1.0,0 -148674157,"Trove",play,6.6,0 -148674157,"Magicka Wizard Wars",purchase,1.0,0 -148674157,"Magicka Wizard Wars",play,6.4,0 -148674157,"Creativerse",purchase,1.0,0 -148674157,"Creativerse",play,5.5,0 -148674157,"GunZ 2 The Second Duel",purchase,1.0,0 -148674157,"GunZ 2 The Second Duel",play,5.3,0 -148674157,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -148674157,"Tom Clancy's Ghost Recon Phantoms - NA",play,4.7,0 -148674157,"Gotham City Impostors Free To Play",purchase,1.0,0 -148674157,"Gotham City Impostors Free To Play",play,3.7,0 -148674157,"Realm of the Mad God",purchase,1.0,0 -148674157,"Realm of the Mad God",play,3.4,0 -148674157,"Dungeonland",purchase,1.0,0 -148674157,"Dungeonland",play,3.0,0 -148674157,"Half-Life 2 Episode One",purchase,1.0,0 -148674157,"Half-Life 2 Episode One",play,2.8,0 -148674157,"Soul Gambler",purchase,1.0,0 -148674157,"Soul Gambler",play,2.8,0 -148674157,"Synergy",purchase,1.0,0 -148674157,"Synergy",play,2.5,0 -148674157,"WARMODE",purchase,1.0,0 -148674157,"WARMODE",play,1.7,0 -148674157,"Portal",purchase,1.0,0 -148674157,"Portal",play,1.7,0 -148674157,"Day of Defeat Source",purchase,1.0,0 -148674157,"Day of Defeat Source",play,1.5,0 -148674157,"Mitos.is The Game",purchase,1.0,0 -148674157,"Mitos.is The Game",play,1.4,0 -148674157,"Left 4 Dead",purchase,1.0,0 -148674157,"Left 4 Dead",play,1.3,0 -148674157,"Half-Life 2 Episode Two",purchase,1.0,0 -148674157,"Half-Life 2 Episode Two",play,0.8,0 -148674157,"Yet Another Zombie Defense",purchase,1.0,0 -148674157,"Yet Another Zombie Defense",play,0.7,0 -148674157,"BLOCKADE 3D",purchase,1.0,0 -148674157,"BLOCKADE 3D",play,0.6,0 -148674157,"Dead Island Epidemic",purchase,1.0,0 -148674157,"Dead Island Epidemic",play,0.4,0 -148674157,"Half-Life 2 Lost Coast",purchase,1.0,0 -148674157,"Half-Life 2 Lost Coast",play,0.4,0 -148674157,"Shadow Warrior Classic (1997)",purchase,1.0,0 -148674157,"Shadow Warrior Classic (1997)",play,0.3,0 -148674157,"PAYDAY 2",purchase,1.0,0 -148674157,"PAYDAY 2",play,0.3,0 -148674157,"Fistful of Frags",purchase,1.0,0 -148674157,"Fistful of Frags",play,0.3,0 -148674157,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -148674157,"Counter-Strike",purchase,1.0,0 -148674157,"Borderlands",purchase,1.0,0 -148674157,"Cubic Castles",purchase,1.0,0 -148674157,"Half-Life",purchase,1.0,0 -148674157,"AdVenture Capitalist",purchase,1.0,0 -148674157,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -148674157,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -148674157,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -148674157,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -148674157,"Counter-Strike Condition Zero",purchase,1.0,0 -148674157,"Day of Defeat",purchase,1.0,0 -148674157,"Deathmatch Classic",purchase,1.0,0 -148674157,"Half-Life 2 Deathmatch",purchase,1.0,0 -148674157,"Half-Life Blue Shift",purchase,1.0,0 -148674157,"Half-Life Opposing Force",purchase,1.0,0 -148674157,"Half-Life Deathmatch Source",purchase,1.0,0 -148674157,"Ricochet",purchase,1.0,0 -148674157,"Team Fortress Classic",purchase,1.0,0 -148674157,"Uncrowded",purchase,1.0,0 -234929278,"Dota 2",purchase,1.0,0 -234929278,"Dota 2",play,780.0,0 -234929278,"Ragnarok Online 2",purchase,1.0,0 -234929278,"Ragnarok Online 2",play,94.0,0 -234929278,"FreeStyle2 Street Basketball",purchase,1.0,0 -234929278,"FreeStyle2 Street Basketball",play,7.9,0 -234929278,"TERA",purchase,1.0,0 -234929278,"TERA",play,0.6,0 -234929278,"GunZ 2 The Second Duel",purchase,1.0,0 -234929278,"Heroes & Generals",purchase,1.0,0 -234929278,"Marvel Heroes 2015",purchase,1.0,0 -234929278,"No More Room in Hell",purchase,1.0,0 -234929278,"RIFT",purchase,1.0,0 -234929278,"theHunter",purchase,1.0,0 -234929278,"Warframe",purchase,1.0,0 -15415372,"Football Manager 2010",purchase,1.0,0 -15415372,"Football Manager 2010",play,1400.0,0 -15415372,"Football Manager 2011",purchase,1.0,0 -15415372,"Football Manager 2011",play,999.0,0 -15415372,"Football Manager 2013",purchase,1.0,0 -15415372,"Football Manager 2013",play,994.0,0 -15415372,"Football Manager 2012",purchase,1.0,0 -15415372,"Football Manager 2012",play,595.0,0 -15415372,"Football Manager 2015",purchase,1.0,0 -15415372,"Football Manager 2015",play,481.0,0 -15415372,"Football Manager 2014",purchase,1.0,0 -15415372,"Football Manager 2014",play,382.0,0 -15415372,"Fallout New Vegas",purchase,1.0,0 -15415372,"Fallout New Vegas",play,174.0,0 -15415372,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -15415372,"The Elder Scrolls IV Oblivion ",play,168.0,0 -15415372,"Far Cry 3",purchase,1.0,0 -15415372,"Far Cry 3",play,47.0,0 -15415372,"Aliens vs. Predator",purchase,1.0,0 -15415372,"Aliens vs. Predator",play,25.0,0 -15415372,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -15415372,"Warhammer 40,000 Dawn of War II",play,24.0,0 -15415372,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -15415372,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,17.9,0 -15415372,"Football Manager 2016",purchase,1.0,0 -15415372,"Football Manager 2016",play,16.5,0 -15415372,"Football Manager 2009",purchase,1.0,0 -15415372,"Football Manager 2009",play,3.2,0 -15415372,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -15415372,"Warhammer 40,000 Dawn of War II Retribution",play,3.0,0 -15415372,"Team Fortress 2",purchase,1.0,0 -15415372,"Team Fortress 2",play,1.2,0 -15415372,"Sakura Spirit",purchase,1.0,0 -15415372,"Sakura Spirit",play,0.7,0 -15415372,"Half-Life 2",purchase,1.0,0 -15415372,"Half-Life 2",play,0.2,0 -15415372,"Counter-Strike Source",purchase,1.0,0 -15415372,"Fallout New Vegas Dead Money",purchase,1.0,0 -15415372,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -15415372,"Half-Life 2 Deathmatch",purchase,1.0,0 -15415372,"Half-Life 2 Lost Coast",purchase,1.0,0 -215542922,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -215542922,"Microsoft Flight Simulator X Steam Edition",play,9.8,0 -215542922,"Ship Simulator Maritime Search and Rescue",purchase,1.0,0 -215542922,"Ship Simulator Maritime Search and Rescue",play,6.5,0 -101731521,"Grand Theft Auto IV",purchase,1.0,0 -101731521,"Grand Theft Auto IV",play,14.0,0 -101731521,"Grand Theft Auto San Andreas",purchase,1.0,0 -101731521,"Grand Theft Auto San Andreas",play,1.4,0 -101731521,"Grand Theft Auto Vice City",purchase,1.0,0 -101731521,"Grand Theft Auto Vice City",play,0.3,0 -101731521,"Grand Theft Auto III",purchase,1.0,0 -101731521,"Grand Theft Auto III",play,0.2,0 -101731521,"Grand Theft Auto",purchase,1.0,0 -101731521,"Grand Theft Auto 2",purchase,1.0,0 -101731521,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -101731521,"Grand Theft Auto San Andreas",purchase,1.0,0 -101731521,"Grand Theft Auto Vice City",purchase,1.0,0 -101731521,"Grand Theft Auto III",purchase,1.0,0 -229643946,"Dota 2",purchase,1.0,0 -229643946,"Dota 2",play,0.6,0 -199805188,"Unturned",purchase,1.0,0 -199805188,"Unturned",play,9.5,0 -199805188,"Super Monday Night Combat",purchase,1.0,0 -199805188,"Super Monday Night Combat",play,0.2,0 -199805188,"theHunter",purchase,1.0,0 -199805188,"theHunter",play,0.1,0 -199805188,"America's Army Proving Grounds",purchase,1.0,0 -199805188,"Blacklight Retribution",purchase,1.0,0 -199805188,"Defiance",purchase,1.0,0 -199805188,"Double Action Boogaloo",purchase,1.0,0 -199805188,"F.E.A.R. Online",purchase,1.0,0 -199805188,"Firefall",purchase,1.0,0 -199805188,"Gotham City Impostors Free To Play",purchase,1.0,0 -199805188,"HAWKEN",purchase,1.0,0 -199805188,"Loadout",purchase,1.0,0 -199805188,"PlanetSide 2",purchase,1.0,0 -199805188,"RaceRoom Racing Experience ",purchase,1.0,0 -199805188,"Tactical Intervention",purchase,1.0,0 -199805188,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -199805188,"Toribash",purchase,1.0,0 -199805188,"Warface",purchase,1.0,0 -228649481,"Unturned",purchase,1.0,0 -228649481,"Unturned",play,100.0,0 -228649481,"Neverwinter",purchase,1.0,0 -228649481,"Neverwinter",play,5.2,0 -228649481,"Eternal Senia",purchase,1.0,0 -228649481,"Eternal Senia",play,4.6,0 -228649481,"TERA",purchase,1.0,0 -228649481,"TERA",play,0.2,0 -228649481,"Elsword",purchase,1.0,0 -228649481,"Elsword",play,0.2,0 -228649481,"APB Reloaded",purchase,1.0,0 -228649481,"Battlegrounds of Eldhelm",purchase,1.0,0 -228649481,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -228649481,"Brawlhalla",purchase,1.0,0 -228649481,"Cakewalk Loop Manager",purchase,1.0,0 -228649481,"Construct 2 Free",purchase,1.0,0 -228649481,"Dead Island Epidemic",purchase,1.0,0 -228649481,"Destination Sol",purchase,1.0,0 -228649481,"Double Action Boogaloo",purchase,1.0,0 -228649481,"Fistful of Frags",purchase,1.0,0 -228649481,"Fork Parker's Holiday Profit Hike",purchase,1.0,0 -228649481,"Get Off My Lawn!",purchase,1.0,0 -228649481,"Guns and Robots",purchase,1.0,0 -228649481,"Heroes & Generals",purchase,1.0,0 -228649481,"Loadout",purchase,1.0,0 -228649481,"No More Room in Hell",purchase,1.0,0 -228649481,"Nosgoth",purchase,1.0,0 -228649481,"Realm of the Mad God",purchase,1.0,0 -228649481,"Robocraft",purchase,1.0,0 -228649481,"Spiral Knights",purchase,1.0,0 -228649481,"Super Crate Box",purchase,1.0,0 -228649481,"The Expendabros",purchase,1.0,0 -228649481,"TOME Immortal Arena",purchase,1.0,0 -228649481,"Transformice",purchase,1.0,0 -228649481,"Warframe",purchase,1.0,0 -90726321,"Football Manager 2012",purchase,1.0,0 -90726321,"Football Manager 2012",play,77.0,0 -90726321,"Football Manager 2013",purchase,1.0,0 -90726321,"Football Manager 2013",play,15.3,0 -90726321,"Borderlands 2",purchase,1.0,0 -90726321,"Borderlands 2",play,0.6,0 -71865634,"Sid Meier's Civilization V",purchase,1.0,0 -71865634,"Sid Meier's Civilization V",play,68.0,0 -33993318,"Counter-Strike Source",purchase,1.0,0 -33993318,"Counter-Strike Source",play,11.0,0 -33993318,"Half-Life 2",purchase,1.0,0 -33993318,"Half-Life 2",play,9.6,0 -33993318,"Half-Life 2 Deathmatch",purchase,1.0,0 -33993318,"Half-Life 2 Lost Coast",purchase,1.0,0 -33993318,"Half-Life Source",purchase,1.0,0 -33993318,"Half-Life Deathmatch Source",purchase,1.0,0 -309167186,"Portal 2",purchase,1.0,0 -309167186,"Portal 2",play,1.1,0 -1699101,"Counter-Strike",purchase,1.0,0 -1699101,"Counter-Strike",play,0.5,0 -1699101,"Day of Defeat",purchase,1.0,0 -1699101,"Deathmatch Classic",purchase,1.0,0 -1699101,"Half-Life",purchase,1.0,0 -1699101,"Half-Life Blue Shift",purchase,1.0,0 -1699101,"Half-Life Opposing Force",purchase,1.0,0 -1699101,"Ricochet",purchase,1.0,0 -1699101,"Team Fortress Classic",purchase,1.0,0 -65610147,"Sid Meier's Civilization V",purchase,1.0,0 -65610147,"Sid Meier's Civilization V",play,189.0,0 -65610147,"Terraria",purchase,1.0,0 -65610147,"Terraria",play,100.0,0 -65610147,"FINAL FANTASY VII",purchase,1.0,0 -65610147,"FINAL FANTASY VII",play,58.0,0 -65610147,"Borderlands 2",purchase,1.0,0 -65610147,"Borderlands 2",play,56.0,0 -65610147,"Starbound",purchase,1.0,0 -65610147,"Starbound",play,36.0,0 -65610147,"Tales of Maj'Eyal",purchase,1.0,0 -65610147,"Tales of Maj'Eyal",play,32.0,0 -65610147,"DARK SOULS II",purchase,1.0,0 -65610147,"DARK SOULS II",play,18.5,0 -65610147,"Magic Duels",purchase,1.0,0 -65610147,"Magic Duels",play,10.3,0 -65610147,"The Binding of Isaac",purchase,1.0,0 -65610147,"The Binding of Isaac",play,4.9,0 -65610147,"Alien Swarm",purchase,1.0,0 -65610147,"Alien Swarm",play,1.0,0 -65610147,"Rogue Legacy",purchase,1.0,0 -65610147,"Starbound - Unstable",purchase,1.0,0 -65610147,"Tales of Maj'Eyal - Ashes of Urh'Rok",purchase,1.0,0 -147619919,"Dota 2",purchase,1.0,0 -147619919,"Dota 2",play,5.3,0 -142256500,"Dota 2",purchase,1.0,0 -142256500,"Dota 2",play,0.4,0 -200364872,"F1 2014",purchase,1.0,0 -200364872,"F1 2014",play,20.0,0 -86466985,"Crusader Kings II",purchase,1.0,0 -86466985,"Crusader Kings II",play,1136.0,0 -86466985,"Europa Universalis IV",purchase,1.0,0 -86466985,"Europa Universalis IV",play,549.0,0 -86466985,"Total War ROME II - Emperor Edition",purchase,1.0,0 -86466985,"Total War ROME II - Emperor Edition",play,288.0,0 -86466985,"The Elder Scrolls Online Tamriel Unlimited",purchase,1.0,0 -86466985,"The Elder Scrolls Online Tamriel Unlimited",play,125.0,0 -86466985,"Medieval II Total War",purchase,1.0,0 -86466985,"Medieval II Total War",play,119.0,0 -86466985,"Sid Meier's Civilization V",purchase,1.0,0 -86466985,"Sid Meier's Civilization V",play,113.0,0 -86466985,"Expeditions Conquistador",purchase,1.0,0 -86466985,"Expeditions Conquistador",play,81.0,0 -86466985,"Empire Total War",purchase,1.0,0 -86466985,"Empire Total War",play,60.0,0 -86466985,"Hearts of Iron III",purchase,1.0,0 -86466985,"Hearts of Iron III",play,14.5,0 -86466985,"Medieval II Total War Kingdoms",purchase,1.0,0 -86466985,"Napoleon Total War",purchase,1.0,0 -86466985,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -184524833,"Dota 2",purchase,1.0,0 -184524833,"Dota 2",play,471.0,0 -184524833,"FreeStyle2 Street Basketball",purchase,1.0,0 -184524833,"GunZ 2 The Second Duel",purchase,1.0,0 -184524833,"Heroes & Generals",purchase,1.0,0 -184524833,"Warframe",purchase,1.0,0 -108887922,"Zombie Panic Source",purchase,1.0,0 -108887922,"Zombie Panic Source",play,0.2,0 -255582025,"FreeStyle2 Street Basketball",purchase,1.0,0 -255582025,"FreeStyle2 Street Basketball",play,3.4,0 -147120267,"Dota 2",purchase,1.0,0 -147120267,"Dota 2",play,0.6,0 -147120267,"Only If",purchase,1.0,0 -147120267,"SpaceChem",purchase,1.0,0 -147120267,"Dino D-Day",purchase,1.0,0 -147120267,"GTR Evolution",purchase,1.0,0 -147120267,"RACE 07",purchase,1.0,0 -147120267,"RaceRoom Racing Experience ",purchase,1.0,0 -147120267,"Really Big Sky",purchase,1.0,0 -92843672,"Counter-Strike Source",purchase,1.0,0 -92843672,"Counter-Strike Source",play,175.0,0 -92843672,"Day of Defeat Source",purchase,1.0,0 -92843672,"Day of Defeat Source",play,0.2,0 -92843672,"Half-Life 2 Deathmatch",purchase,1.0,0 -92843672,"Half-Life 2 Deathmatch",play,0.2,0 -92843672,"Half-Life 2 Lost Coast",purchase,1.0,0 -156270296,"Dota 2",purchase,1.0,0 -156270296,"Dota 2",play,0.8,0 -200714421,"Dota 2",purchase,1.0,0 -200714421,"Dota 2",play,0.6,0 -52435421,"Team Fortress 2",purchase,1.0,0 -52435421,"Team Fortress 2",play,60.0,0 -52435421,"Half-Life 2",purchase,1.0,0 -52435421,"Half-Life 2",play,52.0,0 -52435421,"Half-Life 2 Episode One",purchase,1.0,0 -52435421,"Half-Life 2 Episode One",play,12.1,0 -52435421,"Hotline Miami",purchase,1.0,0 -52435421,"Hotline Miami",play,5.3,0 -52435421,"Left 4 Dead 2",purchase,1.0,0 -52435421,"Left 4 Dead 2",play,3.3,0 -52435421,"AdVenture Capitalist",purchase,1.0,0 -52435421,"AdVenture Capitalist",play,0.7,0 -52435421,"Portal",purchase,1.0,0 -52435421,"Portal",play,0.4,0 -52435421,"Half-Life 2 Episode Two",purchase,1.0,0 -52435421,"Half-Life 2 Lost Coast",purchase,1.0,0 -191320556,"Dota 2",purchase,1.0,0 -191320556,"Dota 2",play,41.0,0 -128934005,"Dota 2",purchase,1.0,0 -128934005,"Dota 2",play,7.4,0 -128934005,"Heroes & Generals",purchase,1.0,0 -128934005,"Heroes & Generals",play,2.2,0 -128934005,"FreeStyle2 Street Basketball",purchase,1.0,0 -128934005,"Saints Row IV Inauguration Station",purchase,1.0,0 -128934005,"TERA",purchase,1.0,0 -41205215,"Counter-Strike Global Offensive",purchase,1.0,0 -41205215,"Counter-Strike Global Offensive",play,393.0,0 -41205215,"The Mighty Quest For Epic Loot",purchase,1.0,0 -95747088,"Call of Duty Modern Warfare 2",purchase,1.0,0 -95747088,"Call of Duty Modern Warfare 2",play,2.0,0 -95747088,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -95747088,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.8,0 -49413665,"Empire Total War",purchase,1.0,0 -49413665,"Empire Total War",play,312.0,0 -49413665,"Knights of Honor",purchase,1.0,0 -49413665,"Knights of Honor",play,155.0,0 -49413665,"Anno 1404",purchase,1.0,0 -49413665,"Anno 1404",play,48.0,0 -49413665,"Command and Conquer 3 Tiberium Wars",purchase,1.0,0 -49413665,"Command and Conquer 3 Tiberium Wars",play,40.0,0 -49413665,"Command and Conquer 3 Kane's Wrath",purchase,1.0,0 -49413665,"Command and Conquer 3 Kane's Wrath",play,21.0,0 -49413665,"Hearts of Iron III",purchase,1.0,0 -49413665,"Hearts of Iron III",play,13.1,0 -49413665,"Napoleon Total War",purchase,1.0,0 -49413665,"Napoleon Total War",play,8.0,0 -165130491,"Dota 2",purchase,1.0,0 -165130491,"Dota 2",play,3.9,0 -206308003,"Unturned",purchase,1.0,0 -206308003,"Unturned",play,2.3,0 -206308003,"Robocraft",purchase,1.0,0 -206308003,"Robocraft",play,1.7,0 -131023125,"The Elder Scrolls V Skyrim",purchase,1.0,0 -131023125,"The Elder Scrolls V Skyrim",play,301.0,0 -131023125,"Ragnarok Online 2",purchase,1.0,0 -131023125,"Ragnarok Online 2",play,79.0,0 -131023125,"Unturned",purchase,1.0,0 -131023125,"Unturned",play,16.7,0 -131023125,"Realm of the Mad God",purchase,1.0,0 -131023125,"Realm of the Mad God",play,13.1,0 -131023125,"Dota 2",purchase,1.0,0 -131023125,"Dota 2",play,11.4,0 -131023125,"DC Universe Online",purchase,1.0,0 -131023125,"DC Universe Online",play,7.2,0 -131023125,"Champions Online",purchase,1.0,0 -131023125,"Champions Online",play,6.3,0 -131023125,"Team Fortress 2",purchase,1.0,0 -131023125,"Team Fortress 2",play,2.3,0 -131023125,"Aura Kingdom",purchase,1.0,0 -131023125,"Aura Kingdom",play,1.4,0 -131023125,"Fallen Earth",purchase,1.0,0 -131023125,"Fallen Earth",play,1.2,0 -131023125,"Warframe",purchase,1.0,0 -131023125,"Warframe",play,0.5,0 -131023125,"Dragon Nest Europe",purchase,1.0,0 -202595940,"Football Manager 2015",purchase,1.0,0 -202595940,"Football Manager 2015",play,6.4,0 -152542298,"Dota 2",purchase,1.0,0 -152542298,"Dota 2",play,27.0,0 -152542298,"FINAL FANTASY VIII",purchase,1.0,0 -152542298,"FINAL FANTASY VIII",play,7.4,0 -152542298,"Magicka Wizard Wars",purchase,1.0,0 -152542298,"Magicka Wizard Wars",play,3.5,0 -152542298,"Hyperdimension Neptunia Re;Birth1",purchase,1.0,0 -152542298,"Robocraft",purchase,1.0,0 -152542298,"Warframe",purchase,1.0,0 -156904436,"Dota 2",purchase,1.0,0 -156904436,"Dota 2",play,0.2,0 -48063019,"Dota 2",purchase,1.0,0 -48063019,"Dota 2",play,0.6,0 -217681801,"Dota 2",purchase,1.0,0 -217681801,"Dota 2",play,18.9,0 -242856576,"Euro Truck Simulator 2",purchase,1.0,0 -242856576,"Euro Truck Simulator 2",play,203.0,0 -159936874,"Left 4 Dead 2",purchase,1.0,0 -159936874,"Left 4 Dead 2",play,56.0,0 -282532526,"Dota 2",purchase,1.0,0 -282532526,"Dota 2",play,1.2,0 -301253133,"Quake Live",purchase,1.0,0 -301253133,"Quake Live",play,149.0,0 -119624572,"Counter-Strike Global Offensive",purchase,1.0,0 -119624572,"Counter-Strike Global Offensive",play,9.8,0 -119624572,"Portal",purchase,1.0,0 -119624572,"Portal",play,3.8,0 -119624572,"Portal 2",purchase,1.0,0 -149310293,"Dota 2",purchase,1.0,0 -149310293,"Dota 2",play,0.6,0 -163160256,"Rust",purchase,1.0,0 -163160256,"Rust",play,138.0,0 -145243748,"The Elder Scrolls V Skyrim",purchase,1.0,0 -145243748,"The Elder Scrolls V Skyrim",play,157.0,0 -145243748,"Garry's Mod",purchase,1.0,0 -145243748,"Garry's Mod",play,63.0,0 -145243748,"Far Cry 3",purchase,1.0,0 -145243748,"Far Cry 3",play,52.0,0 -145243748,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -145243748,"METAL GEAR RISING REVENGEANCE",play,40.0,0 -145243748,"Warframe",purchase,1.0,0 -145243748,"Warframe",play,37.0,0 -145243748,"Star Wars - Battlefront II",purchase,1.0,0 -145243748,"Star Wars - Battlefront II",play,37.0,0 -145243748,"Batman Arkham City GOTY",purchase,1.0,0 -145243748,"Batman Arkham City GOTY",play,34.0,0 -145243748,"BioShock Infinite",purchase,1.0,0 -145243748,"BioShock Infinite",play,29.0,0 -145243748,"Team Fortress 2",purchase,1.0,0 -145243748,"Team Fortress 2",play,21.0,0 -145243748,"BioShock",purchase,1.0,0 -145243748,"BioShock",play,20.0,0 -145243748,"DC Universe Online",purchase,1.0,0 -145243748,"DC Universe Online",play,18.6,0 -145243748,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -145243748,"Fallout 3 - Game of the Year Edition",play,10.5,0 -145243748,"Mirror's Edge",purchase,1.0,0 -145243748,"Mirror's Edge",play,10.4,0 -145243748,"Left 4 Dead 2",purchase,1.0,0 -145243748,"Left 4 Dead 2",play,10.3,0 -145243748,"Batman Arkham Origins",purchase,1.0,0 -145243748,"Batman Arkham Origins",play,8.0,0 -145243748,"PlanetSide 2",purchase,1.0,0 -145243748,"PlanetSide 2",play,7.1,0 -145243748,"ArcheAge",purchase,1.0,0 -145243748,"ArcheAge",play,7.1,0 -145243748,"Counter-Strike Source",purchase,1.0,0 -145243748,"Counter-Strike Source",play,6.8,0 -145243748,"Double Action Boogaloo",purchase,1.0,0 -145243748,"Double Action Boogaloo",play,5.8,0 -145243748,"BioShock 2",purchase,1.0,0 -145243748,"BioShock 2",play,5.5,0 -145243748,"FINAL FANTASY XIII",purchase,1.0,0 -145243748,"FINAL FANTASY XIII",play,5.0,0 -145243748,"RIFT",purchase,1.0,0 -145243748,"RIFT",play,2.7,0 -145243748,"APB Reloaded",purchase,1.0,0 -145243748,"APB Reloaded",play,1.2,0 -145243748,"Guns of Icarus Online",purchase,1.0,0 -145243748,"Guns of Icarus Online",play,0.6,0 -145243748,"The Expendabros",purchase,1.0,0 -145243748,"The Expendabros",play,0.4,0 -145243748,"To the Moon",purchase,1.0,0 -145243748,"To the Moon",play,0.4,0 -145243748,"Archeblade",purchase,1.0,0 -145243748,"Archeblade",play,0.4,0 -145243748,"Elsword",purchase,1.0,0 -145243748,"Elsword",play,0.2,0 -145243748,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -145243748,"BioShock Infinite - Season Pass",purchase,1.0,0 -145243748,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -145243748,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -145243748,"Mabinogi",purchase,1.0,0 -145243748,"Modular Combat",purchase,1.0,0 -145243748,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -145243748,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -145243748,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -145243748,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -145243748,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -145050295,"Dota 2",purchase,1.0,0 -145050295,"Dota 2",play,71.0,0 -116620161,"Team Fortress 2",purchase,1.0,0 -116620161,"Team Fortress 2",play,115.0,0 -123101539,"Mount & Blade Warband",purchase,1.0,0 -123101539,"Mount & Blade Warband",play,247.0,0 -123101539,"Medieval II Total War",purchase,1.0,0 -123101539,"Medieval II Total War",play,129.0,0 -123101539,"Space Engineers",purchase,1.0,0 -123101539,"Space Engineers",play,105.0,0 -123101539,"NBA 2K15",purchase,1.0,0 -123101539,"NBA 2K15",play,91.0,0 -123101539,"Total War SHOGUN 2",purchase,1.0,0 -123101539,"Total War SHOGUN 2",play,70.0,0 -123101539,"Crusader Kings II",purchase,1.0,0 -123101539,"Crusader Kings II",play,64.0,0 -123101539,"Age of Wonders 2",purchase,1.0,0 -123101539,"Age of Wonders 2",play,63.0,0 -123101539,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -123101539,"Kingdoms of Amalur Reckoning",play,58.0,0 -123101539,"Deus Ex Human Revolution",purchase,1.0,0 -123101539,"Deus Ex Human Revolution",play,58.0,0 -123101539,"Sid Meier's Civilization V",purchase,1.0,0 -123101539,"Sid Meier's Civilization V",play,56.0,0 -123101539,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -123101539,"Dark Souls Prepare to Die Edition",play,54.0,0 -123101539,"Company of Heroes (New Steam Version)",purchase,1.0,0 -123101539,"Company of Heroes (New Steam Version)",play,42.0,0 -123101539,"Fallen Enchantress Legendary Heroes",purchase,1.0,0 -123101539,"Fallen Enchantress Legendary Heroes",play,40.0,0 -123101539,"XCOM Enemy Unknown",purchase,1.0,0 -123101539,"XCOM Enemy Unknown",play,38.0,0 -123101539,"Age of Wonders III",purchase,1.0,0 -123101539,"Age of Wonders III",play,36.0,0 -123101539,"Borderlands 2",purchase,1.0,0 -123101539,"Borderlands 2",play,35.0,0 -123101539,"The Elder Scrolls III Morrowind",purchase,1.0,0 -123101539,"The Elder Scrolls III Morrowind",play,34.0,0 -123101539,"Darksiders",purchase,1.0,0 -123101539,"Darksiders",play,30.0,0 -123101539,"Dishonored",purchase,1.0,0 -123101539,"Dishonored",play,29.0,0 -123101539,"Brtal Legend",purchase,1.0,0 -123101539,"Brtal Legend",play,29.0,0 -123101539,"BioShock 2",purchase,1.0,0 -123101539,"BioShock 2",play,28.0,0 -123101539,"Reus",purchase,1.0,0 -123101539,"Reus",play,28.0,0 -123101539,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -123101539,"The Incredible Adventures of Van Helsing",play,24.0,0 -123101539,"Saints Row IV",purchase,1.0,0 -123101539,"Saints Row IV",play,23.0,0 -123101539,"Fable - The Lost Chapters",purchase,1.0,0 -123101539,"Fable - The Lost Chapters",play,19.5,0 -123101539,"Rogue Legacy",purchase,1.0,0 -123101539,"Rogue Legacy",play,18.8,0 -123101539,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -123101539,"Vampire The Masquerade - Bloodlines",play,18.0,0 -123101539,"Max Payne 3",purchase,1.0,0 -123101539,"Max Payne 3",play,17.9,0 -123101539,"Metro Last Light",purchase,1.0,0 -123101539,"Metro Last Light",play,17.8,0 -123101539,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -123101539,"Dark Messiah of Might & Magic Single Player",play,16.3,0 -123101539,"Magicka",purchase,1.0,0 -123101539,"Magicka",play,12.9,0 -123101539,"Valkyria Chronicles",purchase,1.0,0 -123101539,"Valkyria Chronicles",play,12.8,0 -123101539,"Alan Wake",purchase,1.0,0 -123101539,"Alan Wake",play,12.2,0 -123101539,"The Darkness II",purchase,1.0,0 -123101539,"The Darkness II",play,10.6,0 -123101539,"Star Wars Knights of the Old Republic",purchase,1.0,0 -123101539,"Star Wars Knights of the Old Republic",play,9.6,0 -123101539,"Mark of the Ninja",purchase,1.0,0 -123101539,"Mark of the Ninja",play,8.4,0 -123101539,"Stronghold HD",purchase,1.0,0 -123101539,"Stronghold HD",play,7.8,0 -123101539,"X3 Terran Conflict",purchase,1.0,0 -123101539,"X3 Terran Conflict",play,7.2,0 -123101539,"Shadowrun Returns",purchase,1.0,0 -123101539,"Shadowrun Returns",play,5.7,0 -123101539,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -123101539,"METAL GEAR RISING REVENGEANCE",play,4.4,0 -123101539,"The Swapper",purchase,1.0,0 -123101539,"The Swapper",play,3.9,0 -123101539,"Napoleon Total War",purchase,1.0,0 -123101539,"Napoleon Total War",play,2.7,0 -123101539,"Warhammer 40,000 Space Marine",purchase,1.0,0 -123101539,"Warhammer 40,000 Space Marine",play,2.6,0 -123101539,"Portal 2",purchase,1.0,0 -123101539,"Portal 2",play,1.0,0 -123101539,"Hitman Absolution",purchase,1.0,0 -123101539,"Hitman Absolution",play,0.5,0 -123101539,"Alan Wake's American Nightmare",purchase,1.0,0 -123101539,"BioShock Infinite",purchase,1.0,0 -123101539,"Company of Heroes",purchase,1.0,0 -123101539,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -123101539,"Dead Island",purchase,1.0,0 -123101539,"Europa Universalis IV",purchase,1.0,0 -123101539,"Far Cry 3",purchase,1.0,0 -123101539,"Hitman Sniper Challenge",purchase,1.0,0 -123101539,"Mars War Logs",purchase,1.0,0 -123101539,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -123101539,"Shadow Warrior",purchase,1.0,0 -123101539,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -123101539,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -123101539,"The Elder Scrolls V Skyrim",purchase,1.0,0 -123101539,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -123101539,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -123101539,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -123101539,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -123101539,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -123101539,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -123101539,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -123101539,"Wolfenstein The New Order",purchase,1.0,0 -123101539,"X3 Albion Prelude",purchase,1.0,0 -91912195,"Call of Duty Modern Warfare 3",purchase,1.0,0 -91912195,"Call of Duty Modern Warfare 3",play,82.0,0 -91912195,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -91912195,"Call of Duty Modern Warfare 3 - Multiplayer",play,82.0,0 -91912195,"HAWKEN",purchase,1.0,0 -91912195,"Magicka Wizard Wars",purchase,1.0,0 -198381433,"Dota 2",purchase,1.0,0 -198381433,"Dota 2",play,1.1,0 -210292627,"GEARCRACK Arena",purchase,1.0,0 -166119884,"Dota 2",purchase,1.0,0 -166119884,"Dota 2",play,8.1,0 -255750768,"Counter-Strike Global Offensive",purchase,1.0,0 -255750768,"Counter-Strike Global Offensive",play,11.0,0 -255750768,"Bloodline Champions",purchase,1.0,0 -112216065,"Borderlands 2",purchase,1.0,0 -112216065,"Borderlands 2",play,45.0,0 -214618086,"The Way of Life Free Edition",purchase,1.0,0 -214618086,"The Way of Life Free Edition",play,0.1,0 -92663477,"Counter-Strike Global Offensive",purchase,1.0,0 -92663477,"Counter-Strike Global Offensive",play,76.0,0 -92663477,"Clicker Heroes",purchase,1.0,0 -92663477,"Clicker Heroes",play,34.0,0 -92663477,"The Elder Scrolls V Skyrim",purchase,1.0,0 -92663477,"The Elder Scrolls V Skyrim",play,32.0,0 -92663477,"Rocket League",purchase,1.0,0 -92663477,"Rocket League",play,27.0,0 -92663477,"PROTOTYPE 2",purchase,1.0,0 -92663477,"PROTOTYPE 2",play,16.3,0 -92663477,"Saints Row The Third",purchase,1.0,0 -92663477,"Saints Row The Third",play,14.0,0 -92663477,"DayZ",purchase,1.0,0 -92663477,"DayZ",play,13.3,0 -92663477,"Nosgoth",purchase,1.0,0 -92663477,"Nosgoth",play,12.9,0 -92663477,"ORION Prelude",purchase,1.0,0 -92663477,"ORION Prelude",play,12.8,0 -92663477,"PAYDAY 2",purchase,1.0,0 -92663477,"PAYDAY 2",play,9.3,0 -92663477,"Saints Row IV",purchase,1.0,0 -92663477,"Saints Row IV",play,6.5,0 -92663477,"Aura Kingdom",purchase,1.0,0 -92663477,"Aura Kingdom",play,5.6,0 -92663477,"South Park The Stick of Truth",purchase,1.0,0 -92663477,"South Park The Stick of Truth",play,5.4,0 -92663477,"Deus Ex Human Revolution",purchase,1.0,0 -92663477,"Deus Ex Human Revolution",play,5.0,0 -92663477,"Metro Conflict",purchase,1.0,0 -92663477,"Metro Conflict",play,4.7,0 -92663477,"Age of Empires II HD Edition",purchase,1.0,0 -92663477,"Age of Empires II HD Edition",play,4.3,0 -92663477,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -92663477,"Kingdoms of Amalur Reckoning",play,4.3,0 -92663477,"Spore",purchase,1.0,0 -92663477,"Spore",play,2.7,0 -92663477,"AdVenture Capitalist",purchase,1.0,0 -92663477,"AdVenture Capitalist",play,2.4,0 -92663477,"Dungeon Souls",purchase,1.0,0 -92663477,"Dungeon Souls",play,2.4,0 -92663477,"Torchlight II",purchase,1.0,0 -92663477,"Torchlight II",play,2.3,0 -92663477,"Sparkle 2 Evo",purchase,1.0,0 -92663477,"Sparkle 2 Evo",play,2.0,0 -92663477,"Magic 2014 ",purchase,1.0,0 -92663477,"Magic 2014 ",play,1.9,0 -92663477,"Kerbal Space Program",purchase,1.0,0 -92663477,"Kerbal Space Program",play,1.8,0 -92663477,"BioShock Infinite",purchase,1.0,0 -92663477,"BioShock Infinite",play,1.7,0 -92663477,"Awesomenauts",purchase,1.0,0 -92663477,"Awesomenauts",play,1.6,0 -92663477,"Beat Hazard",purchase,1.0,0 -92663477,"Beat Hazard",play,1.4,0 -92663477,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -92663477,"Dragon Age Origins - Ultimate Edition",play,1.4,0 -92663477,"Blocks That Matter",purchase,1.0,0 -92663477,"Blocks That Matter",play,1.3,0 -92663477,"Grand Theft Auto San Andreas",purchase,1.0,0 -92663477,"Grand Theft Auto San Andreas",play,1.0,0 -92663477,"PlanetSide 2",purchase,1.0,0 -92663477,"PlanetSide 2",play,0.9,0 -92663477,"Anno 1404",purchase,1.0,0 -92663477,"Anno 1404",play,0.8,0 -92663477,"Far Cry 3",purchase,1.0,0 -92663477,"Far Cry 3",play,0.8,0 -92663477,"Team Fortress 2",purchase,1.0,0 -92663477,"Team Fortress 2",play,0.7,0 -92663477,"State of Decay",purchase,1.0,0 -92663477,"State of Decay",play,0.6,0 -92663477,"Reus",purchase,1.0,0 -92663477,"Reus",play,0.6,0 -92663477,"Dirty Bomb",purchase,1.0,0 -92663477,"Dirty Bomb",play,0.5,0 -92663477,"Empire Total War",purchase,1.0,0 -92663477,"Empire Total War",play,0.5,0 -92663477,"Dota 2",purchase,1.0,0 -92663477,"Dota 2",play,0.5,0 -92663477,"Forge",purchase,1.0,0 -92663477,"Forge",play,0.5,0 -92663477,"Far Cry 3 Blood Dragon",purchase,1.0,0 -92663477,"Far Cry 3 Blood Dragon",play,0.3,0 -92663477,"ARK Survival Evolved",purchase,1.0,0 -92663477,"ARK Survival Evolved",play,0.2,0 -92663477,"Robocraft",purchase,1.0,0 -92663477,"Robocraft",play,0.2,0 -92663477,"BattleBlock Theater",purchase,1.0,0 -92663477,"BattleBlock Theater",play,0.1,0 -92663477,"FootLOL Epic Fail League",purchase,1.0,0 -92663477,"FootLOL Epic Fail League",play,0.1,0 -92663477,"Killing Floor 2",purchase,1.0,0 -92663477,"Killing Floor 2",play,0.1,0 -92663477,"Arma 2",purchase,1.0,0 -92663477,"Super Dungeon Run",purchase,1.0,0 -92663477,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -92663477,"Echo of Soul",purchase,1.0,0 -92663477,"Heroes & Generals",purchase,1.0,0 -92663477,"Super Hexagon",purchase,1.0,0 -92663477,"Brick-Force",purchase,1.0,0 -92663477,"Far Cry",purchase,1.0,0 -92663477,"Far Cry 2",purchase,1.0,0 -92663477,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -92663477,"GTA SA German Mac",purchase,1.0,0 -92663477,"SMITE",purchase,1.0,0 -92663477,"South Park The Stick of Truth - Super Samurai Spaceman Pack",purchase,1.0,0 -92663477,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -92663477,"Spore Creepy & Cute Parts Pack",purchase,1.0,0 -92663477,"Spore Galactic Adventures",purchase,1.0,0 -92663477,"TERA",purchase,1.0,0 -92663477,"Unturned",purchase,1.0,0 -92663477,"Warframe",purchase,1.0,0 -92663477,"You Have to Win the Game",purchase,1.0,0 -182175005,"Dota 2",purchase,1.0,0 -182175005,"Dota 2",play,55.0,0 -296676579,"Dota 2",purchase,1.0,0 -296676579,"Dota 2",play,3.9,0 -216303146,"Garry's Mod",purchase,1.0,0 -216303146,"Garry's Mod",play,14.3,0 -216303146,"Call of Duty World at War",purchase,1.0,0 -216303146,"Call of Duty World at War",play,0.8,0 -187928878,"Dota 2",purchase,1.0,0 -187928878,"Dota 2",play,51.0,0 -88290913,"Dota 2",purchase,1.0,0 -88290913,"Dota 2",play,3940.0,0 -88290913,"Counter-Strike Global Offensive",purchase,1.0,0 -88290913,"Counter-Strike Global Offensive",play,101.0,0 -88290913,"Fallen Earth",purchase,1.0,0 -88290913,"Fallen Earth",play,1.8,0 -88290913,"Heroes & Generals",purchase,1.0,0 -88290913,"Heroes & Generals",play,0.6,0 -140493636,"Dota 2",purchase,1.0,0 -140493636,"Dota 2",play,0.5,0 -219230362,"Transformice",purchase,1.0,0 -219230362,"Transformice",play,14.9,0 -219230362,"Heroes & Generals",purchase,1.0,0 -33587126,"Counter-Strike",purchase,1.0,0 -33587126,"Counter-Strike",play,11.0,0 -33587126,"Counter-Strike Condition Zero",purchase,1.0,0 -33587126,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -296121101,"BLOCKADE 3D",purchase,1.0,0 -296121101,"Pirates of Black Cove Gold",purchase,1.0,0 -59157389,"Dota 2",purchase,1.0,0 -59157389,"Dota 2",play,721.0,0 -59157389,"Men of War Assault Squad",purchase,1.0,0 -59157389,"Men of War Assault Squad",play,265.0,0 -59157389,"Rust",purchase,1.0,0 -59157389,"Rust",play,182.0,0 -59157389,"Arma 3",purchase,1.0,0 -59157389,"Arma 3",play,82.0,0 -59157389,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -59157389,"Call of Duty Modern Warfare 2 - Multiplayer",play,46.0,0 -59157389,"Company of Heroes (New Steam Version)",purchase,1.0,0 -59157389,"Company of Heroes (New Steam Version)",play,8.5,0 -59157389,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -59157389,"Rising Storm/Red Orchestra 2 Multiplayer",play,7.7,0 -59157389,"Arma 2 Operation Arrowhead",purchase,1.0,0 -59157389,"Arma 2 Operation Arrowhead",play,2.2,0 -59157389,"Left 4 Dead 2",purchase,1.0,0 -59157389,"Left 4 Dead 2",play,0.2,0 -59157389,"Mount & Blade Warband",purchase,1.0,0 -59157389,"Mount & Blade Warband",play,0.1,0 -59157389,"Call of Duty Modern Warfare 2",purchase,1.0,0 -59157389,"DCS World",purchase,1.0,0 -59157389,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -59157389,"Arma 3 Zeus",purchase,1.0,0 -59157389,"Company of Heroes Tales of Valor",purchase,1.0,0 -59157389,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -132111476,"Dota 2",purchase,1.0,0 -132111476,"Dota 2",play,103.0,0 -294785149,"ARK Survival Evolved",purchase,1.0,0 -294785149,"ARK Survival Evolved",play,279.0,0 -294785149,"Grand Theft Auto V",purchase,1.0,0 -294785149,"Grand Theft Auto V",play,18.6,0 -294785149,"Team Fortress 2",purchase,1.0,0 -294785149,"Team Fortress 2",play,3.1,0 -294785149,"Robocraft",purchase,1.0,0 -245422124,"F1 2011",purchase,1.0,0 -245422124,"F1 2011",play,12.4,0 -245422124,"Warframe",purchase,1.0,0 -245422124,"Warframe",play,3.7,0 -245422124,"RaceRoom Racing Experience ",purchase,1.0,0 -194794185,"Unturned",purchase,1.0,0 -194794185,"Unturned",play,24.0,0 -237857246,"FreeStyle2 Street Basketball",purchase,1.0,0 -237857246,"FreeStyle2 Street Basketball",play,16.1,0 -237857246,"Stronghold Kingdoms",purchase,1.0,0 -237857246,"Stronghold Kingdoms",play,0.2,0 -237857246,"Free to Play",purchase,1.0,0 -237857246,"Warframe",purchase,1.0,0 -136891549,"Dota 2",purchase,1.0,0 -136891549,"Dota 2",play,53.0,0 -136891549,"Counter-Strike",purchase,1.0,0 -136891549,"Counter-Strike",play,19.6,0 -136891549,"Left 4 Dead 2",purchase,1.0,0 -136891549,"Left 4 Dead 2",play,12.4,0 -136891549,"Counter-Strike Condition Zero",purchase,1.0,0 -136891549,"Counter-Strike Condition Zero",play,0.5,0 -136891549,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -307057657,"Counter-Strike Nexon Zombies",purchase,1.0,0 -299153,"Counter-Strike",purchase,1.0,0 -299153,"Counter-Strike Condition Zero",purchase,1.0,0 -299153,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -299153,"Counter-Strike Source",purchase,1.0,0 -299153,"Day of Defeat",purchase,1.0,0 -299153,"Deathmatch Classic",purchase,1.0,0 -299153,"Half-Life",purchase,1.0,0 -299153,"Half-Life 2",purchase,1.0,0 -299153,"Half-Life 2 Deathmatch",purchase,1.0,0 -299153,"Half-Life 2 Lost Coast",purchase,1.0,0 -299153,"Half-Life Blue Shift",purchase,1.0,0 -299153,"Half-Life Opposing Force",purchase,1.0,0 -299153,"Ricochet",purchase,1.0,0 -299153,"Team Fortress Classic",purchase,1.0,0 -101809411,"Just Cause 2",purchase,1.0,0 -101809411,"Just Cause 2",play,0.8,0 -55522584,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -55522584,"Call of Duty Modern Warfare 2 - Multiplayer",play,139.0,0 -55522584,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -55522584,"Call of Duty Black Ops - Multiplayer",play,53.0,0 -55522584,"Call of Duty Modern Warfare 2",purchase,1.0,0 -55522584,"Call of Duty Modern Warfare 2",play,6.0,0 -55522584,"Call of Duty Black Ops",purchase,1.0,0 -55522584,"Call of Duty Black Ops",play,0.1,0 -282096494,"TERA",purchase,1.0,0 -282096494,"TERA",play,8.5,0 -282096494,"Magicka Wizard Wars",purchase,1.0,0 -226704675,"Dota 2",purchase,1.0,0 -226704675,"Dota 2",play,0.3,0 -292326196,"Dota 2",purchase,1.0,0 -292326196,"Dota 2",play,0.2,0 -149541004,"Dota 2",purchase,1.0,0 -149541004,"Dota 2",play,0.9,0 -238048910,"Hearts of Iron II Complete",purchase,1.0,0 -238048910,"Hearts of Iron II Complete",play,164.0,0 -238048910,"Unturned",purchase,1.0,0 -238048910,"Unturned",play,1.4,0 -238048910,"Victory Command",purchase,1.0,0 -238048910,"Victory Command",play,0.2,0 -238048910,"Heroes & Generals",purchase,1.0,0 -238048910,"Heroes & Generals",play,0.2,0 -238048910,"Trove",purchase,1.0,0 -238048910,"Counter-Strike Nexon Zombies",purchase,1.0,0 -238048910,"No More Room in Hell",purchase,1.0,0 -21061921,"Sid Meier's Civilization V",purchase,1.0,0 -21061921,"Sid Meier's Civilization V",play,452.0,0 -21061921,"XCOM Enemy Unknown",purchase,1.0,0 -21061921,"XCOM Enemy Unknown",play,207.0,0 -21061921,"Might & Magic Heroes VI",purchase,1.0,0 -21061921,"Might & Magic Heroes VI",play,108.0,0 -21061921,"The Elder Scrolls V Skyrim",purchase,1.0,0 -21061921,"The Elder Scrolls V Skyrim",play,87.0,0 -21061921,"Team Fortress 2",purchase,1.0,0 -21061921,"Team Fortress 2",play,72.0,0 -21061921,"7 Days to Die",purchase,1.0,0 -21061921,"7 Days to Die",play,65.0,0 -21061921,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -21061921,"Dark Souls Prepare to Die Edition",play,61.0,0 -21061921,"Path of Exile",purchase,1.0,0 -21061921,"Path of Exile",play,54.0,0 -21061921,"Red Faction Armageddon",purchase,1.0,0 -21061921,"Red Faction Armageddon",play,48.0,0 -21061921,"Dead Island",purchase,1.0,0 -21061921,"Dead Island",play,48.0,0 -21061921,"Age of Wonders III",purchase,1.0,0 -21061921,"Age of Wonders III",play,47.0,0 -21061921,"Fallout New Vegas",purchase,1.0,0 -21061921,"Fallout New Vegas",play,43.0,0 -21061921,"Defense Grid The Awakening",purchase,1.0,0 -21061921,"Defense Grid The Awakening",play,42.0,0 -21061921,"Endless Space",purchase,1.0,0 -21061921,"Endless Space",play,41.0,0 -21061921,"Dota 2",purchase,1.0,0 -21061921,"Dota 2",play,41.0,0 -21061921,"Borderlands 2",purchase,1.0,0 -21061921,"Borderlands 2",play,39.0,0 -21061921,"Sanctum",purchase,1.0,0 -21061921,"Sanctum",play,33.0,0 -21061921,"Defense Grid 2",purchase,1.0,0 -21061921,"Defense Grid 2",play,30.0,0 -21061921,"Kerbal Space Program",purchase,1.0,0 -21061921,"Kerbal Space Program",play,27.0,0 -21061921,"Wolfenstein The New Order",purchase,1.0,0 -21061921,"Wolfenstein The New Order",play,25.0,0 -21061921,"Torchlight II",purchase,1.0,0 -21061921,"Torchlight II",play,25.0,0 -21061921,"Killing Floor",purchase,1.0,0 -21061921,"Killing Floor",play,24.0,0 -21061921,"Natural Selection 2",purchase,1.0,0 -21061921,"Natural Selection 2",play,24.0,0 -21061921,"Left 4 Dead",purchase,1.0,0 -21061921,"Left 4 Dead",play,23.0,0 -21061921,"Saints Row The Third",purchase,1.0,0 -21061921,"Saints Row The Third",play,22.0,0 -21061921,"BioShock Infinite",purchase,1.0,0 -21061921,"BioShock Infinite",play,21.0,0 -21061921,"Saints Row IV",purchase,1.0,0 -21061921,"Saints Row IV",play,20.0,0 -21061921,"Dishonored",purchase,1.0,0 -21061921,"Dishonored",play,19.8,0 -21061921,"Borderlands",purchase,1.0,0 -21061921,"Borderlands",play,17.0,0 -21061921,"The Binding of Isaac",purchase,1.0,0 -21061921,"The Binding of Isaac",play,16.8,0 -21061921,"Assassin's Creed II",purchase,1.0,0 -21061921,"Assassin's Creed II",play,16.7,0 -21061921,"Left 4 Dead 2",purchase,1.0,0 -21061921,"Left 4 Dead 2",play,16.6,0 -21061921,"Rogue Legacy",purchase,1.0,0 -21061921,"Rogue Legacy",play,14.8,0 -21061921,"State of Decay",purchase,1.0,0 -21061921,"State of Decay",play,14.4,0 -21061921,"Titan Quest Immortal Throne",purchase,1.0,0 -21061921,"Titan Quest Immortal Throne",play,14.0,0 -21061921,"Killing Floor 2",purchase,1.0,0 -21061921,"Killing Floor 2",play,13.3,0 -21061921,"Assassin's Creed III",purchase,1.0,0 -21061921,"Assassin's Creed III",play,12.6,0 -21061921,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -21061921,"Warhammer 40,000 Dawn of War II Retribution",play,12.4,0 -21061921,"Sol Survivor",purchase,1.0,0 -21061921,"Sol Survivor",play,12.1,0 -21061921,"Monday Night Combat",purchase,1.0,0 -21061921,"Monday Night Combat",play,11.9,0 -21061921,"Don't Starve",purchase,1.0,0 -21061921,"Don't Starve",play,11.0,0 -21061921,"Counter-Strike Source",purchase,1.0,0 -21061921,"Counter-Strike Source",play,10.7,0 -21061921,"Just Cause 2",purchase,1.0,0 -21061921,"Just Cause 2",play,10.7,0 -21061921,"DC Universe Online",purchase,1.0,0 -21061921,"DC Universe Online",play,10.7,0 -21061921,"Heroes & Generals",purchase,1.0,0 -21061921,"Heroes & Generals",play,9.1,0 -21061921,"PlanetSide 2",purchase,1.0,0 -21061921,"PlanetSide 2",play,9.0,0 -21061921,"Deus Ex Human Revolution",purchase,1.0,0 -21061921,"Deus Ex Human Revolution",play,8.9,0 -21061921,"Magic The Gathering - Duels of the Planeswalkers",purchase,1.0,0 -21061921,"Magic The Gathering - Duels of the Planeswalkers",play,8.7,0 -21061921,"Darksiders II",purchase,1.0,0 -21061921,"Darksiders II",play,8.3,0 -21061921,"Towns",purchase,1.0,0 -21061921,"Towns",play,8.0,0 -21061921,"Dungeon Defenders",purchase,1.0,0 -21061921,"Dungeon Defenders",play,7.9,0 -21061921,"Gotham City Impostors Free To Play",purchase,1.0,0 -21061921,"Gotham City Impostors Free To Play",play,7.3,0 -21061921,"WAKFU",purchase,1.0,0 -21061921,"WAKFU",play,7.2,0 -21061921,"Super Meat Boy",purchase,1.0,0 -21061921,"Super Meat Boy",play,7.2,0 -21061921,"Batman Arkham Origins",purchase,1.0,0 -21061921,"Batman Arkham Origins",play,6.8,0 -21061921,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -21061921,"Star Wars The Force Unleashed Ultimate Sith Edition",play,6.2,0 -21061921,"Robocraft",purchase,1.0,0 -21061921,"Robocraft",play,5.5,0 -21061921,"Revenge of the Titans",purchase,1.0,0 -21061921,"Revenge of the Titans",play,5.4,0 -21061921,"Dirty Bomb",purchase,1.0,0 -21061921,"Dirty Bomb",play,5.2,0 -21061921,"Hero Siege",purchase,1.0,0 -21061921,"Hero Siege",play,5.2,0 -21061921,"Terraria",purchase,1.0,0 -21061921,"Terraria",play,5.1,0 -21061921,"Max Payne 3",purchase,1.0,0 -21061921,"Max Payne 3",play,4.8,0 -21061921,"Guacamelee! Gold Edition",purchase,1.0,0 -21061921,"Guacamelee! Gold Edition",play,4.8,0 -21061921,"Medieval II Total War",purchase,1.0,0 -21061921,"Medieval II Total War",play,4.7,0 -21061921,"Orcs Must Die! 2",purchase,1.0,0 -21061921,"Orcs Must Die! 2",play,4.4,0 -21061921,"iBomber Defense",purchase,1.0,0 -21061921,"iBomber Defense",play,4.4,0 -21061921,"Anno 2070",purchase,1.0,0 -21061921,"Anno 2070",play,4.3,0 -21061921,"Besiege",purchase,1.0,0 -21061921,"Besiege",play,4.2,0 -21061921,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -21061921,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,4.1,0 -21061921,"Braid",purchase,1.0,0 -21061921,"Braid",play,3.9,0 -21061921,"Thief",purchase,1.0,0 -21061921,"Thief",play,3.8,0 -21061921,"Rock of Ages",purchase,1.0,0 -21061921,"Rock of Ages",play,3.7,0 -21061921,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -21061921,"The Witcher 2 Assassins of Kings Enhanced Edition",play,3.4,0 -21061921,"Counter-Strike Global Offensive",purchase,1.0,0 -21061921,"Counter-Strike Global Offensive",play,2.8,0 -21061921,"Alien Swarm",purchase,1.0,0 -21061921,"Alien Swarm",play,2.7,0 -21061921,"Firefall",purchase,1.0,0 -21061921,"Firefall",play,2.6,0 -21061921,"Tower Wars",purchase,1.0,0 -21061921,"Tower Wars",play,2.5,0 -21061921,"Gish",purchase,1.0,0 -21061921,"Gish",play,2.4,0 -21061921,"Amnesia The Dark Descent",purchase,1.0,0 -21061921,"Amnesia The Dark Descent",play,2.3,0 -21061921,"Metro Last Light",purchase,1.0,0 -21061921,"Metro Last Light",play,2.2,0 -21061921,"The Walking Dead",purchase,1.0,0 -21061921,"The Walking Dead",play,2.1,0 -21061921,"Bastion",purchase,1.0,0 -21061921,"Bastion",play,2.1,0 -21061921,"BioShock",purchase,1.0,0 -21061921,"BioShock",play,1.9,0 -21061921,"Day of Defeat Source",purchase,1.0,0 -21061921,"Day of Defeat Source",play,1.9,0 -21061921,"Chivalry Medieval Warfare",purchase,1.0,0 -21061921,"Chivalry Medieval Warfare",play,1.9,0 -21061921,"Half-Life 2 Deathmatch",purchase,1.0,0 -21061921,"Half-Life 2 Deathmatch",play,1.8,0 -21061921,"Mass Effect",purchase,1.0,0 -21061921,"Mass Effect",play,1.8,0 -21061921,"Risk of Rain",purchase,1.0,0 -21061921,"Risk of Rain",play,1.7,0 -21061921,"Planetary Annihilation",purchase,1.0,0 -21061921,"Planetary Annihilation",play,1.6,0 -21061921,"Super Monday Night Combat",purchase,1.0,0 -21061921,"Super Monday Night Combat",play,1.6,0 -21061921,"Empire Total War",purchase,1.0,0 -21061921,"Empire Total War",play,1.4,0 -21061921,"LUFTRAUSERS",purchase,1.0,0 -21061921,"LUFTRAUSERS",play,1.4,0 -21061921,"Nimbus",purchase,1.0,0 -21061921,"Nimbus",play,1.4,0 -21061921,"Madballs in...Babo Invasion",purchase,1.0,0 -21061921,"Madballs in...Babo Invasion",play,1.2,0 -21061921,"Monaco",purchase,1.0,0 -21061921,"Monaco",play,1.0,0 -21061921,"Zombie Panic Source",purchase,1.0,0 -21061921,"Zombie Panic Source",play,1.0,0 -21061921,"Machinarium",purchase,1.0,0 -21061921,"Machinarium",play,1.0,0 -21061921,"Shank",purchase,1.0,0 -21061921,"Shank",play,1.0,0 -21061921,"Cave Story+",purchase,1.0,0 -21061921,"Cave Story+",play,0.9,0 -21061921,"Portal 2",purchase,1.0,0 -21061921,"Portal 2",play,0.9,0 -21061921,"Alice Madness Returns",purchase,1.0,0 -21061921,"Alice Madness Returns",play,0.9,0 -21061921,"FTL Faster Than Light",purchase,1.0,0 -21061921,"FTL Faster Than Light",play,0.9,0 -21061921,"Neverwinter Nights 2 Platinum",purchase,1.0,0 -21061921,"Neverwinter Nights 2 Platinum",play,0.8,0 -21061921,"BRINK",purchase,1.0,0 -21061921,"BRINK",play,0.8,0 -21061921,"The Vanishing of Ethan Carter",purchase,1.0,0 -21061921,"The Vanishing of Ethan Carter",play,0.8,0 -21061921,"Global Agenda",purchase,1.0,0 -21061921,"Global Agenda",play,0.7,0 -21061921,"Age of Empires III Complete Collection",purchase,1.0,0 -21061921,"Age of Empires III Complete Collection",play,0.7,0 -21061921,"FEZ",purchase,1.0,0 -21061921,"FEZ",play,0.6,0 -21061921,"Day of Defeat",purchase,1.0,0 -21061921,"Day of Defeat",play,0.6,0 -21061921,"Counter-Strike",purchase,1.0,0 -21061921,"Counter-Strike",play,0.6,0 -21061921,"Booster Trooper",purchase,1.0,0 -21061921,"Booster Trooper",play,0.6,0 -21061921,"Dust An Elysian Tail",purchase,1.0,0 -21061921,"Dust An Elysian Tail",play,0.6,0 -21061921,"Minimum",purchase,1.0,0 -21061921,"Minimum",play,0.6,0 -21061921,"Alan Wake",purchase,1.0,0 -21061921,"Alan Wake",play,0.5,0 -21061921,"Shad'O",purchase,1.0,0 -21061921,"Shad'O",play,0.5,0 -21061921,"A.R.E.S.",purchase,1.0,0 -21061921,"A.R.E.S.",play,0.5,0 -21061921,"Unepic",purchase,1.0,0 -21061921,"Unepic",play,0.5,0 -21061921,"Guardians of Graxia",purchase,1.0,0 -21061921,"Guardians of Graxia",play,0.5,0 -21061921,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -21061921,"Unreal Tournament 3 Black Edition",play,0.5,0 -21061921,"Crayon Physics Deluxe",purchase,1.0,0 -21061921,"Crayon Physics Deluxe",play,0.5,0 -21061921,"And Yet It Moves",purchase,1.0,0 -21061921,"And Yet It Moves",play,0.5,0 -21061921,"140",purchase,1.0,0 -21061921,"140",play,0.4,0 -21061921,"Jamestown",purchase,1.0,0 -21061921,"Jamestown",play,0.4,0 -21061921,"Psychonauts",purchase,1.0,0 -21061921,"Psychonauts",play,0.4,0 -21061921,"NightSky",purchase,1.0,0 -21061921,"NightSky",play,0.3,0 -21061921,"Europa Universalis IV",purchase,1.0,0 -21061921,"Europa Universalis IV",play,0.3,0 -21061921,"Shovel Knight",purchase,1.0,0 -21061921,"Shovel Knight",play,0.3,0 -21061921,"Atom Zombie Smasher ",purchase,1.0,0 -21061921,"Atom Zombie Smasher ",play,0.3,0 -21061921,"South Park The Stick of Truth",purchase,1.0,0 -21061921,"South Park The Stick of Truth",play,0.3,0 -21061921,"Serious Sam 3 BFE",purchase,1.0,0 -21061921,"Serious Sam 3 BFE",play,0.3,0 -21061921,"Blackwell Convergence",purchase,1.0,0 -21061921,"Blackwell Convergence",play,0.3,0 -21061921,"Before the Echo",purchase,1.0,0 -21061921,"Before the Echo",play,0.2,0 -21061921,"VVVVVV",purchase,1.0,0 -21061921,"VVVVVV",play,0.2,0 -21061921,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -21061921,"Tom Clancy's Splinter Cell Conviction",play,0.2,0 -21061921,"Ballpoint Universe Infinite",purchase,1.0,0 -21061921,"Ballpoint Universe Infinite",play,0.2,0 -21061921,"The Fall",purchase,1.0,0 -21061921,"The Fall",play,0.2,0 -21061921,"Trine",purchase,1.0,0 -21061921,"Trine",play,0.2,0 -21061921,"Dino D-Day",purchase,1.0,0 -21061921,"Dino D-Day",play,0.2,0 -21061921,"Lone Survivor The Director's Cut",purchase,1.0,0 -21061921,"Lone Survivor The Director's Cut",play,0.2,0 -21061921,"Metro 2033",purchase,1.0,0 -21061921,"Metro 2033",play,0.2,0 -21061921,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -21061921,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,0.1,0 -21061921,"LIMBO",purchase,1.0,0 -21061921,"LIMBO",play,0.1,0 -21061921,"Goat Simulator",purchase,1.0,0 -21061921,"Goat Simulator",play,0.1,0 -21061921,"Doc Clock The Toasted Sandwich of Time",purchase,1.0,0 -21061921,"Doc Clock The Toasted Sandwich of Time",play,0.1,0 -21061921,"Titan Quest",purchase,1.0,0 -21061921,"Titan Quest",play,0.1,0 -21061921,"Scribblenauts Unlimited",purchase,1.0,0 -21061921,"Scribblenauts Unlimited",play,0.1,0 -21061921,"BIT.TRIP RUNNER",purchase,1.0,0 -21061921,"BIT.TRIP RUNNER",play,0.1,0 -21061921,"FortressCraft Evolved",purchase,1.0,0 -21061921,"FortressCraft Evolved",play,0.1,0 -21061921,"Fate of the World",purchase,1.0,0 -21061921,"A Valley Without Wind",purchase,1.0,0 -21061921,"Space Engineers",purchase,1.0,0 -21061921,"Unturned",purchase,1.0,0 -21061921,"Castle Crashers",purchase,1.0,0 -21061921,"Half-Life",purchase,1.0,0 -21061921,"Skyward Collapse",purchase,1.0,0 -21061921,"Ascendant",purchase,1.0,0 -21061921,"Secrets of Rtikon",purchase,1.0,0 -21061921,"Half-Life Source",purchase,1.0,0 -21061921,"Broken Sword 1 - Shadow of the Templars Director's Cut",purchase,1.0,0 -21061921,"Supreme Commander Forged Alliance",purchase,1.0,0 -21061921,"Age of Empires II HD Edition",purchase,1.0,0 -21061921,"Age of Empires II HD The Forgotten",purchase,1.0,0 -21061921,"AI War Fleet Command",purchase,1.0,0 -21061921,"Alan Wake's American Nightmare",purchase,1.0,0 -21061921,"Alien Isolation",purchase,1.0,0 -21061921,"Anomaly Defenders",purchase,1.0,0 -21061921,"Antichamber",purchase,1.0,0 -21061921,"Aquaria",purchase,1.0,0 -21061921,"ArcaniA",purchase,1.0,0 -21061921,"A Valley Without Wind 2",purchase,1.0,0 -21061921,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -21061921,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -21061921,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -21061921,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -21061921,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -21061921,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -21061921,"Batman Arkham City GOTY",purchase,1.0,0 -21061921,"Ben There, Dan That!",purchase,1.0,0 -21061921,"BioShock 2",purchase,1.0,0 -21061921,"Blackwell Unbound",purchase,1.0,0 -21061921,"Blocks That Matter",purchase,1.0,0 -21061921,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -21061921,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -21061921,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -21061921,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -21061921,"Breath of Death VII ",purchase,1.0,0 -21061921,"Bridge Constructor Playground",purchase,1.0,0 -21061921,"Brothers - A Tale of Two Sons",purchase,1.0,0 -21061921,"Brtal Legend",purchase,1.0,0 -21061921,"Cinders",purchase,1.0,0 -21061921,"Cogs",purchase,1.0,0 -21061921,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -21061921,"Company of Heroes",purchase,1.0,0 -21061921,"Company of Heroes (New Steam Version)",purchase,1.0,0 -21061921,"Company of Heroes 2",purchase,1.0,0 -21061921,"Company of Heroes Opposing Fronts",purchase,1.0,0 -21061921,"Company of Heroes Tales of Valor",purchase,1.0,0 -21061921,"Crazy Taxi",purchase,1.0,0 -21061921,"Crusader Kings II",purchase,1.0,0 -21061921,"Cthulhu Saves the World ",purchase,1.0,0 -21061921,"Cubemen",purchase,1.0,0 -21061921,"Cubemen 2",purchase,1.0,0 -21061921,"Darksiders",purchase,1.0,0 -21061921,"Deadlight",purchase,1.0,0 -21061921,"Deadlight Original Soundtrack",purchase,1.0,0 -21061921,"Deathmatch Classic",purchase,1.0,0 -21061921,"Defender's Quest Valley of the Forgotten",purchase,1.0,0 -21061921,"Deponia",purchase,1.0,0 -21061921,"DiRT Showdown",purchase,1.0,0 -21061921,"Don't Starve Together Beta",purchase,1.0,0 -21061921,"Double Dragon Neon",purchase,1.0,0 -21061921,"Eets",purchase,1.0,0 -21061921,"Eets Munchies",purchase,1.0,0 -21061921,"F.E.A.R.",purchase,1.0,0 -21061921,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -21061921,"F.E.A.R. 3",purchase,1.0,0 -21061921,"F.E.A.R. Extraction Point",purchase,1.0,0 -21061921,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -21061921,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -21061921,"Fallout New Vegas Dead Money",purchase,1.0,0 -21061921,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -21061921,"FIST OF AWESOME",purchase,1.0,0 -21061921,"Fist of Jesus",purchase,1.0,0 -21061921,"FortressCraft Evolved Multiplayer",purchase,1.0,0 -21061921,"Fractal Make Blooms Not War",purchase,1.0,0 -21061921,"Frozen Synapse",purchase,1.0,0 -21061921,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -21061921,"Giana Sisters Twisted Dreams",purchase,1.0,0 -21061921,"Gone Home",purchase,1.0,0 -21061921,"Gratuitous Space Battles",purchase,1.0,0 -21061921,"Guacamelee! Super Turbo Championship Edition",purchase,1.0,0 -21061921,"Guardians of Middle-earth",purchase,1.0,0 -21061921,"Gunpoint",purchase,1.0,0 -21061921,"Half-Life 2",purchase,1.0,0 -21061921,"Half-Life 2 Episode One",purchase,1.0,0 -21061921,"Half-Life 2 Episode Two",purchase,1.0,0 -21061921,"Half-Life 2 Lost Coast",purchase,1.0,0 -21061921,"Half-Life Blue Shift",purchase,1.0,0 -21061921,"Half-Life Opposing Force",purchase,1.0,0 -21061921,"Half-Life Deathmatch Source",purchase,1.0,0 -21061921,"Hammerfight",purchase,1.0,0 -21061921,"Hammerwatch",purchase,1.0,0 -21061921,"Hector Ep 1",purchase,1.0,0 -21061921,"Hector Ep 2",purchase,1.0,0 -21061921,"Hector Ep 3",purchase,1.0,0 -21061921,"Iron Fisticle",purchase,1.0,0 -21061921,"KAMI",purchase,1.0,0 -21061921,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -21061921,"King Arthur - The Role-playing Wargame",purchase,1.0,0 -21061921,"Lilly Looking Through",purchase,1.0,0 -21061921,"Long Live The Queen",purchase,1.0,0 -21061921,"Mark of the Ninja",purchase,1.0,0 -21061921,"McPixel",purchase,1.0,0 -21061921,"Mercenary Kings",purchase,1.0,0 -21061921,"METAL SLUG 3",purchase,1.0,0 -21061921,"Mortal Kombat Kollection",purchase,1.0,0 -21061921,"Ms. Splosion Man",purchase,1.0,0 -21061921,"NiGHTS into Dreams...",purchase,1.0,0 -21061921,"On the Rain-Slick Precipice of Darkness, Episode One",purchase,1.0,0 -21061921,"On the Rain-Slick Precipice of Darkness, Episode Two",purchase,1.0,0 -21061921,"Organ Trail Director's Cut",purchase,1.0,0 -21061921,"Osmos",purchase,1.0,0 -21061921,"Painkiller Hell & Damnation",purchase,1.0,0 -21061921,"Papers, Please",purchase,1.0,0 -21061921,"Patch testing for Chivalry",purchase,1.0,0 -21061921,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -21061921,"Poker Night at the Inventory",purchase,1.0,0 -21061921,"Portal",purchase,1.0,0 -21061921,"Prison Architect",purchase,1.0,0 -21061921,"Psychonauts Demo",purchase,1.0,0 -21061921,"Puzzle Agent",purchase,1.0,0 -21061921,"Puzzle Agent 2",purchase,1.0,0 -21061921,"Reaper - Tale of a Pale Swordsman",purchase,1.0,0 -21061921,"Ricochet",purchase,1.0,0 -21061921,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -21061921,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -21061921,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -21061921,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -21061921,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -21061921,"Sanctum 2",purchase,1.0,0 -21061921,"Scoregasm",purchase,1.0,0 -21061921,"SEGA Bass Fishing",purchase,1.0,0 -21061921,"Shadowgrounds",purchase,1.0,0 -21061921,"Shadowgrounds Survivor",purchase,1.0,0 -21061921,"Shank 2",purchase,1.0,0 -21061921,"Shattered Haven",purchase,1.0,0 -21061921,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -21061921,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -21061921,"Small World 2",purchase,1.0,0 -21061921,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -21061921,"Sonic Adventure DX",purchase,1.0,0 -21061921,"Space Channel 5 Part 2",purchase,1.0,0 -21061921,"SpellForce 2 - Faith in Destiny",purchase,1.0,0 -21061921,"Star Wars The Force Unleashed II",purchase,1.0,0 -21061921,"Stealth Bastard Deluxe",purchase,1.0,0 -21061921,"SteamWorld Dig",purchase,1.0,0 -21061921,"Steel Storm Burning Retribution",purchase,1.0,0 -21061921,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -21061921,"Super Comboman",purchase,1.0,0 -21061921,"Supreme Commander",purchase,1.0,0 -21061921,"Surgeon Simulator",purchase,1.0,0 -21061921,"Team Fortress Classic",purchase,1.0,0 -21061921,"The Baconing",purchase,1.0,0 -21061921,"The Blackwell Legacy",purchase,1.0,0 -21061921,"The Cat Lady",purchase,1.0,0 -21061921,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -21061921,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -21061921,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -21061921,"The Guild II",purchase,1.0,0 -21061921,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -21061921,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -21061921,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -21061921,"The Lord of the Rings War in the North",purchase,1.0,0 -21061921,"The Ship",purchase,1.0,0 -21061921,"The Ship Single Player",purchase,1.0,0 -21061921,"The Ship Tutorial",purchase,1.0,0 -21061921,"The Swapper",purchase,1.0,0 -21061921,"The Vanishing of Ethan Carter Redux",purchase,1.0,0 -21061921,"The Walking Dead Season Two",purchase,1.0,0 -21061921,"The Wolf Among Us",purchase,1.0,0 -21061921,"The Yawhg",purchase,1.0,0 -21061921,"Thomas Was Alone",purchase,1.0,0 -21061921,"Tidalis",purchase,1.0,0 -21061921,"Time Gentlemen, Please!",purchase,1.0,0 -21061921,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -21061921,"Total War SHOGUN 2",purchase,1.0,0 -21061921,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -21061921,"Trine 2",purchase,1.0,0 -21061921,"Valdis Story Abyssal City",purchase,1.0,0 -21061921,"Waking Mars",purchase,1.0,0 -21061921,"Wallace & Gromit Ep 1 Fright of the Bumblebees",purchase,1.0,0 -21061921,"Wallace & Gromit Ep 2 The Last Resort",purchase,1.0,0 -21061921,"Wallace & Gromit Ep 3 Muzzled!",purchase,1.0,0 -21061921,"Wallace & Gromit Ep 4 The Bogey Man",purchase,1.0,0 -21061921,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -21061921,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -21061921,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -21061921,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -21061921,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -21061921,"XCOM Enemy Within",purchase,1.0,0 -307846753,"SimpleRockets",purchase,1.0,0 -307846753,"SimpleRockets",play,25.0,0 -168667709,"Dota 2",purchase,1.0,0 -168667709,"Dota 2",play,4.2,0 -255622304,"Grand Theft Auto V",purchase,1.0,0 -255622304,"Grand Theft Auto V",play,2.8,0 -255622304,"HIS (Heroes In the Sky)",purchase,1.0,0 -255622304,"HIS (Heroes In the Sky)",play,0.3,0 -255622304,"Heroes & Generals",purchase,1.0,0 -255622304,"APB Reloaded",purchase,1.0,0 -255622304,"HIT",purchase,1.0,0 -255622304,"theHunter",purchase,1.0,0 -255622304,"Unturned",purchase,1.0,0 -215911849,"Dota 2",purchase,1.0,0 -215911849,"Dota 2",play,108.0,0 -215911849,"Team Fortress 2",purchase,1.0,0 -215911849,"Team Fortress 2",play,6.7,0 -134930004,"Team Fortress 2",purchase,1.0,0 -134930004,"Team Fortress 2",play,1.3,0 -242497886,"Warface",purchase,1.0,0 -242497886,"Warface",play,5.6,0 -242497886,"SMITE",purchase,1.0,0 -97597061,"Team Fortress 2",purchase,1.0,0 -97597061,"Team Fortress 2",play,6.8,0 -180835471,"Team Fortress 2",purchase,1.0,0 -180835471,"Team Fortress 2",play,0.3,0 -273827660,"Counter-Strike Global Offensive",purchase,1.0,0 -273827660,"Counter-Strike Global Offensive",play,64.0,0 -273827660,"Unturned",purchase,1.0,0 -130369238,"Saints Row The Third",purchase,1.0,0 -130369238,"Saints Row The Third",play,303.0,0 -130369238,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -130369238,"Call of Duty Advanced Warfare - Multiplayer",play,144.0,0 -130369238,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -130369238,"Resident Evil 6 / Biohazard 6",play,73.0,0 -130369238,"Battlefield Bad Company 2",purchase,1.0,0 -130369238,"Battlefield Bad Company 2",play,54.0,0 -130369238,"PAYDAY The Heist",purchase,1.0,0 -130369238,"PAYDAY The Heist",play,40.0,0 -130369238,"Tom Clancy's Ghost Recon Future Soldier",purchase,1.0,0 -130369238,"Tom Clancy's Ghost Recon Future Soldier",play,30.0,0 -130369238,"Counter-Strike Global Offensive",purchase,1.0,0 -130369238,"Counter-Strike Global Offensive",play,23.0,0 -130369238,"Loadout",purchase,1.0,0 -130369238,"Loadout",play,22.0,0 -130369238,"Call of Duty Advanced Warfare",purchase,1.0,0 -130369238,"Call of Duty Advanced Warfare",play,8.6,0 -130369238,"Dirty Bomb",purchase,1.0,0 -130369238,"Dirty Bomb",play,5.4,0 -130369238,"Team Fortress 2",purchase,1.0,0 -130369238,"Team Fortress 2",play,3.9,0 -130369238,"Saints Row IV Inauguration Station",purchase,1.0,0 -130369238,"Saints Row IV Inauguration Station",play,0.5,0 -130369238,"Heroes & Generals",purchase,1.0,0 -130369238,"Heroes & Generals",play,0.5,0 -130369238,"War Thunder",purchase,1.0,0 -130369238,"War Thunder",play,0.1,0 -130369238,"America's Army Proving Grounds",purchase,1.0,0 -130369238,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -130369238,"PAYDAY The Heist Game Soundtrack",purchase,1.0,0 -215879414,"Dota 2",purchase,1.0,0 -215879414,"Dota 2",play,1.8,0 -135505928,"Dota 2",purchase,1.0,0 -135505928,"Dota 2",play,0.9,0 -167302978,"Counter-Strike Global Offensive",purchase,1.0,0 -167302978,"Counter-Strike Global Offensive",play,15.9,0 -167302978,"Fallout 4",purchase,1.0,0 -167302978,"Fallout 4",play,12.3,0 -167302978,"Rocket League",purchase,1.0,0 -167302978,"Rocket League",play,9.4,0 -41843900,"Counter-Strike Source",purchase,1.0,0 -41843900,"Counter-Strike Source",play,1.5,0 -41843900,"Day of Defeat Source",purchase,1.0,0 -41843900,"Half-Life 2 Deathmatch",purchase,1.0,0 -41843900,"Half-Life 2 Lost Coast",purchase,1.0,0 -52811164,"Counter-Strike Source",purchase,1.0,0 -52811164,"Counter-Strike Source",play,0.2,0 -52811164,"Half-Life 2 Deathmatch",purchase,1.0,0 -52811164,"Day of Defeat Source",purchase,1.0,0 -52811164,"Half-Life 2 Lost Coast",purchase,1.0,0 -160029841,"Left 4 Dead 2",purchase,1.0,0 -160029841,"Left 4 Dead 2",play,3.5,0 -278613910,"Grand Theft Auto V",purchase,1.0,0 -278613910,"Grand Theft Auto V",play,58.0,0 -278613910,"H1Z1",purchase,1.0,0 -278613910,"H1Z1",play,3.2,0 -278613910,"Heroes & Generals",purchase,1.0,0 -278613910,"H1Z1 Test Server",purchase,1.0,0 -134448504,"Dota 2",purchase,1.0,0 -134448504,"Dota 2",play,6.9,0 -144024725,"Dota 2",purchase,1.0,0 -144024725,"Dota 2",play,206.0,0 -144024725,"Robocraft",purchase,1.0,0 -144024725,"FreeStyle2 Street Basketball",purchase,1.0,0 -144024725,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -144024725,"Warframe",purchase,1.0,0 -144024725,"War Thunder",purchase,1.0,0 -89752173,"Call of Duty Modern Warfare 2",purchase,1.0,0 -89752173,"Call of Duty Modern Warfare 2",play,13.7,0 -89752173,"Call of Duty Black Ops",purchase,1.0,0 -89752173,"Call of Duty Black Ops",play,2.6,0 -89752173,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -89752173,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.2,0 -89752173,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -240401181,"Tap Tap Infinity",purchase,1.0,0 -240401181,"Tap Tap Infinity",play,11.3,0 -240401181,"Mitos.is The Game",purchase,1.0,0 -240401181,"Mitos.is The Game",play,5.4,0 -165742641,"Football Manager 2014",purchase,1.0,0 -165742641,"Football Manager 2014",play,1767.0,0 -165742641,"Football Manager 2013",purchase,1.0,0 -165742641,"Football Manager 2013",play,6.2,0 -251196267,"ARK Survival Evolved",purchase,1.0,0 -251196267,"ARK Survival Evolved",play,1.0,0 -190310322,"Unturned",purchase,1.0,0 -190310322,"Unturned",play,4.3,0 -88463863,"Team Fortress 2",purchase,1.0,0 -88463863,"Team Fortress 2",play,3.9,0 -18607065,"Half-Life",purchase,1.0,0 -18607065,"Team Fortress Classic",purchase,1.0,0 -209006754,"Master Levels for DOOM II",purchase,1.0,0 -209006754,"Master Levels for DOOM II",play,7.6,0 -209006754,"DOOM II Hell on Earth",purchase,1.0,0 -209006754,"DOOM II Hell on Earth",play,6.8,0 -209006754,"The Ultimate DOOM",purchase,1.0,0 -209006754,"The Ultimate DOOM",play,3.1,0 -209006754,"Final DOOM",purchase,1.0,0 -209006754,"Final DOOM",play,1.5,0 -209006754,"DOOM 3",purchase,1.0,0 -209006754,"DOOM 3",play,0.2,0 -106592046,"Dota 2",purchase,1.0,0 -106592046,"Dota 2",play,1069.0,0 -106592046,"Grand Theft Auto IV",purchase,1.0,0 -106592046,"Grand Theft Auto IV",play,35.0,0 -106592046,"Team Fortress 2",purchase,1.0,0 -106592046,"Team Fortress 2",play,1.8,0 -106592046,"Serious Sam HD The Second Encounter",purchase,1.0,0 -106592046,"Serious Sam HD The Second Encounter",play,0.6,0 -106592046,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -106592046,"Grand Theft Auto Episodes from Liberty City",play,0.6,0 -106592046,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -106592046,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.3,0 -106592046,"APB Reloaded",purchase,1.0,0 -106592046,"Call of Duty Modern Warfare 2",purchase,1.0,0 -300877381,"HIS (Heroes In the Sky)",purchase,1.0,0 -300877381,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -189596415,"Dota 2",purchase,1.0,0 -189596415,"Dota 2",play,0.3,0 -134452836,"Tomb Raider",purchase,1.0,0 -134452836,"Tomb Raider",play,12.4,0 -94526239,"sZone-Online",purchase,1.0,0 -94526239,"sZone-Online",play,1.3,0 -94526239,"Fallen Earth",purchase,1.0,0 -94526239,"Fallen Earth",play,0.6,0 -206326595,"Dota 2",purchase,1.0,0 -206326595,"Dota 2",play,38.0,0 -171594027,"Dota 2",purchase,1.0,0 -171594027,"Dota 2",play,65.0,0 -280976178,"Dota 2",purchase,1.0,0 -280976178,"Dota 2",play,0.7,0 -86055705,"Terraria",purchase,1.0,0 -86055705,"Terraria",play,243.0,0 -86055705,"Garry's Mod",purchase,1.0,0 -86055705,"Garry's Mod",play,220.0,0 -86055705,"Team Fortress 2",purchase,1.0,0 -86055705,"Team Fortress 2",play,162.0,0 -86055705,"Counter-Strike Global Offensive",purchase,1.0,0 -86055705,"Counter-Strike Global Offensive",play,114.0,0 -86055705,"Sid Meier's Civilization V",purchase,1.0,0 -86055705,"Sid Meier's Civilization V",play,98.0,0 -86055705,"Fallout 4",purchase,1.0,0 -86055705,"Fallout 4",play,58.0,0 -86055705,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -86055705,"Call of Duty 4 Modern Warfare",play,49.0,0 -86055705,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -86055705,"METAL GEAR SOLID V THE PHANTOM PAIN",play,46.0,0 -86055705,"The Binding of Isaac Rebirth",purchase,1.0,0 -86055705,"The Binding of Isaac Rebirth",play,41.0,0 -86055705,"Portal 2",purchase,1.0,0 -86055705,"Portal 2",play,39.0,0 -86055705,"GameMaker Studio",purchase,1.0,0 -86055705,"GameMaker Studio",play,36.0,0 -86055705,"PAYDAY 2",purchase,1.0,0 -86055705,"PAYDAY 2",play,36.0,0 -86055705,"Unturned",purchase,1.0,0 -86055705,"Unturned",play,36.0,0 -86055705,"Rust",purchase,1.0,0 -86055705,"Rust",play,34.0,0 -86055705,"Starbound",purchase,1.0,0 -86055705,"Starbound",play,22.0,0 -86055705,"Middle-earth Shadow of Mordor",purchase,1.0,0 -86055705,"Middle-earth Shadow of Mordor",play,18.5,0 -86055705,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -86055705,"Tom Clancy's Ghost Recon Phantoms - EU",play,17.9,0 -86055705,"Tribes Ascend",purchase,1.0,0 -86055705,"Tribes Ascend",play,17.5,0 -86055705,"Hitman Absolution",purchase,1.0,0 -86055705,"Hitman Absolution",play,17.0,0 -86055705,"This War of Mine",purchase,1.0,0 -86055705,"This War of Mine",play,16.1,0 -86055705,"How to Survive",purchase,1.0,0 -86055705,"How to Survive",play,16.0,0 -86055705,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -86055705,"Red Faction Guerrilla Steam Edition",play,15.6,0 -86055705,"Magicka",purchase,1.0,0 -86055705,"Magicka",play,15.1,0 -86055705,"Fallout 3",purchase,1.0,0 -86055705,"Fallout 3",play,15.1,0 -86055705,"Max Payne 3",purchase,1.0,0 -86055705,"Max Payne 3",play,15.0,0 -86055705,"Heroes & Generals",purchase,1.0,0 -86055705,"Heroes & Generals",play,14.5,0 -86055705,"Dying Light",purchase,1.0,0 -86055705,"Dying Light",play,14.0,0 -86055705,"Borderlands The Pre-Sequel",purchase,1.0,0 -86055705,"Borderlands The Pre-Sequel",play,13.8,0 -86055705,"Magicka 2",purchase,1.0,0 -86055705,"Magicka 2",play,13.6,0 -86055705,"Grand Theft Auto IV",purchase,1.0,0 -86055705,"Grand Theft Auto IV",play,13.2,0 -86055705,"Kerbal Space Program",purchase,1.0,0 -86055705,"Kerbal Space Program",play,12.9,0 -86055705,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -86055705,"Just Cause 2 Multiplayer Mod",play,12.8,0 -86055705,"Dead Island Riptide",purchase,1.0,0 -86055705,"Dead Island Riptide",play,12.7,0 -86055705,"Left 4 Dead 2",purchase,1.0,0 -86055705,"Left 4 Dead 2",play,12.7,0 -86055705,"Far Cry 3",purchase,1.0,0 -86055705,"Far Cry 3",play,12.7,0 -86055705,"War Thunder",purchase,1.0,0 -86055705,"War Thunder",play,12.5,0 -86055705,"Arma 2 Operation Arrowhead",purchase,1.0,0 -86055705,"Arma 2 Operation Arrowhead",play,12.5,0 -86055705,"Loadout",purchase,1.0,0 -86055705,"Loadout",play,12.5,0 -86055705,"Counter-Strike Source",purchase,1.0,0 -86055705,"Counter-Strike Source",play,11.3,0 -86055705,"Deus Ex Human Revolution",purchase,1.0,0 -86055705,"Deus Ex Human Revolution",play,10.8,0 -86055705,"Ace of Spades",purchase,1.0,0 -86055705,"Ace of Spades",play,10.3,0 -86055705,"Warframe",purchase,1.0,0 -86055705,"Warframe",play,10.3,0 -86055705,"Borderlands 2",purchase,1.0,0 -86055705,"Borderlands 2",play,10.2,0 -86055705,"Insurgency",purchase,1.0,0 -86055705,"Insurgency",play,10.1,0 -86055705,"Age of Empires II HD Edition",purchase,1.0,0 -86055705,"Age of Empires II HD Edition",play,9.8,0 -86055705,"Planetary Annihilation",purchase,1.0,0 -86055705,"Planetary Annihilation",play,9.2,0 -86055705,"Sniper Elite V2",purchase,1.0,0 -86055705,"Sniper Elite V2",play,8.9,0 -86055705,"Edge of Space",purchase,1.0,0 -86055705,"Edge of Space",play,8.8,0 -86055705,"Game Dev Tycoon",purchase,1.0,0 -86055705,"Game Dev Tycoon",play,8.6,0 -86055705,"Cities Skylines",purchase,1.0,0 -86055705,"Cities Skylines",play,8.5,0 -86055705,"No More Room in Hell",purchase,1.0,0 -86055705,"No More Room in Hell",play,8.4,0 -86055705,"The Escapists",purchase,1.0,0 -86055705,"The Escapists",play,8.3,0 -86055705,"Tactical Intervention",purchase,1.0,0 -86055705,"Tactical Intervention",play,8.3,0 -86055705,"Battlefield Bad Company 2",purchase,1.0,0 -86055705,"Battlefield Bad Company 2",play,7.8,0 -86055705,"The Elder Scrolls V Skyrim",purchase,1.0,0 -86055705,"The Elder Scrolls V Skyrim",play,7.7,0 -86055705,"PlanetSide 2",purchase,1.0,0 -86055705,"PlanetSide 2",play,7.7,0 -86055705,"Lambda Wars Beta",purchase,1.0,0 -86055705,"Lambda Wars Beta",play,6.9,0 -86055705,"Sword of the Stars The Pit",purchase,1.0,0 -86055705,"Sword of the Stars The Pit",play,6.8,0 -86055705,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -86055705,"Rising Storm/Red Orchestra 2 Multiplayer",play,6.7,0 -86055705,"Antichamber",purchase,1.0,0 -86055705,"Antichamber",play,6.7,0 -86055705,"Castle Crashers",purchase,1.0,0 -86055705,"Castle Crashers",play,6.7,0 -86055705,"Warface",purchase,1.0,0 -86055705,"Warface",play,6.6,0 -86055705,"Dishonored",purchase,1.0,0 -86055705,"Dishonored",play,6.4,0 -86055705,"Sheltered",purchase,1.0,0 -86055705,"Sheltered",play,6.1,0 -86055705,"Don't Starve",purchase,1.0,0 -86055705,"Don't Starve",play,5.9,0 -86055705,"Plague Inc Evolved",purchase,1.0,0 -86055705,"Plague Inc Evolved",play,5.8,0 -86055705,"Gang Beasts",purchase,1.0,0 -86055705,"Gang Beasts",play,5.7,0 -86055705,"Interplanetary",purchase,1.0,0 -86055705,"Interplanetary",play,5.7,0 -86055705,"BioShock Infinite",purchase,1.0,0 -86055705,"BioShock Infinite",play,5.5,0 -86055705,"FTL Faster Than Light",purchase,1.0,0 -86055705,"FTL Faster Than Light",play,5.2,0 -86055705,"Dirty Bomb",purchase,1.0,0 -86055705,"Dirty Bomb",play,5.1,0 -86055705,"Space Pirates and Zombies",purchase,1.0,0 -86055705,"Space Pirates and Zombies",play,5.1,0 -86055705,"Chivalry Medieval Warfare",purchase,1.0,0 -86055705,"Chivalry Medieval Warfare",play,5.1,0 -86055705,"Guns of Icarus Online",purchase,1.0,0 -86055705,"Guns of Icarus Online",play,4.3,0 -86055705,"Half-Life 2",purchase,1.0,0 -86055705,"Half-Life 2",play,4.2,0 -86055705,"Hammerwatch",purchase,1.0,0 -86055705,"Hammerwatch",play,4.2,0 -86055705,"Surgeon Simulator",purchase,1.0,0 -86055705,"Surgeon Simulator",play,4.1,0 -86055705,"Natural Selection 2",purchase,1.0,0 -86055705,"Natural Selection 2",play,3.5,0 -86055705,"Spacebase DF-9",purchase,1.0,0 -86055705,"Spacebase DF-9",play,3.4,0 -86055705,"Star Conflict",purchase,1.0,0 -86055705,"Star Conflict",play,3.3,0 -86055705,"Defiance",purchase,1.0,0 -86055705,"Defiance",play,3.2,0 -86055705,"NEO Scavenger",purchase,1.0,0 -86055705,"NEO Scavenger",play,3.1,0 -86055705,"Synergy",purchase,1.0,0 -86055705,"Synergy",play,2.9,0 -86055705,"Space Engineers",purchase,1.0,0 -86055705,"Space Engineers",play,2.9,0 -86055705,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -86055705,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,2.7,0 -86055705,"Of Guards And Thieves",purchase,1.0,0 -86055705,"Of Guards And Thieves",play,2.3,0 -86055705,"Hero Siege",purchase,1.0,0 -86055705,"Hero Siege",play,2.1,0 -86055705,"Crysis 2 Maximum Edition",purchase,1.0,0 -86055705,"Crysis 2 Maximum Edition",play,2.1,0 -86055705,"Nosgoth",purchase,1.0,0 -86055705,"Nosgoth",play,2.0,0 -86055705,"King Arthur's Gold",purchase,1.0,0 -86055705,"King Arthur's Gold",play,2.0,0 -86055705,"Reus",purchase,1.0,0 -86055705,"Reus",play,1.9,0 -86055705,"Stealth Bastard Deluxe",purchase,1.0,0 -86055705,"Stealth Bastard Deluxe",play,1.9,0 -86055705,"Toribash",purchase,1.0,0 -86055705,"Toribash",play,1.9,0 -86055705,"Besiege",purchase,1.0,0 -86055705,"Besiege",play,1.8,0 -86055705,"Signal Ops",purchase,1.0,0 -86055705,"Signal Ops",play,1.8,0 -86055705,"Block N Load",purchase,1.0,0 -86055705,"Block N Load",play,1.8,0 -86055705,"Half-Life",purchase,1.0,0 -86055705,"Half-Life",play,1.8,0 -86055705,"Alien Swarm",purchase,1.0,0 -86055705,"Alien Swarm",play,1.8,0 -86055705,"Worms Clan Wars",purchase,1.0,0 -86055705,"Worms Clan Wars",play,1.7,0 -86055705,"Survarium",purchase,1.0,0 -86055705,"Survarium",play,1.6,0 -86055705,"Fistful of Frags",purchase,1.0,0 -86055705,"Fistful of Frags",play,1.6,0 -86055705,"Teleglitch Die More Edition",purchase,1.0,0 -86055705,"Teleglitch Die More Edition",play,1.4,0 -86055705,"How To Survive Third Person",purchase,1.0,0 -86055705,"How To Survive Third Person",play,1.4,0 -86055705,"Arma 2 DayZ Mod",purchase,1.0,0 -86055705,"Arma 2 DayZ Mod",play,1.3,0 -86055705,"Anno 2070",purchase,1.0,0 -86055705,"Anno 2070",play,1.3,0 -86055705,"Towns",purchase,1.0,0 -86055705,"Towns",play,1.1,0 -86055705,"Metro Last Light",purchase,1.0,0 -86055705,"Metro Last Light",play,1.1,0 -86055705,"StarForge",purchase,1.0,0 -86055705,"StarForge",play,1.1,0 -86055705,"theHunter",purchase,1.0,0 -86055705,"theHunter",play,1.0,0 -86055705,"Monaco",purchase,1.0,0 -86055705,"Monaco",play,1.0,0 -86055705,"Hazard Ops",purchase,1.0,0 -86055705,"Hazard Ops",play,1.0,0 -86055705,"Just Cause 2",purchase,1.0,0 -86055705,"Just Cause 2",play,0.9,0 -86055705,"Dizzel",purchase,1.0,0 -86055705,"Dizzel",play,0.8,0 -86055705,"The Expendabros",purchase,1.0,0 -86055705,"The Expendabros",play,0.8,0 -86055705,"Crysis",purchase,1.0,0 -86055705,"Crysis",play,0.8,0 -86055705,"CRYPTARK",purchase,1.0,0 -86055705,"CRYPTARK",play,0.7,0 -86055705,"Krater",purchase,1.0,0 -86055705,"Krater",play,0.7,0 -86055705,"Crysis Warhead",purchase,1.0,0 -86055705,"Crysis Warhead",play,0.6,0 -86055705,"Velvet Sundown",purchase,1.0,0 -86055705,"Velvet Sundown",play,0.6,0 -86055705,"World of Guns Gun Disassembly",purchase,1.0,0 -86055705,"World of Guns Gun Disassembly",play,0.6,0 -86055705,"Robocraft",purchase,1.0,0 -86055705,"Robocraft",play,0.6,0 -86055705,"Loadout Campaign Beta",purchase,1.0,0 -86055705,"Loadout Campaign Beta",play,0.6,0 -86055705,"Arma 2",purchase,1.0,0 -86055705,"Arma 2",play,0.6,0 -86055705,"Shatter",purchase,1.0,0 -86055705,"Shatter",play,0.5,0 -86055705,"Sanctum",purchase,1.0,0 -86055705,"Sanctum",play,0.5,0 -86055705,"Tabletop Simulator",purchase,1.0,0 -86055705,"Tabletop Simulator",play,0.5,0 -86055705,"Aperture Tag The Paint Gun Testing Initiative",purchase,1.0,0 -86055705,"Aperture Tag The Paint Gun Testing Initiative",play,0.5,0 -86055705,"Dungeon of the Endless",purchase,1.0,0 -86055705,"Dungeon of the Endless",play,0.4,0 -86055705,"Particulars",purchase,1.0,0 -86055705,"Particulars",play,0.4,0 -86055705,"Deadlight",purchase,1.0,0 -86055705,"Deadlight",play,0.4,0 -86055705,"Dota 2",purchase,1.0,0 -86055705,"Dota 2",play,0.3,0 -86055705,"HAWKEN",purchase,1.0,0 -86055705,"HAWKEN",play,0.3,0 -86055705,"Operation Flashpoint Red River",purchase,1.0,0 -86055705,"Operation Flashpoint Red River",play,0.3,0 -86055705,"SteamWorld Dig",purchase,1.0,0 -86055705,"SteamWorld Dig",play,0.3,0 -86055705,"Gunpoint",purchase,1.0,0 -86055705,"Gunpoint",play,0.3,0 -86055705,"Crysis Wars",purchase,1.0,0 -86055705,"Crysis Wars",play,0.3,0 -86055705,"0RBITALIS",purchase,1.0,0 -86055705,"0RBITALIS",play,0.3,0 -86055705,"Darkest Hour Europe '44-'45",purchase,1.0,0 -86055705,"Darkest Hour Europe '44-'45",play,0.3,0 -86055705,"Pixel Piracy",purchase,1.0,0 -86055705,"Pixel Piracy",play,0.2,0 -86055705,"Hack 'n' Slash",purchase,1.0,0 -86055705,"Hack 'n' Slash",play,0.2,0 -86055705,"Steam Marines",purchase,1.0,0 -86055705,"Steam Marines",play,0.2,0 -86055705,"ROCKETSROCKETSROCKETS",purchase,1.0,0 -86055705,"ROCKETSROCKETSROCKETS",play,0.2,0 -86055705,"Awesomenauts",purchase,1.0,0 -86055705,"Awesomenauts",play,0.1,0 -86055705,"Always Sometimes Monsters",purchase,1.0,0 -86055705,"Always Sometimes Monsters",play,0.1,0 -86055705,"Element4l",purchase,1.0,0 -86055705,"Element4l",play,0.1,0 -86055705,"Closure",purchase,1.0,0 -86055705,"Closure",play,0.1,0 -86055705,"Counter-Strike Condition Zero",purchase,1.0,0 -86055705,"The Shopkeeper",purchase,1.0,0 -86055705,"Double Action Boogaloo",purchase,1.0,0 -86055705,"Fallen Earth",purchase,1.0,0 -86055705,"Destination Sol",purchase,1.0,0 -86055705,"Floating Point",purchase,1.0,0 -86055705,"Lone Survivor The Director's Cut",purchase,1.0,0 -86055705,"Arma 2 Private Military Company",purchase,1.0,0 -86055705,"10 Second Ninja",purchase,1.0,0 -86055705,"Anachronox",purchase,1.0,0 -86055705,"AR-K",purchase,1.0,0 -86055705,"Arma 2 British Armed Forces",purchase,1.0,0 -86055705,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -86055705,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -86055705,"Battlestations Midway",purchase,1.0,0 -86055705,"Blast Em!",purchase,1.0,0 -86055705,"Blast Em! Source Code",purchase,1.0,0 -86055705,"CastleMiner Z",purchase,1.0,0 -86055705,"Cave Story+",purchase,1.0,0 -86055705,"Concursion",purchase,1.0,0 -86055705,"Counter-Strike",purchase,1.0,0 -86055705,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -86055705,"Cthulhu Saves the World ",purchase,1.0,0 -86055705,"Daikatana",purchase,1.0,0 -86055705,"Dead Island Epidemic",purchase,1.0,0 -86055705,"Deadlight Original Soundtrack",purchase,1.0,0 -86055705,"Deus Ex Invisible War",purchase,1.0,0 -86055705,"Deus Ex The Fall",purchase,1.0,0 -86055705,"Don't Starve Reign of Giants",purchase,1.0,0 -86055705,"Don't Starve Together Beta",purchase,1.0,0 -86055705,"Dustforce",purchase,1.0,0 -86055705,"Epigenesis",purchase,1.0,0 -86055705,"Faerie Solitaire",purchase,1.0,0 -86055705,"Full Mojo Rampage",purchase,1.0,0 -86055705,"Grand Theft Auto San Andreas",purchase,1.0,0 -86055705,"Grand Theft Auto San Andreas",purchase,1.0,0 -86055705,"Guacamelee! Gold Edition",purchase,1.0,0 -86055705,"Half-Life 2 Deathmatch",purchase,1.0,0 -86055705,"Half-Life 2 Episode One",purchase,1.0,0 -86055705,"Half-Life 2 Episode Two",purchase,1.0,0 -86055705,"Half-Life 2 Lost Coast",purchase,1.0,0 -86055705,"Half-Life Blue Shift",purchase,1.0,0 -86055705,"Half-Life Opposing Force",purchase,1.0,0 -86055705,"Half-Life Source",purchase,1.0,0 -86055705,"Half-Life Deathmatch Source",purchase,1.0,0 -86055705,"Hitman 2 Silent Assassin",purchase,1.0,0 -86055705,"Hitman Blood Money",purchase,1.0,0 -86055705,"Hitman Codename 47",purchase,1.0,0 -86055705,"Hitman Contracts",purchase,1.0,0 -86055705,"Hotline Miami 2 Wrong Number Digital Comic",purchase,1.0,0 -86055705,"Iron Grip Warlord",purchase,1.0,0 -86055705,"Jamestown",purchase,1.0,0 -86055705,"Just Cause",purchase,1.0,0 -86055705,"LIMBO",purchase,1.0,0 -86055705,"Magicka Final Frontier",purchase,1.0,0 -86055705,"Magicka Frozen Lake",purchase,1.0,0 -86055705,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -86055705,"Magicka Nippon",purchase,1.0,0 -86055705,"Magicka Party Robes",purchase,1.0,0 -86055705,"Magicka The Watchtower",purchase,1.0,0 -86055705,"Magicka Vietnam",purchase,1.0,0 -86055705,"Magicka Wizard's Survival Kit",purchase,1.0,0 -86055705,"Magicka Wizard Wars",purchase,1.0,0 -86055705,"Mare Nostrum",purchase,1.0,0 -86055705,"Mays Mysteries The Secret of Dragonville",purchase,1.0,0 -86055705,"Mini Ninjas",purchase,1.0,0 -86055705,"Montague's Mount",purchase,1.0,0 -86055705,"Murder Miners",purchase,1.0,0 -86055705,"Mutant Mudds Deluxe",purchase,1.0,0 -86055705,"Nihilumbra",purchase,1.0,0 -86055705,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -86055705,"Orbital Gear",purchase,1.0,0 -86055705,"Over 9000 Zombies!",purchase,1.0,0 -86055705,"Overlord",purchase,1.0,0 -86055705,"Overlord Raising Hell",purchase,1.0,0 -86055705,"Patch testing for Chivalry",purchase,1.0,0 -86055705,"Puzzle Bots",purchase,1.0,0 -86055705,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -86055705,"Richard & Alice",purchase,1.0,0 -86055705,"Rise of the Argonauts",purchase,1.0,0 -86055705,"Sanctum 2",purchase,1.0,0 -86055705,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -86055705,"Sniper Elite",purchase,1.0,0 -86055705,"Speedball 2 HD",purchase,1.0,0 -86055705,"Spy Chameleon - RGB Agent",purchase,1.0,0 -86055705,"Starbound - Unstable",purchase,1.0,0 -86055705,"StarMade",purchase,1.0,0 -86055705,"Stealth Bastard Deluxe - The Teleporter Chambers",purchase,1.0,0 -86055705,"Super Splatters",purchase,1.0,0 -86055705,"Sword of the Stars The Pit - Mind Games",purchase,1.0,0 -86055705,"Sword of the Stars The Pit Gold DLC",purchase,1.0,0 -86055705,"Team Fortress Classic",purchase,1.0,0 -86055705,"Tesla Effect",purchase,1.0,0 -86055705,"The Chaos Engine",purchase,1.0,0 -86055705,"The Last Remnant",purchase,1.0,0 -86055705,"The Ship",purchase,1.0,0 -86055705,"The Ship Single Player",purchase,1.0,0 -86055705,"The Ship Tutorial",purchase,1.0,0 -86055705,"Thief Gold",purchase,1.0,0 -86055705,"Thomas Was Alone",purchase,1.0,0 -86055705,"Unepic",purchase,1.0,0 -86055705,"VVVVVV",purchase,1.0,0 -86055705,"Wanderlust Rebirth",purchase,1.0,0 -86055705,"White Noise Online",purchase,1.0,0 -184584285,"Rust",purchase,1.0,0 -184584285,"Rust",play,82.0,0 -184584285,"Unturned",purchase,1.0,0 -184584285,"Unturned",play,2.7,0 -198722652,"Garry's Mod",purchase,1.0,0 -198722652,"Garry's Mod",play,277.0,0 -198722652,"All Is Dust",purchase,1.0,0 -198722652,"All Is Dust",play,1.6,0 -198722652,"Source Filmmaker",purchase,1.0,0 -198722652,"Source Filmmaker",play,1.3,0 -198722652,"Double Action Boogaloo",purchase,1.0,0 -198722652,"Double Action Boogaloo",play,1.1,0 -198722652,"Gear Up",purchase,1.0,0 -198722652,"Gear Up",play,1.0,0 -198722652,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -198722652,"Navy Field 2 Conqueror of the Ocean",play,0.7,0 -198722652,"Robocraft",purchase,1.0,0 -198722652,"Robocraft",play,0.6,0 -198722652,"Trove",purchase,1.0,0 -198722652,"Trove",play,0.3,0 -198722652,"Esenthel Engine",purchase,1.0,0 -198722652,"Esenthel Engine",play,0.2,0 -198722652,"Fuse",purchase,1.0,0 -198722652,"Fuse",play,0.2,0 -198722652,"Among Ripples",purchase,1.0,0 -198722652,"Blender 2.76b",purchase,1.0,0 -198722652,"Bitweb",purchase,1.0,0 -204493190,"Construct 2 Free",purchase,1.0,0 -204493190,"Construct 2 Free",play,2.0,0 -204493190,"Toribash",purchase,1.0,0 -204493190,"Toribash",play,1.8,0 -204493190,"Unturned",purchase,1.0,0 -204493190,"Unturned",play,1.1,0 -204493190,"Fistful of Frags",purchase,1.0,0 -204493190,"Fistful of Frags",play,0.2,0 -204493190,"theHunter",purchase,1.0,0 -204493190,"theHunter",play,0.2,0 -204493190,"GameMaker Studio",purchase,1.0,0 -204493190,"GameMaker Studio",play,0.2,0 -204493190,"Heroes & Generals",purchase,1.0,0 -204493190,"Heroes & Generals",play,0.1,0 -204493190,"Cakewalk Loop Manager",purchase,1.0,0 -20914736,"Dota 2",purchase,1.0,0 -20914736,"Dota 2",play,188.0,0 -20914736,"DiRT 3",purchase,1.0,0 -20914736,"DiRT 3",play,2.7,0 -20914736,"Counter-Strike Source",purchase,1.0,0 -20914736,"Counter-Strike Source",play,2.3,0 -20914736,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -20914736,"Colin McRae Rally",purchase,1.0,0 -20914736,"Day of Defeat Source",purchase,1.0,0 -20914736,"DiRT 3 Complete Edition",purchase,1.0,0 -20914736,"DiRT Showdown",purchase,1.0,0 -20914736,"GRID 2",purchase,1.0,0 -20914736,"Half-Life 2 Deathmatch",purchase,1.0,0 -20914736,"Half-Life 2 Lost Coast",purchase,1.0,0 -20914736,"Hospital Tycoon",purchase,1.0,0 -20914736,"Metro 2033",purchase,1.0,0 -20914736,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -20914736,"Operation Flashpoint Red River",purchase,1.0,0 -20914736,"Overlord",purchase,1.0,0 -20914736,"Portal",purchase,1.0,0 -78560022,"Defense Grid The Awakening",purchase,1.0,0 -78560022,"Defense Grid The Awakening",play,15.1,0 -78560022,"RUSH",purchase,1.0,0 -78560022,"RUSH",play,2.2,0 -78560022,"Jamestown",purchase,1.0,0 -78560022,"Jamestown",play,1.7,0 -78560022,"Amnesia The Dark Descent",purchase,1.0,0 -78560022,"Amnesia The Dark Descent",play,1.7,0 -78560022,"The Ball",purchase,1.0,0 -78560022,"The Ball",play,1.5,0 -78560022,"Killing Floor",purchase,1.0,0 -78560022,"Killing Floor",play,1.5,0 -78560022,"NightSky",purchase,1.0,0 -78560022,"NightSky",play,1.5,0 -78560022,"Portal",purchase,1.0,0 -78560022,"Portal",play,1.4,0 -78560022,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -78560022,"Killing Floor Mod Defence Alliance 2",play,0.9,0 -78560022,"Cogs",purchase,1.0,0 -78560022,"Cogs",play,0.7,0 -78560022,"The Wonderful End of the World",purchase,1.0,0 -78560022,"The Wonderful End of the World",play,0.6,0 -78560022,"Shank",purchase,1.0,0 -78560022,"Shank",play,0.4,0 -78560022,"Super Meat Boy",purchase,1.0,0 -78560022,"Super Meat Boy",play,0.3,0 -78560022,"Audiosurf",purchase,1.0,0 -78560022,"Audiosurf",play,0.3,0 -78560022,"Toki Tori",purchase,1.0,0 -78560022,"Toki Tori",play,0.2,0 -78560022,"1... 2... 3... KICK IT! (Drop That Beat Like an Ugly Baby)",purchase,1.0,0 -78560022,"1... 2... 3... KICK IT! (Drop That Beat Like an Ugly Baby)",play,0.2,0 -78560022,"BIT.TRIP BEAT",purchase,1.0,0 -78560022,"BIT.TRIP BEAT",play,0.1,0 -78560022,"BIT.TRIP RUNNER",purchase,1.0,0 -78560022,"AaAaAA!!! - A Reckless Disregard for Gravity",purchase,1.0,0 -264393036,"Survarium",purchase,1.0,0 -231959681,"Dota 2",purchase,1.0,0 -231959681,"Dota 2",play,211.0,0 -231959681,"GunZ 2 The Second Duel",purchase,1.0,0 -231959681,"Transformice",purchase,1.0,0 -58057627,"Counter-Strike Global Offensive",purchase,1.0,0 -58057627,"Counter-Strike Global Offensive",play,557.0,0 -58057627,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -58057627,"Call of Duty Modern Warfare 2 - Multiplayer",play,462.0,0 -58057627,"Counter-Strike Source",purchase,1.0,0 -58057627,"Counter-Strike Source",play,217.0,0 -58057627,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -58057627,"Call of Duty Black Ops - Multiplayer",play,158.0,0 -58057627,"Garry's Mod",purchase,1.0,0 -58057627,"Garry's Mod",play,61.0,0 -58057627,"PAYDAY 2",purchase,1.0,0 -58057627,"PAYDAY 2",play,44.0,0 -58057627,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -58057627,"METAL GEAR SOLID V THE PHANTOM PAIN",play,35.0,0 -58057627,"Call of Duty Modern Warfare 2",purchase,1.0,0 -58057627,"Call of Duty Modern Warfare 2",play,31.0,0 -58057627,"Torchlight II",purchase,1.0,0 -58057627,"Torchlight II",play,26.0,0 -58057627,"Team Fortress 2",purchase,1.0,0 -58057627,"Team Fortress 2",play,22.0,0 -58057627,"Hitman Absolution",purchase,1.0,0 -58057627,"Hitman Absolution",play,22.0,0 -58057627,"Grand Theft Auto V",purchase,1.0,0 -58057627,"Grand Theft Auto V",play,21.0,0 -58057627,"Call of Duty Black Ops",purchase,1.0,0 -58057627,"Call of Duty Black Ops",play,18.4,0 -58057627,"Left 4 Dead 2",purchase,1.0,0 -58057627,"Left 4 Dead 2",play,16.8,0 -58057627,"Game Dev Tycoon",purchase,1.0,0 -58057627,"Game Dev Tycoon",play,12.4,0 -58057627,"Pro Evolution Soccer 2015",purchase,1.0,0 -58057627,"Pro Evolution Soccer 2015",play,11.9,0 -58057627,"The Elder Scrolls V Skyrim",purchase,1.0,0 -58057627,"The Elder Scrolls V Skyrim",play,9.3,0 -58057627,"Rocket League",purchase,1.0,0 -58057627,"Rocket League",play,9.2,0 -58057627,"Trials Evolution Gold Edition",purchase,1.0,0 -58057627,"Trials Evolution Gold Edition",play,8.4,0 -58057627,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -58057627,"Call of Duty Modern Warfare 3 - Multiplayer",play,7.7,0 -58057627,"Insurgency",purchase,1.0,0 -58057627,"Insurgency",play,6.7,0 -58057627,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -58057627,"Call of Duty Ghosts - Multiplayer",play,6.3,0 -58057627,"Peggle Nights",purchase,1.0,0 -58057627,"Peggle Nights",play,5.3,0 -58057627,"The Forest",purchase,1.0,0 -58057627,"The Forest",play,4.2,0 -58057627,"Democracy 3",purchase,1.0,0 -58057627,"Democracy 3",play,3.6,0 -58057627,"Alan Wake",purchase,1.0,0 -58057627,"Alan Wake",play,2.4,0 -58057627,"Peggle Deluxe",purchase,1.0,0 -58057627,"Peggle Deluxe",play,2.3,0 -58057627,"Fallout 3",purchase,1.0,0 -58057627,"Fallout 3",play,2.0,0 -58057627,"Fistful of Frags",purchase,1.0,0 -58057627,"Fistful of Frags",play,2.0,0 -58057627,"Painkiller Black Edition",purchase,1.0,0 -58057627,"Painkiller Black Edition",play,1.8,0 -58057627,"Dishonored",purchase,1.0,0 -58057627,"Dishonored",play,1.8,0 -58057627,"Mortal Kombat Komplete Edition",purchase,1.0,0 -58057627,"Mortal Kombat Komplete Edition",play,1.2,0 -58057627,"Portal",purchase,1.0,0 -58057627,"Portal",play,1.1,0 -58057627,"DiRT 3",purchase,1.0,0 -58057627,"DiRT 3",play,0.7,0 -58057627,"Prison Architect",purchase,1.0,0 -58057627,"Prison Architect",play,0.6,0 -58057627,"Sniper Elite V2",purchase,1.0,0 -58057627,"Sniper Elite V2",play,0.6,0 -58057627,"Peggle Extreme",purchase,1.0,0 -58057627,"Peggle Extreme",play,0.5,0 -58057627,"Insurgency Modern Infantry Combat",purchase,1.0,0 -58057627,"Insurgency Modern Infantry Combat",play,0.5,0 -58057627,"Call of Duty 2",purchase,1.0,0 -58057627,"Call of Duty 2",play,0.5,0 -58057627,"Hotline Miami",purchase,1.0,0 -58057627,"Hotline Miami",play,0.4,0 -58057627,"Grand Theft Auto Vice City",purchase,1.0,0 -58057627,"Grand Theft Auto Vice City",play,0.4,0 -58057627,"DiRT Rally",purchase,1.0,0 -58057627,"DiRT Rally",play,0.3,0 -58057627,"Call of Duty Modern Warfare 3",purchase,1.0,0 -58057627,"Call of Duty Modern Warfare 3",play,0.3,0 -58057627,"Tribes Ascend",purchase,1.0,0 -58057627,"Tribes Ascend",play,0.3,0 -58057627,"WRC 4 FIA WORLD RALLY CHAMPIONSHIP",purchase,1.0,0 -58057627,"WRC 4 FIA WORLD RALLY CHAMPIONSHIP",play,0.3,0 -58057627,"Arma 2",purchase,1.0,0 -58057627,"Arma 2",play,0.2,0 -58057627,"Arma 2 Operation Arrowhead",purchase,1.0,0 -58057627,"Arma 2 Operation Arrowhead",play,0.1,0 -58057627,"Mark of the Ninja",purchase,1.0,0 -58057627,"Mark of the Ninja",play,0.1,0 -58057627,"Half-Life 2",purchase,1.0,0 -58057627,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -58057627,"Assassin's Creed Brotherhood",purchase,1.0,0 -58057627,"Call of Duty Ghosts",purchase,1.0,0 -58057627,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -58057627,"DiRT 3 Complete Edition",purchase,1.0,0 -58057627,"Grand Theft Auto San Andreas",purchase,1.0,0 -58057627,"Grand Theft Auto San Andreas",purchase,1.0,0 -58057627,"Grand Theft Auto Vice City",purchase,1.0,0 -58057627,"Half-Life 2 Lost Coast",purchase,1.0,0 -58057627,"Hitman Sniper Challenge",purchase,1.0,0 -58057627,"Just Cause 2",purchase,1.0,0 -58057627,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -58057627,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -58057627,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -119310413,"Garry's Mod",purchase,1.0,0 -119310413,"Garry's Mod",play,10.0,0 -119310413,"NBA 2K14",purchase,1.0,0 -119310413,"NBA 2K14",play,4.8,0 -119310413,"Mirror's Edge",purchase,1.0,0 -119310413,"Mirror's Edge",play,4.2,0 -119310413,"Saints Row The Third",purchase,1.0,0 -119310413,"Saints Row The Third",play,4.0,0 -119310413,"The Sims(TM) 3",purchase,1.0,0 -119310413,"The Sims(TM) 3",play,3.3,0 -119310413,"Team Fortress 2",purchase,1.0,0 -119310413,"Team Fortress 2",play,3.2,0 -119310413,"Cry of Fear",purchase,1.0,0 -119310413,"Cry of Fear",play,3.0,0 -119310413,"Left 4 Dead 2",purchase,1.0,0 -119310413,"Left 4 Dead 2",play,2.7,0 -119310413,"Trials Evolution Gold Edition",purchase,1.0,0 -119310413,"Trials Evolution Gold Edition",play,2.4,0 -119310413,"The Elder Scrolls V Skyrim",purchase,1.0,0 -119310413,"The Elder Scrolls V Skyrim",play,2.1,0 -119310413,"Arma 2",purchase,1.0,0 -119310413,"Arma 2",play,1.4,0 -119310413,"Need for Speed Hot Pursuit",purchase,1.0,0 -119310413,"Need for Speed Hot Pursuit",play,1.4,0 -119310413,"PAYDAY The Heist",purchase,1.0,0 -119310413,"PAYDAY The Heist",play,1.2,0 -119310413,"Tomb Raider Legend",purchase,1.0,0 -119310413,"Tomb Raider Legend",play,0.9,0 -119310413,"Saints Row IV Inauguration Station",purchase,1.0,0 -119310413,"Saints Row IV Inauguration Station",play,0.9,0 -119310413,"The Binding of Isaac",purchase,1.0,0 -119310413,"The Binding of Isaac",play,0.8,0 -119310413,"McPixel",purchase,1.0,0 -119310413,"McPixel",play,0.8,0 -119310413,"Grand Theft Auto IV",purchase,1.0,0 -119310413,"Grand Theft Auto IV",play,0.8,0 -119310413,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -119310413,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",play,0.7,0 -119310413,"Construct 2 Free",purchase,1.0,0 -119310413,"Construct 2 Free",play,0.6,0 -119310413,"LIMBO",purchase,1.0,0 -119310413,"LIMBO",play,0.6,0 -119310413,"Tactical Intervention",purchase,1.0,0 -119310413,"Tactical Intervention",play,0.6,0 -119310413,"PlanetSide 2",purchase,1.0,0 -119310413,"PlanetSide 2",play,0.5,0 -119310413,"Quake II",purchase,1.0,0 -119310413,"Quake II",play,0.4,0 -119310413,"Ace of Spades",purchase,1.0,0 -119310413,"Ace of Spades",play,0.3,0 -119310413,"Deus Ex Human Revolution",purchase,1.0,0 -119310413,"Deus Ex Human Revolution",play,0.3,0 -119310413,"Quake",purchase,1.0,0 -119310413,"Quake",play,0.1,0 -119310413,"BIT.TRIP RUNNER",purchase,1.0,0 -119310413,"DCS World",purchase,1.0,0 -119310413,"Quake II Ground Zero",purchase,1.0,0 -119310413,"Quake II The Reckoning",purchase,1.0,0 -119310413,"Quake III Team Arena",purchase,1.0,0 -119310413,"Quake III Arena",purchase,1.0,0 -119310413,"Quake Mission Pack 1 Scourge of Armagon",purchase,1.0,0 -119310413,"Quake Mission Pack 2 Dissolution of Eternity",purchase,1.0,0 -206512772,"Dota 2",purchase,1.0,0 -206512772,"Dota 2",play,2.3,0 -49372322,"Football Manager 2010",purchase,1.0,0 -49372322,"Football Manager 2010",play,332.0,0 -49372322,"Football Manager 2009",purchase,1.0,0 -49372322,"Football Manager 2009",play,197.0,0 -49372322,"Mafia II",purchase,1.0,0 -49372322,"Mafia II",play,72.0,0 -141141039,"TrackMania Valley",purchase,1.0,0 -141141039,"TrackMania Valley",play,99.0,0 -267136496,"Counter-Strike Global Offensive",purchase,1.0,0 -267136496,"Counter-Strike Global Offensive",play,375.0,0 -267136496,"Unturned",purchase,1.0,0 -55363009,"FreeStyle2 Street Basketball",purchase,1.0,0 -95221376,"Football Manager 2012",purchase,1.0,0 -95221376,"Football Manager 2012",play,206.0,0 -33506449,"Counter-Strike",purchase,1.0,0 -33506449,"Counter-Strike",play,11.8,0 -33506449,"Counter-Strike Condition Zero",purchase,1.0,0 -33506449,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -33506449,"Day of Defeat",purchase,1.0,0 -33506449,"Deathmatch Classic",purchase,1.0,0 -33506449,"Ricochet",purchase,1.0,0 -298088734,"Dota 2",purchase,1.0,0 -298088734,"Dota 2",play,120.0,0 -216745133,"IL-2 Sturmovik Cliffs of Dover",purchase,1.0,0 -216745133,"IL-2 Sturmovik Cliffs of Dover",play,0.4,0 -127298726,"F1 2012",purchase,1.0,0 -127298726,"F1 2012",play,0.8,0 -182352880,"Dota 2",purchase,1.0,0 -182352880,"Dota 2",play,9.0,0 -173899197,"Garry's Mod",purchase,1.0,0 -173899197,"Garry's Mod",play,3.2,0 -173899197,"Counter-Strike Source",purchase,1.0,0 -173899197,"Counter-Strike Source",play,0.1,0 -293312087,"Castle Crashers",purchase,1.0,0 -293312087,"Castle Crashers",play,64.0,0 -293312087,"Unturned",purchase,1.0,0 -293312087,"Unturned",play,5.3,0 -293312087,"Team Fortress 2",purchase,1.0,0 -293312087,"Team Fortress 2",play,2.1,0 -293312087,"Robocraft",purchase,1.0,0 -293312087,"MechWarrior Online",purchase,1.0,0 -293312087,"Warframe",purchase,1.0,0 -299212897,"BLOCKADE 3D",purchase,1.0,0 -299212897,"BLOCKADE 3D",play,1.4,0 -299212897,"Robocraft",purchase,1.0,0 -299212897,"Robocraft",play,0.2,0 -133149797,"Counter-Strike",purchase,1.0,0 -133149797,"Counter-Strike Condition Zero",purchase,1.0,0 -133149797,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -133149797,"Day of Defeat",purchase,1.0,0 -133149797,"Deathmatch Classic",purchase,1.0,0 -133149797,"Ricochet",purchase,1.0,0 -165609158,"F1 2012",purchase,1.0,0 -165609158,"F1 2012",play,1.2,0 -114167965,"Dota 2",purchase,1.0,0 -114167965,"Dota 2",play,2.4,0 -166224568,"Team Fortress 2",purchase,1.0,0 -166224568,"Team Fortress 2",play,129.0,0 -166224568,"Robocraft",purchase,1.0,0 -166224568,"Robocraft",play,56.0,0 -166224568,"War Thunder",purchase,1.0,0 -166224568,"War Thunder",play,52.0,0 -166224568,"Heroes & Generals",purchase,1.0,0 -166224568,"Heroes & Generals",play,49.0,0 -166224568,"Men of War Assault Squad 2",purchase,1.0,0 -166224568,"Men of War Assault Squad 2",play,17.6,0 -166224568,"LEGO Worlds",purchase,1.0,0 -166224568,"LEGO Worlds",play,13.5,0 -166224568,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -166224568,"Navy Field 2 Conqueror of the Ocean",play,4.7,0 -166224568,"ARK Survival Evolved",purchase,1.0,0 -166224568,"ARK Survival Evolved",play,4.4,0 -166224568,"Half-Life 2",purchase,1.0,0 -166224568,"Half-Life 2",play,3.7,0 -166224568,"Wind of Luck Arena",purchase,1.0,0 -166224568,"Wind of Luck Arena",play,3.6,0 -166224568,"Dota 2",purchase,1.0,0 -166224568,"Dota 2",play,2.2,0 -166224568,"Half-Life 2 Update",purchase,1.0,0 -166224568,"Half-Life 2 Update",play,1.1,0 -166224568,"MechWarrior Online",purchase,1.0,0 -166224568,"MechWarrior Online",play,0.9,0 -166224568,"Half-Life 2 Lost Coast",purchase,1.0,0 -166224568,"Half-Life 2 Lost Coast",play,0.8,0 -166224568,"PlanetSide 2",purchase,1.0,0 -166224568,"PlanetSide 2",play,0.4,0 -242343035,"Dota 2",purchase,1.0,0 -242343035,"Dota 2",play,0.9,0 -240277855,"Dota 2",purchase,1.0,0 -240277855,"Dota 2",play,3.9,0 -54507379,"The Binding of Isaac Rebirth",purchase,1.0,0 -54507379,"The Binding of Isaac Rebirth",play,168.0,0 -54507379,"Ori and the Blind Forest",purchase,1.0,0 -54507379,"Ori and the Blind Forest",play,121.0,0 -54507379,"DARK SOULS II",purchase,1.0,0 -54507379,"DARK SOULS II",play,114.0,0 -54507379,"Darkest Dungeon",purchase,1.0,0 -54507379,"Darkest Dungeon",play,70.0,0 -54507379,"Don't Starve",purchase,1.0,0 -54507379,"Don't Starve",play,57.0,0 -54507379,"Divinity Original Sin",purchase,1.0,0 -54507379,"Divinity Original Sin",play,55.0,0 -54507379,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -54507379,"Warhammer 40,000 Dawn of War II",play,48.0,0 -54507379,"This War of Mine",purchase,1.0,0 -54507379,"This War of Mine",play,25.0,0 -54507379,"Don't Starve Together Beta",purchase,1.0,0 -54507379,"Don't Starve Together Beta",play,25.0,0 -54507379,"Rogue Legacy",purchase,1.0,0 -54507379,"Rogue Legacy",play,19.7,0 -54507379,"Magicka",purchase,1.0,0 -54507379,"Magicka",play,19.0,0 -54507379,"Shovel Knight",purchase,1.0,0 -54507379,"Shovel Knight",play,12.9,0 -54507379,"Dungeon of the Endless",purchase,1.0,0 -54507379,"Dungeon of the Endless",play,11.0,0 -54507379,"Trine 2",purchase,1.0,0 -54507379,"Trine 2",play,10.9,0 -54507379,"The Binding of Isaac",purchase,1.0,0 -54507379,"The Binding of Isaac",play,10.9,0 -54507379,"Full Mojo Rampage",purchase,1.0,0 -54507379,"Full Mojo Rampage",play,8.5,0 -54507379,"Dishonored",purchase,1.0,0 -54507379,"Dishonored",play,4.9,0 -54507379,"Divekick",purchase,1.0,0 -54507379,"Divekick",play,2.2,0 -54507379,"Left 4 Dead 2",purchase,1.0,0 -54507379,"Left 4 Dead 2",play,1.4,0 -54507379,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -54507379,"DARK SOULS II - Season Pass",purchase,1.0,0 -54507379,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -54507379,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -54507379,"Don't Starve Shipwrecked",purchase,1.0,0 -54507379,"Don't Starve Reign of Giants",purchase,1.0,0 -123627691,"Game of Thrones ",purchase,1.0,0 -123627691,"Game of Thrones ",play,6.6,0 -123627691,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -123627691,"School of Dragons How to Train Your Dragon",play,1.4,0 -123627691,"Karos",purchase,1.0,0 -123627691,"The Elder Scrolls V Skyrim",purchase,1.0,0 -123627691,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -123627691,"The Witcher Enhanced Edition",purchase,1.0,0 -183593307,"Dota 2",purchase,1.0,0 -183593307,"Dota 2",play,16.9,0 -89005236,"Killing Floor",purchase,1.0,0 -89005236,"Killing Floor",play,1499.0,0 -89005236,"Killing Floor 2",purchase,1.0,0 -89005236,"Killing Floor 2",play,503.0,0 -89005236,"Age of Empires II HD Edition",purchase,1.0,0 -89005236,"Age of Empires II HD Edition",play,146.0,0 -89005236,"Star Wars - Battlefront II",purchase,1.0,0 -89005236,"Star Wars - Battlefront II",play,46.0,0 -89005236,"DOOM 3",purchase,1.0,0 -89005236,"DOOM 3",play,24.0,0 -89005236,"Dungeon Siege",purchase,1.0,0 -89005236,"Dungeon Siege",play,19.9,0 -89005236,"Half-Life",purchase,1.0,0 -89005236,"Half-Life",play,16.1,0 -89005236,"Half-Life Opposing Force",purchase,1.0,0 -89005236,"Half-Life Opposing Force",play,8.8,0 -89005236,"Half-Life Blue Shift",purchase,1.0,0 -89005236,"Half-Life Blue Shift",play,6.8,0 -89005236,"Moonrise",purchase,1.0,0 -89005236,"Moonrise",play,0.6,0 -89005236,"Age of Empires II HD The Forgotten",purchase,1.0,0 -89005236,"Counter-Strike",purchase,1.0,0 -89005236,"Day of Defeat",purchase,1.0,0 -89005236,"Deathmatch Classic",purchase,1.0,0 -89005236,"Dungeon Siege 2",purchase,1.0,0 -89005236,"Dungeon Siege III",purchase,1.0,0 -89005236,"Killing Floor - Toy Master",purchase,1.0,0 -89005236,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -89005236,"Moonrise Base Game + Warden's Pack",purchase,1.0,0 -89005236,"Overlord Fellowship of Evil",purchase,1.0,0 -89005236,"Ricochet",purchase,1.0,0 -89005236,"Shower With Your Dad Simulator 2015 Do You Still Shower With Your Dad",purchase,1.0,0 -89005236,"Star Trek D-A-C",purchase,1.0,0 -89005236,"Team Fortress Classic",purchase,1.0,0 -89005236,"The Binding of Isaac",purchase,1.0,0 -89005236,"Total War SHOGUN 2",purchase,1.0,0 -169254022,"Dota 2",purchase,1.0,0 -169254022,"Dota 2",play,2.8,0 -169254022,"Blacklight Retribution",purchase,1.0,0 -169254022,"Blacklight Retribution",play,1.3,0 -169254022,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -169254022,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.5,0 -169254022,"Team Fortress 2",purchase,1.0,0 -169254022,"Team Fortress 2",play,0.5,0 -293188300,"Robocraft",purchase,1.0,0 -293188300,"Robocraft",play,32.0,0 -98789695,"Stealth Inc 2",purchase,1.0,0 -182780973,"Dota 2",purchase,1.0,0 -182780973,"Dota 2",play,2.6,0 -196543616,"Dota 2",purchase,1.0,0 -196543616,"Dota 2",play,1234.0,0 -196543616,"City of Steam Arkadia",purchase,1.0,0 -87223060,"Team Fortress 2",purchase,1.0,0 -87223060,"Team Fortress 2",play,61.0,0 -303398143,"Dota 2",purchase,1.0,0 -303398143,"Dota 2",play,23.0,0 -163533808,"Dota 2",purchase,1.0,0 -163533808,"Dota 2",play,23.0,0 -214472043,"Hitman Absolution",purchase,1.0,0 -214472043,"Hitman Absolution",play,3.5,0 -214472043,"AdVenture Capitalist",purchase,1.0,0 -214472043,"No More Room in Hell",purchase,1.0,0 -214472043,"Transformice",purchase,1.0,0 -10262121,"Counter-Strike Source",purchase,1.0,0 -10262121,"Half-Life 2",purchase,1.0,0 -10262121,"Half-Life 2 Deathmatch",purchase,1.0,0 -10262121,"Half-Life 2 Lost Coast",purchase,1.0,0 -10262121,"Half-Life Source",purchase,1.0,0 -10262121,"Half-Life Deathmatch Source",purchase,1.0,0 -1834453,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -1834453,"Call of Duty Modern Warfare 2 - Multiplayer",play,175.0,0 -1834453,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -1834453,"Call of Duty Black Ops - Multiplayer",play,22.0,0 -1834453,"Call of Duty Modern Warfare 2",purchase,1.0,0 -1834453,"Call of Duty Black Ops",purchase,1.0,0 -1834453,"Counter-Strike",purchase,1.0,0 -1834453,"Day of Defeat",purchase,1.0,0 -1834453,"Deathmatch Classic",purchase,1.0,0 -1834453,"Half-Life",purchase,1.0,0 -1834453,"Half-Life Blue Shift",purchase,1.0,0 -1834453,"Half-Life Opposing Force",purchase,1.0,0 -1834453,"Ricochet",purchase,1.0,0 -1834453,"Team Fortress Classic",purchase,1.0,0 -189921721,"Counter-Strike Global Offensive",purchase,1.0,0 -189921721,"Counter-Strike Global Offensive",play,86.0,0 -16990576,"Counter-Strike Source",purchase,1.0,0 -16990576,"Counter-Strike Source",play,0.2,0 -16990576,"Half-Life 2 Lost Coast",purchase,1.0,0 -16990576,"Half-Life 2",purchase,1.0,0 -16990576,"Half-Life 2 Deathmatch",purchase,1.0,0 -145980974,"Dota 2",purchase,1.0,0 -145980974,"Dota 2",play,123.0,0 -51098091,"NBA 2K9",purchase,1.0,0 -3449240,"ArcheAge",purchase,1.0,0 -3449240,"ArcheAge",play,618.0,0 -3449240,"Team Fortress 2",purchase,1.0,0 -3449240,"Team Fortress 2",play,254.0,0 -3449240,"Arma 3",purchase,1.0,0 -3449240,"Arma 3",play,168.0,0 -3449240,"Counter-Strike Source",purchase,1.0,0 -3449240,"Counter-Strike Source",play,142.0,0 -3449240,"Path of Exile",purchase,1.0,0 -3449240,"Path of Exile",play,114.0,0 -3449240,"Battlefield Bad Company 2",purchase,1.0,0 -3449240,"Battlefield Bad Company 2",play,107.0,0 -3449240,"Sid Meier's Civilization V",purchase,1.0,0 -3449240,"Sid Meier's Civilization V",play,90.0,0 -3449240,"Counter-Strike Global Offensive",purchase,1.0,0 -3449240,"Counter-Strike Global Offensive",play,74.0,0 -3449240,"Left 4 Dead",purchase,1.0,0 -3449240,"Left 4 Dead",play,53.0,0 -3449240,"Arma 2",purchase,1.0,0 -3449240,"Arma 2",play,50.0,0 -3449240,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -3449240,"Call of Duty Black Ops - Multiplayer",play,47.0,0 -3449240,"Total War SHOGUN 2",purchase,1.0,0 -3449240,"Total War SHOGUN 2",play,43.0,0 -3449240,"Left 4 Dead 2",purchase,1.0,0 -3449240,"Left 4 Dead 2",play,43.0,0 -3449240,"Titan Quest Immortal Throne",purchase,1.0,0 -3449240,"Titan Quest Immortal Throne",play,38.0,0 -3449240,"Grand Theft Auto IV",purchase,1.0,0 -3449240,"Grand Theft Auto IV",play,20.0,0 -3449240,"H1Z1",purchase,1.0,0 -3449240,"H1Z1",play,17.4,0 -3449240,"Orcs Must Die!",purchase,1.0,0 -3449240,"Orcs Must Die!",play,17.3,0 -3449240,"Arma 2 Operation Arrowhead",purchase,1.0,0 -3449240,"Arma 2 Operation Arrowhead",play,16.3,0 -3449240,"Mount & Blade Warband",purchase,1.0,0 -3449240,"Mount & Blade Warband",play,15.3,0 -3449240,"FTL Faster Than Light",purchase,1.0,0 -3449240,"FTL Faster Than Light",play,13.9,0 -3449240,"The Elder Scrolls V Skyrim",purchase,1.0,0 -3449240,"The Elder Scrolls V Skyrim",play,11.6,0 -3449240,"Don't Starve",purchase,1.0,0 -3449240,"Don't Starve",play,10.1,0 -3449240,"Cities Skylines",purchase,1.0,0 -3449240,"Cities Skylines",play,8.7,0 -3449240,"X-COM Terror from the Deep",purchase,1.0,0 -3449240,"X-COM Terror from the Deep",play,8.4,0 -3449240,"Audiosurf",purchase,1.0,0 -3449240,"Audiosurf",play,6.1,0 -3449240,"Robocraft",purchase,1.0,0 -3449240,"Robocraft",play,5.4,0 -3449240,"Portal 2",purchase,1.0,0 -3449240,"Portal 2",play,5.2,0 -3449240,"Terraria",purchase,1.0,0 -3449240,"Terraria",play,4.6,0 -3449240,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -3449240,"Rising Storm/Red Orchestra 2 Multiplayer",play,3.9,0 -3449240,"Castle Story",purchase,1.0,0 -3449240,"Castle Story",play,3.8,0 -3449240,"Company of Heroes (New Steam Version)",purchase,1.0,0 -3449240,"Company of Heroes (New Steam Version)",play,3.6,0 -3449240,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -3449240,"Dark Souls Prepare to Die Edition",play,2.6,0 -3449240,"Frozen Synapse",purchase,1.0,0 -3449240,"Frozen Synapse",play,2.3,0 -3449240,"Section 8 Prejudice",purchase,1.0,0 -3449240,"Section 8 Prejudice",play,2.1,0 -3449240,"RUNNING WITH RIFLES",purchase,1.0,0 -3449240,"RUNNING WITH RIFLES",play,1.9,0 -3449240,"Don't Starve Together Beta",purchase,1.0,0 -3449240,"Don't Starve Together Beta",play,1.7,0 -3449240,"Reus",purchase,1.0,0 -3449240,"Reus",play,1.6,0 -3449240,"Company of Heroes 2",purchase,1.0,0 -3449240,"Company of Heroes 2",play,1.5,0 -3449240,"Arma 2 DayZ Mod",purchase,1.0,0 -3449240,"Arma 2 DayZ Mod",play,1.3,0 -3449240,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -3449240,"Plants vs. Zombies Game of the Year",play,1.3,0 -3449240,"Portal",purchase,1.0,0 -3449240,"Portal",play,1.1,0 -3449240,"RUSH",purchase,1.0,0 -3449240,"RUSH",play,1.0,0 -3449240,"Next Car Game Wreckfest",purchase,1.0,0 -3449240,"Next Car Game Wreckfest",play,1.0,0 -3449240,"Surgeon Simulator",purchase,1.0,0 -3449240,"Surgeon Simulator",play,1.0,0 -3449240,"Braid",purchase,1.0,0 -3449240,"Braid",play,0.8,0 -3449240,"Just Cause 2",purchase,1.0,0 -3449240,"Just Cause 2",play,0.7,0 -3449240,"EverQuest II",purchase,1.0,0 -3449240,"EverQuest II",play,0.7,0 -3449240,"Batman Arkham Origins",purchase,1.0,0 -3449240,"Batman Arkham Origins",play,0.6,0 -3449240,"Scribblenauts Unlimited",purchase,1.0,0 -3449240,"Scribblenauts Unlimited",play,0.4,0 -3449240,"World of Goo",purchase,1.0,0 -3449240,"World of Goo",play,0.4,0 -3449240,"The Stanley Parable",purchase,1.0,0 -3449240,"The Stanley Parable",play,0.4,0 -3449240,"EDGE",purchase,1.0,0 -3449240,"EDGE",play,0.4,0 -3449240,"Call of Duty Black Ops",purchase,1.0,0 -3449240,"Call of Duty Black Ops",play,0.4,0 -3449240,"LIMBO",purchase,1.0,0 -3449240,"LIMBO",play,0.3,0 -3449240,"3DMark",purchase,1.0,0 -3449240,"3DMark",play,0.3,0 -3449240,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -3449240,"Next Car Game Sneak Peek 2.0",play,0.2,0 -3449240,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -3449240,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,0.2,0 -3449240,"Counter-Strike",purchase,1.0,0 -3449240,"Space Empires IV Deluxe",purchase,1.0,0 -3449240,"Titan Quest",purchase,1.0,0 -3449240,"Arma 2 British Armed Forces",purchase,1.0,0 -3449240,"Arma 2 Private Military Company",purchase,1.0,0 -3449240,"3DMark API Overhead feature test",purchase,1.0,0 -3449240,"3DMark Cloud Gate benchmark",purchase,1.0,0 -3449240,"3DMark Fire Strike benchmark",purchase,1.0,0 -3449240,"3DMark Ice Storm benchmark",purchase,1.0,0 -3449240,"3DMark Sky Diver benchmark",purchase,1.0,0 -3449240,"Arma 3 Helicopters",purchase,1.0,0 -3449240,"Arma 3 Karts",purchase,1.0,0 -3449240,"Arma 3 Marksmen",purchase,1.0,0 -3449240,"Arma 3 Zeus",purchase,1.0,0 -3449240,"Arma Cold War Assault",purchase,1.0,0 -3449240,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -3449240,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -3449240,"Company of Heroes",purchase,1.0,0 -3449240,"Company of Heroes Opposing Fronts",purchase,1.0,0 -3449240,"Company of Heroes Tales of Valor",purchase,1.0,0 -3449240,"Darkest Hour Europe '44-'45",purchase,1.0,0 -3449240,"Day of Defeat",purchase,1.0,0 -3449240,"Deathmatch Classic",purchase,1.0,0 -3449240,"Ghost Master",purchase,1.0,0 -3449240,"H1Z1 Test Server",purchase,1.0,0 -3449240,"Half-Life",purchase,1.0,0 -3449240,"Half-Life 2",purchase,1.0,0 -3449240,"Half-Life 2 Deathmatch",purchase,1.0,0 -3449240,"Half-Life 2 Episode One",purchase,1.0,0 -3449240,"Half-Life 2 Episode Two",purchase,1.0,0 -3449240,"Half-Life 2 Lost Coast",purchase,1.0,0 -3449240,"Half-Life Blue Shift",purchase,1.0,0 -3449240,"Half-Life Opposing Force",purchase,1.0,0 -3449240,"Jagged Alliance 2 Gold Unfinished Business",purchase,1.0,0 -3449240,"Jagged Alliance 2 Gold Pack",purchase,1.0,0 -3449240,"Mare Nostrum",purchase,1.0,0 -3449240,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -3449240,"Ricochet",purchase,1.0,0 -3449240,"Team Fortress Classic",purchase,1.0,0 -3449240,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -3449240,"Toki Tori",purchase,1.0,0 -293600797,"Stonehearth",purchase,1.0,0 -293600797,"Stonehearth",play,5.0,0 -293600797,"Counter-Strike Global Offensive",purchase,1.0,0 -293600797,"Counter-Strike Global Offensive",play,2.5,0 -293600797,"AdVenture Capitalist",purchase,1.0,0 -293600797,"AdVenture Capitalist",play,1.4,0 -293600797,"Creativerse",purchase,1.0,0 -293600797,"Creativerse",play,0.2,0 -293600797,"Unturned",purchase,1.0,0 -293600797,"Unturned",play,0.2,0 -293600797,"RaceRoom Racing Experience ",purchase,1.0,0 -213359499,"Dota 2",purchase,1.0,0 -213359499,"Dota 2",play,1.9,0 -114872913,"Team Fortress 2",purchase,1.0,0 -114872913,"Team Fortress 2",play,2.2,0 -66255019,"The Elder Scrolls V Skyrim",purchase,1.0,0 -66255019,"The Elder Scrolls V Skyrim",play,226.0,0 -66255019,"Baldur's Gate II Enhanced Edition",purchase,1.0,0 -66255019,"Baldur's Gate II Enhanced Edition",play,139.0,0 -66255019,"The Witcher 3 Wild Hunt",purchase,1.0,0 -66255019,"The Witcher 3 Wild Hunt",play,84.0,0 -66255019,"XCOM Enemy Unknown",purchase,1.0,0 -66255019,"XCOM Enemy Unknown",play,82.0,0 -66255019,"Divinity Original Sin",purchase,1.0,0 -66255019,"Divinity Original Sin",play,79.0,0 -66255019,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -66255019,"The Witcher 2 Assassins of Kings Enhanced Edition",play,66.0,0 -66255019,"Fallout 4",purchase,1.0,0 -66255019,"Fallout 4",play,65.0,0 -66255019,"Blood Bowl Chaos Edition",purchase,1.0,0 -66255019,"Blood Bowl Chaos Edition",play,62.0,0 -66255019,"Fable III",purchase,1.0,0 -66255019,"Fable III",play,60.0,0 -66255019,"Pillars of Eternity",purchase,1.0,0 -66255019,"Pillars of Eternity",play,58.0,0 -66255019,"Might & Magic X - Legacy ",purchase,1.0,0 -66255019,"Might & Magic X - Legacy ",play,57.0,0 -66255019,"FINAL FANTASY VII",purchase,1.0,0 -66255019,"FINAL FANTASY VII",play,43.0,0 -66255019,"Assassin's Creed IV Black Flag",purchase,1.0,0 -66255019,"Assassin's Creed IV Black Flag",play,39.0,0 -66255019,"Fallout New Vegas",purchase,1.0,0 -66255019,"Fallout New Vegas",play,37.0,0 -66255019,"Darksiders II",purchase,1.0,0 -66255019,"Darksiders II",play,36.0,0 -66255019,"Assassins Creed Unity",purchase,1.0,0 -66255019,"Assassins Creed Unity",play,31.0,0 -66255019,"Magic 2015",purchase,1.0,0 -66255019,"Magic 2015",play,31.0,0 -66255019,"Assassin's Creed III",purchase,1.0,0 -66255019,"Assassin's Creed III",play,30.0,0 -66255019,"Icewind Dale Enhanced Edition",purchase,1.0,0 -66255019,"Icewind Dale Enhanced Edition",play,30.0,0 -66255019,"Overlord II",purchase,1.0,0 -66255019,"Overlord II",play,29.0,0 -66255019,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -66255019,"Warhammer 40,000 Dawn of War II",play,28.0,0 -66255019,"Assassin's Creed II",purchase,1.0,0 -66255019,"Assassin's Creed II",play,26.0,0 -66255019,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -66255019,"Dragon Age Origins - Ultimate Edition",play,24.0,0 -66255019,"Assassin's Creed Brotherhood",purchase,1.0,0 -66255019,"Assassin's Creed Brotherhood",play,24.0,0 -66255019,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -66255019,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,23.0,0 -66255019,"FTL Faster Than Light",purchase,1.0,0 -66255019,"FTL Faster Than Light",play,21.0,0 -66255019,"Star Wars Knights of the Old Republic",purchase,1.0,0 -66255019,"Star Wars Knights of the Old Republic",play,21.0,0 -66255019,"Guild of Dungeoneering",purchase,1.0,0 -66255019,"Guild of Dungeoneering",play,19.7,0 -66255019,"Age of Wonders III",purchase,1.0,0 -66255019,"Age of Wonders III",play,19.7,0 -66255019,"Darksiders",purchase,1.0,0 -66255019,"Darksiders",play,18.5,0 -66255019,"The Bureau XCOM Declassified",purchase,1.0,0 -66255019,"The Bureau XCOM Declassified",play,17.3,0 -66255019,"FINAL FANTASY VIII",purchase,1.0,0 -66255019,"FINAL FANTASY VIII",play,15.5,0 -66255019,"DUNGEONS - The Dark Lord (Steam Special Edition)",purchase,1.0,0 -66255019,"DUNGEONS - The Dark Lord (Steam Special Edition)",play,15.0,0 -66255019,"Grey Goo",purchase,1.0,0 -66255019,"Grey Goo",play,15.0,0 -66255019,"Plague Inc Evolved",purchase,1.0,0 -66255019,"Plague Inc Evolved",play,13.6,0 -66255019,"Total War ROME II - Emperor Edition",purchase,1.0,0 -66255019,"Total War ROME II - Emperor Edition",play,13.6,0 -66255019,"Tomb Raider",purchase,1.0,0 -66255019,"Tomb Raider",play,12.7,0 -66255019,"BioShock",purchase,1.0,0 -66255019,"BioShock",play,11.5,0 -66255019,"Defense Grid 2",purchase,1.0,0 -66255019,"Defense Grid 2",play,10.7,0 -66255019,"Prison Architect",purchase,1.0,0 -66255019,"Prison Architect",play,10.6,0 -66255019,"BioShock Infinite",purchase,1.0,0 -66255019,"BioShock Infinite",play,10.5,0 -66255019,"Disciples III Resurrection",purchase,1.0,0 -66255019,"Disciples III Resurrection",play,9.8,0 -66255019,"Cthulhu Saves the World ",purchase,1.0,0 -66255019,"Cthulhu Saves the World ",play,9.7,0 -66255019,"Dungeon of the Endless",purchase,1.0,0 -66255019,"Dungeon of the Endless",play,9.6,0 -66255019,"Democracy 3",purchase,1.0,0 -66255019,"Democracy 3",play,8.9,0 -66255019,"Sid Meier's Civilization V",purchase,1.0,0 -66255019,"Sid Meier's Civilization V",play,8.9,0 -66255019,"BioShock 2",purchase,1.0,0 -66255019,"BioShock 2",play,7.7,0 -66255019,"Torchlight II",purchase,1.0,0 -66255019,"Torchlight II",play,7.3,0 -66255019,"Portal 2",purchase,1.0,0 -66255019,"Portal 2",play,7.3,0 -66255019,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -66255019,"Warhammer 40,000 Dawn of War II Retribution",play,6.8,0 -66255019,"Risen",purchase,1.0,0 -66255019,"Risen",play,6.7,0 -66255019,"EVE Online",purchase,1.0,0 -66255019,"EVE Online",play,6.4,0 -66255019,"Machinarium",purchase,1.0,0 -66255019,"Machinarium",play,5.4,0 -66255019,"Warhammer 40,000 Space Marine",purchase,1.0,0 -66255019,"Warhammer 40,000 Space Marine",play,5.3,0 -66255019,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -66255019,"Galactic Civilizations II Ultimate Edition",play,5.1,0 -66255019,"Blood Bowl 2",purchase,1.0,0 -66255019,"Blood Bowl 2",play,4.8,0 -66255019,"FORCED",purchase,1.0,0 -66255019,"FORCED",play,4.7,0 -66255019,"Warhammer End Times - Vermintide",purchase,1.0,0 -66255019,"Warhammer End Times - Vermintide",play,4.6,0 -66255019,"StarDrive",purchase,1.0,0 -66255019,"StarDrive",play,4.4,0 -66255019,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -66255019,"Warhammer 40,000 Dawn of War Soulstorm",play,4.3,0 -66255019,"Portal",purchase,1.0,0 -66255019,"Portal",play,3.8,0 -66255019,"Disciples III Renaissance",purchase,1.0,0 -66255019,"Disciples III Renaissance",play,3.3,0 -66255019,"Mordheim City of the Damned",purchase,1.0,0 -66255019,"Mordheim City of the Damned",play,2.6,0 -66255019,"The Stanley Parable",purchase,1.0,0 -66255019,"The Stanley Parable",play,2.0,0 -66255019,"Cities Skylines",purchase,1.0,0 -66255019,"Cities Skylines",play,1.8,0 -66255019,"Magicka",purchase,1.0,0 -66255019,"Magicka",play,1.5,0 -66255019,"The Witcher Enhanced Edition",purchase,1.0,0 -66255019,"The Witcher Enhanced Edition",play,1.1,0 -66255019,"ARK Survival Evolved",purchase,1.0,0 -66255019,"ARK Survival Evolved",play,1.0,0 -66255019,"Antichamber",purchase,1.0,0 -66255019,"Antichamber",play,0.9,0 -66255019,"Her Story",purchase,1.0,0 -66255019,"Her Story",play,0.5,0 -66255019,"Planetary Annihilation",purchase,1.0,0 -66255019,"Planetary Annihilation",play,0.5,0 -66255019,"Mirror's Edge",purchase,1.0,0 -66255019,"Mirror's Edge",play,0.4,0 -66255019,"Necronomicon The Dawning of Darkness",purchase,1.0,0 -66255019,"Necronomicon The Dawning of Darkness",play,0.3,0 -66255019,"Risen 3 - Titan Lords",purchase,1.0,0 -66255019,"Risen 3 - Titan Lords",play,0.2,0 -66255019,"DiRT Showdown",purchase,1.0,0 -66255019,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -66255019,"Blood Bowl 2 - Lizardmen",purchase,1.0,0 -66255019,"Blood Bowl 2 - Wood Elves",purchase,1.0,0 -66255019,"Breath of Death VII ",purchase,1.0,0 -66255019,"Democracy 3 Extremism",purchase,1.0,0 -66255019,"Democracy 3 Extremism Linux",purchase,1.0,0 -66255019,"Democracy 3 Extremism Mac",purchase,1.0,0 -66255019,"Democracy 3 Social Engineering",purchase,1.0,0 -66255019,"Democracy 3 Social Engineering Linux",purchase,1.0,0 -66255019,"Democracy 3 Social Engineering Mac",purchase,1.0,0 -66255019,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -66255019,"Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald A Whirlwind Heist",purchase,1.0,0 -66255019,"Europa Universalis IV",purchase,1.0,0 -66255019,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -66255019,"Fallout New Vegas Dead Money",purchase,1.0,0 -66255019,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -66255019,"Grey Goo - Emergence Campaign",purchase,1.0,0 -66255019,"Grey Goo - Soundtrack",purchase,1.0,0 -66255019,"Risen 2 - Dark Waters",purchase,1.0,0 -66255019,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -66255019,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -66255019,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -66255019,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -66255019,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -66255019,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -66255019,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -66255019,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -66255019,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -66255019,"Warhammer End Times - Vermintide Sigmar's Blessing",purchase,1.0,0 -66255019,"XCOM Enemy Within",purchase,1.0,0 -112474535,"Team Fortress 2",purchase,1.0,0 -112474535,"Team Fortress 2",play,5.5,0 -39037163,"Team Fortress 2",purchase,1.0,0 -39037163,"Team Fortress 2",play,1124.0,0 -39037163,"Garry's Mod",purchase,1.0,0 -39037163,"Garry's Mod",play,536.0,0 -39037163,"Sid Meier's Civilization V",purchase,1.0,0 -39037163,"Sid Meier's Civilization V",play,269.0,0 -39037163,"The Binding of Isaac Rebirth",purchase,1.0,0 -39037163,"The Binding of Isaac Rebirth",play,204.0,0 -39037163,"Warframe",purchase,1.0,0 -39037163,"Warframe",play,127.0,0 -39037163,"Zombie Panic Source",purchase,1.0,0 -39037163,"Zombie Panic Source",play,100.0,0 -39037163,"Borderlands 2",purchase,1.0,0 -39037163,"Borderlands 2",play,95.0,0 -39037163,"Counter-Strike Global Offensive",purchase,1.0,0 -39037163,"Counter-Strike Global Offensive",play,95.0,0 -39037163,"Fallout New Vegas",purchase,1.0,0 -39037163,"Fallout New Vegas",play,95.0,0 -39037163,"Fallout 4",purchase,1.0,0 -39037163,"Fallout 4",play,94.0,0 -39037163,"The Binding of Isaac",purchase,1.0,0 -39037163,"The Binding of Isaac",play,73.0,0 -39037163,"Terraria",purchase,1.0,0 -39037163,"Terraria",play,64.0,0 -39037163,"XCOM Enemy Unknown",purchase,1.0,0 -39037163,"XCOM Enemy Unknown",play,63.0,0 -39037163,"Grand Theft Auto V",purchase,1.0,0 -39037163,"Grand Theft Auto V",play,63.0,0 -39037163,"The Witcher Enhanced Edition",purchase,1.0,0 -39037163,"The Witcher Enhanced Edition",play,61.0,0 -39037163,"Saints Row The Third",purchase,1.0,0 -39037163,"Saints Row The Third",play,53.0,0 -39037163,"Fallout 2",purchase,1.0,0 -39037163,"Fallout 2",play,44.0,0 -39037163,"Tabletop Simulator",purchase,1.0,0 -39037163,"Tabletop Simulator",play,42.0,0 -39037163,"Left 4 Dead 2",purchase,1.0,0 -39037163,"Left 4 Dead 2",play,37.0,0 -39037163,"Saints Row IV",purchase,1.0,0 -39037163,"Saints Row IV",play,29.0,0 -39037163,"Overlord Raising Hell",purchase,1.0,0 -39037163,"Overlord Raising Hell",play,28.0,0 -39037163,"Scribblenauts Unlimited",purchase,1.0,0 -39037163,"Scribblenauts Unlimited",play,28.0,0 -39037163,"Counter-Strike Source",purchase,1.0,0 -39037163,"Counter-Strike Source",play,27.0,0 -39037163,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -39037163,"Baldur's Gate Enhanced Edition",play,26.0,0 -39037163,"Tales from the Borderlands",purchase,1.0,0 -39037163,"Tales from the Borderlands",play,26.0,0 -39037163,"Don't Starve Together Beta",purchase,1.0,0 -39037163,"Don't Starve Together Beta",play,25.0,0 -39037163,"BioShock Infinite",purchase,1.0,0 -39037163,"BioShock Infinite",play,25.0,0 -39037163,"Quantum Conundrum",purchase,1.0,0 -39037163,"Quantum Conundrum",play,24.0,0 -39037163,"Fallout",purchase,1.0,0 -39037163,"Fallout",play,23.0,0 -39037163,"Neverwinter",purchase,1.0,0 -39037163,"Neverwinter",play,19.9,0 -39037163,"Dead Rising 2 Off the Record",purchase,1.0,0 -39037163,"Dead Rising 2 Off the Record",play,19.4,0 -39037163,"Half-Life 2",purchase,1.0,0 -39037163,"Half-Life 2",play,18.6,0 -39037163,"The Walking Dead",purchase,1.0,0 -39037163,"The Walking Dead",play,18.5,0 -39037163,"State of Decay",purchase,1.0,0 -39037163,"State of Decay",play,18.1,0 -39037163,"Killing Floor",purchase,1.0,0 -39037163,"Killing Floor",play,17.6,0 -39037163,"South Park The Stick of Truth",purchase,1.0,0 -39037163,"South Park The Stick of Truth",play,16.1,0 -39037163,"Spore Galactic Adventures",purchase,1.0,0 -39037163,"Spore Galactic Adventures",play,15.5,0 -39037163,"The Walking Dead Season Two",purchase,1.0,0 -39037163,"The Walking Dead Season Two",play,15.3,0 -39037163,"Rust",purchase,1.0,0 -39037163,"Rust",play,14.5,0 -39037163,"FTL Faster Than Light",purchase,1.0,0 -39037163,"FTL Faster Than Light",play,12.8,0 -39037163,"The Elder Scrolls V Skyrim",purchase,1.0,0 -39037163,"The Elder Scrolls V Skyrim",play,11.2,0 -39037163,"Portal 2",purchase,1.0,0 -39037163,"Portal 2",play,10.8,0 -39037163,"Call of Duty Black Ops",purchase,1.0,0 -39037163,"Call of Duty Black Ops",play,10.7,0 -39037163,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -39037163,"Game of Thrones - A Telltale Games Series",play,9.7,0 -39037163,"Gauntlet ",purchase,1.0,0 -39037163,"Gauntlet ",play,8.8,0 -39037163,"Worms Clan Wars",purchase,1.0,0 -39037163,"Worms Clan Wars",play,8.6,0 -39037163,"The Wolf Among Us",purchase,1.0,0 -39037163,"The Wolf Among Us",play,7.9,0 -39037163,"LEGO The Lord of the Rings",purchase,1.0,0 -39037163,"LEGO The Lord of the Rings",play,7.3,0 -39037163,"Darksiders",purchase,1.0,0 -39037163,"Darksiders",play,5.9,0 -39037163,"Half-Life 2 Episode Two",purchase,1.0,0 -39037163,"Half-Life 2 Episode Two",play,5.9,0 -39037163,"Battlefield Bad Company 2",purchase,1.0,0 -39037163,"Battlefield Bad Company 2",play,4.5,0 -39037163,"Nidhogg",purchase,1.0,0 -39037163,"Nidhogg",play,4.3,0 -39037163,"Reign Of Kings",purchase,1.0,0 -39037163,"Reign Of Kings",play,4.2,0 -39037163,"Far Cry 2",purchase,1.0,0 -39037163,"Far Cry 2",play,3.7,0 -39037163,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -39037163,"Just Cause 2 Multiplayer Mod",play,3.5,0 -39037163,"Call of Duty World at War",purchase,1.0,0 -39037163,"Call of Duty World at War",play,3.4,0 -39037163,"How to Survive",purchase,1.0,0 -39037163,"How to Survive",play,3.3,0 -39037163,"Overlord II",purchase,1.0,0 -39037163,"Overlord II",play,3.1,0 -39037163,"Overlord",purchase,1.0,0 -39037163,"Overlord",play,3.0,0 -39037163,"Half-Life 2 Episode One",purchase,1.0,0 -39037163,"Half-Life 2 Episode One",play,2.9,0 -39037163,"Castle Crashers",purchase,1.0,0 -39037163,"Castle Crashers",play,2.8,0 -39037163,"Arma 2 Operation Arrowhead",purchase,1.0,0 -39037163,"Arma 2 Operation Arrowhead",play,2.6,0 -39037163,"Contagion",purchase,1.0,0 -39037163,"Contagion",play,2.2,0 -39037163,"Star Wars Republic Commando",purchase,1.0,0 -39037163,"Star Wars Republic Commando",play,2.1,0 -39037163,"Fingered",purchase,1.0,0 -39037163,"Fingered",play,1.9,0 -39037163,"Shower With Your Dad Simulator 2015 Do You Still Shower With Your Dad",purchase,1.0,0 -39037163,"Shower With Your Dad Simulator 2015 Do You Still Shower With Your Dad",play,1.5,0 -39037163,"Survarium",purchase,1.0,0 -39037163,"Survarium",play,1.5,0 -39037163,"Spore Creepy & Cute Parts Pack",purchase,1.0,0 -39037163,"Spore Creepy & Cute Parts Pack",play,1.2,0 -39037163,"Portal",purchase,1.0,0 -39037163,"Portal",play,0.7,0 -39037163,"Spore",purchase,1.0,0 -39037163,"Spore",play,0.7,0 -39037163,"The Forest",purchase,1.0,0 -39037163,"The Forest",play,0.2,0 -39037163,"12 Labours of Hercules",purchase,1.0,0 -39037163,"12 Labours of Hercules",play,0.2,0 -39037163,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -39037163,"Amnesia The Dark Descent",purchase,1.0,0 -39037163,"Aperture Tag The Paint Gun Testing Initiative",purchase,1.0,0 -39037163,"Arma 2",purchase,1.0,0 -39037163,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -39037163,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -39037163,"BioShock",purchase,1.0,0 -39037163,"BioShock 2",purchase,1.0,0 -39037163,"BioShock Infinite - Season Pass",purchase,1.0,0 -39037163,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -39037163,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -39037163,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -39037163,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -39037163,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -39037163,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -39037163,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -39037163,"Borderlands The Pre-Sequel",purchase,1.0,0 -39037163,"Chivalry Medieval Warfare",purchase,1.0,0 -39037163,"Darksiders II",purchase,1.0,0 -39037163,"Darksiders II Deathinitive Edition",purchase,1.0,0 -39037163,"Darksiders II Soundtrack",purchase,1.0,0 -39037163,"Darksiders Soundtrack",purchase,1.0,0 -39037163,"Dead Island Epidemic",purchase,1.0,0 -39037163,"Dead Rising 2",purchase,1.0,0 -39037163,"Defiance",purchase,1.0,0 -39037163,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -39037163,"Fallout New Vegas Dead Money",purchase,1.0,0 -39037163,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -39037163,"Fallout Tactics",purchase,1.0,0 -39037163,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -39037163,"Goat Simulator",purchase,1.0,0 -39037163,"GooCubelets",purchase,1.0,0 -39037163,"Grand Theft Auto San Andreas",purchase,1.0,0 -39037163,"Grand Theft Auto San Andreas",purchase,1.0,0 -39037163,"Guns of Icarus Online",purchase,1.0,0 -39037163,"Half-Life 2 Lost Coast",purchase,1.0,0 -39037163,"Heroes & Generals",purchase,1.0,0 -39037163,"Just Cause 2",purchase,1.0,0 -39037163,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -39037163,"Left 4 Dead",purchase,1.0,0 -39037163,"LEGO Batman The Videogame",purchase,1.0,0 -39037163,"Lego Star Wars Saga",purchase,1.0,0 -39037163,"Metro 2033",purchase,1.0,0 -39037163,"ORION Prelude",purchase,1.0,0 -39037163,"Patch testing for Chivalry",purchase,1.0,0 -39037163,"PAYDAY 2",purchase,1.0,0 -39037163,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -39037163,"South Park The Stick of Truth - Super Samurai Spaceman Pack",purchase,1.0,0 -39037163,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -39037163,"Star Wars - Battlefront II",purchase,1.0,0 -39037163,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -39037163,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -39037163,"Star Wars Dark Forces",purchase,1.0,0 -39037163,"Star Wars Empire at War Gold",purchase,1.0,0 -39037163,"Star Wars Knights of the Old Republic",purchase,1.0,0 -39037163,"Star Wars The Force Unleashed II",purchase,1.0,0 -39037163,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -39037163,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -39037163,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -39037163,"Star Wars Starfighter",purchase,1.0,0 -39037163,"Star Wars The Clone Wars Republic Heroes",purchase,1.0,0 -39037163,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -39037163,"State of Decay - Breakdown",purchase,1.0,0 -39037163,"Stellar 2D",purchase,1.0,0 -39037163,"sZone-Online",purchase,1.0,0 -39037163,"theHunter",purchase,1.0,0 -39037163,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -39037163,"Tribes Ascend",purchase,1.0,0 -39037163,"Unturned",purchase,1.0,0 -39037163,"Warface",purchase,1.0,0 -55426012,"DARK SOULS II",purchase,1.0,0 -55426012,"DARK SOULS II",play,213.0,0 -55426012,"Dungeon Defenders",purchase,1.0,0 -55426012,"Dungeon Defenders",play,174.0,0 -55426012,"Kerbal Space Program",purchase,1.0,0 -55426012,"Kerbal Space Program",play,111.0,0 -55426012,"War Thunder",purchase,1.0,0 -55426012,"War Thunder",play,109.0,0 -55426012,"Borderlands",purchase,1.0,0 -55426012,"Borderlands",play,108.0,0 -55426012,"Left 4 Dead 2",purchase,1.0,0 -55426012,"Left 4 Dead 2",play,87.0,0 -55426012,"PAYDAY 2",purchase,1.0,0 -55426012,"PAYDAY 2",play,85.0,0 -55426012,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -55426012,"The Witcher 2 Assassins of Kings Enhanced Edition",play,82.0,0 -55426012,"Battlefield Bad Company 2",purchase,1.0,0 -55426012,"Battlefield Bad Company 2",play,80.0,0 -55426012,"Divinity II Developer's Cut",purchase,1.0,0 -55426012,"Divinity II Developer's Cut",play,59.0,0 -55426012,"Killing Floor",purchase,1.0,0 -55426012,"Killing Floor",play,59.0,0 -55426012,"Dragon Age Origins",purchase,1.0,0 -55426012,"Dragon Age Origins",play,55.0,0 -55426012,"Borderlands 2",purchase,1.0,0 -55426012,"Borderlands 2",play,50.0,0 -55426012,"The Witcher Enhanced Edition",purchase,1.0,0 -55426012,"The Witcher Enhanced Edition",play,50.0,0 -55426012,"Portal 2",purchase,1.0,0 -55426012,"Portal 2",play,38.0,0 -55426012,"Dungeon Defenders II",purchase,1.0,0 -55426012,"Dungeon Defenders II",play,35.0,0 -55426012,"Age of Empires II HD Edition",purchase,1.0,0 -55426012,"Age of Empires II HD Edition",play,25.0,0 -55426012,"Fallout New Vegas",purchase,1.0,0 -55426012,"Fallout New Vegas",play,24.0,0 -55426012,"Warframe",purchase,1.0,0 -55426012,"Warframe",play,24.0,0 -55426012,"Sleeping Dogs",purchase,1.0,0 -55426012,"Sleeping Dogs",play,24.0,0 -55426012,"Neverwinter Nights 2 Platinum",purchase,1.0,0 -55426012,"Neverwinter Nights 2 Platinum",play,23.0,0 -55426012,"Counter-Strike Global Offensive",purchase,1.0,0 -55426012,"Counter-Strike Global Offensive",play,22.0,0 -55426012,"Legend of Grimrock",purchase,1.0,0 -55426012,"Legend of Grimrock",play,22.0,0 -55426012,"PlanetSide 2",purchase,1.0,0 -55426012,"PlanetSide 2",play,19.7,0 -55426012,"FTL Faster Than Light",purchase,1.0,0 -55426012,"FTL Faster Than Light",play,19.3,0 -55426012,"Sanctum",purchase,1.0,0 -55426012,"Sanctum",play,19.2,0 -55426012,"Eets Munchies",purchase,1.0,0 -55426012,"Eets Munchies",play,18.4,0 -55426012,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -55426012,"Batman Arkham Asylum GOTY Edition",play,17.2,0 -55426012,"Terraria",purchase,1.0,0 -55426012,"Terraria",play,15.2,0 -55426012,"Halo Spartan Assault",purchase,1.0,0 -55426012,"Halo Spartan Assault",play,15.1,0 -55426012,"Torchlight II",purchase,1.0,0 -55426012,"Torchlight II",play,14.8,0 -55426012,"The Walking Dead",purchase,1.0,0 -55426012,"The Walking Dead",play,14.6,0 -55426012,"Beat Hazard",purchase,1.0,0 -55426012,"Beat Hazard",play,14.5,0 -55426012,"Batman Arkham City GOTY",purchase,1.0,0 -55426012,"Batman Arkham City GOTY",play,13.3,0 -55426012,"SpeedRunners",purchase,1.0,0 -55426012,"SpeedRunners",play,13.0,0 -55426012,"Rogue Legacy",purchase,1.0,0 -55426012,"Rogue Legacy",play,12.2,0 -55426012,"Magicka",purchase,1.0,0 -55426012,"Magicka",play,12.1,0 -55426012,"Don't Starve Together Beta",purchase,1.0,0 -55426012,"Don't Starve Together Beta",play,12.0,0 -55426012,"Darksiders",purchase,1.0,0 -55426012,"Darksiders",play,11.9,0 -55426012,"Saints Row The Third",purchase,1.0,0 -55426012,"Saints Row The Third",play,11.7,0 -55426012,"Mount Your Friends",purchase,1.0,0 -55426012,"Mount Your Friends",play,10.7,0 -55426012,"Half-Life 2",purchase,1.0,0 -55426012,"Half-Life 2",play,10.3,0 -55426012,"Trine 2",purchase,1.0,0 -55426012,"Trine 2",play,10.3,0 -55426012,"Batman Arkham Origins",purchase,1.0,0 -55426012,"Batman Arkham Origins",play,10.2,0 -55426012,"The Walking Dead Season Two",purchase,1.0,0 -55426012,"The Walking Dead Season Two",play,9.7,0 -55426012,"Audiosurf",purchase,1.0,0 -55426012,"Audiosurf",play,9.7,0 -55426012,"Divinity Original Sin",purchase,1.0,0 -55426012,"Divinity Original Sin",play,9.3,0 -55426012,"Sacred 3",purchase,1.0,0 -55426012,"Sacred 3",play,8.0,0 -55426012,"Alan Wake",purchase,1.0,0 -55426012,"Alan Wake",play,7.5,0 -55426012,"Bastion",purchase,1.0,0 -55426012,"Bastion",play,6.9,0 -55426012,"The Elder Scrolls V Skyrim",purchase,1.0,0 -55426012,"The Elder Scrolls V Skyrim",play,6.4,0 -55426012,"Half-Life 2 Episode Two",purchase,1.0,0 -55426012,"Half-Life 2 Episode Two",play,6.3,0 -55426012,"Mirror's Edge",purchase,1.0,0 -55426012,"Mirror's Edge",play,6.3,0 -55426012,"The Lord of the Rings War in the North",purchase,1.0,0 -55426012,"The Lord of the Rings War in the North",play,6.1,0 -55426012,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -55426012,"F.E.A.R. 2 Project Origin",play,5.8,0 -55426012,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -55426012,"Deus Ex Human Revolution - Director's Cut",play,5.8,0 -55426012,"The Binding of Isaac",purchase,1.0,0 -55426012,"The Binding of Isaac",play,5.7,0 -55426012,"Star Wars Knights of the Old Republic",purchase,1.0,0 -55426012,"Star Wars Knights of the Old Republic",play,5.6,0 -55426012,"Company of Heroes Tales of Valor",purchase,1.0,0 -55426012,"Company of Heroes Tales of Valor",play,5.4,0 -55426012,"Medal of Honor(TM) Single Player",purchase,1.0,0 -55426012,"Medal of Honor(TM) Single Player",play,5.3,0 -55426012,"Portal",purchase,1.0,0 -55426012,"Portal",play,5.0,0 -55426012,"Sanctum 2",purchase,1.0,0 -55426012,"Sanctum 2",play,5.0,0 -55426012,"Metro 2033",purchase,1.0,0 -55426012,"Metro 2033",play,4.9,0 -55426012,"Dishonored",purchase,1.0,0 -55426012,"Dishonored",play,4.8,0 -55426012,"Sniper Elite V2",purchase,1.0,0 -55426012,"Sniper Elite V2",play,4.7,0 -55426012,"Batman Arkham City",purchase,1.0,0 -55426012,"Batman Arkham City",play,4.5,0 -55426012,"Natural Selection 2",purchase,1.0,0 -55426012,"Natural Selection 2",play,4.5,0 -55426012,"Crysis",purchase,1.0,0 -55426012,"Crysis",play,4.5,0 -55426012,"Just Cause 2",purchase,1.0,0 -55426012,"Just Cause 2",play,4.3,0 -55426012,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -55426012,"Warhammer 40,000 Dawn of War II",play,4.2,0 -55426012,"BattleBlock Theater",purchase,1.0,0 -55426012,"BattleBlock Theater",play,3.8,0 -55426012,"Lords Of The Fallen",purchase,1.0,0 -55426012,"Lords Of The Fallen",play,3.7,0 -55426012,"BioShock",purchase,1.0,0 -55426012,"BioShock",play,3.6,0 -55426012,"Metro Last Light",purchase,1.0,0 -55426012,"Metro Last Light",play,3.6,0 -55426012,"Max Payne 3",purchase,1.0,0 -55426012,"Max Payne 3",play,3.4,0 -55426012,"The Ship",purchase,1.0,0 -55426012,"The Ship",play,3.4,0 -55426012,"Psychonauts",purchase,1.0,0 -55426012,"Psychonauts",play,3.3,0 -55426012,"The Forest",purchase,1.0,0 -55426012,"The Forest",play,3.2,0 -55426012,"Half-Life 2 Episode One",purchase,1.0,0 -55426012,"Half-Life 2 Episode One",play,3.2,0 -55426012,"Darksiders II",purchase,1.0,0 -55426012,"Darksiders II",play,2.8,0 -55426012,"Alien Swarm",purchase,1.0,0 -55426012,"Alien Swarm",play,2.8,0 -55426012,"E.Y.E Divine Cybermancy",purchase,1.0,0 -55426012,"E.Y.E Divine Cybermancy",play,2.8,0 -55426012,"Cave Story+",purchase,1.0,0 -55426012,"Cave Story+",play,2.5,0 -55426012,"Scribblenauts Unlimited",purchase,1.0,0 -55426012,"Scribblenauts Unlimited",play,2.2,0 -55426012,"Unturned",purchase,1.0,0 -55426012,"Unturned",play,2.1,0 -55426012,"Two Worlds II",purchase,1.0,0 -55426012,"Two Worlds II",play,1.9,0 -55426012,"Brtal Legend",purchase,1.0,0 -55426012,"Brtal Legend",play,1.9,0 -55426012,"Star Wars The Force Unleashed II",purchase,1.0,0 -55426012,"Star Wars The Force Unleashed II",play,1.8,0 -55426012,"FEZ",purchase,1.0,0 -55426012,"FEZ",play,1.8,0 -55426012,"Alice Madness Returns",purchase,1.0,0 -55426012,"Alice Madness Returns",play,1.7,0 -55426012,"Empire Total War",purchase,1.0,0 -55426012,"Empire Total War",play,1.5,0 -55426012,"LIMBO",purchase,1.0,0 -55426012,"LIMBO",play,1.5,0 -55426012,"Europa Universalis III",purchase,1.0,0 -55426012,"Europa Universalis III",play,1.5,0 -55426012,"Amnesia The Dark Descent",purchase,1.0,0 -55426012,"Amnesia The Dark Descent",play,1.4,0 -55426012,"Red Faction Armageddon",purchase,1.0,0 -55426012,"Red Faction Armageddon",play,1.4,0 -55426012,"Far Cry 2",purchase,1.0,0 -55426012,"Far Cry 2",play,1.1,0 -55426012,"Dead Space",purchase,1.0,0 -55426012,"Dead Space",play,1.1,0 -55426012,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -55426012,"Burnout Paradise The Ultimate Box",play,1.1,0 -55426012,"Dota 2",purchase,1.0,0 -55426012,"Dota 2",play,1.0,0 -55426012,"The Stanley Parable",purchase,1.0,0 -55426012,"The Stanley Parable",play,1.0,0 -55426012,"Project Zomboid",purchase,1.0,0 -55426012,"Project Zomboid",play,1.0,0 -55426012,"Command and Conquer 4 Tiberian Twilight",purchase,1.0,0 -55426012,"Command and Conquer 4 Tiberian Twilight",play,1.0,0 -55426012,"Xenonauts",purchase,1.0,0 -55426012,"Xenonauts",play,0.9,0 -55426012,"Bad Rats",purchase,1.0,0 -55426012,"Bad Rats",play,0.9,0 -55426012,"Team Fortress 2",purchase,1.0,0 -55426012,"Team Fortress 2",play,0.9,0 -55426012,"Orcs Must Die!",purchase,1.0,0 -55426012,"Orcs Must Die!",play,0.9,0 -55426012,"Brothers - A Tale of Two Sons",purchase,1.0,0 -55426012,"Brothers - A Tale of Two Sons",play,0.8,0 -55426012,"Half-Life Source",purchase,1.0,0 -55426012,"Half-Life Source",play,0.8,0 -55426012,"Warface",purchase,1.0,0 -55426012,"Warface",play,0.8,0 -55426012,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -55426012,"S.T.A.L.K.E.R. Call of Pripyat",play,0.8,0 -55426012,"Risen 2 - Dark Waters",purchase,1.0,0 -55426012,"Risen 2 - Dark Waters",play,0.6,0 -55426012,"Mount & Blade",purchase,1.0,0 -55426012,"Mount & Blade",play,0.6,0 -55426012,"Portal Stories Mel",purchase,1.0,0 -55426012,"Portal Stories Mel",play,0.6,0 -55426012,"Kingdoms Rise",purchase,1.0,0 -55426012,"Kingdoms Rise",play,0.5,0 -55426012,"DOOM 3",purchase,1.0,0 -55426012,"DOOM 3",play,0.5,0 -55426012,"Devil May Cry 4",purchase,1.0,0 -55426012,"Devil May Cry 4",play,0.5,0 -55426012,"Arma 2",purchase,1.0,0 -55426012,"Arma 2",play,0.4,0 -55426012,"Before the Echo",purchase,1.0,0 -55426012,"Before the Echo",play,0.4,0 -55426012,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -55426012,"The Secret of Monkey Island Special Edition",play,0.3,0 -55426012,"The Ship Tutorial",purchase,1.0,0 -55426012,"The Ship Tutorial",play,0.3,0 -55426012,"Mark of the Ninja",purchase,1.0,0 -55426012,"Mark of the Ninja",play,0.3,0 -55426012,"Half-Life 2 Lost Coast",purchase,1.0,0 -55426012,"Half-Life 2 Lost Coast",play,0.2,0 -55426012,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -55426012,"Sam & Max 301 The Penal Zone",play,0.2,0 -55426012,"Star Wars Republic Commando",purchase,1.0,0 -55426012,"Star Wars Republic Commando",play,0.2,0 -55426012,"Starbound",purchase,1.0,0 -55426012,"Starbound",play,0.2,0 -55426012,"1000 Amps",purchase,1.0,0 -55426012,"1000 Amps",play,0.1,0 -55426012,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -55426012,"Superbrothers Sword & Sworcery EP",play,0.1,0 -55426012,"A Virus Named TOM",purchase,1.0,0 -55426012,"A Virus Named TOM",play,0.1,0 -55426012,"Arma 2 Operation Arrowhead",purchase,1.0,0 -55426012,"DOOM 3 Resurrection of Evil",purchase,1.0,0 -55426012,"Sacred 2 Gold",purchase,1.0,0 -55426012,"The Elder Scrolls III Morrowind",purchase,1.0,0 -55426012,"Red Faction",purchase,1.0,0 -55426012,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -55426012,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -55426012,"Age of Mythology Extended Edition",purchase,1.0,0 -55426012,"Alan Wake's American Nightmare",purchase,1.0,0 -55426012,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -55426012,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -55426012,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -55426012,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -55426012,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -55426012,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -55426012,"Beyond Divinity",purchase,1.0,0 -55426012,"BioShock 2",purchase,1.0,0 -55426012,"Blood Bowl Legendary Edition",purchase,1.0,0 -55426012,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -55426012,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -55426012,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -55426012,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -55426012,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -55426012,"Cities in Motion 2",purchase,1.0,0 -55426012,"Cities XL Platinum",purchase,1.0,0 -55426012,"Closure",purchase,1.0,0 -55426012,"Company of Heroes",purchase,1.0,0 -55426012,"Company of Heroes (New Steam Version)",purchase,1.0,0 -55426012,"Company of Heroes Opposing Fronts",purchase,1.0,0 -55426012,"Confrontation",purchase,1.0,0 -55426012,"Crysis 2 Maximum Edition",purchase,1.0,0 -55426012,"Darksiders II Deathinitive Edition",purchase,1.0,0 -55426012,"Darksiders II Soundtrack",purchase,1.0,0 -55426012,"Darksiders Soundtrack",purchase,1.0,0 -55426012,"DARK SOULS II - Season Pass",purchase,1.0,0 -55426012,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -55426012,"Dead Island",purchase,1.0,0 -55426012,"Dead Rising 2",purchase,1.0,0 -55426012,"Demigod",purchase,1.0,0 -55426012,"Divine Divinity",purchase,1.0,0 -55426012,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -55426012,"Don't Starve",purchase,1.0,0 -55426012,"Don't Starve Reign of Giants",purchase,1.0,0 -55426012,"Europa Universalis III Divine Wind",purchase,1.0,0 -55426012,"Europa Universalis III Heir to the Throne",purchase,1.0,0 -55426012,"F.E.A.R. 3",purchase,1.0,0 -55426012,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -55426012,"Fallout New Vegas Dead Money",purchase,1.0,0 -55426012,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -55426012,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -55426012,"Game of Thrones ",purchase,1.0,0 -55426012,"Garry's Mod",purchase,1.0,0 -55426012,"Half-Life Deathmatch Source",purchase,1.0,0 -55426012,"Hector Ep 1",purchase,1.0,0 -55426012,"Hector Ep 2",purchase,1.0,0 -55426012,"Hector Ep 3",purchase,1.0,0 -55426012,"Indie Game The Movie",purchase,1.0,0 -55426012,"Magicka Vietnam",purchase,1.0,0 -55426012,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -55426012,"Medal of Honor Pre-Order",purchase,1.0,0 -55426012,"Medieval II Total War",purchase,1.0,0 -55426012,"Medieval II Total War Kingdoms",purchase,1.0,0 -55426012,"Monkey Island 2 Special Edition",purchase,1.0,0 -55426012,"Mount & Blade Warband",purchase,1.0,0 -55426012,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -55426012,"Mount & Blade With Fire and Sword",purchase,1.0,0 -55426012,"Napoleon Total War",purchase,1.0,0 -55426012,"Offspring Fling!",purchase,1.0,0 -55426012,"Orcs Must Die! 2",purchase,1.0,0 -55426012,"Path of Exile",purchase,1.0,0 -55426012,"Poker Night at the Inventory",purchase,1.0,0 -55426012,"Psychonauts Demo",purchase,1.0,0 -55426012,"Puzzle Agent",purchase,1.0,0 -55426012,"Puzzle Agent 2",purchase,1.0,0 -55426012,"RAW - Realms of Ancient War",purchase,1.0,0 -55426012,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -55426012,"Risen",purchase,1.0,0 -55426012,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -55426012,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -55426012,"Rome Total War",purchase,1.0,0 -55426012,"Rome Total War - Alexander",purchase,1.0,0 -55426012,"Sacred 3 Underworld Story",purchase,1.0,0 -55426012,"Sacred Citadel",purchase,1.0,0 -55426012,"Saints Row 2",purchase,1.0,0 -55426012,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -55426012,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -55426012,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -55426012,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -55426012,"Serious Sam 3 BFE",purchase,1.0,0 -55426012,"Shank 2",purchase,1.0,0 -55426012,"Snapshot",purchase,1.0,0 -55426012,"Starbound - Unstable",purchase,1.0,0 -55426012,"Star Wars - Battlefront II",purchase,1.0,0 -55426012,"Star Wars Dark Forces",purchase,1.0,0 -55426012,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -55426012,"The Basement Collection",purchase,1.0,0 -55426012,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -55426012,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -55426012,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -55426012,"The Ship Single Player",purchase,1.0,0 -55426012,"The Void",purchase,1.0,0 -55426012,"Titan Quest",purchase,1.0,0 -55426012,"Torchlight",purchase,1.0,0 -55426012,"Wallace & Gromit Ep 1 Fright of the Bumblebees",purchase,1.0,0 -55426012,"Wallace & Gromit Ep 2 The Last Resort",purchase,1.0,0 -55426012,"Wallace & Gromit Ep 3 Muzzled!",purchase,1.0,0 -55426012,"Wallace & Gromit Ep 4 The Bogey Man",purchase,1.0,0 -187731882,"Unturned",purchase,1.0,0 -187731882,"Unturned",play,43.0,0 -187731882,"Warface",purchase,1.0,0 -187731882,"Warface",play,18.2,0 -187731882,"Team Fortress 2",purchase,1.0,0 -187731882,"Team Fortress 2",play,1.6,0 -246802497,"Passing Pineview Forest",purchase,1.0,0 -137483421,"Arma 2 Operation Arrowhead",purchase,1.0,0 -137483421,"Arma 2 Operation Arrowhead",play,0.4,0 -137483421,"Arma 2",purchase,1.0,0 -137483421,"Arma 2",play,0.2,0 -137483421,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -208821410,"BattleBlock Theater",purchase,1.0,0 -208821410,"BattleBlock Theater",play,54.0,0 -208821410,"SOMA",purchase,1.0,0 -208821410,"SOMA",play,22.0,0 -208821410,"Neverwinter",purchase,1.0,0 -208821410,"Neverwinter",play,2.5,0 -208821410,"Five Nights at Freddy's 4",purchase,1.0,0 -208821410,"Five Nights at Freddy's 4",play,1.7,0 -208821410,"WARMODE",purchase,1.0,0 -208821410,"WARMODE",play,0.1,0 -208821410,"Unturned",purchase,1.0,0 -149795092,"FaceRig",purchase,1.0,0 -149795092,"FaceRig",play,1.6,0 -149795092,"Don't Starve Together Beta",purchase,1.0,0 -149795092,"Don't Starve Together Beta",play,1.4,0 -149795092,"Don't Starve",purchase,1.0,0 -149795092,"Don't Starve",play,0.6,0 -149795092,"Dota 2",purchase,1.0,0 -149795092,"Dota 2",play,0.6,0 -149795092,"Kung Fury",purchase,1.0,0 -149795092,"Kung Fury",play,0.2,0 -149795092,"Don't Starve Shipwrecked",purchase,1.0,0 -149795092,"Don't Starve Reign of Giants",purchase,1.0,0 -188533496,"Dota 2",purchase,1.0,0 -188533496,"Dota 2",play,3.2,0 -285426740,"Counter-Strike Global Offensive",purchase,1.0,0 -285426740,"Counter-Strike Global Offensive",play,23.0,0 -285426740,"Cry of Fear",purchase,1.0,0 -285426740,"Warface",purchase,1.0,0 -109207860,"Dota 2",purchase,1.0,0 -109207860,"Dota 2",play,661.0,0 -109207860,"Team Fortress 2",purchase,1.0,0 -109207860,"Team Fortress 2",play,61.0,0 -109207860,"Left 4 Dead 2",purchase,1.0,0 -109207860,"Left 4 Dead 2",play,5.7,0 -109207860,"DC Universe Online",purchase,1.0,0 -109207860,"DC Universe Online",play,0.9,0 -109207860,"Unturned",purchase,1.0,0 -109207860,"Unturned",play,0.1,0 -109207860,"Counter-Strike Nexon Zombies",purchase,1.0,0 -109207860,"Obulis",purchase,1.0,0 -233316747,"Don't Starve Together Beta",purchase,1.0,0 -233316747,"Don't Starve Together Beta",play,6.0,0 -213506795,"Dota 2",purchase,1.0,0 -213506795,"Dota 2",play,4.7,0 -45016429,"Zombie Panic Source",purchase,1.0,0 -45016429,"Zombie Panic Source",play,0.1,0 -25337857,"Counter-Strike Global Offensive",purchase,1.0,0 -25337857,"Counter-Strike Global Offensive",play,741.0,0 -25337857,"Counter-Strike Source",purchase,1.0,0 -25337857,"Counter-Strike Source",play,532.0,0 -25337857,"Left 4 Dead 2",purchase,1.0,0 -25337857,"Left 4 Dead 2",play,124.0,0 -25337857,"Killing Floor",purchase,1.0,0 -25337857,"Killing Floor",play,12.0,0 -25337857,"Half-Life 2 Deathmatch",purchase,1.0,0 -25337857,"Half-Life 2 Deathmatch",play,11.6,0 -25337857,"Sniper Elite V2",purchase,1.0,0 -25337857,"Sniper Elite V2",play,10.6,0 -25337857,"Garry's Mod",purchase,1.0,0 -25337857,"Garry's Mod",play,10.3,0 -25337857,"Blacklight Retribution",purchase,1.0,0 -25337857,"Blacklight Retribution",play,9.7,0 -25337857,"Team Fortress 2",purchase,1.0,0 -25337857,"Team Fortress 2",play,9.5,0 -25337857,"Portal",purchase,1.0,0 -25337857,"Portal",play,3.0,0 -25337857,"Zombie Panic Source",purchase,1.0,0 -25337857,"Zombie Panic Source",play,1.7,0 -25337857,"Half-Life 2 Lost Coast",purchase,1.0,0 -25337857,"Half-Life 2 Lost Coast",play,1.2,0 -25337857,"Dota 2",purchase,1.0,0 -25337857,"Dota 2",play,0.6,0 -25337857,"Counter-Strike",purchase,1.0,0 -25337857,"Counter-Strike",play,0.5,0 -25337857,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -25337857,"Killing Floor Mod Defence Alliance 2",play,0.4,0 -25337857,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -25337857,"Counter-Strike Condition Zero Deleted Scenes",play,0.4,0 -25337857,"Counter-Strike Nexon Zombies",purchase,1.0,0 -25337857,"Counter-Strike Nexon Zombies",play,0.3,0 -25337857,"Age of Chivalry",purchase,1.0,0 -25337857,"Age of Chivalry",play,0.3,0 -25337857,"Aura Kingdom",purchase,1.0,0 -25337857,"Counter-Strike Condition Zero",purchase,1.0,0 -25337857,"Day of Defeat",purchase,1.0,0 -25337857,"Deathmatch Classic",purchase,1.0,0 -25337857,"FreeStyle2 Street Basketball",purchase,1.0,0 -25337857,"Loadout",purchase,1.0,0 -25337857,"Path of Exile",purchase,1.0,0 -25337857,"Ricochet",purchase,1.0,0 -25337857,"TERA",purchase,1.0,0 -156617310,"Dota 2",purchase,1.0,0 -156617310,"Dota 2",play,0.6,0 -29777760,"Counter-Strike Source",purchase,1.0,0 -29777760,"Counter-Strike Source",play,3.7,0 -29777760,"Day of Defeat Source",purchase,1.0,0 -29777760,"Day of Defeat Source",play,2.5,0 -29777760,"Half-Life 2 Deathmatch",purchase,1.0,0 -29777760,"Half-Life 2 Lost Coast",purchase,1.0,0 -150457019,"Dota 2",purchase,1.0,0 -150457019,"Dota 2",play,75.0,0 -197904909,"Counter-Strike Global Offensive",purchase,1.0,0 -197904909,"Counter-Strike Global Offensive",play,214.0,0 -197904909,"Counter-Strike",purchase,1.0,0 -197904909,"Counter-Strike",play,144.0,0 -197904909,"Dota 2",purchase,1.0,0 -197904909,"Dota 2",play,23.0,0 -197904909,"PAYDAY The Heist",purchase,1.0,0 -197904909,"PAYDAY The Heist",play,7.3,0 -197904909,"Loadout Campaign Beta",purchase,1.0,0 -197904909,"Loadout Campaign Beta",play,3.7,0 -197904909,"Loadout",purchase,1.0,0 -197904909,"Loadout",play,3.4,0 -197904909,"DiggerOnline",purchase,1.0,0 -197904909,"DiggerOnline",play,2.8,0 -197904909,"Counter-Strike Nexon Zombies",purchase,1.0,0 -197904909,"Counter-Strike Nexon Zombies",play,2.7,0 -197904909,"Unturned",purchase,1.0,0 -197904909,"Unturned",play,1.3,0 -197904909,"Double Action Boogaloo",purchase,1.0,0 -197904909,"Double Action Boogaloo",play,1.2,0 -197904909,"Fistful of Frags",purchase,1.0,0 -197904909,"Fistful of Frags",play,0.9,0 -197904909,"Team Fortress 2",purchase,1.0,0 -197904909,"Team Fortress 2",play,0.9,0 -197904909,"Dead Island Epidemic",purchase,1.0,0 -197904909,"Dead Island Epidemic",play,0.7,0 -197904909,"Counter-Strike Source",purchase,1.0,0 -197904909,"Counter-Strike Source",play,0.7,0 -197904909,"BLOCKADE 3D",purchase,1.0,0 -197904909,"BLOCKADE 3D",play,0.4,0 -197904909,"Dizzel",purchase,1.0,0 -197904909,"Dizzel",play,0.3,0 -197904909,"Wild Warfare",purchase,1.0,0 -197904909,"Wild Warfare",play,0.2,0 -197904909,"Tribes Ascend",purchase,1.0,0 -197904909,"Tribes Ascend",play,0.2,0 -197904909,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -197904909,"Counter-Strike Condition Zero Deleted Scenes",play,0.2,0 -197904909,"Saints Row IV Inauguration Station",purchase,1.0,0 -197904909,"Saints Row IV Inauguration Station",play,0.2,0 -197904909,"Robocraft",purchase,1.0,0 -197904909,"Robocraft",play,0.2,0 -197904909,"Arma 2 Free",purchase,1.0,0 -197904909,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -197904909,"Nosgoth",purchase,1.0,0 -197904909,"Saints Row The Third - Initiation Station",purchase,1.0,0 -197904909,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -197904909,"Age of Empires Online",purchase,1.0,0 -197904909,"Amazing World",purchase,1.0,0 -197904909,"America's Army 3",purchase,1.0,0 -197904909,"America's Army Proving Grounds",purchase,1.0,0 -197904909,"APB Reloaded",purchase,1.0,0 -197904909,"Arcane Saga Online",purchase,1.0,0 -197904909,"Archeblade",purchase,1.0,0 -197904909,"Arctic Combat",purchase,1.0,0 -197904909,"Atlantica Online",purchase,1.0,0 -197904909,"Aura Kingdom",purchase,1.0,0 -197904909,"Bloodline Champions",purchase,1.0,0 -197904909,"Brawl Busters",purchase,1.0,0 -197904909,"Bullet Run",purchase,1.0,0 -197904909,"C9",purchase,1.0,0 -197904909,"Cakewalk Loop Manager",purchase,1.0,0 -197904909,"Champions Online",purchase,1.0,0 -197904909,"Combat Arms",purchase,1.0,0 -197904909,"Construct 2 Free",purchase,1.0,0 -197904909,"Counter-Strike Condition Zero",purchase,1.0,0 -197904909,"CrimeCraft GangWars",purchase,1.0,0 -197904909,"Defiance",purchase,1.0,0 -197904909,"District 187",purchase,1.0,0 -197904909,"Dragon Nest",purchase,1.0,0 -197904909,"Dragon Nest Europe",purchase,1.0,0 -197904909,"Dragons and Titans",purchase,1.0,0 -197904909,"Dungeon Fighter Online",purchase,1.0,0 -197904909,"Dungeonland",purchase,1.0,0 -197904909,"Dungeon Party",purchase,1.0,0 -197904909,"Dwarfs F2P",purchase,1.0,0 -197904909,"EverQuest Free-to-Play",purchase,1.0,0 -197904909,"EverQuest II",purchase,1.0,0 -197904909,"EVGA PrecisionX 16",purchase,1.0,0 -197904909,"Face of Mankind",purchase,1.0,0 -197904909,"Fallen Earth",purchase,1.0,0 -197904909,"Fiesta Online",purchase,1.0,0 -197904909,"Fiesta Online NA",purchase,1.0,0 -197904909,"Firefall",purchase,1.0,0 -197904909,"Floating Point",purchase,1.0,0 -197904909,"Football Superstars",purchase,1.0,0 -197904909,"Forsaken World ",purchase,1.0,0 -197904909,"Frontline Tactics",purchase,1.0,0 -197904909,"Global Agenda",purchase,1.0,0 -197904909,"Gotham City Impostors Free To Play",purchase,1.0,0 -197904909,"Grand Chase",purchase,1.0,0 -197904909,"Guns and Robots",purchase,1.0,0 -197904909,"Heroes & Generals",purchase,1.0,0 -197904909,"HOMEFRONT Demo",purchase,1.0,0 -197904909,"La Tale",purchase,1.0,0 -197904909,"Mabinogi",purchase,1.0,0 -197904909,"Magic The Gathering Tactics",purchase,1.0,0 -197904909,"March of War",purchase,1.0,0 -197904909,"Marvel Heroes 2015",purchase,1.0,0 -197904909,"Memoir '44 Online",purchase,1.0,0 -197904909,"MicroVolts Surge",purchase,1.0,0 -197904909,"Moon Breakers",purchase,1.0,0 -197904909,"NEOTOKYO",purchase,1.0,0 -197904909,"Neverwinter",purchase,1.0,0 -197904909,"Only If",purchase,1.0,0 -197904909,"Pandora Saga Weapons of Balance",purchase,1.0,0 -197904909,"Panzar",purchase,1.0,0 -197904909,"Path of Exile",purchase,1.0,0 -197904909,"Pinball Arcade",purchase,1.0,0 -197904909,"PlanetSide 2",purchase,1.0,0 -197904909,"Pox Nora",purchase,1.0,0 -197904909,"Puzzle Pirates",purchase,1.0,0 -197904909,"Quantum Rush Online",purchase,1.0,0 -197904909,"RaceRoom Racing Experience ",purchase,1.0,0 -197904909,"Ragnarok Online 2",purchase,1.0,0 -197904909,"Realm of the Mad God",purchase,1.0,0 -197904909,"Reversion - The Escape",purchase,1.0,0 -197904909,"Rise of Incarnates",purchase,1.0,0 -197904909,"ROSE Online",purchase,1.0,0 -197904909,"Royal Quest",purchase,1.0,0 -197904909,"Rusty Hearts",purchase,1.0,0 -197904909,"Saira",purchase,1.0,0 -197904909,"Shadow Warrior Classic (1997)",purchase,1.0,0 -197904909,"Spiral Knights",purchase,1.0,0 -197904909,"Star Conflict",purchase,1.0,0 -197904909,"Star Trek Online",purchase,1.0,0 -197904909,"Stronghold Kingdoms",purchase,1.0,0 -197904909,"Sunrider Mask of Arcadius",purchase,1.0,0 -197904909,"Super Crate Box",purchase,1.0,0 -197904909,"Super Monday Night Combat",purchase,1.0,0 -197904909,"Tactical Intervention",purchase,1.0,0 -197904909,"The Banner Saga Factions",purchase,1.0,0 -197904909,"The Expendabros",purchase,1.0,0 -197904909,"The Forgotten Ones",purchase,1.0,0 -197904909,"The Lord of the Rings Online",purchase,1.0,0 -197904909,"Thinking with Time Machine",purchase,1.0,0 -197904909,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -197904909,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -197904909,"Uncharted Waters Online",purchase,1.0,0 -197904909,"Velvet Sundown",purchase,1.0,0 -197904909,"Vindictus",purchase,1.0,0 -197904909,"Warface",purchase,1.0,0 -197904909,"Warframe",purchase,1.0,0 -197904909,"War Inc. Battlezone",purchase,1.0,0 -197904909,"War Thunder",purchase,1.0,0 -197904909,"World of Battles",purchase,1.0,0 -197904909,"World of Guns Gun Disassembly",purchase,1.0,0 -197904909,"Xam",purchase,1.0,0 -29148231,"Counter-Strike Condition Zero",purchase,1.0,0 -29148231,"Counter-Strike Condition Zero",play,157.0,0 -29148231,"Counter-Strike",purchase,1.0,0 -29148231,"Counter-Strike",play,17.6,0 -29148231,"Half-Life 2 Deathmatch",purchase,1.0,0 -29148231,"Half-Life 2 Deathmatch",play,0.2,0 -29148231,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -29148231,"Day of Defeat",purchase,1.0,0 -29148231,"Deathmatch Classic",purchase,1.0,0 -29148231,"Half-Life 2 Lost Coast",purchase,1.0,0 -29148231,"Ricochet",purchase,1.0,0 -191637518,"Counter-Strike Global Offensive",purchase,1.0,0 -191637518,"Counter-Strike Global Offensive",play,269.0,0 -191637518,"Arma 3",purchase,1.0,0 -191637518,"Arma 3",play,186.0,0 -191637518,"War Thunder",purchase,1.0,0 -191637518,"War Thunder",play,3.6,0 -191637518,"Unturned",purchase,1.0,0 -191637518,"Unturned",play,3.5,0 -191637518,"Test Drive Unlimited 2",purchase,1.0,0 -191637518,"Test Drive Unlimited 2",play,1.3,0 -191637518,"Robocraft",purchase,1.0,0 -191637518,"Robocraft",play,0.4,0 -191637518,"theHunter",purchase,1.0,0 -191637518,"AdVenture Capitalist",purchase,1.0,0 -191637518,"Arma 3 Helicopters",purchase,1.0,0 -191637518,"Arma 3 Karts",purchase,1.0,0 -191637518,"Arma 3 Marksmen",purchase,1.0,0 -191637518,"Arma 3 Zeus",purchase,1.0,0 -191637518,"Bad Rats",purchase,1.0,0 -191637518,"Happy Wars",purchase,1.0,0 -280527612,"Dota 2",purchase,1.0,0 -280527612,"Dota 2",play,4.0,0 -188684779,"Don't Starve Together Beta",purchase,1.0,0 -188684779,"Don't Starve Together Beta",play,3.7,0 -188684779,"Unturned",purchase,1.0,0 -188684779,"Unturned",play,3.1,0 -188684779,"Fallen Earth",purchase,1.0,0 -188684779,"Fallen Earth",play,0.2,0 -188684779,"Don't Starve",purchase,1.0,0 -93269664,"Dota 2",purchase,1.0,0 -93269664,"Dota 2",play,12.3,0 -167385563,"Dota 2",purchase,1.0,0 -167385563,"Dota 2",play,4.1,0 -156321775,"LEGO MARVEL Super Heroes",purchase,1.0,0 -156321775,"LEGO MARVEL Super Heroes",play,2.5,0 -309188905,"Counter-Strike Nexon Zombies",purchase,1.0,0 -309188905,"Counter-Strike Nexon Zombies",play,6.1,0 -309188905,"Unturned",purchase,1.0,0 -309188905,"Unturned",play,0.8,0 -168135178,"Dota 2",purchase,1.0,0 -168135178,"Dota 2",play,7.0,0 -236282125,"Dota 2",purchase,1.0,0 -236282125,"Dota 2",play,1.2,0 -292917073,"Warframe",purchase,1.0,0 -292917073,"Warframe",play,0.3,0 -258503400,"Dota 2",purchase,1.0,0 -258503400,"Dota 2",play,199.0,0 -61003041,"Sid Meier's Civilization V",purchase,1.0,0 -61003041,"Sid Meier's Civilization V",play,21.0,0 -61003041,"Counter-Strike Source",purchase,1.0,0 -61003041,"Counter-Strike Source",play,6.7,0 -150762951,"Papers, Please",purchase,1.0,0 -150762951,"Papers, Please",play,0.3,0 -171691017,"Counter-Strike Global Offensive",purchase,1.0,0 -171691017,"Counter-Strike Global Offensive",play,71.0,0 -171691017,"Path of Exile",purchase,1.0,0 -171691017,"Path of Exile",play,68.0,0 -171691017,"Borderlands 2",purchase,1.0,0 -171691017,"Borderlands 2",play,47.0,0 -171691017,"PAYDAY 2",purchase,1.0,0 -171691017,"PAYDAY 2",play,18.0,0 -171691017,"H1Z1",purchase,1.0,0 -171691017,"H1Z1",play,16.8,0 -171691017,"DayZ",purchase,1.0,0 -171691017,"DayZ",play,16.3,0 -171691017,"TERA",purchase,1.0,0 -171691017,"TERA",play,12.3,0 -171691017,"Trove",purchase,1.0,0 -171691017,"Trove",play,9.8,0 -171691017,"Hitman Absolution",purchase,1.0,0 -171691017,"Hitman Absolution",play,4.1,0 -171691017,"LEGO MARVEL Super Heroes",purchase,1.0,0 -171691017,"LEGO MARVEL Super Heroes",play,2.0,0 -171691017,"H1Z1 Test Server",purchase,1.0,0 -171691017,"Hitman Sniper Challenge",purchase,1.0,0 -4877411,"Counter-Strike Condition Zero",purchase,1.0,0 -4877411,"Counter-Strike Condition Zero",play,238.0,0 -4877411,"Counter-Strike",purchase,1.0,0 -4877411,"Counter-Strike",play,38.0,0 -4877411,"HAWKEN",purchase,1.0,0 -4877411,"HAWKEN",play,2.0,0 -4877411,"Counter-Strike Source",purchase,1.0,0 -4877411,"Counter-Strike Source",play,1.5,0 -4877411,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -4877411,"Counter-Strike Condition Zero Deleted Scenes",play,1.3,0 -4877411,"Half-Life",purchase,1.0,0 -4877411,"Day of Defeat",purchase,1.0,0 -4877411,"Deathmatch Classic",purchase,1.0,0 -4877411,"Half-Life Blue Shift",purchase,1.0,0 -4877411,"Half-Life Opposing Force",purchase,1.0,0 -4877411,"Ricochet",purchase,1.0,0 -4877411,"Team Fortress Classic",purchase,1.0,0 -86623169,"Unturned",purchase,1.0,0 -86623169,"Unturned",play,13.1,0 -86623169,"Portal 2",purchase,1.0,0 -86623169,"Portal 2",play,10.6,0 -302237901,"Grand Theft Auto San Andreas",purchase,1.0,0 -302237901,"Grand Theft Auto San Andreas",play,0.1,0 -302237901,"Counter-Strike Nexon Zombies",purchase,1.0,0 -302237901,"Grand Theft Auto San Andreas",purchase,1.0,0 -161338471,"Dirty Bomb",purchase,1.0,0 -161338471,"Dirty Bomb",play,46.0,0 -161338471,"Counter-Strike Global Offensive",purchase,1.0,0 -161338471,"Counter-Strike Global Offensive",play,3.7,0 -161338471,"Sid Meier's Civilization V",purchase,1.0,0 -161338471,"Sid Meier's Civilization V",play,3.4,0 -161338471,"Team Fortress 2",purchase,1.0,0 -161338471,"Team Fortress 2",play,1.2,0 -161338471,"Portal",purchase,1.0,0 -161338471,"Portal",play,0.8,0 -161338471,"Portal 2",purchase,1.0,0 -161338471,"Portal 2",play,0.3,0 -161338471,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -161338471,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -161338471,"Warlock - Master of the Arcane",purchase,1.0,0 -161338471,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -161338471,"War of the Roses",purchase,1.0,0 -161338471,"War of the Roses Kingmaker",purchase,1.0,0 -161338471,"War of the Roses Balance Beta",purchase,1.0,0 -294169103,"Dota 2",purchase,1.0,0 -294169103,"Dota 2",play,2.3,0 -139746888,"Dota 2",purchase,1.0,0 -139746888,"Dota 2",play,39.0,0 -69434488,"Napoleon Total War",purchase,1.0,0 -69434488,"Napoleon Total War",play,230.0,0 -69434488,"Total War ROME II - Emperor Edition",purchase,1.0,0 -69434488,"Total War ROME II - Emperor Edition",play,189.0,0 -69434488,"Star Wars Empire at War Gold",purchase,1.0,0 -69434488,"Star Wars Empire at War Gold",play,106.0,0 -69434488,"Empire Total War",purchase,1.0,0 -69434488,"Empire Total War",play,67.0,0 -69434488,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -69434488,"Sid Meier's Civilization Beyond Earth",play,64.0,0 -69434488,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -69434488,"Sins of a Solar Empire Rebellion",play,51.0,0 -69434488,"R.U.S.E",purchase,1.0,0 -69434488,"R.U.S.E",play,43.0,0 -69434488,"Wargame AirLand Battle",purchase,1.0,0 -69434488,"Wargame AirLand Battle",play,38.0,0 -69434488,"Sniper Elite 3",purchase,1.0,0 -69434488,"Sniper Elite 3",play,32.0,0 -69434488,"Saints Row IV",purchase,1.0,0 -69434488,"Saints Row IV",play,32.0,0 -69434488,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -69434488,"Rising Storm/Red Orchestra 2 Multiplayer",play,18.3,0 -69434488,"Just Cause 2",purchase,1.0,0 -69434488,"Just Cause 2",play,15.5,0 -69434488,"Nuclear Dawn",purchase,1.0,0 -69434488,"Nuclear Dawn",play,12.1,0 -69434488,"Star Wars Republic Commando",purchase,1.0,0 -69434488,"Star Wars Republic Commando",play,8.4,0 -69434488,"Star Wars - Battlefront II",purchase,1.0,0 -69434488,"Star Wars - Battlefront II",play,8.3,0 -69434488,"Wargame European Escalation",purchase,1.0,0 -69434488,"Wargame European Escalation",play,2.3,0 -69434488,"Arms Dealer",purchase,1.0,0 -69434488,"Arms Dealer",play,1.9,0 -69434488,"Rome Total War",purchase,1.0,0 -69434488,"Rome Total War",play,0.2,0 -69434488,"Rome Total War - Alexander",purchase,1.0,0 -69434488,"DCS World",purchase,1.0,0 -69434488,"Heroes & Generals",purchase,1.0,0 -69434488,"March of War",purchase,1.0,0 -69434488,"No More Room in Hell",purchase,1.0,0 -69434488,"R.U.S.E.",purchase,1.0,0 -69434488,"The Plan",purchase,1.0,0 -69434488,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -69434488,"War Thunder",purchase,1.0,0 -125145239,"Dota 2",purchase,1.0,0 -125145239,"Dota 2",play,148.0,0 -296153709,"Dota 2",purchase,1.0,0 -296153709,"Dota 2",play,0.3,0 -83028567,"Call of Duty Black Ops",purchase,1.0,0 -83028567,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -300248088,"Sigils of Elohim",purchase,1.0,0 -300248088,"Sigils of Elohim",play,888.0,0 -300248088,"Dota 2",purchase,1.0,0 -300248088,"Dota 2",play,887.0,0 -45774794,"ARK Survival Evolved",purchase,1.0,0 -45774794,"ARK Survival Evolved",play,123.0,0 -45774794,"Craft The World",purchase,1.0,0 -45774794,"Craft The World",play,55.0,0 -45774794,"Grand Theft Auto V",purchase,1.0,0 -45774794,"Grand Theft Auto V",play,49.0,0 -45774794,"Global Agenda",purchase,1.0,0 -45774794,"Global Agenda",play,39.0,0 -45774794,"H1Z1",purchase,1.0,0 -45774794,"H1Z1",play,33.0,0 -45774794,"The Last Remnant",purchase,1.0,0 -45774794,"The Last Remnant",play,32.0,0 -45774794,"Dungeons 2",purchase,1.0,0 -45774794,"Dungeons 2",play,24.0,0 -45774794,"Might & Magic Heroes VI",purchase,1.0,0 -45774794,"Might & Magic Heroes VI",play,23.0,0 -45774794,"Borderlands 2",purchase,1.0,0 -45774794,"Borderlands 2",play,18.4,0 -45774794,"The Elder Scrolls V Skyrim",purchase,1.0,0 -45774794,"The Elder Scrolls V Skyrim",play,17.8,0 -45774794,"Company of Heroes 2",purchase,1.0,0 -45774794,"Company of Heroes 2",play,16.9,0 -45774794,"Torchlight II",purchase,1.0,0 -45774794,"Torchlight II",play,14.7,0 -45774794,"Thief",purchase,1.0,0 -45774794,"Thief",play,13.4,0 -45774794,"Duke Nukem Forever",purchase,1.0,0 -45774794,"Duke Nukem Forever",play,12.7,0 -45774794,"War for the Overworld",purchase,1.0,0 -45774794,"War for the Overworld",play,11.2,0 -45774794,"Saints Row The Third",purchase,1.0,0 -45774794,"Saints Row The Third",play,10.7,0 -45774794,"APB Reloaded",purchase,1.0,0 -45774794,"APB Reloaded",play,7.9,0 -45774794,"DUNGEONS - The Dark Lord (Steam Special Edition)",purchase,1.0,0 -45774794,"DUNGEONS - The Dark Lord (Steam Special Edition)",play,7.1,0 -45774794,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -45774794,"RollerCoaster Tycoon 3 Platinum!",play,5.4,0 -45774794,"FINAL FANTASY VIII",purchase,1.0,0 -45774794,"FINAL FANTASY VIII",play,5.3,0 -45774794,"Blackguards 2",purchase,1.0,0 -45774794,"Blackguards 2",play,3.8,0 -45774794,"State of Decay",purchase,1.0,0 -45774794,"State of Decay",play,3.5,0 -45774794,"City Life 2008",purchase,1.0,0 -45774794,"City Life 2008",play,3.1,0 -45774794,"Aliens vs. Predator",purchase,1.0,0 -45774794,"Aliens vs. Predator",play,2.7,0 -45774794,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -45774794,"Warhammer 40,000 Dawn of War II",play,2.6,0 -45774794,"Orcs Must Die!",purchase,1.0,0 -45774794,"Orcs Must Die!",play,2.3,0 -45774794,"Reign Of Kings",purchase,1.0,0 -45774794,"Reign Of Kings",play,2.1,0 -45774794,"Rising World",purchase,1.0,0 -45774794,"Rising World",play,1.8,0 -45774794,"Counter-Strike Global Offensive",purchase,1.0,0 -45774794,"Counter-Strike Global Offensive",play,1.3,0 -45774794,"Dota 2",purchase,1.0,0 -45774794,"Dota 2",play,1.2,0 -45774794,"Hand Of Fate",purchase,1.0,0 -45774794,"Hand Of Fate",play,1.2,0 -45774794,"Kingdoms Rise",purchase,1.0,0 -45774794,"Kingdoms Rise",play,1.1,0 -45774794,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -45774794,"Star Wars The Force Unleashed Ultimate Sith Edition",play,1.1,0 -45774794,"Undead Overlord",purchase,1.0,0 -45774794,"Undead Overlord",play,0.8,0 -45774794,"DC Universe Online",purchase,1.0,0 -45774794,"DC Universe Online",play,0.8,0 -45774794,"DayZ",purchase,1.0,0 -45774794,"DayZ",play,0.6,0 -45774794,"FlatOut",purchase,1.0,0 -45774794,"FlatOut",play,0.5,0 -45774794,"LEGO Worlds",purchase,1.0,0 -45774794,"LEGO Worlds",play,0.4,0 -45774794,"Flatout 3",purchase,1.0,0 -45774794,"Flatout 3",play,0.3,0 -45774794,"Counter-Strike",purchase,1.0,0 -45774794,"Counter-Strike Condition Zero",purchase,1.0,0 -45774794,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -45774794,"Counter-Strike Source",purchase,1.0,0 -45774794,"DUNGEONS - Steam Special Edition",purchase,1.0,0 -45774794,"FlatOut 2",purchase,1.0,0 -45774794,"FlatOut Ultimate Carnage",purchase,1.0,0 -45774794,"H1Z1 Test Server",purchase,1.0,0 -45774794,"Mortal Kombat Legacy - Ep. 3 Johnny Cage",purchase,1.0,0 -45774794,"Mortal Kombat Legacy - Ep. 6 Raiden",purchase,1.0,0 -45774794,"Mortal Kombat Legacy - Ep. 9 Cyrax & Sektor",purchase,1.0,0 -45774794,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -45774794,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -104265574,"X3 Albion Prelude",purchase,1.0,0 -104265574,"X3 Terran Conflict",purchase,1.0,0 -187755082,"Unturned",purchase,1.0,0 -187755082,"Unturned",play,1.1,0 -187755082,"Genesis Online",purchase,1.0,0 -187755082,"Genesis Online",play,0.1,0 -128536244,"Dota 2",purchase,1.0,0 -128536244,"Dota 2",play,1.7,0 -36017955,"Counter-Strike",purchase,1.0,0 -36017955,"Counter-Strike",play,82.0,0 -36017955,"Counter-Strike Condition Zero",purchase,1.0,0 -36017955,"Counter-Strike Condition Zero",play,6.8,0 -36017955,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -36017955,"Day of Defeat",purchase,1.0,0 -36017955,"Deathmatch Classic",purchase,1.0,0 -36017955,"Ricochet",purchase,1.0,0 -3001740,"Counter-Strike",purchase,1.0,0 -3001740,"Counter-Strike Condition Zero",purchase,1.0,0 -3001740,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -3001740,"Day of Defeat",purchase,1.0,0 -3001740,"Deathmatch Classic",purchase,1.0,0 -3001740,"Half-Life",purchase,1.0,0 -3001740,"Half-Life Blue Shift",purchase,1.0,0 -3001740,"Half-Life Opposing Force",purchase,1.0,0 -3001740,"Ricochet",purchase,1.0,0 -3001740,"Team Fortress Classic",purchase,1.0,0 -180406842,"Left 4 Dead 2",purchase,1.0,0 -180406842,"Left 4 Dead 2",play,16.0,0 -180406842,"Neverwinter",purchase,1.0,0 -180406842,"Neverwinter",play,1.0,0 -100012061,"Star Trek D-A-C",purchase,1.0,0 -100012061,"Star Trek D-A-C",play,0.7,0 -159279906,"Train Simulator",purchase,1.0,0 -159279906,"Train Simulator",play,1.7,0 -205352214,"Unturned",purchase,1.0,0 -205352214,"Unturned",play,0.6,0 -121531316,"Team Fortress 2",purchase,1.0,0 -121531316,"Team Fortress 2",play,1.2,0 -121531316,"Left 4 Dead 2",purchase,1.0,0 -121531316,"Left 4 Dead 2",play,0.2,0 -242039522,"Dota 2",purchase,1.0,0 -242039522,"Dota 2",play,20.0,0 -242039522,"Marvel Puzzle Quest",purchase,1.0,0 -242039522,"Clicker Heroes",purchase,1.0,0 -242039522,"Eternal Senia",purchase,1.0,0 -242039522,"Stronghold Kingdoms",purchase,1.0,0 -242039522,"Unturned",purchase,1.0,0 -113142233,"Sid Meier's Civilization V",purchase,1.0,0 -113142233,"Sid Meier's Civilization V",play,3.2,0 -160831523,"Team Fortress 2",purchase,1.0,0 -160831523,"Team Fortress 2",play,1.2,0 -170711828,"Unturned",purchase,1.0,0 -170711828,"Unturned",play,7.5,0 -170711828,"Team Fortress 2",purchase,1.0,0 -170711828,"Team Fortress 2",play,5.4,0 -170711828,"Elsword",purchase,1.0,0 -170711828,"Star Trek Online",purchase,1.0,0 -266279128,"Dota 2",purchase,1.0,0 -266279128,"Dota 2",play,30.0,0 -22627659,"Silent Hill Homecoming",purchase,1.0,0 -22627659,"Silent Hill Homecoming",play,1.9,0 -22627659,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -22627659,"Counter-Strike Source",purchase,1.0,0 -22627659,"DEFCON",purchase,1.0,0 -22627659,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -22627659,"Half-Life 2",purchase,1.0,0 -22627659,"Half-Life 2 Deathmatch",purchase,1.0,0 -22627659,"Half-Life 2 Episode One",purchase,1.0,0 -22627659,"Half-Life 2 Lost Coast",purchase,1.0,0 -22627659,"Half-Life Source",purchase,1.0,0 -22627659,"Half-Life Deathmatch Source",purchase,1.0,0 -22627659,"Psychonauts",purchase,1.0,0 -22627659,"Psychonauts Demo",purchase,1.0,0 -22627659,"Shadowgrounds",purchase,1.0,0 -145908178,"Dota 2",purchase,1.0,0 -145908178,"Dota 2",play,857.0,0 -145908178,"Grand Theft Auto V",purchase,1.0,0 -145908178,"Grand Theft Auto V",play,263.0,0 -145908178,"DayZ",purchase,1.0,0 -145908178,"DayZ",play,82.0,0 -145908178,"Assassin's Creed Syndicate",purchase,1.0,0 -145908178,"Assassin's Creed Syndicate",play,45.0,0 -145908178,"Team Fortress 2",purchase,1.0,0 -145908178,"Team Fortress 2",play,26.0,0 -145908178,"Counter-Strike Global Offensive",purchase,1.0,0 -145908178,"Counter-Strike Global Offensive",play,5.3,0 -145908178,"Unturned",purchase,1.0,0 -145908178,"Robocraft",purchase,1.0,0 -280447750,"Papers, Please",purchase,1.0,0 -146116064,"Dota 2",purchase,1.0,0 -146116064,"Dota 2",play,2.5,0 -206193312,"Counter-Strike Global Offensive",purchase,1.0,0 -206193312,"Counter-Strike Global Offensive",play,28.0,0 -206193312,"Clicker Heroes",purchase,1.0,0 -206193312,"Clicker Heroes",play,16.8,0 -206193312,"Sid Meier's Civilization V",purchase,1.0,0 -206193312,"Sid Meier's Civilization V",play,1.9,0 -206193312,"Loadout",purchase,1.0,0 -206193312,"Loadout",play,0.2,0 -298447605,"Dota 2",purchase,1.0,0 -298447605,"Dota 2",play,125.0,0 -218321238,"Robocraft",purchase,1.0,0 -218321238,"Robocraft",play,0.5,0 -218321238,"Dota 2",purchase,1.0,0 -218321238,"Dota 2",play,0.2,0 -201689712,"Cry of Fear",purchase,1.0,0 -35560181,"Counter-Strike",purchase,1.0,0 -35560181,"Counter-Strike",play,8.1,0 -35560181,"Counter-Strike Condition Zero",purchase,1.0,0 -35560181,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -180599430,"Dota 2",purchase,1.0,0 -180599430,"Dota 2",play,5.8,0 -128430362,"Dota 2",purchase,1.0,0 -128430362,"Dota 2",play,6.0,0 -128430362,"Counter-Strike Nexon Zombies",purchase,1.0,0 -128430362,"Counter-Strike Nexon Zombies",play,0.1,0 -166051525,"Dota 2",purchase,1.0,0 -166051525,"Dota 2",play,1.0,0 -209094130,"Heroes & Generals",purchase,1.0,0 -209094130,"Robocraft",purchase,1.0,0 -209094130,"Unturned",purchase,1.0,0 -209094130,"War Thunder",purchase,1.0,0 -222125122,"Dota 2",purchase,1.0,0 -222125122,"Dota 2",play,54.0,0 -27901693,"Half-Life 2",purchase,1.0,0 -27901693,"Half-Life 2",play,12.7,0 -27901693,"Portal 2",purchase,1.0,0 -27901693,"Portal 2",play,8.7,0 -27901693,"Half-Life 2 Episode One",purchase,1.0,0 -27901693,"Half-Life 2 Episode One",play,7.8,0 -27901693,"Portal",purchase,1.0,0 -27901693,"Portal",play,6.4,0 -27901693,"Half-Life 2 Episode Two",purchase,1.0,0 -27901693,"Half-Life 2 Episode Two",play,5.4,0 -27901693,"Half-Life 2 Lost Coast",purchase,1.0,0 -27901693,"Half-Life 2 Lost Coast",play,0.7,0 -27901693,"Peggle Deluxe",purchase,1.0,0 -27901693,"Peggle Deluxe",play,0.6,0 -27901693,"Half-Life 2 Deathmatch",purchase,1.0,0 -27901693,"Half-Life Deathmatch Source",purchase,1.0,0 -62633395,"Might & Magic Heroes VI",purchase,1.0,0 -62633395,"Might & Magic Heroes VI",play,151.0,0 -62633395,"XCOM Enemy Unknown",purchase,1.0,0 -62633395,"XCOM Enemy Unknown",play,51.0,0 -62633395,"The Elder Scrolls V Skyrim",purchase,1.0,0 -62633395,"The Elder Scrolls V Skyrim",play,44.0,0 -62633395,"Anno 2070",purchase,1.0,0 -62633395,"Anno 2070",play,43.0,0 -62633395,"Borderlands 2",purchase,1.0,0 -62633395,"Borderlands 2",play,43.0,0 -62633395,"Sid Meier's Civilization V",purchase,1.0,0 -62633395,"Sid Meier's Civilization V",play,34.0,0 -62633395,"Deus Ex Human Revolution",purchase,1.0,0 -62633395,"Deus Ex Human Revolution",play,22.0,0 -62633395,"Starbound",purchase,1.0,0 -62633395,"Starbound",play,18.6,0 -62633395,"Torchlight II",purchase,1.0,0 -62633395,"Torchlight II",play,16.9,0 -62633395,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -62633395,"The Witcher 2 Assassins of Kings Enhanced Edition",play,16.6,0 -62633395,"Dishonored",purchase,1.0,0 -62633395,"Dishonored",play,15.5,0 -62633395,"Orcs Must Die!",purchase,1.0,0 -62633395,"Orcs Must Die!",play,7.2,0 -62633395,"Metro 2033",purchase,1.0,0 -62633395,"Metro 2033",play,5.6,0 -62633395,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -62633395,"The Incredible Adventures of Van Helsing",play,3.8,0 -62633395,"BioShock Infinite",purchase,1.0,0 -62633395,"BioShock Infinite",play,3.4,0 -62633395,"FEZ",purchase,1.0,0 -62633395,"FEZ",play,3.0,0 -62633395,"Max Payne 3",purchase,1.0,0 -62633395,"Max Payne 3",play,2.7,0 -62633395,"Portal 2",purchase,1.0,0 -62633395,"Portal 2",play,1.9,0 -62633395,"The Witcher Enhanced Edition",purchase,1.0,0 -62633395,"The Witcher Enhanced Edition",play,1.2,0 -62633395,"RAGE",purchase,1.0,0 -62633395,"RAGE",play,1.2,0 -62633395,"Hitman Blood Money",purchase,1.0,0 -62633395,"Hitman Blood Money",play,1.1,0 -62633395,"Dead Space 2",purchase,1.0,0 -62633395,"Dead Space 2",play,0.8,0 -62633395,"Magic The Gathering - Duels of the Planeswalkers 2013",purchase,1.0,0 -62633395,"Magic The Gathering - Duels of the Planeswalkers 2013",play,0.8,0 -62633395,"Deus Ex Game of the Year Edition",purchase,1.0,0 -62633395,"Deus Ex Game of the Year Edition",play,0.6,0 -62633395,"Hitman Codename 47",purchase,1.0,0 -62633395,"Hitman Codename 47",play,0.3,0 -62633395,"Dota 2",purchase,1.0,0 -62633395,"Dota 2",play,0.1,0 -62633395,"Hitman 2 Silent Assassin",purchase,1.0,0 -62633395,"BioShock",purchase,1.0,0 -62633395,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -62633395,"Deus Ex Invisible War",purchase,1.0,0 -62633395,"Hitman Absolution",purchase,1.0,0 -62633395,"Hitman Sniper Challenge",purchase,1.0,0 -62633395,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -62633395,"Starbound - Unstable",purchase,1.0,0 -62633395,"XCOM Enemy Within",purchase,1.0,0 -154458931,"Grand Theft Auto V",purchase,1.0,0 -154458931,"Grand Theft Auto V",play,78.0,0 -154458931,"The Forest",purchase,1.0,0 -154458931,"The Forest",play,50.0,0 -154458931,"Age of Empires II HD Edition",purchase,1.0,0 -154458931,"Age of Empires II HD Edition",play,11.1,0 -154458931,"Might & Magic Heroes VI",purchase,1.0,0 -154458931,"Might & Magic Heroes VI",play,7.5,0 -154458931,"Max Payne 3",purchase,1.0,0 -154458931,"Max Payne 3",play,6.4,0 -154458931,"Next Car Game Wreckfest",purchase,1.0,0 -154458931,"Next Car Game Wreckfest",play,3.0,0 -154458931,"Grand Theft Auto San Andreas",purchase,1.0,0 -154458931,"Grand Theft Auto San Andreas",play,2.7,0 -154458931,"The Elder Scrolls V Skyrim",purchase,1.0,0 -154458931,"The Elder Scrolls V Skyrim",play,2.6,0 -154458931,"BioShock Infinite",purchase,1.0,0 -154458931,"BioShock Infinite",play,1.4,0 -154458931,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -154458931,"The Witcher 2 Assassins of Kings Enhanced Edition",play,1.3,0 -154458931,"Path of Exile",purchase,1.0,0 -154458931,"Path of Exile",play,0.8,0 -154458931,"Tropico 4",purchase,1.0,0 -154458931,"Tropico 4",play,0.8,0 -154458931,"Grand Theft Auto Vice City",purchase,1.0,0 -154458931,"Grand Theft Auto Vice City",play,0.6,0 -154458931,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -154458931,"Next Car Game Sneak Peek 2.0",play,0.3,0 -154458931,"Loadout Campaign Beta",purchase,1.0,0 -154458931,"Loadout Campaign Beta",play,0.2,0 -154458931,"Gothic II Gold Edition",purchase,1.0,0 -154458931,"Grand Theft Auto San Andreas",purchase,1.0,0 -154458931,"Grand Theft Auto Vice City",purchase,1.0,0 -154458931,"Grand Theft Auto III",purchase,1.0,0 -154458931,"Grand Theft Auto III",purchase,1.0,0 -154458931,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -154458931,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -154458931,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -154458931,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -108007732,"Counter-Strike Global Offensive",purchase,1.0,0 -108007732,"Counter-Strike Global Offensive",play,1143.0,0 -108007732,"Garry's Mod",purchase,1.0,0 -108007732,"Garry's Mod",play,111.0,0 -108007732,"The Witcher 3 Wild Hunt",purchase,1.0,0 -108007732,"The Witcher 3 Wild Hunt",play,96.0,0 -108007732,"Rust",purchase,1.0,0 -108007732,"Rust",play,90.0,0 -108007732,"Grand Theft Auto V",purchase,1.0,0 -108007732,"Grand Theft Auto V",play,85.0,0 -108007732,"Far Cry 4",purchase,1.0,0 -108007732,"Far Cry 4",play,64.0,0 -108007732,"The Elder Scrolls V Skyrim",purchase,1.0,0 -108007732,"The Elder Scrolls V Skyrim",play,55.0,0 -108007732,"Trials Evolution Gold Edition",purchase,1.0,0 -108007732,"Trials Evolution Gold Edition",play,54.0,0 -108007732,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -108007732,"Call of Duty Advanced Warfare - Multiplayer",play,51.0,0 -108007732,"The Crew",purchase,1.0,0 -108007732,"The Crew",play,50.0,0 -108007732,"Mad Max",purchase,1.0,0 -108007732,"Mad Max",play,37.0,0 -108007732,"DARK SOULS II",purchase,1.0,0 -108007732,"DARK SOULS II",play,35.0,0 -108007732,"Saints Row IV",purchase,1.0,0 -108007732,"Saints Row IV",play,35.0,0 -108007732,"PAYDAY 2",purchase,1.0,0 -108007732,"PAYDAY 2",play,34.0,0 -108007732,"Saints Row The Third",purchase,1.0,0 -108007732,"Saints Row The Third",play,29.0,0 -108007732,"Fallout 4",purchase,1.0,0 -108007732,"Fallout 4",play,26.0,0 -108007732,"Middle-earth Shadow of Mordor",purchase,1.0,0 -108007732,"Middle-earth Shadow of Mordor",play,23.0,0 -108007732,"Unturned",purchase,1.0,0 -108007732,"Unturned",play,23.0,0 -108007732,"Team Fortress 2",purchase,1.0,0 -108007732,"Team Fortress 2",play,17.6,0 -108007732,"Portal 2",purchase,1.0,0 -108007732,"Portal 2",play,15.7,0 -108007732,"BattleBlock Theater",purchase,1.0,0 -108007732,"BattleBlock Theater",play,13.1,0 -108007732,"Borderlands 2",purchase,1.0,0 -108007732,"Borderlands 2",play,12.3,0 -108007732,"Left 4 Dead 2",purchase,1.0,0 -108007732,"Left 4 Dead 2",play,12.1,0 -108007732,"Arma 2 Operation Arrowhead",purchase,1.0,0 -108007732,"Arma 2 Operation Arrowhead",play,10.2,0 -108007732,"DC Universe Online",purchase,1.0,0 -108007732,"DC Universe Online",play,7.8,0 -108007732,"Infestation Survivor Stories",purchase,1.0,0 -108007732,"Infestation Survivor Stories",play,7.5,0 -108007732,"Hotline Miami",purchase,1.0,0 -108007732,"Hotline Miami",play,7.2,0 -108007732,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -108007732,"Tom Clancy's Ghost Recon Phantoms - NA",play,6.8,0 -108007732,"Besiege",purchase,1.0,0 -108007732,"Besiege",play,6.8,0 -108007732,"Chivalry Medieval Warfare",purchase,1.0,0 -108007732,"Chivalry Medieval Warfare",play,6.8,0 -108007732,"Worms Revolution",purchase,1.0,0 -108007732,"Worms Revolution",play,6.7,0 -108007732,"Next Car Game Wreckfest",purchase,1.0,0 -108007732,"Next Car Game Wreckfest",play,5.8,0 -108007732,"Scribblenauts Unlimited",purchase,1.0,0 -108007732,"Scribblenauts Unlimited",play,5.0,0 -108007732,"Batman Arkham Origins",purchase,1.0,0 -108007732,"Batman Arkham Origins",play,4.8,0 -108007732,"Loadout",purchase,1.0,0 -108007732,"Loadout",play,4.0,0 -108007732,"Deadbreed",purchase,1.0,0 -108007732,"Deadbreed",play,3.6,0 -108007732,"Age of Chivalry",purchase,1.0,0 -108007732,"Age of Chivalry",play,3.6,0 -108007732,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -108007732,"Next Car Game Sneak Peek 2.0",play,2.3,0 -108007732,"Afterfall InSanity Extended Edition",purchase,1.0,0 -108007732,"Afterfall InSanity Extended Edition",play,2.1,0 -108007732,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -108007732,"The Witcher 2 Assassins of Kings Enhanced Edition",play,2.1,0 -108007732,"Arma 2",purchase,1.0,0 -108007732,"Arma 2",play,2.0,0 -108007732,"Dino D-Day",purchase,1.0,0 -108007732,"Dino D-Day",play,1.8,0 -108007732,"Castle Crashers",purchase,1.0,0 -108007732,"Castle Crashers",play,1.7,0 -108007732,"Euro Truck Simulator 2",purchase,1.0,0 -108007732,"Euro Truck Simulator 2",play,1.5,0 -108007732,"Super Killer Hornet Resurrection",purchase,1.0,0 -108007732,"Super Killer Hornet Resurrection",play,1.4,0 -108007732,"Gun Monkeys",purchase,1.0,0 -108007732,"Gun Monkeys",play,1.3,0 -108007732,"RaceRoom Racing Experience ",purchase,1.0,0 -108007732,"RaceRoom Racing Experience ",play,1.2,0 -108007732,"RACE 07",purchase,1.0,0 -108007732,"RACE 07",play,1.2,0 -108007732,"Really Big Sky",purchase,1.0,0 -108007732,"Really Big Sky",play,1.2,0 -108007732,"The Witcher Enhanced Edition",purchase,1.0,0 -108007732,"The Witcher Enhanced Edition",play,0.5,0 -108007732,"TERA",purchase,1.0,0 -108007732,"TERA",play,0.4,0 -108007732,"Call of Duty Advanced Warfare",purchase,1.0,0 -108007732,"Call of Duty Advanced Warfare",play,0.4,0 -108007732,"Killing Floor",purchase,1.0,0 -108007732,"Killing Floor",play,0.3,0 -108007732,"Crash Time II",purchase,1.0,0 -108007732,"Crash Time II",play,0.1,0 -108007732,"Dota 2",purchase,1.0,0 -108007732,"Dota 2",play,0.1,0 -108007732,"Arma 2 DayZ Mod",purchase,1.0,0 -108007732,"GTR Evolution",purchase,1.0,0 -108007732,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -108007732,"Brawlhalla",purchase,1.0,0 -108007732,"EasyAntiCheat eSports",purchase,1.0,0 -108007732,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -108007732,"Patch testing for Chivalry",purchase,1.0,0 -108007732,"Realms of the Haunting",purchase,1.0,0 -108007732,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -108007732,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -108007732,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -108007732,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -108007732,"The Expendabros",purchase,1.0,0 -108007732,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -244650573,"Unturned",purchase,1.0,0 -244650573,"Dirty Bomb",purchase,1.0,0 -25349446,"Half-Life 2",purchase,1.0,0 -25349446,"Half-Life 2 Deathmatch",purchase,1.0,0 -25349446,"Half-Life 2 Lost Coast",purchase,1.0,0 -296463465,"Dota 2",purchase,1.0,0 -296463465,"Dota 2",play,1.4,0 -223798950,"Dota 2",purchase,1.0,0 -223798950,"Dota 2",play,1.0,0 -232099107,"Dota 2",purchase,1.0,0 -232099107,"Dota 2",play,75.0,0 -244163929,"Dota 2",purchase,1.0,0 -244163929,"Dota 2",play,122.0,0 -244163929,"Aura Kingdom",purchase,1.0,0 -244163929,"Divine Souls",purchase,1.0,0 -244163929,"FreeStyle2 Street Basketball",purchase,1.0,0 -244163929,"GunZ 2 The Second Duel",purchase,1.0,0 -244163929,"Ragnarok Online 2",purchase,1.0,0 -244163929,"TERA",purchase,1.0,0 -244163929,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -244163929,"Trove",purchase,1.0,0 -244163929,"Unturned",purchase,1.0,0 -175026514,"DayZ",purchase,1.0,0 -175026514,"DayZ",play,226.0,0 -175026514,"Arma 3",purchase,1.0,0 -175026514,"Arma 3",play,104.0,0 -175026514,"Counter-Strike Global Offensive",purchase,1.0,0 -175026514,"Counter-Strike Global Offensive",play,12.4,0 -175026514,"Middle-earth Shadow of Mordor",purchase,1.0,0 -175026514,"Middle-earth Shadow of Mordor",play,5.1,0 -175026514,"Arma 2",purchase,1.0,0 -175026514,"Arma 2 British Armed Forces",purchase,1.0,0 -175026514,"Arma 2 DayZ Mod",purchase,1.0,0 -175026514,"Arma 2 Operation Arrowhead",purchase,1.0,0 -175026514,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -175026514,"Arma 2 Private Military Company",purchase,1.0,0 -175026514,"Arma 3 Zeus",purchase,1.0,0 -65398650,"Team Fortress 2",purchase,1.0,0 -65398650,"Team Fortress 2",play,188.0,0 -65398650,"Left 4 Dead 2",purchase,1.0,0 -65398650,"Left 4 Dead 2",play,106.0,0 -65398650,"Counter-Strike Global Offensive",purchase,1.0,0 -65398650,"Counter-Strike Global Offensive",play,37.0,0 -65398650,"Shank 2",purchase,1.0,0 -65398650,"Shank 2",play,31.0,0 -65398650,"Awesomenauts",purchase,1.0,0 -65398650,"Awesomenauts",play,27.0,0 -65398650,"Trine 2",purchase,1.0,0 -65398650,"Trine 2",play,24.0,0 -65398650,"Killing Floor",purchase,1.0,0 -65398650,"Killing Floor",play,23.0,0 -65398650,"Mount & Blade",purchase,1.0,0 -65398650,"Mount & Blade",play,22.0,0 -65398650,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -65398650,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",play,22.0,0 -65398650,"Scribblenauts Unlimited",purchase,1.0,0 -65398650,"Scribblenauts Unlimited",play,21.0,0 -65398650,"Sleeping Dogs",purchase,1.0,0 -65398650,"Sleeping Dogs",play,21.0,0 -65398650,"Space Pirates and Zombies",purchase,1.0,0 -65398650,"Space Pirates and Zombies",play,21.0,0 -65398650,"Terraria",purchase,1.0,0 -65398650,"Terraria",play,19.5,0 -65398650,"Recettear An Item Shop's Tale",purchase,1.0,0 -65398650,"Recettear An Item Shop's Tale",play,18.9,0 -65398650,"Divekick",purchase,1.0,0 -65398650,"Divekick",play,18.8,0 -65398650,"Natural Selection 2",purchase,1.0,0 -65398650,"Natural Selection 2",play,18.6,0 -65398650,"Eldritch",purchase,1.0,0 -65398650,"Eldritch",play,17.8,0 -65398650,"Dustforce",purchase,1.0,0 -65398650,"Dustforce",play,17.7,0 -65398650,"Saints Row The Third",purchase,1.0,0 -65398650,"Saints Row The Third",play,17.0,0 -65398650,"PAYDAY The Heist",purchase,1.0,0 -65398650,"PAYDAY The Heist",play,15.1,0 -65398650,"Kingdom Rush",purchase,1.0,0 -65398650,"Kingdom Rush",play,15.0,0 -65398650,"Mutant Mudds Deluxe",purchase,1.0,0 -65398650,"Mutant Mudds Deluxe",play,14.9,0 -65398650,"Torchlight",purchase,1.0,0 -65398650,"Torchlight",play,14.7,0 -65398650,"Tower Wars",purchase,1.0,0 -65398650,"Tower Wars",play,14.6,0 -65398650,"To the Moon",purchase,1.0,0 -65398650,"To the Moon",play,14.2,0 -65398650,"Shufflepuck Cantina Deluxe VR",purchase,1.0,0 -65398650,"Shufflepuck Cantina Deluxe VR",play,13.9,0 -65398650,"Toki Tori 2+",purchase,1.0,0 -65398650,"Toki Tori 2+",play,13.7,0 -65398650,"Monaco",purchase,1.0,0 -65398650,"Monaco",play,13.5,0 -65398650,"METAL SLUG 3",purchase,1.0,0 -65398650,"METAL SLUG 3",play,13.1,0 -65398650,"Sang-Froid - Tales of Werewolves",purchase,1.0,0 -65398650,"Sang-Froid - Tales of Werewolves",play,12.8,0 -65398650,"Torchlight II",purchase,1.0,0 -65398650,"Torchlight II",play,12.6,0 -65398650,"Orcs Must Die! 2",purchase,1.0,0 -65398650,"Orcs Must Die! 2",play,12.6,0 -65398650,"Nation Red",purchase,1.0,0 -65398650,"Nation Red",play,12.5,0 -65398650,"Dust An Elysian Tail",purchase,1.0,0 -65398650,"Dust An Elysian Tail",play,12.3,0 -65398650,"Fairy Bloom Freesia",purchase,1.0,0 -65398650,"Fairy Bloom Freesia",play,12.1,0 -65398650,"Hero Siege",purchase,1.0,0 -65398650,"Hero Siege",play,12.0,0 -65398650,"XCOM Enemy Unknown",purchase,1.0,0 -65398650,"XCOM Enemy Unknown",play,11.7,0 -65398650,"Risk of Rain",purchase,1.0,0 -65398650,"Risk of Rain",play,11.2,0 -65398650,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -65398650,"Batman Arkham Asylum GOTY Edition",play,11.2,0 -65398650,"Swords and Soldiers HD",purchase,1.0,0 -65398650,"Swords and Soldiers HD",play,11.1,0 -65398650,"Skullgirls",purchase,1.0,0 -65398650,"Skullgirls",play,11.0,0 -65398650,"Contagion",purchase,1.0,0 -65398650,"Contagion",play,11.0,0 -65398650,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -65398650,"Sid Meier's Ace Patrol Pacific Skies",play,11.0,0 -65398650,"Sid Meier's Ace Patrol",purchase,1.0,0 -65398650,"Sid Meier's Ace Patrol",play,10.8,0 -65398650,"Guardians of Middle-earth",purchase,1.0,0 -65398650,"Guardians of Middle-earth",play,10.8,0 -65398650,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -65398650,"Beatbuddy Tale of the Guardians",play,10.5,0 -65398650,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -65398650,"Rising Storm/Red Orchestra 2 Multiplayer",play,10.3,0 -65398650,"Bad Hotel",purchase,1.0,0 -65398650,"Bad Hotel",play,10.0,0 -65398650,"Batman Arkham City GOTY",purchase,1.0,0 -65398650,"Batman Arkham City GOTY",play,9.5,0 -65398650,"Love",purchase,1.0,0 -65398650,"Love",play,9.5,0 -65398650,"Octodad Dadliest Catch",purchase,1.0,0 -65398650,"Octodad Dadliest Catch",play,9.0,0 -65398650,"Super Sanctum TD",purchase,1.0,0 -65398650,"Super Sanctum TD",play,8.9,0 -65398650,"Dino D-Day",purchase,1.0,0 -65398650,"Dino D-Day",play,8.7,0 -65398650,"The Swapper",purchase,1.0,0 -65398650,"The Swapper",play,8.4,0 -65398650,"Castle Crashers",purchase,1.0,0 -65398650,"Castle Crashers",play,8.2,0 -65398650,"Defense Grid The Awakening",purchase,1.0,0 -65398650,"Defense Grid The Awakening",play,8.2,0 -65398650,"Papo & Yo",purchase,1.0,0 -65398650,"Papo & Yo",play,8.2,0 -65398650,"Gnomoria",purchase,1.0,0 -65398650,"Gnomoria",play,8.1,0 -65398650,"Gemini Rue",purchase,1.0,0 -65398650,"Gemini Rue",play,8.1,0 -65398650,"L.A. Noire",purchase,1.0,0 -65398650,"L.A. Noire",play,7.7,0 -65398650,"Lilly Looking Through",purchase,1.0,0 -65398650,"Lilly Looking Through",play,7.5,0 -65398650,"Go! Go! Nippon! ~My First Trip to Japan~",purchase,1.0,0 -65398650,"Go! Go! Nippon! ~My First Trip to Japan~",play,7.3,0 -65398650,"Puzzle Agent",purchase,1.0,0 -65398650,"Puzzle Agent",play,7.2,0 -65398650,"Tiny Brains",purchase,1.0,0 -65398650,"Tiny Brains",play,7.1,0 -65398650,"Guacamelee! Gold Edition",purchase,1.0,0 -65398650,"Guacamelee! Gold Edition",play,6.8,0 -65398650,"Space Farmers",purchase,1.0,0 -65398650,"Space Farmers",play,6.8,0 -65398650,"Grand Theft Auto V",purchase,1.0,0 -65398650,"Grand Theft Auto V",play,6.6,0 -65398650,"Left 4 Dead",purchase,1.0,0 -65398650,"Left 4 Dead",play,6.6,0 -65398650,"SpaceChem",purchase,1.0,0 -65398650,"SpaceChem",play,6.5,0 -65398650,"Jack Lumber",purchase,1.0,0 -65398650,"Jack Lumber",play,6.1,0 -65398650,"Chivalry Medieval Warfare",purchase,1.0,0 -65398650,"Chivalry Medieval Warfare",play,5.7,0 -65398650,"Loadout",purchase,1.0,0 -65398650,"Loadout",play,5.7,0 -65398650,"Aerena",purchase,1.0,0 -65398650,"Aerena",play,5.5,0 -65398650,"Party of Sin",purchase,1.0,0 -65398650,"Party of Sin",play,5.1,0 -65398650,"Vanguard Princess",purchase,1.0,0 -65398650,"Vanguard Princess",play,5.0,0 -65398650,"Magicka",purchase,1.0,0 -65398650,"Magicka",play,4.7,0 -65398650,"Strike Suit Zero",purchase,1.0,0 -65398650,"Strike Suit Zero",play,4.6,0 -65398650,"Ether Vapor Remaster",purchase,1.0,0 -65398650,"Ether Vapor Remaster",play,4.5,0 -65398650,"Blockland",purchase,1.0,0 -65398650,"Blockland",play,4.3,0 -65398650,"NyxQuest",purchase,1.0,0 -65398650,"NyxQuest",play,4.1,0 -65398650,"Sanctum 2",purchase,1.0,0 -65398650,"Sanctum 2",play,3.9,0 -65398650,"99 Spirits",purchase,1.0,0 -65398650,"99 Spirits",play,3.9,0 -65398650,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -65398650,"Tom Clancy's Splinter Cell Conviction",play,3.9,0 -65398650,"Grand Theft Auto IV",purchase,1.0,0 -65398650,"Grand Theft Auto IV",play,3.7,0 -65398650,"Call of Juarez Gunslinger",purchase,1.0,0 -65398650,"Call of Juarez Gunslinger",play,3.6,0 -65398650,"The Lord of the Rings War in the North",purchase,1.0,0 -65398650,"The Lord of the Rings War in the North",play,3.6,0 -65398650,"Altitude",purchase,1.0,0 -65398650,"Altitude",play,3.6,0 -65398650,"BioShock Infinite",purchase,1.0,0 -65398650,"BioShock Infinite",play,3.5,0 -65398650,"Surgeon Simulator",purchase,1.0,0 -65398650,"Surgeon Simulator",play,3.5,0 -65398650,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -65398650,"Injustice Gods Among Us Ultimate Edition",play,3.4,0 -65398650,"DC Universe Online",purchase,1.0,0 -65398650,"DC Universe Online",play,3.1,0 -65398650,"TypeRider",purchase,1.0,0 -65398650,"TypeRider",play,3.1,0 -65398650,"Bastion",purchase,1.0,0 -65398650,"Bastion",play,3.1,0 -65398650,"Gun Monkeys",purchase,1.0,0 -65398650,"Gun Monkeys",play,3.1,0 -65398650,"Sniper Elite Nazi Zombie Army 2",purchase,1.0,0 -65398650,"Sniper Elite Nazi Zombie Army 2",play,3.1,0 -65398650,"Clickr",purchase,1.0,0 -65398650,"Clickr",play,3.0,0 -65398650,"Pressure",purchase,1.0,0 -65398650,"Pressure",play,3.0,0 -65398650,"Major Mayhem",purchase,1.0,0 -65398650,"Major Mayhem",play,3.0,0 -65398650,"Borderlands 2",purchase,1.0,0 -65398650,"Borderlands 2",play,3.0,0 -65398650,"Electronic Super Joy",purchase,1.0,0 -65398650,"Electronic Super Joy",play,3.0,0 -65398650,"Psychonauts",purchase,1.0,0 -65398650,"Psychonauts",play,3.0,0 -65398650,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -65398650,"Kane & Lynch 2 Dog Days",play,2.9,0 -65398650,"Valdis Story Abyssal City",purchase,1.0,0 -65398650,"Valdis Story Abyssal City",play,2.9,0 -65398650,"Ace of Spades",purchase,1.0,0 -65398650,"Ace of Spades",play,2.9,0 -65398650,"FORCED",purchase,1.0,0 -65398650,"FORCED",play,2.8,0 -65398650,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -65398650,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,2.8,0 -65398650,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -65398650,"Resident Evil 6 / Biohazard 6",play,2.7,0 -65398650,"Cargo Commander",purchase,1.0,0 -65398650,"Cargo Commander",play,2.7,0 -65398650,"Mercenary Kings",purchase,1.0,0 -65398650,"Mercenary Kings",play,2.6,0 -65398650,"Rush Bros",purchase,1.0,0 -65398650,"Rush Bros",play,2.6,0 -65398650,"Joe Danger 2 The Movie",purchase,1.0,0 -65398650,"Joe Danger 2 The Movie",play,2.6,0 -65398650,"Dungeon Defenders",purchase,1.0,0 -65398650,"Dungeon Defenders",play,2.4,0 -65398650,"Tactical Intervention",purchase,1.0,0 -65398650,"Tactical Intervention",play,2.4,0 -65398650,"Bridge Constructor",purchase,1.0,0 -65398650,"Bridge Constructor",play,2.4,0 -65398650,"Giana Sisters Twisted Dreams",purchase,1.0,0 -65398650,"Giana Sisters Twisted Dreams",play,2.3,0 -65398650,"Just Cause 2",purchase,1.0,0 -65398650,"Just Cause 2",play,2.3,0 -65398650,"Hammerwatch",purchase,1.0,0 -65398650,"Hammerwatch",play,2.3,0 -65398650,"Gish",purchase,1.0,0 -65398650,"Gish",play,2.3,0 -65398650,"Overlord II",purchase,1.0,0 -65398650,"Overlord II",play,2.2,0 -65398650,"Foul Play",purchase,1.0,0 -65398650,"Foul Play",play,2.2,0 -65398650,"F.E.A.R. 3",purchase,1.0,0 -65398650,"F.E.A.R. 3",play,2.1,0 -65398650,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -65398650,"Resident Evil 5 / Biohazard 5",play,2.1,0 -65398650,"Anomaly 2",purchase,1.0,0 -65398650,"Anomaly 2",play,2.1,0 -65398650,"War of the Human Tanks",purchase,1.0,0 -65398650,"War of the Human Tanks",play,2.0,0 -65398650,"Skullgirls Endless Beta",purchase,1.0,0 -65398650,"Skullgirls Endless Beta",play,1.8,0 -65398650,"Hero Academy",purchase,1.0,0 -65398650,"Hero Academy",play,1.8,0 -65398650,"Jamestown",purchase,1.0,0 -65398650,"Jamestown",play,1.7,0 -65398650,"Costume Quest",purchase,1.0,0 -65398650,"Costume Quest",play,1.7,0 -65398650,"Reus",purchase,1.0,0 -65398650,"Reus",play,1.6,0 -65398650,"BattleBlock Theater",purchase,1.0,0 -65398650,"BattleBlock Theater",play,1.6,0 -65398650,"Knights of Pen and Paper +1",purchase,1.0,0 -65398650,"Knights of Pen and Paper +1",play,1.4,0 -65398650,"Mortal Kombat X",purchase,1.0,0 -65398650,"Mortal Kombat X",play,1.0,0 -65398650,"LEVEL 22",purchase,1.0,0 -65398650,"LEVEL 22",play,0.9,0 -65398650,"FreeStyle2 Street Basketball",purchase,1.0,0 -65398650,"FreeStyle2 Street Basketball",play,0.9,0 -65398650,"Transformers War for Cybertron",purchase,1.0,0 -65398650,"Transformers War for Cybertron",play,0.9,0 -65398650,"The Cursed Crusade",purchase,1.0,0 -65398650,"The Cursed Crusade",play,0.9,0 -65398650,"Bulletstorm",purchase,1.0,0 -65398650,"Bulletstorm",play,0.8,0 -65398650,"Jolly Rover",purchase,1.0,0 -65398650,"Jolly Rover",play,0.7,0 -65398650,"Mitsurugi Kamui Hikae",purchase,1.0,0 -65398650,"Mitsurugi Kamui Hikae",play,0.7,0 -65398650,"DiRT 3",purchase,1.0,0 -65398650,"DiRT 3",play,0.7,0 -65398650,"Final Exam",purchase,1.0,0 -65398650,"Final Exam",play,0.7,0 -65398650,"DogFighter",purchase,1.0,0 -65398650,"DogFighter",play,0.6,0 -65398650,"Vertical Drop Heroes HD",purchase,1.0,0 -65398650,"Vertical Drop Heroes HD",play,0.6,0 -65398650,"Kung Fu Strike The Warrior's Rise",purchase,1.0,0 -65398650,"Kung Fu Strike The Warrior's Rise",play,0.6,0 -65398650,"Max Payne 3",purchase,1.0,0 -65398650,"Max Payne 3",play,0.6,0 -65398650,"Alien Swarm",purchase,1.0,0 -65398650,"Alien Swarm",play,0.6,0 -65398650,"QuantZ",purchase,1.0,0 -65398650,"QuantZ",play,0.5,0 -65398650,"Cloudbuilt",purchase,1.0,0 -65398650,"Cloudbuilt",play,0.5,0 -65398650,"Freedom Force",purchase,1.0,0 -65398650,"Freedom Force",play,0.4,0 -65398650,"And Yet It Moves",purchase,1.0,0 -65398650,"And Yet It Moves",play,0.4,0 -65398650,"Double Dragon Neon",purchase,1.0,0 -65398650,"Double Dragon Neon",play,0.3,0 -65398650,"Street Fighter V Beta",purchase,1.0,0 -65398650,"Street Fighter V Beta",play,0.3,0 -65398650,"Dungeon Defenders II",purchase,1.0,0 -65398650,"Dungeon Defenders II",play,0.3,0 -65398650,"Duke Nukem Forever",purchase,1.0,0 -65398650,"Duke Nukem Forever",play,0.3,0 -65398650,"Bunch Of Heroes",purchase,1.0,0 -65398650,"Bunch Of Heroes",play,0.3,0 -65398650,"Mortal Kombat Kollection",purchase,1.0,0 -65398650,"Mortal Kombat Kollection",play,0.3,0 -65398650,"Cubemen",purchase,1.0,0 -65398650,"Cubemen",play,0.3,0 -65398650,"Cry of Fear",purchase,1.0,0 -65398650,"Cry of Fear",play,0.3,0 -65398650,"Serious Sam HD The Second Encounter",purchase,1.0,0 -65398650,"Serious Sam HD The Second Encounter",play,0.3,0 -65398650,"Pid ",purchase,1.0,0 -65398650,"Pid ",play,0.3,0 -65398650,"Marlow Briggs",purchase,1.0,0 -65398650,"Marlow Briggs",play,0.3,0 -65398650,"VVVVVV",purchase,1.0,0 -65398650,"VVVVVV",play,0.2,0 -65398650,"Archeblade",purchase,1.0,0 -65398650,"Archeblade",play,0.2,0 -65398650,"Galcon Fusion",purchase,1.0,0 -65398650,"Galcon Fusion",play,0.2,0 -65398650,"ORION Prelude",purchase,1.0,0 -65398650,"ORION Prelude",play,0.2,0 -65398650,"Killer is Dead",purchase,1.0,0 -65398650,"Killer is Dead",play,0.2,0 -65398650,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -65398650,"Operation Flashpoint Dragon Rising",play,0.1,0 -65398650,"BRAINPIPE A Plunge to Unhumanity",purchase,1.0,0 -65398650,"BRAINPIPE A Plunge to Unhumanity",play,0.1,0 -65398650,"Slip",purchase,1.0,0 -65398650,"Slip",play,0.1,0 -65398650,"Shatter",purchase,1.0,0 -65398650,"Soundodger+",purchase,1.0,0 -65398650,"AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome",purchase,1.0,0 -65398650,"Zero Gear",purchase,1.0,0 -65398650,"ProtoGalaxy",purchase,1.0,0 -65398650,"GridRunner Revolution",purchase,1.0,0 -65398650,"King Arthur's Gold",purchase,1.0,0 -65398650,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -65398650,"Serious Sam Classic The First Encounter",purchase,1.0,0 -65398650,"Portal",purchase,1.0,0 -65398650,"BioShock 2",purchase,1.0,0 -65398650,"Spec Ops The Line",purchase,1.0,0 -65398650,"Operation Flashpoint Red River",purchase,1.0,0 -65398650,"Serious Sam Classics Revolution",purchase,1.0,0 -65398650,"Velvet Assassin",purchase,1.0,0 -65398650,"Serious Sam HD The First Encounter",purchase,1.0,0 -65398650,"Tomb Raider",purchase,1.0,0 -65398650,"Binary Domain",purchase,1.0,0 -65398650,"Oniken",purchase,1.0,0 -65398650,"Overlord Raising Hell",purchase,1.0,0 -65398650,"Overlord",purchase,1.0,0 -65398650,"1953 - KGB Unleashed",purchase,1.0,0 -65398650,"ACE - Arena Cyber Evolution",purchase,1.0,0 -65398650,"Adventures of Shuggy",purchase,1.0,0 -65398650,"Afterfall InSanity Extended Edition",purchase,1.0,0 -65398650,"ArchonClassic",purchase,1.0,0 -65398650,"Astro Tripper",purchase,1.0,0 -65398650,"Avencast",purchase,1.0,0 -65398650,"Bardbarian",purchase,1.0,0 -65398650,"BioShock",purchase,1.0,0 -65398650,"Blue Toad Murder Files - The Mysteries of Little Riddle",purchase,1.0,0 -65398650,"Borderlands",purchase,1.0,0 -65398650,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -65398650,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -65398650,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -65398650,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -65398650,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -65398650,"Broken Sword 2 - the Smoking Mirror Remastered",purchase,1.0,0 -65398650,"Brothers - A Tale of Two Sons",purchase,1.0,0 -65398650,"Cave Story+",purchase,1.0,0 -65398650,"Closure",purchase,1.0,0 -65398650,"Company of Heroes",purchase,1.0,0 -65398650,"Company of Heroes (New Steam Version)",purchase,1.0,0 -65398650,"Company of Heroes Opposing Fronts",purchase,1.0,0 -65398650,"Company of Heroes Tales of Valor",purchase,1.0,0 -65398650,"Counter-Strike",purchase,1.0,0 -65398650,"Croixleur Sigma",purchase,1.0,0 -65398650,"Crusader Kings II",purchase,1.0,0 -65398650,"Darksiders",purchase,1.0,0 -65398650,"Data Jammers FastForward",purchase,1.0,0 -65398650,"Day of Defeat",purchase,1.0,0 -65398650,"Deadlight",purchase,1.0,0 -65398650,"Deadlight Original Soundtrack",purchase,1.0,0 -65398650,"Deathmatch Classic",purchase,1.0,0 -65398650,"DiRT 3 Complete Edition",purchase,1.0,0 -65398650,"DiRT Showdown",purchase,1.0,0 -65398650,"Enclave",purchase,1.0,0 -65398650,"F.E.A.R.",purchase,1.0,0 -65398650,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -65398650,"F.E.A.R. Extraction Point",purchase,1.0,0 -65398650,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -65398650,"Face Noir",purchase,1.0,0 -65398650,"Fist Puncher",purchase,1.0,0 -65398650,"Freedom Force vs. the 3rd Reich",purchase,1.0,0 -65398650,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -65398650,"Gauntlet ",purchase,1.0,0 -65398650,"Grimm",purchase,1.0,0 -65398650,"GTR Evolution",purchase,1.0,0 -65398650,"Guns of Icarus Online",purchase,1.0,0 -65398650,"Half-Life",purchase,1.0,0 -65398650,"Half-Life Blue Shift",purchase,1.0,0 -65398650,"Half-Life Opposing Force",purchase,1.0,0 -65398650,"Hero of the Kingdom",purchase,1.0,0 -65398650,"Hitman Absolution",purchase,1.0,0 -65398650,"HOARD",purchase,1.0,0 -65398650,"I Have No Mouth, and I Must Scream",purchase,1.0,0 -65398650,"IL-2 Sturmovik 1946",purchase,1.0,0 -65398650,"Imagine Me",purchase,1.0,0 -65398650,"Infected The Twin Vaccine - Collector's Edition",purchase,1.0,0 -65398650,"InFlux",purchase,1.0,0 -65398650,"Insecticide Part 1",purchase,1.0,0 -65398650,"Ittle Dew",purchase,1.0,0 -65398650,"Kaptain Brawe",purchase,1.0,0 -65398650,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -65398650,"Kingdom Elemental",purchase,1.0,0 -65398650,"Kingdom Wars",purchase,1.0,0 -65398650,"Lara Croft and the Guardian of Light",purchase,1.0,0 -65398650,"Legendary",purchase,1.0,0 -65398650,"Legend of Grimrock",purchase,1.0,0 -65398650,"Legends of Aethereus",purchase,1.0,0 -65398650,"Lightfish",purchase,1.0,0 -65398650,"Light of Altair",purchase,1.0,0 -65398650,"Little Inferno",purchase,1.0,0 -65398650,"Max The Curse of Brotherhood",purchase,1.0,0 -65398650,"Meltdown",purchase,1.0,0 -65398650,"Memories of a Vagabond",purchase,1.0,0 -65398650,"METAL SLUG X",purchase,1.0,0 -65398650,"Metro 2033",purchase,1.0,0 -65398650,"Monday Night Combat",purchase,1.0,0 -65398650,"MURI",purchase,1.0,0 -65398650,"Need for Speed Hot Pursuit",purchase,1.0,0 -65398650,"Nuclear Dawn",purchase,1.0,0 -65398650,"Patch testing for Chivalry",purchase,1.0,0 -65398650,"PAYDAY 2",purchase,1.0,0 -65398650,"PixelJunk Eden",purchase,1.0,0 -65398650,"PixelJunk Monsters Ultimate",purchase,1.0,0 -65398650,"PixelJunk Shooter",purchase,1.0,0 -65398650,"Plain Sight",purchase,1.0,0 -65398650,"Portal 2",purchase,1.0,0 -65398650,"Primal Fears",purchase,1.0,0 -65398650,"Psychonauts Demo",purchase,1.0,0 -65398650,"Puzzle Bots",purchase,1.0,0 -65398650,"RACE 07",purchase,1.0,0 -65398650,"RaceRoom Racing Experience ",purchase,1.0,0 -65398650,"Ravensword Shadowlands",purchase,1.0,0 -65398650,"Red Faction Armageddon",purchase,1.0,0 -65398650,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -65398650,"Redshirt",purchase,1.0,0 -65398650,"Rekoil",purchase,1.0,0 -65398650,"Ricochet",purchase,1.0,0 -65398650,"Rise of Incarnates",purchase,1.0,0 -65398650,"Rise of the Argonauts",purchase,1.0,0 -65398650,"Roogoo",purchase,1.0,0 -65398650,"Saints Row IV",purchase,1.0,0 -65398650,"Savant - Ascent",purchase,1.0,0 -65398650,"Scourge Outbreak",purchase,1.0,0 -65398650,"Shad'O",purchase,1.0,0 -65398650,"Shattered Haven",purchase,1.0,0 -65398650,"Sideway",purchase,1.0,0 -65398650,"Sid Meier's Civilization III Complete",purchase,1.0,0 -65398650,"Sid Meier's Civilization IV",purchase,1.0,0 -65398650,"Sid Meier's Civilization IV",purchase,1.0,0 -65398650,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -65398650,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -65398650,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -65398650,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -65398650,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -65398650,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -65398650,"Sid Meier's Railroads!",purchase,1.0,0 -65398650,"Sniper Elite V2",purchase,1.0,0 -65398650,"Solar 2",purchase,1.0,0 -65398650,"Space Engineers",purchase,1.0,0 -65398650,"Stacking",purchase,1.0,0 -65398650,"Super Puzzle Platformer Deluxe",purchase,1.0,0 -65398650,"Sweezy Gunner",purchase,1.0,0 -65398650,"Syberia 2",purchase,1.0,0 -65398650,"Syder Arcade",purchase,1.0,0 -65398650,"Takedown Red Sabre",purchase,1.0,0 -65398650,"Team Fortress Classic",purchase,1.0,0 -65398650,"The 39 Steps",purchase,1.0,0 -65398650,"The Bard's Tale",purchase,1.0,0 -65398650,"The Bureau XCOM Declassified",purchase,1.0,0 -65398650,"The Darkness II",purchase,1.0,0 -65398650,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -65398650,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -65398650,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -65398650,"The Scourge Project Episode 1 and 2",purchase,1.0,0 -65398650,"The Ship",purchase,1.0,0 -65398650,"The Ship Single Player",purchase,1.0,0 -65398650,"The Ship Tutorial",purchase,1.0,0 -65398650,"The Shivah",purchase,1.0,0 -65398650,"Thomas Was Alone",purchase,1.0,0 -65398650,"Tsukumogami",purchase,1.0,0 -65398650,"Vanguard Princess Director's Cut",purchase,1.0,0 -65398650,"Warframe",purchase,1.0,0 -65398650,"Zeno Clash 2",purchase,1.0,0 -33577800,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -33577800,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -180394356,"Dota 2",purchase,1.0,0 -180394356,"Dota 2",play,7.7,0 -180394356,"Steel Ocean",purchase,1.0,0 -180394356,"Steel Ocean",play,4.7,0 -221379737,"Dota 2",purchase,1.0,0 -221379737,"Dota 2",play,67.0,0 -219706418,"Counter-Strike Nexon Zombies",purchase,1.0,0 -219706418,"Counter-Strike Nexon Zombies",play,2.5,0 -219706418,"Brick-Force",purchase,1.0,0 -219706418,"Dizzel",purchase,1.0,0 -219706418,"Gear Up",purchase,1.0,0 -219706418,"Unturned",purchase,1.0,0 -98380332,"Team Fortress 2",purchase,1.0,0 -98380332,"Team Fortress 2",play,4.5,0 -22075531,"Counter-Strike Source",purchase,1.0,0 -22075531,"Counter-Strike Source",play,796.0,0 -22075531,"Counter-Strike Global Offensive",purchase,1.0,0 -22075531,"Counter-Strike Global Offensive",play,2.8,0 -22075531,"Half-Life 2 Deathmatch",purchase,1.0,0 -22075531,"Half-Life 2 Deathmatch",play,0.4,0 -22075531,"Half-Life 2 Lost Coast",purchase,1.0,0 -22075531,"Day of Defeat Source",purchase,1.0,0 -282533716,"Dota 2",purchase,1.0,0 -282533716,"Dota 2",play,1.5,0 -193226877,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -193226877,"Tom Clancy's Ghost Recon Phantoms - NA",play,7.6,0 -193226877,"Dota 2",purchase,1.0,0 -193226877,"Dota 2",play,0.3,0 -168401940,"Dota 2",purchase,1.0,0 -168401940,"Dota 2",play,1.0,0 -231420711,"Dota 2",purchase,1.0,0 -231420711,"Dota 2",play,3.5,0 -113557230,"Team Fortress 2",purchase,1.0,0 -113557230,"Team Fortress 2",play,1.8,0 -113557230,"Arma 2 DayZ Mod",purchase,1.0,0 -113557230,"Arma 2 DayZ Mod",play,0.3,0 -113557230,"Arma 2",purchase,1.0,0 -113557230,"Arma 2 Operation Arrowhead",purchase,1.0,0 -113557230,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -28648610,"The Elder Scrolls V Skyrim",purchase,1.0,0 -28648610,"The Elder Scrolls V Skyrim",play,21.0,0 -28648610,"FINAL FANTASY VII",purchase,1.0,0 -28648610,"FINAL FANTASY VII",play,5.3,0 -28648610,"Dota 2",purchase,1.0,0 -28648610,"Dota 2",play,2.7,0 -28648610,"Counter-Strike",purchase,1.0,0 -28648610,"Counter-Strike",play,1.0,0 -28648610,"Half-Life",purchase,1.0,0 -28648610,"Half-Life",play,0.2,0 -28648610,"Counter-Strike Condition Zero",purchase,1.0,0 -28648610,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -28648610,"Day of Defeat",purchase,1.0,0 -28648610,"Deathmatch Classic",purchase,1.0,0 -28648610,"Half-Life Blue Shift",purchase,1.0,0 -28648610,"Half-Life Opposing Force",purchase,1.0,0 -28648610,"Might & Magic Duel of Champions",purchase,1.0,0 -28648610,"Ricochet",purchase,1.0,0 -28648610,"Team Fortress Classic",purchase,1.0,0 -101827664,"Empire Total War",purchase,1.0,0 -101827664,"Empire Total War",play,0.3,0 -101827664,"Football Manager 2014",purchase,1.0,0 -166374827,"Dota 2",purchase,1.0,0 -166374827,"Dota 2",play,1472.0,0 -166374827,"Team Fortress 2",purchase,1.0,0 -166374827,"Team Fortress 2",play,0.3,0 -166374827,"Dethroned!",purchase,1.0,0 -166374827,"Everlasting Summer",purchase,1.0,0 -166374827,"F.E.A.R. Online",purchase,1.0,0 -166374827,"Fistful of Frags",purchase,1.0,0 -166374827,"Free to Play",purchase,1.0,0 -166374827,"No More Room in Hell",purchase,1.0,0 -166374827,"Only If",purchase,1.0,0 -166374827,"Path of Exile",purchase,1.0,0 -166374827,"Quake Live",purchase,1.0,0 -166374827,"The Lord of the Rings Online",purchase,1.0,0 -166374827,"TOME Immortal Arena",purchase,1.0,0 -166374827,"Unturned",purchase,1.0,0 -97564287,"Fistful of Frags",purchase,1.0,0 -108575170,"Serious Sam HD The Second Encounter",purchase,1.0,0 -108575170,"Serious Sam HD The Second Encounter",play,21.0,0 -108575170,"Dota 2",purchase,1.0,0 -108575170,"Dota 2",play,5.2,0 -108575170,"Castle Crashers",purchase,1.0,0 -108575170,"Castle Crashers",play,2.3,0 -108575170,"BattleBlock Theater",purchase,1.0,0 -108575170,"BattleBlock Theater",play,1.3,0 -108575170,"Castle Crashers - Blacksmith Pack",purchase,1.0,0 -108575170,"Castle Crashers - Pink Knight Pack",purchase,1.0,0 -108575170,"Dead Island Epidemic",purchase,1.0,0 -227191434,"Dota 2",purchase,1.0,0 -227191434,"Dota 2",play,0.1,0 -175711893,"Dota 2",purchase,1.0,0 -175711893,"Dota 2",play,599.0,0 -175711893,"GunZ 2 The Second Duel",purchase,1.0,0 -175711893,"GunZ 2 The Second Duel",play,0.3,0 -145320311,"Counter-Strike Global Offensive",purchase,1.0,0 -145320311,"Counter-Strike Global Offensive",play,712.0,0 -145320311,"The Elder Scrolls V Skyrim",purchase,1.0,0 -145320311,"The Elder Scrolls V Skyrim",play,37.0,0 -145320311,"Age of Empires II HD Edition",purchase,1.0,0 -145320311,"Age of Empires II HD Edition",play,17.0,0 -145320311,"Rust",purchase,1.0,0 -145320311,"Rust",play,12.0,0 -145320311,"Terraria",purchase,1.0,0 -145320311,"Terraria",play,4.5,0 -145320311,"Garry's Mod",purchase,1.0,0 -145320311,"Garry's Mod",play,0.7,0 -145320311,"Unturned",purchase,1.0,0 -145320311,"Unturned",play,0.4,0 -145320311,"AdVenture Capitalist",purchase,1.0,0 -145320311,"BLOCKADE 3D",purchase,1.0,0 -145320311,"Brick-Force",purchase,1.0,0 -145320311,"Mainland",purchase,1.0,0 -145320311,"Trove",purchase,1.0,0 -205730271,"Castle Crashers",purchase,1.0,0 -205730271,"Castle Crashers",play,4.4,0 -205730271,"BattleBlock Theater",purchase,1.0,0 -205730271,"BattleBlock Theater",play,3.3,0 -205730271,"Super Crate Box",purchase,1.0,0 -205730271,"The Expendabros",purchase,1.0,0 -205730271,"Unturned",purchase,1.0,0 -249176501,"Unturned",purchase,1.0,0 -249176501,"Unturned",play,2.8,0 -249176501,"Gear Up",purchase,1.0,0 -249176501,"APB Reloaded",purchase,1.0,0 -249176501,"Defiance",purchase,1.0,0 -249176501,"Robocraft",purchase,1.0,0 -249176501,"Vindictus",purchase,1.0,0 -224547146,"Dota 2",purchase,1.0,0 -224547146,"Dota 2",play,1.6,0 -127693647,"Team Fortress 2",purchase,1.0,0 -127693647,"Team Fortress 2",play,56.0,0 -229459943,"Empire Total War",purchase,1.0,0 -96086538,"Sniper Ghost Warrior",purchase,1.0,0 -96086538,"Sniper Ghost Warrior",play,3.2,0 -121207655,"Saints Row The Third",purchase,1.0,0 -121207655,"Saints Row The Third",play,64.0,0 -121207655,"Darksiders",purchase,1.0,0 -121207655,"Darksiders",play,1.0,0 -121207655,"Metro 2033",purchase,1.0,0 -121207655,"Metro 2033",play,0.2,0 -121207655,"Company of Heroes",purchase,1.0,0 -121207655,"Company of Heroes (New Steam Version)",purchase,1.0,0 -121207655,"Company of Heroes Opposing Fronts",purchase,1.0,0 -121207655,"Company of Heroes Tales of Valor",purchase,1.0,0 -121207655,"Red Faction Armageddon",purchase,1.0,0 -57033787,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -57033787,"Call of Duty Modern Warfare 2 - Multiplayer",play,121.0,0 -57033787,"Just Cause 2",purchase,1.0,0 -57033787,"Just Cause 2",play,72.0,0 -57033787,"Battlefield Bad Company 2",purchase,1.0,0 -57033787,"Battlefield Bad Company 2",play,48.0,0 -57033787,"Risen 2 - Dark Waters",purchase,1.0,0 -57033787,"Risen 2 - Dark Waters",play,37.0,0 -57033787,"Call of Duty Modern Warfare 2",purchase,1.0,0 -57033787,"Call of Duty Modern Warfare 2",play,19.3,0 -57033787,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -57033787,"Call of Duty Black Ops - Multiplayer",play,5.9,0 -57033787,"Call of Duty Black Ops",purchase,1.0,0 -57033787,"Call of Duty Black Ops",play,5.3,0 -125324040,"Dota 2",purchase,1.0,0 -125324040,"Dota 2",play,2666.0,0 -125324040,"Counter-Strike Global Offensive",purchase,1.0,0 -125324040,"Counter-Strike Global Offensive",play,15.0,0 -106682261,"Call of Duty Modern Warfare 3",purchase,1.0,0 -106682261,"Call of Duty Modern Warfare 3",play,9.3,0 -106682261,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -106682261,"Call of Duty Modern Warfare 3 - Multiplayer",play,0.6,0 -18109027,"Counter-Strike Source",purchase,1.0,0 -18109027,"Counter-Strike Source",play,21.0,0 -18109027,"BioShock Infinite",purchase,1.0,0 -18109027,"BioShock Infinite",play,7.4,0 -18109027,"Half-Life 2 Deathmatch",purchase,1.0,0 -18109027,"Half-Life 2 Deathmatch",play,6.6,0 -18109027,"Counter-Strike",purchase,1.0,0 -18109027,"Counter-Strike",play,3.8,0 -18109027,"Lara Croft and the Guardian of Light",purchase,1.0,0 -18109027,"Lara Croft and the Guardian of Light",play,2.3,0 -18109027,"Day of Defeat Source",purchase,1.0,0 -18109027,"Day of Defeat Source",play,0.4,0 -18109027,"Day of Defeat",purchase,1.0,0 -18109027,"Deathmatch Classic",purchase,1.0,0 -18109027,"Half-Life",purchase,1.0,0 -18109027,"Half-Life 2 Lost Coast",purchase,1.0,0 -18109027,"Half-Life Blue Shift",purchase,1.0,0 -18109027,"Half-Life Opposing Force",purchase,1.0,0 -18109027,"Ricochet",purchase,1.0,0 -18109027,"Team Fortress Classic",purchase,1.0,0 -137460095,"Kerbal Space Program",purchase,1.0,0 -137460095,"Kerbal Space Program",play,219.0,0 -137460095,"Time Clickers",purchase,1.0,0 -137460095,"Time Clickers",play,53.0,0 -137460095,"FTL Faster Than Light",purchase,1.0,0 -137460095,"FTL Faster Than Light",play,36.0,0 -137460095,"Space Quest Collection",purchase,1.0,0 -137460095,"Space Quest Collection",play,22.0,0 -137460095,"Strong Bad Episode 1 Homestar Ruiner",purchase,1.0,0 -137460095,"Strong Bad Episode 1 Homestar Ruiner",play,7.0,0 -137460095,"Surgeon Simulator",purchase,1.0,0 -137460095,"Surgeon Simulator",play,1.7,0 -137460095,"Robocraft",purchase,1.0,0 -137460095,"Robocraft",play,0.3,0 -137460095,"Floating Point",purchase,1.0,0 -137460095,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -137460095,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -137460095,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -137460095,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -137460095,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -137460095,"Bone Out from Boneville",purchase,1.0,0 -137460095,"Bone The Great Cow Race",purchase,1.0,0 -137460095,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -137460095,"Grand Theft Auto V",purchase,1.0,0 -137460095,"Hector Ep 1",purchase,1.0,0 -137460095,"Hector Ep 2",purchase,1.0,0 -137460095,"Hector Ep 3",purchase,1.0,0 -137460095,"Jurassic Park The Game",purchase,1.0,0 -137460095,"Law & Order Legacies",purchase,1.0,0 -137460095,"Poker Night 2",purchase,1.0,0 -137460095,"Poker Night at the Inventory",purchase,1.0,0 -137460095,"Puzzle Agent",purchase,1.0,0 -137460095,"Puzzle Agent 2",purchase,1.0,0 -137460095,"RAGE",purchase,1.0,0 -137460095,"Sam & Max 101 Culture Shock",purchase,1.0,0 -137460095,"Sam & Max 102 Situation Comedy",purchase,1.0,0 -137460095,"Sam & Max 103 The Mole, the Mob and the Meatball",purchase,1.0,0 -137460095,"Sam & Max 105 Reality 2.0",purchase,1.0,0 -137460095,"Sam & Max 106 Bright Side of the Moon",purchase,1.0,0 -137460095,"Sam & Max 201 Ice Station Santa",purchase,1.0,0 -137460095,"Sam & Max 202 Moai Better Blues",purchase,1.0,0 -137460095,"Sam & Max 203 Night of the Raving Dead",purchase,1.0,0 -137460095,"Sam & Max 204 Chariots of the Dogs",purchase,1.0,0 -137460095,"Sam & Max 205 What's New Beelzebub?",purchase,1.0,0 -137460095,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -137460095,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -137460095,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -137460095,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -137460095,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -137460095,"Strong Bad Episode 2 Strong Badia the Free",purchase,1.0,0 -137460095,"Strong Bad Episode 3 Baddest of the Bands",purchase,1.0,0 -137460095,"Strong Bad Episode 4 Dangeresque 3",purchase,1.0,0 -137460095,"Strong Bad Episode 5 8-Bit Is Enough",purchase,1.0,0 -137460095,"Tales from the Borderlands",purchase,1.0,0 -137460095,"Tales of Monkey Island Chapter 1 - Launch of the Screaming Narwhal",purchase,1.0,0 -137460095,"Tales of Monkey Island Chapter 2 - The Siege of Spinner Cay ",purchase,1.0,0 -137460095,"Tales of Monkey Island Chapter 3 - Lair of the Leviathan ",purchase,1.0,0 -137460095,"Tales of Monkey Island Chapter 4 - The Trial and Execution of Guybrush Threepwood ",purchase,1.0,0 -137460095,"Tales of Monkey Island Chapter 5 - Rise of the Pirate God",purchase,1.0,0 -137460095,"Telltale Texas Hold'Em",purchase,1.0,0 -137460095,"The Walking Dead",purchase,1.0,0 -137460095,"The Walking Dead Season Two",purchase,1.0,0 -137460095,"The Wolf Among Us",purchase,1.0,0 -137460095,"Warframe",purchase,1.0,0 -279637570,"Dota 2",purchase,1.0,0 -279637570,"Dota 2",play,202.0,0 -261857176,"Cities Skylines",purchase,1.0,0 -261857176,"Cities Skylines",play,5.1,0 -261857176,"Robocraft",purchase,1.0,0 -205965436,"Robocraft",purchase,1.0,0 -205965436,"Robocraft",play,40.0,0 -205965436,"Grand Theft Auto V",purchase,1.0,0 -205965436,"Grand Theft Auto V",play,19.3,0 -205965436,"PAYDAY The Heist",purchase,1.0,0 -205965436,"PAYDAY The Heist",play,5.8,0 -205965436,"WAKFU",purchase,1.0,0 -205965436,"WAKFU",play,5.3,0 -205965436,"Neverwinter",purchase,1.0,0 -205965436,"Neverwinter",play,4.3,0 -205965436,"Card Hunter",purchase,1.0,0 -205965436,"Card Hunter",play,3.3,0 -205965436,"Dead Rising 2",purchase,1.0,0 -205965436,"Dead Rising 2",play,1.9,0 -205965436,"Don't Starve Together Beta",purchase,1.0,0 -205965436,"Don't Starve Together Beta",play,1.7,0 -205965436,"Unturned",purchase,1.0,0 -205965436,"Unturned",play,1.3,0 -205965436,"Warframe",purchase,1.0,0 -205965436,"Warframe",play,1.1,0 -205965436,"Nosgoth",purchase,1.0,0 -205965436,"Nosgoth",play,1.0,0 -205965436,"Age of Empires II HD Edition",purchase,1.0,0 -205965436,"Age of Empires II HD Edition",play,0.7,0 -205965436,"Magicka Wizard Wars",purchase,1.0,0 -205965436,"Magicka Wizard Wars",play,0.6,0 -205965436,"Heroes & Generals",purchase,1.0,0 -205965436,"Heroes & Generals",play,0.3,0 -205965436,"Rustbucket Rumble",purchase,1.0,0 -205965436,"Rustbucket Rumble",play,0.3,0 -205965436,"Rise of Incarnates",purchase,1.0,0 -205965436,"Rise of Incarnates",play,0.2,0 -205965436,"Tap Tap Infinity",purchase,1.0,0 -205965436,"Tales Runner",purchase,1.0,0 -205965436,"Chivalry Medieval Warfare",purchase,1.0,0 -205965436,"Patch testing for Chivalry",purchase,1.0,0 -205965436,"War Thunder",purchase,1.0,0 -61831445,"Darkest Hour Europe '44-'45",purchase,1.0,0 -61831445,"Mare Nostrum",purchase,1.0,0 -61831445,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -307062543,"Red Crucible Firestorm",purchase,1.0,0 -307062543,"Red Crucible Firestorm",play,21.0,0 -207641091,"Dota 2",purchase,1.0,0 -207641091,"Dota 2",play,0.4,0 -84054119,"Age of Empires II HD Edition",purchase,1.0,0 -84054119,"Age of Empires II HD Edition",play,8.7,0 -84054119,"Counter-Strike",purchase,1.0,0 -84054119,"Counter-Strike",play,1.8,0 -84054119,"Counter-Strike Condition Zero",purchase,1.0,0 -84054119,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -198913824,"Dota 2",purchase,1.0,0 -198913824,"Dota 2",play,9.6,0 -60984151,"Counter-Strike Source",purchase,1.0,0 -60984151,"Counter-Strike Source",play,13.7,0 -60984151,"Day of Defeat Source",purchase,1.0,0 -60984151,"Half-Life 2 Deathmatch",purchase,1.0,0 -60984151,"Half-Life 2 Lost Coast",purchase,1.0,0 -260499716,"Dota 2",purchase,1.0,0 -260499716,"Dota 2",play,11.5,0 -195406396,"Dota 2",purchase,1.0,0 -195406396,"Dota 2",play,35.0,0 -221553173,"Robocraft",purchase,1.0,0 -221553173,"Robocraft",play,13.1,0 -144580725,"Team Fortress 2",purchase,1.0,0 -144580725,"Team Fortress 2",play,1677.0,0 -144580725,"Left 4 Dead 2",purchase,1.0,0 -144580725,"Left 4 Dead 2",play,58.0,0 -144580725,"Portal 2",purchase,1.0,0 -144580725,"Portal 2",play,15.1,0 -144580725,"Scribblenauts Unlimited",purchase,1.0,0 -144580725,"Scribblenauts Unlimited",play,13.9,0 -144580725,"Half-Life",purchase,1.0,0 -144580725,"Half-Life",play,11.7,0 -144580725,"Terraria",purchase,1.0,0 -144580725,"Terraria",play,10.5,0 -144580725,"Portal Stories Mel",purchase,1.0,0 -144580725,"Portal Stories Mel",play,10.2,0 -144580725,"PixelJunk Shooter",purchase,1.0,0 -144580725,"PixelJunk Shooter",play,4.6,0 -144580725,"Trine",purchase,1.0,0 -144580725,"Trine",play,4.2,0 -144580725,"Portal",purchase,1.0,0 -144580725,"Portal",play,4.0,0 -144580725,"Counter-Strike Global Offensive",purchase,1.0,0 -144580725,"Counter-Strike Global Offensive",play,3.5,0 -144580725,"PAYDAY The Heist",purchase,1.0,0 -144580725,"PAYDAY The Heist",play,1.8,0 -144580725,"Trove",purchase,1.0,0 -144580725,"Trove",play,1.8,0 -144580725,"Thinking with Time Machine",purchase,1.0,0 -144580725,"Thinking with Time Machine",play,1.8,0 -144580725,"Counter-Strike Condition Zero",purchase,1.0,0 -144580725,"Counter-Strike Condition Zero",play,1.7,0 -144580725,"Squishy the Suicidal Pig",purchase,1.0,0 -144580725,"Squishy the Suicidal Pig",play,0.8,0 -144580725,"Team Fortress Classic",purchase,1.0,0 -144580725,"Team Fortress Classic",play,0.8,0 -144580725,"Counter-Strike",purchase,1.0,0 -144580725,"Counter-Strike",play,0.8,0 -144580725,"Trine 2",purchase,1.0,0 -144580725,"Trine 2",play,0.8,0 -144580725,"404Sight",purchase,1.0,0 -144580725,"404Sight",play,0.8,0 -144580725,"Ring Runner Flight of the Sages",purchase,1.0,0 -144580725,"Ring Runner Flight of the Sages",play,0.6,0 -144580725,"Transformice",purchase,1.0,0 -144580725,"Transformice",play,0.6,0 -144580725,"Nosgoth",purchase,1.0,0 -144580725,"Nosgoth",play,0.5,0 -144580725,"Dirty Bomb",purchase,1.0,0 -144580725,"Dirty Bomb",play,0.4,0 -144580725,"Unturned",purchase,1.0,0 -144580725,"Unturned",play,0.4,0 -144580725,"Waveform",purchase,1.0,0 -144580725,"Battle Nations",purchase,1.0,0 -144580725,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -144580725,"Counter-Strike Source",purchase,1.0,0 -144580725,"Dungeon Defenders II",purchase,1.0,0 -144580725,"Fistful of Frags",purchase,1.0,0 -144580725,"Half-Life 2",purchase,1.0,0 -144580725,"Half-Life 2 Deathmatch",purchase,1.0,0 -144580725,"Half-Life 2 Episode One",purchase,1.0,0 -144580725,"Half-Life 2 Episode Two",purchase,1.0,0 -144580725,"Half-Life 2 Lost Coast",purchase,1.0,0 -144580725,"Half-Life Blue Shift",purchase,1.0,0 -144580725,"Half-Life Opposing Force",purchase,1.0,0 -144580725,"Half-Life Source",purchase,1.0,0 -144580725,"Half-Life Deathmatch Source",purchase,1.0,0 -144580725,"HAWKEN",purchase,1.0,0 -144580725,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -144580725,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -144580725,"Robocraft",purchase,1.0,0 -144580725,"The Mighty Quest For Epic Loot",purchase,1.0,0 -144580725,"Toribash",purchase,1.0,0 -195587567,"Terraria",purchase,1.0,0 -54568397,"Total War SHOGUN 2",purchase,1.0,0 -54568397,"Total War SHOGUN 2",play,105.0,0 -54568397,"Total War ROME II - Emperor Edition",purchase,1.0,0 -54568397,"Total War ROME II - Emperor Edition",play,67.0,0 -54568397,"The Elder Scrolls V Skyrim",purchase,1.0,0 -54568397,"The Elder Scrolls V Skyrim",play,58.0,0 -54568397,"Galaxy on Fire 2 Full HD",purchase,1.0,0 -54568397,"Galaxy on Fire 2 Full HD",play,22.0,0 -54568397,"F.E.A.R. 3",purchase,1.0,0 -54568397,"F.E.A.R. 3",play,6.6,0 -54568397,"The Cursed Crusade",purchase,1.0,0 -54568397,"The Cursed Crusade",play,2.8,0 -54568397,"Wargame European Escalation",purchase,1.0,0 -54568397,"Wargame European Escalation",play,2.5,0 -54568397,"Stronghold 3",purchase,1.0,0 -54568397,"Stronghold 3",play,2.4,0 -54568397,"Risen 2 - Dark Waters",purchase,1.0,0 -54568397,"Risen 2 - Dark Waters",play,2.0,0 -54568397,"RAGE",purchase,1.0,0 -54568397,"RAGE",play,0.6,0 -54568397,"Empire Total War",purchase,1.0,0 -54568397,"Stronghold HD",purchase,1.0,0 -54568397,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -288581914,"Warface",purchase,1.0,0 -288581914,"Warface",play,2.8,0 -203729080,"Dota 2",purchase,1.0,0 -203729080,"Dota 2",play,4.8,0 -213448361,"King's Quest",purchase,1.0,0 -213448361,"King's Quest",play,0.3,0 -213448361,"Realm of the Mad God",purchase,1.0,0 -80128229,"DARK SOULS II",purchase,1.0,0 -80128229,"DARK SOULS II",play,480.0,0 -80128229,"Warframe",purchase,1.0,0 -80128229,"Warframe",play,472.0,0 -80128229,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -80128229,"Dark Souls Prepare to Die Edition",play,392.0,0 -80128229,"Terraria",purchase,1.0,0 -80128229,"Terraria",play,266.0,0 -80128229,"The Elder Scrolls V Skyrim",purchase,1.0,0 -80128229,"The Elder Scrolls V Skyrim",play,238.0,0 -80128229,"ARK Survival Evolved",purchase,1.0,0 -80128229,"ARK Survival Evolved",play,209.0,0 -80128229,"Divinity Original Sin",purchase,1.0,0 -80128229,"Divinity Original Sin",play,97.0,0 -80128229,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -80128229,"DARK SOULS II Scholar of the First Sin",play,62.0,0 -80128229,"Starbound",purchase,1.0,0 -80128229,"Starbound",play,56.0,0 -80128229,"Robocraft",purchase,1.0,0 -80128229,"Robocraft",play,56.0,0 -80128229,"PAYDAY 2",purchase,1.0,0 -80128229,"PAYDAY 2",play,39.0,0 -80128229,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -80128229,"Kingdoms of Amalur Reckoning",play,33.0,0 -80128229,"Dungeon Defenders",purchase,1.0,0 -80128229,"Dungeon Defenders",play,31.0,0 -80128229,"XCOM Enemy Unknown",purchase,1.0,0 -80128229,"XCOM Enemy Unknown",play,24.0,0 -80128229,"BRINK",purchase,1.0,0 -80128229,"BRINK",play,23.0,0 -80128229,"Fallout New Vegas",purchase,1.0,0 -80128229,"Fallout New Vegas",play,21.0,0 -80128229,"Borderlands",purchase,1.0,0 -80128229,"Borderlands",play,21.0,0 -80128229,"Defiance",purchase,1.0,0 -80128229,"Defiance",play,17.0,0 -80128229,"Lords Of The Fallen",purchase,1.0,0 -80128229,"Lords Of The Fallen",play,16.2,0 -80128229,"Magicka",purchase,1.0,0 -80128229,"Magicka",play,13.2,0 -80128229,"Life Is Strange",purchase,1.0,0 -80128229,"Life Is Strange",play,12.9,0 -80128229,"FTL Faster Than Light",purchase,1.0,0 -80128229,"FTL Faster Than Light",play,12.5,0 -80128229,"Dungeonland",purchase,1.0,0 -80128229,"Dungeonland",play,12.3,0 -80128229,"The Walking Dead",purchase,1.0,0 -80128229,"The Walking Dead",play,11.6,0 -80128229,"Tomb Raider",purchase,1.0,0 -80128229,"Tomb Raider",play,10.6,0 -80128229,"The Walking Dead Season Two",purchase,1.0,0 -80128229,"The Walking Dead Season Two",play,8.9,0 -80128229,"Trine 2",purchase,1.0,0 -80128229,"Trine 2",play,8.0,0 -80128229,"Remember Me",purchase,1.0,0 -80128229,"Remember Me",play,8.0,0 -80128229,"Magic The Gathering Duels of the Planeswalkers 2012",purchase,1.0,0 -80128229,"Magic The Gathering Duels of the Planeswalkers 2012",play,7.4,0 -80128229,"Hammerwatch",purchase,1.0,0 -80128229,"Hammerwatch",play,7.1,0 -80128229,"Left 4 Dead 2",purchase,1.0,0 -80128229,"Left 4 Dead 2",play,7.1,0 -80128229,"Rogue Legacy",purchase,1.0,0 -80128229,"Rogue Legacy",play,6.8,0 -80128229,"MURDERED SOUL SUSPECT",purchase,1.0,0 -80128229,"MURDERED SOUL SUSPECT",play,6.8,0 -80128229,"Bastion",purchase,1.0,0 -80128229,"Bastion",play,6.1,0 -80128229,"Guns of Icarus Online",purchase,1.0,0 -80128229,"Guns of Icarus Online",play,6.0,0 -80128229,"The Witcher 3 Wild Hunt",purchase,1.0,0 -80128229,"The Witcher 3 Wild Hunt",play,6.0,0 -80128229,"Mark of the Ninja",purchase,1.0,0 -80128229,"Mark of the Ninja",play,5.7,0 -80128229,"Borderlands 2",purchase,1.0,0 -80128229,"Borderlands 2",play,5.5,0 -80128229,"fault milestone one",purchase,1.0,0 -80128229,"fault milestone one",play,5.4,0 -80128229,"Crysis 2 Maximum Edition",purchase,1.0,0 -80128229,"Crysis 2 Maximum Edition",play,5.3,0 -80128229,"Torchlight",purchase,1.0,0 -80128229,"Torchlight",play,5.2,0 -80128229,"Trine",purchase,1.0,0 -80128229,"Trine",play,5.0,0 -80128229,"The Binding of Isaac",purchase,1.0,0 -80128229,"The Binding of Isaac",play,4.8,0 -80128229,"Super Meat Boy",purchase,1.0,0 -80128229,"Super Meat Boy",play,4.8,0 -80128229,"Darksiders II",purchase,1.0,0 -80128229,"Darksiders II",play,4.6,0 -80128229,"Portal 2",purchase,1.0,0 -80128229,"Portal 2",play,3.8,0 -80128229,"SpeedRunners",purchase,1.0,0 -80128229,"SpeedRunners",play,3.0,0 -80128229,"RIFT",purchase,1.0,0 -80128229,"RIFT",play,3.0,0 -80128229,"Psychonauts",purchase,1.0,0 -80128229,"Psychonauts",play,2.9,0 -80128229,"LIMBO",purchase,1.0,0 -80128229,"LIMBO",play,2.8,0 -80128229,"Team Fortress 2",purchase,1.0,0 -80128229,"Team Fortress 2",play,2.8,0 -80128229,"Antichamber",purchase,1.0,0 -80128229,"Antichamber",play,2.7,0 -80128229,"Sakura Clicker",purchase,1.0,0 -80128229,"Sakura Clicker",play,2.7,0 -80128229,"Dungeons of Dredmor",purchase,1.0,0 -80128229,"Dungeons of Dredmor",play,2.4,0 -80128229,"Dead Island",purchase,1.0,0 -80128229,"Dead Island",play,2.0,0 -80128229,"Don't Starve",purchase,1.0,0 -80128229,"Don't Starve",play,1.7,0 -80128229,"Stonehearth",purchase,1.0,0 -80128229,"Stonehearth",play,1.6,0 -80128229,"fault milestone two sideabove",purchase,1.0,0 -80128229,"fault milestone two sideabove",play,1.6,0 -80128229,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -80128229,"Tiny and Big Grandpa's Leftovers",play,1.5,0 -80128229,"Analogue A Hate Story",purchase,1.0,0 -80128229,"Analogue A Hate Story",play,1.5,0 -80128229,"Brothers - A Tale of Two Sons",purchase,1.0,0 -80128229,"Brothers - A Tale of Two Sons",play,1.3,0 -80128229,"Stronghold 2",purchase,1.0,0 -80128229,"Stronghold 2",play,1.3,0 -80128229,"Costume Quest",purchase,1.0,0 -80128229,"Costume Quest",play,1.2,0 -80128229,"Awesomenauts",purchase,1.0,0 -80128229,"Awesomenauts",play,1.0,0 -80128229,"PAYDAY The Heist",purchase,1.0,0 -80128229,"PAYDAY The Heist",play,1.0,0 -80128229,"Shadowgate",purchase,1.0,0 -80128229,"Shadowgate",play,0.9,0 -80128229,"Styx Master of Shadows",purchase,1.0,0 -80128229,"Styx Master of Shadows",play,0.9,0 -80128229,"Cave Story+",purchase,1.0,0 -80128229,"Cave Story+",play,0.8,0 -80128229,"From Dust",purchase,1.0,0 -80128229,"From Dust",play,0.8,0 -80128229,"Stronghold Crusader 2",purchase,1.0,0 -80128229,"Stronghold Crusader 2",play,0.7,0 -80128229,"Ori and the Blind Forest",purchase,1.0,0 -80128229,"Ori and the Blind Forest",play,0.7,0 -80128229,"Amnesia The Dark Descent",purchase,1.0,0 -80128229,"Amnesia The Dark Descent",play,0.7,0 -80128229,"Jade Empire Special Edition",purchase,1.0,0 -80128229,"Jade Empire Special Edition",play,0.7,0 -80128229,"WORLD END ECONOMiCA episode.01",purchase,1.0,0 -80128229,"WORLD END ECONOMiCA episode.01",play,0.5,0 -80128229,"Rayman Origins",purchase,1.0,0 -80128229,"Rayman Origins",play,0.5,0 -80128229,"Crayon Physics Deluxe",purchase,1.0,0 -80128229,"Crayon Physics Deluxe",play,0.5,0 -80128229,"Dwarfs!?",purchase,1.0,0 -80128229,"Dwarfs!?",play,0.5,0 -80128229,"They Bleed Pixels",purchase,1.0,0 -80128229,"They Bleed Pixels",play,0.5,0 -80128229,"Outlast",purchase,1.0,0 -80128229,"Outlast",play,0.5,0 -80128229,"Miasmata",purchase,1.0,0 -80128229,"Miasmata",play,0.5,0 -80128229,"FEZ",purchase,1.0,0 -80128229,"FEZ",play,0.4,0 -80128229,"Strike Suit Zero",purchase,1.0,0 -80128229,"Strike Suit Zero",play,0.3,0 -80128229,"Tobe's Vertical Adventure",purchase,1.0,0 -80128229,"Tobe's Vertical Adventure",play,0.2,0 -80128229,"Stronghold Legends",purchase,1.0,0 -80128229,"Stronghold Legends",play,0.2,0 -80128229,"VVVVVV",purchase,1.0,0 -80128229,"VVVVVV",play,0.2,0 -80128229,"planetarian ~the reverie of a little planet~",purchase,1.0,0 -80128229,"planetarian ~the reverie of a little planet~",play,0.1,0 -80128229,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -80128229,"Cogs",purchase,1.0,0 -80128229,"Gear Up",purchase,1.0,0 -80128229,"To the Moon",purchase,1.0,0 -80128229,"And Yet It Moves",purchase,1.0,0 -80128229,"Anomaly 2",purchase,1.0,0 -80128229,"Beyond Good & Evil",purchase,1.0,0 -80128229,"BIT.TRIP RUNNER",purchase,1.0,0 -80128229,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -80128229,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -80128229,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -80128229,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -80128229,"Crysis",purchase,1.0,0 -80128229,"Crysis Warhead",purchase,1.0,0 -80128229,"Crysis Wars",purchase,1.0,0 -80128229,"Darksiders",purchase,1.0,0 -80128229,"DARK SOULS II - Season Pass",purchase,1.0,0 -80128229,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -80128229,"Deja Vu MacVenture Series",purchase,1.0,0 -80128229,"Don't Starve Together Beta",purchase,1.0,0 -80128229,"Dungeonland - All access pass",purchase,1.0,0 -80128229,"Dysfunctional Systems Learning to Manage Chaos",purchase,1.0,0 -80128229,"Gratuitous Space Battles",purchase,1.0,0 -80128229,"Hammerfight",purchase,1.0,0 -80128229,"Jamestown",purchase,1.0,0 -80128229,"Magicka Final Frontier",purchase,1.0,0 -80128229,"Magicka Frozen Lake",purchase,1.0,0 -80128229,"Magicka Nippon",purchase,1.0,0 -80128229,"Magicka Party Robes",purchase,1.0,0 -80128229,"Magicka The Watchtower",purchase,1.0,0 -80128229,"Magicka Vietnam",purchase,1.0,0 -80128229,"Magicka Wizard's Survival Kit",purchase,1.0,0 -80128229,"Magicka Wizard Wars",purchase,1.0,0 -80128229,"Might & Magic Heroes VI",purchase,1.0,0 -80128229,"Mortal Kombat Kollection",purchase,1.0,0 -80128229,"MX vs. ATV Reflex",purchase,1.0,0 -80128229,"NightSky",purchase,1.0,0 -80128229,"Psychonauts Demo",purchase,1.0,0 -80128229,"Shadowgate MacVenture Series",purchase,1.0,0 -80128229,"Shank",purchase,1.0,0 -80128229,"Sid Meier's Civilization III Complete",purchase,1.0,0 -80128229,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -80128229,"Starbound - Unstable",purchase,1.0,0 -80128229,"Stronghold Crusader Extreme HD",purchase,1.0,0 -80128229,"Stronghold Crusader HD",purchase,1.0,0 -80128229,"Stronghold HD",purchase,1.0,0 -80128229,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -80128229,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -80128229,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -80128229,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -80128229,"The Witcher 3 Wild Hunt - Expansion Pass",purchase,1.0,0 -80128229,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -80128229,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -80128229,"XCOM Enemy Within",purchase,1.0,0 -133794741,"Sid Meier's Civilization V",purchase,1.0,0 -133794741,"Sid Meier's Civilization V",play,74.0,0 -1603625,"Counter-Strike",purchase,1.0,0 -1603625,"Day of Defeat",purchase,1.0,0 -1603625,"Deathmatch Classic",purchase,1.0,0 -1603625,"Half-Life",purchase,1.0,0 -1603625,"Half-Life Blue Shift",purchase,1.0,0 -1603625,"Half-Life Opposing Force",purchase,1.0,0 -1603625,"Ricochet",purchase,1.0,0 -1603625,"Team Fortress Classic",purchase,1.0,0 -65575604,"Metro 2033",purchase,1.0,0 -65575604,"Metro 2033",play,46.0,0 -65575604,"Call of Duty Modern Warfare 3",purchase,1.0,0 -65575604,"Call of Duty Modern Warfare 3",play,8.2,0 -65575604,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -205804636,"Dota 2",purchase,1.0,0 -205804636,"Dota 2",play,2.3,0 -270806652,"Team Fortress 2",purchase,1.0,0 -270806652,"Team Fortress 2",play,3.2,0 -270806652,"War Thunder",purchase,1.0,0 -270806652,"War Thunder",play,1.5,0 -108493237,"Team Fortress 2",purchase,1.0,0 -108493237,"Team Fortress 2",play,0.5,0 -232766649,"Besiege",purchase,1.0,0 -232766649,"Besiege",play,161.0,0 -232766649,"HAWKEN",purchase,1.0,0 -232766649,"HAWKEN",play,0.6,0 -214662605,"Fork Parker's Holiday Profit Hike",purchase,1.0,0 -214662605,"Heroine's Quest The Herald of Ragnarok",purchase,1.0,0 -21822362,"Counter-Strike",purchase,1.0,0 -21822362,"Day of Defeat",purchase,1.0,0 -21822362,"Deathmatch Classic",purchase,1.0,0 -21822362,"Half-Life",purchase,1.0,0 -21822362,"Half-Life Blue Shift",purchase,1.0,0 -21822362,"Half-Life Opposing Force",purchase,1.0,0 -21822362,"Ricochet",purchase,1.0,0 -21822362,"Team Fortress Classic",purchase,1.0,0 -141197436,"Left 4 Dead",purchase,1.0,0 -141197436,"Left 4 Dead",play,29.0,0 -141197436,"Dead Island Epidemic",purchase,1.0,0 -136139505,"Warframe",purchase,1.0,0 -136139505,"Warframe",play,18.3,0 -136139505,"Call of Duty World at War",purchase,1.0,0 -136139505,"Call of Duty World at War",play,6.7,0 -136139505,"SMITE",purchase,1.0,0 -136139505,"SMITE",play,6.2,0 -136139505,"PlanetSide 2",purchase,1.0,0 -136139505,"PlanetSide 2",play,3.4,0 -136139505,"No More Room in Hell",purchase,1.0,0 -136139505,"No More Room in Hell",play,3.1,0 -136139505,"Team Fortress 2",purchase,1.0,0 -136139505,"Team Fortress 2",play,2.6,0 -136139505,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -136139505,"Burnout Paradise The Ultimate Box",play,2.0,0 -136139505,"Defiance",purchase,1.0,0 -136139505,"Defiance",play,1.5,0 -136139505,"Path of Exile",purchase,1.0,0 -136139505,"Path of Exile",play,1.4,0 -136139505,"Crysis 2 Maximum Edition",purchase,1.0,0 -136139505,"Crysis 2 Maximum Edition",play,1.3,0 -136139505,"Dirty Bomb",purchase,1.0,0 -136139505,"Dirty Bomb",play,1.3,0 -136139505,"Elsword",purchase,1.0,0 -136139505,"Elsword",play,0.8,0 -136139505,"Aura Kingdom",purchase,1.0,0 -136139505,"Aura Kingdom",play,0.7,0 -136139505,"Warface",purchase,1.0,0 -136139505,"Warface",play,0.4,0 -136139505,"Dota 2",purchase,1.0,0 -136139505,"Dota 2",play,0.2,0 -136139505,"Unturned",purchase,1.0,0 -136139505,"Unturned",play,0.2,0 -283398094,"Games of Glory",purchase,1.0,0 -283398094,"Trove",purchase,1.0,0 -283398094,"Unturned",purchase,1.0,0 -283398094,"War Thunder",purchase,1.0,0 -105586920,"Dota 2",purchase,1.0,0 -105586920,"Dota 2",play,3695.0,0 -105586920,"Dungeon Defenders II",purchase,1.0,0 -105586920,"Dungeon Defenders II",play,133.0,0 -105586920,"Torchlight II",purchase,1.0,0 -105586920,"Torchlight II",play,37.0,0 -105586920,"South Park The Stick of Truth",purchase,1.0,0 -105586920,"South Park The Stick of Truth",play,22.0,0 -105586920,"Left 4 Dead 2",purchase,1.0,0 -105586920,"Left 4 Dead 2",play,6.4,0 -105586920,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -105586920,"Call of Duty Advanced Warfare - Multiplayer",play,5.0,0 -105586920,"PAYDAY 2",purchase,1.0,0 -105586920,"PAYDAY 2",play,3.9,0 -105586920,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -105586920,"Warhammer 40,000 Dawn of War Soulstorm",play,2.5,0 -105586920,"Magicka",purchase,1.0,0 -105586920,"Magicka",play,2.2,0 -105586920,"Worms Revolution",purchase,1.0,0 -105586920,"Worms Revolution",play,1.8,0 -105586920,"PlanetSide 2",purchase,1.0,0 -105586920,"PlanetSide 2",play,0.4,0 -105586920,"PAYDAY The Heist",purchase,1.0,0 -105586920,"PAYDAY The Heist",play,0.4,0 -105586920,"Counter-Strike Global Offensive",purchase,1.0,0 -105586920,"Counter-Strike Global Offensive",play,0.2,0 -105586920,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -105586920,"Call of Duty Advanced Warfare",purchase,1.0,0 -105586920,"Dead Island Epidemic",purchase,1.0,0 -105586920,"Ultra Street Fighter IV",purchase,1.0,0 -105586920,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -105586920,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -89623082,"Dota 2",purchase,1.0,0 -89623082,"Dota 2",play,54.0,0 -153643202,"Portal 2",purchase,1.0,0 -153643202,"Portal 2",play,25.0,0 -244706504,"Dota 2",purchase,1.0,0 -244706504,"Dota 2",play,247.0,0 -242250632,"Dota 2",purchase,1.0,0 -242250632,"Dota 2",play,2.5,0 -252466573,"Chip's Challenge 2",purchase,1.0,0 -252466573,"Chip's Challenge 2",play,0.6,0 -132917640,"Counter-Strike Global Offensive",purchase,1.0,0 -132917640,"Counter-Strike Global Offensive",play,120.0,0 -132917640,"Dota 2",purchase,1.0,0 -132917640,"Dota 2",play,5.7,0 -239583217,"Dota 2",purchase,1.0,0 -239583217,"Dota 2",play,1.1,0 -201280043,"South Park The Stick of Truth",purchase,1.0,0 -201280043,"South Park The Stick of Truth",play,22.0,0 -201280043,"Hatoful Boyfriend",purchase,1.0,0 -201280043,"Hatoful Boyfriend",play,1.3,0 -201280043,"The Elder Scrolls V Skyrim",purchase,1.0,0 -201280043,"The Elder Scrolls V Skyrim",play,0.5,0 -201280043,"Left 4 Dead 2",purchase,1.0,0 -201280043,"Undertale",purchase,1.0,0 -157080495,"Torchlight II",purchase,1.0,0 -157080495,"Torchlight II",play,81.0,0 -157080495,"Starbound",purchase,1.0,0 -157080495,"Starbound",play,60.0,0 -157080495,"Borderlands The Pre-Sequel",purchase,1.0,0 -157080495,"Borderlands The Pre-Sequel",play,32.0,0 -157080495,"The Elder Scrolls V Skyrim",purchase,1.0,0 -157080495,"The Elder Scrolls V Skyrim",play,17.3,0 -157080495,"Saints Row IV",purchase,1.0,0 -157080495,"Saints Row IV",play,13.7,0 -157080495,"Batman Arkham Origins",purchase,1.0,0 -157080495,"Batman Arkham Origins",play,13.6,0 -157080495,"Spore",purchase,1.0,0 -157080495,"Spore",play,11.9,0 -157080495,"The Amazing Spider-Man 2",purchase,1.0,0 -157080495,"The Amazing Spider-Man 2",play,8.9,0 -157080495,"Borderlands 2",purchase,1.0,0 -157080495,"Borderlands 2",play,5.8,0 -157080495,"PAYDAY 2",purchase,1.0,0 -157080495,"PAYDAY 2",play,5.6,0 -157080495,"Mortal Kombat Komplete Edition",purchase,1.0,0 -157080495,"Mortal Kombat Komplete Edition",play,5.6,0 -157080495,"Divinity Original Sin",purchase,1.0,0 -157080495,"Divinity Original Sin",play,5.0,0 -157080495,"Goat Simulator",purchase,1.0,0 -157080495,"Goat Simulator",play,3.2,0 -157080495,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -157080495,"The Witcher 2 Assassins of Kings Enhanced Edition",play,2.5,0 -157080495,"ORION Prelude",purchase,1.0,0 -157080495,"ORION Prelude",play,1.5,0 -157080495,"HAWKEN",purchase,1.0,0 -157080495,"HAWKEN",play,1.2,0 -157080495,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -157080495,"Call of Duty Modern Warfare 3 - Multiplayer",play,1.0,0 -157080495,"theHunter Primal",purchase,1.0,0 -157080495,"theHunter Primal",play,0.9,0 -157080495,"Call of Duty Modern Warfare 3",purchase,1.0,0 -157080495,"Call of Duty Modern Warfare 3",play,0.8,0 -157080495,"The Vanishing of Ethan Carter",purchase,1.0,0 -157080495,"The Vanishing of Ethan Carter",play,0.6,0 -157080495,"Spore Galactic Adventures",purchase,1.0,0 -157080495,"Spore Galactic Adventures",play,0.3,0 -157080495,"BattleBlock Theater",purchase,1.0,0 -157080495,"BattleBlock Theater",play,0.2,0 -157080495,"Spore Creepy & Cute Parts Pack",purchase,1.0,0 -157080495,"Warframe",purchase,1.0,0 -157080495,"Don't Starve Together Beta",purchase,1.0,0 -157080495,"Nether",purchase,1.0,0 -157080495,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -157080495,"Starbound - Unstable",purchase,1.0,0 -157080495,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -157080495,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -157080495,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -157080495,"The Vanishing of Ethan Carter Redux",purchase,1.0,0 -102048000,"Aliens vs. Predator",purchase,1.0,0 -102048000,"Aliens vs. Predator",play,9.9,0 -224282935,"Dota 2",purchase,1.0,0 -224282935,"Dota 2",play,4.2,0 -27873947,"Day of Defeat",purchase,1.0,0 -27873947,"Day of Defeat",play,16.1,0 -27873947,"Counter-Strike",purchase,1.0,0 -27873947,"Counter-Strike",play,0.3,0 -27873947,"Deathmatch Classic",purchase,1.0,0 -27873947,"Deathmatch Classic",play,0.1,0 -27873947,"Counter-Strike Condition Zero",purchase,1.0,0 -27873947,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -27873947,"Ricochet",purchase,1.0,0 -189866742,"Dota 2",purchase,1.0,0 -189866742,"Dota 2",play,1213.0,0 -189866742,"AirMech",purchase,1.0,0 -189866742,"APB Reloaded",purchase,1.0,0 -189866742,"Blacklight Retribution",purchase,1.0,0 -189866742,"Dead Island Epidemic",purchase,1.0,0 -189866742,"FreeStyle2 Street Basketball",purchase,1.0,0 -189866742,"Nosgoth",purchase,1.0,0 -189866742,"PlanetSide 2",purchase,1.0,0 -189866742,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -189866742,"Unturned",purchase,1.0,0 -189866742,"Warframe",purchase,1.0,0 -189866742,"War Thunder",purchase,1.0,0 -111728146,"Dota 2",purchase,1.0,0 -111728146,"Dota 2",play,307.0,0 -160288543,"LEGO MARVEL Super Heroes",purchase,1.0,0 -160288543,"LEGO MARVEL Super Heroes",play,1069.0,0 -160288543,"The LEGO Movie - Videogame",purchase,1.0,0 -160288543,"The LEGO Movie - Videogame",play,266.0,0 -160288543,"LEGO The Hobbit",purchase,1.0,0 -160288543,"LEGO The Hobbit",play,196.0,0 -160288543,"LEGO Batman 3 Beyond Gotham",purchase,1.0,0 -160288543,"LEGO Batman 3 Beyond Gotham",play,52.0,0 -70780053,"Sid Meier's Civilization V",purchase,1.0,0 -70780053,"Sid Meier's Civilization V",play,1077.0,0 -70780053,"War Thunder",purchase,1.0,0 -70780053,"War Thunder",play,663.0,0 -70780053,"Europa Universalis IV",purchase,1.0,0 -70780053,"Europa Universalis IV",play,358.0,0 -70780053,"Crusader Kings II",purchase,1.0,0 -70780053,"Crusader Kings II",play,320.0,0 -70780053,"Warmachine Tactics",purchase,1.0,0 -70780053,"Warmachine Tactics",play,49.0,0 -70780053,"March of the Eagles",purchase,1.0,0 -70780053,"March of the Eagles",play,29.0,0 -70780053,"Rise of Venice",purchase,1.0,0 -70780053,"Rise of Venice",play,1.9,0 -70780053,"Commander Conquest of the Americas",purchase,1.0,0 -70780053,"Commander Conquest of the Americas",play,1.3,0 -70780053,"Napoleon Total War",purchase,1.0,0 -70780053,"Napoleon Total War",play,0.8,0 -70780053,"Mount & Blade Warband",purchase,1.0,0 -70780053,"Mount & Blade Warband",play,0.6,0 -70780053,"Mount & Blade",purchase,1.0,0 -70780053,"Mount & Blade",play,0.5,0 -70780053,"Mount & Blade With Fire and Sword",purchase,1.0,0 -70780053,"Mount & Blade With Fire and Sword",play,0.3,0 -70780053,"Commander Conquest of the Americas - Pirate Treasure Chest",purchase,1.0,0 -70780053,"Crusader Kings II Hymns of Abraham",purchase,1.0,0 -70780053,"Crusader Kings II Sons of Abraham",purchase,1.0,0 -70780053,"Europa Universalis IV Conquest of Paradise",purchase,1.0,0 -70780053,"Europa Universalis IV National Monuments II",purchase,1.0,0 -70780053,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -70780053,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -209830063,"Team Fortress 2",purchase,1.0,0 -209830063,"Team Fortress 2",play,157.0,0 -209830063,"Dirty Bomb",purchase,1.0,0 -209830063,"Dirty Bomb",play,0.9,0 -209830063,"Dota 2",purchase,1.0,0 -209830063,"Dota 2",play,0.6,0 -209830063,"WARMODE",purchase,1.0,0 -138168089,"Football Manager 2013",purchase,1.0,0 -138168089,"Football Manager 2013",play,16.5,0 -241890870,"Terraria",purchase,1.0,0 -241890870,"Terraria",play,1.3,0 -241890870,"Dungeon Defenders II",purchase,1.0,0 -218121619,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -218121619,"Tom Clancy's Ghost Recon Phantoms - EU",play,3.1,0 -218121619,"War Inc. Battlezone",purchase,1.0,0 -218121619,"War Inc. Battlezone",play,2.3,0 -218121619,"Blacklight Retribution",purchase,1.0,0 -218121619,"Blacklight Retribution",play,1.7,0 -218121619,"Team Fortress 2",purchase,1.0,0 -218121619,"Team Fortress 2",play,0.7,0 -218121619,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -218121619,"Call of Duty Advanced Warfare - Multiplayer",play,0.3,0 -218121619,"Rise of Incarnates",purchase,1.0,0 -218121619,"Rise of Incarnates",play,0.3,0 -218121619,"Call of Duty Advanced Warfare",purchase,1.0,0 -294424417,"Counter-Strike Global Offensive",purchase,1.0,0 -294424417,"Counter-Strike Global Offensive",play,75.0,0 -294424417,"Warframe",purchase,1.0,0 -294424417,"Warframe",play,1.3,0 -231142279,"Counter-Strike Nexon Zombies",purchase,1.0,0 -231142279,"Counter-Strike Nexon Zombies",play,2.3,0 -161084061,"Dota 2",purchase,1.0,0 -161084061,"Dota 2",play,379.0,0 -213046303,"Counter-Strike Nexon Zombies",purchase,1.0,0 -213046303,"Counter-Strike Nexon Zombies",play,0.2,0 -257256783,"Dota 2",purchase,1.0,0 -257256783,"Dota 2",play,220.0,0 -257256783,"Rust",purchase,1.0,0 -257256783,"Rust",play,89.0,0 -257256783,"PAYDAY 2",purchase,1.0,0 -257256783,"PAYDAY 2",play,27.0,0 -257256783,"WARMODE",purchase,1.0,0 -257256783,"WARMODE",play,13.8,0 -257256783,"Dirty Bomb",purchase,1.0,0 -257256783,"Dirty Bomb",play,2.1,0 -257256783,"Quake Live",purchase,1.0,0 -257256783,"Quake Live",play,0.6,0 -257256783,"Counter-Strike Nexon Zombies",purchase,1.0,0 -257256783,"Cry of Fear",purchase,1.0,0 -257256783,"Enclave",purchase,1.0,0 -257256783,"Flesh Eaters",purchase,1.0,0 -257256783,"Magicka Wizard Wars",purchase,1.0,0 -257256783,"Nosgoth",purchase,1.0,0 -257256783,"RUSH",purchase,1.0,0 -257256783,"Warframe",purchase,1.0,0 -145368259,"Counter-Strike",purchase,1.0,0 -145368259,"Counter-Strike",play,25.0,0 -145368259,"Counter-Strike Condition Zero",purchase,1.0,0 -145368259,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -290626938,"HAWKEN",purchase,1.0,0 -70408902,"NBA 2K14",purchase,1.0,0 -70408902,"NBA 2K14",play,136.0,0 -70408902,"NBA 2K15",purchase,1.0,0 -70408902,"NBA 2K15",play,111.0,0 -70408902,"Dota 2",purchase,1.0,0 -70408902,"Dota 2",play,108.0,0 -70408902,"Grand Theft Auto V",purchase,1.0,0 -70408902,"Grand Theft Auto V",play,108.0,0 -70408902,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -70408902,"Plants vs. Zombies Game of the Year",play,69.0,0 -70408902,"Borderlands 2",purchase,1.0,0 -70408902,"Borderlands 2",play,65.0,0 -70408902,"The Binding of Isaac",purchase,1.0,0 -70408902,"The Binding of Isaac",play,59.0,0 -70408902,"Trials Evolution Gold Edition",purchase,1.0,0 -70408902,"Trials Evolution Gold Edition",play,53.0,0 -70408902,"Rayman Legends",purchase,1.0,0 -70408902,"Rayman Legends",play,33.0,0 -70408902,"Rocket League",purchase,1.0,0 -70408902,"Rocket League",play,30.0,0 -70408902,"NBA 2K16",purchase,1.0,0 -70408902,"NBA 2K16",play,23.0,0 -70408902,"R.B.I. Baseball 15",purchase,1.0,0 -70408902,"R.B.I. Baseball 15",play,21.0,0 -70408902,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -70408902,"Star Wars - Jedi Knight II Jedi Outcast",play,19.8,0 -70408902,"Fallout 4",purchase,1.0,0 -70408902,"Fallout 4",play,18.7,0 -70408902,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -70408902,"Star Wars Jedi Knight Jedi Academy",play,15.9,0 -70408902,"Bastion",purchase,1.0,0 -70408902,"Bastion",play,14.6,0 -70408902,"Torchlight",purchase,1.0,0 -70408902,"Torchlight",play,14.5,0 -70408902,"Space Pirates and Zombies",purchase,1.0,0 -70408902,"Space Pirates and Zombies",play,14.1,0 -70408902,"Trials Fusion",purchase,1.0,0 -70408902,"Trials Fusion",play,13.9,0 -70408902,"Team Fortress 2",purchase,1.0,0 -70408902,"Team Fortress 2",play,13.3,0 -70408902,"Portal 2",purchase,1.0,0 -70408902,"Portal 2",play,12.9,0 -70408902,"Brtal Legend",purchase,1.0,0 -70408902,"Brtal Legend",play,11.0,0 -70408902,"Sid Meier's Pirates!",purchase,1.0,0 -70408902,"Sid Meier's Pirates!",play,9.5,0 -70408902,"Dishonored",purchase,1.0,0 -70408902,"Dishonored",play,9.4,0 -70408902,"Sniper Elite V2",purchase,1.0,0 -70408902,"Sniper Elite V2",play,8.5,0 -70408902,"Deus Ex Human Revolution",purchase,1.0,0 -70408902,"Deus Ex Human Revolution",play,7.9,0 -70408902,"Super Meat Boy",purchase,1.0,0 -70408902,"Super Meat Boy",play,7.7,0 -70408902,"Frozen Synapse",purchase,1.0,0 -70408902,"Frozen Synapse",play,7.2,0 -70408902,"The Elder Scrolls V Skyrim",purchase,1.0,0 -70408902,"The Elder Scrolls V Skyrim",play,7.1,0 -70408902,"Pool Nation",purchase,1.0,0 -70408902,"Pool Nation",play,6.9,0 -70408902,"War of the Roses",purchase,1.0,0 -70408902,"War of the Roses",play,6.8,0 -70408902,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -70408902,"Dark Souls Prepare to Die Edition",play,5.6,0 -70408902,"DARK SOULS II",purchase,1.0,0 -70408902,"DARK SOULS II",play,5.3,0 -70408902,"Psychonauts",purchase,1.0,0 -70408902,"Psychonauts",play,4.0,0 -70408902,"Nidhogg",purchase,1.0,0 -70408902,"Nidhogg",play,3.8,0 -70408902,"The Wolf Among Us",purchase,1.0,0 -70408902,"The Wolf Among Us",play,3.7,0 -70408902,"GRID 2",purchase,1.0,0 -70408902,"GRID 2",play,3.7,0 -70408902,"Machinarium",purchase,1.0,0 -70408902,"Machinarium",play,3.4,0 -70408902,"Trine",purchase,1.0,0 -70408902,"Trine",play,3.3,0 -70408902,"Pinball Arcade",purchase,1.0,0 -70408902,"Pinball Arcade",play,2.8,0 -70408902,"Insurgency",purchase,1.0,0 -70408902,"Insurgency",play,2.5,0 -70408902,"Counter-Strike Global Offensive",purchase,1.0,0 -70408902,"Counter-Strike Global Offensive",play,2.3,0 -70408902,"Broken Age",purchase,1.0,0 -70408902,"Broken Age",play,2.2,0 -70408902,"LUFTRAUSERS",purchase,1.0,0 -70408902,"LUFTRAUSERS",play,1.9,0 -70408902,"Crysis 2 Maximum Edition",purchase,1.0,0 -70408902,"Crysis 2 Maximum Edition",play,1.8,0 -70408902,"Antichamber",purchase,1.0,0 -70408902,"Antichamber",play,1.6,0 -70408902,"Rogue Legacy",purchase,1.0,0 -70408902,"Rogue Legacy",play,1.5,0 -70408902,"Counter-Strike Source",purchase,1.0,0 -70408902,"Counter-Strike Source",play,1.5,0 -70408902,"Batman Arkham City GOTY",purchase,1.0,0 -70408902,"Batman Arkham City GOTY",play,1.4,0 -70408902,"Thief",purchase,1.0,0 -70408902,"Thief",play,1.3,0 -70408902,"Magicka",purchase,1.0,0 -70408902,"Magicka",play,1.2,0 -70408902,"Star Wars Knights of the Old Republic",purchase,1.0,0 -70408902,"Star Wars Knights of the Old Republic",play,1.0,0 -70408902,"Worms Crazy Golf",purchase,1.0,0 -70408902,"Worms Crazy Golf",play,1.0,0 -70408902,"Hotline Miami",purchase,1.0,0 -70408902,"Hotline Miami",play,0.8,0 -70408902,"Batman Arkham Origins",purchase,1.0,0 -70408902,"Batman Arkham Origins",play,0.8,0 -70408902,"Crusader Kings II",purchase,1.0,0 -70408902,"Crusader Kings II",play,0.8,0 -70408902,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -70408902,"Burnout Paradise The Ultimate Box",play,0.7,0 -70408902,"Stacking",purchase,1.0,0 -70408902,"Stacking",play,0.7,0 -70408902,"Mount & Blade Warband",purchase,1.0,0 -70408902,"Mount & Blade Warband",play,0.7,0 -70408902,"Mirror's Edge",purchase,1.0,0 -70408902,"Mirror's Edge",play,0.7,0 -70408902,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -70408902,"Rising Storm/Red Orchestra 2 Multiplayer",play,0.6,0 -70408902,"Mark of the Ninja",purchase,1.0,0 -70408902,"Mark of the Ninja",play,0.6,0 -70408902,"Killing Floor",purchase,1.0,0 -70408902,"Killing Floor",play,0.5,0 -70408902,"Lovely Planet",purchase,1.0,0 -70408902,"Lovely Planet",play,0.5,0 -70408902,"Sniper Elite 3",purchase,1.0,0 -70408902,"Sniper Elite 3",play,0.4,0 -70408902,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -70408902,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",play,0.4,0 -70408902,"Penumbra Overture",purchase,1.0,0 -70408902,"Penumbra Overture",play,0.4,0 -70408902,"Serious Sam 3 BFE",purchase,1.0,0 -70408902,"Serious Sam 3 BFE",play,0.4,0 -70408902,"Sanctum",purchase,1.0,0 -70408902,"Sanctum",play,0.4,0 -70408902,"BIT.TRIP RUNNER",purchase,1.0,0 -70408902,"BIT.TRIP RUNNER",play,0.4,0 -70408902,"Left 4 Dead 2",purchase,1.0,0 -70408902,"Left 4 Dead 2",play,0.4,0 -70408902,"Steel Storm Burning Retribution",purchase,1.0,0 -70408902,"Steel Storm Burning Retribution",play,0.3,0 -70408902,"Cave Story+",purchase,1.0,0 -70408902,"Cave Story+",play,0.3,0 -70408902,"Probably Archery",purchase,1.0,0 -70408902,"Probably Archery",play,0.3,0 -70408902,"Lugaru HD ",purchase,1.0,0 -70408902,"Lugaru HD ",play,0.3,0 -70408902,"Universe Sandbox",purchase,1.0,0 -70408902,"Universe Sandbox",play,0.2,0 -70408902,"Revenge of the Titans",purchase,1.0,0 -70408902,"Revenge of the Titans",play,0.2,0 -70408902,"Cogs",purchase,1.0,0 -70408902,"Cogs",play,0.2,0 -70408902,"World of Goo",purchase,1.0,0 -70408902,"World of Goo",play,0.2,0 -70408902,"Spintires",purchase,1.0,0 -70408902,"Spintires",play,0.2,0 -70408902,"Nosgoth",purchase,1.0,0 -70408902,"Nosgoth",play,0.1,0 -70408902,"Gratuitous Space Battles",purchase,1.0,0 -70408902,"Gratuitous Space Battles",play,0.1,0 -70408902,"Worms Pinball",purchase,1.0,0 -70408902,"Botanicula",purchase,1.0,0 -70408902,"Abyss Odyssey",purchase,1.0,0 -70408902,"Agricultural Simulator 2013 Steam Edition",purchase,1.0,0 -70408902,"Agricultural Simulator Historical Farming",purchase,1.0,0 -70408902,"Alien Breed 2 Assault",purchase,1.0,0 -70408902,"Alien Breed 3 Descent",purchase,1.0,0 -70408902,"Alien Breed Impact",purchase,1.0,0 -70408902,"Amnesia The Dark Descent",purchase,1.0,0 -70408902,"And Yet It Moves",purchase,1.0,0 -70408902,"Aquaria",purchase,1.0,0 -70408902,"A Story About My Uncle",purchase,1.0,0 -70408902,"Atom Zombie Smasher ",purchase,1.0,0 -70408902,"Awesomenauts",purchase,1.0,0 -70408902,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -70408902,"Blackguards",purchase,1.0,0 -70408902,"Blackguards 2",purchase,1.0,0 -70408902,"Blocks That Matter",purchase,1.0,0 -70408902,"Braid",purchase,1.0,0 -70408902,"Bridge Project",purchase,1.0,0 -70408902,"Capsized",purchase,1.0,0 -70408902,"Card City Nights",purchase,1.0,0 -70408902,"Citizens of Earth",purchase,1.0,0 -70408902,"Contagion",purchase,1.0,0 -70408902,"Cook, Serve, Delicious!",purchase,1.0,0 -70408902,"Costume Quest",purchase,1.0,0 -70408902,"Crayon Physics Deluxe",purchase,1.0,0 -70408902,"Darkest Hour Europe '44-'45",purchase,1.0,0 -70408902,"Dead Space",purchase,1.0,0 -70408902,"Dear Esther",purchase,1.0,0 -70408902,"DiRT 3 Complete Edition",purchase,1.0,0 -70408902,"DiRT Showdown",purchase,1.0,0 -70408902,"Divinity Dragon Commander",purchase,1.0,0 -70408902,"Dungeonland",purchase,1.0,0 -70408902,"Dungeonland - All access pass",purchase,1.0,0 -70408902,"Dust An Elysian Tail",purchase,1.0,0 -70408902,"Dustforce",purchase,1.0,0 -70408902,"Eets Munchies",purchase,1.0,0 -70408902,"Europa Universalis III",purchase,1.0,0 -70408902,"Euro Truck Simulator",purchase,1.0,0 -70408902,"Euro Truck Simulator 2",purchase,1.0,0 -70408902,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -70408902,"F.E.A.R. 3",purchase,1.0,0 -70408902,"FEZ",purchase,1.0,0 -70408902,"FTL Faster Than Light",purchase,1.0,0 -70408902,"Garry's Mod",purchase,1.0,0 -70408902,"Giana Sisters Twisted Dreams",purchase,1.0,0 -70408902,"Gish",purchase,1.0,0 -70408902,"Gone Home",purchase,1.0,0 -70408902,"Grand Theft Auto San Andreas",purchase,1.0,0 -70408902,"Grand Theft Auto San Andreas",purchase,1.0,0 -70408902,"GRID 2 GTR Racing Pack",purchase,1.0,0 -70408902,"GRID Autosport",purchase,1.0,0 -70408902,"Guacamelee! Gold Edition",purchase,1.0,0 -70408902,"Gunpoint",purchase,1.0,0 -70408902,"Hammerfight",purchase,1.0,0 -70408902,"Hammerwatch",purchase,1.0,0 -70408902,"HOARD",purchase,1.0,0 -70408902,"Hospital Tycoon",purchase,1.0,0 -70408902,"Jamestown",purchase,1.0,0 -70408902,"Joe Danger 2 The Movie",purchase,1.0,0 -70408902,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -70408902,"Leviathan Warships",purchase,1.0,0 -70408902,"LIMBO",purchase,1.0,0 -70408902,"Little Inferno",purchase,1.0,0 -70408902,"Magic 2015",purchase,1.0,0 -70408902,"Magicka Vietnam",purchase,1.0,0 -70408902,"Mare Nostrum",purchase,1.0,0 -70408902,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -70408902,"Medal of Honor(TM) Single Player",purchase,1.0,0 -70408902,"Medal of Honor Pre-Order",purchase,1.0,0 -70408902,"Men of War Assault Squad",purchase,1.0,0 -70408902,"Monaco",purchase,1.0,0 -70408902,"Natural Selection 2",purchase,1.0,0 -70408902,"NightSky",purchase,1.0,0 -70408902,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -70408902,"Operation Flashpoint Red River",purchase,1.0,0 -70408902,"Orcs Must Die! 2",purchase,1.0,0 -70408902,"Osmos",purchase,1.0,0 -70408902,"Out of the Park Baseball 14",purchase,1.0,0 -70408902,"Overlord",purchase,1.0,0 -70408902,"Overlord Raising Hell",purchase,1.0,0 -70408902,"Overlord II",purchase,1.0,0 -70408902,"Papers, Please",purchase,1.0,0 -70408902,"Papo & Yo",purchase,1.0,0 -70408902,"Pinball FX2",purchase,1.0,0 -70408902,"Prison Architect",purchase,1.0,0 -70408902,"Proteus",purchase,1.0,0 -70408902,"Psychonauts Demo",purchase,1.0,0 -70408902,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -70408902,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -70408902,"Reus",purchase,1.0,0 -70408902,"Rochard",purchase,1.0,0 -70408902,"Samorost 2",purchase,1.0,0 -70408902,"Sanctum 2",purchase,1.0,0 -70408902,"Scribblenauts Unlimited",purchase,1.0,0 -70408902,"Shadowgrounds",purchase,1.0,0 -70408902,"Shadowgrounds Survivor",purchase,1.0,0 -70408902,"Shank",purchase,1.0,0 -70408902,"Shatter",purchase,1.0,0 -70408902,"SolForge",purchase,1.0,0 -70408902,"Spec Ops The Line",purchase,1.0,0 -70408902,"SpeedRunners",purchase,1.0,0 -70408902,"Star Wars - Battlefront II",purchase,1.0,0 -70408902,"Star Wars Dark Forces",purchase,1.0,0 -70408902,"Star Wars Empire at War Gold",purchase,1.0,0 -70408902,"Star Wars The Force Unleashed II",purchase,1.0,0 -70408902,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -70408902,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -70408902,"Star Wars Republic Commando",purchase,1.0,0 -70408902,"Star Wars Starfighter",purchase,1.0,0 -70408902,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -70408902,"State of Decay",purchase,1.0,0 -70408902,"SteamWorld Dig",purchase,1.0,0 -70408902,"Strike Suit Zero",purchase,1.0,0 -70408902,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -70408902,"Superfrog HD",purchase,1.0,0 -70408902,"Surgeon Simulator",purchase,1.0,0 -70408902,"Talisman Digital Edition",purchase,1.0,0 -70408902,"Talisman Prologue",purchase,1.0,0 -70408902,"Teslagrad",purchase,1.0,0 -70408902,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -70408902,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -70408902,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -70408902,"The Lord of the Rings War in the North",purchase,1.0,0 -70408902,"The Showdown Effect",purchase,1.0,0 -70408902,"The Swapper",purchase,1.0,0 -70408902,"Thomas Was Alone",purchase,1.0,0 -70408902,"Toki Tori 2+",purchase,1.0,0 -70408902,"To the Moon",purchase,1.0,0 -70408902,"Trainz Simulator 12",purchase,1.0,0 -70408902,"TRAUMA",purchase,1.0,0 -70408902,"Trine 2",purchase,1.0,0 -70408902,"Tropico 4",purchase,1.0,0 -70408902,"Turbo Dismount",purchase,1.0,0 -70408902,"Vessel",purchase,1.0,0 -70408902,"VVVVVV",purchase,1.0,0 -70408902,"Warlock - Master of the Arcane",purchase,1.0,0 -70408902,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -70408902,"War of the Roses Kingmaker",purchase,1.0,0 -70408902,"War of the Roses Balance Beta",purchase,1.0,0 -70408902,"Windosill",purchase,1.0,0 -70408902,"Worms Armageddon",purchase,1.0,0 -70408902,"Worms Blast",purchase,1.0,0 -70408902,"Worms Revolution",purchase,1.0,0 -70408902,"Worms Ultimate Mayhem",purchase,1.0,0 -309213952,"Dota 2",purchase,1.0,0 -309213952,"Dota 2",play,13.8,0 -46055854,"Empire Total War",purchase,1.0,0 -46055854,"Empire Total War",play,406.0,0 -46055854,"Stronghold Crusader 2",purchase,1.0,0 -46055854,"Stronghold Crusader 2",play,251.0,0 -46055854,"FIFA Manager 11",purchase,1.0,0 -46055854,"FIFA Manager 11",play,229.0,0 -46055854,"Grand Theft Auto V",purchase,1.0,0 -46055854,"Grand Theft Auto V",play,217.0,0 -46055854,"Homefront",purchase,1.0,0 -46055854,"Homefront",play,170.0,0 -46055854,"Sid Meier's Civilization V",purchase,1.0,0 -46055854,"Sid Meier's Civilization V",play,166.0,0 -46055854,"Total War ROME II - Emperor Edition",purchase,1.0,0 -46055854,"Total War ROME II - Emperor Edition",play,128.0,0 -46055854,"RAGE",purchase,1.0,0 -46055854,"RAGE",play,119.0,0 -46055854,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -46055854,"Call of Duty Modern Warfare 2 - Multiplayer",play,87.0,0 -46055854,"Ryse Son of Rome",purchase,1.0,0 -46055854,"Ryse Son of Rome",play,78.0,0 -46055854,"Company of Heroes 2",purchase,1.0,0 -46055854,"Company of Heroes 2",play,39.0,0 -46055854,"Call of Duty Advanced Warfare",purchase,1.0,0 -46055854,"Call of Duty Advanced Warfare",play,37.0,0 -46055854,"R.U.S.E",purchase,1.0,0 -46055854,"R.U.S.E",play,33.0,0 -46055854,"Stronghold 3",purchase,1.0,0 -46055854,"Stronghold 3",play,26.0,0 -46055854,"Call of Duty Black Ops",purchase,1.0,0 -46055854,"Call of Duty Black Ops",play,25.0,0 -46055854,"Grand Theft Auto IV",purchase,1.0,0 -46055854,"Grand Theft Auto IV",play,22.0,0 -46055854,"Call of Duty Modern Warfare 2",purchase,1.0,0 -46055854,"Call of Duty Modern Warfare 2",play,18.4,0 -46055854,"Crysis 2",purchase,1.0,0 -46055854,"Crysis 2",play,18.0,0 -46055854,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -46055854,"Call of Duty Black Ops - Multiplayer",play,16.0,0 -46055854,"Mafia II",purchase,1.0,0 -46055854,"Mafia II",play,13.4,0 -46055854,"Call of Duty Ghosts",purchase,1.0,0 -46055854,"Call of Duty Ghosts",play,12.6,0 -46055854,"Just Cause 2",purchase,1.0,0 -46055854,"Just Cause 2",play,12.5,0 -46055854,"Call of Duty Black Ops II",purchase,1.0,0 -46055854,"Call of Duty Black Ops II",play,11.7,0 -46055854,"Far Cry 3",purchase,1.0,0 -46055854,"Far Cry 3",play,11.5,0 -46055854,"Call of Juarez The Cartel",purchase,1.0,0 -46055854,"Call of Juarez The Cartel",play,11.4,0 -46055854,"Act of Aggression",purchase,1.0,0 -46055854,"Act of Aggression",play,9.6,0 -46055854,"Max Payne 3",purchase,1.0,0 -46055854,"Max Payne 3",play,7.8,0 -46055854,"Saints Row 2",purchase,1.0,0 -46055854,"Saints Row 2",play,6.8,0 -46055854,"Medal of Honor(TM) Single Player",purchase,1.0,0 -46055854,"Medal of Honor(TM) Single Player",play,5.5,0 -46055854,"Metro 2033",purchase,1.0,0 -46055854,"Metro 2033",play,4.3,0 -46055854,"Assassin's Creed III",purchase,1.0,0 -46055854,"Assassin's Creed III",play,3.8,0 -46055854,"Men of War Assault Squad",purchase,1.0,0 -46055854,"Men of War Assault Squad",play,3.2,0 -46055854,"Total War SHOGUN 2",purchase,1.0,0 -46055854,"Total War SHOGUN 2",play,2.9,0 -46055854,"Call of Duty Black Ops III",purchase,1.0,0 -46055854,"Call of Duty Black Ops III",play,2.7,0 -46055854,"Cities XL",purchase,1.0,0 -46055854,"Cities XL",play,1.8,0 -46055854,"Driver San Francisco",purchase,1.0,0 -46055854,"Driver San Francisco",play,1.4,0 -46055854,"Left 4 Dead 2",purchase,1.0,0 -46055854,"Left 4 Dead 2",play,1.1,0 -46055854,"Cities XL 2012",purchase,1.0,0 -46055854,"Cities XL 2012",play,0.7,0 -46055854,"007 Legends",purchase,1.0,0 -46055854,"007 Legends",play,0.7,0 -46055854,"Battlefield Bad Company 2",purchase,1.0,0 -46055854,"Battlefield Bad Company 2",play,0.4,0 -46055854,"American Conquest - Fight Back",purchase,1.0,0 -46055854,"American Conquest - Fight Back",play,0.4,0 -46055854,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -46055854,"Call of Duty Ghosts - Multiplayer",play,0.3,0 -46055854,"Wargame European Escalation",purchase,1.0,0 -46055854,"Wargame European Escalation",play,0.3,0 -46055854,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -46055854,"Call of Duty Black Ops II - Multiplayer",play,0.3,0 -46055854,"Napoleon Total War",purchase,1.0,0 -46055854,"Napoleon Total War",play,0.2,0 -46055854,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -46055854,"Call of Duty Black Ops II - Zombies",play,0.1,0 -46055854,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -46055854,"Medal of Honor(TM) Multiplayer",play,0.1,0 -46055854,"Medieval II Total War Kingdoms",purchase,1.0,0 -46055854,"Rome Total War",purchase,1.0,0 -46055854,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -46055854,"American Conquest",purchase,1.0,0 -46055854,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -46055854,"Call of Duty Modern Warfare 2 - Resurgence Pack",purchase,1.0,0 -46055854,"Call of Duty Modern Warfare 2 Stimulus Package",purchase,1.0,0 -46055854,"Call of Duty World at War",purchase,1.0,0 -46055854,"Company of Heroes 2 - Ardennes Assault",purchase,1.0,0 -46055854,"Cossacks Art of War",purchase,1.0,0 -46055854,"Cossacks Back to War",purchase,1.0,0 -46055854,"Cossacks European Wars",purchase,1.0,0 -46055854,"Cossacks II Battle for Europe",purchase,1.0,0 -46055854,"Cossacks II Napoleonic Wars",purchase,1.0,0 -46055854,"Crysis 2",purchase,1.0,0 -46055854,"Medal of Honor Pre-Order",purchase,1.0,0 -46055854,"Medieval II Total War",purchase,1.0,0 -46055854,"R.U.S.E.",purchase,1.0,0 -46055854,"Rome Total War - Alexander",purchase,1.0,0 -46055854,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -46055854,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -46055854,"Stronghold Crusader Extreme HD",purchase,1.0,0 -46055854,"Stronghold Crusader HD",purchase,1.0,0 -46055854,"Stronghold Kingdoms",purchase,1.0,0 -151938509,"Batman Arkham Origins",purchase,1.0,0 -151938509,"Batman Arkham Origins",play,27.0,0 -151938509,"Left 4 Dead 2",purchase,1.0,0 -151938509,"Left 4 Dead 2",play,4.5,0 -151938509,"Team Fortress 2",purchase,1.0,0 -151938509,"Team Fortress 2",play,1.7,0 -151938509,"Counter-Strike Global Offensive",purchase,1.0,0 -151938509,"Counter-Strike Global Offensive",play,0.6,0 -212794187,"Unturned",purchase,1.0,0 -212794187,"PlanetSide 2",purchase,1.0,0 -77794924,"Alien Swarm",purchase,1.0,0 -77794924,"Alien Swarm",play,1.0,0 -187965381,"Team Fortress 2",purchase,1.0,0 -187965381,"Team Fortress 2",play,0.4,0 -187965381,"Unturned",purchase,1.0,0 -118446513,"Dota 2",purchase,1.0,0 -118446513,"Dota 2",play,1989.0,0 -159512099,"Left 4 Dead 2",purchase,1.0,0 -22503648,"Counter-Strike",purchase,1.0,0 -22503648,"Counter-Strike Condition Zero",purchase,1.0,0 -22503648,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -22503648,"Day of Defeat",purchase,1.0,0 -22503648,"Deathmatch Classic",purchase,1.0,0 -22503648,"Ricochet",purchase,1.0,0 -96435667,"Team Fortress 2",purchase,1.0,0 -96435667,"Team Fortress 2",play,2.8,0 -110840027,"Team Fortress 2",purchase,1.0,0 -110840027,"Team Fortress 2",play,0.2,0 -37422528,"Counter-Strike Global Offensive",purchase,1.0,0 -37422528,"Counter-Strike Global Offensive",play,3416.0,0 -37422528,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -37422528,"Call of Duty Black Ops - Multiplayer",play,482.0,0 -37422528,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -37422528,"Call of Duty Black Ops II - Multiplayer",play,259.0,0 -37422528,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -37422528,"Call of Duty Advanced Warfare - Multiplayer",play,89.0,0 -37422528,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -37422528,"Call of Duty Modern Warfare 2 - Multiplayer",play,79.0,0 -37422528,"Team Fortress 2",purchase,1.0,0 -37422528,"Team Fortress 2",play,56.0,0 -37422528,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -37422528,"Call of Duty Ghosts - Multiplayer",play,55.0,0 -37422528,"Call of Duty Advanced Warfare",purchase,1.0,0 -37422528,"Call of Duty Advanced Warfare",play,44.0,0 -37422528,"KickBeat Steam Edition",purchase,1.0,0 -37422528,"KickBeat Steam Edition",play,32.0,0 -37422528,"Call of Duty Black Ops III",purchase,1.0,0 -37422528,"Call of Duty Black Ops III",play,16.1,0 -37422528,"Call of Juarez Gunslinger",purchase,1.0,0 -37422528,"Call of Juarez Gunslinger",play,6.7,0 -37422528,"Metro Last Light",purchase,1.0,0 -37422528,"Metro Last Light",play,6.4,0 -37422528,"Quake Live",purchase,1.0,0 -37422528,"Quake Live",play,6.1,0 -37422528,"One Finger Death Punch",purchase,1.0,0 -37422528,"One Finger Death Punch",play,5.6,0 -37422528,"The Elder Scrolls V Skyrim",purchase,1.0,0 -37422528,"The Elder Scrolls V Skyrim",play,5.4,0 -37422528,"Marvel Heroes 2015",purchase,1.0,0 -37422528,"Marvel Heroes 2015",play,5.2,0 -37422528,"Call of Duty Modern Warfare 2",purchase,1.0,0 -37422528,"Call of Duty Modern Warfare 2",play,3.7,0 -37422528,"3DMark",purchase,1.0,0 -37422528,"3DMark",play,2.6,0 -37422528,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -37422528,"Call of Duty 4 Modern Warfare",play,2.2,0 -37422528,"Sleeping Dogs",purchase,1.0,0 -37422528,"Sleeping Dogs",play,1.8,0 -37422528,"Hitman Absolution",purchase,1.0,0 -37422528,"Hitman Absolution",play,1.7,0 -37422528,"GunZ 2 The Second Duel",purchase,1.0,0 -37422528,"GunZ 2 The Second Duel",play,1.1,0 -37422528,"Nosgoth",purchase,1.0,0 -37422528,"Nosgoth",play,0.9,0 -37422528,"Sniper Elite 3",purchase,1.0,0 -37422528,"Sniper Elite 3",play,0.8,0 -37422528,"TOXIKK",purchase,1.0,0 -37422528,"TOXIKK",play,0.7,0 -37422528,"Enemy Front",purchase,1.0,0 -37422528,"Enemy Front",play,0.5,0 -37422528,"Mortal Kombat Kollection",purchase,1.0,0 -37422528,"Mortal Kombat Kollection",play,0.5,0 -37422528,"Need for Speed Hot Pursuit",purchase,1.0,0 -37422528,"Need for Speed Hot Pursuit",play,0.5,0 -37422528,"Counter-Strike",purchase,1.0,0 -37422528,"Counter-Strike",play,0.4,0 -37422528,"World of Guns Gun Disassembly",purchase,1.0,0 -37422528,"World of Guns Gun Disassembly",play,0.4,0 -37422528,"Team Fortress Classic",purchase,1.0,0 -37422528,"Team Fortress Classic",play,0.4,0 -37422528,"99 Levels To Hell",purchase,1.0,0 -37422528,"99 Levels To Hell",play,0.3,0 -37422528,"Cabela's Big Game Hunter Pro Hunts",purchase,1.0,0 -37422528,"Cabela's Big Game Hunter Pro Hunts",play,0.3,0 -37422528,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -37422528,"Batman Arkham Asylum GOTY Edition",play,0.3,0 -37422528,"Sid Meier's Civilization V",purchase,1.0,0 -37422528,"Sid Meier's Civilization V",play,0.3,0 -37422528,"Call of Duty 2",purchase,1.0,0 -37422528,"Call of Duty 2",play,0.2,0 -37422528,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -37422528,"Rising Storm/Red Orchestra 2 Multiplayer",play,0.2,0 -37422528,"EasyAntiCheat eSports",purchase,1.0,0 -37422528,"Call of Duty Black Ops II",purchase,1.0,0 -37422528,"Call of Duty Ghosts",purchase,1.0,0 -37422528,"3DMark API Overhead feature test",purchase,1.0,0 -37422528,"3DMark Cloud Gate benchmark",purchase,1.0,0 -37422528,"3DMark Fire Strike benchmark",purchase,1.0,0 -37422528,"3DMark Ice Storm benchmark",purchase,1.0,0 -37422528,"3DMark Sky Diver benchmark",purchase,1.0,0 -37422528,"Arma Cold War Assault",purchase,1.0,0 -37422528,"Assassin's Creed II",purchase,1.0,0 -37422528,"Batman Arkham City GOTY",purchase,1.0,0 -37422528,"Batman Arkham Origins",purchase,1.0,0 -37422528,"Battlefield Bad Company 2",purchase,1.0,0 -37422528,"BioShock",purchase,1.0,0 -37422528,"BioShock 2",purchase,1.0,0 -37422528,"BioShock Infinite",purchase,1.0,0 -37422528,"Call of Duty",purchase,1.0,0 -37422528,"Call of Duty Black Ops",purchase,1.0,0 -37422528,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -37422528,"Call of Duty Modern Warfare 3",purchase,1.0,0 -37422528,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -37422528,"Call of Duty United Offensive",purchase,1.0,0 -37422528,"Call of Duty World at War",purchase,1.0,0 -37422528,"Call of Juarez Bound in Blood",purchase,1.0,0 -37422528,"Chivalry Medieval Warfare",purchase,1.0,0 -37422528,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -37422528,"Company of Heroes 2",purchase,1.0,0 -37422528,"Counter-Strike Condition Zero",purchase,1.0,0 -37422528,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -37422528,"Counter-Strike Source",purchase,1.0,0 -37422528,"Crazy Taxi",purchase,1.0,0 -37422528,"Darksiders II",purchase,1.0,0 -37422528,"DARK SOULS II",purchase,1.0,0 -37422528,"Day of Defeat",purchase,1.0,0 -37422528,"Day of Defeat Source",purchase,1.0,0 -37422528,"Dead Island",purchase,1.0,0 -37422528,"Deathmatch Classic",purchase,1.0,0 -37422528,"Don't Starve",purchase,1.0,0 -37422528,"Don't Starve Together Beta",purchase,1.0,0 -37422528,"DOOM 3 BFG Edition",purchase,1.0,0 -37422528,"Empire Total War",purchase,1.0,0 -37422528,"Euro Truck Simulator 2",purchase,1.0,0 -37422528,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -37422528,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -37422528,"F.E.A.R.",purchase,1.0,0 -37422528,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -37422528,"F.E.A.R. 3",purchase,1.0,0 -37422528,"F.E.A.R. Extraction Point",purchase,1.0,0 -37422528,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -37422528,"Guardians of Middle-earth",purchase,1.0,0 -37422528,"Half-Life",purchase,1.0,0 -37422528,"Half-Life 2",purchase,1.0,0 -37422528,"Half-Life 2 Deathmatch",purchase,1.0,0 -37422528,"Half-Life 2 Episode One",purchase,1.0,0 -37422528,"Half-Life 2 Episode Two",purchase,1.0,0 -37422528,"Half-Life 2 Lost Coast",purchase,1.0,0 -37422528,"Half-Life Blue Shift",purchase,1.0,0 -37422528,"Half-Life Opposing Force",purchase,1.0,0 -37422528,"Half-Life Source",purchase,1.0,0 -37422528,"Half-Life Deathmatch Source",purchase,1.0,0 -37422528,"Hitman 2 Silent Assassin",purchase,1.0,0 -37422528,"Hitman Blood Money",purchase,1.0,0 -37422528,"Hitman Codename 47",purchase,1.0,0 -37422528,"Hitman Contracts",purchase,1.0,0 -37422528,"Hitman Sniper Challenge",purchase,1.0,0 -37422528,"Insurgency",purchase,1.0,0 -37422528,"Kung Fury",purchase,1.0,0 -37422528,"Left 4 Dead",purchase,1.0,0 -37422528,"Left 4 Dead 2",purchase,1.0,0 -37422528,"Metro 2033",purchase,1.0,0 -37422528,"NiGHTS into Dreams...",purchase,1.0,0 -37422528,"Patch testing for Chivalry",purchase,1.0,0 -37422528,"PAYDAY 2",purchase,1.0,0 -37422528,"PAYDAY The Heist",purchase,1.0,0 -37422528,"Portal",purchase,1.0,0 -37422528,"Portal 2",purchase,1.0,0 -37422528,"Quake",purchase,1.0,0 -37422528,"Quake II",purchase,1.0,0 -37422528,"Quake II Ground Zero",purchase,1.0,0 -37422528,"Quake II The Reckoning",purchase,1.0,0 -37422528,"Quake III Team Arena",purchase,1.0,0 -37422528,"Quake III Arena",purchase,1.0,0 -37422528,"Quake Mission Pack 1 Scourge of Armagon",purchase,1.0,0 -37422528,"Quake Mission Pack 2 Dissolution of Eternity",purchase,1.0,0 -37422528,"RAGE",purchase,1.0,0 -37422528,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -37422528,"Ricochet",purchase,1.0,0 -37422528,"Risen 3 - Titan Lords",purchase,1.0,0 -37422528,"Rust",purchase,1.0,0 -37422528,"Ryse Son of Rome",purchase,1.0,0 -37422528,"Scribblenauts Unlimited",purchase,1.0,0 -37422528,"SEGA Bass Fishing",purchase,1.0,0 -37422528,"Serious Sam 3 BFE",purchase,1.0,0 -37422528,"Shadow Warrior",purchase,1.0,0 -37422528,"Sid Meier's Ace Patrol",purchase,1.0,0 -37422528,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -37422528,"Sid Meier's Civilization III Complete",purchase,1.0,0 -37422528,"Sid Meier's Civilization IV",purchase,1.0,0 -37422528,"Sid Meier's Civilization IV",purchase,1.0,0 -37422528,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -37422528,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -37422528,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -37422528,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -37422528,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -37422528,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -37422528,"Sid Meier's Pirates!",purchase,1.0,0 -37422528,"Sid Meier's Railroads!",purchase,1.0,0 -37422528,"Sniper Elite Nazi Zombie Army",purchase,1.0,0 -37422528,"Sniper Elite V2",purchase,1.0,0 -37422528,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -37422528,"Sonic Adventure DX",purchase,1.0,0 -37422528,"Sonic Generations",purchase,1.0,0 -37422528,"Space Channel 5 Part 2",purchase,1.0,0 -37422528,"Tactical Intervention",purchase,1.0,0 -37422528,"The Collider",purchase,1.0,0 -37422528,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -37422528,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -37422528,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -37422528,"theHunter",purchase,1.0,0 -37422528,"The Lord of the Rings War in the North",purchase,1.0,0 -37422528,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -37422528,"Thief",purchase,1.0,0 -37422528,"Thief - Opportunist",purchase,1.0,0 -37422528,"Tomb Raider",purchase,1.0,0 -37422528,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -37422528,"Tomb Raider Anniversary",purchase,1.0,0 -37422528,"Tomb Raider Chronicles",purchase,1.0,0 -37422528,"Tomb Raider Legend",purchase,1.0,0 -37422528,"Tomb Raider The Last Revelation",purchase,1.0,0 -37422528,"Tomb Raider Underworld",purchase,1.0,0 -37422528,"Tomb Raider I",purchase,1.0,0 -37422528,"Tomb Raider II",purchase,1.0,0 -37422528,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -37422528,"Vertiginous Golf",purchase,1.0,0 -37422528,"Viking Battle for Asgard",purchase,1.0,0 -37422528,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -37422528,"War Thunder",purchase,1.0,0 -119906029,"Dota 2",purchase,1.0,0 -119906029,"Dota 2",play,38.0,0 -152310454,"Team Fortress 2",purchase,1.0,0 -152310454,"Team Fortress 2",play,811.0,0 -221744925,"Dota 2",purchase,1.0,0 -221744925,"Dota 2",play,1.6,0 -221744925,"Dungeons & Dragons Online",purchase,1.0,0 -221744925,"No More Room in Hell",purchase,1.0,0 -221744925,"Only If",purchase,1.0,0 -221744925,"Robocraft",purchase,1.0,0 -221744925,"Unturned",purchase,1.0,0 -110814860,"Counter-Strike Global Offensive",purchase,1.0,0 -110814860,"Counter-Strike Global Offensive",play,3.7,0 -110814860,"Tower Wars",purchase,1.0,0 -110814860,"Tower Wars",play,0.5,0 -288155906,"Nosgoth",purchase,1.0,0 -288155906,"Nosgoth",play,0.8,0 -193774881,"Dota 2",purchase,1.0,0 -193774881,"Dota 2",play,21.0,0 -224418566,"Counter-Strike Global Offensive",purchase,1.0,0 -224418566,"Counter-Strike Global Offensive",play,176.0,0 -224418566,"Arma 2 Operation Arrowhead",purchase,1.0,0 -224418566,"Arma 2 Operation Arrowhead",play,3.9,0 -224418566,"Arma 2",purchase,1.0,0 -224418566,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -224418566,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -224418566,"RUSH",purchase,1.0,0 -120271188,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -120271188,"Fallout 3 - Game of the Year Edition",play,44.0,0 -120271188,"YOU DON'T KNOW JACK",purchase,1.0,0 -120271188,"YOU DON'T KNOW JACK",play,2.3,0 -190296880,"Only If",purchase,1.0,0 -190296880,"War Thunder",purchase,1.0,0 -218908889,"8BitMMO",purchase,1.0,0 -218908889,"8BitMMO",play,0.5,0 -56219610,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -56219610,"Call of Duty Modern Warfare 2 - Multiplayer",play,309.0,0 -56219610,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -56219610,"Call of Duty Modern Warfare 3 - Multiplayer",play,163.0,0 -56219610,"Call of Duty Modern Warfare 2",purchase,1.0,0 -56219610,"Call of Duty Modern Warfare 2",play,64.0,0 -56219610,"Call of Duty Modern Warfare 3",purchase,1.0,0 -56219610,"Call of Duty Modern Warfare 3",play,61.0,0 -56219610,"Total War SHOGUN 2",purchase,1.0,0 -56219610,"Total War SHOGUN 2",play,49.0,0 -56219610,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -56219610,"Call of Duty Black Ops II - Multiplayer",play,47.0,0 -56219610,"Omerta - City of Gangsters",purchase,1.0,0 -56219610,"Omerta - City of Gangsters",play,44.0,0 -56219610,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -56219610,"Call of Duty Black Ops - Multiplayer",play,37.0,0 -56219610,"PAYDAY 2",purchase,1.0,0 -56219610,"PAYDAY 2",play,32.0,0 -56219610,"Stronghold 3",purchase,1.0,0 -56219610,"Stronghold 3",play,30.0,0 -56219610,"Emergency 5 - Deluxe Edition",purchase,1.0,0 -56219610,"Emergency 5 - Deluxe Edition",play,25.0,0 -56219610,"Emergency 2013",purchase,1.0,0 -56219610,"Emergency 2013",play,17.4,0 -56219610,"Mafia II",purchase,1.0,0 -56219610,"Mafia II",play,15.0,0 -56219610,"Age of Empires II HD Edition",purchase,1.0,0 -56219610,"Age of Empires II HD Edition",play,9.0,0 -56219610,"Ryse Son of Rome",purchase,1.0,0 -56219610,"Ryse Son of Rome",play,7.8,0 -56219610,"Call of Duty Black Ops",purchase,1.0,0 -56219610,"Call of Duty Black Ops",play,6.6,0 -56219610,"Homefront",purchase,1.0,0 -56219610,"Homefront",play,5.8,0 -56219610,"The Crew",purchase,1.0,0 -56219610,"The Crew",play,4.9,0 -56219610,"Call of Duty Black Ops II",purchase,1.0,0 -56219610,"Call of Duty Black Ops II",play,3.5,0 -56219610,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -56219610,"Call of Duty Ghosts - Multiplayer",play,3.1,0 -56219610,"Front Mission Evolved",purchase,1.0,0 -56219610,"Front Mission Evolved",play,3.0,0 -56219610,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -56219610,"Call of Duty Black Ops II - Zombies",play,2.7,0 -56219610,"Call of Duty Ghosts",purchase,1.0,0 -56219610,"Call of Duty Ghosts",play,0.4,0 -56219610,"Stormrise",purchase,1.0,0 -56219610,"Stormrise",play,0.3,0 -56219610,"Call of Duty Modern Warfare 2 - Resurgence Pack",purchase,1.0,0 -56219610,"Call of Duty Modern Warfare 2 Stimulus Package",purchase,1.0,0 -56219610,"Omerta - City of Gangsters The Bulgarian Colossus",purchase,1.0,0 -284608638,"FreeStyle2 Street Basketball",purchase,1.0,0 -284608638,"FreeStyle2 Street Basketball",play,6.3,0 -251974333,"Counter-Strike Global Offensive",purchase,1.0,0 -251974333,"Counter-Strike Global Offensive",play,51.0,0 -251974333,"Unturned",purchase,1.0,0 -251974333,"Unturned",play,1.6,0 -251974333,"Mitos.is The Game",purchase,1.0,0 -48350308,"Sam & Max 104 Abe Lincoln Must Die!",purchase,1.0,0 -48350308,"Sam & Max 104 Abe Lincoln Must Die!",play,0.1,0 -181216686,"Goat Simulator",purchase,1.0,0 -70751383,"Sid Meier's Civilization V",purchase,1.0,0 -70751383,"Sid Meier's Civilization V",play,53.0,0 -70751383,"Age of Wonders III",purchase,1.0,0 -70751383,"Age of Wonders III",play,1.2,0 -70751383,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -70751383,"Total War ROME II - Emperor Edition",purchase,1.0,0 -109338714,"Dota 2",purchase,1.0,0 -109338714,"Dota 2",play,52.0,0 -185974015,"Dota 2",purchase,1.0,0 -185974015,"Dota 2",play,0.5,0 -162962869,"Dota 2",purchase,1.0,0 -162962869,"Dota 2",play,17.9,0 -155718820,"Rust",purchase,1.0,0 -155718820,"Rust",play,137.0,0 -155718820,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -155718820,"Call of Duty Modern Warfare 2 - Multiplayer",play,78.0,0 -155718820,"Stronghold Crusader HD",purchase,1.0,0 -155718820,"Stronghold Crusader HD",play,58.0,0 -155718820,"The Elder Scrolls V Skyrim",purchase,1.0,0 -155718820,"The Elder Scrolls V Skyrim",play,53.0,0 -155718820,"Counter-Strike Global Offensive",purchase,1.0,0 -155718820,"Counter-Strike Global Offensive",play,47.0,0 -155718820,"The Forest",purchase,1.0,0 -155718820,"The Forest",play,41.0,0 -155718820,"Far Cry 3",purchase,1.0,0 -155718820,"Far Cry 3",play,25.0,0 -155718820,"Stronghold Legends",purchase,1.0,0 -155718820,"Stronghold Legends",play,24.0,0 -155718820,"Lego Star Wars Saga",purchase,1.0,0 -155718820,"Lego Star Wars Saga",play,18.5,0 -155718820,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -155718820,"Tom Clancy's Splinter Cell Conviction",play,15.9,0 -155718820,"Borderlands 2",purchase,1.0,0 -155718820,"Borderlands 2",play,14.3,0 -155718820,"PAYDAY 2",purchase,1.0,0 -155718820,"PAYDAY 2",play,9.4,0 -155718820,"Stronghold 2",purchase,1.0,0 -155718820,"Stronghold 2",play,7.5,0 -155718820,"Stronghold HD",purchase,1.0,0 -155718820,"Stronghold HD",play,5.3,0 -155718820,"Star Wars The Force Unleashed II",purchase,1.0,0 -155718820,"Star Wars The Force Unleashed II",play,2.6,0 -155718820,"Warface",purchase,1.0,0 -155718820,"Warface",play,2.5,0 -155718820,"LEGO Batman The Videogame",purchase,1.0,0 -155718820,"LEGO Batman The Videogame",play,1.5,0 -155718820,"Banished",purchase,1.0,0 -155718820,"Banished",play,1.3,0 -155718820,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -155718820,"Star Wars The Force Unleashed Ultimate Sith Edition",play,0.5,0 -155718820,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -155718820,"Deus Ex Human Revolution - Director's Cut",play,0.3,0 -155718820,"Call of Duty Modern Warfare 2",purchase,1.0,0 -155718820,"Call of Duty Modern Warfare 2",play,0.3,0 -155718820,"Unturned",purchase,1.0,0 -155718820,"Unturned",play,0.3,0 -155718820,"Kingdoms",purchase,1.0,0 -155718820,"Kingdoms",play,0.2,0 -155718820,"Stronghold Kingdoms",purchase,1.0,0 -155718820,"Stronghold Kingdoms",play,0.1,0 -155718820,"Rocket League",purchase,1.0,0 -155718820,"Rocket League",play,0.1,0 -155718820,"Grand Theft Auto San Andreas",purchase,1.0,0 -155718820,"Stronghold Crusader Extreme HD",purchase,1.0,0 -155718820,"GTA SA German Mac",purchase,1.0,0 -155718820,"Realm of the Mad God",purchase,1.0,0 -155718820,"War Thunder",purchase,1.0,0 -307901099,"Dota 2",purchase,1.0,0 -307901099,"Dota 2",play,0.2,0 -96694736,"Team Fortress 2",purchase,1.0,0 -96694736,"Team Fortress 2",play,0.3,0 -285480540,"Sid Meier's Civilization V",purchase,1.0,0 -285480540,"Sid Meier's Civilization V",play,14.0,0 -285480540,"Star Trek Online",purchase,1.0,0 -285480540,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -285480540,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -114439892,"Dota 2",purchase,1.0,0 -114439892,"Dota 2",play,335.0,0 -200421415,"Unturned",purchase,1.0,0 -145929178,"Dota 2",purchase,1.0,0 -145929178,"Dota 2",play,38.0,0 -255096684,"Game of Thrones ",purchase,1.0,0 -255096684,"Game of Thrones ",play,24.0,0 -255096684,"PAYDAY 2",purchase,1.0,0 -255096684,"PAYDAY 2",play,9.5,0 -255096684,"Metro Last Light",purchase,1.0,0 -255096684,"Metro Last Light",play,1.0,0 -255096684,"Frontline Tactics",purchase,1.0,0 -255096684,"Frontline Tactics",play,0.1,0 -255096684,"Anomaly Warzone Earth",purchase,1.0,0 -255096684,"Awesomenauts",purchase,1.0,0 -255096684,"Magicka",purchase,1.0,0 -255096684,"Magicka Wizard Wars",purchase,1.0,0 -255096684,"Strike Suit Zero",purchase,1.0,0 -129873202,"Saints Row 2",purchase,1.0,0 -129873202,"Saints Row 2",play,108.0,0 -86202400,"Total War SHOGUN 2",purchase,1.0,0 -86202400,"Total War SHOGUN 2",play,12.8,0 -77507107,"Left 4 Dead 2",purchase,1.0,0 -77507107,"Left 4 Dead 2",play,22.0,0 -175794402,"Team Fortress 2",purchase,1.0,0 -175794402,"Team Fortress 2",play,2.2,0 -278222242,"Dota 2",purchase,1.0,0 -278222242,"Dota 2",play,0.5,0 -63753977,"Left 4 Dead 2",purchase,1.0,0 -63753977,"Left 4 Dead 2",play,6.1,0 -117194705,"Face of Mankind",purchase,1.0,0 -117194705,"Firefall",purchase,1.0,0 -117194705,"Heroes & Generals",purchase,1.0,0 -117194705,"La Tale",purchase,1.0,0 -117194705,"NEOTOKYO",purchase,1.0,0 -117194705,"Reversion - The Escape",purchase,1.0,0 -117194705,"Robocraft",purchase,1.0,0 -117194705,"Xam",purchase,1.0,0 -298060523,"Dirty Bomb",purchase,1.0,0 -98624880,"Half-Life",purchase,1.0,0 -98624880,"Half-Life",play,1.5,0 -98624880,"Counter-Strike",purchase,1.0,0 -98624880,"Day of Defeat",purchase,1.0,0 -98624880,"Deathmatch Classic",purchase,1.0,0 -98624880,"Half-Life Blue Shift",purchase,1.0,0 -98624880,"Half-Life Opposing Force",purchase,1.0,0 -98624880,"Ricochet",purchase,1.0,0 -98624880,"Team Fortress Classic",purchase,1.0,0 -82279854,"Mafia II",purchase,1.0,0 -82279854,"Mafia II",play,0.6,0 -180984112,"Unturned",purchase,1.0,0 -180984112,"Enclave",purchase,1.0,0 -180984112,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -249025556,"Dota 2",purchase,1.0,0 -249025556,"Dota 2",play,710.0,0 -249025556,"Counter-Strike Global Offensive",purchase,1.0,0 -249025556,"Counter-Strike Global Offensive",play,6.9,0 -249025556,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -210569339,"Robocraft",purchase,1.0,0 -210569339,"Robocraft",play,20.0,0 -291129250,"Dota 2",purchase,1.0,0 -291129250,"Dota 2",play,10.9,0 -80250756,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -80250756,"Resident Evil 6 / Biohazard 6",play,54.0,0 -80250756,"Sid Meier's Civilization V",purchase,1.0,0 -80250756,"Sid Meier's Civilization V",play,22.0,0 -80250756,"BioShock Infinite",purchase,1.0,0 -80250756,"BioShock Infinite",play,15.5,0 -80250756,"Total War SHOGUN 2",purchase,1.0,0 -80250756,"Total War SHOGUN 2",play,6.7,0 -80250756,"Total War ROME II - Emperor Edition",purchase,1.0,0 -80250756,"Total War ROME II - Emperor Edition",play,3.5,0 -80250756,"War of the Roses",purchase,1.0,0 -80250756,"War of the Roses",play,3.1,0 -80250756,"The Elder Scrolls V Skyrim",purchase,1.0,0 -80250756,"The Elder Scrolls V Skyrim",play,1.2,0 -80250756,"Empire Total War",purchase,1.0,0 -80250756,"Empire Total War",play,1.0,0 -80250756,"Team Fortress 2",purchase,1.0,0 -80250756,"Team Fortress 2",play,0.7,0 -80250756,"SimCity 4 Deluxe",purchase,1.0,0 -80250756,"SimCity 4 Deluxe",play,0.7,0 -80250756,"Counter-Strike",purchase,1.0,0 -80250756,"Counter-Strike",play,0.6,0 -80250756,"Company of Heroes Tales of Valor",purchase,1.0,0 -80250756,"Company of Heroes Tales of Valor",play,0.5,0 -80250756,"Company of Heroes 2",purchase,1.0,0 -80250756,"Company of Heroes 2",play,0.1,0 -80250756,"Company of Heroes (New Steam Version)",purchase,1.0,0 -80250756,"Counter-Strike Condition Zero",purchase,1.0,0 -80250756,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -80250756,"War of the Roses Kingmaker",purchase,1.0,0 -80250756,"War of the Roses Balance Beta",purchase,1.0,0 -30500254,"Half-Life 2",purchase,1.0,0 -30500254,"Half-Life 2",play,12.5,0 -30500254,"Half-Life 2 Episode One",purchase,1.0,0 -30500254,"Half-Life 2 Episode One",play,3.3,0 -30500254,"Counter-Strike Source",purchase,1.0,0 -30500254,"Half-Life 2 Deathmatch",purchase,1.0,0 -30500254,"Half-Life 2 Lost Coast",purchase,1.0,0 -30500254,"Half-Life Source",purchase,1.0,0 -30500254,"Half-Life Deathmatch Source",purchase,1.0,0 -256980620,"Age of Empires II HD Edition",purchase,1.0,0 -256980620,"Age of Empires II HD Edition",play,247.0,0 -256980620,"Anno Online",purchase,1.0,0 -256980620,"Anno Online",play,82.0,0 -256980620,"Age of Empires II HD The Forgotten",purchase,1.0,0 -199010300,"Marvel Heroes 2015",purchase,1.0,0 -58252208,"Loom",purchase,1.0,0 -58252208,"Loom",play,4.1,0 -58252208,"Indiana Jones and the Last Crusade",purchase,1.0,0 -58252208,"Indiana Jones and the Last Crusade",play,1.2,0 -58252208,"The Dig",purchase,1.0,0 -58252208,"The Dig",play,0.4,0 -58252208,"Indiana Jones and the Fate of Atlantis",purchase,1.0,0 -159474046,"Left 4 Dead 2",purchase,1.0,0 -159474046,"Left 4 Dead 2",play,3.7,0 -203950540,"Dota 2",purchase,1.0,0 -203950540,"Dota 2",play,8.3,0 -188631532,"Dota 2",purchase,1.0,0 -188631532,"Dota 2",play,0.9,0 -188631532,"ACE - Arena Cyber Evolution",purchase,1.0,0 -188631532,"City of Steam Arkadia",purchase,1.0,0 -188631532,"Counter-Strike Nexon Zombies",purchase,1.0,0 -188631532,"Divine Souls",purchase,1.0,0 -188631532,"Dizzel",purchase,1.0,0 -188631532,"Guns and Robots",purchase,1.0,0 -188631532,"Happy Wars",purchase,1.0,0 -188631532,"Magicka Wizard Wars",purchase,1.0,0 -188631532,"NEOTOKYO",purchase,1.0,0 -188631532,"ORION Prelude",purchase,1.0,0 -188631532,"Pyramid Raid",purchase,1.0,0 -188631532,"Robocraft",purchase,1.0,0 -188631532,"Tactical Intervention",purchase,1.0,0 -188631532,"The Expendabros",purchase,1.0,0 -188631532,"Unturned",purchase,1.0,0 -170354414,"Surgeon Simulator",purchase,1.0,0 -170354414,"Surgeon Simulator",play,0.8,0 -128653133,"Star Trek Online",purchase,1.0,0 -128653133,"Star Trek Online",play,42.0,0 -128653133,"Sniper Ghost Warrior 2",purchase,1.0,0 -128653133,"Sniper Ghost Warrior 2",play,8.8,0 -128653133,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -112774446,"Team Fortress 2",purchase,1.0,0 -112774446,"Team Fortress 2",play,0.4,0 -248028481,"Dota 2",purchase,1.0,0 -248028481,"Dota 2",play,0.6,0 -30734023,"Half-Life 2 Deathmatch",purchase,1.0,0 -30734023,"Half-Life 2 Lost Coast",purchase,1.0,0 -25864738,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -25864738,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -135872798,"Dota 2",purchase,1.0,0 -135872798,"Dota 2",play,7.0,0 -209807861,"Team Fortress 2",purchase,1.0,0 -209807861,"Team Fortress 2",play,445.0,0 -209807861,"Counter-Strike Global Offensive",purchase,1.0,0 -209807861,"Counter-Strike Global Offensive",play,258.0,0 -209807861,"Sid Meier's Civilization V",purchase,1.0,0 -209807861,"Sid Meier's Civilization V",play,59.0,0 -209807861,"Grand Theft Auto V",purchase,1.0,0 -209807861,"Grand Theft Auto V",play,36.0,0 -209807861,"Trove",purchase,1.0,0 -209807861,"Trove",play,15.1,0 -209807861,"Rocket League",purchase,1.0,0 -209807861,"Rocket League",play,14.6,0 -209807861,"ARK Survival Evolved",purchase,1.0,0 -209807861,"ARK Survival Evolved",play,11.7,0 -209807861,"Castle Crashers",purchase,1.0,0 -209807861,"Castle Crashers",play,6.3,0 -209807861,"Gear Up",purchase,1.0,0 -209807861,"Gear Up",play,5.9,0 -209807861,"AirMech",purchase,1.0,0 -209807861,"AirMech",play,1.6,0 -209807861,"Besiege",purchase,1.0,0 -209807861,"Besiege",play,1.5,0 -209807861,"Dungeon Defenders II",purchase,1.0,0 -209807861,"Dungeon Defenders II",play,1.5,0 -209807861,"Unturned",purchase,1.0,0 -209807861,"Unturned",play,1.4,0 -209807861,"Path of Exile",purchase,1.0,0 -209807861,"Path of Exile",play,0.8,0 -209807861,"Dirty Bomb",purchase,1.0,0 -209807861,"Dirty Bomb",play,0.8,0 -209807861,"War Thunder",purchase,1.0,0 -209807861,"War Thunder",play,0.7,0 -209807861,"Block N Load",purchase,1.0,0 -209807861,"Block N Load",play,0.7,0 -209807861,"Dota 2",purchase,1.0,0 -209807861,"Dota 2",play,0.5,0 -209807861,"Dustforce",purchase,1.0,0 -209807861,"Dustforce",play,0.2,0 -209807861,"Battle Battalions",purchase,1.0,0 -209807861,"Battle Battalions",play,0.2,0 -209807861,"Fistful of Frags",purchase,1.0,0 -209807861,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -177494738,"Team Fortress 2",purchase,1.0,0 -177494738,"Team Fortress 2",play,4.1,0 -182557942,"The Elder Scrolls V Skyrim",purchase,1.0,0 -182557942,"The Elder Scrolls V Skyrim",play,268.0,0 -182557942,"Sid Meier's Civilization V",purchase,1.0,0 -182557942,"Sid Meier's Civilization V",play,230.0,0 -182557942,"The Legend of Korra",purchase,1.0,0 -182557942,"The Legend of Korra",play,15.7,0 -182557942,"Star Wars - Battlefront II",purchase,1.0,0 -182557942,"Star Wars - Battlefront II",play,10.3,0 -182557942,"Lethal League",purchase,1.0,0 -182557942,"Lethal League",play,6.4,0 -182557942,"Garry's Mod",purchase,1.0,0 -182557942,"Garry's Mod",play,6.0,0 -182557942,"Magicka",purchase,1.0,0 -182557942,"Magicka",play,6.0,0 -182557942,"Don't Starve Together Beta",purchase,1.0,0 -182557942,"Don't Starve Together Beta",play,5.4,0 -182557942,"Aura Kingdom",purchase,1.0,0 -182557942,"Aura Kingdom",play,4.9,0 -182557942,"Bloody Trapland",purchase,1.0,0 -182557942,"Bloody Trapland",play,4.8,0 -182557942,"Terraria",purchase,1.0,0 -182557942,"Terraria",play,3.1,0 -182557942,"Brawlhalla",purchase,1.0,0 -182557942,"Brawlhalla",play,1.5,0 -182557942,"Team Fortress 2",purchase,1.0,0 -182557942,"Team Fortress 2",play,0.2,0 -182557942,"Amnesia The Dark Descent",purchase,1.0,0 -182557942,"Edge of Space",purchase,1.0,0 -182557942,"Rise of Incarnates",purchase,1.0,0 -182557942,"Sakura Clicker",purchase,1.0,0 -182557942,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -182557942,"Skullgirls",purchase,1.0,0 -182557942,"Skullgirls Endless Beta",purchase,1.0,0 -182557942,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -80502960,"Total War SHOGUN 2",purchase,1.0,0 -80502960,"Total War SHOGUN 2",play,345.0,0 -80502960,"Total War ROME II - Emperor Edition",purchase,1.0,0 -80502960,"Total War ROME II - Emperor Edition",play,15.8,0 -293714430,"Dota 2",purchase,1.0,0 -293714430,"Dota 2",play,23.0,0 -189106314,"Dota 2",purchase,1.0,0 -189106314,"Dota 2",play,12.7,0 -202337908,"Dota 2",purchase,1.0,0 -202337908,"Dota 2",play,1.9,0 -273268792,"NBA 2K15",purchase,1.0,0 -273268792,"NBA 2K15",play,10.5,0 -249583916,"Dota 2",purchase,1.0,0 -249583916,"Dota 2",play,1.0,0 -270777688,"Counter-Strike Global Offensive",purchase,1.0,0 -270777688,"Counter-Strike Global Offensive",play,91.0,0 -270777688,"Defiance",purchase,1.0,0 -270777688,"Frozen Free Fall Snowball Fight",purchase,1.0,0 -270777688,"Heroes & Generals",purchase,1.0,0 -270777688,"March of War",purchase,1.0,0 -270777688,"PlanetSide 2",purchase,1.0,0 -270777688,"RIFT",purchase,1.0,0 -138674360,"Dota 2",purchase,1.0,0 -138674360,"Dota 2",play,213.0,0 -169244260,"Team Fortress 2",purchase,1.0,0 -169244260,"Team Fortress 2",play,0.8,0 -22605909,"Day of Defeat",purchase,1.0,0 -22605909,"Day of Defeat",play,38.0,0 -22605909,"Counter-Strike",purchase,1.0,0 -22605909,"Counter-Strike",play,37.0,0 -22605909,"Rome Total War",purchase,1.0,0 -22605909,"Rome Total War",play,23.0,0 -22605909,"Counter-Strike Condition Zero",purchase,1.0,0 -22605909,"Counter-Strike Condition Zero",play,15.7,0 -22605909,"Rome Total War - Alexander",purchase,1.0,0 -22605909,"Rome Total War - Alexander",play,3.9,0 -22605909,"Company of Heroes",purchase,1.0,0 -22605909,"Company of Heroes",play,3.8,0 -22605909,"Company of Heroes (New Steam Version)",purchase,1.0,0 -22605909,"Company of Heroes (New Steam Version)",play,2.8,0 -22605909,"Dota 2",purchase,1.0,0 -22605909,"Dota 2",play,1.9,0 -22605909,"Prison Tycoon 3 Lockdown",purchase,1.0,0 -22605909,"Prison Tycoon 3 Lockdown",play,1.7,0 -22605909,"Cossacks Back to War",purchase,1.0,0 -22605909,"Cossacks Back to War",play,0.6,0 -22605909,"Team Fortress 2",purchase,1.0,0 -22605909,"Team Fortress 2",play,0.2,0 -22605909,"Take Command Second Manassas",purchase,1.0,0 -22605909,"Deathmatch Classic",purchase,1.0,0 -22605909,"Grand Ages Rome",purchase,1.0,0 -22605909,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -22605909,"Ricochet",purchase,1.0,0 -135057976,"Dota 2",purchase,1.0,0 -135057976,"Dota 2",play,971.0,0 -135057976,"PlanetSide 2",purchase,1.0,0 -234041171,"Dota 2",purchase,1.0,0 -234041171,"Dota 2",play,2.8,0 -194629782,"Dragons and Titans",purchase,1.0,0 -194629782,"Dragons and Titans",play,17.8,0 -59837634,"Counter-Strike Source",purchase,1.0,0 -59837634,"Counter-Strike Source",play,325.0,0 -59837634,"Starbound",purchase,1.0,0 -59837634,"Starbound",play,100.0,0 -59837634,"Team Fortress 2",purchase,1.0,0 -59837634,"Team Fortress 2",play,6.9,0 -59837634,"Day of Defeat Source",purchase,1.0,0 -59837634,"Day of Defeat Source",play,2.7,0 -59837634,"Half-Life 2 Deathmatch",purchase,1.0,0 -59837634,"Half-Life 2 Deathmatch",play,0.7,0 -59837634,"Half-Life 2 Lost Coast",purchase,1.0,0 -59837634,"Starbound - Unstable",purchase,1.0,0 -73820367,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -73820367,"Call of Duty Black Ops - Multiplayer",play,180.0,0 -73820367,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -73820367,"METAL GEAR SOLID V THE PHANTOM PAIN",play,49.0,0 -73820367,"Call of Duty Black Ops",purchase,1.0,0 -110967402,"Team Fortress 2",purchase,1.0,0 -110967402,"Team Fortress 2",play,1.9,0 -126120127,"Team Fortress 2",purchase,1.0,0 -126120127,"Team Fortress 2",play,2.3,0 -69812769,"Counter-Strike",purchase,1.0,0 -69812769,"Counter-Strike",play,8.2,0 -69812769,"Counter-Strike Condition Zero",purchase,1.0,0 -69812769,"Counter-Strike Condition Zero",play,0.5,0 -69812769,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -69812769,"Day of Defeat",purchase,1.0,0 -69812769,"Deathmatch Classic",purchase,1.0,0 -69812769,"Ricochet",purchase,1.0,0 -55906572,"Warframe",purchase,1.0,0 -55906572,"Warframe",play,690.0,0 -55906572,"Garry's Mod",purchase,1.0,0 -55906572,"Garry's Mod",play,671.0,0 -55906572,"Team Fortress 2",purchase,1.0,0 -55906572,"Team Fortress 2",play,389.0,0 -55906572,"Counter-Strike Global Offensive",purchase,1.0,0 -55906572,"Counter-Strike Global Offensive",play,152.0,0 -55906572,"DARK SOULS II",purchase,1.0,0 -55906572,"DARK SOULS II",play,115.0,0 -55906572,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -55906572,"Dark Souls Prepare to Die Edition",play,91.0,0 -55906572,"Terraria",purchase,1.0,0 -55906572,"Terraria",play,81.0,0 -55906572,"Arma 2 Operation Arrowhead",purchase,1.0,0 -55906572,"Arma 2 Operation Arrowhead",play,75.0,0 -55906572,"PAYDAY 2",purchase,1.0,0 -55906572,"PAYDAY 2",play,67.0,0 -55906572,"Sid Meier's Civilization V",purchase,1.0,0 -55906572,"Sid Meier's Civilization V",play,59.0,0 -55906572,"Total War SHOGUN 2",purchase,1.0,0 -55906572,"Total War SHOGUN 2",play,59.0,0 -55906572,"Rocket League",purchase,1.0,0 -55906572,"Rocket League",play,58.0,0 -55906572,"Rocksmith 2014",purchase,1.0,0 -55906572,"Rocksmith 2014",play,55.0,0 -55906572,"PlanetSide 2",purchase,1.0,0 -55906572,"PlanetSide 2",play,51.0,0 -55906572,"Battlefield Bad Company 2",purchase,1.0,0 -55906572,"Battlefield Bad Company 2",play,48.0,0 -55906572,"Counter-Strike Source",purchase,1.0,0 -55906572,"Counter-Strike Source",play,47.0,0 -55906572,"War Thunder",purchase,1.0,0 -55906572,"War Thunder",play,46.0,0 -55906572,"Elite Dangerous",purchase,1.0,0 -55906572,"Elite Dangerous",play,46.0,0 -55906572,"Kerbal Space Program",purchase,1.0,0 -55906572,"Kerbal Space Program",play,44.0,0 -55906572,"Neverwinter",purchase,1.0,0 -55906572,"Neverwinter",play,42.0,0 -55906572,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -55906572,"Call of Duty Modern Warfare 3 - Multiplayer",play,37.0,0 -55906572,"Insurgency Modern Infantry Combat",purchase,1.0,0 -55906572,"Insurgency Modern Infantry Combat",play,36.0,0 -55906572,"Source Filmmaker",purchase,1.0,0 -55906572,"Source Filmmaker",play,33.0,0 -55906572,"Fallout New Vegas",purchase,1.0,0 -55906572,"Fallout New Vegas",play,33.0,0 -55906572,"Call of Duty World at War",purchase,1.0,0 -55906572,"Call of Duty World at War",play,32.0,0 -55906572,"Starbound",purchase,1.0,0 -55906572,"Starbound",play,31.0,0 -55906572,"Realm of the Mad God",purchase,1.0,0 -55906572,"Realm of the Mad God",play,30.0,0 -55906572,"Half-Life 2",purchase,1.0,0 -55906572,"Half-Life 2",play,29.0,0 -55906572,"Blacklight Retribution",purchase,1.0,0 -55906572,"Blacklight Retribution",play,29.0,0 -55906572,"Borderlands",purchase,1.0,0 -55906572,"Borderlands",play,27.0,0 -55906572,"Left 4 Dead 2",purchase,1.0,0 -55906572,"Left 4 Dead 2",play,24.0,0 -55906572,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -55906572,"Rising Storm/Red Orchestra 2 Multiplayer",play,22.0,0 -55906572,"EVE Online",purchase,1.0,0 -55906572,"EVE Online",play,21.0,0 -55906572,"Chivalry Medieval Warfare",purchase,1.0,0 -55906572,"Chivalry Medieval Warfare",play,21.0,0 -55906572,"The Crew",purchase,1.0,0 -55906572,"The Crew",play,20.0,0 -55906572,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -55906572,"Fallout 3 - Game of the Year Edition",play,18.2,0 -55906572,"Just Cause 2",purchase,1.0,0 -55906572,"Just Cause 2",play,17.9,0 -55906572,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -55906572,"Burnout Paradise The Ultimate Box",play,15.4,0 -55906572,"Path of Exile",purchase,1.0,0 -55906572,"Path of Exile",play,14.7,0 -55906572,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -55906572,"Tom Clancy's Ghost Recon Phantoms - NA",play,13.8,0 -55906572,"Assassin's Creed II",purchase,1.0,0 -55906572,"Assassin's Creed II",play,13.3,0 -55906572,"Borderlands 2",purchase,1.0,0 -55906572,"Borderlands 2",play,12.8,0 -55906572,"Dungeon Defenders",purchase,1.0,0 -55906572,"Dungeon Defenders",play,12.8,0 -55906572,"Grand Theft Auto IV",purchase,1.0,0 -55906572,"Grand Theft Auto IV",play,12.7,0 -55906572,"Middle-earth Shadow of Mordor",purchase,1.0,0 -55906572,"Middle-earth Shadow of Mordor",play,12.3,0 -55906572,"Sniper Elite",purchase,1.0,0 -55906572,"Sniper Elite",play,12.2,0 -55906572,"Darksiders II",purchase,1.0,0 -55906572,"Darksiders II",play,12.1,0 -55906572,"Mirror's Edge",purchase,1.0,0 -55906572,"Mirror's Edge",play,12.0,0 -55906572,"Space Engineers",purchase,1.0,0 -55906572,"Space Engineers",play,11.9,0 -55906572,"GunZ 2 The Second Duel",purchase,1.0,0 -55906572,"GunZ 2 The Second Duel",play,11.8,0 -55906572,"Portal 2",purchase,1.0,0 -55906572,"Portal 2",play,11.7,0 -55906572,"Saints Row IV",purchase,1.0,0 -55906572,"Saints Row IV",play,11.6,0 -55906572,"Bastion",purchase,1.0,0 -55906572,"Bastion",play,11.4,0 -55906572,"Torchlight II",purchase,1.0,0 -55906572,"Torchlight II",play,11.4,0 -55906572,"The Secret World",purchase,1.0,0 -55906572,"The Secret World",play,11.2,0 -55906572,"Robocraft",purchase,1.0,0 -55906572,"Robocraft",play,10.5,0 -55906572,"HAWKEN",purchase,1.0,0 -55906572,"HAWKEN",play,10.5,0 -55906572,"Tribes Ascend",purchase,1.0,0 -55906572,"Tribes Ascend",play,10.1,0 -55906572,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -55906572,"DARK SOULS II Scholar of the First Sin",play,9.7,0 -55906572,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -55906572,"Call of Duty Black Ops II - Multiplayer",play,8.6,0 -55906572,"APB Reloaded",purchase,1.0,0 -55906572,"APB Reloaded",play,8.5,0 -55906572,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -55906572,"Call of Duty Modern Warfare 2 - Multiplayer",play,8.4,0 -55906572,"Rust",purchase,1.0,0 -55906572,"Rust",play,8.4,0 -55906572,"Magicka",purchase,1.0,0 -55906572,"Magicka",play,8.4,0 -55906572,"Dirty Bomb",purchase,1.0,0 -55906572,"Dirty Bomb",play,8.3,0 -55906572,"Monaco",purchase,1.0,0 -55906572,"Monaco",play,8.1,0 -55906572,"Mark of the Ninja",purchase,1.0,0 -55906572,"Mark of the Ninja",play,8.0,0 -55906572,"Tabletop Simulator",purchase,1.0,0 -55906572,"Tabletop Simulator",play,7.8,0 -55906572,"Saints Row The Third",purchase,1.0,0 -55906572,"Saints Row The Third",play,7.6,0 -55906572,"Zombie Panic Source",purchase,1.0,0 -55906572,"Zombie Panic Source",play,7.6,0 -55906572,"Insurgency",purchase,1.0,0 -55906572,"Insurgency",play,7.5,0 -55906572,"Deus Ex Human Revolution",purchase,1.0,0 -55906572,"Deus Ex Human Revolution",play,7.4,0 -55906572,"Alan Wake",purchase,1.0,0 -55906572,"Alan Wake",play,7.2,0 -55906572,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -55906572,"Sins of a Solar Empire Rebellion",play,7.1,0 -55906572,"Star Wars - Battlefront II",purchase,1.0,0 -55906572,"Star Wars - Battlefront II",play,6.7,0 -55906572,"Hammerwatch",purchase,1.0,0 -55906572,"Hammerwatch",play,6.4,0 -55906572,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -55906572,"Batman Arkham Asylum GOTY Edition",play,6.4,0 -55906572,"Crysis 2 Maximum Edition",purchase,1.0,0 -55906572,"Crysis 2 Maximum Edition",play,6.1,0 -55906572,"GRID 2",purchase,1.0,0 -55906572,"GRID 2",play,6.0,0 -55906572,"Elsword",purchase,1.0,0 -55906572,"Elsword",play,6.0,0 -55906572,"Portal",purchase,1.0,0 -55906572,"Portal",play,5.8,0 -55906572,"Left 4 Dead",purchase,1.0,0 -55906572,"Left 4 Dead",play,5.8,0 -55906572,"Metro 2033",purchase,1.0,0 -55906572,"Metro 2033",play,5.7,0 -55906572,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -55906572,"Tom Clancy's Splinter Cell Conviction",play,5.4,0 -55906572,"Gauntlet ",purchase,1.0,0 -55906572,"Gauntlet ",play,5.2,0 -55906572,"The Elder Scrolls V Skyrim",purchase,1.0,0 -55906572,"The Elder Scrolls V Skyrim",play,5.0,0 -55906572,"Amnesia The Dark Descent",purchase,1.0,0 -55906572,"Amnesia The Dark Descent",play,5.0,0 -55906572,"Alien Swarm",purchase,1.0,0 -55906572,"Alien Swarm",play,4.9,0 -55906572,"Firefall",purchase,1.0,0 -55906572,"Firefall",play,4.8,0 -55906572,"LIMBO",purchase,1.0,0 -55906572,"LIMBO",play,4.6,0 -55906572,"Call of Duty Modern Warfare 3",purchase,1.0,0 -55906572,"Call of Duty Modern Warfare 3",play,4.6,0 -55906572,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -55906572,"Just Cause 2 Multiplayer Mod",play,4.5,0 -55906572,"WAKFU",purchase,1.0,0 -55906572,"WAKFU",play,4.5,0 -55906572,"No More Room in Hell",purchase,1.0,0 -55906572,"No More Room in Hell",play,4.4,0 -55906572,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -55906572,"Call of Duty Black Ops II - Zombies",play,4.4,0 -55906572,"Project Zomboid",purchase,1.0,0 -55906572,"Project Zomboid",play,4.3,0 -55906572,"Planetary Annihilation",purchase,1.0,0 -55906572,"Planetary Annihilation",play,4.2,0 -55906572,"FORCED",purchase,1.0,0 -55906572,"FORCED",play,4.1,0 -55906572,"Quake Live",purchase,1.0,0 -55906572,"Quake Live",play,4.0,0 -55906572,"Dead Island Epidemic",purchase,1.0,0 -55906572,"Dead Island Epidemic",play,3.8,0 -55906572,"Call of Duty Black Ops II",purchase,1.0,0 -55906572,"Call of Duty Black Ops II",play,3.7,0 -55906572,"Mass Effect 2",purchase,1.0,0 -55906572,"Mass Effect 2",play,3.5,0 -55906572,"Bleed",purchase,1.0,0 -55906572,"Bleed",play,3.3,0 -55906572,"Psychonauts",purchase,1.0,0 -55906572,"Psychonauts",play,3.2,0 -55906572,"Guns of Icarus Online",purchase,1.0,0 -55906572,"Guns of Icarus Online",play,3.1,0 -55906572,"Hero Siege",purchase,1.0,0 -55906572,"Hero Siege",play,3.1,0 -55906572,"theHunter",purchase,1.0,0 -55906572,"theHunter",play,3.0,0 -55906572,"Sanctum",purchase,1.0,0 -55906572,"Sanctum",play,3.0,0 -55906572,"Homefront",purchase,1.0,0 -55906572,"Homefront",play,2.8,0 -55906572,"Natural Selection 2",purchase,1.0,0 -55906572,"Natural Selection 2",play,2.7,0 -55906572,"Warhammer 40,000 Space Marine",purchase,1.0,0 -55906572,"Warhammer 40,000 Space Marine",play,2.7,0 -55906572,"DiRT 3",purchase,1.0,0 -55906572,"DiRT 3",play,2.7,0 -55906572,"Sniper Elite V2",purchase,1.0,0 -55906572,"Sniper Elite V2",play,2.6,0 -55906572,"FTL Faster Than Light",purchase,1.0,0 -55906572,"FTL Faster Than Light",play,2.5,0 -55906572,"DiRT 3 Complete Edition",purchase,1.0,0 -55906572,"DiRT 3 Complete Edition",play,2.5,0 -55906572,"Shadowrun Returns",purchase,1.0,0 -55906572,"Shadowrun Returns",play,2.1,0 -55906572,"Divinity Original Sin",purchase,1.0,0 -55906572,"Divinity Original Sin",play,2.0,0 -55906572,"Dota 2",purchase,1.0,0 -55906572,"Dota 2",play,2.0,0 -55906572,"Sanctum 2",purchase,1.0,0 -55906572,"Sanctum 2",play,1.9,0 -55906572,"Prototype",purchase,1.0,0 -55906572,"Prototype",play,1.9,0 -55906572,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -55906572,"Superbrothers Sword & Sworcery EP",play,1.7,0 -55906572,"CastleMiner Z",purchase,1.0,0 -55906572,"CastleMiner Z",play,1.6,0 -55906572,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -55906572,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,1.6,0 -55906572,"The Lord of the Rings War in the North",purchase,1.0,0 -55906572,"The Lord of the Rings War in the North",play,1.5,0 -55906572,"Magicka 2",purchase,1.0,0 -55906572,"Magicka 2",play,1.5,0 -55906572,"Darksiders",purchase,1.0,0 -55906572,"Darksiders",play,1.5,0 -55906572,"Super Meat Boy",purchase,1.0,0 -55906572,"Super Meat Boy",play,1.4,0 -55906572,"System Shock 2",purchase,1.0,0 -55906572,"System Shock 2",play,1.4,0 -55906572,"Empires",purchase,1.0,0 -55906572,"Empires",play,1.3,0 -55906572,"Killer is Dead",purchase,1.0,0 -55906572,"Killer is Dead",play,1.3,0 -55906572,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -55906572,"The Witcher 2 Assassins of Kings Enhanced Edition",play,1.3,0 -55906572,"Arma 2",purchase,1.0,0 -55906572,"Arma 2",play,1.3,0 -55906572,"Minimum",purchase,1.0,0 -55906572,"Minimum",play,1.2,0 -55906572,"Warface",purchase,1.0,0 -55906572,"Warface",play,1.2,0 -55906572,"King Arthur's Gold",purchase,1.0,0 -55906572,"King Arthur's Gold",play,1.2,0 -55906572,"Blade Symphony",purchase,1.0,0 -55906572,"Blade Symphony",play,1.1,0 -55906572,"Red Faction Armageddon",purchase,1.0,0 -55906572,"Red Faction Armageddon",play,1.1,0 -55906572,"Star Conflict",purchase,1.0,0 -55906572,"Star Conflict",play,1.1,0 -55906572,"Survarium",purchase,1.0,0 -55906572,"Survarium",play,1.0,0 -55906572,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -55906572,"Deus Ex Human Revolution - The Missing Link",play,1.0,0 -55906572,"Thief Deadly Shadows",purchase,1.0,0 -55906572,"Thief Deadly Shadows",play,1.0,0 -55906572,"Orcs Must Die! 2",purchase,1.0,0 -55906572,"Orcs Must Die! 2",play,1.0,0 -55906572,"Risk of Rain",purchase,1.0,0 -55906572,"Risk of Rain",play,0.9,0 -55906572,"Mass Effect",purchase,1.0,0 -55906572,"Mass Effect",play,0.8,0 -55906572,"Half-Life 2 Lost Coast",purchase,1.0,0 -55906572,"Half-Life 2 Lost Coast",play,0.8,0 -55906572,"Fistful of Frags",purchase,1.0,0 -55906572,"Fistful of Frags",play,0.8,0 -55906572,"Nosgoth",purchase,1.0,0 -55906572,"Nosgoth",play,0.7,0 -55906572,"Echo of Soul",purchase,1.0,0 -55906572,"Echo of Soul",play,0.7,0 -55906572,"ACE - Arena Cyber Evolution",purchase,1.0,0 -55906572,"ACE - Arena Cyber Evolution",play,0.6,0 -55906572,"Synergy",purchase,1.0,0 -55906572,"Synergy",play,0.6,0 -55906572,"The Binding of Isaac",purchase,1.0,0 -55906572,"The Binding of Isaac",play,0.5,0 -55906572,"Only If",purchase,1.0,0 -55906572,"Only If",play,0.5,0 -55906572,"Quintet",purchase,1.0,0 -55906572,"Quintet",play,0.5,0 -55906572,"The Last Remnant",purchase,1.0,0 -55906572,"The Last Remnant",play,0.5,0 -55906572,"Zombies Monsters Robots",purchase,1.0,0 -55906572,"Zombies Monsters Robots",play,0.5,0 -55906572,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -55906572,"Medal of Honor(TM) Multiplayer",play,0.5,0 -55906572,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -55906572,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,0.5,0 -55906572,"X3 Reunion",purchase,1.0,0 -55906572,"X3 Reunion",play,0.4,0 -55906572,"Nether",purchase,1.0,0 -55906572,"Nether",play,0.4,0 -55906572,"Distance",purchase,1.0,0 -55906572,"Distance",play,0.4,0 -55906572,"Mortal Online",purchase,1.0,0 -55906572,"Mortal Online",play,0.4,0 -55906572,"Rise of Incarnates",purchase,1.0,0 -55906572,"Rise of Incarnates",play,0.4,0 -55906572,"Supreme Commander",purchase,1.0,0 -55906572,"Supreme Commander",play,0.4,0 -55906572,"Vindictus",purchase,1.0,0 -55906572,"Vindictus",play,0.4,0 -55906572,"Unturned",purchase,1.0,0 -55906572,"Unturned",play,0.3,0 -55906572,"Archeblade",purchase,1.0,0 -55906572,"Archeblade",play,0.3,0 -55906572,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -55906572,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",play,0.3,0 -55906572,"D.I.P.R.I.P. Warm Up",purchase,1.0,0 -55906572,"D.I.P.R.I.P. Warm Up",play,0.2,0 -55906572,"Divine Souls",purchase,1.0,0 -55906572,"Divine Souls",play,0.2,0 -55906572,"Half-Life 2 Deathmatch",purchase,1.0,0 -55906572,"Lost Saga North America",purchase,1.0,0 -55906572,"Supreme Commander Forged Alliance",purchase,1.0,0 -55906572,"Cubic Castles",purchase,1.0,0 -55906572,"RPG Maker VX Ace",purchase,1.0,0 -55906572,"NEOTOKYO",purchase,1.0,0 -55906572,"eXceed - Gun Bullet Children",purchase,1.0,0 -55906572,"Call of Duty Modern Warfare 2",purchase,1.0,0 -55906572,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -55906572,"Ascend Hand of Kul",purchase,1.0,0 -55906572,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -55906572,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -55906572,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -55906572,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -55906572,"Company of Heroes",purchase,1.0,0 -55906572,"Company of Heroes (New Steam Version)",purchase,1.0,0 -55906572,"Company of Heroes Opposing Fronts",purchase,1.0,0 -55906572,"DARK SOULS II - Season Pass",purchase,1.0,0 -55906572,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -55906572,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -55906572,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -55906572,"F.E.A.R. 3",purchase,1.0,0 -55906572,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -55906572,"Fallout New Vegas Dead Money",purchase,1.0,0 -55906572,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -55906572,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -55906572,"Heroes & Generals",purchase,1.0,0 -55906572,"Hero Siege - The Karp of Doom (Digital Collector's Edition)",purchase,1.0,0 -55906572,"Lone Survivor The Director's Cut",purchase,1.0,0 -55906572,"Magicka Vietnam",purchase,1.0,0 -55906572,"Magicka Wizard Wars",purchase,1.0,0 -55906572,"Medal of Honor(TM) Single Player",purchase,1.0,0 -55906572,"Medal of Honor Pre-Order",purchase,1.0,0 -55906572,"MX vs. ATV Reflex",purchase,1.0,0 -55906572,"Nexuiz",purchase,1.0,0 -55906572,"Nexuiz Beta",purchase,1.0,0 -55906572,"Nexuiz STUPID Mode",purchase,1.0,0 -55906572,"Patch testing for Chivalry",purchase,1.0,0 -55906572,"Psychonauts Demo",purchase,1.0,0 -55906572,"Red Faction",purchase,1.0,0 -55906572,"Red Faction II",purchase,1.0,0 -55906572,"Saints Row 2",purchase,1.0,0 -55906572,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -55906572,"SpeedRunners",purchase,1.0,0 -55906572,"Starbound - Unstable",purchase,1.0,0 -55906572,"Sunrider Mask of Arcadius",purchase,1.0,0 -55906572,"Tactical Intervention",purchase,1.0,0 -55906572,"Titan Quest",purchase,1.0,0 -55906572,"Titan Quest Immortal Throne",purchase,1.0,0 -55906572,"Tom Clancy's Splinter Cell",purchase,1.0,0 -55906572,"Tom Clancy's Splinter Cell Chaos Theory",purchase,1.0,0 -55906572,"Tom Clancy's Splinter Cell Double Agent",purchase,1.0,0 -55906572,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -55906572,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -55906572,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -55906572,"YOU DON'T KNOW JACK HEADRUSH",purchase,1.0,0 -55906572,"YOU DON'T KNOW JACK MOVIES",purchase,1.0,0 -55906572,"YOU DON'T KNOW JACK SPORTS",purchase,1.0,0 -55906572,"YOU DON'T KNOW JACK TELEVISION",purchase,1.0,0 -55906572,"YOU DON'T KNOW JACK Vol. 1 XL",purchase,1.0,0 -55906572,"YOU DON'T KNOW JACK Vol. 2",purchase,1.0,0 -55906572,"YOU DON'T KNOW JACK Vol. 3",purchase,1.0,0 -55906572,"YOU DON'T KNOW JACK Vol. 4 The Ride",purchase,1.0,0 -45000709,"Counter-Strike Global Offensive",purchase,1.0,0 -45000709,"Counter-Strike Global Offensive",play,7.2,0 -235658693,"Counter-Strike Global Offensive",purchase,1.0,0 -235658693,"Counter-Strike Global Offensive",play,21.0,0 -235658693,"Team Fortress 2",purchase,1.0,0 -235658693,"Team Fortress 2",play,2.1,0 -235658693,"Rustbucket Rumble",purchase,1.0,0 -235658693,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -235658693,"AdVenture Capitalist",purchase,1.0,0 -235658693,"Blacklight Retribution",purchase,1.0,0 -235658693,"Brick-Force",purchase,1.0,0 -235658693,"Fork Parker's Holiday Profit Hike",purchase,1.0,0 -235658693,"Magic Barrage - Bitferno",purchase,1.0,0 -235658693,"Robocraft",purchase,1.0,0 -235658693,"Trove",purchase,1.0,0 -235658693,"Unturned",purchase,1.0,0 -235658693,"Warface",purchase,1.0,0 -235658693,"Warframe",purchase,1.0,0 -235658693,"War Thunder",purchase,1.0,0 -30283133,"Half-Life 2 Deathmatch",purchase,1.0,0 -30283133,"Half-Life 2 Lost Coast",purchase,1.0,0 -71411882,"Left 4 Dead 2",purchase,1.0,0 -71411882,"Left 4 Dead 2",play,41.0,0 -71411882,"Sleeping Dogs",purchase,1.0,0 -71411882,"Sleeping Dogs",play,39.0,0 -71411882,"Saints Row The Third",purchase,1.0,0 -71411882,"Saints Row The Third",play,37.0,0 -71411882,"Far Cry 3",purchase,1.0,0 -71411882,"Far Cry 3",play,37.0,0 -71411882,"Left 4 Dead",purchase,1.0,0 -71411882,"Left 4 Dead",play,23.0,0 -71411882,"Max Payne 3",purchase,1.0,0 -71411882,"Max Payne 3",play,13.7,0 -71411882,"Counter-Strike Global Offensive",purchase,1.0,0 -71411882,"Counter-Strike Global Offensive",play,11.0,0 -71411882,"Grand Theft Auto San Andreas",purchase,1.0,0 -71411882,"Grand Theft Auto San Andreas",play,10.7,0 -71411882,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -71411882,"Tom Clancy's Ghost Recon Phantoms - EU",play,10.1,0 -71411882,"Foreign Legion Buckets of Blood",purchase,1.0,0 -71411882,"Foreign Legion Buckets of Blood",play,9.5,0 -71411882,"Mini Ninjas",purchase,1.0,0 -71411882,"Mini Ninjas",play,8.7,0 -71411882,"Call of Duty Modern Warfare 3",purchase,1.0,0 -71411882,"Call of Duty Modern Warfare 3",play,5.1,0 -71411882,"Need for Speed Hot Pursuit",purchase,1.0,0 -71411882,"Need for Speed Hot Pursuit",play,4.3,0 -71411882,"Need for Speed Undercover",purchase,1.0,0 -71411882,"Need for Speed Undercover",play,2.2,0 -71411882,"Grand Theft Auto IV",purchase,1.0,0 -71411882,"Grand Theft Auto IV",play,1.9,0 -71411882,"Just Cause 2",purchase,1.0,0 -71411882,"Just Cause 2",play,1.8,0 -71411882,"Metro 2033",purchase,1.0,0 -71411882,"Metro 2033",play,1.5,0 -71411882,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -71411882,"Call of Duty Modern Warfare 3 - Multiplayer",play,1.4,0 -71411882,"Grand Theft Auto III",purchase,1.0,0 -71411882,"Grand Theft Auto III",play,1.1,0 -71411882,"Grand Theft Auto Vice City",purchase,1.0,0 -71411882,"Grand Theft Auto Vice City",play,0.7,0 -71411882,"RaceRoom Racing Experience ",purchase,1.0,0 -71411882,"RaceRoom Racing Experience ",play,0.3,0 -71411882,"Grand Theft Auto III",purchase,1.0,0 -71411882,"Grand Theft Auto III",play,0.2,0 -71411882,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -71411882,"Grand Theft Auto San Andreas",purchase,1.0,0 -71411882,"Grand Theft Auto Vice City",purchase,1.0,0 -71411882,"Just Cause",purchase,1.0,0 -71411882,"Metro Last Light",purchase,1.0,0 -80639000,"Portal",purchase,1.0,0 -80639000,"Portal",play,1.3,0 -167587171,"Dota 2",purchase,1.0,0 -167587171,"Dota 2",play,67.0,0 -53691822,"Counter-Strike",purchase,1.0,0 -53691822,"Counter-Strike",play,11.6,0 -53691822,"Counter-Strike Condition Zero",purchase,1.0,0 -53691822,"Counter-Strike Condition Zero",play,0.5,0 -53691822,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -53691822,"Day of Defeat",purchase,1.0,0 -53691822,"Deathmatch Classic",purchase,1.0,0 -53691822,"Ricochet",purchase,1.0,0 -181010210,"Might & Magic Heroes VI",purchase,1.0,0 -181010210,"Might & Magic Heroes VI",play,22.0,0 -181010210,"Counter-Strike Global Offensive",purchase,1.0,0 -181010210,"Counter-Strike Global Offensive",play,11.4,0 -181010210,"Neverwinter",purchase,1.0,0 -181010210,"Neverwinter",play,5.0,0 -181010210,"Grand Theft Auto V",purchase,1.0,0 -181010210,"Grand Theft Auto V",play,4.2,0 -181010210,"Magic 2014 ",purchase,1.0,0 -181010210,"Magic 2014 ",play,1.0,0 -181010210,"Counter-Strike Source",purchase,1.0,0 -181010210,"Counter-Strike Source",play,0.3,0 -181010210,"Dota 2",purchase,1.0,0 -181010210,"Dota 2",play,0.3,0 -181010210,"Quake Live",purchase,1.0,0 -181010210,"Quake Live",play,0.2,0 -181010210,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -181010210,"Path of Exile",purchase,1.0,0 -181010210,"Counter-Strike",purchase,1.0,0 -181010210,"Counter-Strike Condition Zero",purchase,1.0,0 -181010210,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -181010210,"Day of Defeat",purchase,1.0,0 -181010210,"Day of Defeat Source",purchase,1.0,0 -181010210,"Deathmatch Classic",purchase,1.0,0 -181010210,"Half-Life",purchase,1.0,0 -181010210,"Half-Life 2",purchase,1.0,0 -181010210,"Half-Life 2 Deathmatch",purchase,1.0,0 -181010210,"Half-Life 2 Episode One",purchase,1.0,0 -181010210,"Half-Life 2 Episode Two",purchase,1.0,0 -181010210,"Half-Life 2 Lost Coast",purchase,1.0,0 -181010210,"Half-Life Blue Shift",purchase,1.0,0 -181010210,"Half-Life Opposing Force",purchase,1.0,0 -181010210,"Half-Life Source",purchase,1.0,0 -181010210,"Half-Life Deathmatch Source",purchase,1.0,0 -181010210,"Left 4 Dead",purchase,1.0,0 -181010210,"Left 4 Dead 2",purchase,1.0,0 -181010210,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",purchase,1.0,0 -181010210,"Portal",purchase,1.0,0 -181010210,"Portal 2",purchase,1.0,0 -181010210,"Ricochet",purchase,1.0,0 -181010210,"Team Fortress Classic",purchase,1.0,0 -181010210,"TERA",purchase,1.0,0 -181010210,"The Mighty Quest For Epic Loot",purchase,1.0,0 -303012193,"Block N Load",purchase,1.0,0 -120696775,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -120696775,"Sins of a Solar Empire Rebellion",play,46.0,0 -120696775,"Star Trek Online",purchase,1.0,0 -120696775,"Star Trek Online",play,30.0,0 -120696775,"Star Wars Empire at War Gold",purchase,1.0,0 -120696775,"Star Wars Empire at War Gold",play,18.1,0 -120696775,"Age of Empires II HD Edition",purchase,1.0,0 -120696775,"Age of Empires II HD Edition",play,15.7,0 -120696775,"Age of Empires III Complete Collection",purchase,1.0,0 -120696775,"Age of Empires III Complete Collection",play,15.3,0 -120696775,"Planetbase",purchase,1.0,0 -120696775,"Planetbase",play,3.2,0 -120696775,"Star Wars Knights of the Old Republic",purchase,1.0,0 -120696775,"Star Wars Knights of the Old Republic",play,1.2,0 -120696775,"X2 The Threat",purchase,1.0,0 -120696775,"X2 The Threat",play,0.7,0 -120696775,"Age of Empires II HD The Forgotten",purchase,1.0,0 -232756470,"ArcheAge",purchase,1.0,0 -232756470,"Blacklight Retribution",purchase,1.0,0 -232756470,"Double Action Boogaloo",purchase,1.0,0 -232756470,"Fistful of Frags",purchase,1.0,0 -232756470,"Heroes & Generals",purchase,1.0,0 -232756470,"PlanetSide 2",purchase,1.0,0 -232756470,"Tribes Ascend",purchase,1.0,0 -232756470,"Unturned",purchase,1.0,0 -84925352,"Football Manager 2014",purchase,1.0,0 -84925352,"Football Manager 2014",play,81.0,0 -84925352,"Football Manager 2015",purchase,1.0,0 -84925352,"Football Manager 2015",play,73.0,0 -84925352,"Dota 2",purchase,1.0,0 -84925352,"Dota 2",play,62.0,0 -84925352,"Football Manager 2016",purchase,1.0,0 -84925352,"Football Manager 2016",play,39.0,0 -84925352,"The Elder Scrolls V Skyrim",purchase,1.0,0 -84925352,"The Elder Scrolls V Skyrim",play,16.7,0 -84925352,"Garry's Mod",purchase,1.0,0 -84925352,"Garry's Mod",play,4.6,0 -84925352,"The Forest",purchase,1.0,0 -84925352,"The Forest",play,1.9,0 -84925352,"Magicka",purchase,1.0,0 -84925352,"Magicka",play,1.2,0 -84925352,"Alien Isolation",purchase,1.0,0 -84925352,"Alien Isolation",play,1.1,0 -84925352,"Team Fortress 2",purchase,1.0,0 -84925352,"Team Fortress 2",play,0.9,0 -84925352,"Five Nights at Freddy's",purchase,1.0,0 -84925352,"Five Nights at Freddy's",play,0.5,0 -84925352,"DayZ",purchase,1.0,0 -84925352,"DayZ",play,0.3,0 -84925352,"Unturned",purchase,1.0,0 -84925352,"Unturned",play,0.2,0 -84925352,"BioShock",purchase,1.0,0 -84925352,"BioShock 2",purchase,1.0,0 -84925352,"BioShock Infinite",purchase,1.0,0 -84925352,"Magicka Final Frontier",purchase,1.0,0 -84925352,"Magicka Frozen Lake",purchase,1.0,0 -84925352,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -84925352,"Magicka Nippon",purchase,1.0,0 -84925352,"Magicka Party Robes",purchase,1.0,0 -84925352,"Magicka The Watchtower",purchase,1.0,0 -84925352,"Magicka Vietnam",purchase,1.0,0 -84925352,"Magicka Wizard's Survival Kit",purchase,1.0,0 -84925352,"Robocraft",purchase,1.0,0 -84925352,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -84925352,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -84925352,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -84925352,"XCOM Enemy Unknown",purchase,1.0,0 -84925352,"XCOM Enemy Within",purchase,1.0,0 -174624794,"Dota 2",purchase,1.0,0 -174624794,"Dota 2",play,4.2,0 -256202715,"Dota 2",purchase,1.0,0 -256202715,"Dota 2",play,0.6,0 -258482885,"Trove",purchase,1.0,0 -258482885,"Trove",play,18.9,0 -258482885,"Team Fortress 2",purchase,1.0,0 -258482885,"Team Fortress 2",play,16.8,0 -258482885,"Robocraft",purchase,1.0,0 -258482885,"Robocraft",play,4.5,0 -258482885,"Dota 2",purchase,1.0,0 -258482885,"Dota 2",play,2.9,0 -258482885,"Loadout",purchase,1.0,0 -258482885,"Loadout",play,2.6,0 -258482885,"Teeworlds",purchase,1.0,0 -258482885,"Teeworlds",play,2.6,0 -258482885,"Dirty Bomb",purchase,1.0,0 -258482885,"Dirty Bomb",play,2.5,0 -258482885,"Gotham City Impostors Free To Play",purchase,1.0,0 -258482885,"Gotham City Impostors Free To Play",play,2.3,0 -258482885,"BLOCKADE 3D",purchase,1.0,0 -258482885,"BLOCKADE 3D",play,1.6,0 -258482885,"Unturned",purchase,1.0,0 -258482885,"Unturned",play,1.4,0 -258482885,"Guns and Robots",purchase,1.0,0 -258482885,"Guns and Robots",play,1.0,0 -258482885,"Brick-Force",purchase,1.0,0 -258482885,"Brick-Force",play,1.0,0 -258482885,"Champions Online",purchase,1.0,0 -258482885,"Champions Online",play,0.7,0 -258482885,"Genesis Online",purchase,1.0,0 -258482885,"Genesis Online",play,0.4,0 -258482885,"Relic Hunters Zero",purchase,1.0,0 -258482885,"Relic Hunters Zero",play,0.3,0 -258482885,"Battle Battalions",purchase,1.0,0 -258482885,"Battle Battalions",play,0.3,0 -258482885,"Star Conflict",purchase,1.0,0 -258482885,"Star Conflict",play,0.3,0 -258482885,"Warframe",purchase,1.0,0 -258482885,"Warframe",play,0.1,0 -258482885,"Rise of Incarnates",purchase,1.0,0 -258482885,"Rise of Incarnates",play,0.1,0 -258482885,"Run and Fire",purchase,1.0,0 -258482885,"Soccer Manager 2016",purchase,1.0,0 -258482885,"HIT",purchase,1.0,0 -258482885,"Krosmaster Arena",purchase,1.0,0 -258482885,"SMITE",purchase,1.0,0 -152476201,"Dota 2",purchase,1.0,0 -152476201,"Dota 2",play,372.0,0 -152476201,"Marvel Heroes 2015",purchase,1.0,0 -296613851,"Magic Duels",purchase,1.0,0 -251410133,"Dota 2",purchase,1.0,0 -251410133,"Dota 2",play,241.0,0 -84883272,"Portal 2",purchase,1.0,0 -84883272,"Portal 2",play,21.0,0 -84883272,"The Binding of Isaac",purchase,1.0,0 -84883272,"The Binding of Isaac",play,15.5,0 -84883272,"The Walking Dead",purchase,1.0,0 -84883272,"The Walking Dead",play,13.8,0 -84883272,"Cogs",purchase,1.0,0 -84883272,"Cogs",play,9.8,0 -84883272,"Mass Effect",purchase,1.0,0 -84883272,"Mass Effect",play,9.1,0 -84883272,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -84883272,"RollerCoaster Tycoon 3 Platinum!",play,8.7,0 -84883272,"Portal",purchase,1.0,0 -84883272,"Portal",play,8.4,0 -84883272,"Age of Empires II HD Edition",purchase,1.0,0 -84883272,"Age of Empires II HD Edition",play,7.9,0 -84883272,"Might & Magic Clash of Heroes",purchase,1.0,0 -84883272,"Might & Magic Clash of Heroes",play,6.5,0 -84883272,"VVVVVV",purchase,1.0,0 -84883272,"VVVVVV",play,6.0,0 -84883272,"Braid",purchase,1.0,0 -84883272,"Braid",play,5.7,0 -84883272,"Botanicula",purchase,1.0,0 -84883272,"Botanicula",play,4.7,0 -84883272,"Torchlight",purchase,1.0,0 -84883272,"Torchlight",play,4.2,0 -84883272,"Worms Reloaded",purchase,1.0,0 -84883272,"Worms Reloaded",play,2.4,0 -84883272,"The Banner Saga",purchase,1.0,0 -84883272,"The Banner Saga",play,1.6,0 -84883272,"Home",purchase,1.0,0 -84883272,"Home",play,1.3,0 -84883272,"Gunpoint",purchase,1.0,0 -84883272,"Gunpoint",play,1.2,0 -84883272,"Papers, Please",purchase,1.0,0 -84883272,"Papers, Please",play,0.9,0 -84883272,"Hatoful Boyfriend",purchase,1.0,0 -84883272,"Hatoful Boyfriend",play,0.6,0 -84883272,"Hotline Miami",purchase,1.0,0 -84883272,"Hotline Miami",play,0.4,0 -84883272,"Sid Meier's Civilization V",purchase,1.0,0 -84883272,"Sid Meier's Civilization V",play,0.3,0 -84883272,"Lone Survivor The Director's Cut",purchase,1.0,0 -84883272,"Lone Survivor The Director's Cut",play,0.3,0 -84883272,"Amnesia The Dark Descent",purchase,1.0,0 -84883272,"Castle Crashers",purchase,1.0,0 -84883272,"Fallout New Vegas",purchase,1.0,0 -84883272,"Super Meat Boy",purchase,1.0,0 -84883272,"The 39 Steps",purchase,1.0,0 -84883272,"The Banner Saga - Mod Content",purchase,1.0,0 -276028696,"Destination Sol",purchase,1.0,0 -276028696,"Destination Sol",play,6.0,0 -276028696,"Altitude",purchase,1.0,0 -276028696,"Altitude",play,0.9,0 -276028696,"Star Conflict",purchase,1.0,0 -19510434,"Counter-Strike",purchase,1.0,0 -19510434,"Counter-Strike",play,16.0,0 -19510434,"Day of Defeat Source",purchase,1.0,0 -19510434,"Day of Defeat Source",play,0.6,0 -19510434,"Counter-Strike Condition Zero",purchase,1.0,0 -19510434,"Counter-Strike Condition Zero",play,0.1,0 -19510434,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -19510434,"Counter-Strike Source",purchase,1.0,0 -296625428,"Dota 2",purchase,1.0,0 -296625428,"Dota 2",play,0.6,0 -191316238,"APB Reloaded",purchase,1.0,0 -255927683,"Dota 2",purchase,1.0,0 -255927683,"Dota 2",play,0.4,0 -129102620,"Dota 2",purchase,1.0,0 -129102620,"Dota 2",play,550.0,0 -129102620,"Garry's Mod",purchase,1.0,0 -129102620,"Garry's Mod",play,37.0,0 -129102620,"Unturned",purchase,1.0,0 -129102620,"Unturned",play,33.0,0 -129102620,"Team Fortress 2",purchase,1.0,0 -129102620,"Team Fortress 2",play,32.0,0 -129102620,"Counter-Strike Global Offensive",purchase,1.0,0 -129102620,"Counter-Strike Global Offensive",play,21.0,0 -129102620,"Rust",purchase,1.0,0 -129102620,"Rust",play,11.5,0 -129102620,"War Thunder",purchase,1.0,0 -129102620,"War Thunder",play,8.2,0 -159211669,"Age of Empires II HD Edition",purchase,1.0,0 -159211669,"Age of Empires II HD Edition",play,4.5,0 -159211669,"Age of Wonders III",purchase,1.0,0 -159211669,"Age of Wonders III",play,4.2,0 -198328209,"Team Fortress 2",purchase,1.0,0 -198328209,"Team Fortress 2",play,1.0,0 -198328209,"Loadout",purchase,1.0,0 -163158659,"Estranged Act I",purchase,1.0,0 -163158659,"Estranged Act I",play,0.4,0 -172006888,"Team Fortress 2",purchase,1.0,0 -172006888,"Team Fortress 2",play,23.0,0 -172006888,"Goat Simulator",purchase,1.0,0 -172006888,"Goat Simulator",play,11.3,0 -172006888,"Garry's Mod",purchase,1.0,0 -172006888,"Garry's Mod",play,10.9,0 -172006888,"Dota 2",purchase,1.0,0 -172006888,"Dota 2",play,1.1,0 -172006888,"Heroes & Generals",purchase,1.0,0 -172006888,"Heroes & Generals",play,0.5,0 -172006888,"PlanetSide 2",purchase,1.0,0 -106966738,"Team Fortress 2",purchase,1.0,0 -106966738,"Team Fortress 2",play,439.0,0 -106966738,"Dirty Bomb",purchase,1.0,0 -106966738,"Hotline Miami 2 Wrong Number Digital Comic",purchase,1.0,0 -106966738,"Killing Floor - Toy Master",purchase,1.0,0 -106966738,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -106966738,"the static speaks my name",purchase,1.0,0 -184196436,"Magic 2014 ",purchase,1.0,0 -184196436,"Magic 2014 ",play,4.1,0 -201109162,"Dota 2",purchase,1.0,0 -201109162,"Dota 2",play,2.5,0 -201109162,"Warframe",purchase,1.0,0 -201109162,"Zombies Monsters Robots",purchase,1.0,0 -183450002,"Dota 2",purchase,1.0,0 -183450002,"Dota 2",play,903.0,0 -183450002,"All Is Dust",purchase,1.0,0 -183450002,"APB Reloaded",purchase,1.0,0 -183450002,"Dead Island Epidemic",purchase,1.0,0 -183450002,"Defiance",purchase,1.0,0 -183450002,"Happy Wars",purchase,1.0,0 -183450002,"La Tale",purchase,1.0,0 -183450002,"Marvel Heroes 2015",purchase,1.0,0 -183450002,"Narcissu 1st & 2nd",purchase,1.0,0 -183450002,"Neverwinter",purchase,1.0,0 -183450002,"Quake Live",purchase,1.0,0 -183450002,"Rise of Incarnates",purchase,1.0,0 -183450002,"Stronghold Kingdoms",purchase,1.0,0 -183450002,"Super Monday Night Combat",purchase,1.0,0 -183450002,"theHunter",purchase,1.0,0 -183450002,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -183450002,"Trove",purchase,1.0,0 -183450002,"Warframe",purchase,1.0,0 -216598286,"Dota 2",purchase,1.0,0 -216598286,"Dota 2",play,375.0,0 -216598286,"Ascend Hand of Kul",purchase,1.0,0 -216598286,"C9",purchase,1.0,0 -216598286,"FreeStyle2 Street Basketball",purchase,1.0,0 -216598286,"GunZ 2 The Second Duel",purchase,1.0,0 -216598286,"Rise of Incarnates",purchase,1.0,0 -216598286,"Robocraft",purchase,1.0,0 -216598286,"TERA",purchase,1.0,0 -216598286,"Unturned",purchase,1.0,0 -216598286,"Warframe",purchase,1.0,0 -202057920,"NBA 2K15",purchase,1.0,0 -202057920,"NBA 2K15",play,395.0,0 -202057920,"Grand Theft Auto V",purchase,1.0,0 -202057920,"Grand Theft Auto V",play,52.0,0 -202057920,"NBA 2K16",purchase,1.0,0 -202057920,"NBA 2K16",play,9.2,0 -202057920,"Counter-Strike Source",purchase,1.0,0 -202057920,"Counter-Strike Source",play,7.4,0 -303750703,"Dota 2",purchase,1.0,0 -303750703,"Dota 2",play,0.7,0 -192664331,"Dota 2",purchase,1.0,0 -192664331,"Dota 2",play,0.3,0 -192664331,"Unturned",purchase,1.0,0 -192664331,"Unturned",play,0.3,0 -31757271,"Half-Life 2 Deathmatch",purchase,1.0,0 -31757271,"Half-Life 2 Episode One",purchase,1.0,0 -31757271,"Half-Life 2 Lost Coast",purchase,1.0,0 -31757271,"Half-Life Deathmatch Source",purchase,1.0,0 -242065029,"Dota 2",purchase,1.0,0 -242065029,"Dota 2",play,327.0,0 -41310195,"Counter-Strike Source",purchase,1.0,0 -41310195,"Counter-Strike Source",play,31.0,0 -41310195,"Day of Defeat Source",purchase,1.0,0 -41310195,"Half-Life 2 Deathmatch",purchase,1.0,0 -41310195,"Half-Life 2 Lost Coast",purchase,1.0,0 -232517422,"AdVenture Capitalist",purchase,1.0,0 -232517422,"Nosgoth",purchase,1.0,0 -232517422,"Survarium",purchase,1.0,0 -232517422,"Transformice",purchase,1.0,0 -11813637,"Dota 2",purchase,1.0,0 -11813637,"Dota 2",play,2341.0,0 -11813637,"The Witcher 3 Wild Hunt",purchase,1.0,0 -11813637,"The Witcher 3 Wild Hunt",play,108.0,0 -11813637,"The Elder Scrolls V Skyrim",purchase,1.0,0 -11813637,"The Elder Scrolls V Skyrim",play,67.0,0 -11813637,"Sid Meier's Civilization V",purchase,1.0,0 -11813637,"Sid Meier's Civilization V",play,29.0,0 -11813637,"Mass Effect 2",purchase,1.0,0 -11813637,"Mass Effect 2",play,26.0,0 -11813637,"Far Cry 3",purchase,1.0,0 -11813637,"Far Cry 3",play,25.0,0 -11813637,"Mass Effect",purchase,1.0,0 -11813637,"Mass Effect",play,24.0,0 -11813637,"Grand Theft Auto IV",purchase,1.0,0 -11813637,"Grand Theft Auto IV",play,22.0,0 -11813637,"BioShock Infinite",purchase,1.0,0 -11813637,"BioShock Infinite",play,21.0,0 -11813637,"Fallout 3",purchase,1.0,0 -11813637,"Fallout 3",play,20.0,0 -11813637,"Team Fortress 2",purchase,1.0,0 -11813637,"Team Fortress 2",play,15.3,0 -11813637,"Torchlight",purchase,1.0,0 -11813637,"Torchlight",play,11.9,0 -11813637,"South Park The Stick of Truth",purchase,1.0,0 -11813637,"South Park The Stick of Truth",play,11.5,0 -11813637,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -11813637,"The Witcher 2 Assassins of Kings Enhanced Edition",play,9.5,0 -11813637,"Borderlands 2",purchase,1.0,0 -11813637,"Borderlands 2",play,9.2,0 -11813637,"Portal 2",purchase,1.0,0 -11813637,"Portal 2",play,8.5,0 -11813637,"Counter-Strike Source",purchase,1.0,0 -11813637,"Counter-Strike Source",play,6.2,0 -11813637,"Left 4 Dead",purchase,1.0,0 -11813637,"Left 4 Dead",play,5.7,0 -11813637,"Hitman Absolution",purchase,1.0,0 -11813637,"Hitman Absolution",play,4.0,0 -11813637,"Worms Reloaded",purchase,1.0,0 -11813637,"Worms Reloaded",play,3.4,0 -11813637,"Braid",purchase,1.0,0 -11813637,"Braid",play,3.3,0 -11813637,"Sid Meier's Civilization IV",purchase,1.0,0 -11813637,"Sid Meier's Civilization IV",play,3.2,0 -11813637,"Portal",purchase,1.0,0 -11813637,"Portal",play,2.8,0 -11813637,"Left 4 Dead 2",purchase,1.0,0 -11813637,"Left 4 Dead 2",play,2.7,0 -11813637,"Crysis 2",purchase,1.0,0 -11813637,"Crysis 2",play,2.7,0 -11813637,"Half-Life 2",purchase,1.0,0 -11813637,"Half-Life 2",play,2.5,0 -11813637,"Poker Night at the Inventory",purchase,1.0,0 -11813637,"Poker Night at the Inventory",play,2.3,0 -11813637,"Dishonored",purchase,1.0,0 -11813637,"Dishonored",play,2.2,0 -11813637,"BioShock",purchase,1.0,0 -11813637,"BioShock",play,2.0,0 -11813637,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -11813637,"Sid Meier's Civilization IV Beyond the Sword",play,1.9,0 -11813637,"Free to Play",purchase,1.0,0 -11813637,"Free to Play",play,1.5,0 -11813637,"Max Payne 3",purchase,1.0,0 -11813637,"Max Payne 3",play,1.0,0 -11813637,"Counter-Strike Global Offensive",purchase,1.0,0 -11813637,"Counter-Strike Global Offensive",play,1.0,0 -11813637,"Tomb Raider",purchase,1.0,0 -11813637,"Tomb Raider",play,0.6,0 -11813637,"Prey",purchase,1.0,0 -11813637,"Prey",play,0.5,0 -11813637,"Day of Defeat Source",purchase,1.0,0 -11813637,"Day of Defeat Source",play,0.5,0 -11813637,"Sid Meier's Pirates!",purchase,1.0,0 -11813637,"Sid Meier's Pirates!",play,0.2,0 -11813637,"CivCity Rome",purchase,1.0,0 -11813637,"Crysis 2",purchase,1.0,0 -11813637,"Freedom Force",purchase,1.0,0 -11813637,"Freedom Force vs. the 3rd Reich",purchase,1.0,0 -11813637,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -11813637,"Half-Life 2 Deathmatch",purchase,1.0,0 -11813637,"Half-Life 2 Lost Coast",purchase,1.0,0 -11813637,"Hitman Sniper Challenge",purchase,1.0,0 -11813637,"Railroad Tycoon 2 Platinum",purchase,1.0,0 -11813637,"Railroad Tycoon 3",purchase,1.0,0 -11813637,"Shattered Union",purchase,1.0,0 -11813637,"Sid Meier's Civilization III Complete",purchase,1.0,0 -11813637,"Sid Meier's Civilization IV",purchase,1.0,0 -11813637,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -11813637,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -11813637,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -11813637,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -11813637,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -11813637,"Sid Meier's Railroads!",purchase,1.0,0 -11813637,"X-COM Apocalypse",purchase,1.0,0 -11813637,"X-COM Enforcer",purchase,1.0,0 -11813637,"X-COM Interceptor",purchase,1.0,0 -11813637,"X-COM Terror from the Deep",purchase,1.0,0 -11813637,"X-COM UFO Defense",purchase,1.0,0 -11813637,"XCOM Enemy Unknown",purchase,1.0,0 -104321718,"Dota 2",purchase,1.0,0 -104321718,"Dota 2",play,868.0,0 -104321718,"Serious Sam HD The Second Encounter",purchase,1.0,0 -104321718,"Serious Sam HD The Second Encounter",play,0.2,0 -104321718,"BioShock Infinite",purchase,1.0,0 -104321718,"Jump/Boxer",purchase,1.0,0 -104321718,"Warframe",purchase,1.0,0 -175675929,"Team Fortress 2",purchase,1.0,0 -175675929,"Team Fortress 2",play,15.7,0 -58930204,"Football Manager 2012",purchase,1.0,0 -58930204,"Football Manager 2012",play,236.0,0 -58930204,"Empire Total War",purchase,1.0,0 -58930204,"Empire Total War",play,0.5,0 -228253535,"Unturned",purchase,1.0,0 -228253535,"Unturned",play,0.9,0 -197293332,"Dota 2",purchase,1.0,0 -197293332,"Dota 2",play,209.0,0 -197293332,"Free to Play",purchase,1.0,0 -282733934,"Dota 2",purchase,1.0,0 -282733934,"Dota 2",play,30.0,0 -72557176,"Order of War",purchase,1.0,0 -72557176,"Order of War",play,0.2,0 -72557176,"Mafia II",purchase,1.0,0 -309107542,"Dota 2",purchase,1.0,0 -309107542,"Dota 2",play,6.7,0 -242547207,"The Sims(TM) 3",purchase,1.0,0 -242547207,"The Sims(TM) 3",play,4.2,0 -212182110,"Don't Starve",purchase,1.0,0 -212182110,"Don't Starve Together Beta",purchase,1.0,0 -219481235,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -219481235,"Tom Clancy's Ghost Recon Phantoms - NA",play,141.0,0 -219481235,"Dying Light",purchase,1.0,0 -219481235,"Dying Light",play,89.0,0 -219481235,"Awesomenauts",purchase,1.0,0 -274420728,"Dota 2",purchase,1.0,0 -274420728,"Dota 2",play,9.6,0 -70995384,"Mafia II",purchase,1.0,0 -70995384,"Mafia II",play,71.0,0 -70995384,"Mafia",purchase,1.0,0 -70995384,"Mafia",play,1.3,0 -188661370,"Cry of Fear",purchase,1.0,0 -188661370,"Cry of Fear",play,2.1,0 -188661370,"Unturned",purchase,1.0,0 -188661370,"Unturned",play,0.9,0 -188661370,"Robocraft",purchase,1.0,0 -175820566,"Dota 2",purchase,1.0,0 -175820566,"Dota 2",play,857.0,0 -216670429,"Unturned",purchase,1.0,0 -216670429,"Unturned",play,2.7,0 -216670429,"BLOCKADE 3D",purchase,1.0,0 -216670429,"BLOCKADE 3D",play,1.5,0 -216670429,"Gear Up",purchase,1.0,0 -298614625,"Dota 2",purchase,1.0,0 -298614625,"Dota 2",play,8.0,0 -49131499,"Call of Duty Modern Warfare 3",purchase,1.0,0 -49131499,"Call of Duty Modern Warfare 3",play,3.0,0 -49131499,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -49131499,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -19306933,"Counter-Strike Source",purchase,1.0,0 -19306933,"Counter-Strike Source",play,0.2,0 -19306933,"Day of Defeat Source",purchase,1.0,0 -19306933,"Half-Life 2 Deathmatch",purchase,1.0,0 -19306933,"Half-Life 2 Lost Coast",purchase,1.0,0 -303465665,"Dota 2",purchase,1.0,0 -303465665,"Dota 2",play,4.5,0 -196179331,"Dota 2",purchase,1.0,0 -196179331,"Dota 2",play,0.1,0 -38068919,"Counter-Strike",purchase,1.0,0 -38068919,"Counter-Strike",play,365.0,0 -38068919,"Counter-Strike Condition Zero",purchase,1.0,0 -38068919,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -38068919,"Day of Defeat",purchase,1.0,0 -38068919,"Deathmatch Classic",purchase,1.0,0 -38068919,"Ricochet",purchase,1.0,0 -101687527,"Counter-Strike Global Offensive",purchase,1.0,0 -101687527,"Counter-Strike Global Offensive",play,618.0,0 -101687527,"DayZ",purchase,1.0,0 -101687527,"DayZ",play,233.0,0 -101687527,"Garry's Mod",purchase,1.0,0 -101687527,"Garry's Mod",play,218.0,0 -101687527,"Grand Theft Auto V",purchase,1.0,0 -101687527,"Grand Theft Auto V",play,127.0,0 -101687527,"The Elder Scrolls V Skyrim",purchase,1.0,0 -101687527,"The Elder Scrolls V Skyrim",play,71.0,0 -101687527,"APB Reloaded",purchase,1.0,0 -101687527,"APB Reloaded",play,60.0,0 -101687527,"RPG Maker VX Ace",purchase,1.0,0 -101687527,"RPG Maker VX Ace",play,40.0,0 -101687527,"PlanetSide 2",purchase,1.0,0 -101687527,"PlanetSide 2",play,39.0,0 -101687527,"Outlast",purchase,1.0,0 -101687527,"Outlast",play,39.0,0 -101687527,"Grand Theft Auto IV",purchase,1.0,0 -101687527,"Grand Theft Auto IV",play,37.0,0 -101687527,"Portal 2",purchase,1.0,0 -101687527,"Portal 2",play,36.0,0 -101687527,"F1 2014",purchase,1.0,0 -101687527,"F1 2014",play,28.0,0 -101687527,"War Thunder",purchase,1.0,0 -101687527,"War Thunder",play,28.0,0 -101687527,"Sid Meier's Civilization V",purchase,1.0,0 -101687527,"Sid Meier's Civilization V",play,27.0,0 -101687527,"F1 2015",purchase,1.0,0 -101687527,"F1 2015",play,26.0,0 -101687527,"Arma 3",purchase,1.0,0 -101687527,"Arma 3",play,19.3,0 -101687527,"PAYDAY 2",purchase,1.0,0 -101687527,"PAYDAY 2",play,18.2,0 -101687527,"Half-Life 2",purchase,1.0,0 -101687527,"Half-Life 2",play,17.2,0 -101687527,"Team Fortress 2",purchase,1.0,0 -101687527,"Team Fortress 2",play,16.2,0 -101687527,"Portal",purchase,1.0,0 -101687527,"Portal",play,15.8,0 -101687527,"Borderlands 2",purchase,1.0,0 -101687527,"Borderlands 2",play,15.2,0 -101687527,"Saints Row The Third",purchase,1.0,0 -101687527,"Saints Row The Third",play,11.4,0 -101687527,"F1 Race Stars",purchase,1.0,0 -101687527,"F1 Race Stars",play,11.2,0 -101687527,"Robocraft",purchase,1.0,0 -101687527,"Robocraft",play,8.4,0 -101687527,"Chivalry Medieval Warfare",purchase,1.0,0 -101687527,"Chivalry Medieval Warfare",play,8.0,0 -101687527,"Double Action Boogaloo",purchase,1.0,0 -101687527,"Double Action Boogaloo",play,6.7,0 -101687527,"Half-Life 2 Episode One",purchase,1.0,0 -101687527,"Half-Life 2 Episode One",play,6.7,0 -101687527,"Don't Starve Together Beta",purchase,1.0,0 -101687527,"Don't Starve Together Beta",play,6.2,0 -101687527,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -101687527,"Microsoft Flight Simulator X Steam Edition",play,5.6,0 -101687527,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -101687527,"Star Wars Jedi Knight Jedi Academy",play,4.9,0 -101687527,"SimCity 4 Deluxe",purchase,1.0,0 -101687527,"SimCity 4 Deluxe",play,4.9,0 -101687527,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",purchase,1.0,0 -101687527,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",play,4.9,0 -101687527,"Counter-Strike Source",purchase,1.0,0 -101687527,"Counter-Strike Source",play,4.7,0 -101687527,"Don't Starve",purchase,1.0,0 -101687527,"Don't Starve",play,4.1,0 -101687527,"Call of Duty Modern Warfare 2",purchase,1.0,0 -101687527,"Call of Duty Modern Warfare 2",play,3.9,0 -101687527,"Unturned",purchase,1.0,0 -101687527,"Unturned",play,3.9,0 -101687527,"Trove",purchase,1.0,0 -101687527,"Trove",play,3.8,0 -101687527,"Dirty Bomb",purchase,1.0,0 -101687527,"Dirty Bomb",play,3.6,0 -101687527,"Mirror's Edge",purchase,1.0,0 -101687527,"Mirror's Edge",play,3.5,0 -101687527,"Super Monday Night Combat",purchase,1.0,0 -101687527,"Super Monday Night Combat",play,2.9,0 -101687527,"Game Dev Tycoon",purchase,1.0,0 -101687527,"Game Dev Tycoon",play,2.5,0 -101687527,"Dragon Quest Heroes",purchase,1.0,0 -101687527,"Dragon Quest Heroes",play,2.2,0 -101687527,"Cry of Fear",purchase,1.0,0 -101687527,"Cry of Fear",play,2.2,0 -101687527,"Metro 2033",purchase,1.0,0 -101687527,"Metro 2033",play,1.8,0 -101687527,"Saints Row IV",purchase,1.0,0 -101687527,"Saints Row IV",play,1.8,0 -101687527,"Star Wars Starfighter",purchase,1.0,0 -101687527,"Star Wars Starfighter",play,1.6,0 -101687527,"Blacklight Retribution",purchase,1.0,0 -101687527,"Blacklight Retribution",play,1.6,0 -101687527,"Star Wars - Battlefront II",purchase,1.0,0 -101687527,"Star Wars - Battlefront II",play,1.5,0 -101687527,"Star Wars Empire at War Gold",purchase,1.0,0 -101687527,"Star Wars Empire at War Gold",play,1.3,0 -101687527,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -101687527,"Star Wars The Force Unleashed Ultimate Sith Edition",play,1.3,0 -101687527,"Universe Sandbox ",purchase,1.0,0 -101687527,"Universe Sandbox ",play,1.2,0 -101687527,"Dota 2",purchase,1.0,0 -101687527,"Dota 2",play,1.2,0 -101687527,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -101687527,"Tom Clancy's Ghost Recon Phantoms - EU",play,1.1,0 -101687527,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -101687527,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.7,0 -101687527,"Estranged Act I",purchase,1.0,0 -101687527,"Estranged Act I",play,0.7,0 -101687527,"Half-Life 2 Lost Coast",purchase,1.0,0 -101687527,"Half-Life 2 Lost Coast",play,0.7,0 -101687527,"Tomb Raider I",purchase,1.0,0 -101687527,"Tomb Raider I",play,0.7,0 -101687527,"Patch testing for Chivalry",purchase,1.0,0 -101687527,"Patch testing for Chivalry",play,0.6,0 -101687527,"Half-Life 2 Deathmatch",purchase,1.0,0 -101687527,"Half-Life 2 Deathmatch",play,0.6,0 -101687527,"Star Wars Knights of the Old Republic",purchase,1.0,0 -101687527,"Star Wars Knights of the Old Republic",play,0.4,0 -101687527,"Only If",purchase,1.0,0 -101687527,"Only If",play,0.4,0 -101687527,"theHunter",purchase,1.0,0 -101687527,"theHunter",play,0.3,0 -101687527,"Stealth Inc 2",purchase,1.0,0 -101687527,"Stealth Inc 2",play,0.2,0 -101687527,"Star Wars Republic Commando",purchase,1.0,0 -101687527,"Star Wars Republic Commando",play,0.2,0 -101687527,"Abyss Odyssey",purchase,1.0,0 -101687527,"Abyss Odyssey",play,0.1,0 -101687527,"Half-Life Deathmatch Source",purchase,1.0,0 -101687527,"Star Wars Dark Forces",purchase,1.0,0 -101687527,"Color Symphony",purchase,1.0,0 -101687527,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -101687527,"Entropy",purchase,1.0,0 -101687527,"Arma 3 Zeus",purchase,1.0,0 -101687527,"Contagion",purchase,1.0,0 -101687527,"DRAGON QUEST HEROES Slime Weapons and Two Bonus Maps",purchase,1.0,0 -101687527,"Neverwinter",purchase,1.0,0 -101687527,"Outlast Whistleblower DLC",purchase,1.0,0 -101687527,"Quake Live",purchase,1.0,0 -101687527,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -101687527,"Star Wars The Force Unleashed II",purchase,1.0,0 -101687527,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -101687527,"Super Crate Box",purchase,1.0,0 -169808233,"Dota 2",purchase,1.0,0 -169808233,"Dota 2",play,211.0,0 -169808233,"March of War",purchase,1.0,0 -169808233,"March of War",play,15.6,0 -239497677,"Counter-Strike Global Offensive",purchase,1.0,0 -239497677,"Counter-Strike Global Offensive",play,138.0,0 -239497677,"Dota 2",purchase,1.0,0 -239497677,"Dota 2",play,4.0,0 -239497677,"Jigoku Kisetsukan Sense of the Seasons",purchase,1.0,0 -239497677,"One Manga Day",purchase,1.0,0 -5250,"Cities Skylines",purchase,1.0,0 -5250,"Cities Skylines",play,144.0,0 -5250,"Deus Ex Human Revolution",purchase,1.0,0 -5250,"Deus Ex Human Revolution",play,62.0,0 -5250,"Portal 2",purchase,1.0,0 -5250,"Portal 2",play,13.6,0 -5250,"Alien Swarm",purchase,1.0,0 -5250,"Alien Swarm",play,4.9,0 -5250,"Team Fortress 2",purchase,1.0,0 -5250,"Team Fortress 2",play,0.8,0 -5250,"Dota 2",purchase,1.0,0 -5250,"Dota 2",play,0.2,0 -5250,"Counter-Strike",purchase,1.0,0 -5250,"Counter-Strike Source",purchase,1.0,0 -5250,"Day of Defeat",purchase,1.0,0 -5250,"Deathmatch Classic",purchase,1.0,0 -5250,"Half-Life",purchase,1.0,0 -5250,"Half-Life 2",purchase,1.0,0 -5250,"Half-Life 2 Deathmatch",purchase,1.0,0 -5250,"Half-Life 2 Episode One",purchase,1.0,0 -5250,"Half-Life 2 Episode Two",purchase,1.0,0 -5250,"Half-Life 2 Lost Coast",purchase,1.0,0 -5250,"Half-Life Blue Shift",purchase,1.0,0 -5250,"Half-Life Opposing Force",purchase,1.0,0 -5250,"Portal",purchase,1.0,0 -5250,"Ricochet",purchase,1.0,0 -5250,"Team Fortress Classic",purchase,1.0,0 -126567484,"Dota 2",purchase,1.0,0 -126567484,"Dota 2",play,8.2,0 -303274061,"Euro Truck Simulator 2",purchase,1.0,0 -303274061,"Euro Truck Simulator 2",play,2.3,0 -303274061,"Incoming Forces",purchase,1.0,0 -54826284,"Might & Magic Heroes VI",purchase,1.0,0 -54826284,"Might & Magic Heroes VI",play,791.0,0 -54826284,"Sid Meier's Civilization V",purchase,1.0,0 -54826284,"Sid Meier's Civilization V",play,487.0,0 -54826284,"Anno 2070",purchase,1.0,0 -54826284,"Anno 2070",play,409.0,0 -54826284,"Football Manager 2011",purchase,1.0,0 -54826284,"Football Manager 2011",play,197.0,0 -54826284,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -54826284,"Sid Meier's Civilization Beyond Earth",play,96.0,0 -54826284,"Football Manager 2012",purchase,1.0,0 -54826284,"Football Manager 2012",play,91.0,0 -54826284,"Football Manager 2013",purchase,1.0,0 -54826284,"Football Manager 2013",play,91.0,0 -54826284,"The Elder Scrolls V Skyrim",purchase,1.0,0 -54826284,"The Elder Scrolls V Skyrim",play,84.0,0 -54826284,"Just Cause 2",purchase,1.0,0 -54826284,"Just Cause 2",play,80.0,0 -54826284,"Magic The Gathering Duels of the Planeswalkers 2012",purchase,1.0,0 -54826284,"Magic The Gathering Duels of the Planeswalkers 2012",play,80.0,0 -54826284,"Mass Effect 2",purchase,1.0,0 -54826284,"Mass Effect 2",play,73.0,0 -54826284,"Football Manager 2010",purchase,1.0,0 -54826284,"Football Manager 2010",play,55.0,0 -54826284,"Crusader Kings II",purchase,1.0,0 -54826284,"Crusader Kings II",play,55.0,0 -54826284,"Endless Space",purchase,1.0,0 -54826284,"Endless Space",play,44.0,0 -54826284,"Knights of Honor",purchase,1.0,0 -54826284,"Knights of Honor",play,38.0,0 -54826284,"AdVenture Capitalist",purchase,1.0,0 -54826284,"AdVenture Capitalist",play,37.0,0 -54826284,"L.A. Noire",purchase,1.0,0 -54826284,"L.A. Noire",play,36.0,0 -54826284,"Heroes of Might & Magic V Tribes of the East",purchase,1.0,0 -54826284,"Heroes of Might & Magic V Tribes of the East",play,35.0,0 -54826284,"South Park The Stick of Truth",purchase,1.0,0 -54826284,"South Park The Stick of Truth",play,32.0,0 -54826284,"Lost Horizon",purchase,1.0,0 -54826284,"Lost Horizon",play,29.0,0 -54826284,"Patrician IV Steam Special Edition",purchase,1.0,0 -54826284,"Patrician IV Steam Special Edition",play,29.0,0 -54826284,"Football Manager 2014",purchase,1.0,0 -54826284,"Football Manager 2014",play,27.0,0 -54826284,"Tropico 5",purchase,1.0,0 -54826284,"Tropico 5",play,25.0,0 -54826284,"Anno 2205",purchase,1.0,0 -54826284,"Anno 2205",play,22.0,0 -54826284,"Endless Legend",purchase,1.0,0 -54826284,"Endless Legend",play,21.0,0 -54826284,"Grand Ages Rome",purchase,1.0,0 -54826284,"Grand Ages Rome",play,19.6,0 -54826284,"Age of Wonders III",purchase,1.0,0 -54826284,"Age of Wonders III",play,18.1,0 -54826284,"Fable III",purchase,1.0,0 -54826284,"Fable III",play,17.8,0 -54826284,"XCOM Enemy Unknown",purchase,1.0,0 -54826284,"XCOM Enemy Unknown",play,16.3,0 -54826284,"Age of Wonders Shadow Magic",purchase,1.0,0 -54826284,"Age of Wonders Shadow Magic",play,16.0,0 -54826284,"Company of Heroes",purchase,1.0,0 -54826284,"Company of Heroes",play,13.1,0 -54826284,"Sid Meier's Pirates!",purchase,1.0,0 -54826284,"Sid Meier's Pirates!",play,11.2,0 -54826284,"Cities Skylines",purchase,1.0,0 -54826284,"Cities Skylines",play,9.2,0 -54826284,"Expeditions Conquistador",purchase,1.0,0 -54826284,"Expeditions Conquistador",play,6.4,0 -54826284,"Football Manager 2015",purchase,1.0,0 -54826284,"Football Manager 2015",play,5.8,0 -54826284,"Age of Empires III Complete Collection",purchase,1.0,0 -54826284,"Age of Empires III Complete Collection",play,5.8,0 -54826284,"World in Conflict Soviet Assault",purchase,1.0,0 -54826284,"World in Conflict Soviet Assault",play,5.4,0 -54826284,"Shatter",purchase,1.0,0 -54826284,"Shatter",play,5.3,0 -54826284,"Port Royale 3",purchase,1.0,0 -54826284,"Port Royale 3",play,5.2,0 -54826284,"Stronghold HD",purchase,1.0,0 -54826284,"Stronghold HD",play,4.8,0 -54826284,"Gunpoint",purchase,1.0,0 -54826284,"Gunpoint",play,4.6,0 -54826284,"Mark of the Ninja",purchase,1.0,0 -54826284,"Mark of the Ninja",play,4.2,0 -54826284,"Marvel Puzzle Quest",purchase,1.0,0 -54826284,"Marvel Puzzle Quest",play,3.5,0 -54826284,"Galactic Civilizations III",purchase,1.0,0 -54826284,"Galactic Civilizations III",play,3.2,0 -54826284,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -54826284,"Fallout 3 - Game of the Year Edition",play,2.9,0 -54826284,"Bully Scholarship Edition",purchase,1.0,0 -54826284,"Bully Scholarship Edition",play,2.3,0 -54826284,"Hitman Absolution",purchase,1.0,0 -54826284,"Hitman Absolution",play,2.3,0 -54826284,"Poly Bridge",purchase,1.0,0 -54826284,"Poly Bridge",play,2.2,0 -54826284,"Company of Heroes 2",purchase,1.0,0 -54826284,"Company of Heroes 2",play,1.8,0 -54826284,"Hacknet",purchase,1.0,0 -54826284,"Hacknet",play,1.5,0 -54826284,"Batman Arkham City",purchase,1.0,0 -54826284,"Batman Arkham City",play,1.4,0 -54826284,"Game Dev Tycoon",purchase,1.0,0 -54826284,"Game Dev Tycoon",play,1.3,0 -54826284,"RISK Factions",purchase,1.0,0 -54826284,"RISK Factions",play,1.3,0 -54826284,"Act of Aggression",purchase,1.0,0 -54826284,"Act of Aggression",play,0.9,0 -54826284,"World in Conflict",purchase,1.0,0 -54826284,"World in Conflict",play,0.8,0 -54826284,"BioShock Infinite",purchase,1.0,0 -54826284,"BioShock Infinite",play,0.6,0 -54826284,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -54826284,"Galactic Civilizations II Ultimate Edition",play,0.3,0 -54826284,"World of Goo",purchase,1.0,0 -54826284,"World of Goo",play,0.3,0 -54826284,"Colonial Conquest",purchase,1.0,0 -54826284,"Colonial Conquest",play,0.3,0 -54826284,"The Stanley Parable",purchase,1.0,0 -54826284,"The Stanley Parable",play,0.3,0 -54826284,"Zeno Clash",purchase,1.0,0 -54826284,"Zeno Clash",play,0.2,0 -54826284,"Audiosurf",purchase,1.0,0 -54826284,"Audiosurf",play,0.2,0 -54826284,"Company of Heroes (New Steam Version)",purchase,1.0,0 -54826284,"Company of Heroes (New Steam Version)",play,0.2,0 -54826284,"Company of Heroes Opposing Fronts",purchase,1.0,0 -54826284,"Company of Heroes Opposing Fronts",play,0.2,0 -54826284,"Star Wars - Battlefront II",purchase,1.0,0 -54826284,"Star Wars - Battlefront II",play,0.1,0 -54826284,"Chivalry Medieval Warfare",purchase,1.0,0 -54826284,"Chivalry Medieval Warfare",play,0.1,0 -54826284,"Star Wars Knights of the Old Republic",purchase,1.0,0 -54826284,"Star Wars Knights of the Old Republic",play,0.1,0 -54826284,"Shattered Horizon",purchase,1.0,0 -54826284,"Shattered Horizon",play,0.1,0 -54826284,"Greed Corp",purchase,1.0,0 -54826284,"Heroes of Might & Magic V Hammers of Fate",purchase,1.0,0 -54826284,"Batman Arkham City GOTY",purchase,1.0,0 -54826284,"Braid",purchase,1.0,0 -54826284,"Company of Heroes Tales of Valor",purchase,1.0,0 -54826284,"Crusader Kings II Hymns of Abraham",purchase,1.0,0 -54826284,"Crusader Kings II Military Orders Unit Pack",purchase,1.0,0 -54826284,"Crusader Kings II Sons of Abraham",purchase,1.0,0 -54826284,"Crusader Kings II Warriors of Faith Unit Pack",purchase,1.0,0 -54826284,"Half-Life 2",purchase,1.0,0 -54826284,"Half-Life 2 Episode One",purchase,1.0,0 -54826284,"Half-Life 2 Episode Two",purchase,1.0,0 -54826284,"Half-Life 2 Lost Coast",purchase,1.0,0 -54826284,"Heroes of Might & Magic V",purchase,1.0,0 -54826284,"Hitman Sniper Challenge",purchase,1.0,0 -54826284,"Osmos",purchase,1.0,0 -54826284,"Patch testing for Chivalry",purchase,1.0,0 -54826284,"Portal",purchase,1.0,0 -54826284,"Sid Meier's Civilization Beyond Earth - Rising Tide",purchase,1.0,0 -54826284,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -54826284,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -54826284,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -54826284,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -54826284,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -54826284,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -54826284,"The Maw",purchase,1.0,0 -54826284,"Trine",purchase,1.0,0 -24610082,"Counter-Strike",purchase,1.0,0 -24610082,"Counter-Strike",play,5.9,0 -24610082,"Day of Defeat",purchase,1.0,0 -24610082,"Day of Defeat",play,3.4,0 -24610082,"Counter-Strike Condition Zero",purchase,1.0,0 -24610082,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -24610082,"Deathmatch Classic",purchase,1.0,0 -24610082,"Ricochet",purchase,1.0,0 -37522295,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -37522295,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -104159428,"Arma 2 Operation Arrowhead",purchase,1.0,0 -104159428,"Arma 2 Operation Arrowhead",play,80.0,0 -104159428,"Total War ROME II - Emperor Edition",purchase,1.0,0 -104159428,"Total War ROME II - Emperor Edition",play,28.0,0 -104159428,"Terraria",purchase,1.0,0 -104159428,"Terraria",play,22.0,0 -104159428,"PAYDAY 2",purchase,1.0,0 -104159428,"PAYDAY 2",play,21.0,0 -104159428,"Space Engineers",purchase,1.0,0 -104159428,"Space Engineers",play,19.4,0 -104159428,"DC Universe Online",purchase,1.0,0 -104159428,"DC Universe Online",play,14.6,0 -104159428,"Orcs Must Die! 2",purchase,1.0,0 -104159428,"Orcs Must Die! 2",play,13.4,0 -104159428,"Farming Simulator 15",purchase,1.0,0 -104159428,"Farming Simulator 15",play,11.2,0 -104159428,"Dying Light",purchase,1.0,0 -104159428,"Dying Light",play,7.8,0 -104159428,"Trine 2",purchase,1.0,0 -104159428,"Trine 2",play,5.5,0 -104159428,"Wanderlust Rebirth",purchase,1.0,0 -104159428,"Wanderlust Rebirth",play,4.9,0 -104159428,"Dota 2",purchase,1.0,0 -104159428,"Dota 2",play,3.6,0 -104159428,"Project Zomboid",purchase,1.0,0 -104159428,"Project Zomboid",play,0.8,0 -104159428,"Serious Sam HD The Second Encounter",purchase,1.0,0 -104159428,"Serious Sam HD The Second Encounter",play,0.6,0 -104159428,"The Mighty Quest For Epic Loot",purchase,1.0,0 -104159428,"The Mighty Quest For Epic Loot",play,0.6,0 -104159428,"Bunch Of Heroes",purchase,1.0,0 -104159428,"Bunch Of Heroes",play,0.6,0 -104159428,"Arma 2 DayZ Mod",purchase,1.0,0 -104159428,"Arma 2 DayZ Mod",play,0.3,0 -104159428,"Greed Black Border",purchase,1.0,0 -104159428,"Greed Black Border",play,0.1,0 -104159428,"Arma 2",purchase,1.0,0 -104159428,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -131394043,"Call of Duty Black Ops II",purchase,1.0,0 -131394043,"Call of Duty Black Ops II",play,14.1,0 -131394043,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -131394043,"Call of Duty Black Ops II - Zombies",play,1.8,0 -131394043,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -131394043,"Call of Duty Black Ops II - Multiplayer",play,0.9,0 -287494342,"Counter-Strike Global Offensive",purchase,1.0,0 -287494342,"Counter-Strike Global Offensive",play,12.7,0 -178491818,"Dota 2",purchase,1.0,0 -178491818,"Dota 2",play,1.4,0 -153166211,"LIMBO",purchase,1.0,0 -153166211,"LIMBO",play,0.6,0 -153166211,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -153166211,"Batman Arkham City GOTY",purchase,1.0,0 -153166211,"Don't Starve",purchase,1.0,0 -153166211,"Don't Starve Together Beta",purchase,1.0,0 -200083632,"Team Fortress 2",purchase,1.0,0 -200083632,"Team Fortress 2",play,0.1,0 -70821681,"Sid Meier's Civilization V",purchase,1.0,0 -70821681,"Sid Meier's Civilization V",play,10.7,0 -295442416,"Dota 2",purchase,1.0,0 -295442416,"Dota 2",play,1.2,0 -288164462,"Dota 2",purchase,1.0,0 -288164462,"Dota 2",play,36.0,0 -288164462,"Free to Play",purchase,1.0,0 -240382747,"Dirty Bomb",purchase,1.0,0 -240382747,"Dirty Bomb",play,7.2,0 -240382747,"Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald A Whirlwind Heist",purchase,1.0,0 -240382747,"Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald A Whirlwind Heist",play,0.3,0 -184858116,"Warface",purchase,1.0,0 -184858116,"Warface",play,7.1,0 -184858116,"The Lord of the Rings Online",purchase,1.0,0 -184858116,"The Lord of the Rings Online",play,1.5,0 -184858116,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -184858116,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.5,0 -184858116,"Heroes & Generals",purchase,1.0,0 -184858116,"Heroes & Generals",play,0.4,0 -184858116,"Path of Exile",purchase,1.0,0 -184858116,"Battle Islands",purchase,1.0,0 -111091837,"Team Fortress 2",purchase,1.0,0 -111091837,"Team Fortress 2",play,0.5,0 -111091837,"Dota 2",purchase,1.0,0 -111091837,"Dota 2",play,0.4,0 -242639921,"Unturned",purchase,1.0,0 -242639921,"Unturned",play,3.0,0 -110875215,"Left 4 Dead 2",purchase,1.0,0 -110875215,"Left 4 Dead 2",play,12.8,0 -175554658,"Dota 2",purchase,1.0,0 -175554658,"Dota 2",play,0.2,0 -52672853,"Left 4 Dead",purchase,1.0,0 -52672853,"Left 4 Dead",play,0.2,0 -141108138,"Dota 2",purchase,1.0,0 -141108138,"Dota 2",play,8.8,0 -173925846,"Wasteland 2",purchase,1.0,0 -173925846,"Wasteland 2",play,14.6,0 -173925846,"Wasteland 1 - The Original Classic",purchase,1.0,0 -173925846,"The Bard's Tale",purchase,1.0,0 -173925846,"Wasteland 2 Director's Cut",purchase,1.0,0 -61506388,"Puzzle Quest",purchase,1.0,0 -61506388,"Puzzle Quest",play,72.0,0 -61506388,"The Elder Scrolls V Skyrim",purchase,1.0,0 -61506388,"The Elder Scrolls V Skyrim",play,71.0,0 -61506388,"Crusader Kings II",purchase,1.0,0 -61506388,"Crusader Kings II",play,47.0,0 -61506388,"Amnesia The Dark Descent",purchase,1.0,0 -61506388,"Amnesia The Dark Descent",play,17.0,0 -61506388,"Fallout New Vegas",purchase,1.0,0 -61506388,"Fallout New Vegas",play,12.1,0 -61506388,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -61506388,"The Witcher 2 Assassins of Kings Enhanced Edition",play,10.3,0 -61506388,"Don't Starve Together Beta",purchase,1.0,0 -61506388,"Don't Starve Together Beta",play,7.9,0 -61506388,"Portal 2",purchase,1.0,0 -61506388,"Portal 2",play,7.3,0 -61506388,"Stranded Deep",purchase,1.0,0 -61506388,"Stranded Deep",play,6.2,0 -61506388,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -61506388,"Warhammer 40,000 Dawn of War II",play,5.7,0 -61506388,"Portal",purchase,1.0,0 -61506388,"Portal",play,4.2,0 -61506388,"This War of Mine",purchase,1.0,0 -61506388,"This War of Mine",play,3.4,0 -61506388,"Saints Row 2",purchase,1.0,0 -61506388,"Saints Row 2",play,2.8,0 -61506388,"The Path",purchase,1.0,0 -61506388,"The Path",play,2.6,0 -61506388,"7 Days to Die",purchase,1.0,0 -61506388,"7 Days to Die",play,2.4,0 -61506388,"Gone Home",purchase,1.0,0 -61506388,"Gone Home",play,2.1,0 -61506388,"Deus Ex Invisible War",purchase,1.0,0 -61506388,"Deus Ex Invisible War",play,1.9,0 -61506388,"Max Payne",purchase,1.0,0 -61506388,"Max Payne",play,1.8,0 -61506388,"Machinarium",purchase,1.0,0 -61506388,"Machinarium",play,1.8,0 -61506388,"Metro 2033",purchase,1.0,0 -61506388,"Metro 2033",play,1.8,0 -61506388,"Grand Theft Auto IV",purchase,1.0,0 -61506388,"Grand Theft Auto IV",play,1.8,0 -61506388,"Don't Starve",purchase,1.0,0 -61506388,"Don't Starve",play,1.5,0 -61506388,"Silent Hunter III",purchase,1.0,0 -61506388,"Silent Hunter III",play,1.4,0 -61506388,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -61506388,"Warhammer 40,000 Dawn of War Winter Assault",play,1.2,0 -61506388,"Batman Arkham Knight",purchase,1.0,0 -61506388,"Batman Arkham Knight",play,1.1,0 -61506388,"Crysis 2 Maximum Edition",purchase,1.0,0 -61506388,"Crysis 2 Maximum Edition",play,1.1,0 -61506388,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -61506388,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,1.0,0 -61506388,"Titan Quest",purchase,1.0,0 -61506388,"Titan Quest",play,0.7,0 -61506388,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -61506388,"Burnout Paradise The Ultimate Box",play,0.7,0 -61506388,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -61506388,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,0.6,0 -61506388,"Medal of Honor(TM) Single Player",purchase,1.0,0 -61506388,"Medal of Honor(TM) Single Player",play,0.5,0 -61506388,"The Path - Prologue",purchase,1.0,0 -61506388,"The Path - Prologue",play,0.5,0 -61506388,"The Stanley Parable",purchase,1.0,0 -61506388,"The Stanley Parable",play,0.5,0 -61506388,"Bastion",purchase,1.0,0 -61506388,"Bastion",play,0.4,0 -61506388,"Deus Ex Game of the Year Edition",purchase,1.0,0 -61506388,"Deus Ex Game of the Year Edition",play,0.4,0 -61506388,"World of Zoo",purchase,1.0,0 -61506388,"World of Zoo",play,0.3,0 -61506388,"Dungeon Defenders",purchase,1.0,0 -61506388,"Dungeon Defenders",play,0.3,0 -61506388,"The Vanishing of Ethan Carter Redux",purchase,1.0,0 -61506388,"The Vanishing of Ethan Carter Redux",play,0.3,0 -61506388,"Mirror's Edge",purchase,1.0,0 -61506388,"Mirror's Edge",play,0.2,0 -61506388,"Syberia",purchase,1.0,0 -61506388,"Syberia",play,0.1,0 -61506388,"Ben There, Dan That!",purchase,1.0,0 -61506388,"Eets Munchies",purchase,1.0,0 -61506388,"Syberia 2",purchase,1.0,0 -61506388,"Alpha Prime",purchase,1.0,0 -61506388,"Arma 2",purchase,1.0,0 -61506388,"Arma 2 DayZ Mod",purchase,1.0,0 -61506388,"Arma 2 Operation Arrowhead",purchase,1.0,0 -61506388,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -61506388,"Arma Gold Edition",purchase,1.0,0 -61506388,"Arma Tactics",purchase,1.0,0 -61506388,"A Virus Named TOM",purchase,1.0,0 -61506388,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -61506388,"Batman Arkham City GOTY",purchase,1.0,0 -61506388,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -61506388,"Batman Arkham Origins - Initiation",purchase,1.0,0 -61506388,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -61506388,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -61506388,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -61506388,"Batman Arkham Origins",purchase,1.0,0 -61506388,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -61506388,"Brtal Legend",purchase,1.0,0 -61506388,"Carrier Command Gaea Mission",purchase,1.0,0 -61506388,"Company of Heroes",purchase,1.0,0 -61506388,"Company of Heroes (New Steam Version)",purchase,1.0,0 -61506388,"Company of Heroes Opposing Fronts",purchase,1.0,0 -61506388,"Company of Heroes Tales of Valor",purchase,1.0,0 -61506388,"Dead Space",purchase,1.0,0 -61506388,"DOOM 3 BFG Edition",purchase,1.0,0 -61506388,"FEZ",purchase,1.0,0 -61506388,"Frontlines Fuel of War",purchase,1.0,0 -61506388,"FTL Faster Than Light",purchase,1.0,0 -61506388,"Full Spectrum Warrior",purchase,1.0,0 -61506388,"Full Spectrum Warrior Ten Hammers",purchase,1.0,0 -61506388,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -61506388,"Juiced 2 Hot Import Nights",purchase,1.0,0 -61506388,"LIMBO",purchase,1.0,0 -61506388,"Mark of the Ninja",purchase,1.0,0 -61506388,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -61506388,"Medal of Honor Pre-Order",purchase,1.0,0 -61506388,"Red Faction",purchase,1.0,0 -61506388,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -61506388,"Red Faction II",purchase,1.0,0 -61506388,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -61506388,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -61506388,"Take On Helicopters",purchase,1.0,0 -61506388,"The Vanishing of Ethan Carter",purchase,1.0,0 -61506388,"Time Gentlemen, Please!",purchase,1.0,0 -61506388,"Titan Quest Immortal Throne",purchase,1.0,0 -61506388,"Trine 2",purchase,1.0,0 -61506388,"UFO Afterlight",purchase,1.0,0 -61506388,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -61506388,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -61506388,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -171057893,"Dota 2",purchase,1.0,0 -171057893,"Dota 2",play,381.0,0 -172116118,"Dota 2",purchase,1.0,0 -172116118,"Dota 2",play,42.0,0 -15095770,"Half-Life Opposing Force",purchase,1.0,0 -15095770,"Half-Life Opposing Force",play,0.6,0 -15095770,"Train Fever",purchase,1.0,0 -15095770,"Train Fever",play,0.5,0 -15095770,"Worms Reloaded",purchase,1.0,0 -15095770,"Worms Reloaded",play,0.5,0 -15095770,"Hospital Tycoon",purchase,1.0,0 -15095770,"Hospital Tycoon",play,0.4,0 -15095770,"Schrdinger's Cat and the Raiders of the Lost Quark",purchase,1.0,0 -15095770,"Schrdinger's Cat and the Raiders of the Lost Quark",play,0.2,0 -15095770,"Toybox Turbos",purchase,1.0,0 -15095770,"Batman Arkham City GOTY",purchase,1.0,0 -15095770,"Counter-Strike",purchase,1.0,0 -15095770,"Day of Defeat",purchase,1.0,0 -15095770,"Deathmatch Classic",purchase,1.0,0 -15095770,"Half-Life",purchase,1.0,0 -15095770,"Half-Life 2 Deathmatch",purchase,1.0,0 -15095770,"Half-Life 2 Lost Coast",purchase,1.0,0 -15095770,"Half-Life Blue Shift",purchase,1.0,0 -15095770,"Light",purchase,1.0,0 -15095770,"Ricochet",purchase,1.0,0 -15095770,"Team Fortress Classic",purchase,1.0,0 -164399809,"Dota 2",purchase,1.0,0 -164399809,"Dota 2",play,201.0,0 -287595170,"Transformice",purchase,1.0,0 -233983451,"Dota 2",purchase,1.0,0 -233983451,"Dota 2",play,184.0,0 -233983451,"BLOCKADE 3D",purchase,1.0,0 -233983451,"Warframe",purchase,1.0,0 -64973908,"Sid Meier's Civilization V",purchase,1.0,0 -64973908,"Sid Meier's Civilization V",play,601.0,0 -64973908,"Sniper Elite 3",purchase,1.0,0 -64973908,"Sniper Elite 3",play,313.0,0 -64973908,"Team Fortress 2",purchase,1.0,0 -64973908,"Team Fortress 2",play,195.0,0 -64973908,"Borderlands",purchase,1.0,0 -64973908,"Borderlands",play,193.0,0 -64973908,"PAYDAY 2",purchase,1.0,0 -64973908,"PAYDAY 2",play,149.0,0 -64973908,"Just Cause 2",purchase,1.0,0 -64973908,"Just Cause 2",play,105.0,0 -64973908,"Grand Theft Auto V",purchase,1.0,0 -64973908,"Grand Theft Auto V",play,95.0,0 -64973908,"The Elder Scrolls V Skyrim",purchase,1.0,0 -64973908,"The Elder Scrolls V Skyrim",play,90.0,0 -64973908,"Far Cry 4",purchase,1.0,0 -64973908,"Far Cry 4",play,69.0,0 -64973908,"Batman Arkham City",purchase,1.0,0 -64973908,"Batman Arkham City",play,63.0,0 -64973908,"Saints Row The Third",purchase,1.0,0 -64973908,"Saints Row The Third",play,58.0,0 -64973908,"Borderlands 2",purchase,1.0,0 -64973908,"Borderlands 2",play,51.0,0 -64973908,"Orcs Must Die! 2",purchase,1.0,0 -64973908,"Orcs Must Die! 2",play,48.0,0 -64973908,"Sleeping Dogs",purchase,1.0,0 -64973908,"Sleeping Dogs",play,39.0,0 -64973908,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -64973908,"Batman Arkham Asylum GOTY Edition",play,38.0,0 -64973908,"Saints Row IV",purchase,1.0,0 -64973908,"Saints Row IV",play,37.0,0 -64973908,"FINAL FANTASY XIII-2",purchase,1.0,0 -64973908,"FINAL FANTASY XIII-2",play,34.0,0 -64973908,"Dishonored",purchase,1.0,0 -64973908,"Dishonored",play,32.0,0 -64973908,"Max Payne 3",purchase,1.0,0 -64973908,"Max Payne 3",play,32.0,0 -64973908,"Euro Truck Simulator 2",purchase,1.0,0 -64973908,"Euro Truck Simulator 2",play,28.0,0 -64973908,"The Walking Dead",purchase,1.0,0 -64973908,"The Walking Dead",play,27.0,0 -64973908,"Dungeon Defenders II",purchase,1.0,0 -64973908,"Dungeon Defenders II",play,26.0,0 -64973908,"Castle Crashers",purchase,1.0,0 -64973908,"Castle Crashers",play,25.0,0 -64973908,"Dungeon Siege",purchase,1.0,0 -64973908,"Dungeon Siege",play,25.0,0 -64973908,"Dungeon Defenders",purchase,1.0,0 -64973908,"Dungeon Defenders",play,23.0,0 -64973908,"Ticket to Ride",purchase,1.0,0 -64973908,"Ticket to Ride",play,19.7,0 -64973908,"Bastion",purchase,1.0,0 -64973908,"Bastion",play,18.3,0 -64973908,"Left 4 Dead 2",purchase,1.0,0 -64973908,"Left 4 Dead 2",play,18.3,0 -64973908,"Call of Juarez Gunslinger",purchase,1.0,0 -64973908,"Call of Juarez Gunslinger",play,16.1,0 -64973908,"Monday Night Combat",purchase,1.0,0 -64973908,"Monday Night Combat",play,15.6,0 -64973908,"BattleBlock Theater",purchase,1.0,0 -64973908,"BattleBlock Theater",play,15.1,0 -64973908,"Cook, Serve, Delicious!",purchase,1.0,0 -64973908,"Cook, Serve, Delicious!",play,14.7,0 -64973908,"Transistor",purchase,1.0,0 -64973908,"Transistor",play,13.5,0 -64973908,"The Jackbox Party Pack",purchase,1.0,0 -64973908,"The Jackbox Party Pack",play,11.4,0 -64973908,"Spec Ops The Line",purchase,1.0,0 -64973908,"Spec Ops The Line",play,10.4,0 -64973908,"Dead Rising 2",purchase,1.0,0 -64973908,"Dead Rising 2",play,9.2,0 -64973908,"Rocket League",purchase,1.0,0 -64973908,"Rocket League",play,9.0,0 -64973908,"Portal",purchase,1.0,0 -64973908,"Portal",play,7.3,0 -64973908,"Alan Wake's American Nightmare",purchase,1.0,0 -64973908,"Alan Wake's American Nightmare",play,5.6,0 -64973908,"BioShock",purchase,1.0,0 -64973908,"BioShock",play,4.9,0 -64973908,"Half-Life 2",purchase,1.0,0 -64973908,"Half-Life 2",play,4.3,0 -64973908,"LIGHTNING RETURNS FINAL FANTASY XIII",purchase,1.0,0 -64973908,"LIGHTNING RETURNS FINAL FANTASY XIII",play,4.0,0 -64973908,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -64973908,"Burnout Paradise The Ultimate Box",play,3.6,0 -64973908,"Company of Heroes",purchase,1.0,0 -64973908,"Company of Heroes",play,3.6,0 -64973908,"Garry's Mod",purchase,1.0,0 -64973908,"Garry's Mod",play,3.1,0 -64973908,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -64973908,"Sonic & All-Stars Racing Transformed",play,3.0,0 -64973908,"Saints Row 2",purchase,1.0,0 -64973908,"Saints Row 2",play,2.0,0 -64973908,"Alien Isolation",purchase,1.0,0 -64973908,"Alien Isolation",play,1.5,0 -64973908,"Metro 2033",purchase,1.0,0 -64973908,"Metro 2033",play,1.5,0 -64973908,"Smashball",purchase,1.0,0 -64973908,"Smashball",play,1.4,0 -64973908,"World of Goo",purchase,1.0,0 -64973908,"World of Goo",play,1.3,0 -64973908,"Outland",purchase,1.0,0 -64973908,"Outland",play,1.1,0 -64973908,"Serious Sam HD The First Encounter",purchase,1.0,0 -64973908,"Serious Sam HD The First Encounter",play,0.9,0 -64973908,"Portal 2",purchase,1.0,0 -64973908,"Portal 2",play,0.9,0 -64973908,"Contagion",purchase,1.0,0 -64973908,"Contagion",play,0.9,0 -64973908,"Space Channel 5 Part 2",purchase,1.0,0 -64973908,"Space Channel 5 Part 2",play,0.7,0 -64973908,"Crazy Taxi",purchase,1.0,0 -64973908,"Crazy Taxi",play,0.6,0 -64973908,"Super Meat Boy",purchase,1.0,0 -64973908,"Super Meat Boy",play,0.2,0 -64973908,"Mercenary Kings",purchase,1.0,0 -64973908,"Day of Defeat",purchase,1.0,0 -64973908,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -64973908,"Alan Wake",purchase,1.0,0 -64973908,"Always Sometimes Monsters",purchase,1.0,0 -64973908,"Antichamber",purchase,1.0,0 -64973908,"Batman Arkham City GOTY",purchase,1.0,0 -64973908,"Batman Arkham Origins",purchase,1.0,0 -64973908,"BioShock 2",purchase,1.0,0 -64973908,"BioShock Infinite",purchase,1.0,0 -64973908,"Blackguards",purchase,1.0,0 -64973908,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -64973908,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -64973908,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -64973908,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -64973908,"Braid",purchase,1.0,0 -64973908,"Castle Crashers - Blacksmith Pack",purchase,1.0,0 -64973908,"Castle Crashers - Pink Knight Pack",purchase,1.0,0 -64973908,"Cities in Motion 2",purchase,1.0,0 -64973908,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -64973908,"Company of Heroes (New Steam Version)",purchase,1.0,0 -64973908,"Company of Heroes 2",purchase,1.0,0 -64973908,"Company of Heroes Opposing Fronts",purchase,1.0,0 -64973908,"Company of Heroes Tales of Valor",purchase,1.0,0 -64973908,"Counter-Strike",purchase,1.0,0 -64973908,"Counter-Strike Condition Zero",purchase,1.0,0 -64973908,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -64973908,"Counter-Strike Source",purchase,1.0,0 -64973908,"Crysis 2 Maximum Edition",purchase,1.0,0 -64973908,"Darksiders",purchase,1.0,0 -64973908,"Day of Defeat Source",purchase,1.0,0 -64973908,"Dead Rising 2 Off the Record",purchase,1.0,0 -64973908,"Dead Space",purchase,1.0,0 -64973908,"Deathmatch Classic",purchase,1.0,0 -64973908,"Defiance",purchase,1.0,0 -64973908,"Dungeon Siege 2",purchase,1.0,0 -64973908,"Dungeon Siege III",purchase,1.0,0 -64973908,"Dustforce",purchase,1.0,0 -64973908,"Empire Total War",purchase,1.0,0 -64973908,"Endless Space",purchase,1.0,0 -64973908,"Fallen Enchantress Legendary Heroes",purchase,1.0,0 -64973908,"Full Mojo Rampage",purchase,1.0,0 -64973908,"GRID",purchase,1.0,0 -64973908,"GRID 2",purchase,1.0,0 -64973908,"Half-Life 2 Deathmatch",purchase,1.0,0 -64973908,"Half-Life 2 Episode One",purchase,1.0,0 -64973908,"Half-Life 2 Episode Two",purchase,1.0,0 -64973908,"Half-Life 2 Lost Coast",purchase,1.0,0 -64973908,"Half-Life Deathmatch Source",purchase,1.0,0 -64973908,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",purchase,1.0,0 -64973908,"Insurgency",purchase,1.0,0 -64973908,"KickBeat Steam Edition",purchase,1.0,0 -64973908,"LIMBO",purchase,1.0,0 -64973908,"Lost Planet 3",purchase,1.0,0 -64973908,"Magicka",purchase,1.0,0 -64973908,"Magicka Vietnam",purchase,1.0,0 -64973908,"Max Payne 3 Season Pass",purchase,1.0,0 -64973908,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -64973908,"Medal of Honor(TM) Single Player",purchase,1.0,0 -64973908,"Medal of Honor Pre-Order",purchase,1.0,0 -64973908,"Mirror's Edge",purchase,1.0,0 -64973908,"Natural Selection 2",purchase,1.0,0 -64973908,"NiGHTS into Dreams...",purchase,1.0,0 -64973908,"Orcs Must Die!",purchase,1.0,0 -64973908,"PAYDAY The Heist",purchase,1.0,0 -64973908,"Red Faction Armageddon",purchase,1.0,0 -64973908,"Remember Me",purchase,1.0,0 -64973908,"Ricochet",purchase,1.0,0 -64973908,"Rocksmith",purchase,1.0,0 -64973908,"Sanctum",purchase,1.0,0 -64973908,"Sanctum 2",purchase,1.0,0 -64973908,"SEGA Bass Fishing",purchase,1.0,0 -64973908,"Serious Sam 2",purchase,1.0,0 -64973908,"Serious Sam 3 BFE",purchase,1.0,0 -64973908,"Serious Sam The Random Encounter",purchase,1.0,0 -64973908,"Serious Sam Classic The First Encounter",purchase,1.0,0 -64973908,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -64973908,"Serious Sam Classics Revolution",purchase,1.0,0 -64973908,"Serious Sam Double D XXL",purchase,1.0,0 -64973908,"Shadow Warrior",purchase,1.0,0 -64973908,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -64973908,"Sonic Adventure DX",purchase,1.0,0 -64973908,"Tesla Effect",purchase,1.0,0 -64973908,"The Incredible Adventures of Van Helsing II",purchase,1.0,0 -64973908,"The Stanley Parable",purchase,1.0,0 -64973908,"The Walking Dead Season Two",purchase,1.0,0 -64973908,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -64973908,"The Witcher Enhanced Edition",purchase,1.0,0 -64973908,"Ticket to Ride - Europe",purchase,1.0,0 -64973908,"Ticket to Ride - Legendary Asia",purchase,1.0,0 -64973908,"Ticket to Ride - Switzerland",purchase,1.0,0 -64973908,"Ticket to Ride - USA 1910",purchase,1.0,0 -64973908,"Titan Quest",purchase,1.0,0 -64973908,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -176949398,"Dota 2",purchase,1.0,0 -176949398,"Dota 2",play,916.0,0 -209658229,"Left 4 Dead 2",purchase,1.0,0 -209658229,"Left 4 Dead 2",play,240.0,0 -235125671,"RollerCoaster Tycoon 2 Triple Thrill Pack",purchase,1.0,0 -235125671,"RollerCoaster Tycoon 2 Triple Thrill Pack",play,42.0,0 -35290890,"Counter-Strike",purchase,1.0,0 -35290890,"Counter-Strike",play,0.2,0 -35290890,"Counter-Strike Condition Zero",purchase,1.0,0 -35290890,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -35290890,"Day of Defeat",purchase,1.0,0 -35290890,"Deathmatch Classic",purchase,1.0,0 -35290890,"Ricochet",purchase,1.0,0 -86502662,"Terraria",purchase,1.0,0 -86502662,"Terraria",play,22.0,0 -86502662,"Half-Life Source",purchase,1.0,0 -86502662,"Half-Life Source",play,1.0,0 -86502662,"Counter-Strike",purchase,1.0,0 -86502662,"Counter-Strike",play,0.2,0 -86502662,"Counter-Strike Condition Zero",purchase,1.0,0 -86502662,"Counter-Strike Condition Zero",play,0.2,0 -86502662,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -86502662,"Half-Life Deathmatch Source",purchase,1.0,0 -174137629,"Dota 2",purchase,1.0,0 -174137629,"Dota 2",play,908.0,0 -174137629,"Unturned",purchase,1.0,0 -174137629,"Unturned",play,1.8,0 -174137629,"AdVenture Capitalist",purchase,1.0,0 -174137629,"APB Reloaded",purchase,1.0,0 -174137629,"Archeblade",purchase,1.0,0 -174137629,"Champions Online",purchase,1.0,0 -174137629,"City of Steam Arkadia",purchase,1.0,0 -174137629,"Clicker Heroes",purchase,1.0,0 -174137629,"Divine Souls",purchase,1.0,0 -174137629,"Dragons and Titans",purchase,1.0,0 -174137629,"EverQuest Free-to-Play",purchase,1.0,0 -174137629,"EverQuest II",purchase,1.0,0 -174137629,"Firefall",purchase,1.0,0 -174137629,"FreeStyle2 Street Basketball",purchase,1.0,0 -174137629,"Global Agenda",purchase,1.0,0 -174137629,"Magicka Wizard Wars",purchase,1.0,0 -174137629,"March of War",purchase,1.0,0 -174137629,"Neverwinter",purchase,1.0,0 -174137629,"Panzar",purchase,1.0,0 -174137629,"Rusty Hearts",purchase,1.0,0 -174137629,"Spiral Knights",purchase,1.0,0 -174137629,"Star Conflict",purchase,1.0,0 -174137629,"Star Trek Online",purchase,1.0,0 -174137629,"Stronghold Kingdoms",purchase,1.0,0 -174137629,"Super Monday Night Combat",purchase,1.0,0 -174137629,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -174137629,"Tribes Ascend",purchase,1.0,0 -174137629,"Warframe",purchase,1.0,0 -162692942,"Dota 2",purchase,1.0,0 -162692942,"Dota 2",play,0.9,0 -75463760,"Prison Architect",purchase,1.0,0 -75463760,"Prison Architect",play,180.0,0 -75463760,"Cities Skylines",purchase,1.0,0 -75463760,"Cities Skylines",play,111.0,0 -75463760,"Project Zomboid",purchase,1.0,0 -75463760,"Project Zomboid",play,51.0,0 -75463760,"Software Inc.",purchase,1.0,0 -75463760,"Software Inc.",play,24.0,0 -75463760,"Sid Meier's Civilization V",purchase,1.0,0 -75463760,"Sid Meier's Civilization V",play,24.0,0 -75463760,"Euro Truck Simulator 2",purchase,1.0,0 -75463760,"Euro Truck Simulator 2",play,10.0,0 -75463760,"Tropico 5",purchase,1.0,0 -75463760,"Tropico 5",play,8.3,0 -75463760,"7 Days to Die",purchase,1.0,0 -75463760,"7 Days to Die",play,6.9,0 -75463760,"Age of Empires II HD Edition",purchase,1.0,0 -75463760,"Age of Empires II HD Edition",play,6.9,0 -75463760,"Automation - The Car Company Tycoon Game",purchase,1.0,0 -75463760,"Automation - The Car Company Tycoon Game",play,5.5,0 -75463760,"Company of Heroes (New Steam Version)",purchase,1.0,0 -75463760,"Company of Heroes (New Steam Version)",play,5.0,0 -75463760,"TrackMania Stadium",purchase,1.0,0 -75463760,"TrackMania Stadium",play,4.5,0 -75463760,"Spore",purchase,1.0,0 -75463760,"Spore",play,4.4,0 -75463760,"Cities XL Platinum",purchase,1.0,0 -75463760,"Cities XL Platinum",play,4.0,0 -75463760,"Mini Metro",purchase,1.0,0 -75463760,"Mini Metro",play,3.6,0 -75463760,"Cities in Motion 2",purchase,1.0,0 -75463760,"Cities in Motion 2",play,3.4,0 -75463760,"Borderlands 2",purchase,1.0,0 -75463760,"Borderlands 2",play,3.1,0 -75463760,"Poly Bridge",purchase,1.0,0 -75463760,"Poly Bridge",play,2.0,0 -75463760,"The Elder Scrolls V Skyrim",purchase,1.0,0 -75463760,"The Elder Scrolls V Skyrim",play,1.5,0 -75463760,"Grand Theft Auto V",purchase,1.0,0 -75463760,"Grand Theft Auto V",play,1.5,0 -75463760,"Democracy 3",purchase,1.0,0 -75463760,"Democracy 3",play,0.5,0 -75463760,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -75463760,"Microsoft Flight Simulator X Steam Edition",play,0.3,0 -75463760,"RollerCoaster Tycoon 2 Triple Thrill Pack",purchase,1.0,0 -75463760,"RollerCoaster Tycoon 2 Triple Thrill Pack",play,0.1,0 -75463760,"Railroad Tycoon 3",purchase,1.0,0 -75463760,"Tropico 4",purchase,1.0,0 -75463760,"Company of Heroes",purchase,1.0,0 -75463760,"Hospital Tycoon",purchase,1.0,0 -75463760,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -75463760,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -75463760,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -75463760,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -75463760,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -125404736,"Sonic Generations",purchase,1.0,0 -125404736,"Sonic Generations",play,1.9,0 -125404736,"Dead Island",purchase,1.0,0 -125404736,"Dead Island",play,0.6,0 -141003701,"Team Fortress 2",purchase,1.0,0 -141003701,"Team Fortress 2",play,5.4,0 -80189887,"Mount & Blade Warband",purchase,1.0,0 -80189887,"Mount & Blade Warband",play,470.0,0 -80189887,"Counter-Strike Global Offensive",purchase,1.0,0 -80189887,"Counter-Strike Global Offensive",play,204.0,0 -80189887,"The Elder Scrolls V Skyrim",purchase,1.0,0 -80189887,"The Elder Scrolls V Skyrim",play,197.0,0 -80189887,"DC Universe Online",purchase,1.0,0 -80189887,"DC Universe Online",play,157.0,0 -80189887,"PAYDAY 2",purchase,1.0,0 -80189887,"PAYDAY 2",play,143.0,0 -80189887,"Team Fortress 2",purchase,1.0,0 -80189887,"Team Fortress 2",play,110.0,0 -80189887,"Arma 3",purchase,1.0,0 -80189887,"Arma 3",play,84.0,0 -80189887,"Call of Duty World at War",purchase,1.0,0 -80189887,"Call of Duty World at War",play,79.0,0 -80189887,"Assassin's Creed IV Black Flag",purchase,1.0,0 -80189887,"Assassin's Creed IV Black Flag",play,77.0,0 -80189887,"Dungeon Defenders",purchase,1.0,0 -80189887,"Dungeon Defenders",play,67.0,0 -80189887,"Left 4 Dead 2",purchase,1.0,0 -80189887,"Left 4 Dead 2",play,63.0,0 -80189887,"War Thunder",purchase,1.0,0 -80189887,"War Thunder",play,63.0,0 -80189887,"DARK SOULS II",purchase,1.0,0 -80189887,"DARK SOULS II",play,60.0,0 -80189887,"Grand Theft Auto V",purchase,1.0,0 -80189887,"Grand Theft Auto V",play,59.0,0 -80189887,"Borderlands 2",purchase,1.0,0 -80189887,"Borderlands 2",play,56.0,0 -80189887,"Garry's Mod",purchase,1.0,0 -80189887,"Garry's Mod",play,53.0,0 -80189887,"Dota 2",purchase,1.0,0 -80189887,"Dota 2",play,53.0,0 -80189887,"Killing Floor",purchase,1.0,0 -80189887,"Killing Floor",play,50.0,0 -80189887,"Total War SHOGUN 2",purchase,1.0,0 -80189887,"Total War SHOGUN 2",play,46.0,0 -80189887,"Depth",purchase,1.0,0 -80189887,"Depth",play,44.0,0 -80189887,"PAYDAY The Heist",purchase,1.0,0 -80189887,"PAYDAY The Heist",play,38.0,0 -80189887,"Mafia II",purchase,1.0,0 -80189887,"Mafia II",play,38.0,0 -80189887,"Star Wars - Battlefront II",purchase,1.0,0 -80189887,"Star Wars - Battlefront II",play,34.0,0 -80189887,"Borderlands The Pre-Sequel",purchase,1.0,0 -80189887,"Borderlands The Pre-Sequel",play,34.0,0 -80189887,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -80189887,"Warhammer 40,000 Dawn of War Dark Crusade",play,31.0,0 -80189887,"Warhammer End Times - Vermintide",purchase,1.0,0 -80189887,"Warhammer End Times - Vermintide",play,29.0,0 -80189887,"Elite Dangerous",purchase,1.0,0 -80189887,"Elite Dangerous",play,28.0,0 -80189887,"Just Cause 2",purchase,1.0,0 -80189887,"Just Cause 2",play,28.0,0 -80189887,"Natural Selection 2",purchase,1.0,0 -80189887,"Natural Selection 2",play,25.0,0 -80189887,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -80189887,"Injustice Gods Among Us Ultimate Edition",play,24.0,0 -80189887,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -80189887,"Call of Duty 4 Modern Warfare",play,23.0,0 -80189887,"Middle-earth Shadow of Mordor",purchase,1.0,0 -80189887,"Middle-earth Shadow of Mordor",play,22.0,0 -80189887,"Assassin's Creed III",purchase,1.0,0 -80189887,"Assassin's Creed III",play,19.5,0 -80189887,"Batman Arkham City GOTY",purchase,1.0,0 -80189887,"Batman Arkham City GOTY",play,19.3,0 -80189887,"Chivalry Medieval Warfare",purchase,1.0,0 -80189887,"Chivalry Medieval Warfare",play,18.1,0 -80189887,"Realm of the Mad God",purchase,1.0,0 -80189887,"Realm of the Mad God",play,17.5,0 -80189887,"Ryse Son of Rome",purchase,1.0,0 -80189887,"Ryse Son of Rome",play,14.1,0 -80189887,"Max Payne 3",purchase,1.0,0 -80189887,"Max Payne 3",play,14.0,0 -80189887,"Dead Rising 2",purchase,1.0,0 -80189887,"Dead Rising 2",play,12.1,0 -80189887,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -80189887,"The Witcher 2 Assassins of Kings Enhanced Edition",play,10.5,0 -80189887,"Mirror's Edge",purchase,1.0,0 -80189887,"Mirror's Edge",play,9.0,0 -80189887,"Evolve",purchase,1.0,0 -80189887,"Evolve",play,9.0,0 -80189887,"Killing Floor 2",purchase,1.0,0 -80189887,"Killing Floor 2",play,8.9,0 -80189887,"Mortal Kombat X",purchase,1.0,0 -80189887,"Mortal Kombat X",play,8.8,0 -80189887,"PlanetSide 2",purchase,1.0,0 -80189887,"PlanetSide 2",play,8.5,0 -80189887,"Sniper Elite V2",purchase,1.0,0 -80189887,"Sniper Elite V2",play,7.2,0 -80189887,"South Park The Stick of Truth",purchase,1.0,0 -80189887,"South Park The Stick of Truth",play,7.1,0 -80189887,"Lost Planet 2",purchase,1.0,0 -80189887,"Lost Planet 2",play,6.8,0 -80189887,"Rocket League",purchase,1.0,0 -80189887,"Rocket League",play,6.8,0 -80189887,"The Lord of the Rings War in the North",purchase,1.0,0 -80189887,"The Lord of the Rings War in the North",play,6.7,0 -80189887,"Star Wars Republic Commando",purchase,1.0,0 -80189887,"Star Wars Republic Commando",play,6.5,0 -80189887,"Verdun",purchase,1.0,0 -80189887,"Verdun",play,6.2,0 -80189887,"Sniper Elite Nazi Zombie Army",purchase,1.0,0 -80189887,"Sniper Elite Nazi Zombie Army",play,5.9,0 -80189887,"Super Monday Night Combat",purchase,1.0,0 -80189887,"Super Monday Night Combat",play,5.4,0 -80189887,"Counter-Strike Source",purchase,1.0,0 -80189887,"Counter-Strike Source",play,5.4,0 -80189887,"Medal of Honor(TM) Single Player",purchase,1.0,0 -80189887,"Medal of Honor(TM) Single Player",play,5.2,0 -80189887,"Rust",purchase,1.0,0 -80189887,"Rust",play,5.1,0 -80189887,"Dishonored",purchase,1.0,0 -80189887,"Dishonored",play,4.9,0 -80189887,"Loadout",purchase,1.0,0 -80189887,"Loadout",play,4.9,0 -80189887,"Saints Row The Third",purchase,1.0,0 -80189887,"Saints Row The Third",play,4.6,0 -80189887,"Assassin's Creed Brotherhood",purchase,1.0,0 -80189887,"Assassin's Creed Brotherhood",play,4.5,0 -80189887,"Far Cry 3",purchase,1.0,0 -80189887,"Far Cry 3",play,3.8,0 -80189887,"Devil May Cry 4",purchase,1.0,0 -80189887,"Devil May Cry 4",play,3.6,0 -80189887,"Warhammer 40,000 Space Marine",purchase,1.0,0 -80189887,"Warhammer 40,000 Space Marine",play,3.5,0 -80189887,"Cry of Fear",purchase,1.0,0 -80189887,"Cry of Fear",play,3.5,0 -80189887,"Portal 2",purchase,1.0,0 -80189887,"Portal 2",play,3.5,0 -80189887,"Heroes & Generals",purchase,1.0,0 -80189887,"Heroes & Generals",play,3.5,0 -80189887,"Overlord",purchase,1.0,0 -80189887,"Overlord",play,3.3,0 -80189887,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -80189887,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,3.1,0 -80189887,"Insurgency",purchase,1.0,0 -80189887,"Insurgency",play,3.0,0 -80189887,"Dungeon Defenders II",purchase,1.0,0 -80189887,"Dungeon Defenders II",play,3.0,0 -80189887,"Aliens vs. Predator",purchase,1.0,0 -80189887,"Aliens vs. Predator",play,2.9,0 -80189887,"F.E.A.R. 3",purchase,1.0,0 -80189887,"F.E.A.R. 3",play,2.8,0 -80189887,"Orcs Must Die!",purchase,1.0,0 -80189887,"Orcs Must Die!",play,2.4,0 -80189887,"The Darkness II",purchase,1.0,0 -80189887,"The Darkness II",play,2.3,0 -80189887,"Rome Total War",purchase,1.0,0 -80189887,"Rome Total War",play,2.1,0 -80189887,"Crusader Kings II",purchase,1.0,0 -80189887,"Crusader Kings II",play,2.0,0 -80189887,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -80189887,"Batman Arkham Asylum GOTY Edition",play,2.0,0 -80189887,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -80189887,"Warhammer 40,000 Dawn of War Winter Assault",play,1.9,0 -80189887,"Metro 2033",purchase,1.0,0 -80189887,"Metro 2033",play,1.7,0 -80189887,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -80189887,"Warhammer 40,000 Dawn of War II Retribution",play,1.4,0 -80189887,"Planetary Annihilation",purchase,1.0,0 -80189887,"Planetary Annihilation",play,1.2,0 -80189887,"Fistful of Frags",purchase,1.0,0 -80189887,"Fistful of Frags",play,1.1,0 -80189887,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -80189887,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,0.9,0 -80189887,"Path of Exile",purchase,1.0,0 -80189887,"Path of Exile",play,0.9,0 -80189887,"Crysis 2 Maximum Edition",purchase,1.0,0 -80189887,"Crysis 2 Maximum Edition",play,0.8,0 -80189887,"Ascend Hand of Kul",purchase,1.0,0 -80189887,"Ascend Hand of Kul",play,0.5,0 -80189887,"Scribblenauts Unlimited",purchase,1.0,0 -80189887,"Scribblenauts Unlimited",play,0.4,0 -80189887,"Bound By Flame",purchase,1.0,0 -80189887,"Bound By Flame",play,0.4,0 -80189887,"Deus Ex Game of the Year Edition",purchase,1.0,0 -80189887,"Deus Ex Game of the Year Edition",play,0.4,0 -80189887,"The Ship",purchase,1.0,0 -80189887,"The Ship",play,0.3,0 -80189887,"Happy Wars",purchase,1.0,0 -80189887,"Happy Wars",play,0.2,0 -80189887,"The Ship Tutorial",purchase,1.0,0 -80189887,"The Ship Tutorial",play,0.2,0 -80189887,"Hitman Absolution",purchase,1.0,0 -80189887,"Earth 2160",purchase,1.0,0 -80189887,"Tribes Ascend",purchase,1.0,0 -80189887,"Arma 3 Zeus",purchase,1.0,0 -80189887,"CrimeCraft GangWars",purchase,1.0,0 -80189887,"Dream Pinball 3D",purchase,1.0,0 -80189887,"Earth 2150 Trilogy",purchase,1.0,0 -80189887,"Earth 2150 Lost Souls",purchase,1.0,0 -80189887,"Earth 2150 The Moon Project",purchase,1.0,0 -80189887,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -80189887,"Hitman Sniper Challenge",purchase,1.0,0 -80189887,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -80189887,"Knights and Merchants",purchase,1.0,0 -80189887,"KnightShift",purchase,1.0,0 -80189887,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -80189887,"Medal of Honor Pre-Order",purchase,1.0,0 -80189887,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -80189887,"Mount & Blade Warband - Viking Conquest Reforged Edition",purchase,1.0,0 -80189887,"Patch testing for Chivalry",purchase,1.0,0 -80189887,"Pirates of Black Cove Gold",purchase,1.0,0 -80189887,"Planets Under Attack",purchase,1.0,0 -80189887,"Risen 2 - Dark Waters",purchase,1.0,0 -80189887,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -80189887,"Sacred 2 Gold",purchase,1.0,0 -80189887,"Saints Row 2",purchase,1.0,0 -80189887,"Space Hack",purchase,1.0,0 -80189887,"The Ship Single Player",purchase,1.0,0 -80189887,"Two Worlds Epic Edition",purchase,1.0,0 -80189887,"Warhammer End Times - Vermintide Sigmar's Blessing",purchase,1.0,0 -80189887,"World War II Panzer Claws",purchase,1.0,0 -198996945,"War for the Overworld",purchase,1.0,0 -198996945,"War for the Overworld",play,1.6,0 -242136569,"Dota 2",purchase,1.0,0 -242136569,"Dota 2",play,0.4,0 -147149544,"Dota 2",purchase,1.0,0 -147149544,"Dota 2",play,0.4,0 -127974833,"Team Fortress 2",purchase,1.0,0 -127974833,"Team Fortress 2",play,4.0,0 -191126693,"Grand Theft Auto V",purchase,1.0,0 -191126693,"Grand Theft Auto V",play,209.0,0 -191126693,"Total War ROME II - Emperor Edition",purchase,1.0,0 -191126693,"Total War ROME II - Emperor Edition",play,206.0,0 -191126693,"Far Cry 4",purchase,1.0,0 -191126693,"Far Cry 4",play,102.0,0 -191126693,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -191126693,"METAL GEAR SOLID V THE PHANTOM PAIN",play,81.0,0 -191126693,"The Elder Scrolls V Skyrim",purchase,1.0,0 -191126693,"The Elder Scrolls V Skyrim",play,75.0,0 -191126693,"Fallout 4",purchase,1.0,0 -191126693,"Fallout 4",play,73.0,0 -191126693,"Middle-earth Shadow of Mordor",purchase,1.0,0 -191126693,"Middle-earth Shadow of Mordor",play,64.0,0 -191126693,"LEGO Batman 3 Beyond Gotham",purchase,1.0,0 -191126693,"LEGO Batman 3 Beyond Gotham",play,49.0,0 -191126693,"GRID Autosport",purchase,1.0,0 -191126693,"GRID Autosport",play,33.0,0 -191126693,"PROTOTYPE 2",purchase,1.0,0 -191126693,"PROTOTYPE 2",play,31.0,0 -191126693,"Project CARS",purchase,1.0,0 -191126693,"Project CARS",play,26.0,0 -191126693,"Assetto Corsa",purchase,1.0,0 -191126693,"Assetto Corsa",play,22.0,0 -191126693,"Just Cause 2",purchase,1.0,0 -191126693,"Just Cause 2",play,19.5,0 -191126693,"Arma 3",purchase,1.0,0 -191126693,"Arma 3",play,19.1,0 -191126693,"Hitman Absolution",purchase,1.0,0 -191126693,"Hitman Absolution",play,18.3,0 -191126693,"F1 2015",purchase,1.0,0 -191126693,"F1 2015",play,14.1,0 -191126693,"Aliens vs. Predator",purchase,1.0,0 -191126693,"Aliens vs. Predator",play,14.0,0 -191126693,"Batman Arkham Origins",purchase,1.0,0 -191126693,"Batman Arkham Origins",play,13.1,0 -191126693,"F1 2013",purchase,1.0,0 -191126693,"F1 2013",play,12.8,0 -191126693,"DiRT Rally",purchase,1.0,0 -191126693,"DiRT Rally",play,11.2,0 -191126693,"EVGA PrecisionX 16",purchase,1.0,0 -191126693,"EVGA PrecisionX 16",play,10.9,0 -191126693,"Total War SHOGUN 2",purchase,1.0,0 -191126693,"Total War SHOGUN 2",play,7.9,0 -191126693,"DiRT 3 Complete Edition",purchase,1.0,0 -191126693,"DiRT 3 Complete Edition",play,7.1,0 -191126693,"DayZ",purchase,1.0,0 -191126693,"DayZ",play,6.4,0 -191126693,"Sniper Elite 3",purchase,1.0,0 -191126693,"Sniper Elite 3",play,6.2,0 -191126693,"Binary Domain",purchase,1.0,0 -191126693,"Binary Domain",play,5.2,0 -191126693,"Warframe",purchase,1.0,0 -191126693,"Warframe",play,3.3,0 -191126693,"WRC 5",purchase,1.0,0 -191126693,"WRC 5",play,2.2,0 -191126693,"Empire Total War",purchase,1.0,0 -191126693,"Empire Total War",play,1.3,0 -191126693,"RaceRoom Racing Experience ",purchase,1.0,0 -191126693,"RaceRoom Racing Experience ",play,0.9,0 -191126693,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -191126693,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -191126693,"Arma 3 Zeus",purchase,1.0,0 -191126693,"Assetto Corsa - Dream Pack 1",purchase,1.0,0 -191126693,"Hitman Sniper Challenge",purchase,1.0,0 -191126693,"Project CARS - Audi Ruapuna Speedway Expansion Pack",purchase,1.0,0 -191126693,"Project CARS - Modified Car Pack ",purchase,1.0,0 -191126693,"Project CARS - Old Vs New Car Pack",purchase,1.0,0 -191126693,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -191126693,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -191126693,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -191126693,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -191126693,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -191126693,"WRC 5 - WRC Concept Car S",purchase,1.0,0 -271006912,"Counter-Strike Global Offensive",purchase,1.0,0 -271006912,"Counter-Strike Global Offensive",play,11.6,0 -122189133,"Team Fortress 2",purchase,1.0,0 -122189133,"Team Fortress 2",play,1.5,0 -25710556,"Day of Defeat Source",purchase,1.0,0 -116831291,"Dota 2",purchase,1.0,0 -116831291,"Dota 2",play,1343.0,0 -116831291,"PAYDAY 2",purchase,1.0,0 -116831291,"PAYDAY 2",play,116.0,0 -116831291,"The Legend of Korra",purchase,1.0,0 -116831291,"The Legend of Korra",play,0.3,0 -238002125,"Dota 2",purchase,1.0,0 -238002125,"Dota 2",play,1.7,0 -238002125,"Strife",purchase,1.0,0 -84221022,"Hitman Absolution",purchase,1.0,0 -84221022,"Hitman Absolution",play,11.6,0 -84221022,"Duke Nukem Forever",purchase,1.0,0 -84221022,"Duke Nukem Forever",play,7.8,0 -84221022,"The Vanishing of Ethan Carter",purchase,1.0,0 -84221022,"The Vanishing of Ethan Carter",play,2.3,0 -84221022,"The Vanishing of Ethan Carter Redux",purchase,1.0,0 -28453247,"Counter-Strike Source",purchase,1.0,0 -28453247,"Counter-Strike Source",play,0.1,0 -28453247,"Half-Life 2",purchase,1.0,0 -28453247,"Half-Life 2 Deathmatch",purchase,1.0,0 -28453247,"Half-Life 2 Lost Coast",purchase,1.0,0 -248561888,"Dota 2",purchase,1.0,0 -248561888,"Dota 2",play,7.1,0 -166125977,"Terraria",purchase,1.0,0 -166125977,"Terraria",play,15.4,0 -166125977,"Rocket League",purchase,1.0,0 -166125977,"Rocket League",play,0.3,0 -166125977,"Robocraft",purchase,1.0,0 -166125977,"Robocraft",play,0.2,0 -166125977,"Magicka Wizard Wars",purchase,1.0,0 -194970068,"Dota 2",purchase,1.0,0 -194970068,"Dota 2",play,2291.0,0 -194970068,"ARK Survival Evolved",purchase,1.0,0 -194970068,"ARK Survival Evolved",play,292.0,0 -194970068,"Team Fortress 2",purchase,1.0,0 -194970068,"Team Fortress 2",play,115.0,0 -194970068,"Primal Carnage",purchase,1.0,0 -194970068,"Primal Carnage",play,12.5,0 -194970068,"APB Reloaded",purchase,1.0,0 -194970068,"APB Reloaded",play,8.6,0 -194970068,"Dragons and Titans",purchase,1.0,0 -194970068,"Dragons and Titans",play,6.7,0 -194970068,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -194970068,"School of Dragons How to Train Your Dragon",play,5.2,0 -194970068,"Warframe",purchase,1.0,0 -194970068,"Warframe",play,4.7,0 -194970068,"RIFT",purchase,1.0,0 -194970068,"RIFT",play,2.8,0 -194970068,"Heroes & Generals",purchase,1.0,0 -194970068,"Heroes & Generals",play,1.8,0 -194970068,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -194970068,"Tom Clancy's Ghost Recon Phantoms - NA",play,1.7,0 -194970068,"Trove",purchase,1.0,0 -194970068,"Trove",play,1.6,0 -194970068,"Dirty Bomb",purchase,1.0,0 -194970068,"Dirty Bomb",play,0.6,0 -194970068,"Kingdom Wars",purchase,1.0,0 -194970068,"Kingdom Wars",play,0.1,0 -194970068,"Stronghold Kingdoms",purchase,1.0,0 -194970068,"Stronghold Kingdoms",play,0.1,0 -194970068,"AdVenture Capitalist",purchase,1.0,0 -194970068,"AdVenture Capitalist",play,0.1,0 -194970068,"Unturned",purchase,1.0,0 -194970068,"Marvel Heroes 2015",purchase,1.0,0 -194970068,"Audition Online",purchase,1.0,0 -194970068,"Time Clickers",purchase,1.0,0 -194970068,"Warface",purchase,1.0,0 -194970068,"Aura Kingdom",purchase,1.0,0 -194970068,"Aura Kingdom - Winter Gift",purchase,1.0,0 -194970068,"Dungeon Defenders II",purchase,1.0,0 -194970068,"Free to Play",purchase,1.0,0 -194970068,"RaceRoom Racing Experience ",purchase,1.0,0 -194970068,"Sakura Clicker",purchase,1.0,0 -142799594,"Counter-Strike Global Offensive",purchase,1.0,0 -142799594,"Counter-Strike Global Offensive",play,422.0,0 -142799594,"Clicker Heroes",purchase,1.0,0 -142799594,"Clicker Heroes",play,100.0,0 -142799594,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -142799594,"Tom Clancy's Ghost Recon Phantoms - NA",play,48.0,0 -142799594,"Left 4 Dead 2",purchase,1.0,0 -142799594,"Left 4 Dead 2",play,39.0,0 -142799594,"Grand Theft Auto V",purchase,1.0,0 -142799594,"Grand Theft Auto V",play,28.0,0 -142799594,"Warframe",purchase,1.0,0 -142799594,"Warframe",play,24.0,0 -142799594,"Chivalry Medieval Warfare",purchase,1.0,0 -142799594,"Chivalry Medieval Warfare",play,18.1,0 -142799594,"Warface",purchase,1.0,0 -142799594,"Warface",play,15.5,0 -142799594,"Team Fortress 2",purchase,1.0,0 -142799594,"Team Fortress 2",play,9.7,0 -142799594,"Alien Swarm",purchase,1.0,0 -142799594,"Alien Swarm",play,8.2,0 -142799594,"The Forest",purchase,1.0,0 -142799594,"The Forest",play,7.1,0 -142799594,"Quake Live",purchase,1.0,0 -142799594,"Quake Live",play,5.2,0 -142799594,"War Thunder",purchase,1.0,0 -142799594,"War Thunder",play,4.9,0 -142799594,"Unturned",purchase,1.0,0 -142799594,"Unturned",play,3.7,0 -142799594,"Rust",purchase,1.0,0 -142799594,"Rust",play,2.1,0 -142799594,"Trove",purchase,1.0,0 -142799594,"Trove",play,1.1,0 -142799594,"Garry's Mod",purchase,1.0,0 -142799594,"Garry's Mod",play,1.0,0 -142799594,"Robocraft",purchase,1.0,0 -142799594,"Robocraft",play,1.0,0 -142799594,"Mitos.is The Game",purchase,1.0,0 -142799594,"Mitos.is The Game",play,0.7,0 -142799594,"Loadout",purchase,1.0,0 -142799594,"Loadout",play,0.7,0 -142799594,"Soccer Manager 2015",purchase,1.0,0 -142799594,"Soccer Manager 2015",play,0.2,0 -142799594,"AdVenture Capitalist",purchase,1.0,0 -142799594,"AdVenture Capitalist",play,0.2,0 -142799594,"Dead Island Epidemic",purchase,1.0,0 -142799594,"Divine Souls",purchase,1.0,0 -142799594,"Patch testing for Chivalry",purchase,1.0,0 -75517266,"Star Trek D-A-C",purchase,1.0,0 -75517266,"Star Trek D-A-C",play,0.2,0 -129425022,"Counter-Strike Condition Zero",purchase,1.0,0 -129425022,"Counter-Strike Condition Zero",play,8.3,0 -129425022,"Counter-Strike",purchase,1.0,0 -129425022,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -214169647,"Dota 2",purchase,1.0,0 -214169647,"Dota 2",play,576.0,0 -204748501,"Dota 2",purchase,1.0,0 -204748501,"Dota 2",play,0.7,0 -221958385,"Counter-Strike Global Offensive",purchase,1.0,0 -221958385,"Counter-Strike Global Offensive",play,356.0,0 -221958385,"Dota 2",purchase,1.0,0 -221958385,"Dota 2",play,19.7,0 -221958385,"APB Reloaded",purchase,1.0,0 -221958385,"Archeblade",purchase,1.0,0 -221958385,"Clicker Heroes",purchase,1.0,0 -221958385,"Firefall",purchase,1.0,0 -221958385,"Free to Play",purchase,1.0,0 -221958385,"Loadout",purchase,1.0,0 -221958385,"Neverwinter",purchase,1.0,0 -221958385,"Puzzle Pirates",purchase,1.0,0 -221958385,"Quake Live",purchase,1.0,0 -221958385,"Requiem",purchase,1.0,0 -221958385,"RIFT",purchase,1.0,0 -221958385,"Stronghold Kingdoms",purchase,1.0,0 -221958385,"Tribes Ascend",purchase,1.0,0 -221958385,"Warframe",purchase,1.0,0 -141156585,"Dota 2",purchase,1.0,0 -141156585,"Dota 2",play,0.1,0 -204296172,"Dota 2",purchase,1.0,0 -204296172,"Dota 2",play,466.0,0 -204296172,"GunZ 2 The Second Duel",purchase,1.0,0 -204296172,"HAWKEN",purchase,1.0,0 -204296172,"METAL SLUG DEFENSE",purchase,1.0,0 -130062637,"Dota 2",purchase,1.0,0 -130062637,"Dota 2",play,14.1,0 -245504972,"Dota 2",purchase,1.0,0 -245504972,"Dota 2",play,8.3,0 -117118007,"Fallout New Vegas",purchase,1.0,0 -117118007,"Fallout New Vegas",play,0.8,0 -298431593,"Team Fortress 2",purchase,1.0,0 -298431593,"Team Fortress 2",play,6.7,0 -298431593,"The Secret of Tremendous Corporation",purchase,1.0,0 -298431593,"The Secret of Tremendous Corporation",play,1.3,0 -298431593,"AdVenture Capitalist",purchase,1.0,0 -298431593,"AdVenture Capitalist",play,0.4,0 -298431593,"Back to Dinosaur Island ",purchase,1.0,0 -77903318,"Alien Swarm",purchase,1.0,0 -77903318,"Alien Swarm",play,15.0,0 -77903318,"Half-Life 2 Deathmatch",purchase,1.0,0 -77903318,"Half-Life 2 Deathmatch",play,4.0,0 -77903318,"Team Fortress 2",purchase,1.0,0 -77903318,"Team Fortress 2",play,1.0,0 -77903318,"Half-Life 2 Lost Coast",purchase,1.0,0 -77903318,"Half-Life 2 Lost Coast",play,0.5,0 -299581299,"Terraria",purchase,1.0,0 -299581299,"Terraria",play,1.8,0 -299581299,"DmC Devil May Cry",purchase,1.0,0 -54637394,"Counter-Strike Source",purchase,1.0,0 -54637394,"Counter-Strike Source",play,1206.0,0 -54637394,"Killing Floor",purchase,1.0,0 -54637394,"Killing Floor",play,253.0,0 -54637394,"Team Fortress 2",purchase,1.0,0 -54637394,"Team Fortress 2",play,191.0,0 -54637394,"Counter-Strike Global Offensive",purchase,1.0,0 -54637394,"Counter-Strike Global Offensive",play,135.0,0 -54637394,"Fallout New Vegas",purchase,1.0,0 -54637394,"Fallout New Vegas",play,83.0,0 -54637394,"Garry's Mod",purchase,1.0,0 -54637394,"Garry's Mod",play,73.0,0 -54637394,"Left 4 Dead 2",purchase,1.0,0 -54637394,"Left 4 Dead 2",play,71.0,0 -54637394,"Sid Meier's Civilization V",purchase,1.0,0 -54637394,"Sid Meier's Civilization V",play,64.0,0 -54637394,"Deus Ex Human Revolution",purchase,1.0,0 -54637394,"Deus Ex Human Revolution",play,47.0,0 -54637394,"The Witcher Enhanced Edition",purchase,1.0,0 -54637394,"The Witcher Enhanced Edition",play,37.0,0 -54637394,"Counter-Strike",purchase,1.0,0 -54637394,"Counter-Strike",play,34.0,0 -54637394,"Borderlands",purchase,1.0,0 -54637394,"Borderlands",play,28.0,0 -54637394,"Terraria",purchase,1.0,0 -54637394,"Terraria",play,28.0,0 -54637394,"Half-Life 2",purchase,1.0,0 -54637394,"Half-Life 2",play,24.0,0 -54637394,"Dishonored",purchase,1.0,0 -54637394,"Dishonored",play,21.0,0 -54637394,"Saints Row The Third",purchase,1.0,0 -54637394,"Saints Row The Third",play,19.0,0 -54637394,"PAYDAY 2",purchase,1.0,0 -54637394,"PAYDAY 2",play,16.4,0 -54637394,"PAYDAY The Heist",purchase,1.0,0 -54637394,"PAYDAY The Heist",play,14.9,0 -54637394,"The Walking Dead",purchase,1.0,0 -54637394,"The Walking Dead",play,13.3,0 -54637394,"Portal 2",purchase,1.0,0 -54637394,"Portal 2",play,13.3,0 -54637394,"Half-Life 2 Episode Two",purchase,1.0,0 -54637394,"Half-Life 2 Episode Two",play,10.2,0 -54637394,"Metro 2033",purchase,1.0,0 -54637394,"Metro 2033",play,9.4,0 -54637394,"The Lord of the Rings War in the North",purchase,1.0,0 -54637394,"The Lord of the Rings War in the North",play,7.9,0 -54637394,"The Binding of Isaac",purchase,1.0,0 -54637394,"The Binding of Isaac",play,7.5,0 -54637394,"Unturned",purchase,1.0,0 -54637394,"Unturned",play,6.2,0 -54637394,"Half-Life",purchase,1.0,0 -54637394,"Half-Life",play,6.0,0 -54637394,"Half-Life 2 Episode One",purchase,1.0,0 -54637394,"Half-Life 2 Episode One",play,5.8,0 -54637394,"Mirror's Edge",purchase,1.0,0 -54637394,"Mirror's Edge",play,5.6,0 -54637394,"Dota 2",purchase,1.0,0 -54637394,"Dota 2",play,5.5,0 -54637394,"Poker Night at the Inventory",purchase,1.0,0 -54637394,"Poker Night at the Inventory",play,5.3,0 -54637394,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -54637394,"The Witcher 2 Assassins of Kings Enhanced Edition",play,5.1,0 -54637394,"Dead Island",purchase,1.0,0 -54637394,"Dead Island",play,4.9,0 -54637394,"Shank",purchase,1.0,0 -54637394,"Shank",play,4.5,0 -54637394,"F.E.A.R. 3",purchase,1.0,0 -54637394,"F.E.A.R. 3",play,4.4,0 -54637394,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -54637394,"Sam & Max 301 The Penal Zone",play,4.0,0 -54637394,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -54637394,"Deus Ex Human Revolution - The Missing Link",play,3.6,0 -54637394,"Half-Life Blue Shift",purchase,1.0,0 -54637394,"Half-Life Blue Shift",play,3.5,0 -54637394,"Oddworld Abe's Oddysee",purchase,1.0,0 -54637394,"Oddworld Abe's Oddysee",play,3.3,0 -54637394,"Portal",purchase,1.0,0 -54637394,"Portal",play,3.2,0 -54637394,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -54637394,"Sam & Max 302 The Tomb of Sammun-Mak",play,3.2,0 -54637394,"Half-Life Opposing Force",purchase,1.0,0 -54637394,"Half-Life Opposing Force",play,3.1,0 -54637394,"Don't Starve",purchase,1.0,0 -54637394,"Don't Starve",play,3.1,0 -54637394,"Dead Space",purchase,1.0,0 -54637394,"Dead Space",play,3.0,0 -54637394,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -54637394,"Sam & Max 304 Beyond the Alley of the Dolls",play,3.0,0 -54637394,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -54637394,"Sam & Max 303 They Stole Max's Brain!",play,2.9,0 -54637394,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -54637394,"Sam & Max 305 The City that Dares not Sleep",play,2.8,0 -54637394,"Synergy",purchase,1.0,0 -54637394,"Synergy",play,2.1,0 -54637394,"Magicka",purchase,1.0,0 -54637394,"Magicka",play,1.6,0 -54637394,"Alien Swarm",purchase,1.0,0 -54637394,"Alien Swarm",play,1.4,0 -54637394,"Deus Ex Game of the Year Edition",purchase,1.0,0 -54637394,"Deus Ex Game of the Year Edition",play,1.2,0 -54637394,"Commandos Behind Enemy Lines",purchase,1.0,0 -54637394,"Commandos Behind Enemy Lines",play,1.2,0 -54637394,"No More Room in Hell",purchase,1.0,0 -54637394,"No More Room in Hell",play,1.1,0 -54637394,"Oddworld Abe's Exoddus",purchase,1.0,0 -54637394,"Oddworld Abe's Exoddus",play,1.0,0 -54637394,"BIT.TRIP RUNNER",purchase,1.0,0 -54637394,"BIT.TRIP RUNNER",play,0.8,0 -54637394,"Infestation Survivor Stories",purchase,1.0,0 -54637394,"Infestation Survivor Stories",play,0.8,0 -54637394,"Monday Night Combat",purchase,1.0,0 -54637394,"Monday Night Combat",play,0.8,0 -54637394,"Commandos 3 Destination Berlin",purchase,1.0,0 -54637394,"Commandos 3 Destination Berlin",play,0.7,0 -54637394,"NightSky",purchase,1.0,0 -54637394,"NightSky",play,0.5,0 -54637394,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -54637394,"Burnout Paradise The Ultimate Box",play,0.4,0 -54637394,"Don't Starve Together Beta",purchase,1.0,0 -54637394,"Don't Starve Together Beta",play,0.4,0 -54637394,"Half-Life 2 Lost Coast",purchase,1.0,0 -54637394,"Half-Life 2 Lost Coast",play,0.3,0 -54637394,"Half-Life Source",purchase,1.0,0 -54637394,"Half-Life Source",play,0.3,0 -54637394,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -54637394,"Rising Storm/Red Orchestra 2 Multiplayer",play,0.2,0 -54637394,"Super Meat Boy",purchase,1.0,0 -54637394,"Super Meat Boy",play,0.2,0 -54637394,"Half-Life 2 Deathmatch",purchase,1.0,0 -54637394,"Half-Life 2 Deathmatch",play,0.1,0 -54637394,"Mortal Kombat Kollection",purchase,1.0,0 -54637394,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -54637394,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -54637394,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -54637394,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -54637394,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -54637394,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -54637394,"Batman Arkham City GOTY",purchase,1.0,0 -54637394,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -54637394,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -54637394,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -54637394,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -54637394,"Commandos 2 Men of Courage",purchase,1.0,0 -54637394,"Commandos Beyond the Call of Duty",purchase,1.0,0 -54637394,"Counter-Strike Condition Zero",purchase,1.0,0 -54637394,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -54637394,"Crysis 2 Maximum Edition",purchase,1.0,0 -54637394,"Darkest Hour Europe '44-'45",purchase,1.0,0 -54637394,"Day of Defeat Source",purchase,1.0,0 -54637394,"Dead Island Epidemic",purchase,1.0,0 -54637394,"F.E.A.R.",purchase,1.0,0 -54637394,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -54637394,"F.E.A.R. Extraction Point",purchase,1.0,0 -54637394,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -54637394,"Guardians of Middle-earth",purchase,1.0,0 -54637394,"Half-Life Deathmatch Source",purchase,1.0,0 -54637394,"Hector Ep 1",purchase,1.0,0 -54637394,"Hector Ep 2",purchase,1.0,0 -54637394,"Hector Ep 3",purchase,1.0,0 -54637394,"Jamestown",purchase,1.0,0 -54637394,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -54637394,"Mafia II",purchase,1.0,0 -54637394,"Mare Nostrum",purchase,1.0,0 -54637394,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -54637394,"Medal of Honor(TM) Single Player",purchase,1.0,0 -54637394,"Medal of Honor Pre-Order",purchase,1.0,0 -54637394,"PAYDAY The Heist Game Soundtrack",purchase,1.0,0 -54637394,"PAYDAY Wolf Pack",purchase,1.0,0 -54637394,"Puzzle Agent",purchase,1.0,0 -54637394,"Puzzle Agent 2",purchase,1.0,0 -54637394,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -54637394,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -54637394,"Remember Me",purchase,1.0,0 -54637394,"Scribblenauts Unlimited",purchase,1.0,0 -54637394,"Serious Sam 2",purchase,1.0,0 -54637394,"Serious Sam 3 BFE",purchase,1.0,0 -54637394,"Serious Sam The Random Encounter",purchase,1.0,0 -54637394,"Serious Sam Classic The First Encounter",purchase,1.0,0 -54637394,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -54637394,"Serious Sam Classics Revolution",purchase,1.0,0 -54637394,"Serious Sam Double D XXL",purchase,1.0,0 -54637394,"Serious Sam HD The First Encounter",purchase,1.0,0 -54637394,"Super Sanctum TD",purchase,1.0,0 -54637394,"Team Fortress Classic",purchase,1.0,0 -54637394,"Wallace & Gromit Ep 1 Fright of the Bumblebees",purchase,1.0,0 -54637394,"Wallace & Gromit Ep 2 The Last Resort",purchase,1.0,0 -54637394,"Wallace & Gromit Ep 3 Muzzled!",purchase,1.0,0 -54637394,"Wallace & Gromit Ep 4 The Bogey Man",purchase,1.0,0 -54637394,"War Thunder",purchase,1.0,0 -302160412,"Dota 2",purchase,1.0,0 -302160412,"Dota 2",play,5.3,0 -118695833,"The Elder Scrolls V Skyrim",purchase,1.0,0 -118695833,"The Elder Scrolls V Skyrim",play,52.0,0 -118695833,"POSTAL 2",purchase,1.0,0 -118695833,"POSTAL 2",play,35.0,0 -118695833,"Left 4 Dead 2",purchase,1.0,0 -118695833,"Left 4 Dead 2",play,20.0,0 -118695833,"Risen 2 - Dark Waters",purchase,1.0,0 -118695833,"Risen 2 - Dark Waters",play,17.0,0 -118695833,"Team Fortress 2",purchase,1.0,0 -118695833,"Team Fortress 2",play,5.9,0 -118695833,"Borderlands 2",purchase,1.0,0 -118695833,"Borderlands 2",play,3.3,0 -118695833,"The Forest",purchase,1.0,0 -118695833,"The Forest",play,2.5,0 -118695833,"Cthulhu Saves the World ",purchase,1.0,0 -118695833,"Anomaly Warzone Earth",purchase,1.0,0 -118695833,"Breath of Death VII ",purchase,1.0,0 -118695833,"Eets",purchase,1.0,0 -118695833,"Electronic Super Joy Groove City",purchase,1.0,0 -118695833,"Swipecart",purchase,1.0,0 -118695833,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -118695833,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -118695833,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -118695833,"Two Worlds Epic Edition",purchase,1.0,0 -304236660,"Trove",purchase,1.0,0 -304236660,"Trove",play,1.0,0 -245445357,"Nosgoth",purchase,1.0,0 -245445357,"Nosgoth",play,13.7,0 -245445357,"Unturned",purchase,1.0,0 -245445357,"Unturned",play,1.0,0 -245445357,"APB Reloaded",purchase,1.0,0 -245445357,"APB Reloaded",play,0.4,0 -235032362,"Dota 2",purchase,1.0,0 -235032362,"Dota 2",play,2.0,0 -156689404,"Dota 2",purchase,1.0,0 -156689404,"Dota 2",play,0.4,0 -212748581,"Deadbreed",purchase,1.0,0 -212748581,"Deadbreed",play,6.9,0 -212748581,"Memories of a Vagabond",purchase,1.0,0 -212748581,"Memories of a Vagabond",play,4.3,0 -212748581,"Dead Island Epidemic",purchase,1.0,0 -73968993,"Sid Meier's Civilization V",purchase,1.0,0 -73968993,"Sid Meier's Civilization V",play,118.0,0 -259528031,"Team Fortress 2",purchase,1.0,0 -259528031,"Team Fortress 2",play,4.4,0 -83367883,"Left 4 Dead",purchase,1.0,0 -83367883,"Left 4 Dead",play,10.1,0 -115160797,"Team Fortress 2",purchase,1.0,0 -115160797,"Team Fortress 2",play,130.0,0 -107977716,"The Walking Dead",purchase,1.0,0 -107977716,"The Walking Dead",play,7.4,0 -107977716,"Royal Quest",purchase,1.0,0 -107977716,"Royal Quest",play,4.5,0 -107977716,"Strife",purchase,1.0,0 -107977716,"Strife",play,0.3,0 -242378304,"Dota 2",purchase,1.0,0 -242378304,"Dota 2",play,44.0,0 -31178210,"Counter-Strike",purchase,1.0,0 -31178210,"Counter-Strike",play,59.0,0 -31178210,"Counter-Strike Condition Zero",purchase,1.0,0 -31178210,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -234522038,"Dota 2",purchase,1.0,0 -234522038,"Dota 2",play,0.6,0 -304403687,"Dota 2",purchase,1.0,0 -304403687,"Dota 2",play,0.8,0 -30699429,"DayZ",purchase,1.0,0 -30699429,"DayZ",play,47.0,0 -30699429,"Grand Theft Auto V",purchase,1.0,0 -30699429,"Grand Theft Auto V",play,40.0,0 -30699429,"Tomb Raider",purchase,1.0,0 -30699429,"Tomb Raider",play,31.0,0 -30699429,"PAYDAY 2",purchase,1.0,0 -30699429,"PAYDAY 2",play,29.0,0 -30699429,"Fallout 4",purchase,1.0,0 -30699429,"Fallout 4",play,24.0,0 -30699429,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -30699429,"Warhammer 40,000 Dawn of War II",play,13.7,0 -30699429,"BioShock Infinite",purchase,1.0,0 -30699429,"BioShock Infinite",play,13.6,0 -30699429,"Rust",purchase,1.0,0 -30699429,"Rust",play,13.2,0 -30699429,"Oddworld New 'n' Tasty",purchase,1.0,0 -30699429,"Oddworld New 'n' Tasty",play,8.5,0 -30699429,"Portal 2",purchase,1.0,0 -30699429,"Portal 2",play,6.2,0 -30699429,"Portal",purchase,1.0,0 -30699429,"Portal",play,2.2,0 -30699429,"Magicka",purchase,1.0,0 -30699429,"Magicka",play,1.1,0 -30699429,"Arma 2",purchase,1.0,0 -30699429,"Arma 2",play,1.1,0 -30699429,"Counter-Strike",purchase,1.0,0 -30699429,"Counter-Strike",play,1.0,0 -30699429,"Counter-Strike Source",purchase,1.0,0 -30699429,"Counter-Strike Source",play,0.1,0 -30699429,"Arma 2 Operation Arrowhead",purchase,1.0,0 -30699429,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -30699429,"Counter-Strike Condition Zero",purchase,1.0,0 -30699429,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -30699429,"Lara Croft and the Guardian of Light",purchase,1.0,0 -30699429,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -30699429,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -30699429,"Tomb Raider Anniversary",purchase,1.0,0 -30699429,"Tomb Raider Chronicles",purchase,1.0,0 -30699429,"Tomb Raider Legend",purchase,1.0,0 -30699429,"Tomb Raider The Last Revelation",purchase,1.0,0 -30699429,"Tomb Raider Underworld",purchase,1.0,0 -30699429,"Tomb Raider I",purchase,1.0,0 -30699429,"Tomb Raider II",purchase,1.0,0 -30699429,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -160993265,"Grand Theft Auto San Andreas",purchase,1.0,0 -160993265,"Grand Theft Auto San Andreas",play,0.4,0 -160993265,"Grand Theft Auto San Andreas",purchase,1.0,0 -183998097,"Euro Truck Simulator 2",purchase,1.0,0 -183998097,"Euro Truck Simulator 2",play,39.0,0 -183998097,"TERA",purchase,1.0,0 -183998097,"TERA",play,22.0,0 -183998097,"Warface",purchase,1.0,0 -183998097,"Warface",play,21.0,0 -183998097,"Robocraft",purchase,1.0,0 -183998097,"Robocraft",play,14.3,0 -183998097,"War Thunder",purchase,1.0,0 -183998097,"War Thunder",play,13.1,0 -183998097,"PlanetSide 2",purchase,1.0,0 -183998097,"PlanetSide 2",play,12.0,0 -183998097,"Team Fortress 2",purchase,1.0,0 -183998097,"Team Fortress 2",play,9.0,0 -183998097,"Dirty Bomb",purchase,1.0,0 -183998097,"Dirty Bomb",play,8.6,0 -183998097,"Path of Exile",purchase,1.0,0 -183998097,"Path of Exile",play,8.4,0 -183998097,"Star Conflict",purchase,1.0,0 -183998097,"Star Conflict",play,8.0,0 -183998097,"Warframe",purchase,1.0,0 -183998097,"Warframe",play,5.8,0 -183998097,"GameMaker Studio",purchase,1.0,0 -183998097,"GameMaker Studio",play,5.7,0 -183998097,"Heroes & Generals",purchase,1.0,0 -183998097,"Heroes & Generals",play,3.6,0 -183998097,"APB Reloaded",purchase,1.0,0 -183998097,"APB Reloaded",play,1.9,0 -183998097,"World of Guns Gun Disassembly",purchase,1.0,0 -183998097,"World of Guns Gun Disassembly",play,0.8,0 -183998097,"Victory Command",purchase,1.0,0 -183998097,"Victory Command",play,0.5,0 -183998097,"War of the Roses",purchase,1.0,0 -183998097,"War of the Roses",play,0.3,0 -183998097,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -183998097,"DCS World",purchase,1.0,0 -183998097,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -183998097,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -184594362,"Counter-Strike Global Offensive",purchase,1.0,0 -184594362,"Counter-Strike Global Offensive",play,80.0,0 -184594362,"Unturned",purchase,1.0,0 -184594362,"Unturned",play,72.0,0 -184594362,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -184594362,"Tom Clancy's Ghost Recon Phantoms - NA",play,10.5,0 -184594362,"Darkwind War on Wheels",purchase,1.0,0 -184594362,"Darkwind War on Wheels",play,0.1,0 -184594362,"The Way of Life Free Edition",purchase,1.0,0 -184594362,"The Way of Life Free Edition",play,0.1,0 -184594362,"Warface",purchase,1.0,0 -184594362,"ACE - Arena Cyber Evolution",purchase,1.0,0 -184594362,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -184594362,"Clicker Heroes",purchase,1.0,0 -184594362,"Dead Island Epidemic",purchase,1.0,0 -184594362,"Dirty Bomb",purchase,1.0,0 -184594362,"Firefall",purchase,1.0,0 -184594362,"Fistful of Frags",purchase,1.0,0 -184594362,"Heroes & Generals",purchase,1.0,0 -184594362,"how do you Do It?",purchase,1.0,0 -184594362,"Loadout",purchase,1.0,0 -184594362,"No More Room in Hell",purchase,1.0,0 -184594362,"Nosgoth",purchase,1.0,0 -184594362,"PAYDAY The Web Series - Episode 1",purchase,1.0,0 -184594362,"PlanetSide 2",purchase,1.0,0 -184594362,"Star Conflict",purchase,1.0,0 -184594362,"Survarium",purchase,1.0,0 -184594362,"TERA",purchase,1.0,0 -184594362,"theHunter",purchase,1.0,0 -184594362,"Warframe",purchase,1.0,0 -184594362,"War Thunder",purchase,1.0,0 -184594362,"Zombies Monsters Robots",purchase,1.0,0 -131386705,"Counter-Strike Global Offensive",purchase,1.0,0 -131386705,"Counter-Strike Global Offensive",play,289.0,0 -131386705,"Grand Theft Auto San Andreas",purchase,1.0,0 -131386705,"Grand Theft Auto San Andreas",play,29.0,0 -131386705,"Dota 2",purchase,1.0,0 -131386705,"Dota 2",play,14.4,0 -131386705,"PAYDAY The Heist",purchase,1.0,0 -131386705,"PAYDAY The Heist",play,12.1,0 -131386705,"Left 4 Dead 2",purchase,1.0,0 -131386705,"Left 4 Dead 2",play,10.4,0 -131386705,"Counter-Strike Source",purchase,1.0,0 -131386705,"Counter-Strike Source",play,9.3,0 -131386705,"Garry's Mod",purchase,1.0,0 -131386705,"Garry's Mod",play,4.5,0 -131386705,"Warframe",purchase,1.0,0 -131386705,"Warframe",play,2.4,0 -131386705,"Grand Theft Auto III",purchase,1.0,0 -131386705,"Grand Theft Auto III",play,1.1,0 -131386705,"Demigod",purchase,1.0,0 -131386705,"Demigod",play,0.9,0 -131386705,"Saira",purchase,1.0,0 -131386705,"Saira",play,0.6,0 -131386705,"Grand Theft Auto IV",purchase,1.0,0 -131386705,"Grand Theft Auto IV",play,0.6,0 -131386705,"Shufflepuck Cantina Deluxe VR",purchase,1.0,0 -131386705,"Batla",purchase,1.0,0 -131386705,"Dead Island Epidemic",purchase,1.0,0 -131386705,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -131386705,"Grand Theft Auto San Andreas",purchase,1.0,0 -131386705,"Grand Theft Auto Vice City",purchase,1.0,0 -131386705,"Grand Theft Auto Vice City",purchase,1.0,0 -131386705,"Grand Theft Auto III",purchase,1.0,0 -131386705,"Heroes & Generals",purchase,1.0,0 -131386705,"Loadout",purchase,1.0,0 -131386705,"Portal 2",purchase,1.0,0 -131386705,"Robocraft",purchase,1.0,0 -131386705,"Unturned",purchase,1.0,0 -131386705,"War Thunder",purchase,1.0,0 -232557513,"Hitman Codename 47",purchase,1.0,0 -232557513,"Hitman Codename 47",play,0.6,0 -263759304,"Team Fortress 2",purchase,1.0,0 -263759304,"Team Fortress 2",play,0.7,0 -258806371,"Team Fortress 2",purchase,1.0,0 -258806371,"Team Fortress 2",play,26.0,0 -258806371,"AdVenture Capitalist",purchase,1.0,0 -258806371,"Realm of the Mad God",purchase,1.0,0 -258806371,"SMITE",purchase,1.0,0 -258806371,"Tactical Intervention",purchase,1.0,0 -258806371,"Toribash",purchase,1.0,0 -296883501,"Dota 2",purchase,1.0,0 -296883501,"Dota 2",play,5.0,0 -117435302,"Sid Meier's Civilization V",purchase,1.0,0 -117435302,"Sid Meier's Civilization V",play,0.2,0 -248639653,"ARK Survival Evolved",purchase,1.0,0 -248639653,"ARK Survival Evolved",play,4.6,0 -189685866,"Magicka Wizard Wars",purchase,1.0,0 -189685866,"Magicka Wizard Wars",play,14.8,0 -168053527,"Counter-Strike Global Offensive",purchase,1.0,0 -168053527,"Counter-Strike Global Offensive",play,778.0,0 -168053527,"Grand Theft Auto V",purchase,1.0,0 -168053527,"Grand Theft Auto V",play,62.0,0 -168053527,"Hitman Absolution",purchase,1.0,0 -168053527,"Hitman Absolution",play,55.0,0 -168053527,"Borderlands 2",purchase,1.0,0 -168053527,"Borderlands 2",play,47.0,0 -168053527,"Killing Floor",purchase,1.0,0 -168053527,"Killing Floor",play,44.0,0 -168053527,"Dota 2",purchase,1.0,0 -168053527,"Dota 2",play,30.0,0 -168053527,"Garry's Mod",purchase,1.0,0 -168053527,"Garry's Mod",play,29.0,0 -168053527,"GRID 2",purchase,1.0,0 -168053527,"GRID 2",play,23.0,0 -168053527,"Dungeon Defenders II",purchase,1.0,0 -168053527,"Dungeon Defenders II",play,17.8,0 -168053527,"H1Z1",purchase,1.0,0 -168053527,"H1Z1",play,17.7,0 -168053527,"Team Fortress 2",purchase,1.0,0 -168053527,"Team Fortress 2",play,13.0,0 -168053527,"Castle Crashers",purchase,1.0,0 -168053527,"Castle Crashers",play,8.4,0 -168053527,"PAYDAY 2",purchase,1.0,0 -168053527,"PAYDAY 2",play,7.5,0 -168053527,"Killing Floor 2",purchase,1.0,0 -168053527,"Killing Floor 2",play,2.7,0 -168053527,"Transformice",purchase,1.0,0 -168053527,"Transformice",play,1.6,0 -168053527,"ORION Prelude",purchase,1.0,0 -168053527,"ORION Prelude",play,1.5,0 -168053527,"Nosgoth",purchase,1.0,0 -168053527,"Nosgoth",play,1.2,0 -168053527,"Cry of Fear",purchase,1.0,0 -168053527,"Cry of Fear",play,1.0,0 -168053527,"Hitman Sniper Challenge",purchase,1.0,0 -168053527,"Hitman Sniper Challenge",play,0.5,0 -168053527,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -168053527,"Killing Floor Mod Defence Alliance 2",play,0.3,0 -168053527,"FreeStyle2 Street Basketball",purchase,1.0,0 -168053527,"FreeStyle2 Street Basketball",play,0.2,0 -168053527,"CSGO Player Profiles",purchase,1.0,0 -168053527,"CSGO Player Profiles - Device",purchase,1.0,0 -168053527,"CSGO Player Profiles - Edward",purchase,1.0,0 -168053527,"CSGO Player Profiles - Fallen",purchase,1.0,0 -168053527,"CSGO Player Profiles - Get_Right",purchase,1.0,0 -168053527,"CSGO Player Profiles - KennyS",purchase,1.0,0 -168053527,"CSGO Player Profiles - Markeloff",purchase,1.0,0 -168053527,"CSGO Player Profiles - N0thing",purchase,1.0,0 -168053527,"CSGO Player Profiles - Olofmeister",purchase,1.0,0 -168053527,"CSGO Player Profiles - Taz",purchase,1.0,0 -168053527,"H1Z1 Test Server",purchase,1.0,0 -168053527,"Killing Floor - Toy Master",purchase,1.0,0 -168053527,"Killing Floor Uncovered",purchase,1.0,0 -168053527,"PAYDAY The Heist",purchase,1.0,0 -168053527,"The Mighty Quest For Epic Loot",purchase,1.0,0 -168053527,"Warframe",purchase,1.0,0 -3897969,"Counter-Strike",purchase,1.0,0 -3897969,"Counter-Strike",play,0.2,0 -3897969,"Day of Defeat",purchase,1.0,0 -3897969,"Deathmatch Classic",purchase,1.0,0 -3897969,"Half-Life",purchase,1.0,0 -3897969,"Half-Life Blue Shift",purchase,1.0,0 -3897969,"Half-Life Opposing Force",purchase,1.0,0 -3897969,"Ricochet",purchase,1.0,0 -3897969,"Team Fortress Classic",purchase,1.0,0 -117949868,"Grand Theft Auto V",purchase,1.0,0 -117949868,"Grand Theft Auto V",play,88.0,0 -117949868,"Garry's Mod",purchase,1.0,0 -117949868,"Garry's Mod",play,62.0,0 -117949868,"Farming Simulator 2013",purchase,1.0,0 -117949868,"Farming Simulator 2013",play,16.2,0 -117949868,"Grand Theft Auto Vice City",purchase,1.0,0 -117949868,"Grand Theft Auto Vice City",play,7.7,0 -117949868,"Warframe",purchase,1.0,0 -117949868,"Warframe",play,6.6,0 -117949868,"Team Fortress 2",purchase,1.0,0 -117949868,"Team Fortress 2",play,6.4,0 -117949868,"Terraria",purchase,1.0,0 -117949868,"Terraria",play,5.6,0 -117949868,"The Forest",purchase,1.0,0 -117949868,"The Forest",play,3.2,0 -117949868,"Goat Simulator",purchase,1.0,0 -117949868,"Goat Simulator",play,1.5,0 -117949868,"BeamNG.drive",purchase,1.0,0 -117949868,"BeamNG.drive",play,1.1,0 -117949868,"Robocraft",purchase,1.0,0 -117949868,"Robocraft",play,0.9,0 -117949868,"Turbo Dismount",purchase,1.0,0 -117949868,"Turbo Dismount",play,0.8,0 -117949868,"Realm of the Mad God",purchase,1.0,0 -117949868,"Realm of the Mad God",play,0.8,0 -117949868,"Ultra Street Fighter IV",purchase,1.0,0 -117949868,"Ultra Street Fighter IV",play,0.7,0 -117949868,"AdVenture Capitalist",purchase,1.0,0 -117949868,"AdVenture Capitalist",play,0.7,0 -117949868,"Emily is Away",purchase,1.0,0 -117949868,"Emily is Away",play,0.6,0 -117949868,"Sakura Clicker",purchase,1.0,0 -117949868,"Sakura Clicker",play,0.3,0 -117949868,"Grand Theft Auto Vice City",purchase,1.0,0 -117949868,"Toribash",purchase,1.0,0 -204631355,"Team Fortress 2",purchase,1.0,0 -204631355,"Team Fortress 2",play,5.6,0 -204631355,"Robocraft",purchase,1.0,0 -204631355,"Robocraft",play,0.2,0 -204631355,"Unturned",purchase,1.0,0 -50553129,"Football Manager 2010",purchase,1.0,0 -50553129,"Football Manager 2010",play,526.0,0 -50553129,"Football Manager 2014",purchase,1.0,0 -50553129,"Football Manager 2014",play,180.0,0 -50553129,"Crusader Kings II",purchase,1.0,0 -50553129,"Crusader Kings II",play,156.0,0 -50553129,"Football Manager 2009",purchase,1.0,0 -50553129,"Football Manager 2009",play,104.0,0 -50553129,"Football Manager 2015",purchase,1.0,0 -50553129,"Football Manager 2015",play,75.0,0 -50553129,"Football Manager 2013",purchase,1.0,0 -50553129,"Football Manager 2013",play,62.0,0 -50553129,"Empire Total War",purchase,1.0,0 -50553129,"Empire Total War",play,37.0,0 -50553129,"Napoleon Total War",purchase,1.0,0 -50553129,"Napoleon Total War",play,24.0,0 -50553129,"Omerta - City of Gangsters",purchase,1.0,0 -50553129,"Omerta - City of Gangsters",play,16.3,0 -50553129,"Batman Arkham Asylum",purchase,1.0,0 -50553129,"Batman Arkham Asylum",play,8.5,0 -50553129,"Football Manager 2012",purchase,1.0,0 -50553129,"Football Manager 2012",play,6.3,0 -50553129,"The Guild II Renaissance",purchase,1.0,0 -50553129,"The Guild II Renaissance",play,4.9,0 -50553129,"The Guild II",purchase,1.0,0 -50553129,"The Guild II",play,1.8,0 -50553129,"Cities XL 2011",purchase,1.0,0 -50553129,"Cities XL 2011",play,1.5,0 -50553129,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -50553129,"Crusader Kings II Hymns of Abraham",purchase,1.0,0 -50553129,"Crusader Kings II Military Orders Unit Pack",purchase,1.0,0 -50553129,"Crusader Kings II Sons of Abraham",purchase,1.0,0 -50553129,"Crusader Kings II Warriors of Faith Unit Pack",purchase,1.0,0 -50553129,"The Guild II - Pirates of the European Seas",purchase,1.0,0 -244495573,"Dota 2",purchase,1.0,0 -244495573,"Dota 2",play,24.0,0 -244495573,"Batla",purchase,1.0,0 -244495573,"Counter-Strike Nexon Zombies",purchase,1.0,0 -244495573,"Heroes & Generals",purchase,1.0,0 -244495573,"Magicka Wizard Wars",purchase,1.0,0 -244495573,"Survarium",purchase,1.0,0 -244495573,"Unturned",purchase,1.0,0 -244495573,"Villagers and Heroes",purchase,1.0,0 -279317380,"Team Fortress 2",purchase,1.0,0 -279317380,"Team Fortress 2",play,6.6,0 -63489649,"Battlefield Bad Company 2",purchase,1.0,0 -63489649,"Battlefield Bad Company 2",play,67.0,0 -202851441,"APB Reloaded",purchase,1.0,0 -202851441,"Killing Floor - Toy Master",purchase,1.0,0 -239744970,"Unturned",purchase,1.0,0 -239744970,"Unturned",play,0.7,0 -239744970,"Rise of Flight United",purchase,1.0,0 -239744970,"Rise of Flight United",play,0.4,0 -239744970,"DiggerOnline",purchase,1.0,0 -275521700,"Dota 2",purchase,1.0,0 -275521700,"Dota 2",play,35.0,0 -143987972,"Dota 2",purchase,1.0,0 -143987972,"Dota 2",play,0.7,0 -157741885,"Dota 2",purchase,1.0,0 -157741885,"Dota 2",play,1.0,0 -183760110,"Team Fortress 2",purchase,1.0,0 -183760110,"Team Fortress 2",play,0.6,0 -233479846,"Counter-Strike Global Offensive",purchase,1.0,0 -233479846,"Counter-Strike Global Offensive",play,62.0,0 -233479846,"H1Z1",purchase,1.0,0 -233479846,"H1Z1",play,20.0,0 -233479846,"Team Fortress 2",purchase,1.0,0 -233479846,"Team Fortress 2",play,1.1,0 -233479846,"H1Z1 Test Server",purchase,1.0,0 -308402974,"Dirty Bomb",purchase,1.0,0 -308402974,"Dirty Bomb",play,1.5,0 -308402974,"Robocraft",purchase,1.0,0 -308402974,"Robocraft",play,0.7,0 -255810120,"Unturned",purchase,1.0,0 -255810120,"Unturned",play,1.1,0 -144197012,"Dota 2",purchase,1.0,0 -144197012,"Dota 2",play,0.8,0 -68559540,"Team Fortress 2",purchase,1.0,0 -68559540,"Team Fortress 2",play,6.3,0 -224397205,"Dota 2",purchase,1.0,0 -224397205,"Dota 2",play,0.7,0 -63763909,"Call of Duty Modern Warfare 2",purchase,1.0,0 -63763909,"Call of Duty Modern Warfare 2",play,13.3,0 -63763909,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -63763909,"Eets",purchase,1.0,0 -63763909,"Making History The Calm & The Storm",purchase,1.0,0 -97234778,"Order of War",purchase,1.0,0 -103631407,"The Wolf Among Us",purchase,1.0,0 -103631407,"The Wolf Among Us",play,21.0,0 -103631407,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -103631407,"Vampire The Masquerade - Bloodlines",play,2.6,0 -103631407,"Total War SHOGUN 2",purchase,1.0,0 -103631407,"Total War SHOGUN 2",play,1.4,0 -103631407,"Plague Inc Evolved",purchase,1.0,0 -103631407,"Plague Inc Evolved",play,0.6,0 -103631407,"Amnesia The Dark Descent",purchase,1.0,0 -103631407,"Amnesia The Dark Descent",play,0.4,0 -103631407,"Viscera Cleanup Detail",purchase,1.0,0 -103631407,"Empire Total War",purchase,1.0,0 -103631407,"Medieval II Total War",purchase,1.0,0 -103631407,"Napoleon Total War",purchase,1.0,0 -103631407,"Rome Total War",purchase,1.0,0 -103631407,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -103631407,"Total War Battles SHOGUN",purchase,1.0,0 -103631407,"Viking Battle for Asgard",purchase,1.0,0 -103631407,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -103631407,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -59325851,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -59325851,"Call of Duty Modern Warfare 2 - Multiplayer",play,433.0,0 -59325851,"Call of Duty Modern Warfare 2",purchase,1.0,0 -59325851,"Call of Duty Modern Warfare 2",play,10.6,0 -4824107,"Left 4 Dead 2",purchase,1.0,0 -4824107,"Left 4 Dead 2",play,273.0,0 -4824107,"Rocket League",purchase,1.0,0 -4824107,"Rocket League",play,152.0,0 -4824107,"Dota 2",purchase,1.0,0 -4824107,"Dota 2",play,91.0,0 -4824107,"Terraria",purchase,1.0,0 -4824107,"Terraria",play,27.0,0 -4824107,"Portal 2",purchase,1.0,0 -4824107,"Portal 2",play,18.2,0 -4824107,"Team Fortress 2",purchase,1.0,0 -4824107,"Team Fortress 2",play,4.9,0 -4824107,"Portal",purchase,1.0,0 -4824107,"Portal",play,4.5,0 -4824107,"Natural Selection 2",purchase,1.0,0 -4824107,"Natural Selection 2",play,4.1,0 -4824107,"Deathmatch Classic",purchase,1.0,0 -4824107,"Deathmatch Classic",play,1.6,0 -4824107,"Half-Life 2",purchase,1.0,0 -4824107,"Half-Life 2",play,1.5,0 -4824107,"Grand Theft Auto San Andreas",purchase,1.0,0 -4824107,"Grand Theft Auto San Andreas",play,0.6,0 -4824107,"Super Monday Night Combat",purchase,1.0,0 -4824107,"Super Monday Night Combat",play,0.5,0 -4824107,"Dino D-Day",purchase,1.0,0 -4824107,"Dino D-Day",play,0.5,0 -4824107,"Grand Theft Auto",purchase,1.0,0 -4824107,"Grand Theft Auto",play,0.1,0 -4824107,"Half-Life",purchase,1.0,0 -4824107,"Team Fortress Classic",purchase,1.0,0 -4824107,"Left 4 Dead",purchase,1.0,0 -4824107,"Killing Floor",purchase,1.0,0 -4824107,"Counter-Strike",purchase,1.0,0 -4824107,"Day of Defeat",purchase,1.0,0 -4824107,"Grand Theft Auto 2",purchase,1.0,0 -4824107,"Grand Theft Auto San Andreas",purchase,1.0,0 -4824107,"Grand Theft Auto Vice City",purchase,1.0,0 -4824107,"Grand Theft Auto Vice City",purchase,1.0,0 -4824107,"Grand Theft Auto III",purchase,1.0,0 -4824107,"Grand Theft Auto III",purchase,1.0,0 -4824107,"Half-Life 2 Episode One",purchase,1.0,0 -4824107,"Half-Life 2 Episode Two",purchase,1.0,0 -4824107,"Half-Life 2 Lost Coast",purchase,1.0,0 -4824107,"Half-Life Blue Shift",purchase,1.0,0 -4824107,"Half-Life Opposing Force",purchase,1.0,0 -4824107,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -4824107,"Renegade Ops",purchase,1.0,0 -4824107,"Ricochet",purchase,1.0,0 -220956035,"Unturned",purchase,1.0,0 -220956035,"Unturned",play,0.5,0 -295084996,"Team Fortress 2",purchase,1.0,0 -295084996,"Team Fortress 2",play,19.6,0 -295084996,"TERA",purchase,1.0,0 -252024637,"Dota 2",purchase,1.0,0 -252024637,"Dota 2",play,11.1,0 -252024637,"Blacklight Retribution",purchase,1.0,0 -252024637,"Firefall",purchase,1.0,0 -252024637,"FreeStyle2 Street Basketball",purchase,1.0,0 -252024637,"Gotham City Impostors Free To Play",purchase,1.0,0 -252024637,"HAWKEN",purchase,1.0,0 -252024637,"Marvel Heroes 2015",purchase,1.0,0 -252024637,"Marvel Puzzle Quest",purchase,1.0,0 -252024637,"PlanetSide 2",purchase,1.0,0 -252024637,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -252024637,"Unturned",purchase,1.0,0 -252024637,"Warframe",purchase,1.0,0 -252024637,"War Thunder",purchase,1.0,0 -114017825,"Dota 2",purchase,1.0,0 -114017825,"Dota 2",play,297.0,0 -114017825,"Loadout",purchase,1.0,0 -114017825,"Loadout",play,1.5,0 -98314911,"Pinball Arcade",purchase,1.0,0 -98314911,"Pinball Arcade",play,0.6,0 -278609380,"Team Fortress 2",purchase,1.0,0 -278609380,"Team Fortress 2",play,0.3,0 -197179748,"Dota 2",purchase,1.0,0 -197179748,"Dota 2",play,22.0,0 -92299170,"Team Fortress 2",purchase,1.0,0 -92299170,"Team Fortress 2",play,0.4,0 -114781347,"Age of Empires II HD Edition",purchase,1.0,0 -114781347,"Age of Empires II HD Edition",play,29.0,0 -19616379,"Half-Life 2",purchase,1.0,0 -19616379,"Half-Life 2",play,66.0,0 -19616379,"Half-Life Source",purchase,1.0,0 -19616379,"Half-Life Source",play,54.0,0 -19616379,"Shadowgrounds",purchase,1.0,0 -19616379,"Shadowgrounds",play,48.0,0 -19616379,"Train Simulator",purchase,1.0,0 -19616379,"Train Simulator",play,0.7,0 -19616379,"Half-Life 2 Lost Coast",purchase,1.0,0 -19616379,"Half-Life 2 Lost Coast",play,0.6,0 -19616379,"Counter-Strike Source",purchase,1.0,0 -19616379,"Half-Life 2 Deathmatch",purchase,1.0,0 -19616379,"Half-Life Deathmatch Source",purchase,1.0,0 -19616379,"The Ship",purchase,1.0,0 -19616379,"The Ship Tutorial",purchase,1.0,0 -204083307,"War Inc. Battlezone",purchase,1.0,0 -204083307,"Vindictus",purchase,1.0,0 -207602474,"Call of Juarez Gunslinger",purchase,1.0,0 -207602474,"Call of Juarez Gunslinger",play,6.7,0 -207602474,"IL-2 Sturmovik 1946",purchase,1.0,0 -207602474,"IL-2 Sturmovik 1946",play,6.7,0 -254094961,"Counter-Strike Global Offensive",purchase,1.0,0 -254094961,"Counter-Strike Global Offensive",play,125.0,0 -254094961,"Unturned",purchase,1.0,0 -254094961,"Unturned",play,8.5,0 -254094961,"Hylics",purchase,1.0,0 -24721232,"Counter-Strike Source",purchase,1.0,0 -24721232,"Counter-Strike Source",play,1941.0,0 -24721232,"Natural Selection 2",purchase,1.0,0 -24721232,"Natural Selection 2",play,1443.0,0 -24721232,"Dota 2",purchase,1.0,0 -24721232,"Dota 2",play,912.0,0 -24721232,"Team Fortress 2",purchase,1.0,0 -24721232,"Team Fortress 2",play,735.0,0 -24721232,"Counter-Strike Global Offensive",purchase,1.0,0 -24721232,"Counter-Strike Global Offensive",play,710.0,0 -24721232,"Borderlands 2",purchase,1.0,0 -24721232,"Borderlands 2",play,170.0,0 -24721232,"The Binding of Isaac Rebirth",purchase,1.0,0 -24721232,"The Binding of Isaac Rebirth",play,137.0,0 -24721232,"The Binding of Isaac",purchase,1.0,0 -24721232,"The Binding of Isaac",play,107.0,0 -24721232,"Borderlands",purchase,1.0,0 -24721232,"Borderlands",play,78.0,0 -24721232,"Ultra Street Fighter IV",purchase,1.0,0 -24721232,"Ultra Street Fighter IV",play,77.0,0 -24721232,"Fallout 4",purchase,1.0,0 -24721232,"Fallout 4",play,74.0,0 -24721232,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -24721232,"Warhammer 40,000 Dawn of War II",play,71.0,0 -24721232,"Rust",purchase,1.0,0 -24721232,"Rust",play,63.0,0 -24721232,"The Witcher Enhanced Edition",purchase,1.0,0 -24721232,"The Witcher Enhanced Edition",play,39.0,0 -24721232,"Fallout 2",purchase,1.0,0 -24721232,"Fallout 2",play,35.0,0 -24721232,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -24721232,"The Witcher 2 Assassins of Kings Enhanced Edition",play,28.0,0 -24721232,"Deus Ex Game of the Year Edition",purchase,1.0,0 -24721232,"Deus Ex Game of the Year Edition",play,20.0,0 -24721232,"Psychonauts",purchase,1.0,0 -24721232,"Psychonauts",play,16.4,0 -24721232,"Orcs Must Die! 2",purchase,1.0,0 -24721232,"Orcs Must Die! 2",play,15.9,0 -24721232,"Dust An Elysian Tail",purchase,1.0,0 -24721232,"Dust An Elysian Tail",play,15.3,0 -24721232,"XCOM Enemy Unknown",purchase,1.0,0 -24721232,"XCOM Enemy Unknown",play,15.3,0 -24721232,"Left 4 Dead",purchase,1.0,0 -24721232,"Left 4 Dead",play,13.0,0 -24721232,"Fairy Bloom Freesia",purchase,1.0,0 -24721232,"Fairy Bloom Freesia",play,11.2,0 -24721232,"Half-Life 2",purchase,1.0,0 -24721232,"Half-Life 2",play,11.1,0 -24721232,"The Elder Scrolls III Morrowind",purchase,1.0,0 -24721232,"The Elder Scrolls III Morrowind",play,9.6,0 -24721232,"Arma 2 Operation Arrowhead",purchase,1.0,0 -24721232,"Arma 2 Operation Arrowhead",play,8.8,0 -24721232,"Portal",purchase,1.0,0 -24721232,"Portal",play,8.3,0 -24721232,"A.R.E.S.",purchase,1.0,0 -24721232,"A.R.E.S.",play,8.2,0 -24721232,"Cave Story+",purchase,1.0,0 -24721232,"Cave Story+",play,7.5,0 -24721232,"The Legend of Korra",purchase,1.0,0 -24721232,"The Legend of Korra",play,7.3,0 -24721232,"Jet Set Radio",purchase,1.0,0 -24721232,"Jet Set Radio",play,7.2,0 -24721232,"Spec Ops The Line",purchase,1.0,0 -24721232,"Spec Ops The Line",play,7.1,0 -24721232,"Costume Quest",purchase,1.0,0 -24721232,"Costume Quest",play,6.9,0 -24721232,"Day of Defeat Source",purchase,1.0,0 -24721232,"Day of Defeat Source",play,5.2,0 -24721232,"Half-Life 2 Episode Two",purchase,1.0,0 -24721232,"Half-Life 2 Episode Two",play,4.7,0 -24721232,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -24721232,"METAL GEAR SOLID V GROUND ZEROES",play,4.6,0 -24721232,"Left 4 Dead 2",purchase,1.0,0 -24721232,"Left 4 Dead 2",play,4.4,0 -24721232,"Sanctum",purchase,1.0,0 -24721232,"Sanctum",play,4.3,0 -24721232,"Half-Life Opposing Force",purchase,1.0,0 -24721232,"Half-Life Opposing Force",play,3.9,0 -24721232,"VVVVVV",purchase,1.0,0 -24721232,"VVVVVV",play,3.6,0 -24721232,"Jamestown",purchase,1.0,0 -24721232,"Jamestown",play,3.4,0 -24721232,"Galcon Legends",purchase,1.0,0 -24721232,"Galcon Legends",play,3.4,0 -24721232,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -24721232,"Fallout 3 - Game of the Year Edition",play,3.2,0 -24721232,"Half-Life Blue Shift",purchase,1.0,0 -24721232,"Half-Life Blue Shift",play,3.0,0 -24721232,"Star Wars Knights of the Old Republic",purchase,1.0,0 -24721232,"Star Wars Knights of the Old Republic",play,2.9,0 -24721232,"Half-Life 2 Episode One",purchase,1.0,0 -24721232,"Half-Life 2 Episode One",play,2.7,0 -24721232,"Blocks That Matter",purchase,1.0,0 -24721232,"Blocks That Matter",play,2.7,0 -24721232,"Dead Island",purchase,1.0,0 -24721232,"Dead Island",play,2.2,0 -24721232,"A Bird Story",purchase,1.0,0 -24721232,"A Bird Story",play,2.0,0 -24721232,"Castle Crashers",purchase,1.0,0 -24721232,"Castle Crashers",play,1.9,0 -24721232,"Sonic Adventure 2 ",purchase,1.0,0 -24721232,"Sonic Adventure 2 ",play,1.8,0 -24721232,"Indie Game The Movie",purchase,1.0,0 -24721232,"Indie Game The Movie",play,1.7,0 -24721232,"Giana Sisters Twisted Dreams",purchase,1.0,0 -24721232,"Giana Sisters Twisted Dreams",play,1.5,0 -24721232,"Runespell Overture",purchase,1.0,0 -24721232,"Runespell Overture",play,1.3,0 -24721232,"PAYDAY The Heist",purchase,1.0,0 -24721232,"PAYDAY The Heist",play,1.0,0 -24721232,"Arma 2 DayZ Mod",purchase,1.0,0 -24721232,"Arma 2 DayZ Mod",play,0.8,0 -24721232,"Proteus",purchase,1.0,0 -24721232,"Proteus",play,0.8,0 -24721232,"Dungeons of Dredmor",purchase,1.0,0 -24721232,"Dungeons of Dredmor",play,0.8,0 -24721232,"Legend of Grimrock",purchase,1.0,0 -24721232,"Legend of Grimrock",play,0.8,0 -24721232,"Fortix",purchase,1.0,0 -24721232,"Fortix",play,0.7,0 -24721232,"And Yet It Moves",purchase,1.0,0 -24721232,"And Yet It Moves",play,0.6,0 -24721232,"Guacamelee! Gold Edition",purchase,1.0,0 -24721232,"Guacamelee! Gold Edition",play,0.5,0 -24721232,"Bastion",purchase,1.0,0 -24721232,"Bastion",play,0.5,0 -24721232,"Torchlight II",purchase,1.0,0 -24721232,"Torchlight II",play,0.5,0 -24721232,"Sine Mora",purchase,1.0,0 -24721232,"Sine Mora",play,0.5,0 -24721232,"Just Cause 2",purchase,1.0,0 -24721232,"Just Cause 2",play,0.4,0 -24721232,"Dear Esther",purchase,1.0,0 -24721232,"Dear Esther",play,0.4,0 -24721232,"Super Meat Boy",purchase,1.0,0 -24721232,"Super Meat Boy",play,0.4,0 -24721232,"RPG Maker VX Ace",purchase,1.0,0 -24721232,"RPG Maker VX Ace",play,0.4,0 -24721232,"Sonic Adventure DX",purchase,1.0,0 -24721232,"Sonic Adventure DX",play,0.3,0 -24721232,"LIMBO",purchase,1.0,0 -24721232,"LIMBO",play,0.3,0 -24721232,"BIT.TRIP RUNNER",purchase,1.0,0 -24721232,"BIT.TRIP RUNNER",play,0.3,0 -24721232,"Audiosurf",purchase,1.0,0 -24721232,"Audiosurf",play,0.3,0 -24721232,"SEGA Bass Fishing",purchase,1.0,0 -24721232,"SEGA Bass Fishing",play,0.3,0 -24721232,"Star Wars - Battlefront II",purchase,1.0,0 -24721232,"Star Wars - Battlefront II",play,0.3,0 -24721232,"Aquaria",purchase,1.0,0 -24721232,"Aquaria",play,0.3,0 -24721232,"DEFCON",purchase,1.0,0 -24721232,"DEFCON",play,0.3,0 -24721232,"Shank",purchase,1.0,0 -24721232,"Shank",play,0.3,0 -24721232,"Time Gentlemen, Please!",purchase,1.0,0 -24721232,"Time Gentlemen, Please!",play,0.2,0 -24721232,"Lone Survivor The Director's Cut",purchase,1.0,0 -24721232,"Lone Survivor The Director's Cut",play,0.2,0 -24721232,"Ghostbusters The Video Game",purchase,1.0,0 -24721232,"Ghostbusters The Video Game",play,0.2,0 -24721232,"Uplink",purchase,1.0,0 -24721232,"Uplink",play,0.2,0 -24721232,"NightSky",purchase,1.0,0 -24721232,"NightSky",play,0.2,0 -24721232,"Crayon Physics Deluxe",purchase,1.0,0 -24721232,"Crayon Physics Deluxe",play,0.2,0 -24721232,"Gratuitous Space Battles",purchase,1.0,0 -24721232,"Gratuitous Space Battles",play,0.1,0 -24721232,"Fate of the World",purchase,1.0,0 -24721232,"Fate of the World",play,0.1,0 -24721232,"Scoregasm",purchase,1.0,0 -24721232,"Scoregasm",play,0.1,0 -24721232,"Worms Revolution",purchase,1.0,0 -24721232,"Worms Revolution",play,0.1,0 -24721232,"Really Big Sky",purchase,1.0,0 -24721232,"Really Big Sky",play,0.1,0 -24721232,"Gish",purchase,1.0,0 -24721232,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -24721232,"Eufloria",purchase,1.0,0 -24721232,"Hammerfight",purchase,1.0,0 -24721232,"Nimbus",purchase,1.0,0 -24721232,"Cthulhu Saves the World ",purchase,1.0,0 -24721232,"Cogs",purchase,1.0,0 -24721232,"Breath of Death VII ",purchase,1.0,0 -24721232,"Darwinia",purchase,1.0,0 -24721232,"FINAL FANTASY VIII",purchase,1.0,0 -24721232,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -24721232,"Arma 2",purchase,1.0,0 -24721232,"Deus Ex The Fall",purchase,1.0,0 -24721232,"FINAL FANTASY VII",purchase,1.0,0 -24721232,"System Shock 2",purchase,1.0,0 -24721232,"Gemini Rue",purchase,1.0,0 -24721232,"140",purchase,1.0,0 -24721232,"Age of Empires II HD Edition",purchase,1.0,0 -24721232,"Age of Empires II HD The Forgotten",purchase,1.0,0 -24721232,"AI War Fleet Command",purchase,1.0,0 -24721232,"Alan Wake",purchase,1.0,0 -24721232,"Alan Wake's American Nightmare",purchase,1.0,0 -24721232,"Alien Hallway",purchase,1.0,0 -24721232,"Alien Shooter",purchase,1.0,0 -24721232,"Alien Shooter 2 Conscription",purchase,1.0,0 -24721232,"Alien Shooter 2 Reloaded",purchase,1.0,0 -24721232,"Amnesia The Dark Descent",purchase,1.0,0 -24721232,"Anachronox",purchase,1.0,0 -24721232,"Anna - Extended Edition",purchase,1.0,0 -24721232,"Antichamber",purchase,1.0,0 -24721232,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -24721232,"Arma Cold War Assault",purchase,1.0,0 -24721232,"Astebreed",purchase,1.0,0 -24721232,"A Valley Without Wind",purchase,1.0,0 -24721232,"A Valley Without Wind 2",purchase,1.0,0 -24721232,"A Virus Named TOM",purchase,1.0,0 -24721232,"AVSEQ",purchase,1.0,0 -24721232,"Awesomenauts",purchase,1.0,0 -24721232,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -24721232,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -24721232,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -24721232,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -24721232,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -24721232,"Batman Arkham City GOTY",purchase,1.0,0 -24721232,"Battlestations Midway",purchase,1.0,0 -24721232,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -24721232,"Bejeweled 3",purchase,1.0,0 -24721232,"Ben There, Dan That!",purchase,1.0,0 -24721232,"Bionic Commando Rearmed",purchase,1.0,0 -24721232,"BioShock",purchase,1.0,0 -24721232,"BioShock 2",purchase,1.0,0 -24721232,"Blackwell Convergence",purchase,1.0,0 -24721232,"Blackwell Deception",purchase,1.0,0 -24721232,"Blackwell Unbound",purchase,1.0,0 -24721232,"Blood Bowl Legendary Edition",purchase,1.0,0 -24721232,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -24721232,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -24721232,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -24721232,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -24721232,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -24721232,"Braid",purchase,1.0,0 -24721232,"Broken Sword 1 - Shadow of the Templars Director's Cut",purchase,1.0,0 -24721232,"Brtal Legend",purchase,1.0,0 -24721232,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -24721232,"Capsized",purchase,1.0,0 -24721232,"Cargo Commander",purchase,1.0,0 -24721232,"Cities in Motion 2",purchase,1.0,0 -24721232,"Cities XL Platinum",purchase,1.0,0 -24721232,"Closure",purchase,1.0,0 -24721232,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -24721232,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -24721232,"Company of Heroes",purchase,1.0,0 -24721232,"Company of Heroes (New Steam Version)",purchase,1.0,0 -24721232,"Company of Heroes 2",purchase,1.0,0 -24721232,"Company of Heroes Opposing Fronts",purchase,1.0,0 -24721232,"Company of Heroes Tales of Valor",purchase,1.0,0 -24721232,"Confrontation",purchase,1.0,0 -24721232,"Contraption Maker",purchase,1.0,0 -24721232,"Counter-Strike",purchase,1.0,0 -24721232,"Crazy Taxi",purchase,1.0,0 -24721232,"Crusader Kings II",purchase,1.0,0 -24721232,"Crysis 2 Maximum Edition",purchase,1.0,0 -24721232,"Daikatana",purchase,1.0,0 -24721232,"Darkest Hour Europe '44-'45",purchase,1.0,0 -24721232,"Darksiders",purchase,1.0,0 -24721232,"Day of Defeat",purchase,1.0,0 -24721232,"Dead Bits",purchase,1.0,0 -24721232,"Dead Island Epidemic",purchase,1.0,0 -24721232,"Deadlight",purchase,1.0,0 -24721232,"Deadlight Original Soundtrack",purchase,1.0,0 -24721232,"Deadly Sin 2",purchase,1.0,0 -24721232,"Dead Space",purchase,1.0,0 -24721232,"Dead Space 2",purchase,1.0,0 -24721232,"Deathmatch Classic",purchase,1.0,0 -24721232,"Defense Grid The Awakening",purchase,1.0,0 -24721232,"Deus Ex Human Revolution",purchase,1.0,0 -24721232,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -24721232,"Deus Ex Invisible War",purchase,1.0,0 -24721232,"Divinity II Developer's Cut",purchase,1.0,0 -24721232,"DmC Devil May Cry",purchase,1.0,0 -24721232,"Dragon Age Origins",purchase,1.0,0 -24721232,"Draw a Stickman EPIC",purchase,1.0,0 -24721232,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -24721232,"Dungeon Defenders",purchase,1.0,0 -24721232,"Dungeon Hearts",purchase,1.0,0 -24721232,"Dungeonland",purchase,1.0,0 -24721232,"Dungeonland - All access pass",purchase,1.0,0 -24721232,"Eets Munchies",purchase,1.0,0 -24721232,"Empire Total War",purchase,1.0,0 -24721232,"Enclave",purchase,1.0,0 -24721232,"English Country Tune",purchase,1.0,0 -24721232,"Eufloria HD",purchase,1.0,0 -24721232,"Eufloria HD Original Soundtrack",purchase,1.0,0 -24721232,"Europa Universalis III",purchase,1.0,0 -24721232,"F.E.A.R.",purchase,1.0,0 -24721232,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -24721232,"F.E.A.R. 3",purchase,1.0,0 -24721232,"F.E.A.R. Extraction Point",purchase,1.0,0 -24721232,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -24721232,"Fable - The Lost Chapters",purchase,1.0,0 -24721232,"Faerie Solitaire",purchase,1.0,0 -24721232,"Fallout",purchase,1.0,0 -24721232,"Fallout New Vegas",purchase,1.0,0 -24721232,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -24721232,"Fallout New Vegas Dead Money",purchase,1.0,0 -24721232,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -24721232,"Fallout Tactics",purchase,1.0,0 -24721232,"FEZ",purchase,1.0,0 -24721232,"Fractal Make Blooms Not War",purchase,1.0,0 -24721232,"Frozen Synapse",purchase,1.0,0 -24721232,"FTL Faster Than Light",purchase,1.0,0 -24721232,"Galactic Arms Race",purchase,1.0,0 -24721232,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -24721232,"Galcon Fusion",purchase,1.0,0 -24721232,"Game of Thrones ",purchase,1.0,0 -24721232,"Garry's Mod",purchase,1.0,0 -24721232,"Grand Theft Auto",purchase,1.0,0 -24721232,"Grand Theft Auto 2",purchase,1.0,0 -24721232,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -24721232,"Grand Theft Auto San Andreas",purchase,1.0,0 -24721232,"Grand Theft Auto San Andreas",purchase,1.0,0 -24721232,"Grand Theft Auto Vice City",purchase,1.0,0 -24721232,"Grand Theft Auto Vice City",purchase,1.0,0 -24721232,"Grand Theft Auto III",purchase,1.0,0 -24721232,"Grand Theft Auto III",purchase,1.0,0 -24721232,"Grand Theft Auto IV",purchase,1.0,0 -24721232,"GRID 2",purchase,1.0,0 -24721232,"Guardians of Middle-earth",purchase,1.0,0 -24721232,"Gun Monkeys",purchase,1.0,0 -24721232,"Gurumin A Monstrous Adventure",purchase,1.0,0 -24721232,"Hacker Evolution - Untold",purchase,1.0,0 -24721232,"Half-Life",purchase,1.0,0 -24721232,"Half-Life 2 Deathmatch",purchase,1.0,0 -24721232,"Half-Life 2 Lost Coast",purchase,1.0,0 -24721232,"Hard Reset",purchase,1.0,0 -24721232,"Hard Reset Exile DLC",purchase,1.0,0 -24721232,"Hector Ep 1",purchase,1.0,0 -24721232,"Hector Ep 2",purchase,1.0,0 -24721232,"Hector Ep 3",purchase,1.0,0 -24721232,"Hitman 2 Silent Assassin",purchase,1.0,0 -24721232,"Hitman Absolution",purchase,1.0,0 -24721232,"Hitman Blood Money",purchase,1.0,0 -24721232,"Hitman Codename 47",purchase,1.0,0 -24721232,"Hitman Contracts",purchase,1.0,0 -24721232,"Hotline Miami",purchase,1.0,0 -24721232,"Humanity Asset",purchase,1.0,0 -24721232,"Intrusion 2",purchase,1.0,0 -24721232,"Just Cause",purchase,1.0,0 -24721232,"Karateka ",purchase,1.0,0 -24721232,"Killing Floor",purchase,1.0,0 -24721232,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -24721232,"La-Mulana",purchase,1.0,0 -24721232,"LEGO Batman 2",purchase,1.0,0 -24721232,"Leviathan Warships",purchase,1.0,0 -24721232,"Little Inferno",purchase,1.0,0 -24721232,"Lost Planet 3",purchase,1.0,0 -24721232,"Mafia II",purchase,1.0,0 -24721232,"Magicka",purchase,1.0,0 -24721232,"Magicka Vietnam",purchase,1.0,0 -24721232,"Magicka Wizard Wars",purchase,1.0,0 -24721232,"Mare Nostrum",purchase,1.0,0 -24721232,"Mark of the Ninja",purchase,1.0,0 -24721232,"Mass Effect 2",purchase,1.0,0 -24721232,"McPixel",purchase,1.0,0 -24721232,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -24721232,"Medal of Honor(TM) Single Player",purchase,1.0,0 -24721232,"Medal of Honor Pre-Order",purchase,1.0,0 -24721232,"Metro 2033",purchase,1.0,0 -24721232,"Mini Ninjas",purchase,1.0,0 -24721232,"Mirror's Edge",purchase,1.0,0 -24721232,"MirrorMoon EP",purchase,1.0,0 -24721232,"Mitsurugi Kamui Hikae",purchase,1.0,0 -24721232,"Monaco",purchase,1.0,0 -24721232,"Mortal Kombat Kollection",purchase,1.0,0 -24721232,"Multiwinia",purchase,1.0,0 -24721232,"NiGHTS into Dreams...",purchase,1.0,0 -24721232,"Nosgoth",purchase,1.0,0 -24721232,"Offspring Fling!",purchase,1.0,0 -24721232,"Oil Rush",purchase,1.0,0 -24721232,"One Way Heroics",purchase,1.0,0 -24721232,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -24721232,"Operation Flashpoint Red River",purchase,1.0,0 -24721232,"Orcs Must Die!",purchase,1.0,0 -24721232,"Organ Trail Director's Cut",purchase,1.0,0 -24721232,"Outlast",purchase,1.0,0 -24721232,"Overlord",purchase,1.0,0 -24721232,"Overlord Raising Hell",purchase,1.0,0 -24721232,"Patrician IV Rise of a Dynasty",purchase,1.0,0 -24721232,"Patrician IV Steam Special Edition",purchase,1.0,0 -24721232,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",purchase,1.0,0 -24721232,"Pid ",purchase,1.0,0 -24721232,"Pixel Piracy",purchase,1.0,0 -24721232,"Platypus II",purchase,1.0,0 -24721232,"Poker Night at the Inventory",purchase,1.0,0 -24721232,"Portal 2",purchase,1.0,0 -24721232,"Prime World Defenders",purchase,1.0,0 -24721232,"Psychonauts Demo",purchase,1.0,0 -24721232,"Puzzle Agent",purchase,1.0,0 -24721232,"Puzzle Agent 2",purchase,1.0,0 -24721232,"RAW - Realms of Ancient War",purchase,1.0,0 -24721232,"Realms of the Haunting",purchase,1.0,0 -24721232,"Red Faction Armageddon",purchase,1.0,0 -24721232,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -24721232,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -24721232,"Remember Me",purchase,1.0,0 -24721232,"resident evil 4 / biohazard 4",purchase,1.0,0 -24721232,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -24721232,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -24721232,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -24721232,"REVOLVER360 REACTOR",purchase,1.0,0 -24721232,"Ricochet",purchase,1.0,0 -24721232,"Risen",purchase,1.0,0 -24721232,"Risen 2 - Dark Waters",purchase,1.0,0 -24721232,"Rise of the Argonauts",purchase,1.0,0 -24721232,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -24721232,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -24721232,"RPG Maker Futuristic Tiles Resource Pack",purchase,1.0,0 -24721232,"RPG Maker High Fantasy Main Party Pack 1",purchase,1.0,0 -24721232,"RPG Maker Royal Tiles Resource Pack",purchase,1.0,0 -24721232,"RPG Maker Tyler Warren First 50 Battler Pack",purchase,1.0,0 -24721232,"RPG Maker Tyler Warren RPG Battlers 2nd 50",purchase,1.0,0 -24721232,"RPG Maker XP",purchase,1.0,0 -24721232,"Sacred 2 Gold",purchase,1.0,0 -24721232,"Sacred Citadel",purchase,1.0,0 -24721232,"Saints Row 2",purchase,1.0,0 -24721232,"Saints Row The Third",purchase,1.0,0 -24721232,"Saira",purchase,1.0,0 -24721232,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -24721232,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -24721232,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -24721232,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -24721232,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -24721232,"Sanctum 2",purchase,1.0,0 -24721232,"Scribblenauts Unlimited",purchase,1.0,0 -24721232,"Serious Sam 2",purchase,1.0,0 -24721232,"Serious Sam 3 BFE",purchase,1.0,0 -24721232,"Serious Sam The Random Encounter",purchase,1.0,0 -24721232,"Serious Sam Classic The First Encounter",purchase,1.0,0 -24721232,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -24721232,"Serious Sam Classics Revolution",purchase,1.0,0 -24721232,"Serious Sam Double D XXL",purchase,1.0,0 -24721232,"Serious Sam HD The First Encounter",purchase,1.0,0 -24721232,"Shadow Warrior Classic Redux",purchase,1.0,0 -24721232,"Shank 2",purchase,1.0,0 -24721232,"Sid Meier's Ace Patrol",purchase,1.0,0 -24721232,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -24721232,"Sid Meier's Civilization III Complete",purchase,1.0,0 -24721232,"Sid Meier's Civilization IV",purchase,1.0,0 -24721232,"Sid Meier's Civilization IV",purchase,1.0,0 -24721232,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -24721232,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -24721232,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -24721232,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -24721232,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -24721232,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -24721232,"Sid Meier's Civilization V",purchase,1.0,0 -24721232,"Sid Meier's Railroads!",purchase,1.0,0 -24721232,"Skyborn",purchase,1.0,0 -24721232,"SkyDrift",purchase,1.0,0 -24721232,"Snapshot",purchase,1.0,0 -24721232,"Sniper Elite V2",purchase,1.0,0 -24721232,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -24721232,"Sonic Adventure 2 Battle Mode DLC",purchase,1.0,0 -24721232,"Sonic Generations",purchase,1.0,0 -24721232,"Space Channel 5 Part 2",purchase,1.0,0 -24721232,"Stacking",purchase,1.0,0 -24721232,"Starseed Pilgrim",purchase,1.0,0 -24721232,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -24721232,"Star Wars Dark Forces",purchase,1.0,0 -24721232,"Star Wars Empire at War Gold",purchase,1.0,0 -24721232,"Star Wars The Force Unleashed II",purchase,1.0,0 -24721232,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -24721232,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -24721232,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -24721232,"Star Wars Republic Commando",purchase,1.0,0 -24721232,"Star Wars Starfighter",purchase,1.0,0 -24721232,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -24721232,"Stealth Bastard Deluxe",purchase,1.0,0 -24721232,"Strider",purchase,1.0,0 -24721232,"Superfrog HD",purchase,1.0,0 -24721232,"Super Hexagon",purchase,1.0,0 -24721232,"Super Splatters",purchase,1.0,0 -24721232,"Sweet Lily Dreams",purchase,1.0,0 -24721232,"Symphony",purchase,1.0,0 -24721232,"Team Fortress Classic",purchase,1.0,0 -24721232,"Terraria",purchase,1.0,0 -24721232,"The Basement Collection",purchase,1.0,0 -24721232,"The Blackwell Legacy",purchase,1.0,0 -24721232,"The Bureau XCOM Declassified",purchase,1.0,0 -24721232,"The Darkness II",purchase,1.0,0 -24721232,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -24721232,"The Elder Scrolls V Skyrim",purchase,1.0,0 -24721232,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -24721232,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -24721232,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -24721232,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -24721232,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -24721232,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -24721232,"The Last Remnant",purchase,1.0,0 -24721232,"The Lord of the Rings War in the North",purchase,1.0,0 -24721232,"The Ship",purchase,1.0,0 -24721232,"The Ship Single Player",purchase,1.0,0 -24721232,"The Ship Tutorial",purchase,1.0,0 -24721232,"The Showdown Effect",purchase,1.0,0 -24721232,"The Swapper",purchase,1.0,0 -24721232,"The Walking Dead",purchase,1.0,0 -24721232,"Thief Gold",purchase,1.0,0 -24721232,"Thomas Was Alone",purchase,1.0,0 -24721232,"Tidalis",purchase,1.0,0 -24721232,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -24721232,"Titan Quest",purchase,1.0,0 -24721232,"To the Moon",purchase,1.0,0 -24721232,"Trine",purchase,1.0,0 -24721232,"Trine 2",purchase,1.0,0 -24721232,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -24721232,"Unepic",purchase,1.0,0 -24721232,"Unholy Heights",purchase,1.0,0 -24721232,"Vanguard Princess",purchase,1.0,0 -24721232,"Vanguard Princess Director's Cut",purchase,1.0,0 -24721232,"Vanguard Princess Hilda Rize",purchase,1.0,0 -24721232,"Vanguard Princess Kurumi",purchase,1.0,0 -24721232,"Vanguard Princess Lilith",purchase,1.0,0 -24721232,"Viking Battle for Asgard",purchase,1.0,0 -24721232,"Waking Mars",purchase,1.0,0 -24721232,"Wallace & Gromit Ep 1 Fright of the Bumblebees",purchase,1.0,0 -24721232,"Wallace & Gromit Ep 2 The Last Resort",purchase,1.0,0 -24721232,"Wallace & Gromit Ep 3 Muzzled!",purchase,1.0,0 -24721232,"Wallace & Gromit Ep 4 The Bogey Man",purchase,1.0,0 -24721232,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -24721232,"Warlock - Master of the Arcane",purchase,1.0,0 -24721232,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -24721232,"War of the Roses",purchase,1.0,0 -24721232,"War of the Roses Kingmaker",purchase,1.0,0 -24721232,"War of the Roses Balance Beta",purchase,1.0,0 -24721232,"Worms Armageddon",purchase,1.0,0 -24721232,"Worms Blast",purchase,1.0,0 -24721232,"Worms Crazy Golf",purchase,1.0,0 -24721232,"Worms Pinball",purchase,1.0,0 -24721232,"Worms Ultimate Mayhem",purchase,1.0,0 -24721232,"X-COM Apocalypse",purchase,1.0,0 -24721232,"X-COM Enforcer",purchase,1.0,0 -24721232,"X-COM Interceptor",purchase,1.0,0 -24721232,"X-COM Terror from the Deep",purchase,1.0,0 -24721232,"X-COM UFO Defense",purchase,1.0,0 -24721232,"Zeno Clash",purchase,1.0,0 -24721232,"Zombie Shooter",purchase,1.0,0 -24721232,"Zombie Shooter 2",purchase,1.0,0 -278473288,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -278473288,"Microsoft Flight Simulator X Steam Edition",play,8.7,0 -46014950,"Lords Of The Fallen",purchase,1.0,0 -46014950,"Lords Of The Fallen",play,7.4,0 -164884340,"Dota 2",purchase,1.0,0 -164884340,"Dota 2",play,75.0,0 -147750440,"Team Fortress 2",purchase,1.0,0 -147750440,"Team Fortress 2",play,4.5,0 -129221732,"Dota 2",purchase,1.0,0 -129221732,"Dota 2",play,14.6,0 -225048159,"Heroes & Generals",purchase,1.0,0 -225048159,"Heroes & Generals",play,297.0,0 -225048159,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -225048159,"Call of Duty Modern Warfare 3 - Multiplayer",play,25.0,0 -225048159,"Assassin's Creed IV Black Flag",purchase,1.0,0 -225048159,"Assassin's Creed IV Black Flag",play,21.0,0 -225048159,"Aliens vs. Predator",purchase,1.0,0 -225048159,"Aliens vs. Predator",play,10.7,0 -225048159,"Wargame AirLand Battle",purchase,1.0,0 -225048159,"Wargame AirLand Battle",play,2.6,0 -225048159,"King's Bounty The Legend",purchase,1.0,0 -225048159,"King's Bounty The Legend",play,2.3,0 -225048159,"Star Trek Online",purchase,1.0,0 -225048159,"Star Trek Online",play,1.7,0 -225048159,"Wind of Luck Arena",purchase,1.0,0 -225048159,"Wind of Luck Arena",play,1.6,0 -225048159,"Aliens Colonial Marines",purchase,1.0,0 -225048159,"Aliens Colonial Marines",play,1.5,0 -225048159,"War Thunder",purchase,1.0,0 -225048159,"War Thunder",play,1.2,0 -225048159,"War Inc. Battlezone",purchase,1.0,0 -225048159,"War Inc. Battlezone",play,1.1,0 -225048159,"Steel Ocean",purchase,1.0,0 -225048159,"Steel Ocean",play,0.7,0 -225048159,"Battlestations Pacific",purchase,1.0,0 -225048159,"Battlestations Pacific",play,0.3,0 -225048159,"Call of Duty Modern Warfare 3",purchase,1.0,0 -225048159,"Call of Duty Modern Warfare 3",play,0.3,0 -225048159,"Batman Arkham Origins",purchase,1.0,0 -225048159,"Batman Arkham Origins",play,0.1,0 -225048159,"XIII Century",purchase,1.0,0 -225048159,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -225048159,"Worms",purchase,1.0,0 -225048159,"DCS World",purchase,1.0,0 -225048159,"Reign Conflict of Nations",purchase,1.0,0 -225048159,"Fantasy Wars",purchase,1.0,0 -225048159,"King's Bounty Armored Princess",purchase,1.0,0 -225048159,"King's Bounty Crossworlds",purchase,1.0,0 -188250158,"Rust",purchase,1.0,0 -188250158,"Rust",play,22.0,0 -188250158,"Garry's Mod",purchase,1.0,0 -188250158,"Garry's Mod",play,15.7,0 -188250158,"Software Inc.",purchase,1.0,0 -188250158,"Software Inc.",play,9.8,0 -188250158,"Clicker Heroes",purchase,1.0,0 -188250158,"Clicker Heroes",play,6.8,0 -188250158,"LEGO Worlds",purchase,1.0,0 -188250158,"LEGO Worlds",play,2.4,0 -188250158,"Pixel Piracy",purchase,1.0,0 -188250158,"Pixel Piracy",play,2.0,0 -188250158,"Unturned",purchase,1.0,0 -188250158,"Unturned",play,0.8,0 -188250158,"Goat Simulator",purchase,1.0,0 -188250158,"Goat Simulator",play,0.4,0 -188250158,"8BitMMO",purchase,1.0,0 -188250158,"8BitMMO",play,0.4,0 -188250158,"Electric Highways",purchase,1.0,0 -188250158,"APB Reloaded",purchase,1.0,0 -188250158,"Heroes & Generals",purchase,1.0,0 -296947026,"Dota 2",purchase,1.0,0 -296947026,"Dota 2",play,4.4,0 -131712986,"Don't Starve Together Beta",purchase,1.0,0 -131712986,"Don't Starve Together Beta",play,4.2,0 -131712986,"Unturned",purchase,1.0,0 -131712986,"Unturned",play,3.1,0 -169517382,"Team Fortress 2",purchase,1.0,0 -169517382,"Team Fortress 2",play,3.8,0 -165353535,"Dota 2",purchase,1.0,0 -165353535,"Dota 2",play,865.0,0 -165353535,"8BitMMO",purchase,1.0,0 -165353535,"AdVenture Capitalist",purchase,1.0,0 -165353535,"Archeblade",purchase,1.0,0 -165353535,"Aura Kingdom",purchase,1.0,0 -165353535,"Battle Islands",purchase,1.0,0 -165353535,"Clicker Heroes",purchase,1.0,0 -165353535,"Dead Island Epidemic",purchase,1.0,0 -165353535,"Defiance",purchase,1.0,0 -165353535,"Dragons and Titans",purchase,1.0,0 -165353535,"Fistful of Frags",purchase,1.0,0 -165353535,"FreeStyle2 Street Basketball",purchase,1.0,0 -165353535,"Galcon 2",purchase,1.0,0 -165353535,"GunZ 2 The Second Duel",purchase,1.0,0 -165353535,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -165353535,"Loadout",purchase,1.0,0 -165353535,"Might & Magic Duel of Champions",purchase,1.0,0 -165353535,"Neverwinter",purchase,1.0,0 -165353535,"Robocraft",purchase,1.0,0 -165353535,"Royal Quest",purchase,1.0,0 -165353535,"Soldier Front 2",purchase,1.0,0 -165353535,"Strife",purchase,1.0,0 -165353535,"The Mighty Quest For Epic Loot",purchase,1.0,0 -165353535,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -165353535,"Trove",purchase,1.0,0 -165353535,"Warframe",purchase,1.0,0 -199816062,"Dota 2",purchase,1.0,0 -199816062,"Dota 2",play,503.0,0 -102950472,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -102950472,"Call of Duty Modern Warfare 3 - Multiplayer",play,54.0,0 -102950472,"PAYDAY 2",purchase,1.0,0 -102950472,"PAYDAY 2",play,26.0,0 -102950472,"Call of Duty Modern Warfare 3",purchase,1.0,0 -102950472,"Call of Duty Modern Warfare 3",play,24.0,0 -168571967,"Blood Bowl Chaos Edition",purchase,1.0,0 -168571967,"Blood Bowl Chaos Edition",play,7.9,0 -168571967,"The Elder Scrolls V Skyrim",purchase,1.0,0 -168571967,"The Elder Scrolls V Skyrim",play,1.0,0 -168571967,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -168571967,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -168571967,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -69422402,"Mafia II",purchase,1.0,0 -69422402,"Mafia II",play,8.3,0 -159726428,"Counter-Strike Global Offensive",purchase,1.0,0 -159726428,"Counter-Strike Global Offensive",play,37.0,0 -159726428,"Terraria",purchase,1.0,0 -159726428,"Terraria",play,31.0,0 -159726428,"Risk of Rain",purchase,1.0,0 -159726428,"Risk of Rain",play,5.8,0 -159726428,"BattleBlock Theater",purchase,1.0,0 -159726428,"BattleBlock Theater",play,1.9,0 -159726428,"Left 4 Dead 2",purchase,1.0,0 -159726428,"Unturned",purchase,1.0,0 -138294341,"Dota 2",purchase,1.0,0 -138294341,"Dota 2",play,10.1,0 -202794882,"Castle Crashers",purchase,1.0,0 -202794882,"Defy Gravity",purchase,1.0,0 -122551425,"Dota 2",purchase,1.0,0 -122551425,"Dota 2",play,1251.0,0 -122551425,"Nosgoth",purchase,1.0,0 -122551425,"Nosgoth",play,53.0,0 -122551425,"Stranded Deep",purchase,1.0,0 -122551425,"Stranded Deep",play,37.0,0 -122551425,"Planetary Annihilation TITANS",purchase,1.0,0 -122551425,"Planetary Annihilation TITANS",play,27.0,0 -122551425,"Company of Heroes (New Steam Version)",purchase,1.0,0 -122551425,"Company of Heroes (New Steam Version)",play,26.0,0 -122551425,"Gothic 3",purchase,1.0,0 -122551425,"Gothic 3",play,26.0,0 -122551425,"Borderlands 2",purchase,1.0,0 -122551425,"Borderlands 2",play,17.7,0 -122551425,"Counter-Strike Global Offensive",purchase,1.0,0 -122551425,"Counter-Strike Global Offensive",play,17.1,0 -122551425,"Viridi",purchase,1.0,0 -122551425,"Viridi",play,15.7,0 -122551425,"Banished",purchase,1.0,0 -122551425,"Banished",play,10.5,0 -122551425,"Cities Skylines",purchase,1.0,0 -122551425,"Cities Skylines",play,9.8,0 -122551425,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -122551425,"Star Wars Jedi Knight Jedi Academy",play,8.5,0 -122551425,"Orcs Must Die!",purchase,1.0,0 -122551425,"Orcs Must Die!",play,7.2,0 -122551425,"Mountain",purchase,1.0,0 -122551425,"Mountain",play,7.0,0 -122551425,"Age of Empires III Complete Collection",purchase,1.0,0 -122551425,"Age of Empires III Complete Collection",play,4.9,0 -122551425,"Outlast",purchase,1.0,0 -122551425,"Outlast",play,4.4,0 -122551425,"Left 4 Dead 2",purchase,1.0,0 -122551425,"Left 4 Dead 2",play,4.4,0 -122551425,"Grow Home",purchase,1.0,0 -122551425,"Grow Home",play,3.5,0 -122551425,"Lifeless Planet",purchase,1.0,0 -122551425,"Lifeless Planet",play,3.5,0 -122551425,"Nether",purchase,1.0,0 -122551425,"Nether",play,1.0,0 -122551425,"Shelter 2",purchase,1.0,0 -122551425,"Shelter 2",play,0.9,0 -122551425,"Overgrowth",purchase,1.0,0 -122551425,"Overgrowth",play,0.4,0 -122551425,"Cubic Castles",purchase,1.0,0 -122551425,"Cubic Castles",play,0.1,0 -122551425,"Floating Point",purchase,1.0,0 -122551425,"Bullet Candy",purchase,1.0,0 -122551425,"The Way of Life Free Edition",purchase,1.0,0 -122551425,"Dead Island Epidemic",purchase,1.0,0 -122551425,"Evolution RTS",purchase,1.0,0 -122551425,"Forge",purchase,1.0,0 -122551425,"Receiver",purchase,1.0,0 -122551425,"RIFT",purchase,1.0,0 -122551425,"Shelter 2 Soundtrack",purchase,1.0,0 -122551425,"Total War Battles KINGDOM",purchase,1.0,0 -122551425,"Warframe",purchase,1.0,0 -106797670,"Team Fortress 2",purchase,1.0,0 -106797670,"Team Fortress 2",play,2.0,0 -199005864,"Dota 2",purchase,1.0,0 -199005864,"Dota 2",play,2.4,0 -230386023,"Call of Duty Advanced Warfare",purchase,1.0,0 -230386023,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -197262235,"Team Fortress 2",purchase,1.0,0 -197262235,"Team Fortress 2",play,104.0,0 -199678802,"Dota 2",purchase,1.0,0 -199678802,"Dota 2",play,810.0,0 -199678802,"Dirty Bomb",purchase,1.0,0 -199678802,"Dirty Bomb",play,1.0,0 -153361267,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -153361267,"Call of Duty Ghosts - Multiplayer",play,4.8,0 -153361267,"Call of Duty Ghosts",purchase,1.0,0 -44426653,"Counter-Strike Global Offensive",purchase,1.0,0 -44426653,"Counter-Strike Global Offensive",play,191.0,0 -44426653,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -44426653,"Call of Duty Modern Warfare 2 - Multiplayer",play,40.0,0 -44426653,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -44426653,"Warhammer 40,000 Dawn of War II",play,26.0,0 -44426653,"Call of Duty Modern Warfare 2",purchase,1.0,0 -44426653,"Call of Duty Modern Warfare 2",play,11.6,0 -44426653,"Left 4 Dead",purchase,1.0,0 -44426653,"Left 4 Dead",play,9.0,0 -44426653,"Left 4 Dead 2",purchase,1.0,0 -44426653,"Left 4 Dead 2",play,7.2,0 -44426653,"Sanctum 2",purchase,1.0,0 -44426653,"Sanctum 2",play,1.5,0 -44426653,"Team Fortress 2",purchase,1.0,0 -44426653,"Team Fortress 2",play,0.2,0 -122444332,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -122444332,"METAL GEAR SOLID V THE PHANTOM PAIN",play,50.0,0 -122444332,"DmC Devil May Cry",purchase,1.0,0 -122444332,"DmC Devil May Cry",play,29.0,0 -122444332,"Evolve",purchase,1.0,0 -122444332,"Evolve",play,12.3,0 -122444332,"Tomb Raider",purchase,1.0,0 -122444332,"Tomb Raider",play,12.1,0 -122444332,"Besiege",purchase,1.0,0 -122444332,"Besiege",play,5.2,0 -122444332,"Left 4 Dead 2",purchase,1.0,0 -122444332,"Left 4 Dead 2",play,4.7,0 -122444332,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -122444332,"The Witcher 2 Assassins of Kings Enhanced Edition",play,4.0,0 -122444332,"Hand Of Fate",purchase,1.0,0 -122444332,"Hand Of Fate",play,2.6,0 -122444332,"NEKOPARA Vol. 1",purchase,1.0,0 -122444332,"NEKOPARA Vol. 1",play,1.6,0 -122444332,"Trine 2",purchase,1.0,0 -122444332,"Trine 2",play,1.4,0 -122444332,"Magicka",purchase,1.0,0 -122444332,"Magicka",play,1.0,0 -122444332,"Warframe",purchase,1.0,0 -122444332,"Warframe",play,0.9,0 -122444332,"Magicka Wizard Wars",purchase,1.0,0 -122444332,"Magicka Wizard Wars",play,0.3,0 -122444332,"Happy Wars",purchase,1.0,0 -122444332,"Happy Wars",play,0.2,0 -122444332,"Metro 2033",purchase,1.0,0 -122444332,"Metro 2033",play,0.2,0 -122444332,"Hyper Fighters",purchase,1.0,0 -122444332,"Hyper Fighters",play,0.1,0 -122444332,"Vertiginous Golf",purchase,1.0,0 -122444332,"Metal Gear Solid Legacy",purchase,1.0,0 -122444332,"Amnesia The Dark Descent",purchase,1.0,0 -122444332,"Evolve - Behemoth",purchase,1.0,0 -122444332,"NEKOPARA Vol. 0",purchase,1.0,0 -143770130,"Half-Life 2",purchase,1.0,0 -143770130,"Half-Life 2",play,21.0,0 -143770130,"Don't Starve",purchase,1.0,0 -143770130,"Don't Starve",play,12.2,0 -143770130,"Team Fortress 2",purchase,1.0,0 -143770130,"Team Fortress 2",play,3.9,0 -143770130,"Portal",purchase,1.0,0 -143770130,"Portal",play,1.5,0 -143770130,"Dota 2",purchase,1.0,0 -143770130,"Dota 2",play,0.5,0 -143770130,"Half-Life 2 Episode Two",purchase,1.0,0 -143770130,"Half-Life 2 Episode Two",play,0.4,0 -143770130,"Half-Life 2 Episode One",purchase,1.0,0 -143770130,"Don't Starve Together Beta",purchase,1.0,0 -143770130,"Half-Life 2 Lost Coast",purchase,1.0,0 -148327615,"Team Fortress 2",purchase,1.0,0 -148327615,"Team Fortress 2",play,816.0,0 -204168370,"Dota 2",purchase,1.0,0 -204168370,"Dota 2",play,1.7,0 -191299959,"Unturned",purchase,1.0,0 -191299959,"Unturned",play,0.8,0 -191299959,"The Lord of the Rings Online",purchase,1.0,0 -104120883,"SpeedRunners",purchase,1.0,0 -104120883,"SpeedRunners",play,156.0,0 -104120883,"Counter-Strike Global Offensive",purchase,1.0,0 -104120883,"Counter-Strike Global Offensive",play,114.0,0 -104120883,"Team Fortress 2",purchase,1.0,0 -104120883,"Team Fortress 2",play,53.0,0 -104120883,"AdVenture Capitalist",purchase,1.0,0 -104120883,"AdVenture Capitalist",play,39.0,0 -104120883,"Garry's Mod",purchase,1.0,0 -104120883,"Garry's Mod",play,32.0,0 -104120883,"Brawlhalla",purchase,1.0,0 -104120883,"Brawlhalla",play,17.7,0 -104120883,"TERA",purchase,1.0,0 -104120883,"TERA",play,13.5,0 -104120883,"Risk of Rain",purchase,1.0,0 -104120883,"Risk of Rain",play,11.0,0 -104120883,"BattleBlock Theater",purchase,1.0,0 -104120883,"BattleBlock Theater",play,6.9,0 -104120883,"Unturned",purchase,1.0,0 -104120883,"Unturned",play,4.4,0 -104120883,"Terraria",purchase,1.0,0 -104120883,"Terraria",play,3.5,0 -104120883,"Game Dev Tycoon",purchase,1.0,0 -104120883,"Game Dev Tycoon",play,2.9,0 -104120883,"Toribash",purchase,1.0,0 -104120883,"Toribash",play,2.7,0 -104120883,"Borderlands 2",purchase,1.0,0 -104120883,"Borderlands 2",play,2.0,0 -104120883,"Gotham City Impostors Free To Play",purchase,1.0,0 -104120883,"Gotham City Impostors Free To Play",play,1.5,0 -104120883,"DC Universe Online",purchase,1.0,0 -104120883,"DC Universe Online",play,1.4,0 -104120883,"Happy Wars",purchase,1.0,0 -104120883,"Happy Wars",play,1.3,0 -104120883,"Firefall",purchase,1.0,0 -104120883,"Firefall",play,1.3,0 -104120883,"Double Action Boogaloo",purchase,1.0,0 -104120883,"Double Action Boogaloo",play,1.0,0 -104120883,"Pool Nation",purchase,1.0,0 -104120883,"Pool Nation",play,0.7,0 -104120883,"Borderlands",purchase,1.0,0 -104120883,"Borderlands",play,0.3,0 -104120883,"PAYDAY 2",purchase,1.0,0 -104120883,"PAYDAY 2",play,0.2,0 -104120883,"Moonbase Alpha",purchase,1.0,0 -104120883,"Moonbase Alpha",play,0.2,0 -104120883,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -104120883,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -104120883,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -104120883,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -104120883,"RIFT",purchase,1.0,0 -132008856,"Dota 2",purchase,1.0,0 -132008856,"Dota 2",play,527.0,0 -132008856,"Left 4 Dead 2",purchase,1.0,0 -132008856,"Left 4 Dead 2",play,2.5,0 -138941587,"Terraria",purchase,1.0,0 -138941587,"Terraria",play,392.0,0 -138941587,"The Elder Scrolls V Skyrim",purchase,1.0,0 -138941587,"The Elder Scrolls V Skyrim",play,344.0,0 -138941587,"The Binding of Isaac Rebirth",purchase,1.0,0 -138941587,"The Binding of Isaac Rebirth",play,303.0,0 -138941587,"The Binding of Isaac",purchase,1.0,0 -138941587,"The Binding of Isaac",play,133.0,0 -138941587,"Hero Siege",purchase,1.0,0 -138941587,"Hero Siege",play,109.0,0 -138941587,"AdVenture Capitalist",purchase,1.0,0 -138941587,"AdVenture Capitalist",play,68.0,0 -138941587,"Clicker Heroes",purchase,1.0,0 -138941587,"Clicker Heroes",play,66.0,0 -138941587,"Awesomenauts",purchase,1.0,0 -138941587,"Awesomenauts",play,60.0,0 -138941587,"Borderlands 2",purchase,1.0,0 -138941587,"Borderlands 2",play,60.0,0 -138941587,"Audiosurf",purchase,1.0,0 -138941587,"Audiosurf",play,41.0,0 -138941587,"You Must Build A Boat",purchase,1.0,0 -138941587,"You Must Build A Boat",play,32.0,0 -138941587,"Deponia",purchase,1.0,0 -138941587,"Deponia",play,30.0,0 -138941587,"Trine",purchase,1.0,0 -138941587,"Trine",play,22.0,0 -138941587,"Triple Town",purchase,1.0,0 -138941587,"Triple Town",play,21.0,0 -138941587,"Tap Heroes",purchase,1.0,0 -138941587,"Tap Heroes",play,21.0,0 -138941587,"Counter-Strike Global Offensive",purchase,1.0,0 -138941587,"Counter-Strike Global Offensive",play,20.0,0 -138941587,"Trine 2",purchase,1.0,0 -138941587,"Trine 2",play,19.3,0 -138941587,"One Finger Death Punch",purchase,1.0,0 -138941587,"One Finger Death Punch",play,16.7,0 -138941587,"The Albino Hunter",purchase,1.0,0 -138941587,"The Albino Hunter",play,16.7,0 -138941587,"QuestRun",purchase,1.0,0 -138941587,"QuestRun",play,16.2,0 -138941587,"Antisquad",purchase,1.0,0 -138941587,"Antisquad",play,16.2,0 -138941587,"Torchlight II",purchase,1.0,0 -138941587,"Torchlight II",play,15.6,0 -138941587,"Faerie Solitaire",purchase,1.0,0 -138941587,"Faerie Solitaire",play,15.4,0 -138941587,"Garry's Mod",purchase,1.0,0 -138941587,"Garry's Mod",play,15.0,0 -138941587,"Gravity Badgers",purchase,1.0,0 -138941587,"Gravity Badgers",play,14.9,0 -138941587,"Why So Evil 2 Dystopia",purchase,1.0,0 -138941587,"Why So Evil 2 Dystopia",play,14.3,0 -138941587,"Point Perfect",purchase,1.0,0 -138941587,"Point Perfect",play,14.0,0 -138941587,"Battlepaths",purchase,1.0,0 -138941587,"Battlepaths",play,12.9,0 -138941587,"Bardbarian",purchase,1.0,0 -138941587,"Bardbarian",play,12.7,0 -138941587,"Beyond Space",purchase,1.0,0 -138941587,"Beyond Space",play,12.6,0 -138941587,"Scourge Outbreak",purchase,1.0,0 -138941587,"Scourge Outbreak",play,12.5,0 -138941587,"Sid Meier's Ace Patrol",purchase,1.0,0 -138941587,"Sid Meier's Ace Patrol",play,11.9,0 -138941587,"Torchlight",purchase,1.0,0 -138941587,"Torchlight",play,11.8,0 -138941587,"E.Y.E Divine Cybermancy",purchase,1.0,0 -138941587,"E.Y.E Divine Cybermancy",play,11.7,0 -138941587,"Bejeweled 3",purchase,1.0,0 -138941587,"Bejeweled 3",play,11.1,0 -138941587,"Cave Story+",purchase,1.0,0 -138941587,"Cave Story+",play,11.0,0 -138941587,"4 Elements",purchase,1.0,0 -138941587,"4 Elements",play,10.9,0 -138941587,"The Lady",purchase,1.0,0 -138941587,"The Lady",play,10.8,0 -138941587,"Evoland",purchase,1.0,0 -138941587,"Evoland",play,10.8,0 -138941587,"Chaos on Deponia",purchase,1.0,0 -138941587,"Chaos on Deponia",play,10.6,0 -138941587,"Risen",purchase,1.0,0 -138941587,"Risen",play,10.1,0 -138941587,"Super Meat Boy",purchase,1.0,0 -138941587,"Super Meat Boy",play,10.0,0 -138941587,"Pixel Puzzles Japan",purchase,1.0,0 -138941587,"Pixel Puzzles Japan",play,9.9,0 -138941587,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -138941587,"Plants vs. Zombies Game of the Year",play,9.9,0 -138941587,"Angels of Fasaria Version 2.0",purchase,1.0,0 -138941587,"Angels of Fasaria Version 2.0",play,9.9,0 -138941587,"Nidhogg",purchase,1.0,0 -138941587,"Nidhogg",play,9.8,0 -138941587,"Dungeon Defenders II",purchase,1.0,0 -138941587,"Dungeon Defenders II",play,9.5,0 -138941587,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -138941587,"The Witcher 2 Assassins of Kings Enhanced Edition",play,9.5,0 -138941587,"Fallen Enchantress Legendary Heroes",purchase,1.0,0 -138941587,"Fallen Enchantress Legendary Heroes",play,9.5,0 -138941587,"Beat Hazard",purchase,1.0,0 -138941587,"Beat Hazard",play,9.4,0 -138941587,"Chronicles of a Dark Lord Episode 1 Tides of Fate Complete",purchase,1.0,0 -138941587,"Chronicles of a Dark Lord Episode 1 Tides of Fate Complete",play,9.2,0 -138941587,"Age of Empires II HD Edition",purchase,1.0,0 -138941587,"Age of Empires II HD Edition",play,9.1,0 -138941587,"Monaco",purchase,1.0,0 -138941587,"Monaco",play,9.0,0 -138941587,"Victim of Xen",purchase,1.0,0 -138941587,"Victim of Xen",play,8.9,0 -138941587,"Boid",purchase,1.0,0 -138941587,"Boid",play,8.9,0 -138941587,"The Detail",purchase,1.0,0 -138941587,"The Detail",play,8.9,0 -138941587,"Camera Obscura",purchase,1.0,0 -138941587,"Camera Obscura",play,8.8,0 -138941587,"Swipecart",purchase,1.0,0 -138941587,"Swipecart",play,8.8,0 -138941587,"Stronghold 3",purchase,1.0,0 -138941587,"Stronghold 3",play,8.7,0 -138941587,"Super Killer Hornet Resurrection",purchase,1.0,0 -138941587,"Super Killer Hornet Resurrection",play,8.4,0 -138941587,"Absconding Zatwor",purchase,1.0,0 -138941587,"Absconding Zatwor",play,8.2,0 -138941587,"Major Mayhem",purchase,1.0,0 -138941587,"Major Mayhem",play,8.2,0 -138941587,"LIMBO",purchase,1.0,0 -138941587,"LIMBO",play,8.2,0 -138941587,"Speedball 2 HD",purchase,1.0,0 -138941587,"Speedball 2 HD",play,8.1,0 -138941587,"Burgers",purchase,1.0,0 -138941587,"Burgers",play,7.8,0 -138941587,"PAYDAY The Heist",purchase,1.0,0 -138941587,"PAYDAY The Heist",play,7.8,0 -138941587,"Hero of the Kingdom",purchase,1.0,0 -138941587,"Hero of the Kingdom",play,7.4,0 -138941587,"Nightmares from the Deep The Cursed Heart",purchase,1.0,0 -138941587,"Nightmares from the Deep The Cursed Heart",play,7.3,0 -138941587,"The Witcher Enhanced Edition",purchase,1.0,0 -138941587,"The Witcher Enhanced Edition",play,7.3,0 -138941587,"Don't Starve Together Beta",purchase,1.0,0 -138941587,"Don't Starve Together Beta",play,7.2,0 -138941587,"Uriel's Chasm",purchase,1.0,0 -138941587,"Uriel's Chasm",play,7.1,0 -138941587,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -138941587,"Nosferatu The Wrath of Malachi",play,7.0,0 -138941587,"Teleglitch Die More Edition",purchase,1.0,0 -138941587,"Teleglitch Die More Edition",play,7.0,0 -138941587,"Grimm",purchase,1.0,0 -138941587,"Grimm",play,6.9,0 -138941587,"Cthulhu Saves the World ",purchase,1.0,0 -138941587,"Cthulhu Saves the World ",play,6.7,0 -138941587,"Knock-knock",purchase,1.0,0 -138941587,"Knock-knock",play,6.7,0 -138941587,"The Adventures of Tree",purchase,1.0,0 -138941587,"The Adventures of Tree",play,6.5,0 -138941587,"Teddy Floppy Ear - The Race",purchase,1.0,0 -138941587,"Teddy Floppy Ear - The Race",play,6.4,0 -138941587,"Quest of Dungeons",purchase,1.0,0 -138941587,"Quest of Dungeons",play,6.1,0 -138941587,"Ichi",purchase,1.0,0 -138941587,"Ichi",play,5.9,0 -138941587,"Warlock - Master of the Arcane",purchase,1.0,0 -138941587,"Warlock - Master of the Arcane",play,5.8,0 -138941587,"Why So Evil",purchase,1.0,0 -138941587,"Why So Evil",play,5.8,0 -138941587,"Don't Starve",purchase,1.0,0 -138941587,"Don't Starve",play,5.8,0 -138941587,"Team Fortress 2",purchase,1.0,0 -138941587,"Team Fortress 2",play,5.7,0 -138941587,"Sniper Elite V2",purchase,1.0,0 -138941587,"Sniper Elite V2",play,5.6,0 -138941587,"Blood of Old",purchase,1.0,0 -138941587,"Blood of Old",play,5.5,0 -138941587,"Borealis",purchase,1.0,0 -138941587,"Borealis",play,5.4,0 -138941587,"Despair",purchase,1.0,0 -138941587,"Despair",play,5.4,0 -138941587,"Robotex",purchase,1.0,0 -138941587,"Robotex",play,5.4,0 -138941587,"Goat Simulator",purchase,1.0,0 -138941587,"Goat Simulator",play,5.2,0 -138941587,"Kingdom Rush",purchase,1.0,0 -138941587,"Kingdom Rush",play,5.2,0 -138941587,"Tidalis",purchase,1.0,0 -138941587,"Tidalis",play,5.2,0 -138941587,"Platypus II",purchase,1.0,0 -138941587,"Platypus II",play,5.2,0 -138941587,"Surgeon Simulator",purchase,1.0,0 -138941587,"Surgeon Simulator",play,5.0,0 -138941587,"Hotline Miami",purchase,1.0,0 -138941587,"Hotline Miami",play,5.0,0 -138941587,"Anoxemia",purchase,1.0,0 -138941587,"Anoxemia",play,4.9,0 -138941587,"PixelJunk Monsters Ultimate",purchase,1.0,0 -138941587,"PixelJunk Monsters Ultimate",play,4.7,0 -138941587,"Relic Hunters Zero",purchase,1.0,0 -138941587,"Relic Hunters Zero",play,4.7,0 -138941587,"Starlaxis Supernova Edition",purchase,1.0,0 -138941587,"Starlaxis Supernova Edition",play,4.7,0 -138941587,"3 Stars of Destiny",purchase,1.0,0 -138941587,"3 Stars of Destiny",play,4.7,0 -138941587,"Mitos.is The Game",purchase,1.0,0 -138941587,"Mitos.is The Game",play,4.5,0 -138941587,"AXYOS",purchase,1.0,0 -138941587,"AXYOS",play,4.4,0 -138941587,"Pixel Piracy",purchase,1.0,0 -138941587,"Pixel Piracy",play,4.4,0 -138941587,"The Undying Plague",purchase,1.0,0 -138941587,"The Undying Plague",play,4.4,0 -138941587,"Sins of a Dark Age",purchase,1.0,0 -138941587,"Sins of a Dark Age",play,4.3,0 -138941587,"Spelunky",purchase,1.0,0 -138941587,"Spelunky",play,4.3,0 -138941587,"Caster",purchase,1.0,0 -138941587,"Caster",play,4.3,0 -138941587,"Dead Bits",purchase,1.0,0 -138941587,"Dead Bits",play,4.2,0 -138941587,"Alchemy Mysteries Prague Legends",purchase,1.0,0 -138941587,"Alchemy Mysteries Prague Legends",play,4.2,0 -138941587,"The Elder Scrolls III Morrowind",purchase,1.0,0 -138941587,"The Elder Scrolls III Morrowind",play,4.2,0 -138941587,"Overcast - Walden and the Werewolf",purchase,1.0,0 -138941587,"Overcast - Walden and the Werewolf",play,4.2,0 -138941587,"The Adventures of Mr. Bobley",purchase,1.0,0 -138941587,"The Adventures of Mr. Bobley",play,4.2,0 -138941587,"Divekick",purchase,1.0,0 -138941587,"Divekick",play,4.2,0 -138941587,"DLC Quest",purchase,1.0,0 -138941587,"DLC Quest",play,4.1,0 -138941587,"Teddy Floppy Ear - Mountain Adventure",purchase,1.0,0 -138941587,"Teddy Floppy Ear - Mountain Adventure",play,4.1,0 -138941587,"Skyborn",purchase,1.0,0 -138941587,"Skyborn",play,4.1,0 -138941587,"Melissa K. and the Heart of Gold Collector's Edition",purchase,1.0,0 -138941587,"Melissa K. and the Heart of Gold Collector's Edition",play,4.1,0 -138941587,"Stealth Inc 2",purchase,1.0,0 -138941587,"Stealth Inc 2",play,4.0,0 -138941587,"Ironclad Tactics",purchase,1.0,0 -138941587,"Ironclad Tactics",play,4.0,0 -138941587,"Paranormal State Poison Spring Collector's Edition",purchase,1.0,0 -138941587,"Paranormal State Poison Spring Collector's Edition",play,4.0,0 -138941587,"Dracula's Legacy",purchase,1.0,0 -138941587,"Dracula's Legacy",play,4.0,0 -138941587,"Hammerwatch",purchase,1.0,0 -138941587,"Hammerwatch",play,3.9,0 -138941587,"Nightmares from the Deep 2 The Siren`s Call",purchase,1.0,0 -138941587,"Nightmares from the Deep 2 The Siren`s Call",play,3.9,0 -138941587,"Risk of Rain",purchase,1.0,0 -138941587,"Risk of Rain",play,3.8,0 -138941587,"Edna & Harvey Harvey's New Eyes",purchase,1.0,0 -138941587,"Edna & Harvey Harvey's New Eyes",play,3.8,0 -138941587,"Talisman Prologue",purchase,1.0,0 -138941587,"Talisman Prologue",play,3.8,0 -138941587,"WAKFU",purchase,1.0,0 -138941587,"WAKFU",play,3.7,0 -138941587,"Oddworld Abe's Oddysee",purchase,1.0,0 -138941587,"Oddworld Abe's Oddysee",play,3.7,0 -138941587,"Grim Legends The Forsaken Bride",purchase,1.0,0 -138941587,"Grim Legends The Forsaken Bride",play,3.7,0 -138941587,"12 Labours of Hercules",purchase,1.0,0 -138941587,"12 Labours of Hercules",play,3.6,0 -138941587,"Eaten Alive",purchase,1.0,0 -138941587,"Eaten Alive",play,3.6,0 -138941587,"Hostile Waters Antaeus Rising",purchase,1.0,0 -138941587,"Hostile Waters Antaeus Rising",play,3.6,0 -138941587,"Tales from Space Mutant Blobs Attack",purchase,1.0,0 -138941587,"Tales from Space Mutant Blobs Attack",play,3.6,0 -138941587,"Shufflepuck Cantina Deluxe VR",purchase,1.0,0 -138941587,"Shufflepuck Cantina Deluxe VR",play,3.6,0 -138941587,"Borderlands",purchase,1.0,0 -138941587,"Borderlands",play,3.6,0 -138941587,"Teddy Floppy Ear - Kayaking",purchase,1.0,0 -138941587,"Teddy Floppy Ear - Kayaking",play,3.5,0 -138941587,"Brilliant Bob",purchase,1.0,0 -138941587,"Brilliant Bob",play,3.5,0 -138941587,"Magicka",purchase,1.0,0 -138941587,"Magicka",play,3.5,0 -138941587,"Terra Incognita ~ Chapter One The Descendant",purchase,1.0,0 -138941587,"Terra Incognita ~ Chapter One The Descendant",play,3.4,0 -138941587,"Frozen Hearth",purchase,1.0,0 -138941587,"Frozen Hearth",play,3.4,0 -138941587,"Particula",purchase,1.0,0 -138941587,"Particula",play,3.4,0 -138941587,"Clockwork Tales Of Glass and Ink",purchase,1.0,0 -138941587,"Clockwork Tales Of Glass and Ink",play,3.4,0 -138941587,"Half-Life 2",purchase,1.0,0 -138941587,"Half-Life 2",play,3.4,0 -138941587,"Left in the Dark No One on Board",purchase,1.0,0 -138941587,"Left in the Dark No One on Board",play,3.4,0 -138941587,"Time Mysteries Inheritance - Remastered",purchase,1.0,0 -138941587,"Time Mysteries Inheritance - Remastered",play,3.4,0 -138941587,"Enigmatis The Ghosts of Maple Creek",purchase,1.0,0 -138941587,"Enigmatis The Ghosts of Maple Creek",play,3.4,0 -138941587,"9 Clues The Secret of Serpent Creek",purchase,1.0,0 -138941587,"9 Clues The Secret of Serpent Creek",play,3.4,0 -138941587,"Bionic Dues",purchase,1.0,0 -138941587,"Bionic Dues",play,3.4,0 -138941587,"Goodbye Deponia",purchase,1.0,0 -138941587,"Goodbye Deponia",play,3.4,0 -138941587,"Saviors",purchase,1.0,0 -138941587,"Saviors",play,3.4,0 -138941587,"Canyon Capers",purchase,1.0,0 -138941587,"Canyon Capers",play,3.4,0 -138941587,"Dungeon Hearts",purchase,1.0,0 -138941587,"Dungeon Hearts",play,3.4,0 -138941587,"The Defenders The Second Wave",purchase,1.0,0 -138941587,"The Defenders The Second Wave",play,3.4,0 -138941587,"Doorways The Underworld",purchase,1.0,0 -138941587,"Doorways The Underworld",play,3.4,0 -138941587,"Tea Party Simulator 2015",purchase,1.0,0 -138941587,"Tea Party Simulator 2015",play,3.3,0 -138941587,"Crazy Plant Shop",purchase,1.0,0 -138941587,"Crazy Plant Shop",play,3.3,0 -138941587,"The 39 Steps",purchase,1.0,0 -138941587,"The 39 Steps",play,3.3,0 -138941587,"12 Labours of Hercules III Girl Power",purchase,1.0,0 -138941587,"12 Labours of Hercules III Girl Power",play,3.3,0 -138941587,"Lucius",purchase,1.0,0 -138941587,"Lucius",play,3.3,0 -138941587,"Two Worlds Epic Edition",purchase,1.0,0 -138941587,"Two Worlds Epic Edition",play,3.3,0 -138941587,"Gunspell Steam Edition",purchase,1.0,0 -138941587,"Gunspell Steam Edition",play,3.3,0 -138941587,"Edna & Harvey The Breakout",purchase,1.0,0 -138941587,"Edna & Harvey The Breakout",play,3.2,0 -138941587,"Journey Of The Light",purchase,1.0,0 -138941587,"Journey Of The Light",play,3.2,0 -138941587,"TypeRider",purchase,1.0,0 -138941587,"TypeRider",play,3.2,0 -138941587,"Phoenix Force",purchase,1.0,0 -138941587,"Phoenix Force",play,3.2,0 -138941587,"Enclave",purchase,1.0,0 -138941587,"Enclave",play,3.2,0 -138941587,"Battleplan American Civil War",purchase,1.0,0 -138941587,"Battleplan American Civil War",play,3.1,0 -138941587,"Face Noir",purchase,1.0,0 -138941587,"Face Noir",play,3.1,0 -138941587,"Sanctum 2",purchase,1.0,0 -138941587,"Sanctum 2",play,3.1,0 -138941587,"SUPER DISTRO",purchase,1.0,0 -138941587,"SUPER DISTRO",play,3.1,0 -138941587,"Skara - The Blade Remains",purchase,1.0,0 -138941587,"Skara - The Blade Remains",play,3.1,0 -138941587,"Treeker The Lost Glasses",purchase,1.0,0 -138941587,"Treeker The Lost Glasses",play,3.0,0 -138941587,"Reach for the Sun",purchase,1.0,0 -138941587,"Reach for the Sun",play,3.0,0 -138941587,"Frederic Evil Strikes Back",purchase,1.0,0 -138941587,"Frederic Evil Strikes Back",play,3.0,0 -138941587,"The Nightmare Cooperative",purchase,1.0,0 -138941587,"The Nightmare Cooperative",play,3.0,0 -138941587,"Grimoire Manastorm",purchase,1.0,0 -138941587,"Grimoire Manastorm",play,3.0,0 -138941587,"Final Dusk",purchase,1.0,0 -138941587,"Final Dusk",play,3.0,0 -138941587,"Blob From Space",purchase,1.0,0 -138941587,"Blob From Space",play,3.0,0 -138941587,"Ionball 2 Ionstorm",purchase,1.0,0 -138941587,"Ionball 2 Ionstorm",play,3.0,0 -138941587,"Rabbit Hole 3D Steam Edition",purchase,1.0,0 -138941587,"Rabbit Hole 3D Steam Edition",play,3.0,0 -138941587,"Z",purchase,1.0,0 -138941587,"Z",play,3.0,0 -138941587,"Humanity Asset",purchase,1.0,0 -138941587,"Humanity Asset",play,3.0,0 -138941587,"500 Years Act 1",purchase,1.0,0 -138941587,"500 Years Act 1",play,3.0,0 -138941587,"CAFE 0 ~The Drowned Mermaid~",purchase,1.0,0 -138941587,"CAFE 0 ~The Drowned Mermaid~",play,3.0,0 -138941587,"SteamWorld Dig",purchase,1.0,0 -138941587,"SteamWorld Dig",play,3.0,0 -138941587,"Vintage Year",purchase,1.0,0 -138941587,"Vintage Year",play,3.0,0 -138941587,"Obludia",purchase,1.0,0 -138941587,"Obludia",play,3.0,0 -138941587,"Uncrowded",purchase,1.0,0 -138941587,"Uncrowded",play,2.9,0 -138941587,"Zombie Zoeds",purchase,1.0,0 -138941587,"Zombie Zoeds",play,2.9,0 -138941587,"Jet Gunner",purchase,1.0,0 -138941587,"Jet Gunner",play,2.9,0 -138941587,"X-Blades",purchase,1.0,0 -138941587,"X-Blades",play,2.9,0 -138941587,"Race The Sun",purchase,1.0,0 -138941587,"Race The Sun",play,2.9,0 -138941587,"Clash of Puppets",purchase,1.0,0 -138941587,"Clash of Puppets",play,2.9,0 -138941587,"Blaster Shooter GunGuy!",purchase,1.0,0 -138941587,"Blaster Shooter GunGuy!",play,2.9,0 -138941587,"Lilly and Sasha Curse of the Immortals",purchase,1.0,0 -138941587,"Lilly and Sasha Curse of the Immortals",play,2.9,0 -138941587,"Splatter - Blood Red Edition",purchase,1.0,0 -138941587,"Splatter - Blood Red Edition",play,2.9,0 -138941587,"Orcs Must Die! 2",purchase,1.0,0 -138941587,"Orcs Must Die! 2",play,2.8,0 -138941587,"Bermuda",purchase,1.0,0 -138941587,"Bermuda",play,2.8,0 -138941587,"DETOUR",purchase,1.0,0 -138941587,"DETOUR",play,2.8,0 -138941587,"TERA",purchase,1.0,0 -138941587,"TERA",play,2.8,0 -138941587,"The Howler",purchase,1.0,0 -138941587,"The Howler",play,2.8,0 -138941587,"Break Into Zatwor",purchase,1.0,0 -138941587,"Break Into Zatwor",play,2.7,0 -138941587,"N.P.P.D. RUSH - The milk of Ultra violet",purchase,1.0,0 -138941587,"N.P.P.D. RUSH - The milk of Ultra violet",play,2.7,0 -138941587,"Voxelized",purchase,1.0,0 -138941587,"Voxelized",play,2.7,0 -138941587,"Marble Mayhem Fragile Ball",purchase,1.0,0 -138941587,"Marble Mayhem Fragile Ball",play,2.7,0 -138941587,"Stellar 2D",purchase,1.0,0 -138941587,"Stellar 2D",play,2.7,0 -138941587,"PARTICLE MACE",purchase,1.0,0 -138941587,"PARTICLE MACE",play,2.7,0 -138941587,"Doorways Prelude",purchase,1.0,0 -138941587,"Doorways Prelude",play,2.7,0 -138941587,"New kind of adventure",purchase,1.0,0 -138941587,"New kind of adventure",play,2.7,0 -138941587,"Forsaken Uprising",purchase,1.0,0 -138941587,"Forsaken Uprising",play,2.7,0 -138941587,"Sugar Cube Bittersweet Factory",purchase,1.0,0 -138941587,"Sugar Cube Bittersweet Factory",play,2.7,0 -138941587,"Tiny Bridge Ratventure",purchase,1.0,0 -138941587,"Tiny Bridge Ratventure",play,2.7,0 -138941587,"Really Big Sky",purchase,1.0,0 -138941587,"Really Big Sky",play,2.6,0 -138941587,"Greyfox",purchase,1.0,0 -138941587,"Greyfox",play,2.6,0 -138941587,"Gravilon",purchase,1.0,0 -138941587,"Gravilon",play,2.6,0 -138941587,"Out There Somewhere",purchase,1.0,0 -138941587,"Out There Somewhere",play,2.6,0 -138941587,"Waveform",purchase,1.0,0 -138941587,"Waveform",play,2.6,0 -138941587,"Make it indie!",purchase,1.0,0 -138941587,"Make it indie!",play,2.6,0 -138941587,"Legend of Mysteria",purchase,1.0,0 -138941587,"Legend of Mysteria",play,2.6,0 -138941587,"Labyronia RPG",purchase,1.0,0 -138941587,"Labyronia RPG",play,2.6,0 -138941587,"Catmouth Island",purchase,1.0,0 -138941587,"Catmouth Island",play,2.6,0 -138941587,"Destiny Warriors",purchase,1.0,0 -138941587,"Destiny Warriors",play,2.6,0 -138941587,"Revolution Ace",purchase,1.0,0 -138941587,"Revolution Ace",play,2.6,0 -138941587,"Morphopolis",purchase,1.0,0 -138941587,"Morphopolis",play,2.6,0 -138941587,"Squishy the Suicidal Pig",purchase,1.0,0 -138941587,"Squishy the Suicidal Pig",play,2.6,0 -138941587,"The Hat Man Shadow Ward",purchase,1.0,0 -138941587,"The Hat Man Shadow Ward",play,2.6,0 -138941587,"Sinister City",purchase,1.0,0 -138941587,"Sinister City",play,2.6,0 -138941587,"Sun Blast",purchase,1.0,0 -138941587,"Sun Blast",play,2.6,0 -138941587,"Secret Of Magia",purchase,1.0,0 -138941587,"Secret Of Magia",play,2.6,0 -138941587,"RADical ROACH Deluxe Edition",purchase,1.0,0 -138941587,"RADical ROACH Deluxe Edition",play,2.6,0 -138941587,"The Ship",purchase,1.0,0 -138941587,"The Ship",play,2.5,0 -138941587,"Enemy Mind",purchase,1.0,0 -138941587,"Enemy Mind",play,2.5,0 -138941587,"Ancient Planet",purchase,1.0,0 -138941587,"Ancient Planet",play,2.5,0 -138941587,"Chip",purchase,1.0,0 -138941587,"Chip",play,2.5,0 -138941587,"Dino D-Day",purchase,1.0,0 -138941587,"Dino D-Day",play,2.5,0 -138941587,"Survivor Squad",purchase,1.0,0 -138941587,"Survivor Squad",play,2.4,0 -138941587,"Coffin Dodgers",purchase,1.0,0 -138941587,"Coffin Dodgers",play,2.4,0 -138941587,"Polarity",purchase,1.0,0 -138941587,"Polarity",play,2.4,0 -138941587,"Deadbreed",purchase,1.0,0 -138941587,"Deadbreed",play,2.4,0 -138941587,"RPG Maker VX Ace",purchase,1.0,0 -138941587,"RPG Maker VX Ace",play,2.4,0 -138941587,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -138941587,"Sid Meier's Ace Patrol Pacific Skies",play,2.4,0 -138941587,"Fat Chicken",purchase,1.0,0 -138941587,"Fat Chicken",play,2.4,0 -138941587,"Killing Floor",purchase,1.0,0 -138941587,"Killing Floor",play,2.3,0 -138941587,"SpaceChem",purchase,1.0,0 -138941587,"SpaceChem",play,2.3,0 -138941587,"Rome Total War",purchase,1.0,0 -138941587,"Rome Total War",play,2.3,0 -138941587,"DarkEnd",purchase,1.0,0 -138941587,"DarkEnd",play,2.3,0 -138941587,"Millennium - A New Hope",purchase,1.0,0 -138941587,"Millennium - A New Hope",play,2.2,0 -138941587,"Nux",purchase,1.0,0 -138941587,"Nux",play,2.1,0 -138941587,"Bad Rats",purchase,1.0,0 -138941587,"Bad Rats",play,2.0,0 -138941587,"Afterfall InSanity Extended Edition",purchase,1.0,0 -138941587,"Afterfall InSanity Extended Edition",play,2.0,0 -138941587,"Gold Rush! Classic",purchase,1.0,0 -138941587,"Gold Rush! Classic",play,2.0,0 -138941587,"Cobi Treasure Deluxe",purchase,1.0,0 -138941587,"Cobi Treasure Deluxe",play,2.0,0 -138941587,"Yury",purchase,1.0,0 -138941587,"Yury",play,2.0,0 -138941587,"Sometimes Success Requires Sacrifice",purchase,1.0,0 -138941587,"Sometimes Success Requires Sacrifice",play,1.9,0 -138941587,"Pixel Puzzles UndeadZ",purchase,1.0,0 -138941587,"Pixel Puzzles UndeadZ",play,1.9,0 -138941587,"BEEP",purchase,1.0,0 -138941587,"BEEP",play,1.8,0 -138941587,"POSTAL",purchase,1.0,0 -138941587,"POSTAL",play,1.7,0 -138941587,"Intergalactic Bubbles",purchase,1.0,0 -138941587,"Intergalactic Bubbles",play,1.6,0 -138941587,"Dota 2",purchase,1.0,0 -138941587,"Dota 2",play,1.6,0 -138941587,"The Culling Of The Cows",purchase,1.0,0 -138941587,"The Culling Of The Cows",play,1.6,0 -138941587,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -138941587,"The Elder Scrolls IV Oblivion ",play,1.6,0 -138941587,"Racer 8",purchase,1.0,0 -138941587,"Racer 8",play,1.5,0 -138941587,"Temper Tantrum",purchase,1.0,0 -138941587,"Temper Tantrum",play,1.5,0 -138941587,"The Deer",purchase,1.0,0 -138941587,"The Deer",play,1.5,0 -138941587,"Fiends of Imprisonment",purchase,1.0,0 -138941587,"Fiends of Imprisonment",play,1.5,0 -138941587,"Magicite",purchase,1.0,0 -138941587,"Magicite",play,1.5,0 -138941587,"Little Farm",purchase,1.0,0 -138941587,"Little Farm",play,1.4,0 -138941587,"FINAL FANTASY VII",purchase,1.0,0 -138941587,"FINAL FANTASY VII",play,1.4,0 -138941587,"Left 4 Dead 2",purchase,1.0,0 -138941587,"Left 4 Dead 2",play,1.3,0 -138941587,"Gun Monkeys",purchase,1.0,0 -138941587,"Gun Monkeys",play,1.3,0 -138941587,"Knights and Merchants",purchase,1.0,0 -138941587,"Knights and Merchants",play,1.3,0 -138941587,"Dust An Elysian Tail",purchase,1.0,0 -138941587,"Dust An Elysian Tail",play,1.3,0 -138941587,"Castle",purchase,1.0,0 -138941587,"Castle",play,1.3,0 -138941587,"Sang-Froid - Tales of Werewolves",purchase,1.0,0 -138941587,"Sang-Froid - Tales of Werewolves",play,1.3,0 -138941587,"Retention",purchase,1.0,0 -138941587,"Retention",play,1.3,0 -138941587,"Mechanic Escape",purchase,1.0,0 -138941587,"Mechanic Escape",play,1.3,0 -138941587,"One Way Heroics",purchase,1.0,0 -138941587,"One Way Heroics",play,1.2,0 -138941587,"Anomaly Warzone Earth",purchase,1.0,0 -138941587,"Anomaly Warzone Earth",play,1.2,0 -138941587,"Cards and Castles",purchase,1.0,0 -138941587,"Cards and Castles",play,1.2,0 -138941587,"Orcs Must Die!",purchase,1.0,0 -138941587,"Orcs Must Die!",play,1.2,0 -138941587,"Brawlhalla",purchase,1.0,0 -138941587,"Brawlhalla",play,1.1,0 -138941587,"Defy Gravity",purchase,1.0,0 -138941587,"Defy Gravity",play,1.0,0 -138941587,"Shadows on the Vatican - Act I Greed",purchase,1.0,0 -138941587,"Shadows on the Vatican - Act I Greed",play,1.0,0 -138941587,"Inside The Gear",purchase,1.0,0 -138941587,"Inside The Gear",play,0.9,0 -138941587,"Path of Exile",purchase,1.0,0 -138941587,"Path of Exile",play,0.9,0 -138941587,"A Valley Without Wind",purchase,1.0,0 -138941587,"A Valley Without Wind",play,0.9,0 -138941587,"Pressured",purchase,1.0,0 -138941587,"Pressured",play,0.8,0 -138941587,"Grimind",purchase,1.0,0 -138941587,"Grimind",play,0.7,0 -138941587,"Arma Cold War Assault",purchase,1.0,0 -138941587,"Arma Cold War Assault",play,0.6,0 -138941587,"Tinboy",purchase,1.0,0 -138941587,"Tinboy",play,0.6,0 -138941587,"Woodle Tree Adventures",purchase,1.0,0 -138941587,"Woodle Tree Adventures",play,0.6,0 -138941587,"GooCubelets",purchase,1.0,0 -138941587,"GooCubelets",play,0.6,0 -138941587,"Sanctum",purchase,1.0,0 -138941587,"Sanctum",play,0.5,0 -138941587,"FLY'N",purchase,1.0,0 -138941587,"FLY'N",play,0.5,0 -138941587,"iBomber Defense Pacific",purchase,1.0,0 -138941587,"iBomber Defense Pacific",play,0.5,0 -138941587,"Pirates of Black Cove Gold",purchase,1.0,0 -138941587,"Pirates of Black Cove Gold",play,0.5,0 -138941587,"Numba Deluxe",purchase,1.0,0 -138941587,"Numba Deluxe",play,0.4,0 -138941587,"Rogue's Tale",purchase,1.0,0 -138941587,"Rogue's Tale",play,0.3,0 -138941587,"Amnesia A Machine for Pigs",purchase,1.0,0 -138941587,"Amnesia A Machine for Pigs",play,0.1,0 -138941587,"Driftmoon",purchase,1.0,0 -138941587,"Dwarfs!?",purchase,1.0,0 -138941587,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -138941587,"A New Beginning - Final Cut",purchase,1.0,0 -138941587,"8BitBoy",purchase,1.0,0 -138941587,"ACE - Arena Cyber Evolution",purchase,1.0,0 -138941587,"Adventures of Shuggy",purchase,1.0,0 -138941587,"Age of Empires II HD The Forgotten",purchase,1.0,0 -138941587,"Alpha Protocol",purchase,1.0,0 -138941587,"Amnesia The Dark Descent",purchase,1.0,0 -138941587,"Antisquad Tasks in Mexico - the beginning. Tactics FREE DLC",purchase,1.0,0 -138941587,"Arma 2 Free",purchase,1.0,0 -138941587,"A Valley Without Wind 2",purchase,1.0,0 -138941587,"Avencast",purchase,1.0,0 -138941587,"Aveyond 3-2 Gates of Night",purchase,1.0,0 -138941587,"Beat Hazard - Shadow Operations Unit",purchase,1.0,0 -138941587,"Ben There, Dan That!",purchase,1.0,0 -138941587,"Bit Odyssey",purchase,1.0,0 -138941587,"Blob From Space - Please Don't Stop The Music",purchase,1.0,0 -138941587,"Bloop",purchase,1.0,0 -138941587,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -138941587,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -138941587,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -138941587,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -138941587,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -138941587,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -138941587,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -138941587,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -138941587,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -138941587,"Breath of Death VII ",purchase,1.0,0 -138941587,"CAFE 0 ~The Drowned Mermaid~ - Japanese Voice Add-On",purchase,1.0,0 -138941587,"Cakewalk Loop Manager",purchase,1.0,0 -138941587,"Car Mechanic Simulator 2014",purchase,1.0,0 -138941587,"Chaos Domain",purchase,1.0,0 -138941587,"Commander Conquest of the Americas Gold",purchase,1.0,0 -138941587,"Commando Jack",purchase,1.0,0 -138941587,"Company of Heroes",purchase,1.0,0 -138941587,"Company of Heroes (New Steam Version)",purchase,1.0,0 -138941587,"Construction Machines 2014",purchase,1.0,0 -138941587,"Crash Time II",purchase,1.0,0 -138941587,"Crazy Chicken Tales",purchase,1.0,0 -138941587,"CT Special Forces Fire for Effect",purchase,1.0,0 -138941587,"Cubetractor",purchase,1.0,0 -138941587,"Cult of the Wind",purchase,1.0,0 -138941587,"Dead Island Epidemic",purchase,1.0,0 -138941587,"Desert Thunder",purchase,1.0,0 -138941587,"Devil's Bluff",purchase,1.0,0 -138941587,"Dirty Bomb",purchase,1.0,0 -138941587,"Disciples III Reincarnation",purchase,1.0,0 -138941587,"Disciples III Renaissance",purchase,1.0,0 -138941587,"Disciples III Resurrection",purchase,1.0,0 -138941587,"DogFighter",purchase,1.0,0 -138941587,"Dragon Age Origins",purchase,1.0,0 -138941587,"Earth 2150 The Moon Project",purchase,1.0,0 -138941587,"East India Company Gold",purchase,1.0,0 -138941587,"Eurofighter Typhoon",purchase,1.0,0 -138941587,"Famaze",purchase,1.0,0 -138941587,"Farm Machines Championships 2014",purchase,1.0,0 -138941587,"Fester Mudd Curse of the Gold - Episode 1",purchase,1.0,0 -138941587,"Fractured Space",purchase,1.0,0 -138941587,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -138941587,"Glacier 3 The Meltdown",purchase,1.0,0 -138941587,"Global Ops Commando Libya",purchase,1.0,0 -138941587,"GTR Evolution",purchase,1.0,0 -138941587,"Half-Life 2 Lost Coast",purchase,1.0,0 -138941587,"Hammerfight",purchase,1.0,0 -138941587,"Helicopter Simulator 2014 Search and Rescue",purchase,1.0,0 -138941587,"Hell Yeah!",purchase,1.0,0 -138941587,"Heroine's Quest The Herald of Ragnarok",purchase,1.0,0 -138941587,"Hero Siege - The Karp of Doom",purchase,1.0,0 -138941587,"Hitman 2 Silent Assassin",purchase,1.0,0 -138941587,"HOARD",purchase,1.0,0 -138941587,"Hyper Fighters",purchase,1.0,0 -138941587,"Incoming Forces",purchase,1.0,0 -138941587,"Into The War",purchase,1.0,0 -138941587,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -138941587,"KnightShift",purchase,1.0,0 -138941587,"Kung Fury",purchase,1.0,0 -138941587,"Larva Mortus",purchase,1.0,0 -138941587,"La Tale",purchase,1.0,0 -138941587,"Litil Divil",purchase,1.0,0 -138941587,"Magicka Final Frontier",purchase,1.0,0 -138941587,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -138941587,"Magicka Nippon",purchase,1.0,0 -138941587,"Magicka Party Robes",purchase,1.0,0 -138941587,"Magicka The Watchtower",purchase,1.0,0 -138941587,"Magicka Vietnam",purchase,1.0,0 -138941587,"Magicka Wizard Wars",purchase,1.0,0 -138941587,"Marine Sharpshooter II Jungle Warfare",purchase,1.0,0 -138941587,"Metro 2033",purchase,1.0,0 -138941587,"Murder Miners",purchase,1.0,0 -138941587,"Nosgoth",purchase,1.0,0 -138941587,"Orborun",purchase,1.0,0 -138941587,"Pid ",purchase,1.0,0 -138941587,"Protocol",purchase,1.0,0 -138941587,"RACE 07",purchase,1.0,0 -138941587,"RaceRoom Racing Experience ",purchase,1.0,0 -138941587,"Ravensword Shadowlands",purchase,1.0,0 -138941587,"Realms of the Haunting",purchase,1.0,0 -138941587,"Receiver",purchase,1.0,0 -138941587,"Reversion - The Escape",purchase,1.0,0 -138941587,"Royal Quest",purchase,1.0,0 -138941587,"Ruzh Delta Z",purchase,1.0,0 -138941587,"Sacred Citadel",purchase,1.0,0 -138941587,"Saira",purchase,1.0,0 -138941587,"Scourge Outbreak - Blindside",purchase,1.0,0 -138941587,"Scourge Outbreak Fan Pack",purchase,1.0,0 -138941587,"Sid Meier's Civilization III Complete",purchase,1.0,0 -138941587,"Sid Meier's Civilization IV",purchase,1.0,0 -138941587,"Sid Meier's Civilization IV",purchase,1.0,0 -138941587,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -138941587,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -138941587,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -138941587,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -138941587,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -138941587,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -138941587,"Sky Battles",purchase,1.0,0 -138941587,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -138941587,"SMITE",purchase,1.0,0 -138941587,"SNOW",purchase,1.0,0 -138941587,"Space Hack",purchase,1.0,0 -138941587,"Steel & Steam Episode 1",purchase,1.0,0 -138941587,"TeraBlaster",purchase,1.0,0 -138941587,"Thank You The Game",purchase,1.0,0 -138941587,"The 7th Guest",purchase,1.0,0 -138941587,"The Expendabros",purchase,1.0,0 -138941587,"The Guild II",purchase,1.0,0 -138941587,"The Guild II - Pirates of the European Seas",purchase,1.0,0 -138941587,"The Guild II Renaissance",purchase,1.0,0 -138941587,"The Scourge Project Episode 1 and 2",purchase,1.0,0 -138941587,"The Ship Single Player",purchase,1.0,0 -138941587,"The Ship Tutorial",purchase,1.0,0 -138941587,"Tiestru",purchase,1.0,0 -138941587,"Time Gentlemen, Please!",purchase,1.0,0 -138941587,"Tom Clancy's Ghost Recon Phantoms - EU 100% XP/AC Boost - 30 days",purchase,1.0,0 -138941587,"Tom Clancy's Ghost Recon Phantoms - EU Assault Starter Pack",purchase,1.0,0 -138941587,"Tompi Jones",purchase,1.0,0 -138941587,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -138941587,"Two Brothers",purchase,1.0,0 -138941587,"Ubinota",purchase,1.0,0 -138941587,"Unturned",purchase,1.0,0 -138941587,"Vertical Drop Heroes HD",purchase,1.0,0 -138941587,"Vertiginous Golf",purchase,1.0,0 -138941587,"Victory Command",purchase,1.0,0 -138941587,"Villagers and Heroes",purchase,1.0,0 -138941587,"Villagers and Heroes Hero of Stormhold Pack",purchase,1.0,0 -138941587,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -138941587,"War on Folvos",purchase,1.0,0 -138941587,"Weird Worlds Return to Infinite Space",purchase,1.0,0 -255947169,"FreeStyle2 Street Basketball",purchase,1.0,0 -31162433,"Counter-Strike",purchase,1.0,0 -31162433,"Counter-Strike",play,146.0,0 -31162433,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -31162433,"Counter-Strike Condition Zero Deleted Scenes",play,23.0,0 -31162433,"Counter-Strike Condition Zero",purchase,1.0,0 -31162433,"Counter-Strike Condition Zero",play,6.3,0 -31162433,"Deathmatch Classic",purchase,1.0,0 -31162433,"Deathmatch Classic",play,0.9,0 -31162433,"Day of Defeat",purchase,1.0,0 -31162433,"Ricochet",purchase,1.0,0 -54097980,"Team Fortress 2",purchase,1.0,0 -54097980,"Team Fortress 2",play,3.1,0 -177969374,"Dota 2",purchase,1.0,0 -177969374,"Dota 2",play,835.0,0 -205479294,"The Culling Of The Cows",purchase,1.0,0 -205479294,"The Culling Of The Cows",play,2.8,0 -205479294,"Afterfall InSanity Extended Edition",purchase,1.0,0 -205479294,"Afterfall InSanity Extended Edition",play,1.9,0 -205479294,"Uriel's Chasm",purchase,1.0,0 -205479294,"Uriel's Chasm",play,1.3,0 -205479294,"Anomaly Warzone Earth",purchase,1.0,0 -205479294,"Anomaly Warzone Earth",play,1.3,0 -205479294,"Defy Gravity",purchase,1.0,0 -205479294,"Defy Gravity",play,1.1,0 -205479294,"Dead Island Epidemic",purchase,1.0,0 -205479294,"Firefall",purchase,1.0,0 -205479294,"Frontline Tactics",purchase,1.0,0 -205479294,"My Lands",purchase,1.0,0 -205479294,"Passing Pineview Forest",purchase,1.0,0 -205479294,"Realm of the Mad God",purchase,1.0,0 -205479294,"WAKFU",purchase,1.0,0 -205479294,"War Thunder",purchase,1.0,0 -203607436,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -113312586,"H1Z1",purchase,1.0,0 -113312586,"H1Z1",play,602.0,0 -113312586,"DayZ",purchase,1.0,0 -113312586,"DayZ",play,73.0,0 -113312586,"Counter-Strike Global Offensive",purchase,1.0,0 -113312586,"Counter-Strike Global Offensive",play,55.0,0 -113312586,"Counter-Strike",purchase,1.0,0 -113312586,"Counter-Strike",play,15.5,0 -113312586,"Insurgency",purchase,1.0,0 -113312586,"Insurgency",play,0.5,0 -113312586,"No More Room in Hell",purchase,1.0,0 -113312586,"No More Room in Hell",play,0.2,0 -113312586,"Counter-Strike Condition Zero",purchase,1.0,0 -113312586,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -113312586,"H1Z1 Test Server",purchase,1.0,0 -113312586,"Heroes & Generals",purchase,1.0,0 -139909136,"Castle Crashers",purchase,1.0,0 -139909136,"Castle Crashers",play,25.0,0 -139909136,"Castle Crashers - Pink Knight Pack",purchase,1.0,0 -244491524,"Dota 2",purchase,1.0,0 -244491524,"Dota 2",play,0.3,0 -45411694,"The Elder Scrolls V Skyrim",purchase,1.0,0 -45411694,"The Elder Scrolls V Skyrim",play,448.0,0 -45411694,"XCOM Enemy Unknown",purchase,1.0,0 -45411694,"XCOM Enemy Unknown",play,230.0,0 -45411694,"Total War SHOGUN 2",purchase,1.0,0 -45411694,"Total War SHOGUN 2",play,196.0,0 -45411694,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -45411694,"The Witcher 2 Assassins of Kings Enhanced Edition",play,135.0,0 -45411694,"Deus Ex Human Revolution",purchase,1.0,0 -45411694,"Deus Ex Human Revolution",play,107.0,0 -45411694,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -45411694,"Call of Duty Modern Warfare 2 - Multiplayer",play,86.0,0 -45411694,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -45411694,"Dark Souls Prepare to Die Edition",play,71.0,0 -45411694,"Hitman Absolution",purchase,1.0,0 -45411694,"Hitman Absolution",play,56.0,0 -45411694,"DARK SOULS II",purchase,1.0,0 -45411694,"DARK SOULS II",play,50.0,0 -45411694,"Valkyria Chronicles",purchase,1.0,0 -45411694,"Valkyria Chronicles",play,49.0,0 -45411694,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -45411694,"Warhammer 40,000 Dawn of War II",play,38.0,0 -45411694,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -45411694,"Tom Clancy's Splinter Cell Blacklist",play,38.0,0 -45411694,"Saints Row The Third",purchase,1.0,0 -45411694,"Saints Row The Third",play,33.0,0 -45411694,"L.A. Noire",purchase,1.0,0 -45411694,"L.A. Noire",play,33.0,0 -45411694,"Left 4 Dead",purchase,1.0,0 -45411694,"Left 4 Dead",play,32.0,0 -45411694,"Batman Arkham City",purchase,1.0,0 -45411694,"Batman Arkham City",play,29.0,0 -45411694,"Deponia The Complete Journey",purchase,1.0,0 -45411694,"Deponia The Complete Journey",play,21.0,0 -45411694,"Agarest Zero",purchase,1.0,0 -45411694,"Agarest Zero",play,21.0,0 -45411694,"Left 4 Dead 2",purchase,1.0,0 -45411694,"Left 4 Dead 2",play,19.1,0 -45411694,"Call of Duty Black Ops",purchase,1.0,0 -45411694,"Call of Duty Black Ops",play,18.9,0 -45411694,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -45411694,"Call of Duty Black Ops - Multiplayer",play,18.4,0 -45411694,"Call of Duty Modern Warfare 2",purchase,1.0,0 -45411694,"Call of Duty Modern Warfare 2",play,15.0,0 -45411694,"PAYDAY 2",purchase,1.0,0 -45411694,"PAYDAY 2",play,12.6,0 -45411694,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -45411694,"Deus Ex Human Revolution - The Missing Link",play,10.9,0 -45411694,"Napoleon Total War",purchase,1.0,0 -45411694,"Napoleon Total War",play,10.8,0 -45411694,"Bastion",purchase,1.0,0 -45411694,"Bastion",play,8.9,0 -45411694,"Portal 2",purchase,1.0,0 -45411694,"Portal 2",play,8.5,0 -45411694,"Call of Duty Modern Warfare 3",purchase,1.0,0 -45411694,"Call of Duty Modern Warfare 3",play,8.2,0 -45411694,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -45411694,"Call of Duty Modern Warfare 3 - Multiplayer",play,8.1,0 -45411694,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -45411694,"Plants vs. Zombies Game of the Year",play,6.7,0 -45411694,"The Darkness II",purchase,1.0,0 -45411694,"The Darkness II",play,5.6,0 -45411694,"Tales of Monkey Island Chapter 1 - Launch of the Screaming Narwhal",purchase,1.0,0 -45411694,"Tales of Monkey Island Chapter 1 - Launch of the Screaming Narwhal",play,4.9,0 -45411694,"FTL Faster Than Light",purchase,1.0,0 -45411694,"FTL Faster Than Light",play,4.9,0 -45411694,"Mortal Kombat X",purchase,1.0,0 -45411694,"Mortal Kombat X",play,4.3,0 -45411694,"Tales of Monkey Island Chapter 4 - The Trial and Execution of Guybrush Threepwood ",purchase,1.0,0 -45411694,"Tales of Monkey Island Chapter 4 - The Trial and Execution of Guybrush Threepwood ",play,3.8,0 -45411694,"Tales of Monkey Island Chapter 5 - Rise of the Pirate God",purchase,1.0,0 -45411694,"Tales of Monkey Island Chapter 5 - Rise of the Pirate God",play,3.6,0 -45411694,"Counter-Strike Global Offensive",purchase,1.0,0 -45411694,"Counter-Strike Global Offensive",play,3.3,0 -45411694,"Sakura Spirit",purchase,1.0,0 -45411694,"Sakura Spirit",play,2.5,0 -45411694,"Tales of Monkey Island Chapter 2 - The Siege of Spinner Cay ",purchase,1.0,0 -45411694,"Tales of Monkey Island Chapter 2 - The Siege of Spinner Cay ",play,1.9,0 -45411694,"WORLD END ECONOMiCA episode.01",purchase,1.0,0 -45411694,"WORLD END ECONOMiCA episode.01",play,0.1,0 -45411694,"Batman Arkham Knight",purchase,1.0,0 -45411694,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -45411694,"Batman Arkham City GOTY",purchase,1.0,0 -45411694,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -45411694,"Batman Arkham Origins - Initiation",purchase,1.0,0 -45411694,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -45411694,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -45411694,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -45411694,"Batman Arkham Origins",purchase,1.0,0 -45411694,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -45411694,"Counter-Strike",purchase,1.0,0 -45411694,"Counter-Strike Condition Zero",purchase,1.0,0 -45411694,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -45411694,"Counter-Strike Source",purchase,1.0,0 -45411694,"Crazy Cars - Hit the Road",purchase,1.0,0 -45411694,"PeriAreion",purchase,1.0,0 -45411694,"QuestEvent",purchase,1.0,0 -45411694,"R.O.O.T.S",purchase,1.0,0 -45411694,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -45411694,"Tales of Monkey Island Chapter 3 - Lair of the Leviathan ",purchase,1.0,0 -45411694,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -45411694,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -45411694,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -45411694,"The Undying Plague",purchase,1.0,0 -45411694,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -45411694,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -45411694,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -45411694,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -45411694,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -45411694,"XCOM Enemy Within",purchase,1.0,0 -215476671,"Dota 2",purchase,1.0,0 -215476671,"Dota 2",play,15.1,0 -180753437,"Euro Truck Simulator 2",purchase,1.0,0 -180753437,"Euro Truck Simulator 2",play,506.0,0 -180753437,"Banished",purchase,1.0,0 -180753437,"Banished",play,399.0,0 -180753437,"Portal 2",purchase,1.0,0 -180753437,"Portal 2",play,185.0,0 -180753437,"Cities Skylines",purchase,1.0,0 -180753437,"Cities Skylines",play,122.0,0 -180753437,"Half-Life 2",purchase,1.0,0 -180753437,"Half-Life 2",play,94.0,0 -180753437,"Half-Life 2 Update",purchase,1.0,0 -180753437,"Half-Life 2 Update",play,65.0,0 -180753437,"Train Fever",purchase,1.0,0 -180753437,"Train Fever",play,39.0,0 -180753437,"Half-Life 2 Episode Two",purchase,1.0,0 -180753437,"Half-Life 2 Episode Two",play,32.0,0 -180753437,"Portal Stories Mel",purchase,1.0,0 -180753437,"Portal Stories Mel",play,18.4,0 -180753437,"Half-Life 2 Episode One",purchase,1.0,0 -180753437,"Half-Life 2 Episode One",play,15.8,0 -180753437,"Space Run",purchase,1.0,0 -180753437,"Space Run",play,15.8,0 -180753437,"Portal",purchase,1.0,0 -180753437,"Portal",play,8.9,0 -180753437,"PAC-MAN Championship Edition DX+",purchase,1.0,0 -180753437,"PAC-MAN Championship Edition DX+",play,3.8,0 -180753437,"Pinball FX2",purchase,1.0,0 -180753437,"Pinball FX2",play,3.8,0 -180753437,"Chris Sawyer's Locomotion",purchase,1.0,0 -180753437,"Chris Sawyer's Locomotion",play,2.6,0 -180753437,"Ori and the Blind Forest",purchase,1.0,0 -180753437,"Ori and the Blind Forest",play,2.3,0 -180753437,"GameMaker Studio",purchase,1.0,0 -180753437,"GameMaker Studio",play,1.4,0 -180753437,"World of Goo",purchase,1.0,0 -180753437,"World of Goo",play,1.2,0 -180753437,"Age of Empires II HD Edition",purchase,1.0,0 -180753437,"Age of Empires II HD Edition",play,0.6,0 -180753437,"The Talos Principle",purchase,1.0,0 -180753437,"The Talos Principle",play,0.3,0 -180753437,"Half-Life 2 Lost Coast",purchase,1.0,0 -180753437,"Age of Empires II HD The Forgotten",purchase,1.0,0 -180753437,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -180753437,"Half-Life 2 Deathmatch",purchase,1.0,0 -180753437,"Half-Life Deathmatch Source",purchase,1.0,0 -180753437,"Pinball FX2 - Portal Pinball",purchase,1.0,0 -180753437,"Pinball FX2 - Star Wars Pinball Heroes Within Pack",purchase,1.0,0 -180753437,"RaceRoom Racing Experience ",purchase,1.0,0 -129585692,"Team Fortress 2",purchase,1.0,0 -129585692,"Team Fortress 2",play,0.1,0 -23219829,"Counter-Strike",purchase,1.0,0 -23219829,"Counter-Strike Condition Zero",purchase,1.0,0 -23219829,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -23219829,"Day of Defeat",purchase,1.0,0 -23219829,"Deathmatch Classic",purchase,1.0,0 -23219829,"Ricochet",purchase,1.0,0 -29983962,"Counter-Strike Source",purchase,1.0,0 -29983962,"Counter-Strike Source",play,902.0,0 -29983962,"Killing Floor",purchase,1.0,0 -29983962,"Killing Floor",play,348.0,0 -29983962,"Left 4 Dead 2",purchase,1.0,0 -29983962,"Left 4 Dead 2",play,162.0,0 -29983962,"Left 4 Dead",purchase,1.0,0 -29983962,"Left 4 Dead",play,162.0,0 -29983962,"Dragon Age Origins",purchase,1.0,0 -29983962,"Dragon Age Origins",play,84.0,0 -29983962,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -29983962,"Plants vs. Zombies Game of the Year",play,35.0,0 -29983962,"Team Fortress 2",purchase,1.0,0 -29983962,"Team Fortress 2",play,29.0,0 -29983962,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -29983962,"Burnout Paradise The Ultimate Box",play,17.2,0 -29983962,"Counter-Strike Global Offensive",purchase,1.0,0 -29983962,"Counter-Strike Global Offensive",play,8.0,0 -29983962,"Dota 2",purchase,1.0,0 -29983962,"Dota 2",play,7.6,0 -29983962,"Portal",purchase,1.0,0 -29983962,"Portal",play,6.0,0 -29983962,"Empire Total War",purchase,1.0,0 -29983962,"Empire Total War",play,5.5,0 -29983962,"Alien Swarm",purchase,1.0,0 -29983962,"Alien Swarm",play,3.6,0 -29983962,"Half-Life 2 Deathmatch",purchase,1.0,0 -29983962,"Half-Life 2 Deathmatch",play,2.5,0 -29983962,"Keep Talking and Nobody Explodes",purchase,1.0,0 -29983962,"Keep Talking and Nobody Explodes",play,1.7,0 -29983962,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -29983962,"Killing Floor Mod Defence Alliance 2",play,1.0,0 -29983962,"Half-Life 2 Lost Coast",purchase,1.0,0 -29983962,"Half-Life 2 Lost Coast",play,0.6,0 -29983962,"Unturned",purchase,1.0,0 -29983962,"Commander Keen Complete Pack",purchase,1.0,0 -29983962,"Day of Defeat Source",purchase,1.0,0 -29983962,"Serious Sam HD The Second Encounter Player Models",purchase,1.0,0 -304215530,"Counter-Strike Global Offensive",purchase,1.0,0 -304215530,"Counter-Strike Global Offensive",play,3.6,0 -304215530,"TERA",purchase,1.0,0 -304215530,"TERA",play,1.1,0 -251614857,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -251614857,"Tom Clancy's Ghost Recon Phantoms - NA",play,1.3,0 -262430736,"Pillars of Eternity",purchase,1.0,0 -262430736,"Pillars of Eternity",play,2.9,0 -7249363,"Counter-Strike",purchase,1.0,0 -7249363,"Counter-Strike",play,38.0,0 -7249363,"Half-Life Opposing Force",purchase,1.0,0 -7249363,"Half-Life Opposing Force",play,8.0,0 -7249363,"Half-Life Blue Shift",purchase,1.0,0 -7249363,"Half-Life Blue Shift",play,3.1,0 -7249363,"Darksiders",purchase,1.0,0 -7249363,"Darksiders",play,2.6,0 -7249363,"Half-Life",purchase,1.0,0 -7249363,"Half-Life",play,2.3,0 -7249363,"Dota 2",purchase,1.0,0 -7249363,"Dota 2",play,0.2,0 -7249363,"Day of Defeat",purchase,1.0,0 -7249363,"Deathmatch Classic",purchase,1.0,0 -7249363,"Half-Life 2 Episode One",purchase,1.0,0 -7249363,"Ricochet",purchase,1.0,0 -7249363,"Team Fortress Classic",purchase,1.0,0 -3372923,"Counter-Strike",purchase,1.0,0 -3372923,"Day of Defeat",purchase,1.0,0 -3372923,"Deathmatch Classic",purchase,1.0,0 -3372923,"Half-Life",purchase,1.0,0 -3372923,"Half-Life Blue Shift",purchase,1.0,0 -3372923,"Half-Life Opposing Force",purchase,1.0,0 -3372923,"Heroes & Generals",purchase,1.0,0 -3372923,"PlanetSide 2",purchase,1.0,0 -3372923,"Ricochet",purchase,1.0,0 -3372923,"Team Fortress Classic",purchase,1.0,0 -226095399,"Fallout New Vegas",purchase,1.0,0 -226095399,"Fallout New Vegas",play,317.0,0 -226095399,"BioShock 2",purchase,1.0,0 -226095399,"BioShock 2",play,18.5,0 -156271246,"Team Fortress 2",purchase,1.0,0 -156271246,"Team Fortress 2",play,21.0,0 -156271246,"Terraria",purchase,1.0,0 -156271246,"Terraria",play,17.8,0 -156271246,"Hazard Ops",purchase,1.0,0 -156271246,"Hazard Ops",play,14.2,0 -156271246,"Unturned",purchase,1.0,0 -156271246,"Unturned",play,6.6,0 -156271246,"Warframe",purchase,1.0,0 -156271246,"Warframe",play,2.2,0 -156271246,"Counter-Strike Global Offensive",purchase,1.0,0 -156271246,"Counter-Strike Global Offensive",play,1.0,0 -156271246,"Arma 3",purchase,1.0,0 -156271246,"Arma 3",play,0.3,0 -156271246,"Super Monday Night Combat",purchase,1.0,0 -156271246,"Super Monday Night Combat",play,0.3,0 -156271246,"Arma 3 Zeus",purchase,1.0,0 -165104721,"Tank Universal",purchase,1.0,0 -295649583,"Dota 2",purchase,1.0,0 -295649583,"Dota 2",play,16.9,0 -177190409,"Dota 2",purchase,1.0,0 -177190409,"Dota 2",play,7.5,0 -175249979,"Infestation Survivor Stories",purchase,1.0,0 -140809304,"Dota 2",purchase,1.0,0 -140809304,"Dota 2",play,0.5,0 -192969933,"Dota 2",purchase,1.0,0 -192969933,"Dota 2",play,0.5,0 -215667739,"Dota 2",purchase,1.0,0 -215667739,"Dota 2",play,1.0,0 -129452387,"Call of Duty Modern Warfare 2",purchase,1.0,0 -129452387,"Call of Duty Modern Warfare 2",play,11.1,0 -129452387,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -275442576,"Dota 2",purchase,1.0,0 -275442576,"Dota 2",play,1.9,0 -147456299,"Dota 2",purchase,1.0,0 -147456299,"Dota 2",play,9.3,0 -72135587,"Might & Magic Heroes VI",purchase,1.0,0 -72135587,"Might & Magic Heroes VI",play,121.0,0 -72135587,"Sid Meier's Civilization V",purchase,1.0,0 -72135587,"Sid Meier's Civilization V",play,96.0,0 -72135587,"Disciples III Reincarnation",purchase,1.0,0 -72135587,"Disciples III Reincarnation",play,79.0,0 -72135587,"King's Bounty Warriors of the North",purchase,1.0,0 -72135587,"King's Bounty Warriors of the North",play,48.0,0 -72135587,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -72135587,"The Witcher 2 Assassins of Kings Enhanced Edition",play,30.0,0 -72135587,"Space Rangers HD A War Apart",purchase,1.0,0 -72135587,"Space Rangers HD A War Apart",play,4.6,0 -72135587,"The Witcher 3 Wild Hunt",purchase,1.0,0 -72135587,"The Witcher 3 Wild Hunt",play,3.2,0 -72135587,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -72135587,"Warhammer 40,000 Dawn of War II Retribution",play,0.8,0 -72135587,"Dota 2",purchase,1.0,0 -72135587,"Dota 2",play,0.3,0 -72135587,"Fable - The Lost Chapters",purchase,1.0,0 -72135587,"Fable III",purchase,1.0,0 -72135587,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -72135587,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -102270213,"The Binding of Isaac Rebirth",purchase,1.0,0 -102270213,"The Binding of Isaac Rebirth",play,108.0,0 -102270213,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -102270213,"Call of Duty Black Ops II - Multiplayer",play,69.0,0 -102270213,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -102270213,"Call of Duty 4 Modern Warfare",play,27.0,0 -102270213,"The Mighty Quest For Epic Loot",purchase,1.0,0 -102270213,"The Mighty Quest For Epic Loot",play,12.4,0 -102270213,"Magicka Wizard Wars",purchase,1.0,0 -102270213,"Magicka Wizard Wars",play,6.5,0 -102270213,"TERA",purchase,1.0,0 -102270213,"TERA",play,6.4,0 -102270213,"Lethal League",purchase,1.0,0 -102270213,"Lethal League",play,5.5,0 -102270213,"Warframe",purchase,1.0,0 -102270213,"Warframe",play,4.5,0 -102270213,"Dota 2",purchase,1.0,0 -102270213,"Dota 2",play,1.7,0 -102270213,"Marvel Heroes 2015",purchase,1.0,0 -102270213,"Marvel Heroes 2015",play,1.4,0 -102270213,"Aura Kingdom",purchase,1.0,0 -102270213,"Aura Kingdom",play,1.1,0 -102270213,"Dirty Bomb",purchase,1.0,0 -102270213,"Dirty Bomb",play,0.5,0 -102270213,"Team Fortress 2",purchase,1.0,0 -102270213,"Team Fortress 2",play,0.4,0 -102270213,"Path of Exile",purchase,1.0,0 -102270213,"Path of Exile",play,0.2,0 -102270213,"X-Blades",purchase,1.0,0 -102270213,"X-Blades",play,0.2,0 -102270213,"Call of Duty Black Ops II",purchase,1.0,0 -102270213,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -102270213,"Forsaken World ",purchase,1.0,0 -301340437,"Dota 2",purchase,1.0,0 -301340437,"Dota 2",play,278.0,0 -237810083,"Everlasting Summer",purchase,1.0,0 -237810083,"Everlasting Summer",play,3.2,0 -237810083,"Unturned",purchase,1.0,0 -237810083,"Unturned",play,0.7,0 -237810083,"Brick-Force",purchase,1.0,0 -237810083,"Brick-Force",play,0.1,0 -237810083,"AdVenture Capitalist",purchase,1.0,0 -237810083,"Bloodline Champions",purchase,1.0,0 -237810083,"Fallen Earth",purchase,1.0,0 -237810083,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -237810083,"Robocraft",purchase,1.0,0 -237810083,"Strife",purchase,1.0,0 -239523326,"Blacklight Retribution",purchase,1.0,0 -239523326,"Counter-Strike Nexon Zombies",purchase,1.0,0 -239523326,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -205124409,"Dota 2",purchase,1.0,0 -205124409,"Dota 2",play,1.5,0 -194920727,"Cubic Castles",purchase,1.0,0 -194920727,"Cubic Castles",play,0.4,0 -194920727,"Unturned",purchase,1.0,0 -194920727,"Unturned",play,0.2,0 -151015947,"Counter-Strike Global Offensive",purchase,1.0,0 -151015947,"Counter-Strike Global Offensive",play,18.8,0 -151015947,"Portal 2",purchase,1.0,0 -151015947,"Portal 2",play,13.3,0 -151015947,"Team Fortress 2",purchase,1.0,0 -151015947,"Team Fortress 2",play,11.6,0 -151015947,"Garry's Mod",purchase,1.0,0 -151015947,"Garry's Mod",play,11.6,0 -151015947,"Left 4 Dead 2",purchase,1.0,0 -151015947,"Left 4 Dead 2",play,8.8,0 -151015947,"Spec Ops The Line",purchase,1.0,0 -151015947,"Spec Ops The Line",play,7.1,0 -151015947,"Portal",purchase,1.0,0 -151015947,"Portal",play,6.1,0 -151015947,"War Thunder",purchase,1.0,0 -151015947,"War Thunder",play,6.1,0 -151015947,"Scribblenauts Unlimited",purchase,1.0,0 -151015947,"Scribblenauts Unlimited",play,5.4,0 -151015947,"Mitos.is The Game",purchase,1.0,0 -151015947,"Mitos.is The Game",play,2.7,0 -151015947,"Clicker Heroes",purchase,1.0,0 -151015947,"Clicker Heroes",play,2.3,0 -151015947,"Half-Life",purchase,1.0,0 -151015947,"Half-Life",play,1.7,0 -151015947,"The Expendabros",purchase,1.0,0 -151015947,"The Expendabros",play,1.4,0 -151015947,"AdVenture Capitalist",purchase,1.0,0 -151015947,"AdVenture Capitalist",play,1.1,0 -151015947,"BioShock",purchase,1.0,0 -151015947,"BioShock",play,0.8,0 -151015947,"HAWKEN",purchase,1.0,0 -151015947,"HAWKEN",play,0.7,0 -151015947,"Brick-Force",purchase,1.0,0 -151015947,"Brick-Force",play,0.6,0 -151015947,"Time Clickers",purchase,1.0,0 -151015947,"Time Clickers",play,0.5,0 -151015947,"Unturned",purchase,1.0,0 -151015947,"Unturned",play,0.3,0 -151015947,"Left 4 Dead",purchase,1.0,0 -151015947,"Left 4 Dead",play,0.3,0 -151015947,"I, Zombie",purchase,1.0,0 -151015947,"I, Zombie",play,0.3,0 -151015947,"Portal Stories Mel",purchase,1.0,0 -151015947,"Portal Stories Mel",play,0.3,0 -151015947,"Antichamber",purchase,1.0,0 -151015947,"Antichamber",play,0.3,0 -151015947,"Piercing Blow",purchase,1.0,0 -151015947,"Piercing Blow",play,0.3,0 -151015947,"Dota 2",purchase,1.0,0 -151015947,"Dota 2",play,0.3,0 -151015947,"Brawlhalla",purchase,1.0,0 -151015947,"Brawlhalla",play,0.3,0 -151015947,"Dirty Bomb",purchase,1.0,0 -151015947,"Dirty Bomb",play,0.2,0 -151015947,"Waveform",purchase,1.0,0 -151015947,"Waveform",play,0.2,0 -151015947,"Ricochet",purchase,1.0,0 -151015947,"Ricochet",play,0.2,0 -151015947,"Endless Sky",purchase,1.0,0 -151015947,"Endless Sky",play,0.2,0 -151015947,"Hazard Ops",purchase,1.0,0 -151015947,"Naninights",purchase,1.0,0 -151015947,"Half-Life 2",purchase,1.0,0 -151015947,"TeraBlaster",purchase,1.0,0 -151015947,"BioShock 2",purchase,1.0,0 -151015947,"BioShock Infinite",purchase,1.0,0 -151015947,"Blood of Old",purchase,1.0,0 -151015947,"Counter-Strike",purchase,1.0,0 -151015947,"Counter-Strike Condition Zero",purchase,1.0,0 -151015947,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -151015947,"Counter-Strike Source",purchase,1.0,0 -151015947,"Day of Defeat",purchase,1.0,0 -151015947,"Day of Defeat Source",purchase,1.0,0 -151015947,"Deathmatch Classic",purchase,1.0,0 -151015947,"Disney Infinity 3.0 Play Without Limits",purchase,1.0,0 -151015947,"Dungeonland",purchase,1.0,0 -151015947,"Half-Life 2 Deathmatch",purchase,1.0,0 -151015947,"Half-Life 2 Episode One",purchase,1.0,0 -151015947,"Half-Life 2 Episode Two",purchase,1.0,0 -151015947,"Half-Life 2 Lost Coast",purchase,1.0,0 -151015947,"Half-Life Blue Shift",purchase,1.0,0 -151015947,"Half-Life Opposing Force",purchase,1.0,0 -151015947,"Half-Life Source",purchase,1.0,0 -151015947,"Half-Life Deathmatch Source",purchase,1.0,0 -151015947,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -151015947,"Team Fortress Classic",purchase,1.0,0 -148893116,"Dota 2",purchase,1.0,0 -148893116,"Dota 2",play,6.1,0 -222158662,"Unturned",purchase,1.0,0 -222158662,"Unturned",play,1.2,0 -193245894,"Dota 2",purchase,1.0,0 -193245894,"Dota 2",play,2.6,0 -92901130,"Football Manager 2014",purchase,1.0,0 -92901130,"Football Manager 2014",play,1456.0,0 -92901130,"Football Manager 2012",purchase,1.0,0 -92901130,"Football Manager 2012",play,1014.0,0 -144463267,"Dota 2",purchase,1.0,0 -144463267,"Dota 2",play,1.7,0 -135414002,"Team Fortress 2",purchase,1.0,0 -135414002,"Team Fortress 2",play,39.0,0 -135414002,"Heroes & Generals",purchase,1.0,0 -135414002,"Heroes & Generals",play,0.8,0 -135414002,"PlanetSide 2",purchase,1.0,0 -187905740,"Dota 2",purchase,1.0,0 -187905740,"Dota 2",play,3.5,0 -96365222,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -96365222,"SEGA Genesis & Mega Drive Classics",play,0.3,0 -96365222,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -51030531,"Empire Total War",purchase,1.0,0 -51030531,"Empire Total War",play,16.4,0 -144665493,"Team Fortress 2",purchase,1.0,0 -144665493,"Team Fortress 2",play,280.0,0 -144665493,"Sniper Elite V2",purchase,1.0,0 -275675446,"Marvel Heroes 2015",purchase,1.0,0 -206815859,"Dota 2",purchase,1.0,0 -206815859,"Dota 2",play,5.1,0 -88544184,"FINAL FANTASY VII",purchase,1.0,0 -88544184,"FINAL FANTASY VII",play,59.0,0 -88544184,"Team Fortress 2",purchase,1.0,0 -88544184,"Team Fortress 2",play,1.3,0 -88544184,"Portal",purchase,1.0,0 -88544184,"Portal",play,0.8,0 -241289025,"Dota 2",purchase,1.0,0 -241289025,"Dota 2",play,0.5,0 -190693641,"Dota 2",purchase,1.0,0 -190693641,"Dota 2",play,1.4,0 -161046658,"Dota 2",purchase,1.0,0 -161046658,"Dota 2",play,4.2,0 -167093760,"The Elder Scrolls V Skyrim",purchase,1.0,0 -167093760,"The Elder Scrolls V Skyrim",play,3.7,0 -167093760,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -167093760,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -167093760,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -150100130,"Dota 2",purchase,1.0,0 -150100130,"Dota 2",play,202.0,0 -300162650,"Dota 2",purchase,1.0,0 -300162650,"Dota 2",play,60.0,0 -119721478,"Football Manager 2012",purchase,1.0,0 -119721478,"Football Manager 2012",play,14.2,0 -160453177,"Dota 2",purchase,1.0,0 -160453177,"Dota 2",play,678.0,0 -227231487,"Counter-Strike Global Offensive",purchase,1.0,0 -227231487,"Counter-Strike Global Offensive",play,27.0,0 -227231487,"Counter-Strike",purchase,1.0,0 -227231487,"Counter-Strike Condition Zero",purchase,1.0,0 -227231487,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -227231487,"Counter-Strike Source",purchase,1.0,0 -227231487,"Free to Play",purchase,1.0,0 -227231487,"Unturned",purchase,1.0,0 -140931602,"Counter-Strike Global Offensive",purchase,1.0,0 -140931602,"Counter-Strike Global Offensive",play,4.8,0 -232463267,"Dota 2",purchase,1.0,0 -232463267,"Dota 2",play,174.0,0 -300643399,"Counter-Strike Global Offensive",purchase,1.0,0 -300643399,"Counter-Strike Global Offensive",play,58.0,0 -300643399,"Unturned",purchase,1.0,0 -300643399,"Unturned",play,0.6,0 -300643399,"Heroes & Generals",purchase,1.0,0 -142706526,"Counter-Strike Global Offensive",purchase,1.0,0 -142706526,"Counter-Strike Global Offensive",play,89.0,0 -142706526,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -142706526,"METAL GEAR RISING REVENGEANCE",play,26.0,0 -142706526,"Tomb Raider",purchase,1.0,0 -142706526,"Tomb Raider",play,15.3,0 -142706526,"Rocket League",purchase,1.0,0 -142706526,"Rocket League",play,10.4,0 -142706526,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -142706526,"METAL GEAR SOLID V GROUND ZEROES",play,8.8,0 -142706526,"Dota 2",purchase,1.0,0 -142706526,"Dota 2",play,8.6,0 -142706526,"Evolve",purchase,1.0,0 -142706526,"Evolve",play,2.8,0 -142706526,"Team Fortress 2",purchase,1.0,0 -142706526,"Team Fortress 2",play,0.5,0 -142706526,"DCS World",purchase,1.0,0 -142706526,"Deus Ex Game of the Year Edition",purchase,1.0,0 -142706526,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -142706526,"Deus Ex Invisible War",purchase,1.0,0 -142706526,"Deus Ex The Fall",purchase,1.0,0 -142706526,"Elsword",purchase,1.0,0 -142706526,"Loadout",purchase,1.0,0 -142706526,"Sniper Elite 3",purchase,1.0,0 -142706526,"Sniper Elite V2",purchase,1.0,0 -49063269,"Counter-Strike",purchase,1.0,0 -49063269,"Counter-Strike",play,930.0,0 -49063269,"Counter-Strike Global Offensive",purchase,1.0,0 -49063269,"Counter-Strike Global Offensive",play,829.0,0 -49063269,"Dota 2",purchase,1.0,0 -49063269,"Dota 2",play,461.0,0 -49063269,"Bloodline Champions",purchase,1.0,0 -49063269,"Bloodline Champions",play,131.0,0 -49063269,"Chivalry Medieval Warfare",purchase,1.0,0 -49063269,"Chivalry Medieval Warfare",play,96.0,0 -49063269,"SMITE",purchase,1.0,0 -49063269,"SMITE",play,22.0,0 -49063269,"Gauntlet ",purchase,1.0,0 -49063269,"Gauntlet ",play,7.9,0 -49063269,"Counter-Strike Condition Zero",purchase,1.0,0 -49063269,"Counter-Strike Condition Zero",play,6.1,0 -49063269,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -49063269,"Counter-Strike Condition Zero Deleted Scenes",play,0.5,0 -49063269,"Day of Defeat",purchase,1.0,0 -49063269,"Deathmatch Classic",purchase,1.0,0 -49063269,"Heroes & Generals",purchase,1.0,0 -49063269,"Patch testing for Chivalry",purchase,1.0,0 -49063269,"Ricochet",purchase,1.0,0 -216711993,"Emily is Away",purchase,1.0,0 -216711993,"Emily is Away",play,0.7,0 -292054386,"Aftermath",purchase,1.0,0 -233088001,"Dota 2",purchase,1.0,0 -233088001,"Dota 2",play,56.0,0 -233088001,"Magicka Wizard Wars",purchase,1.0,0 -51085779,"Arma 3",purchase,1.0,0 -51085779,"Arma 3",play,419.0,0 -51085779,"Star Trek Online",purchase,1.0,0 -51085779,"Star Trek Online",play,360.0,0 -51085779,"PlanetSide 2",purchase,1.0,0 -51085779,"PlanetSide 2",play,356.0,0 -51085779,"Empire Total War",purchase,1.0,0 -51085779,"Empire Total War",play,238.0,0 -51085779,"DayZ",purchase,1.0,0 -51085779,"DayZ",play,157.0,0 -51085779,"Grand Theft Auto V",purchase,1.0,0 -51085779,"Grand Theft Auto V",play,132.0,0 -51085779,"Space Engineers",purchase,1.0,0 -51085779,"Space Engineers",play,125.0,0 -51085779,"Kerbal Space Program",purchase,1.0,0 -51085779,"Kerbal Space Program",play,98.0,0 -51085779,"Awesomenauts",purchase,1.0,0 -51085779,"Awesomenauts",play,85.0,0 -51085779,"Fallout 4",purchase,1.0,0 -51085779,"Fallout 4",play,71.0,0 -51085779,"Company of Heroes (New Steam Version)",purchase,1.0,0 -51085779,"Company of Heroes (New Steam Version)",play,55.0,0 -51085779,"Euro Truck Simulator 2",purchase,1.0,0 -51085779,"Euro Truck Simulator 2",play,49.0,0 -51085779,"FTL Faster Than Light",purchase,1.0,0 -51085779,"FTL Faster Than Light",play,48.0,0 -51085779,"War Thunder",purchase,1.0,0 -51085779,"War Thunder",play,44.0,0 -51085779,"Unturned",purchase,1.0,0 -51085779,"Unturned",play,41.0,0 -51085779,"Total War ROME II - Emperor Edition",purchase,1.0,0 -51085779,"Total War ROME II - Emperor Edition",play,37.0,0 -51085779,"Space Pirates and Zombies",purchase,1.0,0 -51085779,"Space Pirates and Zombies",play,37.0,0 -51085779,"Windward",purchase,1.0,0 -51085779,"Windward",play,33.0,0 -51085779,"Alien Isolation",purchase,1.0,0 -51085779,"Alien Isolation",play,32.0,0 -51085779,"Subnautica",purchase,1.0,0 -51085779,"Subnautica",play,28.0,0 -51085779,"ARK Survival Evolved",purchase,1.0,0 -51085779,"ARK Survival Evolved",play,27.0,0 -51085779,"Star Wars Empire at War Gold",purchase,1.0,0 -51085779,"Star Wars Empire at War Gold",play,26.0,0 -51085779,"Star Wars - Battlefront II",purchase,1.0,0 -51085779,"Star Wars - Battlefront II",play,24.0,0 -51085779,"Borderlands 2",purchase,1.0,0 -51085779,"Borderlands 2",play,23.0,0 -51085779,"Total War SHOGUN 2",purchase,1.0,0 -51085779,"Total War SHOGUN 2",play,22.0,0 -51085779,"Dungeon Defenders",purchase,1.0,0 -51085779,"Dungeon Defenders",play,22.0,0 -51085779,"Reign Of Kings",purchase,1.0,0 -51085779,"Reign Of Kings",play,21.0,0 -51085779,"Sid Meier's Civilization V",purchase,1.0,0 -51085779,"Sid Meier's Civilization V",play,15.8,0 -51085779,"Sid Meier's Pirates!",purchase,1.0,0 -51085779,"Sid Meier's Pirates!",play,15.3,0 -51085779,"Rocket League",purchase,1.0,0 -51085779,"Rocket League",play,15.0,0 -51085779,"Napoleon Total War",purchase,1.0,0 -51085779,"Napoleon Total War",play,14.1,0 -51085779,"Viscera Cleanup Detail",purchase,1.0,0 -51085779,"Viscera Cleanup Detail",play,12.4,0 -51085779,"Company of Heroes 2",purchase,1.0,0 -51085779,"Company of Heroes 2",play,9.9,0 -51085779,"7 Days to Die",purchase,1.0,0 -51085779,"7 Days to Die",play,9.1,0 -51085779,"Magic 2015",purchase,1.0,0 -51085779,"Magic 2015",play,7.8,0 -51085779,"Slender The Arrival",purchase,1.0,0 -51085779,"Slender The Arrival",play,7.8,0 -51085779,"Torchlight II",purchase,1.0,0 -51085779,"Torchlight II",play,7.2,0 -51085779,"Goat Simulator",purchase,1.0,0 -51085779,"Goat Simulator",play,7.1,0 -51085779,"Wargame Red Dragon",purchase,1.0,0 -51085779,"Wargame Red Dragon",play,6.8,0 -51085779,"Five Nights at Freddy's",purchase,1.0,0 -51085779,"Five Nights at Freddy's",play,6.3,0 -51085779,"Nuclear Dawn",purchase,1.0,0 -51085779,"Nuclear Dawn",play,5.9,0 -51085779,"Door Kickers",purchase,1.0,0 -51085779,"Door Kickers",play,5.2,0 -51085779,"Surgeon Simulator",purchase,1.0,0 -51085779,"Surgeon Simulator",play,5.1,0 -51085779,"Five Nights at Freddy's 4",purchase,1.0,0 -51085779,"Five Nights at Freddy's 4",play,4.8,0 -51085779,"World in Conflict Soviet Assault",purchase,1.0,0 -51085779,"World in Conflict Soviet Assault",play,4.2,0 -51085779,"PAYDAY 2",purchase,1.0,0 -51085779,"PAYDAY 2",play,3.4,0 -51085779,"Warframe",purchase,1.0,0 -51085779,"Warframe",play,3.0,0 -51085779,"Super Crate Box",purchase,1.0,0 -51085779,"Super Crate Box",play,2.7,0 -51085779,"Fractured Space",purchase,1.0,0 -51085779,"Fractured Space",play,2.6,0 -51085779,"Alien Swarm",purchase,1.0,0 -51085779,"Alien Swarm",play,2.6,0 -51085779,"Castle Crashers",purchase,1.0,0 -51085779,"Castle Crashers",play,2.5,0 -51085779,"The Ship",purchase,1.0,0 -51085779,"The Ship",play,2.0,0 -51085779,"BioShock Infinite",purchase,1.0,0 -51085779,"BioShock Infinite",play,1.8,0 -51085779,"Professional Farmer 2014",purchase,1.0,0 -51085779,"Professional Farmer 2014",play,1.8,0 -51085779,"DC Universe Online",purchase,1.0,0 -51085779,"DC Universe Online",play,1.7,0 -51085779,"Among the Sleep",purchase,1.0,0 -51085779,"Among the Sleep",play,1.7,0 -51085779,"HAWKEN",purchase,1.0,0 -51085779,"HAWKEN",play,1.6,0 -51085779,"Toribash",purchase,1.0,0 -51085779,"Toribash",play,1.5,0 -51085779,"Bridge Project",purchase,1.0,0 -51085779,"Bridge Project",play,1.4,0 -51085779,"Foreign Legion Multi Massacre",purchase,1.0,0 -51085779,"Foreign Legion Multi Massacre",play,1.3,0 -51085779,"Spermination",purchase,1.0,0 -51085779,"Spermination",play,1.2,0 -51085779,"ORION Prelude",purchase,1.0,0 -51085779,"ORION Prelude",play,0.9,0 -51085779,"Command and Conquer 3 Tiberium Wars",purchase,1.0,0 -51085779,"Command and Conquer 3 Tiberium Wars",play,0.8,0 -51085779,"Amnesia The Dark Descent",purchase,1.0,0 -51085779,"Amnesia The Dark Descent",play,0.8,0 -51085779,"Dead Island",purchase,1.0,0 -51085779,"Dead Island",play,0.7,0 -51085779,"Universe Sandbox",purchase,1.0,0 -51085779,"Universe Sandbox",play,0.6,0 -51085779,"Trainz Simulator 12",purchase,1.0,0 -51085779,"Trainz Simulator 12",play,0.3,0 -51085779,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -51085779,"Viscera Cleanup Detail Shadow Warrior",play,0.2,0 -51085779,"PAYDAY The Heist",purchase,1.0,0 -51085779,"PAYDAY The Heist",play,0.2,0 -51085779,"Ultimate Tic-Tac-Toe",purchase,1.0,0 -51085779,"Ultimate Tic-Tac-Toe",play,0.2,0 -51085779,"Arma 2",purchase,1.0,0 -51085779,"Arma 2",play,0.1,0 -51085779,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -51085779,"Viscera Cleanup Detail Santa's Rampage",play,0.1,0 -51085779,"World in Conflict",purchase,1.0,0 -51085779,"DCS World",purchase,1.0,0 -51085779,"Arma 2 British Armed Forces",purchase,1.0,0 -51085779,"Arma 2 DayZ Mod",purchase,1.0,0 -51085779,"Arma 2 Operation Arrowhead",purchase,1.0,0 -51085779,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -51085779,"Arma 2 Private Military Company",purchase,1.0,0 -51085779,"Arma 3 Karts",purchase,1.0,0 -51085779,"Arma 3 Zeus",purchase,1.0,0 -51085779,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -51085779,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -51085779,"Company of Heroes",purchase,1.0,0 -51085779,"Company of Heroes Opposing Fronts",purchase,1.0,0 -51085779,"Company of Heroes Tales of Valor",purchase,1.0,0 -51085779,"Dead Island Epidemic",purchase,1.0,0 -51085779,"Dead Island Riptide",purchase,1.0,0 -51085779,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -51085779,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -51085779,"God Mode",purchase,1.0,0 -51085779,"Magicka",purchase,1.0,0 -51085779,"Nexuiz",purchase,1.0,0 -51085779,"Nexuiz Beta",purchase,1.0,0 -51085779,"Nexuiz STUPID Mode",purchase,1.0,0 -51085779,"Original War",purchase,1.0,0 -51085779,"The Ship Single Player",purchase,1.0,0 -51085779,"The Ship Tutorial",purchase,1.0,0 -51085779,"Tomb Raider",purchase,1.0,0 -51085779,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -51085779,"Warhammer 40,000 Space Marine",purchase,1.0,0 -99355046,"Zombie Panic Source",purchase,1.0,0 -99355046,"Zombie Panic Source",play,1111.0,0 -99355046,"Counter-Strike Global Offensive",purchase,1.0,0 -99355046,"Counter-Strike Global Offensive",play,28.0,0 -99355046,"Dota 2",purchase,1.0,0 -99355046,"Dota 2",play,2.2,0 -247822385,"Dota 2",purchase,1.0,0 -247822385,"Dota 2",play,0.2,0 -300136813,"Counter-Strike Global Offensive",purchase,1.0,0 -300136813,"Counter-Strike Global Offensive",play,41.0,0 -300136813,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -300136813,"Call of Duty Black Ops - Multiplayer",play,0.8,0 -300136813,"HAWKEN",purchase,1.0,0 -300136813,"HAWKEN",play,0.7,0 -300136813,"Call of Duty Black Ops",purchase,1.0,0 -222578478,"Counter-Strike Global Offensive",purchase,1.0,0 -222578478,"Counter-Strike Global Offensive",play,364.0,0 -222578478,"Team Fortress 2",purchase,1.0,0 -222578478,"Team Fortress 2",play,2.4,0 -222578478,"BEEP",purchase,1.0,0 -222578478,"BEEP",play,0.1,0 -222578478,"Crystals of Time",purchase,1.0,0 -222578478,"Nosgoth",purchase,1.0,0 -222578478,"Pitiri 1977",purchase,1.0,0 -298504730,"Endless Sky",purchase,1.0,0 -298504730,"Endless Sky",play,0.2,0 -298504730,"Soccer Manager 2016",purchase,1.0,0 -127220350,"Garry's Mod",purchase,1.0,0 -127220350,"Garry's Mod",play,303.0,0 -127220350,"Geometry Dash",purchase,1.0,0 -127220350,"Geometry Dash",play,162.0,0 -127220350,"Portal 2",purchase,1.0,0 -127220350,"Portal 2",play,44.0,0 -127220350,"LEGO Jurassic World",purchase,1.0,0 -127220350,"LEGO Jurassic World",play,31.0,0 -127220350,"Goat Simulator",purchase,1.0,0 -127220350,"Goat Simulator",play,26.0,0 -127220350,"Wild Warfare",purchase,1.0,0 -127220350,"Wild Warfare",play,21.0,0 -127220350,"Terraria",purchase,1.0,0 -127220350,"Terraria",play,17.9,0 -127220350,"Octodad Dadliest Catch",purchase,1.0,0 -127220350,"Octodad Dadliest Catch",play,14.1,0 -127220350,"Unturned",purchase,1.0,0 -127220350,"Unturned",play,13.7,0 -127220350,"Portal",purchase,1.0,0 -127220350,"Portal",play,13.0,0 -127220350,"Minecraft Story Mode - A Telltale Games Series",purchase,1.0,0 -127220350,"Minecraft Story Mode - A Telltale Games Series",play,12.1,0 -127220350,"Mitos.is The Game",purchase,1.0,0 -127220350,"Mitos.is The Game",play,7.0,0 -127220350,"The Escapists",purchase,1.0,0 -127220350,"The Escapists",play,6.8,0 -127220350,"Left 4 Dead 2",purchase,1.0,0 -127220350,"Left 4 Dead 2",play,6.8,0 -127220350,"Blockland",purchase,1.0,0 -127220350,"Blockland",play,4.2,0 -127220350,"I am Bread",purchase,1.0,0 -127220350,"I am Bread",play,4.1,0 -127220350,"Portal Stories Mel",purchase,1.0,0 -127220350,"Portal Stories Mel",play,3.8,0 -127220350,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -127220350,"Star Wars Jedi Knight Jedi Academy",play,3.5,0 -127220350,"Brawlhalla",purchase,1.0,0 -127220350,"Brawlhalla",play,3.2,0 -127220350,"Sanctum 2",purchase,1.0,0 -127220350,"Sanctum 2",play,3.2,0 -127220350,"Robocraft",purchase,1.0,0 -127220350,"Robocraft",play,2.6,0 -127220350,"8BitMMO",purchase,1.0,0 -127220350,"8BitMMO",play,2.4,0 -127220350,"Spiral Knights",purchase,1.0,0 -127220350,"Spiral Knights",play,2.0,0 -127220350,"Murder Miners",purchase,1.0,0 -127220350,"Murder Miners",play,1.9,0 -127220350,"Blockstorm",purchase,1.0,0 -127220350,"Blockstorm",play,1.5,0 -127220350,"Game Dev Tycoon",purchase,1.0,0 -127220350,"Game Dev Tycoon",play,0.9,0 -127220350,"Turbo Dismount",purchase,1.0,0 -127220350,"Turbo Dismount",play,0.7,0 -127220350,"Clicker Heroes",purchase,1.0,0 -127220350,"Clicker Heroes",play,0.7,0 -127220350,"Team Fortress 2",purchase,1.0,0 -127220350,"Team Fortress 2",play,0.5,0 -127220350,"Worms Reloaded",purchase,1.0,0 -127220350,"Worms Reloaded",play,0.4,0 -127220350,"Fistful of Frags",purchase,1.0,0 -127220350,"Fistful of Frags",play,0.4,0 -127220350,"AdVenture Capitalist",purchase,1.0,0 -127220350,"AdVenture Capitalist",play,0.4,0 -127220350,"Thinking with Time Machine",purchase,1.0,0 -127220350,"Thinking with Time Machine",play,0.3,0 -127220350,"UberStrike",purchase,1.0,0 -127220350,"UberStrike",play,0.3,0 -127220350,"Fuse",purchase,1.0,0 -127220350,"Fuse",play,0.2,0 -127220350,"Pixel Piracy",purchase,1.0,0 -127220350,"Pixel Piracy",play,0.2,0 -127220350,"Marvel Heroes 2015",purchase,1.0,0 -127220350,"Marvel Heroes 2015",play,0.2,0 -127220350,"The Adventures of Mr. Bobley",purchase,1.0,0 -127220350,"The Adventures of Mr. Bobley",play,0.2,0 -127220350,"Trove",purchase,1.0,0 -127220350,"Trove",play,0.2,0 -127220350,"You Have to Win the Game",purchase,1.0,0 -127220350,"You Have to Win the Game",play,0.1,0 -127220350,"The Way of Life Free Edition",purchase,1.0,0 -127220350,"The Way of Life Free Edition",play,0.1,0 -127220350,"Star Trek Online",purchase,1.0,0 -127220350,"Star Trek Online",play,0.1,0 -127220350,"World of Guns Gun Disassembly",purchase,1.0,0 -127220350,"Emily is Away",purchase,1.0,0 -127220350,"War Thunder",purchase,1.0,0 -127220350,"Blender 2.76b",purchase,1.0,0 -127220350,"Aperture Tag The Paint Gun Testing Initiative",purchase,1.0,0 -127220350,"Esenthel Engine",purchase,1.0,0 -127220350,"Floating Point",purchase,1.0,0 -127220350,"Viridi",purchase,1.0,0 -127220350,"Anarchy Arcade",purchase,1.0,0 -127220350,"Creativerse",purchase,1.0,0 -127220350,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -127220350,"Leadwerks Game Launcher",purchase,1.0,0 -127220350,"Left 4 Dead",purchase,1.0,0 -127220350,"No More Room in Hell",purchase,1.0,0 -127220350,"Only If",purchase,1.0,0 -127220350,"Pinball Arcade",purchase,1.0,0 -127220350,"Reversion - The Escape",purchase,1.0,0 -127220350,"Worms Revolution",purchase,1.0,0 -178414233,"Unturned",purchase,1.0,0 -178414233,"Unturned",play,3.1,0 -178414233,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -178414233,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.5,0 -178414233,"Dota 2",purchase,1.0,0 -178414233,"Dota 2",play,0.4,0 -178414233,"Warframe",purchase,1.0,0 -178414233,"Nosgoth",purchase,1.0,0 -68809194,"Assassin's Creed Revelations",purchase,1.0,0 -68809194,"Assassin's Creed Revelations",play,58.0,0 -68809194,"Star Wars Knights of the Old Republic",purchase,1.0,0 -68809194,"Star Wars Knights of the Old Republic",play,45.0,0 -68809194,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -68809194,"Kingdoms of Amalur Reckoning",play,42.0,0 -68809194,"Team Fortress 2",purchase,1.0,0 -68809194,"Team Fortress 2",play,38.0,0 -68809194,"Sid Meier's Civilization V",purchase,1.0,0 -68809194,"Sid Meier's Civilization V",play,37.0,0 -68809194,"Mass Effect 2",purchase,1.0,0 -68809194,"Mass Effect 2",play,36.0,0 -68809194,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -68809194,"Tom Clancy's Ghost Recon Phantoms - NA",play,32.0,0 -68809194,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -68809194,"The Elder Scrolls IV Oblivion ",play,31.0,0 -68809194,"Arma 2 Operation Arrowhead",purchase,1.0,0 -68809194,"Arma 2 Operation Arrowhead",play,30.0,0 -68809194,"Dungeon Siege III",purchase,1.0,0 -68809194,"Dungeon Siege III",play,24.0,0 -68809194,"The Walking Dead",purchase,1.0,0 -68809194,"The Walking Dead",play,22.0,0 -68809194,"Fable - The Lost Chapters",purchase,1.0,0 -68809194,"Fable - The Lost Chapters",play,19.9,0 -68809194,"Dragon Age Origins",purchase,1.0,0 -68809194,"Dragon Age Origins",play,17.0,0 -68809194,"Total War SHOGUN 2",purchase,1.0,0 -68809194,"Total War SHOGUN 2",play,11.8,0 -68809194,"PAYDAY 2",purchase,1.0,0 -68809194,"PAYDAY 2",play,10.8,0 -68809194,"Guns of Icarus Online",purchase,1.0,0 -68809194,"Guns of Icarus Online",play,7.1,0 -68809194,"Left 4 Dead 2",purchase,1.0,0 -68809194,"Left 4 Dead 2",play,6.7,0 -68809194,"The Elder Scrolls III Morrowind",purchase,1.0,0 -68809194,"The Elder Scrolls III Morrowind",play,5.2,0 -68809194,"Ace of Spades",purchase,1.0,0 -68809194,"Ace of Spades",play,4.8,0 -68809194,"Left 4 Dead",purchase,1.0,0 -68809194,"Left 4 Dead",play,4.2,0 -68809194,"Dota 2",purchase,1.0,0 -68809194,"Dota 2",play,4.0,0 -68809194,"The Stanley Parable",purchase,1.0,0 -68809194,"The Stanley Parable",play,3.0,0 -68809194,"Age of Empires II HD Edition",purchase,1.0,0 -68809194,"Age of Empires II HD Edition",play,2.9,0 -68809194,"Alien Swarm",purchase,1.0,0 -68809194,"Alien Swarm",play,2.8,0 -68809194,"FORCED",purchase,1.0,0 -68809194,"FORCED",play,2.7,0 -68809194,"Torchlight II",purchase,1.0,0 -68809194,"Torchlight II",play,2.6,0 -68809194,"Borderlands 2",purchase,1.0,0 -68809194,"Borderlands 2",play,2.0,0 -68809194,"Sleeping Dogs",purchase,1.0,0 -68809194,"Sleeping Dogs",play,1.9,0 -68809194,"Dungeon Siege",purchase,1.0,0 -68809194,"Dungeon Siege",play,1.8,0 -68809194,"Risen",purchase,1.0,0 -68809194,"Risen",play,0.5,0 -68809194,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -68809194,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,0.3,0 -68809194,"Dungeon Siege 2",purchase,1.0,0 -68809194,"Dungeon Siege 2",play,0.2,0 -68809194,"Arma 2",purchase,1.0,0 -68809194,"Fallout",purchase,1.0,0 -68809194,"Fallout 2",purchase,1.0,0 -68809194,"Fallout Tactics",purchase,1.0,0 -68809194,"Railroad Tycoon 2 Platinum",purchase,1.0,0 -68809194,"Risen 2 - Dark Waters",purchase,1.0,0 -68809194,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -68809194,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -196751350,"Dota 2",purchase,1.0,0 -196751350,"Dota 2",play,0.6,0 -7617325,"Counter-Strike",purchase,1.0,0 -7617325,"Day of Defeat",purchase,1.0,0 -7617325,"Deathmatch Classic",purchase,1.0,0 -7617325,"Half-Life",purchase,1.0,0 -7617325,"Half-Life Blue Shift",purchase,1.0,0 -7617325,"Half-Life Opposing Force",purchase,1.0,0 -7617325,"Ricochet",purchase,1.0,0 -7617325,"Team Fortress Classic",purchase,1.0,0 -117727921,"Dota 2",purchase,1.0,0 -117727921,"Dota 2",play,194.0,0 -18604016,"Football Manager 2013",purchase,1.0,0 -18604016,"Football Manager 2013",play,249.0,0 -18604016,"Napoleon Total War",purchase,1.0,0 -18604016,"Napoleon Total War",play,89.0,0 -18604016,"Football Manager 2012",purchase,1.0,0 -18604016,"Football Manager 2012",play,76.0,0 -18604016,"Football Manager 2015",purchase,1.0,0 -18604016,"Football Manager 2015",play,30.0,0 -18604016,"Football Manager 2009",purchase,1.0,0 -18604016,"Football Manager 2009",play,2.9,0 -18604016,"Counter-Strike",purchase,1.0,0 -18604016,"Counter-Strike Condition Zero",purchase,1.0,0 -18604016,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -61389725,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -61389725,"Call of Duty Modern Warfare 2 - Multiplayer",play,530.0,0 -61389725,"Call of Duty Modern Warfare 2",purchase,1.0,0 -61389725,"Call of Duty Modern Warfare 2",play,43.0,0 -61389725,"Total War SHOGUN 2",purchase,1.0,0 -61389725,"Total War SHOGUN 2",play,6.3,0 -161632348,"Dota 2",purchase,1.0,0 -161632348,"Dota 2",play,1.4,0 -58529751,"Sid Meier's Civilization V",purchase,1.0,0 -58529751,"Sid Meier's Civilization V",play,526.0,0 -58529751,"Empire Total War",purchase,1.0,0 -58529751,"Empire Total War",play,107.0,0 -58529751,"Napoleon Total War",purchase,1.0,0 -58529751,"Napoleon Total War",play,42.0,0 -58529751,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -58529751,"Tropico 3 - Steam Special Edition",play,17.9,0 -58529751,"Cities XL Platinum",purchase,1.0,0 -58529751,"Cities XL Platinum",play,12.3,0 -174287424,"ARK Survival Evolved",purchase,1.0,0 -174287424,"ARK Survival Evolved",play,518.0,0 -174287424,"Might & Magic Heroes VI",purchase,1.0,0 -174287424,"Might & Magic Heroes VI",play,232.0,0 -174287424,"7 Days to Die",purchase,1.0,0 -174287424,"7 Days to Die",play,175.0,0 -174287424,"Grand Theft Auto V",purchase,1.0,0 -174287424,"Grand Theft Auto V",play,58.0,0 -174287424,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -174287424,"Tom Clancy's Ghost Recon Phantoms - NA",play,30.0,0 -174287424,"PAYDAY 2",purchase,1.0,0 -174287424,"PAYDAY 2",play,27.0,0 -174287424,"Happy Wars",purchase,1.0,0 -174287424,"Happy Wars",play,13.2,0 -174287424,"Dota 2",purchase,1.0,0 -174287424,"Dota 2",play,9.7,0 -174287424,"Firefall",purchase,1.0,0 -174287424,"Firefall",play,8.3,0 -174287424,"Orcs Must Die! 2",purchase,1.0,0 -174287424,"Orcs Must Die! 2",play,5.6,0 -174287424,"Age of Wonders III",purchase,1.0,0 -174287424,"Age of Wonders III",play,5.6,0 -174287424,"Left 4 Dead 2",purchase,1.0,0 -174287424,"Left 4 Dead 2",play,4.8,0 -174287424,"Damned",purchase,1.0,0 -174287424,"Damned",play,4.1,0 -174287424,"Dead Island Epidemic",purchase,1.0,0 -174287424,"Dead Island Epidemic",play,3.6,0 -174287424,"Savage Lands",purchase,1.0,0 -174287424,"Savage Lands",play,2.4,0 -174287424,"Serious Sam HD The First Encounter",purchase,1.0,0 -174287424,"Serious Sam HD The First Encounter",play,1.7,0 -174287424,"Secret Ponchos",purchase,1.0,0 -174287424,"Secret Ponchos",play,1.6,0 -174287424,"Path of Exile",purchase,1.0,0 -174287424,"Path of Exile",play,1.6,0 -174287424,"Rust",purchase,1.0,0 -174287424,"Rust",play,1.6,0 -174287424,"F.E.A.R. Online",purchase,1.0,0 -174287424,"F.E.A.R. Online",play,1.2,0 -174287424,"Dragons and Titans",purchase,1.0,0 -174287424,"Dragons and Titans",play,1.0,0 -174287424,"Cry of Fear",purchase,1.0,0 -174287424,"Cry of Fear",play,0.5,0 -174287424,"Warframe",purchase,1.0,0 -174287424,"Warframe",play,0.5,0 -174287424,"GunZ 2 The Second Duel",purchase,1.0,0 -174287424,"GunZ 2 The Second Duel",play,0.1,0 -174287424,"Free to Play",purchase,1.0,0 -174287424,"Kung Fury",purchase,1.0,0 -174287424,"Tactical Intervention",purchase,1.0,0 -174287424,"XCOM Enemy Unknown",purchase,1.0,0 -174287424,"XCOM Enemy Within",purchase,1.0,0 -139272740,"Dota 2",purchase,1.0,0 -139272740,"Dota 2",play,193.0,0 -139272740,"Garry's Mod",purchase,1.0,0 -139272740,"Garry's Mod",play,0.2,0 -139272740,"Unturned",purchase,1.0,0 -166405828,"Dota 2",purchase,1.0,0 -166405828,"Dota 2",play,0.7,0 -179044354,"Dota 2",purchase,1.0,0 -179044354,"Dota 2",play,1.4,0 -292939884,"Dota 2",purchase,1.0,0 -292939884,"Dota 2",play,15.1,0 -226320653,"Dota 2",purchase,1.0,0 -226320653,"Dota 2",play,0.2,0 -289729300,"Might & Magic Duel of Champions",purchase,1.0,0 -289729300,"GunZ 2 The Second Duel",purchase,1.0,0 -285835754,"Counter-Strike Nexon Zombies",purchase,1.0,0 -285835754,"Counter-Strike Nexon Zombies - Starter Pack",purchase,1.0,0 -285835754,"Darkwind War on Wheels",purchase,1.0,0 -285835754,"RaceRoom Racing Experience ",purchase,1.0,0 -285835754,"Robocraft",purchase,1.0,0 -285835754,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -285835754,"Unturned",purchase,1.0,0 -253713533,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -253713533,"Microsoft Flight Simulator X Steam Edition",play,20.0,0 -197288410,"Dota 2",purchase,1.0,0 -197288410,"Dota 2",play,59.0,0 -197288410,"Happy Wars",purchase,1.0,0 -197288410,"Happy Wars",play,16.4,0 -197288410,"Rise of Incarnates",purchase,1.0,0 -29243200,"Counter-Strike Source",purchase,1.0,0 -29243200,"Counter-Strike Source",play,2.1,0 -114578751,"XCOM Enemy Unknown",purchase,1.0,0 -114578751,"XCOM Enemy Unknown",play,34.0,0 -114578751,"Mortal Kombat Komplete Edition",purchase,1.0,0 -114578751,"Mortal Kombat Komplete Edition",play,15.8,0 -114578751,"Mortal Kombat X",purchase,1.0,0 -114578751,"Mortal Kombat X",play,11.8,0 -114578751,"Carmageddon Reincarnation",purchase,1.0,0 -114578751,"Carmageddon Reincarnation",play,8.7,0 -114578751,"Carmageddon 2 Carpocalypse Now",purchase,1.0,0 -114578751,"Carmageddon Max Pack",purchase,1.0,0 -114578751,"Carmageddon TDR 2000",purchase,1.0,0 -114578751,"Mortal Kombat Legacy - Ep. 9 Cyrax & Sektor",purchase,1.0,0 -242212974,"BLOCKADE 3D",purchase,1.0,0 -242212974,"BLOCKADE 3D",play,2.4,0 -242212974,"No More Room in Hell",purchase,1.0,0 -242212974,"No More Room in Hell",play,0.7,0 -137603581,"Dota 2",purchase,1.0,0 -137603581,"Dota 2",play,5.5,0 -169506270,"Team Fortress 2",purchase,1.0,0 -169506270,"Team Fortress 2",play,3.7,0 -292835680,"BLOCKADE 3D",purchase,1.0,0 -292835680,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -292835680,"Unturned",purchase,1.0,0 -292835680,"WARMODE",purchase,1.0,0 -231777525,"Dota 2",purchase,1.0,0 -231777525,"Dota 2",play,18.7,0 -298890193,"Loadout",purchase,1.0,0 -298890193,"Loadout",play,27.0,0 -298890193,"Warframe",purchase,1.0,0 -298890193,"Warframe",play,4.7,0 -298890193,"Unturned",purchase,1.0,0 -298890193,"Unturned",play,3.3,0 -298890193,"UberStrike",purchase,1.0,0 -298890193,"UberStrike",play,1.4,0 -298890193,"C9",purchase,1.0,0 -298890193,"C9",play,0.3,0 -263771716,"Mount Your Friends",purchase,1.0,0 -263771716,"Mount Your Friends",play,0.9,0 -263771716,"Team Fortress 2",purchase,1.0,0 -263771716,"Team Fortress 2",play,0.6,0 -263771716,"Unturned",purchase,1.0,0 -263771716,"Unturned",play,0.5,0 -263771716,"Ultimate Tic-Tac-Toe",purchase,1.0,0 -263771716,"Ultimate Tic-Tac-Toe",play,0.2,0 -263771716,"Blacklight Retribution",purchase,1.0,0 -263771716,"Blacklight Retribution",play,0.1,0 -263771716,"Grand Chase",purchase,1.0,0 -263771716,"Spiral Knights",purchase,1.0,0 -263771716,"Super Crate Box",purchase,1.0,0 -199568480,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -199568480,"Call of Duty Black Ops II - Multiplayer",play,1.3,0 -199568480,"Dota 2",purchase,1.0,0 -199568480,"Dota 2",play,0.3,0 -199568480,"Unturned",purchase,1.0,0 -199568480,"Unturned",play,0.2,0 -199568480,"Next Car Game Wreckfest",purchase,1.0,0 -199568480,"Call of Duty Black Ops II",purchase,1.0,0 -199568480,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -199568480,"Counter-Strike Nexon Zombies",purchase,1.0,0 -199568480,"NASCAR '14",purchase,1.0,0 -199568480,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -301796928,"Absconding Zatwor",purchase,1.0,0 -57166019,"Men of War",purchase,1.0,0 -57166019,"Men of War",play,123.0,0 -57166019,"Men of War Assault Squad",purchase,1.0,0 -57166019,"Men of War Assault Squad",play,70.0,0 -55016054,"Football Manager 2012",purchase,1.0,0 -55016054,"Football Manager 2012",play,400.0,0 -55016054,"Football Manager 2010",purchase,1.0,0 -55016054,"Football Manager 2010",play,25.0,0 -149449755,"Insurgency Modern Infantry Combat",purchase,1.0,0 -149449755,"Insurgency Modern Infantry Combat",play,34.0,0 -149449755,"Serious Sam HD The Second Encounter",purchase,1.0,0 -149449755,"Serious Sam HD The Second Encounter",play,27.0,0 -166237064,"Football Manager 2015",purchase,1.0,0 -166237064,"Football Manager 2015",play,78.0,0 -14706578,"Counter-Strike",purchase,1.0,0 -14706578,"Counter-Strike Condition Zero",purchase,1.0,0 -14706578,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -14706578,"Counter-Strike Source",purchase,1.0,0 -14706578,"Half-Life 2",purchase,1.0,0 -14706578,"Half-Life 2 Deathmatch",purchase,1.0,0 -14706578,"Half-Life 2 Lost Coast",purchase,1.0,0 -206183065,"Team Fortress 2",purchase,1.0,0 -206183065,"Team Fortress 2",play,45.0,0 -206183065,"The Expendabros",purchase,1.0,0 -206183065,"The Expendabros",play,10.0,0 -206183065,"No More Room in Hell",purchase,1.0,0 -206183065,"No More Room in Hell",play,7.8,0 -206183065,"BLOCKADE 3D",purchase,1.0,0 -206183065,"BLOCKADE 3D",play,6.5,0 -206183065,"Toribash",purchase,1.0,0 -206183065,"Toribash",play,3.4,0 -206183065,"Anarchy Arcade",purchase,1.0,0 -206183065,"Anarchy Arcade",play,3.0,0 -206183065,"Zombies Monsters Robots",purchase,1.0,0 -206183065,"Zombies Monsters Robots",play,1.7,0 -206183065,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -206183065,"Tom Clancy's Ghost Recon Phantoms - NA",play,1.6,0 -206183065,"Unturned",purchase,1.0,0 -206183065,"Unturned",play,1.5,0 -206183065,"Loadout",purchase,1.0,0 -206183065,"Loadout",play,1.5,0 -206183065,"Double Action Boogaloo",purchase,1.0,0 -206183065,"Double Action Boogaloo",play,1.3,0 -206183065,"theHunter",purchase,1.0,0 -206183065,"theHunter",play,1.2,0 -206183065,"Tactical Intervention",purchase,1.0,0 -206183065,"Tactical Intervention",play,1.1,0 -206183065,"CrimeCraft GangWars",purchase,1.0,0 -206183065,"CrimeCraft GangWars",play,0.8,0 -206183065,"Blacklight Retribution",purchase,1.0,0 -206183065,"Blacklight Retribution",play,0.7,0 -206183065,"DC Universe Online",purchase,1.0,0 -206183065,"DC Universe Online",play,0.5,0 -206183065,"Gotham City Impostors Free To Play",purchase,1.0,0 -206183065,"Gotham City Impostors Free To Play",play,0.5,0 -206183065,"Heroes & Generals",purchase,1.0,0 -206183065,"Heroes & Generals",play,0.4,0 -206183065,"Pyramid Raid",purchase,1.0,0 -206183065,"Pyramid Raid",play,0.4,0 -206183065,"CroNix",purchase,1.0,0 -206183065,"CroNix",play,0.4,0 -206183065,"Saints Row The Third - Initiation Station",purchase,1.0,0 -206183065,"Saints Row The Third - Initiation Station",play,0.2,0 -206183065,"Rise of Incarnates",purchase,1.0,0 -206183065,"sZone-Online",purchase,1.0,0 -206183065,"Brick-Force",purchase,1.0,0 -206183065,"America's Army 3",purchase,1.0,0 -206183065,"Dead Island Epidemic",purchase,1.0,0 -206183065,"Fallen Earth",purchase,1.0,0 -206183065,"Global Agenda",purchase,1.0,0 -206183065,"Marvel Heroes 2015",purchase,1.0,0 -140225817,"Dota 2",purchase,1.0,0 -140225817,"Dota 2",play,7.7,0 -168882105,"Team Fortress 2",purchase,1.0,0 -168882105,"Team Fortress 2",play,90.0,0 -168882105,"AirMech",purchase,1.0,0 -168882105,"AirMech",play,0.4,0 -168882105,"Combat Arms",purchase,1.0,0 -168882105,"Gotham City Impostors Free To Play",purchase,1.0,0 -158608850,"Terraria",purchase,1.0,0 -158608850,"Terraria",play,117.0,0 -158608850,"Left 4 Dead 2",purchase,1.0,0 -158608850,"Left 4 Dead 2",play,94.0,0 -158608850,"Portal 2",purchase,1.0,0 -158608850,"Portal 2",play,23.0,0 -158608850,"PAYDAY The Heist",purchase,1.0,0 -158608850,"PAYDAY The Heist",play,22.0,0 -158608850,"Loadout",purchase,1.0,0 -158608850,"Loadout",play,22.0,0 -158608850,"PlanetSide 2",purchase,1.0,0 -158608850,"PlanetSide 2",play,20.0,0 -158608850,"Counter-Strike Global Offensive",purchase,1.0,0 -158608850,"Counter-Strike Global Offensive",play,14.2,0 -158608850,"Sniper Elite V2",purchase,1.0,0 -158608850,"Sniper Elite V2",play,13.4,0 -158608850,"HAWKEN",purchase,1.0,0 -158608850,"HAWKEN",play,11.9,0 -158608850,"Memories of a Vagabond",purchase,1.0,0 -158608850,"Memories of a Vagabond",play,9.1,0 -158608850,"Portal",purchase,1.0,0 -158608850,"Portal",play,6.2,0 -158608850,"Double Action Boogaloo",purchase,1.0,0 -158608850,"Double Action Boogaloo",play,5.2,0 -158608850,"BlazBlue Continuum Shift Extend",purchase,1.0,0 -158608850,"BlazBlue Continuum Shift Extend",play,4.9,0 -158608850,"Sakura Clicker",purchase,1.0,0 -158608850,"Sakura Clicker",play,3.9,0 -158608850,"H1Z1",purchase,1.0,0 -158608850,"H1Z1",play,1.8,0 -158608850,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -158608850,"Rising Storm/Red Orchestra 2 Multiplayer",play,1.6,0 -158608850,"Warframe",purchase,1.0,0 -158608850,"Warframe",play,1.5,0 -158608850,"Race The Sun",purchase,1.0,0 -158608850,"Race The Sun",play,1.4,0 -158608850,"Afterfall InSanity Extended Edition",purchase,1.0,0 -158608850,"Afterfall InSanity Extended Edition",play,1.2,0 -158608850,"Unturned",purchase,1.0,0 -158608850,"Unturned",play,1.1,0 -158608850,"Magicka Wizard Wars",purchase,1.0,0 -158608850,"Magicka Wizard Wars",play,1.0,0 -158608850,"Archeblade",purchase,1.0,0 -158608850,"Archeblade",play,0.8,0 -158608850,"Written in the Sky",purchase,1.0,0 -158608850,"Written in the Sky",play,0.8,0 -158608850,"Hydrophobia Prophecy",purchase,1.0,0 -158608850,"Hydrophobia Prophecy",play,0.7,0 -158608850,"Third Eye Crime",purchase,1.0,0 -158608850,"Third Eye Crime",play,0.5,0 -158608850,"Echoes+",purchase,1.0,0 -158608850,"Echoes+",play,0.5,0 -158608850,"Dota 2",purchase,1.0,0 -158608850,"Dota 2",play,0.4,0 -158608850,"Shadows on the Vatican - Act I Greed",purchase,1.0,0 -158608850,"Shadows on the Vatican - Act I Greed",play,0.2,0 -158608850,"Aura Kingdom",purchase,1.0,0 -158608850,"Amnesia The Dark Descent",purchase,1.0,0 -158608850,"H1Z1 Test Server",purchase,1.0,0 -158608850,"Racer 8",purchase,1.0,0 -158608850,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -158608850,"Super Killer Hornet Resurrection",purchase,1.0,0 -158608850,"Trove",purchase,1.0,0 -158608850,"Warlock - Master of the Arcane",purchase,1.0,0 -158608850,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -252558119,"Magic Duels",purchase,1.0,0 -252558119,"Time Clickers",purchase,1.0,0 -85009082,"Team Fortress 2",purchase,1.0,0 -85009082,"Team Fortress 2",play,0.6,0 -252012035,"Dota 2",purchase,1.0,0 -252012035,"Dota 2",play,2.0,0 -252012035,"Team Fortress 2",purchase,1.0,0 -252012035,"Team Fortress 2",play,0.3,0 -252012035,"Dragon Nest Europe",purchase,1.0,0 -252012035,"FreeStyle2 Street Basketball",purchase,1.0,0 -252012035,"Heroes & Generals",purchase,1.0,0 -252012035,"No More Room in Hell",purchase,1.0,0 -252012035,"Panzar",purchase,1.0,0 -252012035,"Run and Fire",purchase,1.0,0 -252012035,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -252012035,"Survarium",purchase,1.0,0 -252012035,"sZone-Online",purchase,1.0,0 -252012035,"Trove",purchase,1.0,0 -252012035,"Unturned",purchase,1.0,0 -94965694,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -94965694,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -243008978,"Dota 2",purchase,1.0,0 -243008978,"Dota 2",play,15.5,0 -243008978,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -228918359,"BLOCKADE 3D",purchase,1.0,0 -80224478,"Sid Meier's Civilization V",purchase,1.0,0 -80224478,"Sid Meier's Civilization V",play,90.0,0 -299833291,"Dota 2",purchase,1.0,0 -299833291,"Dota 2",play,142.0,0 -183421285,"Alan Wake",purchase,1.0,0 -183421285,"Alan Wake",play,3.0,0 -182851135,"PlanetSide 2",purchase,1.0,0 -182851135,"PlanetSide 2",play,36.0,0 -182851135,"Fuse",purchase,1.0,0 -182851135,"Fuse",play,5.2,0 -182851135,"Metro Conflict",purchase,1.0,0 -182851135,"Metro Conflict",play,3.5,0 -182851135,"Warframe",purchase,1.0,0 -182851135,"Warframe",play,2.0,0 -182851135,"Defiance",purchase,1.0,0 -182851135,"Defiance",play,1.5,0 -182851135,"Star Conflict",purchase,1.0,0 -182851135,"Star Conflict",play,1.1,0 -182851135,"War Thunder",purchase,1.0,0 -182851135,"War Thunder",play,0.9,0 -182851135,"Robocraft",purchase,1.0,0 -182851135,"Robocraft",play,0.8,0 -182851135,"Dirty Bomb",purchase,1.0,0 -182851135,"Dirty Bomb",play,0.6,0 -182851135,"Spiral Knights",purchase,1.0,0 -182851135,"Spiral Knights",play,0.6,0 -182851135,"War Inc. Battlezone",purchase,1.0,0 -182851135,"War Inc. Battlezone",play,0.4,0 -182851135,"Guns and Robots",purchase,1.0,0 -182851135,"Guns and Robots",play,0.4,0 -182851135,"Tribes Ascend",purchase,1.0,0 -182851135,"Tribes Ascend",play,0.4,0 -182851135,"Strife",purchase,1.0,0 -182851135,"Strife",play,0.4,0 -182851135,"Teeworlds",purchase,1.0,0 -182851135,"Teeworlds",play,0.3,0 -182851135,"Counter-Strike Nexon Zombies",purchase,1.0,0 -182851135,"Counter-Strike Nexon Zombies",play,0.3,0 -182851135,"Unturned",purchase,1.0,0 -182851135,"Unturned",play,0.2,0 -182851135,"Super Crate Box",purchase,1.0,0 -182851135,"Super Crate Box",play,0.1,0 -182851135,"UberStrike",purchase,1.0,0 -182851135,"Warface",purchase,1.0,0 -182851135,"Blacklight Retribution",purchase,1.0,0 -182851135,"Cannons Lasers Rockets",purchase,1.0,0 -182851135,"Fallen Earth",purchase,1.0,0 -182851135,"Firefall",purchase,1.0,0 -182851135,"GunZ 2 The Second Duel",purchase,1.0,0 -182851135,"HAWKEN",purchase,1.0,0 -182851135,"Heroes & Generals",purchase,1.0,0 -182851135,"MicroVolts Surge",purchase,1.0,0 -182851135,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -182851135,"Trove",purchase,1.0,0 -291313138,"Dota 2",purchase,1.0,0 -291313138,"Dota 2",play,0.7,0 -37723786,"Counter-Strike Global Offensive",purchase,1.0,0 -37723786,"Counter-Strike Global Offensive",play,1675.0,0 -37723786,"Team Fortress 2",purchase,1.0,0 -37723786,"Team Fortress 2",play,1051.0,0 -37723786,"Counter-Strike Source",purchase,1.0,0 -37723786,"Counter-Strike Source",play,804.0,0 -37723786,"Garry's Mod",purchase,1.0,0 -37723786,"Garry's Mod",play,176.0,0 -37723786,"Terraria",purchase,1.0,0 -37723786,"Terraria",play,166.0,0 -37723786,"Left 4 Dead 2",purchase,1.0,0 -37723786,"Left 4 Dead 2",play,128.0,0 -37723786,"Killing Floor",purchase,1.0,0 -37723786,"Killing Floor",play,87.0,0 -37723786,"Titan Quest Immortal Throne",purchase,1.0,0 -37723786,"Titan Quest Immortal Throne",play,44.0,0 -37723786,"Borderlands",purchase,1.0,0 -37723786,"Borderlands",play,30.0,0 -37723786,"Killing Floor 2",purchase,1.0,0 -37723786,"Killing Floor 2",play,30.0,0 -37723786,"Clicker Heroes",purchase,1.0,0 -37723786,"Clicker Heroes",play,28.0,0 -37723786,"Left 4 Dead",purchase,1.0,0 -37723786,"Left 4 Dead",play,25.0,0 -37723786,"Nosgoth",purchase,1.0,0 -37723786,"Nosgoth",play,15.0,0 -37723786,"The Elder Scrolls Online Tamriel Unlimited",purchase,1.0,0 -37723786,"The Elder Scrolls Online Tamriel Unlimited",play,13.0,0 -37723786,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -37723786,"Duke Nukem 3D Megaton Edition",play,10.3,0 -37723786,"PAYDAY 2",purchase,1.0,0 -37723786,"PAYDAY 2",play,10.2,0 -37723786,"Metro 2033",purchase,1.0,0 -37723786,"Metro 2033",play,8.4,0 -37723786,"Insurgency",purchase,1.0,0 -37723786,"Insurgency",play,7.9,0 -37723786,"Poker Night at the Inventory",purchase,1.0,0 -37723786,"Poker Night at the Inventory",play,7.3,0 -37723786,"Counter-Strike",purchase,1.0,0 -37723786,"Counter-Strike",play,5.4,0 -37723786,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -37723786,"Rising Storm/Red Orchestra 2 Multiplayer",play,5.2,0 -37723786,"The Forest",purchase,1.0,0 -37723786,"The Forest",play,4.6,0 -37723786,"Loadout",purchase,1.0,0 -37723786,"Loadout",play,4.4,0 -37723786,"Path of Exile",purchase,1.0,0 -37723786,"Path of Exile",play,4.3,0 -37723786,"Starbound",purchase,1.0,0 -37723786,"Starbound",play,4.2,0 -37723786,"Alien Swarm",purchase,1.0,0 -37723786,"Alien Swarm",play,4.0,0 -37723786,"Dota 2",purchase,1.0,0 -37723786,"Dota 2",play,3.7,0 -37723786,"Borderlands 2",purchase,1.0,0 -37723786,"Borderlands 2",play,3.7,0 -37723786,"McPixel",purchase,1.0,0 -37723786,"McPixel",play,3.3,0 -37723786,"ARK Survival Evolved",purchase,1.0,0 -37723786,"ARK Survival Evolved",play,2.3,0 -37723786,"Day of Defeat Source",purchase,1.0,0 -37723786,"Day of Defeat Source",play,2.1,0 -37723786,"Amnesia The Dark Descent",purchase,1.0,0 -37723786,"Amnesia The Dark Descent",play,2.0,0 -37723786,"Aliens vs. Predator",purchase,1.0,0 -37723786,"Aliens vs. Predator",play,1.3,0 -37723786,"Zombie Panic Source",purchase,1.0,0 -37723786,"Zombie Panic Source",play,1.3,0 -37723786,"Arma Cold War Assault",purchase,1.0,0 -37723786,"Arma Cold War Assault",play,0.6,0 -37723786,"HAWKEN",purchase,1.0,0 -37723786,"HAWKEN",play,0.6,0 -37723786,"Half-Life 2 Deathmatch",purchase,1.0,0 -37723786,"Half-Life 2 Deathmatch",play,0.3,0 -37723786,"Age of Chivalry",purchase,1.0,0 -37723786,"Age of Chivalry",play,0.3,0 -37723786,"Counter-Strike Condition Zero",purchase,1.0,0 -37723786,"Counter-Strike Condition Zero",play,0.2,0 -37723786,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -37723786,"Killing Floor Mod Defence Alliance 2",play,0.1,0 -37723786,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -37723786,"Command and Conquer Red Alert 3 - Uprising",play,0.1,0 -37723786,"Titan Quest",purchase,1.0,0 -37723786,"Titan Quest",play,0.1,0 -37723786,"America's Army Proving Grounds",purchase,1.0,0 -37723786,"Arma 2 Free",purchase,1.0,0 -37723786,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -37723786,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -37723786,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -37723786,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -37723786,"Botanicula",purchase,1.0,0 -37723786,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -37723786,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -37723786,"Crysis 2 Maximum Edition",purchase,1.0,0 -37723786,"Dead Space",purchase,1.0,0 -37723786,"Fable - The Lost Chapters",purchase,1.0,0 -37723786,"Fractured Space",purchase,1.0,0 -37723786,"Half-Life 2 Lost Coast",purchase,1.0,0 -37723786,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -37723786,"Medal of Honor(TM) Single Player",purchase,1.0,0 -37723786,"Medal of Honor Pre-Order",purchase,1.0,0 -37723786,"Mirror's Edge",purchase,1.0,0 -37723786,"PAYDAY The Heist",purchase,1.0,0 -37723786,"Portal",purchase,1.0,0 -37723786,"Quake Live",purchase,1.0,0 -37723786,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -37723786,"Sniper Elite V2",purchase,1.0,0 -37723786,"Starbound - Unstable",purchase,1.0,0 -37723786,"Takedown Red Sabre",purchase,1.0,0 -37723786,"The Showdown Effect",purchase,1.0,0 -37723786,"Thomas Was Alone",purchase,1.0,0 -37723786,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -37723786,"Warframe",purchase,1.0,0 -37723786,"War Thunder",purchase,1.0,0 -230299466,"Dota 2",purchase,1.0,0 -230299466,"Dota 2",play,1.4,0 -230299466,"Warframe",purchase,1.0,0 -254928785,"Arma 2 Operation Arrowhead",purchase,1.0,0 -254928785,"Arma 2 Operation Arrowhead",play,39.0,0 -254928785,"DayZ",purchase,1.0,0 -254928785,"DayZ",play,14.3,0 -254928785,"PAYDAY 2",purchase,1.0,0 -254928785,"PAYDAY 2",play,11.5,0 -254928785,"Euro Truck Simulator 2",purchase,1.0,0 -254928785,"Euro Truck Simulator 2",play,10.2,0 -254928785,"DiRT 3 Complete Edition",purchase,1.0,0 -254928785,"DiRT 3 Complete Edition",play,2.4,0 -254928785,"MXGP - The Official Motocross Videogame",purchase,1.0,0 -254928785,"MXGP - The Official Motocross Videogame",play,1.9,0 -254928785,"Arma 2",purchase,1.0,0 -254928785,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -254928785,"RaceRoom Racing Experience ",purchase,1.0,0 -60958088,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -60958088,"Call of Duty Modern Warfare 3 - Multiplayer",play,154.0,0 -60958088,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -60958088,"Call of Duty Black Ops - Multiplayer",play,131.0,0 -60958088,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -60958088,"Call of Duty Modern Warfare 2 - Multiplayer",play,79.0,0 -60958088,"Call of Duty Modern Warfare 2",purchase,1.0,0 -60958088,"Call of Duty Modern Warfare 2",play,47.0,0 -60958088,"Call of Duty Modern Warfare 3",purchase,1.0,0 -60958088,"Call of Duty Modern Warfare 3",play,4.5,0 -60958088,"Call of Duty Black Ops",purchase,1.0,0 -60958088,"Call of Duty Black Ops",play,2.2,0 -253814117,"Garry's Mod",purchase,1.0,0 -253814117,"Garry's Mod",play,19.4,0 -253814117,"Clicker Heroes",purchase,1.0,0 -253814117,"Clicker Heroes",play,17.4,0 -253814117,"Mitos.is The Game",purchase,1.0,0 -253814117,"Mitos.is The Game",play,0.6,0 -253814117,"Counter-Strike Global Offensive",purchase,1.0,0 -253814117,"Counter-Strike Nexon Zombies",purchase,1.0,0 -212255389,"Dota 2",purchase,1.0,0 -212255389,"Dota 2",play,0.2,0 -304497512,"Counter-Strike Global Offensive",purchase,1.0,0 -304497512,"Counter-Strike Global Offensive",play,23.0,0 -178634510,"Dota 2",purchase,1.0,0 -178634510,"Dota 2",play,1.3,0 -208162306,"Dota 2",purchase,1.0,0 -208162306,"Dota 2",play,1.1,0 -43955374,"Clicker Heroes",purchase,1.0,0 -43955374,"Clicker Heroes",play,2008.0,0 -43955374,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -43955374,"Call of Duty Modern Warfare 2 - Multiplayer",play,368.0,0 -43955374,"Sid Meier's Civilization V",purchase,1.0,0 -43955374,"Sid Meier's Civilization V",play,353.0,0 -43955374,"Borderlands 2",purchase,1.0,0 -43955374,"Borderlands 2",play,258.0,0 -43955374,"Dragon Age Origins",purchase,1.0,0 -43955374,"Dragon Age Origins",play,210.0,0 -43955374,"Warface",purchase,1.0,0 -43955374,"Warface",play,209.0,0 -43955374,"Defiance",purchase,1.0,0 -43955374,"Defiance",play,171.0,0 -43955374,"Left 4 Dead",purchase,1.0,0 -43955374,"Left 4 Dead",play,163.0,0 -43955374,"Age of Empires Online",purchase,1.0,0 -43955374,"Age of Empires Online",play,154.0,0 -43955374,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -43955374,"Call of Duty Modern Warfare 3 - Multiplayer",play,147.0,0 -43955374,"Terraria",purchase,1.0,0 -43955374,"Terraria",play,144.0,0 -43955374,"The Elder Scrolls V Skyrim",purchase,1.0,0 -43955374,"The Elder Scrolls V Skyrim",play,114.0,0 -43955374,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -43955374,"Call of Duty Black Ops - Multiplayer",play,109.0,0 -43955374,"RIFT",purchase,1.0,0 -43955374,"RIFT",play,102.0,0 -43955374,"Elite Dangerous",purchase,1.0,0 -43955374,"Elite Dangerous",play,81.0,0 -43955374,"Global Agenda",purchase,1.0,0 -43955374,"Global Agenda",play,75.0,0 -43955374,"Left 4 Dead 2",purchase,1.0,0 -43955374,"Left 4 Dead 2",play,70.0,0 -43955374,"FTL Faster Than Light",purchase,1.0,0 -43955374,"FTL Faster Than Light",play,64.0,0 -43955374,"Banished",purchase,1.0,0 -43955374,"Banished",play,64.0,0 -43955374,"Kingdom Wars",purchase,1.0,0 -43955374,"Kingdom Wars",play,59.0,0 -43955374,"Starbound",purchase,1.0,0 -43955374,"Starbound",play,58.0,0 -43955374,"Ticket to Ride",purchase,1.0,0 -43955374,"Ticket to Ride",play,55.0,0 -43955374,"Dungeon Defenders",purchase,1.0,0 -43955374,"Dungeon Defenders",play,54.0,0 -43955374,"Towns",purchase,1.0,0 -43955374,"Towns",play,54.0,0 -43955374,"DC Universe Online",purchase,1.0,0 -43955374,"DC Universe Online",play,52.0,0 -43955374,"Far Cry 3",purchase,1.0,0 -43955374,"Far Cry 3",play,51.0,0 -43955374,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -43955374,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,47.0,0 -43955374,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -43955374,"Warhammer 40,000 Dawn of War II",play,39.0,0 -43955374,"Section 8",purchase,1.0,0 -43955374,"Section 8",play,38.0,0 -43955374,"Majesty 2",purchase,1.0,0 -43955374,"Majesty 2",play,37.0,0 -43955374,"Prison Architect",purchase,1.0,0 -43955374,"Prison Architect",play,35.0,0 -43955374,"Call of Duty Modern Warfare 2",purchase,1.0,0 -43955374,"Call of Duty Modern Warfare 2",play,34.0,0 -43955374,"Godus",purchase,1.0,0 -43955374,"Godus",play,29.0,0 -43955374,"Battlefield Bad Company 2",purchase,1.0,0 -43955374,"Battlefield Bad Company 2",play,23.0,0 -43955374,"Overlord II",purchase,1.0,0 -43955374,"Overlord II",play,22.0,0 -43955374,"Craft The World",purchase,1.0,0 -43955374,"Craft The World",play,21.0,0 -43955374,"Planetary Annihilation",purchase,1.0,0 -43955374,"Planetary Annihilation",play,20.0,0 -43955374,"Magicka",purchase,1.0,0 -43955374,"Magicka",play,19.9,0 -43955374,"DUNGEONS - Steam Special Edition",purchase,1.0,0 -43955374,"DUNGEONS - Steam Special Edition",play,19.1,0 -43955374,"Game Dev Tycoon",purchase,1.0,0 -43955374,"Game Dev Tycoon",play,17.9,0 -43955374,"Dungeons 2",purchase,1.0,0 -43955374,"Dungeons 2",play,17.9,0 -43955374,"Anno 2070",purchase,1.0,0 -43955374,"Anno 2070",play,17.5,0 -43955374,"XCOM Enemy Unknown",purchase,1.0,0 -43955374,"XCOM Enemy Unknown",play,17.3,0 -43955374,"Orcs Must Die! 2",purchase,1.0,0 -43955374,"Orcs Must Die! 2",play,17.1,0 -43955374,"Grand Theft Auto V",purchase,1.0,0 -43955374,"Grand Theft Auto V",play,17.0,0 -43955374,"DayZ",purchase,1.0,0 -43955374,"DayZ",play,14.0,0 -43955374,"Planetbase",purchase,1.0,0 -43955374,"Planetbase",play,14.0,0 -43955374,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -43955374,"Sins of a Solar Empire Rebellion",play,13.7,0 -43955374,"Tower Wars",purchase,1.0,0 -43955374,"Tower Wars",play,13.1,0 -43955374,"Unreal Tournament 2004",purchase,1.0,0 -43955374,"Unreal Tournament 2004",play,12.7,0 -43955374,"Torchlight",purchase,1.0,0 -43955374,"Torchlight",play,12.1,0 -43955374,"Monday Night Combat",purchase,1.0,0 -43955374,"Monday Night Combat",play,12.1,0 -43955374,"Infestation Survivor Stories",purchase,1.0,0 -43955374,"Infestation Survivor Stories",play,11.9,0 -43955374,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -43955374,"Galactic Civilizations II Ultimate Edition",play,11.6,0 -43955374,"HOARD",purchase,1.0,0 -43955374,"HOARD",play,11.2,0 -43955374,"SolForge",purchase,1.0,0 -43955374,"SolForge",play,10.5,0 -43955374,"Trine 2",purchase,1.0,0 -43955374,"Trine 2",play,10.5,0 -43955374,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -43955374,"Sid Meier's Civilization Beyond Earth",play,9.8,0 -43955374,"State of Decay",purchase,1.0,0 -43955374,"State of Decay",play,9.7,0 -43955374,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -43955374,"Warhammer 40,000 Dawn of War II Retribution",play,9.1,0 -43955374,"Overlord Raising Hell",purchase,1.0,0 -43955374,"Overlord Raising Hell",play,8.7,0 -43955374,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -43955374,"Warhammer 40,000 Dawn of War Soulstorm",play,8.7,0 -43955374,"The Golf Club",purchase,1.0,0 -43955374,"The Golf Club",play,8.4,0 -43955374,"CastleStorm",purchase,1.0,0 -43955374,"CastleStorm",play,8.4,0 -43955374,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -43955374,"Plants vs. Zombies Game of the Year",play,8.1,0 -43955374,"Company of Heroes 2",purchase,1.0,0 -43955374,"Company of Heroes 2",play,7.9,0 -43955374,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -43955374,"Infinity Wars - Animated Trading Card Game",play,7.7,0 -43955374,"Blood Bowl Chaos Edition",purchase,1.0,0 -43955374,"Blood Bowl Chaos Edition",play,7.5,0 -43955374,"Endless Legend",purchase,1.0,0 -43955374,"Endless Legend",play,6.9,0 -43955374,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -43955374,"RollerCoaster Tycoon 3 Platinum!",play,6.7,0 -43955374,"Orcs Must Die!",purchase,1.0,0 -43955374,"Orcs Must Die!",play,6.5,0 -43955374,"Windward",purchase,1.0,0 -43955374,"Windward",play,6.4,0 -43955374,"Crysis",purchase,1.0,0 -43955374,"Crysis",play,6.4,0 -43955374,"Section 8 Prejudice",purchase,1.0,0 -43955374,"Section 8 Prejudice",play,5.9,0 -43955374,"Defense Grid The Awakening",purchase,1.0,0 -43955374,"Defense Grid The Awakening",play,5.4,0 -43955374,"Call of Duty Black Ops",purchase,1.0,0 -43955374,"Call of Duty Black Ops",play,5.3,0 -43955374,"Blood Bowl Legendary Edition",purchase,1.0,0 -43955374,"Blood Bowl Legendary Edition",play,5.3,0 -43955374,"M.U.D. TV",purchase,1.0,0 -43955374,"M.U.D. TV",play,4.5,0 -43955374,"War Thunder",purchase,1.0,0 -43955374,"War Thunder",play,4.1,0 -43955374,"Space Run",purchase,1.0,0 -43955374,"Space Run",play,4.0,0 -43955374,"Titan Quest",purchase,1.0,0 -43955374,"Titan Quest",play,3.9,0 -43955374,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -43955374,"School of Dragons How to Train Your Dragon",play,3.7,0 -43955374,"Age of Wonders III",purchase,1.0,0 -43955374,"Age of Wonders III",play,3.3,0 -43955374,"Assassin's Creed",purchase,1.0,0 -43955374,"Assassin's Creed",play,3.3,0 -43955374,"Dungeons & Dragons Daggerdale",purchase,1.0,0 -43955374,"Dungeons & Dragons Daggerdale",play,3.0,0 -43955374,"Dungeon Defenders Eternity",purchase,1.0,0 -43955374,"Dungeon Defenders Eternity",play,2.8,0 -43955374,"Folk Tale",purchase,1.0,0 -43955374,"Folk Tale",play,2.6,0 -43955374,"Assassin's Creed II",purchase,1.0,0 -43955374,"Assassin's Creed II",play,2.3,0 -43955374,"Borderlands",purchase,1.0,0 -43955374,"Borderlands",play,2.3,0 -43955374,"Anno Online",purchase,1.0,0 -43955374,"Anno Online",play,2.1,0 -43955374,"Warmachine Tactics",purchase,1.0,0 -43955374,"Warmachine Tactics",play,1.9,0 -43955374,"Gauntlet ",purchase,1.0,0 -43955374,"Gauntlet ",play,1.6,0 -43955374,"Talisman Digital Edition",purchase,1.0,0 -43955374,"Talisman Digital Edition",play,1.6,0 -43955374,"America's Army Proving Grounds",purchase,1.0,0 -43955374,"America's Army Proving Grounds",play,1.6,0 -43955374,"Call of Duty Modern Warfare 3",purchase,1.0,0 -43955374,"Call of Duty Modern Warfare 3",play,1.5,0 -43955374,"Titan Quest Immortal Throne",purchase,1.0,0 -43955374,"Titan Quest Immortal Throne",play,1.4,0 -43955374,"Shadowrun Returns",purchase,1.0,0 -43955374,"Shadowrun Returns",play,1.4,0 -43955374,"Firefall",purchase,1.0,0 -43955374,"Firefall",play,1.3,0 -43955374,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -43955374,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,1.0,0 -43955374,"LEGO The Lord of the Rings",purchase,1.0,0 -43955374,"LEGO The Lord of the Rings",play,0.9,0 -43955374,"Lego Harry Potter",purchase,1.0,0 -43955374,"Lego Harry Potter",play,0.8,0 -43955374,"King Arthur's Gold",purchase,1.0,0 -43955374,"King Arthur's Gold",play,0.8,0 -43955374,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -43955374,"Warhammer 40,000 Dawn of War Winter Assault",play,0.7,0 -43955374,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -43955374,"Warhammer 40,000 Dawn of War Dark Crusade",play,0.7,0 -43955374,"Overlord",purchase,1.0,0 -43955374,"Overlord",play,0.5,0 -43955374,"HELLDIVERS",purchase,1.0,0 -43955374,"HELLDIVERS",play,0.4,0 -43955374,"Tom Clancy's Rainbow Six Vegas 2",purchase,1.0,0 -43955374,"Tom Clancy's Rainbow Six Vegas 2",play,0.4,0 -43955374,"Endless Sky",purchase,1.0,0 -43955374,"Endless Sky",play,0.4,0 -43955374,"Hammerwatch",purchase,1.0,0 -43955374,"Hammerwatch",play,0.4,0 -43955374,"Villagers and Heroes",purchase,1.0,0 -43955374,"Villagers and Heroes",play,0.3,0 -43955374,"Amnesia The Dark Descent",purchase,1.0,0 -43955374,"Amnesia The Dark Descent",play,0.3,0 -43955374,"America's Army 3",purchase,1.0,0 -43955374,"America's Army 3",play,0.2,0 -43955374,"Aion",purchase,1.0,0 -43955374,"Aion",play,0.2,0 -43955374,"Bully Scholarship Edition",purchase,1.0,0 -43955374,"Bully Scholarship Edition",play,0.1,0 -43955374,"War of Beach",purchase,1.0,0 -43955374,"War of Beach",play,0.1,0 -43955374,"Poker Night at the Inventory",purchase,1.0,0 -43955374,"Assassin's Creed III",purchase,1.0,0 -43955374,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -43955374,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -43955374,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -43955374,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -43955374,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -43955374,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -43955374,"Call of Duty Modern Warfare 2 - Resurgence Pack",purchase,1.0,0 -43955374,"Call of Duty Modern Warfare 2 Stimulus Package",purchase,1.0,0 -43955374,"Call of Juarez Bound in Blood",purchase,1.0,0 -43955374,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -43955374,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -43955374,"Company of Heroes 2 - Ardennes Assault",purchase,1.0,0 -43955374,"Darksiders",purchase,1.0,0 -43955374,"Darksiders II",purchase,1.0,0 -43955374,"Darksiders II Deathinitive Edition",purchase,1.0,0 -43955374,"Darksiders II Soundtrack",purchase,1.0,0 -43955374,"Darksiders Soundtrack",purchase,1.0,0 -43955374,"Far Cry 2",purchase,1.0,0 -43955374,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -43955374,"Future Wars",purchase,1.0,0 -43955374,"Galactic Civilizations I Ultimate Edition",purchase,1.0,0 -43955374,"King's Bounty Legions | Beast Master Pack",purchase,1.0,0 -43955374,"LEGO Harry Potter Years 5-7",purchase,1.0,0 -43955374,"Magicka Final Frontier",purchase,1.0,0 -43955374,"Magicka Frozen Lake",purchase,1.0,0 -43955374,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -43955374,"Magicka Nippon",purchase,1.0,0 -43955374,"Magicka Party Robes",purchase,1.0,0 -43955374,"Magicka The Watchtower",purchase,1.0,0 -43955374,"Magicka Vietnam",purchase,1.0,0 -43955374,"Magicka Wizard's Survival Kit",purchase,1.0,0 -43955374,"Majesty 2 Battles of Ardania",purchase,1.0,0 -43955374,"Majesty 2 Monster Kingdom",purchase,1.0,0 -43955374,"MechWarrior Online",purchase,1.0,0 -43955374,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -43955374,"Sins of a Solar Empire Rebellion Forbidden Worlds",purchase,1.0,0 -43955374,"Starbound - Unstable",purchase,1.0,0 -43955374,"State of Decay - Breakdown",purchase,1.0,0 -43955374,"State of Decay - Lifeline",purchase,1.0,0 -43955374,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -43955374,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -43955374,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -43955374,"Ticket to Ride - Europe",purchase,1.0,0 -43955374,"Ticket to Ride - Switzerland",purchase,1.0,0 -43955374,"Ticket to Ride - USA 1910",purchase,1.0,0 -43955374,"XCOM Enemy Within",purchase,1.0,0 -240028845,"Dota 2",purchase,1.0,0 -240028845,"Dota 2",play,621.0,0 -240028845,"FreeStyle2 Street Basketball",purchase,1.0,0 -240028845,"GunZ 2 The Second Duel",purchase,1.0,0 -60260529,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -60260529,"Call of Duty Modern Warfare 2 - Multiplayer",play,45.0,0 -60260529,"Call of Duty Modern Warfare 2",purchase,1.0,0 -60260529,"Call of Duty Modern Warfare 2",play,8.1,0 -11713535,"Counter-Strike",purchase,1.0,0 -11713535,"Counter-Strike",play,23.0,0 -11713535,"Day of Defeat",purchase,1.0,0 -11713535,"Deathmatch Classic",purchase,1.0,0 -11713535,"Half-Life",purchase,1.0,0 -11713535,"Half-Life Blue Shift",purchase,1.0,0 -11713535,"Half-Life Opposing Force",purchase,1.0,0 -11713535,"Ricochet",purchase,1.0,0 -11713535,"Team Fortress Classic",purchase,1.0,0 -167441059,"Dota 2",purchase,1.0,0 -167441059,"Dota 2",play,99.0,0 -200124268,"Marvel Heroes 2015",purchase,1.0,0 -200124268,"Villagers and Heroes",purchase,1.0,0 -85862313,"Duke Nukem Forever",purchase,1.0,0 -85862313,"Duke Nukem Forever",play,0.6,0 -127992748,"Dota 2",purchase,1.0,0 -127992748,"Dota 2",play,11.8,0 -264625792,"Terraria",purchase,1.0,0 -264625792,"Terraria",play,84.0,0 -264625792,"Portal",purchase,1.0,0 -264625792,"Portal",play,3.8,0 -264625792,"Fallout New Vegas",purchase,1.0,0 -264625792,"Fallout New Vegas",play,2.9,0 -264625792,"Portal 2",purchase,1.0,0 -264625792,"Portal 2",play,0.7,0 -264625792,"Team Fortress 2",purchase,1.0,0 -264625792,"Team Fortress 2",play,0.7,0 -264625792,"Robocraft",purchase,1.0,0 -264625792,"Robocraft",play,0.6,0 -264625792,"Just Cause",purchase,1.0,0 -264625792,"Just Cause",play,0.6,0 -264625792,"Disney Infinity 3.0 Play Without Limits",purchase,1.0,0 -264625792,"Stealth Inc 2",purchase,1.0,0 -264625792,"Just Cause 2",purchase,1.0,0 -136037775,"Insane 2",purchase,1.0,0 -136037775,"Insane 2",play,0.7,0 -61046224,"Counter-Strike Source",purchase,1.0,0 -61046224,"Counter-Strike Source",play,230.0,0 -61046224,"Rust",purchase,1.0,0 -61046224,"Rust",play,214.0,0 -61046224,"Half-Life 2 Deathmatch",purchase,1.0,0 -61046224,"Half-Life 2 Deathmatch",play,11.3,0 -61046224,"Counter-Strike",purchase,1.0,0 -61046224,"Counter-Strike",play,10.8,0 -61046224,"Half-Life",purchase,1.0,0 -61046224,"Half-Life",play,1.6,0 -61046224,"Team Fortress Classic",purchase,1.0,0 -61046224,"Team Fortress Classic",play,0.7,0 -61046224,"Half-Life 2 Lost Coast",purchase,1.0,0 -61046224,"Half-Life 2 Lost Coast",play,0.4,0 -61046224,"Ricochet",purchase,1.0,0 -61046224,"Day of Defeat Source",purchase,1.0,0 -61046224,"Deathmatch Classic",purchase,1.0,0 -61046224,"Day of Defeat",purchase,1.0,0 -61046224,"Half-Life Blue Shift",purchase,1.0,0 -61046224,"Half-Life Opposing Force",purchase,1.0,0 -308880998,"Team Fortress 2",purchase,1.0,0 -308880998,"Team Fortress 2",play,0.6,0 -161241228,"Dota 2",purchase,1.0,0 -161241228,"Dota 2",play,1691.0,0 -253959521,"Altitude",purchase,1.0,0 -253959521,"Loadout",purchase,1.0,0 -283540468,"Unturned",purchase,1.0,0 -283540468,"Unturned",play,2.9,0 -144716176,"Dota 2",purchase,1.0,0 -144716176,"Dota 2",play,0.9,0 -85736530,"Sniper Ghost Warrior",purchase,1.0,0 -221316926,"Team Fortress 2",purchase,1.0,0 -221316926,"Team Fortress 2",play,0.8,0 -221316926,"Dragon's Prophet",purchase,1.0,0 -221316926,"Dungeons & Dragons Online",purchase,1.0,0 -221316926,"Karos",purchase,1.0,0 -221316926,"Path of Exile",purchase,1.0,0 -221316926,"RaiderZ",purchase,1.0,0 -221316926,"theHunter",purchase,1.0,0 -221316926,"The Way of Life Free Edition",purchase,1.0,0 -197861902,"Dota 2",purchase,1.0,0 -197861902,"Dota 2",play,22.0,0 -161666011,"Dota 2",purchase,1.0,0 -161666011,"Dota 2",play,0.4,0 -188377050,"Dota 2",purchase,1.0,0 -188377050,"Dota 2",play,0.4,0 -83867981,"Team Fortress 2",purchase,1.0,0 -83867981,"Team Fortress 2",play,109.0,0 -83867981,"Dota 2",purchase,1.0,0 -83867981,"Dota 2",play,3.7,0 -213307502,"Counter-Strike Global Offensive",purchase,1.0,0 -213307502,"Counter-Strike Global Offensive",play,272.0,0 -213307502,"Clicker Heroes",purchase,1.0,0 -213307502,"Clicker Heroes",play,6.4,0 -213307502,"APB Reloaded",purchase,1.0,0 -213307502,"Chaos Heroes Online",purchase,1.0,0 -213307502,"Cry of Fear",purchase,1.0,0 -213307502,"Dirty Bomb",purchase,1.0,0 -213307502,"Dragon's Prophet (EU)",purchase,1.0,0 -213307502,"Magicka Wizard Wars",purchase,1.0,0 -213307502,"Moonbase Alpha",purchase,1.0,0 -213307502,"NEOTOKYO",purchase,1.0,0 -213307502,"No More Room in Hell",purchase,1.0,0 -213307502,"PlanetSide 2",purchase,1.0,0 -213307502,"Red Crucible Firestorm",purchase,1.0,0 -213307502,"Super Monday Night Combat",purchase,1.0,0 -213307502,"Unturned",purchase,1.0,0 -213307502,"Warframe",purchase,1.0,0 -213307502,"War Thunder",purchase,1.0,0 -179317774,"Dota 2",purchase,1.0,0 -179317774,"Dota 2",play,4.5,0 -66280688,"Metro 2033",purchase,1.0,0 -66280688,"Metro 2033",play,2.5,0 -135508941,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -135508941,"Red Orchestra Ostfront 41-45",play,0.6,0 -135508941,"Darkest Hour Europe '44-'45",purchase,1.0,0 -135508941,"Mare Nostrum",purchase,1.0,0 -107841348,"DC Universe Online",purchase,1.0,0 -107841348,"DC Universe Online",play,13.9,0 -107841348,"Path of Exile",purchase,1.0,0 -107841348,"Path of Exile",play,1.2,0 -107841348,"BLOCKADE 3D",purchase,1.0,0 -107841348,"BLOCKADE 3D",play,1.1,0 -107841348,"Team Fortress 2",purchase,1.0,0 -107841348,"Team Fortress 2",play,0.7,0 -107841348,"UberStrike",purchase,1.0,0 -107841348,"UberStrike",play,0.6,0 -107841348,"Metro Conflict",purchase,1.0,0 -107841348,"Metro Conflict",play,0.6,0 -124707605,"Team Fortress 2",purchase,1.0,0 -124707605,"Team Fortress 2",play,1379.0,0 -110658990,"Chivalry Medieval Warfare",purchase,1.0,0 -110658990,"Chivalry Medieval Warfare",play,44.0,0 -110658990,"Rust",purchase,1.0,0 -110658990,"Rust",play,36.0,0 -110658990,"Grand Theft Auto IV",purchase,1.0,0 -110658990,"Grand Theft Auto IV",play,35.0,0 -110658990,"PAYDAY 2",purchase,1.0,0 -110658990,"PAYDAY 2",play,21.0,0 -110658990,"BioShock Infinite",purchase,1.0,0 -110658990,"BioShock Infinite",play,16.6,0 -110658990,"The Forest",purchase,1.0,0 -110658990,"The Forest",play,13.7,0 -110658990,"GRAV",purchase,1.0,0 -110658990,"GRAV",play,11.8,0 -110658990,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -110658990,"Dragon Age Origins - Ultimate Edition",play,11.4,0 -110658990,"The Elder Scrolls V Skyrim",purchase,1.0,0 -110658990,"The Elder Scrolls V Skyrim",play,10.3,0 -110658990,"Orcs Must Die!",purchase,1.0,0 -110658990,"Orcs Must Die!",play,8.5,0 -110658990,"Team Fortress 2",purchase,1.0,0 -110658990,"Team Fortress 2",play,6.2,0 -110658990,"Borderlands 2",purchase,1.0,0 -110658990,"Borderlands 2",play,6.0,0 -110658990,"Killing Floor",purchase,1.0,0 -110658990,"Killing Floor",play,5.9,0 -110658990,"Just Cause 2",purchase,1.0,0 -110658990,"Just Cause 2",play,5.8,0 -110658990,"ORION Prelude",purchase,1.0,0 -110658990,"ORION Prelude",play,4.9,0 -110658990,"Dungeon Defenders II",purchase,1.0,0 -110658990,"Dungeon Defenders II",play,4.6,0 -110658990,"Orcs Must Die! 2",purchase,1.0,0 -110658990,"Orcs Must Die! 2",play,4.3,0 -110658990,"PAYDAY The Heist",purchase,1.0,0 -110658990,"PAYDAY The Heist",play,3.9,0 -110658990,"LEGO The Lord of the Rings",purchase,1.0,0 -110658990,"LEGO The Lord of the Rings",play,3.8,0 -110658990,"Mirror's Edge",purchase,1.0,0 -110658990,"Mirror's Edge",play,2.9,0 -110658990,"Star Wars Knights of the Old Republic",purchase,1.0,0 -110658990,"Star Wars Knights of the Old Republic",play,2.5,0 -110658990,"Portal",purchase,1.0,0 -110658990,"Portal",play,2.4,0 -110658990,"Left 4 Dead 2",purchase,1.0,0 -110658990,"Left 4 Dead 2",play,2.3,0 -110658990,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -110658990,"The Witcher 2 Assassins of Kings Enhanced Edition",play,2.1,0 -110658990,"Unturned",purchase,1.0,0 -110658990,"Unturned",play,2.0,0 -110658990,"Killing Floor 2",purchase,1.0,0 -110658990,"Killing Floor 2",play,2.0,0 -110658990,"Don't Starve",purchase,1.0,0 -110658990,"Don't Starve",play,1.4,0 -110658990,"Dungeon Defenders",purchase,1.0,0 -110658990,"Dungeon Defenders",play,1.3,0 -110658990,"Yet Another Zombie Defense",purchase,1.0,0 -110658990,"Yet Another Zombie Defense",play,1.2,0 -110658990,"SMITE",purchase,1.0,0 -110658990,"SMITE",play,1.1,0 -110658990,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -110658990,"Kingdoms of Amalur Reckoning",play,1.1,0 -110658990,"Codename CURE",purchase,1.0,0 -110658990,"Codename CURE",play,0.8,0 -110658990,"Trove",purchase,1.0,0 -110658990,"Trove",play,0.8,0 -110658990,"The Witcher Enhanced Edition",purchase,1.0,0 -110658990,"The Witcher Enhanced Edition",play,0.7,0 -110658990,"Left 4 Dead",purchase,1.0,0 -110658990,"Left 4 Dead",play,0.6,0 -110658990,"Cry of Fear",purchase,1.0,0 -110658990,"Cry of Fear",play,0.5,0 -110658990,"Rome Total War",purchase,1.0,0 -110658990,"Rome Total War",play,0.4,0 -110658990,"Viking Battle for Asgard",purchase,1.0,0 -110658990,"Viking Battle for Asgard",play,0.4,0 -110658990,"POSTAL 2",purchase,1.0,0 -110658990,"POSTAL 2",play,0.3,0 -110658990,"Aftermath",purchase,1.0,0 -110658990,"Aftermath",play,0.3,0 -110658990,"Fable - The Lost Chapters",purchase,1.0,0 -110658990,"Fable - The Lost Chapters",play,0.3,0 -110658990,"Shattered Horizon",purchase,1.0,0 -110658990,"Shattered Horizon",play,0.2,0 -110658990,"Don't Starve Together Beta",purchase,1.0,0 -110658990,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -110658990,"Marvel Heroes 2015",purchase,1.0,0 -110658990,"Patch testing for Chivalry",purchase,1.0,0 -110658990,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -110658990,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -110658990,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -241132553,"Football Manager 2015",purchase,1.0,0 -241132553,"Football Manager 2015",play,440.0,0 -299064114,"Unturned",purchase,1.0,0 -299064114,"Unturned",play,0.1,0 -293333924,"Unturned",purchase,1.0,0 -293333924,"Unturned",play,4.4,0 -196066421,"The Elder Scrolls V Skyrim",purchase,1.0,0 -196066421,"The Elder Scrolls V Skyrim",play,120.0,0 -196066421,"Team Fortress 2",purchase,1.0,0 -196066421,"Team Fortress 2",play,20.0,0 -196066421,"Terraria",purchase,1.0,0 -196066421,"Terraria",play,13.3,0 -196066421,"Castle Crashers",purchase,1.0,0 -196066421,"Castle Crashers",play,10.0,0 -196066421,"Unturned",purchase,1.0,0 -196066421,"Unturned",play,9.5,0 -196066421,"Turbo Dismount",purchase,1.0,0 -196066421,"Turbo Dismount",play,5.8,0 -196066421,"Spore",purchase,1.0,0 -196066421,"Spore",play,5.6,0 -196066421,"Little Inferno",purchase,1.0,0 -196066421,"Little Inferno",play,4.0,0 -196066421,"Just Cause 2",purchase,1.0,0 -196066421,"Just Cause 2",play,3.3,0 -196066421,"Heroes & Generals",purchase,1.0,0 -196066421,"Heroes & Generals",play,2.7,0 -196066421,"LEGO Worlds",purchase,1.0,0 -196066421,"LEGO Worlds",play,2.7,0 -196066421,"PlanetSide 2",purchase,1.0,0 -196066421,"PlanetSide 2",play,1.5,0 -196066421,"Stranded Deep",purchase,1.0,0 -196066421,"Stranded Deep",play,1.4,0 -196066421,"Tribes Ascend",purchase,1.0,0 -196066421,"Tribes Ascend",play,1.2,0 -196066421,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",purchase,1.0,0 -196066421,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",play,0.7,0 -196066421,"TOME Immortal Arena",purchase,1.0,0 -196066421,"TOME Immortal Arena",play,0.6,0 -196066421,"Spiral Knights",purchase,1.0,0 -196066421,"Spiral Knights",play,0.5,0 -196066421,"Wrath of Athena",purchase,1.0,0 -196066421,"Wrath of Athena",play,0.4,0 -196066421,"Dota 2",purchase,1.0,0 -196066421,"Dota 2",play,0.3,0 -196066421,"Realm of the Mad God",purchase,1.0,0 -196066421,"Realm of the Mad God",play,0.2,0 -196066421,"Toribash",purchase,1.0,0 -196066421,"Toribash",play,0.2,0 -196066421,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -196066421,"Just Cause 2 Multiplayer Mod",play,0.2,0 -196066421,"Double Action Boogaloo",purchase,1.0,0 -196066421,"War Thunder",purchase,1.0,0 -196066421,"Blacklight Retribution",purchase,1.0,0 -196066421,"BloodRealm Battlegrounds",purchase,1.0,0 -196066421,"Castle Crashers - Blacksmith Pack",purchase,1.0,0 -196066421,"Castle Crashers - Pink Knight Pack",purchase,1.0,0 -196066421,"Dirty Bomb",purchase,1.0,0 -196066421,"Nosgoth",purchase,1.0,0 -196066421,"Only If",purchase,1.0,0 -196066421,"Quake Live",purchase,1.0,0 -196066421,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -196066421,"theHunter",purchase,1.0,0 -196066421,"The Plan",purchase,1.0,0 -196066421,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -196066421,"Trove",purchase,1.0,0 -196066421,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -196066421,"Warface",purchase,1.0,0 -281824528,"Assassin's Creed III",purchase,1.0,0 -281824528,"Assassin's Creed III",play,167.0,0 -281824528,"South Park The Stick of Truth",purchase,1.0,0 -281824528,"South Park The Stick of Truth",play,57.0,0 -281824528,"Happy Wars",purchase,1.0,0 -281824528,"Happy Wars",play,39.0,0 -281824528,"Team Fortress 2",purchase,1.0,0 -281824528,"Team Fortress 2",play,2.7,0 -281824528,"ARK Survival Evolved",purchase,1.0,0 -281824528,"ARK Survival Evolved",play,1.8,0 -120838793,"Counter-Strike Global Offensive",purchase,1.0,0 -120838793,"Counter-Strike Global Offensive",play,30.0,0 -120838793,"Euro Truck Simulator 2",purchase,1.0,0 -120838793,"Euro Truck Simulator 2",play,9.6,0 -120838793,"Dota 2",purchase,1.0,0 -120838793,"Dota 2",play,5.5,0 -120838793,"Counter-Strike",purchase,1.0,0 -120838793,"Counter-Strike Condition Zero",purchase,1.0,0 -120838793,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -120838793,"Counter-Strike Source",purchase,1.0,0 -120838793,"Heroes & Generals",purchase,1.0,0 -120838793,"Neverwinter",purchase,1.0,0 -120838793,"Warframe",purchase,1.0,0 -89531096,"DC Universe Online",purchase,1.0,0 -89531096,"DC Universe Online",play,15.4,0 -89531096,"Team Fortress 2",purchase,1.0,0 -89531096,"Team Fortress 2",play,14.4,0 -186310598,"Team Fortress 2",purchase,1.0,0 -186310598,"Team Fortress 2",play,3.5,0 -186310598,"8BitMMO",purchase,1.0,0 -186310598,"8BitMMO",play,0.9,0 -186310598,"Robocraft",purchase,1.0,0 -186310598,"Robocraft",play,0.7,0 -186310598,"Dota 2",purchase,1.0,0 -186310598,"Dota 2",play,0.7,0 -186310598,"Star Conflict",purchase,1.0,0 -186310598,"Star Conflict",play,0.2,0 -186310598,"The Lord of the Rings Online",purchase,1.0,0 -59477039,"Call of Duty Modern Warfare 2",purchase,1.0,0 -59477039,"Call of Duty Modern Warfare 2",play,5.7,0 -59477039,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -59477039,"Call of Duty Modern Warfare 2 - Multiplayer",play,2.7,0 -59477039,"Rise of Incarnates",purchase,1.0,0 -59477039,"Rise of Incarnates",play,0.3,0 -164662285,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -164662285,"Call of Duty Modern Warfare 3 - Multiplayer",play,84.0,0 -164662285,"Trials Fusion",purchase,1.0,0 -164662285,"Trials Fusion",play,6.5,0 -164662285,"Call of Duty Modern Warfare 3",purchase,1.0,0 -164662285,"Call of Duty Modern Warfare 3",play,4.5,0 -239050395,"Dota 2",purchase,1.0,0 -239050395,"Dota 2",play,113.0,0 -239050395,"Unturned",purchase,1.0,0 -239050395,"Unturned",play,14.8,0 -239050395,"Trove",purchase,1.0,0 -239050395,"Trove",play,10.9,0 -239050395,"Time Clickers",purchase,1.0,0 -214343410,"Dota 2",purchase,1.0,0 -214343410,"Dota 2",play,2.4,0 -214343410,"Fallen Earth",purchase,1.0,0 -214343410,"theHunter",purchase,1.0,0 -214343410,"Warframe",purchase,1.0,0 -173961100,"Dota 2",purchase,1.0,0 -173961100,"Dota 2",play,6.1,0 -276225812,"Counter-Strike Global Offensive",purchase,1.0,0 -276225812,"Counter-Strike Global Offensive",play,82.0,0 -276225812,"H1Z1",purchase,1.0,0 -276225812,"H1Z1",play,56.0,0 -276225812,"SpeedRunners",purchase,1.0,0 -276225812,"SpeedRunners",play,24.0,0 -276225812,"Team Fortress 2",purchase,1.0,0 -276225812,"Team Fortress 2",play,13.1,0 -276225812,"Chivalry Medieval Warfare",purchase,1.0,0 -276225812,"Chivalry Medieval Warfare",play,12.8,0 -276225812,"Dota 2",purchase,1.0,0 -276225812,"Dota 2",play,2.0,0 -276225812,"Dirty Bomb",purchase,1.0,0 -276225812,"H1Z1 Test Server",purchase,1.0,0 -276225812,"Nosgoth",purchase,1.0,0 -276225812,"Patch testing for Chivalry",purchase,1.0,0 -276225812,"Survarium",purchase,1.0,0 -162809784,"Team Fortress 2",purchase,1.0,0 -162809784,"Team Fortress 2",play,231.0,0 -162809784,"Dota 2",purchase,1.0,0 -162809784,"Dota 2",play,106.0,0 -162809784,"FreeStyle2 Street Basketball",purchase,1.0,0 -162809784,"FreeStyle2 Street Basketball",play,9.0,0 -162809784,"Warframe",purchase,1.0,0 -162809784,"Warframe",play,2.8,0 -162809784,"Transformice",purchase,1.0,0 -162809784,"Batla",purchase,1.0,0 -162809784,"Heroes & Generals",purchase,1.0,0 -94908699,"DiRT 3",purchase,1.0,0 -94908699,"DiRT 3",play,329.0,0 -94908699,"GRID 2",purchase,1.0,0 -94908699,"GRID 2",play,33.0,0 -94908699,"Gauntlet ",purchase,1.0,0 -94908699,"Gauntlet ",play,7.1,0 -94908699,"DiRT Rally",purchase,1.0,0 -94908699,"DiRT Rally",play,4.5,0 -94908699,"Half-Life 2",purchase,1.0,0 -94908699,"Half-Life 2",play,0.4,0 -94908699,"DiRT Showdown",purchase,1.0,0 -94908699,"DiRT 3 Complete Edition",purchase,1.0,0 -61378298,"Napoleon Total War",purchase,1.0,0 -61378298,"Napoleon Total War",play,2.3,0 -171696993,"Dota 2",purchase,1.0,0 -171696993,"Dota 2",play,3.3,0 -123974970,"Counter-Strike Global Offensive",purchase,1.0,0 -123974970,"Counter-Strike Global Offensive",play,501.0,0 -123974970,"Dota 2",purchase,1.0,0 -123974970,"Dota 2",play,137.0,0 -123974970,"Dead Island Epidemic",purchase,1.0,0 -123974970,"Dead Island Epidemic",play,86.0,0 -123974970,"The Mighty Quest For Epic Loot",purchase,1.0,0 -123974970,"The Mighty Quest For Epic Loot",play,42.0,0 -123974970,"ARK Survival Evolved",purchase,1.0,0 -123974970,"ARK Survival Evolved",play,26.0,0 -123974970,"Might & Magic Heroes VI",purchase,1.0,0 -123974970,"Might & Magic Heroes VI",play,17.0,0 -123974970,"Portal 2",purchase,1.0,0 -123974970,"Portal 2",play,5.4,0 -123974970,"Serious Sam 2",purchase,1.0,0 -123974970,"Serious Sam 2",play,5.2,0 -123974970,"12 Labours of Hercules",purchase,1.0,0 -123974970,"12 Labours of Hercules",play,5.2,0 -123974970,"Tomb Raider",purchase,1.0,0 -123974970,"Tomb Raider",play,3.3,0 -123974970,"Portal",purchase,1.0,0 -123974970,"Portal",play,2.2,0 -123974970,"BioShock Infinite",purchase,1.0,0 -123974970,"BioShock Infinite",play,2.0,0 -123974970,"Serious Sam HD The Second Encounter",purchase,1.0,0 -123974970,"Serious Sam HD The Second Encounter",play,0.8,0 -123974970,"ORION Prelude",purchase,1.0,0 -123974970,"Tomb Raider Legend",purchase,1.0,0 -301472034,"Unturned",purchase,1.0,0 -301472034,"Unturned",play,0.4,0 -173967126,"Dota 2",purchase,1.0,0 -173967126,"Dota 2",play,1.6,0 -201033909,"Saints Row The Third",purchase,1.0,0 -201033909,"Saints Row The Third",play,5.7,0 -49462664,"Left 4 Dead",purchase,1.0,0 -49462664,"Left 4 Dead",play,243.0,0 -49462664,"Borderlands 2",purchase,1.0,0 -49462664,"Borderlands 2",play,162.0,0 -49462664,"The Elder Scrolls V Skyrim",purchase,1.0,0 -49462664,"The Elder Scrolls V Skyrim",play,157.0,0 -49462664,"Trove",purchase,1.0,0 -49462664,"Trove",play,111.0,0 -49462664,"APB Reloaded",purchase,1.0,0 -49462664,"APB Reloaded",play,78.0,0 -49462664,"Left 4 Dead 2",purchase,1.0,0 -49462664,"Left 4 Dead 2",play,60.0,0 -49462664,"Terraria",purchase,1.0,0 -49462664,"Terraria",play,59.0,0 -49462664,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -49462664,"Kingdoms of Amalur Reckoning",play,49.0,0 -49462664,"Borderlands The Pre-Sequel",purchase,1.0,0 -49462664,"Borderlands The Pre-Sequel",play,47.0,0 -49462664,"Fallout 4",purchase,1.0,0 -49462664,"Fallout 4",play,46.0,0 -49462664,"War Thunder",purchase,1.0,0 -49462664,"War Thunder",play,45.0,0 -49462664,"Space Pirates and Zombies",purchase,1.0,0 -49462664,"Space Pirates and Zombies",play,44.0,0 -49462664,"Bloons TD5",purchase,1.0,0 -49462664,"Bloons TD5",play,37.0,0 -49462664,"Fortune Summoners Secret of the Elemental Stone",purchase,1.0,0 -49462664,"Fortune Summoners Secret of the Elemental Stone",play,34.0,0 -49462664,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -49462664,"Just Cause 2 Multiplayer Mod",play,34.0,0 -49462664,"Saints Row The Third",purchase,1.0,0 -49462664,"Saints Row The Third",play,34.0,0 -49462664,"Fairy Fencer F",purchase,1.0,0 -49462664,"Fairy Fencer F",play,33.0,0 -49462664,"Fable III",purchase,1.0,0 -49462664,"Fable III",play,33.0,0 -49462664,"Saints Row IV",purchase,1.0,0 -49462664,"Saints Row IV",play,32.0,0 -49462664,"DayZ",purchase,1.0,0 -49462664,"DayZ",play,32.0,0 -49462664,"Robocraft",purchase,1.0,0 -49462664,"Robocraft",play,31.0,0 -49462664,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -49462664,"Resident Evil 5 / Biohazard 5",play,31.0,0 -49462664,"Archeblade",purchase,1.0,0 -49462664,"Archeblade",play,31.0,0 -49462664,"Agarest Generations of War",purchase,1.0,0 -49462664,"Agarest Generations of War",play,30.0,0 -49462664,"Team Fortress 2",purchase,1.0,0 -49462664,"Team Fortress 2",play,30.0,0 -49462664,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -49462664,"Resident Evil 6 / Biohazard 6",play,29.0,0 -49462664,"DC Universe Online",purchase,1.0,0 -49462664,"DC Universe Online",play,28.0,0 -49462664,"Dead Island",purchase,1.0,0 -49462664,"Dead Island",play,27.0,0 -49462664,"Hero Siege",purchase,1.0,0 -49462664,"Hero Siege",play,26.0,0 -49462664,"Spore",purchase,1.0,0 -49462664,"Spore",play,26.0,0 -49462664,"Blacklight Retribution",purchase,1.0,0 -49462664,"Blacklight Retribution",play,26.0,0 -49462664,"Spectraball",purchase,1.0,0 -49462664,"Spectraball",play,25.0,0 -49462664,"Darksiders II",purchase,1.0,0 -49462664,"Darksiders II",play,23.0,0 -49462664,"Portal 2",purchase,1.0,0 -49462664,"Portal 2",play,22.0,0 -49462664,"PAYDAY 2",purchase,1.0,0 -49462664,"PAYDAY 2",play,22.0,0 -49462664,"Magicka",purchase,1.0,0 -49462664,"Magicka",play,22.0,0 -49462664,"Killing Floor",purchase,1.0,0 -49462664,"Killing Floor",play,22.0,0 -49462664,"Magicite",purchase,1.0,0 -49462664,"Magicite",play,21.0,0 -49462664,"Sakura Clicker",purchase,1.0,0 -49462664,"Sakura Clicker",play,21.0,0 -49462664,"Orcs Must Die!",purchase,1.0,0 -49462664,"Orcs Must Die!",play,19.7,0 -49462664,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -49462664,"Tom Clancy's Splinter Cell Conviction",play,18.6,0 -49462664,"HuniePop",purchase,1.0,0 -49462664,"HuniePop",play,18.5,0 -49462664,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -49462664,"Dragon Age Origins - Ultimate Edition",play,17.7,0 -49462664,"Path of Exile",purchase,1.0,0 -49462664,"Path of Exile",play,17.4,0 -49462664,"Fallout New Vegas",purchase,1.0,0 -49462664,"Fallout New Vegas",play,16.7,0 -49462664,"Besiege",purchase,1.0,0 -49462664,"Besiege",play,16.6,0 -49462664,"Solar 2",purchase,1.0,0 -49462664,"Solar 2",play,16.4,0 -49462664,"Deus Ex Human Revolution",purchase,1.0,0 -49462664,"Deus Ex Human Revolution",play,15.5,0 -49462664,"Titan Quest",purchase,1.0,0 -49462664,"Titan Quest",play,15.5,0 -49462664,"Bastion",purchase,1.0,0 -49462664,"Bastion",play,14.9,0 -49462664,"Realm of the Mad God",purchase,1.0,0 -49462664,"Realm of the Mad God",play,14.7,0 -49462664,"Half-Life",purchase,1.0,0 -49462664,"Half-Life",play,14.2,0 -49462664,"Castle Crashers",purchase,1.0,0 -49462664,"Castle Crashers",play,13.7,0 -49462664,"BioShock Infinite",purchase,1.0,0 -49462664,"BioShock Infinite",play,12.6,0 -49462664,"Amnesia The Dark Descent",purchase,1.0,0 -49462664,"Amnesia The Dark Descent",play,12.3,0 -49462664,"Serious Sam 3 BFE",purchase,1.0,0 -49462664,"Serious Sam 3 BFE",play,11.1,0 -49462664,"Bob Was Hungry",purchase,1.0,0 -49462664,"Bob Was Hungry",play,11.1,0 -49462664,"Dead Space",purchase,1.0,0 -49462664,"Dead Space",play,11.0,0 -49462664,"Dungeon Defenders II",purchase,1.0,0 -49462664,"Dungeon Defenders II",play,10.4,0 -49462664,"Torchlight",purchase,1.0,0 -49462664,"Torchlight",play,10.4,0 -49462664,"Darksiders",purchase,1.0,0 -49462664,"Darksiders",play,9.9,0 -49462664,"Titan Quest Immortal Throne",purchase,1.0,0 -49462664,"Titan Quest Immortal Throne",play,8.6,0 -49462664,"Pirates, Vikings, & Knights II",purchase,1.0,0 -49462664,"Pirates, Vikings, & Knights II",play,8.4,0 -49462664,"Geometry Wars Retro Evolved",purchase,1.0,0 -49462664,"Geometry Wars Retro Evolved",play,8.4,0 -49462664,"Half-Life 2",purchase,1.0,0 -49462664,"Half-Life 2",play,8.3,0 -49462664,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -49462664,"Plants vs. Zombies Game of the Year",play,8.2,0 -49462664,"Far Cry 3",purchase,1.0,0 -49462664,"Far Cry 3",play,8.0,0 -49462664,"Dungeon Defenders",purchase,1.0,0 -49462664,"Dungeon Defenders",play,7.8,0 -49462664,"Dead Rising 2",purchase,1.0,0 -49462664,"Dead Rising 2",play,7.8,0 -49462664,"Zombie Grinder",purchase,1.0,0 -49462664,"Zombie Grinder",play,7.8,0 -49462664,"Metro 2033",purchase,1.0,0 -49462664,"Metro 2033",play,6.8,0 -49462664,"The Forest",purchase,1.0,0 -49462664,"The Forest",play,6.5,0 -49462664,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -49462664,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,6.1,0 -49462664,"F.E.A.R. 3",purchase,1.0,0 -49462664,"F.E.A.R. 3",play,6.0,0 -49462664,"Garry's Mod",purchase,1.0,0 -49462664,"Garry's Mod",play,5.9,0 -49462664,"Just Cause 2",purchase,1.0,0 -49462664,"Just Cause 2",play,5.7,0 -49462664,"Audiosurf",purchase,1.0,0 -49462664,"Audiosurf",play,5.6,0 -49462664,"The Secret World",purchase,1.0,0 -49462664,"The Secret World",play,5.3,0 -49462664,"They Bleed Pixels",purchase,1.0,0 -49462664,"They Bleed Pixels",play,5.2,0 -49462664,"Orcs Must Die! 2",purchase,1.0,0 -49462664,"Orcs Must Die! 2",play,4.6,0 -49462664,"Alien Swarm",purchase,1.0,0 -49462664,"Alien Swarm",play,4.6,0 -49462664,"Arma 2 Operation Arrowhead",purchase,1.0,0 -49462664,"Arma 2 Operation Arrowhead",play,4.5,0 -49462664,"Hyperdimension Neptunia Re;Birth1",purchase,1.0,0 -49462664,"Hyperdimension Neptunia Re;Birth1",play,4.4,0 -49462664,"Hammerwatch",purchase,1.0,0 -49462664,"Hammerwatch",play,4.2,0 -49462664,"No More Room in Hell",purchase,1.0,0 -49462664,"No More Room in Hell",play,3.9,0 -49462664,"Rogue Legacy",purchase,1.0,0 -49462664,"Rogue Legacy",play,3.9,0 -49462664,"Counter-Strike Source",purchase,1.0,0 -49462664,"Counter-Strike Source",play,3.7,0 -49462664,"Sanctum",purchase,1.0,0 -49462664,"Sanctum",play,3.6,0 -49462664,"LIMBO",purchase,1.0,0 -49462664,"LIMBO",play,3.3,0 -49462664,"It came from space, and ate our brains",purchase,1.0,0 -49462664,"It came from space, and ate our brains",play,3.3,0 -49462664,"NEKOPARA Vol. 1",purchase,1.0,0 -49462664,"NEKOPARA Vol. 1",play,3.3,0 -49462664,"AirMech",purchase,1.0,0 -49462664,"AirMech",play,3.0,0 -49462664,"Unturned",purchase,1.0,0 -49462664,"Unturned",play,2.9,0 -49462664,"Counter-Strike Global Offensive",purchase,1.0,0 -49462664,"Counter-Strike Global Offensive",play,2.8,0 -49462664,"Sakura Spirit",purchase,1.0,0 -49462664,"Sakura Spirit",play,2.5,0 -49462664,"Wizorb",purchase,1.0,0 -49462664,"Wizorb",play,2.4,0 -49462664,"Kerbal Space Program",purchase,1.0,0 -49462664,"Kerbal Space Program",play,2.3,0 -49462664,"Sakura Swim Club",purchase,1.0,0 -49462664,"Sakura Swim Club",play,2.2,0 -49462664,"No Time to Explain",purchase,1.0,0 -49462664,"No Time to Explain",play,2.2,0 -49462664,"NEKOPARA Vol. 0",purchase,1.0,0 -49462664,"NEKOPARA Vol. 0",play,2.0,0 -49462664,"Clicker Heroes",purchase,1.0,0 -49462664,"Clicker Heroes",play,1.8,0 -49462664,"Two Worlds II",purchase,1.0,0 -49462664,"Two Worlds II",play,1.6,0 -49462664,"Glowfish",purchase,1.0,0 -49462664,"Glowfish",play,1.6,0 -49462664,"Dragon's Prophet",purchase,1.0,0 -49462664,"Dragon's Prophet",play,1.6,0 -49462664,"Defense Grid The Awakening",purchase,1.0,0 -49462664,"Defense Grid The Awakening",play,1.5,0 -49462664,"Dungeons & Dragons Online",purchase,1.0,0 -49462664,"Dungeons & Dragons Online",play,1.4,0 -49462664,"World of Goo",purchase,1.0,0 -49462664,"World of Goo",play,1.4,0 -49462664,"Torchlight II",purchase,1.0,0 -49462664,"Torchlight II",play,1.0,0 -49462664,"The Polynomial",purchase,1.0,0 -49462664,"The Polynomial",play,1.0,0 -49462664,"The Plan",purchase,1.0,0 -49462664,"The Plan",play,0.9,0 -49462664,"Hunted The Demon's Forge",purchase,1.0,0 -49462664,"Hunted The Demon's Forge",play,0.9,0 -49462664,"StarForge",purchase,1.0,0 -49462664,"StarForge",play,0.9,0 -49462664,"Trine 2",purchase,1.0,0 -49462664,"Trine 2",play,0.8,0 -49462664,"Universe Sandbox",purchase,1.0,0 -49462664,"Universe Sandbox",play,0.8,0 -49462664,"Train Simulator",purchase,1.0,0 -49462664,"Train Simulator",play,0.8,0 -49462664,"Wanderlust Rebirth",purchase,1.0,0 -49462664,"Wanderlust Rebirth",play,0.7,0 -49462664,"Guns of Icarus Online",purchase,1.0,0 -49462664,"Guns of Icarus Online",play,0.7,0 -49462664,"Moon Breakers",purchase,1.0,0 -49462664,"Moon Breakers",play,0.7,0 -49462664,"HOARD",purchase,1.0,0 -49462664,"HOARD",play,0.6,0 -49462664,"Sakura Angels",purchase,1.0,0 -49462664,"Sakura Angels",play,0.6,0 -49462664,"Tribes Ascend",purchase,1.0,0 -49462664,"Tribes Ascend",play,0.5,0 -49462664,"Warhammer 40,000 Space Marine",purchase,1.0,0 -49462664,"Warhammer 40,000 Space Marine",play,0.4,0 -49462664,"Phantom Breaker Battle Grounds",purchase,1.0,0 -49462664,"Phantom Breaker Battle Grounds",play,0.4,0 -49462664,"Rayman Origins",purchase,1.0,0 -49462664,"Rayman Origins",play,0.3,0 -49462664,"Surgeon Simulator",purchase,1.0,0 -49462664,"Surgeon Simulator",play,0.2,0 -49462664,"Gish",purchase,1.0,0 -49462664,"Gish",play,0.1,0 -49462664,"Arma 2 DayZ Mod",purchase,1.0,0 -49462664,"Agarest - Basic Adventure Pack DLC",purchase,1.0,0 -49462664,"Agarest - Dull-Things Pack DLC",purchase,1.0,0 -49462664,"Agarest - Fallen Angel Pack DLC",purchase,1.0,0 -49462664,"Agarest - Legendary-Monster Pack DLC",purchase,1.0,0 -49462664,"Agarest - Magic Fight Pack DLC",purchase,1.0,0 -49462664,"Agarest - Upgrade Pack 1 DLC",purchase,1.0,0 -49462664,"Agarest Generations of War 2",purchase,1.0,0 -49462664,"Agarest Zero",purchase,1.0,0 -49462664,"Amazon's Jungle Bundle",purchase,1.0,0 -49462664,"Arma 2",purchase,1.0,0 -49462664,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -49462664,"BattleBlock Theater",purchase,1.0,0 -49462664,"Borderlands",purchase,1.0,0 -49462664,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -49462664,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -49462664,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -49462664,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -49462664,"Company of Heroes",purchase,1.0,0 -49462664,"Company of Heroes (New Steam Version)",purchase,1.0,0 -49462664,"Company of Heroes Opposing Fronts",purchase,1.0,0 -49462664,"Counter-Strike",purchase,1.0,0 -49462664,"Counter-Strike Condition Zero",purchase,1.0,0 -49462664,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -49462664,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -49462664,"Day of Defeat",purchase,1.0,0 -49462664,"Day of Defeat Source",purchase,1.0,0 -49462664,"Dead Space 2",purchase,1.0,0 -49462664,"Deathmatch Classic",purchase,1.0,0 -49462664,"Defense Grid Resurgence Map Pack 1",purchase,1.0,0 -49462664,"Defense Grid Resurgence Map Pack 2 ",purchase,1.0,0 -49462664,"Defense Grid Resurgence Map Pack 3",purchase,1.0,0 -49462664,"Defense Grid Resurgence Map Pack 4",purchase,1.0,0 -49462664,"F.E.A.R.",purchase,1.0,0 -49462664,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -49462664,"F.E.A.R. Extraction Point",purchase,1.0,0 -49462664,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -49462664,"Goat Simulator",purchase,1.0,0 -49462664,"Half-Life 2 Deathmatch",purchase,1.0,0 -49462664,"Half-Life 2 Episode One",purchase,1.0,0 -49462664,"Half-Life 2 Episode Two",purchase,1.0,0 -49462664,"Half-Life 2 Lost Coast",purchase,1.0,0 -49462664,"Half-Life Blue Shift",purchase,1.0,0 -49462664,"Half-Life Opposing Force",purchase,1.0,0 -49462664,"Half-Life Source",purchase,1.0,0 -49462664,"Half-Life Deathmatch Source",purchase,1.0,0 -49462664,"Hero Siege - The Depths of Hell (Collector's Edition)",purchase,1.0,0 -49462664,"Hero Siege - The Karp of Doom (Digital Collector's Edition)",purchase,1.0,0 -49462664,"Homefront",purchase,1.0,0 -49462664,"HuniePop Official Digital Art Collection",purchase,1.0,0 -49462664,"HuniePop Original Soundtrack",purchase,1.0,0 -49462664,"Insurgency",purchase,1.0,0 -49462664,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -49462664,"Magicka Final Frontier",purchase,1.0,0 -49462664,"Magicka Frozen Lake",purchase,1.0,0 -49462664,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -49462664,"Magicka Nippon",purchase,1.0,0 -49462664,"Magicka Party Robes",purchase,1.0,0 -49462664,"Magicka The Watchtower",purchase,1.0,0 -49462664,"Magicka Vietnam",purchase,1.0,0 -49462664,"Magicka Wizard's Survival Kit",purchase,1.0,0 -49462664,"Nexuiz",purchase,1.0,0 -49462664,"Nexuiz Beta",purchase,1.0,0 -49462664,"Nexuiz STUPID Mode",purchase,1.0,0 -49462664,"No Time To Explain Remastered",purchase,1.0,0 -49462664,"Portal",purchase,1.0,0 -49462664,"Psychonauts",purchase,1.0,0 -49462664,"Psychonauts Demo",purchase,1.0,0 -49462664,"Ricochet",purchase,1.0,0 -49462664,"Team Fortress Classic",purchase,1.0,0 -49462664,"The Void",purchase,1.0,0 -49462664,"Tribes Ascend - Steam Starter Pack",purchase,1.0,0 -49462664,"Two Worlds 2 - Pirates of the Flying Fortress ",purchase,1.0,0 -49462664,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -49462664,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -49462664,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -181836347,"Dota 2",purchase,1.0,0 -181836347,"Dota 2",play,108.0,0 -113407067,"Dota 2",purchase,1.0,0 -113407067,"Dota 2",play,508.0,0 -113407067,"Loadout",purchase,1.0,0 -113407067,"Loadout",play,3.6,0 -106426705,"Age of Chivalry",purchase,1.0,0 -106426705,"Age of Chivalry",play,0.4,0 -123361818,"Dota 2",purchase,1.0,0 -123361818,"Dota 2",play,959.0,0 -236193671,"Warframe",purchase,1.0,0 -292172142,"Sniper Ghost Warrior",purchase,1.0,0 -292172142,"Sniper Ghost Warrior",play,14.5,0 -292172142,"Sniper Ghost Warrior 2",purchase,1.0,0 -292172142,"Sniper Ghost Warrior 2",play,13.5,0 -292172142,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -203765587,"Team Fortress 2",purchase,1.0,0 -203765587,"Team Fortress 2",play,73.0,0 -203765587,"Dungeon Defenders II",purchase,1.0,0 -203765587,"Dungeon Defenders II",play,29.0,0 -203765587,"Robocraft",purchase,1.0,0 -203765587,"Robocraft",play,25.0,0 -203765587,"The Mighty Quest For Epic Loot",purchase,1.0,0 -203765587,"The Mighty Quest For Epic Loot",play,14.3,0 -203765587,"Garry's Mod",purchase,1.0,0 -203765587,"Garry's Mod",play,12.3,0 -203765587,"PlanetSide 2",purchase,1.0,0 -203765587,"PlanetSide 2",play,12.1,0 -203765587,"Warframe",purchase,1.0,0 -203765587,"Warframe",play,11.0,0 -203765587,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -203765587,"Tom Clancy's Ghost Recon Phantoms - EU",play,9.7,0 -203765587,"Terraria",purchase,1.0,0 -203765587,"Terraria",play,8.6,0 -203765587,"Path of Exile",purchase,1.0,0 -203765587,"Path of Exile",play,7.6,0 -203765587,"Unturned",purchase,1.0,0 -203765587,"Unturned",play,2.8,0 -203765587,"Magicka Wizard Wars",purchase,1.0,0 -203765587,"Magicka Wizard Wars",play,2.1,0 -203765587,"Sniper Ghost Warrior 2",purchase,1.0,0 -203765587,"Sniper Ghost Warrior 2",play,1.5,0 -203765587,"Dirty Bomb",purchase,1.0,0 -203765587,"Dirty Bomb",play,1.3,0 -203765587,"Emily is Away",purchase,1.0,0 -203765587,"Emily is Away",play,0.7,0 -203765587,"Dead Island Epidemic",purchase,1.0,0 -203765587,"Dead Island Epidemic",play,0.3,0 -203765587,"Pool Nation FX",purchase,1.0,0 -203765587,"Pool Nation FX",play,0.2,0 -203765587,"Heroes & Generals",purchase,1.0,0 -203765587,"Heroes & Generals",play,0.2,0 -203765587,"Stronghold Kingdoms",purchase,1.0,0 -203765587,"Stronghold Kingdoms",play,0.1,0 -203765587,"SMITE",purchase,1.0,0 -203765587,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -203765587,"Total War Battles KINGDOM",purchase,1.0,0 -48365975,"Borderlands 2",purchase,1.0,0 -48365975,"Borderlands 2",play,8.2,0 -48365975,"Defense Grid 2",purchase,1.0,0 -48365975,"Defense Grid 2",play,4.9,0 -48365975,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -48365975,"Kingdoms of Amalur Reckoning",play,2.3,0 -48365975,"No More Room in Hell",purchase,1.0,0 -48365975,"Defense Grid 2 A Matter of Endurance",purchase,1.0,0 -268487512,"Age of Empires II HD Edition",purchase,1.0,0 -268487512,"Age of Empires II HD Edition",play,96.0,0 -268487512,"BioShock",purchase,1.0,0 -268487512,"BioShock",play,13.7,0 -268487512,"Left 4 Dead",purchase,1.0,0 -268487512,"Left 4 Dead",play,8.7,0 -268487512,"Counter-Strike Global Offensive",purchase,1.0,0 -268487512,"Counter-Strike Global Offensive",play,4.8,0 -268487512,"Counter-Strike",purchase,1.0,0 -268487512,"Counter-Strike",play,3.8,0 -268487512,"Left 4 Dead 2",purchase,1.0,0 -268487512,"Left 4 Dead 2",play,0.9,0 -268487512,"Dead Island",purchase,1.0,0 -268487512,"Dead Island",play,0.6,0 -268487512,"Age of Empires II HD The Forgotten",purchase,1.0,0 -268487512,"BioShock 2",purchase,1.0,0 -268487512,"BioShock Infinite",purchase,1.0,0 -268487512,"Castle Crashers",purchase,1.0,0 -268487512,"Chivalry Medieval Warfare",purchase,1.0,0 -268487512,"Counter-Strike Condition Zero",purchase,1.0,0 -268487512,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -268487512,"Counter-Strike Source",purchase,1.0,0 -268487512,"Patch testing for Chivalry",purchase,1.0,0 -191203821,"The Expendabros",purchase,1.0,0 -191203821,"The Expendabros",play,0.4,0 -191203821,"Afterfall InSanity Extended Edition",purchase,1.0,0 -191203821,"Amnesia The Dark Descent",purchase,1.0,0 -191203821,"GRID 2",purchase,1.0,0 -191203821,"Insurgency",purchase,1.0,0 -191203821,"Metro 2033",purchase,1.0,0 -191203821,"Teleglitch Die More Edition",purchase,1.0,0 -191203821,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -12985315,"Counter-Strike Source",purchase,1.0,0 -12985315,"Counter-Strike Source",play,226.0,0 -12985315,"Fallout New Vegas",purchase,1.0,0 -12985315,"Fallout New Vegas",play,7.5,0 -12985315,"Insurgency Modern Infantry Combat",purchase,1.0,0 -12985315,"Insurgency Modern Infantry Combat",play,3.3,0 -12985315,"Alien Swarm",purchase,1.0,0 -12985315,"Alien Swarm",play,2.3,0 -12985315,"Half-Life 2",purchase,1.0,0 -12985315,"Half-Life 2",play,0.4,0 -12985315,"Half-Life 2 Deathmatch",purchase,1.0,0 -12985315,"Half-Life 2 Deathmatch",play,0.2,0 -12985315,"Dota 2",purchase,1.0,0 -12985315,"Dota 2",play,0.2,0 -12985315,"Marvel Puzzle Quest",purchase,1.0,0 -12985315,"Marvel Puzzle Quest",play,0.1,0 -12985315,"Half-Life 2 Lost Coast",purchase,1.0,0 -12985315,"Half-Life 2 Lost Coast",play,0.1,0 -136029113,"Dota 2",purchase,1.0,0 -136029113,"Dota 2",play,2.6,0 -301005939,"The Stanley Parable",purchase,1.0,0 -301005939,"The Stanley Parable",play,2.1,0 -238392070,"Counter-Strike Global Offensive",purchase,1.0,0 -238392070,"Counter-Strike Global Offensive",play,34.0,0 -238392070,"Counter-Strike",purchase,1.0,0 -238392070,"Counter-Strike",play,4.3,0 -238392070,"Counter-Strike Condition Zero",purchase,1.0,0 -238392070,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -238392070,"Counter-Strike Source",purchase,1.0,0 -238392070,"Heroes of Might & Magic III - HD Edition",purchase,1.0,0 -262217260,"Dota 2",purchase,1.0,0 -262217260,"Dota 2",play,110.0,0 -262217260,"Archeblade",purchase,1.0,0 -262217260,"FreeStyle2 Street Basketball",purchase,1.0,0 -186939589,"Dota 2",purchase,1.0,0 -186939589,"Dota 2",play,1.6,0 -381543,"Counter-Strike",purchase,1.0,0 -381543,"Counter-Strike",play,3.0,0 -381543,"Counter-Strike Condition Zero",purchase,1.0,0 -381543,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -381543,"Day of Defeat",purchase,1.0,0 -381543,"Deathmatch Classic",purchase,1.0,0 -381543,"Half-Life",purchase,1.0,0 -381543,"Half-Life Blue Shift",purchase,1.0,0 -381543,"Half-Life Opposing Force",purchase,1.0,0 -381543,"Ricochet",purchase,1.0,0 -381543,"Team Fortress Classic",purchase,1.0,0 -99812428,"Supreme Commander 2",purchase,1.0,0 -99812428,"Supreme Commander 2",play,1.5,0 -303252325,"The Elder Scrolls V Skyrim",purchase,1.0,0 -303252325,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -303252325,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -303252325,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -86476768,"Dota 2",purchase,1.0,0 -86476768,"Dota 2",play,32.0,0 -86476768,"Team Fortress 2",purchase,1.0,0 -86476768,"Team Fortress 2",play,3.8,0 -86476768,"Super Monday Night Combat",purchase,1.0,0 -86476768,"Super Monday Night Combat",play,1.3,0 -86476768,"Champions Online",purchase,1.0,0 -86476768,"Counter-Strike Nexon Zombies",purchase,1.0,0 -86476768,"Gotham City Impostors Free To Play",purchase,1.0,0 -86476768,"No More Room in Hell",purchase,1.0,0 -86476768,"Realm of the Mad God",purchase,1.0,0 -86476768,"RIFT",purchase,1.0,0 -86476768,"Robocraft",purchase,1.0,0 -86476768,"Warframe",purchase,1.0,0 -75366244,"Counter-Strike Global Offensive",purchase,1.0,0 -75366244,"Counter-Strike Global Offensive",play,224.0,0 -75366244,"Counter-Strike Source",purchase,1.0,0 -75366244,"Counter-Strike Source",play,116.0,0 -75366244,"Team Fortress 2",purchase,1.0,0 -75366244,"Team Fortress 2",play,2.3,0 -75366244,"Clicker Heroes",purchase,1.0,0 -75366244,"Dirty Bomb",purchase,1.0,0 -75366244,"Spartans Vs Zombies Defense",purchase,1.0,0 -75366244,"Time Clickers",purchase,1.0,0 -154099092,"Dota 2",purchase,1.0,0 -154099092,"Dota 2",play,226.0,0 -154099092,"Killing Floor - Toy Master",purchase,1.0,0 -154099092,"Unturned",purchase,1.0,0 -268599796,"Counter-Strike Global Offensive",purchase,1.0,0 -268599796,"Counter-Strike Global Offensive",play,54.0,0 -268599796,"Unturned",purchase,1.0,0 -268599796,"Unturned",play,21.0,0 -268599796,"Warframe",purchase,1.0,0 -268599796,"Warframe",play,1.8,0 -268599796,"Blender 2.76b",purchase,1.0,0 -268599796,"Everlasting Summer",purchase,1.0,0 -268599796,"No More Room in Hell",purchase,1.0,0 -53823060,"Counter-Strike Nexon Zombies",purchase,1.0,0 -53823060,"Counter-Strike Nexon Zombies",play,0.3,0 -272852624,"Euro Truck Simulator 2",purchase,1.0,0 -272852624,"Euro Truck Simulator 2",play,133.0,0 -272852624,"Construction-Simulator 2015",purchase,1.0,0 -272852624,"Construction-Simulator 2015",play,40.0,0 -272852624,"Scania Truck Driving Simulator",purchase,1.0,0 -272852624,"Scania Truck Driving Simulator",play,6.3,0 -272852624,"Euro Truck Simulator",purchase,1.0,0 -272852624,"Euro Truck Simulator",play,0.1,0 -272852624,"Construction Simulator 2015 Liebherr 150 EC-B",purchase,1.0,0 -272852624,"Construction Simulator 2015 Liebherr LB28",purchase,1.0,0 -272852624,"Construction Simulator 2015 Liebherr LR 1300",purchase,1.0,0 -272852624,"Construction Simulator 2015 Vertical Skyline",purchase,1.0,0 -272852624,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -134274586,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -134274586,"Call of Duty Ghosts - Multiplayer",play,152.0,0 -134274586,"Team Fortress 2",purchase,1.0,0 -134274586,"Team Fortress 2",play,36.0,0 -134274586,"Call of Duty Ghosts",purchase,1.0,0 -134274586,"Call of Duty Ghosts",play,12.9,0 -134274586,"Serious Sam HD The Second Encounter",purchase,1.0,0 -134274586,"Serious Sam HD The Second Encounter",play,10.9,0 -134274586,"Dota 2",purchase,1.0,0 -134274586,"Dota 2",play,4.3,0 -134274586,"Unturned",purchase,1.0,0 -134274586,"Unturned",play,2.4,0 -134274586,"Alien Swarm",purchase,1.0,0 -134274586,"Alien Swarm",play,0.5,0 -278828072,"PlanetSide 2",purchase,1.0,0 -278828072,"PlanetSide 2",play,1.0,0 -278828072,"America's Army Proving Grounds",purchase,1.0,0 -278828072,"America's Army Proving Grounds",play,0.3,0 -278828072,"Warface",purchase,1.0,0 -302378981,"Dota 2",purchase,1.0,0 -302378981,"Dota 2",play,13.1,0 -302378981,"No More Room in Hell",purchase,1.0,0 -302378981,"No More Room in Hell",play,2.6,0 -241912957,"Soccer Manager 2015",purchase,1.0,0 -241912957,"Soccer Manager 2015",play,0.3,0 -241912957,"Run and Fire",purchase,1.0,0 -162663266,"Dota 2",purchase,1.0,0 -162663266,"Dota 2",play,3.7,0 -29603217,"The Ship",purchase,1.0,0 -29603217,"The Ship Single Player",purchase,1.0,0 -29603217,"The Ship Tutorial",purchase,1.0,0 -285600472,"Time Clickers",purchase,1.0,0 -285600472,"Time Clickers",play,1.8,0 -285600472,"Teeworlds",purchase,1.0,0 -285600472,"Teeworlds",play,1.3,0 -285600472,"Unturned",purchase,1.0,0 -285600472,"Unturned",play,1.0,0 -285600472,"Relic Hunters Zero",purchase,1.0,0 -285600472,"Relic Hunters Zero",play,0.7,0 -285600472,"Team Fortress 2",purchase,1.0,0 -285600472,"Team Fortress 2",play,0.2,0 -285600472,"World of Soccer online",purchase,1.0,0 -285600472,"World of Soccer online",play,0.1,0 -285600472,"WARMODE",purchase,1.0,0 -285600472,"Marvel Heroes 2015",purchase,1.0,0 -189129966,"Robocraft",purchase,1.0,0 -189129966,"Robocraft",play,13.4,0 -189129966,"Unturned",purchase,1.0,0 -189129966,"Unturned",play,9.0,0 -189129966,"BLOCKADE 3D",purchase,1.0,0 -189129966,"BLOCKADE 3D",play,8.6,0 -189129966,"Team Fortress 2",purchase,1.0,0 -189129966,"Team Fortress 2",play,8.3,0 -189129966,"Heroes & Generals",purchase,1.0,0 -189129966,"Heroes & Generals",play,1.3,0 -189129966,"World of Guns Gun Disassembly",purchase,1.0,0 -189129966,"World of Guns Gun Disassembly",play,0.2,0 -189129966,"Marvel Heroes 2015",purchase,1.0,0 -66090440,"Dota 2",purchase,1.0,0 -66090440,"Dota 2",play,95.0,0 -66090440,"Heroes & Generals",purchase,1.0,0 -66090440,"RADical ROACH Deluxe Edition",purchase,1.0,0 -66090440,"Stronghold Kingdoms",purchase,1.0,0 -146180405,"Dota 2",purchase,1.0,0 -146180405,"Dota 2",play,85.0,0 -264266684,"Dota 2",purchase,1.0,0 -264266684,"Dota 2",play,29.0,0 -293098247,"Garry's Mod",purchase,1.0,0 -293098247,"Garry's Mod",play,7.4,0 -192703190,"Team Fortress 2",purchase,1.0,0 -192703190,"Team Fortress 2",play,0.5,0 -192703190,"Gotham City Impostors Free To Play",purchase,1.0,0 -192703190,"Gotham City Impostors Free To Play",play,0.5,0 -192703190,"Dizzel",purchase,1.0,0 -192703190,"Dizzel",play,0.3,0 -192703190,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -192703190,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.3,0 -192703190,"Aftermath",purchase,1.0,0 -88883891,"The Binding of Isaac",purchase,1.0,0 -88883891,"The Binding of Isaac",play,108.0,0 -88883891,"Grand Theft Auto V",purchase,1.0,0 -88883891,"Grand Theft Auto V",play,36.0,0 -88883891,"Why So Evil",purchase,1.0,0 -88883891,"Why So Evil",play,27.0,0 -88883891,"Team Fortress 2",purchase,1.0,0 -88883891,"Team Fortress 2",play,24.0,0 -88883891,"Garry's Mod",purchase,1.0,0 -88883891,"Garry's Mod",play,21.0,0 -88883891,"Out There Somewhere",purchase,1.0,0 -88883891,"Out There Somewhere",play,17.2,0 -88883891,"Counter-Strike Global Offensive",purchase,1.0,0 -88883891,"Counter-Strike Global Offensive",play,9.5,0 -88883891,"Counter-Strike",purchase,1.0,0 -88883891,"Counter-Strike",play,9.4,0 -88883891,"Bastion",purchase,1.0,0 -88883891,"Bastion",play,8.1,0 -88883891,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -88883891,"Burnout Paradise The Ultimate Box",play,7.5,0 -88883891,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -88883891,"Medal of Honor(TM) Multiplayer",play,4.4,0 -88883891,"Uncrowded",purchase,1.0,0 -88883891,"Uncrowded",play,3.3,0 -88883891,"Ace of Spades",purchase,1.0,0 -88883891,"Ace of Spades",play,2.4,0 -88883891,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -88883891,"Tropico 3 - Steam Special Edition",play,1.2,0 -88883891,"Fingered",purchase,1.0,0 -88883891,"Fingered",play,1.2,0 -88883891,"Unturned",purchase,1.0,0 -88883891,"Unturned",play,1.1,0 -88883891,"DC Universe Online",purchase,1.0,0 -88883891,"DC Universe Online",play,1.1,0 -88883891,"Counter-Strike Condition Zero",purchase,1.0,0 -88883891,"Counter-Strike Condition Zero",play,0.6,0 -88883891,"Kairo",purchase,1.0,0 -88883891,"Kairo",play,0.5,0 -88883891,"Dota 2",purchase,1.0,0 -88883891,"Dota 2",play,0.4,0 -88883891,"Mirror's Edge",purchase,1.0,0 -88883891,"Mirror's Edge",play,0.2,0 -88883891,"Crysis 2 Maximum Edition",purchase,1.0,0 -88883891,"Aquaria",purchase,1.0,0 -88883891,"Batla",purchase,1.0,0 -88883891,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -88883891,"Contrast",purchase,1.0,0 -88883891,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -88883891,"Dead Space",purchase,1.0,0 -88883891,"Medal of Honor(TM) Single Player",purchase,1.0,0 -88883891,"Medal of Honor Pre-Order",purchase,1.0,0 -88883891,"Nux",purchase,1.0,0 -88883891,"Quake Live",purchase,1.0,0 -88883891,"Why So Evil 2 Dystopia",purchase,1.0,0 -13542867,"Counter-Strike",purchase,1.0,0 -13542867,"Counter-Strike",play,1.5,0 -13542867,"Counter-Strike Condition Zero",purchase,1.0,0 -13542867,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -257521133,"Counter-Strike Global Offensive",purchase,1.0,0 -257521133,"Counter-Strike Global Offensive",play,6.4,0 -257521133,"Dota 2",purchase,1.0,0 -257521133,"Dota 2",play,1.1,0 -308221775,"Football Manager 2014",purchase,1.0,0 -308221775,"Football Manager 2014",play,2.4,0 -187635837,"Unturned",purchase,1.0,0 -187635837,"Unturned",play,0.8,0 -198573013,"Heroes & Generals",purchase,1.0,0 -198573013,"Heroes & Generals",play,28.0,0 -198573013,"Team Fortress 2",purchase,1.0,0 -198573013,"Team Fortress 2",play,7.4,0 -198573013,"Unturned",purchase,1.0,0 -198573013,"Unturned",play,4.0,0 -198573013,"theHunter",purchase,1.0,0 -198573013,"theHunter",play,3.3,0 -198573013,"Dota 2",purchase,1.0,0 -198573013,"Dota 2",play,2.8,0 -198573013,"Dead Island Epidemic",purchase,1.0,0 -198573013,"Dead Island Epidemic",play,1.9,0 -198573013,"APB Reloaded",purchase,1.0,0 -198573013,"APB Reloaded",play,1.6,0 -198573013,"Defiance",purchase,1.0,0 -198573013,"Defiance",play,1.5,0 -198573013,"No More Room in Hell",purchase,1.0,0 -198573013,"No More Room in Hell",play,1.0,0 -198573013,"Archeblade",purchase,1.0,0 -198573013,"Archeblade",play,0.8,0 -198573013,"Batla",purchase,1.0,0 -198573013,"Batla",play,0.7,0 -198573013,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -198573013,"S.K.I.L.L. - Special Force 2",play,0.7,0 -198573013,"Fallen Earth",purchase,1.0,0 -198573013,"Fallen Earth",play,0.6,0 -198573013,"Marvel Heroes 2015",purchase,1.0,0 -198573013,"Marvel Heroes 2015",play,0.4,0 -198573013,"Battle Battalions",purchase,1.0,0 -198573013,"Battle Battalions",play,0.3,0 -198573013,"Fractured Space",purchase,1.0,0 -198573013,"Fractured Space",play,0.2,0 -198573013,"Aftermath",purchase,1.0,0 -198573013,"Aftermath",play,0.2,0 -198573013,"sZone-Online",purchase,1.0,0 -198573013,"sZone-Online",play,0.1,0 -198573013,"Brick-Force",purchase,1.0,0 -198573013,"DiggerOnline",purchase,1.0,0 -198573013,"Haunted Memories",purchase,1.0,0 -198573013,"TDP5 Arena 3D",purchase,1.0,0 -198573013,"Forge",purchase,1.0,0 -198573013,"HAWKEN",purchase,1.0,0 -198573013,"Counter-Strike Nexon Zombies",purchase,1.0,0 -198573013,"Counter-Strike Nexon Zombies - Starter Pack",purchase,1.0,0 -198573013,"Cult of the Wind",purchase,1.0,0 -198573013,"Double Action Boogaloo",purchase,1.0,0 -198573013,"Dystopia",purchase,1.0,0 -198573013,"Killing Floor - Toy Master",purchase,1.0,0 -198573013,"Survarium",purchase,1.0,0 -198573013,"Tribes Ascend",purchase,1.0,0 -150408079,"Dota 2",purchase,1.0,0 -150408079,"Dota 2",play,76.0,0 -265119944,"Dota 2",purchase,1.0,0 -265119944,"Dota 2",play,1.5,0 -86168617,"The Witcher Enhanced Edition",purchase,1.0,0 -86168617,"The Witcher Enhanced Edition",play,39.0,0 -86168617,"Star Wars Knights of the Old Republic",purchase,1.0,0 -86168617,"Star Wars Knights of the Old Republic",play,36.0,0 -86168617,"Thief Deadly Shadows",purchase,1.0,0 -86168617,"Thief Deadly Shadows",play,10.8,0 -86168617,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -86168617,"Vampire The Masquerade - Bloodlines",play,6.1,0 -86168617,"Team Fortress 2",purchase,1.0,0 -86168617,"Team Fortress 2",play,1.0,0 -21796349,"Half-Life 2",purchase,1.0,0 -21796349,"Half-Life 2",play,31.0,0 -21796349,"Half-Life 2 Lost Coast",purchase,1.0,0 -21796349,"Half-Life 2 Lost Coast",play,2.0,0 -21796349,"Eternal Silence",purchase,1.0,0 -21796349,"Eternal Silence",play,1.9,0 -21796349,"Half-Life Source",purchase,1.0,0 -21796349,"Half-Life Source",play,0.9,0 -21796349,"Counter-Strike Source",purchase,1.0,0 -21796349,"Counter-Strike Source",play,0.1,0 -21796349,"Half-Life 2 Deathmatch",purchase,1.0,0 -21796349,"Half-Life Deathmatch Source",purchase,1.0,0 -307879703,"Dota 2",purchase,1.0,0 -307879703,"Dota 2",play,1.9,0 -55975168,"Sid Meier's Civilization V",purchase,1.0,0 -55975168,"Sid Meier's Civilization V",play,757.0,0 -55975168,"Killing Floor",purchase,1.0,0 -55975168,"Killing Floor",play,711.0,0 -55975168,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -55975168,"Call of Duty Modern Warfare 3 - Multiplayer",play,461.0,0 -55975168,"The Elder Scrolls V Skyrim",purchase,1.0,0 -55975168,"The Elder Scrolls V Skyrim",play,214.0,0 -55975168,"Killing Floor 2",purchase,1.0,0 -55975168,"Killing Floor 2",play,211.0,0 -55975168,"Don't Starve",purchase,1.0,0 -55975168,"Don't Starve",play,177.0,0 -55975168,"Tropico 3 Absolute Power",purchase,1.0,0 -55975168,"Tropico 3 Absolute Power",play,149.0,0 -55975168,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -55975168,"Plants vs. Zombies Game of the Year",play,119.0,0 -55975168,"Tropico 5",purchase,1.0,0 -55975168,"Tropico 5",play,66.0,0 -55975168,"Fallout New Vegas",purchase,1.0,0 -55975168,"Fallout New Vegas",play,51.0,0 -55975168,"Infestation Survivor Stories",purchase,1.0,0 -55975168,"Infestation Survivor Stories",play,44.0,0 -55975168,"Two Worlds II",purchase,1.0,0 -55975168,"Two Worlds II",play,41.0,0 -55975168,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -55975168,"Call of Duty 4 Modern Warfare",play,41.0,0 -55975168,"Grand Theft Auto IV",purchase,1.0,0 -55975168,"Grand Theft Auto IV",play,40.0,0 -55975168,"Portal 2",purchase,1.0,0 -55975168,"Portal 2",play,26.0,0 -55975168,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -55975168,"S.T.A.L.K.E.R. Call of Pripyat",play,25.0,0 -55975168,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -55975168,"S.T.A.L.K.E.R. Clear Sky",play,25.0,0 -55975168,"RAGE",purchase,1.0,0 -55975168,"RAGE",play,23.0,0 -55975168,"Call of Duty Modern Warfare 3",purchase,1.0,0 -55975168,"Call of Duty Modern Warfare 3",play,22.0,0 -55975168,"Hitman Absolution",purchase,1.0,0 -55975168,"Hitman Absolution",play,16.4,0 -55975168,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -55975168,"Call of Duty Ghosts - Multiplayer",play,15.1,0 -55975168,"Borderlands 2",purchase,1.0,0 -55975168,"Borderlands 2",play,13.6,0 -55975168,"Gothic 3 Forsaken Gods Enhanced Edition",purchase,1.0,0 -55975168,"Gothic 3 Forsaken Gods Enhanced Edition",play,11.8,0 -55975168,"Alan Wake",purchase,1.0,0 -55975168,"Alan Wake",play,11.8,0 -55975168,"BioShock Infinite",purchase,1.0,0 -55975168,"BioShock Infinite",play,11.2,0 -55975168,"Commandos Behind Enemy Lines",purchase,1.0,0 -55975168,"Commandos Behind Enemy Lines",play,10.7,0 -55975168,"How to Survive",purchase,1.0,0 -55975168,"How to Survive",play,10.6,0 -55975168,"Sang-Froid - Tales of Werewolves",purchase,1.0,0 -55975168,"Sang-Froid - Tales of Werewolves",play,9.5,0 -55975168,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -55975168,"Call of Duty Black Ops - Multiplayer",play,8.0,0 -55975168,"Portal",purchase,1.0,0 -55975168,"Portal",play,7.2,0 -55975168,"Dishonored",purchase,1.0,0 -55975168,"Dishonored",play,6.2,0 -55975168,"Machinarium",purchase,1.0,0 -55975168,"Machinarium",play,5.6,0 -55975168,"Left 4 Dead",purchase,1.0,0 -55975168,"Left 4 Dead",play,5.1,0 -55975168,"DiRT Showdown",purchase,1.0,0 -55975168,"DiRT Showdown",play,4.0,0 -55975168,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -55975168,"The Elder Scrolls IV Oblivion ",play,3.6,0 -55975168,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -55975168,"Grand Theft Auto Episodes from Liberty City",play,3.4,0 -55975168,"Need for Speed Hot Pursuit",purchase,1.0,0 -55975168,"Need for Speed Hot Pursuit",play,3.3,0 -55975168,"Call of Juarez Gunslinger",purchase,1.0,0 -55975168,"Call of Juarez Gunslinger",play,2.7,0 -55975168,"Don't Starve Together Beta",purchase,1.0,0 -55975168,"Don't Starve Together Beta",play,2.1,0 -55975168,"The Forest",purchase,1.0,0 -55975168,"The Forest",play,2.1,0 -55975168,"Bully Scholarship Edition",purchase,1.0,0 -55975168,"Bully Scholarship Edition",play,2.0,0 -55975168,"Counter-Strike Global Offensive",purchase,1.0,0 -55975168,"Counter-Strike Global Offensive",play,2.0,0 -55975168,"Stranded Deep",purchase,1.0,0 -55975168,"Stranded Deep",play,1.5,0 -55975168,"Might & Magic Heroes VI",purchase,1.0,0 -55975168,"Might & Magic Heroes VI",play,1.4,0 -55975168,"War for the Overworld",purchase,1.0,0 -55975168,"War for the Overworld",play,1.3,0 -55975168,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -55975168,"Next Car Game Sneak Peek 2.0",play,1.1,0 -55975168,"Left 4 Dead 2",purchase,1.0,0 -55975168,"Left 4 Dead 2",play,0.9,0 -55975168,"Next Car Game Wreckfest",purchase,1.0,0 -55975168,"Next Car Game Wreckfest",play,0.8,0 -55975168,"Deus Ex Human Revolution",purchase,1.0,0 -55975168,"Deus Ex Human Revolution",play,0.8,0 -55975168,"Company of Heroes",purchase,1.0,0 -55975168,"Company of Heroes",play,0.7,0 -55975168,"Metro 2033",purchase,1.0,0 -55975168,"Metro 2033",play,0.6,0 -55975168,"Call of Duty Ghosts",purchase,1.0,0 -55975168,"Call of Duty Ghosts",play,0.5,0 -55975168,"Dota 2",purchase,1.0,0 -55975168,"Dota 2",play,0.4,0 -55975168,"The Stanley Parable",purchase,1.0,0 -55975168,"The Stanley Parable",play,0.4,0 -55975168,"Commandos 2 Men of Courage",purchase,1.0,0 -55975168,"Commandos 2 Men of Courage",play,0.4,0 -55975168,"Commandos 3 Destination Berlin",purchase,1.0,0 -55975168,"Commandos 3 Destination Berlin",play,0.2,0 -55975168,"Always Sometimes Monsters",purchase,1.0,0 -55975168,"Always Sometimes Monsters",play,0.1,0 -55975168,"Passing Pineview Forest",purchase,1.0,0 -55975168,"Passing Pineview Forest",play,0.1,0 -55975168,"Secret Files Tunguska",purchase,1.0,0 -55975168,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -55975168,"Borderlands",purchase,1.0,0 -55975168,"Sid Meier's Civilization IV",purchase,1.0,0 -55975168,"Company of Heroes Opposing Fronts",purchase,1.0,0 -55975168,"Commandos Beyond the Call of Duty",purchase,1.0,0 -55975168,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -55975168,"BioShock Infinite - Season Pass",purchase,1.0,0 -55975168,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -55975168,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -55975168,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -55975168,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -55975168,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -55975168,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -55975168,"Broken Sword 2 - the Smoking Mirror Remastered",purchase,1.0,0 -55975168,"Call of Duty Black Ops",purchase,1.0,0 -55975168,"Company of Heroes (New Steam Version)",purchase,1.0,0 -55975168,"Don't Starve Shipwrecked",purchase,1.0,0 -55975168,"Don't Starve Reign of Giants",purchase,1.0,0 -55975168,"Hazard Ops",purchase,1.0,0 -55975168,"Killing Floor - Toy Master",purchase,1.0,0 -55975168,"Portal Stories Mel",purchase,1.0,0 -55975168,"Sid Meier's Civilization IV",purchase,1.0,0 -55975168,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -55975168,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -55975168,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -55975168,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -55975168,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -55975168,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -55975168,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -55975168,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -55975168,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -55975168,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -55975168,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -55975168,"Tropico 5 - Espionage",purchase,1.0,0 -209804171,"Pro Evolution Soccer 2015",purchase,1.0,0 -209804171,"Pro Evolution Soccer 2015",play,285.0,0 -209804171,"Pro Evolution Soccer 2016",purchase,1.0,0 -209804171,"Pro Evolution Soccer 2016",play,45.0,0 -232593507,"APB Reloaded",purchase,1.0,0 -232593507,"APB Reloaded",play,21.0,0 -232593507,"UberStrike",purchase,1.0,0 -232593507,"UberStrike",play,1.4,0 -232593507,"FreeStyle2 Street Basketball",purchase,1.0,0 -232593507,"FreeStyle2 Street Basketball",play,0.8,0 -232593507,"Unturned",purchase,1.0,0 -232593507,"Unturned",play,0.6,0 -232593507,"Blacklight Retribution",purchase,1.0,0 -232593507,"Cubic Castles",purchase,1.0,0 -232593507,"Dead Island Epidemic",purchase,1.0,0 -232593507,"Defiance",purchase,1.0,0 -232593507,"Dragons and Titans",purchase,1.0,0 -232593507,"Firefall",purchase,1.0,0 -232593507,"Fistful of Frags",purchase,1.0,0 -232593507,"Marvel Heroes 2015",purchase,1.0,0 -232593507,"Nosgoth",purchase,1.0,0 -232593507,"Super Monday Night Combat",purchase,1.0,0 -232593507,"Survarium",purchase,1.0,0 -232593507,"theHunter",purchase,1.0,0 -232593507,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -177507986,"Team Fortress 2",purchase,1.0,0 -177507986,"Team Fortress 2",play,1.0,0 -179756503,"Dota 2",purchase,1.0,0 -179756503,"Dota 2",play,0.2,0 -133298634,"Dota 2",purchase,1.0,0 -133298634,"Dota 2",play,4.8,0 -117740575,"Dota 2",purchase,1.0,0 -117740575,"Dota 2",play,1090.0,0 -298493475,"Team Fortress 2",purchase,1.0,0 -298493475,"Team Fortress 2",play,70.0,0 -298493475,"Unturned",purchase,1.0,0 -298493475,"Unturned",play,6.7,0 -298493475,"Genesis Online",purchase,1.0,0 -298493475,"Genesis Online",play,1.8,0 -298493475,"Krosmaster Arena",purchase,1.0,0 -298493475,"Krosmaster Arena",play,0.8,0 -298493475,"Dirty Bomb",purchase,1.0,0 -298493475,"Dirty Bomb",play,0.4,0 -298493475,"Strife",purchase,1.0,0 -298493475,"Strife",play,0.3,0 -298493475,"Legend of Dungeon Masters",purchase,1.0,0 -298493475,"Legend of Dungeon Masters",play,0.2,0 -298493475,"Trove",purchase,1.0,0 -298493475,"Creativerse",purchase,1.0,0 -298493475,"Might & Magic Heroes Online",purchase,1.0,0 -287465432,"Counter-Strike Global Offensive",purchase,1.0,0 -287465432,"Counter-Strike Global Offensive",play,45.0,0 -287465432,"AdVenture Capitalist",purchase,1.0,0 -287465432,"Clicker Heroes",purchase,1.0,0 -287465432,"Counter-Strike Nexon Zombies",purchase,1.0,0 -287465432,"Robocraft",purchase,1.0,0 -287465432,"Stronghold Kingdoms",purchase,1.0,0 -287465432,"Super Crate Box",purchase,1.0,0 -287465432,"The Expendabros",purchase,1.0,0 -287465432,"The Mighty Quest For Epic Loot",purchase,1.0,0 -287465432,"Unturned",purchase,1.0,0 -287465432,"War Thunder",purchase,1.0,0 -251090819,"Dota 2",purchase,1.0,0 -251090819,"Dota 2",play,38.0,0 -33651880,"AdVenture Capitalist",purchase,1.0,0 -33651880,"AdVenture Capitalist",play,1095.0,0 -33651880,"Clicker Heroes",purchase,1.0,0 -33651880,"Clicker Heroes",play,899.0,0 -33651880,"Counter-Strike Global Offensive",purchase,1.0,0 -33651880,"Counter-Strike Global Offensive",play,543.0,0 -33651880,"Dota 2",purchase,1.0,0 -33651880,"Dota 2",play,352.0,0 -33651880,"Freaking Meatbags",purchase,1.0,0 -33651880,"Freaking Meatbags",play,331.0,0 -33651880,"Mutant Mudds Deluxe",purchase,1.0,0 -33651880,"Mutant Mudds Deluxe",play,155.0,0 -33651880,"Awesomenauts",purchase,1.0,0 -33651880,"Awesomenauts",play,98.0,0 -33651880,"Garry's Mod",purchase,1.0,0 -33651880,"Garry's Mod",play,86.0,0 -33651880,"Orcs Must Die! 2",purchase,1.0,0 -33651880,"Orcs Must Die! 2",play,53.0,0 -33651880,"Dead Island",purchase,1.0,0 -33651880,"Dead Island",play,52.0,0 -33651880,"Risk of Rain",purchase,1.0,0 -33651880,"Risk of Rain",play,51.0,0 -33651880,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -33651880,"The Incredible Adventures of Van Helsing",play,45.0,0 -33651880,"Full Mojo Rampage",purchase,1.0,0 -33651880,"Full Mojo Rampage",play,41.0,0 -33651880,"Hero Siege",purchase,1.0,0 -33651880,"Hero Siege",play,36.0,0 -33651880,"Portal 2",purchase,1.0,0 -33651880,"Portal 2",play,35.0,0 -33651880,"Don't Starve",purchase,1.0,0 -33651880,"Don't Starve",play,30.0,0 -33651880,"Hotline Miami",purchase,1.0,0 -33651880,"Hotline Miami",play,27.0,0 -33651880,"Legend of Grimrock",purchase,1.0,0 -33651880,"Legend of Grimrock",play,24.0,0 -33651880,"Age of Empires II HD Edition",purchase,1.0,0 -33651880,"Age of Empires II HD Edition",play,23.0,0 -33651880,"Reus",purchase,1.0,0 -33651880,"Reus",play,23.0,0 -33651880,"Mark of the Ninja",purchase,1.0,0 -33651880,"Mark of the Ninja",play,20.0,0 -33651880,"Wanderlust Rebirth",purchase,1.0,0 -33651880,"Wanderlust Rebirth",play,16.4,0 -33651880,"Deadlight",purchase,1.0,0 -33651880,"Deadlight",play,14.6,0 -33651880,"Borderlands 2",purchase,1.0,0 -33651880,"Borderlands 2",play,13.8,0 -33651880,"The Cave",purchase,1.0,0 -33651880,"The Cave",play,13.3,0 -33651880,"Minimum",purchase,1.0,0 -33651880,"Minimum",play,13.2,0 -33651880,"VVVVVV",purchase,1.0,0 -33651880,"VVVVVV",play,12.8,0 -33651880,"Mind Path to Thalamus Enhanced Edition",purchase,1.0,0 -33651880,"Mind Path to Thalamus Enhanced Edition",play,11.0,0 -33651880,"Magicka",purchase,1.0,0 -33651880,"Magicka",play,10.4,0 -33651880,"Dead Island Epidemic",purchase,1.0,0 -33651880,"Dead Island Epidemic",play,9.9,0 -33651880,"Counter-Strike Source",purchase,1.0,0 -33651880,"Counter-Strike Source",play,9.0,0 -33651880,"Sanctum 2",purchase,1.0,0 -33651880,"Sanctum 2",play,8.8,0 -33651880,"Relic Hunters Zero",purchase,1.0,0 -33651880,"Relic Hunters Zero",play,6.3,0 -33651880,"Mercenary Kings",purchase,1.0,0 -33651880,"Mercenary Kings",play,6.0,0 -33651880,"BattleBlock Theater",purchase,1.0,0 -33651880,"BattleBlock Theater",play,5.4,0 -33651880,"DiRT 3",purchase,1.0,0 -33651880,"DiRT 3",play,5.1,0 -33651880,"Sine Mora",purchase,1.0,0 -33651880,"Sine Mora",play,4.9,0 -33651880,"King Arthur's Gold",purchase,1.0,0 -33651880,"King Arthur's Gold",play,4.7,0 -33651880,"Thomas Was Alone",purchase,1.0,0 -33651880,"Thomas Was Alone",play,4.5,0 -33651880,"The Binding of Isaac",purchase,1.0,0 -33651880,"The Binding of Isaac",play,4.2,0 -33651880,"Left 4 Dead",purchase,1.0,0 -33651880,"Left 4 Dead",play,3.5,0 -33651880,"Sniper Elite V2",purchase,1.0,0 -33651880,"Sniper Elite V2",play,3.3,0 -33651880,"Insurgency",purchase,1.0,0 -33651880,"Insurgency",play,3.0,0 -33651880,"Castle Crashers",purchase,1.0,0 -33651880,"Castle Crashers",play,2.4,0 -33651880,"Surgeon Simulator",purchase,1.0,0 -33651880,"Surgeon Simulator",play,2.2,0 -33651880,"BIT.TRIP RUNNER",purchase,1.0,0 -33651880,"BIT.TRIP RUNNER",play,2.0,0 -33651880,"SpeedRunners",purchase,1.0,0 -33651880,"SpeedRunners",play,1.9,0 -33651880,"MURDERED SOUL SUSPECT",purchase,1.0,0 -33651880,"MURDERED SOUL SUSPECT",play,1.6,0 -33651880,"PAC-MAN Championship Edition DX+",purchase,1.0,0 -33651880,"PAC-MAN Championship Edition DX+",play,1.5,0 -33651880,"DEFCON",purchase,1.0,0 -33651880,"DEFCON",play,1.2,0 -33651880,"Dollar Dash",purchase,1.0,0 -33651880,"Dollar Dash",play,1.0,0 -33651880,"Team Fortress 2",purchase,1.0,0 -33651880,"Team Fortress 2",play,0.7,0 -33651880,"FLY'N",purchase,1.0,0 -33651880,"FLY'N",play,0.6,0 -33651880,"Hammerwatch",purchase,1.0,0 -33651880,"Hammerwatch",play,0.5,0 -33651880,"Pixel Piracy",purchase,1.0,0 -33651880,"Pixel Piracy",play,0.4,0 -33651880,"Jamestown",purchase,1.0,0 -33651880,"Jamestown",play,0.2,0 -33651880,"SpaceChem",purchase,1.0,0 -33651880,"SpaceChem",play,0.2,0 -33651880,"Adventures of Shuggy",purchase,1.0,0 -33651880,"SteamWorld Dig",purchase,1.0,0 -33651880,"140",purchase,1.0,0 -33651880,"Abyss Odyssey",purchase,1.0,0 -33651880,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",purchase,1.0,0 -33651880,"Aces Wild Manic Brawling Action!",purchase,1.0,0 -33651880,"Afterfall InSanity Extended Edition",purchase,1.0,0 -33651880,"Age of Empires II HD The Forgotten",purchase,1.0,0 -33651880,"Alan Wake",purchase,1.0,0 -33651880,"Albedo Eyes from Outer Space",purchase,1.0,0 -33651880,"Alien Spidy",purchase,1.0,0 -33651880,"Amnesia A Machine for Pigs",purchase,1.0,0 -33651880,"Amnesia The Dark Descent",purchase,1.0,0 -33651880,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -33651880,"Ben There, Dan That!",purchase,1.0,0 -33651880,"Besiege",purchase,1.0,0 -33651880,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -33651880,"Blocks That Matter",purchase,1.0,0 -33651880,"Borderlands 2 RU",purchase,1.0,0 -33651880,"Breach & Clear",purchase,1.0,0 -33651880,"Cave Story+",purchase,1.0,0 -33651880,"Colin McRae Rally",purchase,1.0,0 -33651880,"Containment The Zombie Puzzler",purchase,1.0,0 -33651880,"Contraption Maker",purchase,1.0,0 -33651880,"Costume Quest",purchase,1.0,0 -33651880,"Crash Time II",purchase,1.0,0 -33651880,"Crazy Machines 2",purchase,1.0,0 -33651880,"Crysis 2 Maximum Edition",purchase,1.0,0 -33651880,"Cthulhu Saves the World ",purchase,1.0,0 -33651880,"DeadCore",purchase,1.0,0 -33651880,"Dead Island Riptide",purchase,1.0,0 -33651880,"Dead Space 2",purchase,1.0,0 -33651880,"Defy Gravity",purchase,1.0,0 -33651880,"Deponia",purchase,1.0,0 -33651880,"Dino D-Day",purchase,1.0,0 -33651880,"DiRT 3 Complete Edition",purchase,1.0,0 -33651880,"DiRT Showdown",purchase,1.0,0 -33651880,"Disciples III Resurrection",purchase,1.0,0 -33651880,"Divekick",purchase,1.0,0 -33651880,"Dollar Dash DLC1 More Ways to Win",purchase,1.0,0 -33651880,"Dollar Dash DLC2 Robbers Tool-Kit",purchase,1.0,0 -33651880,"Don't Starve Reign of Giants",purchase,1.0,0 -33651880,"Don't Starve Together Beta",purchase,1.0,0 -33651880,"DUNGEONS - Steam Special Edition",purchase,1.0,0 -33651880,"Dust An Elysian Tail",purchase,1.0,0 -33651880,"Dustforce",purchase,1.0,0 -33651880,"Eidolon",purchase,1.0,0 -33651880,"Element4l",purchase,1.0,0 -33651880,"Enemy Mind",purchase,1.0,0 -33651880,"ENSLAVED Odyssey to the West Premium Edition",purchase,1.0,0 -33651880,"Epigenesis",purchase,1.0,0 -33651880,"Ethan Meteor Hunter",purchase,1.0,0 -33651880,"FaeVerse Alchemy",purchase,1.0,0 -33651880,"Fallen Enchantress Legendary Heroes",purchase,1.0,0 -33651880,"FEZ",purchase,1.0,0 -33651880,"Finding Teddy",purchase,1.0,0 -33651880,"Finding Teddy Soundtrack",purchase,1.0,0 -33651880,"FIST OF AWESOME",purchase,1.0,0 -33651880,"Galaxy on Fire 2 Full HD",purchase,1.0,0 -33651880,"Galcon Fusion",purchase,1.0,0 -33651880,"GRID 2",purchase,1.0,0 -33651880,"GT Power Expansion",purchase,1.0,0 -33651880,"GTR Evolution",purchase,1.0,0 -33651880,"Guacamelee! Gold Edition",purchase,1.0,0 -33651880,"Gun Monkeys",purchase,1.0,0 -33651880,"Gunpoint",purchase,1.0,0 -33651880,"Hack 'n' Slash",purchase,1.0,0 -33651880,"Hard Reset",purchase,1.0,0 -33651880,"Hard Reset Exile DLC",purchase,1.0,0 -33651880,"Hospital Tycoon",purchase,1.0,0 -33651880,"How to Survive",purchase,1.0,0 -33651880,"Jagged Alliance - Back in Action",purchase,1.0,0 -33651880,"Jagged Alliance Crossfire",purchase,1.0,0 -33651880,"Kill The Bad Guy",purchase,1.0,0 -33651880,"La-Mulana",purchase,1.0,0 -33651880,"Left 4 Dead 2",purchase,1.0,0 -33651880,"Legend of Grimrock 2",purchase,1.0,0 -33651880,"Legends of Persia",purchase,1.0,0 -33651880,"Lethal League",purchase,1.0,0 -33651880,"LIMBO",purchase,1.0,0 -33651880,"Little Racers STREET",purchase,1.0,0 -33651880,"Lone Survivor The Director's Cut",purchase,1.0,0 -33651880,"Lovely Planet",purchase,1.0,0 -33651880,"Lumino City",purchase,1.0,0 -33651880,"Magicka Final Frontier",purchase,1.0,0 -33651880,"Magicka Frozen Lake",purchase,1.0,0 -33651880,"Magicka Nippon",purchase,1.0,0 -33651880,"Magicka Party Robes",purchase,1.0,0 -33651880,"Magicka The Watchtower",purchase,1.0,0 -33651880,"Magicka Vietnam",purchase,1.0,0 -33651880,"Magicka Wizard's Survival Kit",purchase,1.0,0 -33651880,"Mark of the Ninja Special Edition DLC",purchase,1.0,0 -33651880,"Mechanic Escape",purchase,1.0,0 -33651880,"Megabyte Punch",purchase,1.0,0 -33651880,"Men of War Assault Squad",purchase,1.0,0 -33651880,"Metro 2033",purchase,1.0,0 -33651880,"Mini Motor Racing EVO",purchase,1.0,0 -33651880,"MirrorMoon EP",purchase,1.0,0 -33651880,"No Time To Explain Remastered",purchase,1.0,0 -33651880,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -33651880,"Operation Flashpoint Red River",purchase,1.0,0 -33651880,"Orborun",purchase,1.0,0 -33651880,"Orcs Must Die!",purchase,1.0,0 -33651880,"Outland",purchase,1.0,0 -33651880,"Outlast",purchase,1.0,0 -33651880,"Overlord",purchase,1.0,0 -33651880,"Overlord II",purchase,1.0,0 -33651880,"Penguins Arena Sedna's World",purchase,1.0,0 -33651880,"Phantom Breaker Battle Grounds",purchase,1.0,0 -33651880,"Platformines",purchase,1.0,0 -33651880,"Pressure",purchase,1.0,0 -33651880,"Project Temporality",purchase,1.0,0 -33651880,"RACE 07",purchase,1.0,0 -33651880,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -33651880,"RACE Caterham Expansion",purchase,1.0,0 -33651880,"Race The WTCC Game",purchase,1.0,0 -33651880,"RACE On",purchase,1.0,0 -33651880,"RaceRoom Racing Experience ",purchase,1.0,0 -33651880,"Really Big Sky",purchase,1.0,0 -33651880,"Reaper - Tale of a Pale Swordsman",purchase,1.0,0 -33651880,"Receiver",purchase,1.0,0 -33651880,"Ridge Racer Unbounded",purchase,1.0,0 -33651880,"Robot Roller-Derby Disco Dodgeball",purchase,1.0,0 -33651880,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -33651880,"Saints Row IV",purchase,1.0,0 -33651880,"SanctuaryRPG Black Edition",purchase,1.0,0 -33651880,"Shadow Warrior",purchase,1.0,0 -33651880,"Shank 2",purchase,1.0,0 -33651880,"Shattered Planet",purchase,1.0,0 -33651880,"SkyDrift",purchase,1.0,0 -33651880,"Solar 2",purchase,1.0,0 -33651880,"Space Hack",purchase,1.0,0 -33651880,"Spirits",purchase,1.0,0 -33651880,"Stardust Vanguards",purchase,1.0,0 -33651880,"STCC The Game",purchase,1.0,0 -33651880,"STCC II",purchase,1.0,0 -33651880,"Stealth Inc 2",purchase,1.0,0 -33651880,"Street Racing Syndicate",purchase,1.0,0 -33651880,"Super Comboman",purchase,1.0,0 -33651880,"Super Splatters",purchase,1.0,0 -33651880,"Tank Operations European Campaign",purchase,1.0,0 -33651880,"Teleglitch Die More Edition",purchase,1.0,0 -33651880,"Terraria",purchase,1.0,0 -33651880,"The Blue Flamingo",purchase,1.0,0 -33651880,"The Great Jitters Pudding Panic",purchase,1.0,0 -33651880,"The Guild II",purchase,1.0,0 -33651880,"The Guild II - Pirates of the European Seas",purchase,1.0,0 -33651880,"The Guild II Renaissance",purchase,1.0,0 -33651880,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -33651880,"The Incredible Adventures of Van Helsing II",purchase,1.0,0 -33651880,"The Plan",purchase,1.0,0 -33651880,"The Retro Expansion",purchase,1.0,0 -33651880,"The Swapper",purchase,1.0,0 -33651880,"The WTCC 2010 Pack",purchase,1.0,0 -33651880,"Time Gentlemen, Please!",purchase,1.0,0 -33651880,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -33651880,"Tomb Raider",purchase,1.0,0 -33651880,"Torchlight II",purchase,1.0,0 -33651880,"TowerFall Ascension",purchase,1.0,0 -33651880,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -33651880,"Tropico 3 Absolute Power",purchase,1.0,0 -33651880,"Unepic",purchase,1.0,0 -33651880,"Valkyria Chronicles",purchase,1.0,0 -33651880,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -33651880,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -33651880,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -33651880,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -33651880,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -33651880,"Warlock - Master of the Arcane",purchase,1.0,0 -33651880,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -33651880,"Year Walk",purchase,1.0,0 -302647549,"TerraTech",purchase,1.0,0 -302647549,"TerraTech",play,13.5,0 -242345802,"Dota 2",purchase,1.0,0 -242345802,"Dota 2",play,3.1,0 -242345802,"Stronghold Kingdoms",purchase,1.0,0 -107876972,"OMSI 2",purchase,1.0,0 -107876972,"OMSI 2",play,293.0,0 -107876972,"Cities in Motion",purchase,1.0,0 -107876972,"Cities in Motion",play,34.0,0 -74157312,"Portal 2",purchase,1.0,0 -74157312,"Portal 2",play,17.7,0 -74157312,"Sid Meier's Civilization V",purchase,1.0,0 -74157312,"Sid Meier's Civilization V",play,5.2,0 -74157312,"Team Fortress 2",purchase,1.0,0 -74157312,"Team Fortress 2",play,3.1,0 -53990357,"Lead and Gold - Gangs of the Wild West",purchase,1.0,0 -53990357,"Lead and Gold - Gangs of the Wild West",play,10.2,0 -53990357,"Order of War",purchase,1.0,0 -53990357,"Order of War",play,3.9,0 -100168166,"Team Fortress 2",purchase,1.0,0 -100168166,"Team Fortress 2",play,10.7,0 -176631712,"Spec Ops The Line",purchase,1.0,0 -176631712,"Spec Ops The Line",play,0.7,0 -152328066,"XCOM Enemy Unknown",purchase,1.0,0 -152328066,"XCOM Enemy Unknown",play,40.0,0 -152328066,"XCOM Enemy Within",purchase,1.0,0 -115571373,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -115571373,"Call of Duty Black Ops II - Multiplayer",play,61.0,0 -115571373,"Rocket League",purchase,1.0,0 -115571373,"Rocket League",play,18.8,0 -115571373,"Space Engineers",purchase,1.0,0 -115571373,"Space Engineers",play,9.6,0 -115571373,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -115571373,"Call of Duty Black Ops II - Zombies",play,7.5,0 -115571373,"Call of Duty Black Ops II",purchase,1.0,0 -115571373,"Call of Duty Black Ops II",play,4.5,0 -115571373,"SolForge",purchase,1.0,0 -115571373,"SolForge",play,2.5,0 -115571373,"March of War",purchase,1.0,0 -115571373,"March of War",play,0.3,0 -115571373,"Forge",purchase,1.0,0 -258785172,"Garry's Mod",purchase,1.0,0 -258785172,"Garry's Mod",play,4.9,0 -258785172,"Team Fortress 2",purchase,1.0,0 -258785172,"Team Fortress 2",play,3.5,0 -258785172,"Heroes & Generals",purchase,1.0,0 -258785172,"Heroes & Generals",play,0.2,0 -258785172,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -258785172,"Navy Field 2 Conqueror of the Ocean",play,0.1,0 -258785172,"HIS (Heroes In the Sky)",purchase,1.0,0 -201946795,"Counter-Strike Nexon Zombies",purchase,1.0,0 -201946795,"No More Room in Hell",purchase,1.0,0 -134649138,"Dota 2",purchase,1.0,0 -134649138,"Dota 2",play,34.0,0 -125543616,"Dota 2",purchase,1.0,0 -125543616,"Dota 2",play,78.0,0 -125543616,"DiggerOnline",purchase,1.0,0 -233566106,"Unturned",purchase,1.0,0 -233566106,"Unturned",play,0.5,0 -106387489,"Team Fortress 2",purchase,1.0,0 -106387489,"Team Fortress 2",play,7.0,0 -238836615,"Dota 2",purchase,1.0,0 -238836615,"Dota 2",play,0.4,0 -302652704,"Unturned",purchase,1.0,0 -302652704,"Unturned",play,0.6,0 -13336286,"Counter-Strike Source",purchase,1.0,0 -13336286,"Counter-Strike Source",play,11.6,0 -13336286,"Half-Life 2",purchase,1.0,0 -13336286,"Half-Life 2",play,7.1,0 -13336286,"Half-Life 2 Deathmatch",purchase,1.0,0 -13336286,"Half-Life 2 Lost Coast",purchase,1.0,0 -198350948,"Dota 2",purchase,1.0,0 -198350948,"Dota 2",play,7.7,0 -198350948,"Neverwinter",purchase,1.0,0 -198350948,"Neverwinter",play,4.2,0 -198350948,"Counter-Strike Nexon Zombies",purchase,1.0,0 -198350948,"Counter-Strike Nexon Zombies",play,0.6,0 -198350948,"Brick-Force",purchase,1.0,0 -198350948,"Brick-Force",play,0.3,0 -210622151,"Dota 2",purchase,1.0,0 -210622151,"Dota 2",play,52.0,0 -144737094,"Dota 2",purchase,1.0,0 -144737094,"Dota 2",play,1000.0,0 -144737094,"The Plan",purchase,1.0,0 -144737094,"The Plan",play,0.1,0 -156941467,"Dota 2",purchase,1.0,0 -156941467,"Dota 2",play,391.0,0 -156941467,"Counter-Strike",purchase,1.0,0 -156941467,"Counter-Strike",play,25.0,0 -156941467,"Left 4 Dead 2",purchase,1.0,0 -156941467,"Left 4 Dead 2",play,13.1,0 -156941467,"Zombie Panic Source",purchase,1.0,0 -156941467,"Zombie Panic Source",play,2.7,0 -156941467,"Team Fortress 2",purchase,1.0,0 -156941467,"Team Fortress 2",play,1.3,0 -156941467,"Day of Defeat",purchase,1.0,0 -156941467,"Day of Defeat",play,0.3,0 -156941467,"Counter-Strike Condition Zero",purchase,1.0,0 -156941467,"Counter-Strike Condition Zero",play,0.1,0 -156941467,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -156941467,"Deathmatch Classic",purchase,1.0,0 -156941467,"Enclave",purchase,1.0,0 -156941467,"Ricochet",purchase,1.0,0 -133719158,"Dota 2",purchase,1.0,0 -133719158,"Dota 2",play,4320.0,0 -133719158,"Don't Starve",purchase,1.0,0 -133719158,"Don't Starve",play,130.0,0 -133719158,"Castle Crashers",purchase,1.0,0 -133719158,"Castle Crashers",play,9.0,0 -133719158,"Don't Starve Together Beta",purchase,1.0,0 -133719158,"Don't Starve Together Beta",play,9.0,0 -133719158,"Free to Play",purchase,1.0,0 -133719158,"Free to Play",play,6.7,0 -133719158,"Happy Wars",purchase,1.0,0 -133719158,"Don't Starve Shipwrecked",purchase,1.0,0 -161384593,"Counter-Strike Global Offensive",purchase,1.0,0 -161384593,"Counter-Strike Global Offensive",play,189.0,0 -161384593,"Unturned",purchase,1.0,0 -161384593,"Unturned",play,85.0,0 -161384593,"Counter-Strike Nexon Zombies",purchase,1.0,0 -161384593,"Counter-Strike Nexon Zombies",play,31.0,0 -161384593,"No More Room in Hell",purchase,1.0,0 -161384593,"No More Room in Hell",play,28.0,0 -161384593,"Trove",purchase,1.0,0 -161384593,"Trove",play,24.0,0 -161384593,"Left 4 Dead 2",purchase,1.0,0 -161384593,"Left 4 Dead 2",play,19.1,0 -161384593,"Aftermath",purchase,1.0,0 -161384593,"Aftermath",play,12.3,0 -161384593,"Team Fortress 2",purchase,1.0,0 -161384593,"Team Fortress 2",play,11.8,0 -161384593,"DC Universe Online",purchase,1.0,0 -161384593,"DC Universe Online",play,7.6,0 -161384593,"AdVenture Capitalist",purchase,1.0,0 -161384593,"AdVenture Capitalist",play,4.0,0 -161384593,"Clicker Heroes",purchase,1.0,0 -161384593,"Clicker Heroes",play,3.3,0 -161384593,"Blacklight Retribution",purchase,1.0,0 -161384593,"Blacklight Retribution",play,3.2,0 -161384593,"APB Reloaded",purchase,1.0,0 -161384593,"APB Reloaded",play,3.2,0 -161384593,"theHunter",purchase,1.0,0 -161384593,"theHunter",play,2.9,0 -161384593,"Fallen Earth",purchase,1.0,0 -161384593,"Fallen Earth",play,1.7,0 -161384593,"Warframe",purchase,1.0,0 -161384593,"Warframe",play,1.5,0 -161384593,"PlanetSide 2",purchase,1.0,0 -161384593,"PlanetSide 2",play,1.3,0 -161384593,"Heroes & Generals",purchase,1.0,0 -161384593,"Heroes & Generals",play,1.2,0 -161384593,"Gotham City Impostors Free To Play",purchase,1.0,0 -161384593,"Gotham City Impostors Free To Play",play,0.7,0 -161384593,"Soldier Front 2",purchase,1.0,0 -161384593,"Soldier Front 2",play,0.7,0 -161384593,"Tactical Intervention",purchase,1.0,0 -161384593,"Tactical Intervention",play,0.6,0 -161384593,"SMITE",purchase,1.0,0 -161384593,"SMITE",play,0.6,0 -161384593,"BLOCKADE 3D",purchase,1.0,0 -161384593,"BLOCKADE 3D",play,0.6,0 -161384593,"War Thunder",purchase,1.0,0 -161384593,"War Thunder",play,0.4,0 -161384593,"Crusaders of the Lost Idols",purchase,1.0,0 -161384593,"Crusaders of the Lost Idols",play,0.3,0 -161384593,"Dota 2",purchase,1.0,0 -161384593,"Dota 2",play,0.2,0 -161384593,"Dirty Bomb",purchase,1.0,0 -161384593,"Warface",purchase,1.0,0 -161384593,"Mortal Online",purchase,1.0,0 -161384593,"NEOTOKYO",purchase,1.0,0 -125589748,"Team Fortress 2",purchase,1.0,0 -125589748,"Team Fortress 2",play,13.1,0 -125589748,"Dota 2",purchase,1.0,0 -125589748,"Dota 2",play,4.5,0 -125589748,"Infestation Survivor Stories",purchase,1.0,0 -125589748,"Infestation Survivor Stories",play,3.9,0 -125589748,"Garry's Mod",purchase,1.0,0 -125589748,"Garry's Mod",play,3.1,0 -125589748,"Insurgency Modern Infantry Combat",purchase,1.0,0 -125589748,"Insurgency Modern Infantry Combat",play,1.6,0 -125589748,"Sniper Elite V2",purchase,1.0,0 -125589748,"Sniper Elite V2",play,1.4,0 -125589748,"Left 4 Dead 2",purchase,1.0,0 -125589748,"Left 4 Dead 2",play,0.9,0 -125589748,"Dino D-Day",purchase,1.0,0 -125589748,"Dino D-Day",play,0.2,0 -125589748,"Dead Island Epidemic",purchase,1.0,0 -125589748,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -125589748,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -91690667,"Counter-Strike Global Offensive",purchase,1.0,0 -91690667,"Counter-Strike Global Offensive",play,509.0,0 -91690667,"MapleStory",purchase,1.0,0 -91690667,"MapleStory",play,372.0,0 -91690667,"Sid Meier's Civilization V",purchase,1.0,0 -91690667,"Sid Meier's Civilization V",play,216.0,0 -91690667,"Terraria",purchase,1.0,0 -91690667,"Terraria",play,164.0,0 -91690667,"The Binding of Isaac Rebirth",purchase,1.0,0 -91690667,"The Binding of Isaac Rebirth",play,77.0,0 -91690667,"TERA",purchase,1.0,0 -91690667,"TERA",play,60.0,0 -91690667,"Dead Island",purchase,1.0,0 -91690667,"Dead Island",play,43.0,0 -91690667,"The Binding of Isaac",purchase,1.0,0 -91690667,"The Binding of Isaac",play,42.0,0 -91690667,"Borderlands 2",purchase,1.0,0 -91690667,"Borderlands 2",play,36.0,0 -91690667,"Dead Island Riptide",purchase,1.0,0 -91690667,"Dead Island Riptide",play,33.0,0 -91690667,"Realm of the Mad God",purchase,1.0,0 -91690667,"Realm of the Mad God",play,32.0,0 -91690667,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -91690667,"Dark Souls Prepare to Die Edition",play,21.0,0 -91690667,"Sanctum",purchase,1.0,0 -91690667,"Sanctum",play,8.5,0 -91690667,"Fable III",purchase,1.0,0 -91690667,"Fable III",play,8.0,0 -91690667,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -91690667,"Tom Clancy's Ghost Recon Phantoms - NA",play,7.9,0 -91690667,"Dying Light",purchase,1.0,0 -91690667,"Dying Light",play,6.7,0 -91690667,"Worms Revolution",purchase,1.0,0 -91690667,"Worms Revolution",play,5.1,0 -91690667,"Trine 2",purchase,1.0,0 -91690667,"Trine 2",play,4.4,0 -91690667,"Risk of Rain",purchase,1.0,0 -91690667,"Risk of Rain",play,4.4,0 -91690667,"Ace of Spades",purchase,1.0,0 -91690667,"Ace of Spades",play,3.9,0 -91690667,"Vindictus",purchase,1.0,0 -91690667,"Vindictus",play,2.9,0 -91690667,"Worms Reloaded",purchase,1.0,0 -91690667,"Worms Reloaded",play,2.1,0 -91690667,"VVVVVV",purchase,1.0,0 -91690667,"VVVVVV",play,1.8,0 -91690667,"Nidhogg",purchase,1.0,0 -91690667,"Nidhogg",play,1.8,0 -91690667,"Team Fortress 2",purchase,1.0,0 -91690667,"Team Fortress 2",play,1.5,0 -91690667,"Zombie Driver",purchase,1.0,0 -91690667,"Zombie Driver",play,1.1,0 -91690667,"Starbound",purchase,1.0,0 -91690667,"Starbound",play,0.7,0 -91690667,"Torchlight II",purchase,1.0,0 -91690667,"Torchlight II",play,0.7,0 -91690667,"Europa Universalis IV",purchase,1.0,0 -91690667,"Europa Universalis IV",play,0.5,0 -91690667,"Nosgoth",purchase,1.0,0 -91690667,"Nosgoth",play,0.5,0 -91690667,"Castle Crashers",purchase,1.0,0 -91690667,"Castle Crashers",play,0.5,0 -91690667,"Sanctum 2",purchase,1.0,0 -91690667,"Sanctum 2",play,0.4,0 -91690667,"Sniper Elite Nazi Zombie Army 2",purchase,1.0,0 -91690667,"Sniper Elite Nazi Zombie Army 2",play,0.4,0 -91690667,"Revenge of the Titans",purchase,1.0,0 -91690667,"Revenge of the Titans",play,0.3,0 -91690667,"Magicka",purchase,1.0,0 -91690667,"Magicka",play,0.3,0 -91690667,"RollerCoaster Tycoon Deluxe",purchase,1.0,0 -91690667,"RollerCoaster Tycoon Deluxe",play,0.2,0 -91690667,"Super Meat Boy",purchase,1.0,0 -91690667,"Super Meat Boy",play,0.1,0 -91690667,"Unturned",purchase,1.0,0 -91690667,"Awesomenauts",purchase,1.0,0 -91690667,"Far Cry 3",purchase,1.0,0 -91690667,"Amnesia The Dark Descent",purchase,1.0,0 -91690667,"Bastion",purchase,1.0,0 -91690667,"BioShock",purchase,1.0,0 -91690667,"BioShock 2",purchase,1.0,0 -91690667,"BioShock Infinite",purchase,1.0,0 -91690667,"Braid",purchase,1.0,0 -91690667,"Bunch Of Heroes",purchase,1.0,0 -91690667,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -91690667,"Capsized",purchase,1.0,0 -91690667,"Chivalry Medieval Warfare",purchase,1.0,0 -91690667,"Company of Heroes",purchase,1.0,0 -91690667,"Company of Heroes (New Steam Version)",purchase,1.0,0 -91690667,"Company of Heroes Opposing Fronts",purchase,1.0,0 -91690667,"Crysis 2 Maximum Edition",purchase,1.0,0 -91690667,"Darksiders",purchase,1.0,0 -91690667,"Darksiders II",purchase,1.0,0 -91690667,"Darkspore",purchase,1.0,0 -91690667,"Dead Island Epidemic",purchase,1.0,0 -91690667,"Dead Space",purchase,1.0,0 -91690667,"EDGE",purchase,1.0,0 -91690667,"Eets",purchase,1.0,0 -91690667,"Homefront",purchase,1.0,0 -91690667,"Jamestown",purchase,1.0,0 -91690667,"Left 4 Dead 2",purchase,1.0,0 -91690667,"LIMBO",purchase,1.0,0 -91690667,"Lone Survivor The Director's Cut",purchase,1.0,0 -91690667,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -91690667,"Medal of Honor(TM) Single Player",purchase,1.0,0 -91690667,"Medal of Honor Pre-Order",purchase,1.0,0 -91690667,"Metro 2033",purchase,1.0,0 -91690667,"Mirror's Edge",purchase,1.0,0 -91690667,"Monaco",purchase,1.0,0 -91690667,"MX vs. ATV Reflex",purchase,1.0,0 -91690667,"Nexuiz",purchase,1.0,0 -91690667,"Nexuiz Beta",purchase,1.0,0 -91690667,"Nexuiz STUPID Mode",purchase,1.0,0 -91690667,"Orcs Must Die! 2",purchase,1.0,0 -91690667,"Patch testing for Chivalry",purchase,1.0,0 -91690667,"Psychonauts",purchase,1.0,0 -91690667,"Psychonauts Demo",purchase,1.0,0 -91690667,"Puzzle Agent",purchase,1.0,0 -91690667,"Red Faction",purchase,1.0,0 -91690667,"Red Faction Armageddon",purchase,1.0,0 -91690667,"Red Faction II",purchase,1.0,0 -91690667,"RollerCoaster Tycoon 2 Triple Thrill Pack",purchase,1.0,0 -91690667,"Rust",purchase,1.0,0 -91690667,"Saints Row 2",purchase,1.0,0 -91690667,"Saints Row The Third",purchase,1.0,0 -91690667,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -91690667,"Sniper Elite V2",purchase,1.0,0 -91690667,"Starbound - Unstable",purchase,1.0,0 -91690667,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -91690667,"Supreme Commander",purchase,1.0,0 -91690667,"Supreme Commander Forged Alliance",purchase,1.0,0 -91690667,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -91690667,"Titan Quest",purchase,1.0,0 -91690667,"Titan Quest Immortal Throne",purchase,1.0,0 -91690667,"Tom Clancy's Ghost Recon Phantoms - NA Assault Starter Pack",purchase,1.0,0 -91690667,"Tom Clancy's Ghost Recon Phantoms - NA Looks and Power (Assault)",purchase,1.0,0 -91690667,"Tom Clancy's Ghost Recon Phantoms - NA Looks and Power (Recon)",purchase,1.0,0 -91690667,"Tom Clancy's Ghost Recon Phantoms - NA Support Starter Pack",purchase,1.0,0 -91690667,"Warhammer 40,000 Space Marine",purchase,1.0,0 -91690667,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -91690667,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -91690667,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -91690667,"World of Goo",purchase,1.0,0 -91690667,"XCOM Enemy Unknown",purchase,1.0,0 -91690667,"Zeno Clash",purchase,1.0,0 -235625555,"Half-Life 2 Update",purchase,1.0,0 -235625555,"Strife",purchase,1.0,0 -71323029,"Lead and Gold - Gangs of the Wild West",purchase,1.0,0 -71323029,"Lead and Gold - Gangs of the Wild West",play,7.7,0 -71323029,"Call of Duty Black Ops",purchase,1.0,0 -71323029,"Call of Duty Black Ops",play,5.4,0 -71323029,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -71323029,"Call of Duty Black Ops - Multiplayer",play,0.3,0 -71323029,"Call of Juarez The Cartel",purchase,1.0,0 -71323029,"Call of Juarez The Cartel",play,0.3,0 -95028545,"Terraria",purchase,1.0,0 -95028545,"Terraria",play,193.0,0 -95028545,"Team Fortress 2",purchase,1.0,0 -95028545,"Team Fortress 2",play,0.4,0 -309375103,"East India Company Gold",purchase,1.0,0 -217303525,"Dota 2",purchase,1.0,0 -217303525,"Dota 2",play,20.0,0 -217303525,"BLOCKADE 3D",purchase,1.0,0 -217303525,"Gunscape",purchase,1.0,0 -217303525,"Star Trek Online",purchase,1.0,0 -217303525,"Transformice",purchase,1.0,0 -217303525,"Unturned",purchase,1.0,0 -119187092,"Age of Empires II HD Edition",purchase,1.0,0 -119187092,"Age of Empires II HD Edition",play,26.0,0 -119187092,"Empire Total War",purchase,1.0,0 -119187092,"Empire Total War",play,16.0,0 -36271979,"Counter-Strike Condition Zero",purchase,1.0,0 -36271979,"Counter-Strike Condition Zero",play,36.0,0 -36271979,"Counter-Strike",purchase,1.0,0 -36271979,"Counter-Strike",play,4.1,0 -36271979,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -36271979,"Counter-Strike Condition Zero Deleted Scenes",play,1.7,0 -36271979,"Day of Defeat",purchase,1.0,0 -36271979,"Deathmatch Classic",purchase,1.0,0 -36271979,"Half-Life 2 Deathmatch",purchase,1.0,0 -36271979,"Half-Life 2 Episode One",purchase,1.0,0 -36271979,"Half-Life 2 Lost Coast",purchase,1.0,0 -36271979,"Half-Life Deathmatch Source",purchase,1.0,0 -36271979,"Ricochet",purchase,1.0,0 -165831570,"Dota 2",purchase,1.0,0 -165831570,"Dota 2",play,361.0,0 -93724705,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -93724705,"Call of Duty Modern Warfare 3 - Multiplayer",play,162.0,0 -93724705,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -93724705,"Call of Duty Modern Warfare 2 - Multiplayer",play,16.3,0 -93724705,"Call of Duty Modern Warfare 3",purchase,1.0,0 -93724705,"Call of Duty Modern Warfare 3",play,5.7,0 -93724705,"Call of Duty Modern Warfare 2",purchase,1.0,0 -93724705,"Call of Duty Modern Warfare 2",play,2.9,0 -93724705,"Team Fortress 2",purchase,1.0,0 -93724705,"Team Fortress 2",play,1.2,0 -29873979,"Dota 2",purchase,1.0,0 -29873979,"Dota 2",play,1528.0,0 -29873979,"Counter-Strike Global Offensive",purchase,1.0,0 -29873979,"Counter-Strike Global Offensive",play,91.0,0 -29873979,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -29873979,"Call of Duty Black Ops - Multiplayer",play,78.0,0 -29873979,"Counter-Strike",purchase,1.0,0 -29873979,"Counter-Strike",play,55.0,0 -29873979,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -29873979,"Call of Duty Black Ops II - Multiplayer",play,29.0,0 -29873979,"Farming Simulator 15",purchase,1.0,0 -29873979,"Farming Simulator 15",play,19.4,0 -29873979,"Call of Duty Black Ops III",purchase,1.0,0 -29873979,"Call of Duty Black Ops III",play,10.6,0 -29873979,"Grand Theft Auto V",purchase,1.0,0 -29873979,"Grand Theft Auto V",play,8.0,0 -29873979,"Prison Architect",purchase,1.0,0 -29873979,"Prison Architect",play,7.6,0 -29873979,"ARK Survival Evolved",purchase,1.0,0 -29873979,"ARK Survival Evolved",play,5.7,0 -29873979,"Arma 3",purchase,1.0,0 -29873979,"Arma 3",play,4.8,0 -29873979,"DayZ",purchase,1.0,0 -29873979,"DayZ",play,4.6,0 -29873979,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -29873979,"Call of Duty Black Ops II - Zombies",play,2.0,0 -29873979,"Counter-Strike Source",purchase,1.0,0 -29873979,"Counter-Strike Source",play,1.4,0 -29873979,"DiRT 3",purchase,1.0,0 -29873979,"DiRT 3",play,0.3,0 -29873979,"Left 4 Dead 2",purchase,1.0,0 -29873979,"Arma 2 Operation Arrowhead",purchase,1.0,0 -29873979,"7 Days to Die",purchase,1.0,0 -29873979,"Arma 2",purchase,1.0,0 -29873979,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -29873979,"Arma 3 Zeus",purchase,1.0,0 -29873979,"Call of Duty Black Ops",purchase,1.0,0 -29873979,"Call of Duty Black Ops II",purchase,1.0,0 -29873979,"Cities Skylines",purchase,1.0,0 -29873979,"Counter-Strike Condition Zero",purchase,1.0,0 -29873979,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -29873979,"DiRT 3 Complete Edition",purchase,1.0,0 -29873979,"Dungeon Defenders II",purchase,1.0,0 -29873979,"Path of Exile",purchase,1.0,0 -29873979,"Robocraft",purchase,1.0,0 -29873979,"Sid Meier's Ace Patrol",purchase,1.0,0 -29873979,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -29873979,"Sid Meier's Civilization III Complete",purchase,1.0,0 -29873979,"Sid Meier's Civilization IV",purchase,1.0,0 -29873979,"Sid Meier's Civilization IV",purchase,1.0,0 -29873979,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -29873979,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -29873979,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -29873979,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -29873979,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -29873979,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -29873979,"Sid Meier's Civilization V",purchase,1.0,0 -29873979,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -29873979,"Sid Meier's Railroads!",purchase,1.0,0 -29873979,"The Evil Within",purchase,1.0,0 -29873979,"theHunter",purchase,1.0,0 -29873979,"Total War SHOGUN 2",purchase,1.0,0 -119405428,"Counter-Strike",purchase,1.0,0 -119405428,"Counter-Strike",play,0.5,0 -119405428,"Counter-Strike Condition Zero",purchase,1.0,0 -119405428,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -144021086,"Dota 2",purchase,1.0,0 -144021086,"Dota 2",play,492.0,0 -268640464,"Transformice",purchase,1.0,0 -268640464,"Transformice",play,17.7,0 -247336676,"Dota 2",purchase,1.0,0 -247336676,"Dota 2",play,1.0,0 -247336676,"Chaos Heroes Online",purchase,1.0,0 -247336676,"Counter-Strike Nexon Zombies",purchase,1.0,0 -247336676,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -183240449,"Dota 2",purchase,1.0,0 -183240449,"Dota 2",play,4.2,0 -183240449,"theHunter",purchase,1.0,0 -183240449,"theHunter",play,0.9,0 -125456822,"Dota 2",purchase,1.0,0 -125456822,"Dota 2",play,5.4,0 -125093638,"Dota 2",purchase,1.0,0 -125093638,"Dota 2",play,0.1,0 -64368515,"Left 4 Dead 2",purchase,1.0,0 -64368515,"Left 4 Dead 2",play,11.6,0 -64368515,"Rust",purchase,1.0,0 -64368515,"Rust",play,10.8,0 -64368515,"Unturned",purchase,1.0,0 -64368515,"Unturned",play,5.0,0 -64368515,"Cry of Fear",purchase,1.0,0 -64368515,"Cry of Fear",play,2.8,0 -64368515,"Dirty Bomb",purchase,1.0,0 -64368515,"Don't Starve Together Beta",purchase,1.0,0 -64368515,"Heroes & Generals",purchase,1.0,0 -64368515,"Natural Selection 2",purchase,1.0,0 -64368515,"Sniper Elite V2",purchase,1.0,0 -306971738,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -306971738,"The Elder Scrolls IV Oblivion ",play,4.7,0 -306971738,"Terraria",purchase,1.0,0 -306971738,"Terraria",play,2.3,0 -306971738,"Dragomon Hunter",purchase,1.0,0 -306971738,"Dragomon Hunter",play,0.8,0 -306971738,"Lineage II",purchase,1.0,0 -306971738,"Lineage II",play,0.5,0 -306971738,"Aveyond 3-2 Gates of Night",purchase,1.0,0 -306971738,"Aveyond 3-2 Gates of Night",play,0.3,0 -306971738,"America's Army Proving Grounds",purchase,1.0,0 -306971738,"America's Army Proving Grounds",play,0.1,0 -306971738,"Dragomon Hunter - Welcome Gift",purchase,1.0,0 -209880903,"Garry's Mod",purchase,1.0,0 -209880903,"Garry's Mod",play,3.3,0 -170474212,"Rust",purchase,1.0,0 -170474212,"Rust",play,421.0,0 -170474212,"DayZ",purchase,1.0,0 -170474212,"DayZ",play,82.0,0 -170474212,"Unturned",purchase,1.0,0 -170474212,"Unturned",play,36.0,0 -170474212,"Heroes & Generals",purchase,1.0,0 -170474212,"Heroes & Generals",play,5.6,0 -170474212,"Loadout",purchase,1.0,0 -170474212,"Loadout",play,0.9,0 -170474212,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -170474212,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.4,0 -170474212,"theHunter",purchase,1.0,0 -170474212,"theHunter",play,0.3,0 -170474212,"Dota 2",purchase,1.0,0 -170474212,"Dota 2",play,0.2,0 -170474212,"NEOTOKYO",purchase,1.0,0 -89508629,"Dota 2",purchase,1.0,0 -89508629,"Dota 2",play,231.0,0 -92412666,"Defiance",purchase,1.0,0 -92412666,"Defiance",play,90.0,0 -92412666,"War Thunder",purchase,1.0,0 -210413509,"Age of Empires II HD Edition",purchase,1.0,0 -210413509,"Age of Empires II HD Edition",play,173.0,0 -210413509,"Age of Empires III Complete Collection",purchase,1.0,0 -210413509,"Age of Empires III Complete Collection",play,49.0,0 -210413509,"Total War ROME II - Emperor Edition",purchase,1.0,0 -210413509,"Total War ROME II - Emperor Edition",play,0.7,0 -206556248,"Unturned",purchase,1.0,0 -216983089,"Dota 2",purchase,1.0,0 -216983089,"Dota 2",play,2.9,0 -210177498,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -210177498,"METAL GEAR SOLID V THE PHANTOM PAIN",play,190.0,0 -210177498,"Middle-earth Shadow of Mordor",purchase,1.0,0 -210177498,"Middle-earth Shadow of Mordor",play,30.0,0 -210177498,"Far Cry 4",purchase,1.0,0 -210177498,"Far Cry 4",play,25.0,0 -210177498,"The Evil Within",purchase,1.0,0 -210177498,"The Evil Within",play,24.0,0 -210177498,"Dying Light",purchase,1.0,0 -187462398,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -187462398,"The Witcher 2 Assassins of Kings Enhanced Edition",play,12.2,0 -187462398,"Assassin's Creed IV Black Flag",purchase,1.0,0 -187462398,"Assassin's Creed IV Black Flag",play,6.1,0 -187462398,"The Elder Scrolls V Skyrim",purchase,1.0,0 -187462398,"The Elder Scrolls V Skyrim",play,4.0,0 -187462398,"Magic Duels",purchase,1.0,0 -187462398,"Magic Duels",play,2.6,0 -187462398,"Magic 2015",purchase,1.0,0 -187462398,"Magic 2015",play,1.9,0 -187462398,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -187462398,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -187462398,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -76095365,"Braid",purchase,1.0,0 -76095365,"Machinarium",purchase,1.0,0 -76095365,"Osmos",purchase,1.0,0 -76095365,"Revenge of the Titans",purchase,1.0,0 -166539261,"Counter-Strike Global Offensive",purchase,1.0,0 -166539261,"Counter-Strike Global Offensive",play,110.0,0 -166539261,"Dota 2",purchase,1.0,0 -166539261,"Dota 2",play,23.0,0 -166539261,"TERA",purchase,1.0,0 -166539261,"TERA",play,0.5,0 -166539261,"Nosgoth",purchase,1.0,0 -166539261,"The Mysterious Cities of Gold - Secret Paths",purchase,1.0,0 -299978094,"Football Manager 2016",purchase,1.0,0 -299978094,"Football Manager 2016",play,126.0,0 -132014951,"Team Fortress 2",purchase,1.0,0 -132014951,"Team Fortress 2",play,104.0,0 -132014951,"Counter-Strike Global Offensive",purchase,1.0,0 -132014951,"Counter-Strike Global Offensive",play,65.0,0 -132014951,"War Thunder",purchase,1.0,0 -132014951,"War Thunder",play,52.0,0 -132014951,"Heroes & Generals",purchase,1.0,0 -132014951,"Heroes & Generals",play,34.0,0 -132014951,"PAYDAY 2",purchase,1.0,0 -132014951,"PAYDAY 2",play,21.0,0 -132014951,"Robocraft",purchase,1.0,0 -132014951,"Robocraft",play,13.6,0 -132014951,"No More Room in Hell",purchase,1.0,0 -132014951,"No More Room in Hell",play,11.1,0 -132014951,"Unturned",purchase,1.0,0 -132014951,"Unturned",play,7.9,0 -132014951,"theHunter",purchase,1.0,0 -132014951,"theHunter",play,3.6,0 -132014951,"Euro Truck Simulator 2",purchase,1.0,0 -132014951,"Euro Truck Simulator 2",play,3.4,0 -132014951,"Arma 2",purchase,1.0,0 -132014951,"Arma 2",play,1.0,0 -132014951,"CaesarIA",purchase,1.0,0 -132014951,"CaesarIA",play,1.0,0 -132014951,"FreeStyle2 Street Basketball",purchase,1.0,0 -132014951,"FreeStyle2 Street Basketball",play,0.9,0 -132014951,"Survarium",purchase,1.0,0 -132014951,"Survarium",play,0.7,0 -132014951,"sZone-Online",purchase,1.0,0 -132014951,"sZone-Online",play,0.4,0 -132014951,"APB Reloaded",purchase,1.0,0 -132014951,"APB Reloaded",play,0.3,0 -132014951,"Fallen Earth",purchase,1.0,0 -132014951,"Fallen Earth",play,0.2,0 -132014951,"Happy Wars",purchase,1.0,0 -132014951,"Happy Wars",play,0.2,0 -132014951,"Soccer Manager 2016",purchase,1.0,0 -132014951,"Soccer Manager 2016",play,0.1,0 -132014951,"America's Army 3",purchase,1.0,0 -132014951,"America's Army 3",play,0.1,0 -132014951,"Arma 2 Operation Arrowhead",purchase,1.0,0 -132014951,"Arma 2 DayZ Mod",purchase,1.0,0 -132014951,"BLOCKADE 3D",purchase,1.0,0 -132014951,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -132014951,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -132014951,"Mitos.is The Game",purchase,1.0,0 -132014951,"Red Crucible Firestorm",purchase,1.0,0 -132014951,"Tactical Intervention",purchase,1.0,0 -132014951,"Warface",purchase,1.0,0 -99255590,"Counter-Strike Global Offensive",purchase,1.0,0 -99255590,"Counter-Strike Global Offensive",play,1815.0,0 -99255590,"Counter-Strike",purchase,1.0,0 -99255590,"Counter-Strike",play,1177.0,0 -99255590,"Rocket League",purchase,1.0,0 -99255590,"Rocket League",play,41.0,0 -99255590,"Worms Clan Wars",purchase,1.0,0 -99255590,"Worms Clan Wars",play,3.4,0 -99255590,"Counter-Strike Condition Zero",purchase,1.0,0 -99255590,"Counter-Strike Condition Zero",play,3.3,0 -99255590,"Sniper Elite V2",purchase,1.0,0 -99255590,"Sniper Elite V2",play,2.9,0 -99255590,"PAYDAY The Heist",purchase,1.0,0 -99255590,"PAYDAY The Heist",play,0.6,0 -99255590,"Team Fortress 2",purchase,1.0,0 -99255590,"Team Fortress 2",play,0.2,0 -99255590,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -99255590,"Ricochet",purchase,1.0,0 -99255590,"Deathmatch Classic",purchase,1.0,0 -99255590,"Unturned",purchase,1.0,0 -99255590,"Day of Defeat",purchase,1.0,0 -99255590,"New kind of adventure",purchase,1.0,0 -99255590,"Saints Row IV Inauguration Station",purchase,1.0,0 -99255590,"Stealth Inc 2",purchase,1.0,0 -99255590,"The Mighty Quest For Epic Loot",purchase,1.0,0 -99255590,"Trove",purchase,1.0,0 -27060918,"SiN",purchase,1.0,0 -27060918,"SiN Episodes Emergence",purchase,1.0,0 -27060918,"SiN Multiplayer",purchase,1.0,0 -300518357,"Nosgoth",purchase,1.0,0 -242937979,"Terraria",purchase,1.0,0 -242937979,"Terraria",play,146.0,0 -242937979,"Dishonored",purchase,1.0,0 -242937979,"Dishonored",play,22.0,0 -242937979,"The Elder Scrolls V Skyrim",purchase,1.0,0 -242937979,"The Elder Scrolls V Skyrim",play,15.9,0 -242937979,"Starbound - Unstable",purchase,1.0,0 -242937979,"Starbound - Unstable",play,10.0,0 -242937979,"Team Fortress 2",purchase,1.0,0 -242937979,"Team Fortress 2",play,9.9,0 -242937979,"Torchlight II",purchase,1.0,0 -242937979,"Torchlight II",play,9.3,0 -242937979,"LEGO MARVEL Super Heroes",purchase,1.0,0 -242937979,"LEGO MARVEL Super Heroes",play,4.9,0 -242937979,"Unturned",purchase,1.0,0 -242937979,"Unturned",play,4.7,0 -242937979,"Portal 2",purchase,1.0,0 -242937979,"Portal 2",play,3.9,0 -242937979,"Monaco",purchase,1.0,0 -242937979,"Monaco",play,3.0,0 -242937979,"Don't Starve Together Beta",purchase,1.0,0 -242937979,"Don't Starve Together Beta",play,2.5,0 -242937979,"Saints Row The Third",purchase,1.0,0 -242937979,"Saints Row The Third",play,2.3,0 -242937979,"LEGO The Lord of the Rings",purchase,1.0,0 -242937979,"LEGO The Lord of the Rings",play,2.2,0 -242937979,"Portal",purchase,1.0,0 -242937979,"Portal",play,1.6,0 -242937979,"Fallout New Vegas",purchase,1.0,0 -242937979,"Fallout New Vegas",play,1.4,0 -242937979,"Realm of the Mad God",purchase,1.0,0 -242937979,"Realm of the Mad God",play,0.8,0 -242937979,"Castle Crashers",purchase,1.0,0 -242937979,"Castle Crashers",play,0.7,0 -242937979,"Garry's Mod",purchase,1.0,0 -242937979,"Garry's Mod",play,0.3,0 -242937979,"PlanetSide 2",purchase,1.0,0 -242937979,"PlanetSide 2",play,0.2,0 -242937979,"Starbound",purchase,1.0,0 -242937979,"Starbound",play,0.1,0 -242937979,"Castle Crashers - Blacksmith Pack",purchase,1.0,0 -242937979,"Castle Crashers - Pink Knight Pack",purchase,1.0,0 -242937979,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -242937979,"Fallout New Vegas Dead Money",purchase,1.0,0 -242937979,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -242937979,"Grapple",purchase,1.0,0 -242937979,"Saints Row 2",purchase,1.0,0 -242937979,"Saints Row IV",purchase,1.0,0 -242937979,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -242937979,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -242937979,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -246675065,"Dota 2",purchase,1.0,0 -246675065,"Dota 2",play,12.1,0 -96057546,"Team Fortress 2",purchase,1.0,0 -96057546,"Team Fortress 2",play,62.0,0 -96057546,"Dota 2",purchase,1.0,0 -96057546,"Dota 2",play,2.6,0 -23386002,"Call of Duty Modern Warfare 2",purchase,1.0,0 -23386002,"Call of Duty Modern Warfare 2",play,204.0,0 -23386002,"Call of Duty Black Ops",purchase,1.0,0 -23386002,"Call of Duty Black Ops",play,31.0,0 -23386002,"Fallout 3",purchase,1.0,0 -23386002,"Fallout 3",play,30.0,0 -23386002,"Half-Life Source",purchase,1.0,0 -23386002,"Half-Life Source",play,21.0,0 -23386002,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -23386002,"Call of Duty Modern Warfare 2 - Multiplayer",play,9.4,0 -23386002,"Half-Life 2 Episode Two",purchase,1.0,0 -23386002,"Half-Life 2 Episode Two",play,1.1,0 -23386002,"Half-Life 2 Episode One",purchase,1.0,0 -23386002,"Half-Life 2 Episode One",play,0.2,0 -23386002,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -23386002,"Call of Duty Black Ops - Multiplayer",play,0.1,0 -23386002,"Counter-Strike Source",purchase,1.0,0 -23386002,"Fallout 3 - Mothership Zeta",purchase,1.0,0 -23386002,"Half-Life 2",purchase,1.0,0 -23386002,"Half-Life 2 Deathmatch",purchase,1.0,0 -23386002,"Half-Life 2 Lost Coast",purchase,1.0,0 -23386002,"Half-Life Deathmatch Source",purchase,1.0,0 -23386002,"Portal",purchase,1.0,0 -264816680,"War Thunder",purchase,1.0,0 -264816680,"War Thunder",play,491.0,0 -264816680,"Team Fortress 2",purchase,1.0,0 -264816680,"Team Fortress 2",play,179.0,0 -264816680,"Unturned",purchase,1.0,0 -264816680,"Unturned",play,36.0,0 -264816680,"Clicker Heroes",purchase,1.0,0 -264816680,"Clicker Heroes",play,29.0,0 -264816680,"Robocraft",purchase,1.0,0 -264816680,"Robocraft",play,7.1,0 -264816680,"Realm of the Mad God",purchase,1.0,0 -264816680,"Realm of the Mad God",play,2.4,0 -264816680,"Dota 2",purchase,1.0,0 -264816680,"Dota 2",play,2.0,0 -264816680,"Firefall",purchase,1.0,0 -264816680,"Firefall",play,1.2,0 -264816680,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -264816680,"S.K.I.L.L. - Special Force 2",play,1.1,0 -264816680,"Neverwinter",purchase,1.0,0 -264816680,"Neverwinter",play,1.0,0 -264816680,"Creativerse",purchase,1.0,0 -264816680,"Dungeon Defenders II",purchase,1.0,0 -234514530,"Survarium",purchase,1.0,0 -234514530,"War Thunder",purchase,1.0,0 -191829918,"Loadout",purchase,1.0,0 -191829918,"Loadout",play,2.9,0 -91900241,"Counter-Strike",purchase,1.0,0 -91900241,"Counter-Strike",play,20.0,0 -91900241,"Counter-Strike Condition Zero",purchase,1.0,0 -91900241,"Counter-Strike Condition Zero",play,13.2,0 -91900241,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -91900241,"Counter-Strike Condition Zero Deleted Scenes",play,2.1,0 -124641717,"Dota 2",purchase,1.0,0 -124641717,"Dota 2",play,1406.0,0 -124641717,"Counter-Strike Global Offensive",purchase,1.0,0 -124641717,"Counter-Strike Global Offensive",play,612.0,0 -124641717,"Counter-Strike Source",purchase,1.0,0 -124641717,"Counter-Strike Source",play,136.0,0 -124641717,"DC Universe Online",purchase,1.0,0 -124641717,"DC Universe Online",play,27.0,0 -124641717,"Left 4 Dead 2",purchase,1.0,0 -124641717,"Left 4 Dead 2",play,24.0,0 -124641717,"AdVenture Capitalist",purchase,1.0,0 -124641717,"AdVenture Capitalist",play,22.0,0 -124641717,"Team Fortress 2",purchase,1.0,0 -124641717,"Team Fortress 2",play,10.3,0 -124641717,"Assassin's Creed III",purchase,1.0,0 -124641717,"Assassin's Creed III",play,5.6,0 -124641717,"Serious Sam HD The Second Encounter",purchase,1.0,0 -124641717,"Serious Sam HD The Second Encounter",play,3.2,0 -124641717,"Sniper Elite V2",purchase,1.0,0 -124641717,"Sniper Elite V2",play,2.8,0 -124641717,"Garry's Mod",purchase,1.0,0 -124641717,"Garry's Mod",play,0.7,0 -124641717,"Sakura Clicker",purchase,1.0,0 -124641717,"Sakura Clicker",play,0.3,0 -124641717,"Avadon The Black Fortress",purchase,1.0,0 -124641717,"PAYDAY The Heist",purchase,1.0,0 -124641717,"Zen Bound 2",purchase,1.0,0 -156896203,"Team Fortress 2",purchase,1.0,0 -156896203,"Team Fortress 2",play,0.2,0 -203932908,"Insurgency",purchase,1.0,0 -203932908,"Insurgency",play,0.8,0 -111451741,"Dota 2",purchase,1.0,0 -111451741,"Dota 2",play,366.0,0 -46009414,"Counter-Strike Source",purchase,1.0,0 -46009414,"Counter-Strike Source",play,81.0,0 -46009414,"Half-Life 2 Lost Coast",purchase,1.0,0 -46009414,"Half-Life 2 Lost Coast",play,0.9,0 -46009414,"Half-Life 2 Deathmatch",purchase,1.0,0 -46009414,"Half-Life 2 Deathmatch",play,0.3,0 -46009414,"Day of Defeat Source",purchase,1.0,0 -46009414,"Day of Defeat Source",play,0.2,0 -191375618,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -75988937,"Alien Swarm",purchase,1.0,0 -75988937,"Alien Swarm",play,1.0,0 -97743306,"Football Manager 2012",purchase,1.0,0 -97743306,"Football Manager 2012",play,209.0,0 -97743306,"Football Manager 2013",purchase,1.0,0 -97743306,"Football Manager 2013",play,13.7,0 -75328197,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -75328197,"Call of Duty Black Ops - Multiplayer",play,5.8,0 -75328197,"Call of Duty Black Ops",purchase,1.0,0 -75328197,"Call of Duty Black Ops",play,5.5,0 -180730288,"Dota 2",purchase,1.0,0 -180730288,"Dota 2",play,0.5,0 -135825356,"Company of Heroes 2",purchase,1.0,0 -135825356,"Company of Heroes 2",play,5.1,0 -189734107,"Counter-Strike Global Offensive",purchase,1.0,0 -189734107,"Counter-Strike Global Offensive",play,1017.0,0 -189734107,"Counter-Strike Source",purchase,1.0,0 -189734107,"Counter-Strike Source",play,74.0,0 -189734107,"Trove",purchase,1.0,0 -189734107,"Trove",play,22.0,0 -189734107,"Counter-Strike Nexon Zombies",purchase,1.0,0 -189734107,"Counter-Strike Nexon Zombies",play,12.5,0 -189734107,"Fallout New Vegas",purchase,1.0,0 -189734107,"Fallout New Vegas",play,7.3,0 -189734107,"Canyon Capers",purchase,1.0,0 -189734107,"Canyon Capers",play,3.8,0 -189734107,"Unturned",purchase,1.0,0 -189734107,"Unturned",play,3.7,0 -189734107,"Frozen Hearth",purchase,1.0,0 -189734107,"Frozen Hearth",play,3.1,0 -189734107,"Saints Row IV",purchase,1.0,0 -189734107,"Saints Row IV",play,1.8,0 -189734107,"Saints Row 2",purchase,1.0,0 -189734107,"Saints Row 2",play,1.7,0 -189734107,"Team Fortress 2",purchase,1.0,0 -189734107,"Team Fortress 2",play,1.1,0 -189734107,"Counter-Strike",purchase,1.0,0 -189734107,"Counter-Strike",play,1.1,0 -189734107,"Assassin's Creed Freedom Cry",purchase,1.0,0 -189734107,"Assassin's Creed Freedom Cry",play,0.6,0 -189734107,"Everlasting Summer",purchase,1.0,0 -189734107,"Everlasting Summer",play,0.5,0 -189734107,"Metro Conflict",purchase,1.0,0 -189734107,"Metro Conflict",play,0.2,0 -189734107,"Narcissu 1st & 2nd",purchase,1.0,0 -189734107,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -189734107,"Age of Empires Online",purchase,1.0,0 -189734107,"Amazing World",purchase,1.0,0 -189734107,"America's Army 3",purchase,1.0,0 -189734107,"America's Army Proving Grounds",purchase,1.0,0 -189734107,"APB Reloaded",purchase,1.0,0 -189734107,"Arcane Saga Online",purchase,1.0,0 -189734107,"Archeblade",purchase,1.0,0 -189734107,"Arctic Combat",purchase,1.0,0 -189734107,"Atlantica Online",purchase,1.0,0 -189734107,"Aura Kingdom",purchase,1.0,0 -189734107,"Bloodline Champions",purchase,1.0,0 -189734107,"Brawl Busters",purchase,1.0,0 -189734107,"Bullet Run",purchase,1.0,0 -189734107,"C9",purchase,1.0,0 -189734107,"Cakewalk Loop Manager",purchase,1.0,0 -189734107,"Champions Online",purchase,1.0,0 -189734107,"Combat Arms",purchase,1.0,0 -189734107,"Construct 2 Free",purchase,1.0,0 -189734107,"Counter-Strike Condition Zero",purchase,1.0,0 -189734107,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -189734107,"CrimeCraft GangWars",purchase,1.0,0 -189734107,"Dead Island Epidemic",purchase,1.0,0 -189734107,"Defiance",purchase,1.0,0 -189734107,"DETOUR",purchase,1.0,0 -189734107,"District 187",purchase,1.0,0 -189734107,"Dragon Nest",purchase,1.0,0 -189734107,"Dragon Nest Europe",purchase,1.0,0 -189734107,"Dragons and Titans",purchase,1.0,0 -189734107,"Dungeon Fighter Online",purchase,1.0,0 -189734107,"Dungeonland",purchase,1.0,0 -189734107,"Dungeon Party",purchase,1.0,0 -189734107,"Dwarfs F2P",purchase,1.0,0 -189734107,"EverQuest Free-to-Play",purchase,1.0,0 -189734107,"EverQuest II",purchase,1.0,0 -189734107,"EVGA PrecisionX 16",purchase,1.0,0 -189734107,"Face of Mankind",purchase,1.0,0 -189734107,"Fallen Earth",purchase,1.0,0 -189734107,"Fiesta Online",purchase,1.0,0 -189734107,"Fiesta Online NA",purchase,1.0,0 -189734107,"Firefall",purchase,1.0,0 -189734107,"Floating Point",purchase,1.0,0 -189734107,"Football Superstars",purchase,1.0,0 -189734107,"Forsaken World ",purchase,1.0,0 -189734107,"Frontline Tactics",purchase,1.0,0 -189734107,"Global Agenda",purchase,1.0,0 -189734107,"Gotham City Impostors Free To Play",purchase,1.0,0 -189734107,"Grand Chase",purchase,1.0,0 -189734107,"Guns and Robots",purchase,1.0,0 -189734107,"Heroes & Generals",purchase,1.0,0 -189734107,"HOMEFRONT Demo",purchase,1.0,0 -189734107,"Hyper Fighters",purchase,1.0,0 -189734107,"La Tale",purchase,1.0,0 -189734107,"Loadout",purchase,1.0,0 -189734107,"Mabinogi",purchase,1.0,0 -189734107,"Magic The Gathering Tactics",purchase,1.0,0 -189734107,"March of War",purchase,1.0,0 -189734107,"Marvel Heroes 2015",purchase,1.0,0 -189734107,"Memoir '44 Online",purchase,1.0,0 -189734107,"MicroVolts Surge",purchase,1.0,0 -189734107,"Moon Breakers",purchase,1.0,0 -189734107,"NEOTOKYO",purchase,1.0,0 -189734107,"Neverwinter",purchase,1.0,0 -189734107,"Nosgoth",purchase,1.0,0 -189734107,"Only If",purchase,1.0,0 -189734107,"Pandora Saga Weapons of Balance",purchase,1.0,0 -189734107,"Panzar",purchase,1.0,0 -189734107,"Path of Exile",purchase,1.0,0 -189734107,"Pinball Arcade",purchase,1.0,0 -189734107,"PlanetSide 2",purchase,1.0,0 -189734107,"Pox Nora",purchase,1.0,0 -189734107,"Puzzle Pirates",purchase,1.0,0 -189734107,"Quantum Rush Online",purchase,1.0,0 -189734107,"RaceRoom Racing Experience ",purchase,1.0,0 -189734107,"Ragnarok Online 2",purchase,1.0,0 -189734107,"Realm of the Mad God",purchase,1.0,0 -189734107,"Reversion - The Escape",purchase,1.0,0 -189734107,"Rise of Incarnates",purchase,1.0,0 -189734107,"Robocraft",purchase,1.0,0 -189734107,"ROSE Online",purchase,1.0,0 -189734107,"Royal Quest",purchase,1.0,0 -189734107,"Rusty Hearts",purchase,1.0,0 -189734107,"Saira",purchase,1.0,0 -189734107,"Shadow Warrior Classic (1997)",purchase,1.0,0 -189734107,"Spiral Knights",purchase,1.0,0 -189734107,"Star Conflict",purchase,1.0,0 -189734107,"Star Trek Online",purchase,1.0,0 -189734107,"Stronghold Kingdoms",purchase,1.0,0 -189734107,"Sunrider Mask of Arcadius",purchase,1.0,0 -189734107,"Super Crate Box",purchase,1.0,0 -189734107,"Super Monday Night Combat",purchase,1.0,0 -189734107,"Tactical Intervention",purchase,1.0,0 -189734107,"The Banner Saga Factions",purchase,1.0,0 -189734107,"The Expendabros",purchase,1.0,0 -189734107,"The Forgotten Ones",purchase,1.0,0 -189734107,"The Lord of the Rings Online",purchase,1.0,0 -189734107,"Thinking with Time Machine",purchase,1.0,0 -189734107,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -189734107,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -189734107,"Tribes Ascend",purchase,1.0,0 -189734107,"Uncharted Waters Online",purchase,1.0,0 -189734107,"Velvet Sundown",purchase,1.0,0 -189734107,"Vindictus",purchase,1.0,0 -189734107,"Warface",purchase,1.0,0 -189734107,"Warframe",purchase,1.0,0 -189734107,"War Inc. Battlezone",purchase,1.0,0 -189734107,"War Thunder",purchase,1.0,0 -189734107,"World of Battles",purchase,1.0,0 -189734107,"World of Guns Gun Disassembly",purchase,1.0,0 -189734107,"Xam",purchase,1.0,0 -125950209,"RACE 07",purchase,1.0,0 -125950209,"RACE 07",play,0.1,0 -125950209,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -125950209,"GT Power Expansion",purchase,1.0,0 -125950209,"STCC II",purchase,1.0,0 -125950209,"The Retro Expansion",purchase,1.0,0 -125950209,"The WTCC 2010 Pack",purchase,1.0,0 -142284353,"Dota 2",purchase,1.0,0 -142284353,"Dota 2",play,1.1,0 -79474322,"Total War ROME II - Emperor Edition",purchase,1.0,0 -79474322,"Total War ROME II - Emperor Edition",play,1339.0,0 -79474322,"The Elder Scrolls V Skyrim",purchase,1.0,0 -79474322,"The Elder Scrolls V Skyrim",play,190.0,0 -79474322,"Total War SHOGUN 2",purchase,1.0,0 -79474322,"Total War SHOGUN 2",play,151.0,0 -79474322,"Eador. Masters of the Broken World",purchase,1.0,0 -79474322,"Eador. Masters of the Broken World",play,147.0,0 -79474322,"The Lord of the Rings War in the North",purchase,1.0,0 -79474322,"The Lord of the Rings War in the North",play,121.0,0 -79474322,"King Arthur II - The Role-playing Wargame",purchase,1.0,0 -79474322,"King Arthur II - The Role-playing Wargame",play,19.6,0 -79474322,"Stronghold 3",purchase,1.0,0 -79474322,"Stronghold 3",play,2.2,0 -79474322,"Life Is Strange",purchase,1.0,0 -79474322,"Life Is Strange",play,1.8,0 -79474322,"Confrontation",purchase,1.0,0 -79474322,"Confrontation",play,1.5,0 -79474322,"IL-2 Sturmovik Cliffs of Dover",purchase,1.0,0 -79474322,"IL-2 Sturmovik Cliffs of Dover",play,0.8,0 -79474322,"Stronghold HD",purchase,1.0,0 -79474322,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -114343925,"Train Simulator",purchase,1.0,0 -114343925,"Train Simulator",play,21.0,0 -36109630,"Day of Defeat Source",purchase,1.0,0 -36109630,"Day of Defeat Source",play,0.6,0 -36109630,"Half-Life 2 Deathmatch",purchase,1.0,0 -36109630,"Half-Life 2 Deathmatch",play,0.1,0 -36109630,"Counter-Strike Source",purchase,1.0,0 -36109630,"Half-Life 2 Lost Coast",purchase,1.0,0 -169845810,"Team Fortress 2",purchase,1.0,0 -169845810,"Team Fortress 2",play,0.7,0 -293929390,"Voxelized",purchase,1.0,0 -186483761,"Counter-Strike Global Offensive",purchase,1.0,0 -186483761,"Counter-Strike Global Offensive",play,610.0,0 -186483761,"Garry's Mod",purchase,1.0,0 -186483761,"Garry's Mod",play,249.0,0 -186483761,"Team Fortress 2",purchase,1.0,0 -186483761,"Team Fortress 2",play,173.0,0 -186483761,"Trove",purchase,1.0,0 -186483761,"Trove",play,139.0,0 -186483761,"Terraria",purchase,1.0,0 -186483761,"Terraria",play,37.0,0 -186483761,"Age of Chivalry",purchase,1.0,0 -186483761,"Age of Chivalry",play,18.8,0 -186483761,"H1Z1",purchase,1.0,0 -186483761,"H1Z1",play,17.7,0 -186483761,"Left 4 Dead 2",purchase,1.0,0 -186483761,"Left 4 Dead 2",play,10.6,0 -186483761,"Saints Row IV",purchase,1.0,0 -186483761,"Saints Row IV",play,8.0,0 -186483761,"Saints Row The Third",purchase,1.0,0 -186483761,"Saints Row The Third",play,7.2,0 -186483761,"Unturned",purchase,1.0,0 -186483761,"Unturned",play,6.9,0 -186483761,"Deadbreed",purchase,1.0,0 -186483761,"Deadbreed",play,6.0,0 -186483761,"Blood of Old",purchase,1.0,0 -186483761,"Blood of Old",play,4.4,0 -186483761,"Skyborn",purchase,1.0,0 -186483761,"Skyborn",play,3.6,0 -186483761,"Battlepaths",purchase,1.0,0 -186483761,"Battlepaths",play,3.3,0 -186483761,"Enclave",purchase,1.0,0 -186483761,"Enclave",play,3.3,0 -186483761,"Super Killer Hornet Resurrection",purchase,1.0,0 -186483761,"Super Killer Hornet Resurrection",play,3.3,0 -186483761,"PAYDAY The Heist",purchase,1.0,0 -186483761,"PAYDAY The Heist",play,3.2,0 -186483761,"RADical ROACH Deluxe Edition",purchase,1.0,0 -186483761,"RADical ROACH Deluxe Edition",play,3.1,0 -186483761,"Jet Gunner",purchase,1.0,0 -186483761,"Jet Gunner",play,2.9,0 -186483761,"Defy Gravity",purchase,1.0,0 -186483761,"Defy Gravity",play,2.8,0 -186483761,"Racer 8",purchase,1.0,0 -186483761,"Racer 8",play,2.7,0 -186483761,"Swipecart",purchase,1.0,0 -186483761,"Swipecart",play,2.5,0 -186483761,"Bad Rats",purchase,1.0,0 -186483761,"Bad Rats",play,1.9,0 -186483761,"Mechanic Escape",purchase,1.0,0 -186483761,"Mechanic Escape",play,1.8,0 -186483761,"Waveform",purchase,1.0,0 -186483761,"Waveform",play,1.8,0 -186483761,"Transformice",purchase,1.0,0 -186483761,"Transformice",play,1.5,0 -186483761,"Uriel's Chasm",purchase,1.0,0 -186483761,"Uriel's Chasm",play,1.4,0 -186483761,"Dead Bits",purchase,1.0,0 -186483761,"Dead Bits",play,1.3,0 -186483761,"Warframe",purchase,1.0,0 -186483761,"Warframe",play,1.2,0 -186483761,"Caster",purchase,1.0,0 -186483761,"Caster",play,0.8,0 -186483761,"Soul Gambler",purchase,1.0,0 -186483761,"Soul Gambler",play,0.7,0 -186483761,"POSTAL",purchase,1.0,0 -186483761,"POSTAL",play,0.6,0 -186483761,"Squishy the Suicidal Pig",purchase,1.0,0 -186483761,"Squishy the Suicidal Pig",play,0.6,0 -186483761,"Pressured",purchase,1.0,0 -186483761,"Pressured",play,0.5,0 -186483761,"Gear Up",purchase,1.0,0 -186483761,"Gear Up",play,0.4,0 -186483761,"Robocraft",purchase,1.0,0 -186483761,"Robocraft",play,0.2,0 -186483761,"AdVenture Capitalist",purchase,1.0,0 -186483761,"AdVenture Capitalist",play,0.2,0 -186483761,"Brick-Force",purchase,1.0,0 -186483761,"Dizzel",purchase,1.0,0 -186483761,"Chaos Domain",purchase,1.0,0 -186483761,"Clicker Heroes",purchase,1.0,0 -186483761,"Commando Jack",purchase,1.0,0 -186483761,"Copa Petrobras de Marcas",purchase,1.0,0 -186483761,"Earth 2150 The Moon Project",purchase,1.0,0 -186483761,"East India Company Gold",purchase,1.0,0 -186483761,"Fractured Space",purchase,1.0,0 -186483761,"H1Z1 Test Server",purchase,1.0,0 -186483761,"iBomber Defense Pacific",purchase,1.0,0 -186483761,"Litil Divil",purchase,1.0,0 -186483761,"Loadout",purchase,1.0,0 -186483761,"Magicka Wizard Wars",purchase,1.0,0 -186483761,"Mitos.is The Game",purchase,1.0,0 -186483761,"PAYDAY The Web Series - Episode 1",purchase,1.0,0 -186483761,"Pid ",purchase,1.0,0 -186483761,"PlanetSide 2",purchase,1.0,0 -186483761,"Ratz Instagib 2.0",purchase,1.0,0 -186483761,"Saints Row 2",purchase,1.0,0 -186483761,"Soul Gambler Artbook & Soundtrack",purchase,1.0,0 -186483761,"Space Hack",purchase,1.0,0 -186483761,"Super Monday Night Combat",purchase,1.0,0 -186483761,"TERA",purchase,1.0,0 -186483761,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -186483761,"Toribash",purchase,1.0,0 -186483761,"Tribes Ascend",purchase,1.0,0 -97622055,"Team Fortress 2",purchase,1.0,0 -97622055,"Team Fortress 2",play,212.0,0 -97622055,"The Binding of Isaac Rebirth",purchase,1.0,0 -97622055,"The Binding of Isaac Rebirth",play,76.0,0 -97622055,"Dota 2",purchase,1.0,0 -97622055,"Dota 2",play,9.7,0 -97622055,"Awesomenauts",purchase,1.0,0 -97622055,"Awesomenauts",play,3.9,0 -97622055,"Amnesia The Dark Descent",purchase,1.0,0 -97622055,"Crash Time II",purchase,1.0,0 -97622055,"Deadbreed",purchase,1.0,0 -97622055,"Teleglitch Die More Edition",purchase,1.0,0 -263482524,"Unturned",purchase,1.0,0 -263482524,"Unturned",play,18.9,0 -975449,"Team Fortress 2",purchase,1.0,0 -975449,"Team Fortress 2",play,458.0,0 -975449,"Left 4 Dead 2",purchase,1.0,0 -975449,"Left 4 Dead 2",play,212.0,0 -975449,"Left 4 Dead",purchase,1.0,0 -975449,"Left 4 Dead",play,158.0,0 -975449,"Just Cause 2",purchase,1.0,0 -975449,"Just Cause 2",play,98.0,0 -975449,"Batman Arkham City GOTY",purchase,1.0,0 -975449,"Batman Arkham City GOTY",play,58.0,0 -975449,"Dota 2",purchase,1.0,0 -975449,"Dota 2",play,54.0,0 -975449,"Assassin's Creed III",purchase,1.0,0 -975449,"Assassin's Creed III",play,54.0,0 -975449,"Assassin's Creed II",purchase,1.0,0 -975449,"Assassin's Creed II",play,48.0,0 -975449,"Portal 2",purchase,1.0,0 -975449,"Portal 2",play,44.0,0 -975449,"The Elder Scrolls V Skyrim",purchase,1.0,0 -975449,"The Elder Scrolls V Skyrim",play,43.0,0 -975449,"XCOM Enemy Unknown",purchase,1.0,0 -975449,"XCOM Enemy Unknown",play,41.0,0 -975449,"Magicka",purchase,1.0,0 -975449,"Magicka",play,39.0,0 -975449,"Napoleon Total War",purchase,1.0,0 -975449,"Napoleon Total War",play,37.0,0 -975449,"Counter-Strike Global Offensive",purchase,1.0,0 -975449,"Counter-Strike Global Offensive",play,36.0,0 -975449,"Assassin's Creed Revelations",purchase,1.0,0 -975449,"Assassin's Creed Revelations",play,32.0,0 -975449,"Deus Ex Human Revolution",purchase,1.0,0 -975449,"Deus Ex Human Revolution",play,32.0,0 -975449,"Mass Effect",purchase,1.0,0 -975449,"Mass Effect",play,32.0,0 -975449,"Empire Total War",purchase,1.0,0 -975449,"Empire Total War",play,30.0,0 -975449,"Total War SHOGUN 2",purchase,1.0,0 -975449,"Total War SHOGUN 2",play,29.0,0 -975449,"Amnesia The Dark Descent",purchase,1.0,0 -975449,"Amnesia The Dark Descent",play,26.0,0 -975449,"RAGE",purchase,1.0,0 -975449,"RAGE",play,24.0,0 -975449,"Rogue Legacy",purchase,1.0,0 -975449,"Rogue Legacy",play,20.0,0 -975449,"Serious Sam 3 BFE",purchase,1.0,0 -975449,"Serious Sam 3 BFE",play,19.9,0 -975449,"Defense Grid The Awakening",purchase,1.0,0 -975449,"Defense Grid The Awakening",play,19.1,0 -975449,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -975449,"Batman Arkham Asylum GOTY Edition",play,17.9,0 -975449,"Crysis 2 Maximum Edition",purchase,1.0,0 -975449,"Crysis 2 Maximum Edition",play,16.1,0 -975449,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -975449,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,16.1,0 -975449,"DeathSpank",purchase,1.0,0 -975449,"DeathSpank",play,15.1,0 -975449,"Max Payne 3",purchase,1.0,0 -975449,"Max Payne 3",play,13.6,0 -975449,"Titan Quest Immortal Throne",purchase,1.0,0 -975449,"Titan Quest Immortal Throne",play,13.2,0 -975449,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -975449,"The Secret of Monkey Island Special Edition",play,12.7,0 -975449,"Frozen Synapse",purchase,1.0,0 -975449,"Frozen Synapse",play,12.6,0 -975449,"Metro 2033",purchase,1.0,0 -975449,"Metro 2033",play,12.3,0 -975449,"Hotline Miami",purchase,1.0,0 -975449,"Hotline Miami",play,11.6,0 -975449,"Brothers in Arms Hell's Highway",purchase,1.0,0 -975449,"Brothers in Arms Hell's Highway",play,11.5,0 -975449,"Borderlands",purchase,1.0,0 -975449,"Borderlands",play,10.7,0 -975449,"Renegade Ops",purchase,1.0,0 -975449,"Renegade Ops",play,10.2,0 -975449,"Killing Floor",purchase,1.0,0 -975449,"Killing Floor",play,10.0,0 -975449,"Alien Swarm",purchase,1.0,0 -975449,"Alien Swarm",play,9.8,0 -975449,"Orcs Must Die!",purchase,1.0,0 -975449,"Orcs Must Die!",play,9.1,0 -975449,"Mount & Blade Warband",purchase,1.0,0 -975449,"Mount & Blade Warband",play,8.5,0 -975449,"VVVVVV",purchase,1.0,0 -975449,"VVVVVV",play,7.7,0 -975449,"Mirror's Edge",purchase,1.0,0 -975449,"Mirror's Edge",play,7.6,0 -975449,"Blocks That Matter",purchase,1.0,0 -975449,"Blocks That Matter",play,7.5,0 -975449,"Half-Life 2",purchase,1.0,0 -975449,"Half-Life 2",play,7.5,0 -975449,"Half-Life 2 Deathmatch",purchase,1.0,0 -975449,"Half-Life 2 Deathmatch",play,7.3,0 -975449,"Awesomenauts",purchase,1.0,0 -975449,"Awesomenauts",play,7.2,0 -975449,"The Ball",purchase,1.0,0 -975449,"The Ball",play,6.9,0 -975449,"Torchlight",purchase,1.0,0 -975449,"Torchlight",play,6.8,0 -975449,"Galcon Fusion",purchase,1.0,0 -975449,"Galcon Fusion",play,6.7,0 -975449,"Spec Ops The Line",purchase,1.0,0 -975449,"Spec Ops The Line",play,6.3,0 -975449,"The Path",purchase,1.0,0 -975449,"The Path",play,6.3,0 -975449,"PAYDAY The Heist",purchase,1.0,0 -975449,"PAYDAY The Heist",play,6.1,0 -975449,"Torchlight II",purchase,1.0,0 -975449,"Torchlight II",play,5.9,0 -975449,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -975449,"Deus Ex Human Revolution - The Missing Link",play,5.8,0 -975449,"The Stanley Parable",purchase,1.0,0 -975449,"The Stanley Parable",play,5.8,0 -975449,"Zeno Clash",purchase,1.0,0 -975449,"Zeno Clash",play,5.6,0 -975449,"Plain Sight",purchase,1.0,0 -975449,"Plain Sight",play,5.4,0 -975449,"Dead Island",purchase,1.0,0 -975449,"Dead Island",play,5.2,0 -975449,"Portal",purchase,1.0,0 -975449,"Portal",play,5.1,0 -975449,"Thief Deadly Shadows",purchase,1.0,0 -975449,"Thief Deadly Shadows",play,4.9,0 -975449,"Terraria",purchase,1.0,0 -975449,"Terraria",play,4.8,0 -975449,"Serious Sam HD The Second Encounter",purchase,1.0,0 -975449,"Serious Sam HD The Second Encounter",play,4.5,0 -975449,"Crysis Warhead",purchase,1.0,0 -975449,"Crysis Warhead",play,4.5,0 -975449,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -975449,"Vampire The Masquerade - Bloodlines",play,4.4,0 -975449,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -975449,"Burnout Paradise The Ultimate Box",play,4.2,0 -975449,"Saints Row The Third",purchase,1.0,0 -975449,"Saints Row The Third",play,4.2,0 -975449,"Day of Defeat Source",purchase,1.0,0 -975449,"Day of Defeat Source",play,4.1,0 -975449,"Dungeons of Dredmor",purchase,1.0,0 -975449,"Dungeons of Dredmor",play,4.0,0 -975449,"The Walking Dead",purchase,1.0,0 -975449,"The Walking Dead",play,3.8,0 -975449,"McPixel",purchase,1.0,0 -975449,"McPixel",play,3.6,0 -975449,"Call of Duty World at War",purchase,1.0,0 -975449,"Call of Duty World at War",play,3.6,0 -975449,"Braid",purchase,1.0,0 -975449,"Braid",play,3.5,0 -975449,"Gratuitous Space Battles",purchase,1.0,0 -975449,"Gratuitous Space Battles",play,3.5,0 -975449,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -975449,"Rising Storm/Red Orchestra 2 Multiplayer",play,3.4,0 -975449,"Rock of Ages",purchase,1.0,0 -975449,"Rock of Ages",play,3.4,0 -975449,"Counter-Strike Source",purchase,1.0,0 -975449,"Counter-Strike Source",play,3.3,0 -975449,"The Typing of The Dead Overkill",purchase,1.0,0 -975449,"The Typing of The Dead Overkill",play,3.2,0 -975449,"Psychonauts",purchase,1.0,0 -975449,"Psychonauts",play,3.2,0 -975449,"Tomb Raider",purchase,1.0,0 -975449,"Tomb Raider",play,3.1,0 -975449,"Tales of Maj'Eyal",purchase,1.0,0 -975449,"Tales of Maj'Eyal",play,3.0,0 -975449,"SpaceChem",purchase,1.0,0 -975449,"SpaceChem",play,3.0,0 -975449,"Half-Life Blue Shift",purchase,1.0,0 -975449,"Half-Life Blue Shift",play,2.9,0 -975449,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -975449,"Galactic Civilizations II Ultimate Edition",play,2.9,0 -975449,"Faerie Solitaire",purchase,1.0,0 -975449,"Faerie Solitaire",play,2.8,0 -975449,"Europa Universalis III",purchase,1.0,0 -975449,"Europa Universalis III",play,2.7,0 -975449,"FTL Faster Than Light",purchase,1.0,0 -975449,"FTL Faster Than Light",play,2.7,0 -975449,"Alan Wake",purchase,1.0,0 -975449,"Alan Wake",play,2.6,0 -975449,"Super Meat Boy",purchase,1.0,0 -975449,"Super Meat Boy",play,2.5,0 -975449,"King's Bounty Crossworlds",purchase,1.0,0 -975449,"King's Bounty Crossworlds",play,2.5,0 -975449,"SteamWorld Dig",purchase,1.0,0 -975449,"SteamWorld Dig",play,2.5,0 -975449,"Stacking",purchase,1.0,0 -975449,"Stacking",play,2.4,0 -975449,"The Binding of Isaac",purchase,1.0,0 -975449,"The Binding of Isaac",play,2.3,0 -975449,"Revenge of the Titans",purchase,1.0,0 -975449,"Revenge of the Titans",play,2.3,0 -975449,"King's Bounty Armored Princess",purchase,1.0,0 -975449,"King's Bounty Armored Princess",play,2.3,0 -975449,"Madballs in...Babo Invasion",purchase,1.0,0 -975449,"Madballs in...Babo Invasion",play,2.3,0 -975449,"Legend of Grimrock",purchase,1.0,0 -975449,"Legend of Grimrock",play,2.1,0 -975449,"A.R.E.S.",purchase,1.0,0 -975449,"A.R.E.S.",play,2.1,0 -975449,"BIT.TRIP RUNNER",purchase,1.0,0 -975449,"BIT.TRIP RUNNER",play,2.1,0 -975449,"Age of Chivalry",purchase,1.0,0 -975449,"Age of Chivalry",play,2.0,0 -975449,"Offspring Fling!",purchase,1.0,0 -975449,"Offspring Fling!",play,1.9,0 -975449,"DEFCON",purchase,1.0,0 -975449,"DEFCON",play,1.9,0 -975449,"Shadowgrounds",purchase,1.0,0 -975449,"Shadowgrounds",play,1.8,0 -975449,"Bulletstorm",purchase,1.0,0 -975449,"Bulletstorm",play,1.8,0 -975449,"MacGuffin's Curse",purchase,1.0,0 -975449,"MacGuffin's Curse",play,1.7,0 -975449,"Space Pirates and Zombies",purchase,1.0,0 -975449,"Space Pirates and Zombies",play,1.7,0 -975449,"Costume Quest",purchase,1.0,0 -975449,"Costume Quest",play,1.7,0 -975449,"Far Cry 2",purchase,1.0,0 -975449,"Far Cry 2",play,1.7,0 -975449,"Batman Arkham City",purchase,1.0,0 -975449,"Batman Arkham City",play,1.7,0 -975449,"Wings of Prey",purchase,1.0,0 -975449,"Wings of Prey",play,1.4,0 -975449,"Iron Grip Warlord",purchase,1.0,0 -975449,"Iron Grip Warlord",play,1.3,0 -975449,"Star Trek Online",purchase,1.0,0 -975449,"Star Trek Online",play,1.3,0 -975449,"Atom Zombie Smasher ",purchase,1.0,0 -975449,"Atom Zombie Smasher ",play,1.3,0 -975449,"Sanctum",purchase,1.0,0 -975449,"Sanctum",play,1.3,0 -975449,"Poker Night at the Inventory",purchase,1.0,0 -975449,"Poker Night at the Inventory",play,1.3,0 -975449,"Trine",purchase,1.0,0 -975449,"Trine",play,1.2,0 -975449,"Half-Life",purchase,1.0,0 -975449,"Half-Life",play,1.2,0 -975449,"Multiwinia",purchase,1.0,0 -975449,"Multiwinia",play,1.2,0 -975449,"Jamestown",purchase,1.0,0 -975449,"Jamestown",play,1.2,0 -975449,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -975449,"Red Faction Guerrilla Steam Edition",play,1.1,0 -975449,"Rome Total War",purchase,1.0,0 -975449,"Rome Total War",play,1.1,0 -975449,"Tomb Raider Anniversary",purchase,1.0,0 -975449,"Tomb Raider Anniversary",play,1.1,0 -975449,"DiRT 3 Complete Edition",purchase,1.0,0 -975449,"DiRT 3 Complete Edition",play,1.1,0 -975449,"DogFighter",purchase,1.0,0 -975449,"DogFighter",play,1.0,0 -975449,"Teleglitch Die More Edition",purchase,1.0,0 -975449,"Teleglitch Die More Edition",play,0.9,0 -975449,"Prince of Persia",purchase,1.0,0 -975449,"Prince of Persia",play,0.9,0 -975449,"Serious Sam HD The First Encounter",purchase,1.0,0 -975449,"Serious Sam HD The First Encounter",play,0.8,0 -975449,"DiRT 3",purchase,1.0,0 -975449,"DiRT 3",play,0.8,0 -975449,"Far Cry 3",purchase,1.0,0 -975449,"Far Cry 3",play,0.8,0 -975449,"Darksiders II",purchase,1.0,0 -975449,"Darksiders II",play,0.7,0 -975449,"Sleeping Dogs",purchase,1.0,0 -975449,"Sleeping Dogs",play,0.7,0 -975449,"Proteus",purchase,1.0,0 -975449,"Proteus",play,0.7,0 -975449,"Avadon The Black Fortress",purchase,1.0,0 -975449,"Avadon The Black Fortress",play,0.7,0 -975449,"Machinarium",purchase,1.0,0 -975449,"Machinarium",play,0.6,0 -975449,"Swords and Soldiers HD",purchase,1.0,0 -975449,"Swords and Soldiers HD",play,0.6,0 -975449,"Hard Reset",purchase,1.0,0 -975449,"Hard Reset",play,0.6,0 -975449,"The Dark Eye Chains of Satinav",purchase,1.0,0 -975449,"The Dark Eye Chains of Satinav",play,0.5,0 -975449,"Foul Play",purchase,1.0,0 -975449,"Foul Play",play,0.5,0 -975449,"Mark of the Ninja",purchase,1.0,0 -975449,"Mark of the Ninja",play,0.5,0 -975449,"A Valley Without Wind 2",purchase,1.0,0 -975449,"A Valley Without Wind 2",play,0.5,0 -975449,"Shadow Warrior",purchase,1.0,0 -975449,"Shadow Warrior",play,0.5,0 -975449,"Fate of the World",purchase,1.0,0 -975449,"Fate of the World",play,0.5,0 -975449,"Race The Sun",purchase,1.0,0 -975449,"Race The Sun",play,0.5,0 -975449,"Vessel",purchase,1.0,0 -975449,"Vessel",play,0.4,0 -975449,"Insurgency Modern Infantry Combat",purchase,1.0,0 -975449,"Insurgency Modern Infantry Combat",play,0.4,0 -975449,"Far Cry 3 Blood Dragon",purchase,1.0,0 -975449,"Far Cry 3 Blood Dragon",play,0.4,0 -975449,"Call of Juarez Gunslinger",purchase,1.0,0 -975449,"Call of Juarez Gunslinger",play,0.4,0 -975449,"Foreign Legion Buckets of Blood",purchase,1.0,0 -975449,"Foreign Legion Buckets of Blood",play,0.4,0 -975449,"Gemini Rue",purchase,1.0,0 -975449,"Gemini Rue",play,0.4,0 -975449,"Wargame European Escalation",purchase,1.0,0 -975449,"Wargame European Escalation",play,0.4,0 -975449,"And Yet It Moves",purchase,1.0,0 -975449,"And Yet It Moves",play,0.4,0 -975449,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -975449,"Dark Messiah of Might & Magic Single Player",play,0.4,0 -975449,"Geometry Wars Retro Evolved",purchase,1.0,0 -975449,"Geometry Wars Retro Evolved",play,0.4,0 -975449,"Shadow Man",purchase,1.0,0 -975449,"Shadow Man",play,0.3,0 -975449,"Cave Story+",purchase,1.0,0 -975449,"Cave Story+",play,0.3,0 -975449,"BioShock",purchase,1.0,0 -975449,"BioShock",play,0.3,0 -975449,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -975449,"Just Cause 2 Multiplayer Mod",play,0.3,0 -975449,"Half-Life Opposing Force",purchase,1.0,0 -975449,"Half-Life Opposing Force",play,0.3,0 -975449,"Scoregasm",purchase,1.0,0 -975449,"Scoregasm",play,0.3,0 -975449,"Garry's Mod",purchase,1.0,0 -975449,"Garry's Mod",play,0.3,0 -975449,"Cogs",purchase,1.0,0 -975449,"Cogs",play,0.3,0 -975449,"Osmos",purchase,1.0,0 -975449,"Osmos",play,0.3,0 -975449,"Shank",purchase,1.0,0 -975449,"Shank",play,0.3,0 -975449,"Painkiller Hell & Damnation",purchase,1.0,0 -975449,"Painkiller Hell & Damnation",play,0.3,0 -975449,"Saira",purchase,1.0,0 -975449,"Saira",play,0.3,0 -975449,"Confrontation",purchase,1.0,0 -975449,"Confrontation",play,0.3,0 -975449,"PC Gamer",purchase,1.0,0 -975449,"PC Gamer",play,0.3,0 -975449,"The Ship",purchase,1.0,0 -975449,"The Ship",play,0.2,0 -975449,"Dear Esther",purchase,1.0,0 -975449,"Dear Esther",play,0.2,0 -975449,"Team Fortress Classic",purchase,1.0,0 -975449,"Team Fortress Classic",play,0.2,0 -975449,"SimCity 4 Deluxe",purchase,1.0,0 -975449,"SimCity 4 Deluxe",play,0.2,0 -975449,"DeathSpank Thongs Of Virtue",purchase,1.0,0 -975449,"DeathSpank Thongs Of Virtue",play,0.2,0 -975449,"inMomentum",purchase,1.0,0 -975449,"inMomentum",play,0.2,0 -975449,"Anomaly Warzone Earth",purchase,1.0,0 -975449,"Anomaly Warzone Earth",play,0.2,0 -975449,"Unepic",purchase,1.0,0 -975449,"Unepic",play,0.2,0 -975449,"Cities XL Platinum",purchase,1.0,0 -975449,"Cities XL Platinum",play,0.2,0 -975449,"I Have No Mouth, and I Must Scream",purchase,1.0,0 -975449,"I Have No Mouth, and I Must Scream",play,0.2,0 -975449,"Half-Life 2 Episode Two",purchase,1.0,0 -975449,"Half-Life 2 Episode Two",play,0.2,0 -975449,"TRAUMA",purchase,1.0,0 -975449,"TRAUMA",play,0.2,0 -975449,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -975449,"Sam & Max 301 The Penal Zone",play,0.2,0 -975449,"Galaxy on Fire 2 Full HD",purchase,1.0,0 -975449,"Galaxy on Fire 2 Full HD",play,0.2,0 -975449,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -975449,"The Incredible Adventures of Van Helsing",play,0.2,0 -975449,"The Ship Tutorial",purchase,1.0,0 -975449,"The Ship Tutorial",play,0.2,0 -975449,"World of Goo",purchase,1.0,0 -975449,"World of Goo",play,0.2,0 -975449,"Steel Storm Burning Retribution",purchase,1.0,0 -975449,"Steel Storm Burning Retribution",play,0.2,0 -975449,"Jolly Rover",purchase,1.0,0 -975449,"Jolly Rover",play,0.2,0 -975449,"Crysis Wars",purchase,1.0,0 -975449,"Crysis Wars",play,0.2,0 -975449,"Super Monday Night Combat",purchase,1.0,0 -975449,"Super Monday Night Combat",play,0.2,0 -975449,"Trials 2 Second Edition",purchase,1.0,0 -975449,"Trials 2 Second Edition",play,0.1,0 -975449,"Counter-Strike",purchase,1.0,0 -975449,"Counter-Strike",play,0.1,0 -975449,"Zombie Shooter 2",purchase,1.0,0 -975449,"Zombie Shooter 2",play,0.1,0 -975449,"Air Conflicts Pacific Carriers",purchase,1.0,0 -975449,"Air Conflicts Pacific Carriers",play,0.1,0 -975449,"Natural Selection 2",purchase,1.0,0 -975449,"Natural Selection 2",play,0.1,0 -975449,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -975449,"Command and Conquer Red Alert 3 - Uprising",play,0.1,0 -975449,"Shatter",purchase,1.0,0 -975449,"Shatter",play,0.1,0 -975449,"To the Moon",purchase,1.0,0 -975449,"To the Moon",play,0.1,0 -975449,"Project Zomboid",purchase,1.0,0 -975449,"Project Zomboid",play,0.1,0 -975449,"Titan Quest",purchase,1.0,0 -975449,"Titan Quest",play,0.1,0 -975449,"Nimbus",purchase,1.0,0 -975449,"Nimbus",play,0.1,0 -975449,"Your Doodles Are Bugged!",purchase,1.0,0 -975449,"Your Doodles Are Bugged!",play,0.1,0 -975449,"Doc Clock The Toasted Sandwich of Time",purchase,1.0,0 -975449,"Doc Clock The Toasted Sandwich of Time",play,0.1,0 -975449,"Defense Grid 2",purchase,1.0,0 -975449,"Defense Grid 2",play,0.1,0 -975449,"Dust An Elysian Tail",purchase,1.0,0 -975449,"Wizorb",purchase,1.0,0 -975449,"Snapshot",purchase,1.0,0 -975449,"AI War Fleet Command",purchase,1.0,0 -975449,"Vertex Dispenser",purchase,1.0,0 -975449,"Snuggle Truck",purchase,1.0,0 -975449,"Guacamelee! Gold Edition",purchase,1.0,0 -975449,"Wallace & Gromit Ep 1 Fright of the Bumblebees",purchase,1.0,0 -975449,"Dungeonland",purchase,1.0,0 -975449,"Cortex Command",purchase,1.0,0 -975449,"Dwarfs!?",purchase,1.0,0 -975449,"Worms Clan Wars",purchase,1.0,0 -975449,"Rochard",purchase,1.0,0 -975449,"Alien Zombie Megadeath",purchase,1.0,0 -975449,"Aquaria",purchase,1.0,0 -975449,"War of the Roses",purchase,1.0,0 -975449,"Monaco",purchase,1.0,0 -975449,"Thunder Wolves",purchase,1.0,0 -975449,"Home",purchase,1.0,0 -975449,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",purchase,1.0,0 -975449,"Hack, Slash, Loot",purchase,1.0,0 -975449,"Monster Loves You!",purchase,1.0,0 -975449,"Avernum Escape From the Pit",purchase,1.0,0 -975449,"Shadowgrounds Survivor",purchase,1.0,0 -975449,"Blackwell Deception",purchase,1.0,0 -975449,"Warlock - Master of the Arcane",purchase,1.0,0 -975449,"Darwinia",purchase,1.0,0 -975449,"Windosill",purchase,1.0,0 -975449,"The Swapper",purchase,1.0,0 -975449,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -975449,"Finding Teddy",purchase,1.0,0 -975449,"Avernum 4",purchase,1.0,0 -975449,"Geneforge 5",purchase,1.0,0 -975449,"EDGE",purchase,1.0,0 -975449,"Little Inferno",purchase,1.0,0 -975449,"Geneforge 1",purchase,1.0,0 -975449,"Nethergate Resurrection",purchase,1.0,0 -975449,"Eufloria",purchase,1.0,0 -975449,"Closure",purchase,1.0,0 -975449,"Thomas Was Alone",purchase,1.0,0 -975449,"Zeno Clash 2",purchase,1.0,0 -975449,"Ricochet",purchase,1.0,0 -975449,"Alan Wake's American Nightmare",purchase,1.0,0 -975449,"Anna - Extended Edition",purchase,1.0,0 -975449,"Antichamber",purchase,1.0,0 -975449,"ArcaniA",purchase,1.0,0 -975449,"Arma Cold War Assault",purchase,1.0,0 -975449,"A Valley Without Wind",purchase,1.0,0 -975449,"Avernum 5",purchase,1.0,0 -975449,"Avernum 6",purchase,1.0,0 -975449,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -975449,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -975449,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -975449,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -975449,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -975449,"Ben There, Dan That!",purchase,1.0,0 -975449,"Blood Bowl Legendary Edition",purchase,1.0,0 -975449,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -975449,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -975449,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -975449,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -975449,"Brothers - A Tale of Two Sons",purchase,1.0,0 -975449,"Brtal Legend",purchase,1.0,0 -975449,"Bullet Candy",purchase,1.0,0 -975449,"Crayon Physics Deluxe",purchase,1.0,0 -975449,"Darkest Hour Europe '44-'45",purchase,1.0,0 -975449,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -975449,"Day of Defeat",purchase,1.0,0 -975449,"Deadlight",purchase,1.0,0 -975449,"Deadlight Original Soundtrack",purchase,1.0,0 -975449,"Deathmatch Classic",purchase,1.0,0 -975449,"Defense Grid Resurgence Map Pack 1",purchase,1.0,0 -975449,"Defense Grid Resurgence Map Pack 2 ",purchase,1.0,0 -975449,"Defense Grid Resurgence Map Pack 3",purchase,1.0,0 -975449,"Defense Grid Resurgence Map Pack 4",purchase,1.0,0 -975449,"Dino D-Day",purchase,1.0,0 -975449,"Divinity II Developer's Cut",purchase,1.0,0 -975449,"DOOM II Hell on Earth",purchase,1.0,0 -975449,"Dungeonland - All access pass",purchase,1.0,0 -975449,"Eets Munchies",purchase,1.0,0 -975449,"Eufloria HD",purchase,1.0,0 -975449,"Eufloria HD Original Soundtrack",purchase,1.0,0 -975449,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -975449,"FEZ",purchase,1.0,0 -975449,"Finding Teddy Soundtrack",purchase,1.0,0 -975449,"Floating Point",purchase,1.0,0 -975449,"Game of Thrones ",purchase,1.0,0 -975449,"Geneforge 2",purchase,1.0,0 -975449,"Geneforge 3",purchase,1.0,0 -975449,"Geneforge 4",purchase,1.0,0 -975449,"Giana Sisters Twisted Dreams",purchase,1.0,0 -975449,"Gish",purchase,1.0,0 -975449,"Gunpoint",purchase,1.0,0 -975449,"Hacker Evolution - Untold",purchase,1.0,0 -975449,"Hacker Evolution Duality",purchase,1.0,0 -975449,"Half-Life 2 Episode One",purchase,1.0,0 -975449,"Half-Life 2 Lost Coast",purchase,1.0,0 -975449,"Hammerfight",purchase,1.0,0 -975449,"Hammerwatch",purchase,1.0,0 -975449,"Hard Reset Exile DLC",purchase,1.0,0 -975449,"Hector Ep 1",purchase,1.0,0 -975449,"Hector Ep 2",purchase,1.0,0 -975449,"Hector Ep 3",purchase,1.0,0 -975449,"Indie Game The Movie",purchase,1.0,0 -975449,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -975449,"Lara Croft and the Guardian of Light",purchase,1.0,0 -975449,"Leviathan Warships",purchase,1.0,0 -975449,"Lugaru HD ",purchase,1.0,0 -975449,"Magicka Nippon",purchase,1.0,0 -975449,"Magicka Vietnam",purchase,1.0,0 -975449,"Magicka Wizard's Survival Kit",purchase,1.0,0 -975449,"Mare Nostrum",purchase,1.0,0 -975449,"Master Levels for DOOM II",purchase,1.0,0 -975449,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -975449,"Medieval II Total War",purchase,1.0,0 -975449,"Medieval II Total War Kingdoms",purchase,1.0,0 -975449,"Memoria",purchase,1.0,0 -975449,"Midnight Club II",purchase,1.0,0 -975449,"NightSky",purchase,1.0,0 -975449,"Oddworld Abe's Oddysee",purchase,1.0,0 -975449,"On the Rain-Slick Precipice of Darkness, Episode One",purchase,1.0,0 -975449,"On the Rain-Slick Precipice of Darkness, Episode Two",purchase,1.0,0 -975449,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",purchase,1.0,0 -975449,"Penumbra Overture",purchase,1.0,0 -975449,"PixelJunk Monsters Ultimate",purchase,1.0,0 -975449,"PlanetSide 2",purchase,1.0,0 -975449,"Portal Stories Mel",purchase,1.0,0 -975449,"Psychonauts Demo",purchase,1.0,0 -975449,"Puzzle Agent",purchase,1.0,0 -975449,"Puzzle Agent 2",purchase,1.0,0 -975449,"RAW - Realms of Ancient War",purchase,1.0,0 -975449,"Red Faction Armageddon",purchase,1.0,0 -975449,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -975449,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -975449,"Risen 2 - Dark Waters",purchase,1.0,0 -975449,"Robocraft",purchase,1.0,0 -975449,"Sacred 2 Gold",purchase,1.0,0 -975449,"Saints Row 2",purchase,1.0,0 -975449,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -975449,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -975449,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -975449,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -975449,"Samorost 2",purchase,1.0,0 -975449,"Serious Sam Classic The First Encounter",purchase,1.0,0 -975449,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -975449,"Serious Sam Classics Revolution",purchase,1.0,0 -975449,"Shank 2",purchase,1.0,0 -975449,"Sine Mora",purchase,1.0,0 -975449,"SkyDrift",purchase,1.0,0 -975449,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -975449,"Sniper Elite V2",purchase,1.0,0 -975449,"SpellForce 2 - Faith in Destiny",purchase,1.0,0 -975449,"Supreme Commander",purchase,1.0,0 -975449,"Supreme Commander Forged Alliance",purchase,1.0,0 -975449,"Tales of Maj'Eyal - Ashes of Urh'Rok",purchase,1.0,0 -975449,"The Baconing",purchase,1.0,0 -975449,"The Expendabros",purchase,1.0,0 -975449,"The Guild II",purchase,1.0,0 -975449,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -975449,"The Ship Single Player",purchase,1.0,0 -975449,"The Showdown Effect",purchase,1.0,0 -975449,"Time Gentlemen, Please!",purchase,1.0,0 -975449,"Trine 2",purchase,1.0,0 -975449,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -975449,"Uplink",purchase,1.0,0 -975449,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -975449,"Wallace & Gromit Ep 2 The Last Resort",purchase,1.0,0 -975449,"Wallace & Gromit Ep 3 Muzzled!",purchase,1.0,0 -975449,"Wallace & Gromit Ep 4 The Bogey Man",purchase,1.0,0 -975449,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -975449,"War of the Roses Kingmaker",purchase,1.0,0 -975449,"War of the Roses Balance Beta",purchase,1.0,0 -975449,"Without Within",purchase,1.0,0 -975449,"XCOM Enemy Within",purchase,1.0,0 -975449,"Zen Bound 2",purchase,1.0,0 -975449,"Zombie Shooter",purchase,1.0,0 -140207602,"Metro Last Light",purchase,1.0,0 -140207602,"Metro Last Light",play,4.5,0 -245874516,"H1Z1",purchase,1.0,0 -245874516,"H1Z1",play,20.0,0 -245874516,"H1Z1 Test Server",purchase,1.0,0 -245874516,"Path of Exile",purchase,1.0,0 -245874516,"Robocraft",purchase,1.0,0 -245874516,"Warframe",purchase,1.0,0 -267722020,"Dota 2",purchase,1.0,0 -267722020,"Dota 2",play,5.0,0 -268200944,"Counter-Strike Global Offensive",purchase,1.0,0 -268200944,"Counter-Strike Global Offensive",play,138.0,0 -268200944,"Unturned",purchase,1.0,0 -191975517,"Dota 2",purchase,1.0,0 -191975517,"Dota 2",play,107.0,0 -191975517,"Marvel Heroes 2015",purchase,1.0,0 -191975517,"Path of Exile",purchase,1.0,0 -191975517,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -154683982,"Team Fortress 2",purchase,1.0,0 -154683982,"Team Fortress 2",play,7.5,0 -216866073,"Dota 2",purchase,1.0,0 -216866073,"Dota 2",play,2.2,0 -216866073,"GunZ 2 The Second Duel",purchase,1.0,0 -48984341,"Half-Life 2 Deathmatch",purchase,1.0,0 -48984341,"Half-Life 2 Deathmatch",play,733.0,0 -48984341,"Half-Life 2",purchase,1.0,0 -48984341,"Half-Life 2",play,15.4,0 -48984341,"Half-Life 2 Episode Two",purchase,1.0,0 -48984341,"Half-Life 2 Episode Two",play,6.9,0 -48984341,"Half-Life 2 Episode One",purchase,1.0,0 -48984341,"Half-Life 2 Episode One",play,4.3,0 -48984341,"Half-Life",purchase,1.0,0 -48984341,"Half-Life",play,2.2,0 -48984341,"Portal",purchase,1.0,0 -48984341,"Portal",play,1.2,0 -48984341,"Audiosurf",purchase,1.0,0 -48984341,"Audiosurf",play,0.6,0 -48984341,"Team Fortress 2",purchase,1.0,0 -48984341,"Team Fortress 2",play,0.3,0 -48984341,"Half-Life 2 Lost Coast",purchase,1.0,0 -112764199,"Empire Total War",purchase,1.0,0 -112764199,"Empire Total War",play,0.8,0 -291512840,"Dota 2",purchase,1.0,0 -291512840,"Dota 2",play,1.8,0 -291512840,"GunZ 2 The Second Duel",purchase,1.0,0 -291512840,"Ragnarok",purchase,1.0,0 -49482847,"Dota 2",purchase,1.0,0 -49482847,"Dota 2",play,0.1,0 -54531801,"DiRT 2",purchase,1.0,0 -125979393,"Train Simulator",purchase,1.0,0 -125979393,"Train Simulator",play,4.4,0 -125979393,"Poly Bridge",purchase,1.0,0 -125979393,"Poly Bridge",play,3.1,0 -144762614,"Dota 2",purchase,1.0,0 -144762614,"Dota 2",play,1967.0,0 -144762614,"Counter-Strike Global Offensive",purchase,1.0,0 -144762614,"Counter-Strike Global Offensive",play,483.0,0 -144762614,"Trove",purchase,1.0,0 -144762614,"Trove",play,125.0,0 -144762614,"Don't Starve Together Beta",purchase,1.0,0 -144762614,"Don't Starve Together Beta",play,28.0,0 -144762614,"Unturned",purchase,1.0,0 -144762614,"Unturned",play,14.5,0 -144762614,"Don't Starve",purchase,1.0,0 -144762614,"Don't Starve",play,0.4,0 -144762614,"Don't Starve Reign of Giants",purchase,1.0,0 -144762614,"HAWKEN",purchase,1.0,0 -144762614,"Survarium",purchase,1.0,0 -98805508,"Sid Meier's Civilization V",purchase,1.0,0 -98805508,"Sid Meier's Civilization V",play,344.0,0 -180735937,"Dota 2",purchase,1.0,0 -180735937,"Dota 2",play,3.4,0 -180115904,"Dota 2",purchase,1.0,0 -180115904,"Dota 2",play,3.1,0 -72717958,"Dota 2",purchase,1.0,0 -72717958,"Dota 2",play,1173.0,0 -72717958,"Counter-Strike Global Offensive",purchase,1.0,0 -72717958,"Counter-Strike Global Offensive",play,891.0,0 -72717958,"Counter-Strike Source",purchase,1.0,0 -72717958,"Counter-Strike Source",play,631.0,0 -72717958,"Team Fortress 2",purchase,1.0,0 -72717958,"Team Fortress 2",play,24.0,0 -72717958,"Half-Life 2 Deathmatch",purchase,1.0,0 -72717958,"Half-Life 2 Deathmatch",play,17.7,0 -72717958,"FreeStyle2 Street Basketball",purchase,1.0,0 -72717958,"FreeStyle2 Street Basketball",play,7.0,0 -72717958,"Alien Swarm",purchase,1.0,0 -72717958,"Alien Swarm",play,1.3,0 -72717958,"EasyAntiCheat eSports",purchase,1.0,0 -72717958,"EasyAntiCheat eSports",play,1.1,0 -72717958,"Day of Defeat Source",purchase,1.0,0 -72717958,"Day of Defeat Source",play,0.2,0 -72717958,"Super Monday Night Combat",purchase,1.0,0 -72717958,"Super Monday Night Combat",play,0.2,0 -72717958,"Warface",purchase,1.0,0 -72717958,"Heroes & Generals",purchase,1.0,0 -72717958,"Half-Life 2 Lost Coast",purchase,1.0,0 -72717958,"Super Hexagon",purchase,1.0,0 -286230424,"Unturned",purchase,1.0,0 -286230424,"Unturned",play,1.6,0 -286230424,"Dota 2",purchase,1.0,0 -286230424,"Dota 2",play,0.2,0 -191821689,"The Ultimate DOOM",purchase,1.0,0 -191821689,"The Ultimate DOOM",play,5.1,0 -191821689,"DOOM II Hell on Earth",purchase,1.0,0 -191821689,"Final DOOM",purchase,1.0,0 -191821689,"Master Levels for DOOM II",purchase,1.0,0 -192848461,"DayZ",purchase,1.0,0 -192848461,"DayZ",play,1.9,0 -159515274,"Left 4 Dead 2",purchase,1.0,0 -107818793,"Prison Architect",purchase,1.0,0 -107818793,"Prison Architect",play,147.0,0 -107818793,"Grand Theft Auto V",purchase,1.0,0 -107818793,"Grand Theft Auto V",play,63.0,0 -107818793,"Game Dev Tycoon",purchase,1.0,0 -107818793,"Game Dev Tycoon",play,39.0,0 -107818793,"Unturned",purchase,1.0,0 -107818793,"Unturned",play,34.0,0 -107818793,"Robocraft",purchase,1.0,0 -107818793,"Robocraft",play,20.0,0 -107818793,"Team Fortress 2",purchase,1.0,0 -107818793,"Team Fortress 2",play,13.7,0 -107818793,"Loadout",purchase,1.0,0 -107818793,"Loadout",play,10.1,0 -107818793,"Child of Light",purchase,1.0,0 -107818793,"Child of Light",play,6.9,0 -107818793,"Rust",purchase,1.0,0 -107818793,"Rust",play,6.4,0 -107818793,"Garry's Mod",purchase,1.0,0 -107818793,"Garry's Mod",play,3.9,0 -107818793,"The Elder Scrolls V Skyrim",purchase,1.0,0 -107818793,"The Elder Scrolls V Skyrim",play,2.9,0 -107818793,"Warface",purchase,1.0,0 -107818793,"Warface",play,1.7,0 -107818793,"ARK Survival Evolved",purchase,1.0,0 -107818793,"ARK Survival Evolved",play,1.6,0 -107818793,"The Forest",purchase,1.0,0 -107818793,"The Forest",play,1.0,0 -107818793,"Dizzel",purchase,1.0,0 -107818793,"Dizzel",play,0.6,0 -107818793,"Guns and Robots",purchase,1.0,0 -107818793,"Guns and Robots",play,0.6,0 -107818793,"theHunter",purchase,1.0,0 -107818793,"theHunter",play,0.3,0 -107818793,"NEOTOKYO",purchase,1.0,0 -107818793,"Royal Quest",purchase,1.0,0 -107818793,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -174716529,"Dota 2",purchase,1.0,0 -174716529,"Dota 2",play,19.9,0 -302813048,"Dota 2",purchase,1.0,0 -302813048,"Dota 2",play,0.4,0 -247136904,"Dota 2",purchase,1.0,0 -247136904,"Dota 2",play,1.4,0 -211792463,"TOME Immortal Arena",purchase,1.0,0 -211792463,"TOME Immortal Arena",play,0.3,0 -99129765,"Warhammer 40,000 Space Marine",purchase,1.0,0 -99129765,"Warhammer 40,000 Space Marine",play,95.0,0 -99129765,"Aliens vs. Predator",purchase,1.0,0 -99129765,"Aliens vs. Predator",play,7.2,0 -99129765,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -99129765,"Warhammer 40,000 Dawn of War II Retribution",play,5.5,0 -184378349,"Counter-Strike Global Offensive",purchase,1.0,0 -184378349,"Counter-Strike Global Offensive",play,62.0,0 -187109020,"Dota 2",purchase,1.0,0 -187109020,"Dota 2",play,1.6,0 -197237005,"Dota 2",purchase,1.0,0 -197237005,"Dota 2",play,340.0,0 -197237005,"Counter-Strike Global Offensive",purchase,1.0,0 -197237005,"Counter-Strike Global Offensive",play,187.0,0 -197237005,"PlanetSide 2",purchase,1.0,0 -197237005,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -197237005,"War Thunder",purchase,1.0,0 -33865373,"The Elder Scrolls V Skyrim",purchase,1.0,0 -33865373,"The Elder Scrolls V Skyrim",play,345.0,0 -33865373,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -33865373,"The Elder Scrolls IV Oblivion ",play,239.0,0 -33865373,"Fallout New Vegas",purchase,1.0,0 -33865373,"Fallout New Vegas",play,198.0,0 -33865373,"Sid Meier's Civilization IV",purchase,1.0,0 -33865373,"Sid Meier's Civilization IV",play,135.0,0 -33865373,"Fallout 3",purchase,1.0,0 -33865373,"Fallout 3",play,134.0,0 -33865373,"Team Fortress 2",purchase,1.0,0 -33865373,"Team Fortress 2",play,129.0,0 -33865373,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -33865373,"Kingdoms of Amalur Reckoning",play,83.0,0 -33865373,"The Elder Scrolls III Morrowind",purchase,1.0,0 -33865373,"The Elder Scrolls III Morrowind",play,66.0,0 -33865373,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -33865373,"Red Faction Guerrilla Steam Edition",play,63.0,0 -33865373,"Portal 2",purchase,1.0,0 -33865373,"Portal 2",play,49.0,0 -33865373,"Left 4 Dead",purchase,1.0,0 -33865373,"Left 4 Dead",play,45.0,0 -33865373,"Deus Ex Human Revolution",purchase,1.0,0 -33865373,"Deus Ex Human Revolution",play,35.0,0 -33865373,"Dishonored",purchase,1.0,0 -33865373,"Dishonored",play,32.0,0 -33865373,"Tomb Raider",purchase,1.0,0 -33865373,"Tomb Raider",play,29.0,0 -33865373,"Torchlight",purchase,1.0,0 -33865373,"Torchlight",play,28.0,0 -33865373,"BioShock",purchase,1.0,0 -33865373,"BioShock",play,24.0,0 -33865373,"Torchlight II",purchase,1.0,0 -33865373,"Torchlight II",play,23.0,0 -33865373,"Darksiders",purchase,1.0,0 -33865373,"Darksiders",play,19.8,0 -33865373,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -33865373,"Sid Meier's Civilization IV Beyond the Sword",play,19.8,0 -33865373,"RAGE",purchase,1.0,0 -33865373,"RAGE",play,19.5,0 -33865373,"Dust An Elysian Tail",purchase,1.0,0 -33865373,"Dust An Elysian Tail",play,19.0,0 -33865373,"Child of Light",purchase,1.0,0 -33865373,"Child of Light",play,16.1,0 -33865373,"BioShock Infinite",purchase,1.0,0 -33865373,"BioShock Infinite",play,15.6,0 -33865373,"Legend of Grimrock",purchase,1.0,0 -33865373,"Legend of Grimrock",play,15.1,0 -33865373,"Spec Ops The Line",purchase,1.0,0 -33865373,"Spec Ops The Line",play,14.6,0 -33865373,"Painkiller Gold Edition",purchase,1.0,0 -33865373,"Painkiller Gold Edition",play,14.1,0 -33865373,"Ori and the Blind Forest",purchase,1.0,0 -33865373,"Ori and the Blind Forest",play,13.9,0 -33865373,"BioShock 2",purchase,1.0,0 -33865373,"BioShock 2",play,13.6,0 -33865373,"Half-Life 2",purchase,1.0,0 -33865373,"Half-Life 2",play,12.6,0 -33865373,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -33865373,"Batman Arkham Asylum GOTY Edition",play,12.2,0 -33865373,"Unreal Gold",purchase,1.0,0 -33865373,"Unreal Gold",play,12.1,0 -33865373,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -33865373,"Call of Duty 4 Modern Warfare",play,10.9,0 -33865373,"Far Cry 3 Blood Dragon",purchase,1.0,0 -33865373,"Far Cry 3 Blood Dragon",play,10.8,0 -33865373,"Left 4 Dead 2",purchase,1.0,0 -33865373,"Left 4 Dead 2",play,10.6,0 -33865373,"Unreal Tournament 2004",purchase,1.0,0 -33865373,"Unreal Tournament 2004",play,10.5,0 -33865373,"Trine 2",purchase,1.0,0 -33865373,"Trine 2",play,10.3,0 -33865373,"Bastion",purchase,1.0,0 -33865373,"Bastion",play,9.6,0 -33865373,"Batman Arkham City GOTY",purchase,1.0,0 -33865373,"Batman Arkham City GOTY",play,9.6,0 -33865373,"Rogue Legacy",purchase,1.0,0 -33865373,"Rogue Legacy",play,9.1,0 -33865373,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -33865373,"The Secret of Monkey Island Special Edition",play,8.6,0 -33865373,"Red Faction Armageddon",purchase,1.0,0 -33865373,"Red Faction Armageddon",play,8.5,0 -33865373,"Crysis",purchase,1.0,0 -33865373,"Crysis",play,8.1,0 -33865373,"Terraria",purchase,1.0,0 -33865373,"Terraria",play,8.0,0 -33865373,"Dota 2",purchase,1.0,0 -33865373,"Dota 2",play,7.9,0 -33865373,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -33865373,"Max Payne 2 The Fall of Max Payne",play,7.6,0 -33865373,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -33865373,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,7.4,0 -33865373,"Grand Theft Auto Vice City",purchase,1.0,0 -33865373,"Grand Theft Auto Vice City",play,7.2,0 -33865373,"Return to Castle Wolfenstein",purchase,1.0,0 -33865373,"Return to Castle Wolfenstein",play,7.0,0 -33865373,"Max Payne",purchase,1.0,0 -33865373,"Max Payne",play,6.7,0 -33865373,"Amnesia The Dark Descent",purchase,1.0,0 -33865373,"Amnesia The Dark Descent",play,6.7,0 -33865373,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -33865373,"F.E.A.R. 2 Project Origin",play,6.7,0 -33865373,"F.E.A.R. 3",purchase,1.0,0 -33865373,"F.E.A.R. 3",play,6.6,0 -33865373,"F.E.A.R.",purchase,1.0,0 -33865373,"F.E.A.R.",play,6.6,0 -33865373,"Recettear An Item Shop's Tale",purchase,1.0,0 -33865373,"Recettear An Item Shop's Tale",play,6.4,0 -33865373,"Shovel Knight",purchase,1.0,0 -33865373,"Shovel Knight",play,6.3,0 -33865373,"Chains",purchase,1.0,0 -33865373,"Chains",play,6.3,0 -33865373,"Dear Esther",purchase,1.0,0 -33865373,"Dear Esther",play,6.0,0 -33865373,"FTL Faster Than Light",purchase,1.0,0 -33865373,"FTL Faster Than Light",play,5.8,0 -33865373,"Portal Stories Mel",purchase,1.0,0 -33865373,"Portal Stories Mel",play,5.7,0 -33865373,"Quake II",purchase,1.0,0 -33865373,"Quake II",play,5.7,0 -33865373,"McPixel",purchase,1.0,0 -33865373,"McPixel",play,5.5,0 -33865373,"Trine",purchase,1.0,0 -33865373,"Trine",play,5.5,0 -33865373,"Just Cause",purchase,1.0,0 -33865373,"Just Cause",play,5.3,0 -33865373,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -33865373,"Deus Ex Human Revolution - The Missing Link",play,5.3,0 -33865373,"Portal",purchase,1.0,0 -33865373,"Portal",play,5.0,0 -33865373,"Mirror's Edge",purchase,1.0,0 -33865373,"Mirror's Edge",play,5.0,0 -33865373,"Crysis 2 Maximum Edition",purchase,1.0,0 -33865373,"Crysis 2 Maximum Edition",play,4.9,0 -33865373,"Red Faction",purchase,1.0,0 -33865373,"Red Faction",play,4.9,0 -33865373,"Amnesia A Machine for Pigs",purchase,1.0,0 -33865373,"Amnesia A Machine for Pigs",play,4.7,0 -33865373,"Deus Ex Invisible War",purchase,1.0,0 -33865373,"Deus Ex Invisible War",play,4.6,0 -33865373,"Stubbs the Zombie in Rebel Without a Pulse",purchase,1.0,0 -33865373,"Stubbs the Zombie in Rebel Without a Pulse",play,4.4,0 -33865373,"The Vanishing of Ethan Carter",purchase,1.0,0 -33865373,"The Vanishing of Ethan Carter",play,4.4,0 -33865373,"The Room",purchase,1.0,0 -33865373,"The Room",play,4.0,0 -33865373,"Serious Sam HD The First Encounter",purchase,1.0,0 -33865373,"Serious Sam HD The First Encounter",play,4.0,0 -33865373,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -33865373,"F.E.A.R. Perseus Mandate",play,4.0,0 -33865373,"They Bleed Pixels",purchase,1.0,0 -33865373,"They Bleed Pixels",play,3.9,0 -33865373,"Peggle Nights",purchase,1.0,0 -33865373,"Peggle Nights",play,3.8,0 -33865373,"Quake",purchase,1.0,0 -33865373,"Quake",play,3.6,0 -33865373,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -33865373,"Tiny and Big Grandpa's Leftovers",play,3.6,0 -33865373,"F.E.A.R. Extraction Point",purchase,1.0,0 -33865373,"F.E.A.R. Extraction Point",play,3.6,0 -33865373,"LIMBO",purchase,1.0,0 -33865373,"LIMBO",play,3.6,0 -33865373,"10,000,000",purchase,1.0,0 -33865373,"10,000,000",play,3.6,0 -33865373,"FlatOut",purchase,1.0,0 -33865373,"FlatOut",play,3.5,0 -33865373,"Crysis Warhead",purchase,1.0,0 -33865373,"Crysis Warhead",play,3.4,0 -33865373,"Peggle Deluxe",purchase,1.0,0 -33865373,"Peggle Deluxe",play,3.0,0 -33865373,"Super Meat Boy",purchase,1.0,0 -33865373,"Super Meat Boy",play,3.0,0 -33865373,"Brilliant Bob",purchase,1.0,0 -33865373,"Brilliant Bob",play,2.9,0 -33865373,"Killing Floor",purchase,1.0,0 -33865373,"Killing Floor",play,2.9,0 -33865373,"Red Faction II",purchase,1.0,0 -33865373,"Red Faction II",play,2.7,0 -33865373,"DLC Quest",purchase,1.0,0 -33865373,"DLC Quest",play,2.4,0 -33865373,"Quake III Arena",purchase,1.0,0 -33865373,"Quake III Arena",play,2.2,0 -33865373,"Dodge",purchase,1.0,0 -33865373,"Dodge",play,2.1,0 -33865373,"Sid Meier's Civilization IV",purchase,1.0,0 -33865373,"Sid Meier's Civilization IV",play,2.0,0 -33865373,"Just Cause 2",purchase,1.0,0 -33865373,"Just Cause 2",play,1.9,0 -33865373,"Hotline Miami",purchase,1.0,0 -33865373,"Hotline Miami",play,1.7,0 -33865373,"Anodyne",purchase,1.0,0 -33865373,"Anodyne",play,1.7,0 -33865373,"Mass Effect",purchase,1.0,0 -33865373,"Mass Effect",play,1.6,0 -33865373,"To the Moon",purchase,1.0,0 -33865373,"To the Moon",play,1.6,0 -33865373,"Loom",purchase,1.0,0 -33865373,"Loom",play,1.5,0 -33865373,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -33865373,"Plants vs. Zombies Game of the Year",play,1.5,0 -33865373,"Hammerwatch",purchase,1.0,0 -33865373,"Hammerwatch",play,1.4,0 -33865373,"Zombie Shooter 2",purchase,1.0,0 -33865373,"Zombie Shooter 2",play,1.3,0 -33865373,"A Bird Story",purchase,1.0,0 -33865373,"A Bird Story",play,1.3,0 -33865373,"Home",purchase,1.0,0 -33865373,"Home",play,1.1,0 -33865373,"Assassin's Creed",purchase,1.0,0 -33865373,"Assassin's Creed",play,1.1,0 -33865373,"Heretic Shadow of the Serpent Riders",purchase,1.0,0 -33865373,"Heretic Shadow of the Serpent Riders",play,1.1,0 -33865373,"Antichamber",purchase,1.0,0 -33865373,"Antichamber",play,1.1,0 -33865373,"Penumbra Overture",purchase,1.0,0 -33865373,"Penumbra Overture",play,1.1,0 -33865373,"Star Wars Knights of the Old Republic",purchase,1.0,0 -33865373,"Star Wars Knights of the Old Republic",play,1.1,0 -33865373,"Beyond Good & Evil",purchase,1.0,0 -33865373,"Beyond Good & Evil",play,1.0,0 -33865373,"Unreal II The Awakening",purchase,1.0,0 -33865373,"Unreal II The Awakening",play,1.0,0 -33865373,"Far Cry 2",purchase,1.0,0 -33865373,"Far Cry 2",play,0.9,0 -33865373,"You Have to Win the Game",purchase,1.0,0 -33865373,"You Have to Win the Game",play,0.9,0 -33865373,"Dead Space",purchase,1.0,0 -33865373,"Dead Space",play,0.8,0 -33865373,"Half-Life 2 Episode Two",purchase,1.0,0 -33865373,"Half-Life 2 Episode Two",play,0.8,0 -33865373,"Resident Evil / biohazard HD REMASTER",purchase,1.0,0 -33865373,"Resident Evil / biohazard HD REMASTER",play,0.7,0 -33865373,"Wallace & Gromit Ep 1 Fright of the Bumblebees",purchase,1.0,0 -33865373,"Wallace & Gromit Ep 1 Fright of the Bumblebees",play,0.6,0 -33865373,"The Moon Sliver",purchase,1.0,0 -33865373,"The Moon Sliver",play,0.6,0 -33865373,"Prince of Persia The Sands of Time",purchase,1.0,0 -33865373,"Prince of Persia The Sands of Time",play,0.6,0 -33865373,"DOOM II Hell on Earth",purchase,1.0,0 -33865373,"DOOM II Hell on Earth",play,0.6,0 -33865373,"Jazzpunk",purchase,1.0,0 -33865373,"Jazzpunk",play,0.6,0 -33865373,"Zeno Clash",purchase,1.0,0 -33865373,"Zeno Clash",play,0.6,0 -33865373,"GameMaker Studio",purchase,1.0,0 -33865373,"GameMaker Studio",play,0.6,0 -33865373,"The Witcher Enhanced Edition",purchase,1.0,0 -33865373,"The Witcher Enhanced Edition",play,0.6,0 -33865373,"Quake Live",purchase,1.0,0 -33865373,"Quake Live",play,0.5,0 -33865373,"Obulis",purchase,1.0,0 -33865373,"Obulis",play,0.5,0 -33865373,"Gunpoint",purchase,1.0,0 -33865373,"Gunpoint",play,0.5,0 -33865373,"Secrets of Rtikon",purchase,1.0,0 -33865373,"Secrets of Rtikon",play,0.5,0 -33865373,"Star Wars Dark Forces",purchase,1.0,0 -33865373,"Star Wars Dark Forces",play,0.5,0 -33865373,"Bleed",purchase,1.0,0 -33865373,"Bleed",play,0.5,0 -33865373,"Geometry Wars Retro Evolved",purchase,1.0,0 -33865373,"Geometry Wars Retro Evolved",play,0.5,0 -33865373,"The Path",purchase,1.0,0 -33865373,"The Path",play,0.4,0 -33865373,"Bientt l't",purchase,1.0,0 -33865373,"Bientt l't",play,0.4,0 -33865373,"Papers, Please",purchase,1.0,0 -33865373,"Papers, Please",play,0.4,0 -33865373,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -33865373,"Sid Meier's Civilization IV Colonization",play,0.4,0 -33865373,"Organ Trail Director's Cut",purchase,1.0,0 -33865373,"Organ Trail Director's Cut",play,0.4,0 -33865373,"SiN",purchase,1.0,0 -33865373,"SiN",play,0.4,0 -33865373,"Thirty Flights of Loving",purchase,1.0,0 -33865373,"Thirty Flights of Loving",play,0.3,0 -33865373,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -33865373,"S.T.A.L.K.E.R. Call of Pripyat",play,0.3,0 -33865373,"Osmos",purchase,1.0,0 -33865373,"Osmos",play,0.3,0 -33865373,"Alien Swarm",purchase,1.0,0 -33865373,"Alien Swarm",play,0.3,0 -33865373,"Freedom Force",purchase,1.0,0 -33865373,"Freedom Force",play,0.3,0 -33865373,"MURI",purchase,1.0,0 -33865373,"MURI",play,0.3,0 -33865373,"World of Goo",purchase,1.0,0 -33865373,"World of Goo",play,0.3,0 -33865373,"The Way of Life Free Edition",purchase,1.0,0 -33865373,"The Way of Life Free Edition",play,0.2,0 -33865373,"Psychonauts Demo",purchase,1.0,0 -33865373,"Psychonauts Demo",play,0.2,0 -33865373,"Half-Life 2 Deathmatch",purchase,1.0,0 -33865373,"Half-Life 2 Deathmatch",play,0.2,0 -33865373,"Machinarium",purchase,1.0,0 -33865373,"Machinarium",play,0.2,0 -33865373,"Shadow Warrior Classic Redux",purchase,1.0,0 -33865373,"Shadow Warrior Classic Redux",play,0.2,0 -33865373,"Avadon The Black Fortress",purchase,1.0,0 -33865373,"Avadon The Black Fortress",play,0.2,0 -33865373,"Monster Bash",purchase,1.0,0 -33865373,"Monster Bash",play,0.2,0 -33865373,"BIT.TRIP RUNNER",purchase,1.0,0 -33865373,"BIT.TRIP RUNNER",play,0.2,0 -33865373,"Rag Doll Kung Fu",purchase,1.0,0 -33865373,"Rag Doll Kung Fu",play,0.2,0 -33865373,"Serious Sam HD The Second Encounter",purchase,1.0,0 -33865373,"Serious Sam HD The Second Encounter",play,0.2,0 -33865373,"Eradicator",purchase,1.0,0 -33865373,"Eradicator",play,0.2,0 -33865373,"Daikatana",purchase,1.0,0 -33865373,"Daikatana",play,0.2,0 -33865373,"Half-Life",purchase,1.0,0 -33865373,"Half-Life",play,0.2,0 -33865373,"Life of Pixel",purchase,1.0,0 -33865373,"Life of Pixel",play,0.2,0 -33865373,"8BitBoy",purchase,1.0,0 -33865373,"8BitBoy",play,0.2,0 -33865373,"Dark Void Zero",purchase,1.0,0 -33865373,"Dark Void Zero",play,0.2,0 -33865373,"The Graveyard",purchase,1.0,0 -33865373,"The Graveyard",play,0.2,0 -33865373,"Tomb Raider I",purchase,1.0,0 -33865373,"Tomb Raider I",play,0.1,0 -33865373,"Prison Architect",purchase,1.0,0 -33865373,"Prison Architect",play,0.1,0 -33865373,"Quarries of Scred",purchase,1.0,0 -33865373,"Quarries of Scred",play,0.1,0 -33865373,"Grand Theft Auto",purchase,1.0,0 -33865373,"Grand Theft Auto",play,0.1,0 -33865373,"Commander Keen Complete Pack",purchase,1.0,0 -33865373,"Commander Keen Complete Pack",play,0.1,0 -33865373,"Wolfenstein 3D",purchase,1.0,0 -33865373,"Proto Raider",purchase,1.0,0 -33865373,"Pink Hour",purchase,1.0,0 -33865373,"Quake Mission Pack 1 Scourge of Armagon",purchase,1.0,0 -33865373,"realMyst",purchase,1.0,0 -33865373,"Space Quest Collection",purchase,1.0,0 -33865373,"Arctic Adventure",purchase,1.0,0 -33865373,"Pretentious Game",purchase,1.0,0 -33865373,"Wild Metal Country",purchase,1.0,0 -33865373,"Atari 80 Classic Games in One!",purchase,1.0,0 -33865373,"Space Pirates and Zombies",purchase,1.0,0 -33865373,"Vigil Blood Bitterness",purchase,1.0,0 -33865373,"The Ultimate DOOM",purchase,1.0,0 -33865373,"Myst Masterpiece Edition",purchase,1.0,0 -33865373,"Eets",purchase,1.0,0 -33865373,"Spelunx",purchase,1.0,0 -33865373,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -33865373,"Driver San Francisco",purchase,1.0,0 -33865373,"RPG Maker XP",purchase,1.0,0 -33865373,"Blender 2.76b",purchase,1.0,0 -33865373,"Dominique Pamplemousse",purchase,1.0,0 -33865373,"HeXen Beyond Heretic",purchase,1.0,0 -33865373,"Master Levels for DOOM II",purchase,1.0,0 -33865373,"Game Character Hub",purchase,1.0,0 -33865373,"RPG Maker VX Ace",purchase,1.0,0 -33865373,"7 Grand Steps, Step 1 What Ancients Begat",purchase,1.0,0 -33865373,"AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome",purchase,1.0,0 -33865373,"Afterfall Reconquest Episode I",purchase,1.0,0 -33865373,"Alan Wake",purchase,1.0,0 -33865373,"Alan Wake's American Nightmare",purchase,1.0,0 -33865373,"Alice Madness Returns",purchase,1.0,0 -33865373,"Alien Breed 2 Assault",purchase,1.0,0 -33865373,"Alien Breed 3 Descent",purchase,1.0,0 -33865373,"Alien Breed Impact",purchase,1.0,0 -33865373,"Alien Carnage / Halloween Harry",purchase,1.0,0 -33865373,"Aliens versus Predator Classic 2000",purchase,1.0,0 -33865373,"ALLTYNEX Second",purchase,1.0,0 -33865373,"Alpha Kimori Episode One ",purchase,1.0,0 -33865373,"Alpha Protocol",purchase,1.0,0 -33865373,"Always Sometimes Monsters",purchase,1.0,0 -33865373,"Analogue A Hate Story",purchase,1.0,0 -33865373,"Angry Video Game Nerd Adventures",purchase,1.0,0 -33865373,"App Game Kit",purchase,1.0,0 -33865373,"Aquaria",purchase,1.0,0 -33865373,"AR-K",purchase,1.0,0 -33865373,"Arcadia",purchase,1.0,0 -33865373,"Assassin's Creed Brotherhood",purchase,1.0,0 -33865373,"Assassin's Creed II",purchase,1.0,0 -33865373,"Avadon 2 The Corruption",purchase,1.0,0 -33865373,"Avencast",purchase,1.0,0 -33865373,"Avernum Escape From the Pit",purchase,1.0,0 -33865373,"Aveyond 3-1 Lord of Twilight",purchase,1.0,0 -33865373,"A Virus Named TOM",purchase,1.0,0 -33865373,"Avoid Sensory Overload",purchase,1.0,0 -33865373,"A Walk in the Dark",purchase,1.0,0 -33865373,"AXEL",purchase,1.0,0 -33865373,"Axis Game Factory's AGFPRO - Drone Kombat FPS Multi-Player DLC",purchase,1.0,0 -33865373,"Axis Game Factory's AGFPRO - Zombie Survival Pack DLC",purchase,1.0,0 -33865373,"Axis Game Factory's AGFPRO 3.0",purchase,1.0,0 -33865373,"Back to Bed",purchase,1.0,0 -33865373,"Bad Mojo Redux",purchase,1.0,0 -33865373,"Balls of Steel",purchase,1.0,0 -33865373,"Bardbarian",purchase,1.0,0 -33865373,"Batman Arkham City",purchase,1.0,0 -33865373,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -33865373,"Beat Hazard",purchase,1.0,0 -33865373,"Beat Hazard - Shadow Operations Unit",purchase,1.0,0 -33865373,"BEEP",purchase,1.0,0 -33865373,"Ben There, Dan That!",purchase,1.0,0 -33865373,"Betrayer",purchase,1.0,0 -33865373,"Bio Menace",purchase,1.0,0 -33865373,"bit Dungeon II",purchase,1.0,0 -33865373,"BiT Evolution",purchase,1.0,0 -33865373,"Blades of Time",purchase,1.0,0 -33865373,"Blake Stone Aliens of Gold",purchase,1.0,0 -33865373,"Blake Stone Planet Strike",purchase,1.0,0 -33865373,"Blood Bowl Legendary Edition",purchase,1.0,0 -33865373,"Blood Knights",purchase,1.0,0 -33865373,"BloodRayne",purchase,1.0,0 -33865373,"BloodRayne 2",purchase,1.0,0 -33865373,"Bloody Good Time",purchase,1.0,0 -33865373,"Borderlands",purchase,1.0,0 -33865373,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -33865373,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -33865373,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -33865373,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -33865373,"Braid",purchase,1.0,0 -33865373,"Breath of Death VII ",purchase,1.0,0 -33865373,"Brink of Consciousness Dorian Gray Syndrome",purchase,1.0,0 -33865373,"Brink of Consciousness The Lonely Hearts Murders",purchase,1.0,0 -33865373,"Broken Age",purchase,1.0,0 -33865373,"Brothers - A Tale of Two Sons",purchase,1.0,0 -33865373,"Brtal Legend",purchase,1.0,0 -33865373,"Bully Scholarship Edition",purchase,1.0,0 -33865373,"Burn Zombie Burn",purchase,1.0,0 -33865373,"Call of Juarez Gunslinger",purchase,1.0,0 -33865373,"Camera Obscura",purchase,1.0,0 -33865373,"Card City Nights",purchase,1.0,0 -33865373,"Cart Life",purchase,1.0,0 -33865373,"Chantelise",purchase,1.0,0 -33865373,"Cherry Tree High Comedy Club",purchase,1.0,0 -33865373,"Cherry Tree High I! My! Girls!",purchase,1.0,0 -33865373,"Chime",purchase,1.0,0 -33865373,"Chip",purchase,1.0,0 -33865373,"Chronology",purchase,1.0,0 -33865373,"Cities XL Platinum",purchase,1.0,0 -33865373,"Claire",purchase,1.0,0 -33865373,"Closure",purchase,1.0,0 -33865373,"Command and Conquer Red Alert 3",purchase,1.0,0 -33865373,"Company of Heroes",purchase,1.0,0 -33865373,"Company of Heroes (New Steam Version)",purchase,1.0,0 -33865373,"Company of Heroes Opposing Fronts",purchase,1.0,0 -33865373,"Company of Heroes Tales of Valor",purchase,1.0,0 -33865373,"Confrontation",purchase,1.0,0 -33865373,"Construct 2 Free",purchase,1.0,0 -33865373,"Contrast",purchase,1.0,0 -33865373,"Cooking Academy Fire and Knives",purchase,1.0,0 -33865373,"Cosmic Osmo",purchase,1.0,0 -33865373,"Cosmo's Cosmic Adventure",purchase,1.0,0 -33865373,"Counter-Strike",purchase,1.0,0 -33865373,"Counter-Strike Condition Zero",purchase,1.0,0 -33865373,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -33865373,"Crazy Taxi",purchase,1.0,0 -33865373,"Crimsonland",purchase,1.0,0 -33865373,"Crimzon Clover WORLD IGNITION",purchase,1.0,0 -33865373,"Crowntakers",purchase,1.0,0 -33865373,"Crysis Wars",purchase,1.0,0 -33865373,"Crystal Caves",purchase,1.0,0 -33865373,"Cthulhu Saves the World ",purchase,1.0,0 -33865373,"Danmaku Unlimited 2",purchase,1.0,0 -33865373,"Dark Ages",purchase,1.0,0 -33865373,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -33865373,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -33865373,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -33865373,"Day of Defeat",purchase,1.0,0 -33865373,"Dead Island",purchase,1.0,0 -33865373,"Deadlight",purchase,1.0,0 -33865373,"Deadlight Original Soundtrack",purchase,1.0,0 -33865373,"Deadly Profits",purchase,1.0,0 -33865373,"Deadly Sin 2",purchase,1.0,0 -33865373,"Deathmatch Classic",purchase,1.0,0 -33865373,"Death Rally (Classic)",purchase,1.0,0 -33865373,"Deep Under the Sky",purchase,1.0,0 -33865373,"Defy Gravity",purchase,1.0,0 -33865373,"Deponia",purchase,1.0,0 -33865373,"Deus Ex Game of the Year Edition",purchase,1.0,0 -33865373,"Dinner Date",purchase,1.0,0 -33865373,"Dismal Swamp DLC",purchase,1.0,0 -33865373,"Divinity II Developer's Cut",purchase,1.0,0 -33865373,"DogFighter",purchase,1.0,0 -33865373,"Don't Starve",purchase,1.0,0 -33865373,"Don't Starve Together Beta",purchase,1.0,0 -33865373,"DOOM 3",purchase,1.0,0 -33865373,"DOOM 3 Resurrection of Evil",purchase,1.0,0 -33865373,"Downwell",purchase,1.0,0 -33865373,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -33865373,"Drive to Hell",purchase,1.0,0 -33865373,"Duke Nukem",purchase,1.0,0 -33865373,"Duke Nukem 2",purchase,1.0,0 -33865373,"Duke Nukem 3D",purchase,1.0,0 -33865373,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -33865373,"Duke Nukem Manhattan Project",purchase,1.0,0 -33865373,"Dungeonland",purchase,1.0,0 -33865373,"Dungeonland - All access pass",purchase,1.0,0 -33865373,"Dungeon of Elements",purchase,1.0,0 -33865373,"Dustforce",purchase,1.0,0 -33865373,"E.Y.E Divine Cybermancy",purchase,1.0,0 -33865373,"EDGE",purchase,1.0,0 -33865373,"Edna & Harvey Harvey's New Eyes",purchase,1.0,0 -33865373,"Eldritch",purchase,1.0,0 -33865373,"Elements Soul of Fire",purchase,1.0,0 -33865373,"Empire Total War",purchase,1.0,0 -33865373,"Europa Universalis III",purchase,1.0,0 -33865373,"Explodemon",purchase,1.0,0 -33865373,"Fairy Bloom Freesia",purchase,1.0,0 -33865373,"Fairy Bloom Freesia - Original Soundtrack",purchase,1.0,0 -33865373,"Fake Colours",purchase,1.0,0 -33865373,"Fallout 3 - Mothership Zeta",purchase,1.0,0 -33865373,"Fallout 3 - Point Lookout",purchase,1.0,0 -33865373,"Fallout 3 - The Pitt",purchase,1.0,0 -33865373,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -33865373,"Fallout New Vegas Dead Money",purchase,1.0,0 -33865373,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -33865373,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -33865373,"Final DOOM",purchase,1.0,0 -33865373,"Foresight",purchase,1.0,0 -33865373,"Forsaken Uprising",purchase,1.0,0 -33865373,"Fortix 2",purchase,1.0,0 -33865373,"Fortune Summoners Secret of the Elemental Stone",purchase,1.0,0 -33865373,"FOTONICA",purchase,1.0,0 -33865373,"Full Mojo Rampage",purchase,1.0,0 -33865373,"Galactic Civilizations I Ultimate Edition",purchase,1.0,0 -33865373,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -33865373,"GameGuru",purchase,1.0,0 -33865373,"GameGuru - Buildings Pack",purchase,1.0,0 -33865373,"Game of Thrones ",purchase,1.0,0 -33865373,"Garry's Mod",purchase,1.0,0 -33865373,"Ghost Pirates of Vooju Island",purchase,1.0,0 -33865373,"Giana Sisters Twisted Dreams",purchase,1.0,0 -33865373,"Giana Sisters Twisted Dreams - Rise of the Owlverlord",purchase,1.0,0 -33865373,"Glacier 3 The Meltdown",purchase,1.0,0 -33865373,"Glass Wing",purchase,1.0,0 -33865373,"Go! Go! Nippon! ~My First Trip to Japan~",purchase,1.0,0 -33865373,"Goats on a Bridge",purchase,1.0,0 -33865373,"Gone Home",purchase,1.0,0 -33865373,"Grand Theft Auto 2",purchase,1.0,0 -33865373,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -33865373,"Grand Theft Auto San Andreas",purchase,1.0,0 -33865373,"Grand Theft Auto San Andreas",purchase,1.0,0 -33865373,"Grand Theft Auto Vice City",purchase,1.0,0 -33865373,"Grand Theft Auto III",purchase,1.0,0 -33865373,"Grand Theft Auto III",purchase,1.0,0 -33865373,"Grand Theft Auto IV",purchase,1.0,0 -33865373,"Great Permutator",purchase,1.0,0 -33865373,"Grim Fandango Remastered",purchase,1.0,0 -33865373,"GT Power Expansion",purchase,1.0,0 -33865373,"Gumboy Crazy Adventures",purchase,1.0,0 -33865373,"Gumboy Crazy Features",purchase,1.0,0 -33865373,"GundeadliGne",purchase,1.0,0 -33865373,"Gundemonium Recollection",purchase,1.0,0 -33865373,"Guns of Icarus Online",purchase,1.0,0 -33865373,"Half-Life 2 Episode One",purchase,1.0,0 -33865373,"Half-Life 2 Lost Coast",purchase,1.0,0 -33865373,"Half-Life Blue Shift",purchase,1.0,0 -33865373,"Half-Life Opposing Force",purchase,1.0,0 -33865373,"Harvester",purchase,1.0,0 -33865373,"Heroes of Might & Magic III - HD Edition",purchase,1.0,0 -33865373,"HeXen Deathkings of the Dark Citadel",purchase,1.0,0 -33865373,"HeXen II",purchase,1.0,0 -33865373,"Hitman Blood Money",purchase,1.0,0 -33865373,"Hitogata Happa",purchase,1.0,0 -33865373,"Hocus Pocus",purchase,1.0,0 -33865373,"House of 1,000 Doors - Family Secrets",purchase,1.0,0 -33865373,"House of 1000 Doors The Palm of Zoroaster Collector's Edition",purchase,1.0,0 -33865373,"ibb & obb",purchase,1.0,0 -33865373,"Ignite",purchase,1.0,0 -33865373,"I Have No Mouth, and I Must Scream",purchase,1.0,0 -33865373,"Imagine Me",purchase,1.0,0 -33865373,"Incognito",purchase,1.0,0 -33865373,"Indiana Jones and the Fate of Atlantis",purchase,1.0,0 -33865373,"Indiana Jones and the Last Crusade",purchase,1.0,0 -33865373,"Influent",purchase,1.0,0 -33865373,"Influent DLC - Franais [Learn French]",purchase,1.0,0 -33865373,"Insanely Twisted Shadow Planet",purchase,1.0,0 -33865373,"Insanity's Blade",purchase,1.0,0 -33865373,"Insurgency",purchase,1.0,0 -33865373,"Intake",purchase,1.0,0 -33865373,"iO",purchase,1.0,0 -33865373,"Ittle Dew",purchase,1.0,0 -33865373,"Jet Car Stunts",purchase,1.0,0 -33865373,"Just Get Through",purchase,1.0,0 -33865373,"Kairo",purchase,1.0,0 -33865373,"KAMI",purchase,1.0,0 -33865373,"KAMUI",purchase,1.0,0 -33865373,"Khet 2.0",purchase,1.0,0 -33865373,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -33865373,"King's Quest Collection",purchase,1.0,0 -33865373,"Knights of Pen and Paper +1",purchase,1.0,0 -33865373,"Labyrinthine Dreams",purchase,1.0,0 -33865373,"Lara Croft and the Guardian of Light",purchase,1.0,0 -33865373,"Last Inua",purchase,1.0,0 -33865373,"Last Word",purchase,1.0,0 -33865373,"Legends of Aethereus",purchase,1.0,0 -33865373,"Legionwood 2 Rise of the Eternal's Realm",purchase,1.0,0 -33865373,"Leviathan Warships",purchase,1.0,0 -33865373,"Limited Edition",purchase,1.0,0 -33865373,"LISA",purchase,1.0,0 -33865373,"LISA the Joyful",purchase,1.0,0 -33865373,"Little Racers STREET",purchase,1.0,0 -33865373,"Lone Survivor The Director's Cut",purchase,1.0,0 -33865373,"Long Live The Queen",purchase,1.0,0 -33865373,"Love",purchase,1.0,0 -33865373,"LUFTRAUSERS",purchase,1.0,0 -33865373,"Luxuria Superbia",purchase,1.0,0 -33865373,"Madballs in...Babo Invasion",purchase,1.0,0 -33865373,"Mafia",purchase,1.0,0 -33865373,"Mafia II",purchase,1.0,0 -33865373,"Magic The Gathering Duels of the Planeswalkers 2012",purchase,1.0,0 -33865373,"Magical Battle Festa",purchase,1.0,0 -33865373,"Magicka",purchase,1.0,0 -33865373,"Magicka Final Frontier",purchase,1.0,0 -33865373,"Magicka Frozen Lake",purchase,1.0,0 -33865373,"Magicka Nippon",purchase,1.0,0 -33865373,"Magicka Party Robes",purchase,1.0,0 -33865373,"Magicka The Watchtower",purchase,1.0,0 -33865373,"Magicka Vietnam",purchase,1.0,0 -33865373,"Magicka Wizard's Survival Kit",purchase,1.0,0 -33865373,"Major Stryker",purchase,1.0,0 -33865373,"Making History II The War of the World",purchase,1.0,0 -33865373,"Manhole",purchase,1.0,0 -33865373,"Manhunt",purchase,1.0,0 -33865373,"Mark of the Ninja",purchase,1.0,0 -33865373,"Mark of the Ninja Special Edition DLC",purchase,1.0,0 -33865373,"Mass Effect 2",purchase,1.0,0 -33865373,"Math Rescue",purchase,1.0,0 -33865373,"Max Payne 3",purchase,1.0,0 -33865373,"Max Payne 3 Season Pass",purchase,1.0,0 -33865373,"Medieval II Total War",purchase,1.0,0 -33865373,"Medieval II Total War Kingdoms",purchase,1.0,0 -33865373,"Medieval Mercs",purchase,1.0,0 -33865373,"Megabyte Punch",purchase,1.0,0 -33865373,"Meltdown",purchase,1.0,0 -33865373,"Meridian New World",purchase,1.0,0 -33865373,"Metro 2033",purchase,1.0,0 -33865373,"Miasmata",purchase,1.0,0 -33865373,"Midnight Club II",purchase,1.0,0 -33865373,"Might & Magic Clash of Heroes",purchase,1.0,0 -33865373,"Mighty Gunvolt",purchase,1.0,0 -33865373,"Mini Motor Racing EVO",purchase,1.0,0 -33865373,"Monaco",purchase,1.0,0 -33865373,"Monkey Island 2 Special Edition",purchase,1.0,0 -33865373,"Monster Loves You!",purchase,1.0,0 -33865373,"Monuments of Mars",purchase,1.0,0 -33865373,"Morphopolis",purchase,1.0,0 -33865373,"Mount & Blade With Fire and Sword",purchase,1.0,0 -33865373,"Mountain",purchase,1.0,0 -33865373,"Mr. Robot",purchase,1.0,0 -33865373,"Mystery Masters Psycho Train Deluxe Edition",purchase,1.0,0 -33865373,"Mystic Towers",purchase,1.0,0 -33865373,"NaissanceE",purchase,1.0,0 -33865373,"NAM",purchase,1.0,0 -33865373,"Napoleon Total War",purchase,1.0,0 -33865373,"Nearwood - Collector's Edition",purchase,1.0,0 -33865373,"Never Alone (Kisima Ingitchuna)",purchase,1.0,0 -33865373,"Never Alone Original Soundtrack",purchase,1.0,0 -33865373,"Neverending Nightmares",purchase,1.0,0 -33865373,"Nihilumbra",purchase,1.0,0 -33865373,"Nomad",purchase,1.0,0 -33865373,"NotGTAV",purchase,1.0,0 -33865373,"Nuclear Dawn",purchase,1.0,0 -33865373,"Nux",purchase,1.0,0 -33865373,"Oddworld Abe's Exoddus",purchase,1.0,0 -33865373,"Oddworld Abe's Oddysee",purchase,1.0,0 -33865373,"OlliOlli",purchase,1.0,0 -33865373,"One Way Heroics",purchase,1.0,0 -33865373,"Only If",purchase,1.0,0 -33865373,"On the Rain-Slick Precipice of Darkness, Episode One",purchase,1.0,0 -33865373,"On the Rain-Slick Precipice of Darkness, Episode Two",purchase,1.0,0 -33865373,"Orcs Must Die!",purchase,1.0,0 -33865373,"Outlast",purchase,1.0,0 -33865373,"Outlast Whistleblower DLC",purchase,1.0,0 -33865373,"Out There Somewhere",purchase,1.0,0 -33865373,"Overlord",purchase,1.0,0 -33865373,"Over The Void",purchase,1.0,0 -33865373,"Paganitzu",purchase,1.0,0 -33865373,"Particula",purchase,1.0,0 -33865373,"Passing Pineview Forest",purchase,1.0,0 -33865373,"Path of Exile",purchase,1.0,0 -33865373,"PAYDAY The Heist",purchase,1.0,0 -33865373,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",purchase,1.0,0 -33865373,"Penny Arcade's On the Rain-Slick Precipice of Darkness 4",purchase,1.0,0 -33865373,"Penumbra Black Plague",purchase,1.0,0 -33865373,"Penumbra Requiem",purchase,1.0,0 -33865373,"Pharaoh's Tomb",purchase,1.0,0 -33865373,"Pillars of Eternity",purchase,1.0,0 -33865373,"Pineview Drive",purchase,1.0,0 -33865373,"Pink Heaven",purchase,1.0,0 -33865373,"Pixel Boy and the Ever Expanding Dungeon",purchase,1.0,0 -33865373,"Pixel Hunter",purchase,1.0,0 -33865373,"PixelJunk Eden",purchase,1.0,0 -33865373,"PixelJunk Monsters Ultimate",purchase,1.0,0 -33865373,"PixelJunk Shooter",purchase,1.0,0 -33865373,"Planetary Annihilation",purchase,1.0,0 -33865373,"Platypus",purchase,1.0,0 -33865373,"Platypus II",purchase,1.0,0 -33865373,"Polarity",purchase,1.0,0 -33865373,"Portal 2 - The Final Hours",purchase,1.0,0 -33865373,"POSTAL",purchase,1.0,0 -33865373,"POSTAL 2",purchase,1.0,0 -33865373,"Pressure",purchase,1.0,0 -33865373,"Prime World Defenders",purchase,1.0,0 -33865373,"Probably Archery",purchase,1.0,0 -33865373,"Psichodelya",purchase,1.0,0 -33865373,"Psychonauts",purchase,1.0,0 -33865373,"Pulstar",purchase,1.0,0 -33865373,"Qora",purchase,1.0,0 -33865373,"Quake II Ground Zero",purchase,1.0,0 -33865373,"Quake II The Reckoning",purchase,1.0,0 -33865373,"Quake III Team Arena",purchase,1.0,0 -33865373,"Quake Mission Pack 2 Dissolution of Eternity",purchase,1.0,0 -33865373,"Quantum Conundrum",purchase,1.0,0 -33865373,"RACE 07",purchase,1.0,0 -33865373,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -33865373,"RACE Caterham Expansion",purchase,1.0,0 -33865373,"Race The WTCC Game",purchase,1.0,0 -33865373,"RACE On",purchase,1.0,0 -33865373,"Race The Sun",purchase,1.0,0 -33865373,"Raptor Call of the Shadows (1994 Classic Edition)",purchase,1.0,0 -33865373,"RAW - Realms of Ancient War",purchase,1.0,0 -33865373,"Real Horror Stories Ultimate Edition",purchase,1.0,0 -33865373,"Realms of Chaos",purchase,1.0,0 -33865373,"Realms of the Haunting",purchase,1.0,0 -33865373,"Receiver",purchase,1.0,0 -33865373,"Reflections",purchase,1.0,0 -33865373,"RefleX",purchase,1.0,0 -33865373,"Remnants Of Isolation",purchase,1.0,0 -33865373,"Residue Final Cut",purchase,1.0,0 -33865373,"Retro/Grade",purchase,1.0,0 -33865373,"Retro City Rampage DX",purchase,1.0,0 -33865373,"Revenge of the Titans",purchase,1.0,0 -33865373,"REVOLVER360 REACTOR",purchase,1.0,0 -33865373,"Richard & Alice",purchase,1.0,0 -33865373,"Ricochet",purchase,1.0,0 -33865373,"Rise of the Triad Dark War",purchase,1.0,0 -33865373,"Risk of Rain",purchase,1.0,0 -33865373,"Riven",purchase,1.0,0 -33865373,"Rock of Ages",purchase,1.0,0 -33865373,"Rome Total War",purchase,1.0,0 -33865373,"Rome Total War - Alexander",purchase,1.0,0 -33865373,"RPG Maker 2000",purchase,1.0,0 -33865373,"RPG Maker 2003",purchase,1.0,0 -33865373,"RPG Maker Futuristic Tiles Resource Pack",purchase,1.0,0 -33865373,"RPG Maker High Fantasy Main Party Pack 1",purchase,1.0,0 -33865373,"RPG Maker Luna Engine",purchase,1.0,0 -33865373,"RPG Maker Royal Tiles Resource Pack",purchase,1.0,0 -33865373,"RPG Maker Rural Farm Tiles Resource Pack",purchase,1.0,0 -33865373,"RPG Maker Tyler Warren First 50 Battler Pack",purchase,1.0,0 -33865373,"RPG Maker Tyler Warren RPG Battlers 2nd 50",purchase,1.0,0 -33865373,"RPG Maker Zombie Survival Graphic Pack",purchase,1.0,0 -33865373,"Runaway A Road Adventure",purchase,1.0,0 -33865373,"RUSH",purchase,1.0,0 -33865373,"Rush for Glory",purchase,1.0,0 -33865373,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -33865373,"Saints Row The Third",purchase,1.0,0 -33865373,"Sakura Clicker",purchase,1.0,0 -33865373,"Savant - Ascent",purchase,1.0,0 -33865373,"Scourge Outbreak",purchase,1.0,0 -33865373,"Secret Agent",purchase,1.0,0 -33865373,"Secret of the Magic Crystal",purchase,1.0,0 -33865373,"Secret of the Magic Crystals - Soundtrack and Coloring Book",purchase,1.0,0 -33865373,"Secret of the Magic Crystals - The Race",purchase,1.0,0 -33865373,"SEGA Bass Fishing",purchase,1.0,0 -33865373,"Sentinel",purchase,1.0,0 -33865373,"Septerra Core",purchase,1.0,0 -33865373,"Serious Sam 3 BFE",purchase,1.0,0 -33865373,"Serious Sam The Random Encounter",purchase,1.0,0 -33865373,"Shadow Man",purchase,1.0,0 -33865373,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -33865373,"Shadowrun Returns",purchase,1.0,0 -33865373,"Shadow Warrior (Classic)",purchase,1.0,0 -33865373,"Shan Gui",purchase,1.0,0 -33865373,"Shan Gui OST",purchase,1.0,0 -33865373,"Shank",purchase,1.0,0 -33865373,"Shantae Risky's Revenge - Director's Cut",purchase,1.0,0 -33865373,"Sherlock Holmes Nemesis",purchase,1.0,0 -33865373,"Sherlock Holmes versus Jack the Ripper",purchase,1.0,0 -33865373,"Shiny The Firefly",purchase,1.0,0 -33865373,"Shipwreck",purchase,1.0,0 -33865373,"Sideway",purchase,1.0,0 -33865373,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -33865373,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -33865373,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -33865373,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -33865373,"SiN Episodes Emergence",purchase,1.0,0 -33865373,"SiN Multiplayer",purchase,1.0,0 -33865373,"Sir, You Are Being Hunted",purchase,1.0,0 -33865373,"Skara - The Blade Remains",purchase,1.0,0 -33865373,"Skilltree Saga",purchase,1.0,0 -33865373,"Skullgirls",purchase,1.0,0 -33865373,"Skullgirls Endless Beta",purchase,1.0,0 -33865373,"Skyborn",purchase,1.0,0 -33865373,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -33865373,"Sleeping Dogs",purchase,1.0,0 -33865373,"SOL Exodus",purchase,1.0,0 -33865373,"SolForge",purchase,1.0,0 -33865373,"Song of the Myrne What Lies Beneath",purchase,1.0,0 -33865373,"Sonic Adventure DX",purchase,1.0,0 -33865373,"Soul Gambler",purchase,1.0,0 -33865373,"Space Channel 5 Part 2",purchase,1.0,0 -33865373,"Space Farmers",purchase,1.0,0 -33865373,"Space Legends At the Edge of the Universe",purchase,1.0,0 -33865373,"Sparkle 2 Evo",purchase,1.0,0 -33865373,"SpellForce 2 - Demons of the Past",purchase,1.0,0 -33865373,"SpellForce 2 - Demons of the Past - Soundtrack",purchase,1.0,0 -33865373,"SpellForce 2 - Faith in Destiny",purchase,1.0,0 -33865373,"SpellForce 2 Gold Edition",purchase,1.0,0 -33865373,"SpellForce Platinum Edition",purchase,1.0,0 -33865373,"Sprite Lamp",purchase,1.0,0 -33865373,"Spriter Pro",purchase,1.0,0 -33865373,"Spy Chameleon - RGB Agent",purchase,1.0,0 -33865373,"Squishy the Suicidal Pig",purchase,1.0,0 -33865373,"Stacking",purchase,1.0,0 -33865373,"Stargunner",purchase,1.0,0 -33865373,"Starlaxis Supernova Edition",purchase,1.0,0 -33865373,"Star Ruler",purchase,1.0,0 -33865373,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -33865373,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -33865373,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -33865373,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -33865373,"Star Wars Republic Commando",purchase,1.0,0 -33865373,"STCC The Game",purchase,1.0,0 -33865373,"STCC II",purchase,1.0,0 -33865373,"Stealth Inc 2",purchase,1.0,0 -33865373,"SteamWorld Dig",purchase,1.0,0 -33865373,"Stranded",purchase,1.0,0 -33865373,"Strata",purchase,1.0,0 -33865373,"Street Racing Syndicate",purchase,1.0,0 -33865373,"Stronghold 3",purchase,1.0,0 -33865373,"StuntMANIA Reloaded",purchase,1.0,0 -33865373,"Summoner",purchase,1.0,0 -33865373,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -33865373,"Super Hexagon",purchase,1.0,0 -33865373,"Super Lemonade Factory",purchase,1.0,0 -33865373,"Surgeon Simulator",purchase,1.0,0 -33865373,"Sweet Lily Dreams",purchase,1.0,0 -33865373,"System Shock 2",purchase,1.0,0 -33865373,"Tales from Space Mutant Blobs Attack",purchase,1.0,0 -33865373,"Tales of Monkey Island Chapter 1 - Launch of the Screaming Narwhal",purchase,1.0,0 -33865373,"Tales of Monkey Island Chapter 2 - The Siege of Spinner Cay ",purchase,1.0,0 -33865373,"Tales of Monkey Island Chapter 3 - Lair of the Leviathan ",purchase,1.0,0 -33865373,"Tales of Monkey Island Chapter 4 - The Trial and Execution of Guybrush Threepwood ",purchase,1.0,0 -33865373,"Tales of Monkey Island Chapter 5 - Rise of the Pirate God",purchase,1.0,0 -33865373,"Talisman Digital Edition",purchase,1.0,0 -33865373,"Talisman Prologue",purchase,1.0,0 -33865373,"Tcheco in the Castle of Lucio",purchase,1.0,0 -33865373,"Team Fortress Classic",purchase,1.0,0 -33865373,"Teleglitch Die More Edition",purchase,1.0,0 -33865373,"Temper Tantrum",purchase,1.0,0 -33865373,"Tengami",purchase,1.0,0 -33865373,"Terminal Velocity",purchase,1.0,0 -33865373,"Terrian Saga KR-17",purchase,1.0,0 -33865373,"Tesla Effect",purchase,1.0,0 -33865373,"Tex Murphy Martian Memorandum",purchase,1.0,0 -33865373,"Tex Murphy Mean Streets",purchase,1.0,0 -33865373,"Tex Murphy Overseer",purchase,1.0,0 -33865373,"Tex Murphy The Pandora Directive",purchase,1.0,0 -33865373,"Tex Murphy Under a Killing Moon",purchase,1.0,0 -33865373,"The 11th Hour",purchase,1.0,0 -33865373,"The Baconing",purchase,1.0,0 -33865373,"The Basement Collection",purchase,1.0,0 -33865373,"The Binding of Isaac",purchase,1.0,0 -33865373,"The Bridge",purchase,1.0,0 -33865373,"The Culling Of The Cows",purchase,1.0,0 -33865373,"The Dig",purchase,1.0,0 -33865373,"The Dream Machine",purchase,1.0,0 -33865373,"The Dream Machine Chapter 3",purchase,1.0,0 -33865373,"The Dream Machine Chapter 4",purchase,1.0,0 -33865373,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -33865373,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -33865373,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -33865373,"The Longest Journey",purchase,1.0,0 -33865373,"The Lost Crown",purchase,1.0,0 -33865373,"The Misadventures of P.B. Winterbottom",purchase,1.0,0 -33865373,"The Nightmare Cooperative",purchase,1.0,0 -33865373,"The Novelist",purchase,1.0,0 -33865373,"The Quiet Girl's Guide to Violence",purchase,1.0,0 -33865373,"The Retro Expansion",purchase,1.0,0 -33865373,"The Scourge Project Episode 1 and 2",purchase,1.0,0 -33865373,"The Showdown Effect",purchase,1.0,0 -33865373,"The Slaughtering Grounds",purchase,1.0,0 -33865373,"The Stanley Parable",purchase,1.0,0 -33865373,"The Tiny Bang Story",purchase,1.0,0 -33865373,"The Vanishing of Ethan Carter Redux",purchase,1.0,0 -33865373,"The Void",purchase,1.0,0 -33865373,"The WTCC 2010 Pack",purchase,1.0,0 -33865373,"Thief Deadly Shadows",purchase,1.0,0 -33865373,"ThreadSpace Hyperbol",purchase,1.0,0 -33865373,"Time Gentlemen, Please!",purchase,1.0,0 -33865373,"TinyKeep",purchase,1.0,0 -33865373,"Tomb of Tyrants",purchase,1.0,0 -33865373,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -33865373,"Tomb Raider Anniversary",purchase,1.0,0 -33865373,"Tomb Raider Chronicles",purchase,1.0,0 -33865373,"Tomb Raider Legend",purchase,1.0,0 -33865373,"Tomb Raider The Last Revelation",purchase,1.0,0 -33865373,"Tomb Raider Underworld",purchase,1.0,0 -33865373,"Tomb Raider II",purchase,1.0,0 -33865373,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -33865373,"Tower of Guns",purchase,1.0,0 -33865373,"Train Simulator",purchase,1.0,0 -33865373,"Transistor",purchase,1.0,0 -33865373,"TRIP Steam Edition",purchase,1.0,0 -33865373,"Tropico 4",purchase,1.0,0 -33865373,"Unepic",purchase,1.0,0 -33865373,"Universe Sandbox",purchase,1.0,0 -33865373,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -33865373,"Unreal Tournament Game of the Year Edition",purchase,1.0,0 -33865373,"Uru Complete Chronicles",purchase,1.0,0 -33865373,"Valdis Story Abyssal City",purchase,1.0,0 -33865373,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",purchase,1.0,0 -33865373,"Vangers",purchase,1.0,0 -33865373,"Vector",purchase,1.0,0 -33865373,"Velocibox",purchase,1.0,0 -33865373,"Verde Station",purchase,1.0,0 -33865373,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -33865373,"Wacky Wheels",purchase,1.0,0 -33865373,"Wallace & Gromit Ep 2 The Last Resort",purchase,1.0,0 -33865373,"Wallace & Gromit Ep 3 Muzzled!",purchase,1.0,0 -33865373,"Wallace & Gromit Ep 4 The Bogey Man",purchase,1.0,0 -33865373,"Warlock - Master of the Arcane",purchase,1.0,0 -33865373,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -33865373,"War of the Roses",purchase,1.0,0 -33865373,"War of the Roses Kingmaker",purchase,1.0,0 -33865373,"War of the Roses Balance Beta",purchase,1.0,0 -33865373,"Wasteland 2",purchase,1.0,0 -33865373,"Wasteland 2 Director's Cut",purchase,1.0,0 -33865373,"Where is my Heart?",purchase,1.0,0 -33865373,"Whisper of a Rose",purchase,1.0,0 -33865373,"Wolfenstein 3D Spear of Destiny",purchase,1.0,0 -33865373,"Woodle Tree Adventures",purchase,1.0,0 -33865373,"Word Rescue",purchase,1.0,0 -33865373,"Worms",purchase,1.0,0 -33865373,"Worms Blast",purchase,1.0,0 -33865373,"Worms Crazy Golf",purchase,1.0,0 -33865373,"Worms Pinball",purchase,1.0,0 -33865373,"Worms Reloaded",purchase,1.0,0 -33865373,"Worms Ultimate Mayhem",purchase,1.0,0 -33865373,"X-COM UFO Defense",purchase,1.0,0 -33865373,"X-Tension",purchase,1.0,0 -33865373,"X2 The Threat",purchase,1.0,0 -33865373,"X3 Reunion",purchase,1.0,0 -33865373,"X Beyond the Frontier",purchase,1.0,0 -33865373,"Xenophage",purchase,1.0,0 -33865373,"Xotic",purchase,1.0,0 -33865373,"Zafehouse Diaries",purchase,1.0,0 -33865373,"Zen Bound 2",purchase,1.0,0 -33865373,"Zombie Driver",purchase,1.0,0 -55429136,"Call of Duty Modern Warfare 2",purchase,1.0,0 -55429136,"Call of Duty Modern Warfare 2",play,109.0,0 -55429136,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -17497581,"Marvel Heroes 2015",purchase,1.0,0 -17497581,"Marvel Heroes 2015",play,304.0,0 -17497581,"Rocksmith 2014",purchase,1.0,0 -17497581,"Rocksmith 2014",play,117.0,0 -17497581,"The Elder Scrolls V Skyrim",purchase,1.0,0 -17497581,"The Elder Scrolls V Skyrim",play,79.0,0 -17497581,"Path of Exile",purchase,1.0,0 -17497581,"Path of Exile",play,69.0,0 -17497581,"Fallout New Vegas",purchase,1.0,0 -17497581,"Fallout New Vegas",play,58.0,0 -17497581,"Star Trek Online",purchase,1.0,0 -17497581,"Star Trek Online",play,40.0,0 -17497581,"Marvel Puzzle Quest",purchase,1.0,0 -17497581,"Marvel Puzzle Quest",play,38.0,0 -17497581,"FINAL FANTASY XIV A Realm Reborn",purchase,1.0,0 -17497581,"FINAL FANTASY XIV A Realm Reborn",play,31.0,0 -17497581,"7 Days to Die",purchase,1.0,0 -17497581,"7 Days to Die",play,28.0,0 -17497581,"Team Fortress 2",purchase,1.0,0 -17497581,"Team Fortress 2",play,21.0,0 -17497581,"Magic The Gathering Duels of the Planeswalkers 2012",purchase,1.0,0 -17497581,"Magic The Gathering Duels of the Planeswalkers 2012",play,19.4,0 -17497581,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -17497581,"The Witcher 2 Assassins of Kings Enhanced Edition",play,7.4,0 -17497581,"Audiosurf",purchase,1.0,0 -17497581,"Audiosurf",play,6.0,0 -17497581,"The Witcher Enhanced Edition",purchase,1.0,0 -17497581,"The Witcher Enhanced Edition",play,3.2,0 -17497581,"Alien Swarm",purchase,1.0,0 -17497581,"Alien Swarm",play,2.9,0 -17497581,"Gems of War",purchase,1.0,0 -17497581,"Gems of War",play,2.1,0 -17497581,"Card Hunter",purchase,1.0,0 -17497581,"Card Hunter",play,1.9,0 -17497581,"ACE - Arena Cyber Evolution",purchase,1.0,0 -17497581,"ACE - Arena Cyber Evolution",play,0.5,0 -17497581,"Neverwinter",purchase,1.0,0 -17497581,"Neverwinter",play,0.5,0 -17497581,"Heroes of SoulCraft",purchase,1.0,0 -17497581,"Heroes of SoulCraft",play,0.2,0 -17497581,"Counter-Strike",purchase,1.0,0 -17497581,"Counter-Strike Condition Zero",purchase,1.0,0 -17497581,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -17497581,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -17497581,"Fallout New Vegas Dead Money",purchase,1.0,0 -17497581,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -17497581,"FINAL FANTASY XIV A Realm Reborn (NA version)",purchase,1.0,0 -17497581,"Floating Point",purchase,1.0,0 -17497581,"Half-Life 2 Deathmatch",purchase,1.0,0 -17497581,"Half-Life 2 Lost Coast",purchase,1.0,0 -17497581,"Metro 2033",purchase,1.0,0 -17497581,"PlanetSide 2",purchase,1.0,0 -17497581,"RaceRoom Racing Experience ",purchase,1.0,0 -17497581,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -65155942,"Portal",purchase,1.0,0 -65155942,"Portal",play,4.0,0 -65155942,"SimCity 4 Deluxe",purchase,1.0,0 -65155942,"SimCity 4 Deluxe",play,0.6,0 -65155942,"SteamWorld Dig",purchase,1.0,0 -65155942,"SteamWorld Dig",play,0.5,0 -65155942,"Counter-Strike Global Offensive",purchase,1.0,0 -65155942,"Counter-Strike Global Offensive",play,0.5,0 -65155942,"Left 4 Dead 2",purchase,1.0,0 -65155942,"Left 4 Dead 2",play,0.3,0 -65155942,"Cities Skylines",purchase,1.0,0 -65155942,"Cities Skylines",play,0.3,0 -65155942,"Chivalry Medieval Warfare",purchase,1.0,0 -65155942,"Chivalry Medieval Warfare",play,0.2,0 -65155942,"Counter-Strike",purchase,1.0,0 -65155942,"Counter-Strike Condition Zero",purchase,1.0,0 -65155942,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -65155942,"Counter-Strike Source",purchase,1.0,0 -65155942,"Day of Defeat",purchase,1.0,0 -65155942,"Day of Defeat Source",purchase,1.0,0 -65155942,"Deathmatch Classic",purchase,1.0,0 -65155942,"Gone Home",purchase,1.0,0 -65155942,"Gunpoint",purchase,1.0,0 -65155942,"Half-Life",purchase,1.0,0 -65155942,"Half-Life 2",purchase,1.0,0 -65155942,"Half-Life 2 Deathmatch",purchase,1.0,0 -65155942,"Half-Life 2 Episode One",purchase,1.0,0 -65155942,"Half-Life 2 Episode Two",purchase,1.0,0 -65155942,"Half-Life 2 Lost Coast",purchase,1.0,0 -65155942,"Half-Life Blue Shift",purchase,1.0,0 -65155942,"Half-Life Opposing Force",purchase,1.0,0 -65155942,"Half-Life Source",purchase,1.0,0 -65155942,"Half-Life Deathmatch Source",purchase,1.0,0 -65155942,"Hammerwatch",purchase,1.0,0 -65155942,"Left 4 Dead",purchase,1.0,0 -65155942,"LUFTRAUSERS",purchase,1.0,0 -65155942,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -65155942,"Monaco",purchase,1.0,0 -65155942,"Papers, Please",purchase,1.0,0 -65155942,"Patch testing for Chivalry",purchase,1.0,0 -65155942,"Portal 2",purchase,1.0,0 -65155942,"Prison Architect",purchase,1.0,0 -65155942,"Race The Sun",purchase,1.0,0 -65155942,"Ricochet",purchase,1.0,0 -65155942,"Team Fortress Classic",purchase,1.0,0 -65155942,"The Bridge",purchase,1.0,0 -127890922,"Dota 2",purchase,1.0,0 -127890922,"Dota 2",play,0.1,0 -273828592,"Heroes & Generals",purchase,1.0,0 -273828592,"Heroes & Generals",play,1.1,0 -273828592,"Defiance",purchase,1.0,0 -273828592,"Trove",purchase,1.0,0 -273828592,"War Thunder",purchase,1.0,0 -150644179,"Dota 2",purchase,1.0,0 -150644179,"Dota 2",play,0.5,0 -33580866,"Left 4 Dead 2",purchase,1.0,0 -33580866,"Left 4 Dead 2",play,168.0,0 -33580866,"Left 4 Dead",purchase,1.0,0 -33580866,"Left 4 Dead",play,100.0,0 -33580866,"Garry's Mod",purchase,1.0,0 -33580866,"Garry's Mod",play,90.0,0 -33580866,"Team Fortress 2",purchase,1.0,0 -33580866,"Team Fortress 2",play,73.0,0 -33580866,"Synergy",purchase,1.0,0 -33580866,"Synergy",play,16.2,0 -33580866,"Zombie Panic Source",purchase,1.0,0 -33580866,"Zombie Panic Source",play,13.0,0 -33580866,"Alien Swarm",purchase,1.0,0 -33580866,"Alien Swarm",play,5.9,0 -33580866,"Portal",purchase,1.0,0 -33580866,"Portal",play,3.9,0 -33580866,"Half-Life 2",purchase,1.0,0 -33580866,"Half-Life 2",play,2.6,0 -33580866,"Insurgency Modern Infantry Combat",purchase,1.0,0 -33580866,"Insurgency Modern Infantry Combat",play,2.2,0 -33580866,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -33580866,"Star Wars Jedi Knight Jedi Academy",play,2.1,0 -33580866,"Half-Life 2 Episode One",purchase,1.0,0 -33580866,"Half-Life 2 Episode One",play,1.8,0 -33580866,"Age of Chivalry",purchase,1.0,0 -33580866,"Age of Chivalry",play,1.8,0 -33580866,"D.I.P.R.I.P. Warm Up",purchase,1.0,0 -33580866,"D.I.P.R.I.P. Warm Up",play,1.0,0 -33580866,"Half-Life 2 Lost Coast",purchase,1.0,0 -33580866,"Half-Life 2 Lost Coast",play,0.9,0 -33580866,"BioShock",purchase,1.0,0 -33580866,"BioShock",play,0.8,0 -33580866,"Half-Life 2 Episode Two",purchase,1.0,0 -33580866,"Half-Life 2 Episode Two",play,0.5,0 -287084934,"War Inc. Battlezone",purchase,1.0,0 -287084934,"War Inc. Battlezone",play,3.9,0 -257178379,"FreeStyle2 Street Basketball",purchase,1.0,0 -240254341,"Dota 2",purchase,1.0,0 -240254341,"Dota 2",play,16.6,0 -189568899,"HAWKEN",purchase,1.0,0 -185207308,"Dishonored",purchase,1.0,0 -185207308,"Dishonored",play,5.1,0 -163577217,"Dota 2",purchase,1.0,0 -163577217,"Dota 2",play,17.4,0 -235398879,"Copa Petrobras de Marcas",purchase,1.0,0 -235398879,"PlanetSide 2",purchase,1.0,0 -235398879,"War Thunder",purchase,1.0,0 -138369566,"Dota 2",purchase,1.0,0 -138369566,"Dota 2",play,0.6,0 -225973147,"Dota 2",purchase,1.0,0 -225973147,"Dota 2",play,1743.0,0 -225973147,"ARK Survival Evolved",purchase,1.0,0 -225973147,"ARK Survival Evolved",play,3.8,0 -225973147,"Warframe",purchase,1.0,0 -127344335,"Dota 2",purchase,1.0,0 -127344335,"Dota 2",play,1154.0,0 -127344335,"Counter-Strike Global Offensive",purchase,1.0,0 -127344335,"Counter-Strike Global Offensive",play,184.0,0 -127344335,"Saints Row The Third",purchase,1.0,0 -127344335,"Saints Row The Third",play,32.0,0 -127344335,"Terraria",purchase,1.0,0 -127344335,"Terraria",play,26.0,0 -127344335,"Just Cause 2",purchase,1.0,0 -127344335,"Just Cause 2",play,25.0,0 -127344335,"PAYDAY 2",purchase,1.0,0 -127344335,"PAYDAY 2",play,20.0,0 -127344335,"Dead Island",purchase,1.0,0 -127344335,"Dead Island",play,14.4,0 -127344335,"Garry's Mod",purchase,1.0,0 -127344335,"Garry's Mod",play,11.9,0 -127344335,"Team Fortress 2",purchase,1.0,0 -127344335,"Team Fortress 2",play,11.7,0 -127344335,"Counter-Strike Source",purchase,1.0,0 -127344335,"Counter-Strike Source",play,10.5,0 -127344335,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -127344335,"Tom Clancy's Splinter Cell Blacklist",play,9.9,0 -127344335,"Torchlight II",purchase,1.0,0 -127344335,"Torchlight II",play,9.2,0 -127344335,"Neverwinter",purchase,1.0,0 -127344335,"Neverwinter",play,9.1,0 -127344335,"FreeStyle2 Street Basketball",purchase,1.0,0 -127344335,"FreeStyle2 Street Basketball",play,8.7,0 -127344335,"Unturned",purchase,1.0,0 -127344335,"Unturned",play,8.0,0 -127344335,"PAYDAY The Heist",purchase,1.0,0 -127344335,"PAYDAY The Heist",play,5.7,0 -127344335,"Lucius",purchase,1.0,0 -127344335,"Lucius",play,5.6,0 -127344335,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -127344335,"Just Cause 2 Multiplayer Mod",play,4.9,0 -127344335,"Overlord",purchase,1.0,0 -127344335,"Overlord",play,4.8,0 -127344335,"Archeblade",purchase,1.0,0 -127344335,"Archeblade",play,3.8,0 -127344335,"Counter-Strike",purchase,1.0,0 -127344335,"Counter-Strike",play,3.6,0 -127344335,"Robocraft",purchase,1.0,0 -127344335,"Robocraft",play,3.0,0 -127344335,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -127344335,"Counter-Strike Condition Zero Deleted Scenes",play,2.8,0 -127344335,"Cosmic DJ",purchase,1.0,0 -127344335,"Cosmic DJ",play,2.3,0 -127344335,"Brawlhalla",purchase,1.0,0 -127344335,"Brawlhalla",play,2.1,0 -127344335,"Dead Island Riptide",purchase,1.0,0 -127344335,"Dead Island Riptide",play,2.1,0 -127344335,"The Tiny Bang Story",purchase,1.0,0 -127344335,"The Tiny Bang Story",play,2.1,0 -127344335,"The Darkness II",purchase,1.0,0 -127344335,"The Darkness II",play,2.0,0 -127344335,"Fistful of Frags",purchase,1.0,0 -127344335,"Fistful of Frags",play,2.0,0 -127344335,"Everlasting Summer",purchase,1.0,0 -127344335,"Everlasting Summer",play,1.7,0 -127344335,"Deponia",purchase,1.0,0 -127344335,"Deponia",play,1.6,0 -127344335,"DLC Quest",purchase,1.0,0 -127344335,"DLC Quest",play,1.4,0 -127344335,"Waking Mars",purchase,1.0,0 -127344335,"Waking Mars",play,1.4,0 -127344335,"Five Nights at Freddy's",purchase,1.0,0 -127344335,"Five Nights at Freddy's",play,1.3,0 -127344335,"Strife",purchase,1.0,0 -127344335,"Strife",play,1.1,0 -127344335,"The Binding of Isaac",purchase,1.0,0 -127344335,"The Binding of Isaac",play,1.0,0 -127344335,"GunZ 2 The Second Duel",purchase,1.0,0 -127344335,"GunZ 2 The Second Duel",play,1.0,0 -127344335,"Dead Bits",purchase,1.0,0 -127344335,"Dead Bits",play,0.9,0 -127344335,"BLOCKADE 3D",purchase,1.0,0 -127344335,"BLOCKADE 3D",play,0.9,0 -127344335,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -127344335,"Red Faction Guerrilla Steam Edition",play,0.8,0 -127344335,"Squishy the Suicidal Pig",purchase,1.0,0 -127344335,"Squishy the Suicidal Pig",play,0.7,0 -127344335,"DiggerOnline",purchase,1.0,0 -127344335,"DiggerOnline",play,0.5,0 -127344335,"Teeworlds",purchase,1.0,0 -127344335,"Teeworlds",play,0.5,0 -127344335,"Quake Live",purchase,1.0,0 -127344335,"Quake Live",play,0.5,0 -127344335,"Golden Rush",purchase,1.0,0 -127344335,"Golden Rush",play,0.5,0 -127344335,"Just Cause",purchase,1.0,0 -127344335,"Just Cause",play,0.4,0 -127344335,"Toribash",purchase,1.0,0 -127344335,"Toribash",play,0.4,0 -127344335,"Time Clickers",purchase,1.0,0 -127344335,"Time Clickers",play,0.3,0 -127344335,"Painkiller Overdose",purchase,1.0,0 -127344335,"Painkiller Overdose",play,0.3,0 -127344335,"Defy Gravity",purchase,1.0,0 -127344335,"Defy Gravity",play,0.3,0 -127344335,"Nosgoth",purchase,1.0,0 -127344335,"Nosgoth",play,0.2,0 -127344335,"POSTAL 2",purchase,1.0,0 -127344335,"POSTAL 2",play,0.2,0 -127344335,"Cities in Motion 2",purchase,1.0,0 -127344335,"Cities in Motion 2",play,0.2,0 -127344335,"RIFT",purchase,1.0,0 -127344335,"Clicker Heroes",purchase,1.0,0 -127344335,"404Sight",purchase,1.0,0 -127344335,"AdVenture Capitalist",purchase,1.0,0 -127344335,"Counter-Strike Condition Zero",purchase,1.0,0 -127344335,"Deepworld",purchase,1.0,0 -127344335,"Frontline Tactics",purchase,1.0,0 -127344335,"Saints Row IV Inauguration Station",purchase,1.0,0 -127344335,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -127344335,"Trove",purchase,1.0,0 -308940605,"Dota 2",purchase,1.0,0 -308940605,"Dota 2",play,5.8,0 -211569574,"Age of Empires II HD Edition",purchase,1.0,0 -211569574,"Age of Empires II HD Edition",play,139.0,0 -211569574,"Age of Empires II HD The Forgotten",purchase,1.0,0 -216704734,"Dota 2",purchase,1.0,0 -216704734,"Dota 2",play,2.5,0 -110899658,"The Treasures of Montezuma 4",purchase,1.0,0 -110899658,"The Treasures of Montezuma 4",play,544.0,0 -110899658,"Victor Vran",purchase,1.0,0 -110899658,"Victor Vran",play,135.0,0 -110899658,"Zuma's Revenge",purchase,1.0,0 -110899658,"Zuma's Revenge",play,126.0,0 -110899658,"Torchlight II",purchase,1.0,0 -110899658,"Torchlight II",play,54.0,0 -110899658,"The Dreamatorium of Dr. Magnus 2",purchase,1.0,0 -110899658,"The Dreamatorium of Dr. Magnus 2",play,41.0,0 -110899658,"Bastion",purchase,1.0,0 -110899658,"Pillars of Eternity",purchase,1.0,0 -110899658,"Syberia",purchase,1.0,0 -110899658,"Syberia 2",purchase,1.0,0 -110899658,"Torchlight",purchase,1.0,0 -305086197,"Dota 2",purchase,1.0,0 -305086197,"Dota 2",play,2.0,0 -248840697,"Trove",purchase,1.0,0 -248840697,"Trove",play,85.0,0 -248840697,"Dota 2",purchase,1.0,0 -248840697,"Dota 2",play,8.4,0 -132784716,"Football Manager 2013",purchase,1.0,0 -132784716,"Football Manager 2013",play,97.0,0 -132784716,"Heroes of Might & Magic III - HD Edition",purchase,1.0,0 -132784716,"Heroes of Might & Magic III - HD Edition",play,2.8,0 -113910653,"Team Fortress 2",purchase,1.0,0 -113910653,"Team Fortress 2",play,15.4,0 -57226729,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -57226729,"Call of Duty Modern Warfare 2 - Multiplayer",play,413.0,0 -57226729,"Counter-Strike Source",purchase,1.0,0 -57226729,"Counter-Strike Source",play,75.0,0 -57226729,"Call of Duty Black Ops",purchase,1.0,0 -57226729,"Call of Duty Black Ops",play,26.0,0 -57226729,"Call of Duty Modern Warfare 2",purchase,1.0,0 -57226729,"Call of Duty Modern Warfare 2",play,25.0,0 -57226729,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -57226729,"Call of Duty Black Ops - Multiplayer",play,10.5,0 -212149210,"BLOCKADE 3D",purchase,1.0,0 -212149210,"BLOCKADE 3D",play,2.3,0 -212149210,"Dota 2",purchase,1.0,0 -212149210,"Dota 2",play,0.4,0 -212149210,"Team Fortress 2",purchase,1.0,0 -212149210,"Team Fortress 2",play,0.4,0 -212149210,"Brick-Force",purchase,1.0,0 -212149210,"Path of Exile",purchase,1.0,0 -212149210,"PlanetSide 2",purchase,1.0,0 -212149210,"Unturned",purchase,1.0,0 -93189271,"DayZ",purchase,1.0,0 -93189271,"DayZ",play,1555.0,0 -93189271,"Counter-Strike Global Offensive",purchase,1.0,0 -93189271,"Counter-Strike Global Offensive",play,120.0,0 -93189271,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -93189271,"Call of Duty Modern Warfare 3 - Multiplayer",play,102.0,0 -93189271,"Call of Duty Black Ops",purchase,1.0,0 -93189271,"Call of Duty Black Ops",play,37.0,0 -93189271,"Call of Duty Modern Warfare 3",purchase,1.0,0 -93189271,"Call of Duty Modern Warfare 3",play,16.6,0 -93189271,"Arma 3",purchase,1.0,0 -93189271,"Arma 3",play,16.1,0 -93189271,"Survival Postapocalypse Now",purchase,1.0,0 -93189271,"Survival Postapocalypse Now",play,6.3,0 -93189271,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -93189271,"Call of Duty Black Ops II - Zombies",play,4.7,0 -93189271,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -93189271,"Call of Duty Black Ops II - Multiplayer",play,4.5,0 -93189271,"Left 4 Dead 2",purchase,1.0,0 -93189271,"Left 4 Dead 2",play,4.3,0 -93189271,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -93189271,"A.V.A - Alliance of Valiant Arms",play,4.1,0 -93189271,"Rust",purchase,1.0,0 -93189271,"Rust",play,3.2,0 -93189271,"Unturned",purchase,1.0,0 -93189271,"Unturned",play,2.5,0 -93189271,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -93189271,"Call of Duty Black Ops - Multiplayer",play,0.7,0 -93189271,"Call of Duty Black Ops II",purchase,1.0,0 -93189271,"Call of Duty Black Ops II",play,0.6,0 -93189271,"Borderlands 2",purchase,1.0,0 -93189271,"Borderlands 2",play,0.4,0 -93189271,"Arma 3 Zeus",purchase,1.0,0 -93189271,"Heroes & Generals",purchase,1.0,0 -93189271,"The Evil Within",purchase,1.0,0 -58953935,"APB Reloaded",purchase,1.0,0 -58953935,"APB Reloaded",play,251.0,0 -58953935,"Magic 2014 ",purchase,1.0,0 -58953935,"Magic 2014 ",play,199.0,0 -58953935,"Left 4 Dead 2",purchase,1.0,0 -58953935,"Left 4 Dead 2",play,102.0,0 -58953935,"Arma 2 Operation Arrowhead",purchase,1.0,0 -58953935,"Arma 2 Operation Arrowhead",play,91.0,0 -58953935,"War Thunder",purchase,1.0,0 -58953935,"War Thunder",play,42.0,0 -58953935,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -58953935,"Warhammer 40,000 Dawn of War Soulstorm",play,27.0,0 -58953935,"Heroes & Generals",purchase,1.0,0 -58953935,"Heroes & Generals",play,24.0,0 -58953935,"Defiance",purchase,1.0,0 -58953935,"Defiance",play,15.9,0 -58953935,"Counter-Strike Source",purchase,1.0,0 -58953935,"Counter-Strike Source",play,12.7,0 -58953935,"Day of Defeat Source",purchase,1.0,0 -58953935,"Day of Defeat Source",play,9.5,0 -58953935,"Star Conflict",purchase,1.0,0 -58953935,"Star Conflict",play,5.8,0 -58953935,"Fishing Planet",purchase,1.0,0 -58953935,"Fishing Planet",play,2.8,0 -58953935,"PlanetSide 2",purchase,1.0,0 -58953935,"PlanetSide 2",play,1.9,0 -58953935,"Mortal Online",purchase,1.0,0 -58953935,"Mortal Online",play,1.6,0 -58953935,"Magicka Wizard Wars",purchase,1.0,0 -58953935,"Magicka Wizard Wars",play,1.5,0 -58953935,"Magic Duels",purchase,1.0,0 -58953935,"Magic Duels",play,0.7,0 -58953935,"Dota 2",purchase,1.0,0 -58953935,"Dota 2",play,0.5,0 -58953935,"No More Room in Hell",purchase,1.0,0 -58953935,"No More Room in Hell",play,0.4,0 -58953935,"Arma 2",purchase,1.0,0 -58953935,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -58953935,"RaceRoom Racing Experience ",purchase,1.0,0 -305390769,"Dota 2",purchase,1.0,0 -305390769,"Dota 2",play,1.0,0 -305390769,"Might & Magic Heroes Online",purchase,1.0,0 -305390769,"Might & Magic Heroes Online",play,0.7,0 -305390769,"Sphere III Enchanted World",purchase,1.0,0 -4595423,"Team Fortress 2",purchase,1.0,0 -4595423,"Team Fortress 2",play,11.8,0 -4595423,"Counter-Strike",purchase,1.0,0 -4595423,"Counter-Strike",play,4.8,0 -4595423,"Alien Swarm",purchase,1.0,0 -4595423,"Alien Swarm",play,2.4,0 -4595423,"DC Universe Online",purchase,1.0,0 -4595423,"DC Universe Online",play,1.8,0 -4595423,"BIT.TRIP RUNNER",purchase,1.0,0 -4595423,"BIT.TRIP RUNNER",play,0.6,0 -4595423,"Half-Life",purchase,1.0,0 -4595423,"Half-Life",play,0.4,0 -4595423,"Shank",purchase,1.0,0 -4595423,"Shank",play,0.4,0 -4595423,"Toki Tori",purchase,1.0,0 -4595423,"Toki Tori",play,0.3,0 -4595423,"Super Meat Boy",purchase,1.0,0 -4595423,"Super Meat Boy",play,0.2,0 -4595423,"Torchlight",purchase,1.0,0 -4595423,"Bastion",purchase,1.0,0 -4595423,"Cave Story+",purchase,1.0,0 -4595423,"Counter-Strike Condition Zero",purchase,1.0,0 -4595423,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -4595423,"Day of Defeat",purchase,1.0,0 -4595423,"Deathmatch Classic",purchase,1.0,0 -4595423,"FTL Faster Than Light",purchase,1.0,0 -4595423,"Gratuitous Space Battles",purchase,1.0,0 -4595423,"Half-Life Blue Shift",purchase,1.0,0 -4595423,"Half-Life Opposing Force",purchase,1.0,0 -4595423,"Jamestown",purchase,1.0,0 -4595423,"LIMBO",purchase,1.0,0 -4595423,"Mark of the Ninja",purchase,1.0,0 -4595423,"NightSky",purchase,1.0,0 -4595423,"Ricochet",purchase,1.0,0 -4595423,"Team Fortress Classic",purchase,1.0,0 -4595423,"Trine 2",purchase,1.0,0 -171765197,"Dota 2",purchase,1.0,0 -171765197,"Dota 2",play,4.0,0 -171765197,"Nosgoth",purchase,1.0,0 -171765197,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -171765197,"War Thunder",purchase,1.0,0 -201028044,"Dota 2",purchase,1.0,0 -201028044,"Dota 2",play,8.7,0 -244035163,"Unturned",purchase,1.0,0 -244035163,"Unturned",play,0.2,0 -181379461,"Dota 2",purchase,1.0,0 -181379461,"Dota 2",play,3.4,0 -82176452,"Portal",purchase,1.0,0 -82176452,"Portal",play,0.8,0 -252345719,"Trove",purchase,1.0,0 -252345719,"Trove",play,30.0,0 -252345719,"GUILTY GEAR Xrd -SIGN-",purchase,1.0,0 -252345719,"GUILTY GEAR Xrd -SIGN-",play,9.6,0 -252345719,"Unturned",purchase,1.0,0 -252345719,"Unturned",play,1.4,0 -252345719,"The Expendabros",purchase,1.0,0 -252345719,"The Expendabros",play,0.5,0 -252345719,"Brawlhalla",purchase,1.0,0 -252345719,"Brawlhalla",play,0.2,0 -252345719,"Quake Live",purchase,1.0,0 -293744664,"Dota 2",purchase,1.0,0 -293744664,"Dota 2",play,4.7,0 -65472820,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -65472820,"Call of Duty Modern Warfare 2 - Multiplayer",play,144.0,0 -65472820,"Call of Duty Modern Warfare 2",purchase,1.0,0 -65472820,"Call of Duty Modern Warfare 2",play,0.9,0 -65472820,"Call of Duty Modern Warfare 2 Stimulus Package",purchase,1.0,0 -42029670,"X-COM UFO Defense",purchase,1.0,0 -42029670,"X-COM UFO Defense",play,7.8,0 -42029670,"Sid Meier's Civilization V",purchase,1.0,0 -42029670,"Sid Meier's Civilization V",play,1.4,0 -212426459,"Counter-Strike Global Offensive",purchase,1.0,0 -212426459,"Counter-Strike Global Offensive",play,173.0,0 -212426459,"Trove",purchase,1.0,0 -212426459,"Trove",play,105.0,0 -212426459,"Garry's Mod",purchase,1.0,0 -212426459,"Garry's Mod",play,67.0,0 -212426459,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -212426459,"Just Cause 2 Multiplayer Mod",play,17.1,0 -212426459,"Warframe",purchase,1.0,0 -212426459,"Warframe",play,11.1,0 -212426459,"Dirty Bomb",purchase,1.0,0 -212426459,"Dirty Bomb",play,10.7,0 -212426459,"Aftermath",purchase,1.0,0 -212426459,"Aftermath",play,8.8,0 -212426459,"WARMODE",purchase,1.0,0 -212426459,"WARMODE",play,7.8,0 -212426459,"Metro Conflict",purchase,1.0,0 -212426459,"Metro Conflict",play,6.5,0 -212426459,"Team Fortress 2",purchase,1.0,0 -212426459,"Team Fortress 2",play,1.6,0 -212426459,"AI War Fleet Command",purchase,1.0,0 -212426459,"AI War Fleet Command",play,1.3,0 -212426459,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -212426459,"Tom Clancy's Ghost Recon Phantoms - EU",play,1.0,0 -212426459,"Unturned",purchase,1.0,0 -212426459,"Unturned",play,0.5,0 -212426459,"Just Cause 2",purchase,1.0,0 -212426459,"Grimind",purchase,1.0,0 -212426459,"Surgeon Simulator",purchase,1.0,0 -212426459,"Rhythm Destruction",purchase,1.0,0 -212426459,"Deadbreed",purchase,1.0,0 -212426459,"Commando Jack",purchase,1.0,0 -212426459,"Snuggle Truck",purchase,1.0,0 -212426459,"Clicker Heroes",purchase,1.0,0 -212426459,"Double Action Boogaloo",purchase,1.0,0 -212426459,"Marvel Heroes 2015",purchase,1.0,0 -212426459,"No More Room in Hell",purchase,1.0,0 -212426459,"Overcast - Walden and the Werewolf",purchase,1.0,0 -212426459,"Red Crucible Firestorm",purchase,1.0,0 -96588736,"Garry's Mod",purchase,1.0,0 -96588736,"Garry's Mod",play,62.0,0 -96588736,"Fallout 4",purchase,1.0,0 -96588736,"Fallout 4",play,51.0,0 -96588736,"Far Cry 3",purchase,1.0,0 -96588736,"Far Cry 3",play,51.0,0 -96588736,"South Park The Stick of Truth",purchase,1.0,0 -96588736,"South Park The Stick of Truth",play,47.0,0 -96588736,"The Binding of Isaac",purchase,1.0,0 -96588736,"The Binding of Isaac",play,36.0,0 -96588736,"Fallout New Vegas",purchase,1.0,0 -96588736,"Fallout New Vegas",play,25.0,0 -96588736,"Marvel Heroes 2015",purchase,1.0,0 -96588736,"Marvel Heroes 2015",play,21.0,0 -96588736,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -96588736,"Dark Souls Prepare to Die Edition",play,20.0,0 -96588736,"BioShock Infinite",purchase,1.0,0 -96588736,"BioShock Infinite",play,17.0,0 -96588736,"Outlast",purchase,1.0,0 -96588736,"Outlast",play,16.9,0 -96588736,"Darksiders II",purchase,1.0,0 -96588736,"Darksiders II",play,16.3,0 -96588736,"Hitman Absolution",purchase,1.0,0 -96588736,"Hitman Absolution",play,14.8,0 -96588736,"Dishonored",purchase,1.0,0 -96588736,"Dishonored",play,13.9,0 -96588736,"PAYDAY The Heist",purchase,1.0,0 -96588736,"PAYDAY The Heist",play,13.6,0 -96588736,"Portal 2",purchase,1.0,0 -96588736,"Portal 2",play,13.4,0 -96588736,"Crysis 2 Maximum Edition",purchase,1.0,0 -96588736,"Crysis 2 Maximum Edition",play,13.0,0 -96588736,"Left 4 Dead 2",purchase,1.0,0 -96588736,"Left 4 Dead 2",play,13.0,0 -96588736,"Counter-Strike Global Offensive",purchase,1.0,0 -96588736,"Counter-Strike Global Offensive",play,11.3,0 -96588736,"The Elder Scrolls V Skyrim",purchase,1.0,0 -96588736,"The Elder Scrolls V Skyrim",play,11.1,0 -96588736,"Don't Starve Together Beta",purchase,1.0,0 -96588736,"Don't Starve Together Beta",play,10.7,0 -96588736,"Magicka",purchase,1.0,0 -96588736,"Magicka",play,10.5,0 -96588736,"Sid Meier's Civilization V",purchase,1.0,0 -96588736,"Sid Meier's Civilization V",play,10.1,0 -96588736,"Batman Arkham City GOTY",purchase,1.0,0 -96588736,"Batman Arkham City GOTY",play,7.6,0 -96588736,"Loadout",purchase,1.0,0 -96588736,"Loadout",play,7.5,0 -96588736,"Metro Last Light",purchase,1.0,0 -96588736,"Metro Last Light",play,7.1,0 -96588736,"Don't Starve",purchase,1.0,0 -96588736,"Don't Starve",play,6.8,0 -96588736,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -96588736,"METAL GEAR RISING REVENGEANCE",play,6.0,0 -96588736,"Killing Floor",purchase,1.0,0 -96588736,"Killing Floor",play,4.8,0 -96588736,"The Binding of Isaac Rebirth",purchase,1.0,0 -96588736,"The Binding of Isaac Rebirth",play,4.7,0 -96588736,"Arma 2 Operation Arrowhead",purchase,1.0,0 -96588736,"Arma 2 Operation Arrowhead",play,4.3,0 -96588736,"Crypt of the NecroDancer",purchase,1.0,0 -96588736,"Crypt of the NecroDancer",play,4.1,0 -96588736,"Realm of the Mad God",purchase,1.0,0 -96588736,"Realm of the Mad God",play,4.1,0 -96588736,"PAYDAY 2",purchase,1.0,0 -96588736,"PAYDAY 2",play,3.0,0 -96588736,"The Forest",purchase,1.0,0 -96588736,"The Forest",play,3.0,0 -96588736,"Hunted The Demon's Forge",purchase,1.0,0 -96588736,"Hunted The Demon's Forge",play,3.0,0 -96588736,"Hotline Miami",purchase,1.0,0 -96588736,"Hotline Miami",play,3.0,0 -96588736,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -96588736,"Viscera Cleanup Detail Santa's Rampage",play,2.7,0 -96588736,"Team Fortress 2",purchase,1.0,0 -96588736,"Team Fortress 2",play,2.7,0 -96588736,"Dead Island Epidemic",purchase,1.0,0 -96588736,"Dead Island Epidemic",play,2.3,0 -96588736,"BattleBlock Theater",purchase,1.0,0 -96588736,"BattleBlock Theater",play,2.3,0 -96588736,"Broforce",purchase,1.0,0 -96588736,"Broforce",play,1.8,0 -96588736,"Worms Clan Wars",purchase,1.0,0 -96588736,"Worms Clan Wars",play,1.7,0 -96588736,"Terraria",purchase,1.0,0 -96588736,"Terraria",play,1.6,0 -96588736,"ORION Prelude",purchase,1.0,0 -96588736,"ORION Prelude",play,1.6,0 -96588736,"Infestation Survivor Stories",purchase,1.0,0 -96588736,"Infestation Survivor Stories",play,1.6,0 -96588736,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -96588736,"Resident Evil Revelations / Biohazard Revelations",play,1.6,0 -96588736,"Grand Theft Auto IV",purchase,1.0,0 -96588736,"Grand Theft Auto IV",play,1.5,0 -96588736,"Arma 2 DayZ Mod",purchase,1.0,0 -96588736,"Arma 2 DayZ Mod",play,1.3,0 -96588736,"Dead Island",purchase,1.0,0 -96588736,"Dead Island",play,1.3,0 -96588736,"METAL SLUG 3",purchase,1.0,0 -96588736,"METAL SLUG 3",play,0.9,0 -96588736,"DayZ",purchase,1.0,0 -96588736,"DayZ",play,0.6,0 -96588736,"Slender The Arrival",purchase,1.0,0 -96588736,"Slender The Arrival",play,0.5,0 -96588736,"Castle Crashers",purchase,1.0,0 -96588736,"Castle Crashers",play,0.5,0 -96588736,"Counter-Strike Source",purchase,1.0,0 -96588736,"Counter-Strike Source",play,0.4,0 -96588736,"Dementium II HD",purchase,1.0,0 -96588736,"Dementium II HD",play,0.3,0 -96588736,"The Cave",purchase,1.0,0 -96588736,"The Cave",play,0.3,0 -96588736,"Thief",purchase,1.0,0 -96588736,"Thief",play,0.3,0 -96588736,"Synergy",purchase,1.0,0 -96588736,"Synergy",play,0.2,0 -96588736,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -96588736,"Kane & Lynch 2 Dog Days",play,0.2,0 -96588736,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -96588736,"Surgeon Simulator",purchase,1.0,0 -96588736,"Arma 2",purchase,1.0,0 -96588736,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -96588736,"Batman Arkham Origins",purchase,1.0,0 -96588736,"BioShock Infinite - Season Pass",purchase,1.0,0 -96588736,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -96588736,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -96588736,"BRINK",purchase,1.0,0 -96588736,"Darkest Hour Europe '44-'45",purchase,1.0,0 -96588736,"Dwarfs!?",purchase,1.0,0 -96588736,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -96588736,"Fallout New Vegas Dead Money",purchase,1.0,0 -96588736,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -96588736,"Half-Life 2",purchase,1.0,0 -96588736,"Half-Life 2 Episode One",purchase,1.0,0 -96588736,"Half-Life 2 Episode Two",purchase,1.0,0 -96588736,"Half-Life 2 Lost Coast",purchase,1.0,0 -96588736,"Hitman Sniper Challenge",purchase,1.0,0 -96588736,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -96588736,"Loadout Steam Launch Starter Pack",purchase,1.0,0 -96588736,"Magicka Party Robes",purchase,1.0,0 -96588736,"Mare Nostrum",purchase,1.0,0 -96588736,"Outlast Whistleblower DLC",purchase,1.0,0 -96588736,"PAYDAY Wolf Pack",purchase,1.0,0 -96588736,"Portal",purchase,1.0,0 -96588736,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -96588736,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -96588736,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -96588736,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -96588736,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -96588736,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -96588736,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -96588736,"The Ball",purchase,1.0,0 -96588736,"The Forgotten Ones",purchase,1.0,0 -96588736,"The Ship",purchase,1.0,0 -96588736,"The Ship Single Player",purchase,1.0,0 -96588736,"The Ship Tutorial",purchase,1.0,0 -96588736,"Thief - Opportunist",purchase,1.0,0 -96588736,"Thief - The Bank Heist",purchase,1.0,0 -126522515,"Team Fortress 2",purchase,1.0,0 -126522515,"Team Fortress 2",play,635.0,0 -126522515,"The Elder Scrolls V Skyrim",purchase,1.0,0 -126522515,"The Elder Scrolls V Skyrim",play,125.0,0 -126522515,"Rust",purchase,1.0,0 -126522515,"Rust",play,68.0,0 -126522515,"Unturned",purchase,1.0,0 -126522515,"Unturned",play,57.0,0 -126522515,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -126522515,"Call of Duty Modern Warfare 2 - Multiplayer",play,50.0,0 -126522515,"Killing Floor",purchase,1.0,0 -126522515,"Killing Floor",play,43.0,0 -126522515,"Garry's Mod",purchase,1.0,0 -126522515,"Garry's Mod",play,41.0,0 -126522515,"Dishonored",purchase,1.0,0 -126522515,"Dishonored",play,40.0,0 -126522515,"PAYDAY 2",purchase,1.0,0 -126522515,"PAYDAY 2",play,29.0,0 -126522515,"Insurgency",purchase,1.0,0 -126522515,"Insurgency",play,19.4,0 -126522515,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -126522515,"Tom Clancy's Ghost Recon Phantoms - NA",play,18.6,0 -126522515,"Robocraft",purchase,1.0,0 -126522515,"Robocraft",play,14.7,0 -126522515,"Trove",purchase,1.0,0 -126522515,"Trove",play,12.1,0 -126522515,"F.E.A.R. Online",purchase,1.0,0 -126522515,"F.E.A.R. Online",play,8.9,0 -126522515,"Nosgoth",purchase,1.0,0 -126522515,"Nosgoth",play,7.2,0 -126522515,"Call of Duty Modern Warfare 2",purchase,1.0,0 -126522515,"Call of Duty Modern Warfare 2",play,6.9,0 -126522515,"Awesomenauts",purchase,1.0,0 -126522515,"Awesomenauts",play,6.8,0 -126522515,"Portal 2",purchase,1.0,0 -126522515,"Portal 2",play,6.6,0 -126522515,"Rise of Incarnates",purchase,1.0,0 -126522515,"Rise of Incarnates",play,5.2,0 -126522515,"The Forest",purchase,1.0,0 -126522515,"The Forest",play,4.6,0 -126522515,"Path of Exile",purchase,1.0,0 -126522515,"Path of Exile",play,4.6,0 -126522515,"Defiance",purchase,1.0,0 -126522515,"Defiance",play,4.0,0 -126522515,"Super Crate Box",purchase,1.0,0 -126522515,"Super Crate Box",play,3.6,0 -126522515,"The Mighty Quest For Epic Loot",purchase,1.0,0 -126522515,"The Mighty Quest For Epic Loot",play,3.5,0 -126522515,"Dota 2",purchase,1.0,0 -126522515,"Dota 2",play,3.1,0 -126522515,"God Mode",purchase,1.0,0 -126522515,"God Mode",play,2.5,0 -126522515,"Infestation Survivor Stories",purchase,1.0,0 -126522515,"Infestation Survivor Stories",play,2.4,0 -126522515,"Warframe",purchase,1.0,0 -126522515,"Warframe",play,2.1,0 -126522515,"PlanetSide 2",purchase,1.0,0 -126522515,"PlanetSide 2",play,1.6,0 -126522515,"Dirty Bomb",purchase,1.0,0 -126522515,"Dirty Bomb",play,0.5,0 -126522515,"Arma Cold War Assault",purchase,1.0,0 -126522515,"Arma Cold War Assault",play,0.5,0 -126522515,"Dead Island Epidemic",purchase,1.0,0 -126522515,"Dead Island Epidemic",play,0.4,0 -126522515,"Tribes Ascend",purchase,1.0,0 -126522515,"Tribes Ascend",play,0.4,0 -126522515,"Dead Pixels",purchase,1.0,0 -126522515,"Dead Pixels",play,0.1,0 -126522515,"Mitos.is The Game",purchase,1.0,0 -126522515,"Firefall",purchase,1.0,0 -126522515,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -126522515,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -126522515,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -126522515,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -126522515,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -126522515,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -176318036,"Dota 2",purchase,1.0,0 -176318036,"Dota 2",play,1087.0,0 -176318036,"Counter-Strike Global Offensive",purchase,1.0,0 -176318036,"Counter-Strike Global Offensive",play,57.0,0 -124437057,"Euro Truck Simulator 2",purchase,1.0,0 -124437057,"Euro Truck Simulator 2",play,205.0,0 -124437057,"Deponia The Complete Journey",purchase,1.0,0 -124437057,"Deponia The Complete Journey",play,60.0,0 -124437057,"SpaceChem",purchase,1.0,0 -124437057,"SpaceChem",play,36.0,0 -124437057,"Sid Meier's Civilization V",purchase,1.0,0 -124437057,"Sid Meier's Civilization V",play,22.0,0 -124437057,"XCOM Enemy Unknown",purchase,1.0,0 -124437057,"XCOM Enemy Unknown",play,22.0,0 -124437057,"The Book of Unwritten Tales",purchase,1.0,0 -124437057,"The Book of Unwritten Tales",play,21.0,0 -124437057,"Portal 2",purchase,1.0,0 -124437057,"Portal 2",play,20.0,0 -124437057,"Half-Life Source",purchase,1.0,0 -124437057,"Half-Life Source",play,20.0,0 -124437057,"X-Plane 10 Global - 64 Bit",purchase,1.0,0 -124437057,"X-Plane 10 Global - 64 Bit",play,18.3,0 -124437057,"The Raven - Legacy of a Master Thief",purchase,1.0,0 -124437057,"The Raven - Legacy of a Master Thief",play,18.2,0 -124437057,"Toki Tori",purchase,1.0,0 -124437057,"Toki Tori",play,16.4,0 -124437057,"Closure",purchase,1.0,0 -124437057,"Closure",play,15.9,0 -124437057,"The Book of Unwritten Tales The Critter Chronicles",purchase,1.0,0 -124437057,"The Book of Unwritten Tales The Critter Chronicles",play,14.0,0 -124437057,"Iesabel",purchase,1.0,0 -124437057,"Iesabel",play,13.9,0 -124437057,"Portal",purchase,1.0,0 -124437057,"Portal",play,12.5,0 -124437057,"Waking Mars",purchase,1.0,0 -124437057,"Waking Mars",play,12.2,0 -124437057,"Half-Life 2",purchase,1.0,0 -124437057,"Half-Life 2",play,12.1,0 -124437057,"Cave Story+",purchase,1.0,0 -124437057,"Cave Story+",play,11.4,0 -124437057,"Cities in Motion 2",purchase,1.0,0 -124437057,"Cities in Motion 2",play,11.2,0 -124437057,"Contraption Maker",purchase,1.0,0 -124437057,"Contraption Maker",play,11.0,0 -124437057,"Trine",purchase,1.0,0 -124437057,"Trine",play,10.6,0 -124437057,"Alien Isolation",purchase,1.0,0 -124437057,"Alien Isolation",play,8.9,0 -124437057,"RUSH",purchase,1.0,0 -124437057,"RUSH",play,7.5,0 -124437057,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -124437057,"The Witcher 2 Assassins of Kings Enhanced Edition",play,7.1,0 -124437057,"The Cave",purchase,1.0,0 -124437057,"The Cave",play,7.1,0 -124437057,"Stacking",purchase,1.0,0 -124437057,"Stacking",play,6.7,0 -124437057,"LYNE",purchase,1.0,0 -124437057,"LYNE",play,6.2,0 -124437057,"Journey of a Roach",purchase,1.0,0 -124437057,"Journey of a Roach",play,6.0,0 -124437057,"The Journey Down Chapter One",purchase,1.0,0 -124437057,"The Journey Down Chapter One",play,5.6,0 -124437057,"Deadfall Adventures",purchase,1.0,0 -124437057,"Deadfall Adventures",play,5.4,0 -124437057,"Spirits",purchase,1.0,0 -124437057,"Spirits",play,5.3,0 -124437057,"To the Moon",purchase,1.0,0 -124437057,"To the Moon",play,5.2,0 -124437057,"Mark of the Ninja",purchase,1.0,0 -124437057,"Mark of the Ninja",play,5.2,0 -124437057,"This War of Mine",purchase,1.0,0 -124437057,"This War of Mine",play,4.6,0 -124437057,"Serious Sam 3 BFE",purchase,1.0,0 -124437057,"Serious Sam 3 BFE",play,4.6,0 -124437057,"Don't Starve",purchase,1.0,0 -124437057,"Don't Starve",play,4.4,0 -124437057,"Analogue A Hate Story",purchase,1.0,0 -124437057,"Analogue A Hate Story",play,4.3,0 -124437057,"Borderlands 2",purchase,1.0,0 -124437057,"Borderlands 2",play,3.5,0 -124437057,"Spectraball",purchase,1.0,0 -124437057,"Spectraball",play,2.9,0 -124437057,"Shadowrun Returns",purchase,1.0,0 -124437057,"Shadowrun Returns",play,2.6,0 -124437057,"La-Mulana",purchase,1.0,0 -124437057,"La-Mulana",play,2.5,0 -124437057,"Syder Arcade",purchase,1.0,0 -124437057,"Syder Arcade",play,2.3,0 -124437057,"Anomaly Warzone Earth",purchase,1.0,0 -124437057,"Anomaly Warzone Earth",play,2.3,0 -124437057,"Left 4 Dead 2",purchase,1.0,0 -124437057,"Left 4 Dead 2",play,2.2,0 -124437057,"Puddle",purchase,1.0,0 -124437057,"Puddle",play,2.1,0 -124437057,"Little Racers STREET",purchase,1.0,0 -124437057,"Little Racers STREET",play,2.1,0 -124437057,"Shank 2",purchase,1.0,0 -124437057,"Shank 2",play,2.0,0 -124437057,"Space Pirates and Zombies",purchase,1.0,0 -124437057,"Space Pirates and Zombies",play,2.0,0 -124437057,"Toki Tori 2+",purchase,1.0,0 -124437057,"Toki Tori 2+",play,1.9,0 -124437057,"Serena",purchase,1.0,0 -124437057,"Serena",play,1.5,0 -124437057,"Shadow Warrior",purchase,1.0,0 -124437057,"Shadow Warrior",play,1.4,0 -124437057,"X3 Reunion",purchase,1.0,0 -124437057,"X3 Reunion",play,1.3,0 -124437057,"Rochard",purchase,1.0,0 -124437057,"Rochard",play,1.2,0 -124437057,"Cogs",purchase,1.0,0 -124437057,"Cogs",play,1.0,0 -124437057,"Metro Last Light",purchase,1.0,0 -124437057,"Metro Last Light",play,0.9,0 -124437057,"Zen Bound 2",purchase,1.0,0 -124437057,"Zen Bound 2",play,0.9,0 -124437057,"Fishing Planet",purchase,1.0,0 -124437057,"Fishing Planet",play,0.8,0 -124437057,"World of Goo",purchase,1.0,0 -124437057,"World of Goo",play,0.7,0 -124437057,"Half-Life Opposing Force",purchase,1.0,0 -124437057,"Half-Life Opposing Force",play,0.5,0 -124437057,"EDGE",purchase,1.0,0 -124437057,"EDGE",play,0.5,0 -124437057,"iBomber Attack",purchase,1.0,0 -124437057,"iBomber Attack",play,0.4,0 -124437057,"Trine 2",purchase,1.0,0 -124437057,"Trine 2",play,0.3,0 -124437057,"Intrusion 2",purchase,1.0,0 -124437057,"Intrusion 2",play,0.1,0 -124437057,"PAYDAY The Web Series - Episode 1",purchase,1.0,0 -124437057,"PAYDAY The Web Series - Episode 1",play,0.1,0 -124437057,"140",purchase,1.0,0 -124437057,"About Love, Hate and the other ones",purchase,1.0,0 -124437057,"Amnesia The Dark Descent",purchase,1.0,0 -124437057,"Antichamber",purchase,1.0,0 -124437057,"Dysfunctional Systems Learning to Manage Chaos",purchase,1.0,0 -124437057,"Euro Fishing",purchase,1.0,0 -124437057,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -124437057,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -124437057,"Evolution RTS",purchase,1.0,0 -124437057,"Frankenstein Master of Death",purchase,1.0,0 -124437057,"Half-Life",purchase,1.0,0 -124437057,"Half-Life 2 Deathmatch",purchase,1.0,0 -124437057,"Half-Life 2 Episode One",purchase,1.0,0 -124437057,"Half-Life 2 Episode Two",purchase,1.0,0 -124437057,"Half-Life 2 Lost Coast",purchase,1.0,0 -124437057,"Half-Life Blue Shift",purchase,1.0,0 -124437057,"Half-Life Deathmatch Source",purchase,1.0,0 -124437057,"Hate Plus",purchase,1.0,0 -124437057,"iBomber Defense Pacific",purchase,1.0,0 -124437057,"Ichi",purchase,1.0,0 -124437057,"Mark of the Ninja Special Edition DLC",purchase,1.0,0 -124437057,"MirrorMoon EP",purchase,1.0,0 -124437057,"Nihilumbra",purchase,1.0,0 -124437057,"Outlast",purchase,1.0,0 -124437057,"Pixel Piracy",purchase,1.0,0 -124437057,"POSTAL",purchase,1.0,0 -124437057,"Rochard - Hard Times",purchase,1.0,0 -124437057,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -124437057,"Saviors",purchase,1.0,0 -124437057,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -124437057,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -124437057,"Strider",purchase,1.0,0 -124437057,"Super Splatters",purchase,1.0,0 -124437057,"Team Fortress Classic",purchase,1.0,0 -124437057,"The Book of Unwritten Tales Extras",purchase,1.0,0 -124437057,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -124437057,"Torchlight II",purchase,1.0,0 -124437057,"Unepic",purchase,1.0,0 -124437057,"Violett",purchase,1.0,0 -124437057,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -124437057,"Waveform",purchase,1.0,0 -124437057,"Worms Clan Wars",purchase,1.0,0 -124437057,"X-Plane 10 Global - 64 Bit - Africa Scenery",purchase,1.0,0 -124437057,"X-Plane 10 Global - 64 Bit - Asia Scenery",purchase,1.0,0 -124437057,"X-Plane 10 Global - 64 Bit - Australia Scenery",purchase,1.0,0 -124437057,"X-Plane 10 Global - 64 Bit - North America Scenery",purchase,1.0,0 -124437057,"X-Plane 10 Global - 64 Bit - South America Scenery",purchase,1.0,0 -124437057,"XCOM Enemy Within",purchase,1.0,0 -112532182,"Team Fortress 2",purchase,1.0,0 -112532182,"Team Fortress 2",play,4.3,0 -98237090,"Football Manager 2011",purchase,1.0,0 -98237090,"Football Manager 2011",play,70.0,0 -98237090,"Football Manager 2012",purchase,1.0,0 -98237090,"Football Manager 2012",play,32.0,0 -98237090,"Empire Total War",purchase,1.0,0 -98237090,"Empire Total War",play,7.2,0 -14544587,"Stronghold Kingdoms",purchase,1.0,0 -14544587,"Stronghold Kingdoms",play,1616.0,0 -14544587,"Clicker Heroes",purchase,1.0,0 -14544587,"Clicker Heroes",play,1603.0,0 -14544587,"Perpetuum",purchase,1.0,0 -14544587,"Perpetuum",play,1565.0,0 -14544587,"Sid Meier's Civilization V",purchase,1.0,0 -14544587,"Sid Meier's Civilization V",play,1326.0,0 -14544587,"Neverwinter",purchase,1.0,0 -14544587,"Neverwinter",play,653.0,0 -14544587,"Sword of the Stars Complete Collection",purchase,1.0,0 -14544587,"Sword of the Stars Complete Collection",play,413.0,0 -14544587,"Endless Legend",purchase,1.0,0 -14544587,"Endless Legend",play,147.0,0 -14544587,"Endless Space",purchase,1.0,0 -14544587,"Endless Space",play,132.0,0 -14544587,"Gratuitous Space Battles",purchase,1.0,0 -14544587,"Gratuitous Space Battles",play,106.0,0 -14544587,"RIFT",purchase,1.0,0 -14544587,"RIFT",play,105.0,0 -14544587,"Dungeon Defenders",purchase,1.0,0 -14544587,"Dungeon Defenders",play,65.0,0 -14544587,"Time Clickers",purchase,1.0,0 -14544587,"Time Clickers",play,57.0,0 -14544587,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -14544587,"Sins of a Solar Empire Rebellion",play,55.0,0 -14544587,"Dragon Age Origins",purchase,1.0,0 -14544587,"Dragon Age Origins",play,44.0,0 -14544587,"Total War SHOGUN 2",purchase,1.0,0 -14544587,"Total War SHOGUN 2",play,28.0,0 -14544587,"Borderlands 2",purchase,1.0,0 -14544587,"Borderlands 2",play,28.0,0 -14544587,"Age of Wonders Shadow Magic",purchase,1.0,0 -14544587,"Age of Wonders Shadow Magic",play,19.8,0 -14544587,"Reign Of Kings",purchase,1.0,0 -14544587,"Reign Of Kings",play,15.2,0 -14544587,"Company of Heroes 2",purchase,1.0,0 -14544587,"Company of Heroes 2",play,14.7,0 -14544587,"Dota 2",purchase,1.0,0 -14544587,"Dota 2",play,14.6,0 -14544587,"Torchlight II",purchase,1.0,0 -14544587,"Torchlight II",play,12.2,0 -14544587,"Guild Wars Trilogy",purchase,1.0,0 -14544587,"Guild Wars Trilogy",play,9.9,0 -14544587,"AdVenture Capitalist",purchase,1.0,0 -14544587,"AdVenture Capitalist",play,9.0,0 -14544587,"Magical Diary",purchase,1.0,0 -14544587,"Magical Diary",play,8.9,0 -14544587,"Borderlands",purchase,1.0,0 -14544587,"Borderlands",play,7.1,0 -14544587,"Gauntlet ",purchase,1.0,0 -14544587,"Gauntlet ",play,7.0,0 -14544587,"PlanetSide 2",purchase,1.0,0 -14544587,"PlanetSide 2",play,6.5,0 -14544587,"Counter-Strike Source",purchase,1.0,0 -14544587,"Counter-Strike Source",play,6.4,0 -14544587,"Blood Bowl Chaos Edition",purchase,1.0,0 -14544587,"Blood Bowl Chaos Edition",play,6.4,0 -14544587,"Fractured Space",purchase,1.0,0 -14544587,"Fractured Space",play,6.2,0 -14544587,"Stellar Impact",purchase,1.0,0 -14544587,"Stellar Impact",play,5.7,0 -14544587,"Firefall",purchase,1.0,0 -14544587,"Firefall",play,4.5,0 -14544587,"Everlasting Summer",purchase,1.0,0 -14544587,"Everlasting Summer",play,3.5,0 -14544587,"Magic The Gathering - Duels of the Planeswalkers",purchase,1.0,0 -14544587,"Magic The Gathering - Duels of the Planeswalkers",play,3.3,0 -14544587,"Natural Selection 2",purchase,1.0,0 -14544587,"Natural Selection 2",play,3.2,0 -14544587,"Sword of the Stars II Enhanced Edition",purchase,1.0,0 -14544587,"Sword of the Stars II Enhanced Edition",play,3.0,0 -14544587,"Warframe",purchase,1.0,0 -14544587,"Warframe",play,2.8,0 -14544587,"Magic Duels",purchase,1.0,0 -14544587,"Magic Duels",play,2.7,0 -14544587,"Magicka",purchase,1.0,0 -14544587,"Magicka",play,2.5,0 -14544587,"A Game of Thrones - Genesis",purchase,1.0,0 -14544587,"A Game of Thrones - Genesis",play,2.5,0 -14544587,"Star Trek D-A-C",purchase,1.0,0 -14544587,"Star Trek D-A-C",play,2.3,0 -14544587,"Crusader Kings Complete",purchase,1.0,0 -14544587,"Crusader Kings Complete",play,2.0,0 -14544587,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -14544587,"Infinity Wars - Animated Trading Card Game",play,1.8,0 -14544587,"Half-Life",purchase,1.0,0 -14544587,"Half-Life",play,1.5,0 -14544587,"Alien Swarm",purchase,1.0,0 -14544587,"Alien Swarm",play,1.3,0 -14544587,"EverQuest Free-to-Play",purchase,1.0,0 -14544587,"EverQuest Free-to-Play",play,1.3,0 -14544587,"Puzzle Chronicles",purchase,1.0,0 -14544587,"Puzzle Chronicles",play,0.9,0 -14544587,"Team Fortress 2",purchase,1.0,0 -14544587,"Team Fortress 2",play,0.9,0 -14544587,"BattleSpace",purchase,1.0,0 -14544587,"BattleSpace",play,0.7,0 -14544587,"Star Crusade CCG",purchase,1.0,0 -14544587,"Star Crusade CCG",play,0.7,0 -14544587,"Armada 2526",purchase,1.0,0 -14544587,"Armada 2526",play,0.6,0 -14544587,"Victory Command",purchase,1.0,0 -14544587,"Victory Command",play,0.6,0 -14544587,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -14544587,"Sid Meier's Civilization IV Beyond the Sword",play,0.5,0 -14544587,"Overlord",purchase,1.0,0 -14544587,"Overlord",play,0.5,0 -14544587,"Steel Ocean",purchase,1.0,0 -14544587,"Steel Ocean",play,0.4,0 -14544587,"Dungeons & Dragons Daggerdale",purchase,1.0,0 -14544587,"Dungeons & Dragons Daggerdale",play,0.3,0 -14544587,"Age of Wonders 2",purchase,1.0,0 -14544587,"Age of Wonders 2",play,0.2,0 -14544587,"Killing Floor",purchase,1.0,0 -14544587,"Age of Wonders Trilogy Soundtrack",purchase,1.0,0 -14544587,"Age of Wonders",purchase,1.0,0 -14544587,"Atari 80 Classic Games in One!",purchase,1.0,0 -14544587,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -14544587,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -14544587,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -14544587,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -14544587,"Counter-Strike",purchase,1.0,0 -14544587,"Counter-Strike Condition Zero",purchase,1.0,0 -14544587,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -14544587,"Day of Defeat",purchase,1.0,0 -14544587,"Day of Defeat Source",purchase,1.0,0 -14544587,"Deathmatch Classic",purchase,1.0,0 -14544587,"EVE Online",purchase,1.0,0 -14544587,"Guild Wars",purchase,1.0,0 -14544587,"Half-Life 2",purchase,1.0,0 -14544587,"Half-Life 2 Deathmatch",purchase,1.0,0 -14544587,"Half-Life 2 Lost Coast",purchase,1.0,0 -14544587,"Half-Life Blue Shift",purchase,1.0,0 -14544587,"Half-Life Opposing Force",purchase,1.0,0 -14544587,"Half-Life Source",purchase,1.0,0 -14544587,"Half-Life Deathmatch Source",purchase,1.0,0 -14544587,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -14544587,"Magicka Wizard's Survival Kit",purchase,1.0,0 -14544587,"Overlord Raising Hell",purchase,1.0,0 -14544587,"Overlord II",purchase,1.0,0 -14544587,"Ricochet",purchase,1.0,0 -14544587,"Sid Meier's Civilization IV",purchase,1.0,0 -14544587,"Sid Meier's Civilization IV",purchase,1.0,0 -14544587,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -14544587,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -14544587,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -14544587,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -14544587,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -14544587,"Space Engineers",purchase,1.0,0 -14544587,"Super Meat Boy",purchase,1.0,0 -14544587,"Team Fortress Classic",purchase,1.0,0 -14544587,"Terraria",purchase,1.0,0 -14544587,"The Red Solstice",purchase,1.0,0 -14544587,"ThreadSpace Hyperbol",purchase,1.0,0 -14544587,"Titan Quest",purchase,1.0,0 -14544587,"Titan Quest Immortal Throne",purchase,1.0,0 -14544587,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -14544587,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -14544587,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -14544587,"X2 The Threat",purchase,1.0,0 -14544587,"X3 Reunion",purchase,1.0,0 -86469479,"Total War ROME II - Emperor Edition",purchase,1.0,0 -86469479,"Total War ROME II - Emperor Edition",play,73.0,0 -86469479,"Left 4 Dead 2",purchase,1.0,0 -86469479,"Left 4 Dead 2",play,55.0,0 -86469479,"DYNASTY WARRIORS 8 Xtreme Legends Complete Edition",purchase,1.0,0 -86469479,"DYNASTY WARRIORS 8 Xtreme Legends Complete Edition",play,47.0,0 -86469479,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -86469479,"Vampire The Masquerade - Bloodlines",play,47.0,0 -86469479,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -86469479,"METAL GEAR SOLID V THE PHANTOM PAIN",play,45.0,0 -86469479,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -86469479,"Sins of a Solar Empire Rebellion",play,40.0,0 -86469479,"PAYDAY 2",purchase,1.0,0 -86469479,"PAYDAY 2",play,36.0,0 -86469479,"Total War SHOGUN 2",purchase,1.0,0 -86469479,"Total War SHOGUN 2",play,35.0,0 -86469479,"Space Pirates and Zombies",purchase,1.0,0 -86469479,"Space Pirates and Zombies",play,31.0,0 -86469479,"Sleeping Dogs",purchase,1.0,0 -86469479,"Sleeping Dogs",play,26.0,0 -86469479,"Majesty 2 Collection",purchase,1.0,0 -86469479,"Majesty 2 Collection",play,25.0,0 -86469479,"FTL Faster Than Light",purchase,1.0,0 -86469479,"FTL Faster Than Light",play,24.0,0 -86469479,"The Elder Scrolls V Skyrim",purchase,1.0,0 -86469479,"The Elder Scrolls V Skyrim",play,23.0,0 -86469479,"Saints Row The Third",purchase,1.0,0 -86469479,"Saints Row The Third",play,23.0,0 -86469479,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -86469479,"Dragon Age Origins - Ultimate Edition",play,22.0,0 -86469479,"Fallout 4",purchase,1.0,0 -86469479,"Fallout 4",play,22.0,0 -86469479,"Cities Skylines",purchase,1.0,0 -86469479,"Cities Skylines",play,21.0,0 -86469479,"Adventurer Manager",purchase,1.0,0 -86469479,"Adventurer Manager",play,21.0,0 -86469479,"Supreme Commander 2",purchase,1.0,0 -86469479,"Supreme Commander 2",play,18.9,0 -86469479,"Team Fortress 2",purchase,1.0,0 -86469479,"Team Fortress 2",play,17.5,0 -86469479,"Banished",purchase,1.0,0 -86469479,"Banished",play,17.3,0 -86469479,"Spacebase DF-9",purchase,1.0,0 -86469479,"Spacebase DF-9",play,17.1,0 -86469479,"The Witcher Enhanced Edition",purchase,1.0,0 -86469479,"The Witcher Enhanced Edition",play,16.9,0 -86469479,"Galactic Civilizations III",purchase,1.0,0 -86469479,"Galactic Civilizations III",play,16.0,0 -86469479,"Saints Row IV",purchase,1.0,0 -86469479,"Saints Row IV",play,15.3,0 -86469479,"Deus Ex Human Revolution",purchase,1.0,0 -86469479,"Deus Ex Human Revolution",play,15.3,0 -86469479,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -86469479,"Kingdoms of Amalur Reckoning",play,14.6,0 -86469479,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -86469479,"Star Wars The Force Unleashed Ultimate Sith Edition",play,13.8,0 -86469479,"Magicka",purchase,1.0,0 -86469479,"Magicka",play,13.3,0 -86469479,"Overlord Raising Hell",purchase,1.0,0 -86469479,"Overlord Raising Hell",play,12.6,0 -86469479,"Rome Total War",purchase,1.0,0 -86469479,"Rome Total War",play,11.9,0 -86469479,"Grim Dawn",purchase,1.0,0 -86469479,"Grim Dawn",play,11.9,0 -86469479,"This War of Mine",purchase,1.0,0 -86469479,"This War of Mine",play,11.4,0 -86469479,"Stonehearth",purchase,1.0,0 -86469479,"Stonehearth",play,11.1,0 -86469479,"Sleeping Dogs Definitive Edition",purchase,1.0,0 -86469479,"Sleeping Dogs Definitive Edition",play,10.9,0 -86469479,"GoD Factory Wingmen",purchase,1.0,0 -86469479,"GoD Factory Wingmen",play,10.8,0 -86469479,"Titan Quest Immortal Throne",purchase,1.0,0 -86469479,"Titan Quest Immortal Throne",play,10.1,0 -86469479,"A.R.E.S. Extinction Agenda EX",purchase,1.0,0 -86469479,"A.R.E.S. Extinction Agenda EX",play,9.6,0 -86469479,"Guns of Icarus Online",purchase,1.0,0 -86469479,"Guns of Icarus Online",play,9.6,0 -86469479,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -86469479,"METAL GEAR SOLID V GROUND ZEROES",play,9.4,0 -86469479,"Solar 2",purchase,1.0,0 -86469479,"Solar 2",play,8.5,0 -86469479,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -86469479,"Warhammer 40,000 Dawn of War II",play,8.5,0 -86469479,"Rogue Legacy",purchase,1.0,0 -86469479,"Rogue Legacy",play,8.4,0 -86469479,"AI War Fleet Command",purchase,1.0,0 -86469479,"AI War Fleet Command",play,7.9,0 -86469479,"Universe at War Earth Assault",purchase,1.0,0 -86469479,"Universe at War Earth Assault",play,7.9,0 -86469479,"Watch_Dogs",purchase,1.0,0 -86469479,"Watch_Dogs",play,7.2,0 -86469479,"Supreme Commander Forged Alliance",purchase,1.0,0 -86469479,"Supreme Commander Forged Alliance",play,6.8,0 -86469479,"From Dust",purchase,1.0,0 -86469479,"From Dust",play,6.7,0 -86469479,"Infested Planet",purchase,1.0,0 -86469479,"Infested Planet",play,6.6,0 -86469479,"Starbound",purchase,1.0,0 -86469479,"Starbound",play,6.0,0 -86469479,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -86469479,"Deus Ex Human Revolution - Director's Cut",play,6.0,0 -86469479,"Door Kickers",purchase,1.0,0 -86469479,"Door Kickers",play,5.9,0 -86469479,"FINAL FANTASY VIII",purchase,1.0,0 -86469479,"FINAL FANTASY VIII",play,5.8,0 -86469479,"The Settlers 7 Paths to a Kingdom - Gold Edition",purchase,1.0,0 -86469479,"The Settlers 7 Paths to a Kingdom - Gold Edition",play,5.8,0 -86469479,"Anno 2070",purchase,1.0,0 -86469479,"Anno 2070",play,5.4,0 -86469479,"Knights of Pen and Paper +1",purchase,1.0,0 -86469479,"Knights of Pen and Paper +1",play,5.3,0 -86469479,"Risk of Rain",purchase,1.0,0 -86469479,"Risk of Rain",play,5.2,0 -86469479,"Supreme Commander",purchase,1.0,0 -86469479,"Supreme Commander",play,5.2,0 -86469479,"Darksiders",purchase,1.0,0 -86469479,"Darksiders",play,4.9,0 -86469479,"Evoland",purchase,1.0,0 -86469479,"Evoland",play,4.9,0 -86469479,"Folk Tale",purchase,1.0,0 -86469479,"Folk Tale",play,4.9,0 -86469479,"Reus",purchase,1.0,0 -86469479,"Reus",play,4.8,0 -86469479,"Mark of the Ninja",purchase,1.0,0 -86469479,"Mark of the Ninja",play,4.8,0 -86469479,"Rise of Venice",purchase,1.0,0 -86469479,"Rise of Venice",play,4.7,0 -86469479,"Breach & Clear",purchase,1.0,0 -86469479,"Breach & Clear",play,4.6,0 -86469479,"MASSIVE CHALICE",purchase,1.0,0 -86469479,"MASSIVE CHALICE",play,4.5,0 -86469479,"Broforce",purchase,1.0,0 -86469479,"Broforce",play,4.4,0 -86469479,"Orcs Must Die!",purchase,1.0,0 -86469479,"Orcs Must Die!",play,4.2,0 -86469479,"The Guild II Renaissance",purchase,1.0,0 -86469479,"The Guild II Renaissance",play,4.2,0 -86469479,"Super Meat Boy",purchase,1.0,0 -86469479,"Super Meat Boy",play,4.0,0 -86469479,"Valkyria Chronicles",purchase,1.0,0 -86469479,"Valkyria Chronicles",play,4.0,0 -86469479,"Planetary Annihilation",purchase,1.0,0 -86469479,"Planetary Annihilation",play,3.7,0 -86469479,"Dead Rising 2",purchase,1.0,0 -86469479,"Dead Rising 2",play,3.5,0 -86469479,"Star Wars Knights of the Old Republic",purchase,1.0,0 -86469479,"Star Wars Knights of the Old Republic",play,3.4,0 -86469479,"Fight The Dragon",purchase,1.0,0 -86469479,"Fight The Dragon",play,3.4,0 -86469479,"Pillars of Eternity",purchase,1.0,0 -86469479,"Pillars of Eternity",play,3.3,0 -86469479,"Endless Space",purchase,1.0,0 -86469479,"Endless Space",play,3.3,0 -86469479,"Survivor Squad",purchase,1.0,0 -86469479,"Survivor Squad",play,3.2,0 -86469479,"Star Wars Republic Commando",purchase,1.0,0 -86469479,"Star Wars Republic Commando",play,3.0,0 -86469479,"Gnomoria",purchase,1.0,0 -86469479,"Gnomoria",play,2.9,0 -86469479,"Hotline Miami",purchase,1.0,0 -86469479,"Hotline Miami",play,2.8,0 -86469479,"Harvest Massive Encounter",purchase,1.0,0 -86469479,"Harvest Massive Encounter",play,2.8,0 -86469479,"Agarest Generations of War",purchase,1.0,0 -86469479,"Agarest Generations of War",play,2.8,0 -86469479,"How to Survive",purchase,1.0,0 -86469479,"How to Survive",play,2.7,0 -86469479,"Plague Inc Evolved",purchase,1.0,0 -86469479,"Plague Inc Evolved",play,2.7,0 -86469479,"Servo",purchase,1.0,0 -86469479,"Servo",play,2.6,0 -86469479,"Besiege",purchase,1.0,0 -86469479,"Besiege",play,2.6,0 -86469479,"Castlevania Lords of Shadow - Ultimate Edition",purchase,1.0,0 -86469479,"Castlevania Lords of Shadow - Ultimate Edition",play,2.5,0 -86469479,"Rome Total War - Alexander",purchase,1.0,0 -86469479,"Rome Total War - Alexander",play,2.5,0 -86469479,"Pixel Piracy",purchase,1.0,0 -86469479,"Pixel Piracy",play,2.4,0 -86469479,"Assassin's Creed",purchase,1.0,0 -86469479,"Assassin's Creed",play,2.4,0 -86469479,"Monaco",purchase,1.0,0 -86469479,"Monaco",play,2.3,0 -86469479,"LUFTRAUSERS",purchase,1.0,0 -86469479,"LUFTRAUSERS",play,2.3,0 -86469479,"Demigod",purchase,1.0,0 -86469479,"Demigod",play,2.2,0 -86469479,"The Guild II",purchase,1.0,0 -86469479,"The Guild II",play,2.2,0 -86469479,"L.A. Noire",purchase,1.0,0 -86469479,"L.A. Noire",play,2.2,0 -86469479,"Lichdom Battlemage",purchase,1.0,0 -86469479,"Lichdom Battlemage",play,2.1,0 -86469479,"Space Run",purchase,1.0,0 -86469479,"Space Run",play,1.9,0 -86469479,"Jade Empire Special Edition",purchase,1.0,0 -86469479,"Jade Empire Special Edition",play,1.8,0 -86469479,"Void Destroyer",purchase,1.0,0 -86469479,"Void Destroyer",play,1.8,0 -86469479,"Organ Trail Director's Cut",purchase,1.0,0 -86469479,"Organ Trail Director's Cut",play,1.8,0 -86469479,"Deus Ex Game of the Year Edition",purchase,1.0,0 -86469479,"Deus Ex Game of the Year Edition",play,1.8,0 -86469479,"Tower Wars",purchase,1.0,0 -86469479,"Tower Wars",play,1.8,0 -86469479,"Planetbase",purchase,1.0,0 -86469479,"Planetbase",play,1.8,0 -86469479,"Of Orcs And Men",purchase,1.0,0 -86469479,"Of Orcs And Men",play,1.7,0 -86469479,"Alpha Protocol",purchase,1.0,0 -86469479,"Alpha Protocol",play,1.6,0 -86469479,"Toribash",purchase,1.0,0 -86469479,"Toribash",play,1.6,0 -86469479,"Castle Story",purchase,1.0,0 -86469479,"Castle Story",play,1.6,0 -86469479,"Chroma Squad",purchase,1.0,0 -86469479,"Chroma Squad",play,1.6,0 -86469479,"Atom Zombie Smasher ",purchase,1.0,0 -86469479,"Atom Zombie Smasher ",play,1.5,0 -86469479,"Grey Goo",purchase,1.0,0 -86469479,"Grey Goo",play,1.4,0 -86469479,"Double Dragon Neon",purchase,1.0,0 -86469479,"Double Dragon Neon",play,1.4,0 -86469479,"Fable - The Lost Chapters",purchase,1.0,0 -86469479,"Fable - The Lost Chapters",play,1.4,0 -86469479,"Gunpoint",purchase,1.0,0 -86469479,"Gunpoint",play,1.4,0 -86469479,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -86469479,"Galactic Civilizations II Ultimate Edition",play,1.4,0 -86469479,"DLC Quest",purchase,1.0,0 -86469479,"DLC Quest",play,1.3,0 -86469479,"Creeper World 3 Arc Eternal",purchase,1.0,0 -86469479,"Creeper World 3 Arc Eternal",play,1.3,0 -86469479,"Prison Architect",purchase,1.0,0 -86469479,"Prison Architect",play,1.3,0 -86469479,"Velvet Assassin",purchase,1.0,0 -86469479,"Velvet Assassin",play,1.3,0 -86469479,"Rise of Nations Extended Edition",purchase,1.0,0 -86469479,"Rise of Nations Extended Edition",play,1.3,0 -86469479,"Crusader Kings II",purchase,1.0,0 -86469479,"Crusader Kings II",play,1.2,0 -86469479,"Tom Clancy's Splinter Cell",purchase,1.0,0 -86469479,"Tom Clancy's Splinter Cell",play,1.2,0 -86469479,"Orcs Must Die! 2",purchase,1.0,0 -86469479,"Orcs Must Die! 2",play,1.2,0 -86469479,"Unepic",purchase,1.0,0 -86469479,"Unepic",play,1.2,0 -86469479,"Thief",purchase,1.0,0 -86469479,"Thief",play,1.2,0 -86469479,"Max Payne",purchase,1.0,0 -86469479,"Max Payne",play,1.1,0 -86469479,"Bridge Constructor",purchase,1.0,0 -86469479,"Bridge Constructor",play,1.1,0 -86469479,"Guild Commander",purchase,1.0,0 -86469479,"Guild Commander",play,1.1,0 -86469479,"Final Exam",purchase,1.0,0 -86469479,"Final Exam",play,1.1,0 -86469479,"Space Engineers",purchase,1.0,0 -86469479,"Space Engineers",play,1.1,0 -86469479,"Hacker Evolution Duality",purchase,1.0,0 -86469479,"Hacker Evolution Duality",play,1.1,0 -86469479,"Memories of a Vagabond",purchase,1.0,0 -86469479,"Memories of a Vagabond",play,1.0,0 -86469479,"Game Dev Tycoon",purchase,1.0,0 -86469479,"Game Dev Tycoon",play,1.0,0 -86469479,"Prince of Persia The Sands of Time",purchase,1.0,0 -86469479,"Prince of Persia The Sands of Time",play,0.9,0 -86469479,"SimCity 4 Deluxe",purchase,1.0,0 -86469479,"SimCity 4 Deluxe",play,0.9,0 -86469479,"Star Wars Empire at War Gold",purchase,1.0,0 -86469479,"Star Wars Empire at War Gold",play,0.9,0 -86469479,"I, Zombie",purchase,1.0,0 -86469479,"I, Zombie",play,0.9,0 -86469479,"Meridian New World",purchase,1.0,0 -86469479,"Meridian New World",play,0.8,0 -86469479,"The Escapists",purchase,1.0,0 -86469479,"The Escapists",play,0.7,0 -86469479,"Darkest Dungeon",purchase,1.0,0 -86469479,"Darkest Dungeon",play,0.7,0 -86469479,"Swarm Arena",purchase,1.0,0 -86469479,"Swarm Arena",play,0.7,0 -86469479,"Sokobond",purchase,1.0,0 -86469479,"Sokobond",play,0.7,0 -86469479,"Cortex Command",purchase,1.0,0 -86469479,"Cortex Command",play,0.6,0 -86469479,"Metal Gear Solid Legacy",purchase,1.0,0 -86469479,"Metal Gear Solid Legacy",play,0.6,0 -86469479,"Ys I",purchase,1.0,0 -86469479,"Ys I",play,0.5,0 -86469479,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -86469479,"The Elder Scrolls IV Oblivion ",play,0.5,0 -86469479,"Dungeon of the Endless",purchase,1.0,0 -86469479,"Dungeon of the Endless",play,0.5,0 -86469479,"Stronghold 3",purchase,1.0,0 -86469479,"Stronghold 3",play,0.5,0 -86469479,"Aeon Command",purchase,1.0,0 -86469479,"Aeon Command",play,0.5,0 -86469479,"Stronghold Kingdoms",purchase,1.0,0 -86469479,"Stronghold Kingdoms",play,0.4,0 -86469479,"Legacy of Kain Soul Reaver",purchase,1.0,0 -86469479,"Legacy of Kain Soul Reaver",play,0.4,0 -86469479,"Stronghold 2",purchase,1.0,0 -86469479,"Stronghold 2",play,0.4,0 -86469479,"Slam Bolt Scrappers",purchase,1.0,0 -86469479,"Slam Bolt Scrappers",play,0.3,0 -86469479,"Homeworld Remastered Collection",purchase,1.0,0 -86469479,"Homeworld Remastered Collection",play,0.3,0 -86469479,"Bionic Dues",purchase,1.0,0 -86469479,"Bionic Dues",play,0.3,0 -86469479,"Titan Quest",purchase,1.0,0 -86469479,"Titan Quest",play,0.3,0 -86469479,"The Guild Gold Edition",purchase,1.0,0 -86469479,"The Guild Gold Edition",play,0.3,0 -86469479,"Project Snowblind",purchase,1.0,0 -86469479,"Project Snowblind",play,0.3,0 -86469479,"Jagged Alliance - Back in Action",purchase,1.0,0 -86469479,"Jagged Alliance - Back in Action",play,0.3,0 -86469479,"Universe Sandbox",purchase,1.0,0 -86469479,"Universe Sandbox",play,0.3,0 -86469479,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -86469479,"RollerCoaster Tycoon 3 Platinum!",play,0.2,0 -86469479,"XCOM Enemy Unknown",purchase,1.0,0 -86469479,"XCOM Enemy Unknown",play,0.2,0 -86469479,"Rivals of Aether",purchase,1.0,0 -86469479,"Rivals of Aether",play,0.2,0 -86469479,"Stronghold HD",purchase,1.0,0 -86469479,"Stronghold HD",play,0.2,0 -86469479,"Stronghold Legends",purchase,1.0,0 -86469479,"Stronghold Legends",play,0.1,0 -86469479,"Tropico 4",purchase,1.0,0 -86469479,"Tropico 4",play,0.1,0 -86469479,"Gemini Wars",purchase,1.0,0 -86469479,"Gemini Wars",play,0.1,0 -86469479,"Steam Marines",purchase,1.0,0 -86469479,"Steam Marines",play,0.1,0 -86469479,"Kingdom Wars 2 Battles",purchase,1.0,0 -86469479,"Majesty Gold HD",purchase,1.0,0 -86469479,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -86469479,"O.R.B.",purchase,1.0,0 -86469479,"Earth 2150 Trilogy",purchase,1.0,0 -86469479,"War, the Game",purchase,1.0,0 -86469479,"The Swindle",purchase,1.0,0 -86469479,"DARK",purchase,1.0,0 -86469479,"Stronghold Crusader HD",purchase,1.0,0 -86469479,"Styx Master of Shadows",purchase,1.0,0 -86469479,"Knights and Merchants",purchase,1.0,0 -86469479,"The Masterplan",purchase,1.0,0 -86469479,"Spirit Of War",purchase,1.0,0 -86469479,"Overlord",purchase,1.0,0 -86469479,"Warring States",purchase,1.0,0 -86469479,"Blood Omen 2 Legacy of Kain",purchase,1.0,0 -86469479,"A Bastard's Tale",purchase,1.0,0 -86469479,"Act of Aggression",purchase,1.0,0 -86469479,"Agarest - Basic Adventure Pack DLC",purchase,1.0,0 -86469479,"Agarest - Carrot-and-Stick Pack DLC",purchase,1.0,0 -86469479,"Agarest - Dull-Things Pack DLC",purchase,1.0,0 -86469479,"Agarest - Fallen Angel Pack DLC",purchase,1.0,0 -86469479,"Agarest - Fishy Pack 1 DLC",purchase,1.0,0 -86469479,"Agarest - Fishy Pack 2 DLC",purchase,1.0,0 -86469479,"Agarest - Jack Pack DLC",purchase,1.0,0 -86469479,"Agarest - Legendary-Monster Pack DLC",purchase,1.0,0 -86469479,"Agarest - Legendary Adventure Pack DLC",purchase,1.0,0 -86469479,"Agarest - Magic Fight Pack DLC",purchase,1.0,0 -86469479,"Agarest - Playful Cat Pack DLC",purchase,1.0,0 -86469479,"Agarest - Rebellious Pack DLC",purchase,1.0,0 -86469479,"Agarest - Rumored Adventure Pack DLC",purchase,1.0,0 -86469479,"Agarest - Seasoned-Breeder Pack DLC",purchase,1.0,0 -86469479,"Agarest - Secret-Society Pack DLC",purchase,1.0,0 -86469479,"Agarest - Tonight's Dinner DLC",purchase,1.0,0 -86469479,"Agarest - Top-Breeder Pack DLC",purchase,1.0,0 -86469479,"Agarest - Ultimate Equipment Pack DLC",purchase,1.0,0 -86469479,"Agarest 2 - Bundle #1",purchase,1.0,0 -86469479,"Agarest 2 - Bundle #2",purchase,1.0,0 -86469479,"Agarest 2 - Bundle #3",purchase,1.0,0 -86469479,"Agarest 2 - Bundle #4",purchase,1.0,0 -86469479,"Agarest 2 - Bundle #5",purchase,1.0,0 -86469479,"Agarest 2 - Bundle #6",purchase,1.0,0 -86469479,"Agarest Generations of War 2",purchase,1.0,0 -86469479,"Agarest Zero",purchase,1.0,0 -86469479,"Agarest Zero - DLC Pack 1",purchase,1.0,0 -86469479,"Agarest Zero - DLC Pack 2",purchase,1.0,0 -86469479,"Agarest Zero - DLC Pack 3",purchase,1.0,0 -86469479,"Agarest Zero - DLC Pack 4",purchase,1.0,0 -86469479,"Agarest Zero - DLC Pack 5",purchase,1.0,0 -86469479,"Agarest Zero - DLC Pack 7",purchase,1.0,0 -86469479,"Age of Mythology Extended Edition",purchase,1.0,0 -86469479,"Ancient Space",purchase,1.0,0 -86469479,"Antisquad",purchase,1.0,0 -86469479,"Antisquad - Skirmishes DLC",purchase,1.0,0 -86469479,"Antisquad Tasks in Mexico - final. Tactics DLC",purchase,1.0,0 -86469479,"Antisquad Tasks in Mexico - the beginning. Tactics FREE DLC",purchase,1.0,0 -86469479,"Antisquad Tasks in North Korea. Tactics DLC",purchase,1.0,0 -86469479,"Antisquad Tasks near the coast of Somalia. Tactics DLC",purchase,1.0,0 -86469479,"Ashes of the Singularity",purchase,1.0,0 -86469479,"Assassin's Creed Brotherhood",purchase,1.0,0 -86469479,"Assassin's Creed II",purchase,1.0,0 -86469479,"Assassin's Creed IV Black Flag",purchase,1.0,0 -86469479,"Assassin's Creed Liberation",purchase,1.0,0 -86469479,"Assassin's Creed Revelations",purchase,1.0,0 -86469479,"Assassin's Creed III",purchase,1.0,0 -86469479,"Assassins Creed Chronicles China",purchase,1.0,0 -86469479,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -86469479,"Baldur's Gate II Enhanced Edition",purchase,1.0,0 -86469479,"Beyond Divinity",purchase,1.0,0 -86469479,"Bionic Commando",purchase,1.0,0 -86469479,"Bionic Commando Rearmed",purchase,1.0,0 -86469479,"Bound By Flame",purchase,1.0,0 -86469479,"Breach & Clear Deadline",purchase,1.0,0 -86469479,"Brtal Legend",purchase,1.0,0 -86469479,"Castlevania Lords of Shadow 2",purchase,1.0,0 -86469479,"Castlevania Lords of Shadow 2 - Armored Dracula Costume",purchase,1.0,0 -86469479,"Castlevania Lords of Shadow 2 - Dark Dracula Costume",purchase,1.0,0 -86469479,"Castlevania Lords of Shadow 2 - Relic Rune Pack",purchase,1.0,0 -86469479,"Castlevania Lords of Shadow 2 - Revelations DLC",purchase,1.0,0 -86469479,"Castlevania Lords of Shadow Mirror of Fate HD",purchase,1.0,0 -86469479,"Crusader Kings Complete",purchase,1.0,0 -86469479,"Crusader Kings II Hymns of Abraham",purchase,1.0,0 -86469479,"Crusader Kings II Military Orders Unit Pack",purchase,1.0,0 -86469479,"Crusader Kings II Sons of Abraham",purchase,1.0,0 -86469479,"Crusader Kings II Warriors of Faith Unit Pack",purchase,1.0,0 -86469479,"Crypt of the NecroDancer",purchase,1.0,0 -86469479,"Crypt of the NecroDancer Extended Soundtrack",purchase,1.0,0 -86469479,"Crypt of the NecroDancer Extras",purchase,1.0,0 -86469479,"Crypt of the Necrodancer Soundtrack",purchase,1.0,0 -86469479,"DARK - Cult of the Dead DLC",purchase,1.0,0 -86469479,"Darksiders II",purchase,1.0,0 -86469479,"Darksiders II Deathinitive Edition",purchase,1.0,0 -86469479,"Darksiders II Soundtrack",purchase,1.0,0 -86469479,"Darksiders Soundtrack",purchase,1.0,0 -86469479,"Darwinia",purchase,1.0,0 -86469479,"Dead Rising 2 Off the Record",purchase,1.0,0 -86469479,"Dead Rising 3",purchase,1.0,0 -86469479,"Dead Rising 3 DLC1",purchase,1.0,0 -86469479,"Dead Rising 3 DLC2",purchase,1.0,0 -86469479,"Dead Rising 3 DLC3",purchase,1.0,0 -86469479,"Dead Rising 3 DLC4",purchase,1.0,0 -86469479,"DEFCON",purchase,1.0,0 -86469479,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -86469479,"Deus Ex Invisible War",purchase,1.0,0 -86469479,"Deus Ex The Fall",purchase,1.0,0 -86469479,"Distant Star Revenant Fleet",purchase,1.0,0 -86469479,"Divine Divinity",purchase,1.0,0 -86469479,"Divinity Dragon Commander",purchase,1.0,0 -86469479,"Divinity Original Sin",purchase,1.0,0 -86469479,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -86469479,"Divinity II Developer's Cut",purchase,1.0,0 -86469479,"Don't Starve",purchase,1.0,0 -86469479,"Don't Starve Reign of Giants",purchase,1.0,0 -86469479,"Don't Starve Together Beta",purchase,1.0,0 -86469479,"Dreamfall The Longest Journey",purchase,1.0,0 -86469479,"Duskers",purchase,1.0,0 -86469479,"Earth 2150 Lost Souls",purchase,1.0,0 -86469479,"Earth 2150 The Moon Project",purchase,1.0,0 -86469479,"ENSLAVED Odyssey to the West Premium Edition",purchase,1.0,0 -86469479,"Epic Battle Fantasy 4",purchase,1.0,0 -86469479,"Etherium",purchase,1.0,0 -86469479,"Fahrenheit Indigo Prophecy Remastered",purchase,1.0,0 -86469479,"Fallen Enchantress Legendary Heroes",purchase,1.0,0 -86469479,"Fallen Enchantress Legendary Heroes - Battlegrounds DLC",purchase,1.0,0 -86469479,"Fallen Enchantress Legendary Heroes - The Dead World",purchase,1.0,0 -86469479,"Fallen Enchantress Legendary Heroes Leader Pack",purchase,1.0,0 -86469479,"Fallen Enchantress Legendary Heroes Loot Pack",purchase,1.0,0 -86469479,"Fallen Enchantress Legendary Heroes Map Pack",purchase,1.0,0 -86469479,"Fallen Enchantress Legendary Heroes Quest Pack",purchase,1.0,0 -86469479,"Fallout",purchase,1.0,0 -86469479,"Fallout 2",purchase,1.0,0 -86469479,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -86469479,"Fallout New Vegas",purchase,1.0,0 -86469479,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -86469479,"Fallout New Vegas Dead Money",purchase,1.0,0 -86469479,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -86469479,"Fallout Tactics",purchase,1.0,0 -86469479,"FATE",purchase,1.0,0 -86469479,"FATE Undiscovered Realms",purchase,1.0,0 -86469479,"FINAL FANTASY III",purchase,1.0,0 -86469479,"FINAL FANTASY IV",purchase,1.0,0 -86469479,"FINAL FANTASY V",purchase,1.0,0 -86469479,"FINAL FANTASY VII",purchase,1.0,0 -86469479,"Future Wars",purchase,1.0,0 -86469479,"Galactic Civilizations I Ultimate Edition",purchase,1.0,0 -86469479,"Galactic Civilizations III - Map Pack DLC",purchase,1.0,0 -86469479,"Galactic Civilizations III - Mega Events DLC",purchase,1.0,0 -86469479,"Galactic Civilizations III - Revenge of the Snathi DLC",purchase,1.0,0 -86469479,"Gauntlet ",purchase,1.0,0 -86469479,"Grey Goo - Emergence Campaign",purchase,1.0,0 -86469479,"Grotesque Tactics 2 - Dungeons and Donuts",purchase,1.0,0 -86469479,"Grotesque Tactics Evil Heroes",purchase,1.0,0 -86469479,"Guild of Dungeoneering",purchase,1.0,0 -86469479,"Hack 'n' Slash",purchase,1.0,0 -86469479,"Hacker Evolution",purchase,1.0,0 -86469479,"Hacknet",purchase,1.0,0 -86469479,"Hearthlands",purchase,1.0,0 -86469479,"Holy Avatar vs. Maidens of the Dead",purchase,1.0,0 -86469479,"Hotline Miami 2 Wrong Number",purchase,1.0,0 -86469479,"How To Survive Third Person",purchase,1.0,0 -86469479,"Jagged Alliance Crossfire",purchase,1.0,0 -86469479,"King Arthur Collection",purchase,1.0,0 -86469479,"King Arthur II - The Role-playing Wargame",purchase,1.0,0 -86469479,"KnightShift",purchase,1.0,0 -86469479,"Knights of Pen and Paper 2",purchase,1.0,0 -86469479,"Kyn",purchase,1.0,0 -86469479,"Last Dream",purchase,1.0,0 -86469479,"Legacy of Kain Defiance",purchase,1.0,0 -86469479,"Legacy of Kain Soul Reaver 2",purchase,1.0,0 -86469479,"Lethis - Path of Progress",purchase,1.0,0 -86469479,"Mafia II",purchase,1.0,0 -86469479,"Magicka 2",purchase,1.0,0 -86469479,"Magicka Final Frontier",purchase,1.0,0 -86469479,"Magicka Frozen Lake",purchase,1.0,0 -86469479,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -86469479,"Magicka Nippon",purchase,1.0,0 -86469479,"Magicka Party Robes",purchase,1.0,0 -86469479,"Magicka The Watchtower",purchase,1.0,0 -86469479,"Magicka Vietnam",purchase,1.0,0 -86469479,"Magicka Wizard's Survival Kit",purchase,1.0,0 -86469479,"Majesty Gold Edition",purchase,1.0,0 -86469479,"Mark of the Ninja Special Edition DLC",purchase,1.0,0 -86469479,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -86469479,"Max Payne 3",purchase,1.0,0 -86469479,"Max Payne 3 Season Pass",purchase,1.0,0 -86469479,"Metro 2033",purchase,1.0,0 -86469479,"Middle-earth Shadow of Mordor",purchase,1.0,0 -86469479,"Multiwinia",purchase,1.0,0 -86469479,"Nightside",purchase,1.0,0 -86469479,"Nuclear Dawn",purchase,1.0,0 -86469479,"Overlord II",purchase,1.0,0 -86469479,"Papers, Please",purchase,1.0,0 -86469479,"Party Hard",purchase,1.0,0 -86469479,"Planetary Annihilation - Digital Deluxe Bundle",purchase,1.0,0 -86469479,"Planetary Annihilation - Original Soundtrack",purchase,1.0,0 -86469479,"Planetary Annihilation TITANS",purchase,1.0,0 -86469479,"Prince of Persia",purchase,1.0,0 -86469479,"Prince of Persia The Forgotten Sands",purchase,1.0,0 -86469479,"Prince of Persia The Two Thrones",purchase,1.0,0 -86469479,"Prince of Persia Warrior Within",purchase,1.0,0 -86469479,"Prototype",purchase,1.0,0 -86469479,"PROTOTYPE 2",purchase,1.0,0 -86469479,"Prototype 2 RADNET Access Pack",purchase,1.0,0 -86469479,"Remember Me",purchase,1.0,0 -86469479,"Risen",purchase,1.0,0 -86469479,"Risen 2 - Dark Waters",purchase,1.0,0 -86469479,"Risen 3 - Titan Lords",purchase,1.0,0 -86469479,"Ryse Son of Rome",purchase,1.0,0 -86469479,"Saints Row 2",purchase,1.0,0 -86469479,"Saints Row Gat out of Hell",purchase,1.0,0 -86469479,"Shadowrun Dragonfall",purchase,1.0,0 -86469479,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -86469479,"Shadowrun Hong Kong",purchase,1.0,0 -86469479,"Shadowrun Returns",purchase,1.0,0 -86469479,"Sid Meier's Civilization V",purchase,1.0,0 -86469479,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -86469479,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -86469479,"Silent Storm",purchase,1.0,0 -86469479,"Silent Storm Sentinels",purchase,1.0,0 -86469479,"Sins of a Solar Empire Rebellion - Stellar Phenomena DLC",purchase,1.0,0 -86469479,"Sins of a Solar Empire Rebellion Forbidden Worlds",purchase,1.0,0 -86469479,"Space Hulk",purchase,1.0,0 -86469479,"Space Hulk Ascension",purchase,1.0,0 -86469479,"Spec Ops The Line",purchase,1.0,0 -86469479,"Starbound - Unstable",purchase,1.0,0 -86469479,"Starpoint Gemini",purchase,1.0,0 -86469479,"Starpoint Gemini 2",purchase,1.0,0 -86469479,"Star Wars The Force Unleashed II",purchase,1.0,0 -86469479,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -86469479,"Stealth Bastard Deluxe",purchase,1.0,0 -86469479,"Stealth Inc 2",purchase,1.0,0 -86469479,"Strike Suit Infinity",purchase,1.0,0 -86469479,"Strike Suit Zero",purchase,1.0,0 -86469479,"Stronghold Crusader 2",purchase,1.0,0 -86469479,"Stronghold Crusader Extreme HD",purchase,1.0,0 -86469479,"Supreme Commander 2 - Infinite War Battle Pack One",purchase,1.0,0 -86469479,"Survivor Squad Gauntlets",purchase,1.0,0 -86469479,"Sword of the Stars The Pit",purchase,1.0,0 -86469479,"Sword of the Stars The Pit - Juggernaut",purchase,1.0,0 -86469479,"Sword of the Stars The Pit - Mind Games",purchase,1.0,0 -86469479,"Sword of the Stars The Pit - Necromancer",purchase,1.0,0 -86469479,"Sword of the Stars The Pit Gold DLC",purchase,1.0,0 -86469479,"Sword of the Stars The Pit Soundtrack",purchase,1.0,0 -86469479,"Sword of the Stars Complete Collection",purchase,1.0,0 -86469479,"Sword of the Stars II Enhanced Edition",purchase,1.0,0 -86469479,"Teleglitch Die More Edition",purchase,1.0,0 -86469479,"Templar Battleforce",purchase,1.0,0 -86469479,"Thank You The Game",purchase,1.0,0 -86469479,"Thank You The Game 2",purchase,1.0,0 -86469479,"The Banner Saga",purchase,1.0,0 -86469479,"The Banner Saga - Mod Content",purchase,1.0,0 -86469479,"The Bard's Tale",purchase,1.0,0 -86469479,"The Bureau XCOM Declassified",purchase,1.0,0 -86469479,"The Bureau XCOM Declassified - Code Breakers",purchase,1.0,0 -86469479,"The Bureau XCOM Declassified - Light Plasma Pistol",purchase,1.0,0 -86469479,"The Bureau XCOM Hangar 6 R&D",purchase,1.0,0 -86469479,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -86469479,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -86469479,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -86469479,"The Guild II - Pirates of the European Seas",purchase,1.0,0 -86469479,"The Hive",purchase,1.0,0 -86469479,"The Last Remnant",purchase,1.0,0 -86469479,"The Longest Journey",purchase,1.0,0 -86469479,"The Pilgrim DLC",purchase,1.0,0 -86469479,"The Settlers Rise of an Empire Gold Edition ",purchase,1.0,0 -86469479,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -86469479,"The Witcher 3 Wild Hunt",purchase,1.0,0 -86469479,"The Witcher 3 Wild Hunt - Expansion Pass",purchase,1.0,0 -86469479,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -86469479,"They Bleed Pixels",purchase,1.0,0 -86469479,"Thief - Ghost",purchase,1.0,0 -86469479,"Thief - Opportunist",purchase,1.0,0 -86469479,"Thief - Predator",purchase,1.0,0 -86469479,"Thief - The Bank Heist",purchase,1.0,0 -86469479,"Thief 2",purchase,1.0,0 -86469479,"Thief Deadly Shadows",purchase,1.0,0 -86469479,"Thief Gold",purchase,1.0,0 -86469479,"This War of Mine - War Child Charity DLC",purchase,1.0,0 -86469479,"Tom Clancy's EndWar",purchase,1.0,0 -86469479,"Tom Clancy's Rainbow Six 3 Athena Sword",purchase,1.0,0 -86469479,"Tom Clancy's Rainbow Six 3 Gold Edition",purchase,1.0,0 -86469479,"Tom Clancy's Rainbow Six Lockdown",purchase,1.0,0 -86469479,"Tom Clancy's Rainbow Six Vegas",purchase,1.0,0 -86469479,"Tom Clancy's Rainbow Six Vegas 2",purchase,1.0,0 -86469479,"Tom Clancy's Splinter Cell Chaos Theory",purchase,1.0,0 -86469479,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -86469479,"Tom Clancy's Splinter Cell Double Agent",purchase,1.0,0 -86469479,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -86469479,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -86469479,"Turnover",purchase,1.0,0 -86469479,"Two Worlds 2 - Pirates of the Flying Fortress ",purchase,1.0,0 -86469479,"Two Worlds Epic Edition",purchase,1.0,0 -86469479,"Two Worlds II",purchase,1.0,0 -86469479,"Uplink",purchase,1.0,0 -86469479,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -86469479,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -86469479,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -86469479,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -86469479,"Victor Vran",purchase,1.0,0 -86469479,"VoidExpanse",purchase,1.0,0 -86469479,"War for the Overworld",purchase,1.0,0 -86469479,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -86469479,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -86469479,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -86469479,"Warhammer 40,000 Storm of Vengeance Deathwing Terminator",purchase,1.0,0 -86469479,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -86469479,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -86469479,"Warlock - Master of the Arcane",purchase,1.0,0 -86469479,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -86469479,"Warlock 2 the Exiled",purchase,1.0,0 -86469479,"XCOM Enemy Within",purchase,1.0,0 -86469479,"Ys II",purchase,1.0,0 -88603472,"Amnesia The Dark Descent",purchase,1.0,0 -88603472,"Amnesia The Dark Descent",play,9.2,0 -88603472,"Portal",purchase,1.0,0 -88603472,"Portal",play,7.7,0 -88603472,"The Darkness II",purchase,1.0,0 -88603472,"The Darkness II",play,6.2,0 -88603472,"F.E.A.R. 3",purchase,1.0,0 -88603472,"F.E.A.R. 3",play,4.5,0 -88603472,"Mount & Blade Warband",purchase,1.0,0 -88603472,"Mount & Blade Warband",play,2.8,0 -88603472,"VVVVVV",purchase,1.0,0 -88603472,"VVVVVV",play,1.1,0 -88603472,"Velocibox",purchase,1.0,0 -88603472,"Velocibox",play,0.9,0 -88603472,"Garry's Mod",purchase,1.0,0 -88603472,"Garry's Mod",play,0.8,0 -88603472,"Counter-Strike Source",purchase,1.0,0 -88603472,"Counter-Strike Source",play,0.2,0 -88603472,"Unturned",purchase,1.0,0 -88603472,"Unturned",play,0.2,0 -88603472,"Haunted Memories",purchase,1.0,0 -88603472,"Haunted Memories",play,0.2,0 -88603472,"Dead Island",purchase,1.0,0 -88603472,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -88603472,"Left 4 Dead 2",purchase,1.0,0 -88603472,"No More Room in Hell",purchase,1.0,0 -88603472,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -244540977,"Dirty Bomb",purchase,1.0,0 -244540977,"Dirty Bomb",play,0.2,0 -223690993,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -165951090,"Counter-Strike Global Offensive",purchase,1.0,0 -165951090,"Counter-Strike Global Offensive",play,69.0,0 -193784721,"Dota 2",purchase,1.0,0 -193784721,"Dota 2",play,1.7,0 -65244880,"Rocksmith 2014",purchase,1.0,0 -65244880,"Rocksmith 2014",play,56.0,0 -65244880,"Dota 2",purchase,1.0,0 -65244880,"Dota 2",play,56.0,0 -65244880,"Sid Meier's Civilization V",purchase,1.0,0 -65244880,"Sid Meier's Civilization V",play,42.0,0 -65244880,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -65244880,"The Witcher 2 Assassins of Kings Enhanced Edition",play,2.1,0 -65244880,"Left 4 Dead 2",purchase,1.0,0 -65244880,"Left 4 Dead 2",play,0.3,0 -155210304,"Dota 2",purchase,1.0,0 -155210304,"Dota 2",play,0.6,0 -44874005,"Counter-Strike Global Offensive",purchase,1.0,0 -44874005,"Counter-Strike Global Offensive",play,893.0,0 -44874005,"Counter-Strike",purchase,1.0,0 -44874005,"Counter-Strike",play,340.0,0 -44874005,"Marvel Heroes 2015",purchase,1.0,0 -44874005,"Marvel Heroes 2015",play,104.0,0 -44874005,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -44874005,"Call of Duty Black Ops II - Multiplayer",play,39.0,0 -44874005,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -44874005,"Call of Duty 4 Modern Warfare",play,16.6,0 -44874005,"Counter-Strike Source",purchase,1.0,0 -44874005,"Counter-Strike Source",play,4.3,0 -44874005,"TERA",purchase,1.0,0 -44874005,"TERA",play,1.5,0 -44874005,"Call of Duty Black Ops II",purchase,1.0,0 -44874005,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -44874005,"Counter-Strike Condition Zero",purchase,1.0,0 -44874005,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -44874005,"Crysis",purchase,1.0,0 -44874005,"Crysis Warhead",purchase,1.0,0 -44874005,"Crysis Wars",purchase,1.0,0 -44874005,"Day of Defeat",purchase,1.0,0 -44874005,"Day of Defeat Source",purchase,1.0,0 -44874005,"Deathmatch Classic",purchase,1.0,0 -44874005,"Far Cry 2",purchase,1.0,0 -44874005,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -44874005,"Half-Life",purchase,1.0,0 -44874005,"Half-Life 2",purchase,1.0,0 -44874005,"Half-Life 2 Deathmatch",purchase,1.0,0 -44874005,"Half-Life 2 Episode One",purchase,1.0,0 -44874005,"Half-Life 2 Episode Two",purchase,1.0,0 -44874005,"Half-Life 2 Lost Coast",purchase,1.0,0 -44874005,"Half-Life Blue Shift",purchase,1.0,0 -44874005,"Half-Life Opposing Force",purchase,1.0,0 -44874005,"Half-Life Source",purchase,1.0,0 -44874005,"Half-Life Deathmatch Source",purchase,1.0,0 -44874005,"Left 4 Dead",purchase,1.0,0 -44874005,"Portal",purchase,1.0,0 -44874005,"Ricochet",purchase,1.0,0 -44874005,"Team Fortress Classic",purchase,1.0,0 -157766388,"Dota 2",purchase,1.0,0 -157766388,"Dota 2",play,505.0,0 -157766388,"Black Fire",purchase,1.0,0 -157766388,"BLOCKADE 3D",purchase,1.0,0 -157766388,"Counter-Strike Nexon Zombies",purchase,1.0,0 -157766388,"CrimeCraft GangWars",purchase,1.0,0 -157766388,"Deadbreed",purchase,1.0,0 -157766388,"Free to Play",purchase,1.0,0 -157766388,"GunZ 2 The Second Duel",purchase,1.0,0 -157766388,"HAWKEN",purchase,1.0,0 -157766388,"Loadout",purchase,1.0,0 -157766388,"No More Room in Hell",purchase,1.0,0 -157766388,"Nosgoth",purchase,1.0,0 -157766388,"Panzar",purchase,1.0,0 -157766388,"Rise of Incarnates",purchase,1.0,0 -157766388,"sZone-Online",purchase,1.0,0 -157766388,"The Mighty Quest For Epic Loot",purchase,1.0,0 -248851501,"Unturned",purchase,1.0,0 -248851501,"Unturned",play,20.0,0 -248851501,"Heroes & Generals",purchase,1.0,0 -248851501,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -308309772,"Unturned",purchase,1.0,0 -308309772,"Unturned",play,7.1,0 -7020135,"Counter-Strike Source",purchase,1.0,0 -7020135,"Counter-Strike Source",play,307.0,0 -7020135,"Counter-Strike",purchase,1.0,0 -7020135,"Counter-Strike",play,27.0,0 -7020135,"Counter-Strike Condition Zero",purchase,1.0,0 -7020135,"Counter-Strike Condition Zero",play,19.7,0 -7020135,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -7020135,"Day of Defeat",purchase,1.0,0 -7020135,"Deathmatch Classic",purchase,1.0,0 -7020135,"Half-Life",purchase,1.0,0 -7020135,"Half-Life 2",purchase,1.0,0 -7020135,"Half-Life 2 Deathmatch",purchase,1.0,0 -7020135,"Half-Life 2 Lost Coast",purchase,1.0,0 -7020135,"Half-Life Blue Shift",purchase,1.0,0 -7020135,"Half-Life Opposing Force",purchase,1.0,0 -7020135,"Ricochet",purchase,1.0,0 -7020135,"Team Fortress Classic",purchase,1.0,0 -91293844,"Sid Meier's Civilization V",purchase,1.0,0 -91293844,"Sid Meier's Civilization V",play,94.0,0 -91293844,"Torchlight II",purchase,1.0,0 -91293844,"Torchlight II",play,26.0,0 -91293844,"Star Wars - Battlefront II",purchase,1.0,0 -91293844,"Star Wars - Battlefront II",play,8.4,0 -91293844,"The Elder Scrolls V Skyrim",purchase,1.0,0 -91293844,"The Elder Scrolls V Skyrim",play,8.0,0 -91293844,"Fable - The Lost Chapters",purchase,1.0,0 -91293844,"Fable - The Lost Chapters",play,6.3,0 -91293844,"Call of Duty Modern Warfare 3",purchase,1.0,0 -91293844,"Call of Duty Modern Warfare 3",play,6.1,0 -91293844,"Gauntlet ",purchase,1.0,0 -91293844,"Gauntlet ",play,4.2,0 -91293844,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -91293844,"Call of Duty 4 Modern Warfare",play,3.8,0 -91293844,"The Lord of the Rings War in the North",purchase,1.0,0 -91293844,"The Lord of the Rings War in the North",play,3.3,0 -91293844,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -91293844,"Call of Duty Modern Warfare 3 - Multiplayer",play,2.8,0 -91293844,"No More Room in Hell",purchase,1.0,0 -91293844,"No More Room in Hell",play,2.6,0 -91293844,"How to Survive",purchase,1.0,0 -91293844,"How to Survive",play,1.7,0 -91293844,"Killing Floor",purchase,1.0,0 -91293844,"Killing Floor",play,1.3,0 -91293844,"Left 4 Dead 2",purchase,1.0,0 -91293844,"Left 4 Dead 2",play,0.5,0 -91293844,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -91293844,"STAR WARS Knights of the Old Republic II The Sith Lords",play,0.4,0 -91293844,"Rock of Ages",purchase,1.0,0 -91293844,"Rock of Ages",play,0.3,0 -91293844,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -91293844,"Dragon Age Origins - Ultimate Edition",play,0.3,0 -91293844,"Star Wars Republic Commando",purchase,1.0,0 -91293844,"Star Wars Republic Commando",play,0.2,0 -91293844,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -91293844,"Batman Arkham Asylum GOTY Edition",play,0.1,0 -91293844,"Zeno Clash",purchase,1.0,0 -91293844,"Dragon Nest",purchase,1.0,0 -91293844,"Batman Arkham City GOTY",purchase,1.0,0 -91293844,"Dwarfs!?",purchase,1.0,0 -91293844,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -91293844,"F.E.A.R. 3",purchase,1.0,0 -91293844,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -91293844,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -91293844,"Scribblenauts Unlimited",purchase,1.0,0 -91293844,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -91293844,"Sleeping Dogs",purchase,1.0,0 -91293844,"Star Wars Dark Forces",purchase,1.0,0 -91293844,"Star Wars Empire at War Gold",purchase,1.0,0 -91293844,"Star Wars Knights of the Old Republic",purchase,1.0,0 -91293844,"Star Wars The Force Unleashed II",purchase,1.0,0 -91293844,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -91293844,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -91293844,"Zeno Clash 2",purchase,1.0,0 -157070584,"Batman Arkham Origins",purchase,1.0,0 -157070584,"Batman Arkham Origins",play,0.5,0 -218585765,"No More Room in Hell",purchase,1.0,0 -218585765,"No More Room in Hell",play,1.2,0 -218585765,"Team Fortress 2",purchase,1.0,0 -218585765,"Team Fortress 2",play,0.9,0 -218585765,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -218585765,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.6,0 -218585765,"Counter-Strike Nexon Zombies",purchase,1.0,0 -218585765,"Heroes & Generals",purchase,1.0,0 -218585765,"Spiral Knights",purchase,1.0,0 -218585765,"APB Reloaded",purchase,1.0,0 -218585765,"BLOCKADE 3D",purchase,1.0,0 -218585765,"Dizzel",purchase,1.0,0 -218585765,"Firefall",purchase,1.0,0 -218585765,"Galcon 2",purchase,1.0,0 -218585765,"Moonbase Alpha",purchase,1.0,0 -218585765,"PlanetSide 2",purchase,1.0,0 -218585765,"Tactical Intervention",purchase,1.0,0 -218585765,"theHunter",purchase,1.0,0 -218585765,"Warface",purchase,1.0,0 -218585765,"Warframe",purchase,1.0,0 -218585765,"War of the Roses",purchase,1.0,0 -173507150,"Dota 2",purchase,1.0,0 -173507150,"Dota 2",play,0.5,0 -168539881,"Garry's Mod",purchase,1.0,0 -168539881,"Garry's Mod",play,264.0,0 -168539881,"Dota 2",purchase,1.0,0 -168539881,"Dota 2",play,208.0,0 -168539881,"Counter-Strike Source",purchase,1.0,0 -168539881,"Counter-Strike Source",play,65.0,0 -168539881,"Battlefield Bad Company 2",purchase,1.0,0 -168539881,"Battlefield Bad Company 2",play,34.0,0 -168539881,"Team Fortress 2",purchase,1.0,0 -168539881,"Team Fortress 2",play,24.0,0 -168539881,"Saints Row IV",purchase,1.0,0 -168539881,"Saints Row IV",play,17.4,0 -168539881,"No More Room in Hell",purchase,1.0,0 -168539881,"No More Room in Hell",play,12.6,0 -168539881,"Transformers Fall of Cybertron",purchase,1.0,0 -168539881,"Transformers Fall of Cybertron",play,6.8,0 -168539881,"Grand Theft Auto IV",purchase,1.0,0 -168539881,"Grand Theft Auto IV",play,6.5,0 -168539881,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -168539881,"Tom Clancy's Ghost Recon Phantoms - EU",play,5.8,0 -168539881,"Unturned",purchase,1.0,0 -168539881,"Unturned",play,4.1,0 -168539881,"Serious Sam 3 BFE",purchase,1.0,0 -168539881,"Serious Sam 3 BFE",play,2.7,0 -168539881,"Nosgoth",purchase,1.0,0 -168539881,"Nosgoth",play,1.7,0 -168539881,"Moonbase Alpha",purchase,1.0,0 -168539881,"Moonbase Alpha",play,1.5,0 -168539881,"Five Nights at Freddy's",purchase,1.0,0 -168539881,"Five Nights at Freddy's",play,1.1,0 -168539881,"Contagion",purchase,1.0,0 -168539881,"Contagion",play,0.9,0 -168539881,"POSTAL 2",purchase,1.0,0 -168539881,"POSTAL 2",play,0.7,0 -168539881,"America's Army Proving Grounds",purchase,1.0,0 -168539881,"America's Army Proving Grounds",play,0.4,0 -168539881,"Counter-Strike Nexon Zombies",purchase,1.0,0 -168539881,"Counter-Strike Nexon Zombies",play,0.3,0 -168539881,"Tribes Ascend",purchase,1.0,0 -168539881,"Tribes Ascend",play,0.3,0 -168539881,"Warframe",purchase,1.0,0 -168539881,"Warframe",play,0.3,0 -168539881,"Cry of Fear",purchase,1.0,0 -168539881,"Cry of Fear",play,0.2,0 -168539881,"Dizzel",purchase,1.0,0 -168539881,"Survarium",purchase,1.0,0 -168539881,"Brick-Force",purchase,1.0,0 -168539881,"Clicker Heroes",purchase,1.0,0 -168539881,"DETOUR",purchase,1.0,0 -168539881,"Gotham City Impostors Free To Play",purchase,1.0,0 -168539881,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -168539881,"Heroes & Generals",purchase,1.0,0 -168539881,"Run and Fire",purchase,1.0,0 -108950666,"Tropico 4",purchase,1.0,0 -108950666,"Tropico 4",play,249.0,0 -108950666,"Borderlands The Pre-Sequel",purchase,1.0,0 -108950666,"Borderlands The Pre-Sequel",play,85.0,0 -108950666,"Borderlands 2",purchase,1.0,0 -108950666,"Borderlands 2",play,77.0,0 -108950666,"FINAL FANTASY VII",purchase,1.0,0 -108950666,"FINAL FANTASY VII",play,59.0,0 -108950666,"Don't Starve",purchase,1.0,0 -108950666,"Don't Starve",play,44.0,0 -108950666,"Fable - The Lost Chapters",purchase,1.0,0 -108950666,"Fable - The Lost Chapters",play,29.0,0 -108950666,"Child of Light",purchase,1.0,0 -108950666,"Child of Light",play,18.3,0 -108950666,"South Park The Stick of Truth",purchase,1.0,0 -108950666,"South Park The Stick of Truth",play,17.8,0 -108950666,"Magic 2014 ",purchase,1.0,0 -108950666,"Magic 2014 ",play,13.8,0 -108950666,"Terraria",purchase,1.0,0 -108950666,"Terraria",play,11.9,0 -108950666,"Call of Juarez Gunslinger",purchase,1.0,0 -108950666,"Call of Juarez Gunslinger",play,7.7,0 -108950666,"Team Fortress 2",purchase,1.0,0 -108950666,"Team Fortress 2",play,1.1,0 -108950666,"Tropico 5",purchase,1.0,0 -108950666,"Tropico 5",play,1.1,0 -108950666,"FINAL FANTASY VIII",purchase,1.0,0 -108950666,"FINAL FANTASY VIII",play,0.3,0 -108950666,"Don't Starve Together Beta",purchase,1.0,0 -108950666,"Don't Starve Together Beta",play,0.1,0 -108950666,"Commander Keen Complete Pack",purchase,1.0,0 -108950666,"Audiosurf",purchase,1.0,0 -108950666,"BioShock",purchase,1.0,0 -108950666,"BioShock 2",purchase,1.0,0 -108950666,"BioShock Infinite",purchase,1.0,0 -108950666,"Borderlands",purchase,1.0,0 -108950666,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -108950666,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -108950666,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -108950666,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -108950666,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -108950666,"Brtal Legend",purchase,1.0,0 -108950666,"Costume Quest",purchase,1.0,0 -108950666,"Don't Starve Reign of Giants",purchase,1.0,0 -108950666,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -108950666,"Fallout New Vegas",purchase,1.0,0 -108950666,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -108950666,"Fallout New Vegas Dead Money",purchase,1.0,0 -108950666,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -108950666,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -108950666,"Iron Brigade",purchase,1.0,0 -108950666,"Mass Effect",purchase,1.0,0 -108950666,"Mass Effect 2",purchase,1.0,0 -108950666,"Portal",purchase,1.0,0 -108950666,"Portal 2",purchase,1.0,0 -108950666,"Psychonauts",purchase,1.0,0 -108950666,"Psychonauts Demo",purchase,1.0,0 -108950666,"Sid Meier's Pirates!",purchase,1.0,0 -108950666,"South Park The Stick of Truth - Super Samurai Spaceman Pack",purchase,1.0,0 -108950666,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -108950666,"Stacking",purchase,1.0,0 -108950666,"Star Wars - Battlefront II",purchase,1.0,0 -108950666,"The Elder Scrolls V Skyrim",purchase,1.0,0 -108950666,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -108950666,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -108950666,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -21979395,"Counter-Strike",purchase,1.0,0 -21979395,"Counter-Strike",play,858.0,0 -21979395,"Garry's Mod",purchase,1.0,0 -21979395,"Garry's Mod",play,35.0,0 -21979395,"Portal",purchase,1.0,0 -21979395,"Portal",play,8.7,0 -21979395,"Counter-Strike Source",purchase,1.0,0 -21979395,"Counter-Strike Source",play,5.4,0 -21979395,"Alien Swarm",purchase,1.0,0 -21979395,"Alien Swarm",play,2.8,0 -21979395,"Day of Defeat",purchase,1.0,0 -21979395,"Day of Defeat",play,1.8,0 -21979395,"Team Fortress 2",purchase,1.0,0 -21979395,"Team Fortress 2",play,0.6,0 -21979395,"Counter-Strike Condition Zero",purchase,1.0,0 -21979395,"Counter-Strike Condition Zero",play,0.6,0 -21979395,"Age of Chivalry",purchase,1.0,0 -21979395,"Age of Chivalry",play,0.3,0 -21979395,"Deathmatch Classic",purchase,1.0,0 -21979395,"Deathmatch Classic",play,0.2,0 -21979395,"Insurgency Modern Infantry Combat",purchase,1.0,0 -21979395,"Insurgency Modern Infantry Combat",play,0.2,0 -21979395,"Ricochet",purchase,1.0,0 -21979395,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -21979395,"Day of Defeat Source",purchase,1.0,0 -21979395,"Half-Life 2",purchase,1.0,0 -21979395,"Half-Life 2 Deathmatch",purchase,1.0,0 -21979395,"Half-Life 2 Episode One",purchase,1.0,0 -21979395,"Half-Life 2 Episode Two",purchase,1.0,0 -21979395,"Half-Life 2 Lost Coast",purchase,1.0,0 -186924471,"Unturned",purchase,1.0,0 -186924471,"Unturned",play,17.2,0 -186924471,"Dota 2",purchase,1.0,0 -186924471,"Dota 2",play,0.4,0 -95018199,"Call of Juarez The Cartel",purchase,1.0,0 -95018199,"Call of Juarez The Cartel",play,2.2,0 -75956990,"Serious Sam HD The Second Encounter",purchase,1.0,0 -75956990,"Serious Sam HD The Second Encounter",play,21.0,0 -31662213,"Lost Planet Extreme Condition",purchase,1.0,0 -31662213,"Lost Planet Extreme Condition",play,0.7,0 -303846149,"Dota 2",purchase,1.0,0 -303846149,"Dota 2",play,7.6,0 -173766396,"Dota 2",purchase,1.0,0 -173766396,"Dota 2",play,241.0,0 -201912254,"Dota 2",purchase,1.0,0 -201912254,"Dota 2",play,17.9,0 -283539952,"Dota 2",purchase,1.0,0 -283539952,"Dota 2",play,23.0,0 -289190882,"Teeworlds",purchase,1.0,0 -114142213,"Dota 2",purchase,1.0,0 -114142213,"Dota 2",play,2.3,0 -154017479,"Dota 2",purchase,1.0,0 -154017479,"Dota 2",play,1.0,0 -27023260,"Counter-Strike",purchase,1.0,0 -27023260,"Counter-Strike",play,3.8,0 -27023260,"Deathmatch Classic",purchase,1.0,0 -27023260,"Day of Defeat",purchase,1.0,0 -27023260,"Half-Life",purchase,1.0,0 -27023260,"Half-Life Blue Shift",purchase,1.0,0 -27023260,"Half-Life Opposing Force",purchase,1.0,0 -27023260,"Ricochet",purchase,1.0,0 -27023260,"Team Fortress Classic",purchase,1.0,0 -216364582,"Counter-Strike Global Offensive",purchase,1.0,0 -216364582,"Counter-Strike Global Offensive",play,100.0,0 -216364582,"Tomb Raider",purchase,1.0,0 -216364582,"Tomb Raider",play,27.0,0 -216364582,"Counter-Strike",purchase,1.0,0 -216364582,"Counter-Strike Condition Zero",purchase,1.0,0 -216364582,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -216364582,"Counter-Strike Source",purchase,1.0,0 -216364582,"The Old Tree",purchase,1.0,0 -50185776,"Counter-Strike Source",purchase,1.0,0 -50185776,"Counter-Strike Source",play,28.0,0 -50185776,"Day of Defeat Source",purchase,1.0,0 -50185776,"Half-Life 2 Deathmatch",purchase,1.0,0 -50185776,"Half-Life 2 Lost Coast",purchase,1.0,0 -241048953,"Dota 2",purchase,1.0,0 -241048953,"Dota 2",play,9.3,0 -85160742,"Team Fortress 2",purchase,1.0,0 -85160742,"Team Fortress 2",play,8.3,0 -189880430,"Unturned",purchase,1.0,0 -189880430,"Unturned",play,0.2,0 -126428976,"Terraria",purchase,1.0,0 -126428976,"Terraria",play,206.0,0 -126428976,"Marvel Heroes 2015",purchase,1.0,0 -126428976,"Marvel Heroes 2015",play,26.0,0 -126428976,"Dungeons & Dragons Online",purchase,1.0,0 -126428976,"Dungeons & Dragons Online",play,0.5,0 -67530228,"Half-Life 2 Deathmatch",purchase,1.0,0 -67530228,"Half-Life 2 Deathmatch",play,1.5,0 -67530228,"Sam & Max 104 Abe Lincoln Must Die!",purchase,1.0,0 -67530228,"Sam & Max 104 Abe Lincoln Must Die!",play,0.9,0 -67530228,"Half-Life 2 Lost Coast",purchase,1.0,0 -67530228,"Half-Life 2 Lost Coast",play,0.8,0 -67530228,"Alien Swarm",purchase,1.0,0 -67530228,"Alien Swarm",play,0.4,0 -177114081,"Dota 2",purchase,1.0,0 -177114081,"Dota 2",play,5.2,0 -297379779,"Grand Theft Auto V",purchase,1.0,0 -297379779,"Grand Theft Auto V",play,16.8,0 -297379779,"Team Fortress 2",purchase,1.0,0 -297379779,"Team Fortress 2",play,0.4,0 -222060673,"Magic Duels",purchase,1.0,0 -222060673,"Magic Duels",play,10.8,0 -222060673,"ARK Survival Evolved",purchase,1.0,0 -222060673,"ARK Survival Evolved",play,5.9,0 -222060673,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -222060673,"THE KING OF FIGHTERS XIII STEAM EDITION",play,5.0,0 -222060673,"Sid Meier's Civilization V",purchase,1.0,0 -222060673,"Sid Meier's Civilization V",play,1.8,0 -222060673,"Besiege",purchase,1.0,0 -222060673,"Besiege",play,1.8,0 -222060673,"Counter-Strike Global Offensive",purchase,1.0,0 -222060673,"Counter-Strike Global Offensive",play,0.8,0 -222060673,"War Thunder",purchase,1.0,0 -222060673,"Fractured Space",purchase,1.0,0 -222060673,"H1Z1",purchase,1.0,0 -222060673,"H1Z1 Test Server",purchase,1.0,0 -222060673,"Left 4 Dead",purchase,1.0,0 -222060673,"Left 4 Dead 2",purchase,1.0,0 -222060673,"Sid Meier's Civilization IV",purchase,1.0,0 -222060673,"Sid Meier's Civilization IV",purchase,1.0,0 -222060673,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -222060673,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -222060673,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -222060673,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -222060673,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -222060673,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -222060673,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -222060673,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -222060673,"The Elder Scrolls V Skyrim",purchase,1.0,0 -222060673,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -222060673,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -222060673,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -184963003,"Heroes & Generals",purchase,1.0,0 -184963003,"Heroes & Generals",play,2.1,0 -184963003,"Dota 2",purchase,1.0,0 -184963003,"Dota 2",play,1.3,0 -176424968,"Dota 2",purchase,1.0,0 -176424968,"Dota 2",play,1.3,0 -182642639,"Dota 2",purchase,1.0,0 -182642639,"Dota 2",play,1.2,0 -178344232,"Dota 2",purchase,1.0,0 -178344232,"Dota 2",play,5.1,0 -179039411,"Dota 2",purchase,1.0,0 -179039411,"Dota 2",play,2.1,0 -15196746,"Terraria",purchase,1.0,0 -15196746,"Terraria",play,178.0,0 -15196746,"Hammerwatch",purchase,1.0,0 -15196746,"Hammerwatch",play,164.0,0 -15196746,"Wargame European Escalation",purchase,1.0,0 -15196746,"Wargame European Escalation",play,115.0,0 -15196746,"Fallout 4",purchase,1.0,0 -15196746,"Fallout 4",play,108.0,0 -15196746,"Source Filmmaker",purchase,1.0,0 -15196746,"Source Filmmaker",play,75.0,0 -15196746,"Team Fortress 2",purchase,1.0,0 -15196746,"Team Fortress 2",play,73.0,0 -15196746,"Garry's Mod",purchase,1.0,0 -15196746,"Garry's Mod",play,72.0,0 -15196746,"Half-Life 2",purchase,1.0,0 -15196746,"Half-Life 2",play,71.0,0 -15196746,"Dishonored",purchase,1.0,0 -15196746,"Dishonored",play,69.0,0 -15196746,"Portal 2",purchase,1.0,0 -15196746,"Portal 2",play,68.0,0 -15196746,"Counter-Strike Source",purchase,1.0,0 -15196746,"Counter-Strike Source",play,62.0,0 -15196746,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -15196746,"S.T.A.L.K.E.R. Call of Pripyat",play,59.0,0 -15196746,"Half-Life 2 Episode Two",purchase,1.0,0 -15196746,"Half-Life 2 Episode Two",play,43.0,0 -15196746,"Besiege",purchase,1.0,0 -15196746,"Besiege",play,41.0,0 -15196746,"Wargame AirLand Battle",purchase,1.0,0 -15196746,"Wargame AirLand Battle",play,39.0,0 -15196746,"Counter-Strike Global Offensive",purchase,1.0,0 -15196746,"Counter-Strike Global Offensive",play,38.0,0 -15196746,"Half-Life",purchase,1.0,0 -15196746,"Half-Life",play,35.0,0 -15196746,"Natural Selection 2",purchase,1.0,0 -15196746,"Natural Selection 2",play,35.0,0 -15196746,"FTL Faster Than Light",purchase,1.0,0 -15196746,"FTL Faster Than Light",play,34.0,0 -15196746,"Alien Isolation",purchase,1.0,0 -15196746,"Alien Isolation",play,32.0,0 -15196746,"XCOM Enemy Unknown",purchase,1.0,0 -15196746,"XCOM Enemy Unknown",play,30.0,0 -15196746,"Endless Space",purchase,1.0,0 -15196746,"Endless Space",play,25.0,0 -15196746,"Dungeon of the Endless",purchase,1.0,0 -15196746,"Dungeon of the Endless",play,23.0,0 -15196746,"BattleBlock Theater",purchase,1.0,0 -15196746,"BattleBlock Theater",play,23.0,0 -15196746,"Command and Conquer Red Alert 3",purchase,1.0,0 -15196746,"Command and Conquer Red Alert 3",play,22.0,0 -15196746,"Mini Metro",purchase,1.0,0 -15196746,"Mini Metro",play,22.0,0 -15196746,"SpaceChem",purchase,1.0,0 -15196746,"SpaceChem",play,22.0,0 -15196746,"Mount & Blade Warband",purchase,1.0,0 -15196746,"Mount & Blade Warband",play,20.0,0 -15196746,"Reassembly",purchase,1.0,0 -15196746,"Reassembly",play,20.0,0 -15196746,"Black Mesa",purchase,1.0,0 -15196746,"Black Mesa",play,19.7,0 -15196746,"Synergy",purchase,1.0,0 -15196746,"Synergy",play,18.7,0 -15196746,"Amnesia The Dark Descent",purchase,1.0,0 -15196746,"Amnesia The Dark Descent",play,17.9,0 -15196746,"Blur",purchase,1.0,0 -15196746,"Blur",play,17.7,0 -15196746,"Gear Up",purchase,1.0,0 -15196746,"Gear Up",play,14.6,0 -15196746,"Multiwinia",purchase,1.0,0 -15196746,"Multiwinia",play,14.0,0 -15196746,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -15196746,"Command and Conquer Red Alert 3 - Uprising",play,13.7,0 -15196746,"Magicka",purchase,1.0,0 -15196746,"Magicka",play,13.1,0 -15196746,"Europa Universalis IV",purchase,1.0,0 -15196746,"Europa Universalis IV",play,12.6,0 -15196746,"The Binding of Isaac",purchase,1.0,0 -15196746,"The Binding of Isaac",play,10.8,0 -15196746,"SOMA",purchase,1.0,0 -15196746,"SOMA",play,10.2,0 -15196746,"Wargame Red Dragon",purchase,1.0,0 -15196746,"Wargame Red Dragon",play,9.9,0 -15196746,"Atom Zombie Smasher ",purchase,1.0,0 -15196746,"Atom Zombie Smasher ",play,9.8,0 -15196746,"Risk of Rain",purchase,1.0,0 -15196746,"Risk of Rain",play,9.0,0 -15196746,"Darwinia",purchase,1.0,0 -15196746,"Darwinia",play,8.7,0 -15196746,"Anno 2070",purchase,1.0,0 -15196746,"Anno 2070",play,8.5,0 -15196746,"Half-Life 2 Episode One",purchase,1.0,0 -15196746,"Half-Life 2 Episode One",play,8.2,0 -15196746,"Amnesia A Machine for Pigs",purchase,1.0,0 -15196746,"Amnesia A Machine for Pigs",play,6.2,0 -15196746,"Arma 2 Operation Arrowhead",purchase,1.0,0 -15196746,"Arma 2 Operation Arrowhead",play,5.9,0 -15196746,"Half-Life 2 Deathmatch",purchase,1.0,0 -15196746,"Half-Life 2 Deathmatch",play,5.3,0 -15196746,"Half-Life Opposing Force",purchase,1.0,0 -15196746,"Half-Life Opposing Force",play,4.9,0 -15196746,"Frozen Synapse",purchase,1.0,0 -15196746,"Frozen Synapse",play,4.6,0 -15196746,"Borderlands 2",purchase,1.0,0 -15196746,"Borderlands 2",play,4.6,0 -15196746,"Nidhogg",purchase,1.0,0 -15196746,"Nidhogg",play,4.5,0 -15196746,"The Stanley Parable",purchase,1.0,0 -15196746,"The Stanley Parable",play,4.3,0 -15196746,"Super Meat Boy",purchase,1.0,0 -15196746,"Super Meat Boy",play,4.0,0 -15196746,"Gunpoint",purchase,1.0,0 -15196746,"Gunpoint",play,3.9,0 -15196746,"Mirror's Edge",purchase,1.0,0 -15196746,"Mirror's Edge",play,3.6,0 -15196746,"Home",purchase,1.0,0 -15196746,"Home",play,3.6,0 -15196746,"Antichamber",purchase,1.0,0 -15196746,"Antichamber",play,3.0,0 -15196746,"Alien Swarm",purchase,1.0,0 -15196746,"Alien Swarm",play,2.9,0 -15196746,"Among the Sleep",purchase,1.0,0 -15196746,"Among the Sleep",play,2.8,0 -15196746,"Zombie Panic Source",purchase,1.0,0 -15196746,"Zombie Panic Source",play,2.7,0 -15196746,"PixelJunk Shooter Ultimate",purchase,1.0,0 -15196746,"PixelJunk Shooter Ultimate",play,2.4,0 -15196746,"Torchlight",purchase,1.0,0 -15196746,"Torchlight",play,2.3,0 -15196746,"Half-Life Blue Shift",purchase,1.0,0 -15196746,"Half-Life Blue Shift",play,2.2,0 -15196746,"Portal",purchase,1.0,0 -15196746,"Portal",play,1.8,0 -15196746,"The Cave",purchase,1.0,0 -15196746,"The Cave",play,1.5,0 -15196746,"BioShock",purchase,1.0,0 -15196746,"BioShock",play,1.2,0 -15196746,"Monaco",purchase,1.0,0 -15196746,"Monaco",play,0.9,0 -15196746,"Gish",purchase,1.0,0 -15196746,"Gish",play,0.9,0 -15196746,"Audiosurf",purchase,1.0,0 -15196746,"Audiosurf",play,0.5,0 -15196746,"Counter-Strike",purchase,1.0,0 -15196746,"Counter-Strike",play,0.4,0 -15196746,"X3 Reunion",purchase,1.0,0 -15196746,"X3 Reunion",play,0.2,0 -15196746,"And Yet It Moves",purchase,1.0,0 -15196746,"Arma 2",purchase,1.0,0 -15196746,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -15196746,"Day of Defeat",purchase,1.0,0 -15196746,"Deathmatch Classic",purchase,1.0,0 -15196746,"Half-Life 2 Lost Coast",purchase,1.0,0 -15196746,"Half-Life Deathmatch Source",purchase,1.0,0 -15196746,"Jolly Rover",purchase,1.0,0 -15196746,"Magicka Final Frontier",purchase,1.0,0 -15196746,"Magicka Frozen Lake",purchase,1.0,0 -15196746,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -15196746,"Magicka Nippon",purchase,1.0,0 -15196746,"Magicka Party Robes",purchase,1.0,0 -15196746,"Magicka The Watchtower",purchase,1.0,0 -15196746,"Magicka Vietnam",purchase,1.0,0 -15196746,"Magicka Wizard's Survival Kit",purchase,1.0,0 -15196746,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -15196746,"Mr. Robot",purchase,1.0,0 -15196746,"Ricochet",purchase,1.0,0 -15196746,"Samorost 2",purchase,1.0,0 -15196746,"Team Fortress Classic",purchase,1.0,0 -169066259,"FINAL FANTASY XIV A Realm Reborn",purchase,1.0,0 -169066259,"FINAL FANTASY XIV A Realm Reborn (PAL version)",purchase,1.0,0 -159850817,"Sid Meier's Civilization V",purchase,1.0,0 -159850817,"Sid Meier's Civilization V",play,53.0,0 -159850817,"Sleeping Dogs Definitive Edition",purchase,1.0,0 -159850817,"Sleeping Dogs Definitive Edition",play,44.0,0 -159850817,"Left 4 Dead 2",purchase,1.0,0 -159850817,"Left 4 Dead 2",play,1.6,0 -159850817,"Sniper Elite V2",purchase,1.0,0 -159850817,"Sniper Elite V2",play,0.9,0 -159850817,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -107347684,"Dota 2",purchase,1.0,0 -107347684,"Dota 2",play,208.0,0 -25634320,"Counter-Strike",purchase,1.0,0 -25634320,"Counter-Strike Condition Zero",purchase,1.0,0 -25634320,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -25634320,"Day of Defeat",purchase,1.0,0 -25634320,"Deathmatch Classic",purchase,1.0,0 -25634320,"Ricochet",purchase,1.0,0 -182859939,"Dota 2",purchase,1.0,0 -182859939,"Dota 2",play,134.0,0 -213338273,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -213338273,"Injustice Gods Among Us Ultimate Edition",play,56.0,0 -213338273,"Tomb Raider",purchase,1.0,0 -213338273,"Tomb Raider",play,1.4,0 -265592512,"Dota 2",purchase,1.0,0 -265592512,"Dota 2",play,23.0,0 -265592512,"Copa Petrobras de Marcas",purchase,1.0,0 -232907046,"Dota 2",purchase,1.0,0 -232907046,"Dota 2",play,452.0,0 -232907046,"Counter-Strike Global Offensive",purchase,1.0,0 -232907046,"Counter-Strike Global Offensive",play,189.0,0 -232907046,"AdVenture Capitalist",purchase,1.0,0 -232907046,"AdVenture Capitalist",play,3.6,0 -232907046,"Strife",purchase,1.0,0 -232907046,"Strife",play,0.4,0 -232907046,"Trove",purchase,1.0,0 -232907046,"8BitMMO",purchase,1.0,0 -232907046,"AirMech",purchase,1.0,0 -232907046,"Anno Online",purchase,1.0,0 -232907046,"Archeblade",purchase,1.0,0 -232907046,"Aura Kingdom",purchase,1.0,0 -232907046,"Blender 2.76b",purchase,1.0,0 -232907046,"Color Symphony",purchase,1.0,0 -232907046,"Divine Souls",purchase,1.0,0 -232907046,"Epic Cards Battle(TCG)",purchase,1.0,0 -232907046,"how do you Do It?",purchase,1.0,0 -232907046,"Only If",purchase,1.0,0 -232907046,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -232907046,"Transformice",purchase,1.0,0 -232907046,"Unturned",purchase,1.0,0 -232907046,"Warface",purchase,1.0,0 -156619742,"Unturned",purchase,1.0,0 -156619742,"Unturned",play,28.0,0 -156619742,"Neverwinter",purchase,1.0,0 -156619742,"Neverwinter",play,0.9,0 -156619742,"Firefall",purchase,1.0,0 -156619742,"Firefall",play,0.5,0 -156619742,"Dota 2",purchase,1.0,0 -156619742,"Dota 2",play,0.5,0 -156619742,"Nosgoth",purchase,1.0,0 -156619742,"Nosgoth",play,0.2,0 -156619742,"Trove",purchase,1.0,0 -156619742,"Trove",play,0.1,0 -281933068,"Dota 2",purchase,1.0,0 -281933068,"Dota 2",play,9.7,0 -74897172,"Football Manager 2012",purchase,1.0,0 -74897172,"Football Manager 2012",play,399.0,0 -74897172,"Football Manager 2015",purchase,1.0,0 -74897172,"Football Manager 2015",play,123.0,0 -74897172,"Football Manager 2011",purchase,1.0,0 -74897172,"Football Manager 2011",play,115.0,0 -74897172,"Football Manager 2016 Demo",purchase,1.0,0 -74897172,"Football Manager 2016 Demo",play,1.9,0 -74897172,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -74897172,"Baldur's Gate Enhanced Edition",play,1.2,0 -74897172,"Stronghold Kingdoms",purchase,1.0,0 -74897172,"Stronghold Kingdoms",play,0.1,0 -89202773,"Team Fortress 2",purchase,1.0,0 -89202773,"Team Fortress 2",play,2.2,0 -20593648,"Counter-Strike Source",purchase,1.0,0 -20593648,"Day of Defeat Source",purchase,1.0,0 -20593648,"Half-Life 2 Deathmatch",purchase,1.0,0 -20593648,"Half-Life 2 Lost Coast",purchase,1.0,0 -84513749,"Sid Meier's Civilization V",purchase,1.0,0 -84513749,"Sid Meier's Civilization V",play,376.0,0 -84513749,"You Need A Budget 4 (YNAB)",purchase,1.0,0 -84513749,"You Need A Budget 4 (YNAB)",play,15.8,0 -84513749,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -84513749,"Sid Meier's Civilization Beyond Earth",play,13.5,0 -84513749,"Team Fortress 2",purchase,1.0,0 -84513749,"Team Fortress 2",play,11.4,0 -84513749,"Tropico 4",purchase,1.0,0 -84513749,"Tropico 4",play,8.2,0 -84513749,"Democracy 3",purchase,1.0,0 -84513749,"Democracy 3",play,7.0,0 -84513749,"Game of Thrones ",purchase,1.0,0 -84513749,"Game of Thrones ",play,6.0,0 -84513749,"Fallout New Vegas",purchase,1.0,0 -84513749,"Fallout New Vegas",play,2.8,0 -84513749,"Sleeping Dogs",purchase,1.0,0 -84513749,"Sleeping Dogs",play,2.2,0 -84513749,"Star Wars Knights of the Old Republic",purchase,1.0,0 -84513749,"Star Wars Knights of the Old Republic",play,1.2,0 -84513749,"Far Cry 3",purchase,1.0,0 -84513749,"Far Cry 3",play,0.9,0 -84513749,"A Game of Thrones - Genesis",purchase,1.0,0 -84513749,"A Game of Thrones - Genesis",play,0.8,0 -84513749,"Age of Empires III Complete Collection",purchase,1.0,0 -84513749,"Age of Empires III Complete Collection",play,0.5,0 -84513749,"Banished",purchase,1.0,0 -84513749,"Banished",play,0.2,0 -84513749,"Torchlight",purchase,1.0,0 -84513749,"Torchlight",play,0.1,0 -84513749,"Sid Meier's Civilization IV",purchase,1.0,0 -84513749,"Sid Meier's Civilization IV",play,0.1,0 -84513749,"Democracy 3 Extremism",purchase,1.0,0 -84513749,"Democracy 3 Extremism Linux",purchase,1.0,0 -84513749,"Democracy 3 Extremism Mac",purchase,1.0,0 -84513749,"Democracy 3 Social Engineering",purchase,1.0,0 -84513749,"Democracy 3 Social Engineering Linux",purchase,1.0,0 -84513749,"Democracy 3 Social Engineering Mac",purchase,1.0,0 -84513749,"Empire Total War",purchase,1.0,0 -84513749,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -84513749,"Fallout New Vegas Dead Money",purchase,1.0,0 -84513749,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -84513749,"Free to Play",purchase,1.0,0 -84513749,"Left 4 Dead 2",purchase,1.0,0 -84513749,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -84513749,"Medal of Honor(TM) Single Player",purchase,1.0,0 -84513749,"Medal of Honor Pre-Order",purchase,1.0,0 -84513749,"Sid Meier's Civilization III Complete",purchase,1.0,0 -84513749,"Sid Meier's Civilization IV",purchase,1.0,0 -84513749,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -84513749,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -84513749,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -84513749,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -84513749,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -84513749,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -84513749,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -84513749,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -84513749,"Star Wars - Battlefront II",purchase,1.0,0 -84513749,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -84513749,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -84513749,"Star Wars Dark Forces",purchase,1.0,0 -84513749,"Star Wars Empire at War Gold",purchase,1.0,0 -84513749,"Star Wars The Force Unleashed II",purchase,1.0,0 -84513749,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -84513749,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -84513749,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -84513749,"Star Wars Republic Commando",purchase,1.0,0 -84513749,"Star Wars Starfighter",purchase,1.0,0 -84513749,"Star Wars The Clone Wars Republic Heroes",purchase,1.0,0 -84513749,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -84513749,"The Bureau XCOM Declassified",purchase,1.0,0 -161936923,"Call of Duty Ghosts",purchase,1.0,0 -161936923,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -255730460,"Battle Islands",purchase,1.0,0 -255730460,"Battle Islands",play,0.3,0 -255730460,"Gotham City Impostors Free To Play",purchase,1.0,0 -17995238,"Team Fortress 2",purchase,1.0,0 -17995238,"Team Fortress 2",play,1571.0,0 -17995238,"RIFT",purchase,1.0,0 -17995238,"RIFT",play,462.0,0 -17995238,"The Elder Scrolls V Skyrim",purchase,1.0,0 -17995238,"The Elder Scrolls V Skyrim",play,330.0,0 -17995238,"Left 4 Dead 2",purchase,1.0,0 -17995238,"Left 4 Dead 2",play,253.0,0 -17995238,"Kerbal Space Program",purchase,1.0,0 -17995238,"Kerbal Space Program",play,217.0,0 -17995238,"Arma 3",purchase,1.0,0 -17995238,"Arma 3",play,155.0,0 -17995238,"XCOM Enemy Unknown",purchase,1.0,0 -17995238,"XCOM Enemy Unknown",play,151.0,0 -17995238,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -17995238,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,143.0,0 -17995238,"Prison Architect",purchase,1.0,0 -17995238,"Prison Architect",play,129.0,0 -17995238,"Left 4 Dead",purchase,1.0,0 -17995238,"Left 4 Dead",play,117.0,0 -17995238,"Batman Arkham City",purchase,1.0,0 -17995238,"Batman Arkham City",play,111.0,0 -17995238,"Medieval II Total War",purchase,1.0,0 -17995238,"Medieval II Total War",play,95.0,0 -17995238,"Borderlands",purchase,1.0,0 -17995238,"Borderlands",play,95.0,0 -17995238,"PlanetSide 2",purchase,1.0,0 -17995238,"PlanetSide 2",play,88.0,0 -17995238,"Champions Online",purchase,1.0,0 -17995238,"Champions Online",play,85.0,0 -17995238,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -17995238,"Warhammer 40,000 Dawn of War II Retribution",play,85.0,0 -17995238,"FTL Faster Than Light",purchase,1.0,0 -17995238,"FTL Faster Than Light",play,84.0,0 -17995238,"Batman Arkham Origins",purchase,1.0,0 -17995238,"Batman Arkham Origins",play,79.0,0 -17995238,"Battlefield Bad Company 2",purchase,1.0,0 -17995238,"Battlefield Bad Company 2",play,59.0,0 -17995238,"Defiance",purchase,1.0,0 -17995238,"Defiance",play,58.0,0 -17995238,"Warhammer 40,000 Space Marine",purchase,1.0,0 -17995238,"Warhammer 40,000 Space Marine",play,58.0,0 -17995238,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -17995238,"Plants vs. Zombies Game of the Year",play,57.0,0 -17995238,"The Witcher 3 Wild Hunt",purchase,1.0,0 -17995238,"The Witcher 3 Wild Hunt",play,57.0,0 -17995238,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -17995238,"Sins of a Solar Empire Rebellion",play,51.0,0 -17995238,"The Settlers 7 Paths to a Kingdom",purchase,1.0,0 -17995238,"The Settlers 7 Paths to a Kingdom",play,49.0,0 -17995238,"Batman Arkham Asylum",purchase,1.0,0 -17995238,"Batman Arkham Asylum",play,45.0,0 -17995238,"Dungeons & Dragons Online",purchase,1.0,0 -17995238,"Dungeons & Dragons Online",play,45.0,0 -17995238,"Dungeon Defenders",purchase,1.0,0 -17995238,"Dungeon Defenders",play,45.0,0 -17995238,"DayZ",purchase,1.0,0 -17995238,"DayZ",play,41.0,0 -17995238,"Frozen Synapse",purchase,1.0,0 -17995238,"Frozen Synapse",play,39.0,0 -17995238,"Counter-Strike Source",purchase,1.0,0 -17995238,"Counter-Strike Source",play,37.0,0 -17995238,"DC Universe Online",purchase,1.0,0 -17995238,"DC Universe Online",play,37.0,0 -17995238,"Arma 2 Operation Arrowhead",purchase,1.0,0 -17995238,"Arma 2 Operation Arrowhead",play,36.0,0 -17995238,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -17995238,"Call of Duty Modern Warfare 2 - Multiplayer",play,36.0,0 -17995238,"Space Hulk Ascension",purchase,1.0,0 -17995238,"Space Hulk Ascension",play,33.0,0 -17995238,"Evil Genius",purchase,1.0,0 -17995238,"Evil Genius",play,33.0,0 -17995238,"Stranded Deep",purchase,1.0,0 -17995238,"Stranded Deep",play,33.0,0 -17995238,"Cosmonautica",purchase,1.0,0 -17995238,"Cosmonautica",play,33.0,0 -17995238,"Mordheim City of the Damned",purchase,1.0,0 -17995238,"Mordheim City of the Damned",play,31.0,0 -17995238,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -17995238,"Tropico 3 - Steam Special Edition",play,28.0,0 -17995238,"Rome Total War",purchase,1.0,0 -17995238,"Rome Total War",play,28.0,0 -17995238,"StarDrive",purchase,1.0,0 -17995238,"StarDrive",play,28.0,0 -17995238,"DUNGEONS - Steam Special Edition",purchase,1.0,0 -17995238,"DUNGEONS - Steam Special Edition",play,27.0,0 -17995238,"Stronghold 3",purchase,1.0,0 -17995238,"Stronghold 3",play,24.0,0 -17995238,"Aion Collectors Edition",purchase,1.0,0 -17995238,"Aion Collectors Edition",play,22.0,0 -17995238,"Planetary Annihilation",purchase,1.0,0 -17995238,"Planetary Annihilation",play,21.0,0 -17995238,"The Lord of the Rings War in the North",purchase,1.0,0 -17995238,"The Lord of the Rings War in the North",play,19.9,0 -17995238,"Loadout",purchase,1.0,0 -17995238,"Loadout",play,19.1,0 -17995238,"Call of Duty Modern Warfare 2",purchase,1.0,0 -17995238,"Call of Duty Modern Warfare 2",play,17.1,0 -17995238,"StarDrive 2",purchase,1.0,0 -17995238,"StarDrive 2",play,17.0,0 -17995238,"The Masterplan",purchase,1.0,0 -17995238,"The Masterplan",play,16.6,0 -17995238,"The Walking Dead",purchase,1.0,0 -17995238,"The Walking Dead",play,15.8,0 -17995238,"Banished",purchase,1.0,0 -17995238,"Banished",play,15.0,0 -17995238,"Alpha Protocol",purchase,1.0,0 -17995238,"Alpha Protocol",play,14.7,0 -17995238,"Plague Inc Evolved",purchase,1.0,0 -17995238,"Plague Inc Evolved",play,14.2,0 -17995238,"Blood Bowl Dark Elves Edition",purchase,1.0,0 -17995238,"Blood Bowl Dark Elves Edition",play,13.9,0 -17995238,"BioShock 2",purchase,1.0,0 -17995238,"BioShock 2",play,13.3,0 -17995238,"Torchlight II",purchase,1.0,0 -17995238,"Torchlight II",play,13.3,0 -17995238,"Spacebase DF-9",purchase,1.0,0 -17995238,"Spacebase DF-9",play,13.2,0 -17995238,"Spore Galactic Adventures",purchase,1.0,0 -17995238,"Spore Galactic Adventures",play,12.8,0 -17995238,"Space Hulk",purchase,1.0,0 -17995238,"Space Hulk",play,11.9,0 -17995238,"Dishonored",purchase,1.0,0 -17995238,"Dishonored",play,11.8,0 -17995238,"Styx Master of Shadows",purchase,1.0,0 -17995238,"Styx Master of Shadows",play,11.7,0 -17995238,"King's Bounty The Legend",purchase,1.0,0 -17995238,"King's Bounty The Legend",play,11.7,0 -17995238,"Spore Creepy & Cute Parts Pack",purchase,1.0,0 -17995238,"Spore Creepy & Cute Parts Pack",play,10.6,0 -17995238,"Alien Swarm",purchase,1.0,0 -17995238,"Alien Swarm",play,10.5,0 -17995238,"Tom Clancy's H.A.W.X.",purchase,1.0,0 -17995238,"Tom Clancy's H.A.W.X.",play,10.2,0 -17995238,"Front Mission Evolved",purchase,1.0,0 -17995238,"Front Mission Evolved",play,9.5,0 -17995238,"Leviathan Warships",purchase,1.0,0 -17995238,"Leviathan Warships",play,9.2,0 -17995238,"Mass Effect 2",purchase,1.0,0 -17995238,"Mass Effect 2",play,8.4,0 -17995238,"Invisible, Inc.",purchase,1.0,0 -17995238,"Invisible, Inc.",play,8.1,0 -17995238,"Pillars of Eternity",purchase,1.0,0 -17995238,"Pillars of Eternity",play,8.0,0 -17995238,"Dota 2",purchase,1.0,0 -17995238,"Dota 2",play,8.0,0 -17995238,"Door Kickers",purchase,1.0,0 -17995238,"Door Kickers",play,8.0,0 -17995238,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -17995238,"Tom Clancy's Splinter Cell Conviction",play,7.8,0 -17995238,"Buccaneer The Pursuit of Infamy",purchase,1.0,0 -17995238,"Buccaneer The Pursuit of Infamy",play,7.2,0 -17995238,"Tropico 4",purchase,1.0,0 -17995238,"Tropico 4",play,6.9,0 -17995238,"Aliens vs. Predator",purchase,1.0,0 -17995238,"Aliens vs. Predator",play,6.9,0 -17995238,"Killing Floor",purchase,1.0,0 -17995238,"Killing Floor",play,6.7,0 -17995238,"Greed Corp",purchase,1.0,0 -17995238,"Greed Corp",play,6.4,0 -17995238,"Day of Defeat Source",purchase,1.0,0 -17995238,"Day of Defeat Source",play,6.4,0 -17995238,"Arma 2",purchase,1.0,0 -17995238,"Arma 2",play,5.8,0 -17995238,"Command and Conquer 4 Tiberian Twilight",purchase,1.0,0 -17995238,"Command and Conquer 4 Tiberian Twilight",play,5.7,0 -17995238,"Age of Conan Rise of the Godslayer",purchase,1.0,0 -17995238,"Age of Conan Rise of the Godslayer",play,4.6,0 -17995238,"King Arthur - The Role-playing Wargame",purchase,1.0,0 -17995238,"King Arthur - The Role-playing Wargame",play,4.3,0 -17995238,"Blood Bowl Legendary Edition",purchase,1.0,0 -17995238,"Blood Bowl Legendary Edition",play,3.7,0 -17995238,"Defense Grid The Awakening",purchase,1.0,0 -17995238,"Defense Grid The Awakening",play,3.4,0 -17995238,"Neverwinter",purchase,1.0,0 -17995238,"Neverwinter",play,3.3,0 -17995238,"Poker Night at the Inventory",purchase,1.0,0 -17995238,"Poker Night at the Inventory",play,3.1,0 -17995238,"Torchlight",purchase,1.0,0 -17995238,"Torchlight",play,3.1,0 -17995238,"Sanctum",purchase,1.0,0 -17995238,"Sanctum",play,2.8,0 -17995238,"Chivalry Medieval Warfare",purchase,1.0,0 -17995238,"Chivalry Medieval Warfare",play,2.5,0 -17995238,"Portal",purchase,1.0,0 -17995238,"Portal",play,2.2,0 -17995238,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -17995238,"Warhammer 40,000 Dawn of War II",play,2.0,0 -17995238,"Steam Marines",purchase,1.0,0 -17995238,"Steam Marines",play,1.7,0 -17995238,"Company of Heroes Opposing Fronts",purchase,1.0,0 -17995238,"Company of Heroes Opposing Fronts",play,1.7,0 -17995238,"The Secret World",purchase,1.0,0 -17995238,"The Secret World",play,1.7,0 -17995238,"Crusaders Thy Kingdom Come",purchase,1.0,0 -17995238,"Crusaders Thy Kingdom Come",play,1.5,0 -17995238,"Monday Night Combat",purchase,1.0,0 -17995238,"Monday Night Combat",play,1.5,0 -17995238,"Homeworld Remastered Collection",purchase,1.0,0 -17995238,"Homeworld Remastered Collection",play,1.5,0 -17995238,"Lead and Gold - Gangs of the Wild West",purchase,1.0,0 -17995238,"Lead and Gold - Gangs of the Wild West",play,1.4,0 -17995238,"Company of Heroes",purchase,1.0,0 -17995238,"Company of Heroes",play,1.1,0 -17995238,"Company of Heroes Tales of Valor",purchase,1.0,0 -17995238,"Company of Heroes Tales of Valor",play,1.1,0 -17995238,"World of Goo",purchase,1.0,0 -17995238,"World of Goo",play,1.0,0 -17995238,"Star Ruler",purchase,1.0,0 -17995238,"Star Ruler",play,1.0,0 -17995238,"ArcheAge",purchase,1.0,0 -17995238,"ArcheAge",play,1.0,0 -17995238,"Assassin's Creed",purchase,1.0,0 -17995238,"Assassin's Creed",play,0.8,0 -17995238,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -17995238,"Star Wars The Force Unleashed Ultimate Sith Edition",play,0.8,0 -17995238,"Alien Breed Impact",purchase,1.0,0 -17995238,"Alien Breed Impact",play,0.7,0 -17995238,"Star Wolves 3 Civil War",purchase,1.0,0 -17995238,"Star Wolves 3 Civil War",play,0.6,0 -17995238,"Dragon Age Origins Character Creator",purchase,1.0,0 -17995238,"Dragon Age Origins Character Creator",play,0.2,0 -17995238,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -17995238,"Killing Floor Mod Defence Alliance 2",play,0.2,0 -17995238,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -17995238,"Arma 3 Marksmen",purchase,1.0,0 -17995238,"Arma 3 Zeus",purchase,1.0,0 -17995238,"Arma Combat Operations",purchase,1.0,0 -17995238,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -17995238,"Batman Arkham City GOTY",purchase,1.0,0 -17995238,"Blazing Angels Squadrons of WWII",purchase,1.0,0 -17995238,"Company of Heroes (New Steam Version)",purchase,1.0,0 -17995238,"Cosmonautica - Soundtrack",purchase,1.0,0 -17995238,"Door Kickers Soundtrack",purchase,1.0,0 -17995238,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -17995238,"Half-Life 2",purchase,1.0,0 -17995238,"Half-Life 2 Deathmatch",purchase,1.0,0 -17995238,"Half-Life 2 Episode One",purchase,1.0,0 -17995238,"Half-Life 2 Episode Two",purchase,1.0,0 -17995238,"Half-Life 2 Lost Coast",purchase,1.0,0 -17995238,"Half-Life Source",purchase,1.0,0 -17995238,"Half-Life Deathmatch Source",purchase,1.0,0 -17995238,"Loki",purchase,1.0,0 -17995238,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -17995238,"Patch testing for Chivalry",purchase,1.0,0 -17995238,"SiN",purchase,1.0,0 -17995238,"SiN Episodes Emergence",purchase,1.0,0 -17995238,"SiN Multiplayer",purchase,1.0,0 -17995238,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -17995238,"Spore",purchase,1.0,0 -17995238,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -17995238,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -17995238,"The Ship",purchase,1.0,0 -17995238,"The Ship Single Player",purchase,1.0,0 -17995238,"The Ship Tutorial",purchase,1.0,0 -17995238,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -17995238,"UFO Afterlight",purchase,1.0,0 -17995238,"UFO Afterlight - Old Version",purchase,1.0,0 -17995238,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -17995238,"Warhammer 40,000 Storm of Vengeance Deathwing Terminator",purchase,1.0,0 -17995238,"XCOM Enemy Within",purchase,1.0,0 -261172612,"Dota 2",purchase,1.0,0 -261172612,"Dota 2",play,1.3,0 -27424183,"Half-Life 2 Deathmatch",purchase,1.0,0 -27424183,"Half-Life 2 Deathmatch",play,1.7,0 -27424183,"Half-Life 2",purchase,1.0,0 -27424183,"Half-Life 2 Episode One",purchase,1.0,0 -27424183,"Half-Life 2 Lost Coast",purchase,1.0,0 -27424183,"Half-Life Deathmatch Source",purchase,1.0,0 -114273290,"Dota 2",purchase,1.0,0 -114273290,"Dota 2",play,45.0,0 -133024750,"Dota 2",purchase,1.0,0 -133024750,"Dota 2",play,3692.0,0 -133024750,"Counter-Strike Global Offensive",purchase,1.0,0 -133024750,"Counter-Strike Global Offensive",play,532.0,0 -133024750,"Total War ROME II - Emperor Edition",purchase,1.0,0 -133024750,"Total War ROME II - Emperor Edition",play,256.0,0 -133024750,"PAYDAY 2",purchase,1.0,0 -133024750,"PAYDAY 2",play,185.0,0 -133024750,"Grand Theft Auto V",purchase,1.0,0 -133024750,"Grand Theft Auto V",play,30.0,0 -133024750,"Fallout New Vegas",purchase,1.0,0 -133024750,"Fallout New Vegas",play,27.0,0 -133024750,"Fable Anniversary",purchase,1.0,0 -133024750,"Fable Anniversary",play,14.1,0 -133024750,"Warframe",purchase,1.0,0 -133024750,"Warframe",play,6.9,0 -133024750,"PAYDAY The Heist",purchase,1.0,0 -133024750,"PAYDAY The Heist",play,6.2,0 -133024750,"Chivalry Medieval Warfare",purchase,1.0,0 -133024750,"Chivalry Medieval Warfare",play,5.6,0 -133024750,"Mortal Kombat Komplete Edition",purchase,1.0,0 -133024750,"Mortal Kombat Komplete Edition",play,4.7,0 -133024750,"Hitman Absolution",purchase,1.0,0 -133024750,"Hitman Absolution",play,3.3,0 -133024750,"War Thunder",purchase,1.0,0 -133024750,"War Thunder",play,2.6,0 -133024750,"Counter-Strike Source",purchase,1.0,0 -133024750,"Counter-Strike Source",play,2.3,0 -133024750,"Grand Theft Auto IV",purchase,1.0,0 -133024750,"Grand Theft Auto IV",play,1.8,0 -133024750,"Team Fortress 2",purchase,1.0,0 -133024750,"Team Fortress 2",play,1.5,0 -133024750,"Rome Total War",purchase,1.0,0 -133024750,"Rome Total War",play,0.6,0 -133024750,"Counter-Strike",purchase,1.0,0 -133024750,"Counter-Strike Condition Zero",purchase,1.0,0 -133024750,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -133024750,"Dragon Age Origins",purchase,1.0,0 -133024750,"Dragon Age Origins - Awakening",purchase,1.0,0 -133024750,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -133024750,"Mata Hari",purchase,1.0,0 -133024750,"Patch testing for Chivalry",purchase,1.0,0 -150182632,"Divinity Original Sin",purchase,1.0,0 -150182632,"Divinity Original Sin",play,96.0,0 -150182632,"Borderlands 2",purchase,1.0,0 -150182632,"Borderlands 2",play,59.0,0 -150182632,"Torchlight II",purchase,1.0,0 -150182632,"Torchlight II",play,38.0,0 -150182632,"Path of Exile",purchase,1.0,0 -150182632,"Path of Exile",play,9.4,0 -150182632,"SMITE",purchase,1.0,0 -150182632,"SMITE",play,3.2,0 -150182632,"Trove",purchase,1.0,0 -150182632,"Trove",play,1.0,0 -150182632,"Warframe",purchase,1.0,0 -150182632,"Warframe",play,0.9,0 -150182632,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -150182632,"Sword Coast Legends",purchase,1.0,0 -247187340,"Defy Gravity",purchase,1.0,0 -170287829,"Dota 2",purchase,1.0,0 -170287829,"Dota 2",play,2.6,0 -123063251,"Dota 2",purchase,1.0,0 -123063251,"Dota 2",play,0.4,0 -178359363,"Dota 2",purchase,1.0,0 -178359363,"Dota 2",play,2.8,0 -244789964,"Unreal Tournament 2004",purchase,1.0,0 -244789964,"Unreal Tournament 2004",play,8.7,0 -244789964,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -244789964,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.9,0 -244789964,"Unreal Tournament Game of the Year Edition",purchase,1.0,0 -244789964,"Unreal Tournament Game of the Year Edition",play,0.7,0 -244789964,"Unreal II The Awakening",purchase,1.0,0 -244789964,"Unreal II The Awakening",play,0.2,0 -244789964,"Unreal Gold",purchase,1.0,0 -244789964,"Unreal Gold",play,0.1,0 -244789964,"ArcheAge",purchase,1.0,0 -244789964,"ArcheAge",play,0.1,0 -244789964,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -174386411,"Warframe",purchase,1.0,0 -174386411,"Warframe",play,13.2,0 -174386411,"Archeblade",purchase,1.0,0 -174386411,"Archeblade",play,2.8,0 -174386411,"Dota 2",purchase,1.0,0 -174386411,"Dota 2",play,1.0,0 -174386411,"Ragnarok",purchase,1.0,0 -174386411,"Age of Wushu",purchase,1.0,0 -174386411,"C9",purchase,1.0,0 -174386411,"Heroes & Generals",purchase,1.0,0 -174386411,"Nosgoth",purchase,1.0,0 -174386411,"The Gate",purchase,1.0,0 -161361254,"Unturned",purchase,1.0,0 -161361254,"Unturned",play,7.1,0 -161361254,"BLOCKADE 3D",purchase,1.0,0 -161361254,"BLOCKADE 3D",play,2.1,0 -161361254,"The Old Tree",purchase,1.0,0 -161361254,"The Old Tree",play,0.3,0 -161361254,"Fallen Earth",purchase,1.0,0 -233266997,"Unturned",purchase,1.0,0 -233266997,"Unturned",play,231.0,0 -233266997,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -252408003,"Dota 2",purchase,1.0,0 -252408003,"Dota 2",play,0.3,0 -176135768,"Dota 2",purchase,1.0,0 -176135768,"Dota 2",play,292.0,0 -201282160,"Dota 2",purchase,1.0,0 -201282160,"Dota 2",play,15.6,0 -251910573,"Get Off My Lawn!",purchase,1.0,0 -133268706,"Dota 2",purchase,1.0,0 -133268706,"Dota 2",play,1888.0,0 -133268706,"Nosgoth",purchase,1.0,0 -133268706,"Nosgoth",play,271.0,0 -133268706,"Counter-Strike Global Offensive",purchase,1.0,0 -133268706,"Counter-Strike Global Offensive",play,87.0,0 -133268706,"SMITE",purchase,1.0,0 -133268706,"SMITE",play,36.0,0 -133268706,"DC Universe Online",purchase,1.0,0 -133268706,"DC Universe Online",play,23.0,0 -133268706,"Neverwinter",purchase,1.0,0 -133268706,"Neverwinter",play,5.9,0 -133268706,"Left 4 Dead 2",purchase,1.0,0 -133268706,"Left 4 Dead 2",play,0.8,0 -133268706,"Free to Play",purchase,1.0,0 -133268706,"Free to Play",play,0.2,0 -133268706,"Counter-Strike",purchase,1.0,0 -133268706,"Counter-Strike Condition Zero",purchase,1.0,0 -133268706,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -133268706,"Counter-Strike Source",purchase,1.0,0 -133268706,"PAYDAY 2",purchase,1.0,0 -133268706,"Saints Row IV",purchase,1.0,0 -133268706,"Tower Wars",purchase,1.0,0 -53091150,"Team Fortress 2",purchase,1.0,0 -53091150,"Team Fortress 2",play,159.0,0 -53091150,"Sid Meier's Civilization V",purchase,1.0,0 -53091150,"Sid Meier's Civilization V",play,112.0,0 -53091150,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -53091150,"Dark Souls Prepare to Die Edition",play,72.0,0 -53091150,"Alan Wake",purchase,1.0,0 -53091150,"Alan Wake",play,71.0,0 -53091150,"Left 4 Dead 2",purchase,1.0,0 -53091150,"Left 4 Dead 2",play,70.0,0 -53091150,"Magic 2014 ",purchase,1.0,0 -53091150,"Magic 2014 ",play,50.0,0 -53091150,"Half-Life 2",purchase,1.0,0 -53091150,"Half-Life 2",play,38.0,0 -53091150,"The Elder Scrolls V Skyrim",purchase,1.0,0 -53091150,"The Elder Scrolls V Skyrim",play,26.0,0 -53091150,"Banished",purchase,1.0,0 -53091150,"Banished",play,23.0,0 -53091150,"Deus Ex Human Revolution",purchase,1.0,0 -53091150,"Deus Ex Human Revolution",play,22.0,0 -53091150,"Rogue Legacy",purchase,1.0,0 -53091150,"Rogue Legacy",play,21.0,0 -53091150,"BioShock Infinite",purchase,1.0,0 -53091150,"BioShock Infinite",play,21.0,0 -53091150,"This War of Mine",purchase,1.0,0 -53091150,"This War of Mine",play,21.0,0 -53091150,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -53091150,"Dragon Age Origins - Ultimate Edition",play,20.0,0 -53091150,"Grand Theft Auto IV",purchase,1.0,0 -53091150,"Grand Theft Auto IV",play,19.4,0 -53091150,"Age of Mythology Extended Edition",purchase,1.0,0 -53091150,"Age of Mythology Extended Edition",play,13.5,0 -53091150,"Portal 2",purchase,1.0,0 -53091150,"Portal 2",play,12.8,0 -53091150,"Grand Theft Auto Vice City",purchase,1.0,0 -53091150,"Grand Theft Auto Vice City",play,12.2,0 -53091150,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -53091150,"Deus Ex Human Revolution - The Missing Link",play,11.8,0 -53091150,"Pixel Piracy",purchase,1.0,0 -53091150,"Pixel Piracy",play,11.8,0 -53091150,"Europa Universalis IV",purchase,1.0,0 -53091150,"Europa Universalis IV",play,11.7,0 -53091150,"Command and Conquer 3 Tiberium Wars",purchase,1.0,0 -53091150,"Command and Conquer 3 Tiberium Wars",play,11.7,0 -53091150,"SteamWorld Dig",purchase,1.0,0 -53091150,"SteamWorld Dig",play,11.6,0 -53091150,"Reus",purchase,1.0,0 -53091150,"Reus",play,11.5,0 -53091150,"Deponia",purchase,1.0,0 -53091150,"Deponia",play,11.2,0 -53091150,"Prison Architect",purchase,1.0,0 -53091150,"Prison Architect",play,10.9,0 -53091150,"Worms Revolution",purchase,1.0,0 -53091150,"Worms Revolution",play,10.9,0 -53091150,"Papo & Yo",purchase,1.0,0 -53091150,"Papo & Yo",play,10.8,0 -53091150,"Dota 2",purchase,1.0,0 -53091150,"Dota 2",play,10.6,0 -53091150,"Child of Light",purchase,1.0,0 -53091150,"Child of Light",play,9.6,0 -53091150,"Game Dev Tycoon",purchase,1.0,0 -53091150,"Game Dev Tycoon",play,7.1,0 -53091150,"Age of Empires II HD Edition",purchase,1.0,0 -53091150,"Age of Empires II HD Edition",play,7.1,0 -53091150,"Half-Life 2 Episode Two",purchase,1.0,0 -53091150,"Half-Life 2 Episode Two",play,6.4,0 -53091150,"Don't Starve",purchase,1.0,0 -53091150,"Don't Starve",play,5.9,0 -53091150,"Terraria",purchase,1.0,0 -53091150,"Terraria",play,5.8,0 -53091150,"Hitman Absolution",purchase,1.0,0 -53091150,"Hitman Absolution",play,5.7,0 -53091150,"Democracy 3",purchase,1.0,0 -53091150,"Democracy 3",play,5.6,0 -53091150,"Overlord",purchase,1.0,0 -53091150,"Overlord",play,5.6,0 -53091150,"Spacebase DF-9",purchase,1.0,0 -53091150,"Spacebase DF-9",play,5.6,0 -53091150,"FTL Faster Than Light",purchase,1.0,0 -53091150,"FTL Faster Than Light",play,5.0,0 -53091150,"Half-Life 2 Episode One",purchase,1.0,0 -53091150,"Half-Life 2 Episode One",play,4.7,0 -53091150,"Sid Meier's Railroads!",purchase,1.0,0 -53091150,"Sid Meier's Railroads!",play,4.5,0 -53091150,"Papers, Please",purchase,1.0,0 -53091150,"Papers, Please",play,4.3,0 -53091150,"Fable Anniversary",purchase,1.0,0 -53091150,"Fable Anniversary",play,4.2,0 -53091150,"Bastion",purchase,1.0,0 -53091150,"Bastion",play,4.2,0 -53091150,"BattleBlock Theater",purchase,1.0,0 -53091150,"BattleBlock Theater",play,3.7,0 -53091150,"SimCity 4 Deluxe",purchase,1.0,0 -53091150,"SimCity 4 Deluxe",play,3.7,0 -53091150,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -53091150,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",play,3.2,0 -53091150,"Brothers - A Tale of Two Sons",purchase,1.0,0 -53091150,"Brothers - A Tale of Two Sons",play,3.0,0 -53091150,"Bully Scholarship Edition",purchase,1.0,0 -53091150,"Bully Scholarship Edition",play,2.9,0 -53091150,"Sword of the Stars The Pit",purchase,1.0,0 -53091150,"Sword of the Stars The Pit",play,2.6,0 -53091150,"To the Moon",purchase,1.0,0 -53091150,"To the Moon",play,2.4,0 -53091150,"Magicka",purchase,1.0,0 -53091150,"Magicka",play,2.3,0 -53091150,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -53091150,"Sid Meier's Ace Patrol Pacific Skies",play,2.3,0 -53091150,"The Banner Saga",purchase,1.0,0 -53091150,"The Banner Saga",play,2.3,0 -53091150,"VVVVVV",purchase,1.0,0 -53091150,"VVVVVV",play,2.2,0 -53091150,"Dust An Elysian Tail",purchase,1.0,0 -53091150,"Dust An Elysian Tail",play,2.1,0 -53091150,"Nidhogg",purchase,1.0,0 -53091150,"Nidhogg",play,2.0,0 -53091150,"Trine 2",purchase,1.0,0 -53091150,"Trine 2",play,1.9,0 -53091150,"Portal",purchase,1.0,0 -53091150,"Portal",play,1.9,0 -53091150,"Dungeons of Dredmor",purchase,1.0,0 -53091150,"Dungeons of Dredmor",play,1.8,0 -53091150,"DLC Quest",purchase,1.0,0 -53091150,"DLC Quest",play,1.7,0 -53091150,"Super Meat Boy",purchase,1.0,0 -53091150,"Super Meat Boy",play,1.7,0 -53091150,"Shadowgate",purchase,1.0,0 -53091150,"Shadowgate",play,1.6,0 -53091150,"Brawlhalla",purchase,1.0,0 -53091150,"Brawlhalla",play,1.6,0 -53091150,"FEZ",purchase,1.0,0 -53091150,"FEZ",play,1.5,0 -53091150,"Little Inferno",purchase,1.0,0 -53091150,"Little Inferno",play,1.5,0 -53091150,"Hack 'n' Slash",purchase,1.0,0 -53091150,"Hack 'n' Slash",play,1.5,0 -53091150,"Super Hexagon",purchase,1.0,0 -53091150,"Super Hexagon",play,1.4,0 -53091150,"Thomas Was Alone",purchase,1.0,0 -53091150,"Thomas Was Alone",play,1.4,0 -53091150,"Mirror's Edge",purchase,1.0,0 -53091150,"Mirror's Edge",play,1.4,0 -53091150,"The Binding of Isaac",purchase,1.0,0 -53091150,"The Binding of Isaac",play,1.3,0 -53091150,"Gunpoint",purchase,1.0,0 -53091150,"Gunpoint",play,1.2,0 -53091150,"Antichamber",purchase,1.0,0 -53091150,"Antichamber",play,1.1,0 -53091150,"Spelunky",purchase,1.0,0 -53091150,"Spelunky",play,1.1,0 -53091150,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -53091150,"Grand Theft Auto Episodes from Liberty City",play,1.0,0 -53091150,"PAYDAY 2",purchase,1.0,0 -53091150,"PAYDAY 2",play,1.0,0 -53091150,"Osmos",purchase,1.0,0 -53091150,"Osmos",play,0.9,0 -53091150,"Strike Suit Zero",purchase,1.0,0 -53091150,"Strike Suit Zero",play,0.9,0 -53091150,"Gone Home",purchase,1.0,0 -53091150,"Gone Home",play,0.8,0 -53091150,"AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome",purchase,1.0,0 -53091150,"AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome",play,0.8,0 -53091150,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -53091150,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.8,0 -53091150,"Shadowrun Returns",purchase,1.0,0 -53091150,"Shadowrun Returns",play,0.8,0 -53091150,"Hammerwatch",purchase,1.0,0 -53091150,"Hammerwatch",play,0.7,0 -53091150,"Goodbye Deponia",purchase,1.0,0 -53091150,"Goodbye Deponia",play,0.7,0 -53091150,"Castle Crashers",purchase,1.0,0 -53091150,"Castle Crashers",play,0.7,0 -53091150,"Surgeon Simulator",purchase,1.0,0 -53091150,"Surgeon Simulator",play,0.7,0 -53091150,"Half-Life 2 Lost Coast",purchase,1.0,0 -53091150,"Half-Life 2 Lost Coast",play,0.7,0 -53091150,"Portal Stories Mel",purchase,1.0,0 -53091150,"Portal Stories Mel",play,0.5,0 -53091150,"Shadowgate MacVenture Series",purchase,1.0,0 -53091150,"Shadowgate MacVenture Series",play,0.5,0 -53091150,"Amnesia The Dark Descent",purchase,1.0,0 -53091150,"Amnesia The Dark Descent",play,0.5,0 -53091150,"LYNE",purchase,1.0,0 -53091150,"LYNE",play,0.5,0 -53091150,"Hard Reset",purchase,1.0,0 -53091150,"Hard Reset",play,0.5,0 -53091150,"LUFTRAUSERS",purchase,1.0,0 -53091150,"LUFTRAUSERS",play,0.4,0 -53091150,"Toki Tori 2+",purchase,1.0,0 -53091150,"Toki Tori 2+",play,0.4,0 -53091150,"The Bridge",purchase,1.0,0 -53091150,"The Bridge",play,0.4,0 -53091150,"Unturned",purchase,1.0,0 -53091150,"Unturned",play,0.4,0 -53091150,"BIT.TRIP RUNNER",purchase,1.0,0 -53091150,"BIT.TRIP RUNNER",play,0.4,0 -53091150,"Monaco",purchase,1.0,0 -53091150,"Monaco",play,0.4,0 -53091150,"Skullgirls",purchase,1.0,0 -53091150,"Skullgirls",play,0.3,0 -53091150,"Dustforce",purchase,1.0,0 -53091150,"Dustforce",play,0.3,0 -53091150,"Q.U.B.E Director's Cut",purchase,1.0,0 -53091150,"Q.U.B.E Director's Cut",play,0.3,0 -53091150,"Overlord II",purchase,1.0,0 -53091150,"Overlord II",play,0.3,0 -53091150,"Don't Starve Together Beta",purchase,1.0,0 -53091150,"Don't Starve Together Beta",play,0.3,0 -53091150,"Half-Life 2 Deathmatch",purchase,1.0,0 -53091150,"Half-Life 2 Deathmatch",play,0.3,0 -53091150,"Plug & Play",purchase,1.0,0 -53091150,"Plug & Play",play,0.3,0 -53091150,"Alan Wake's American Nightmare",purchase,1.0,0 -53091150,"Alan Wake's American Nightmare",play,0.3,0 -53091150,"Audiosurf",purchase,1.0,0 -53091150,"Audiosurf",play,0.3,0 -53091150,"Race The Sun",purchase,1.0,0 -53091150,"Race The Sun",play,0.2,0 -53091150,"Joe Danger 2 The Movie",purchase,1.0,0 -53091150,"Joe Danger 2 The Movie",play,0.2,0 -53091150,"Sid Meier's Ace Patrol",purchase,1.0,0 -53091150,"Sid Meier's Ace Patrol",play,0.2,0 -53091150,"Fable - The Lost Chapters",purchase,1.0,0 -53091150,"Fable - The Lost Chapters",play,0.2,0 -53091150,"You Have to Win the Game",purchase,1.0,0 -53091150,"You Have to Win the Game",play,0.2,0 -53091150,"Zen Bound 2",purchase,1.0,0 -53091150,"Zen Bound 2",play,0.2,0 -53091150,"Gang Beasts",purchase,1.0,0 -53091150,"Gang Beasts",play,0.1,0 -53091150,"World of Goo",purchase,1.0,0 -53091150,"World of Goo",play,0.1,0 -53091150,"Garry's Mod",purchase,1.0,0 -53091150,"SpaceChem",purchase,1.0,0 -53091150,"Receiver",purchase,1.0,0 -53091150,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -53091150,"The Witcher Enhanced Edition",purchase,1.0,0 -53091150,"Age of Empires II HD The Forgotten",purchase,1.0,0 -53091150,"Amnesia A Machine for Pigs",purchase,1.0,0 -53091150,"BioShock",purchase,1.0,0 -53091150,"BioShock 2",purchase,1.0,0 -53091150,"Chaos on Deponia",purchase,1.0,0 -53091150,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -53091150,"Company of Heroes",purchase,1.0,0 -53091150,"Company of Heroes (New Steam Version)",purchase,1.0,0 -53091150,"Company of Heroes 2",purchase,1.0,0 -53091150,"Company of Heroes Opposing Fronts",purchase,1.0,0 -53091150,"Company of Heroes Tales of Valor",purchase,1.0,0 -53091150,"Don't Starve Reign of Giants",purchase,1.0,0 -53091150,"Grand Theft Auto San Andreas",purchase,1.0,0 -53091150,"Grand Theft Auto San Andreas",purchase,1.0,0 -53091150,"Grand Theft Auto Vice City",purchase,1.0,0 -53091150,"Grand Theft Auto III",purchase,1.0,0 -53091150,"Grand Theft Auto III",purchase,1.0,0 -53091150,"Half-Life",purchase,1.0,0 -53091150,"Half-Life Blue Shift",purchase,1.0,0 -53091150,"Half-Life Opposing Force",purchase,1.0,0 -53091150,"Half-Life Source",purchase,1.0,0 -53091150,"Half-Life Deathmatch Source",purchase,1.0,0 -53091150,"Hard Reset Exile DLC",purchase,1.0,0 -53091150,"Hitman Sniper Challenge",purchase,1.0,0 -53091150,"HOARD",purchase,1.0,0 -53091150,"How to Survive",purchase,1.0,0 -53091150,"How To Survive Third Person",purchase,1.0,0 -53091150,"It came from space, and ate our brains",purchase,1.0,0 -53091150,"Jack Lumber",purchase,1.0,0 -53091150,"Jazzpunk",purchase,1.0,0 -53091150,"Planetary Annihilation",purchase,1.0,0 -53091150,"Sid Meier's Civilization III Complete",purchase,1.0,0 -53091150,"Sid Meier's Civilization IV",purchase,1.0,0 -53091150,"Sid Meier's Civilization IV",purchase,1.0,0 -53091150,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -53091150,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -53091150,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -53091150,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -53091150,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -53091150,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -53091150,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -53091150,"Sir, You Are Being Hunted",purchase,1.0,0 -53091150,"Talisman Prologue",purchase,1.0,0 -53091150,"Team Fortress Classic",purchase,1.0,0 -53091150,"Teleglitch Die More Edition",purchase,1.0,0 -53091150,"The Banner Saga - Mod Content",purchase,1.0,0 -53091150,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -53091150,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -53091150,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -53091150,"This War of Mine - War Child Charity DLC",purchase,1.0,0 -53091150,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -53091150,"XCOM Enemy Unknown",purchase,1.0,0 -53091150,"XCOM Enemy Within",purchase,1.0,0 -53091150,"Xenonauts",purchase,1.0,0 -235986253,"Dota 2",purchase,1.0,0 -235986253,"Dota 2",play,1.9,0 -24703611,"Counter-Strike Source",purchase,1.0,0 -24703611,"Counter-Strike Source",play,8.9,0 -24703611,"Day of Defeat Source",purchase,1.0,0 -24703611,"Half-Life 2 Deathmatch",purchase,1.0,0 -24703611,"Half-Life 2 Lost Coast",purchase,1.0,0 -281406000,"Transformice",purchase,1.0,0 -281406000,"Transformice",play,1.3,0 -23078763,"Counter-Strike",purchase,1.0,0 -23078763,"Counter-Strike Condition Zero",purchase,1.0,0 -23078763,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -23078763,"Day of Defeat",purchase,1.0,0 -23078763,"Deathmatch Classic",purchase,1.0,0 -23078763,"Ricochet",purchase,1.0,0 -279731066,"ARK Survival Evolved",purchase,1.0,0 -279731066,"ARK Survival Evolved",play,50.0,0 -76296787,"Tabletop Simulator",purchase,1.0,0 -76296787,"Tabletop Simulator",play,58.0,0 -76296787,"Left 4 Dead 2",purchase,1.0,0 -76296787,"Left 4 Dead 2",play,57.0,0 -76296787,"Portal 2",purchase,1.0,0 -76296787,"Portal 2",play,24.0,0 -76296787,"Cities Skylines",purchase,1.0,0 -76296787,"Cities Skylines",play,20.0,0 -76296787,"Starbound",purchase,1.0,0 -76296787,"Starbound",play,10.3,0 -76296787,"Monaco",purchase,1.0,0 -76296787,"Monaco",play,3.4,0 -76296787,"Portal",purchase,1.0,0 -76296787,"Portal",play,3.1,0 -76296787,"Path of Exile",purchase,1.0,0 -76296787,"Path of Exile",play,2.9,0 -76296787,"Castle Crashers",purchase,1.0,0 -76296787,"Castle Crashers",play,2.9,0 -76296787,"ARK Survival Evolved",purchase,1.0,0 -76296787,"ARK Survival Evolved",play,2.7,0 -76296787,"Borderlands 2",purchase,1.0,0 -76296787,"Borderlands 2",play,2.3,0 -76296787,"Team Fortress 2",purchase,1.0,0 -76296787,"Team Fortress 2",play,2.3,0 -76296787,"This War of Mine",purchase,1.0,0 -76296787,"This War of Mine",play,1.9,0 -76296787,"Guns of Icarus Online",purchase,1.0,0 -76296787,"Guns of Icarus Online",play,1.7,0 -76296787,"Prison Architect",purchase,1.0,0 -76296787,"Prison Architect",play,1.3,0 -76296787,"Half-Life 2",purchase,1.0,0 -76296787,"Half-Life 2",play,1.3,0 -76296787,"Rogue Legacy",purchase,1.0,0 -76296787,"Rogue Legacy",play,0.2,0 -76296787,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -76296787,"Tom Clancy's Splinter Cell Conviction",play,0.2,0 -76296787,"Tomb Raider",purchase,1.0,0 -76296787,"Don't Starve",purchase,1.0,0 -76296787,"Don't Starve Reign of Giants",purchase,1.0,0 -76296787,"Don't Starve Together Beta",purchase,1.0,0 -76296787,"Free to Play",purchase,1.0,0 -76296787,"Half-Life 2 Episode One",purchase,1.0,0 -76296787,"Half-Life 2 Episode Two",purchase,1.0,0 -76296787,"Half-Life 2 Lost Coast",purchase,1.0,0 -76296787,"Orcs Must Die!",purchase,1.0,0 -76296787,"Orcs Must Die! 2",purchase,1.0,0 -76296787,"Starbound - Unstable",purchase,1.0,0 -76296787,"Ticket to Ride",purchase,1.0,0 -66650717,"Europa Universalis IV",purchase,1.0,0 -66650717,"Europa Universalis IV",play,485.0,0 -66650717,"Mount & Blade Warband",purchase,1.0,0 -66650717,"Mount & Blade Warband",play,430.0,0 -66650717,"ARK Survival Evolved",purchase,1.0,0 -66650717,"ARK Survival Evolved",play,404.0,0 -66650717,"PlanetSide 2",purchase,1.0,0 -66650717,"PlanetSide 2",play,372.0,0 -66650717,"Empire Total War",purchase,1.0,0 -66650717,"Empire Total War",play,320.0,0 -66650717,"Wargame Red Dragon",purchase,1.0,0 -66650717,"Wargame Red Dragon",play,239.0,0 -66650717,"Dota 2",purchase,1.0,0 -66650717,"Dota 2",play,236.0,0 -66650717,"Space Engineers",purchase,1.0,0 -66650717,"Space Engineers",play,185.0,0 -66650717,"Total War SHOGUN 2",purchase,1.0,0 -66650717,"Total War SHOGUN 2",play,163.0,0 -66650717,"Sid Meier's Civilization V",purchase,1.0,0 -66650717,"Sid Meier's Civilization V",play,142.0,0 -66650717,"Supreme Commander 2",purchase,1.0,0 -66650717,"Supreme Commander 2",play,140.0,0 -66650717,"Rust",purchase,1.0,0 -66650717,"Rust",play,133.0,0 -66650717,"Napoleon Total War",purchase,1.0,0 -66650717,"Napoleon Total War",play,115.0,0 -66650717,"War Thunder",purchase,1.0,0 -66650717,"War Thunder",play,104.0,0 -66650717,"Total War ROME II - Emperor Edition",purchase,1.0,0 -66650717,"Total War ROME II - Emperor Edition",play,95.0,0 -66650717,"Battlestations Pacific",purchase,1.0,0 -66650717,"Battlestations Pacific",play,94.0,0 -66650717,"Wargame European Escalation",purchase,1.0,0 -66650717,"Wargame European Escalation",play,86.0,0 -66650717,"Anno 2070",purchase,1.0,0 -66650717,"Anno 2070",play,75.0,0 -66650717,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -66650717,"Rising Storm/Red Orchestra 2 Multiplayer",play,62.0,0 -66650717,"Left 4 Dead 2",purchase,1.0,0 -66650717,"Left 4 Dead 2",play,62.0,0 -66650717,"X3 Albion Prelude",purchase,1.0,0 -66650717,"X3 Albion Prelude",play,56.0,0 -66650717,"Wargame AirLand Battle",purchase,1.0,0 -66650717,"Wargame AirLand Battle",play,50.0,0 -66650717,"Planetary Annihilation",purchase,1.0,0 -66650717,"Planetary Annihilation",play,49.0,0 -66650717,"Endless Space",purchase,1.0,0 -66650717,"Endless Space",play,47.0,0 -66650717,"Crusader Kings II",purchase,1.0,0 -66650717,"Crusader Kings II",play,46.0,0 -66650717,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -66650717,"Sins of a Solar Empire Rebellion",play,44.0,0 -66650717,"Supreme Ruler Cold War",purchase,1.0,0 -66650717,"Supreme Ruler Cold War",play,38.0,0 -66650717,"The Elder Scrolls V Skyrim",purchase,1.0,0 -66650717,"The Elder Scrolls V Skyrim",play,37.0,0 -66650717,"Natural Selection 2",purchase,1.0,0 -66650717,"Natural Selection 2",play,37.0,0 -66650717,"Elite Dangerous",purchase,1.0,0 -66650717,"Elite Dangerous",play,25.0,0 -66650717,"Killing Floor 2",purchase,1.0,0 -66650717,"Killing Floor 2",play,24.0,0 -66650717,"Banished",purchase,1.0,0 -66650717,"Banished",play,23.0,0 -66650717,"Kerbal Space Program",purchase,1.0,0 -66650717,"Kerbal Space Program",play,23.0,0 -66650717,"From Dust",purchase,1.0,0 -66650717,"From Dust",play,21.0,0 -66650717,"Fractured Space",purchase,1.0,0 -66650717,"Fractured Space",play,20.0,0 -66650717,"Borderlands 2",purchase,1.0,0 -66650717,"Borderlands 2",play,19.9,0 -66650717,"Age of Empires II HD Edition",purchase,1.0,0 -66650717,"Age of Empires II HD Edition",play,18.4,0 -66650717,"Primal Carnage",purchase,1.0,0 -66650717,"Primal Carnage",play,17.4,0 -66650717,"Alien Swarm",purchase,1.0,0 -66650717,"Alien Swarm",play,16.7,0 -66650717,"Team Fortress 2",purchase,1.0,0 -66650717,"Team Fortress 2",play,16.7,0 -66650717,"Fallout New Vegas",purchase,1.0,0 -66650717,"Fallout New Vegas",play,16.4,0 -66650717,"Stronghold 3",purchase,1.0,0 -66650717,"Stronghold 3",play,15.7,0 -66650717,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -66650717,"Sid Meier's Civilization Beyond Earth",play,15.0,0 -66650717,"Saints Row IV",purchase,1.0,0 -66650717,"Saints Row IV",play,14.2,0 -66650717,"Robocraft",purchase,1.0,0 -66650717,"Robocraft",play,14.0,0 -66650717,"R.U.S.E",purchase,1.0,0 -66650717,"R.U.S.E",play,13.8,0 -66650717,"The Mighty Quest For Epic Loot",purchase,1.0,0 -66650717,"The Mighty Quest For Epic Loot",play,12.6,0 -66650717,"Legends of Pegasus",purchase,1.0,0 -66650717,"Legends of Pegasus",play,12.5,0 -66650717,"Homeworld Remastered Collection",purchase,1.0,0 -66650717,"Homeworld Remastered Collection",play,12.4,0 -66650717,"Nosgoth",purchase,1.0,0 -66650717,"Nosgoth",play,10.1,0 -66650717,"Silent Hunter 5 Battle of the Atlantic",purchase,1.0,0 -66650717,"Silent Hunter 5 Battle of the Atlantic",play,9.8,0 -66650717,"ORION Prelude",purchase,1.0,0 -66650717,"ORION Prelude",play,7.3,0 -66650717,"Chivalry Medieval Warfare",purchase,1.0,0 -66650717,"Chivalry Medieval Warfare",play,6.8,0 -66650717,"X Rebirth",purchase,1.0,0 -66650717,"X Rebirth",play,6.6,0 -66650717,"Happy Wars",purchase,1.0,0 -66650717,"Happy Wars",play,3.7,0 -66650717,"Tribes Ascend",purchase,1.0,0 -66650717,"Tribes Ascend",play,2.9,0 -66650717,"Guns of Icarus Online",purchase,1.0,0 -66650717,"Guns of Icarus Online",play,2.7,0 -66650717,"Unturned",purchase,1.0,0 -66650717,"Unturned",play,2.6,0 -66650717,"Synergy",purchase,1.0,0 -66650717,"Synergy",play,2.5,0 -66650717,"X Beyond the Frontier",purchase,1.0,0 -66650717,"X Beyond the Frontier",play,2.4,0 -66650717,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -66650717,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,1.5,0 -66650717,"Primal Carnage Extinction",purchase,1.0,0 -66650717,"Primal Carnage Extinction",play,1.2,0 -66650717,"Half-Life 2",purchase,1.0,0 -66650717,"Half-Life 2",play,1.0,0 -66650717,"Medieval Engineers",purchase,1.0,0 -66650717,"Medieval Engineers",play,0.9,0 -66650717,"Heroes & Generals",purchase,1.0,0 -66650717,"Heroes & Generals",play,0.8,0 -66650717,"Rome Total War",purchase,1.0,0 -66650717,"Rome Total War",play,0.8,0 -66650717,"ArcheAge",purchase,1.0,0 -66650717,"ArcheAge",play,0.8,0 -66650717,"HAWKEN",purchase,1.0,0 -66650717,"HAWKEN",play,0.6,0 -66650717,"Sniper Elite V2",purchase,1.0,0 -66650717,"Sniper Elite V2",play,0.5,0 -66650717,"Mount & Blade With Fire and Sword",purchase,1.0,0 -66650717,"Mount & Blade With Fire and Sword",play,0.3,0 -66650717,"Hearts of Iron III",purchase,1.0,0 -66650717,"Hearts of Iron III",play,0.2,0 -66650717,"X-Tension",purchase,1.0,0 -66650717,"X-Tension",play,0.1,0 -66650717,"Simply Chess",purchase,1.0,0 -66650717,"Simply Chess",play,0.1,0 -66650717,"Victory Command",purchase,1.0,0 -66650717,"Victory Command",play,0.1,0 -66650717,"X2 The Threat",purchase,1.0,0 -66650717,"X2 The Threat",play,0.1,0 -66650717,"X3 Terran Conflict",purchase,1.0,0 -66650717,"Zigfrak",purchase,1.0,0 -66650717,"X3 Reunion",purchase,1.0,0 -66650717,"Age of Empires II HD The Forgotten",purchase,1.0,0 -66650717,"Archeblade",purchase,1.0,0 -66650717,"Crusader Kings II Sons of Abraham",purchase,1.0,0 -66650717,"Dirty Bomb",purchase,1.0,0 -66650717,"Europa Universalis IV American Dream DLC",purchase,1.0,0 -66650717,"Europa Universalis IV Conquest of Paradise",purchase,1.0,0 -66650717,"Europa Universalis IV Conquistadors Unit pack ",purchase,1.0,0 -66650717,"Europa Universalis IVNative Americans Unit Pack",purchase,1.0,0 -66650717,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -66650717,"Fallout New Vegas Dead Money",purchase,1.0,0 -66650717,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -66650717,"Half-Life 2 Deathmatch",purchase,1.0,0 -66650717,"Half-Life 2 Episode One",purchase,1.0,0 -66650717,"Half-Life 2 Episode Two",purchase,1.0,0 -66650717,"Half-Life 2 Lost Coast",purchase,1.0,0 -66650717,"Half-Life Deathmatch Source",purchase,1.0,0 -66650717,"Impire",purchase,1.0,0 -66650717,"Knights of Pen and Paper +1",purchase,1.0,0 -66650717,"Magicka",purchase,1.0,0 -66650717,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -66650717,"Patch testing for Chivalry",purchase,1.0,0 -66650717,"R.U.S.E.",purchase,1.0,0 -66650717,"Saints Row 2",purchase,1.0,0 -66650717,"Saints Row The Third",purchase,1.0,0 -66650717,"Sengoku",purchase,1.0,0 -66650717,"Ship Simulator Extremes",purchase,1.0,0 -66650717,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -66650717,"Sins of a Solar Empire Rebellion - Stellar Phenomena DLC",purchase,1.0,0 -66650717,"Sins of a Solar Empire Rebellion Forbidden Worlds",purchase,1.0,0 -66650717,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -66650717,"SMITE",purchase,1.0,0 -66650717,"Stronghold HD",purchase,1.0,0 -66650717,"Teleglitch Die More Edition",purchase,1.0,0 -66650717,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -66650717,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -66650717,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -66650717,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -66650717,"Victoria II",purchase,1.0,0 -66650717,"War of the Roses",purchase,1.0,0 -66650717,"War of the Roses Kingmaker",purchase,1.0,0 -66650717,"War of the Roses Balance Beta",purchase,1.0,0 -226490758,"Assassin's Creed",purchase,1.0,0 -226490758,"Assassin's Creed",play,4.4,0 -226490758,"Robocraft",purchase,1.0,0 -226490758,"Robocraft",play,3.3,0 -226490758,"Guns and Robots",purchase,1.0,0 -226490758,"Nosgoth",purchase,1.0,0 -299455273,"Dota 2",purchase,1.0,0 -299455273,"Dota 2",play,4.2,0 -195006426,"Team Fortress 2",purchase,1.0,0 -195006426,"Team Fortress 2",play,40.0,0 -195006426,"Castle Crashers",purchase,1.0,0 -195006426,"Castle Crashers",play,16.8,0 -47240858,"Total War ROME II - Emperor Edition",purchase,1.0,0 -47240858,"Total War ROME II - Emperor Edition",play,509.0,0 -47240858,"Empire Total War",purchase,1.0,0 -47240858,"Empire Total War",play,114.0,0 -47240858,"Napoleon Total War",purchase,1.0,0 -47240858,"Napoleon Total War",play,65.0,0 -47240858,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -47240858,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,6.4,0 -47240858,"Company of Heroes",purchase,1.0,0 -47240858,"Company of Heroes",play,4.5,0 -47240858,"Team Fortress 2",purchase,1.0,0 -47240858,"Team Fortress 2",play,0.9,0 -47240858,"Titan Quest",purchase,1.0,0 -47240858,"Titan Quest",play,0.7,0 -47240858,"Total War Battles KINGDOM",purchase,1.0,0 -47240858,"Total War Battles KINGDOM",play,0.6,0 -47240858,"Company of Heroes (New Steam Version)",purchase,1.0,0 -47240858,"Company of Heroes Opposing Fronts",purchase,1.0,0 -47240858,"Company of Heroes Tales of Valor",purchase,1.0,0 -47240858,"Darksiders",purchase,1.0,0 -47240858,"Metro 2033",purchase,1.0,0 -47240858,"Red Faction Armageddon",purchase,1.0,0 -47240858,"Saints Row The Third",purchase,1.0,0 -47240858,"War Thunder",purchase,1.0,0 -55300764,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -55300764,"Call of Duty Modern Warfare 2 - Multiplayer",play,203.0,0 -55300764,"Empire Total War",purchase,1.0,0 -55300764,"Empire Total War",play,89.0,0 -55300764,"Call of Duty Black Ops",purchase,1.0,0 -55300764,"Call of Duty Black Ops",play,33.0,0 -55300764,"Call of Duty Modern Warfare 2",purchase,1.0,0 -55300764,"Call of Duty Modern Warfare 2",play,21.0,0 -55300764,"Fallout 3",purchase,1.0,0 -55300764,"Fallout 3",play,14.1,0 -55300764,"Call of Duty Modern Warfare 3",purchase,1.0,0 -55300764,"Call of Duty Modern Warfare 3",play,12.3,0 -55300764,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -55300764,"Call of Duty Modern Warfare 3 - Multiplayer",play,11.0,0 -55300764,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -55300764,"Call of Duty Black Ops - Multiplayer",play,10.5,0 -55300764,"Railroad Tycoon 3",purchase,1.0,0 -55300764,"Railroad Tycoon 3",play,9.6,0 -186902489,"Unturned",purchase,1.0,0 -186902489,"Unturned",play,17.3,0 -124429562,"Team Fortress 2",purchase,1.0,0 -124429562,"Team Fortress 2",play,22.0,0 -101638181,"Team Fortress 2",purchase,1.0,0 -101638181,"Team Fortress 2",play,4.0,0 -145869570,"Team Fortress 2",purchase,1.0,0 -145869570,"Team Fortress 2",play,2.5,0 -150991587,"Dota 2",purchase,1.0,0 -150991587,"Dota 2",play,535.0,0 -150991587,"Counter-Strike Global Offensive",purchase,1.0,0 -150991587,"Counter-Strike Global Offensive",play,50.0,0 -150991587,"Realm of the Mad God",purchase,1.0,0 -150991587,"Realm of the Mad God",play,4.6,0 -225982565,"Team Fortress 2",purchase,1.0,0 -225982565,"Team Fortress 2",play,0.2,0 -225982565,"No More Room in Hell",purchase,1.0,0 -225982565,"Heroes & Generals",purchase,1.0,0 -225982565,"Pirates, Vikings, & Knights II",purchase,1.0,0 -225982565,"Tactical Intervention",purchase,1.0,0 -179708074,"Dota 2",purchase,1.0,0 -179708074,"Dota 2",play,1.9,0 -26333936,"Call of Duty Black Ops",purchase,1.0,0 -26333936,"Call of Duty Black Ops",play,57.0,0 -26333936,"Call of Duty Modern Warfare 3",purchase,1.0,0 -26333936,"Call of Duty Modern Warfare 3",play,35.0,0 -26333936,"Call of Duty Black Ops II",purchase,1.0,0 -26333936,"Call of Duty Black Ops II",play,17.6,0 -26333936,"Call of Duty Ghosts",purchase,1.0,0 -26333936,"Call of Duty Ghosts",play,15.4,0 -26333936,"Call of Duty Advanced Warfare",purchase,1.0,0 -26333936,"Call of Duty Advanced Warfare",play,11.3,0 -26333936,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -26333936,"Red Orchestra Ostfront 41-45",play,1.8,0 -26333936,"Darkest Hour Europe '44-'45",purchase,1.0,0 -26333936,"Darkest Hour Europe '44-'45",play,0.8,0 -26333936,"Mare Nostrum",purchase,1.0,0 -26333936,"Mare Nostrum",play,0.6,0 -26333936,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -26333936,"Call of Duty Black Ops II - Zombies",play,0.6,0 -26333936,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -26333936,"Call of Duty Black Ops - Multiplayer",play,0.2,0 -26333936,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -26333936,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -26333936,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -26333936,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -226559137,"Dota 2",purchase,1.0,0 -226559137,"Dota 2",play,257.0,0 -226559137,"AdVenture Capitalist",purchase,1.0,0 -226559137,"16 Bit Arena",purchase,1.0,0 -104802064,"Team Fortress 2",purchase,1.0,0 -104802064,"Team Fortress 2",play,36.0,0 -104802064,"Rusty Hearts",purchase,1.0,0 -104802064,"Rusty Hearts",play,3.2,0 -104802064,"Blacklight Retribution",purchase,1.0,0 -104802064,"Blacklight Retribution",play,0.5,0 -112865325,"Grand Theft Auto V",purchase,1.0,0 -112865325,"Grand Theft Auto V",play,32.0,0 -112865325,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -112865325,"Unreal Tournament 3 Black Edition",play,1.4,0 -112865325,"Dethroned!",purchase,1.0,0 -112865325,"Unturned",purchase,1.0,0 -112865325,"Warframe",purchase,1.0,0 -48456902,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -48456902,"The Elder Scrolls IV Oblivion ",play,132.0,0 -48456902,"The Elder Scrolls V Skyrim",purchase,1.0,0 -48456902,"The Elder Scrolls V Skyrim",play,99.0,0 -48456902,"Call of Duty Modern Warfare 3",purchase,1.0,0 -48456902,"Call of Duty Modern Warfare 3",play,69.0,0 -48456902,"Kings Bounty Legions",purchase,1.0,0 -48456902,"Kings Bounty Legions",play,57.0,0 -48456902,"RIFT",purchase,1.0,0 -48456902,"RIFT",play,30.0,0 -48456902,"Portal",purchase,1.0,0 -48456902,"Portal",play,14.3,0 -48456902,"Sniper Ghost Warrior",purchase,1.0,0 -48456902,"Sniper Ghost Warrior",play,13.7,0 -48456902,"Fallout New Vegas",purchase,1.0,0 -48456902,"Fallout New Vegas",play,5.8,0 -48456902,"Borderlands 2",purchase,1.0,0 -48456902,"Borderlands 2",play,1.8,0 -48456902,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -48456902,"Fallen Earth",purchase,1.0,0 -48456902,"Haunted Memories",purchase,1.0,0 -48456902,"Path of Exile",purchase,1.0,0 -48456902,"Portal 2",purchase,1.0,0 -48456902,"Warframe",purchase,1.0,0 -166413380,"Dungeon Siege III",purchase,1.0,0 -166413380,"Dungeon Siege III",play,0.2,0 -105186824,"Dota 2",purchase,1.0,0 -105186824,"Dota 2",play,3.4,0 -105186824,"Team Fortress 2",purchase,1.0,0 -105186824,"Team Fortress 2",play,0.3,0 -183601681,"Dota 2",purchase,1.0,0 -183601681,"Dota 2",play,32.0,0 -303105690,"Dota 2",purchase,1.0,0 -303105690,"Dota 2",play,45.0,0 -23306116,"Half-Life",purchase,1.0,0 -23306116,"Half-Life",play,0.4,0 -23306116,"Counter-Strike",purchase,1.0,0 -23306116,"Day of Defeat",purchase,1.0,0 -23306116,"Deathmatch Classic",purchase,1.0,0 -23306116,"Half-Life Blue Shift",purchase,1.0,0 -23306116,"Half-Life Opposing Force",purchase,1.0,0 -23306116,"Ricochet",purchase,1.0,0 -23306116,"Team Fortress Classic",purchase,1.0,0 -132852256,"Counter-Strike",purchase,1.0,0 -132852256,"Counter-Strike",play,1036.0,0 -132852256,"Counter-Strike Condition Zero",purchase,1.0,0 -132852256,"Counter-Strike Condition Zero",play,0.8,0 -132852256,"EasyAntiCheat eSports",purchase,1.0,0 -132852256,"EasyAntiCheat eSports",play,0.7,0 -132852256,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -212828039,"Dota 2",purchase,1.0,0 -212828039,"Dota 2",play,0.9,0 -157467012,"Dota 2",purchase,1.0,0 -157467012,"Dota 2",play,28.0,0 -140149061,"Dota 2",purchase,1.0,0 -140149061,"Dota 2",play,136.0,0 -291038678,"Call of Duty Modern Warfare 2",purchase,1.0,0 -291038678,"Call of Duty Modern Warfare 2",play,6.4,0 -291038678,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -183999086,"Unturned",purchase,1.0,0 -183999086,"Unturned",play,18.6,0 -183999086,"Aura Kingdom",purchase,1.0,0 -183999086,"Aura Kingdom",play,5.2,0 -183999086,"Divine Souls",purchase,1.0,0 -183999086,"Divine Souls",play,4.0,0 -183999086,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -183999086,"Tom Clancy's Ghost Recon Phantoms - NA",play,1.3,0 -183999086,"My Lands",purchase,1.0,0 -183999086,"My Lands",play,0.2,0 -183999086,"Dragons and Titans",purchase,1.0,0 -183999086,"My Lands Miners Luck - Starter DLC Pack",purchase,1.0,0 -288599336,"UberStrike",purchase,1.0,0 -304396588,"Euro Truck Simulator 2",purchase,1.0,0 -304396588,"Euro Truck Simulator 2",play,12.9,0 -304396588,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -304396588,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -179394166,"DayZ",purchase,1.0,0 -179394166,"DayZ",play,99.0,0 -179394166,"PAYDAY 2",purchase,1.0,0 -179394166,"PAYDAY 2",play,23.0,0 -179394166,"Warface",purchase,1.0,0 -179394166,"Warface",play,11.7,0 -179394166,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -179394166,"S.K.I.L.L. - Special Force 2",play,4.3,0 -179394166,"Hazard Ops",purchase,1.0,0 -179394166,"Hazard Ops",play,1.3,0 -179394166,"Unturned",purchase,1.0,0 -179394166,"Unturned",play,0.8,0 -179394166,"Arma 2 Operation Arrowhead",purchase,1.0,0 -179394166,"Arma 2 Operation Arrowhead",play,0.6,0 -179394166,"Back to Dinosaur Island ",purchase,1.0,0 -179394166,"Back to Dinosaur Island ",play,0.1,0 -179394166,"Arma 2 DayZ Mod",purchase,1.0,0 -179394166,"Archeblade",purchase,1.0,0 -179394166,"Arma 2",purchase,1.0,0 -179394166,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -179394166,"Cry of Fear",purchase,1.0,0 -179394166,"Heroes & Generals",purchase,1.0,0 -179394166,"No More Room in Hell",purchase,1.0,0 -179394166,"Piercing Blow",purchase,1.0,0 -179394166,"Spooky's House of Jump Scares",purchase,1.0,0 -179394166,"Toribash",purchase,1.0,0 -179394166,"Warframe",purchase,1.0,0 -307351018,"Marvel Heroes 2015",purchase,1.0,0 -307351018,"Marvel Heroes 2015",play,15.4,0 -307351018,"Company of Heroes",purchase,1.0,0 -307351018,"Company of Heroes (New Steam Version)",purchase,1.0,0 -45145682,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -45145682,"Call of Duty Black Ops - Multiplayer",play,90.0,0 -45145682,"Darksiders",purchase,1.0,0 -45145682,"Darksiders",play,3.2,0 -45145682,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -45145682,"F.E.A.R. 2 Project Origin",play,3.1,0 -45145682,"Tom Clancy's Rainbow Six Vegas 2",purchase,1.0,0 -45145682,"Tom Clancy's Rainbow Six Vegas 2",play,1.2,0 -45145682,"Darksiders II",purchase,1.0,0 -45145682,"Darksiders II",play,1.1,0 -45145682,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -45145682,"RollerCoaster Tycoon 3 Platinum!",play,0.6,0 -45145682,"Call of Duty Black Ops",purchase,1.0,0 -45145682,"Darksiders II Deathinitive Edition",purchase,1.0,0 -45145682,"Darksiders II Soundtrack",purchase,1.0,0 -45145682,"Darksiders Soundtrack",purchase,1.0,0 -45145682,"Portal",purchase,1.0,0 -260538236,"Robocraft",purchase,1.0,0 -260538236,"Robocraft",play,84.0,0 -260538236,"CastleMiner Z",purchase,1.0,0 -260538236,"CastleMiner Z",play,38.0,0 -260538236,"Team Fortress 2",purchase,1.0,0 -260538236,"Team Fortress 2",play,34.0,0 -260538236,"Dota 2",purchase,1.0,0 -260538236,"Dota 2",play,12.8,0 -260538236,"Counter-Strike Global Offensive",purchase,1.0,0 -260538236,"Counter-Strike Global Offensive",play,4.2,0 -260538236,"Disney Infinity 3.0 Play Without Limits",purchase,1.0,0 -260538236,"Disney Infinity 3.0 Play Without Limits",play,0.8,0 -260538236,"sZone-Online",purchase,1.0,0 -13863290,"Counter-Strike Source",purchase,1.0,0 -13863290,"Counter-Strike Source",play,473.0,0 -13863290,"Half-Life 2",purchase,1.0,0 -13863290,"Half-Life 2",play,3.2,0 -13863290,"Half-Life 2 Deathmatch",purchase,1.0,0 -13863290,"Half-Life 2 Lost Coast",purchase,1.0,0 -244615705,"Counter-Strike Source",purchase,1.0,0 -244615705,"Counter-Strike Source",play,10.5,0 -293115480,"Counter-Strike Global Offensive",purchase,1.0,0 -293115480,"Counter-Strike Global Offensive",play,21.0,0 -39760170,"Day of Defeat Source",purchase,1.0,0 -39760170,"Day of Defeat Source",play,15.4,0 -39760170,"Counter-Strike Source",purchase,1.0,0 -39760170,"Counter-Strike Source",play,9.3,0 -39760170,"Half-Life 2 Deathmatch",purchase,1.0,0 -39760170,"Half-Life 2 Deathmatch",play,1.1,0 -39760170,"Half-Life 2 Lost Coast",purchase,1.0,0 -305190256,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -305190256,"Call of Duty Black Ops II - Multiplayer",play,51.0,0 -305190256,"Call of Duty Black Ops II",purchase,1.0,0 -305190256,"Call of Duty Black Ops II",play,1.5,0 -305190256,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -305190256,"Call of Duty Black Ops II - Zombies",play,0.2,0 -305190256,"APB Reloaded",purchase,1.0,0 -190887447,"Dota 2",purchase,1.0,0 -190887447,"Dota 2",play,9.1,0 -147143958,"Dota 2",purchase,1.0,0 -147143958,"Dota 2",play,29.0,0 -147143958,"Heroes & Generals",purchase,1.0,0 -147143958,"Heroes & Generals",play,1.2,0 -147143958,"Serious Sam HD The Second Encounter",purchase,1.0,0 -147143958,"Serious Sam HD The Second Encounter",play,0.6,0 -242122348,"BioShock Infinite",purchase,1.0,0 -242122348,"BioShock Infinite - Season Pass",purchase,1.0,0 -242122348,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -242122348,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -147602451,"Dota 2",purchase,1.0,0 -147602451,"Dota 2",play,102.0,0 -147602451,"FreeStyle2 Street Basketball",purchase,1.0,0 -147602451,"Free to Play",purchase,1.0,0 -147602451,"GunZ 2 The Second Duel",purchase,1.0,0 -147602451,"Loadout",purchase,1.0,0 -147602451,"Marvel Heroes 2015",purchase,1.0,0 -147602451,"RIFT",purchase,1.0,0 -147602451,"ROSE Online",purchase,1.0,0 -147602451,"Warframe",purchase,1.0,0 -285883244,"Counter-Strike Global Offensive",purchase,1.0,0 -285883244,"Counter-Strike Global Offensive",play,194.0,0 -285883244,"PAYDAY 2",purchase,1.0,0 -285883244,"PAYDAY 2",play,6.8,0 -285883244,"Dying Light",purchase,1.0,0 -285883244,"Dying Light",play,3.3,0 -285883244,"Sniper Elite 3",purchase,1.0,0 -285883244,"Sniper Elite 3",play,0.8,0 -285883244,"Car Mechanic Simulator 2014",purchase,1.0,0 -285883244,"Car Mechanic Simulator 2014",play,0.4,0 -285883244,"DCS World",purchase,1.0,0 -127074858,"Dota 2",purchase,1.0,0 -127074858,"Dota 2",play,2531.0,0 -127074858,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -127074858,"Burnout Paradise The Ultimate Box",play,0.6,0 -127074858,"Crysis 2 Maximum Edition",purchase,1.0,0 -127074858,"Dead Space",purchase,1.0,0 -127074858,"Left 4 Dead 2",purchase,1.0,0 -127074858,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -127074858,"Medal of Honor(TM) Single Player",purchase,1.0,0 -127074858,"Medal of Honor Pre-Order",purchase,1.0,0 -127074858,"Mirror's Edge",purchase,1.0,0 -34124250,"Counter-Strike",purchase,1.0,0 -34124250,"Counter-Strike",play,0.2,0 -34124250,"Counter-Strike Condition Zero",purchase,1.0,0 -34124250,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -34124250,"Day of Defeat",purchase,1.0,0 -34124250,"Deathmatch Classic",purchase,1.0,0 -34124250,"Ricochet",purchase,1.0,0 -153819101,"Sid Meier's Civilization V",purchase,1.0,0 -153819101,"Sid Meier's Civilization V",play,35.0,0 -153819101,"Firefall",purchase,1.0,0 -128329977,"Sniper Ghost Warrior",purchase,1.0,0 -13802025,"Team Fortress 2",purchase,1.0,0 -13802025,"Team Fortress 2",play,13.3,0 -13802025,"Half-Life 2",purchase,1.0,0 -13802025,"Half-Life 2",play,0.5,0 -13802025,"Counter-Strike",purchase,1.0,0 -13802025,"Counter-Strike Condition Zero",purchase,1.0,0 -13802025,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -13802025,"Counter-Strike Source",purchase,1.0,0 -13802025,"Half-Life 2 Deathmatch",purchase,1.0,0 -13802025,"Half-Life 2 Lost Coast",purchase,1.0,0 -214241787,"Dota 2",purchase,1.0,0 -214241787,"Dota 2",play,0.7,0 -202705453,"Dota 2",purchase,1.0,0 -202705453,"Dota 2",play,1441.0,0 -168574527,"Dota 2",purchase,1.0,0 -168574527,"Dota 2",play,2.3,0 -246452376,"Batman Arkham Origins",purchase,1.0,0 -246452376,"Batman Arkham Origins",play,45.0,0 -246452376,"Infinite Crisis",purchase,1.0,0 -246452376,"Infinite Crisis",play,8.8,0 -246452376,"Kingdom Wars",purchase,1.0,0 -246452376,"Neverwinter",purchase,1.0,0 -254089285,"Dota 2",purchase,1.0,0 -254089285,"Dota 2",play,14.2,0 -136695520,"Dota 2",purchase,1.0,0 -136695520,"Dota 2",play,7.3,0 -28997716,"Counter-Strike Source",purchase,1.0,0 -28997716,"Counter-Strike Source",play,197.0,0 -28997716,"Team Fortress 2",purchase,1.0,0 -28997716,"Team Fortress 2",play,50.0,0 -28997716,"Day of Defeat Source",purchase,1.0,0 -28997716,"Day of Defeat Source",play,16.3,0 -28997716,"Half-Life 2",purchase,1.0,0 -28997716,"Half-Life 2",play,9.9,0 -28997716,"Audiosurf",purchase,1.0,0 -28997716,"Audiosurf",play,9.6,0 -28997716,"Half-Life 2 Episode Two",purchase,1.0,0 -28997716,"Half-Life 2 Episode Two",play,6.1,0 -28997716,"Sid Meier's Civilization V",purchase,1.0,0 -28997716,"Sid Meier's Civilization V",play,5.2,0 -28997716,"Peggle Deluxe",purchase,1.0,0 -28997716,"Peggle Deluxe",play,0.9,0 -28997716,"Fallout",purchase,1.0,0 -28997716,"Fallout",play,0.9,0 -28997716,"Alien Swarm",purchase,1.0,0 -28997716,"Alien Swarm",play,0.8,0 -28997716,"Half-Life 2 Lost Coast",purchase,1.0,0 -28997716,"Half-Life 2 Lost Coast",play,0.4,0 -28997716,"Fallout 2",purchase,1.0,0 -28997716,"Fallout Tactics",purchase,1.0,0 -28997716,"Half-Life 2 Episode One",purchase,1.0,0 -28997716,"Portal",purchase,1.0,0 -233278562,"Dota 2",purchase,1.0,0 -233278562,"Dota 2",play,1.2,0 -109323647,"Dota 2",purchase,1.0,0 -109323647,"Dota 2",play,729.0,0 -109323647,"Team Fortress 2",purchase,1.0,0 -109323647,"Team Fortress 2",play,0.4,0 -194023429,"East India Company Gold",purchase,1.0,0 -30142763,"Half-Life 2 Lost Coast",purchase,1.0,0 -30142763,"Half-Life 2 Deathmatch",purchase,1.0,0 -264438536,"Team Fortress 2",purchase,1.0,0 -264438536,"Team Fortress 2",play,45.0,0 -264438536,"Robocraft",purchase,1.0,0 -264438536,"Robocraft",play,22.0,0 -264438536,"Garry's Mod",purchase,1.0,0 -264438536,"Garry's Mod",play,13.2,0 -264438536,"Dota 2",purchase,1.0,0 -264438536,"Dota 2",play,9.9,0 -264438536,"Unturned",purchase,1.0,0 -264438536,"Unturned",play,7.2,0 -264438536,"BLOCKADE 3D",purchase,1.0,0 -264438536,"BLOCKADE 3D",play,6.1,0 -264438536,"Blender 2.76b",purchase,1.0,0 -264438536,"Blender 2.76b",play,5.7,0 -264438536,"PlanetSide 2",purchase,1.0,0 -264438536,"PlanetSide 2",play,3.4,0 -264438536,"Red Crucible Firestorm",purchase,1.0,0 -264438536,"Red Crucible Firestorm",play,1.7,0 -264438536,"Blacklight Retribution",purchase,1.0,0 -264438536,"Blacklight Retribution",play,0.8,0 -264438536,"Magicka Wizard Wars",purchase,1.0,0 -264438536,"Magicka Wizard Wars",play,0.6,0 -264438536,"Far Cry 4",purchase,1.0,0 -264438536,"Far Cry 4",play,0.2,0 -264438536,"HAWKEN",purchase,1.0,0 -264438536,"HAWKEN",play,0.1,0 -264438536,"Escape",purchase,1.0,0 -264438536,"Gear Up",purchase,1.0,0 -264438536,"Dirty Bomb",purchase,1.0,0 -264438536,"AdVenture Capitalist",purchase,1.0,0 -264438536,"Happy Wars",purchase,1.0,0 -264438536,"Run and Fire",purchase,1.0,0 -264438536,"America's Army Proving Grounds",purchase,1.0,0 -264438536,"DCS World",purchase,1.0,0 -264438536,"Firefall",purchase,1.0,0 -264438536,"RaceRoom Racing Experience ",purchase,1.0,0 -264438536,"Rise of Flight United",purchase,1.0,0 -264438536,"Survarium",purchase,1.0,0 -264438536,"Warframe",purchase,1.0,0 -264438536,"War Thunder",purchase,1.0,0 -283872900,"Counter-Strike Global Offensive",purchase,1.0,0 -283872900,"Counter-Strike Global Offensive",play,467.0,0 -283872900,"AdVenture Capitalist",purchase,1.0,0 -283872900,"AdVenture Capitalist",play,185.0,0 -283872900,"Clicker Heroes",purchase,1.0,0 -283872900,"Clicker Heroes",play,87.0,0 -283872900,"Block N Load",purchase,1.0,0 -283872900,"Block N Load",play,54.0,0 -283872900,"Time Clickers",purchase,1.0,0 -283872900,"Time Clickers",play,47.0,0 -283872900,"Dota 2",purchase,1.0,0 -283872900,"Dota 2",play,10.0,0 -283872900,"Dead Island Epidemic",purchase,1.0,0 -283872900,"Heroes & Generals",purchase,1.0,0 -283872900,"theHunter",purchase,1.0,0 -108391103,"Sid Meier's Civilization V",purchase,1.0,0 -108391103,"Sid Meier's Civilization V",play,0.2,0 -104870123,"Dota 2",purchase,1.0,0 -104870123,"Dota 2",play,930.0,0 -104870123,"Garry's Mod",purchase,1.0,0 -104870123,"Garry's Mod",play,118.0,0 -104870123,"Arma 2 Operation Arrowhead",purchase,1.0,0 -104870123,"Arma 2 Operation Arrowhead",play,96.0,0 -104870123,"Terraria",purchase,1.0,0 -104870123,"Terraria",play,61.0,0 -104870123,"Sid Meier's Civilization V",purchase,1.0,0 -104870123,"Sid Meier's Civilization V",play,53.0,0 -104870123,"Age of Empires II HD Edition",purchase,1.0,0 -104870123,"Age of Empires II HD Edition",play,44.0,0 -104870123,"Counter-Strike Source",purchase,1.0,0 -104870123,"Counter-Strike Source",play,19.8,0 -104870123,"Rust",purchase,1.0,0 -104870123,"Rust",play,18.7,0 -104870123,"Team Fortress 2",purchase,1.0,0 -104870123,"Team Fortress 2",play,15.6,0 -104870123,"Left 4 Dead 2",purchase,1.0,0 -104870123,"Left 4 Dead 2",play,14.2,0 -104870123,"Rome Total War",purchase,1.0,0 -104870123,"Rome Total War",play,14.2,0 -104870123,"Counter-Strike Global Offensive",purchase,1.0,0 -104870123,"Counter-Strike Global Offensive",play,10.8,0 -104870123,"DayZ",purchase,1.0,0 -104870123,"DayZ",play,10.8,0 -104870123,"Ace of Spades",purchase,1.0,0 -104870123,"Ace of Spades",play,9.4,0 -104870123,"Worms Revolution",purchase,1.0,0 -104870123,"Worms Revolution",play,9.0,0 -104870123,"Unturned",purchase,1.0,0 -104870123,"Unturned",play,6.9,0 -104870123,"Magicka",purchase,1.0,0 -104870123,"Magicka",play,6.6,0 -104870123,"BioShock Infinite",purchase,1.0,0 -104870123,"BioShock Infinite",play,4.9,0 -104870123,"Torchlight II",purchase,1.0,0 -104870123,"Torchlight II",play,3.8,0 -104870123,"Don't Starve",purchase,1.0,0 -104870123,"Don't Starve",play,3.6,0 -104870123,"Dungeon Defenders",purchase,1.0,0 -104870123,"Dungeon Defenders",play,1.7,0 -104870123,"Portal 2",purchase,1.0,0 -104870123,"Portal 2",play,1.6,0 -104870123,"FUEL",purchase,1.0,0 -104870123,"FUEL",play,1.4,0 -104870123,"Trine 2",purchase,1.0,0 -104870123,"Trine 2",play,1.3,0 -104870123,"Happy Wars",purchase,1.0,0 -104870123,"Happy Wars",play,0.7,0 -104870123,"Arma 2",purchase,1.0,0 -104870123,"Arma 2",play,0.5,0 -104870123,"Heroes & Generals",purchase,1.0,0 -104870123,"Heroes & Generals",play,0.5,0 -104870123,"Eets Munchies",purchase,1.0,0 -104870123,"Eets Munchies",play,0.5,0 -104870123,"Star Wars - Battlefront II",purchase,1.0,0 -104870123,"Star Wars - Battlefront II",play,0.5,0 -104870123,"Dead Island",purchase,1.0,0 -104870123,"Dead Island",play,0.3,0 -104870123,"Magic 2014 ",purchase,1.0,0 -104870123,"Magic 2014 ",play,0.3,0 -104870123,"Chivalry Medieval Warfare",purchase,1.0,0 -104870123,"Chivalry Medieval Warfare",play,0.3,0 -104870123,"The Elder Scrolls V Skyrim",purchase,1.0,0 -104870123,"The Elder Scrolls V Skyrim",play,0.2,0 -104870123,"Just Cause 2",purchase,1.0,0 -104870123,"Just Cause 2",play,0.1,0 -104870123,"Half-Life 2 Lost Coast",purchase,1.0,0 -104870123,"Anomaly Warzone Earth",purchase,1.0,0 -104870123,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -104870123,"Brtal Legend",purchase,1.0,0 -104870123,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -104870123,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -104870123,"Crysis 2 Maximum Edition",purchase,1.0,0 -104870123,"Dead Space",purchase,1.0,0 -104870123,"Dishonored",purchase,1.0,0 -104870123,"Don't Starve Together Beta",purchase,1.0,0 -104870123,"Far Cry 3",purchase,1.0,0 -104870123,"FEZ",purchase,1.0,0 -104870123,"FTL Faster Than Light",purchase,1.0,0 -104870123,"Half-Life 2",purchase,1.0,0 -104870123,"Killing Floor",purchase,1.0,0 -104870123,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -104870123,"Mark of the Ninja",purchase,1.0,0 -104870123,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -104870123,"Medal of Honor(TM) Single Player",purchase,1.0,0 -104870123,"Medal of Honor Pre-Order",purchase,1.0,0 -104870123,"Patch testing for Chivalry",purchase,1.0,0 -104870123,"Risen 2 - Dark Waters",purchase,1.0,0 -104870123,"Robocraft",purchase,1.0,0 -104870123,"Sacred 2 Gold",purchase,1.0,0 -104870123,"Saints Row 2",purchase,1.0,0 -104870123,"Saints Row The Third",purchase,1.0,0 -104870123,"Sniper Elite V2",purchase,1.0,0 -104870123,"Tomb Raider",purchase,1.0,0 -15221799,"Dota 2",purchase,1.0,0 -15221799,"Dota 2",play,1857.0,0 -15221799,"Clicker Heroes",purchase,1.0,0 -15221799,"Clicker Heroes",play,162.0,0 -15221799,"The Elder Scrolls V Skyrim",purchase,1.0,0 -15221799,"The Elder Scrolls V Skyrim",play,45.0,0 -15221799,"Assassin's Creed IV Black Flag",purchase,1.0,0 -15221799,"Assassin's Creed IV Black Flag",play,44.0,0 -15221799,"Don't Starve",purchase,1.0,0 -15221799,"Don't Starve",play,33.0,0 -15221799,"Middle-earth Shadow of Mordor",purchase,1.0,0 -15221799,"Middle-earth Shadow of Mordor",play,22.0,0 -15221799,"Castle Crashers",purchase,1.0,0 -15221799,"Castle Crashers",play,21.0,0 -15221799,"Worms Reloaded",purchase,1.0,0 -15221799,"Worms Reloaded",play,18.1,0 -15221799,"Magicka",purchase,1.0,0 -15221799,"Magicka",play,17.4,0 -15221799,"The Forest",purchase,1.0,0 -15221799,"The Forest",play,14.6,0 -15221799,"Counter-Strike Source",purchase,1.0,0 -15221799,"Counter-Strike Source",play,14.4,0 -15221799,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -15221799,"Sonic & All-Stars Racing Transformed",play,8.1,0 -15221799,"Counter-Strike Global Offensive",purchase,1.0,0 -15221799,"Counter-Strike Global Offensive",play,8.1,0 -15221799,"Deponia",purchase,1.0,0 -15221799,"Deponia",play,7.8,0 -15221799,"Dead Island",purchase,1.0,0 -15221799,"Dead Island",play,5.8,0 -15221799,"Godus",purchase,1.0,0 -15221799,"Godus",play,4.8,0 -15221799,"Path of Exile",purchase,1.0,0 -15221799,"Path of Exile",play,3.3,0 -15221799,"Garry's Mod",purchase,1.0,0 -15221799,"Garry's Mod",play,2.2,0 -15221799,"Free to Play",purchase,1.0,0 -15221799,"Free to Play",play,1.4,0 -15221799,"Counter-Strike",purchase,1.0,0 -15221799,"Counter-Strike",play,0.8,0 -15221799,"Jurassic Park The Game",purchase,1.0,0 -15221799,"Jurassic Park The Game",play,0.7,0 -15221799,"Day of Defeat Source",purchase,1.0,0 -15221799,"Day of Defeat Source",play,0.4,0 -15221799,"Team Fortress 2",purchase,1.0,0 -15221799,"Team Fortress 2",play,0.3,0 -15221799,"Source Filmmaker",purchase,1.0,0 -15221799,"Source Filmmaker",play,0.2,0 -15221799,"Half-Life",purchase,1.0,0 -15221799,"Alan Wake",purchase,1.0,0 -15221799,"Alan Wake's American Nightmare",purchase,1.0,0 -15221799,"Castle Crashers - Blacksmith Pack",purchase,1.0,0 -15221799,"Day of Defeat",purchase,1.0,0 -15221799,"Deathmatch Classic",purchase,1.0,0 -15221799,"Don't Starve Together Beta",purchase,1.0,0 -15221799,"Half-Life 2 Deathmatch",purchase,1.0,0 -15221799,"Half-Life 2 Lost Coast",purchase,1.0,0 -15221799,"Half-Life Blue Shift",purchase,1.0,0 -15221799,"Half-Life Opposing Force",purchase,1.0,0 -15221799,"Ricochet",purchase,1.0,0 -15221799,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -15221799,"Team Fortress Classic",purchase,1.0,0 -15221799,"The Elder Scrolls III Morrowind",purchase,1.0,0 -15221799,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -15221799,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -15221799,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -133439936,"Terraria",purchase,1.0,0 -133439936,"Terraria",play,28.0,0 -133439936,"Rust",purchase,1.0,0 -133439936,"Rust",play,18.7,0 -133439936,"The Elder Scrolls V Skyrim",purchase,1.0,0 -133439936,"The Elder Scrolls V Skyrim",play,15.7,0 -133439936,"Garry's Mod",purchase,1.0,0 -133439936,"Garry's Mod",play,15.1,0 -133439936,"BattleBlock Theater",purchase,1.0,0 -133439936,"BattleBlock Theater",play,4.1,0 -133439936,"Team Fortress 2",purchase,1.0,0 -133439936,"Team Fortress 2",play,4.1,0 -133439936,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -133439936,"Just Cause 2 Multiplayer Mod",play,3.8,0 -133439936,"Starbound",purchase,1.0,0 -133439936,"Starbound",play,3.6,0 -133439936,"Trine 2",purchase,1.0,0 -133439936,"Trine 2",play,3.0,0 -133439936,"Borderlands 2",purchase,1.0,0 -133439936,"Borderlands 2",play,2.8,0 -133439936,"Chivalry Medieval Warfare",purchase,1.0,0 -133439936,"Chivalry Medieval Warfare",play,2.7,0 -133439936,"Proteus",purchase,1.0,0 -133439936,"Proteus",play,1.7,0 -133439936,"Portal",purchase,1.0,0 -133439936,"Portal",play,1.6,0 -133439936,"Dota 2",purchase,1.0,0 -133439936,"Dota 2",play,1.2,0 -133439936,"Delver",purchase,1.0,0 -133439936,"Delver",play,1.2,0 -133439936,"The Binding of Isaac",purchase,1.0,0 -133439936,"The Binding of Isaac",play,0.7,0 -133439936,"DayZ",purchase,1.0,0 -133439936,"DayZ",play,0.7,0 -133439936,"Spelunky",purchase,1.0,0 -133439936,"Spelunky",play,0.3,0 -133439936,"Risk of Rain",purchase,1.0,0 -133439936,"Risk of Rain",play,0.2,0 -133439936,"7 Days to Die",purchase,1.0,0 -133439936,"7 Days to Die",play,0.2,0 -133439936,"Half-Life 2",purchase,1.0,0 -133439936,"Half-Life 2 Episode One",purchase,1.0,0 -133439936,"Half-Life 2 Episode Two",purchase,1.0,0 -133439936,"Half-Life 2 Lost Coast",purchase,1.0,0 -133439936,"Hitman Absolution",purchase,1.0,0 -133439936,"Hitman Sniper Challenge",purchase,1.0,0 -133439936,"Just Cause 2",purchase,1.0,0 -133439936,"Mirror's Edge",purchase,1.0,0 -133439936,"Nether",purchase,1.0,0 -133439936,"ORION Prelude",purchase,1.0,0 -133439936,"Patch testing for Chivalry",purchase,1.0,0 -133439936,"Portal 2",purchase,1.0,0 -133439936,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -133439936,"Starbound - Unstable",purchase,1.0,0 -133439936,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -133439936,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -133439936,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -133439936,"The Swapper",purchase,1.0,0 -133439936,"Tomb Raider",purchase,1.0,0 -126290232,"Team Fortress 2",purchase,1.0,0 -126290232,"Team Fortress 2",play,2.1,0 -126290232,"Gotham City Impostors Free To Play",purchase,1.0,0 -126290232,"Gotham City Impostors Free To Play",play,0.3,0 -126290232,"America's Army Proving Grounds",purchase,1.0,0 -126290232,"America's Army Proving Grounds",play,0.2,0 -126290232,"RaceRoom Racing Experience ",purchase,1.0,0 -126290232,"Heroes & Generals",purchase,1.0,0 -248499268,"Dota 2",purchase,1.0,0 -248499268,"Dota 2",play,3.3,0 -247501675,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -247501675,"Ultra Street Fighter IV",purchase,1.0,0 -302930650,"Counter-Strike Nexon Zombies",purchase,1.0,0 -162478997,"Dota 2",purchase,1.0,0 -162478997,"Dota 2",play,4.2,0 -275667776,"Dota 2",purchase,1.0,0 -275667776,"Dota 2",play,3.2,0 -275667776,"GunZ 2 The Second Duel",purchase,1.0,0 -275667776,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -193705276,"Dota 2",purchase,1.0,0 -193705276,"Dota 2",play,1467.0,0 -193705276,"Counter-Strike Global Offensive",purchase,1.0,0 -193705276,"Counter-Strike Global Offensive",play,3.9,0 -287260444,"Dota 2",purchase,1.0,0 -287260444,"Dota 2",play,28.0,0 -233532285,"Grand Theft Auto V",purchase,1.0,0 -233532285,"Grand Theft Auto V",play,381.0,0 -105361549,"Dota 2",purchase,1.0,0 -105361549,"Dota 2",play,154.0,0 -107950496,"Team Fortress 2",purchase,1.0,0 -107950496,"Team Fortress 2",play,166.0,0 -107950496,"Dota 2",purchase,1.0,0 -107950496,"Dota 2",play,2.4,0 -107950496,"Age of Empires II HD Edition",purchase,1.0,0 -107950496,"Age of Empires II HD The Forgotten",purchase,1.0,0 -148847158,"Dota 2",purchase,1.0,0 -148847158,"Dota 2",play,25.0,0 -157530604,"Dungeons & Dragons Online",purchase,1.0,0 -157530604,"Dungeons & Dragons Online",play,55.0,0 -157530604,"Portal 2",purchase,1.0,0 -157530604,"Portal 2",play,47.0,0 -157530604,"The Stanley Parable",purchase,1.0,0 -157530604,"The Stanley Parable",play,14.1,0 -157530604,"Surgeon Simulator",purchase,1.0,0 -157530604,"Surgeon Simulator",play,9.8,0 -157530604,"Left 4 Dead 2",purchase,1.0,0 -157530604,"Left 4 Dead 2",play,2.2,0 -157530604,"Spooky's House of Jump Scares",purchase,1.0,0 -157530604,"Spooky's House of Jump Scares",play,2.1,0 -157530604,"Heroes & Generals",purchase,1.0,0 -136258332,"Counter-Strike Source",purchase,1.0,0 -136258332,"Counter-Strike Source",play,96.0,0 -188380403,"Unturned",purchase,1.0,0 -188380403,"Unturned",play,38.0,0 -162512492,"Dota 2",purchase,1.0,0 -162512492,"Dota 2",play,52.0,0 -162512492,"Path of Exile",purchase,1.0,0 -162512492,"Path of Exile",play,2.8,0 -178701168,"Team Fortress 2",purchase,1.0,0 -178701168,"Team Fortress 2",play,1.5,0 -107241585,"Dota 2",purchase,1.0,0 -107241585,"Dota 2",play,11.9,0 -128275106,"Dota 2",purchase,1.0,0 -128275106,"Dota 2",play,11.1,0 -102796492,"Dota 2",purchase,1.0,0 -102796492,"Dota 2",play,3.8,0 -205074970,"Dota 2",purchase,1.0,0 -205074970,"Dota 2",play,12.1,0 -146678136,"Dota 2",purchase,1.0,0 -146678136,"Dota 2",play,1.9,0 -173344308,"Team Fortress 2",purchase,1.0,0 -173344308,"Team Fortress 2",play,164.0,0 -173344308,"Unturned",purchase,1.0,0 -173344308,"Unturned",play,53.0,0 -173344308,"BLOCKADE 3D",purchase,1.0,0 -173344308,"BLOCKADE 3D",play,38.0,0 -173344308,"Toribash",purchase,1.0,0 -173344308,"Toribash",play,0.3,0 -173344308,"TOME Immortal Arena",purchase,1.0,0 -167418202,"Dota 2",purchase,1.0,0 -167418202,"Dota 2",play,1635.0,0 -167418202,"Gotham City Impostors Free To Play",purchase,1.0,0 -167418202,"Warframe",purchase,1.0,0 -293076852,"Counter-Strike Nexon Zombies",purchase,1.0,0 -293076852,"Counter-Strike Nexon Zombies",play,1.4,0 -189704237,"Dota 2",purchase,1.0,0 -189704237,"Dota 2",play,13.5,0 -189704237,"Warframe",purchase,1.0,0 -189704237,"War Thunder",purchase,1.0,0 -156494774,"Dota 2",purchase,1.0,0 -156494774,"Dota 2",play,2.5,0 -156494774,"Left 4 Dead 2",purchase,1.0,0 -261067712,"Trove",purchase,1.0,0 -261067712,"Trove",play,12.5,0 -261067712,"Robocraft",purchase,1.0,0 -261067712,"Robocraft",play,8.5,0 -261067712,"The Lord of the Rings Online",purchase,1.0,0 -261067712,"The Lord of the Rings Online",play,7.0,0 -261067712,"Warframe",purchase,1.0,0 -261067712,"Warframe",play,3.9,0 -261067712,"Unturned",purchase,1.0,0 -261067712,"Unturned",play,3.1,0 -261067712,"Marvel Heroes 2015",purchase,1.0,0 -261067712,"Marvel Heroes 2015",play,2.0,0 -261067712,"Brawlhalla",purchase,1.0,0 -261067712,"Brawlhalla",play,1.8,0 -261067712,"Moonbase Alpha",purchase,1.0,0 -261067712,"Moonbase Alpha",play,0.8,0 -261067712,"Dota 2",purchase,1.0,0 -261067712,"Dota 2",play,0.3,0 -261067712,"Transformice",purchase,1.0,0 -261067712,"Transformice",play,0.3,0 -261067712,"No More Room in Hell",purchase,1.0,0 -261067712,"No More Room in Hell",play,0.1,0 -261067712,"Copa Petrobras de Marcas",purchase,1.0,0 -261067712,"Copa Petrobras de Marcas",play,0.1,0 -261067712,"Infinite Crisis",purchase,1.0,0 -261067712,"Counter-Strike Nexon Zombies",purchase,1.0,0 -176150662,"Dota 2",purchase,1.0,0 -176150662,"Dota 2",play,491.0,0 -180561370,"Enclave",purchase,1.0,0 -258530685,"Sakura Clicker",purchase,1.0,0 -258530685,"Sakura Clicker",play,19.0,0 -258530685,"Eternal Senia",purchase,1.0,0 -258530685,"Eternal Senia",play,4.9,0 -258530685,"Dota 2",purchase,1.0,0 -258530685,"Dota 2",play,1.0,0 -258530685,"Block N Load",purchase,1.0,0 -258530685,"Block N Load",play,1.0,0 -258530685,"SC2VN - The eSports Visual Novel",purchase,1.0,0 -258530685,"SC2VN - The eSports Visual Novel",play,0.9,0 -258530685,"NEKOPARA Vol. 0",purchase,1.0,0 -258530685,"NEKOPARA Vol. 0",play,0.5,0 -258530685,"FaceRig",purchase,1.0,0 -258530685,"FaceRig",play,0.3,0 -258530685,"ShareX",purchase,1.0,0 -258530685,"Epic Cards Battle(TCG)",purchase,1.0,0 -258530685,"Voices from the Sea",purchase,1.0,0 -120523185,"FEZ",purchase,1.0,0 -120523185,"FEZ",play,48.0,0 -120523185,"Mini Metro",purchase,1.0,0 -120523185,"Mini Metro",play,38.0,0 -120523185,"TowerFall Ascension",purchase,1.0,0 -120523185,"TowerFall Ascension",play,23.0,0 -120523185,"Transistor",purchase,1.0,0 -120523185,"Transistor",play,19.7,0 -120523185,"The Night of the Rabbit",purchase,1.0,0 -120523185,"The Night of the Rabbit",play,15.9,0 -120523185,"Trine 2",purchase,1.0,0 -120523185,"Trine 2",play,15.1,0 -120523185,"The Jackbox Party Pack 2",purchase,1.0,0 -120523185,"The Jackbox Party Pack 2",play,14.3,0 -120523185,"Dota 2",purchase,1.0,0 -120523185,"Dota 2",play,6.7,0 -120523185,"Little Inferno",purchase,1.0,0 -120523185,"Little Inferno",play,4.8,0 -120523185,"Broken Age",purchase,1.0,0 -120523185,"Broken Age",play,2.1,0 -120523185,"140",purchase,1.0,0 -120523185,"140",play,2.0,0 -120523185,"Solar 2",purchase,1.0,0 -120523185,"Solar 2",play,1.6,0 -120523185,"AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome",purchase,1.0,0 -120523185,"AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome",play,1.5,0 -120523185,"Antichamber",purchase,1.0,0 -120523185,"Antichamber",play,1.3,0 -120523185,"Secrets of Rtikon",purchase,1.0,0 -120523185,"Secrets of Rtikon",play,1.1,0 -120523185,"Papers, Please",purchase,1.0,0 -120523185,"Papers, Please",play,0.9,0 -120523185,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -120523185,"Superbrothers Sword & Sworcery EP",play,0.9,0 -120523185,"Monaco",purchase,1.0,0 -120523185,"Monaco",play,0.7,0 -120523185,"LIMBO",purchase,1.0,0 -120523185,"LIMBO",play,0.5,0 -120523185,"Bastion",purchase,1.0,0 -120523185,"Bastion",play,0.5,0 -120523185,"Crayon Physics Deluxe",purchase,1.0,0 -120523185,"Crayon Physics Deluxe",play,0.4,0 -120523185,"NightSky",purchase,1.0,0 -120523185,"NightSky",play,0.3,0 -120523185,"Lume",purchase,1.0,0 -120523185,"Lume",play,0.3,0 -120523185,"BattleBlock Theater",purchase,1.0,0 -120523185,"BattleBlock Theater",play,0.3,0 -120523185,"Super Hexagon",purchase,1.0,0 -120523185,"Super Hexagon",play,0.3,0 -120523185,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -120523185,"Rocketbirds Hardboiled Chicken",play,0.3,0 -120523185,"Gone Home",purchase,1.0,0 -120523185,"Gone Home",play,0.2,0 -120523185,"Prison Architect",purchase,1.0,0 -120523185,"Prison Architect",play,0.2,0 -120523185,"VVVVVV",purchase,1.0,0 -120523185,"VVVVVV",play,0.2,0 -120523185,"KAMI",purchase,1.0,0 -120523185,"KAMI",play,0.2,0 -120523185,"Spirits",purchase,1.0,0 -120523185,"Spirits",play,0.2,0 -120523185,"Beat Hazard",purchase,1.0,0 -120523185,"Beat Hazard",play,0.1,0 -120523185,"Eets Munchies",purchase,1.0,0 -120523185,"Eets Munchies",play,0.1,0 -120523185,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -120523185,"Beatbuddy Tale of the Guardians",play,0.1,0 -120523185,"Mark of the Ninja",purchase,1.0,0 -120523185,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -120523185,"Dynamite Jack",purchase,1.0,0 -120523185,"ArcaniA",purchase,1.0,0 -120523185,"Ballpoint Universe Infinite",purchase,1.0,0 -120523185,"BEEP",purchase,1.0,0 -120523185,"Brtal Legend",purchase,1.0,0 -120523185,"Camera Obscura",purchase,1.0,0 -120523185,"Child of Light",purchase,1.0,0 -120523185,"Cinders",purchase,1.0,0 -120523185,"Crazy Machines 2",purchase,1.0,0 -120523185,"FTL Faster Than Light",purchase,1.0,0 -120523185,"Galaxy on Fire 2 Full HD",purchase,1.0,0 -120523185,"Gemini Rue",purchase,1.0,0 -120523185,"Giana Sisters Twisted Dreams",purchase,1.0,0 -120523185,"Giana Sisters Twisted Dreams - Rise of the Owlverlord",purchase,1.0,0 -120523185,"Gunpoint",purchase,1.0,0 -120523185,"Hammerwatch",purchase,1.0,0 -120523185,"Jack Lumber",purchase,1.0,0 -120523185,"LUFTRAUSERS",purchase,1.0,0 -120523185,"Mount Your Friends",purchase,1.0,0 -120523185,"Out There Somewhere",purchase,1.0,0 -120523185,"Polarity",purchase,1.0,0 -120523185,"Portal",purchase,1.0,0 -120523185,"Portal 2",purchase,1.0,0 -120523185,"Risen",purchase,1.0,0 -120523185,"SteamWorld Dig",purchase,1.0,0 -120523185,"The Book of Unwritten Tales",purchase,1.0,0 -120523185,"The Book of Unwritten Tales Extras",purchase,1.0,0 -120523185,"The Great Jitters Pudding Panic",purchase,1.0,0 -120523185,"The Guild II",purchase,1.0,0 -120523185,"The Guild II - Pirates of the European Seas",purchase,1.0,0 -120523185,"The Guild II Renaissance",purchase,1.0,0 -293350478,"Dota 2",purchase,1.0,0 -293350478,"Dota 2",play,0.2,0 -81777905,"BRINK",purchase,1.0,0 -81777905,"BRINK",play,11.4,0 -65147980,"Terraria",purchase,1.0,0 -65147980,"Terraria",play,270.0,0 -65147980,"Portal 2",purchase,1.0,0 -65147980,"Portal 2",play,14.7,0 -65147980,"Portal",purchase,1.0,0 -65147980,"Portal",play,7.8,0 -65147980,"PixelJunk Shooter",purchase,1.0,0 -65147980,"PixelJunk Shooter",play,2.8,0 -65147980,"Gun Metal",purchase,1.0,0 -65147980,"Gun Metal",play,0.1,0 -65147980,"PixelJunk Monsters Ultimate",purchase,1.0,0 -65147980,"Survivalist",purchase,1.0,0 -65147980,"GT Legends",purchase,1.0,0 -65147980,"Commander Conquest of the Americas Gold",purchase,1.0,0 -65147980,"Crazy Taxi",purchase,1.0,0 -65147980,"Enclave",purchase,1.0,0 -65147980,"Evoland",purchase,1.0,0 -65147980,"Guacamelee! Super Turbo Championship Edition",purchase,1.0,0 -65147980,"Letter Quest Grimm's Journey",purchase,1.0,0 -65147980,"Letter Quest Grimm's Journey Remastered",purchase,1.0,0 -65147980,"Overture",purchase,1.0,0 -65147980,"SEGA Bass Fishing",purchase,1.0,0 -65147980,"Sniper Ghost Warrior 2",purchase,1.0,0 -65147980,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -65147980,"Sonic Adventure DX",purchase,1.0,0 -65147980,"Space Channel 5 Part 2",purchase,1.0,0 -65147980,"The Elder Scrolls V Skyrim",purchase,1.0,0 -65147980,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -65147980,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -65147980,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -65147980,"Two Worlds Epic Edition",purchase,1.0,0 -65147980,"Two Worlds II",purchase,1.0,0 -140911953,"Saints Row The Third",purchase,1.0,0 -140911953,"Saints Row The Third",play,14.9,0 -140911953,"Sacred Citadel",purchase,1.0,0 -140911953,"Sacred Citadel",play,5.2,0 -140911953,"Sacred 2 Gold",purchase,1.0,0 -140911953,"Sacred 2 Gold",play,2.0,0 -140911953,"Dead Island",purchase,1.0,0 -140911953,"Metro 2033",purchase,1.0,0 -140911953,"Risen",purchase,1.0,0 -140911953,"Risen 2 - Dark Waters",purchase,1.0,0 -140911953,"Saints Row 2",purchase,1.0,0 -186651907,"Dota 2",purchase,1.0,0 -186651907,"Dota 2",play,0.3,0 -194885661,"Dota 2",purchase,1.0,0 -194885661,"Dota 2",play,10.1,0 -194885661,"Team Fortress 2",purchase,1.0,0 -194885661,"Team Fortress 2",play,5.4,0 -194885661,"Robocraft",purchase,1.0,0 -194885661,"Heroes & Generals",purchase,1.0,0 -217463159,"Dota 2",purchase,1.0,0 -217463159,"Dota 2",play,9.1,0 -217463159,"Warframe",purchase,1.0,0 -254886921,"America's Army Proving Grounds",purchase,1.0,0 -254886921,"America's Army Proving Grounds",play,6.7,0 -254886921,"America's Army 3",purchase,1.0,0 -218053609,"Team Fortress 2",purchase,1.0,0 -218053609,"Team Fortress 2",play,0.7,0 -218053609,"Dead Island Epidemic",purchase,1.0,0 -218053609,"HAWKEN",purchase,1.0,0 -218053609,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -181992323,"Dota 2",purchase,1.0,0 -181992323,"Dota 2",play,0.4,0 -293376584,"Counter-Strike Global Offensive",purchase,1.0,0 -293376584,"Counter-Strike Global Offensive",play,175.0,0 -293376584,"BLOCKADE 3D",purchase,1.0,0 -293376584,"CaesarIA",purchase,1.0,0 -293376584,"Magicka Wizard Wars",purchase,1.0,0 -293376584,"Stronghold Kingdoms",purchase,1.0,0 -293376584,"Trove",purchase,1.0,0 -293376584,"Unturned",purchase,1.0,0 -175835155,"Team Fortress 2",purchase,1.0,0 -175835155,"Team Fortress 2",play,121.0,0 -175835155,"Caster",purchase,1.0,0 -175835155,"Caster",play,3.1,0 -175835155,"Defy Gravity",purchase,1.0,0 -175835155,"Defy Gravity",play,1.4,0 -241606246,"Dota 2",purchase,1.0,0 -241606246,"Dota 2",play,333.0,0 -241606246,"AdVenture Capitalist",purchase,1.0,0 -125718913,"FreeStyle2 Street Basketball",purchase,1.0,0 -125718913,"FreeStyle2 Street Basketball",play,6.1,0 -125718913,"Trove",purchase,1.0,0 -125718913,"Trove",play,0.9,0 -125718913,"Hitman 2 Silent Assassin",purchase,1.0,0 -125718913,"Hitman Absolution",purchase,1.0,0 -125718913,"Hitman Blood Money",purchase,1.0,0 -125718913,"Hitman Codename 47",purchase,1.0,0 -125718913,"Hitman Contracts",purchase,1.0,0 -125718913,"Hitman Sniper Challenge",purchase,1.0,0 -125718913,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -125718913,"Warframe",purchase,1.0,0 -127992087,"Dota 2",purchase,1.0,0 -127992087,"Dota 2",play,1267.0,0 -127992087,"Counter-Strike Global Offensive",purchase,1.0,0 -127992087,"Counter-Strike Global Offensive",play,533.0,0 -127992087,"Counter-Strike Source",purchase,1.0,0 -127992087,"Counter-Strike Source",play,152.0,0 -127992087,"Darksiders II",purchase,1.0,0 -127992087,"Darksiders II",play,55.0,0 -127992087,"Saints Row The Third",purchase,1.0,0 -127992087,"Saints Row The Third",play,31.0,0 -127992087,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -127992087,"Injustice Gods Among Us Ultimate Edition",play,23.0,0 -127992087,"The Darkness II",purchase,1.0,0 -127992087,"The Darkness II",play,6.8,0 -127992087,"Saints Row IV",purchase,1.0,0 -127992087,"Saints Row IV",play,6.6,0 -127992087,"Left 4 Dead 2",purchase,1.0,0 -127992087,"Left 4 Dead 2",play,3.7,0 -127992087,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -127992087,"Warhammer 40,000 Dawn of War II Retribution",play,1.2,0 -127992087,"Team Fortress 2",purchase,1.0,0 -127992087,"Team Fortress 2",play,0.9,0 -127992087,"War Thunder",purchase,1.0,0 -127992087,"War Thunder",play,0.3,0 -127992087,"Counter-Strike",purchase,1.0,0 -127992087,"Counter-Strike",play,0.1,0 -127992087,"Counter-Strike Condition Zero",purchase,1.0,0 -127992087,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -127992087,"Garry's Mod",purchase,1.0,0 -127992087,"Loadout",purchase,1.0,0 -127992087,"PAYDAY The Heist",purchase,1.0,0 -127992087,"Thinking with Time Machine",purchase,1.0,0 -127992087,"Unturned",purchase,1.0,0 -250826540,"Realm of the Mad God",purchase,1.0,0 -250826540,"Realm of the Mad God",play,54.0,0 -250826540,"Royal Quest",purchase,1.0,0 -250826540,"Royal Quest",play,4.3,0 -250826540,"Unturned",purchase,1.0,0 -250826540,"Unturned",play,3.1,0 -250826540,"PlanetSide 2",purchase,1.0,0 -250826540,"PlanetSide 2",play,2.6,0 -250826540,"Magicka Wizard Wars",purchase,1.0,0 -250826540,"Magicka Wizard Wars",play,2.6,0 -250826540,"Cubic Castles",purchase,1.0,0 -250826540,"Cubic Castles",play,2.3,0 -250826540,"Altitude",purchase,1.0,0 -250826540,"Altitude",play,2.2,0 -250826540,"Robocraft",purchase,1.0,0 -250826540,"Robocraft",play,1.9,0 -250826540,"Mitos.is The Game",purchase,1.0,0 -250826540,"Mitos.is The Game",play,1.4,0 -250826540,"Tactical Intervention",purchase,1.0,0 -250826540,"Tactical Intervention",play,0.7,0 -250826540,"Strife",purchase,1.0,0 -250826540,"Strife",play,0.6,0 -250826540,"Spiral Knights",purchase,1.0,0 -250826540,"Spiral Knights",play,0.5,0 -250826540,"Brick-Force",purchase,1.0,0 -250826540,"Brick-Force",play,0.5,0 -250826540,"Red Crucible Firestorm",purchase,1.0,0 -250826540,"Red Crucible Firestorm",play,0.5,0 -250826540,"Happy Wars",purchase,1.0,0 -250826540,"Happy Wars",play,0.4,0 -250826540,"Block N Load",purchase,1.0,0 -250826540,"Block N Load",play,0.4,0 -250826540,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -250826540,"Boring Man - Online Tactical Stickman Combat",play,0.3,0 -250826540,"Genesis Online",purchase,1.0,0 -250826540,"Genesis Online",play,0.3,0 -250826540,"Gear Up",purchase,1.0,0 -250826540,"Gear Up",play,0.2,0 -250826540,"Eternal Fate",purchase,1.0,0 -250826540,"Amazing World",purchase,1.0,0 -250826540,"Trove",purchase,1.0,0 -250826540,"Run and Fire",purchase,1.0,0 -250826540,"Champions Online",purchase,1.0,0 -250826540,"America's Army Proving Grounds",purchase,1.0,0 -250826540,"Aura Kingdom",purchase,1.0,0 -250826540,"Batla",purchase,1.0,0 -250826540,"Curse of Mermos",purchase,1.0,0 -250826540,"Defiance",purchase,1.0,0 -250826540,"Dirty Bomb",purchase,1.0,0 -250826540,"Dream Of Mirror Online",purchase,1.0,0 -250826540,"Gotham City Impostors Free To Play",purchase,1.0,0 -250826540,"Lost Saga North America",purchase,1.0,0 -250826540,"Marvel Heroes 2015",purchase,1.0,0 -250826540,"Warframe",purchase,1.0,0 -164313137,"Dota 2",purchase,1.0,0 -164313137,"Dota 2",play,654.0,0 -164313137,"Counter-Strike Source",purchase,1.0,0 -164313137,"Counter-Strike Source",play,3.2,0 -164313137,"Neverwinter",purchase,1.0,0 -123338258,"Left 4 Dead 2",purchase,1.0,0 -123338258,"Left 4 Dead 2",play,5.1,0 -298327915,"Dota 2",purchase,1.0,0 -298327915,"Dota 2",play,185.0,0 -298327915,"Trove",purchase,1.0,0 -298327915,"Trove",play,1.4,0 -92420207,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -92420207,"Call of Duty Modern Warfare 3 - Multiplayer",play,26.0,0 -92420207,"Call of Duty Modern Warfare 3",purchase,1.0,0 -92420207,"Call of Duty Modern Warfare 3",play,12.8,0 -184987922,"Counter-Strike Global Offensive",purchase,1.0,0 -184987922,"Counter-Strike Global Offensive",play,873.0,0 -184987922,"H1Z1",purchase,1.0,0 -184987922,"H1Z1",play,212.0,0 -184987922,"Call of Duty World at War",purchase,1.0,0 -184987922,"Call of Duty World at War",play,22.0,0 -184987922,"Saints Row IV",purchase,1.0,0 -184987922,"Saints Row IV",play,13.5,0 -184987922,"resident evil 4 / biohazard 4",purchase,1.0,0 -184987922,"resident evil 4 / biohazard 4",play,6.6,0 -184987922,"Team Fortress 2",purchase,1.0,0 -184987922,"Team Fortress 2",play,5.8,0 -184987922,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -184987922,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,4.3,0 -184987922,"Call of Duty Black Ops III",purchase,1.0,0 -184987922,"Call of Duty Black Ops III",play,3.0,0 -184987922,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -184987922,"Resident Evil 5 / Biohazard 5",play,2.0,0 -184987922,"PAYDAY 2",purchase,1.0,0 -184987922,"PAYDAY 2",play,1.4,0 -184987922,"Unturned",purchase,1.0,0 -184987922,"Unturned",play,1.3,0 -184987922,"Dirty Bomb",purchase,1.0,0 -184987922,"Dirty Bomb",play,1.0,0 -184987922,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -184987922,"Resident Evil 6 / Biohazard 6",play,0.7,0 -184987922,"WARMODE",purchase,1.0,0 -184987922,"WARMODE",play,0.6,0 -184987922,"H1Z1 Test Server",purchase,1.0,0 -239031879,"Dota 2",purchase,1.0,0 -239031879,"Dota 2",play,32.0,0 -62811725,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -62811725,"Warhammer 40,000 Dawn of War II",play,38.0,0 -62811725,"DayZ",purchase,1.0,0 -62811725,"DayZ",play,30.0,0 -62811725,"Left 4 Dead 2",purchase,1.0,0 -62811725,"Left 4 Dead 2",play,19.4,0 -62811725,"The Stomping Land",purchase,1.0,0 -62811725,"The Stomping Land",play,12.8,0 -62811725,"Team Fortress 2",purchase,1.0,0 -62811725,"Team Fortress 2",play,5.6,0 -62811725,"Loadout",purchase,1.0,0 -62811725,"Loadout",play,2.0,0 -62811725,"Dota 2",purchase,1.0,0 -62811725,"Dota 2",play,1.4,0 -76894278,"Alien Swarm",purchase,1.0,0 -76894278,"Alien Swarm",play,0.9,0 -76894278,"Sam & Max 104 Abe Lincoln Must Die!",purchase,1.0,0 -76894278,"Sam & Max 104 Abe Lincoln Must Die!",play,0.4,0 -120650367,"Dota 2",purchase,1.0,0 -120650367,"Dota 2",play,0.3,0 -18897058,"Mafia II",purchase,1.0,0 -18897058,"Mafia II",play,0.4,0 -18897058,"Half-Life 2",purchase,1.0,0 -18897058,"Half-Life 2",play,0.4,0 -18897058,"Half-Life 2 Episode Two",purchase,1.0,0 -18897058,"Half-Life 2 Episode Two",play,0.3,0 -18897058,"Counter-Strike Source",purchase,1.0,0 -18897058,"Half-Life Source",purchase,1.0,0 -18897058,"Half-Life 2 Lost Coast",purchase,1.0,0 -18897058,"Half-Life 2 Episode One",purchase,1.0,0 -18897058,"Half-Life Deathmatch Source",purchase,1.0,0 -18897058,"Half-Life 2 Deathmatch",purchase,1.0,0 -279569452,"The LEGO Movie - Videogame",purchase,1.0,0 -279569452,"The LEGO Movie - Videogame",play,21.0,0 -143643478,"The Witcher 3 Wild Hunt",purchase,1.0,0 -143643478,"The Witcher 3 Wild Hunt",play,95.0,0 -143643478,"Don't Starve Together Beta",purchase,1.0,0 -143643478,"Don't Starve Together Beta",play,78.0,0 -143643478,"Divinity Original Sin",purchase,1.0,0 -143643478,"Divinity Original Sin",play,72.0,0 -143643478,"Blackguards",purchase,1.0,0 -143643478,"Blackguards",play,55.0,0 -143643478,"Synergy",purchase,1.0,0 -143643478,"Synergy",play,25.0,0 -143643478,"Portal 2",purchase,1.0,0 -143643478,"Portal 2",play,18.6,0 -143643478,"Starbound",purchase,1.0,0 -143643478,"Starbound",play,17.3,0 -143643478,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -143643478,"The Incredible Adventures of Van Helsing",play,15.1,0 -143643478,"The Incredible Adventures of Van Helsing II",purchase,1.0,0 -143643478,"The Incredible Adventures of Van Helsing II",play,15.1,0 -143643478,"The Incredible Adventures of Van Helsing III",purchase,1.0,0 -143643478,"The Incredible Adventures of Van Helsing III",play,9.1,0 -143643478,"Lara Croft and the Guardian of Light",purchase,1.0,0 -143643478,"Lara Croft and the Guardian of Light",play,8.2,0 -143643478,"Middle-earth Shadow of Mordor",purchase,1.0,0 -143643478,"Middle-earth Shadow of Mordor",play,7.2,0 -143643478,"Castle Crashers",purchase,1.0,0 -143643478,"Castle Crashers",play,6.9,0 -143643478,"Portal",purchase,1.0,0 -143643478,"Portal",play,6.1,0 -143643478,"Mass Effect",purchase,1.0,0 -143643478,"Mass Effect",play,5.2,0 -143643478,"Lara Croft and the Temple of Osiris",purchase,1.0,0 -143643478,"Lara Croft and the Temple of Osiris",play,3.5,0 -143643478,"The Elder Scrolls V Skyrim",purchase,1.0,0 -143643478,"The Elder Scrolls V Skyrim",play,2.1,0 -143643478,"Dying Light",purchase,1.0,0 -143643478,"Dying Light",play,1.8,0 -143643478,"PAYDAY 2",purchase,1.0,0 -143643478,"PAYDAY 2",play,1.8,0 -143643478,"BioShock",purchase,1.0,0 -143643478,"BioShock",play,1.7,0 -143643478,"Magicka",purchase,1.0,0 -143643478,"Magicka",play,0.5,0 -143643478,"Beyond Divinity",purchase,1.0,0 -143643478,"Beyond Divinity",play,0.4,0 -143643478,"Fallout New Vegas",purchase,1.0,0 -143643478,"Fallout New Vegas",play,0.2,0 -143643478,"Half-Life Source",purchase,1.0,0 -143643478,"ARK Survival Evolved",purchase,1.0,0 -143643478,"BioShock 2",purchase,1.0,0 -143643478,"Borderlands",purchase,1.0,0 -143643478,"Borderlands 2",purchase,1.0,0 -143643478,"Borderlands 2 RU",purchase,1.0,0 -143643478,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -143643478,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -143643478,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -143643478,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -143643478,"Counter-Strike",purchase,1.0,0 -143643478,"Counter-Strike Condition Zero",purchase,1.0,0 -143643478,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -143643478,"Counter-Strike Global Offensive",purchase,1.0,0 -143643478,"Counter-Strike Source",purchase,1.0,0 -143643478,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -143643478,"Day of Defeat",purchase,1.0,0 -143643478,"Day of Defeat Source",purchase,1.0,0 -143643478,"Deathmatch Classic",purchase,1.0,0 -143643478,"Divine Divinity",purchase,1.0,0 -143643478,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -143643478,"Don't Starve",purchase,1.0,0 -143643478,"Don't Starve Reign of Giants",purchase,1.0,0 -143643478,"Half-Life",purchase,1.0,0 -143643478,"Half-Life 2",purchase,1.0,0 -143643478,"Half-Life 2 Deathmatch",purchase,1.0,0 -143643478,"Half-Life 2 Episode One",purchase,1.0,0 -143643478,"Half-Life 2 Episode Two",purchase,1.0,0 -143643478,"Half-Life 2 Lost Coast",purchase,1.0,0 -143643478,"Half-Life Blue Shift",purchase,1.0,0 -143643478,"Half-Life Opposing Force",purchase,1.0,0 -143643478,"Half-Life Deathmatch Source",purchase,1.0,0 -143643478,"Left 4 Dead",purchase,1.0,0 -143643478,"Left 4 Dead 2",purchase,1.0,0 -143643478,"Mass Effect 2",purchase,1.0,0 -143643478,"Portal Stories Mel",purchase,1.0,0 -143643478,"Ricochet",purchase,1.0,0 -143643478,"Starbound - Unstable",purchase,1.0,0 -143643478,"Team Fortress Classic",purchase,1.0,0 -143643478,"Tomb Raider",purchase,1.0,0 -143643478,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -143643478,"Tomb Raider Anniversary",purchase,1.0,0 -143643478,"Tomb Raider Chronicles",purchase,1.0,0 -143643478,"Tomb Raider Legend",purchase,1.0,0 -143643478,"Tomb Raider The Last Revelation",purchase,1.0,0 -143643478,"Tomb Raider Underworld",purchase,1.0,0 -143643478,"Tomb Raider I",purchase,1.0,0 -143643478,"Tomb Raider II",purchase,1.0,0 -143643478,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -143643478,"Van Helsing II Ink Hunt",purchase,1.0,0 -166305056,"Dota 2",purchase,1.0,0 -166305056,"Dota 2",play,0.6,0 -119970695,"Dota 2",purchase,1.0,0 -119970695,"Dota 2",play,408.0,0 -119970695,"Quake Live",purchase,1.0,0 -201757829,"Counter-Strike Global Offensive",purchase,1.0,0 -201757829,"Counter-Strike Global Offensive",play,338.0,0 -201757829,"Mount & Blade Warband",purchase,1.0,0 -201757829,"Mount & Blade Warband",play,75.0,0 -201757829,"Dota 2",purchase,1.0,0 -201757829,"Dota 2",play,69.0,0 -201757829,"PAYDAY 2",purchase,1.0,0 -201757829,"PAYDAY 2",play,33.0,0 -201757829,"Team Fortress 2",purchase,1.0,0 -201757829,"Team Fortress 2",play,27.0,0 -201757829,"Arma 2 Operation Arrowhead",purchase,1.0,0 -201757829,"Arma 2 Operation Arrowhead",play,21.0,0 -201757829,"Grand Theft Auto IV",purchase,1.0,0 -201757829,"Grand Theft Auto IV",play,21.0,0 -201757829,"Euro Truck Simulator 2",purchase,1.0,0 -201757829,"Euro Truck Simulator 2",play,21.0,0 -201757829,"Neverwinter",purchase,1.0,0 -201757829,"Neverwinter",play,17.4,0 -201757829,"Unturned",purchase,1.0,0 -201757829,"Unturned",play,13.5,0 -201757829,"Sid Meier's Civilization V",purchase,1.0,0 -201757829,"Sid Meier's Civilization V",play,11.3,0 -201757829,"Left 4 Dead 2",purchase,1.0,0 -201757829,"Left 4 Dead 2",play,6.8,0 -201757829,"Magicka Wizard Wars",purchase,1.0,0 -201757829,"Magicka Wizard Wars",play,5.7,0 -201757829,"Trove",purchase,1.0,0 -201757829,"Trove",play,3.7,0 -201757829,"Super Meat Boy",purchase,1.0,0 -201757829,"Super Meat Boy",play,3.3,0 -201757829,"Arma 2",purchase,1.0,0 -201757829,"Arma 2",play,3.1,0 -201757829,"War of the Roses",purchase,1.0,0 -201757829,"War of the Roses",play,2.3,0 -201757829,"Transformice",purchase,1.0,0 -201757829,"Transformice",play,0.7,0 -201757829,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -201757829,"Boring Man - Online Tactical Stickman Combat",play,0.2,0 -201757829,"Hero Siege",purchase,1.0,0 -201757829,"TOME Immortal Arena",purchase,1.0,0 -201757829,"Arma 2 DayZ Mod",purchase,1.0,0 -201757829,"America's Army 3",purchase,1.0,0 -201757829,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -201757829,"Ascend Hand of Kul",purchase,1.0,0 -201757829,"Counter-Strike Nexon Zombies",purchase,1.0,0 -201757829,"Half-Life 2 Update",purchase,1.0,0 -201757829,"Heroes & Generals",purchase,1.0,0 -201757829,"Marvel Heroes 2015",purchase,1.0,0 -201757829,"Strife",purchase,1.0,0 -201757829,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -201757829,"Warface",purchase,1.0,0 -201757829,"War Thunder",purchase,1.0,0 -197413514,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -197413514,"Tom Clancy's Ghost Recon Phantoms - EU",play,49.0,0 -197413514,"Dead Island Epidemic",purchase,1.0,0 -197413514,"Tom Clancy's Ghost Recon Phantoms - EU Looks and Power (Assault)",purchase,1.0,0 -197413514,"Tom Clancy's Ghost Recon Phantoms - EU Looks and Power (Recon)",purchase,1.0,0 -197413514,"Tom Clancy's Ghost Recon Phantoms - EU Looks and Power (Support)",purchase,1.0,0 -197413514,"Tom Clancy's Ghost Recon Phantoms - EU Substance with Style pack (Assault)",purchase,1.0,0 -197413514,"Tom Clancy's Ghost Recon Phantoms - EU Substance with Style pack (Recon)",purchase,1.0,0 -197413514,"Tom Clancy's Ghost Recon Phantoms - EU WAR Madness pack (Recon)",purchase,1.0,0 -197413514,"Tom Clancy's Ghost Recon Phantoms - EU WAR Madness pack (Support)",purchase,1.0,0 -246819283,"Trove",purchase,1.0,0 -246819283,"Trove",play,0.8,0 -134927689,"Dota 2",purchase,1.0,0 -134927689,"Dota 2",play,83.0,0 -63291011,"Team Fortress 2",purchase,1.0,0 -63291011,"Team Fortress 2",play,0.4,0 -92297975,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -92297975,"Call of Duty Modern Warfare 3 - Multiplayer",play,1.5,0 -92297975,"Call of Duty Modern Warfare 3",purchase,1.0,0 -92297975,"Call of Duty Modern Warfare 3",play,0.3,0 -209871270,"Rocksmith 2014",purchase,1.0,0 -209871270,"Rocksmith 2014",play,7.5,0 -236810183,"AdVenture Capitalist",purchase,1.0,0 -236810183,"Clicker Heroes",purchase,1.0,0 -236810183,"Construct 2 Free",purchase,1.0,0 -99083518,"Borderlands 2",purchase,1.0,0 -99083518,"Borderlands 2",play,416.0,0 -99083518,"Sid Meier's Civilization V",purchase,1.0,0 -99083518,"Sid Meier's Civilization V",play,172.0,0 -99083518,"The Elder Scrolls V Skyrim",purchase,1.0,0 -99083518,"The Elder Scrolls V Skyrim",play,95.0,0 -99083518,"Team Fortress 2",purchase,1.0,0 -99083518,"Team Fortress 2",play,44.0,0 -99083518,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -99083518,"Dragon Age Origins - Ultimate Edition",play,32.0,0 -99083518,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -99083518,"Fallout 3 - Game of the Year Edition",play,25.0,0 -99083518,"Borderlands The Pre-Sequel",purchase,1.0,0 -99083518,"Borderlands The Pre-Sequel",play,24.0,0 -99083518,"Borderlands",purchase,1.0,0 -99083518,"Borderlands",play,13.4,0 -99083518,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -99083518,"The Witcher 2 Assassins of Kings Enhanced Edition",play,4.9,0 -99083518,"Batman Arkham City GOTY",purchase,1.0,0 -99083518,"Batman Arkham City GOTY",play,4.1,0 -99083518,"BioShock",purchase,1.0,0 -99083518,"BioShock",play,4.1,0 -99083518,"Lone Survivor The Director's Cut",purchase,1.0,0 -99083518,"Lone Survivor The Director's Cut",play,2.8,0 -99083518,"The Witcher Enhanced Edition",purchase,1.0,0 -99083518,"The Witcher Enhanced Edition",play,2.3,0 -99083518,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",purchase,1.0,0 -99083518,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",play,2.1,0 -99083518,"Dota 2",purchase,1.0,0 -99083518,"Dota 2",play,0.2,0 -99083518,"BioShock 2",purchase,1.0,0 -99083518,"BioShock Infinite",purchase,1.0,0 -99083518,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -99083518,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -99083518,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -99083518,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -99083518,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -99083518,"Penny Arcade's On the Rain-Slick Precipice of Darkness 4",purchase,1.0,0 -99083518,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -99083518,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -110881551,"Counter-Strike Global Offensive",purchase,1.0,0 -110881551,"Counter-Strike Global Offensive",play,8.5,0 -142151125,"Dota 2",purchase,1.0,0 -142151125,"Dota 2",play,4.3,0 -190708114,"Darkest Hour A Hearts of Iron Game",purchase,1.0,0 -190708114,"Darkest Hour A Hearts of Iron Game",play,111.0,0 -190708114,"Arma 3",purchase,1.0,0 -190708114,"Arma 3",play,14.7,0 -190708114,"Unturned",purchase,1.0,0 -190708114,"Unturned",play,11.9,0 -190708114,"World of Guns Gun Disassembly",purchase,1.0,0 -190708114,"World of Guns Gun Disassembly",play,2.4,0 -190708114,"Robocraft",purchase,1.0,0 -190708114,"Robocraft",play,1.0,0 -190708114,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -190708114,"Navy Field 2 Conqueror of the Ocean",play,0.2,0 -190708114,"Arma 3 Zeus",purchase,1.0,0 -1713646,"Half-Life 2 Deathmatch",purchase,1.0,0 -1713646,"Half-Life 2 Deathmatch",play,0.7,0 -1713646,"Counter-Strike",purchase,1.0,0 -1713646,"Counter-Strike Source",purchase,1.0,0 -1713646,"Day of Defeat",purchase,1.0,0 -1713646,"Deathmatch Classic",purchase,1.0,0 -1713646,"Half-Life",purchase,1.0,0 -1713646,"Half-Life 2",purchase,1.0,0 -1713646,"Half-Life 2 Lost Coast",purchase,1.0,0 -1713646,"Half-Life Blue Shift",purchase,1.0,0 -1713646,"Half-Life Opposing Force",purchase,1.0,0 -1713646,"Ricochet",purchase,1.0,0 -1713646,"Team Fortress Classic",purchase,1.0,0 -222938490,"Counter-Strike Global Offensive",purchase,1.0,0 -222938490,"Counter-Strike Global Offensive",play,25.0,0 -220602833,"DayZ",purchase,1.0,0 -220602833,"DayZ",play,117.0,0 -220602833,"Counter-Strike Global Offensive",purchase,1.0,0 -220602833,"Counter-Strike Global Offensive",play,26.0,0 -220602833,"Unturned",purchase,1.0,0 -220602833,"Unturned",play,26.0,0 -220602833,"Garry's Mod",purchase,1.0,0 -220602833,"Garry's Mod",play,8.0,0 -220602833,"7 Days to Die",purchase,1.0,0 -220602833,"7 Days to Die",play,6.9,0 -220602833,"Tactical Intervention",purchase,1.0,0 -220602833,"Tactical Intervention",play,5.6,0 -220602833,"Red Crucible Firestorm",purchase,1.0,0 -220602833,"Red Crucible Firestorm",play,1.8,0 -220602833,"Source Filmmaker",purchase,1.0,0 -220602833,"Source Filmmaker",play,0.9,0 -220602833,"War Thunder",purchase,1.0,0 -220602833,"War Thunder",play,0.3,0 -220602833,"Heroes & Generals",purchase,1.0,0 -220602833,"Heroes & Generals",play,0.1,0 -220602833,"Dirty Bomb",purchase,1.0,0 -191854245,"Dota 2",purchase,1.0,0 -191854245,"Dota 2",play,1.2,0 -200680033,"LIMBO",purchase,1.0,0 -200680033,"LIMBO",play,5.1,0 -200680033,"Bastion",purchase,1.0,0 -200680033,"Deadlight",purchase,1.0,0 -200680033,"Deadlight Original Soundtrack",purchase,1.0,0 -200680033,"Metro 2033",purchase,1.0,0 -200680033,"Path of Exile",purchase,1.0,0 -200680033,"Serious Sam HD The First Encounter",purchase,1.0,0 -200680033,"Trine 2",purchase,1.0,0 -168517892,"Serious Sam HD The Second Encounter",purchase,1.0,0 -168517892,"Serious Sam HD The Second Encounter",play,0.3,0 -183015196,"Dota 2",purchase,1.0,0 -183015196,"Dota 2",play,2.1,0 -87947085,"Left 4 Dead 2",purchase,1.0,0 -212267962,"Dota 2",purchase,1.0,0 -212267962,"Dota 2",play,1.4,0 -85358812,"Team Fortress 2",purchase,1.0,0 -85358812,"Team Fortress 2",play,3.5,0 -154014392,"Dota 2",purchase,1.0,0 -154014392,"Dota 2",play,606.0,0 -154014392,"Counter-Strike Global Offensive",purchase,1.0,0 -154014392,"Counter-Strike Global Offensive",play,111.0,0 -154014392,"PAYDAY 2",purchase,1.0,0 -154014392,"PAYDAY 2",play,43.0,0 -154014392,"Unturned",purchase,1.0,0 -154014392,"Unturned",play,37.0,0 -154014392,"Terraria",purchase,1.0,0 -154014392,"Terraria",play,35.0,0 -154014392,"Team Fortress 2",purchase,1.0,0 -154014392,"Team Fortress 2",play,35.0,0 -154014392,"Robocraft",purchase,1.0,0 -154014392,"Robocraft",play,32.0,0 -154014392,"Don't Starve Together Beta",purchase,1.0,0 -154014392,"Don't Starve Together Beta",play,8.4,0 -154014392,"Warframe",purchase,1.0,0 -154014392,"Warframe",play,7.6,0 -154014392,"Borderlands",purchase,1.0,0 -154014392,"Borderlands",play,6.6,0 -154014392,"Mitos.is The Game",purchase,1.0,0 -154014392,"Mitos.is The Game",play,4.6,0 -154014392,"Panzar",purchase,1.0,0 -154014392,"Panzar",play,3.8,0 -154014392,"BattleBlock Theater",purchase,1.0,0 -154014392,"BattleBlock Theater",play,3.3,0 -154014392,"Torchlight II",purchase,1.0,0 -154014392,"Torchlight II",play,2.7,0 -154014392,"Magicka Wizard Wars",purchase,1.0,0 -154014392,"Magicka Wizard Wars",play,2.1,0 -154014392,"WAKFU",purchase,1.0,0 -154014392,"WAKFU",play,1.9,0 -154014392,"Left 4 Dead 2",purchase,1.0,0 -154014392,"Left 4 Dead 2",play,1.4,0 -154014392,"Loadout",purchase,1.0,0 -154014392,"Loadout",play,1.2,0 -154014392,"Dead Island Epidemic",purchase,1.0,0 -154014392,"Dead Island Epidemic",play,1.1,0 -154014392,"Don't Starve",purchase,1.0,0 -154014392,"Don't Starve",play,0.9,0 -154014392,"Floating Point",purchase,1.0,0 -154014392,"Floating Point",play,0.5,0 -154014392,"DiggerOnline",purchase,1.0,0 -154014392,"DiggerOnline",play,0.5,0 -154014392,"Dragon Nest Europe",purchase,1.0,0 -154014392,"Dragon Nest Europe",play,0.3,0 -154014392,"Nosgoth",purchase,1.0,0 -154014392,"Nosgoth",play,0.2,0 -154014392,"Running Shadow",purchase,1.0,0 -154014392,"Running Shadow",play,0.2,0 -154014392,"Sparkle 2 Evo",purchase,1.0,0 -154014392,"Sparkle 2 Evo",play,0.2,0 -154014392,"Gear Up",purchase,1.0,0 -154014392,"Gear Up",play,0.2,0 -154014392,"War of the Roses",purchase,1.0,0 -154014392,"War of the Roses",play,0.1,0 -154014392,"8BitMMO",purchase,1.0,0 -154014392,"8BitMMO",play,0.1,0 -154014392,"Defy Gravity",purchase,1.0,0 -154014392,"The Mighty Quest For Epic Loot",purchase,1.0,0 -154014392,"Reversion - The Escape",purchase,1.0,0 -154014392,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -154014392,"Battle Nations",purchase,1.0,0 -154014392,"Brawlhalla",purchase,1.0,0 -154014392,"Don't Starve Reign of Giants",purchase,1.0,0 -154014392,"PAYDAY The Web Series - Episode 1",purchase,1.0,0 -154014392,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -154014392,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -114922862,"Dota 2",purchase,1.0,0 -114922862,"Dota 2",play,55.0,0 -58435428,"Counter-Strike Global Offensive",purchase,1.0,0 -58435428,"Counter-Strike Global Offensive",play,1137.0,0 -58435428,"Counter-Strike Source",purchase,1.0,0 -58435428,"Counter-Strike Source",play,224.0,0 -58435428,"Team Fortress 2",purchase,1.0,0 -58435428,"Team Fortress 2",play,173.0,0 -58435428,"Realm of the Mad God",purchase,1.0,0 -58435428,"Realm of the Mad God",play,134.0,0 -58435428,"The Elder Scrolls V Skyrim",purchase,1.0,0 -58435428,"The Elder Scrolls V Skyrim",play,80.0,0 -58435428,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -58435428,"Call of Duty Modern Warfare 2 - Multiplayer",play,78.0,0 -58435428,"GunZ 2 The Second Duel",purchase,1.0,0 -58435428,"GunZ 2 The Second Duel",play,78.0,0 -58435428,"Borderlands 2",purchase,1.0,0 -58435428,"Borderlands 2",play,76.0,0 -58435428,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -58435428,"Call of Duty Advanced Warfare - Multiplayer",play,62.0,0 -58435428,"FINAL FANTASY XIV A Realm Reborn",purchase,1.0,0 -58435428,"FINAL FANTASY XIV A Realm Reborn",play,48.0,0 -58435428,"Terraria",purchase,1.0,0 -58435428,"Terraria",play,41.0,0 -58435428,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -58435428,"Call of Duty Black Ops - Multiplayer",play,35.0,0 -58435428,"Fallout 4",purchase,1.0,0 -58435428,"Fallout 4",play,34.0,0 -58435428,"Borderlands The Pre-Sequel",purchase,1.0,0 -58435428,"Borderlands The Pre-Sequel",play,34.0,0 -58435428,"Path of Exile",purchase,1.0,0 -58435428,"Path of Exile",play,32.0,0 -58435428,"Risk of Rain",purchase,1.0,0 -58435428,"Risk of Rain",play,31.0,0 -58435428,"Magicite",purchase,1.0,0 -58435428,"Magicite",play,29.0,0 -58435428,"Torchlight II",purchase,1.0,0 -58435428,"Torchlight II",play,29.0,0 -58435428,"Garry's Mod",purchase,1.0,0 -58435428,"Garry's Mod",play,26.0,0 -58435428,"Starbound",purchase,1.0,0 -58435428,"Starbound",play,14.3,0 -58435428,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -58435428,"Call of Duty Modern Warfare 3 - Multiplayer",play,14.1,0 -58435428,"Neverwinter",purchase,1.0,0 -58435428,"Neverwinter",play,10.1,0 -58435428,"Unturned",purchase,1.0,0 -58435428,"Unturned",play,6.7,0 -58435428,"Spiral Knights",purchase,1.0,0 -58435428,"Spiral Knights",play,5.5,0 -58435428,"Dota 2",purchase,1.0,0 -58435428,"Dota 2",play,5.4,0 -58435428,"Warframe",purchase,1.0,0 -58435428,"Warframe",play,4.4,0 -58435428,"Firefall",purchase,1.0,0 -58435428,"Firefall",play,3.2,0 -58435428,"Call of Duty Modern Warfare 2",purchase,1.0,0 -58435428,"Call of Duty Modern Warfare 2",play,3.2,0 -58435428,"Left 4 Dead 2",purchase,1.0,0 -58435428,"Left 4 Dead 2",play,3.1,0 -58435428,"Quake Live",purchase,1.0,0 -58435428,"Quake Live",play,2.1,0 -58435428,"Vindictus",purchase,1.0,0 -58435428,"Vindictus",play,2.1,0 -58435428,"Fallen Earth",purchase,1.0,0 -58435428,"Fallen Earth",play,1.9,0 -58435428,"Deepworld",purchase,1.0,0 -58435428,"Deepworld",play,1.4,0 -58435428,"Magic Barrage - Bitferno",purchase,1.0,0 -58435428,"Magic Barrage - Bitferno",play,1.1,0 -58435428,"Dirty Bomb",purchase,1.0,0 -58435428,"Dirty Bomb",play,1.0,0 -58435428,"Call of Duty Black Ops",purchase,1.0,0 -58435428,"Call of Duty Black Ops",play,1.0,0 -58435428,"UberStrike",purchase,1.0,0 -58435428,"UberStrike",play,0.9,0 -58435428,"Running Shadow",purchase,1.0,0 -58435428,"Running Shadow",play,0.2,0 -58435428,"Call of Duty Advanced Warfare",purchase,1.0,0 -58435428,"Call of Duty Modern Warfare 3",purchase,1.0,0 -58435428,"FINAL FANTASY XIV A Realm Reborn (NA version)",purchase,1.0,0 -58435428,"Starbound - Unstable",purchase,1.0,0 -58435428,"Trove",purchase,1.0,0 -145754702,"Rust",purchase,1.0,0 -145754702,"Rust",play,101.0,0 -304081461,"WARMODE",purchase,1.0,0 -304081461,"WARMODE",play,4.0,0 -304081461,"Unturned",purchase,1.0,0 -304081461,"Unturned",play,0.6,0 -304081461,"Counter-Strike Nexon Zombies",purchase,1.0,0 -304081461,"Counter-Strike Nexon Zombies",play,0.1,0 -304081461,"Heroes & Generals",purchase,1.0,0 -304081461,"Dirty Bomb",purchase,1.0,0 -304081461,"theHunter",purchase,1.0,0 -304081461,"Block N Load",purchase,1.0,0 -304081461,"Loadout",purchase,1.0,0 -304081461,"Warface",purchase,1.0,0 -211894195,"Dota 2",purchase,1.0,0 -211894195,"Dota 2",play,171.0,0 -227448167,"Dota 2",purchase,1.0,0 -227448167,"Dota 2",play,9.1,0 -152476584,"Serious Sam HD The Second Encounter",purchase,1.0,0 -152476584,"Serious Sam HD The Second Encounter",play,2.9,0 -152476584,"Team Fortress 2",purchase,1.0,0 -152476584,"Team Fortress 2",play,2.4,0 -199158451,"Dota 2",purchase,1.0,0 -199158451,"Dota 2",play,155.0,0 -199158451,"Ascend Hand of Kul",purchase,1.0,0 -199158451,"Heroes & Generals",purchase,1.0,0 -199158451,"Warframe",purchase,1.0,0 -210708101,"Football Manager 2015",purchase,1.0,0 -210708101,"Football Manager 2015",play,91.0,0 -212886835,"Dota 2",purchase,1.0,0 -212886835,"Dota 2",play,5.5,0 -257528104,"Cities Skylines",purchase,1.0,0 -257528104,"Cities Skylines",play,37.0,0 -41751393,"Counter-Strike Source",purchase,1.0,0 -41751393,"Counter-Strike Source",play,55.0,0 -41751393,"Day of Defeat Source",purchase,1.0,0 -41751393,"Day of Defeat Source",play,2.6,0 -41751393,"Half-Life 2 Deathmatch",purchase,1.0,0 -41751393,"Half-Life 2 Deathmatch",play,1.3,0 -41751393,"Half-Life 2 Lost Coast",purchase,1.0,0 -41751393,"Half-Life 2 Lost Coast",play,0.6,0 -125017535,"Counter-Strike Global Offensive",purchase,1.0,0 -125017535,"Counter-Strike Global Offensive",play,4021.0,0 -125017535,"Team Fortress 2",purchase,1.0,0 -125017535,"Team Fortress 2",play,294.0,0 -125017535,"Call of Duty Black Ops - Multiplayer OSX",purchase,1.0,0 -125017535,"Call of Duty Black Ops - Multiplayer OSX",play,60.0,0 -125017535,"Borderlands 2",purchase,1.0,0 -125017535,"Borderlands 2",play,54.0,0 -125017535,"Garry's Mod",purchase,1.0,0 -125017535,"Garry's Mod",play,38.0,0 -125017535,"Counter-Strike Source",purchase,1.0,0 -125017535,"Counter-Strike Source",play,18.1,0 -125017535,"Borderlands The Pre-Sequel",purchase,1.0,0 -125017535,"Borderlands The Pre-Sequel",play,15.7,0 -125017535,"Call of Duty Black Ops - OSX",purchase,1.0,0 -125017535,"Call of Duty Black Ops - OSX",play,11.6,0 -125017535,"Portal 2",purchase,1.0,0 -125017535,"Portal 2",play,11.5,0 -125017535,"PAYDAY 2",purchase,1.0,0 -125017535,"PAYDAY 2",play,9.9,0 -125017535,"Castle Crashers",purchase,1.0,0 -125017535,"Castle Crashers",play,8.8,0 -125017535,"Insurgency",purchase,1.0,0 -125017535,"Insurgency",play,8.8,0 -125017535,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -125017535,"Call of Duty 4 Modern Warfare",play,7.6,0 -125017535,"Dungeon Defenders",purchase,1.0,0 -125017535,"Dungeon Defenders",play,6.9,0 -125017535,"BioShock Infinite",purchase,1.0,0 -125017535,"BioShock Infinite",play,6.8,0 -125017535,"The Lord of the Rings Online",purchase,1.0,0 -125017535,"The Lord of the Rings Online",play,6.7,0 -125017535,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -125017535,"Call of Duty Modern Warfare 2 - Multiplayer",play,6.4,0 -125017535,"Portal",purchase,1.0,0 -125017535,"Portal",play,6.3,0 -125017535,"Call of Duty Modern Warfare 2",purchase,1.0,0 -125017535,"Call of Duty Modern Warfare 2",play,6.3,0 -125017535,"Mountain",purchase,1.0,0 -125017535,"Mountain",play,5.3,0 -125017535,"Spec Ops The Line",purchase,1.0,0 -125017535,"Spec Ops The Line",play,4.1,0 -125017535,"World of Guns Gun Disassembly",purchase,1.0,0 -125017535,"World of Guns Gun Disassembly",play,3.5,0 -125017535,"Rust",purchase,1.0,0 -125017535,"Rust",play,3.3,0 -125017535,"The Binding of Isaac",purchase,1.0,0 -125017535,"The Binding of Isaac",play,3.0,0 -125017535,"Assassin's Creed Brotherhood",purchase,1.0,0 -125017535,"Assassin's Creed Brotherhood",play,3.0,0 -125017535,"Surgeon Simulator",purchase,1.0,0 -125017535,"Surgeon Simulator",play,2.9,0 -125017535,"Spiral Knights",purchase,1.0,0 -125017535,"Spiral Knights",play,2.3,0 -125017535,"Half-Life",purchase,1.0,0 -125017535,"Half-Life",play,1.7,0 -125017535,"Left 4 Dead 2",purchase,1.0,0 -125017535,"Left 4 Dead 2",play,1.3,0 -125017535,"Goat Simulator",purchase,1.0,0 -125017535,"Goat Simulator",play,1.1,0 -125017535,"Dota 2",purchase,1.0,0 -125017535,"Dota 2",play,0.9,0 -125017535,"Unium",purchase,1.0,0 -125017535,"Unium",play,0.8,0 -125017535,"Brawlhalla",purchase,1.0,0 -125017535,"Brawlhalla",play,0.7,0 -125017535,"100% Orange Juice",purchase,1.0,0 -125017535,"100% Orange Juice",play,0.7,0 -125017535,"Counter-Strike",purchase,1.0,0 -125017535,"Counter-Strike",play,0.6,0 -125017535,"Guns of Icarus Online",purchase,1.0,0 -125017535,"Guns of Icarus Online",play,0.5,0 -125017535,"Dead Island",purchase,1.0,0 -125017535,"Dead Island",play,0.4,0 -125017535,"Arma 2 Operation Arrowhead",purchase,1.0,0 -125017535,"Arma 2 Operation Arrowhead",play,0.2,0 -125017535,"Tactical Intervention",purchase,1.0,0 -125017535,"Tactical Intervention",play,0.2,0 -125017535,"Metro 2033 Redux",purchase,1.0,0 -125017535,"Metro 2033 Redux",play,0.2,0 -125017535,"H1Z1",purchase,1.0,0 -125017535,"H1Z1",play,0.1,0 -125017535,"Counter-Strike Condition Zero",purchase,1.0,0 -125017535,"Counter-Strike Condition Zero",play,0.1,0 -125017535,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -125017535,"No More Room in Hell",purchase,1.0,0 -125017535,"Deathmatch Classic",purchase,1.0,0 -125017535,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -125017535,"Arma 2",purchase,1.0,0 -125017535,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -125017535,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -125017535,"Chains",purchase,1.0,0 -125017535,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -125017535,"Day of Defeat",purchase,1.0,0 -125017535,"Dead Effect",purchase,1.0,0 -125017535,"Fistful of Frags",purchase,1.0,0 -125017535,"H1Z1 Test Server",purchase,1.0,0 -125017535,"Hatland Adventures",purchase,1.0,0 -125017535,"How to Survive",purchase,1.0,0 -125017535,"Metro Last Light Redux",purchase,1.0,0 -125017535,"Outlast",purchase,1.0,0 -125017535,"Out There Somewhere",purchase,1.0,0 -125017535,"Ricochet",purchase,1.0,0 -125017535,"Space Trader Merchant Marine",purchase,1.0,0 -125017535,"Unturned",purchase,1.0,0 -125518594,"Dota 2",purchase,1.0,0 -125518594,"Dota 2",play,25.0,0 -107124480,"Team Fortress 2",purchase,1.0,0 -107124480,"Team Fortress 2",play,43.0,0 -107124480,"Neverwinter",purchase,1.0,0 -107124480,"Neverwinter",play,2.1,0 -107124480,"DC Universe Online",purchase,1.0,0 -107124480,"DC Universe Online",play,1.2,0 -107124480,"Dragon Nest",purchase,1.0,0 -107124480,"Dragon Nest",play,0.3,0 -107124480,"Ragnarok Online 2",purchase,1.0,0 -107124480,"Ragnarok Online 2",play,0.3,0 -107124480,"Dota 2",purchase,1.0,0 -107124480,"Dota 2",play,0.3,0 -107124480,"Left 4 Dead 2",purchase,1.0,0 -107124480,"Left 4 Dead 2",play,0.2,0 -98244166,"Team Fortress 2",purchase,1.0,0 -98244166,"Team Fortress 2",play,0.3,0 -295382643,"Sid Meier's Civilization V",purchase,1.0,0 -295382643,"Sid Meier's Civilization V",play,196.0,0 -295382643,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -295382643,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -25452454,"Counter-Strike",purchase,1.0,0 -25452454,"Counter-Strike",play,0.1,0 -25452454,"Counter-Strike Condition Zero",purchase,1.0,0 -25452454,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -25452454,"Day of Defeat",purchase,1.0,0 -25452454,"Deathmatch Classic",purchase,1.0,0 -25452454,"Ricochet",purchase,1.0,0 -70778973,"Sid Meier's Civilization V",purchase,1.0,0 -70778973,"Sid Meier's Civilization V",play,604.0,0 -70778973,"Call of Duty Modern Warfare 2",purchase,1.0,0 -70778973,"Call of Duty Modern Warfare 2",play,474.0,0 -70778973,"Medieval II Total War",purchase,1.0,0 -70778973,"Medieval II Total War",play,327.0,0 -70778973,"The Elder Scrolls V Skyrim",purchase,1.0,0 -70778973,"The Elder Scrolls V Skyrim",play,259.0,0 -70778973,"Medieval II Total War Kingdoms",purchase,1.0,0 -70778973,"Medieval II Total War Kingdoms",play,249.0,0 -70778973,"Total War ROME II - Emperor Edition",purchase,1.0,0 -70778973,"Total War ROME II - Emperor Edition",play,241.0,0 -70778973,"Rome Total War",purchase,1.0,0 -70778973,"Rome Total War",play,109.0,0 -70778973,"DmC Devil May Cry",purchase,1.0,0 -70778973,"DmC Devil May Cry",play,97.0,0 -70778973,"Total War SHOGUN 2",purchase,1.0,0 -70778973,"Total War SHOGUN 2",play,89.0,0 -70778973,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -70778973,"Call of Duty Modern Warfare 2 - Multiplayer",play,79.0,0 -70778973,"DARK SOULS II",purchase,1.0,0 -70778973,"DARK SOULS II",play,56.0,0 -70778973,"Borderlands 2",purchase,1.0,0 -70778973,"Borderlands 2",play,36.0,0 -70778973,"Counter-Strike Global Offensive",purchase,1.0,0 -70778973,"Counter-Strike Global Offensive",play,34.0,0 -70778973,"The Witcher 3 Wild Hunt",purchase,1.0,0 -70778973,"The Witcher 3 Wild Hunt",play,33.0,0 -70778973,"Magic The Gathering Duels of the Planeswalkers 2012",purchase,1.0,0 -70778973,"Magic The Gathering Duels of the Planeswalkers 2012",play,29.0,0 -70778973,"FTL Faster Than Light",purchase,1.0,0 -70778973,"FTL Faster Than Light",play,25.0,0 -70778973,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -70778973,"Sins of a Solar Empire Rebellion",play,19.5,0 -70778973,"Dota 2",purchase,1.0,0 -70778973,"Dota 2",play,19.4,0 -70778973,"Sid Meier's Civilization III Complete",purchase,1.0,0 -70778973,"Sid Meier's Civilization III Complete",play,13.5,0 -70778973,"Audiosurf",purchase,1.0,0 -70778973,"Audiosurf",play,11.9,0 -70778973,"Metro Last Light",purchase,1.0,0 -70778973,"Metro Last Light",play,11.9,0 -70778973,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -70778973,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,9.3,0 -70778973,"Rome Total War - Alexander",purchase,1.0,0 -70778973,"Rome Total War - Alexander",play,8.6,0 -70778973,"Shadow Warrior",purchase,1.0,0 -70778973,"Shadow Warrior",play,6.4,0 -70778973,"Path of Exile",purchase,1.0,0 -70778973,"Path of Exile",play,6.4,0 -70778973,"One Finger Death Punch",purchase,1.0,0 -70778973,"One Finger Death Punch",play,6.0,0 -70778973,"Age of Empires II HD Edition",purchase,1.0,0 -70778973,"Age of Empires II HD Edition",play,4.9,0 -70778973,"Age of Empires III Complete Collection",purchase,1.0,0 -70778973,"Age of Empires III Complete Collection",play,0.5,0 -70778973,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -70778973,"Age of Empires II HD The Forgotten",purchase,1.0,0 -70778973,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -70778973,"The Lord of the Rings Online",purchase,1.0,0 -70778973,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -119619506,"Counter-Strike Global Offensive",purchase,1.0,0 -119619506,"Counter-Strike Global Offensive",play,766.0,0 -119619506,"Garry's Mod",purchase,1.0,0 -119619506,"Garry's Mod",play,223.0,0 -119619506,"Team Fortress 2",purchase,1.0,0 -119619506,"Team Fortress 2",play,140.0,0 -119619506,"PAYDAY 2",purchase,1.0,0 -119619506,"PAYDAY 2",play,64.0,0 -119619506,"Left 4 Dead 2",purchase,1.0,0 -119619506,"Left 4 Dead 2",play,46.0,0 -119619506,"Killing Floor 2",purchase,1.0,0 -119619506,"Killing Floor 2",play,41.0,0 -119619506,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -119619506,"Call of Duty Modern Warfare 3 - Multiplayer",play,38.0,0 -119619506,"Chivalry Medieval Warfare",purchase,1.0,0 -119619506,"Chivalry Medieval Warfare",play,38.0,0 -119619506,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -119619506,"Grand Theft Auto Episodes from Liberty City",play,38.0,0 -119619506,"Max Payne 3",purchase,1.0,0 -119619506,"Max Payne 3",play,37.0,0 -119619506,"Saints Row The Third",purchase,1.0,0 -119619506,"Saints Row The Third",play,36.0,0 -119619506,"Call of Duty Modern Warfare 3",purchase,1.0,0 -119619506,"Call of Duty Modern Warfare 3",play,24.0,0 -119619506,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -119619506,"Rising Storm/Red Orchestra 2 Multiplayer",play,24.0,0 -119619506,"PAYDAY The Heist",purchase,1.0,0 -119619506,"PAYDAY The Heist",play,22.0,0 -119619506,"Counter-Strike Source",purchase,1.0,0 -119619506,"Counter-Strike Source",play,18.4,0 -119619506,"Sniper Elite V2",purchase,1.0,0 -119619506,"Sniper Elite V2",play,12.3,0 -119619506,"Warframe",purchase,1.0,0 -119619506,"Warframe",play,10.9,0 -119619506,"Hotline Miami",purchase,1.0,0 -119619506,"Hotline Miami",play,10.7,0 -119619506,"Insurgency",purchase,1.0,0 -119619506,"Insurgency",play,10.2,0 -119619506,"Portal 2",purchase,1.0,0 -119619506,"Portal 2",play,9.1,0 -119619506,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -119619506,"Red Faction Guerrilla Steam Edition",play,7.7,0 -119619506,"Far Cry 3 Blood Dragon",purchase,1.0,0 -119619506,"Far Cry 3 Blood Dragon",play,7.1,0 -119619506,"F.E.A.R. Online",purchase,1.0,0 -119619506,"F.E.A.R. Online",play,6.8,0 -119619506,"Killing Floor",purchase,1.0,0 -119619506,"Killing Floor",play,6.8,0 -119619506,"Infestation Survivor Stories",purchase,1.0,0 -119619506,"Infestation Survivor Stories",play,6.5,0 -119619506,"Age of Chivalry",purchase,1.0,0 -119619506,"Age of Chivalry",play,6.1,0 -119619506,"POSTAL 2",purchase,1.0,0 -119619506,"POSTAL 2",play,5.8,0 -119619506,"Zombie Panic Source",purchase,1.0,0 -119619506,"Zombie Panic Source",play,5.0,0 -119619506,"Battlefield Bad Company 2",purchase,1.0,0 -119619506,"Battlefield Bad Company 2",play,4.9,0 -119619506,"Hotline Miami 2 Wrong Number",purchase,1.0,0 -119619506,"Hotline Miami 2 Wrong Number",play,4.1,0 -119619506,"Dota 2",purchase,1.0,0 -119619506,"Dota 2",play,4.1,0 -119619506,"Rise of the Triad",purchase,1.0,0 -119619506,"Rise of the Triad",play,3.9,0 -119619506,"Heroes & Generals",purchase,1.0,0 -119619506,"Heroes & Generals",play,3.3,0 -119619506,"Blacklight Retribution",purchase,1.0,0 -119619506,"Blacklight Retribution",play,3.3,0 -119619506,"Half-Life 2 Episode One",purchase,1.0,0 -119619506,"Half-Life 2 Episode One",play,3.2,0 -119619506,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -119619506,"Call of Duty Black Ops II - Zombies",play,3.2,0 -119619506,"Half-Life Opposing Force",purchase,1.0,0 -119619506,"Half-Life Opposing Force",play,3.2,0 -119619506,"Urban Trial Freestyle",purchase,1.0,0 -119619506,"Urban Trial Freestyle",play,3.0,0 -119619506,"Warface",purchase,1.0,0 -119619506,"Warface",play,2.8,0 -119619506,"Star Wars - Battlefront II",purchase,1.0,0 -119619506,"Star Wars - Battlefront II",play,2.8,0 -119619506,"Dirty Bomb",purchase,1.0,0 -119619506,"Dirty Bomb",play,2.6,0 -119619506,"Saints Row 2",purchase,1.0,0 -119619506,"Saints Row 2",play,2.4,0 -119619506,"Dino D-Day",purchase,1.0,0 -119619506,"Dino D-Day",play,2.3,0 -119619506,"ORION Prelude",purchase,1.0,0 -119619506,"ORION Prelude",play,2.3,0 -119619506,"Afterfall InSanity Extended Edition",purchase,1.0,0 -119619506,"Afterfall InSanity Extended Edition",play,2.2,0 -119619506,"Slender The Arrival",purchase,1.0,0 -119619506,"Slender The Arrival",play,2.1,0 -119619506,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -119619506,"Call of Duty Black Ops II - Multiplayer",play,2.0,0 -119619506,"ComaMortuary",purchase,1.0,0 -119619506,"ComaMortuary",play,1.7,0 -119619506,"SpaceChem",purchase,1.0,0 -119619506,"SpaceChem",play,1.3,0 -119619506,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -119619506,"Nosferatu The Wrath of Malachi",play,1.2,0 -119619506,"Gun Monkeys",purchase,1.0,0 -119619506,"Gun Monkeys",play,1.2,0 -119619506,"War Inc. Battlezone",purchase,1.0,0 -119619506,"War Inc. Battlezone",play,1.0,0 -119619506,"HAWKEN",purchase,1.0,0 -119619506,"HAWKEN",play,0.6,0 -119619506,"theHunter",purchase,1.0,0 -119619506,"theHunter",play,0.6,0 -119619506,"Only If",purchase,1.0,0 -119619506,"Only If",play,0.5,0 -119619506,"Double Action Boogaloo",purchase,1.0,0 -119619506,"Double Action Boogaloo",play,0.4,0 -119619506,"Legendary",purchase,1.0,0 -119619506,"Legendary",play,0.4,0 -119619506,"Half-Life 2 Lost Coast",purchase,1.0,0 -119619506,"Half-Life 2 Lost Coast",play,0.3,0 -119619506,"The Forgotten Ones",purchase,1.0,0 -119619506,"The Forgotten Ones",play,0.3,0 -119619506,"Anarchy Arcade",purchase,1.0,0 -119619506,"Anarchy Arcade",play,0.3,0 -119619506,"Crash Time II",purchase,1.0,0 -119619506,"Crash Time II",play,0.3,0 -119619506,"Survarium",purchase,1.0,0 -119619506,"Survarium",play,0.2,0 -119619506,"Arma 2 Free",purchase,1.0,0 -119619506,"Arma 2 Free",play,0.2,0 -119619506,"Unturned",purchase,1.0,0 -119619506,"Unturned",play,0.2,0 -119619506,"Chaos Domain",purchase,1.0,0 -119619506,"Chaos Domain",play,0.2,0 -119619506,"Half-Life Deathmatch Source",purchase,1.0,0 -119619506,"Half-Life Deathmatch Source",play,0.1,0 -119619506,"Source Filmmaker",purchase,1.0,0 -119619506,"Source Filmmaker",play,0.1,0 -119619506,"Half-Life 2 Deathmatch",purchase,1.0,0 -119619506,"Half-Life 2 Deathmatch",play,0.1,0 -119619506,"NEOTOKYO",purchase,1.0,0 -119619506,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -119619506,"Portal 2 - The Final Hours",purchase,1.0,0 -119619506,"America's Army Proving Grounds",purchase,1.0,0 -119619506,"Call of Duty Black Ops II",purchase,1.0,0 -119619506,"Counter-Strike Nexon Zombies",purchase,1.0,0 -119619506,"Fallen Earth",purchase,1.0,0 -119619506,"Firefall",purchase,1.0,0 -119619506,"GTR Evolution",purchase,1.0,0 -119619506,"GunZ 2 The Second Duel",purchase,1.0,0 -119619506,"Haunted Memories",purchase,1.0,0 -119619506,"Killing Floor - Toy Master",purchase,1.0,0 -119619506,"Magicka Wizard Wars",purchase,1.0,0 -119619506,"Max Payne 3 Season Pass",purchase,1.0,0 -119619506,"Modular Combat",purchase,1.0,0 -119619506,"Nosgoth",purchase,1.0,0 -119619506,"Patch testing for Chivalry",purchase,1.0,0 -119619506,"PAYDAY The Heist Game Soundtrack",purchase,1.0,0 -119619506,"PAYDAY Wolf Pack",purchase,1.0,0 -119619506,"Pid ",purchase,1.0,0 -119619506,"RACE 07",purchase,1.0,0 -119619506,"RaceRoom Racing Experience ",purchase,1.0,0 -119619506,"Ratz Instagib 2.0",purchase,1.0,0 -119619506,"TERA",purchase,1.0,0 -119619506,"The Culling Of The Cows",purchase,1.0,0 -119619506,"Tribes Ascend",purchase,1.0,0 -119619506,"Uriel's Chasm",purchase,1.0,0 -208981410,"GEARCRACK Arena",purchase,1.0,0 -149424772,"Counter-Strike Global Offensive",purchase,1.0,0 -149424772,"Counter-Strike Global Offensive",play,594.0,0 -149424772,"Rocket League",purchase,1.0,0 -149424772,"Rocket League",play,20.0,0 -149424772,"DayZ",purchase,1.0,0 -149424772,"DayZ",play,15.9,0 -149424772,"Strife",purchase,1.0,0 -149424772,"Strife",play,15.7,0 -149424772,"Super Crate Box",purchase,1.0,0 -149424772,"Super Crate Box",play,5.8,0 -149424772,"The Elder Scrolls V Skyrim",purchase,1.0,0 -149424772,"The Elder Scrolls V Skyrim",play,2.5,0 -149424772,"theHunter",purchase,1.0,0 -149424772,"theHunter",play,1.1,0 -149424772,"Unturned",purchase,1.0,0 -149424772,"Unturned",play,1.0,0 -149424772,"Path of Exile",purchase,1.0,0 -149424772,"Path of Exile",play,0.4,0 -149424772,"Heroes & Generals",purchase,1.0,0 -149424772,"Heroes & Generals",play,0.1,0 -149424772,"UberStrike",purchase,1.0,0 -280421462,"AdVenture Capitalist",purchase,1.0,0 -280421462,"Loadout",purchase,1.0,0 -280421462,"Marvel Heroes 2015",purchase,1.0,0 -280421462,"Spooky's House of Jump Scares",purchase,1.0,0 -280421462,"TERA",purchase,1.0,0 -280421462,"Toribash",purchase,1.0,0 -65181439,"Portal",purchase,1.0,0 -65181439,"Portal",play,8.9,0 -43446880,"Fallout 4",purchase,1.0,0 -43446880,"Fallout 4",play,249.0,0 -49342564,"Total War ROME II - Emperor Edition",purchase,1.0,0 -49342564,"Total War ROME II - Emperor Edition",play,390.0,0 -49342564,"PAYDAY 2",purchase,1.0,0 -49342564,"PAYDAY 2",play,249.0,0 -49342564,"Total War SHOGUN 2",purchase,1.0,0 -49342564,"Total War SHOGUN 2",play,246.0,0 -49342564,"Napoleon Total War",purchase,1.0,0 -49342564,"Napoleon Total War",play,128.0,0 -49342564,"Total War ATTILA",purchase,1.0,0 -49342564,"Total War ATTILA",play,110.0,0 -49342564,"Empire Total War",purchase,1.0,0 -49342564,"Empire Total War",play,101.0,0 -49342564,"The Lord of the Rings War in the North",purchase,1.0,0 -49342564,"The Lord of the Rings War in the North",play,99.0,0 -49342564,"Age of Empires II HD Edition",purchase,1.0,0 -49342564,"Age of Empires II HD Edition",play,89.0,0 -49342564,"Company of Heroes Tales of Valor",purchase,1.0,0 -49342564,"Company of Heroes Tales of Valor",play,83.0,0 -49342564,"Company of Heroes 2",purchase,1.0,0 -49342564,"Company of Heroes 2",play,71.0,0 -49342564,"XCOM Enemy Unknown",purchase,1.0,0 -49342564,"XCOM Enemy Unknown",play,68.0,0 -49342564,"Company of Heroes (New Steam Version)",purchase,1.0,0 -49342564,"Company of Heroes (New Steam Version)",play,40.0,0 -49342564,"Robin Hood",purchase,1.0,0 -49342564,"Robin Hood",play,39.0,0 -49342564,"Wolfenstein The New Order German Edition",purchase,1.0,0 -49342564,"Wolfenstein The New Order German Edition",play,37.0,0 -49342564,"Middle-earth Shadow of Mordor",purchase,1.0,0 -49342564,"Middle-earth Shadow of Mordor",play,35.0,0 -49342564,"Age of Mythology Extended Edition",purchase,1.0,0 -49342564,"Age of Mythology Extended Edition",play,26.0,0 -49342564,"Anno 1404 Venice",purchase,1.0,0 -49342564,"Anno 1404 Venice",play,23.0,0 -49342564,"Tomb Raider",purchase,1.0,0 -49342564,"Tomb Raider",play,11.3,0 -49342564,"Call of Juarez Gunslinger",purchase,1.0,0 -49342564,"Call of Juarez Gunslinger",play,9.3,0 -49342564,"Age of Empires III Complete Collection",purchase,1.0,0 -49342564,"Age of Empires III Complete Collection",play,8.9,0 -49342564,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -49342564,"Tom Clancy's Ghost Recon Phantoms - EU",play,8.6,0 -49342564,"Wolfenstein The Old Blood German Edition",purchase,1.0,0 -49342564,"Wolfenstein The Old Blood German Edition",play,8.5,0 -49342564,"Heroes of Might & Magic V Tribes of the East",purchase,1.0,0 -49342564,"Heroes of Might & Magic V Tribes of the East",play,7.1,0 -49342564,"Age of Wonders III",purchase,1.0,0 -49342564,"Age of Wonders III",play,4.7,0 -49342564,"Sid Meier's Civilization V",purchase,1.0,0 -49342564,"Sid Meier's Civilization V",play,2.8,0 -49342564,"Might & Magic Heroes VII ",purchase,1.0,0 -49342564,"Might & Magic Heroes VII ",play,2.8,0 -49342564,"A Game of Thrones - Genesis",purchase,1.0,0 -49342564,"A Game of Thrones - Genesis",play,2.8,0 -49342564,"Star Wars - Battlefront II",purchase,1.0,0 -49342564,"Star Wars - Battlefront II",play,2.5,0 -49342564,"War of the Roses",purchase,1.0,0 -49342564,"War of the Roses",play,2.4,0 -49342564,"Company of Heroes Opposing Fronts",purchase,1.0,0 -49342564,"Company of Heroes Opposing Fronts",play,1.3,0 -49342564,"Stronghold Crusader 2",purchase,1.0,0 -49342564,"Stronghold Crusader 2",play,1.2,0 -49342564,"King Arthur II - The Role-playing Wargame",purchase,1.0,0 -49342564,"King Arthur II - The Role-playing Wargame",play,1.0,0 -49342564,"The Elder Scrolls V Skyrim",purchase,1.0,0 -49342564,"The Elder Scrolls V Skyrim",play,0.9,0 -49342564,"Total War Battles KINGDOM",purchase,1.0,0 -49342564,"Total War Battles KINGDOM",play,0.6,0 -49342564,"Stronghold 3",purchase,1.0,0 -49342564,"Stronghold 3",play,0.5,0 -49342564,"PAYDAY The Heist",purchase,1.0,0 -49342564,"PAYDAY The Heist",play,0.4,0 -49342564,"Game of Thrones ",purchase,1.0,0 -49342564,"Game of Thrones ",play,0.3,0 -49342564,"Company of Heroes",purchase,1.0,0 -49342564,"Company of Heroes",play,0.2,0 -49342564,"Planetary Annihilation",purchase,1.0,0 -49342564,"Planetary Annihilation",play,0.2,0 -49342564,"Earth 2160",purchase,1.0,0 -49342564,"Earth 2160",play,0.2,0 -49342564,"Verdun",purchase,1.0,0 -49342564,"Verdun",play,0.2,0 -49342564,"Cossacks II Napoleonic Wars",purchase,1.0,0 -49342564,"Cossacks II Napoleonic Wars",play,0.1,0 -49342564,"Viking Battle for Asgard",purchase,1.0,0 -49342564,"Viking Battle for Asgard",play,0.1,0 -49342564,"Guardians of Middle-earth",purchase,1.0,0 -49342564,"Anno 2070",purchase,1.0,0 -49342564,"Might & Magic Heroes VI",purchase,1.0,0 -49342564,"Age of Empires II HD The Forgotten",purchase,1.0,0 -49342564,"Anno 1404",purchase,1.0,0 -49342564,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -49342564,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -49342564,"Company of Heroes 2 - Ardennes Assault",purchase,1.0,0 -49342564,"Company of Heroes 2 - The British Forces",purchase,1.0,0 -49342564,"Dishonored",purchase,1.0,0 -49342564,"Heroes of Might & Magic V",purchase,1.0,0 -49342564,"Heroes of Might & Magic V Hammers of Fate",purchase,1.0,0 -49342564,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -49342564,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -49342564,"Star Trek Online",purchase,1.0,0 -49342564,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -49342564,"War of the Roses Kingmaker",purchase,1.0,0 -49342564,"War of the Roses Balance Beta",purchase,1.0,0 -49342564,"XCOM Enemy Within",purchase,1.0,0 -209746499,"Counter-Strike Nexon Zombies",purchase,1.0,0 -308615060,"Dota 2",purchase,1.0,0 -308615060,"Dota 2",play,0.8,0 -14711056,"Counter-Strike Source",purchase,1.0,0 -14711056,"Counter-Strike Source",play,4.6,0 -14711056,"Half-Life 2",purchase,1.0,0 -14711056,"Half-Life 2 Deathmatch",purchase,1.0,0 -14711056,"Half-Life 2 Lost Coast",purchase,1.0,0 -98361644,"Team Fortress 2",purchase,1.0,0 -98361644,"Team Fortress 2",play,0.2,0 -33017387,"Half-Life 2 Episode Two",purchase,1.0,0 -33017387,"Half-Life 2 Episode Two",play,3.1,0 -163393202,"The Lord of the Rings War in the North",purchase,1.0,0 -163393202,"The Lord of the Rings War in the North",play,18.4,0 -163393202,"Age of Conan Unchained - EU version",purchase,1.0,0 -163393202,"Age of Conan Unchained - EU version",play,7.0,0 -163393202,"Warface",purchase,1.0,0 -163393202,"Karos",purchase,1.0,0 -197616637,"Dota 2",purchase,1.0,0 -197616637,"Dota 2",play,0.9,0 -264239828,"Dota 2",purchase,1.0,0 -264239828,"Dota 2",play,1102.0,0 -264239828,"FreeStyle2 Street Basketball",purchase,1.0,0 -264239828,"TERA",purchase,1.0,0 -93326304,"The Elder Scrolls V Skyrim",purchase,1.0,0 -93326304,"The Elder Scrolls V Skyrim",play,62.0,0 -7015471,"Sid Meier's Civilization V",purchase,1.0,0 -7015471,"Sid Meier's Civilization V",play,328.0,0 -7015471,"The Elder Scrolls V Skyrim",purchase,1.0,0 -7015471,"The Elder Scrolls V Skyrim",play,113.0,0 -7015471,"SimCity 4 Deluxe",purchase,1.0,0 -7015471,"SimCity 4 Deluxe",play,79.0,0 -7015471,"Fallout New Vegas",purchase,1.0,0 -7015471,"Fallout New Vegas",play,53.0,0 -7015471,"Portal 2",purchase,1.0,0 -7015471,"Portal 2",play,46.0,0 -7015471,"Half-Life 2",purchase,1.0,0 -7015471,"Half-Life 2",play,15.7,0 -7015471,"Grim Fandango Remastered",purchase,1.0,0 -7015471,"Grim Fandango Remastered",play,8.4,0 -7015471,"Half-Life 2 Episode Two",purchase,1.0,0 -7015471,"Half-Life 2 Episode Two",play,5.4,0 -7015471,"Half-Life 2 Episode One",purchase,1.0,0 -7015471,"Half-Life 2 Episode One",play,4.9,0 -7015471,"Left 4 Dead",purchase,1.0,0 -7015471,"Left 4 Dead",play,3.4,0 -7015471,"Portal",purchase,1.0,0 -7015471,"Portal",play,1.0,0 -7015471,"Tomb Raider Anniversary",purchase,1.0,0 -7015471,"Tomb Raider Anniversary",play,0.7,0 -7015471,"Left 4 Dead 2",purchase,1.0,0 -7015471,"Left 4 Dead 2",play,0.5,0 -7015471,"Half-Life Source",purchase,1.0,0 -7015471,"Half-Life Source",play,0.4,0 -7015471,"Audiosurf",purchase,1.0,0 -7015471,"Audiosurf",play,0.3,0 -7015471,"Eternal Silence",purchase,1.0,0 -7015471,"Eternal Silence",play,0.2,0 -7015471,"Half-Life 2 Lost Coast",purchase,1.0,0 -7015471,"Half-Life 2 Lost Coast",play,0.2,0 -7015471,"Deathmatch Classic",purchase,1.0,0 -7015471,"Counter-Strike",purchase,1.0,0 -7015471,"Counter-Strike Source",purchase,1.0,0 -7015471,"Day of Defeat",purchase,1.0,0 -7015471,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -7015471,"Fallout New Vegas Dead Money",purchase,1.0,0 -7015471,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -7015471,"Firefall",purchase,1.0,0 -7015471,"Half-Life",purchase,1.0,0 -7015471,"Half-Life 2 Deathmatch",purchase,1.0,0 -7015471,"Half-Life 2 Update",purchase,1.0,0 -7015471,"Half-Life Blue Shift",purchase,1.0,0 -7015471,"Half-Life Opposing Force",purchase,1.0,0 -7015471,"Half-Life Deathmatch Source",purchase,1.0,0 -7015471,"Let the Cat In",purchase,1.0,0 -7015471,"Ricochet",purchase,1.0,0 -7015471,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -7015471,"Star Trek Online",purchase,1.0,0 -7015471,"Team Fortress Classic",purchase,1.0,0 -7015471,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -7015471,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -7015471,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -260137269,"Heroes & Generals",purchase,1.0,0 -250357493,"No More Room in Hell",purchase,1.0,0 -250357493,"No More Room in Hell",play,3.2,0 -250357493,"Team Fortress 2",purchase,1.0,0 -250357493,"Team Fortress 2",play,1.9,0 -250357493,"Marvel Heroes 2015",purchase,1.0,0 -239389313,"TERA",purchase,1.0,0 -239389313,"TERA",play,8.2,0 -101000574,"Clicker Heroes",purchase,1.0,0 -101000574,"Clicker Heroes",play,122.0,0 -101000574,"AdVenture Capitalist",purchase,1.0,0 -101000574,"AdVenture Capitalist",play,87.0,0 -101000574,"Firefall",purchase,1.0,0 -101000574,"Firefall",play,69.0,0 -101000574,"Dungeon Defenders II",purchase,1.0,0 -101000574,"Dungeon Defenders II",play,25.0,0 -101000574,"The Repopulation",purchase,1.0,0 -101000574,"The Repopulation",play,24.0,0 -101000574,"Nosgoth",purchase,1.0,0 -101000574,"Nosgoth",play,21.0,0 -101000574,"Warframe",purchase,1.0,0 -101000574,"Warframe",play,21.0,0 -101000574,"Planet Explorers",purchase,1.0,0 -101000574,"Planet Explorers",play,7.5,0 -101000574,"Metal Reaper Online",purchase,1.0,0 -101000574,"Metal Reaper Online",play,5.5,0 -101000574,"Team Fortress 2",purchase,1.0,0 -101000574,"Team Fortress 2",play,4.7,0 -101000574,"Heroes & Generals",purchase,1.0,0 -101000574,"Heroes & Generals",play,4.7,0 -101000574,"No More Room in Hell",purchase,1.0,0 -101000574,"No More Room in Hell",play,2.7,0 -101000574,"Alien Swarm",purchase,1.0,0 -101000574,"Alien Swarm",play,2.6,0 -101000574,"Neverwinter",purchase,1.0,0 -101000574,"Neverwinter",play,1.9,0 -101000574,"BLOCKADE 3D",purchase,1.0,0 -101000574,"BLOCKADE 3D",play,1.4,0 -101000574,"Arma 2 Operation Arrowhead",purchase,1.0,0 -101000574,"Arma 2 Operation Arrowhead",play,0.3,0 -101000574,"Arma 2",purchase,1.0,0 -101000574,"Arma 2",play,0.1,0 -101000574,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -101000574,"Defiance",purchase,1.0,0 -101000574,"Path of Exile",purchase,1.0,0 -245570449,"Project CARS",purchase,1.0,0 -245570449,"Project CARS",play,0.6,0 -299938570,"Counter-Strike Global Offensive",purchase,1.0,0 -299938570,"Counter-Strike Global Offensive",play,2.9,0 -61044093,"Warhammer Online Age of Reckoning",purchase,1.0,0 -37420720,"Half-Life 2 Deathmatch",purchase,1.0,0 -37420720,"Half-Life 2 Lost Coast",purchase,1.0,0 -91859894,"Team Fortress 2",purchase,1.0,0 -91859894,"Team Fortress 2",play,456.0,0 -91859894,"The Binding of Isaac",purchase,1.0,0 -91859894,"The Binding of Isaac",play,160.0,0 -91859894,"The Binding of Isaac Rebirth",purchase,1.0,0 -91859894,"The Binding of Isaac Rebirth",play,136.0,0 -91859894,"Garry's Mod",purchase,1.0,0 -91859894,"Garry's Mod",play,125.0,0 -91859894,"Dota 2",purchase,1.0,0 -91859894,"Dota 2",play,124.0,0 -91859894,"Terraria",purchase,1.0,0 -91859894,"Terraria",play,123.0,0 -91859894,"Borderlands 2",purchase,1.0,0 -91859894,"Borderlands 2",play,109.0,0 -91859894,"Trove",purchase,1.0,0 -91859894,"Trove",play,105.0,0 -91859894,"Clicker Heroes",purchase,1.0,0 -91859894,"Clicker Heroes",play,94.0,0 -91859894,"Saints Row The Third",purchase,1.0,0 -91859894,"Saints Row The Third",play,61.0,0 -91859894,"Grand Theft Auto V",purchase,1.0,0 -91859894,"Grand Theft Auto V",play,55.0,0 -91859894,"Rocket League",purchase,1.0,0 -91859894,"Rocket League",play,53.0,0 -91859894,"DRAGON BALL XENOVERSE",purchase,1.0,0 -91859894,"DRAGON BALL XENOVERSE",play,52.0,0 -91859894,"Saints Row IV",purchase,1.0,0 -91859894,"Saints Row IV",play,48.0,0 -91859894,"Borderlands",purchase,1.0,0 -91859894,"Borderlands",play,44.0,0 -91859894,"Dead Island",purchase,1.0,0 -91859894,"Dead Island",play,42.0,0 -91859894,"Warframe",purchase,1.0,0 -91859894,"Warframe",play,40.0,0 -91859894,"Portal 2",purchase,1.0,0 -91859894,"Portal 2",play,40.0,0 -91859894,"Chivalry Medieval Warfare",purchase,1.0,0 -91859894,"Chivalry Medieval Warfare",play,38.0,0 -91859894,"The Elder Scrolls V Skyrim",purchase,1.0,0 -91859894,"The Elder Scrolls V Skyrim",play,37.0,0 -91859894,"Sakura Clicker",purchase,1.0,0 -91859894,"Sakura Clicker",play,33.0,0 -91859894,"Left 4 Dead 2",purchase,1.0,0 -91859894,"Left 4 Dead 2",play,22.0,0 -91859894,"Super Monday Night Combat",purchase,1.0,0 -91859894,"Super Monday Night Combat",play,21.0,0 -91859894,"BattleBlock Theater",purchase,1.0,0 -91859894,"BattleBlock Theater",play,17.3,0 -91859894,"One Way Heroics",purchase,1.0,0 -91859894,"One Way Heroics",play,14.1,0 -91859894,"Trine 2",purchase,1.0,0 -91859894,"Trine 2",play,13.1,0 -91859894,"Dust An Elysian Tail",purchase,1.0,0 -91859894,"Dust An Elysian Tail",play,12.1,0 -91859894,"Aura Kingdom",purchase,1.0,0 -91859894,"Aura Kingdom",play,10.4,0 -91859894,"Middle-earth Shadow of Mordor",purchase,1.0,0 -91859894,"Middle-earth Shadow of Mordor",play,10.2,0 -91859894,"The Last Remnant",purchase,1.0,0 -91859894,"The Last Remnant",play,9.7,0 -91859894,"Age of Chivalry",purchase,1.0,0 -91859894,"Age of Chivalry",play,9.7,0 -91859894,"Darksiders",purchase,1.0,0 -91859894,"Darksiders",play,9.5,0 -91859894,"Crypt of the NecroDancer",purchase,1.0,0 -91859894,"Crypt of the NecroDancer",play,8.6,0 -91859894,"Counter-Strike Source",purchase,1.0,0 -91859894,"Counter-Strike Source",play,8.0,0 -91859894,"Toribash",purchase,1.0,0 -91859894,"Toribash",play,7.9,0 -91859894,"Serious Sam 3 BFE",purchase,1.0,0 -91859894,"Serious Sam 3 BFE",play,7.7,0 -91859894,"Realm of the Mad God",purchase,1.0,0 -91859894,"Realm of the Mad God",play,7.6,0 -91859894,"The Mighty Quest For Epic Loot",purchase,1.0,0 -91859894,"The Mighty Quest For Epic Loot",play,7.1,0 -91859894,"Epic Battle Fantasy 4",purchase,1.0,0 -91859894,"Epic Battle Fantasy 4",play,6.8,0 -91859894,"Castle Crashers",purchase,1.0,0 -91859894,"Castle Crashers",play,6.1,0 -91859894,"Poker Night 2",purchase,1.0,0 -91859894,"Poker Night 2",play,5.9,0 -91859894,"Construct 2 Free",purchase,1.0,0 -91859894,"Construct 2 Free",play,5.3,0 -91859894,"Red Faction Armageddon",purchase,1.0,0 -91859894,"Red Faction Armageddon",play,5.0,0 -91859894,"Trine",purchase,1.0,0 -91859894,"Trine",play,4.9,0 -91859894,"Metro 2033",purchase,1.0,0 -91859894,"Metro 2033",play,4.8,0 -91859894,"Super Hexagon",purchase,1.0,0 -91859894,"Super Hexagon",play,4.6,0 -91859894,"Ace of Spades",purchase,1.0,0 -91859894,"Ace of Spades",play,4.3,0 -91859894,"Poker Night at the Inventory",purchase,1.0,0 -91859894,"Poker Night at the Inventory",play,4.2,0 -91859894,"Cthulhu Saves the World ",purchase,1.0,0 -91859894,"Cthulhu Saves the World ",play,4.2,0 -91859894,"Spelunky",purchase,1.0,0 -91859894,"Spelunky",play,3.7,0 -91859894,"Solstice Arena",purchase,1.0,0 -91859894,"Solstice Arena",play,3.0,0 -91859894,"Company of Heroes",purchase,1.0,0 -91859894,"Company of Heroes",play,2.7,0 -91859894,"Jigoku Kisetsukan Sense of the Seasons",purchase,1.0,0 -91859894,"Jigoku Kisetsukan Sense of the Seasons",play,2.0,0 -91859894,"Bastion",purchase,1.0,0 -91859894,"Bastion",play,2.0,0 -91859894,"Worms Revolution",purchase,1.0,0 -91859894,"Worms Revolution",play,1.4,0 -91859894,"BIT.TRIP BEAT",purchase,1.0,0 -91859894,"BIT.TRIP BEAT",play,1.3,0 -91859894,"Super Crate Box",purchase,1.0,0 -91859894,"Super Crate Box",play,1.2,0 -91859894,"PixelJunk Eden",purchase,1.0,0 -91859894,"PixelJunk Eden",play,1.0,0 -91859894,"Everlasting Summer",purchase,1.0,0 -91859894,"Everlasting Summer",play,1.0,0 -91859894,"Super Meat Boy",purchase,1.0,0 -91859894,"Super Meat Boy",play,0.7,0 -91859894,"Titan Quest",purchase,1.0,0 -91859894,"Titan Quest",play,0.6,0 -91859894,"Eternal Senia",purchase,1.0,0 -91859894,"Eternal Senia",play,0.3,0 -91859894,"Breath of Death VII ",purchase,1.0,0 -91859894,"Breath of Death VII ",play,0.2,0 -91859894,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -91859894,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -91859894,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -91859894,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -91859894,"Company of Heroes (New Steam Version)",purchase,1.0,0 -91859894,"Company of Heroes Opposing Fronts",purchase,1.0,0 -91859894,"Company of Heroes Tales of Valor",purchase,1.0,0 -91859894,"Patch testing for Chivalry",purchase,1.0,0 -91859894,"Path of Exile",purchase,1.0,0 -91859894,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -91859894,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -91859894,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -294164990,"Dota 2",purchase,1.0,0 -294164990,"Dota 2",play,0.2,0 -114024939,"Football Manager 2015",purchase,1.0,0 -114024939,"Football Manager 2015",play,533.0,0 -114024939,"Football Manager 2013",purchase,1.0,0 -114024939,"Football Manager 2013",play,518.0,0 -114024939,"Football Manager 2014",purchase,1.0,0 -114024939,"Football Manager 2014",play,454.0,0 -114024939,"Sniper Elite V2",purchase,1.0,0 -114024939,"Sniper Elite V2",play,8.6,0 -114024939,"Napoleon Total War",purchase,1.0,0 -114024939,"Napoleon Total War",play,0.1,0 -30614573,"Counter-Strike Source",purchase,1.0,0 -30614573,"Counter-Strike Source",play,23.0,0 -30614573,"Synergy",purchase,1.0,0 -30614573,"Synergy",play,14.8,0 -30614573,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -30614573,"Call of Duty 4 Modern Warfare",play,9.7,0 -30614573,"Alien Shooter Vengeance",purchase,1.0,0 -30614573,"Alien Shooter Vengeance",play,8.7,0 -30614573,"Half-Life 2 Lost Coast",purchase,1.0,0 -30614573,"Half-Life 2 Lost Coast",play,0.8,0 -30614573,"Insurgency Modern Infantry Combat",purchase,1.0,0 -30614573,"Insurgency Modern Infantry Combat",play,0.3,0 -30614573,"Alien Shooter 2 Reloaded",purchase,1.0,0 -30614573,"Day of Defeat Source",purchase,1.0,0 -30614573,"Half-Life 2 Deathmatch",purchase,1.0,0 -87601770,"Fallout New Vegas",purchase,1.0,0 -87601770,"Fallout New Vegas",play,46.0,0 -87601770,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -87601770,"Call of Duty Black Ops - Multiplayer",play,25.0,0 -87601770,"Omerta - City of Gangsters",purchase,1.0,0 -87601770,"Omerta - City of Gangsters",play,8.8,0 -87601770,"Mafia II",purchase,1.0,0 -87601770,"Mafia II",play,3.2,0 -87601770,"MX vs. ATV Reflex",purchase,1.0,0 -87601770,"MX vs. ATV Reflex",play,2.6,0 -87601770,"Shank 2",purchase,1.0,0 -87601770,"Shank 2",play,1.3,0 -87601770,"Beat Hazard",purchase,1.0,0 -87601770,"Beat Hazard",play,1.3,0 -87601770,"Call of Duty Black Ops",purchase,1.0,0 -87601770,"Call of Duty Black Ops",play,0.8,0 -87601770,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -87601770,"Grand Theft Auto Episodes from Liberty City",play,0.6,0 -87601770,"Tony Hawk's Pro Skater HD",purchase,1.0,0 -87601770,"Tony Hawk's Pro Skater HD",play,0.3,0 -87601770,"Gotham City Impostors Free To Play",purchase,1.0,0 -87601770,"Gotham City Impostors Free To Play",play,0.2,0 -87601770,"Beat Hazard - Shadow Operations Unit",purchase,1.0,0 -87601770,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -87601770,"Grand Theft Auto IV",purchase,1.0,0 -87601770,"Omerta - City of Gangsters The Bulgarian Colossus",purchase,1.0,0 -8585433,"The Binding of Isaac",purchase,1.0,0 -8585433,"The Binding of Isaac",play,1672.0,0 -8585433,"Torchlight II",purchase,1.0,0 -8585433,"Torchlight II",play,839.0,0 -8585433,"The Binding of Isaac Rebirth",purchase,1.0,0 -8585433,"The Binding of Isaac Rebirth",play,623.0,0 -8585433,"Crypt of the NecroDancer",purchase,1.0,0 -8585433,"Crypt of the NecroDancer",play,234.0,0 -8585433,"ARK Survival Evolved",purchase,1.0,0 -8585433,"ARK Survival Evolved",play,193.0,0 -8585433,"Sid Meier's Civilization V",purchase,1.0,0 -8585433,"Sid Meier's Civilization V",play,164.0,0 -8585433,"Dungeon Defenders",purchase,1.0,0 -8585433,"Dungeon Defenders",play,148.0,0 -8585433,"Counter-Strike",purchase,1.0,0 -8585433,"Counter-Strike",play,142.0,0 -8585433,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -8585433,"Dark Souls Prepare to Die Edition",play,130.0,0 -8585433,"Global Agenda",purchase,1.0,0 -8585433,"Global Agenda",play,126.0,0 -8585433,"PAYDAY 2",purchase,1.0,0 -8585433,"PAYDAY 2",play,113.0,0 -8585433,"Game Dev Tycoon",purchase,1.0,0 -8585433,"Game Dev Tycoon",play,92.0,0 -8585433,"Borderlands 2",purchase,1.0,0 -8585433,"Borderlands 2",play,88.0,0 -8585433,"Darkest Dungeon",purchase,1.0,0 -8585433,"Darkest Dungeon",play,81.0,0 -8585433,"Counter-Strike Source",purchase,1.0,0 -8585433,"Counter-Strike Source",play,80.0,0 -8585433,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -8585433,"Call of Duty 4 Modern Warfare",play,73.0,0 -8585433,"Prison Architect",purchase,1.0,0 -8585433,"Prison Architect",play,64.0,0 -8585433,"Fallout New Vegas",purchase,1.0,0 -8585433,"Fallout New Vegas",play,54.0,0 -8585433,"Rogue Legacy",purchase,1.0,0 -8585433,"Rogue Legacy",play,50.0,0 -8585433,"Killing Floor",purchase,1.0,0 -8585433,"Killing Floor",play,44.0,0 -8585433,"Legend of Dungeon Masters",purchase,1.0,0 -8585433,"Legend of Dungeon Masters",play,41.0,0 -8585433,"Tales of Maj'Eyal",purchase,1.0,0 -8585433,"Tales of Maj'Eyal",play,38.0,0 -8585433,"Need for Speed Undercover",purchase,1.0,0 -8585433,"Need for Speed Undercover",play,36.0,0 -8585433,"Team Fortress 2",purchase,1.0,0 -8585433,"Team Fortress 2",play,34.0,0 -8585433,"Cook, Serve, Delicious!",purchase,1.0,0 -8585433,"Cook, Serve, Delicious!",play,34.0,0 -8585433,"Dota 2",purchase,1.0,0 -8585433,"Dota 2",play,33.0,0 -8585433,"Path of Exile",purchase,1.0,0 -8585433,"Path of Exile",play,31.0,0 -8585433,"Hero Siege",purchase,1.0,0 -8585433,"Hero Siege",play,30.0,0 -8585433,"The Escapists",purchase,1.0,0 -8585433,"The Escapists",play,28.0,0 -8585433,"Counter-Strike Global Offensive",purchase,1.0,0 -8585433,"Counter-Strike Global Offensive",play,26.0,0 -8585433,"Middle-earth Shadow of Mordor",purchase,1.0,0 -8585433,"Middle-earth Shadow of Mordor",play,25.0,0 -8585433,"Hand Of Fate",purchase,1.0,0 -8585433,"Hand Of Fate",play,21.0,0 -8585433,"Batman Arkham Origins",purchase,1.0,0 -8585433,"Batman Arkham Origins",play,18.7,0 -8585433,"Volgarr the Viking",purchase,1.0,0 -8585433,"Volgarr the Viking",play,18.0,0 -8585433,"Killing Floor 2",purchase,1.0,0 -8585433,"Killing Floor 2",play,17.7,0 -8585433,"Poker Night 2",purchase,1.0,0 -8585433,"Poker Night 2",play,17.5,0 -8585433,"Sacred Citadel",purchase,1.0,0 -8585433,"Sacred Citadel",play,16.3,0 -8585433,"Guild of Dungeoneering",purchase,1.0,0 -8585433,"Guild of Dungeoneering",play,16.2,0 -8585433,"DRAGON BALL XENOVERSE",purchase,1.0,0 -8585433,"DRAGON BALL XENOVERSE",play,15.2,0 -8585433,"Batman Arkham City GOTY",purchase,1.0,0 -8585433,"Batman Arkham City GOTY",play,14.2,0 -8585433,"Left 4 Dead 2",purchase,1.0,0 -8585433,"Left 4 Dead 2",play,13.7,0 -8585433,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -8585433,"Batman Arkham Asylum GOTY Edition",play,13.4,0 -8585433,"The Walking Dead",purchase,1.0,0 -8585433,"The Walking Dead",play,13.1,0 -8585433,"Borderlands",purchase,1.0,0 -8585433,"Borderlands",play,13.1,0 -8585433,"Left 4 Dead",purchase,1.0,0 -8585433,"Left 4 Dead",play,12.7,0 -8585433,"Ori and the Blind Forest",purchase,1.0,0 -8585433,"Ori and the Blind Forest",play,9.6,0 -8585433,"Defender's Quest Valley of the Forgotten",purchase,1.0,0 -8585433,"Defender's Quest Valley of the Forgotten",play,9.5,0 -8585433,"This War of Mine",purchase,1.0,0 -8585433,"This War of Mine",play,9.5,0 -8585433,"Cities Skylines",purchase,1.0,0 -8585433,"Cities Skylines",play,9.4,0 -8585433,"The Walking Dead Season Two",purchase,1.0,0 -8585433,"The Walking Dead Season Two",play,8.5,0 -8585433,"The Wolf Among Us",purchase,1.0,0 -8585433,"The Wolf Among Us",play,8.4,0 -8585433,"Audiosurf",purchase,1.0,0 -8585433,"Audiosurf",play,8.1,0 -8585433,"Hotline Miami",purchase,1.0,0 -8585433,"Hotline Miami",play,7.6,0 -8585433,"XCOM Enemy Unknown",purchase,1.0,0 -8585433,"XCOM Enemy Unknown",play,7.5,0 -8585433,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -8585433,"Warhammer 40,000 Dawn of War II Retribution",play,6.7,0 -8585433,"Dungeon Defenders II",purchase,1.0,0 -8585433,"Dungeon Defenders II",play,6.7,0 -8585433,"Robot Roller-Derby Disco Dodgeball",purchase,1.0,0 -8585433,"Robot Roller-Derby Disco Dodgeball",play,6.2,0 -8585433,"Hacknet",purchase,1.0,0 -8585433,"Hacknet",play,6.2,0 -8585433,"FTL Faster Than Light",purchase,1.0,0 -8585433,"FTL Faster Than Light",play,5.7,0 -8585433,"Monday Night Combat",purchase,1.0,0 -8585433,"Monday Night Combat",play,5.7,0 -8585433,"VVVVVV",purchase,1.0,0 -8585433,"VVVVVV",play,5.6,0 -8585433,"Gauntlet ",purchase,1.0,0 -8585433,"Gauntlet ",play,5.5,0 -8585433,"Risk of Rain",purchase,1.0,0 -8585433,"Risk of Rain",play,5.4,0 -8585433,"Choice Chamber",purchase,1.0,0 -8585433,"Choice Chamber",play,5.3,0 -8585433,"Time Gentlemen, Please!",purchase,1.0,0 -8585433,"Time Gentlemen, Please!",play,5.1,0 -8585433,"Ascendant",purchase,1.0,0 -8585433,"Ascendant",play,5.0,0 -8585433,"Mirror's Edge",purchase,1.0,0 -8585433,"Mirror's Edge",play,5.0,0 -8585433,"Nosgoth",purchase,1.0,0 -8585433,"Nosgoth",play,4.9,0 -8585433,"Chivalry Medieval Warfare",purchase,1.0,0 -8585433,"Chivalry Medieval Warfare",play,4.9,0 -8585433,"Don't Starve",purchase,1.0,0 -8585433,"Don't Starve",play,4.8,0 -8585433,"DC Universe Online",purchase,1.0,0 -8585433,"DC Universe Online",play,4.8,0 -8585433,"Alien Swarm",purchase,1.0,0 -8585433,"Alien Swarm",play,4.8,0 -8585433,"Spelunky",purchase,1.0,0 -8585433,"Spelunky",play,4.8,0 -8585433,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -8585433,"Burnout Paradise The Ultimate Box",play,4.7,0 -8585433,"Starbound",purchase,1.0,0 -8585433,"Starbound",play,4.5,0 -8585433,"Magicka",purchase,1.0,0 -8585433,"Magicka",play,4.2,0 -8585433,"BattleBlock Theater",purchase,1.0,0 -8585433,"BattleBlock Theater",play,4.2,0 -8585433,"Nimble Quest",purchase,1.0,0 -8585433,"Nimble Quest",play,4.1,0 -8585433,"SolForge",purchase,1.0,0 -8585433,"SolForge",play,4.1,0 -8585433,"Our Darker Purpose",purchase,1.0,0 -8585433,"Our Darker Purpose",play,4.0,0 -8585433,"Desktop Dungeons",purchase,1.0,0 -8585433,"Desktop Dungeons",play,3.8,0 -8585433,"Rampage Knights",purchase,1.0,0 -8585433,"Rampage Knights",play,3.4,0 -8585433,"Anomaly 2",purchase,1.0,0 -8585433,"Anomaly 2",play,3.1,0 -8585433,"Portal",purchase,1.0,0 -8585433,"Portal",play,2.8,0 -8585433,"Ben There, Dan That!",purchase,1.0,0 -8585433,"Ben There, Dan That!",play,2.8,0 -8585433,"Hammerwatch",purchase,1.0,0 -8585433,"Hammerwatch",play,2.6,0 -8585433,"SteamWorld Dig",purchase,1.0,0 -8585433,"SteamWorld Dig",play,2.4,0 -8585433,"Angry Video Game Nerd Adventures",purchase,1.0,0 -8585433,"Angry Video Game Nerd Adventures",play,2.3,0 -8585433,"Never Alone (Kisima Ingitchuna)",purchase,1.0,0 -8585433,"Never Alone (Kisima Ingitchuna)",play,2.3,0 -8585433,"Broforce",purchase,1.0,0 -8585433,"Broforce",play,2.1,0 -8585433,"The Mighty Quest For Epic Loot",purchase,1.0,0 -8585433,"The Mighty Quest For Epic Loot",play,2.0,0 -8585433,"Dungeonland",purchase,1.0,0 -8585433,"Dungeonland",play,1.9,0 -8585433,"Goat Simulator",purchase,1.0,0 -8585433,"Goat Simulator",play,1.4,0 -8585433,"DUNGEONS - Steam Special Edition",purchase,1.0,0 -8585433,"DUNGEONS - Steam Special Edition",play,1.3,0 -8585433,"Euro Truck Simulator 2",purchase,1.0,0 -8585433,"Euro Truck Simulator 2",play,1.3,0 -8585433,"Besiege",purchase,1.0,0 -8585433,"Besiege",play,1.3,0 -8585433,"Mount Your Friends",purchase,1.0,0 -8585433,"Mount Your Friends",play,1.3,0 -8585433,"3DMark",purchase,1.0,0 -8585433,"3DMark",play,1.3,0 -8585433,"Sang-Froid - Tales of Werewolves",purchase,1.0,0 -8585433,"Sang-Froid - Tales of Werewolves",play,1.3,0 -8585433,"Cave Story+",purchase,1.0,0 -8585433,"Cave Story+",play,1.3,0 -8585433,"Black Ice",purchase,1.0,0 -8585433,"Black Ice",play,1.1,0 -8585433,"Quest of Dungeons",purchase,1.0,0 -8585433,"Quest of Dungeons",play,1.1,0 -8585433,"Super Meat Boy",purchase,1.0,0 -8585433,"Super Meat Boy",play,1.0,0 -8585433,"The Typing of The Dead Overkill",purchase,1.0,0 -8585433,"The Typing of The Dead Overkill",play,1.0,0 -8585433,"The Elder Scrolls V Skyrim",purchase,1.0,0 -8585433,"The Elder Scrolls V Skyrim",play,1.0,0 -8585433,"Super Hexagon",purchase,1.0,0 -8585433,"Super Hexagon",play,1.0,0 -8585433,"The Ship",purchase,1.0,0 -8585433,"The Ship",play,0.9,0 -8585433,"Aliens vs. Predator",purchase,1.0,0 -8585433,"Aliens vs. Predator",play,0.9,0 -8585433,"Secret Ponchos",purchase,1.0,0 -8585433,"Secret Ponchos",play,0.9,0 -8585433,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -8585433,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.8,0 -8585433,"Nuclear Throne",purchase,1.0,0 -8585433,"Nuclear Throne",play,0.8,0 -8585433,"The Misadventures of P.B. Winterbottom",purchase,1.0,0 -8585433,"The Misadventures of P.B. Winterbottom",play,0.8,0 -8585433,"Crysis 2 Maximum Edition",purchase,1.0,0 -8585433,"Crysis 2 Maximum Edition",play,0.8,0 -8585433,"ORION Prelude",purchase,1.0,0 -8585433,"ORION Prelude",play,0.7,0 -8585433,"Sanctum",purchase,1.0,0 -8585433,"Sanctum",play,0.7,0 -8585433,"Distance",purchase,1.0,0 -8585433,"Distance",play,0.7,0 -8585433,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -8585433,"RollerCoaster Tycoon 3 Platinum!",play,0.5,0 -8585433,"Terraria",purchase,1.0,0 -8585433,"Terraria",play,0.4,0 -8585433,"Day of Defeat Source",purchase,1.0,0 -8585433,"Day of Defeat Source",play,0.4,0 -8585433,"Firefly Online Cortex",purchase,1.0,0 -8585433,"Firefly Online Cortex",play,0.3,0 -8585433,"Clicker Heroes",purchase,1.0,0 -8585433,"Clicker Heroes",play,0.3,0 -8585433,"Crusader Kings II",purchase,1.0,0 -8585433,"Crusader Kings II",play,0.2,0 -8585433,"Axiom Verge",purchase,1.0,0 -8585433,"Axiom Verge",play,0.2,0 -8585433,"SpeedRunners",purchase,1.0,0 -8585433,"SpeedRunners",play,0.1,0 -8585433,"Bad Rats",purchase,1.0,0 -8585433,"Bad Rats",play,0.1,0 -8585433,"Dirty Bomb",purchase,1.0,0 -8585433,"Dirty Bomb",play,0.1,0 -8585433,"Blood of the Werewolf",purchase,1.0,0 -8585433,"DARK SOULS II",purchase,1.0,0 -8585433,"Knights of Pen and Paper +1",purchase,1.0,0 -8585433,"They Bleed Pixels",purchase,1.0,0 -8585433,"Super Comboman",purchase,1.0,0 -8585433,"Lichdom Battlemage",purchase,1.0,0 -8585433,"Rogue's Tale",purchase,1.0,0 -8585433,"The Evil Within",purchase,1.0,0 -8585433,"3DMark API Overhead feature test",purchase,1.0,0 -8585433,"3DMark Cloud Gate benchmark",purchase,1.0,0 -8585433,"3DMark Fire Strike benchmark",purchase,1.0,0 -8585433,"3DMark Ice Storm benchmark",purchase,1.0,0 -8585433,"3DMark Sky Diver benchmark",purchase,1.0,0 -8585433,"99 Levels To Hell",purchase,1.0,0 -8585433,"Agapan",purchase,1.0,0 -8585433,"Amnesia The Dark Descent",purchase,1.0,0 -8585433,"Ampu-Tea",purchase,1.0,0 -8585433,"Angels of Fasaria Version 2.0",purchase,1.0,0 -8585433,"Assassin's Creed Revelations",purchase,1.0,0 -8585433,"Awesomenauts",purchase,1.0,0 -8585433,"A Wizard's Lizard",purchase,1.0,0 -8585433,"Ballpoint Universe Infinite",purchase,1.0,0 -8585433,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -8585433,"Batman Arkham Origins - Initiation",purchase,1.0,0 -8585433,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -8585433,"BioShock",purchase,1.0,0 -8585433,"BioShock 2",purchase,1.0,0 -8585433,"BioShock Infinite",purchase,1.0,0 -8585433,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -8585433,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -8585433,"Braid",purchase,1.0,0 -8585433,"Bridge Constructor",purchase,1.0,0 -8585433,"Brtal Legend",purchase,1.0,0 -8585433,"Butsbal",purchase,1.0,0 -8585433,"Call of Juarez Gunslinger",purchase,1.0,0 -8585433,"Castle Crashers",purchase,1.0,0 -8585433,"Chantelise",purchase,1.0,0 -8585433,"Cloudbuilt",purchase,1.0,0 -8585433,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -8585433,"Commander Keen Complete Pack",purchase,1.0,0 -8585433,"Crypt of the NecroDancer Extended Soundtrack",purchase,1.0,0 -8585433,"Cthulhu Saves the World ",purchase,1.0,0 -8585433,"Day of Defeat",purchase,1.0,0 -8585433,"Dead Island Epidemic",purchase,1.0,0 -8585433,"Dead Space",purchase,1.0,0 -8585433,"Deathmatch Classic",purchase,1.0,0 -8585433,"DeathSpank Thongs Of Virtue",purchase,1.0,0 -8585433,"Desktop Dungeons Goatperson DLC",purchase,1.0,0 -8585433,"Desktop Dungeons Soundtrack",purchase,1.0,0 -8585433,"Diehard Dungeon",purchase,1.0,0 -8585433,"Dino D-Day",purchase,1.0,0 -8585433,"Dishonored",purchase,1.0,0 -8585433,"Don't Starve Reign of Giants",purchase,1.0,0 -8585433,"Don't Starve Together Beta",purchase,1.0,0 -8585433,"Dr.Green",purchase,1.0,0 -8585433,"Dungeon Crawlers HD",purchase,1.0,0 -8585433,"Dungeonland - All access pass",purchase,1.0,0 -8585433,"Dungeons of Dredmor",purchase,1.0,0 -8585433,"Eron",purchase,1.0,0 -8585433,"Ether Vapor Remaster",purchase,1.0,0 -8585433,"EverQuest II Rise of Kunark",purchase,1.0,0 -8585433,"EverQuest II The Shadow Odyssey",purchase,1.0,0 -8585433,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -8585433,"Fallout New Vegas Dead Money",purchase,1.0,0 -8585433,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -8585433,"Far Cry 3 Blood Dragon",purchase,1.0,0 -8585433,"Firefall",purchase,1.0,0 -8585433,"Fortune Summoners Secret of the Elemental Stone",purchase,1.0,0 -8585433,"Garshasp Temple of the Dragon",purchase,1.0,0 -8585433,"Giana Sisters Twisted Dreams",purchase,1.0,0 -8585433,"Giana Sisters Twisted Dreams - Rise of the Owlverlord",purchase,1.0,0 -8585433,"Governor of Poker 2",purchase,1.0,0 -8585433,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -8585433,"Grand Theft Auto IV",purchase,1.0,0 -8585433,"Grim Fandango Remastered",purchase,1.0,0 -8585433,"Guacamelee! Gold Edition",purchase,1.0,0 -8585433,"Guns of Icarus Online",purchase,1.0,0 -8585433,"Hack, Slash, Loot",purchase,1.0,0 -8585433,"Half-Life",purchase,1.0,0 -8585433,"Half-Life 2",purchase,1.0,0 -8585433,"Half-Life 2 Deathmatch",purchase,1.0,0 -8585433,"Half-Life 2 Lost Coast",purchase,1.0,0 -8585433,"Half-Life Blue Shift",purchase,1.0,0 -8585433,"Half-Life Opposing Force",purchase,1.0,0 -8585433,"Hero Siege - The Karp of Doom",purchase,1.0,0 -8585433,"Hotline Miami 2 Wrong Number",purchase,1.0,0 -8585433,"Insurgency",purchase,1.0,0 -8585433,"Intergalactic Bubbles",purchase,1.0,0 -8585433,"Kerbal Space Program",purchase,1.0,0 -8585433,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -8585433,"Kingdom Tales",purchase,1.0,0 -8585433,"Kraven Manor",purchase,1.0,0 -8585433,"Legend of Grimrock 2",purchase,1.0,0 -8585433,"LUFTRAUSERS",purchase,1.0,0 -8585433,"Magicite",purchase,1.0,0 -8585433,"Magicka Vietnam",purchase,1.0,0 -8585433,"Magicka Wizard Wars",purchase,1.0,0 -8585433,"Man Alive Game",purchase,1.0,0 -8585433,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -8585433,"Medal of Honor(TM) Single Player",purchase,1.0,0 -8585433,"Medal of Honor Pre-Order",purchase,1.0,0 -8585433,"Megabyte Punch",purchase,1.0,0 -8585433,"Mercenary Kings",purchase,1.0,0 -8585433,"METAL SLUG 3",purchase,1.0,0 -8585433,"Monaco",purchase,1.0,0 -8585433,"Musclecar Online",purchase,1.0,0 -8585433,"MX vs. ATV Reflex",purchase,1.0,0 -8585433,"Nation Red",purchase,1.0,0 -8585433,"NotGTAV",purchase,1.0,0 -8585433,"Numba Deluxe",purchase,1.0,0 -8585433,"One Way Heroics",purchase,1.0,0 -8585433,"Orcs Must Die! 2",purchase,1.0,0 -8585433,"Paranautical Activity Deluxe Atonement Edition",purchase,1.0,0 -8585433,"Patch testing for Chivalry",purchase,1.0,0 -8585433,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",purchase,1.0,0 -8585433,"Pixel Piracy",purchase,1.0,0 -8585433,"Poker Night at the Inventory",purchase,1.0,0 -8585433,"Portal 2",purchase,1.0,0 -8585433,"Post Apocalyptic Mayhem",purchase,1.0,0 -8585433,"Pressure",purchase,1.0,0 -8585433,"Realm of Perpetual Guilds",purchase,1.0,0 -8585433,"Realms of Arkania Blade of Destiny",purchase,1.0,0 -8585433,"Recettear An Item Shop's Tale",purchase,1.0,0 -8585433,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -8585433,"Ricochet",purchase,1.0,0 -8585433,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -8585433,"Rocket League",purchase,1.0,0 -8585433,"Saints Row 2",purchase,1.0,0 -8585433,"Saints Row The Third",purchase,1.0,0 -8585433,"Saints Row IV",purchase,1.0,0 -8585433,"Saira",purchase,1.0,0 -8585433,"Shadowgrounds",purchase,1.0,0 -8585433,"Shadowrun Returns",purchase,1.0,0 -8585433,"Shattered Horizon",purchase,1.0,0 -8585433,"Shower With Your Dad Simulator 2015 Do You Still Shower With Your Dad",purchase,1.0,0 -8585433,"Sid Meier's Civilization III Complete",purchase,1.0,0 -8585433,"Sir, You Are Being Hunted",purchase,1.0,0 -8585433,"Skullgirls",purchase,1.0,0 -8585433,"Skullgirls Endless Beta",purchase,1.0,0 -8585433,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -8585433,"South Park The Stick of Truth",purchase,1.0,0 -8585433,"South Park The Stick of Truth - Super Samurai Spaceman Pack",purchase,1.0,0 -8585433,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -8585433,"Spandex Force Champion Rising",purchase,1.0,0 -8585433,"Squishy the Suicidal Pig",purchase,1.0,0 -8585433,"Starbound - Unstable",purchase,1.0,0 -8585433,"Starvoid",purchase,1.0,0 -8585433,"Strike Vector",purchase,1.0,0 -8585433,"Surgeon Simulator",purchase,1.0,0 -8585433,"Sword of the Stars The Pit",purchase,1.0,0 -8585433,"Sword of the Stars The Pit - Mind Games",purchase,1.0,0 -8585433,"Sword of the Stars The Pit Gold DLC",purchase,1.0,0 -8585433,"Tabletop Simulator",purchase,1.0,0 -8585433,"Team Fortress Classic",purchase,1.0,0 -8585433,"Teleglitch Die More Edition",purchase,1.0,0 -8585433,"The Bridge",purchase,1.0,0 -8585433,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -8585433,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -8585433,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -8585433,"The First Templar",purchase,1.0,0 -8585433,"The Hat Man Shadow Ward",purchase,1.0,0 -8585433,"The Jackbox Party Pack",purchase,1.0,0 -8585433,"The Ship Single Player",purchase,1.0,0 -8585433,"The Ship Tutorial",purchase,1.0,0 -8585433,"The Stanley Parable",purchase,1.0,0 -8585433,"The Talos Principle",purchase,1.0,0 -8585433,"Tiny Brains",purchase,1.0,0 -8585433,"Titan Souls",purchase,1.0,0 -8585433,"Torchlight",purchase,1.0,0 -8585433,"Town of Salem",purchase,1.0,0 -8585433,"Transistor",purchase,1.0,0 -8585433,"Trine 2",purchase,1.0,0 -8585433,"Tropico 4",purchase,1.0,0 -8585433,"Uncrowded",purchase,1.0,0 -8585433,"Unepic",purchase,1.0,0 -8585433,"Vagante",purchase,1.0,0 -8585433,"Vegas Make It Big",purchase,1.0,0 -8585433,"Vintage Year",purchase,1.0,0 -8585433,"Volt",purchase,1.0,0 -8585433,"Waveform",purchase,1.0,0 -8585433,"Worms",purchase,1.0,0 -8585433,"Worms Armageddon",purchase,1.0,0 -8585433,"Worms Blast",purchase,1.0,0 -8585433,"Worms Clan Wars",purchase,1.0,0 -8585433,"Worms Pinball",purchase,1.0,0 -8585433,"Worms Reloaded",purchase,1.0,0 -8585433,"Worms Ultimate Mayhem",purchase,1.0,0 -8585433,"XCOM Enemy Within",purchase,1.0,0 -8585433,"Zeno Clash",purchase,1.0,0 -8585433,"Ziggurat",purchase,1.0,0 -206443462,"Without Within",purchase,1.0,0 -206443462,"Quake Live",purchase,1.0,0 -63660695,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -63660695,"Call of Duty Modern Warfare 2 - Multiplayer",play,309.0,0 -63660695,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -63660695,"Warhammer 40,000 Dawn of War II Retribution",play,8.3,0 -63660695,"Call of Duty Modern Warfare 2",purchase,1.0,0 -63660695,"Call of Duty Modern Warfare 2",play,4.9,0 -194642805,"Dota 2",purchase,1.0,0 -194642805,"Dota 2",play,0.2,0 -49319563,"Counter-Strike Source",purchase,1.0,0 -49319563,"Counter-Strike Source",play,5.7,0 -49319563,"Counter-Strike",purchase,1.0,0 -49319563,"Counter-Strike Condition Zero",purchase,1.0,0 -49319563,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -49319563,"Day of Defeat",purchase,1.0,0 -49319563,"Deathmatch Classic",purchase,1.0,0 -49319563,"Ricochet",purchase,1.0,0 -215831986,"Rocksmith 2014",purchase,1.0,0 -215831986,"Rocksmith 2014",play,687.0,0 -59099129,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -59099129,"Call of Duty Black Ops - Multiplayer",play,288.0,0 -59099129,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -59099129,"Call of Duty Black Ops II - Multiplayer",play,165.0,0 -59099129,"Call of Duty Black Ops",purchase,1.0,0 -59099129,"Call of Duty Black Ops",play,30.0,0 -59099129,"Left 4 Dead 2",purchase,1.0,0 -59099129,"Left 4 Dead 2",play,18.0,0 -59099129,"Call of Duty Black Ops II",purchase,1.0,0 -59099129,"Call of Duty Black Ops II",play,10.7,0 -59099129,"Deus Ex Human Revolution",purchase,1.0,0 -59099129,"Deus Ex Human Revolution",play,5.7,0 -59099129,"Team Fortress 2",purchase,1.0,0 -59099129,"Team Fortress 2",play,4.2,0 -59099129,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -59099129,"Call of Duty Black Ops II - Zombies",play,3.9,0 -11151885,"Half-Life 2",purchase,1.0,0 -11151885,"Half-Life 2",play,1.8,0 -11151885,"Counter-Strike",purchase,1.0,0 -11151885,"Counter-Strike Source",purchase,1.0,0 -11151885,"Day of Defeat",purchase,1.0,0 -11151885,"Deathmatch Classic",purchase,1.0,0 -11151885,"Half-Life",purchase,1.0,0 -11151885,"Half-Life 2 Deathmatch",purchase,1.0,0 -11151885,"Half-Life 2 Lost Coast",purchase,1.0,0 -11151885,"Half-Life Blue Shift",purchase,1.0,0 -11151885,"Half-Life Opposing Force",purchase,1.0,0 -11151885,"Ricochet",purchase,1.0,0 -11151885,"Team Fortress Classic",purchase,1.0,0 -151515141,"Dota 2",purchase,1.0,0 -151515141,"Dota 2",play,0.1,0 -42771635,"Path of Exile",purchase,1.0,0 -42771635,"Path of Exile",play,390.0,0 -42771635,"Dota 2",purchase,1.0,0 -42771635,"Dota 2",play,299.0,0 -42771635,"Team Fortress 2",purchase,1.0,0 -42771635,"Team Fortress 2",play,292.0,0 -42771635,"Garry's Mod",purchase,1.0,0 -42771635,"Garry's Mod",play,259.0,0 -42771635,"Terraria",purchase,1.0,0 -42771635,"Terraria",play,57.0,0 -42771635,"Chivalry Medieval Warfare",purchase,1.0,0 -42771635,"Chivalry Medieval Warfare",play,33.0,0 -42771635,"Super Monday Night Combat",purchase,1.0,0 -42771635,"Super Monday Night Combat",play,33.0,0 -42771635,"Aquaria",purchase,1.0,0 -42771635,"Aquaria",play,28.0,0 -42771635,"Portal",purchase,1.0,0 -42771635,"Portal",play,27.0,0 -42771635,"Endless Space",purchase,1.0,0 -42771635,"Endless Space",play,24.0,0 -42771635,"Dungeon of the Endless",purchase,1.0,0 -42771635,"Dungeon of the Endless",play,23.0,0 -42771635,"Age of Chivalry",purchase,1.0,0 -42771635,"Age of Chivalry",play,22.0,0 -42771635,"Borderlands The Pre-Sequel",purchase,1.0,0 -42771635,"Borderlands The Pre-Sequel",play,22.0,0 -42771635,"Hammerfight",purchase,1.0,0 -42771635,"Hammerfight",play,17.4,0 -42771635,"Endless Legend",purchase,1.0,0 -42771635,"Endless Legend",play,16.3,0 -42771635,"Invisible, Inc.",purchase,1.0,0 -42771635,"Invisible, Inc.",play,16.1,0 -42771635,"Torchlight II",purchase,1.0,0 -42771635,"Torchlight II",play,15.8,0 -42771635,"Mark of the Ninja",purchase,1.0,0 -42771635,"Mark of the Ninja",play,13.9,0 -42771635,"Revenge of the Titans",purchase,1.0,0 -42771635,"Revenge of the Titans",play,13.2,0 -42771635,"The Binding of Isaac",purchase,1.0,0 -42771635,"The Binding of Isaac",play,12.3,0 -42771635,"Trine",purchase,1.0,0 -42771635,"Trine",play,10.4,0 -42771635,"Trine 2",purchase,1.0,0 -42771635,"Trine 2",play,8.3,0 -42771635,"Warframe",purchase,1.0,0 -42771635,"Warframe",play,8.1,0 -42771635,"Starbound",purchase,1.0,0 -42771635,"Starbound",play,7.4,0 -42771635,"Forge",purchase,1.0,0 -42771635,"Forge",play,7.2,0 -42771635,"World of Goo",purchase,1.0,0 -42771635,"World of Goo",play,6.6,0 -42771635,"The Elder Scrolls V Skyrim",purchase,1.0,0 -42771635,"The Elder Scrolls V Skyrim",play,6.3,0 -42771635,"Atom Zombie Smasher ",purchase,1.0,0 -42771635,"Atom Zombie Smasher ",play,5.7,0 -42771635,"FTL Faster Than Light",purchase,1.0,0 -42771635,"FTL Faster Than Light",play,5.2,0 -42771635,"Planetary Annihilation",purchase,1.0,0 -42771635,"Planetary Annihilation",play,5.1,0 -42771635,"The Binding of Isaac Rebirth",purchase,1.0,0 -42771635,"The Binding of Isaac Rebirth",play,4.7,0 -42771635,"Transistor",purchase,1.0,0 -42771635,"Transistor",play,4.7,0 -42771635,"Smashball",purchase,1.0,0 -42771635,"Smashball",play,3.9,0 -42771635,"Dead Island Epidemic",purchase,1.0,0 -42771635,"Dead Island Epidemic",play,3.9,0 -42771635,"Monaco",purchase,1.0,0 -42771635,"Monaco",play,3.7,0 -42771635,"Magicka",purchase,1.0,0 -42771635,"Magicka",play,3.6,0 -42771635,"Risk of Rain",purchase,1.0,0 -42771635,"Risk of Rain",play,3.2,0 -42771635,"Osmos",purchase,1.0,0 -42771635,"Osmos",play,3.1,0 -42771635,"Half-Life 2 Deathmatch",purchase,1.0,0 -42771635,"Half-Life 2 Deathmatch",play,2.9,0 -42771635,"Brawlhalla",purchase,1.0,0 -42771635,"Brawlhalla",play,2.5,0 -42771635,"FEZ",purchase,1.0,0 -42771635,"FEZ",play,2.4,0 -42771635,"And Yet It Moves",purchase,1.0,0 -42771635,"And Yet It Moves",play,2.4,0 -42771635,"How to Survive",purchase,1.0,0 -42771635,"How to Survive",play,2.2,0 -42771635,"War of the Roses",purchase,1.0,0 -42771635,"War of the Roses",play,1.9,0 -42771635,"Nuclear Throne",purchase,1.0,0 -42771635,"Nuclear Throne",play,1.8,0 -42771635,"Shadowgrounds Survivor",purchase,1.0,0 -42771635,"Shadowgrounds Survivor",play,1.8,0 -42771635,"Tribes Ascend",purchase,1.0,0 -42771635,"Tribes Ascend",play,1.5,0 -42771635,"Neverwinter",purchase,1.0,0 -42771635,"Neverwinter",play,1.4,0 -42771635,"Gish",purchase,1.0,0 -42771635,"Gish",play,1.4,0 -42771635,"VVVVVV",purchase,1.0,0 -42771635,"VVVVVV",play,1.3,0 -42771635,"Steel Storm Burning Retribution",purchase,1.0,0 -42771635,"Steel Storm Burning Retribution",play,1.1,0 -42771635,"Cogs",purchase,1.0,0 -42771635,"Cogs",play,0.9,0 -42771635,"Blocks That Matter",purchase,1.0,0 -42771635,"Blocks That Matter",play,0.7,0 -42771635,"Left 4 Dead 2",purchase,1.0,0 -42771635,"Left 4 Dead 2",play,0.7,0 -42771635,"Serious Sam HD The Second Encounter",purchase,1.0,0 -42771635,"Serious Sam HD The Second Encounter",play,0.5,0 -42771635,"Half-Life 2 Lost Coast",purchase,1.0,0 -42771635,"Half-Life 2 Lost Coast",play,0.5,0 -42771635,"Shadowgrounds",purchase,1.0,0 -42771635,"Shadowgrounds",play,0.2,0 -42771635,"Penumbra Overture",purchase,1.0,0 -42771635,"Penumbra Overture",play,0.2,0 -42771635,"F.E.A.R. Online",purchase,1.0,0 -42771635,"F.E.A.R. Online",play,0.2,0 -42771635,"FORCED",purchase,1.0,0 -42771635,"FORCED",play,0.1,0 -42771635,"Source Filmmaker",purchase,1.0,0 -42771635,"Source Filmmaker",play,0.1,0 -42771635,"Crayon Physics Deluxe",purchase,1.0,0 -42771635,"SolForge",purchase,1.0,0 -42771635,"Brothers - A Tale of Two Sons",purchase,1.0,0 -42771635,"Lugaru HD ",purchase,1.0,0 -42771635,"Machinarium",purchase,1.0,0 -42771635,"A Virus Named TOM",purchase,1.0,0 -42771635,"Bastion",purchase,1.0,0 -42771635,"Braid",purchase,1.0,0 -42771635,"Brtal Legend",purchase,1.0,0 -42771635,"Closure",purchase,1.0,0 -42771635,"Cortex Command",purchase,1.0,0 -42771635,"Dino D-Day",purchase,1.0,0 -42771635,"Dustforce",purchase,1.0,0 -42771635,"Eets Munchies",purchase,1.0,0 -42771635,"Fractured Space",purchase,1.0,0 -42771635,"Hammerwatch",purchase,1.0,0 -42771635,"Indie Game The Movie",purchase,1.0,0 -42771635,"LIMBO",purchase,1.0,0 -42771635,"Mark of the Ninja Special Edition DLC",purchase,1.0,0 -42771635,"Patch testing for Chivalry",purchase,1.0,0 -42771635,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -42771635,"Samorost 2",purchase,1.0,0 -42771635,"Shank 2",purchase,1.0,0 -42771635,"Skyborn",purchase,1.0,0 -42771635,"Snapshot",purchase,1.0,0 -42771635,"Starbound - Unstable",purchase,1.0,0 -42771635,"Teleglitch Die More Edition",purchase,1.0,0 -42771635,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -42771635,"War of the Roses Kingmaker",purchase,1.0,0 -42771635,"War of the Roses Balance Beta",purchase,1.0,0 -216849769,"Farming Simulator 15",purchase,1.0,0 -216849769,"Farming Simulator 15",play,49.0,0 -296801388,"Terraria",purchase,1.0,0 -296801388,"Terraria",play,61.0,0 -225392937,"Warframe",purchase,1.0,0 -225392937,"Warframe",play,4.6,0 -225392937,"Gotham City Impostors Free To Play",purchase,1.0,0 -225392937,"Gotham City Impostors Free To Play",play,2.3,0 -225392937,"AdVenture Capitalist",purchase,1.0,0 -225392937,"AdVenture Capitalist",play,2.2,0 -225392937,"Robocraft",purchase,1.0,0 -225392937,"Robocraft",play,0.5,0 -225392937,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -225392937,"16 Bit Arena",purchase,1.0,0 -73826669,"Call of Duty Black Ops",purchase,1.0,0 -73826669,"Call of Duty Black Ops",play,0.7,0 -73826669,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -73826669,"Call of Duty Black Ops - Multiplayer",play,0.3,0 -166271195,"Dota 2",purchase,1.0,0 -166271195,"Dota 2",play,0.5,0 -198794630,"War Inc. Battlezone",purchase,1.0,0 -198794630,"War Inc. Battlezone",play,0.3,0 -57810800,"Team Fortress 2",purchase,1.0,0 -57810800,"Team Fortress 2",play,29.0,0 -57810800,"Saints Row 2",purchase,1.0,0 -57810800,"Saints Row 2",play,23.0,0 -57810800,"Zombie Panic Source",purchase,1.0,0 -57810800,"Zombie Panic Source",play,0.4,0 -200110639,"Dota 2",purchase,1.0,0 -200110639,"Dota 2",play,2.3,0 -48449055,"Fallout New Vegas",purchase,1.0,0 -48449055,"Fallout New Vegas",play,121.0,0 -48449055,"Left 4 Dead",purchase,1.0,0 -48449055,"Left 4 Dead",play,38.0,0 -48449055,"Left 4 Dead 2",purchase,1.0,0 -48449055,"Left 4 Dead 2",play,11.5,0 -247673871,"Tales Runner",purchase,1.0,0 -247673871,"Tales Runner",play,0.3,0 -212001545,"Canyon Capers",purchase,1.0,0 -212001545,"Victim of Xen",purchase,1.0,0 -258753415,"Dota 2",purchase,1.0,0 -258753415,"Dota 2",play,4.1,0 -258753415,"APB Reloaded",purchase,1.0,0 -258753415,"Dirty Bomb",purchase,1.0,0 -258753415,"FreeStyle2 Street Basketball",purchase,1.0,0 -258753415,"Gotham City Impostors Free To Play",purchase,1.0,0 -258753415,"GunZ 2 The Second Duel",purchase,1.0,0 -258753415,"Heroes & Generals",purchase,1.0,0 -258753415,"Marvel Heroes 2015",purchase,1.0,0 -258753415,"No More Room in Hell",purchase,1.0,0 -258753415,"Nosgoth",purchase,1.0,0 -258753415,"Quake Live",purchase,1.0,0 -258753415,"Ragnarok Online 2",purchase,1.0,0 -258753415,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -258753415,"Trove",purchase,1.0,0 -258753415,"Unturned",purchase,1.0,0 -258753415,"Warframe",purchase,1.0,0 -90786657,"Football Manager 2012",purchase,1.0,0 -90786657,"Football Manager 2012",play,977.0,0 -90786657,"Football Manager 2014",purchase,1.0,0 -90786657,"Football Manager 2014",play,724.0,0 -90786657,"Football Manager 2013",purchase,1.0,0 -90786657,"Football Manager 2013",play,578.0,0 -90786657,"Football Manager 2015",purchase,1.0,0 -90786657,"Football Manager 2015",play,15.0,0 -172163675,"Transformers Fall of Cybertron",purchase,1.0,0 -172163675,"Transformers Fall of Cybertron",play,18.7,0 -172163675,"DC Universe Online",purchase,1.0,0 -172163675,"DC Universe Online",play,4.3,0 -157338877,"Don't Starve Together Beta",purchase,1.0,0 -157338877,"Don't Starve Together Beta",play,46.0,0 -157338877,"Don't Starve",purchase,1.0,0 -157338877,"Don't Starve",play,4.3,0 -157338877,"Starbound",purchase,1.0,0 -157338877,"Starbound",play,0.8,0 -157338877,"Stronghold Kingdoms",purchase,1.0,0 -157338877,"Don't Starve Reign of Giants",purchase,1.0,0 -157338877,"Starbound - Unstable",purchase,1.0,0 -203440072,"The Forest",purchase,1.0,0 -203440072,"The Forest",play,15.1,0 -203440072,"Need for Speed Hot Pursuit",purchase,1.0,0 -203440072,"Need for Speed Hot Pursuit",play,2.4,0 -203440072,"Grand Theft Auto IV",purchase,1.0,0 -203440072,"Grand Theft Auto IV",play,0.9,0 -203440072,"RaceRoom Racing Experience ",purchase,1.0,0 -203440072,"RaceRoom Racing Experience ",play,0.6,0 -203440072,"Unturned",purchase,1.0,0 -203440072,"Unturned",play,0.6,0 -203440072,"Gladiators Online Death Before Dishonor",purchase,1.0,0 -203440072,"Emily is Away",purchase,1.0,0 -203440072,"Heroes & Generals",purchase,1.0,0 -203440072,"QuestRun",purchase,1.0,0 -203440072,"Survarium",purchase,1.0,0 -203440072,"War Thunder",purchase,1.0,0 -48149238,"Total War SHOGUN 2",purchase,1.0,0 -48149238,"Total War SHOGUN 2",play,654.0,0 -48149238,"Crusader Kings II",purchase,1.0,0 -48149238,"Crusader Kings II",play,608.0,0 -48149238,"Total War ROME II - Emperor Edition",purchase,1.0,0 -48149238,"Total War ROME II - Emperor Edition",play,227.0,0 -48149238,"Mount & Blade Warband",purchase,1.0,0 -48149238,"Mount & Blade Warband",play,195.0,0 -48149238,"Total War ATTILA",purchase,1.0,0 -48149238,"Total War ATTILA",play,165.0,0 -48149238,"Empire Total War",purchase,1.0,0 -48149238,"Empire Total War",play,116.0,0 -48149238,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -48149238,"Warhammer 40,000 Dawn of War II",play,43.0,0 -48149238,"Sid Meier's Civilization V",purchase,1.0,0 -48149238,"Sid Meier's Civilization V",play,37.0,0 -48149238,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -48149238,"Warhammer 40,000 Dawn of War Soulstorm",play,26.0,0 -48149238,"Mount & Blade With Fire and Sword",purchase,1.0,0 -48149238,"Mount & Blade With Fire and Sword",play,23.0,0 -48149238,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -48149238,"Warhammer 40,000 Dawn of War Dark Crusade",play,17.0,0 -48149238,"Game Dev Tycoon",purchase,1.0,0 -48149238,"Game Dev Tycoon",play,12.8,0 -48149238,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -48149238,"Star Wars Jedi Knight Jedi Academy",play,10.6,0 -48149238,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -48149238,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,10.6,0 -48149238,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -48149238,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,8.9,0 -48149238,"Medieval II Total War",purchase,1.0,0 -48149238,"Medieval II Total War",play,8.6,0 -48149238,"Star Wars Knights of the Old Republic",purchase,1.0,0 -48149238,"Star Wars Knights of the Old Republic",play,8.3,0 -48149238,"Mass Effect",purchase,1.0,0 -48149238,"Mass Effect",play,5.7,0 -48149238,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -48149238,"STAR WARS Knights of the Old Republic II The Sith Lords",play,5.0,0 -48149238,"Europa Universalis IV",purchase,1.0,0 -48149238,"Europa Universalis IV",play,4.8,0 -48149238,"Sid Meier's Starships",purchase,1.0,0 -48149238,"Sid Meier's Starships",play,4.7,0 -48149238,"Omerta - City of Gangsters",purchase,1.0,0 -48149238,"Omerta - City of Gangsters",play,4.1,0 -48149238,"Democracy 3",purchase,1.0,0 -48149238,"Democracy 3",play,2.7,0 -48149238,"The Elder Scrolls V Skyrim",purchase,1.0,0 -48149238,"The Elder Scrolls V Skyrim",play,2.5,0 -48149238,"ArcaniA",purchase,1.0,0 -48149238,"ArcaniA",play,1.8,0 -48149238,"Mount & Blade",purchase,1.0,0 -48149238,"Mount & Blade",play,1.5,0 -48149238,"Stronghold 3",purchase,1.0,0 -48149238,"Stronghold 3",play,1.3,0 -48149238,"Chivalry Medieval Warfare",purchase,1.0,0 -48149238,"Chivalry Medieval Warfare",play,1.1,0 -48149238,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -48149238,"Warhammer 40,000 Dawn of War Winter Assault",play,0.6,0 -48149238,"War of the Roses",purchase,1.0,0 -48149238,"War of the Roses",play,0.2,0 -48149238,"Praetorians",purchase,1.0,0 -48149238,"Praetorians",play,0.1,0 -48149238,"Sins of a Dark Age",purchase,1.0,0 -48149238,"Sins of a Dark Age",play,0.1,0 -48149238,"Napoleon Total War",purchase,1.0,0 -48149238,"Napoleon Total War",play,0.1,0 -48149238,"Rome Total War",purchase,1.0,0 -48149238,"Star Wars The Clone Wars Republic Heroes",purchase,1.0,0 -48149238,"Gothic",purchase,1.0,0 -48149238,"Kenshi",purchase,1.0,0 -48149238,"ArcaniA Fall of Setarrif",purchase,1.0,0 -48149238,"Crusader Kings II Sons of Abraham",purchase,1.0,0 -48149238,"Democracy 3 Clones and Drones",purchase,1.0,0 -48149238,"Democracy 3 Extremism",purchase,1.0,0 -48149238,"Democracy 3 Extremism Linux",purchase,1.0,0 -48149238,"Democracy 3 Extremism Mac",purchase,1.0,0 -48149238,"Democracy 3 Social Engineering",purchase,1.0,0 -48149238,"Democracy 3 Social Engineering Linux",purchase,1.0,0 -48149238,"Democracy 3 Social Engineering Mac",purchase,1.0,0 -48149238,"Europa Universalis IV American Dream DLC",purchase,1.0,0 -48149238,"Europa Universalis IV Conquest of Paradise",purchase,1.0,0 -48149238,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -48149238,"Gothic 3",purchase,1.0,0 -48149238,"Gothic 3 Forsaken Gods Enhanced Edition",purchase,1.0,0 -48149238,"Gothic II Gold Edition",purchase,1.0,0 -48149238,"Medieval II Total War Kingdoms",purchase,1.0,0 -48149238,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -48149238,"Mount & Blade Warband - Viking Conquest Reforged Edition",purchase,1.0,0 -48149238,"Patch testing for Chivalry",purchase,1.0,0 -48149238,"Stronghold HD",purchase,1.0,0 -48149238,"Total War ATTILA - Age of Charlemagne Campaign Pack",purchase,1.0,0 -48149238,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -290332490,"Dota 2",purchase,1.0,0 -290332490,"Dota 2",play,1.0,0 -290332490,"Card Hunter",purchase,1.0,0 -290332490,"Clicker Heroes",purchase,1.0,0 -290332490,"FreeStyle2 Street Basketball",purchase,1.0,0 -290332490,"Trove",purchase,1.0,0 -146693761,"Dota 2",purchase,1.0,0 -146693761,"Dota 2",play,7.4,0 -191115240,"Team Fortress 2",purchase,1.0,0 -191115240,"Team Fortress 2",play,11.6,0 -218071326,"Heroes & Generals",purchase,1.0,0 -218071326,"Heroes & Generals",play,30.0,0 -218071326,"APB Reloaded",purchase,1.0,0 -181107812,"Dota 2",purchase,1.0,0 -181107812,"Dota 2",play,1.0,0 -196921868,"Dota 2",purchase,1.0,0 -196921868,"Dota 2",play,10.2,0 -197657608,"Farming Simulator 15",purchase,1.0,0 -197657608,"Farming Simulator 15",play,656.0,0 -197657608,"Crysis Warhead",purchase,1.0,0 -197657608,"Crysis Warhead",play,52.0,0 -197657608,"Grand Theft Auto San Andreas",purchase,1.0,0 -197657608,"Grand Theft Auto San Andreas",play,28.0,0 -197657608,"Crysis",purchase,1.0,0 -197657608,"Crysis",play,25.0,0 -197657608,"Red Crucible Firestorm",purchase,1.0,0 -197657608,"Red Crucible Firestorm",play,0.6,0 -197657608,"Crysis Wars",purchase,1.0,0 -197657608,"Grand Theft Auto San Andreas",purchase,1.0,0 -241303303,"DiggerOnline",purchase,1.0,0 -241303303,"DiggerOnline",play,0.3,0 -241303303,"Unturned",purchase,1.0,0 -117742782,"The Cursed Crusade",purchase,1.0,0 -117742782,"The Cursed Crusade",play,0.2,0 -117742782,"Hitman Absolution",purchase,1.0,0 -117742782,"Hitman Absolution",play,0.2,0 -253961136,"Team Fortress 2",purchase,1.0,0 -253961136,"Team Fortress 2",play,568.0,0 -253961136,"Source Filmmaker",purchase,1.0,0 -253961136,"Source Filmmaker",play,34.0,0 -253961136,"Saints Row The Third",purchase,1.0,0 -253961136,"Saints Row The Third",play,18.2,0 -253961136,"Left 4 Dead",purchase,1.0,0 -253961136,"Left 4 Dead",play,3.9,0 -253961136,"Left 4 Dead 2",purchase,1.0,0 -253961136,"Left 4 Dead 2",play,3.5,0 -253961136,"GunZ 2 The Second Duel",purchase,1.0,0 -253961136,"GunZ 2 The Second Duel",play,0.5,0 -253961136,"No More Room in Hell",purchase,1.0,0 -253961136,"No More Room in Hell",play,0.4,0 -253961136,"Aura Kingdom",purchase,1.0,0 -253961136,"FreeStyle2 Street Basketball",purchase,1.0,0 -253961136,"Marvel Heroes 2015",purchase,1.0,0 -253961136,"Ragnarok Online 2",purchase,1.0,0 -253961136,"RIFT",purchase,1.0,0 -253961136,"theHunter",purchase,1.0,0 -253961136,"Unturned",purchase,1.0,0 -253961136,"Warframe",purchase,1.0,0 -283068492,"Dota 2",purchase,1.0,0 -283068492,"Dota 2",play,16.0,0 -245342503,"Unturned",purchase,1.0,0 -245342503,"Unturned",play,0.2,0 -245342503,"Batla",purchase,1.0,0 -245342503,"BLOCKADE 3D",purchase,1.0,0 -245342503,"Gear Up",purchase,1.0,0 -245342503,"Red Crucible Firestorm",purchase,1.0,0 -245342503,"Robocraft",purchase,1.0,0 -49630184,"Sid Meier's Civilization V",purchase,1.0,0 -49630184,"Sid Meier's Civilization V",play,455.0,0 -49630184,"Mass Effect",purchase,1.0,0 -49630184,"Mass Effect",play,247.0,0 -49630184,"Defense Grid The Awakening",purchase,1.0,0 -49630184,"Defense Grid The Awakening",play,156.0,0 -49630184,"Divinity Original Sin",purchase,1.0,0 -49630184,"Divinity Original Sin",play,138.0,0 -49630184,"Mass Effect 2",purchase,1.0,0 -49630184,"Mass Effect 2",play,129.0,0 -49630184,"FTL Faster Than Light",purchase,1.0,0 -49630184,"FTL Faster Than Light",play,101.0,0 -49630184,"X-COM UFO Defense",purchase,1.0,0 -49630184,"X-COM UFO Defense",play,62.0,0 -49630184,"Banished",purchase,1.0,0 -49630184,"Banished",play,39.0,0 -49630184,"Harvest Massive Encounter",purchase,1.0,0 -49630184,"Harvest Massive Encounter",play,22.0,0 -49630184,"Gratuitous Space Battles",purchase,1.0,0 -49630184,"Gratuitous Space Battles",play,14.8,0 -49630184,"Greed Corp",purchase,1.0,0 -49630184,"Greed Corp",play,14.8,0 -49630184,"rymdkapsel",purchase,1.0,0 -49630184,"rymdkapsel",play,1.1,0 -49630184,"Creeper World 3 Arc Eternal",purchase,1.0,0 -49630184,"Creeper World 3 Arc Eternal",play,0.8,0 -49630184,"Loom",purchase,1.0,0 -49630184,"Loom",play,0.4,0 -49630184,"Indiana Jones and the Fate of Atlantis",purchase,1.0,0 -49630184,"Defense Grid Resurgence Map Pack 1",purchase,1.0,0 -49630184,"Defense Grid Resurgence Map Pack 2 ",purchase,1.0,0 -49630184,"Defense Grid Resurgence Map Pack 3",purchase,1.0,0 -49630184,"Defense Grid Resurgence Map Pack 4",purchase,1.0,0 -49630184,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -49630184,"Indiana Jones and the Last Crusade",purchase,1.0,0 -49630184,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -49630184,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -49630184,"The Dig",purchase,1.0,0 -49630184,"X-COM Apocalypse",purchase,1.0,0 -49630184,"X-COM Enforcer",purchase,1.0,0 -49630184,"X-COM Interceptor",purchase,1.0,0 -49630184,"X-COM Terror from the Deep",purchase,1.0,0 -155528118,"Dota 2",purchase,1.0,0 -155528118,"Dota 2",play,1.0,0 -102971783,"Dota 2",purchase,1.0,0 -102971783,"Dota 2",play,737.0,0 -201187797,"NBA 2K16",purchase,1.0,0 -201187797,"NBA 2K16",play,293.0,0 -201187797,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -201187797,"METAL GEAR SOLID V THE PHANTOM PAIN",play,81.0,0 -201187797,"Dota 2",purchase,1.0,0 -201187797,"Dota 2",play,4.9,0 -201187797,"Marvel Heroes 2015",purchase,1.0,0 -201187797,"Marvel Heroes 2015",play,0.6,0 -201187797,"Free to Play",purchase,1.0,0 -201187797,"Strife",purchase,1.0,0 -205579387,"Dota 2",purchase,1.0,0 -205579387,"Dota 2",play,0.8,0 -89245804,"PAYDAY 2",purchase,1.0,0 -89245804,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -41247053,"GTR Evolution",purchase,1.0,0 -41247053,"GTR Evolution",play,0.2,0 -41247053,"RACE 07",purchase,1.0,0 -41247053,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -134017049,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -134017049,"Rising Storm/Red Orchestra 2 Multiplayer",play,5.4,0 -134017049,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -134017049,"Red Orchestra Ostfront 41-45",play,0.8,0 -134017049,"Darkest Hour Europe '44-'45",purchase,1.0,0 -134017049,"Mare Nostrum",purchase,1.0,0 -134017049,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -248258315,"Dota 2",purchase,1.0,0 -248258315,"Dota 2",play,29.0,0 -248258315,"Aura Kingdom",purchase,1.0,0 -248258315,"Dirty Bomb",purchase,1.0,0 -248258315,"UberStrike",purchase,1.0,0 -206903573,"Metro 2033",purchase,1.0,0 -17017968,"Team Fortress 2",purchase,1.0,0 -17017968,"Team Fortress 2",play,3503.0,0 -17017968,"Counter-Strike Global Offensive",purchase,1.0,0 -17017968,"Counter-Strike Global Offensive",play,1397.0,0 -17017968,"DayZ",purchase,1.0,0 -17017968,"DayZ",play,931.0,0 -17017968,"Counter-Strike Source",purchase,1.0,0 -17017968,"Counter-Strike Source",play,872.0,0 -17017968,"Age of Empires II HD Edition",purchase,1.0,0 -17017968,"Age of Empires II HD Edition",play,247.0,0 -17017968,"Left 4 Dead 2",purchase,1.0,0 -17017968,"Left 4 Dead 2",play,59.0,0 -17017968,"Portal 2",purchase,1.0,0 -17017968,"Portal 2",play,26.0,0 -17017968,"Insurgency",purchase,1.0,0 -17017968,"Insurgency",play,23.0,0 -17017968,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -17017968,"F.E.A.R. 2 Project Origin",play,21.0,0 -17017968,"BioShock",purchase,1.0,0 -17017968,"BioShock",play,12.5,0 -17017968,"Sniper Elite V2",purchase,1.0,0 -17017968,"Sniper Elite V2",play,8.5,0 -17017968,"Portal",purchase,1.0,0 -17017968,"Portal",play,6.0,0 -17017968,"Half-Life 2",purchase,1.0,0 -17017968,"Half-Life 2",play,1.6,0 -17017968,"Alien Swarm",purchase,1.0,0 -17017968,"Alien Swarm",play,0.5,0 -17017968,"Metro 2033",purchase,1.0,0 -17017968,"Metro 2033",play,0.4,0 -17017968,"Half-Life 2 Deathmatch",purchase,1.0,0 -17017968,"Half-Life 2 Episode One",purchase,1.0,0 -17017968,"Half-Life 2 Lost Coast",purchase,1.0,0 -89946150,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -89946150,"Call of Duty Black Ops - Multiplayer",play,297.0,0 -89946150,"Call of Duty Black Ops",purchase,1.0,0 -89946150,"Call of Duty Black Ops",play,9.0,0 -214049375,"Dota 2",purchase,1.0,0 -214049375,"Dota 2",play,195.0,0 -126200826,"Crusader Kings II",purchase,1.0,0 -126200826,"Crusader Kings II",play,196.0,0 -126200826,"Total War ROME II - Emperor Edition",purchase,1.0,0 -126200826,"Total War ROME II - Emperor Edition",play,22.0,0 -126200826,"Prison Architect",purchase,1.0,0 -126200826,"Prison Architect",play,20.0,0 -126200826,"Empire Total War",purchase,1.0,0 -126200826,"Empire Total War",play,15.3,0 -126200826,"The Elder Scrolls V Skyrim",purchase,1.0,0 -126200826,"The Elder Scrolls V Skyrim",play,13.4,0 -126200826,"Euro Truck Simulator 2",purchase,1.0,0 -126200826,"Euro Truck Simulator 2",play,9.2,0 -126200826,"Kerbal Space Program",purchase,1.0,0 -126200826,"Kerbal Space Program",play,7.2,0 -126200826,"Arma 2",purchase,1.0,0 -126200826,"Arma 2",play,6.3,0 -126200826,"Europa Universalis IV",purchase,1.0,0 -126200826,"Europa Universalis IV",play,3.7,0 -126200826,"Napoleon Total War",purchase,1.0,0 -126200826,"Napoleon Total War",play,1.1,0 -126200826,"Sid Meier's Civilization V",purchase,1.0,0 -126200826,"Sid Meier's Civilization V",play,0.9,0 -126200826,"Total War ATTILA",purchase,1.0,0 -126200826,"Total War ATTILA",play,0.9,0 -126200826,"Arma 2 DayZ Mod",purchase,1.0,0 -126200826,"Arma 2 DayZ Mod",play,0.8,0 -126200826,"Arma 2 Operation Arrowhead",purchase,1.0,0 -126200826,"Arma 2 Operation Arrowhead",play,0.7,0 -126200826,"Garry's Mod",purchase,1.0,0 -126200826,"Garry's Mod",play,0.3,0 -126200826,"Star Wars - Battlefront II",purchase,1.0,0 -126200826,"Star Wars - Battlefront II",play,0.2,0 -126200826,"Kenshi",purchase,1.0,0 -126200826,"Kenshi",play,0.1,0 -126200826,"State of Decay",purchase,1.0,0 -126200826,"Arma 2 British Armed Forces",purchase,1.0,0 -126200826,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -126200826,"Arma 2 Private Military Company",purchase,1.0,0 -126200826,"Grand Theft Auto V",purchase,1.0,0 -161117453,"Dota 2",purchase,1.0,0 -161117453,"Dota 2",play,258.0,0 -161117453,"Unturned",purchase,1.0,0 -161117453,"Unturned",play,17.8,0 -161117453,"Aura Kingdom",purchase,1.0,0 -161117453,"Aura Kingdom",play,4.5,0 -161117453,"Voices from the Sea",purchase,1.0,0 -161117453,"Voices from the Sea",play,0.2,0 -161117453,"TERA",purchase,1.0,0 -247891137,"Unturned",purchase,1.0,0 -247891137,"Unturned",play,5.4,0 -247891137,"BLOCKADE 3D",purchase,1.0,0 -117581255,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -117581255,"Call of Duty Black Ops II - Multiplayer",play,103.0,0 -117581255,"Call of Duty Black Ops II",purchase,1.0,0 -117581255,"Call of Duty Black Ops II",play,7.5,0 -117581255,"Saints Row The Third",purchase,1.0,0 -117581255,"Saints Row The Third",play,3.3,0 -117581255,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -117581255,"Call of Duty Black Ops II - Zombies",play,0.7,0 -102831764,"Dota 2",purchase,1.0,0 -102831764,"Dota 2",play,399.0,0 -102831764,"SMITE",purchase,1.0,0 -102831764,"SMITE",play,2.6,0 -148894894,"Dota 2",purchase,1.0,0 -148894894,"Dota 2",play,1.5,0 -186194652,"Dota 2",purchase,1.0,0 -186194652,"Dota 2",play,522.0,0 -186194652,"Team Fortress 2",purchase,1.0,0 -186194652,"Team Fortress 2",play,0.3,0 -186194652,"Dead Island Epidemic",purchase,1.0,0 -186194652,"Heroes & Generals",purchase,1.0,0 -186194652,"Neverwinter",purchase,1.0,0 -186194652,"Quake Live",purchase,1.0,0 -186194652,"Robocraft",purchase,1.0,0 -186194652,"Unturned",purchase,1.0,0 -186194652,"Warframe",purchase,1.0,0 -275699008,"Counter-Strike Global Offensive",purchase,1.0,0 -275699008,"Counter-Strike Global Offensive",play,205.0,0 -275699008,"Dota 2",purchase,1.0,0 -275699008,"Dota 2",play,8.3,0 -275699008,"Racer 8",purchase,1.0,0 -146517796,"Rome Total War",purchase,1.0,0 -146517796,"Rome Total War",play,252.0,0 -146517796,"Grand Theft Auto Vice City",purchase,1.0,0 -146517796,"Grand Theft Auto Vice City",play,22.0,0 -146517796,"Total War ROME II - Emperor Edition",purchase,1.0,0 -146517796,"Total War ROME II - Emperor Edition",play,15.7,0 -146517796,"Cossacks II Napoleonic Wars",purchase,1.0,0 -146517796,"Cossacks II Napoleonic Wars",play,6.1,0 -146517796,"Blitzkrieg Anthology",purchase,1.0,0 -146517796,"Blitzkrieg Anthology",play,0.8,0 -146517796,"Grand Theft Auto Vice City",purchase,1.0,0 -134776102,"Dota 2",purchase,1.0,0 -134776102,"Dota 2",play,481.0,0 -134776102,"Rome Total War",purchase,1.0,0 -134776102,"Rome Total War",play,32.0,0 -134776102,"Dead Island",purchase,1.0,0 -230640485,"Dota 2",purchase,1.0,0 -230640485,"Dota 2",play,2.1,0 -199668978,"Dota 2",purchase,1.0,0 -199668978,"Dota 2",play,0.2,0 -125141344,"Team Fortress 2",purchase,1.0,0 -125141344,"Team Fortress 2",play,2956.0,0 -125141344,"No More Room in Hell",purchase,1.0,0 -125141344,"No More Room in Hell",play,40.0,0 -125141344,"War Thunder",purchase,1.0,0 -125141344,"War Thunder",play,4.2,0 -125141344,"Tactical Intervention",purchase,1.0,0 -125141344,"Tactical Intervention",play,2.5,0 -125141344,"Heroes & Generals",purchase,1.0,0 -125141344,"Heroes & Generals",play,2.2,0 -125141344,"AdVenture Capitalist",purchase,1.0,0 -125141344,"AdVenture Capitalist",play,1.5,0 -125141344,"Unturned",purchase,1.0,0 -125141344,"Unturned",play,1.2,0 -125141344,"Source Filmmaker",purchase,1.0,0 -125141344,"Source Filmmaker",play,0.3,0 -125141344,"Counter-Strike Nexon Zombies",purchase,1.0,0 -125141344,"Counter-Strike Nexon Zombies",play,0.3,0 -125141344,"War Inc. Battlezone",purchase,1.0,0 -64455019,"Sid Meier's Civilization IV",purchase,1.0,0 -64455019,"Sid Meier's Civilization IV",play,19.4,0 -64455019,"Sid Meier's Civilization IV",purchase,1.0,0 -64455019,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -64455019,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -64455019,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -64455019,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -64455019,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -64455019,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -119228046,"Dota 2",purchase,1.0,0 -119228046,"Dota 2",play,36.0,0 -119228046,"Team Fortress 2",purchase,1.0,0 -119228046,"Team Fortress 2",play,33.0,0 -253530557,"Counter-Strike Global Offensive",purchase,1.0,0 -253530557,"Counter-Strike Global Offensive",play,20.0,0 -26572597,"Counter-Strike Source",purchase,1.0,0 -26572597,"Counter-Strike Source",play,3.8,0 -26572597,"Day of Defeat Source",purchase,1.0,0 -26572597,"Half-Life 2 Deathmatch",purchase,1.0,0 -26572597,"Half-Life 2 Lost Coast",purchase,1.0,0 -146007471,"Dota 2",purchase,1.0,0 -146007471,"Dota 2",play,905.0,0 -146007471,"Sid Meier's Civilization V",purchase,1.0,0 -146007471,"Sid Meier's Civilization V",play,75.0,0 -146007471,"Team Fortress 2",purchase,1.0,0 -146007471,"Team Fortress 2",play,49.0,0 -146007471,"XCOM Enemy Unknown",purchase,1.0,0 -146007471,"XCOM Enemy Unknown",play,25.0,0 -146007471,"Robocraft",purchase,1.0,0 -146007471,"Robocraft",play,18.4,0 -146007471,"Dirty Bomb",purchase,1.0,0 -146007471,"Dirty Bomb",play,18.0,0 -146007471,"PlanetSide 2",purchase,1.0,0 -146007471,"PlanetSide 2",play,13.2,0 -146007471,"Counter-Strike Global Offensive",purchase,1.0,0 -146007471,"Counter-Strike Global Offensive",play,12.9,0 -146007471,"Magicka Wizard Wars",purchase,1.0,0 -146007471,"Magicka Wizard Wars",play,10.0,0 -146007471,"Warframe",purchase,1.0,0 -146007471,"Warframe",play,9.9,0 -146007471,"Trove",purchase,1.0,0 -146007471,"Trove",play,5.7,0 -146007471,"SMITE",purchase,1.0,0 -146007471,"SMITE",play,3.7,0 -146007471,"AirMech",purchase,1.0,0 -146007471,"AirMech",play,3.6,0 -146007471,"War Thunder",purchase,1.0,0 -146007471,"War Thunder",play,3.2,0 -146007471,"Loadout",purchase,1.0,0 -146007471,"Loadout",play,2.8,0 -146007471,"The Elder Scrolls V Skyrim",purchase,1.0,0 -146007471,"The Elder Scrolls V Skyrim",play,2.7,0 -146007471,"Awesomenauts",purchase,1.0,0 -146007471,"Awesomenauts",play,2.6,0 -146007471,"Defiance",purchase,1.0,0 -146007471,"Defiance",play,2.3,0 -146007471,"The Mighty Quest For Epic Loot",purchase,1.0,0 -146007471,"The Mighty Quest For Epic Loot",play,2.3,0 -146007471,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -146007471,"Tom Clancy's Ghost Recon Phantoms - EU",play,2.2,0 -146007471,"Nosgoth",purchase,1.0,0 -146007471,"Nosgoth",play,2.1,0 -146007471,"Realm of the Mad God",purchase,1.0,0 -146007471,"Realm of the Mad God",play,1.4,0 -146007471,"HAWKEN",purchase,1.0,0 -146007471,"HAWKEN",play,1.3,0 -146007471,"Terraria",purchase,1.0,0 -146007471,"Terraria",play,1.1,0 -146007471,"Free to Play",purchase,1.0,0 -146007471,"Free to Play",play,1.0,0 -146007471,"Star Conflict",purchase,1.0,0 -146007471,"Star Conflict",play,0.5,0 -146007471,"Heroes & Generals",purchase,1.0,0 -146007471,"Heroes & Generals",play,0.5,0 -146007471,"PAYDAY The Heist",purchase,1.0,0 -146007471,"PAYDAY The Heist",play,0.4,0 -146007471,"Dethroned!",purchase,1.0,0 -146007471,"Dethroned!",play,0.3,0 -146007471,"Toribash",purchase,1.0,0 -146007471,"Toribash",play,0.3,0 -146007471,"MechWarrior Online",purchase,1.0,0 -146007471,"MechWarrior Online",play,0.3,0 -146007471,"Devilian",purchase,1.0,0 -146007471,"Super Monday Night Combat",purchase,1.0,0 -146007471,"Dungeon Defenders II",purchase,1.0,0 -146007471,"Path of Exile",purchase,1.0,0 -146007471,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -146007471,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -146007471,"Star Trek Online",purchase,1.0,0 -146007471,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -146007471,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -146007471,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -146007471,"XCOM Enemy Within",purchase,1.0,0 -141586040,"Dota 2",purchase,1.0,0 -141586040,"Dota 2",play,3.8,0 -190547288,"Unturned",purchase,1.0,0 -190547288,"Unturned",play,10.2,0 -190547288,"No More Room in Hell",purchase,1.0,0 -190547288,"No More Room in Hell",play,7.2,0 -190547288,"Robocraft",purchase,1.0,0 -190547288,"Heroes & Generals",purchase,1.0,0 -255241051,"Farming Simulator 2013",purchase,1.0,0 -255241051,"Farming Simulator 2013",play,3.5,0 -38781158,"The Ship Single Player",purchase,1.0,0 -38781158,"The Ship Single Player",play,0.4,0 -38781158,"The Ship",purchase,1.0,0 -38781158,"The Ship Tutorial",purchase,1.0,0 -96520565,"Call of Duty Modern Warfare 3",purchase,1.0,0 -96520565,"Call of Duty Modern Warfare 3",play,6.5,0 -96520565,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -37339809,"Counter-Strike",purchase,1.0,0 -37339809,"Counter-Strike",play,0.8,0 -37339809,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -37339809,"Counter-Strike Condition Zero Deleted Scenes",play,0.8,0 -37339809,"Counter-Strike Condition Zero",purchase,1.0,0 -249847732,"Dota 2",purchase,1.0,0 -249847732,"Dota 2",play,13.0,0 -50500338,"Team Fortress 2",purchase,1.0,0 -50500338,"Team Fortress 2",play,9.9,0 -50500338,"Zombie Panic Source",purchase,1.0,0 -50500338,"Zombie Panic Source",play,4.7,0 -206849672,"Dota 2",purchase,1.0,0 -206849672,"Dota 2",play,271.0,0 -204673876,"TOME Immortal Arena",purchase,1.0,0 -237969678,"Counter-Strike Global Offensive",purchase,1.0,0 -237969678,"Counter-Strike Global Offensive",play,712.0,0 -237969678,"Marvel Heroes 2015",purchase,1.0,0 -237969678,"Rise of Flight United",purchase,1.0,0 -237969678,"Tribes Ascend",purchase,1.0,0 -286706280,"Dota 2",purchase,1.0,0 -286706280,"Dota 2",play,35.0,0 -286706280,"Heroes of Scene",purchase,1.0,0 -75368808,"Europa Universalis IV",purchase,1.0,0 -75368808,"Europa Universalis IV",play,917.0,0 -75368808,"Mount & Blade Warband",purchase,1.0,0 -75368808,"Mount & Blade Warband",play,822.0,0 -75368808,"Empire Total War",purchase,1.0,0 -75368808,"Empire Total War",play,267.0,0 -75368808,"Napoleon Total War",purchase,1.0,0 -75368808,"Napoleon Total War",play,219.0,0 -75368808,"Total War SHOGUN 2",purchase,1.0,0 -75368808,"Total War SHOGUN 2",play,205.0,0 -75368808,"Victoria II",purchase,1.0,0 -75368808,"Victoria II",play,155.0,0 -75368808,"Sid Meier's Civilization V",purchase,1.0,0 -75368808,"Sid Meier's Civilization V",play,146.0,0 -75368808,"Crusader Kings II",purchase,1.0,0 -75368808,"Crusader Kings II",play,131.0,0 -75368808,"Life is Feudal Your Own",purchase,1.0,0 -75368808,"Life is Feudal Your Own",play,103.0,0 -75368808,"Expeditions Conquistador",purchase,1.0,0 -75368808,"Expeditions Conquistador",play,92.0,0 -75368808,"Spore Galactic Adventures",purchase,1.0,0 -75368808,"Spore Galactic Adventures",play,81.0,0 -75368808,"Garry's Mod",purchase,1.0,0 -75368808,"Garry's Mod",play,73.0,0 -75368808,"Fallout New Vegas",purchase,1.0,0 -75368808,"Fallout New Vegas",play,72.0,0 -75368808,"Anno 2070",purchase,1.0,0 -75368808,"Anno 2070",play,69.0,0 -75368808,"Mount & Blade With Fire and Sword",purchase,1.0,0 -75368808,"Mount & Blade With Fire and Sword",play,60.0,0 -75368808,"War Thunder",purchase,1.0,0 -75368808,"War Thunder",play,58.0,0 -75368808,"Age of Empires III Complete Collection",purchase,1.0,0 -75368808,"Age of Empires III Complete Collection",play,54.0,0 -75368808,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -75368808,"SEGA Genesis & Mega Drive Classics",play,48.0,0 -75368808,"The Long Dark",purchase,1.0,0 -75368808,"The Long Dark",play,35.0,0 -75368808,"Kerbal Space Program",purchase,1.0,0 -75368808,"Kerbal Space Program",play,32.0,0 -75368808,"Terraria",purchase,1.0,0 -75368808,"Terraria",play,28.0,0 -75368808,"Starbound",purchase,1.0,0 -75368808,"Starbound",play,26.0,0 -75368808,"Prison Architect",purchase,1.0,0 -75368808,"Prison Architect",play,26.0,0 -75368808,"Space Engineers",purchase,1.0,0 -75368808,"Space Engineers",play,25.0,0 -75368808,"Dawn of Discovery - Venice",purchase,1.0,0 -75368808,"Dawn of Discovery - Venice",play,24.0,0 -75368808,"Medieval II Total War",purchase,1.0,0 -75368808,"Medieval II Total War",play,20.0,0 -75368808,"FTL Faster Than Light",purchase,1.0,0 -75368808,"FTL Faster Than Light",play,19.9,0 -75368808,"Insurgency",purchase,1.0,0 -75368808,"Insurgency",play,19.8,0 -75368808,"Unturned",purchase,1.0,0 -75368808,"Unturned",play,19.2,0 -75368808,"Total War ROME II - Emperor Edition",purchase,1.0,0 -75368808,"Total War ROME II - Emperor Edition",play,18.6,0 -75368808,"Sir, You Are Being Hunted",purchase,1.0,0 -75368808,"Sir, You Are Being Hunted",play,18.0,0 -75368808,"Sheltered",purchase,1.0,0 -75368808,"Sheltered",play,17.5,0 -75368808,"Caribbean!",purchase,1.0,0 -75368808,"Caribbean!",play,17.3,0 -75368808,"Spore",purchase,1.0,0 -75368808,"Spore",play,15.7,0 -75368808,"PlanetSide 2",purchase,1.0,0 -75368808,"PlanetSide 2",play,15.2,0 -75368808,"Legends of Eisenwald",purchase,1.0,0 -75368808,"Legends of Eisenwald",play,14.8,0 -75368808,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -75368808,"Sid Meier's Civilization IV Colonization",play,10.7,0 -75368808,"Gunpoint",purchase,1.0,0 -75368808,"Gunpoint",play,9.4,0 -75368808,"Goat Simulator",purchase,1.0,0 -75368808,"Goat Simulator",play,9.4,0 -75368808,"Clockwork Empires",purchase,1.0,0 -75368808,"Clockwork Empires",play,8.5,0 -75368808,"Papers, Please",purchase,1.0,0 -75368808,"Papers, Please",play,5.8,0 -75368808,"The Ship",purchase,1.0,0 -75368808,"The Ship",play,5.6,0 -75368808,"The Ship Single Player",purchase,1.0,0 -75368808,"The Ship Single Player",play,3.4,0 -75368808,"Team Fortress 2",purchase,1.0,0 -75368808,"Team Fortress 2",play,1.3,0 -75368808,"The Stanley Parable",purchase,1.0,0 -75368808,"The Stanley Parable",play,0.4,0 -75368808,"The Ship Tutorial",purchase,1.0,0 -75368808,"The Ship Tutorial",play,0.2,0 -75368808,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -75368808,"Fallout 3 - Game of the Year Edition",play,0.2,0 -75368808,"Stronghold Kingdoms",purchase,1.0,0 -75368808,"Stronghold Kingdoms",play,0.2,0 -75368808,"Realm of the Mad God",purchase,1.0,0 -75368808,"Blood & Gold Caribbean!",purchase,1.0,0 -75368808,"Crusader Kings II Sons of Abraham",purchase,1.0,0 -75368808,"Dawn of Discovery",purchase,1.0,0 -75368808,"Dawn of Discovery - Demo",purchase,1.0,0 -75368808,"Europa Universalis IV Conquest of Paradise",purchase,1.0,0 -75368808,"Europa Universalis IV Conquistadors Unit pack ",purchase,1.0,0 -75368808,"Europa Universalis IV National Monuments II",purchase,1.0,0 -75368808,"Europa Universalis IVNative Americans Unit Pack",purchase,1.0,0 -75368808,"Europa Universalis IV Songs of the New World",purchase,1.0,0 -75368808,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -75368808,"Fallout New Vegas Dead Money",purchase,1.0,0 -75368808,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -75368808,"Medieval II Total War Kingdoms",purchase,1.0,0 -75368808,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -75368808,"Mount & Blade Warband - Viking Conquest Reforged Edition",purchase,1.0,0 -75368808,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -75368808,"Starbound - Unstable",purchase,1.0,0 -75368808,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -132418423,"Counter-Strike Global Offensive",purchase,1.0,0 -132418423,"Counter-Strike Global Offensive",play,107.0,0 -132418423,"The Elder Scrolls V Skyrim",purchase,1.0,0 -132418423,"The Elder Scrolls V Skyrim",play,40.0,0 -132418423,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -132418423,"Call of Duty Black Ops II - Multiplayer",play,10.2,0 -132418423,"DayZ",purchase,1.0,0 -132418423,"DayZ",play,2.4,0 -132418423,"Fallout New Vegas",purchase,1.0,0 -132418423,"Fallout New Vegas",play,1.7,0 -132418423,"I Am Alive",purchase,1.0,0 -132418423,"I Am Alive",play,1.0,0 -132418423,"Rig 'n' Roll",purchase,1.0,0 -132418423,"Rig 'n' Roll",play,1.0,0 -132418423,"Grand Theft Auto IV",purchase,1.0,0 -132418423,"Grand Theft Auto IV",play,0.5,0 -132418423,"Dota 2",purchase,1.0,0 -132418423,"Dota 2",play,0.2,0 -132418423,"Team Fortress 2",purchase,1.0,0 -132418423,"Team Fortress 2",play,0.2,0 -132418423,"Just Cause 2",purchase,1.0,0 -132418423,"Call of Duty Black Ops II",purchase,1.0,0 -132418423,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -132418423,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -132418423,"Fallout New Vegas Dead Money",purchase,1.0,0 -132418423,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -50600002,"Left 4 Dead 2",purchase,1.0,0 -50600002,"Left 4 Dead 2",play,81.0,0 -50600002,"Euro Truck Simulator 2",purchase,1.0,0 -50600002,"Euro Truck Simulator 2",play,23.0,0 -50600002,"Grand Chase",purchase,1.0,0 -50600002,"Grand Chase",play,0.8,0 -50600002,"Bus Driver",purchase,1.0,0 -50600002,"Bus Driver",play,0.6,0 -50600002,"Trucks & Trailers",purchase,1.0,0 -50600002,"Trucks & Trailers",play,0.3,0 -50600002,"Euro Truck Simulator",purchase,1.0,0 -50600002,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -50600002,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -50600002,"Scania Truck Driving Simulator",purchase,1.0,0 -159149512,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -159149512,"Call of Duty 4 Modern Warfare",play,10.6,0 -79309149,"Team Fortress 2",purchase,1.0,0 -79309149,"Team Fortress 2",play,1.0,0 -252341097,"Dota 2",purchase,1.0,0 -252341097,"Dota 2",play,0.5,0 -182390817,"Garry's Mod",purchase,1.0,0 -182390817,"Garry's Mod",play,12.3,0 -182390817,"Counter-Strike Source",purchase,1.0,0 -182390817,"Counter-Strike Source",play,0.1,0 -104912720,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -104912720,"Plants vs. Zombies Game of the Year",play,806.0,0 -214144283,"Dota 2",purchase,1.0,0 -214144283,"Dota 2",play,3.3,0 -20366600,"Counter-Strike Source",purchase,1.0,0 -20366600,"Counter-Strike Source",play,53.0,0 -20366600,"RPG Maker VX Ace",purchase,1.0,0 -20366600,"RPG Maker VX Ace",play,21.0,0 -20366600,"Team Fortress 2",purchase,1.0,0 -20366600,"Team Fortress 2",play,18.4,0 -20366600,"Left 4 Dead 2",purchase,1.0,0 -20366600,"Left 4 Dead 2",play,6.6,0 -20366600,"The Typing of The Dead Overkill",purchase,1.0,0 -20366600,"The Typing of The Dead Overkill",play,5.5,0 -20366600,"Audiosurf",purchase,1.0,0 -20366600,"Audiosurf",play,5.1,0 -20366600,"Torchlight",purchase,1.0,0 -20366600,"Torchlight",play,3.7,0 -20366600,"Worms Revolution",purchase,1.0,0 -20366600,"Worms Revolution",play,2.1,0 -20366600,"Counter-Strike Global Offensive",purchase,1.0,0 -20366600,"Counter-Strike Global Offensive",play,1.7,0 -20366600,"Borderlands 2",purchase,1.0,0 -20366600,"Borderlands 2",play,1.4,0 -20366600,"Fallout New Vegas",purchase,1.0,0 -20366600,"Fallout New Vegas",play,1.1,0 -20366600,"Doctor Who The Eternity Clock",purchase,1.0,0 -20366600,"Doctor Who The Eternity Clock",play,0.6,0 -20366600,"Super Meat Boy",purchase,1.0,0 -20366600,"Super Meat Boy",play,0.5,0 -20366600,"Bastion",purchase,1.0,0 -20366600,"Bastion",play,0.5,0 -20366600,"Counter-Strike",purchase,1.0,0 -20366600,"Counter-Strike",play,0.4,0 -20366600,"Rogue Legacy",purchase,1.0,0 -20366600,"Rogue Legacy",play,0.3,0 -20366600,"The Binding of Isaac",purchase,1.0,0 -20366600,"The Binding of Isaac",play,0.2,0 -20366600,"Sid Meier's Civilization V",purchase,1.0,0 -20366600,"Sid Meier's Civilization V",play,0.2,0 -20366600,"Peggle Nights",purchase,1.0,0 -20366600,"Cogs",purchase,1.0,0 -20366600,"And Yet It Moves",purchase,1.0,0 -20366600,"Atom Zombie Smasher ",purchase,1.0,0 -20366600,"Braid",purchase,1.0,0 -20366600,"Counter-Strike Condition Zero",purchase,1.0,0 -20366600,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -20366600,"Crayon Physics Deluxe",purchase,1.0,0 -20366600,"Day of Defeat",purchase,1.0,0 -20366600,"Day of Defeat Source",purchase,1.0,0 -20366600,"Dead Island",purchase,1.0,0 -20366600,"Deathmatch Classic",purchase,1.0,0 -20366600,"Dustforce",purchase,1.0,0 -20366600,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -20366600,"Fallout New Vegas Dead Money",purchase,1.0,0 -20366600,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -20366600,"Half-Life",purchase,1.0,0 -20366600,"Half-Life 2 Deathmatch",purchase,1.0,0 -20366600,"Half-Life 2 Lost Coast",purchase,1.0,0 -20366600,"Hammerfight",purchase,1.0,0 -20366600,"Home",purchase,1.0,0 -20366600,"Machinarium",purchase,1.0,0 -20366600,"Metro 2033",purchase,1.0,0 -20366600,"Osmos",purchase,1.0,0 -20366600,"Revenge of the Titans",purchase,1.0,0 -20366600,"Ricochet",purchase,1.0,0 -20366600,"Risen",purchase,1.0,0 -20366600,"Risen 2 - Dark Waters",purchase,1.0,0 -20366600,"Rochard",purchase,1.0,0 -20366600,"Sacred 2 Gold",purchase,1.0,0 -20366600,"Sacred Citadel",purchase,1.0,0 -20366600,"Saints Row 2",purchase,1.0,0 -20366600,"Saints Row The Third",purchase,1.0,0 -20366600,"Shatter",purchase,1.0,0 -20366600,"Space Pirates and Zombies",purchase,1.0,0 -20366600,"Steel Storm Burning Retribution",purchase,1.0,0 -20366600,"Torchlight II",purchase,1.0,0 -20366600,"Vessel",purchase,1.0,0 -20366600,"VVVVVV",purchase,1.0,0 -52559629,"EVE Online",purchase,1.0,0 -92929791,"Dota 2",purchase,1.0,0 -92929791,"Dota 2",play,30.0,0 -92929791,"FreeStyle2 Street Basketball",purchase,1.0,0 -92929791,"PlanetSide 2",purchase,1.0,0 -92929791,"RIFT",purchase,1.0,0 -92929791,"Spiral Knights",purchase,1.0,0 -92929791,"Warframe",purchase,1.0,0 -34919318,"RIFT",purchase,1.0,0 -34919318,"RIFT",play,590.0,0 -34919318,"Left 4 Dead",purchase,1.0,0 -34919318,"Left 4 Dead",play,250.0,0 -34919318,"Left 4 Dead 2",purchase,1.0,0 -34919318,"Left 4 Dead 2",play,186.0,0 -34919318,"The Witcher 3 Wild Hunt",purchase,1.0,0 -34919318,"The Witcher 3 Wild Hunt",play,75.0,0 -34919318,"Grand Theft Auto V",purchase,1.0,0 -34919318,"Grand Theft Auto V",play,74.0,0 -34919318,"Grand Theft Auto IV",purchase,1.0,0 -34919318,"Grand Theft Auto IV",play,55.0,0 -34919318,"PAYDAY 2",purchase,1.0,0 -34919318,"PAYDAY 2",play,47.0,0 -34919318,"ARK Survival Evolved",purchase,1.0,0 -34919318,"ARK Survival Evolved",play,45.0,0 -34919318,"Assassin's Creed II",purchase,1.0,0 -34919318,"Assassin's Creed II",play,35.0,0 -34919318,"Borderlands",purchase,1.0,0 -34919318,"Borderlands",play,28.0,0 -34919318,"Euro Truck Simulator 2",purchase,1.0,0 -34919318,"Euro Truck Simulator 2",play,27.0,0 -34919318,"Alien Swarm",purchase,1.0,0 -34919318,"Alien Swarm",play,25.0,0 -34919318,"Assassin's Creed",purchase,1.0,0 -34919318,"Assassin's Creed",play,24.0,0 -34919318,"The Witcher Enhanced Edition",purchase,1.0,0 -34919318,"The Witcher Enhanced Edition",play,22.0,0 -34919318,"Grand Theft Auto San Andreas",purchase,1.0,0 -34919318,"Grand Theft Auto San Andreas",play,21.0,0 -34919318,"Garry's Mod",purchase,1.0,0 -34919318,"Garry's Mod",play,19.0,0 -34919318,"Dragon Age Origins",purchase,1.0,0 -34919318,"Dragon Age Origins",play,17.2,0 -34919318,"Borderlands 2",purchase,1.0,0 -34919318,"Borderlands 2",play,17.2,0 -34919318,"Cities Skylines",purchase,1.0,0 -34919318,"Cities Skylines",play,17.0,0 -34919318,"Tomb Raider",purchase,1.0,0 -34919318,"Tomb Raider",play,16.5,0 -34919318,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -34919318,"The Witcher 2 Assassins of Kings Enhanced Edition",play,15.9,0 -34919318,"Assassin's Creed Brotherhood",purchase,1.0,0 -34919318,"Assassin's Creed Brotherhood",play,15.8,0 -34919318,"Assassin's Creed III",purchase,1.0,0 -34919318,"Assassin's Creed III",play,15.7,0 -34919318,"Dead Island",purchase,1.0,0 -34919318,"Dead Island",play,15.1,0 -34919318,"Terraria",purchase,1.0,0 -34919318,"Terraria",play,14.3,0 -34919318,"Aliens vs. Predator",purchase,1.0,0 -34919318,"Aliens vs. Predator",play,13.8,0 -34919318,"Hunted The Demon's Forge",purchase,1.0,0 -34919318,"Hunted The Demon's Forge",play,12.4,0 -34919318,"Dead Space",purchase,1.0,0 -34919318,"Dead Space",play,12.1,0 -34919318,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -34919318,"Fallout 3 - Game of the Year Edition",play,10.3,0 -34919318,"Assassin's Creed Revelations",purchase,1.0,0 -34919318,"Assassin's Creed Revelations",play,10.1,0 -34919318,"BioShock 2",purchase,1.0,0 -34919318,"BioShock 2",play,9.1,0 -34919318,"Max Payne 3",purchase,1.0,0 -34919318,"Max Payne 3",play,8.4,0 -34919318,"Fallout 4",purchase,1.0,0 -34919318,"Fallout 4",play,8.2,0 -34919318,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -34919318,"F.E.A.R. 2 Project Origin",play,7.2,0 -34919318,"Penumbra Black Plague",purchase,1.0,0 -34919318,"Penumbra Black Plague",play,7.0,0 -34919318,"Lara Croft and the Guardian of Light",purchase,1.0,0 -34919318,"Lara Croft and the Guardian of Light",play,6.1,0 -34919318,"Synergy",purchase,1.0,0 -34919318,"Synergy",play,6.0,0 -34919318,"Half-Life 2",purchase,1.0,0 -34919318,"Half-Life 2",play,5.5,0 -34919318,"FORCED",purchase,1.0,0 -34919318,"FORCED",play,4.9,0 -34919318,"Portal 2",purchase,1.0,0 -34919318,"Portal 2",play,4.8,0 -34919318,"Mafia II",purchase,1.0,0 -34919318,"Mafia II",play,4.7,0 -34919318,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -34919318,"Vampire The Masquerade - Bloodlines",play,4.5,0 -34919318,"Red Faction",purchase,1.0,0 -34919318,"Red Faction",play,4.4,0 -34919318,"Orcs Must Die! 2",purchase,1.0,0 -34919318,"Orcs Must Die! 2",play,3.7,0 -34919318,"Age of Empires III Complete Collection",purchase,1.0,0 -34919318,"Age of Empires III Complete Collection",play,3.4,0 -34919318,"Penumbra Overture",purchase,1.0,0 -34919318,"Penumbra Overture",play,3.4,0 -34919318,"Killing Floor",purchase,1.0,0 -34919318,"Killing Floor",play,3.3,0 -34919318,"Portal",purchase,1.0,0 -34919318,"Portal",play,2.9,0 -34919318,"Grand Theft Auto Vice City",purchase,1.0,0 -34919318,"Grand Theft Auto Vice City",play,2.8,0 -34919318,"Assassin's Creed IV Black Flag",purchase,1.0,0 -34919318,"Assassin's Creed IV Black Flag",play,2.3,0 -34919318,"Prison Architect",purchase,1.0,0 -34919318,"Prison Architect",play,2.2,0 -34919318,"Penumbra Requiem",purchase,1.0,0 -34919318,"Penumbra Requiem",play,2.0,0 -34919318,"Counter-Strike Global Offensive",purchase,1.0,0 -34919318,"Counter-Strike Global Offensive",play,2.0,0 -34919318,"Grand Theft Auto III",purchase,1.0,0 -34919318,"Grand Theft Auto III",play,2.0,0 -34919318,"Damned",purchase,1.0,0 -34919318,"Damned",play,1.8,0 -34919318,"Dead Horde",purchase,1.0,0 -34919318,"Dead Horde",play,1.7,0 -34919318,"Trapped Dead",purchase,1.0,0 -34919318,"Trapped Dead",play,1.7,0 -34919318,"Resident Evil Operation Raccoon City",purchase,1.0,0 -34919318,"Resident Evil Operation Raccoon City",play,1.6,0 -34919318,"Madballs in...Babo Invasion",purchase,1.0,0 -34919318,"Madballs in...Babo Invasion",play,1.6,0 -34919318,"Age of Empires II HD Edition",purchase,1.0,0 -34919318,"Age of Empires II HD Edition",play,1.5,0 -34919318,"Metro 2033",purchase,1.0,0 -34919318,"Metro 2033",play,1.5,0 -34919318,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -34919318,"Batman Arkham Asylum GOTY Edition",play,1.4,0 -34919318,"Total War SHOGUN 2",purchase,1.0,0 -34919318,"Total War SHOGUN 2",play,1.2,0 -34919318,"Contagion",purchase,1.0,0 -34919318,"Contagion",play,1.2,0 -34919318,"ORION Prelude",purchase,1.0,0 -34919318,"ORION Prelude",play,1.1,0 -34919318,"Far Cry 3",purchase,1.0,0 -34919318,"Far Cry 3",play,0.8,0 -34919318,"Magicka",purchase,1.0,0 -34919318,"Magicka",play,0.6,0 -34919318,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -34919318,"Resident Evil 6 / Biohazard 6",play,0.6,0 -34919318,"Caster",purchase,1.0,0 -34919318,"Caster",play,0.5,0 -34919318,"Tomb Raider Legend",purchase,1.0,0 -34919318,"Tomb Raider Legend",play,0.5,0 -34919318,"Block N Load",purchase,1.0,0 -34919318,"Block N Load",play,0.5,0 -34919318,"Team Fortress 2",purchase,1.0,0 -34919318,"Team Fortress 2",play,0.4,0 -34919318,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -34919318,"Resident Evil 5 / Biohazard 5",play,0.4,0 -34919318,"Call of Duty Black Ops III",purchase,1.0,0 -34919318,"Call of Duty Black Ops III",play,0.4,0 -34919318,"Dungeon Defenders",purchase,1.0,0 -34919318,"Dungeon Defenders",play,0.3,0 -34919318,"Dota 2",purchase,1.0,0 -34919318,"Dota 2",play,0.3,0 -34919318,"Far Cry 2",purchase,1.0,0 -34919318,"Far Cry 2",play,0.3,0 -34919318,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -34919318,"Operation Flashpoint Dragon Rising",play,0.3,0 -34919318,"Red Faction Armageddon",purchase,1.0,0 -34919318,"Red Faction Armageddon",play,0.3,0 -34919318,"Universe at War Earth Assault",purchase,1.0,0 -34919318,"Universe at War Earth Assault",play,0.2,0 -34919318,"Half-Life 2 Lost Coast",purchase,1.0,0 -34919318,"Half-Life 2 Lost Coast",play,0.2,0 -34919318,"Dragon Age Origins Character Creator",purchase,1.0,0 -34919318,"Dragon Age Origins Character Creator",play,0.2,0 -34919318,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -34919318,"Killing Floor Mod Defence Alliance 2",play,0.1,0 -34919318,"Primal Carnage",purchase,1.0,0 -34919318,"Primal Carnage",play,0.1,0 -34919318,"Red Faction II",purchase,1.0,0 -34919318,"Audiosurf",purchase,1.0,0 -34919318,"Batman Arkham City GOTY",purchase,1.0,0 -34919318,"Bionic Commando Rearmed",purchase,1.0,0 -34919318,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -34919318,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -34919318,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -34919318,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -34919318,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -34919318,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -34919318,"Company of Heroes (New Steam Version)",purchase,1.0,0 -34919318,"Company of Heroes Tales of Valor",purchase,1.0,0 -34919318,"Crysis 2 Maximum Edition",purchase,1.0,0 -34919318,"Darwinia",purchase,1.0,0 -34919318,"DEFCON",purchase,1.0,0 -34919318,"DmC Devil May Cry",purchase,1.0,0 -34919318,"Dungeonland",purchase,1.0,0 -34919318,"Dungeonland - All access pass",purchase,1.0,0 -34919318,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -34919318,"F.E.A.R. 3",purchase,1.0,0 -34919318,"Far Cry",purchase,1.0,0 -34919318,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -34919318,"Far Cry 3 Blood Dragon",purchase,1.0,0 -34919318,"Grand Theft Auto",purchase,1.0,0 -34919318,"Grand Theft Auto 2",purchase,1.0,0 -34919318,"Grand Theft Auto San Andreas",purchase,1.0,0 -34919318,"Grand Theft Auto Vice City",purchase,1.0,0 -34919318,"Grand Theft Auto III",purchase,1.0,0 -34919318,"Half-Life 2 Episode One",purchase,1.0,0 -34919318,"Half-Life 2 Episode Two",purchase,1.0,0 -34919318,"Hammerwatch",purchase,1.0,0 -34919318,"Hero Siege",purchase,1.0,0 -34919318,"ibb & obb",purchase,1.0,0 -34919318,"Insurgency",purchase,1.0,0 -34919318,"Lone Survivor The Director's Cut",purchase,1.0,0 -34919318,"Lost Planet 3",purchase,1.0,0 -34919318,"Magicka Vietnam",purchase,1.0,0 -34919318,"Max Payne",purchase,1.0,0 -34919318,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -34919318,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -34919318,"Medal of Honor(TM) Single Player",purchase,1.0,0 -34919318,"Medal of Honor Pre-Order",purchase,1.0,0 -34919318,"Mirror's Edge",purchase,1.0,0 -34919318,"Multiwinia",purchase,1.0,0 -34919318,"Natural Selection 2",purchase,1.0,0 -34919318,"Only If",purchase,1.0,0 -34919318,"PAYDAY The Heist",purchase,1.0,0 -34919318,"POSTAL 2",purchase,1.0,0 -34919318,"Quake Live",purchase,1.0,0 -34919318,"Receiver",purchase,1.0,0 -34919318,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -34919318,"Red Faction Armageddon Soundtrack",purchase,1.0,0 -34919318,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -34919318,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -34919318,"Sanctum 2",purchase,1.0,0 -34919318,"Scribblenauts Unlimited",purchase,1.0,0 -34919318,"Serious Sam 3 BFE",purchase,1.0,0 -34919318,"Shadow Puppeteer",purchase,1.0,0 -34919318,"Sid Meier's Civilization V",purchase,1.0,0 -34919318,"Space Hack",purchase,1.0,0 -34919318,"Strider",purchase,1.0,0 -34919318,"The Elder Scrolls V Skyrim",purchase,1.0,0 -34919318,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -34919318,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -34919318,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -34919318,"The Lord of the Rings War in the North",purchase,1.0,0 -34919318,"The Witcher 3 Wild Hunt - Expansion Pass",purchase,1.0,0 -34919318,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -34919318,"Tomb Raider Anniversary",purchase,1.0,0 -34919318,"Tomb Raider Underworld",purchase,1.0,0 -34919318,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -34919318,"Unturned",purchase,1.0,0 -34919318,"Uplink",purchase,1.0,0 -173453295,"Rust",purchase,1.0,0 -173453295,"Rust",play,70.0,0 -173453295,"Echo of Soul",purchase,1.0,0 -173453295,"Echo of Soul",play,18.8,0 -173453295,"RIFT",purchase,1.0,0 -173453295,"RIFT",play,16.0,0 -173453295,"Blacklight Retribution",purchase,1.0,0 -173453295,"Blacklight Retribution",play,10.5,0 -173453295,"Defiance",purchase,1.0,0 -173453295,"Defiance",play,5.6,0 -173453295,"7 Days to Die",purchase,1.0,0 -173453295,"7 Days to Die",play,3.2,0 -173453295,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -173453295,"Robocraft",purchase,1.0,0 -173453295,"Warframe",purchase,1.0,0 -121770429,"Dota 2",purchase,1.0,0 -121770429,"Dota 2",play,295.0,0 -221185061,"Dota 2",purchase,1.0,0 -221185061,"Dota 2",play,8.6,0 -96079217,"Terraria",purchase,1.0,0 -96079217,"Terraria",play,69.0,0 -134809146,"Dota 2",purchase,1.0,0 -134809146,"Dota 2",play,278.0,0 -188533206,"Warface",purchase,1.0,0 -188533206,"Warface",play,11.7,0 -260262945,"Nosgoth",purchase,1.0,0 -38937590,"Counter-Strike",purchase,1.0,0 -38937590,"Counter-Strike Condition Zero",purchase,1.0,0 -38937590,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -38937590,"Day of Defeat",purchase,1.0,0 -38937590,"Deathmatch Classic",purchase,1.0,0 -38937590,"Ricochet",purchase,1.0,0 -242729494,"Rocksmith 2014",purchase,1.0,0 -186247831,"Dota 2",purchase,1.0,0 -186247831,"Dota 2",play,118.0,0 -186247831,"Garry's Mod",purchase,1.0,0 -186247831,"Garry's Mod",play,12.1,0 -186247831,"Team Fortress 2",purchase,1.0,0 -186247831,"Team Fortress 2",play,1.7,0 -186247831,"Terraria",purchase,1.0,0 -186247831,"Terraria",play,0.8,0 -186247831,"Heroes & Generals",purchase,1.0,0 -186247831,"Heroes & Generals",play,0.3,0 -186247831,"Trove",purchase,1.0,0 -186247831,"Panzar",purchase,1.0,0 -291878062,"Dota 2",purchase,1.0,0 -291878062,"Dota 2",play,0.7,0 -216505571,"GunZ 2 The Second Duel",purchase,1.0,0 -216505571,"GunZ 2 The Second Duel",play,20.0,0 -216505571,"Transformice",purchase,1.0,0 -216505571,"Transformice",play,2.1,0 -216505571,"Toribash",purchase,1.0,0 -216505571,"Toribash",play,0.5,0 -216505571,"Dizzel",purchase,1.0,0 -216505571,"Marvel Heroes 2015",purchase,1.0,0 -216505571,"Penumbra Necrologue",purchase,1.0,0 -216505571,"Spartans Vs Zombies Defense",purchase,1.0,0 -216505571,"Warframe",purchase,1.0,0 -216505571,"War Thunder",purchase,1.0,0 -144968130,"BioShock",purchase,1.0,0 -144968130,"BioShock",play,1.4,0 -158510672,"Stronghold Kingdoms",purchase,1.0,0 -158510672,"Stronghold Kingdoms",play,18.7,0 -158510672,"Dota 2",purchase,1.0,0 -158510672,"Dota 2",play,1.0,0 -94186745,"The Elder Scrolls V Skyrim",purchase,1.0,0 -94186745,"The Elder Scrolls V Skyrim",play,78.0,0 -259831421,"Unturned",purchase,1.0,0 -259831421,"Unturned",play,4.4,0 -264500948,"Portal 2",purchase,1.0,0 -264500948,"Portal 2",play,9.0,0 -264500948,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -264500948,"Batman Arkham Asylum GOTY Edition",play,7.3,0 -264500948,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -264500948,"Tom Clancy's Ghost Recon Phantoms - NA",play,6.1,0 -264500948,"Batman Arkham City GOTY",purchase,1.0,0 -264500948,"Batman Arkham City GOTY",play,4.1,0 -264500948,"Portal",purchase,1.0,0 -264500948,"Portal",play,4.1,0 -264500948,"Half-Life 2",purchase,1.0,0 -264500948,"Half-Life 2",play,2.8,0 -264500948,"Warframe",purchase,1.0,0 -264500948,"Warframe",play,1.2,0 -264500948,"Batman Arkham Origins",purchase,1.0,0 -264500948,"Batman Arkham Origins",play,1.0,0 -264500948,"Loadout",purchase,1.0,0 -264500948,"Loadout",play,0.3,0 -264500948,"Half-Life 2 Episode Two",purchase,1.0,0 -264500948,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -264500948,"Batman Arkham Origins - Initiation",purchase,1.0,0 -264500948,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -264500948,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -264500948,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -264500948,"Dead Island Epidemic",purchase,1.0,0 -264500948,"Dead Space",purchase,1.0,0 -264500948,"Dead Space 2",purchase,1.0,0 -264500948,"Fistful of Frags",purchase,1.0,0 -264500948,"Half-Life 2 Episode One",purchase,1.0,0 -264500948,"Half-Life 2 Lost Coast",purchase,1.0,0 -264500948,"Half-Life 2 Update",purchase,1.0,0 -264500948,"The Witcher Enhanced Edition",purchase,1.0,0 -264500948,"Trove",purchase,1.0,0 -49754148,"Dota 2",purchase,1.0,0 -49754148,"Dota 2",play,4.3,0 -122940861,"R.U.S.E",purchase,1.0,0 -122940861,"R.U.S.E",play,74.0,0 -122940861,"Arma 3",purchase,1.0,0 -122940861,"Arma 3",play,0.5,0 -122940861,"Arma 3 Zeus",purchase,1.0,0 -122940861,"R.U.S.E.",purchase,1.0,0 -137079876,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -137079876,"Call of Duty Black Ops II - Multiplayer",play,113.0,0 -137079876,"Call of Duty Black Ops II",purchase,1.0,0 -137079876,"Call of Duty Black Ops II",play,1.3,0 -137079876,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -137079876,"Call of Duty Black Ops II - Zombies",play,0.1,0 -47384202,"Team Fortress 2",purchase,1.0,0 -47384202,"Team Fortress 2",play,248.0,0 -47384202,"BlazBlue Continuum Shift Extend",purchase,1.0,0 -47384202,"BlazBlue Continuum Shift Extend",play,226.0,0 -47384202,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -47384202,"Dark Souls Prepare to Die Edition",play,116.0,0 -47384202,"Orcs Must Die!",purchase,1.0,0 -47384202,"Orcs Must Die!",play,67.0,0 -47384202,"The Elder Scrolls V Skyrim",purchase,1.0,0 -47384202,"The Elder Scrolls V Skyrim",play,67.0,0 -47384202,"Ultra Street Fighter IV",purchase,1.0,0 -47384202,"Ultra Street Fighter IV",play,62.0,0 -47384202,"Borderlands 2",purchase,1.0,0 -47384202,"Borderlands 2",play,47.0,0 -47384202,"Star Wars Knights of the Old Republic",purchase,1.0,0 -47384202,"Star Wars Knights of the Old Republic",play,29.0,0 -47384202,"Skullgirls Endless Beta",purchase,1.0,0 -47384202,"Skullgirls Endless Beta",play,28.0,0 -47384202,"South Park The Stick of Truth",purchase,1.0,0 -47384202,"South Park The Stick of Truth",play,22.0,0 -47384202,"The Walking Dead",purchase,1.0,0 -47384202,"The Walking Dead",play,20.0,0 -47384202,"Undertale",purchase,1.0,0 -47384202,"Undertale",play,19.6,0 -47384202,"Mafia II",purchase,1.0,0 -47384202,"Mafia II",play,19.2,0 -47384202,"Aliens Colonial Marines",purchase,1.0,0 -47384202,"Aliens Colonial Marines",play,18.7,0 -47384202,"Amnesia The Dark Descent",purchase,1.0,0 -47384202,"Amnesia The Dark Descent",play,17.8,0 -47384202,"Metro Last Light",purchase,1.0,0 -47384202,"Metro Last Light",play,17.3,0 -47384202,"Fallout",purchase,1.0,0 -47384202,"Fallout",play,14.4,0 -47384202,"Far Cry 3 Blood Dragon",purchase,1.0,0 -47384202,"Far Cry 3 Blood Dragon",play,13.9,0 -47384202,"FTL Faster Than Light",purchase,1.0,0 -47384202,"FTL Faster Than Light",play,13.5,0 -47384202,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -47384202,"Plants vs. Zombies Game of the Year",play,13.4,0 -47384202,"Audiosurf",purchase,1.0,0 -47384202,"Audiosurf",play,13.2,0 -47384202,"DOOM 3 BFG Edition",purchase,1.0,0 -47384202,"DOOM 3 BFG Edition",play,12.5,0 -47384202,"SolForge",purchase,1.0,0 -47384202,"SolForge",play,12.2,0 -47384202,"XCOM Enemy Unknown",purchase,1.0,0 -47384202,"XCOM Enemy Unknown",play,11.9,0 -47384202,"Star Wars Republic Commando",purchase,1.0,0 -47384202,"Star Wars Republic Commando",play,11.6,0 -47384202,"Recettear An Item Shop's Tale",purchase,1.0,0 -47384202,"Recettear An Item Shop's Tale",play,10.7,0 -47384202,"This War of Mine",purchase,1.0,0 -47384202,"This War of Mine",play,10.5,0 -47384202,"Batman Arkham City GOTY",purchase,1.0,0 -47384202,"Batman Arkham City GOTY",play,9.5,0 -47384202,"Max Payne 3",purchase,1.0,0 -47384202,"Max Payne 3",play,9.3,0 -47384202,"Darkest Dungeon",purchase,1.0,0 -47384202,"Darkest Dungeon",play,9.3,0 -47384202,"Amnesia A Machine for Pigs",purchase,1.0,0 -47384202,"Amnesia A Machine for Pigs",play,9.2,0 -47384202,"One Finger Death Punch",purchase,1.0,0 -47384202,"One Finger Death Punch",play,8.5,0 -47384202,"Skullgirls",purchase,1.0,0 -47384202,"Skullgirls",play,8.5,0 -47384202,"The Wolf Among Us",purchase,1.0,0 -47384202,"The Wolf Among Us",play,8.3,0 -47384202,"Devil May Cry 3 Special Edition",purchase,1.0,0 -47384202,"Devil May Cry 3 Special Edition",play,8.2,0 -47384202,"Counter-Strike Source",purchase,1.0,0 -47384202,"Counter-Strike Source",play,8.1,0 -47384202,"Community College Hero Trial by Fire",purchase,1.0,0 -47384202,"Community College Hero Trial by Fire",play,8.1,0 -47384202,"Killing Floor",purchase,1.0,0 -47384202,"Killing Floor",play,6.6,0 -47384202,"DOOM 3",purchase,1.0,0 -47384202,"DOOM 3",play,6.0,0 -47384202,"Portal 2",purchase,1.0,0 -47384202,"Portal 2",play,6.0,0 -47384202,"Mortal Kombat Komplete Edition",purchase,1.0,0 -47384202,"Mortal Kombat Komplete Edition",play,5.7,0 -47384202,"Left 4 Dead 2",purchase,1.0,0 -47384202,"Left 4 Dead 2",play,5.5,0 -47384202,"Portal",purchase,1.0,0 -47384202,"Portal",play,5.2,0 -47384202,"Scratches Director's Cut",purchase,1.0,0 -47384202,"Scratches Director's Cut",play,5.2,0 -47384202,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -47384202,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,5.1,0 -47384202,"Call of Juarez Gunslinger",purchase,1.0,0 -47384202,"Call of Juarez Gunslinger",play,4.9,0 -47384202,"Divinity Original Sin",purchase,1.0,0 -47384202,"Divinity Original Sin",play,4.8,0 -47384202,"Legend of Grimrock",purchase,1.0,0 -47384202,"Legend of Grimrock",play,4.8,0 -47384202,"GUILTY GEAR Xrd -SIGN-",purchase,1.0,0 -47384202,"GUILTY GEAR Xrd -SIGN-",play,4.4,0 -47384202,"Magic The Gathering - Duels of the Planeswalkers 2013",purchase,1.0,0 -47384202,"Magic The Gathering - Duels of the Planeswalkers 2013",play,4.4,0 -47384202,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -47384202,"Star Wars Jedi Knight Jedi Academy",play,4.1,0 -47384202,"Hotline Miami",purchase,1.0,0 -47384202,"Hotline Miami",play,3.9,0 -47384202,"BAD END",purchase,1.0,0 -47384202,"BAD END",play,3.8,0 -47384202,"Prince of Persia The Sands of Time",purchase,1.0,0 -47384202,"Prince of Persia The Sands of Time",play,3.6,0 -47384202,"Half-Life",purchase,1.0,0 -47384202,"Half-Life",play,3.6,0 -47384202,"Garry's Mod",purchase,1.0,0 -47384202,"Garry's Mod",play,3.2,0 -47384202,"Dust An Elysian Tail",purchase,1.0,0 -47384202,"Dust An Elysian Tail",play,3.0,0 -47384202,"Outlast",purchase,1.0,0 -47384202,"Outlast",play,2.4,0 -47384202,"Gone Home",purchase,1.0,0 -47384202,"Gone Home",play,2.4,0 -47384202,"Sniper Elite V2",purchase,1.0,0 -47384202,"Sniper Elite V2",play,2.0,0 -47384202,"Sid Meier's Civilization V",purchase,1.0,0 -47384202,"Sid Meier's Civilization V",play,1.9,0 -47384202,"Half-Life 2",purchase,1.0,0 -47384202,"Half-Life 2",play,1.8,0 -47384202,"LIMBO",purchase,1.0,0 -47384202,"LIMBO",play,1.7,0 -47384202,"The Stanley Parable",purchase,1.0,0 -47384202,"The Stanley Parable",play,1.5,0 -47384202,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -47384202,"Star Wars - Jedi Knight II Jedi Outcast",play,1.2,0 -47384202,"The Binding of Isaac",purchase,1.0,0 -47384202,"The Binding of Isaac",play,1.2,0 -47384202,"Star Wars - Battlefront II",purchase,1.0,0 -47384202,"Star Wars - Battlefront II",play,1.2,0 -47384202,"Dear Esther",purchase,1.0,0 -47384202,"Dear Esther",play,1.2,0 -47384202,"Alien Swarm",purchase,1.0,0 -47384202,"Alien Swarm",play,1.1,0 -47384202,"Dishonored",purchase,1.0,0 -47384202,"Dishonored",play,1.0,0 -47384202,"Aliens versus Predator Classic 2000",purchase,1.0,0 -47384202,"Aliens versus Predator Classic 2000",play,1.0,0 -47384202,"Depression Quest",purchase,1.0,0 -47384202,"Depression Quest",play,0.9,0 -47384202,"Terraria",purchase,1.0,0 -47384202,"Terraria",play,0.9,0 -47384202,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -47384202,"Fallout 3 - Game of the Year Edition",play,0.9,0 -47384202,"Lone Survivor The Director's Cut",purchase,1.0,0 -47384202,"Lone Survivor The Director's Cut",play,0.9,0 -47384202,"Shadow Warrior",purchase,1.0,0 -47384202,"Shadow Warrior",play,0.9,0 -47384202,"Half-Life 2 Lost Coast",purchase,1.0,0 -47384202,"Half-Life 2 Lost Coast",play,0.9,0 -47384202,"The Long Dark",purchase,1.0,0 -47384202,"The Long Dark",play,0.7,0 -47384202,"Sniper Ghost Warrior",purchase,1.0,0 -47384202,"Sniper Ghost Warrior",play,0.7,0 -47384202,"Five Nights at Freddy's",purchase,1.0,0 -47384202,"Five Nights at Freddy's",play,0.7,0 -47384202,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -47384202,"Red Orchestra Ostfront 41-45",play,0.6,0 -47384202,"Medal of Honor(TM) Single Player",purchase,1.0,0 -47384202,"Medal of Honor(TM) Single Player",play,0.6,0 -47384202,"The Typing of The Dead Overkill",purchase,1.0,0 -47384202,"The Typing of The Dead Overkill",play,0.5,0 -47384202,"Emily is Away",purchase,1.0,0 -47384202,"Emily is Away",play,0.5,0 -47384202,"Far Cry",purchase,1.0,0 -47384202,"Far Cry",play,0.5,0 -47384202,"Sniper Elite Nazi Zombie Army",purchase,1.0,0 -47384202,"Sniper Elite Nazi Zombie Army",play,0.4,0 -47384202,"VVVVVV",purchase,1.0,0 -47384202,"VVVVVV",play,0.4,0 -47384202,"resident evil 4 / biohazard 4",purchase,1.0,0 -47384202,"resident evil 4 / biohazard 4",play,0.4,0 -47384202,"Carpe Diem",purchase,1.0,0 -47384202,"Carpe Diem",play,0.3,0 -47384202,"TRAUMA",purchase,1.0,0 -47384202,"TRAUMA",play,0.3,0 -47384202,"Thief Gold",purchase,1.0,0 -47384202,"Thief Gold",play,0.2,0 -47384202,"Papers, Please",purchase,1.0,0 -47384202,"Papers, Please",play,0.2,0 -47384202,"Dragon's Lair",purchase,1.0,0 -47384202,"Dragon's Lair",play,0.2,0 -47384202,"FINAL FANTASY VII",purchase,1.0,0 -47384202,"FINAL FANTASY VII",play,0.2,0 -47384202,"System Shock 2",purchase,1.0,0 -47384202,"System Shock 2",play,0.1,0 -47384202,"F.E.A.R.",purchase,1.0,0 -47384202,"F.E.A.R.",play,0.1,0 -47384202,"Thief Deadly Shadows",purchase,1.0,0 -47384202,"RollerCoaster Tycoon Deluxe",purchase,1.0,0 -47384202,"The Lord of the Rings War in the North",purchase,1.0,0 -47384202,"Age of Empires II HD Edition",purchase,1.0,0 -47384202,"Arma 2",purchase,1.0,0 -47384202,"Arma 2 DayZ Mod",purchase,1.0,0 -47384202,"Arma 2 Operation Arrowhead",purchase,1.0,0 -47384202,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -47384202,"Astray",purchase,1.0,0 -47384202,"Bastion",purchase,1.0,0 -47384202,"Ben There, Dan That!",purchase,1.0,0 -47384202,"Beyond Divinity",purchase,1.0,0 -47384202,"Beyond Good & Evil",purchase,1.0,0 -47384202,"Black Mesa",purchase,1.0,0 -47384202,"Black Sails",purchase,1.0,0 -47384202,"Braid",purchase,1.0,0 -47384202,"Breath of Death VII ",purchase,1.0,0 -47384202,"Brtal Legend",purchase,1.0,0 -47384202,"Bully Scholarship Edition",purchase,1.0,0 -47384202,"Call of Juarez",purchase,1.0,0 -47384202,"Carpe Diem - Extra Package",purchase,1.0,0 -47384202,"Cave Story+",purchase,1.0,0 -47384202,"Chivalry Medieval Warfare",purchase,1.0,0 -47384202,"Claire",purchase,1.0,0 -47384202,"Close Your Eyes",purchase,1.0,0 -47384202,"Closure",purchase,1.0,0 -47384202,"Contagion",purchase,1.0,0 -47384202,"Counter-Strike Global Offensive",purchase,1.0,0 -47384202,"Crypt of the NecroDancer",purchase,1.0,0 -47384202,"Cthulhu Saves the World ",purchase,1.0,0 -47384202,"Darkest Hour Europe '44-'45",purchase,1.0,0 -47384202,"DARK SOULS II",purchase,1.0,0 -47384202,"Dead Space 2",purchase,1.0,0 -47384202,"Dino D-Day",purchase,1.0,0 -47384202,"Divine Divinity",purchase,1.0,0 -47384202,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -47384202,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -47384202,"Dungeon Defenders",purchase,1.0,0 -47384202,"F.E.A.R. Extraction Point",purchase,1.0,0 -47384202,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -47384202,"Fallout 2",purchase,1.0,0 -47384202,"Fallout New Vegas",purchase,1.0,0 -47384202,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -47384202,"Fallout New Vegas Dead Money",purchase,1.0,0 -47384202,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -47384202,"Fallout Tactics",purchase,1.0,0 -47384202,"Far Cry 2",purchase,1.0,0 -47384202,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -47384202,"Five Nights at Freddy's 2",purchase,1.0,0 -47384202,"Goat Simulator",purchase,1.0,0 -47384202,"Gods Will Be Watching",purchase,1.0,0 -47384202,"Half-Life 2 Episode One",purchase,1.0,0 -47384202,"Half-Life 2 Episode Two",purchase,1.0,0 -47384202,"Hatoful Boyfriend",purchase,1.0,0 -47384202,"Haunted Memories",purchase,1.0,0 -47384202,"Her Story",purchase,1.0,0 -47384202,"Hitman Blood Money",purchase,1.0,0 -47384202,"Home",purchase,1.0,0 -47384202,"I am Bread",purchase,1.0,0 -47384202,"I Have No Mouth, and I Must Scream",purchase,1.0,0 -47384202,"Insurgency",purchase,1.0,0 -47384202,"Jet Set Radio",purchase,1.0,0 -47384202,"Just Cause 2",purchase,1.0,0 -47384202,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -47384202,"Kraven Manor",purchase,1.0,0 -47384202,"L.A. Noire",purchase,1.0,0 -47384202,"Layers of Fear",purchase,1.0,0 -47384202,"Mad Games Tycoon",purchase,1.0,0 -47384202,"Mare Nostrum",purchase,1.0,0 -47384202,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -47384202,"Medal of Honor Pre-Order",purchase,1.0,0 -47384202,"Mount & Blade Warband",purchase,1.0,0 -47384202,"My Bones",purchase,1.0,0 -47384202,"Nidhogg",purchase,1.0,0 -47384202,"Octodad Dadliest Catch",purchase,1.0,0 -47384202,"Orcs Must Die! 2",purchase,1.0,0 -47384202,"Passing Pineview Forest",purchase,1.0,0 -47384202,"Patch testing for Chivalry",purchase,1.0,0 -47384202,"Penumbra Black Plague",purchase,1.0,0 -47384202,"Penumbra Overture",purchase,1.0,0 -47384202,"Penumbra Requiem",purchase,1.0,0 -47384202,"Pineview Drive",purchase,1.0,0 -47384202,"Plug & Play",purchase,1.0,0 -47384202,"POSTAL 2",purchase,1.0,0 -47384202,"POSTAL 2 Paradise Lost",purchase,1.0,0 -47384202,"Prince of Persia The Two Thrones",purchase,1.0,0 -47384202,"Prince of Persia Warrior Within",purchase,1.0,0 -47384202,"Psychonauts",purchase,1.0,0 -47384202,"Psychonauts Demo",purchase,1.0,0 -47384202,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -47384202,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -47384202,"Rivals of Aether",purchase,1.0,0 -47384202,"Sang-Froid - Tales of Werewolves",purchase,1.0,0 -47384202,"Shadow Warrior Classic Redux",purchase,1.0,0 -47384202,"Sir, You Are Being Hunted",purchase,1.0,0 -47384202,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -47384202,"Slender The Arrival",purchase,1.0,0 -47384202,"Sniper Elite Nazi Zombie Army 2",purchase,1.0,0 -47384202,"South Park The Stick of Truth - Super Samurai Spaceman Pack",purchase,1.0,0 -47384202,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -47384202,"Spooky's House of Jump Scares",purchase,1.0,0 -47384202,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -47384202,"Sunless Sea",purchase,1.0,0 -47384202,"Surgeon Simulator",purchase,1.0,0 -47384202,"The Beginner's Guide",purchase,1.0,0 -47384202,"The Bridge",purchase,1.0,0 -47384202,"The Elder Scrolls III Morrowind",purchase,1.0,0 -47384202,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -47384202,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -47384202,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -47384202,"The Ritual on Weylyn Island",purchase,1.0,0 -47384202,"The Room",purchase,1.0,0 -47384202,"The Vanishing of Ethan Carter",purchase,1.0,0 -47384202,"The Vanishing of Ethan Carter Redux",purchase,1.0,0 -47384202,"The Walking Dead Season Two",purchase,1.0,0 -47384202,"The Witcher Enhanced Edition",purchase,1.0,0 -47384202,"They Bleed Pixels",purchase,1.0,0 -47384202,"Thief 2",purchase,1.0,0 -47384202,"Time Gentlemen, Please!",purchase,1.0,0 -47384202,"Tom Clancy's Splinter Cell",purchase,1.0,0 -47384202,"Tom Clancy's Splinter Cell Chaos Theory",purchase,1.0,0 -47384202,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -47384202,"Tom Clancy's Splinter Cell Double Agent",purchase,1.0,0 -47384202,"Turok Dinosaur Hunter",purchase,1.0,0 -47384202,"Valkyria Chronicles",purchase,1.0,0 -47384202,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -47384202,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -47384202,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -47384202,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -47384202,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -184885148,"Magicka Wizard Wars",purchase,1.0,0 -184885148,"Magicka Wizard Wars",play,6.6,0 -184885148,"Team Fortress 2",purchase,1.0,0 -184885148,"Team Fortress 2",play,5.0,0 -184885148,"Heroes & Generals",purchase,1.0,0 -184885148,"Heroes & Generals",play,0.4,0 -184885148,"Xam",purchase,1.0,0 -184885148,"Xam",play,0.2,0 -90037349,"RAGE",purchase,1.0,0 -90037349,"RAGE",play,12.1,0 -90037349,"Red Faction Armageddon",purchase,1.0,0 -90037349,"Red Faction Armageddon",play,7.7,0 -90037349,"Call of Duty Modern Warfare 3",purchase,1.0,0 -90037349,"Call of Duty Modern Warfare 3",play,4.9,0 -90037349,"Call of Juarez The Cartel",purchase,1.0,0 -90037349,"Call of Juarez The Cartel",play,4.1,0 -90037349,"Total War SHOGUN 2",purchase,1.0,0 -90037349,"Total War SHOGUN 2",play,1.1,0 -90037349,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -90037349,"Call of Duty Modern Warfare 3 - Multiplayer",play,0.6,0 -106278654,"Dota 2",purchase,1.0,0 -106278654,"Dota 2",play,526.0,0 -106278654,"Counter-Strike Global Offensive",purchase,1.0,0 -106278654,"Counter-Strike Global Offensive",play,38.0,0 -106278654,"Foosball - Street Edition",purchase,1.0,0 -139457410,"Dota 2",purchase,1.0,0 -139457410,"Dota 2",play,1895.0,0 -139457410,"Clicker Heroes",purchase,1.0,0 -139457410,"Clicker Heroes",play,114.0,0 -139457410,"Space Hack",purchase,1.0,0 -139457410,"METAL SLUG DEFENSE",purchase,1.0,0 -139457410,"Construct 2 Free",purchase,1.0,0 -139457410,"FreeStyle2 Street Basketball",purchase,1.0,0 -99499409,"Team Fortress 2",purchase,1.0,0 -99499409,"Team Fortress 2",play,0.7,0 -170485590,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -170485590,"Call of Duty Advanced Warfare - Multiplayer",play,276.0,0 -170485590,"Call of Duty Modern Warfare 3",purchase,1.0,0 -170485590,"Call of Duty Modern Warfare 3",play,167.0,0 -170485590,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -170485590,"Call of Duty Modern Warfare 3 - Multiplayer",play,123.0,0 -170485590,"Counter-Strike Global Offensive",purchase,1.0,0 -170485590,"Counter-Strike Global Offensive",play,77.0,0 -170485590,"Unturned",purchase,1.0,0 -170485590,"Unturned",play,55.0,0 -170485590,"Left 4 Dead 2",purchase,1.0,0 -170485590,"Left 4 Dead 2",play,55.0,0 -170485590,"Call of Duty Advanced Warfare",purchase,1.0,0 -170485590,"Call of Duty Advanced Warfare",play,41.0,0 -170485590,"Call of Duty Modern Warfare 2",purchase,1.0,0 -170485590,"Call of Duty Modern Warfare 2",play,36.0,0 -170485590,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -170485590,"Call of Duty Black Ops II - Multiplayer",play,21.0,0 -170485590,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -170485590,"Call of Duty Modern Warfare 2 - Multiplayer",play,17.8,0 -170485590,"Call of Duty World at War",purchase,1.0,0 -170485590,"Call of Duty World at War",play,17.2,0 -170485590,"Tomb Raider",purchase,1.0,0 -170485590,"Tomb Raider",play,14.5,0 -170485590,"Higurashi When They Cry - Ch.1 Onikakushi",purchase,1.0,0 -170485590,"Higurashi When They Cry - Ch.1 Onikakushi",play,13.8,0 -170485590,"Warframe",purchase,1.0,0 -170485590,"Warframe",play,13.3,0 -170485590,"Hitman Absolution",purchase,1.0,0 -170485590,"Hitman Absolution",play,11.9,0 -170485590,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -170485590,"Resident Evil 5 / Biohazard 5",play,11.2,0 -170485590,"Gaokao.Love.100Days",purchase,1.0,0 -170485590,"Gaokao.Love.100Days",play,10.4,0 -170485590,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -170485590,"Resident Evil Revelations / Biohazard Revelations",play,9.4,0 -170485590,"Call of Duty Black Ops II",purchase,1.0,0 -170485590,"Call of Duty Black Ops II",play,9.0,0 -170485590,"Arma 2",purchase,1.0,0 -170485590,"Arma 2",play,8.9,0 -170485590,"War Thunder",purchase,1.0,0 -170485590,"War Thunder",play,8.6,0 -170485590,"Besiege",purchase,1.0,0 -170485590,"Besiege",play,6.6,0 -170485590,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -170485590,"Resident Evil Revelations 2 / Biohazard Revelations 2",play,6.0,0 -170485590,"Strider",purchase,1.0,0 -170485590,"Strider",play,6.0,0 -170485590,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -170485590,"Call of Duty Black Ops II - Zombies",play,5.0,0 -170485590,"Garry's Mod",purchase,1.0,0 -170485590,"Garry's Mod",play,4.9,0 -170485590,"The Clans - Saga of the Twins",purchase,1.0,0 -170485590,"The Clans - Saga of the Twins",play,4.7,0 -170485590,"Insurgency",purchase,1.0,0 -170485590,"Insurgency",play,4.5,0 -170485590,"X-note",purchase,1.0,0 -170485590,"X-note",play,4.4,0 -170485590,"Ultra Street Fighter IV",purchase,1.0,0 -170485590,"Ultra Street Fighter IV",play,4.3,0 -170485590,"DmC Devil May Cry",purchase,1.0,0 -170485590,"DmC Devil May Cry",play,4.3,0 -170485590,"eden*",purchase,1.0,0 -170485590,"eden*",play,4.3,0 -170485590,"SpeedRunners",purchase,1.0,0 -170485590,"SpeedRunners",play,4.0,0 -170485590,"resident evil 4 / biohazard 4",purchase,1.0,0 -170485590,"resident evil 4 / biohazard 4",play,3.8,0 -170485590,"Portal 2",purchase,1.0,0 -170485590,"Portal 2",play,3.8,0 -170485590,"Contagion",purchase,1.0,0 -170485590,"Contagion",play,3.7,0 -170485590,"Lost Planet 3",purchase,1.0,0 -170485590,"Lost Planet 3",play,3.6,0 -170485590,"Bedlam",purchase,1.0,0 -170485590,"Bedlam",play,3.4,0 -170485590,"Remember Me",purchase,1.0,0 -170485590,"Remember Me",play,3.3,0 -170485590,"Blue Rose",purchase,1.0,0 -170485590,"Blue Rose",play,3.2,0 -170485590,"Go! Go! Nippon! ~My First Trip to Japan~",purchase,1.0,0 -170485590,"Go! Go! Nippon! ~My First Trip to Japan~",play,3.2,0 -170485590,"Racer 8",purchase,1.0,0 -170485590,"Racer 8",play,3.1,0 -170485590,"Retention",purchase,1.0,0 -170485590,"Retention",play,2.5,0 -170485590,"Warface",purchase,1.0,0 -170485590,"Warface",play,1.4,0 -170485590,"Arma 2 Operation Arrowhead",purchase,1.0,0 -170485590,"Arma 2 Operation Arrowhead",play,0.6,0 -170485590,"Hitman 2 Silent Assassin",purchase,1.0,0 -170485590,"Hitman 2 Silent Assassin",play,0.6,0 -170485590,"CastleMiner Z",purchase,1.0,0 -170485590,"CastleMiner Z",play,0.5,0 -170485590,"Hitman Blood Money",purchase,1.0,0 -170485590,"Hitman Blood Money",play,0.4,0 -170485590,"Hitman Codename 47",purchase,1.0,0 -170485590,"Hitman Codename 47",play,0.1,0 -170485590,"Shattered Haven",purchase,1.0,0 -170485590,"Arma 2 DayZ Mod",purchase,1.0,0 -170485590,"Hitman Contracts",purchase,1.0,0 -170485590,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -170485590,"Bionic Commando Rearmed",purchase,1.0,0 -170485590,"CSGO Player Profiles",purchase,1.0,0 -170485590,"CSGO Player Profiles - Device",purchase,1.0,0 -170485590,"CSGO Player Profiles - Edward",purchase,1.0,0 -170485590,"CSGO Player Profiles - Fallen",purchase,1.0,0 -170485590,"CSGO Player Profiles - Get_Right",purchase,1.0,0 -170485590,"CSGO Player Profiles - KennyS",purchase,1.0,0 -170485590,"CSGO Player Profiles - Markeloff",purchase,1.0,0 -170485590,"CSGO Player Profiles - N0thing",purchase,1.0,0 -170485590,"CSGO Player Profiles - Olofmeister",purchase,1.0,0 -170485590,"CSGO Player Profiles - Taz",purchase,1.0,0 -170485590,"Defiance",purchase,1.0,0 -170485590,"Don't Starve Together Beta",purchase,1.0,0 -170485590,"Fractured Space",purchase,1.0,0 -170485590,"Hitman Sniper Challenge",purchase,1.0,0 -170485590,"Monday Night Combat",purchase,1.0,0 -170485590,"Project Root",purchase,1.0,0 -170485590,"Super Chain Crusher Horizon",purchase,1.0,0 -76787637,"Dota 2",purchase,1.0,0 -76787637,"Dota 2",play,700.0,0 -76787637,"Left 4 Dead 2",purchase,1.0,0 -76787637,"Left 4 Dead 2",play,8.9,0 -76787637,"The Elder Scrolls V Skyrim",purchase,1.0,0 -76787637,"The Elder Scrolls V Skyrim",play,0.2,0 -76787637,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -76787637,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -76787637,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -67176371,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -67176371,"Call of Duty Modern Warfare 3 - Multiplayer",play,827.0,0 -67176371,"Supreme Commander 2",purchase,1.0,0 -67176371,"Supreme Commander 2",play,157.0,0 -67176371,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -67176371,"Call of Duty Modern Warfare 2 - Multiplayer",play,150.0,0 -67176371,"Call of Duty Modern Warfare 3",purchase,1.0,0 -67176371,"Call of Duty Modern Warfare 3",play,49.0,0 -67176371,"Call of Duty Modern Warfare 2",purchase,1.0,0 -67176371,"Call of Duty Modern Warfare 2",play,44.0,0 -67176371,"Call of Duty Black Ops III",purchase,1.0,0 -67176371,"Call of Duty Black Ops III",play,12.5,0 -67176371,"Supreme Commander 2 - Infinite War Battle Pack One",purchase,1.0,0 -208982674,"Robocraft",purchase,1.0,0 -208982674,"Robocraft",play,64.0,0 -208982674,"Garry's Mod",purchase,1.0,0 -208982674,"Garry's Mod",play,1.3,0 -177878533,"Dota 2",purchase,1.0,0 -177878533,"Dota 2",play,17.8,0 -165580763,"Dota 2",purchase,1.0,0 -165580763,"Dota 2",play,213.0,0 -165580763,"Brick-Force",purchase,1.0,0 -165580763,"Loadout",purchase,1.0,0 -165580763,"Unturned",purchase,1.0,0 -165580763,"War Thunder",purchase,1.0,0 -152621181,"Dota 2",purchase,1.0,0 -152621181,"Dota 2",play,2.2,0 -87147007,"Dota 2",purchase,1.0,0 -87147007,"Dota 2",play,335.0,0 -73360181,"Fallout New Vegas",purchase,1.0,0 -73360181,"Fallout New Vegas",play,2.8,0 -241465305,"Grand Theft Auto V",purchase,1.0,0 -241465305,"Grand Theft Auto V",play,62.0,0 -205129403,"Dota 2",purchase,1.0,0 -205129403,"Dota 2",play,1.9,0 -205129403,"No More Room in Hell",purchase,1.0,0 -133997970,"Rocket League",purchase,1.0,0 -133997970,"Rocket League",play,444.0,0 -133997970,"The Binding of Isaac Rebirth",purchase,1.0,0 -133997970,"The Binding of Isaac Rebirth",play,207.0,0 -133997970,"Rust",purchase,1.0,0 -133997970,"Rust",play,175.0,0 -133997970,"The Binding of Isaac",purchase,1.0,0 -133997970,"The Binding of Isaac",play,43.0,0 -133997970,"Garry's Mod",purchase,1.0,0 -133997970,"Garry's Mod",play,33.0,0 -133997970,"Left 4 Dead 2",purchase,1.0,0 -133997970,"Left 4 Dead 2",play,23.0,0 -133997970,"South Park The Stick of Truth",purchase,1.0,0 -133997970,"South Park The Stick of Truth",play,19.8,0 -133997970,"Spelunky",purchase,1.0,0 -133997970,"Spelunky",play,16.6,0 -133997970,"Retro City Rampage DX",purchase,1.0,0 -133997970,"Retro City Rampage DX",play,7.0,0 -133997970,"Rock of Ages",purchase,1.0,0 -133997970,"Rock of Ages",play,4.3,0 -133997970,"Don't Starve Together Beta",purchase,1.0,0 -133997970,"Don't Starve Together Beta",play,3.8,0 -133997970,"Starbound",purchase,1.0,0 -133997970,"Starbound",play,2.2,0 -133997970,"Mark of the Ninja",purchase,1.0,0 -133997970,"Mark of the Ninja",play,1.3,0 -133997970,"La-Mulana",purchase,1.0,0 -133997970,"La-Mulana",play,0.4,0 -133997970,"DayZ",purchase,1.0,0 -133997970,"DayZ",play,0.4,0 -133997970,"BattleBlock Theater",purchase,1.0,0 -133997970,"BattleBlock Theater",play,0.4,0 -133997970,"Beat Hazard",purchase,1.0,0 -133997970,"Beat Hazard",play,0.3,0 -133997970,"Counter-Strike Source",purchase,1.0,0 -133997970,"Spooky's House of Jump Scares",purchase,1.0,0 -133997970,"Sanctum 2",purchase,1.0,0 -133997970,"Arma 3",purchase,1.0,0 -133997970,"Arma 3 Zeus",purchase,1.0,0 -133997970,"Beat Hazard - Shadow Operations Unit",purchase,1.0,0 -133997970,"Don't Starve",purchase,1.0,0 -133997970,"Don't Starve Reign of Giants",purchase,1.0,0 -133997970,"Mark of the Ninja Special Edition DLC",purchase,1.0,0 -133997970,"Sanctum",purchase,1.0,0 -133997970,"Starbound - Unstable",purchase,1.0,0 -133997970,"Stealth Bastard Deluxe",purchase,1.0,0 -133997970,"Tales from Space Mutant Blobs Attack",purchase,1.0,0 -259782663,"RaceRoom Racing Experience ",purchase,1.0,0 -152309184,"Dota 2",purchase,1.0,0 -152309184,"Dota 2",play,14.1,0 -201367497,"Sunrider Mask of Arcadius",purchase,1.0,0 -201367497,"Sunrider Mask of Arcadius",play,15.5,0 -201367497,"Warframe",purchase,1.0,0 -201367497,"Warframe",play,1.3,0 -201367497,"HAWKEN",purchase,1.0,0 -99264709,"Counter-Strike Global Offensive",purchase,1.0,0 -99264709,"Counter-Strike Global Offensive",play,562.0,0 -99264709,"Garry's Mod",purchase,1.0,0 -99264709,"Garry's Mod",play,270.0,0 -99264709,"Dota 2",purchase,1.0,0 -99264709,"Dota 2",play,163.0,0 -99264709,"Team Fortress 2",purchase,1.0,0 -99264709,"Team Fortress 2",play,110.0,0 -99264709,"Killing Floor",purchase,1.0,0 -99264709,"Killing Floor",play,108.0,0 -99264709,"PAYDAY 2",purchase,1.0,0 -99264709,"PAYDAY 2",play,103.0,0 -99264709,"Hotline Miami 2 Wrong Number",purchase,1.0,0 -99264709,"Hotline Miami 2 Wrong Number",play,97.0,0 -99264709,"Saints Row The Third",purchase,1.0,0 -99264709,"Saints Row The Third",play,80.0,0 -99264709,"APB Reloaded",purchase,1.0,0 -99264709,"APB Reloaded",play,74.0,0 -99264709,"Arma 3",purchase,1.0,0 -99264709,"Arma 3",play,66.0,0 -99264709,"Starbound",purchase,1.0,0 -99264709,"Starbound",play,63.0,0 -99264709,"Borderlands 2",purchase,1.0,0 -99264709,"Borderlands 2",play,55.0,0 -99264709,"Left 4 Dead 2",purchase,1.0,0 -99264709,"Left 4 Dead 2",play,45.0,0 -99264709,"Spiral Knights",purchase,1.0,0 -99264709,"Spiral Knights",play,44.0,0 -99264709,"Fallout 4",purchase,1.0,0 -99264709,"Fallout 4",play,41.0,0 -99264709,"Unturned",purchase,1.0,0 -99264709,"Unturned",play,41.0,0 -99264709,"Arma 2 Operation Arrowhead",purchase,1.0,0 -99264709,"Arma 2 Operation Arrowhead",play,38.0,0 -99264709,"The Binding of Isaac",purchase,1.0,0 -99264709,"The Binding of Isaac",play,34.0,0 -99264709,"WAKFU",purchase,1.0,0 -99264709,"WAKFU",play,24.0,0 -99264709,"Realm of the Mad God",purchase,1.0,0 -99264709,"Realm of the Mad God",play,23.0,0 -99264709,"Mortal Kombat X",purchase,1.0,0 -99264709,"Mortal Kombat X",play,22.0,0 -99264709,"Castle Crashers",purchase,1.0,0 -99264709,"Castle Crashers",play,21.0,0 -99264709,"Robocraft",purchase,1.0,0 -99264709,"Robocraft",play,21.0,0 -99264709,"Metro Last Light Redux",purchase,1.0,0 -99264709,"Metro Last Light Redux",play,19.9,0 -99264709,"Warframe",purchase,1.0,0 -99264709,"Warframe",play,19.8,0 -99264709,"Magicka",purchase,1.0,0 -99264709,"Magicka",play,17.8,0 -99264709,"Car Mechanic Simulator 2015",purchase,1.0,0 -99264709,"Car Mechanic Simulator 2015",play,17.1,0 -99264709,"The Escapists",purchase,1.0,0 -99264709,"The Escapists",play,16.5,0 -99264709,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -99264709,"Burnout Paradise The Ultimate Box",play,16.4,0 -99264709,"Skullgirls",purchase,1.0,0 -99264709,"Skullgirls",play,15.2,0 -99264709,"Rust",purchase,1.0,0 -99264709,"Rust",play,14.7,0 -99264709,"Hitman Absolution",purchase,1.0,0 -99264709,"Hitman Absolution",play,14.6,0 -99264709,"Dishonored",purchase,1.0,0 -99264709,"Dishonored",play,14.3,0 -99264709,"SpeedRunners",purchase,1.0,0 -99264709,"SpeedRunners",play,14.1,0 -99264709,"Portal 2",purchase,1.0,0 -99264709,"Portal 2",play,13.6,0 -99264709,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -99264709,"Call of Duty Black Ops II - Multiplayer",play,13.6,0 -99264709,"This War of Mine",purchase,1.0,0 -99264709,"This War of Mine",play,10.9,0 -99264709,"Call of Duty Black Ops II",purchase,1.0,0 -99264709,"Call of Duty Black Ops II",play,10.9,0 -99264709,"Dying Light",purchase,1.0,0 -99264709,"Dying Light",play,10.8,0 -99264709,"Orcs Must Die! 2",purchase,1.0,0 -99264709,"Orcs Must Die! 2",play,10.5,0 -99264709,"Magicite",purchase,1.0,0 -99264709,"Magicite",play,9.3,0 -99264709,"Sid Meier's Civilization V",purchase,1.0,0 -99264709,"Sid Meier's Civilization V",play,9.2,0 -99264709,"XCOM Enemy Unknown",purchase,1.0,0 -99264709,"XCOM Enemy Unknown",play,8.8,0 -99264709,"Spore",purchase,1.0,0 -99264709,"Spore",play,8.8,0 -99264709,"No More Room in Hell",purchase,1.0,0 -99264709,"No More Room in Hell",play,8.2,0 -99264709,"Metro 2033",purchase,1.0,0 -99264709,"Metro 2033",play,6.2,0 -99264709,"Cradle",purchase,1.0,0 -99264709,"Cradle",play,5.7,0 -99264709,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -99264709,"Just Cause 2 Multiplayer Mod",play,5.7,0 -99264709,"Toribash",purchase,1.0,0 -99264709,"Toribash",play,5.6,0 -99264709,"Sniper Elite V2",purchase,1.0,0 -99264709,"Sniper Elite V2",play,5.6,0 -99264709,"AdVenture Capitalist",purchase,1.0,0 -99264709,"AdVenture Capitalist",play,5.5,0 -99264709,"Terraria",purchase,1.0,0 -99264709,"Terraria",play,5.5,0 -99264709,"Poker Night 2",purchase,1.0,0 -99264709,"Poker Night 2",play,5.4,0 -99264709,"Gotham City Impostors Free To Play",purchase,1.0,0 -99264709,"Gotham City Impostors Free To Play",play,5.2,0 -99264709,"Grand Theft Auto IV",purchase,1.0,0 -99264709,"Grand Theft Auto IV",play,4.9,0 -99264709,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -99264709,"Warhammer 40,000 Dawn of War Dark Crusade",play,4.8,0 -99264709,"BattleBlock Theater",purchase,1.0,0 -99264709,"BattleBlock Theater",play,4.8,0 -99264709,"ARK Survival Evolved",purchase,1.0,0 -99264709,"ARK Survival Evolved",play,4.2,0 -99264709,"Space Engineers",purchase,1.0,0 -99264709,"Space Engineers",play,4.2,0 -99264709,"Darkest Dungeon",purchase,1.0,0 -99264709,"Darkest Dungeon",play,4.0,0 -99264709,"Magicka 2",purchase,1.0,0 -99264709,"Magicka 2",play,3.8,0 -99264709,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -99264709,"Call of Duty Black Ops II - Zombies",play,3.8,0 -99264709,"Worms Revolution",purchase,1.0,0 -99264709,"Worms Revolution",play,3.8,0 -99264709,"Clicker Heroes",purchase,1.0,0 -99264709,"Clicker Heroes",play,3.7,0 -99264709,"Dwarfs F2P",purchase,1.0,0 -99264709,"Dwarfs F2P",play,3.6,0 -99264709,"Primal Carnage",purchase,1.0,0 -99264709,"Primal Carnage",play,3.4,0 -99264709,"World of Guns Gun Disassembly",purchase,1.0,0 -99264709,"World of Guns Gun Disassembly",play,3.4,0 -99264709,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -99264709,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,3.4,0 -99264709,"Just Cause 2",purchase,1.0,0 -99264709,"Just Cause 2",play,3.2,0 -99264709,"Happy Wars",purchase,1.0,0 -99264709,"Happy Wars",play,3.2,0 -99264709,"The Forest",purchase,1.0,0 -99264709,"The Forest",play,3.2,0 -99264709,"Dungeon of the Endless",purchase,1.0,0 -99264709,"Dungeon of the Endless",play,3.1,0 -99264709,"The Bridge",purchase,1.0,0 -99264709,"The Bridge",play,3.1,0 -99264709,"METAL SLUG 3",purchase,1.0,0 -99264709,"METAL SLUG 3",play,3.0,0 -99264709,"Transformice",purchase,1.0,0 -99264709,"Transformice",play,2.9,0 -99264709,"DC Universe Online",purchase,1.0,0 -99264709,"DC Universe Online",play,2.6,0 -99264709,"Sniper Elite Nazi Zombie Army",purchase,1.0,0 -99264709,"Sniper Elite Nazi Zombie Army",play,2.5,0 -99264709,"Dead Island Epidemic",purchase,1.0,0 -99264709,"Dead Island Epidemic",play,2.5,0 -99264709,"Bloody Trapland",purchase,1.0,0 -99264709,"Bloody Trapland",play,2.4,0 -99264709,"Monaco",purchase,1.0,0 -99264709,"Monaco",play,2.3,0 -99264709,"Shadows on the Vatican - Act I Greed",purchase,1.0,0 -99264709,"Shadows on the Vatican - Act I Greed",play,2.3,0 -99264709,"SimCity 4 Deluxe",purchase,1.0,0 -99264709,"SimCity 4 Deluxe",play,2.2,0 -99264709,"Trove",purchase,1.0,0 -99264709,"Trove",play,2.1,0 -99264709,"Besiege",purchase,1.0,0 -99264709,"Besiege",play,2.1,0 -99264709,"Warface",purchase,1.0,0 -99264709,"Warface",play,1.9,0 -99264709,"Assassin's Creed IV Black Flag",purchase,1.0,0 -99264709,"Assassin's Creed IV Black Flag",play,1.7,0 -99264709,"Dirty Bomb",purchase,1.0,0 -99264709,"Dirty Bomb",play,1.7,0 -99264709,"Sigils of Elohim",purchase,1.0,0 -99264709,"Sigils of Elohim",play,1.7,0 -99264709,"Spore Creepy & Cute Parts Pack",purchase,1.0,0 -99264709,"Spore Creepy & Cute Parts Pack",play,1.6,0 -99264709,"Mad Max",purchase,1.0,0 -99264709,"Mad Max",play,1.5,0 -99264709,"Risk of Rain",purchase,1.0,0 -99264709,"Risk of Rain",play,1.4,0 -99264709,"Yet Another Zombie Defense",purchase,1.0,0 -99264709,"Yet Another Zombie Defense",play,1.3,0 -99264709,"Aura Kingdom",purchase,1.0,0 -99264709,"Aura Kingdom",play,0.9,0 -99264709,"Spore Galactic Adventures",purchase,1.0,0 -99264709,"Spore Galactic Adventures",play,0.9,0 -99264709,"Loadout",purchase,1.0,0 -99264709,"Loadout",play,0.9,0 -99264709,"Amnesia The Dark Descent",purchase,1.0,0 -99264709,"Amnesia The Dark Descent",play,0.9,0 -99264709,"Stealth Inc 2",purchase,1.0,0 -99264709,"Stealth Inc 2",play,0.9,0 -99264709,"Double Action Boogaloo",purchase,1.0,0 -99264709,"Double Action Boogaloo",play,0.8,0 -99264709,"The Elder Scrolls V Skyrim",purchase,1.0,0 -99264709,"The Elder Scrolls V Skyrim",play,0.8,0 -99264709,"Battle Nations",purchase,1.0,0 -99264709,"Battle Nations",play,0.8,0 -99264709,"La Tale",purchase,1.0,0 -99264709,"La Tale",play,0.6,0 -99264709,"BLOCKADE 3D",purchase,1.0,0 -99264709,"BLOCKADE 3D",play,0.6,0 -99264709,"RaceRoom Racing Experience ",purchase,1.0,0 -99264709,"RaceRoom Racing Experience ",play,0.5,0 -99264709,"Only If",purchase,1.0,0 -99264709,"Only If",play,0.5,0 -99264709,"Emily is Away",purchase,1.0,0 -99264709,"Emily is Away",play,0.5,0 -99264709,"Trials Evolution Gold Edition",purchase,1.0,0 -99264709,"Trials Evolution Gold Edition",play,0.5,0 -99264709,"Scribblenauts Unlimited",purchase,1.0,0 -99264709,"Scribblenauts Unlimited",play,0.5,0 -99264709,"Mars War Logs",purchase,1.0,0 -99264709,"Mars War Logs",play,0.4,0 -99264709,"Rush Bros",purchase,1.0,0 -99264709,"Rush Bros",play,0.4,0 -99264709,"NiGHTS into Dreams...",purchase,1.0,0 -99264709,"NiGHTS into Dreams...",play,0.4,0 -99264709,"Trine 2",purchase,1.0,0 -99264709,"Trine 2",play,0.3,0 -99264709,"Floating Point",purchase,1.0,0 -99264709,"Floating Point",play,0.3,0 -99264709,"Scribblenauts Unmasked",purchase,1.0,0 -99264709,"Scribblenauts Unmasked",play,0.3,0 -99264709,"Arma 2",purchase,1.0,0 -99264709,"Arma 2",play,0.2,0 -99264709,"Guns and Robots",purchase,1.0,0 -99264709,"Guns and Robots",play,0.1,0 -99264709,"Arma 2 DayZ Mod",purchase,1.0,0 -99264709,"Arma 2 DayZ Mod",play,0.1,0 -99264709,"Marvel Heroes 2015",purchase,1.0,0 -99264709,"Marvel Heroes 2015",play,0.1,0 -99264709,"Adventures of Shuggy",purchase,1.0,0 -99264709,"Adventures of Shuggy",play,0.1,0 -99264709,"A Virus Named TOM",purchase,1.0,0 -99264709,"Dino D-Day",purchase,1.0,0 -99264709,"theHunter",purchase,1.0,0 -99264709,"8BitMMO",purchase,1.0,0 -99264709,"Magicka Wizard Wars",purchase,1.0,0 -99264709,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -99264709,"Color Symphony",purchase,1.0,0 -99264709,"Audiosurf",purchase,1.0,0 -99264709,"ACE - Arena Cyber Evolution",purchase,1.0,0 -99264709,"Arma 3 Zeus",purchase,1.0,0 -99264709,"BEEP",purchase,1.0,0 -99264709,"Brick-Force",purchase,1.0,0 -99264709,"Car Mechanic Simulator 2015 - Youngtimer",purchase,1.0,0 -99264709,"Chivalry Medieval Warfare",purchase,1.0,0 -99264709,"Faces of War",purchase,1.0,0 -99264709,"Fistful of Frags",purchase,1.0,0 -99264709,"Frontline Tactics",purchase,1.0,0 -99264709,"Garshasp The Monster Slayer",purchase,1.0,0 -99264709,"Grand Chase",purchase,1.0,0 -99264709,"Gravity Badgers",purchase,1.0,0 -99264709,"Greyfox",purchase,1.0,0 -99264709,"Hitman Sniper Challenge",purchase,1.0,0 -99264709,"Killing Floor Uncovered",purchase,1.0,0 -99264709,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -99264709,"Labyronia RPG 2",purchase,1.0,0 -99264709,"Nosgoth",purchase,1.0,0 -99264709,"PARTICLE MACE",purchase,1.0,0 -99264709,"Patch testing for Chivalry",purchase,1.0,0 -99264709,"Penumbra Black Plague",purchase,1.0,0 -99264709,"Penumbra Overture",purchase,1.0,0 -99264709,"Penumbra Requiem",purchase,1.0,0 -99264709,"Pixel Puzzles Japan",purchase,1.0,0 -99264709,"Polarity",purchase,1.0,0 -99264709,"Quake Live",purchase,1.0,0 -99264709,"Rhythm Destruction",purchase,1.0,0 -99264709,"Saviors",purchase,1.0,0 -99264709,"Skullgirls Endless Beta",purchase,1.0,0 -99264709,"SMITE",purchase,1.0,0 -99264709,"Starbound - Soundtrack",purchase,1.0,0 -99264709,"Starbound - Unstable",purchase,1.0,0 -99264709,"Star Conflict",purchase,1.0,0 -99264709,"Streets of Chaos",purchase,1.0,0 -99264709,"Sun Blast",purchase,1.0,0 -99264709,"Survarium",purchase,1.0,0 -99264709,"The Expendabros",purchase,1.0,0 -99264709,"The Hat Man Shadow Ward",purchase,1.0,0 -99264709,"Waveform",purchase,1.0,0 -99264709,"ZMR Free Quick-Start Pack",purchase,1.0,0 -99264709,"Zombies Monsters Robots",purchase,1.0,0 -211546021,"IL-2 Sturmovik Cliffs of Dover",purchase,1.0,0 -216535049,"Dota 2",purchase,1.0,0 -216535049,"Dota 2",play,877.0,0 -81746734,"Loadout",purchase,1.0,0 -81746734,"Loadout",play,425.0,0 -81746734,"HAWKEN",purchase,1.0,0 -81746734,"HAWKEN",play,317.0,0 -81746734,"Nosgoth",purchase,1.0,0 -81746734,"Nosgoth",play,114.0,0 -81746734,"Defiance",purchase,1.0,0 -81746734,"Defiance",play,60.0,0 -81746734,"Warface",purchase,1.0,0 -81746734,"Warface",play,42.0,0 -81746734,"Serious Sam HD The Second Encounter",purchase,1.0,0 -81746734,"Serious Sam HD The Second Encounter",play,42.0,0 -81746734,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -81746734,"Tom Clancy's Ghost Recon Phantoms - NA",play,28.0,0 -81746734,"Neverwinter",purchase,1.0,0 -81746734,"Neverwinter",play,28.0,0 -81746734,"Gotham City Impostors Free To Play",purchase,1.0,0 -81746734,"Gotham City Impostors Free To Play",play,27.0,0 -81746734,"Dirty Bomb",purchase,1.0,0 -81746734,"Dirty Bomb",play,19.3,0 -81746734,"Loadout Campaign Beta",purchase,1.0,0 -81746734,"Loadout Campaign Beta",play,15.7,0 -81746734,"Blacklight Retribution",purchase,1.0,0 -81746734,"Blacklight Retribution",play,11.4,0 -81746734,"AirMech",purchase,1.0,0 -81746734,"AirMech",play,11.3,0 -81746734,"APB Reloaded",purchase,1.0,0 -81746734,"APB Reloaded",play,10.0,0 -81746734,"GunZ 2 The Second Duel",purchase,1.0,0 -81746734,"GunZ 2 The Second Duel",play,7.2,0 -81746734,"Dizzel",purchase,1.0,0 -81746734,"Dizzel",play,5.7,0 -81746734,"No More Room in Hell",purchase,1.0,0 -81746734,"No More Room in Hell",play,5.5,0 -81746734,"Team Fortress 2",purchase,1.0,0 -81746734,"Team Fortress 2",play,4.1,0 -81746734,"F.E.A.R. Online",purchase,1.0,0 -81746734,"F.E.A.R. Online",play,2.1,0 -81746734,"Tribes Ascend",purchase,1.0,0 -81746734,"Tribes Ascend",play,1.7,0 -81746734,"Aftermath",purchase,1.0,0 -81746734,"Aftermath",play,1.6,0 -81746734,"Heroes & Generals",purchase,1.0,0 -81746734,"Heroes & Generals",play,1.6,0 -81746734,"Firefall",purchase,1.0,0 -81746734,"Firefall",play,1.2,0 -81746734,"Insurgency Modern Infantry Combat",purchase,1.0,0 -81746734,"Insurgency Modern Infantry Combat",play,1.2,0 -81746734,"Metro 2033",purchase,1.0,0 -81746734,"Metro 2033",play,1.1,0 -81746734,"War Thunder",purchase,1.0,0 -81746734,"War Thunder",play,0.8,0 -81746734,"Panzar",purchase,1.0,0 -81746734,"Panzar",play,0.7,0 -81746734,"Unturned",purchase,1.0,0 -81746734,"Unturned",play,0.6,0 -81746734,"Dead Island Epidemic",purchase,1.0,0 -81746734,"Dead Island Epidemic",play,0.4,0 -81746734,"America's Army Proving Grounds",purchase,1.0,0 -81746734,"America's Army Proving Grounds",play,0.3,0 -81746734,"Gear Up",purchase,1.0,0 -81746734,"Gear Up",play,0.2,0 -81746734,"Rise of Incarnates",purchase,1.0,0 -81746734,"Rise of Incarnates",play,0.2,0 -81746734,"Survarium",purchase,1.0,0 -81746734,"Vindictus",purchase,1.0,0 -37068073,"Half-Life 2 Lost Coast",purchase,1.0,0 -37068073,"Half-Life 2 Deathmatch",purchase,1.0,0 -215763021,"Dead Rising 3",purchase,1.0,0 -215763021,"Dead Rising 3",play,12.6,0 -215763021,"Dead Rising 3 DLC1",purchase,1.0,0 -215763021,"Dead Rising 3 DLC2",purchase,1.0,0 -215763021,"Dead Rising 3 DLC3",purchase,1.0,0 -215763021,"Dead Rising 3 DLC4",purchase,1.0,0 -96607408,"Garry's Mod",purchase,1.0,0 -96607408,"Garry's Mod",play,9.9,0 -96607408,"Left 4 Dead 2",purchase,1.0,0 -96607408,"Left 4 Dead 2",play,1.3,0 -96607408,"Portal 2",purchase,1.0,0 -96607408,"Portal 2",play,1.1,0 -189137548,"Counter-Strike Global Offensive",purchase,1.0,0 -189137548,"Counter-Strike Global Offensive",play,87.0,0 -189137548,"Nosgoth",purchase,1.0,0 -189137548,"Path of Exile",purchase,1.0,0 -86374423,"Team Fortress 2",purchase,1.0,0 -86374423,"Team Fortress 2",play,10.8,0 -190016182,"Unturned",purchase,1.0,0 -190016182,"Unturned",play,35.0,0 -190016182,"Heroes & Generals",purchase,1.0,0 -190016182,"Heroes & Generals",play,0.7,0 -190016182,"HAWKEN",purchase,1.0,0 -190016182,"Dirty Bomb",purchase,1.0,0 -190016182,"Dungeons & Dragons Online",purchase,1.0,0 -190016182,"Marvel Heroes 2015",purchase,1.0,0 -190016182,"Mortal Online",purchase,1.0,0 -190016182,"Neverwinter",purchase,1.0,0 -190016182,"No More Room in Hell",purchase,1.0,0 -190016182,"RIFT",purchase,1.0,0 -190016182,"Rise of Incarnates",purchase,1.0,0 -190016182,"Trove",purchase,1.0,0 -190016182,"Warframe",purchase,1.0,0 -190016182,"War Thunder",purchase,1.0,0 -263936784,"Cities Skylines",purchase,1.0,0 -263936784,"Cities Skylines",play,10.8,0 -191244342,"Dota 2",purchase,1.0,0 -191244342,"Dota 2",play,1368.0,0 -117331659,"Call of Duty Black Ops II",purchase,1.0,0 -117331659,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -117331659,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -117331659,"Call of Duty World at War",purchase,1.0,0 -105685427,"The Elder Scrolls V Skyrim",purchase,1.0,0 -105685427,"The Elder Scrolls V Skyrim",play,267.0,0 -74521316,"The Elder Scrolls V Skyrim",purchase,1.0,0 -74521316,"The Elder Scrolls V Skyrim",play,188.0,0 -74521316,"Fallout New Vegas",purchase,1.0,0 -74521316,"Fallout New Vegas",play,70.0,0 -74521316,"Neverwinter",purchase,1.0,0 -74521316,"Neverwinter",play,36.0,0 -74521316,"Dungeon Siege III",purchase,1.0,0 -74521316,"Dungeon Siege III",play,19.4,0 -74521316,"Darksiders",purchase,1.0,0 -74521316,"Darksiders",play,19.3,0 -74521316,"Rising Angels Reborn",purchase,1.0,0 -74521316,"Rising Angels Reborn",play,5.9,0 -74521316,"Sunrider Mask of Arcadius",purchase,1.0,0 -74521316,"Sunrider Mask of Arcadius",play,4.6,0 -74521316,"Echo of Soul",purchase,1.0,0 -74521316,"Echo of Soul",play,4.0,0 -74521316,"Divinity Original Sin",purchase,1.0,0 -74521316,"Divinity Original Sin",play,2.9,0 -74521316,"Aura Kingdom",purchase,1.0,0 -74521316,"Aura Kingdom",play,2.5,0 -74521316,"Metro Last Light",purchase,1.0,0 -74521316,"Metro Last Light",play,0.8,0 -74521316,"Pillars of Eternity",purchase,1.0,0 -74521316,"Pillars of Eternity",play,0.7,0 -74521316,"Crysis 2 Maximum Edition",purchase,1.0,0 -74521316,"Crysis 2 Maximum Edition",play,0.6,0 -74521316,"The Lord of the Rings War in the North",purchase,1.0,0 -74521316,"The Lord of the Rings War in the North",play,0.5,0 -74521316,"Medal of Honor(TM) Single Player",purchase,1.0,0 -74521316,"Medal of Honor(TM) Single Player",play,0.1,0 -74521316,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -74521316,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -74521316,"Medal of Honor Pre-Order",purchase,1.0,0 -74521316,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -74521316,"Sniper Elite V2",purchase,1.0,0 -74521316,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -302918609,"Dota 2",purchase,1.0,0 -302918609,"Dota 2",play,0.7,0 -302918609,"Counter-Strike Global Offensive",purchase,1.0,0 -302918609,"Counter-Strike Global Offensive",play,0.5,0 -288274882,"Trove",purchase,1.0,0 -288274882,"Trove",play,91.0,0 -288274882,"Transformice",purchase,1.0,0 -288274882,"Transformice",play,22.0,0 -288274882,"Warframe",purchase,1.0,0 -288274882,"Warframe",play,8.6,0 -288274882,"Brawlhalla",purchase,1.0,0 -288274882,"Brawlhalla",play,7.4,0 -288274882,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -288274882,"Tom Clancy's Ghost Recon Phantoms - EU",play,7.2,0 -288274882,"Mitos.is The Game",purchase,1.0,0 -288274882,"Mitos.is The Game",play,6.6,0 -288274882,"Unturned",purchase,1.0,0 -288274882,"Unturned",play,6.4,0 -288274882,"Football Superstars",purchase,1.0,0 -288274882,"Football Superstars",play,6.0,0 -288274882,"Red Crucible Firestorm",purchase,1.0,0 -288274882,"Red Crucible Firestorm",play,3.8,0 -288274882,"FreeStyle2 Street Basketball",purchase,1.0,0 -288274882,"FreeStyle2 Street Basketball",play,3.2,0 -288274882,"Villagers and Heroes",purchase,1.0,0 -288274882,"Villagers and Heroes",play,1.5,0 -288274882,"BLOCKADE 3D",purchase,1.0,0 -288274882,"BLOCKADE 3D",play,1.0,0 -288274882,"Borderlands 2",purchase,1.0,0 -288274882,"Borderlands 2",play,0.9,0 -288274882,"Batla",purchase,1.0,0 -288274882,"Batla",play,0.9,0 -288274882,"Creativerse",purchase,1.0,0 -288274882,"Creativerse",play,0.7,0 -288274882,"Happy Wars",purchase,1.0,0 -288274882,"Happy Wars",play,0.3,0 -288274882,"PARTICLE MACE",purchase,1.0,0 -288274882,"PARTICLE MACE",play,0.3,0 -288274882,"Robocraft",purchase,1.0,0 -288274882,"Robocraft",play,0.2,0 -288274882,"Dragons and Titans",purchase,1.0,0 -288274882,"Dragons and Titans",play,0.2,0 -288274882,"Pool Nation FX",purchase,1.0,0 -288274882,"Pool Nation FX",play,0.2,0 -288274882,"Toribash",purchase,1.0,0 -288274882,"Toribash",play,0.2,0 -288274882,"Genesis Online",purchase,1.0,0 -288274882,"Metal War Online Retribution",purchase,1.0,0 -288274882,"HAWKEN",purchase,1.0,0 -288274882,"Heroes & Generals",purchase,1.0,0 -288274882,"PlanetSide 2",purchase,1.0,0 -288274882,"Rise of Flight United",purchase,1.0,0 -288274882,"Star Trek Online",purchase,1.0,0 -288274882,"The Lord of the Rings Online",purchase,1.0,0 -288274882,"Warface",purchase,1.0,0 -201533036,"Dota 2",purchase,1.0,0 -201533036,"Dota 2",play,0.5,0 -192582507,"Robocraft",purchase,1.0,0 -192582507,"Robocraft",play,14.4,0 -107769137,"No More Room in Hell",purchase,1.0,0 -107769137,"No More Room in Hell",play,1.7,0 -182762077,"Dota 2",purchase,1.0,0 -182762077,"Dota 2",play,42.0,0 -126868138,"Don't Starve",purchase,1.0,0 -126868138,"Don't Starve",play,41.0,0 -126868138,"Unturned",purchase,1.0,0 -126868138,"Unturned",play,7.4,0 -126868138,"CastleMiner Z",purchase,1.0,0 -126868138,"CastleMiner Z",play,0.5,0 -126868138,"Don't Starve Together Beta",purchase,1.0,0 -233407190,"iBomber Defense Pacific",purchase,1.0,0 -195020366,"Dota 2",purchase,1.0,0 -195020366,"Dota 2",play,0.6,0 -101355301,"Sniper Ghost Warrior",purchase,1.0,0 -101355301,"Sniper Ghost Warrior",play,0.9,0 -50825641,"NBA 2K9",purchase,1.0,0 -246241028,"Counter-Strike Global Offensive",purchase,1.0,0 -246241028,"Counter-Strike Global Offensive",play,149.0,0 -246241028,"Fallout 3",purchase,1.0,0 -246241028,"Cry of Fear",purchase,1.0,0 -246241028,"Magicka Wizard Wars",purchase,1.0,0 -246241028,"No More Room in Hell",purchase,1.0,0 -246241028,"Super Crate Box",purchase,1.0,0 -246241028,"Survarium",purchase,1.0,0 -246241028,"theHunter",purchase,1.0,0 -246241028,"The Mighty Quest For Epic Loot",purchase,1.0,0 -246241028,"Toribash",purchase,1.0,0 -246241028,"Unturned",purchase,1.0,0 -165695811,"Dota 2",purchase,1.0,0 -165695811,"Dota 2",play,16.0,0 -80351692,"The Elder Scrolls V Skyrim",purchase,1.0,0 -80351692,"The Elder Scrolls V Skyrim",play,202.0,0 -80351692,"Sid Meier's Civilization V",purchase,1.0,0 -80351692,"Sid Meier's Civilization V",play,162.0,0 -80351692,"Company of Heroes (New Steam Version)",purchase,1.0,0 -80351692,"Company of Heroes (New Steam Version)",play,89.0,0 -80351692,"Assassin's Creed III",purchase,1.0,0 -80351692,"Assassin's Creed III",play,72.0,0 -80351692,"Company of Heroes 2",purchase,1.0,0 -80351692,"Company of Heroes 2",play,60.0,0 -80351692,"Mass Effect 2",purchase,1.0,0 -80351692,"Mass Effect 2",play,50.0,0 -80351692,"Saints Row The Third",purchase,1.0,0 -80351692,"Saints Row The Third",play,36.0,0 -80351692,"Age of Empires III Complete Collection",purchase,1.0,0 -80351692,"Age of Empires III Complete Collection",play,36.0,0 -80351692,"Star Wars - Battlefront II",purchase,1.0,0 -80351692,"Star Wars - Battlefront II",play,20.0,0 -80351692,"Arma 3",purchase,1.0,0 -80351692,"Arma 3",play,17.2,0 -80351692,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -80351692,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,15.0,0 -80351692,"Metro Last Light",purchase,1.0,0 -80351692,"Metro Last Light",play,14.4,0 -80351692,"Metro 2033",purchase,1.0,0 -80351692,"Metro 2033",play,9.1,0 -80351692,"Anno 2070",purchase,1.0,0 -80351692,"Anno 2070",play,8.5,0 -80351692,"Star Wars Empire at War Gold",purchase,1.0,0 -80351692,"Star Wars Empire at War Gold",play,7.1,0 -80351692,"Stronghold HD",purchase,1.0,0 -80351692,"Stronghold HD",play,4.2,0 -80351692,"Fallout New Vegas",purchase,1.0,0 -80351692,"Fallout New Vegas",play,2.7,0 -80351692,"Dishonored",purchase,1.0,0 -80351692,"Dishonored",play,1.6,0 -80351692,"PAYDAY 2",purchase,1.0,0 -80351692,"PAYDAY 2",play,1.4,0 -80351692,"Company of Heroes",purchase,1.0,0 -80351692,"Company of Heroes",play,1.1,0 -80351692,"American Conquest",purchase,1.0,0 -80351692,"American Conquest",play,0.3,0 -80351692,"Company of Heroes Opposing Fronts",purchase,1.0,0 -80351692,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -80351692,"Arma 3 Zeus",purchase,1.0,0 -80351692,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -80351692,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -80351692,"Company of Heroes Tales of Valor",purchase,1.0,0 -80351692,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -80351692,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -80351692,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -211161189,"Dota 2",purchase,1.0,0 -211161189,"Dota 2",play,1.2,0 -227248393,"Dota 2",purchase,1.0,0 -227248393,"Dota 2",play,0.7,0 -192955397,"Unturned",purchase,1.0,0 -192955397,"Unturned",play,2.8,0 -192955397,"Team Fortress 2",purchase,1.0,0 -192955397,"Team Fortress 2",play,1.2,0 -192955397,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -201122970,"Unturned",purchase,1.0,0 -201122970,"Unturned",play,8.8,0 -201122970,"Nether",purchase,1.0,0 -201122970,"Nether",play,2.6,0 -201122970,"Robocraft",purchase,1.0,0 -201122970,"Robocraft",play,1.3,0 -201122970,"Trove",purchase,1.0,0 -201122970,"Trove",play,1.0,0 -201122970,"Dragons and Titans",purchase,1.0,0 -201122970,"Dragons and Titans",play,0.6,0 -201122970,"World of Guns Gun Disassembly",purchase,1.0,0 -201122970,"Tactical Intervention",purchase,1.0,0 -184609989,"Dota 2",purchase,1.0,0 -184609989,"Dota 2",play,1.7,0 -193858324,"Goat Simulator",purchase,1.0,0 -193858324,"Goat Simulator",play,4.3,0 -299523550,"Bloodwood Reload",purchase,1.0,0 -299523550,"Bloodwood Reload",play,0.2,0 -109969285,"PAYDAY The Heist",purchase,1.0,0 -109969285,"PAYDAY The Heist",play,0.9,0 -165239864,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -165239864,"METAL GEAR SOLID V THE PHANTOM PAIN",play,188.0,0 -165239864,"FINAL FANTASY XIII",purchase,1.0,0 -165239864,"FINAL FANTASY XIII",play,29.0,0 -165239864,"Valkyria Chronicles",purchase,1.0,0 -165239864,"Valkyria Chronicles",play,24.0,0 -165239864,"AKIBA'S TRIP Undead & Undressed",purchase,1.0,0 -165239864,"AKIBA'S TRIP Undead & Undressed",play,22.0,0 -165239864,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -165239864,"METAL GEAR SOLID V GROUND ZEROES",play,12.3,0 -165239864,"The Elder Scrolls V Skyrim",purchase,1.0,0 -165239864,"The Elder Scrolls V Skyrim",play,11.4,0 -165239864,"FINAL FANTASY XIII-2",purchase,1.0,0 -165239864,"FINAL FANTASY XIII-2",play,4.6,0 -165239864,"Thief",purchase,1.0,0 -165239864,"Thief",play,1.4,0 -165239864,"DiRT 3",purchase,1.0,0 -165239864,"DiRT 3",play,0.6,0 -165239864,"DmC Devil May Cry",purchase,1.0,0 -165239864,"DmC Devil May Cry",play,0.3,0 -165239864,"DiRT 3 Complete Edition",purchase,1.0,0 -165239864,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -165239864,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -165239864,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -165239864,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -195943868,"Dota 2",purchase,1.0,0 -195943868,"Dota 2",play,1026.0,0 -195943868,"Team Fortress 2",purchase,1.0,0 -195943868,"Team Fortress 2",play,0.6,0 -195943868,"Dragon Nest Europe",purchase,1.0,0 -195943868,"Dragon Nest Europe",play,0.1,0 -195943868,"Blacklight Retribution",purchase,1.0,0 -255526371,"Dota 2",purchase,1.0,0 -255526371,"Dota 2",play,3.8,0 -88035166,"Out of the Park Baseball 16",purchase,1.0,0 -88035166,"Out of the Park Baseball 16",play,652.0,0 -88035166,"Out of the Park Baseball 15",purchase,1.0,0 -88035166,"Out of the Park Baseball 15",play,517.0,0 -88035166,"Borderlands 2",purchase,1.0,0 -88035166,"Borderlands 2",play,125.0,0 -88035166,"Fallout 4",purchase,1.0,0 -88035166,"Fallout 4",play,105.0,0 -88035166,"Counter-Strike Global Offensive",purchase,1.0,0 -88035166,"Counter-Strike Global Offensive",play,75.0,0 -88035166,"Saints Row The Third",purchase,1.0,0 -88035166,"Saints Row The Third",play,61.0,0 -88035166,"PAYDAY 2",purchase,1.0,0 -88035166,"PAYDAY 2",play,60.0,0 -88035166,"Fallout New Vegas",purchase,1.0,0 -88035166,"Fallout New Vegas",play,55.0,0 -88035166,"Grand Theft Auto IV",purchase,1.0,0 -88035166,"Grand Theft Auto IV",play,47.0,0 -88035166,"Sleeping Dogs",purchase,1.0,0 -88035166,"Sleeping Dogs",play,37.0,0 -88035166,"Sid Meier's Civilization V",purchase,1.0,0 -88035166,"Sid Meier's Civilization V",play,36.0,0 -88035166,"Mass Effect 2",purchase,1.0,0 -88035166,"Mass Effect 2",play,31.0,0 -88035166,"Game Dev Tycoon",purchase,1.0,0 -88035166,"Game Dev Tycoon",play,25.0,0 -88035166,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -88035166,"Tom Clancy's Splinter Cell Blacklist",play,17.9,0 -88035166,"Hitman Absolution",purchase,1.0,0 -88035166,"Hitman Absolution",play,17.6,0 -88035166,"PAYDAY The Heist",purchase,1.0,0 -88035166,"PAYDAY The Heist",play,13.8,0 -88035166,"Dying Light",purchase,1.0,0 -88035166,"Dying Light",play,12.4,0 -88035166,"Chivalry Medieval Warfare",purchase,1.0,0 -88035166,"Chivalry Medieval Warfare",play,12.0,0 -88035166,"Max Payne 3",purchase,1.0,0 -88035166,"Max Payne 3",play,11.1,0 -88035166,"Miscreated",purchase,1.0,0 -88035166,"Miscreated",play,11.0,0 -88035166,"The Wolf Among Us",purchase,1.0,0 -88035166,"The Wolf Among Us",play,10.9,0 -88035166,"Call of Duty Advanced Warfare",purchase,1.0,0 -88035166,"Call of Duty Advanced Warfare",play,10.6,0 -88035166,"Crysis 2 Maximum Edition",purchase,1.0,0 -88035166,"Crysis 2 Maximum Edition",play,10.4,0 -88035166,"Natural Selection 2",purchase,1.0,0 -88035166,"Natural Selection 2",play,8.7,0 -88035166,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -88035166,"Burnout Paradise The Ultimate Box",play,8.0,0 -88035166,"Insurgency",purchase,1.0,0 -88035166,"Insurgency",play,7.9,0 -88035166,"Black Mesa",purchase,1.0,0 -88035166,"Black Mesa",play,7.8,0 -88035166,"FTL Faster Than Light",purchase,1.0,0 -88035166,"FTL Faster Than Light",play,6.8,0 -88035166,"McPixel",purchase,1.0,0 -88035166,"McPixel",play,6.7,0 -88035166,"Papers, Please",purchase,1.0,0 -88035166,"Papers, Please",play,6.6,0 -88035166,"Cities Skylines",purchase,1.0,0 -88035166,"Cities Skylines",play,6.4,0 -88035166,"Team Fortress 2",purchase,1.0,0 -88035166,"Team Fortress 2",play,6.1,0 -88035166,"Dishonored",purchase,1.0,0 -88035166,"Dishonored",play,6.0,0 -88035166,"Killing Floor",purchase,1.0,0 -88035166,"Killing Floor",play,6.0,0 -88035166,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -88035166,"Grand Theft Auto Episodes from Liberty City",play,5.5,0 -88035166,"Wolfenstein The Old Blood ",purchase,1.0,0 -88035166,"Wolfenstein The Old Blood ",play,4.9,0 -88035166,"Crysis Warhead",purchase,1.0,0 -88035166,"Crysis Warhead",play,4.5,0 -88035166,"Deus Ex Human Revolution",purchase,1.0,0 -88035166,"Deus Ex Human Revolution",play,4.4,0 -88035166,"Batman Arkham City GOTY",purchase,1.0,0 -88035166,"Batman Arkham City GOTY",play,4.1,0 -88035166,"Serious Sam 3 BFE",purchase,1.0,0 -88035166,"Serious Sam 3 BFE",play,3.6,0 -88035166,"Poker Night 2",purchase,1.0,0 -88035166,"Poker Night 2",play,2.6,0 -88035166,"Plague Inc Evolved",purchase,1.0,0 -88035166,"Plague Inc Evolved",play,2.5,0 -88035166,"Broforce",purchase,1.0,0 -88035166,"Broforce",play,2.3,0 -88035166,"Castle Crashers",purchase,1.0,0 -88035166,"Castle Crashers",play,2.2,0 -88035166,"Call of Juarez Gunslinger",purchase,1.0,0 -88035166,"Call of Juarez Gunslinger",play,1.9,0 -88035166,"Alan Wake",purchase,1.0,0 -88035166,"Alan Wake",play,1.9,0 -88035166,"Left 4 Dead 2",purchase,1.0,0 -88035166,"Left 4 Dead 2",play,1.7,0 -88035166,"Reus",purchase,1.0,0 -88035166,"Reus",play,1.6,0 -88035166,"The Swapper",purchase,1.0,0 -88035166,"The Swapper",play,1.4,0 -88035166,"The Ultimate DOOM",purchase,1.0,0 -88035166,"The Ultimate DOOM",play,1.3,0 -88035166,"No Time to Explain",purchase,1.0,0 -88035166,"No Time to Explain",play,1.3,0 -88035166,"Bastion",purchase,1.0,0 -88035166,"Bastion",play,1.2,0 -88035166,"Just Cause 2",purchase,1.0,0 -88035166,"Just Cause 2",play,1.2,0 -88035166,"Pool Nation",purchase,1.0,0 -88035166,"Pool Nation",play,1.2,0 -88035166,"Prison Architect",purchase,1.0,0 -88035166,"Prison Architect",play,1.0,0 -88035166,"Spelunky",purchase,1.0,0 -88035166,"Spelunky",play,1.0,0 -88035166,"Damnation City of Death",purchase,1.0,0 -88035166,"Damnation City of Death",play,1.0,0 -88035166,"Anarchy Arcade",purchase,1.0,0 -88035166,"Anarchy Arcade",play,0.8,0 -88035166,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -88035166,"Star Wars The Force Unleashed Ultimate Sith Edition",play,0.8,0 -88035166,"Need for Speed Undercover",purchase,1.0,0 -88035166,"Need for Speed Undercover",play,0.7,0 -88035166,"The Elder Scrolls V Skyrim",purchase,1.0,0 -88035166,"The Elder Scrolls V Skyrim",play,0.7,0 -88035166,"Apotheon",purchase,1.0,0 -88035166,"Apotheon",play,0.7,0 -88035166,"Thomas Was Alone",purchase,1.0,0 -88035166,"Thomas Was Alone",play,0.6,0 -88035166,"Medal of Honor(TM) Single Player",purchase,1.0,0 -88035166,"Medal of Honor(TM) Single Player",play,0.6,0 -88035166,"The Fall",purchase,1.0,0 -88035166,"The Fall",play,0.6,0 -88035166,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -88035166,"Sid Meier's Civilization Beyond Earth",play,0.5,0 -88035166,"Metro 2033",purchase,1.0,0 -88035166,"Metro 2033",play,0.5,0 -88035166,"Far Cry 2",purchase,1.0,0 -88035166,"Far Cry 2",play,0.4,0 -88035166,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -88035166,"Call of Duty Advanced Warfare - Multiplayer",play,0.4,0 -88035166,"Dino D-Day",purchase,1.0,0 -88035166,"Dino D-Day",play,0.3,0 -88035166,"Kerbal Space Program",purchase,1.0,0 -88035166,"Kerbal Space Program",play,0.2,0 -88035166,"GRID",purchase,1.0,0 -88035166,"GRID",play,0.2,0 -88035166,"DEFCON",purchase,1.0,0 -88035166,"DEFCON",play,0.2,0 -88035166,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -88035166,"Medal of Honor(TM) Multiplayer",play,0.2,0 -88035166,"Tomb Raider",purchase,1.0,0 -88035166,"Tomb Raider",play,0.2,0 -88035166,"Pixel Piracy",purchase,1.0,0 -88035166,"Pixel Piracy",play,0.2,0 -88035166,"Towns",purchase,1.0,0 -88035166,"Towns",play,0.1,0 -88035166,"Cubemen",purchase,1.0,0 -88035166,"Cubemen",play,0.1,0 -88035166,"Home",purchase,1.0,0 -88035166,"Blockland",purchase,1.0,0 -88035166,"DOOM II Hell on Earth",purchase,1.0,0 -88035166,"Crysis",purchase,1.0,0 -88035166,"Final DOOM",purchase,1.0,0 -88035166,"Cook, Serve, Delicious!",purchase,1.0,0 -88035166,"Democracy 3",purchase,1.0,0 -88035166,"AdVenture Capitalist",purchase,1.0,0 -88035166,"Alan Wake's American Nightmare",purchase,1.0,0 -88035166,"Alchemy Mysteries Prague Legends",purchase,1.0,0 -88035166,"Antichamber",purchase,1.0,0 -88035166,"BattleBlock Theater",purchase,1.0,0 -88035166,"Bejeweled 3",purchase,1.0,0 -88035166,"Cargo Commander",purchase,1.0,0 -88035166,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -88035166,"Crayon Chronicles",purchase,1.0,0 -88035166,"Crysis Wars",purchase,1.0,0 -88035166,"Dead Space",purchase,1.0,0 -88035166,"Dragon Age Origins",purchase,1.0,0 -88035166,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -88035166,"Eador. Masters of the Broken World",purchase,1.0,0 -88035166,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -88035166,"Fallout New Vegas Dead Money",purchase,1.0,0 -88035166,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -88035166,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -88035166,"Forge",purchase,1.0,0 -88035166,"Ghostbusters The Video Game",purchase,1.0,0 -88035166,"Guns of Icarus Online",purchase,1.0,0 -88035166,"Hitman Sniper Challenge",purchase,1.0,0 -88035166,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -88035166,"King Arthur's Gold",purchase,1.0,0 -88035166,"Legendary",purchase,1.0,0 -88035166,"Loadout",purchase,1.0,0 -88035166,"Loadout Campaign Beta",purchase,1.0,0 -88035166,"Master Levels for DOOM II",purchase,1.0,0 -88035166,"Medal of Honor Pre-Order",purchase,1.0,0 -88035166,"Metro 2033 Redux",purchase,1.0,0 -88035166,"Metro Last Light",purchase,1.0,0 -88035166,"Metro Last Light Redux",purchase,1.0,0 -88035166,"Mirror's Edge",purchase,1.0,0 -88035166,"Muffin Knight",purchase,1.0,0 -88035166,"Murder Miners",purchase,1.0,0 -88035166,"Nosgoth",purchase,1.0,0 -88035166,"No Time To Explain Remastered",purchase,1.0,0 -88035166,"Orbital Gear",purchase,1.0,0 -88035166,"Organ Trail Director's Cut",purchase,1.0,0 -88035166,"Patch testing for Chivalry",purchase,1.0,0 -88035166,"Real Boxing",purchase,1.0,0 -88035166,"Ring Runner Flight of the Sages",purchase,1.0,0 -88035166,"Sacred Gold",purchase,1.0,0 -88035166,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -88035166,"Sinister City",purchase,1.0,0 -88035166,"Sins of a Dark Age",purchase,1.0,0 -88035166,"Star Wars - Battlefront II",purchase,1.0,0 -88035166,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -88035166,"Star Wars Dark Forces",purchase,1.0,0 -88035166,"Star Wars Empire at War Gold",purchase,1.0,0 -88035166,"Star Wars Knights of the Old Republic",purchase,1.0,0 -88035166,"Star Wars The Force Unleashed II",purchase,1.0,0 -88035166,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -88035166,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -88035166,"Star Wars Republic Commando",purchase,1.0,0 -88035166,"Star Wars Starfighter",purchase,1.0,0 -88035166,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -88035166,"Stronghold 3",purchase,1.0,0 -88035166,"Super Toy Cars",purchase,1.0,0 -88035166,"Survivor Squad",purchase,1.0,0 -88035166,"Terraria",purchase,1.0,0 -88035166,"Thank You The Game",purchase,1.0,0 -88035166,"The Bureau XCOM Declassified",purchase,1.0,0 -88035166,"The Detail",purchase,1.0,0 -88035166,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -88035166,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -88035166,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -88035166,"The Ship",purchase,1.0,0 -88035166,"The Ship Single Player",purchase,1.0,0 -88035166,"The Ship Tutorial",purchase,1.0,0 -88035166,"The Stanley Parable",purchase,1.0,0 -88035166,"Transistor",purchase,1.0,0 -88035166,"Unturned",purchase,1.0,0 -88035166,"Velvet Assassin",purchase,1.0,0 -88035166,"World of Goo",purchase,1.0,0 -88035166,"XCOM Enemy Unknown",purchase,1.0,0 -88035166,"You Have to Win the Game",purchase,1.0,0 -279171078,"Trove",purchase,1.0,0 -279171078,"Trove",play,9.6,0 -279171078,"Warframe",purchase,1.0,0 -279171078,"Warframe",play,4.9,0 -279171078,"Unturned",purchase,1.0,0 -279171078,"Unturned",play,3.6,0 -279171078,"No More Room in Hell",purchase,1.0,0 -279171078,"No More Room in Hell",play,0.7,0 -65909415,"Tomb Raider",purchase,1.0,0 -65909415,"Tomb Raider",play,23.0,0 -65909415,"Alan Wake",purchase,1.0,0 -65909415,"Alan Wake",play,14.5,0 -65909415,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -65909415,"Batman Arkham Asylum GOTY Edition",play,10.3,0 -65909415,"BioShock",purchase,1.0,0 -65909415,"BioShock",play,10.1,0 -65909415,"Portal 2",purchase,1.0,0 -65909415,"Portal 2",play,8.7,0 -65909415,"BioShock 2",purchase,1.0,0 -65909415,"BioShock 2",play,7.8,0 -65909415,"Battlefield Bad Company 2",purchase,1.0,0 -65909415,"Battlefield Bad Company 2",play,6.5,0 -65909415,"Mirror's Edge",purchase,1.0,0 -65909415,"Mirror's Edge",play,5.7,0 -65909415,"Warframe",purchase,1.0,0 -65909415,"Warframe",play,5.4,0 -65909415,"Alan Wake's American Nightmare",purchase,1.0,0 -65909415,"Alan Wake's American Nightmare",play,4.1,0 -65909415,"Batman Arkham City GOTY",purchase,1.0,0 -65909415,"Batman Arkham City GOTY",play,3.4,0 -65909415,"Portal",purchase,1.0,0 -65909415,"Portal",play,2.6,0 -65909415,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",purchase,1.0,0 -65909415,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",play,1.1,0 -65909415,"BioShock Infinite",purchase,1.0,0 -65909415,"BioShock Infinite",play,1.1,0 -65909415,"Child of Light",purchase,1.0,0 -65909415,"Child of Light",play,0.5,0 -65909415,"Half-Life",purchase,1.0,0 -65909415,"Half-Life",play,0.5,0 -65909415,"Counter-Strike Global Offensive",purchase,1.0,0 -65909415,"Counter-Strike Global Offensive",play,0.3,0 -65909415,"Guilty Gear X2 #Reload",purchase,1.0,0 -65909415,"Guilty Gear X2 #Reload",play,0.3,0 -65909415,"Team Fortress 2",purchase,1.0,0 -65909415,"Team Fortress 2",play,0.2,0 -65909415,"The Elder Scrolls V Skyrim",purchase,1.0,0 -65909415,"The Elder Scrolls V Skyrim",play,0.2,0 -65909415,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -65909415,"Fallout 3 - Game of the Year Edition",play,0.2,0 -65909415,"Left 4 Dead",purchase,1.0,0 -65909415,"Left 4 Dead",play,0.2,0 -65909415,"Total Annihilation",purchase,1.0,0 -65909415,"Total Annihilation",play,0.2,0 -65909415,"Fractured Space",purchase,1.0,0 -65909415,"Left 4 Dead 2",purchase,1.0,0 -65909415,"Commandos Behind Enemy Lines",purchase,1.0,0 -65909415,"Mass Effect 2",purchase,1.0,0 -65909415,"Mass Effect",purchase,1.0,0 -65909415,"Commandos 2 Men of Courage",purchase,1.0,0 -65909415,"Commandos 3 Destination Berlin",purchase,1.0,0 -65909415,"Commandos Beyond the Call of Duty",purchase,1.0,0 -65909415,"Counter-Strike",purchase,1.0,0 -65909415,"Counter-Strike Condition Zero",purchase,1.0,0 -65909415,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -65909415,"Counter-Strike Source",purchase,1.0,0 -65909415,"Day of Defeat",purchase,1.0,0 -65909415,"Day of Defeat Source",purchase,1.0,0 -65909415,"Deathmatch Classic",purchase,1.0,0 -65909415,"Half-Life 2",purchase,1.0,0 -65909415,"Half-Life 2 Deathmatch",purchase,1.0,0 -65909415,"Half-Life 2 Episode One",purchase,1.0,0 -65909415,"Half-Life 2 Episode Two",purchase,1.0,0 -65909415,"Half-Life 2 Lost Coast",purchase,1.0,0 -65909415,"Half-Life 2 Update",purchase,1.0,0 -65909415,"Half-Life Blue Shift",purchase,1.0,0 -65909415,"Half-Life Opposing Force",purchase,1.0,0 -65909415,"Half-Life Source",purchase,1.0,0 -65909415,"Half-Life Deathmatch Source",purchase,1.0,0 -65909415,"Path of Exile",purchase,1.0,0 -65909415,"Ricochet",purchase,1.0,0 -65909415,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -65909415,"Team Fortress Classic",purchase,1.0,0 -65909415,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -65909415,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -65909415,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -204537690,"Dota 2",purchase,1.0,0 -204537690,"Dota 2",play,8.3,0 -204537690,"Altitude",purchase,1.0,0 -204537690,"Free to Play",purchase,1.0,0 -196188671,"Stronghold Kingdoms",purchase,1.0,0 -196188671,"Stronghold Kingdoms",play,28.0,0 -196188671,"Nosgoth",purchase,1.0,0 -241186290,"Magicka Wizard Wars",purchase,1.0,0 -241186290,"Magicka Wizard Wars",play,0.2,0 -197918145,"Risen 2 - Dark Waters",purchase,1.0,0 -197918145,"Risen 2 - Dark Waters",play,48.0,0 -197918145,"Dust An Elysian Tail",purchase,1.0,0 -197918145,"Dust An Elysian Tail",play,1.9,0 -197918145,"LIMBO",purchase,1.0,0 -270607820,"Dota 2",purchase,1.0,0 -270607820,"Dota 2",play,0.3,0 -276057148,"Garry's Mod",purchase,1.0,0 -276057148,"Garry's Mod",play,33.0,0 -276057148,"BLOCKADE 3D",purchase,1.0,0 -276057148,"BLOCKADE 3D",play,28.0,0 -276057148,"Unturned",purchase,1.0,0 -276057148,"Unturned",play,18.4,0 -276057148,"Warface",purchase,1.0,0 -276057148,"Warface",play,4.0,0 -276057148,"WARMODE",purchase,1.0,0 -276057148,"WARMODE",play,2.6,0 -276057148,"HAWKEN",purchase,1.0,0 -276057148,"HAWKEN",play,2.6,0 -276057148,"Trove",purchase,1.0,0 -276057148,"Trove",play,2.4,0 -276057148,"Team Fortress 2",purchase,1.0,0 -276057148,"Team Fortress 2",play,2.2,0 -276057148,"Happy Wars",purchase,1.0,0 -276057148,"Happy Wars",play,2.2,0 -276057148,"War Inc. Battlezone",purchase,1.0,0 -276057148,"War Inc. Battlezone",play,2.0,0 -276057148,"Dirty Bomb",purchase,1.0,0 -276057148,"Dirty Bomb",play,1.4,0 -276057148,"The Expendabros",purchase,1.0,0 -276057148,"The Expendabros",play,1.2,0 -276057148,"UberStrike",purchase,1.0,0 -276057148,"UberStrike",play,0.9,0 -276057148,"FreeStyle2 Street Basketball",purchase,1.0,0 -276057148,"FreeStyle2 Street Basketball",play,0.9,0 -276057148,"America's Army Proving Grounds",purchase,1.0,0 -276057148,"America's Army Proving Grounds",play,0.9,0 -276057148,"PlanetSide 2",purchase,1.0,0 -276057148,"PlanetSide 2",play,0.7,0 -276057148,"APB Reloaded",purchase,1.0,0 -276057148,"APB Reloaded",play,0.6,0 -276057148,"Aftermath",purchase,1.0,0 -276057148,"Aftermath",play,0.6,0 -276057148,"Heroes & Generals",purchase,1.0,0 -276057148,"Heroes & Generals",play,0.5,0 -276057148,"Tactical Intervention",purchase,1.0,0 -276057148,"Tactical Intervention",play,0.5,0 -276057148,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -215408205,"APB Reloaded",purchase,1.0,0 -215408205,"Heroes & Generals",purchase,1.0,0 -211843417,"Dota 2",purchase,1.0,0 -211843417,"Dota 2",play,3.6,0 -238830374,"Lego Harry Potter",purchase,1.0,0 -238830374,"Lego Harry Potter",play,18.6,0 -238830374,"Borderlands The Pre-Sequel",purchase,1.0,0 -238830374,"Borderlands The Pre-Sequel",play,9.1,0 -238830374,"TERA",purchase,1.0,0 -238830374,"TERA",play,7.5,0 -238830374,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -238830374,"School of Dragons How to Train Your Dragon",play,0.7,0 -238830374,"Mabinogi",purchase,1.0,0 -238830374,"Neverwinter",purchase,1.0,0 -238830374,"The Lord of the Rings Online",purchase,1.0,0 -238830374,"Echo of Soul",purchase,1.0,0 -238830374,"ArcheAge",purchase,1.0,0 -238830374,"Heroes & Generals",purchase,1.0,0 -238830374,"LEGO Harry Potter Years 5-7",purchase,1.0,0 -238830374,"Path of Exile",purchase,1.0,0 -238830374,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -238830374,"WAKFU",purchase,1.0,0 -226097350,"Dota 2",purchase,1.0,0 -226097350,"Dota 2",play,1.7,0 -190900463,"Unturned",purchase,1.0,0 -190900463,"Unturned",play,3.0,0 -149699301,"Dota 2",purchase,1.0,0 -149699301,"Dota 2",play,8.6,0 -171509285,"Dota 2",purchase,1.0,0 -171509285,"Dota 2",play,110.0,0 -230799769,"Dota 2",purchase,1.0,0 -230799769,"Dota 2",play,2.1,0 -68135360,"Half-Life 2 Deathmatch",purchase,1.0,0 -68135360,"Half-Life 2 Deathmatch",play,1.7,0 -68135360,"Half-Life 2 Lost Coast",purchase,1.0,0 -59575100,"Football Manager 2011",purchase,1.0,0 -59575100,"Football Manager 2011",play,137.0,0 -59575100,"Football Manager 2014",purchase,1.0,0 -59575100,"Football Manager 2014",play,81.0,0 -59575100,"Football Manager 2010",purchase,1.0,0 -59575100,"Football Manager 2010",play,71.0,0 -59575100,"Football Manager 2012",purchase,1.0,0 -59575100,"Football Manager 2012",play,0.3,0 -160601937,"Torchlight II",purchase,1.0,0 -160601937,"Torchlight II",play,7.0,0 -44472980,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -44472980,"Warhammer 40,000 Dawn of War II Retribution",play,1318.0,0 -44472980,"Mortal Kombat Komplete Edition",purchase,1.0,0 -44472980,"Mortal Kombat Komplete Edition",play,505.0,0 -44472980,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -44472980,"Warhammer 40,000 Dawn of War II",play,270.0,0 -44472980,"Borderlands 2",purchase,1.0,0 -44472980,"Borderlands 2",play,228.0,0 -44472980,"Mortal Kombat X",purchase,1.0,0 -44472980,"Mortal Kombat X",play,191.0,0 -44472980,"Counter-Strike Global Offensive",purchase,1.0,0 -44472980,"Counter-Strike Global Offensive",play,182.0,0 -44472980,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -44472980,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,121.0,0 -44472980,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -44472980,"DARK SOULS II Scholar of the First Sin",play,108.0,0 -44472980,"Terraria",purchase,1.0,0 -44472980,"Terraria",play,89.0,0 -44472980,"Orcs Must Die! 2",purchase,1.0,0 -44472980,"Orcs Must Die! 2",play,85.0,0 -44472980,"Divinity Original Sin",purchase,1.0,0 -44472980,"Divinity Original Sin",play,80.0,0 -44472980,"Talisman Digital Edition",purchase,1.0,0 -44472980,"Talisman Digital Edition",play,72.0,0 -44472980,"Team Fortress 2",purchase,1.0,0 -44472980,"Team Fortress 2",play,67.0,0 -44472980,"Borderlands The Pre-Sequel",purchase,1.0,0 -44472980,"Borderlands The Pre-Sequel",play,66.0,0 -44472980,"Pillars of Eternity",purchase,1.0,0 -44472980,"Pillars of Eternity",play,65.0,0 -44472980,"Tropico 4",purchase,1.0,0 -44472980,"Tropico 4",play,64.0,0 -44472980,"Fallout New Vegas",purchase,1.0,0 -44472980,"Fallout New Vegas",play,58.0,0 -44472980,"King's Bounty Armored Princess",purchase,1.0,0 -44472980,"King's Bounty Armored Princess",play,55.0,0 -44472980,"Torchlight II",purchase,1.0,0 -44472980,"Torchlight II",play,51.0,0 -44472980,"Borderlands",purchase,1.0,0 -44472980,"Borderlands",play,43.0,0 -44472980,"Warhammer 40,000 Space Marine",purchase,1.0,0 -44472980,"Warhammer 40,000 Space Marine",play,42.0,0 -44472980,"King's Bounty The Legend",purchase,1.0,0 -44472980,"King's Bounty The Legend",play,42.0,0 -44472980,"Age of Empires II HD Edition",purchase,1.0,0 -44472980,"Age of Empires II HD Edition",play,37.0,0 -44472980,"Evolve",purchase,1.0,0 -44472980,"Evolve",play,30.0,0 -44472980,"Tropico 5",purchase,1.0,0 -44472980,"Tropico 5",play,29.0,0 -44472980,"Mortal Kombat Kollection",purchase,1.0,0 -44472980,"Mortal Kombat Kollection",play,22.0,0 -44472980,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -44472980,"Injustice Gods Among Us Ultimate Edition",play,19.5,0 -44472980,"Trine 2",purchase,1.0,0 -44472980,"Trine 2",play,18.6,0 -44472980,"Gauntlet ",purchase,1.0,0 -44472980,"Gauntlet ",play,18.2,0 -44472980,"Orcs Must Die!",purchase,1.0,0 -44472980,"Orcs Must Die!",play,16.1,0 -44472980,"Hammerwatch",purchase,1.0,0 -44472980,"Hammerwatch",play,15.5,0 -44472980,"Krater",purchase,1.0,0 -44472980,"Krater",play,14.9,0 -44472980,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -44472980,"Unreal Tournament 3 Black Edition",play,13.0,0 -44472980,"Chivalry Medieval Warfare",purchase,1.0,0 -44472980,"Chivalry Medieval Warfare",play,11.4,0 -44472980,"Alien Swarm",purchase,1.0,0 -44472980,"Alien Swarm",play,10.9,0 -44472980,"Neverwinter",purchase,1.0,0 -44472980,"Neverwinter",play,9.2,0 -44472980,"Agarest Generations of War",purchase,1.0,0 -44472980,"Agarest Generations of War",play,8.7,0 -44472980,"The Binding of Isaac",purchase,1.0,0 -44472980,"The Binding of Isaac",play,8.3,0 -44472980,"Rochard",purchase,1.0,0 -44472980,"Rochard",play,8.3,0 -44472980,"Portal 2",purchase,1.0,0 -44472980,"Portal 2",play,8.2,0 -44472980,"A Virus Named TOM",purchase,1.0,0 -44472980,"A Virus Named TOM",play,7.5,0 -44472980,"The Elder Scrolls V Skyrim",purchase,1.0,0 -44472980,"The Elder Scrolls V Skyrim",play,7.3,0 -44472980,"Blood Bowl Legendary Edition",purchase,1.0,0 -44472980,"Blood Bowl Legendary Edition",play,7.3,0 -44472980,"DiRT 2",purchase,1.0,0 -44472980,"DiRT 2",play,7.3,0 -44472980,"Pinball FX2",purchase,1.0,0 -44472980,"Pinball FX2",play,7.1,0 -44472980,"Defense Grid The Awakening",purchase,1.0,0 -44472980,"Defense Grid The Awakening",play,6.4,0 -44472980,"Scribblenauts Unlimited",purchase,1.0,0 -44472980,"Scribblenauts Unlimited",play,6.2,0 -44472980,"Left 4 Dead 2",purchase,1.0,0 -44472980,"Left 4 Dead 2",play,5.5,0 -44472980,"Portal",purchase,1.0,0 -44472980,"Portal",play,5.1,0 -44472980,"Brtal Legend",purchase,1.0,0 -44472980,"Brtal Legend",play,5.0,0 -44472980,"The Swapper",purchase,1.0,0 -44472980,"The Swapper",play,4.5,0 -44472980,"Mark of the Ninja",purchase,1.0,0 -44472980,"Mark of the Ninja",play,4.2,0 -44472980,"Pool Nation",purchase,1.0,0 -44472980,"Pool Nation",play,3.6,0 -44472980,"Guacamelee! Gold Edition",purchase,1.0,0 -44472980,"Guacamelee! Gold Edition",play,3.4,0 -44472980,"RPG Maker VX Ace",purchase,1.0,0 -44472980,"RPG Maker VX Ace",play,2.9,0 -44472980,"XCOM Enemy Unknown",purchase,1.0,0 -44472980,"XCOM Enemy Unknown",play,2.6,0 -44472980,"Serious Sam 3 BFE",purchase,1.0,0 -44472980,"Serious Sam 3 BFE",play,2.6,0 -44472980,"Alan Wake",purchase,1.0,0 -44472980,"Alan Wake",play,2.2,0 -44472980,"Monaco",purchase,1.0,0 -44472980,"Monaco",play,2.2,0 -44472980,"Giana Sisters Twisted Dreams",purchase,1.0,0 -44472980,"Giana Sisters Twisted Dreams",play,2.1,0 -44472980,"Dust An Elysian Tail",purchase,1.0,0 -44472980,"Dust An Elysian Tail",play,2.0,0 -44472980,"Bastion",purchase,1.0,0 -44472980,"Bastion",play,2.0,0 -44472980,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -44472980,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",play,1.9,0 -44472980,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -44472980,"THE KING OF FIGHTERS XIII STEAM EDITION",play,1.8,0 -44472980,"Anomaly Warzone Earth",purchase,1.0,0 -44472980,"Anomaly Warzone Earth",play,1.7,0 -44472980,"FTL Faster Than Light",purchase,1.0,0 -44472980,"FTL Faster Than Light",play,1.7,0 -44472980,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -44472980,"Divinity Original Sin Enhanced Edition",play,1.3,0 -44472980,"Sid Meier's Civilization V",purchase,1.0,0 -44472980,"Sid Meier's Civilization V",play,1.3,0 -44472980,"Guardians of Middle-earth",purchase,1.0,0 -44472980,"Guardians of Middle-earth",play,1.3,0 -44472980,"Rush Bros",purchase,1.0,0 -44472980,"Rush Bros",play,1.2,0 -44472980,"Joe Danger 2 The Movie",purchase,1.0,0 -44472980,"Joe Danger 2 The Movie",play,1.2,0 -44472980,"Unreal Tournament 2004",purchase,1.0,0 -44472980,"Unreal Tournament 2004",play,1.2,0 -44472980,"SteamWorld Dig",purchase,1.0,0 -44472980,"SteamWorld Dig",play,1.2,0 -44472980,"The Walking Dead",purchase,1.0,0 -44472980,"The Walking Dead",play,1.2,0 -44472980,"Dota 2",purchase,1.0,0 -44472980,"Dota 2",play,1.0,0 -44472980,"Antichamber",purchase,1.0,0 -44472980,"Antichamber",play,0.9,0 -44472980,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",purchase,1.0,0 -44472980,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",play,0.9,0 -44472980,"Ultra Street Fighter IV",purchase,1.0,0 -44472980,"Ultra Street Fighter IV",play,0.9,0 -44472980,"Dead Space",purchase,1.0,0 -44472980,"Dead Space",play,0.5,0 -44472980,"Worms Armageddon",purchase,1.0,0 -44472980,"Worms Armageddon",play,0.4,0 -44472980,"Company of Heroes 2",purchase,1.0,0 -44472980,"Company of Heroes 2",play,0.3,0 -44472980,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -44472980,"The Secret of Monkey Island Special Edition",play,0.2,0 -44472980,"Adventures of Shuggy",purchase,1.0,0 -44472980,"Afterfall InSanity Extended Edition",purchase,1.0,0 -44472980,"Age of Empires II HD The Forgotten",purchase,1.0,0 -44472980,"Alan Wake's American Nightmare",purchase,1.0,0 -44472980,"Alpha Prime",purchase,1.0,0 -44472980,"Anoxemia",purchase,1.0,0 -44472980,"Arma 2",purchase,1.0,0 -44472980,"Arma Cold War Assault",purchase,1.0,0 -44472980,"Arma Gold Edition",purchase,1.0,0 -44472980,"Arma Tactics",purchase,1.0,0 -44472980,"Avencast",purchase,1.0,0 -44472980,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -44472980,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -44472980,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -44472980,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -44472980,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -44472980,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -44472980,"Batman Arkham City GOTY",purchase,1.0,0 -44472980,"Battlepaths",purchase,1.0,0 -44472980,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -44472980,"Blood of Old",purchase,1.0,0 -44472980,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -44472980,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -44472980,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -44472980,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -44472980,"Brawlhalla",purchase,1.0,0 -44472980,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -44472980,"Canyon Capers",purchase,1.0,0 -44472980,"Chaos Domain",purchase,1.0,0 -44472980,"Cities XL Platinum",purchase,1.0,0 -44472980,"Closure",purchase,1.0,0 -44472980,"Cognition - Original Soundtrack Vol 1",purchase,1.0,0 -44472980,"Cognition An Erica Reed Thriller",purchase,1.0,0 -44472980,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -44472980,"Commander Conquest of the Americas Gold",purchase,1.0,0 -44472980,"Commando Jack",purchase,1.0,0 -44472980,"Company of Heroes",purchase,1.0,0 -44472980,"Company of Heroes (New Steam Version)",purchase,1.0,0 -44472980,"Company of Heroes Opposing Fronts",purchase,1.0,0 -44472980,"Company of Heroes Tales of Valor",purchase,1.0,0 -44472980,"Confrontation",purchase,1.0,0 -44472980,"Crash Time II",purchase,1.0,0 -44472980,"Crusader Kings II",purchase,1.0,0 -44472980,"Crysis 2 Maximum Edition",purchase,1.0,0 -44472980,"Cubetractor",purchase,1.0,0 -44472980,"Darksiders",purchase,1.0,0 -44472980,"Dead Bits",purchase,1.0,0 -44472980,"Deadbreed",purchase,1.0,0 -44472980,"Dead Island Epidemic",purchase,1.0,0 -44472980,"Deadlight",purchase,1.0,0 -44472980,"Deadlight Original Soundtrack",purchase,1.0,0 -44472980,"Dead Space 2",purchase,1.0,0 -44472980,"Dino D-Day",purchase,1.0,0 -44472980,"Divinity II Developer's Cut",purchase,1.0,0 -44472980,"Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald A Whirlwind Heist",purchase,1.0,0 -44472980,"Dungeon Defenders II",purchase,1.0,0 -44472980,"Earth 2150 The Moon Project",purchase,1.0,0 -44472980,"East India Company Gold",purchase,1.0,0 -44472980,"Eets Munchies",purchase,1.0,0 -44472980,"Enclave",purchase,1.0,0 -44472980,"Eternal Senia",purchase,1.0,0 -44472980,"Eurofighter Typhoon",purchase,1.0,0 -44472980,"Evolve - Behemoth",purchase,1.0,0 -44472980,"F.E.A.R.",purchase,1.0,0 -44472980,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -44472980,"F.E.A.R. 3",purchase,1.0,0 -44472980,"F.E.A.R. Extraction Point",purchase,1.0,0 -44472980,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -44472980,"Face Noir",purchase,1.0,0 -44472980,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -44472980,"Fallout New Vegas Dead Money",purchase,1.0,0 -44472980,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -44472980,"FEZ",purchase,1.0,0 -44472980,"Fractured Space",purchase,1.0,0 -44472980,"Frozen Hearth",purchase,1.0,0 -44472980,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -44472980,"Game of Thrones ",purchase,1.0,0 -44472980,"Glacier 3 The Meltdown",purchase,1.0,0 -44472980,"Grand Theft Auto IV",purchase,1.0,0 -44472980,"Grimoire Manastorm",purchase,1.0,0 -44472980,"GTR Evolution",purchase,1.0,0 -44472980,"Gun Monkeys",purchase,1.0,0 -44472980,"Gunpoint",purchase,1.0,0 -44472980,"Hector Ep 1",purchase,1.0,0 -44472980,"Hector Ep 2",purchase,1.0,0 -44472980,"Hector Ep 3",purchase,1.0,0 -44472980,"Humanity Asset",purchase,1.0,0 -44472980,"Hyper Fighters",purchase,1.0,0 -44472980,"iBomber Defense Pacific",purchase,1.0,0 -44472980,"Imagine Me",purchase,1.0,0 -44472980,"Ionball 2 Ionstorm",purchase,1.0,0 -44472980,"King's Bounty Crossworlds",purchase,1.0,0 -44472980,"Knights and Merchants",purchase,1.0,0 -44472980,"KnightShift",purchase,1.0,0 -44472980,"Kung Fu Strike The Warrior's Rise",purchase,1.0,0 -44472980,"Legend of Grimrock",purchase,1.0,0 -44472980,"LIMBO",purchase,1.0,0 -44472980,"Litil Divil",purchase,1.0,0 -44472980,"Lucius",purchase,1.0,0 -44472980,"Magicka Wizard Wars",purchase,1.0,0 -44472980,"Marine Sharpshooter II Jungle Warfare",purchase,1.0,0 -44472980,"Max Payne 3",purchase,1.0,0 -44472980,"Mechanic Escape",purchase,1.0,0 -44472980,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -44472980,"Medal of Honor(TM) Single Player",purchase,1.0,0 -44472980,"Medal of Honor Pre-Order",purchase,1.0,0 -44472980,"Memories of a Vagabond",purchase,1.0,0 -44472980,"Men of War",purchase,1.0,0 -44472980,"Men of War Assault Squad",purchase,1.0,0 -44472980,"Men of War Red Tide",purchase,1.0,0 -44472980,"Metro 2033",purchase,1.0,0 -44472980,"Mirror's Edge",purchase,1.0,0 -44472980,"Monkey Island 2 Special Edition",purchase,1.0,0 -44472980,"Nosgoth",purchase,1.0,0 -44472980,"Nux",purchase,1.0,0 -44472980,"Oddworld Abe's Oddysee",purchase,1.0,0 -44472980,"Omerta - City of Gangsters",purchase,1.0,0 -44472980,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -44472980,"Operation Flashpoint Red River",purchase,1.0,0 -44472980,"Overlord",purchase,1.0,0 -44472980,"Overlord Raising Hell",purchase,1.0,0 -44472980,"Papo & Yo",purchase,1.0,0 -44472980,"Particula",purchase,1.0,0 -44472980,"Patch testing for Chivalry",purchase,1.0,0 -44472980,"PAYDAY The Heist",purchase,1.0,0 -44472980,"Penguins Arena Sedna's World",purchase,1.0,0 -44472980,"Pid ",purchase,1.0,0 -44472980,"Pinball FX2 - Core pack",purchase,1.0,0 -44472980,"Pinball FX2 - Earth Defense Table",purchase,1.0,0 -44472980,"Pinball FX2 - Epic Quest Table",purchase,1.0,0 -44472980,"Pinball FX2 - Paranormal Table",purchase,1.0,0 -44472980,"Pinball FX2 - Zen Classics Pack",purchase,1.0,0 -44472980,"Pirates of Black Cove Gold",purchase,1.0,0 -44472980,"PixelJunk Eden",purchase,1.0,0 -44472980,"Pixel Puzzles Japan",purchase,1.0,0 -44472980,"Platypus II",purchase,1.0,0 -44472980,"Poker Night at the Inventory",purchase,1.0,0 -44472980,"ProtoGalaxy",purchase,1.0,0 -44472980,"Puzzle Agent",purchase,1.0,0 -44472980,"Puzzle Agent 2",purchase,1.0,0 -44472980,"RACE 07",purchase,1.0,0 -44472980,"Racer 8",purchase,1.0,0 -44472980,"RaceRoom Racing Experience ",purchase,1.0,0 -44472980,"Race The Sun",purchase,1.0,0 -44472980,"RAW - Realms of Ancient War",purchase,1.0,0 -44472980,"Really Big Sky",purchase,1.0,0 -44472980,"Realms of the Haunting",purchase,1.0,0 -44472980,"Receiver",purchase,1.0,0 -44472980,"Red Faction Armageddon",purchase,1.0,0 -44472980,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -44472980,"Rise of the Argonauts",purchase,1.0,0 -44472980,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -44472980,"Rochard - Hard Times",purchase,1.0,0 -44472980,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -44472980,"RPG Maker Royal Tiles Resource Pack",purchase,1.0,0 -44472980,"RPG Maker Tyler Warren First 50 Battler Pack",purchase,1.0,0 -44472980,"Saira",purchase,1.0,0 -44472980,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -44472980,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -44472980,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -44472980,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -44472980,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -44472980,"Serious Sam 2",purchase,1.0,0 -44472980,"Serious Sam The Random Encounter",purchase,1.0,0 -44472980,"Serious Sam Classic The First Encounter",purchase,1.0,0 -44472980,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -44472980,"Serious Sam Classics Revolution",purchase,1.0,0 -44472980,"Serious Sam Double D XXL",purchase,1.0,0 -44472980,"Serious Sam HD The First Encounter",purchase,1.0,0 -44472980,"Shadows on the Vatican - Act I Greed",purchase,1.0,0 -44472980,"Shadow Warrior Classic (1997)",purchase,1.0,0 -44472980,"Shank 2",purchase,1.0,0 -44472980,"Skyborn",purchase,1.0,0 -44472980,"SMITE",purchase,1.0,0 -44472980,"Snapshot",purchase,1.0,0 -44472980,"Sniper Elite V2",purchase,1.0,0 -44472980,"SpaceChem",purchase,1.0,0 -44472980,"Space Hack",purchase,1.0,0 -44472980,"Starseed Pilgrim",purchase,1.0,0 -44472980,"Stealth Inc 2",purchase,1.0,0 -44472980,"Steel & Steam Episode 1",purchase,1.0,0 -44472980,"Super Killer Hornet Resurrection",purchase,1.0,0 -44472980,"Super Sanctum TD",purchase,1.0,0 -44472980,"Sweet Lily Dreams",purchase,1.0,0 -44472980,"Take On Helicopters",purchase,1.0,0 -44472980,"Teleglitch Die More Edition",purchase,1.0,0 -44472980,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -44472980,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -44472980,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -44472980,"The Fish Fillets 2",purchase,1.0,0 -44472980,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -44472980,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -44472980,"The Journey Down Chapter One",purchase,1.0,0 -44472980,"The Lord of the Rings War in the North",purchase,1.0,0 -44472980,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -44472980,"Thief Gold",purchase,1.0,0 -44472980,"To the Moon",purchase,1.0,0 -44472980,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -44472980,"Two Worlds Epic Edition",purchase,1.0,0 -44472980,"UFO Afterlight",purchase,1.0,0 -44472980,"Unreal Gold",purchase,1.0,0 -44472980,"Unreal II The Awakening",purchase,1.0,0 -44472980,"Unreal Tournament Game of the Year Edition",purchase,1.0,0 -44472980,"Vertiginous Golf",purchase,1.0,0 -44472980,"Wallace & Gromit Ep 1 Fright of the Bumblebees",purchase,1.0,0 -44472980,"Wallace & Gromit Ep 2 The Last Resort",purchase,1.0,0 -44472980,"Wallace & Gromit Ep 3 Muzzled!",purchase,1.0,0 -44472980,"Wallace & Gromit Ep 4 The Bogey Man",purchase,1.0,0 -44472980,"Warlock - Master of the Arcane",purchase,1.0,0 -44472980,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -44472980,"Wickland",purchase,1.0,0 -44472980,"Woodle Tree Adventures",purchase,1.0,0 -44472980,"X-Blades",purchase,1.0,0 -11161178,"The Elder Scrolls V Skyrim",purchase,1.0,0 -11161178,"The Elder Scrolls V Skyrim",play,918.0,0 -11161178,"DC Universe Online",purchase,1.0,0 -11161178,"DC Universe Online",play,311.0,0 -11161178,"Dota 2",purchase,1.0,0 -11161178,"Dota 2",play,256.0,0 -11161178,"DayZ",purchase,1.0,0 -11161178,"DayZ",play,184.0,0 -11161178,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -11161178,"Kingdoms of Amalur Reckoning",play,153.0,0 -11161178,"Arma 3",purchase,1.0,0 -11161178,"Arma 3",play,150.0,0 -11161178,"Fallout 4",purchase,1.0,0 -11161178,"Fallout 4",play,123.0,0 -11161178,"Darksiders II",purchase,1.0,0 -11161178,"Darksiders II",play,101.0,0 -11161178,"Mass Effect",purchase,1.0,0 -11161178,"Mass Effect",play,52.0,0 -11161178,"Warframe",purchase,1.0,0 -11161178,"Warframe",play,46.0,0 -11161178,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -11161178,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,41.0,0 -11161178,"Tomb Raider",purchase,1.0,0 -11161178,"Tomb Raider",play,38.0,0 -11161178,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -11161178,"Sins of a Solar Empire Rebellion",play,35.0,0 -11161178,"Metro Last Light",purchase,1.0,0 -11161178,"Metro Last Light",play,34.0,0 -11161178,"Metro 2033",purchase,1.0,0 -11161178,"Metro 2033",play,33.0,0 -11161178,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -11161178,"Call of Duty Modern Warfare 2 - Multiplayer",play,32.0,0 -11161178,"ArcaniA",purchase,1.0,0 -11161178,"ArcaniA",play,31.0,0 -11161178,"Mass Effect 2",purchase,1.0,0 -11161178,"Mass Effect 2",play,25.0,0 -11161178,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -11161178,"The Incredible Adventures of Van Helsing",play,23.0,0 -11161178,"Battlefield Bad Company 2",purchase,1.0,0 -11161178,"Battlefield Bad Company 2",play,23.0,0 -11161178,"DmC Devil May Cry",purchase,1.0,0 -11161178,"DmC Devil May Cry",play,22.0,0 -11161178,"Just Cause 2",purchase,1.0,0 -11161178,"Just Cause 2",play,22.0,0 -11161178,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -11161178,"Dark Souls Prepare to Die Edition",play,21.0,0 -11161178,"The Witcher Enhanced Edition",purchase,1.0,0 -11161178,"The Witcher Enhanced Edition",play,20.0,0 -11161178,"Max Payne 3",purchase,1.0,0 -11161178,"Max Payne 3",play,20.0,0 -11161178,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -11161178,"Batman Arkham Asylum GOTY Edition",play,19.0,0 -11161178,"ENSLAVED Odyssey to the West Premium Edition",purchase,1.0,0 -11161178,"ENSLAVED Odyssey to the West Premium Edition",play,14.5,0 -11161178,"Sid Meier's Civilization V",purchase,1.0,0 -11161178,"Sid Meier's Civilization V",play,14.0,0 -11161178,"Call of Duty Modern Warfare 2",purchase,1.0,0 -11161178,"Call of Duty Modern Warfare 2",play,13.8,0 -11161178,"Portal 2",purchase,1.0,0 -11161178,"Portal 2",play,9.6,0 -11161178,"Call of Duty Ghosts",purchase,1.0,0 -11161178,"Call of Duty Ghosts",play,8.3,0 -11161178,"Homefront",purchase,1.0,0 -11161178,"Homefront",play,7.4,0 -11161178,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -11161178,"Deus Ex Human Revolution - Director's Cut",play,7.2,0 -11161178,"Watch_Dogs",purchase,1.0,0 -11161178,"Watch_Dogs",play,6.3,0 -11161178,"Project CARS",purchase,1.0,0 -11161178,"Project CARS",play,6.2,0 -11161178,"Insurgency",purchase,1.0,0 -11161178,"Insurgency",play,6.1,0 -11161178,"Left 4 Dead 2",purchase,1.0,0 -11161178,"Left 4 Dead 2",play,4.9,0 -11161178,"Empire Total War",purchase,1.0,0 -11161178,"Empire Total War",play,4.7,0 -11161178,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -11161178,"Warhammer 40,000 Dawn of War Winter Assault",play,4.6,0 -11161178,"Hitman Absolution",purchase,1.0,0 -11161178,"Hitman Absolution",play,4.5,0 -11161178,"Free to Play",purchase,1.0,0 -11161178,"Free to Play",play,4.4,0 -11161178,"Devilian",purchase,1.0,0 -11161178,"Devilian",play,3.5,0 -11161178,"Far Cry 3 Blood Dragon",purchase,1.0,0 -11161178,"Far Cry 3 Blood Dragon",play,3.0,0 -11161178,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -11161178,"Warhammer 40,000 Dawn of War II",play,2.9,0 -11161178,"Of Orcs And Men",purchase,1.0,0 -11161178,"Of Orcs And Men",play,2.8,0 -11161178,"The Witcher 3 Wild Hunt",purchase,1.0,0 -11161178,"The Witcher 3 Wild Hunt",play,2.8,0 -11161178,"Trine 2",purchase,1.0,0 -11161178,"Trine 2",play,2.6,0 -11161178,"RIDE Game",purchase,1.0,0 -11161178,"RIDE Game",play,2.4,0 -11161178,"Arma 2 Operation Arrowhead",purchase,1.0,0 -11161178,"Arma 2 Operation Arrowhead",play,2.2,0 -11161178,"DCS World",purchase,1.0,0 -11161178,"DCS World",play,1.9,0 -11161178,"The Chronicles of Riddick Assault on Dark Athena",purchase,1.0,0 -11161178,"The Chronicles of Riddick Assault on Dark Athena",play,1.8,0 -11161178,"Amnesia The Dark Descent",purchase,1.0,0 -11161178,"Amnesia The Dark Descent",play,1.8,0 -11161178,"Alien Isolation",purchase,1.0,0 -11161178,"Alien Isolation",play,1.6,0 -11161178,"Outlast",purchase,1.0,0 -11161178,"Outlast",play,1.4,0 -11161178,"Path of Exile",purchase,1.0,0 -11161178,"Path of Exile",play,1.4,0 -11161178,"Ship Simulator Extremes",purchase,1.0,0 -11161178,"Ship Simulator Extremes",play,1.4,0 -11161178,"The Vanishing of Ethan Carter",purchase,1.0,0 -11161178,"The Vanishing of Ethan Carter",play,1.3,0 -11161178,"Viking Battle for Asgard",purchase,1.0,0 -11161178,"Viking Battle for Asgard",play,1.2,0 -11161178,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -11161178,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,1.1,0 -11161178,"Wargame AirLand Battle",purchase,1.0,0 -11161178,"Wargame AirLand Battle",play,1.1,0 -11161178,"Divinity Original Sin",purchase,1.0,0 -11161178,"Divinity Original Sin",play,1.0,0 -11161178,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -11161178,"Call of Duty Ghosts - Multiplayer",play,1.0,0 -11161178,"Ori and the Blind Forest",purchase,1.0,0 -11161178,"Ori and the Blind Forest",play,0.9,0 -11161178,"Kerbal Space Program",purchase,1.0,0 -11161178,"Kerbal Space Program",play,0.9,0 -11161178,"Sleeping Dogs",purchase,1.0,0 -11161178,"Sleeping Dogs",play,0.8,0 -11161178,"X3 Terran Conflict",purchase,1.0,0 -11161178,"X3 Terran Conflict",play,0.6,0 -11161178,"FINAL FANTASY VII",purchase,1.0,0 -11161178,"FINAL FANTASY VII",play,0.6,0 -11161178,"Total War ROME II - Emperor Edition",purchase,1.0,0 -11161178,"Total War ROME II - Emperor Edition",play,0.6,0 -11161178,"ARK Survival Evolved",purchase,1.0,0 -11161178,"ARK Survival Evolved",play,0.5,0 -11161178,"Assetto Corsa",purchase,1.0,0 -11161178,"Assetto Corsa",play,0.5,0 -11161178,"Universe Sandbox",purchase,1.0,0 -11161178,"Universe Sandbox",play,0.4,0 -11161178,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -11161178,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.4,0 -11161178,"Counter-Strike Global Offensive",purchase,1.0,0 -11161178,"Counter-Strike Global Offensive",play,0.4,0 -11161178,"Endless Space",purchase,1.0,0 -11161178,"Endless Space",play,0.3,0 -11161178,"War Thunder",purchase,1.0,0 -11161178,"War Thunder",play,0.3,0 -11161178,"Total War SHOGUN 2",purchase,1.0,0 -11161178,"Total War SHOGUN 2",play,0.2,0 -11161178,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -11161178,"Tom Clancy's Splinter Cell Blacklist",play,0.2,0 -11161178,"L.A. Noire",purchase,1.0,0 -11161178,"L.A. Noire",play,0.2,0 -11161178,"Age of Empires III Complete Collection",purchase,1.0,0 -11161178,"Age of Empires III Complete Collection",play,0.2,0 -11161178,"Counter-Strike Source",purchase,1.0,0 -11161178,"Counter-Strike Source",play,0.2,0 -11161178,"StarForge",purchase,1.0,0 -11161178,"StarForge",play,0.2,0 -11161178,"Train Simulator",purchase,1.0,0 -11161178,"Train Simulator",play,0.2,0 -11161178,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -11161178,"Warhammer 40,000 Dawn of War Dark Crusade",play,0.1,0 -11161178,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -11161178,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -11161178,"Dungeon Siege",purchase,1.0,0 -11161178,"Arma 2 British Armed Forces",purchase,1.0,0 -11161178,"Arma 2 Private Military Company",purchase,1.0,0 -11161178,"Arma X Anniversary Edition",purchase,1.0,0 -11161178,"Alan Wake",purchase,1.0,0 -11161178,"Arma 2",purchase,1.0,0 -11161178,"Arma 3 Helicopters",purchase,1.0,0 -11161178,"Arma 3 Karts",purchase,1.0,0 -11161178,"Arma 3 Marksmen",purchase,1.0,0 -11161178,"Arma 3 Zeus",purchase,1.0,0 -11161178,"Arma Cold War Assault",purchase,1.0,0 -11161178,"Arma Gold Edition",purchase,1.0,0 -11161178,"Assassin's Creed IV Black Flag",purchase,1.0,0 -11161178,"Batman Arkham City GOTY",purchase,1.0,0 -11161178,"Batman Arkham City",purchase,1.0,0 -11161178,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -11161178,"Batman Arkham Origins - Initiation",purchase,1.0,0 -11161178,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -11161178,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -11161178,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -11161178,"Batman Arkham Knight",purchase,1.0,0 -11161178,"Batman Arkham Origins",purchase,1.0,0 -11161178,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -11161178,"Beyond Divinity",purchase,1.0,0 -11161178,"BioShock",purchase,1.0,0 -11161178,"BioShock 2",purchase,1.0,0 -11161178,"BioShock Infinite",purchase,1.0,0 -11161178,"Borderlands",purchase,1.0,0 -11161178,"Borderlands 2",purchase,1.0,0 -11161178,"Brtal Legend",purchase,1.0,0 -11161178,"Call of Cthulhu Dark Corners of the Earth",purchase,1.0,0 -11161178,"Chivalry Medieval Warfare",purchase,1.0,0 -11161178,"Dead Space 2",purchase,1.0,0 -11161178,"Devil May Cry 3 Special Edition",purchase,1.0,0 -11161178,"Devil May Cry 4",purchase,1.0,0 -11161178,"Digital Combat Simulator A-10C Warthog",purchase,1.0,0 -11161178,"Divine Divinity",purchase,1.0,0 -11161178,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -11161178,"Dungeon Siege 2",purchase,1.0,0 -11161178,"Dungeon Siege III",purchase,1.0,0 -11161178,"Far Cry 3",purchase,1.0,0 -11161178,"God Mode",purchase,1.0,0 -11161178,"Half-Life 2",purchase,1.0,0 -11161178,"Half-Life 2 Deathmatch",purchase,1.0,0 -11161178,"Half-Life 2 Episode One",purchase,1.0,0 -11161178,"Half-Life 2 Lost Coast",purchase,1.0,0 -11161178,"Half-Life Source",purchase,1.0,0 -11161178,"Half-Life Deathmatch Source",purchase,1.0,0 -11161178,"Hitman Sniper Challenge",purchase,1.0,0 -11161178,"Homeworld Remastered Collection",purchase,1.0,0 -11161178,"Medieval II Total War",purchase,1.0,0 -11161178,"Might & Magic Heroes VI",purchase,1.0,0 -11161178,"Mount & Blade",purchase,1.0,0 -11161178,"Mount & Blade Warband",purchase,1.0,0 -11161178,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -11161178,"Mount & Blade With Fire and Sword",purchase,1.0,0 -11161178,"Napoleon Total War",purchase,1.0,0 -11161178,"Patch testing for Chivalry",purchase,1.0,0 -11161178,"Portal",purchase,1.0,0 -11161178,"Project CARS - Modified Car Pack ",purchase,1.0,0 -11161178,"RIDE - 2015 Top Bikes Pack 1",purchase,1.0,0 -11161178,"RIDE - 2015 Top Bikes Pack 2",purchase,1.0,0 -11161178,"RIDE Season Pass",purchase,1.0,0 -11161178,"RIDE Yamaha 2015 Bike Models",purchase,1.0,0 -11161178,"RIDE Yamaha Historical Bikes",purchase,1.0,0 -11161178,"Rome Total War",purchase,1.0,0 -11161178,"Shadow Warrior",purchase,1.0,0 -11161178,"Sins of a Solar Empire Rebellion - Stellar Phenomena DLC",purchase,1.0,0 -11161178,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -11161178,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -11161178,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -11161178,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -11161178,"The Evil Within",purchase,1.0,0 -11161178,"The Vanishing of Ethan Carter Redux",purchase,1.0,0 -11161178,"The Walking Dead",purchase,1.0,0 -11161178,"The Walking Dead Season Two",purchase,1.0,0 -11161178,"Torchlight II",purchase,1.0,0 -11161178,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -11161178,"Total War Battles SHOGUN",purchase,1.0,0 -11161178,"Train Simulator Sheerness Branch Extension Route",purchase,1.0,0 -11161178,"Train Simulator Southern Pacific SD70M Loco",purchase,1.0,0 -11161178,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -11161178,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -11161178,"Wolfenstein The New Order",purchase,1.0,0 -199051315,"Dota 2",purchase,1.0,0 -199051315,"Dota 2",play,5.9,0 -247464119,"Warrior Kings Battles",purchase,1.0,0 -247464119,"Warrior Kings Battles",play,23.0,0 -118101920,"Metro 2033",purchase,1.0,0 -249154795,"War Inc. Battlezone",purchase,1.0,0 -249154795,"War Inc. Battlezone",play,1.3,0 -163896673,"You Need A Budget 4 (YNAB)",purchase,1.0,0 -163896673,"You Need A Budget 4 (YNAB)",play,80.0,0 -163896673,"Sid Meier's Civilization V",purchase,1.0,0 -163896673,"Sid Meier's Civilization V",play,75.0,0 -163896673,"Far Cry 3",purchase,1.0,0 -163896673,"Far Cry 3",play,21.0,0 -163896673,"Banished",purchase,1.0,0 -163896673,"Banished",play,12.8,0 -163896673,"South Park The Stick of Truth",purchase,1.0,0 -163896673,"South Park The Stick of Truth",play,12.7,0 -163896673,"Lunar Flight",purchase,1.0,0 -163896673,"Lunar Flight",play,0.4,0 -163896673,"Garry's Mod",purchase,1.0,0 -163896673,"MURDERED SOUL SUSPECT",purchase,1.0,0 -258957437,"Counter-Strike Global Offensive",purchase,1.0,0 -258957437,"Counter-Strike Global Offensive",play,20.0,0 -258957437,"TERA",purchase,1.0,0 -258957437,"TERA",play,9.9,0 -258957437,"Magicka Wizard Wars",purchase,1.0,0 -31188792,"Half-Life 2 Deathmatch",purchase,1.0,0 -31188792,"Half-Life 2 Lost Coast",purchase,1.0,0 -276526080,"Terraria",purchase,1.0,0 -276526080,"Terraria",play,19.7,0 -276526080,"Crypt of the NecroDancer",purchase,1.0,0 -276526080,"Crypt of the NecroDancer",play,9.5,0 -276526080,"Sakura Clicker",purchase,1.0,0 -276526080,"Sakura Clicker",play,6.1,0 -276526080,"POSTAL 2",purchase,1.0,0 -276526080,"POSTAL 2",play,3.5,0 -276526080,"Uncrowded",purchase,1.0,0 -276526080,"Uncrowded",play,2.1,0 -276526080,"Toki Tori",purchase,1.0,0 -276526080,"Toki Tori",play,1.2,0 -276526080,"Orbital Gear",purchase,1.0,0 -276526080,"Orbital Gear",play,0.7,0 -276526080,"Jigoku Kisetsukan Sense of the Seasons",purchase,1.0,0 -276526080,"Jigoku Kisetsukan Sense of the Seasons",play,0.6,0 -276526080,"CastleMiner Z",purchase,1.0,0 -276526080,"CastleMiner Z",play,0.2,0 -276526080,"Pink Heaven",purchase,1.0,0 -276526080,"Pink Heaven",play,0.2,0 -276526080,"They Bleed Pixels",purchase,1.0,0 -276526080,"They Bleed Pixels",play,0.1,0 -276526080,"Uebergame",purchase,1.0,0 -276526080,"Back to Dinosaur Island ",purchase,1.0,0 -38950395,"Cry of Fear",purchase,1.0,0 -38950395,"Cry of Fear",play,6.8,0 -38950395,"Half-Life 2 Lost Coast",purchase,1.0,0 -38950395,"Half-Life 2 Lost Coast",play,0.5,0 -38950395,"Haunted Memories",purchase,1.0,0 -38950395,"Haunted Memories",play,0.3,0 -38950395,"Bloodwood Reload",purchase,1.0,0 -38950395,"Half-Life 2 Deathmatch",purchase,1.0,0 -97626507,"Wargame European Escalation",purchase,1.0,0 -51699341,"Mafia II",purchase,1.0,0 -51699341,"Mafia II",play,20.0,0 -51699341,"Call of Duty Modern Warfare 2",purchase,1.0,0 -51699341,"Call of Duty Modern Warfare 2",play,20.0,0 -51699341,"Deus Ex Human Revolution",purchase,1.0,0 -51699341,"Deus Ex Human Revolution",play,16.3,0 -51699341,"Call of Duty Black Ops",purchase,1.0,0 -51699341,"Call of Duty Black Ops",play,11.3,0 -51699341,"Call of Duty Modern Warfare 3",purchase,1.0,0 -51699341,"Call of Duty Modern Warfare 3",play,5.9,0 -51699341,"Homefront",purchase,1.0,0 -51699341,"Homefront",play,3.8,0 -51699341,"Dead Island",purchase,1.0,0 -51699341,"Dead Island",play,1.2,0 -51699341,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -51699341,"Call of Duty Black Ops - Multiplayer",play,0.7,0 -51699341,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -51699341,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.6,0 -51699341,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -32773537,"Lost Planet Extreme Condition",purchase,1.0,0 -32773537,"Lost Planet Extreme Condition",play,0.4,0 -170419820,"Dota 2",purchase,1.0,0 -170419820,"Dota 2",play,42.0,0 -183190459,"Dota 2",purchase,1.0,0 -183190459,"Dota 2",play,0.2,0 -88173801,"Sid Meier's Civilization V",purchase,1.0,0 -88173801,"Sid Meier's Civilization V",play,1.3,0 -88173801,"SimCity 4 Deluxe",purchase,1.0,0 -88173801,"SimCity 4 Deluxe",play,1.3,0 -88173801,"Left 4 Dead 2",purchase,1.0,0 -88173801,"Left 4 Dead 2",play,0.1,0 -88173801,"Portal",purchase,1.0,0 -88173801,"Anachronox",purchase,1.0,0 -88173801,"Battlestations Midway",purchase,1.0,0 -88173801,"Cult of the Wind",purchase,1.0,0 -88173801,"Daikatana",purchase,1.0,0 -88173801,"Dark Sector",purchase,1.0,0 -88173801,"Deus Ex Game of the Year Edition",purchase,1.0,0 -88173801,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -88173801,"Deus Ex Invisible War",purchase,1.0,0 -88173801,"Deus Ex The Fall",purchase,1.0,0 -88173801,"Dino D-Day",purchase,1.0,0 -88173801,"Dream Pinball 3D",purchase,1.0,0 -88173801,"GTR Evolution",purchase,1.0,0 -88173801,"Hitman 2 Silent Assassin",purchase,1.0,0 -88173801,"Hitman Absolution",purchase,1.0,0 -88173801,"Hitman Codename 47",purchase,1.0,0 -88173801,"Just Cause 2",purchase,1.0,0 -88173801,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -88173801,"Lara Croft and the Guardian of Light",purchase,1.0,0 -88173801,"Mini Ninjas",purchase,1.0,0 -88173801,"Nosgoth",purchase,1.0,0 -88173801,"Portal 2",purchase,1.0,0 -88173801,"RACE 07",purchase,1.0,0 -88173801,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -88173801,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -88173801,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -88173801,"SpaceChem",purchase,1.0,0 -88173801,"Space Pirates and Zombies",purchase,1.0,0 -88173801,"Thief Gold",purchase,1.0,0 -141721383,"Team Fortress 2",purchase,1.0,0 -141721383,"Team Fortress 2",play,404.0,0 -141721383,"Robocraft",purchase,1.0,0 -141721383,"Robocraft",play,79.0,0 -141721383,"War Thunder",purchase,1.0,0 -141721383,"War Thunder",play,55.0,0 -141721383,"Space Engineers",purchase,1.0,0 -141721383,"Space Engineers",play,42.0,0 -141721383,"AirMech",purchase,1.0,0 -141721383,"AirMech",play,28.0,0 -141721383,"Dungeons & Dragons Online",purchase,1.0,0 -141721383,"Dungeons & Dragons Online",play,28.0,0 -141721383,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -141721383,"Tom Clancy's Ghost Recon Phantoms - NA",play,21.0,0 -141721383,"Alien Swarm",purchase,1.0,0 -141721383,"Alien Swarm",play,21.0,0 -141721383,"Heroes & Generals",purchase,1.0,0 -141721383,"Heroes & Generals",play,19.2,0 -141721383,"Star Trek Online",purchase,1.0,0 -141721383,"Star Trek Online",play,16.5,0 -141721383,"Unturned",purchase,1.0,0 -141721383,"Unturned",play,14.4,0 -141721383,"Warface",purchase,1.0,0 -141721383,"Warface",play,12.3,0 -141721383,"PlanetSide 2",purchase,1.0,0 -141721383,"PlanetSide 2",play,12.1,0 -141721383,"Panzar",purchase,1.0,0 -141721383,"Panzar",play,12.0,0 -141721383,"Blacklight Retribution",purchase,1.0,0 -141721383,"Blacklight Retribution",play,11.7,0 -141721383,"EverQuest II",purchase,1.0,0 -141721383,"EverQuest II",play,10.3,0 -141721383,"HAWKEN",purchase,1.0,0 -141721383,"HAWKEN",play,9.8,0 -141721383,"theHunter",purchase,1.0,0 -141721383,"theHunter",play,7.6,0 -141721383,"Neverwinter",purchase,1.0,0 -141721383,"Neverwinter",play,7.3,0 -141721383,"Block N Load",purchase,1.0,0 -141721383,"Block N Load",play,6.2,0 -141721383,"ArcheAge",purchase,1.0,0 -141721383,"ArcheAge",play,4.8,0 -141721383,"sZone-Online",purchase,1.0,0 -141721383,"sZone-Online",play,4.7,0 -141721383,"Gear Up",purchase,1.0,0 -141721383,"Gear Up",play,4.4,0 -141721383,"This War of Mine",purchase,1.0,0 -141721383,"This War of Mine",play,3.9,0 -141721383,"The Mighty Quest For Epic Loot",purchase,1.0,0 -141721383,"The Mighty Quest For Epic Loot",play,3.8,0 -141721383,"Planetbase",purchase,1.0,0 -141721383,"Planetbase",play,3.7,0 -141721383,"Dwarfs F2P",purchase,1.0,0 -141721383,"Dwarfs F2P",play,2.0,0 -141721383,"Magic Duels",purchase,1.0,0 -141721383,"Magic Duels",play,1.6,0 -141721383,"March of War",purchase,1.0,0 -141721383,"March of War",play,1.5,0 -141721383,"Moonbase Alpha",purchase,1.0,0 -141721383,"Moonbase Alpha",play,1.2,0 -141721383,"Star Conflict",purchase,1.0,0 -141721383,"Star Conflict",play,1.0,0 -141721383,"Jagged Alliance Online - Steam Edition",purchase,1.0,0 -141721383,"Jagged Alliance Online - Steam Edition",play,0.7,0 -141721383,"Anno Online",purchase,1.0,0 -141721383,"Anno Online",play,0.6,0 -141721383,"TerraTech",purchase,1.0,0 -141721383,"TerraTech",play,0.5,0 -141721383,"Basement",purchase,1.0,0 -141721383,"Basement",play,0.2,0 -141721383,"Total War Battles KINGDOM",purchase,1.0,0 -141721383,"Total War Battles KINGDOM",play,0.1,0 -141721383,"DCS World",purchase,1.0,0 -141721383,"Stronghold Kingdoms",purchase,1.0,0 -141721383,"Defiance",purchase,1.0,0 -141721383,"Dirty Bomb",purchase,1.0,0 -141721383,"Jagged Alliance Online Raven Pack",purchase,1.0,0 -141721383,"RaceRoom Racing Experience ",purchase,1.0,0 -141721383,"Tribes Ascend",purchase,1.0,0 -89270735,"Dota 2",purchase,1.0,0 -89270735,"Dota 2",play,3.0,0 -243428923,"Team Fortress 2",purchase,1.0,0 -243428923,"Team Fortress 2",play,0.3,0 -243428923,"METAL SLUG DEFENSE",purchase,1.0,0 -243428923,"Yet Another Zombie Defense",purchase,1.0,0 -156274884,"Dota 2",purchase,1.0,0 -156274884,"Dota 2",play,3.0,0 -195486667,"Dota 2",purchase,1.0,0 -195486667,"Dota 2",play,8.5,0 -195486667,"Heroes & Generals",purchase,1.0,0 -195486667,"Royal Quest",purchase,1.0,0 -195486667,"theHunter",purchase,1.0,0 -219875346,"H1Z1",purchase,1.0,0 -219875346,"H1Z1",play,21.0,0 -219875346,"H1Z1 Test Server",purchase,1.0,0 -72842813,"Call of Duty Black Ops",purchase,1.0,0 -72842813,"Call of Duty Black Ops",play,0.3,0 -72842813,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -240067479,"The Sims(TM) 3",purchase,1.0,0 -240067479,"The Sims(TM) 3",play,6.9,0 -103371488,"The Elder Scrolls V Skyrim",purchase,1.0,0 -103371488,"The Elder Scrolls V Skyrim",play,274.0,0 -103371488,"Grand Theft Auto V",purchase,1.0,0 -103371488,"Grand Theft Auto V",play,260.0,0 -103371488,"Grand Theft Auto IV",purchase,1.0,0 -103371488,"Grand Theft Auto IV",play,148.0,0 -103371488,"Torchlight II",purchase,1.0,0 -103371488,"Torchlight II",play,98.0,0 -103371488,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -103371488,"The Witcher 2 Assassins of Kings Enhanced Edition",play,89.0,0 -103371488,"Counter-Strike Global Offensive",purchase,1.0,0 -103371488,"Counter-Strike Global Offensive",play,51.0,0 -103371488,"Saints Row The Third",purchase,1.0,0 -103371488,"Saints Row The Third",play,49.0,0 -103371488,"The Witcher 3 Wild Hunt",purchase,1.0,0 -103371488,"The Witcher 3 Wild Hunt",play,41.0,0 -103371488,"Portal",purchase,1.0,0 -103371488,"Portal",play,33.0,0 -103371488,"Portal 2",purchase,1.0,0 -103371488,"Portal 2",play,30.0,0 -103371488,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -103371488,"Grand Theft Auto Episodes from Liberty City",play,25.0,0 -103371488,"Life Is Strange",purchase,1.0,0 -103371488,"Life Is Strange",play,22.0,0 -103371488,"GRID 2",purchase,1.0,0 -103371488,"GRID 2",play,22.0,0 -103371488,"PAYDAY 2",purchase,1.0,0 -103371488,"PAYDAY 2",play,5.1,0 -103371488,"Saints Row 2",purchase,1.0,0 -103371488,"Saints Row 2",play,4.6,0 -103371488,"Woodle Tree Adventures",purchase,1.0,0 -103371488,"Woodle Tree Adventures",play,3.3,0 -103371488,"Left 4 Dead 2",purchase,1.0,0 -103371488,"Left 4 Dead 2",play,3.1,0 -103371488,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -103371488,"Dark Souls Prepare to Die Edition",play,1.8,0 -103371488,"Dota 2",purchase,1.0,0 -103371488,"Dota 2",play,1.6,0 -103371488,"Hitman Sniper Challenge",purchase,1.0,0 -103371488,"Hitman Sniper Challenge",play,0.6,0 -103371488,"Pid ",purchase,1.0,0 -103371488,"Pid ",play,0.2,0 -103371488,"Unturned",purchase,1.0,0 -103371488,"Unturned",play,0.1,0 -103371488,"Adventures of Shuggy",purchase,1.0,0 -103371488,"Afterfall InSanity Extended Edition",purchase,1.0,0 -103371488,"BioShock",purchase,1.0,0 -103371488,"BioShock 2",purchase,1.0,0 -103371488,"BioShock Infinite",purchase,1.0,0 -103371488,"Borderlands 2",purchase,1.0,0 -103371488,"Chaos Domain",purchase,1.0,0 -103371488,"Dead Island",purchase,1.0,0 -103371488,"Dead Island Riptide",purchase,1.0,0 -103371488,"Dead Space 2",purchase,1.0,0 -103371488,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -103371488,"F.E.A.R.",purchase,1.0,0 -103371488,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -103371488,"F.E.A.R. 3",purchase,1.0,0 -103371488,"F.E.A.R. Extraction Point",purchase,1.0,0 -103371488,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -103371488,"Frozen Hearth",purchase,1.0,0 -103371488,"Garry's Mod",purchase,1.0,0 -103371488,"GRID 2 GTR Racing Pack",purchase,1.0,0 -103371488,"Guacamelee! Gold Edition",purchase,1.0,0 -103371488,"Half-Life",purchase,1.0,0 -103371488,"Half-Life 2",purchase,1.0,0 -103371488,"Half-Life 2 Deathmatch",purchase,1.0,0 -103371488,"Half-Life 2 Episode One",purchase,1.0,0 -103371488,"Half-Life 2 Episode Two",purchase,1.0,0 -103371488,"Half-Life 2 Lost Coast",purchase,1.0,0 -103371488,"Half-Life Blue Shift",purchase,1.0,0 -103371488,"Half-Life Opposing Force",purchase,1.0,0 -103371488,"Half-Life Source",purchase,1.0,0 -103371488,"Half-Life Deathmatch Source",purchase,1.0,0 -103371488,"Hitman Absolution",purchase,1.0,0 -103371488,"Metro 2033",purchase,1.0,0 -103371488,"Metro Last Light",purchase,1.0,0 -103371488,"Neverwinter",purchase,1.0,0 -103371488,"ORION Prelude",purchase,1.0,0 -103371488,"Path of Exile",purchase,1.0,0 -103371488,"PAYDAY The Heist",purchase,1.0,0 -103371488,"Risen",purchase,1.0,0 -103371488,"Risen 2 - Dark Waters",purchase,1.0,0 -103371488,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -103371488,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -103371488,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -103371488,"Sacred 2 Gold",purchase,1.0,0 -103371488,"Sacred Citadel",purchase,1.0,0 -103371488,"Shattered Horizon",purchase,1.0,0 -103371488,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -103371488,"Sleeping Dogs",purchase,1.0,0 -103371488,"Sniper Elite 3",purchase,1.0,0 -103371488,"State of Decay",purchase,1.0,0 -103371488,"Team Fortress Classic",purchase,1.0,0 -103371488,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -103371488,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -103371488,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -103371488,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -103371488,"The Witcher Enhanced Edition",purchase,1.0,0 -103371488,"Thief",purchase,1.0,0 -103371488,"Tomb Raider",purchase,1.0,0 -103371488,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -103371488,"Tomb Raider Anniversary",purchase,1.0,0 -103371488,"Tomb Raider Chronicles",purchase,1.0,0 -103371488,"Tomb Raider Legend",purchase,1.0,0 -103371488,"Tomb Raider The Last Revelation",purchase,1.0,0 -103371488,"Tomb Raider Underworld",purchase,1.0,0 -103371488,"Tomb Raider I",purchase,1.0,0 -103371488,"Tomb Raider II",purchase,1.0,0 -103371488,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -299848257,"Call of Duty Black Ops III",purchase,1.0,0 -299848257,"Call of Duty Black Ops III",play,3.4,0 -299848257,"Nosgoth",purchase,1.0,0 -299848257,"Nosgoth",play,0.3,0 -287725554,"Dota 2",purchase,1.0,0 -287725554,"Dota 2",play,1.0,0 -152850905,"Dota 2",purchase,1.0,0 -152850905,"Dota 2",play,1241.0,0 -152850905,"Counter-Strike Global Offensive",purchase,1.0,0 -152850905,"Counter-Strike Global Offensive",play,471.0,0 -152850905,"Team Fortress 2",purchase,1.0,0 -152850905,"Team Fortress 2",play,2.6,0 -152850905,"America's Army 3",purchase,1.0,0 -152850905,"Double Action Boogaloo",purchase,1.0,0 -152850905,"Neverwinter",purchase,1.0,0 -152850905,"Nosgoth",purchase,1.0,0 -152850905,"RaceRoom Racing Experience ",purchase,1.0,0 -152850905,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -152850905,"Unturned",purchase,1.0,0 -152850905,"Warframe",purchase,1.0,0 -76303426,"Mafia II",purchase,1.0,0 -76303426,"Mafia II",play,0.3,0 -233285702,"Dota 2",purchase,1.0,0 -233285702,"Dota 2",play,0.3,0 -14258248,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -14258248,"Warhammer 40,000 Dawn of War Winter Assault",play,16.0,0 -14258248,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -14258248,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,9.3,0 -14258248,"Counter-Strike Source",purchase,1.0,0 -14258248,"Counter-Strike Source",play,5.4,0 -14258248,"Half-Life",purchase,1.0,0 -14258248,"Half-Life 2",purchase,1.0,0 -14258248,"Half-Life 2 Deathmatch",purchase,1.0,0 -14258248,"Half-Life 2 Lost Coast",purchase,1.0,0 -14258248,"Team Fortress Classic",purchase,1.0,0 -48634782,"Left 4 Dead",purchase,1.0,0 -48634782,"Left 4 Dead",play,0.5,0 -305552753,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -305552753,"METAL GEAR SOLID V GROUND ZEROES",play,0.6,0 -10810391,"Counter-Strike Source",purchase,1.0,0 -10810391,"Half-Life 2",purchase,1.0,0 -10810391,"Half-Life 2 Deathmatch",purchase,1.0,0 -10810391,"Half-Life 2 Lost Coast",purchase,1.0,0 -10810391,"Half-Life Source",purchase,1.0,0 -10810391,"Half-Life Deathmatch Source",purchase,1.0,0 -282320568,"Dota 2",purchase,1.0,0 -282320568,"Dota 2",play,12.4,0 -282320568,"Team Fortress 2",purchase,1.0,0 -282320568,"Team Fortress 2",play,7.3,0 -282320568,"Archeblade",purchase,1.0,0 -282320568,"Archeblade",play,4.5,0 -282320568,"Warface",purchase,1.0,0 -282320568,"Warface",play,4.2,0 -282320568,"Dirty Bomb",purchase,1.0,0 -282320568,"Dirty Bomb",play,1.8,0 -282320568,"Blacklight Retribution",purchase,1.0,0 -282320568,"Blacklight Retribution",play,1.2,0 -282320568,"Soldier Front 2",purchase,1.0,0 -282320568,"Soldier Front 2",play,0.3,0 -149350556,"Dota 2",purchase,1.0,0 -149350556,"Dota 2",play,0.4,0 -175447188,"The Elder Scrolls V Skyrim",purchase,1.0,0 -175447188,"The Elder Scrolls V Skyrim",play,487.0,0 -175447188,"Robocraft",purchase,1.0,0 -175447188,"Robocraft",play,355.0,0 -175447188,"AdVenture Capitalist",purchase,1.0,0 -175447188,"AdVenture Capitalist",play,133.0,0 -175447188,"Borderlands 2",purchase,1.0,0 -175447188,"Borderlands 2",play,128.0,0 -175447188,"Craft The World",purchase,1.0,0 -175447188,"Craft The World",play,86.0,0 -175447188,"Terraria",purchase,1.0,0 -175447188,"Terraria",play,52.0,0 -175447188,"Borderlands",purchase,1.0,0 -175447188,"Borderlands",play,51.0,0 -175447188,"Orcs Must Die! 2",purchase,1.0,0 -175447188,"Orcs Must Die! 2",play,34.0,0 -175447188,"7 Days to Die",purchase,1.0,0 -175447188,"7 Days to Die",play,33.0,0 -175447188,"Cities Skylines",purchase,1.0,0 -175447188,"Cities Skylines",play,27.0,0 -175447188,"Creeper World 3 Arc Eternal",purchase,1.0,0 -175447188,"Creeper World 3 Arc Eternal",play,21.0,0 -175447188,"Sakura Clicker",purchase,1.0,0 -175447188,"Sakura Clicker",play,18.8,0 -175447188,"Orcs Must Die!",purchase,1.0,0 -175447188,"Orcs Must Die!",play,13.5,0 -175447188,"Shantae and the Pirate's Curse",purchase,1.0,0 -175447188,"Shantae and the Pirate's Curse",play,7.9,0 -175447188,"Borderlands The Pre-Sequel",purchase,1.0,0 -175447188,"Borderlands The Pre-Sequel",play,6.5,0 -175447188,"Dungeons 2",purchase,1.0,0 -175447188,"Dungeons 2",play,4.7,0 -175447188,"Banished",purchase,1.0,0 -175447188,"Banished",play,4.5,0 -175447188,"Garry's Mod",purchase,1.0,0 -175447188,"Garry's Mod",play,3.6,0 -175447188,"Goat Simulator",purchase,1.0,0 -175447188,"Goat Simulator",play,3.0,0 -175447188,"Creativerse",purchase,1.0,0 -175447188,"Creativerse",play,2.9,0 -175447188,"Besiege",purchase,1.0,0 -175447188,"Besiege",play,2.4,0 -175447188,"Space Run",purchase,1.0,0 -175447188,"Space Run",play,0.9,0 -175447188,"Archeblade",purchase,1.0,0 -175447188,"Archeblade",play,0.8,0 -175447188,"Gnomoria",purchase,1.0,0 -175447188,"Gnomoria",play,0.4,0 -175447188,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -175447188,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -175447188,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -175447188,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -175447188,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -175447188,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -175447188,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -175447188,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -175447188,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -175447188,"Fractured Space",purchase,1.0,0 -175447188,"Overlord",purchase,1.0,0 -175447188,"Overlord Raising Hell",purchase,1.0,0 -175447188,"Overlord II",purchase,1.0,0 -175447188,"Sid Meier's Civilization V",purchase,1.0,0 -175447188,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -175447188,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -175447188,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -175447188,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -175447188,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -175447188,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -234112159,"Dota 2",purchase,1.0,0 -234112159,"Dota 2",play,0.8,0 -94858657,"The Elder Scrolls V Skyrim",purchase,1.0,0 -94858657,"The Elder Scrolls V Skyrim",play,0.5,0 -293108035,"UberStrike",purchase,1.0,0 -293108035,"UberStrike",play,6.1,0 -235689037,"Counter-Strike Global Offensive",purchase,1.0,0 -235689037,"Counter-Strike Global Offensive",play,6.6,0 -235689037,"Unturned",purchase,1.0,0 -235689037,"Unturned",play,0.3,0 -149825972,"Dota 2",purchase,1.0,0 -149825972,"Dota 2",play,150.0,0 -158237531,"Team Fortress 2",purchase,1.0,0 -158237531,"Team Fortress 2",play,6.7,0 -68493240,"Counter-Strike",purchase,1.0,0 -68493240,"Counter-Strike",play,0.5,0 -68493240,"Counter-Strike Condition Zero",purchase,1.0,0 -68493240,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -68493240,"Firefall",purchase,1.0,0 -68493240,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -182835747,"Dota 2",purchase,1.0,0 -182835747,"Dota 2",play,2403.0,0 -182835747,"Counter-Strike Global Offensive",purchase,1.0,0 -182835747,"Counter-Strike Global Offensive",play,48.0,0 -182835747,"America's Army Proving Grounds",purchase,1.0,0 -182835747,"East India Company Gold",purchase,1.0,0 -182835747,"Enclave",purchase,1.0,0 -182835747,"Fistful of Frags",purchase,1.0,0 -182835747,"Football Superstars",purchase,1.0,0 -182835747,"Knights and Merchants",purchase,1.0,0 -182835747,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -182835747,"Stronghold Kingdoms",purchase,1.0,0 -182835747,"Tactical Intervention",purchase,1.0,0 -182835747,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -182835747,"War Thunder",purchase,1.0,0 -145606876,"Football Manager 2014",purchase,1.0,0 -145606876,"Football Manager 2014",play,4775.0,0 -145606876,"Empire Total War",purchase,1.0,0 -145606876,"Empire Total War",play,113.0,0 -145606876,"Medal of Honor Airborne",purchase,1.0,0 -145606876,"Medal of Honor Airborne",play,14.3,0 -145606876,"DuckTales Remastered",purchase,1.0,0 -145606876,"DuckTales Remastered",play,10.4,0 -145606876,"Titan Quest",purchase,1.0,0 -145606876,"Titan Quest",play,2.9,0 -145606876,"PAYDAY The Heist",purchase,1.0,0 -145606876,"PAYDAY The Heist",play,0.6,0 -145606876,"Napoleon Total War",purchase,1.0,0 -56899274,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -56899274,"Call of Duty Modern Warfare 2 - Multiplayer",play,178.0,0 -56899274,"Call of Duty Modern Warfare 2",purchase,1.0,0 -56899274,"Call of Duty Modern Warfare 2",play,26.0,0 -56899274,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -56899274,"Call of Duty Modern Warfare 3 - Multiplayer",play,6.7,0 -56899274,"Call of Duty Modern Warfare 3",purchase,1.0,0 -56899274,"Call of Duty Modern Warfare 3",play,5.0,0 -56899274,"Aliens vs. Predator",purchase,1.0,0 -56899274,"Aliens vs. Predator",play,3.8,0 -77153774,"Over 9000 Zombies!",purchase,1.0,0 -77153774,"Over 9000 Zombies!",play,4.5,0 -77153774,"Silent Hill Homecoming",purchase,1.0,0 -29852387,"Counter-Strike",purchase,1.0,0 -29852387,"Counter-Strike",play,472.0,0 -29852387,"Assassin's Creed II",purchase,1.0,0 -29852387,"Assassin's Creed II",play,79.0,0 -29852387,"Counter-Strike Global Offensive",purchase,1.0,0 -29852387,"Counter-Strike Global Offensive",play,35.0,0 -29852387,"Dota 2",purchase,1.0,0 -29852387,"Dota 2",play,10.1,0 -29852387,"Pox Nora",purchase,1.0,0 -29852387,"Pox Nora",play,0.3,0 -29852387,"Counter-Strike Condition Zero",purchase,1.0,0 -29852387,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -29852387,"Half-Life 2 Deathmatch",purchase,1.0,0 -29852387,"Half-Life 2 Lost Coast",purchase,1.0,0 -29852387,"Path of Exile",purchase,1.0,0 -111804259,"Team Fortress 2",purchase,1.0,0 -111804259,"Team Fortress 2",play,1.0,0 -33910513,"Just Cause 2",purchase,1.0,0 -33910513,"Just Cause 2",play,75.0,0 -33910513,"Sid Meier's Civilization V",purchase,1.0,0 -33910513,"Sid Meier's Civilization V",play,52.0,0 -33910513,"Duke Nukem Forever",purchase,1.0,0 -33910513,"Duke Nukem Forever",play,17.2,0 -33910513,"GTR Evolution",purchase,1.0,0 -33910513,"GTR Evolution",play,6.6,0 -33910513,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -33910513,"RACE 07",purchase,1.0,0 -33910513,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -33910513,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -171266433,"Dota 2",purchase,1.0,0 -171266433,"Dota 2",play,299.0,0 -171266433,"Unturned",purchase,1.0,0 -171266433,"Unturned",play,22.0,0 -171266433,"Counter-Strike Nexon Zombies",purchase,1.0,0 -171266433,"War Thunder",purchase,1.0,0 -58830050,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -58830050,"Call of Duty Black Ops II - Multiplayer",play,178.0,0 -58830050,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -58830050,"Call of Duty Ghosts - Multiplayer",play,83.0,0 -58830050,"Call of Duty Ghosts",purchase,1.0,0 -58830050,"Call of Duty Ghosts",play,11.7,0 -58830050,"Grand Theft Auto IV",purchase,1.0,0 -58830050,"Grand Theft Auto IV",play,10.6,0 -58830050,"Call of Duty Black Ops II",purchase,1.0,0 -58830050,"Call of Duty Black Ops II",play,6.2,0 -58830050,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -58830050,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -251004841,"Dota 2",purchase,1.0,0 -251004841,"Dota 2",play,0.7,0 -216088282,"Unturned",purchase,1.0,0 -216088282,"Unturned",play,69.0,0 -216088282,"Counter-Strike Nexon Zombies",purchase,1.0,0 -216088282,"Counter-Strike Nexon Zombies",play,21.0,0 -216088282,"Counter-Strike Global Offensive",purchase,1.0,0 -216088282,"Counter-Strike Global Offensive",play,16.9,0 -216088282,"No More Room in Hell",purchase,1.0,0 -216088282,"No More Room in Hell",play,11.0,0 -216088282,"Robocraft",purchase,1.0,0 -216088282,"Robocraft",play,7.6,0 -216088282,"The Forest",purchase,1.0,0 -216088282,"The Forest",play,2.0,0 -216088282,"FaceRig",purchase,1.0,0 -216088282,"FaceRig",play,2.0,0 -216088282,"Dota 2",purchase,1.0,0 -216088282,"Dota 2",play,0.8,0 -216088282,"Corporate Lifestyle Simulator",purchase,1.0,0 -216088282,"Corporate Lifestyle Simulator",play,0.6,0 -216088282,"Survarium",purchase,1.0,0 -216088282,"Survarium",play,0.6,0 -216088282,"Dead Island Epidemic",purchase,1.0,0 -216088282,"Dead Island Epidemic",play,0.5,0 -216088282,"Spooky's House of Jump Scares",purchase,1.0,0 -216088282,"Spooky's House of Jump Scares",play,0.4,0 -216088282,"Batla",purchase,1.0,0 -216088282,"Batla",play,0.2,0 -216088282,"Metro Conflict",purchase,1.0,0 -216088282,"Metro Conflict",play,0.2,0 -216088282,"WARMODE",purchase,1.0,0 -216088282,"Knights and Merchants",purchase,1.0,0 -216088282,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -216088282,"Age of Empires Online",purchase,1.0,0 -216088282,"Amazing World",purchase,1.0,0 -216088282,"America's Army 3",purchase,1.0,0 -216088282,"America's Army Proving Grounds",purchase,1.0,0 -216088282,"APB Reloaded",purchase,1.0,0 -216088282,"Arcane Saga Online",purchase,1.0,0 -216088282,"Archeblade",purchase,1.0,0 -216088282,"Arctic Combat",purchase,1.0,0 -216088282,"Atlantica Online",purchase,1.0,0 -216088282,"Aura Kingdom",purchase,1.0,0 -216088282,"Bloodline Champions",purchase,1.0,0 -216088282,"Brawl Busters",purchase,1.0,0 -216088282,"Brawlhalla",purchase,1.0,0 -216088282,"Bullet Run",purchase,1.0,0 -216088282,"C9",purchase,1.0,0 -216088282,"Cakewalk Loop Manager",purchase,1.0,0 -216088282,"Champions Online",purchase,1.0,0 -216088282,"Combat Arms",purchase,1.0,0 -216088282,"Construct 2 Free",purchase,1.0,0 -216088282,"CrimeCraft GangWars",purchase,1.0,0 -216088282,"Cubetractor",purchase,1.0,0 -216088282,"Defiance",purchase,1.0,0 -216088282,"District 187",purchase,1.0,0 -216088282,"Dragon Nest",purchase,1.0,0 -216088282,"Dragon Nest Europe",purchase,1.0,0 -216088282,"Dragons and Titans",purchase,1.0,0 -216088282,"Dungeon Fighter Online",purchase,1.0,0 -216088282,"Dungeonland",purchase,1.0,0 -216088282,"Dungeon Party",purchase,1.0,0 -216088282,"Dwarfs F2P",purchase,1.0,0 -216088282,"Enclave",purchase,1.0,0 -216088282,"EverQuest Free-to-Play",purchase,1.0,0 -216088282,"EverQuest II",purchase,1.0,0 -216088282,"EVGA PrecisionX 16",purchase,1.0,0 -216088282,"Face of Mankind",purchase,1.0,0 -216088282,"Fallen Earth",purchase,1.0,0 -216088282,"Fiesta Online",purchase,1.0,0 -216088282,"Fiesta Online NA",purchase,1.0,0 -216088282,"Firefall",purchase,1.0,0 -216088282,"Floating Point",purchase,1.0,0 -216088282,"Football Superstars",purchase,1.0,0 -216088282,"Forsaken World ",purchase,1.0,0 -216088282,"Frontline Tactics",purchase,1.0,0 -216088282,"Gotham City Impostors Free To Play",purchase,1.0,0 -216088282,"Grand Chase",purchase,1.0,0 -216088282,"Guns and Robots",purchase,1.0,0 -216088282,"Heroes & Generals",purchase,1.0,0 -216088282,"HOMEFRONT Demo",purchase,1.0,0 -216088282,"La Tale",purchase,1.0,0 -216088282,"Loadout",purchase,1.0,0 -216088282,"Mabinogi",purchase,1.0,0 -216088282,"Magic The Gathering Tactics",purchase,1.0,0 -216088282,"March of War",purchase,1.0,0 -216088282,"Marvel Heroes 2015",purchase,1.0,0 -216088282,"Memoir '44 Online",purchase,1.0,0 -216088282,"MicroVolts Surge",purchase,1.0,0 -216088282,"Moon Breakers",purchase,1.0,0 -216088282,"NEOTOKYO",purchase,1.0,0 -216088282,"Neverwinter",purchase,1.0,0 -216088282,"Nosgoth",purchase,1.0,0 -216088282,"Only If",purchase,1.0,0 -216088282,"Overcast - Walden and the Werewolf",purchase,1.0,0 -216088282,"Pandora Saga Weapons of Balance",purchase,1.0,0 -216088282,"Panzar",purchase,1.0,0 -216088282,"Path of Exile",purchase,1.0,0 -216088282,"Pinball Arcade",purchase,1.0,0 -216088282,"PlanetSide 2",purchase,1.0,0 -216088282,"Pox Nora",purchase,1.0,0 -216088282,"Puzzle Pirates",purchase,1.0,0 -216088282,"Quantum Rush Online",purchase,1.0,0 -216088282,"RaceRoom Racing Experience ",purchase,1.0,0 -216088282,"Ragnarok Online 2",purchase,1.0,0 -216088282,"Realm of the Mad God",purchase,1.0,0 -216088282,"Reversion - The Escape",purchase,1.0,0 -216088282,"Rise of Incarnates",purchase,1.0,0 -216088282,"ROSE Online",purchase,1.0,0 -216088282,"Royal Quest",purchase,1.0,0 -216088282,"Rusty Hearts",purchase,1.0,0 -216088282,"Saira",purchase,1.0,0 -216088282,"Shadow Warrior Classic (1997)",purchase,1.0,0 -216088282,"Spiral Knights",purchase,1.0,0 -216088282,"Star Conflict",purchase,1.0,0 -216088282,"Star Trek Online",purchase,1.0,0 -216088282,"Steam Heroes",purchase,1.0,0 -216088282,"Stronghold Kingdoms",purchase,1.0,0 -216088282,"Sunrider Mask of Arcadius",purchase,1.0,0 -216088282,"Super Crate Box",purchase,1.0,0 -216088282,"Super Monday Night Combat",purchase,1.0,0 -216088282,"Tactical Intervention",purchase,1.0,0 -216088282,"The Banner Saga Factions",purchase,1.0,0 -216088282,"The Expendabros",purchase,1.0,0 -216088282,"The Forgotten Ones",purchase,1.0,0 -216088282,"The Lord of the Rings Online",purchase,1.0,0 -216088282,"Thinking with Time Machine",purchase,1.0,0 -216088282,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -216088282,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -216088282,"Tribes Ascend",purchase,1.0,0 -216088282,"Uncharted Waters Online",purchase,1.0,0 -216088282,"Velvet Sundown",purchase,1.0,0 -216088282,"Vindictus",purchase,1.0,0 -216088282,"Warface",purchase,1.0,0 -216088282,"Warframe",purchase,1.0,0 -216088282,"War Inc. Battlezone",purchase,1.0,0 -216088282,"War Thunder",purchase,1.0,0 -216088282,"World of Battles",purchase,1.0,0 -216088282,"World of Guns Gun Disassembly",purchase,1.0,0 -216088282,"Xam",purchase,1.0,0 -83999409,"Team Fortress 2",purchase,1.0,0 -83999409,"Team Fortress 2",play,5.4,0 -206997101,"Team Fortress 2",purchase,1.0,0 -206997101,"Team Fortress 2",play,0.2,0 -159150588,"Dota 2",purchase,1.0,0 -159150588,"Dota 2",play,5.3,0 -83336644,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -83336644,"Call of Duty Modern Warfare 2 - Multiplayer",play,167.0,0 -83336644,"Aliens vs. Predator",purchase,1.0,0 -83336644,"Aliens vs. Predator",play,15.2,0 -83336644,"Call of Duty Modern Warfare 2",purchase,1.0,0 -83336644,"Call of Duty Modern Warfare 2",play,6.6,0 -83336644,"Portal",purchase,1.0,0 -83336644,"Portal",play,3.4,0 -83336644,"Team Fortress 2",purchase,1.0,0 -83336644,"Team Fortress 2",play,3.2,0 -177831964,"Magicka",purchase,1.0,0 -177831964,"Magicka",play,1.0,0 -177831964,"Elsword",purchase,1.0,0 -31319953,"Lost Planet Extreme Condition",purchase,1.0,0 -66495044,"The Elder Scrolls III Morrowind",purchase,1.0,0 -66495044,"The Elder Scrolls III Morrowind",play,12.7,0 -216047087,"DayZ",purchase,1.0,0 -216047087,"DayZ",play,137.0,0 -216047087,"Chivalry Medieval Warfare",purchase,1.0,0 -216047087,"Chivalry Medieval Warfare",play,41.0,0 -216047087,"Heroes & Generals",purchase,1.0,0 -216047087,"Heroes & Generals",play,28.0,0 -216047087,"Brawlhalla",purchase,1.0,0 -216047087,"Brawlhalla",play,5.8,0 -216047087,"Unturned",purchase,1.0,0 -216047087,"Unturned",play,3.7,0 -216047087,"Survarium",purchase,1.0,0 -216047087,"Survarium",play,0.7,0 -216047087,"War of the Roses",purchase,1.0,0 -216047087,"War of the Roses",play,0.1,0 -216047087,"Emily is Away",purchase,1.0,0 -216047087,"Toribash",purchase,1.0,0 -216047087,"Dirty Bomb",purchase,1.0,0 -216047087,"Patch testing for Chivalry",purchase,1.0,0 -216047087,"Robocraft",purchase,1.0,0 -216047087,"theHunter",purchase,1.0,0 -200701717,"Dota 2",purchase,1.0,0 -200701717,"Dota 2",play,1.2,0 -214390937,"Altitude",purchase,1.0,0 -214390937,"Amazing World",purchase,1.0,0 -214390937,"Aura Kingdom",purchase,1.0,0 -214390937,"Aura Kingdom - Winter Gift",purchase,1.0,0 -214390937,"C9",purchase,1.0,0 -214390937,"Cubic Castles",purchase,1.0,0 -214390937,"Double Action Boogaloo",purchase,1.0,0 -214390937,"Famaze",purchase,1.0,0 -214390937,"Floating Point",purchase,1.0,0 -214390937,"Grimm",purchase,1.0,0 -214390937,"Heroine's Quest The Herald of Ragnarok",purchase,1.0,0 -214390937,"Lost Saga North America",purchase,1.0,0 -214390937,"Max Gentlemen",purchase,1.0,0 -214390937,"Only If",purchase,1.0,0 -214390937,"Penumbra Necrologue",purchase,1.0,0 -214390937,"Pinball Arcade",purchase,1.0,0 -214390937,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -214390937,"ProtoGalaxy",purchase,1.0,0 -214390937,"Serena",purchase,1.0,0 -214390937,"Speedball 2 HD",purchase,1.0,0 -214390937,"Warframe",purchase,1.0,0 -303871659,"Dota 2",purchase,1.0,0 -303871659,"Dota 2",play,0.2,0 -292975910,"Dota 2",purchase,1.0,0 -292975910,"Dota 2",play,5.6,0 -197014942,"Dota 2",purchase,1.0,0 -197014942,"Dota 2",play,0.5,0 -73618782,"Sid Meier's Civilization V",purchase,1.0,0 -73618782,"Sid Meier's Civilization V",play,190.0,0 -94145419,"Call of Duty Modern Warfare 3",purchase,1.0,0 -94145419,"Call of Duty Modern Warfare 3",play,13.0,0 -94145419,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -94145419,"Call of Duty Modern Warfare 3 - Multiplayer",play,0.9,0 -127311699,"Ultra Street Fighter IV",purchase,1.0,0 -127311699,"Ultra Street Fighter IV",play,514.0,0 -127311699,"DARK SOULS II",purchase,1.0,0 -127311699,"DARK SOULS II",play,416.0,0 -127311699,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -127311699,"Dark Souls Prepare to Die Edition",play,146.0,0 -127311699,"Borderlands 2",purchase,1.0,0 -127311699,"Borderlands 2",play,63.0,0 -127311699,"Torchlight II",purchase,1.0,0 -127311699,"Torchlight II",play,29.0,0 -127311699,"Shadow Warrior",purchase,1.0,0 -127311699,"Shadow Warrior",play,24.0,0 -127311699,"Hitman Absolution",purchase,1.0,0 -127311699,"Hitman Absolution",play,10.3,0 -127311699,"Batman Arkham City GOTY",purchase,1.0,0 -127311699,"Batman Arkham City GOTY",play,9.2,0 -127311699,"Nidhogg",purchase,1.0,0 -127311699,"Nidhogg",play,7.9,0 -127311699,"The Elder Scrolls V Skyrim",purchase,1.0,0 -127311699,"The Elder Scrolls V Skyrim",play,7.5,0 -127311699,"DmC Devil May Cry",purchase,1.0,0 -127311699,"DmC Devil May Cry",play,6.9,0 -127311699,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -127311699,"DARK SOULS II Scholar of the First Sin",play,4.6,0 -127311699,"Chivalry Medieval Warfare",purchase,1.0,0 -127311699,"Chivalry Medieval Warfare",play,3.9,0 -127311699,"LIMBO",purchase,1.0,0 -127311699,"LIMBO",play,2.7,0 -127311699,"Terraria",purchase,1.0,0 -127311699,"Terraria",play,2.7,0 -127311699,"Prince of Persia",purchase,1.0,0 -127311699,"Prince of Persia",play,2.3,0 -127311699,"Spec Ops The Line",purchase,1.0,0 -127311699,"Spec Ops The Line",play,2.3,0 -127311699,"Alan Wake",purchase,1.0,0 -127311699,"Alan Wake",play,2.2,0 -127311699,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -127311699,"Kingdoms of Amalur Reckoning",play,2.0,0 -127311699,"Tomb Raider",purchase,1.0,0 -127311699,"Tomb Raider",play,1.9,0 -127311699,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -127311699,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,1.9,0 -127311699,"The Stanley Parable",purchase,1.0,0 -127311699,"The Stanley Parable",play,1.9,0 -127311699,"Left 4 Dead 2",purchase,1.0,0 -127311699,"Left 4 Dead 2",play,1.7,0 -127311699,"DiRT 3",purchase,1.0,0 -127311699,"DiRT 3",play,1.4,0 -127311699,"Metro Last Light",purchase,1.0,0 -127311699,"Metro Last Light",play,1.4,0 -127311699,"Crysis",purchase,1.0,0 -127311699,"Crysis",play,1.4,0 -127311699,"BioShock Infinite",purchase,1.0,0 -127311699,"BioShock Infinite",play,1.1,0 -127311699,"Child of Light",purchase,1.0,0 -127311699,"Child of Light",play,1.1,0 -127311699,"Path of Exile",purchase,1.0,0 -127311699,"Path of Exile",play,1.1,0 -127311699,"Mortal Kombat X",purchase,1.0,0 -127311699,"Mortal Kombat X",play,0.7,0 -127311699,"Batman Arkham Origins",purchase,1.0,0 -127311699,"Batman Arkham Origins",play,0.7,0 -127311699,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -127311699,"Fallout 3 - Game of the Year Edition",play,0.6,0 -127311699,"Mirror's Edge",purchase,1.0,0 -127311699,"Mirror's Edge",play,0.6,0 -127311699,"Prince of Persia The Sands of Time",purchase,1.0,0 -127311699,"Prince of Persia The Sands of Time",play,0.5,0 -127311699,"Scribblenauts Unlimited",purchase,1.0,0 -127311699,"Scribblenauts Unlimited",play,0.5,0 -127311699,"Age of Empires II HD Edition",purchase,1.0,0 -127311699,"Age of Empires II HD Edition",play,0.5,0 -127311699,"The Last Remnant",purchase,1.0,0 -127311699,"The Last Remnant",play,0.4,0 -127311699,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -127311699,"Burnout Paradise The Ultimate Box",play,0.4,0 -127311699,"Remember Me",purchase,1.0,0 -127311699,"Remember Me",play,0.4,0 -127311699,"Prince of Persia The Two Thrones",purchase,1.0,0 -127311699,"Prince of Persia The Two Thrones",play,0.4,0 -127311699,"Age of Empires II HD The Forgotten",purchase,1.0,0 -127311699,"Age of Empires III Complete Collection",purchase,1.0,0 -127311699,"Antichamber",purchase,1.0,0 -127311699,"Assassin's Creed II",purchase,1.0,0 -127311699,"Assassin's Creed Revelations",purchase,1.0,0 -127311699,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -127311699,"DARK SOULS II - Season Pass",purchase,1.0,0 -127311699,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -127311699,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -127311699,"DiRT 3 Complete Edition",purchase,1.0,0 -127311699,"Dust An Elysian Tail",purchase,1.0,0 -127311699,"F.E.A.R.",purchase,1.0,0 -127311699,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -127311699,"F.E.A.R. 3",purchase,1.0,0 -127311699,"F.E.A.R. Extraction Point",purchase,1.0,0 -127311699,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -127311699,"Giana Sisters Twisted Dreams",purchase,1.0,0 -127311699,"God Mode",purchase,1.0,0 -127311699,"Guacamelee! Gold Edition",purchase,1.0,0 -127311699,"Guardians of Middle-earth",purchase,1.0,0 -127311699,"Hitman Sniper Challenge",purchase,1.0,0 -127311699,"Just Cause 2",purchase,1.0,0 -127311699,"Mark of the Ninja",purchase,1.0,0 -127311699,"Metro 2033",purchase,1.0,0 -127311699,"Monaco",purchase,1.0,0 -127311699,"Mortal Kombat Kollection",purchase,1.0,0 -127311699,"Mount & Blade Warband",purchase,1.0,0 -127311699,"Patch testing for Chivalry",purchase,1.0,0 -127311699,"Sacred 2 Gold",purchase,1.0,0 -127311699,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -127311699,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -127311699,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -127311699,"The Lord of the Rings War in the North",purchase,1.0,0 -127311699,"The Swapper",purchase,1.0,0 -127311699,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -127311699,"The Witcher Enhanced Edition",purchase,1.0,0 -127311699,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -22301321,"Borderlands 2",purchase,1.0,0 -22301321,"Borderlands 2",play,154.0,0 -22301321,"Dungeon Defenders",purchase,1.0,0 -22301321,"Dungeon Defenders",play,105.0,0 -22301321,"Battlefield Bad Company 2",purchase,1.0,0 -22301321,"Battlefield Bad Company 2",play,99.0,0 -22301321,"Borderlands",purchase,1.0,0 -22301321,"Borderlands",play,85.0,0 -22301321,"Supreme Commander 2",purchase,1.0,0 -22301321,"Supreme Commander 2",play,75.0,0 -22301321,"EVE Online",purchase,1.0,0 -22301321,"EVE Online",play,57.0,0 -22301321,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -22301321,"Call of Duty Black Ops - Multiplayer",play,57.0,0 -22301321,"The Elder Scrolls V Skyrim",purchase,1.0,0 -22301321,"The Elder Scrolls V Skyrim",play,54.0,0 -22301321,"Kerbal Space Program",purchase,1.0,0 -22301321,"Kerbal Space Program",play,48.0,0 -22301321,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -22301321,"Plants vs. Zombies Game of the Year",play,36.0,0 -22301321,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -22301321,"Call of Duty Modern Warfare 2 - Multiplayer",play,35.0,0 -22301321,"Saints Row The Third",purchase,1.0,0 -22301321,"Saints Row The Third",play,31.0,0 -22301321,"PAYDAY 2",purchase,1.0,0 -22301321,"PAYDAY 2",play,31.0,0 -22301321,"Team Fortress 2",purchase,1.0,0 -22301321,"Team Fortress 2",play,28.0,0 -22301321,"R.U.S.E",purchase,1.0,0 -22301321,"R.U.S.E",play,20.0,0 -22301321,"Dungeon Defenders II",purchase,1.0,0 -22301321,"Dungeon Defenders II",play,19.1,0 -22301321,"Dead Island",purchase,1.0,0 -22301321,"Dead Island",play,18.7,0 -22301321,"Borderlands The Pre-Sequel",purchase,1.0,0 -22301321,"Borderlands The Pre-Sequel",play,18.5,0 -22301321,"Killing Floor",purchase,1.0,0 -22301321,"Killing Floor",play,17.1,0 -22301321,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -22301321,"Medal of Honor(TM) Multiplayer",play,16.8,0 -22301321,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -22301321,"Warhammer 40,000 Dawn of War II",play,15.3,0 -22301321,"Peggle Extreme",purchase,1.0,0 -22301321,"Peggle Extreme",play,13.5,0 -22301321,"Homefront",purchase,1.0,0 -22301321,"Homefront",play,12.8,0 -22301321,"Revenge of the Titans",purchase,1.0,0 -22301321,"Revenge of the Titans",play,12.6,0 -22301321,"Mafia II",purchase,1.0,0 -22301321,"Mafia II",play,12.1,0 -22301321,"The Settlers 7 Paths to a Kingdom",purchase,1.0,0 -22301321,"The Settlers 7 Paths to a Kingdom",play,11.9,0 -22301321,"Mass Effect",purchase,1.0,0 -22301321,"Mass Effect",play,11.8,0 -22301321,"Left 4 Dead 2",purchase,1.0,0 -22301321,"Left 4 Dead 2",play,11.6,0 -22301321,"BRINK",purchase,1.0,0 -22301321,"BRINK",play,11.2,0 -22301321,"Offworld Trading Company",purchase,1.0,0 -22301321,"Offworld Trading Company",play,11.2,0 -22301321,"Game Dev Tycoon",purchase,1.0,0 -22301321,"Game Dev Tycoon",play,10.4,0 -22301321,"Shoot Many Robots",purchase,1.0,0 -22301321,"Shoot Many Robots",play,10.1,0 -22301321,"Killing Floor 2",purchase,1.0,0 -22301321,"Killing Floor 2",play,9.8,0 -22301321,"Call of Duty Black Ops",purchase,1.0,0 -22301321,"Call of Duty Black Ops",play,9.3,0 -22301321,"Dungeon Defenders Eternity",purchase,1.0,0 -22301321,"Dungeon Defenders Eternity",play,9.2,0 -22301321,"Defense Grid The Awakening",purchase,1.0,0 -22301321,"Defense Grid The Awakening",play,8.8,0 -22301321,"Deus Ex Human Revolution",purchase,1.0,0 -22301321,"Deus Ex Human Revolution",play,8.5,0 -22301321,"Recettear An Item Shop's Tale",purchase,1.0,0 -22301321,"Recettear An Item Shop's Tale",play,8.4,0 -22301321,"Left 4 Dead",purchase,1.0,0 -22301321,"Left 4 Dead",play,8.2,0 -22301321,"RAGE",purchase,1.0,0 -22301321,"RAGE",play,7.1,0 -22301321,"Obulis",purchase,1.0,0 -22301321,"Obulis",play,6.8,0 -22301321,"XCOM Enemy Unknown",purchase,1.0,0 -22301321,"XCOM Enemy Unknown",play,6.2,0 -22301321,"PAYDAY The Heist",purchase,1.0,0 -22301321,"PAYDAY The Heist",play,6.2,0 -22301321,"Orcs Must Die!",purchase,1.0,0 -22301321,"Orcs Must Die!",play,6.1,0 -22301321,"World of Goo",purchase,1.0,0 -22301321,"World of Goo",play,6.1,0 -22301321,"Test Drive Unlimited 2",purchase,1.0,0 -22301321,"Test Drive Unlimited 2",play,5.8,0 -22301321,"Arma 2 Operation Arrowhead",purchase,1.0,0 -22301321,"Arma 2 Operation Arrowhead",play,5.4,0 -22301321,"Command and Conquer 4 Tiberian Twilight",purchase,1.0,0 -22301321,"Command and Conquer 4 Tiberian Twilight",play,5.1,0 -22301321,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -22301321,"Resident Evil 5 / Biohazard 5",play,4.7,0 -22301321,"Dead Island Riptide",purchase,1.0,0 -22301321,"Dead Island Riptide",play,4.6,0 -22301321,"Cities in Motion",purchase,1.0,0 -22301321,"Cities in Motion",play,4.5,0 -22301321,"Company of Heroes 2",purchase,1.0,0 -22301321,"Company of Heroes 2",play,4.3,0 -22301321,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -22301321,"Red Faction Guerrilla Steam Edition",play,4.1,0 -22301321,"Titan Attacks",purchase,1.0,0 -22301321,"Titan Attacks",play,3.6,0 -22301321,"Saints Row IV",purchase,1.0,0 -22301321,"Saints Row IV",play,3.5,0 -22301321,"Puzzle Agent 2",purchase,1.0,0 -22301321,"Puzzle Agent 2",play,3.5,0 -22301321,"State of Decay",purchase,1.0,0 -22301321,"State of Decay",play,3.4,0 -22301321,"Sanctum",purchase,1.0,0 -22301321,"Sanctum",play,3.3,0 -22301321,"Harvest Massive Encounter",purchase,1.0,0 -22301321,"Harvest Massive Encounter",play,3.3,0 -22301321,"Octodad Dadliest Catch",purchase,1.0,0 -22301321,"Octodad Dadliest Catch",play,3.2,0 -22301321,"Braid",purchase,1.0,0 -22301321,"Braid",play,3.2,0 -22301321,"Metro 2033",purchase,1.0,0 -22301321,"Metro 2033",play,3.1,0 -22301321,"Bulletstorm",purchase,1.0,0 -22301321,"Bulletstorm",play,3.1,0 -22301321,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -22301321,"Tropico 3 - Steam Special Edition",play,3.1,0 -22301321,"Evolve",purchase,1.0,0 -22301321,"Evolve",play,2.7,0 -22301321,"Puzzle Agent",purchase,1.0,0 -22301321,"Puzzle Agent",play,2.6,0 -22301321,"Sam & Max 101 Culture Shock",purchase,1.0,0 -22301321,"Sam & Max 101 Culture Shock",play,2.6,0 -22301321,"Empire Total War",purchase,1.0,0 -22301321,"Empire Total War",play,2.5,0 -22301321,"Counter-Strike Global Offensive",purchase,1.0,0 -22301321,"Counter-Strike Global Offensive",play,2.5,0 -22301321,"Aliens Colonial Marines",purchase,1.0,0 -22301321,"Aliens Colonial Marines",play,2.5,0 -22301321,"Nation Red",purchase,1.0,0 -22301321,"Nation Red",play,2.4,0 -22301321,"OTTTD",purchase,1.0,0 -22301321,"OTTTD",play,2.3,0 -22301321,"The Walking Dead",purchase,1.0,0 -22301321,"The Walking Dead",play,2.3,0 -22301321,"Sniper Elite V2",purchase,1.0,0 -22301321,"Sniper Elite V2",play,2.1,0 -22301321,"Aliens vs. Predator",purchase,1.0,0 -22301321,"Aliens vs. Predator",play,2.1,0 -22301321,"Alien Swarm",purchase,1.0,0 -22301321,"Alien Swarm",play,2.1,0 -22301321,"Poker Night at the Inventory",purchase,1.0,0 -22301321,"Poker Night at the Inventory",play,2.1,0 -22301321,"Swords and Soldiers HD",purchase,1.0,0 -22301321,"Swords and Soldiers HD",play,2.1,0 -22301321,"PlanetSide 2",purchase,1.0,0 -22301321,"PlanetSide 2",play,2.1,0 -22301321,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -22301321,"S.T.A.L.K.E.R. Clear Sky",play,2.0,0 -22301321,"Space Trader Merchant Marine",purchase,1.0,0 -22301321,"Space Trader Merchant Marine",play,2.0,0 -22301321,"Grand Theft Auto V",purchase,1.0,0 -22301321,"Grand Theft Auto V",play,2.0,0 -22301321,"Greed Corp",purchase,1.0,0 -22301321,"Greed Corp",play,2.0,0 -22301321,"Garry's Mod",purchase,1.0,0 -22301321,"Garry's Mod",play,1.9,0 -22301321,"Bloons TD5",purchase,1.0,0 -22301321,"Bloons TD5",play,1.9,0 -22301321,"Counter-Strike Source",purchase,1.0,0 -22301321,"Counter-Strike Source",play,1.8,0 -22301321,"Tropico 4",purchase,1.0,0 -22301321,"Tropico 4",play,1.8,0 -22301321,"Gratuitous Space Battles",purchase,1.0,0 -22301321,"Gratuitous Space Battles",play,1.8,0 -22301321,"Renegade Ops",purchase,1.0,0 -22301321,"Renegade Ops",play,1.8,0 -22301321,"Bejeweled 3",purchase,1.0,0 -22301321,"Bejeweled 3",play,1.7,0 -22301321,"Papers, Please",purchase,1.0,0 -22301321,"Papers, Please",play,1.7,0 -22301321,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -22301321,"Unreal Tournament 3 Black Edition",play,1.6,0 -22301321,"Machinarium",purchase,1.0,0 -22301321,"Machinarium",play,1.6,0 -22301321,"Portal",purchase,1.0,0 -22301321,"Portal",play,1.6,0 -22301321,"Homeworld Remastered Collection",purchase,1.0,0 -22301321,"Homeworld Remastered Collection",play,1.5,0 -22301321,"South Park The Stick of Truth",purchase,1.0,0 -22301321,"South Park The Stick of Truth",play,1.5,0 -22301321,"Ace of Spades",purchase,1.0,0 -22301321,"Ace of Spades",play,1.5,0 -22301321,"Torchlight",purchase,1.0,0 -22301321,"Torchlight",play,1.4,0 -22301321,"Universe Sandbox",purchase,1.0,0 -22301321,"Universe Sandbox",play,1.4,0 -22301321,"Flight Control HD",purchase,1.0,0 -22301321,"Flight Control HD",play,1.3,0 -22301321,"Arma 2 Private Military Company",purchase,1.0,0 -22301321,"Arma 2 Private Military Company",play,1.3,0 -22301321,"Universe at War Earth Assault",purchase,1.0,0 -22301321,"Universe at War Earth Assault",play,1.3,0 -22301321,"Primal Carnage",purchase,1.0,0 -22301321,"Primal Carnage",play,1.3,0 -22301321,"Dragon Age Origins",purchase,1.0,0 -22301321,"Dragon Age Origins",play,1.3,0 -22301321,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -22301321,"Operation Flashpoint Dragon Rising",play,1.3,0 -22301321,"Demigod",purchase,1.0,0 -22301321,"Demigod",play,1.2,0 -22301321,"Medal of Honor(TM) Single Player",purchase,1.0,0 -22301321,"Medal of Honor(TM) Single Player",play,1.2,0 -22301321,"Besiege",purchase,1.0,0 -22301321,"Besiege",play,1.2,0 -22301321,"Tower Wars",purchase,1.0,0 -22301321,"Tower Wars",play,1.2,0 -22301321,"Saints Row 2",purchase,1.0,0 -22301321,"Saints Row 2",play,1.2,0 -22301321,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -22301321,"Fallout 3 - Game of the Year Edition",play,1.2,0 -22301321,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -22301321,"Burnout Paradise The Ultimate Box",play,1.2,0 -22301321,"Elite Dangerous",purchase,1.0,0 -22301321,"Elite Dangerous",play,1.1,0 -22301321,"Arma 3",purchase,1.0,0 -22301321,"Arma 3",play,1.1,0 -22301321,"Overlord II",purchase,1.0,0 -22301321,"Overlord II",play,1.1,0 -22301321,"Shadowgrounds Survivor",purchase,1.0,0 -22301321,"Shadowgrounds Survivor",play,1.1,0 -22301321,"Sanctum 2",purchase,1.0,0 -22301321,"Sanctum 2",play,1.1,0 -22301321,"Anomaly Warzone Earth",purchase,1.0,0 -22301321,"Anomaly Warzone Earth",play,1.1,0 -22301321,"Monaco",purchase,1.0,0 -22301321,"Monaco",play,1.0,0 -22301321,"Hotline Miami",purchase,1.0,0 -22301321,"Hotline Miami",play,1.0,0 -22301321,"Sniper Elite Nazi Zombie Army",purchase,1.0,0 -22301321,"Sniper Elite Nazi Zombie Army",play,1.0,0 -22301321,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -22301321,"Star Wars The Force Unleashed Ultimate Sith Edition",play,1.0,0 -22301321,"Warhammer 40,000 Space Marine",purchase,1.0,0 -22301321,"Warhammer 40,000 Space Marine",play,0.9,0 -22301321,"Dear Esther",purchase,1.0,0 -22301321,"Dear Esther",play,0.9,0 -22301321,"Monday Night Combat",purchase,1.0,0 -22301321,"Monday Night Combat",play,0.9,0 -22301321,"Planetary Annihilation",purchase,1.0,0 -22301321,"Planetary Annihilation",play,0.9,0 -22301321,"ORION Prelude",purchase,1.0,0 -22301321,"ORION Prelude",play,0.9,0 -22301321,"Sniper Ghost Warrior",purchase,1.0,0 -22301321,"Sniper Ghost Warrior",play,0.9,0 -22301321,"Half-Life 2",purchase,1.0,0 -22301321,"Half-Life 2",play,0.9,0 -22301321,"Take On Helicopters",purchase,1.0,0 -22301321,"Take On Helicopters",play,0.8,0 -22301321,"Big Brain Wolf",purchase,1.0,0 -22301321,"Big Brain Wolf",play,0.8,0 -22301321,"Zombie Army Trilogy",purchase,1.0,0 -22301321,"Zombie Army Trilogy",play,0.8,0 -22301321,"Just Cause 2",purchase,1.0,0 -22301321,"Just Cause 2",play,0.8,0 -22301321,"Crysis",purchase,1.0,0 -22301321,"Crysis",play,0.8,0 -22301321,"Space Pirates and Zombies",purchase,1.0,0 -22301321,"Space Pirates and Zombies",play,0.8,0 -22301321,"Hector Ep 1",purchase,1.0,0 -22301321,"Hector Ep 1",play,0.8,0 -22301321,"Sang-Froid - Tales of Werewolves",purchase,1.0,0 -22301321,"Sang-Froid - Tales of Werewolves",play,0.8,0 -22301321,"Railroad Tycoon 3",purchase,1.0,0 -22301321,"Railroad Tycoon 3",play,0.8,0 -22301321,"Tank Universal",purchase,1.0,0 -22301321,"Tank Universal",play,0.8,0 -22301321,"Natural Selection 2",purchase,1.0,0 -22301321,"Natural Selection 2",play,0.7,0 -22301321,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",purchase,1.0,0 -22301321,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",play,0.7,0 -22301321,"Homebrew - Vehicle Sandbox",purchase,1.0,0 -22301321,"Homebrew - Vehicle Sandbox",play,0.7,0 -22301321,"Mensa Academy",purchase,1.0,0 -22301321,"Mensa Academy",play,0.7,0 -22301321,"Insurgency",purchase,1.0,0 -22301321,"Insurgency",play,0.7,0 -22301321,"Zombie Driver",purchase,1.0,0 -22301321,"Zombie Driver",play,0.6,0 -22301321,"Zen Bound 2",purchase,1.0,0 -22301321,"Zen Bound 2",play,0.6,0 -22301321,"Men of War",purchase,1.0,0 -22301321,"Men of War",play,0.6,0 -22301321,"7 Days to Die",purchase,1.0,0 -22301321,"7 Days to Die",play,0.6,0 -22301321,"Darwinia",purchase,1.0,0 -22301321,"Darwinia",play,0.6,0 -22301321,"The Jackbox Party Pack",purchase,1.0,0 -22301321,"The Jackbox Party Pack",play,0.6,0 -22301321,"Call of Juarez Bound in Blood",purchase,1.0,0 -22301321,"Call of Juarez Bound in Blood",play,0.6,0 -22301321,"Sol Survivor",purchase,1.0,0 -22301321,"Sol Survivor",play,0.6,0 -22301321,"Fallout New Vegas",purchase,1.0,0 -22301321,"Fallout New Vegas",play,0.5,0 -22301321,"Wolfenstein The New Order",purchase,1.0,0 -22301321,"Wolfenstein The New Order",play,0.5,0 -22301321,"Frontlines Fuel of War",purchase,1.0,0 -22301321,"Frontlines Fuel of War",play,0.5,0 -22301321,"Far Cry 2",purchase,1.0,0 -22301321,"Far Cry 2",play,0.5,0 -22301321,"Trine",purchase,1.0,0 -22301321,"Trine",play,0.5,0 -22301321,"From Dust",purchase,1.0,0 -22301321,"From Dust",play,0.5,0 -22301321,"Cogs",purchase,1.0,0 -22301321,"Cogs",play,0.5,0 -22301321,"Sir, You Are Being Hunted",purchase,1.0,0 -22301321,"Sir, You Are Being Hunted",play,0.5,0 -22301321,"Hammerfight",purchase,1.0,0 -22301321,"Hammerfight",play,0.5,0 -22301321,"Larva Mortus",purchase,1.0,0 -22301321,"Larva Mortus",play,0.4,0 -22301321,"StarForge",purchase,1.0,0 -22301321,"StarForge",play,0.4,0 -22301321,"Wargame AirLand Battle",purchase,1.0,0 -22301321,"Wargame AirLand Battle",play,0.4,0 -22301321,"Brothers in Arms Hell's Highway",purchase,1.0,0 -22301321,"Brothers in Arms Hell's Highway",play,0.4,0 -22301321,"Hydrophobia Prophecy",purchase,1.0,0 -22301321,"Hydrophobia Prophecy",play,0.4,0 -22301321,"Hacker Evolution",purchase,1.0,0 -22301321,"Hacker Evolution",play,0.4,0 -22301321,"Space Engineers",purchase,1.0,0 -22301321,"Space Engineers",play,0.4,0 -22301321,"Foreign Legion Buckets of Blood",purchase,1.0,0 -22301321,"Foreign Legion Buckets of Blood",play,0.4,0 -22301321,"SimCity 4 Deluxe",purchase,1.0,0 -22301321,"SimCity 4 Deluxe",play,0.4,0 -22301321,"DOOM 3",purchase,1.0,0 -22301321,"DOOM 3",play,0.4,0 -22301321,"Stormrise",purchase,1.0,0 -22301321,"Stormrise",play,0.4,0 -22301321,"The Typing of The Dead Overkill",purchase,1.0,0 -22301321,"The Typing of The Dead Overkill",play,0.4,0 -22301321,"Orcs Must Die! 2",purchase,1.0,0 -22301321,"Orcs Must Die! 2",play,0.4,0 -22301321,"Plain Sight",purchase,1.0,0 -22301321,"Plain Sight",play,0.4,0 -22301321,"Alpha Prime",purchase,1.0,0 -22301321,"Alpha Prime",play,0.4,0 -22301321,"3DMark",purchase,1.0,0 -22301321,"3DMark",play,0.3,0 -22301321,"Chime",purchase,1.0,0 -22301321,"Chime",play,0.3,0 -22301321,"Full Spectrum Warrior",purchase,1.0,0 -22301321,"Full Spectrum Warrior",play,0.3,0 -22301321,"The Misadventures of P.B. Winterbottom",purchase,1.0,0 -22301321,"The Misadventures of P.B. Winterbottom",play,0.3,0 -22301321,"Bridge Project",purchase,1.0,0 -22301321,"Bridge Project",play,0.3,0 -22301321,"Dragon's Lair",purchase,1.0,0 -22301321,"Dragon's Lair",play,0.3,0 -22301321,"Puzzle Bots",purchase,1.0,0 -22301321,"Puzzle Bots",play,0.3,0 -22301321,"Arma 2 British Armed Forces",purchase,1.0,0 -22301321,"Arma 2 British Armed Forces",play,0.3,0 -22301321,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -22301321,"S.T.A.L.K.E.R. Call of Pripyat",play,0.3,0 -22301321,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -22301321,"Galactic Civilizations II Ultimate Edition",play,0.3,0 -22301321,"Post Apocalyptic Mayhem",purchase,1.0,0 -22301321,"Post Apocalyptic Mayhem",play,0.2,0 -22301321,"Damnation",purchase,1.0,0 -22301321,"Damnation",play,0.2,0 -22301321,"The Ship Single Player",purchase,1.0,0 -22301321,"The Ship Single Player",play,0.2,0 -22301321,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -22301321,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.2,0 -22301321,"Bastion",purchase,1.0,0 -22301321,"Bastion",play,0.2,0 -22301321,"Source Filmmaker",purchase,1.0,0 -22301321,"Source Filmmaker",play,0.2,0 -22301321,"Shattered Horizon",purchase,1.0,0 -22301321,"Shattered Horizon",play,0.2,0 -22301321,"Droplitz",purchase,1.0,0 -22301321,"Droplitz",play,0.2,0 -22301321,"Tidalis",purchase,1.0,0 -22301321,"Tidalis",play,0.2,0 -22301321,"RIP 3 The Last Hero",purchase,1.0,0 -22301321,"RIP 3 The Last Hero",play,0.2,0 -22301321,"Super Meat Boy",purchase,1.0,0 -22301321,"Super Meat Boy",play,0.2,0 -22301321,"Contagion",purchase,1.0,0 -22301321,"Contagion",play,0.1,0 -22301321,"Section 8 Prejudice",purchase,1.0,0 -22301321,"Section 8 Prejudice",play,0.1,0 -22301321,"Sam & Max 102 Situation Comedy",purchase,1.0,0 -22301321,"Sam & Max 102 Situation Comedy",play,0.1,0 -22301321,"Company of Heroes Tales of Valor",purchase,1.0,0 -22301321,"Company of Heroes Tales of Valor",play,0.1,0 -22301321,"Diamond Dan",purchase,1.0,0 -22301321,"Diamond Dan",play,0.1,0 -22301321,"Portal 2",purchase,1.0,0 -22301321,"Portal 2",play,0.1,0 -22301321,"Cities XL Platinum",purchase,1.0,0 -22301321,"Cities XL Platinum",play,0.1,0 -22301321,"Chains",purchase,1.0,0 -22301321,"Chains",play,0.1,0 -22301321,"Crash Time II",purchase,1.0,0 -22301321,"Crash Time II",play,0.1,0 -22301321,"Mr. Robot",purchase,1.0,0 -22301321,"Mr. Robot",play,0.1,0 -22301321,"Minimum",purchase,1.0,0 -22301321,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -22301321,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -22301321,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",purchase,1.0,0 -22301321,"TrackMania Stadium",purchase,1.0,0 -22301321,"Gumboy Crazy Adventures",purchase,1.0,0 -22301321,"Surgeon Simulator",purchase,1.0,0 -22301321,"Puzzle Dimension",purchase,1.0,0 -22301321,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -22301321,"State of Decay Year-One",purchase,1.0,0 -22301321,"X-COM UFO Defense",purchase,1.0,0 -22301321,"Penguins Arena Sedna's World",purchase,1.0,0 -22301321,"Vigil Blood Bitterness",purchase,1.0,0 -22301321,"Crazy Machines 2",purchase,1.0,0 -22301321,"Half-Life 2 Episode Two",purchase,1.0,0 -22301321,"Half-Life 2 Lost Coast",purchase,1.0,0 -22301321,"X-COM Terror from the Deep",purchase,1.0,0 -22301321,"Arma 2",purchase,1.0,0 -22301321,"Quake III Arena",purchase,1.0,0 -22301321,"The Ship",purchase,1.0,0 -22301321,"Evil Genius",purchase,1.0,0 -22301321,"3DMark API Overhead feature test",purchase,1.0,0 -22301321,"3DMark Cloud Gate benchmark",purchase,1.0,0 -22301321,"3DMark Fire Strike benchmark",purchase,1.0,0 -22301321,"3DMark Ice Storm benchmark",purchase,1.0,0 -22301321,"3DMark Sky Diver benchmark",purchase,1.0,0 -22301321,"Abyss Odyssey",purchase,1.0,0 -22301321,"Aces Wild Manic Brawling Action!",purchase,1.0,0 -22301321,"A Druid's Duel",purchase,1.0,0 -22301321,"Alan Wake",purchase,1.0,0 -22301321,"Alan Wake's American Nightmare",purchase,1.0,0 -22301321,"Alien Isolation",purchase,1.0,0 -22301321,"Alien Breed 2 Assault",purchase,1.0,0 -22301321,"Alien Breed 3 Descent",purchase,1.0,0 -22301321,"Alien Breed Impact",purchase,1.0,0 -22301321,"Always Sometimes Monsters",purchase,1.0,0 -22301321,"Amnesia The Dark Descent",purchase,1.0,0 -22301321,"And Yet It Moves",purchase,1.0,0 -22301321,"Anna - Extended Edition",purchase,1.0,0 -22301321,"Antichamber",purchase,1.0,0 -22301321,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -22301321,"Arma 3 Zeus",purchase,1.0,0 -22301321,"Awesomenauts",purchase,1.0,0 -22301321,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -22301321,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -22301321,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -22301321,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -22301321,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -22301321,"Batman Arkham City GOTY",purchase,1.0,0 -22301321,"BattleBlock Theater",purchase,1.0,0 -22301321,"Battlefield 2",purchase,1.0,0 -22301321,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -22301321,"Betrayer",purchase,1.0,0 -22301321,"BioShock",purchase,1.0,0 -22301321,"BioShock 2",purchase,1.0,0 -22301321,"BioShock Infinite",purchase,1.0,0 -22301321,"Blackguards",purchase,1.0,0 -22301321,"Blackguards 2",purchase,1.0,0 -22301321,"Blackwell Epiphany",purchase,1.0,0 -22301321,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -22301321,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -22301321,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -22301321,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -22301321,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -22301321,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -22301321,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -22301321,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -22301321,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -22301321,"Broken Sword 1 - Shadow of the Templars Director's Cut",purchase,1.0,0 -22301321,"Broken Sword 2 - the Smoking Mirror Remastered",purchase,1.0,0 -22301321,"Broken Sword 3 - the Sleeping Dragon",purchase,1.0,0 -22301321,"Broken Sword 5 - the Serpent's Curse",purchase,1.0,0 -22301321,"Brothers in Arms Earned in Blood",purchase,1.0,0 -22301321,"Brothers in Arms Road to Hill 30",purchase,1.0,0 -22301321,"Bully Scholarship Edition",purchase,1.0,0 -22301321,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -22301321,"Call of Duty Modern Warfare 2",purchase,1.0,0 -22301321,"Capsized",purchase,1.0,0 -22301321,"Castle Crashers",purchase,1.0,0 -22301321,"Cave Story+",purchase,1.0,0 -22301321,"Commander Keen Complete Pack",purchase,1.0,0 -22301321,"Company of Heroes",purchase,1.0,0 -22301321,"Company of Heroes (New Steam Version)",purchase,1.0,0 -22301321,"Company of Heroes Opposing Fronts",purchase,1.0,0 -22301321,"Crow - Hunter (Trapper Class)",purchase,1.0,0 -22301321,"Crusader Kings II",purchase,1.0,0 -22301321,"Crysis 2 Maximum Edition",purchase,1.0,0 -22301321,"Crysis Warhead",purchase,1.0,0 -22301321,"Crysis Wars",purchase,1.0,0 -22301321,"Cthulhu Saves the World ",purchase,1.0,0 -22301321,"Day of Defeat Source",purchase,1.0,0 -22301321,"Dead Island Epidemic",purchase,1.0,0 -22301321,"Deadlight",purchase,1.0,0 -22301321,"Deadlight Original Soundtrack",purchase,1.0,0 -22301321,"Dead Space",purchase,1.0,0 -22301321,"Dead Space 2",purchase,1.0,0 -22301321,"DEFCON",purchase,1.0,0 -22301321,"Defense Grid 2",purchase,1.0,0 -22301321,"Defense Grid Resurgence Map Pack 1",purchase,1.0,0 -22301321,"Defense Grid Resurgence Map Pack 2 ",purchase,1.0,0 -22301321,"Defense Grid Resurgence Map Pack 3",purchase,1.0,0 -22301321,"Defense Grid Resurgence Map Pack 4",purchase,1.0,0 -22301321,"Deus Ex Game of the Year Edition",purchase,1.0,0 -22301321,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -22301321,"Deus Ex Invisible War",purchase,1.0,0 -22301321,"Dishonored",purchase,1.0,0 -22301321,"Divinity Dragon Commander",purchase,1.0,0 -22301321,"DOOM 3 Resurrection of Evil",purchase,1.0,0 -22301321,"DOOM II Hell on Earth",purchase,1.0,0 -22301321,"Door Kickers",purchase,1.0,0 -22301321,"Dust An Elysian Tail",purchase,1.0,0 -22301321,"Dustforce",purchase,1.0,0 -22301321,"Element4l",purchase,1.0,0 -22301321,"English Country Tune",purchase,1.0,0 -22301321,"Euro Truck Simulator 2",purchase,1.0,0 -22301321,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -22301321,"Evolve - Behemoth",purchase,1.0,0 -22301321,"F1 2012",purchase,1.0,0 -22301321,"Fallout New Vegas Dead Money",purchase,1.0,0 -22301321,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -22301321,"Far Cry",purchase,1.0,0 -22301321,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -22301321,"Far Cry 3",purchase,1.0,0 -22301321,"Far Cry 3 Blood Dragon",purchase,1.0,0 -22301321,"FEZ",purchase,1.0,0 -22301321,"Final DOOM",purchase,1.0,0 -22301321,"Five Nights at Freddy's",purchase,1.0,0 -22301321,"Full Mojo Rampage",purchase,1.0,0 -22301321,"Full Spectrum Warrior Ten Hammers",purchase,1.0,0 -22301321,"Ghostbusters The Video Game",purchase,1.0,0 -22301321,"Giana Sisters Twisted Dreams",purchase,1.0,0 -22301321,"Gish",purchase,1.0,0 -22301321,"Gods Will Be Watching",purchase,1.0,0 -22301321,"Gone Home",purchase,1.0,0 -22301321,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -22301321,"Grand Theft Auto IV",purchase,1.0,0 -22301321,"GRID",purchase,1.0,0 -22301321,"GRID 2",purchase,1.0,0 -22301321,"Guacamelee! Gold Edition",purchase,1.0,0 -22301321,"Gumboy Crazy Features",purchase,1.0,0 -22301321,"Half-Life 2 Deathmatch",purchase,1.0,0 -22301321,"Half-Life 2 Episode One",purchase,1.0,0 -22301321,"Halo Spartan Assault",purchase,1.0,0 -22301321,"Hand Of Fate",purchase,1.0,0 -22301321,"Hard Reset",purchase,1.0,0 -22301321,"Hard Reset Exile DLC",purchase,1.0,0 -22301321,"Heretic Shadow of the Serpent Riders",purchase,1.0,0 -22301321,"HeXen Beyond Heretic",purchase,1.0,0 -22301321,"HeXen Deathkings of the Dark Citadel",purchase,1.0,0 -22301321,"HeXen II",purchase,1.0,0 -22301321,"Hitman 2 Silent Assassin",purchase,1.0,0 -22301321,"Home",purchase,1.0,0 -22301321,"How to Survive",purchase,1.0,0 -22301321,"Infested Planet",purchase,1.0,0 -22301321,"Interstellar Marines",purchase,1.0,0 -22301321,"Intrusion 2",purchase,1.0,0 -22301321,"Jagged Alliance - Back in Action",purchase,1.0,0 -22301321,"Jolly Rover",purchase,1.0,0 -22301321,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -22301321,"KickBeat Steam Edition",purchase,1.0,0 -22301321,"Knock-knock",purchase,1.0,0 -22301321,"L.A. Noire",purchase,1.0,0 -22301321,"Lara Croft and the Guardian of Light",purchase,1.0,0 -22301321,"Legend of Dungeon",purchase,1.0,0 -22301321,"Legend of Grimrock",purchase,1.0,0 -22301321,"LEGO Batman 2",purchase,1.0,0 -22301321,"LEGO Batman The Videogame",purchase,1.0,0 -22301321,"Lego Harry Potter",purchase,1.0,0 -22301321,"LEGO Harry Potter Years 5-7",purchase,1.0,0 -22301321,"Lego Indiana Jones 2",purchase,1.0,0 -22301321,"LEGO Batman 3 Beyond Gotham",purchase,1.0,0 -22301321,"LEGO MARVEL Super Heroes",purchase,1.0,0 -22301321,"LEGO Pirates of the Caribbean The Video Game",purchase,1.0,0 -22301321,"LEGO The Hobbit",purchase,1.0,0 -22301321,"LEGO The Lord of the Rings",purchase,1.0,0 -22301321,"LEGO Indiana Jones The Original Adventures",purchase,1.0,0 -22301321,"LIMBO",purchase,1.0,0 -22301321,"Little Inferno",purchase,1.0,0 -22301321,"Lone Survivor The Director's Cut",purchase,1.0,0 -22301321,"Mark of the Ninja",purchase,1.0,0 -22301321,"Mass Effect 2",purchase,1.0,0 -22301321,"Master Levels for DOOM II",purchase,1.0,0 -22301321,"Max Payne 3",purchase,1.0,0 -22301321,"Max Payne 3 Season Pass",purchase,1.0,0 -22301321,"Medal of Honor Pre-Order",purchase,1.0,0 -22301321,"Medieval II Total War",purchase,1.0,0 -22301321,"Medieval II Total War Kingdoms",purchase,1.0,0 -22301321,"Men of War Red Tide",purchase,1.0,0 -22301321,"Metro 2033 Redux",purchase,1.0,0 -22301321,"Metro Last Light",purchase,1.0,0 -22301321,"Metro Last Light Redux",purchase,1.0,0 -22301321,"Metrocide",purchase,1.0,0 -22301321,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -22301321,"Mirror's Edge",purchase,1.0,0 -22301321,"Multiwinia",purchase,1.0,0 -22301321,"Mutant Mudds Deluxe",purchase,1.0,0 -22301321,"Need for Speed Hot Pursuit",purchase,1.0,0 -22301321,"Nikopol Secrets of the Immortals",purchase,1.0,0 -22301321,"Oil Rush",purchase,1.0,0 -22301321,"Omerta - City of Gangsters",purchase,1.0,0 -22301321,"Oscura Lost Light",purchase,1.0,0 -22301321,"Our Darker Purpose",purchase,1.0,0 -22301321,"Overlord",purchase,1.0,0 -22301321,"Overlord Raising Hell",purchase,1.0,0 -22301321,"Pacific Storm",purchase,1.0,0 -22301321,"Pacific Storm Allies",purchase,1.0,0 -22301321,"Particulars",purchase,1.0,0 -22301321,"PAYDAY Wolf Pack",purchase,1.0,0 -22301321,"Pinball FX2",purchase,1.0,0 -22301321,"Pinball FX2 - Paranormal Table",purchase,1.0,0 -22301321,"PixelJunk Eden",purchase,1.0,0 -22301321,"Pixel Piracy",purchase,1.0,0 -22301321,"Poker Night 2",purchase,1.0,0 -22301321,"Prison Architect",purchase,1.0,0 -22301321,"Proteus",purchase,1.0,0 -22301321,"Quake",purchase,1.0,0 -22301321,"Quake II",purchase,1.0,0 -22301321,"Quake II Ground Zero",purchase,1.0,0 -22301321,"Quake II The Reckoning",purchase,1.0,0 -22301321,"Quake III Team Arena",purchase,1.0,0 -22301321,"Quake Mission Pack 1 Scourge of Armagon",purchase,1.0,0 -22301321,"Quake Mission Pack 2 Dissolution of Eternity",purchase,1.0,0 -22301321,"R.U.S.E.",purchase,1.0,0 -22301321,"Ravaged Zombie Apocalypse",purchase,1.0,0 -22301321,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -22301321,"Resident Evil 6 Mercenaries No Mercy",purchase,1.0,0 -22301321,"Retro City Rampage DX",purchase,1.0,0 -22301321,"Return to Castle Wolfenstein",purchase,1.0,0 -22301321,"Reus",purchase,1.0,0 -22301321,"RIP",purchase,1.0,0 -22301321,"RIP 2 Strike Back",purchase,1.0,0 -22301321,"Risen",purchase,1.0,0 -22301321,"Risen 2 - Dark Waters",purchase,1.0,0 -22301321,"Risk of Rain",purchase,1.0,0 -22301321,"Robocraft",purchase,1.0,0 -22301321,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -22301321,"Rome Total War",purchase,1.0,0 -22301321,"Rome Total War - Alexander",purchase,1.0,0 -22301321,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -22301321,"Sacred 2 Gold",purchase,1.0,0 -22301321,"Sacred Citadel",purchase,1.0,0 -22301321,"Sam & Max 103 The Mole, the Mob and the Meatball",purchase,1.0,0 -22301321,"Sam & Max 105 Reality 2.0",purchase,1.0,0 -22301321,"Sam & Max 106 Bright Side of the Moon",purchase,1.0,0 -22301321,"Sam & Max 201 Ice Station Santa",purchase,1.0,0 -22301321,"Sam & Max 202 Moai Better Blues",purchase,1.0,0 -22301321,"Sam & Max 203 Night of the Raving Dead",purchase,1.0,0 -22301321,"Sam & Max 204 Chariots of the Dogs",purchase,1.0,0 -22301321,"Sam & Max 205 What's New Beelzebub?",purchase,1.0,0 -22301321,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -22301321,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -22301321,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -22301321,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -22301321,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -22301321,"Screencheat",purchase,1.0,0 -22301321,"Secret Files Tunguska",purchase,1.0,0 -22301321,"Section 8",purchase,1.0,0 -22301321,"Serious Sam Classic The First Encounter",purchase,1.0,0 -22301321,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -22301321,"Serious Sam Classics Revolution",purchase,1.0,0 -22301321,"Serious Sam HD The First Encounter",purchase,1.0,0 -22301321,"Shadowgrounds",purchase,1.0,0 -22301321,"Shatter",purchase,1.0,0 -22301321,"ShootMania Storm",purchase,1.0,0 -22301321,"Sid Meier's Civilization IV",purchase,1.0,0 -22301321,"Sid Meier's Civilization IV",purchase,1.0,0 -22301321,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -22301321,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -22301321,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -22301321,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -22301321,"Sine Mora",purchase,1.0,0 -22301321,"Singularity",purchase,1.0,0 -22301321,"SkyDrift",purchase,1.0,0 -22301321,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -22301321,"Slim - Hunter (Medic Class)",purchase,1.0,0 -22301321,"Sniper Elite",purchase,1.0,0 -22301321,"Sniper Elite Nazi Zombie Army 2",purchase,1.0,0 -22301321,"Solar 2",purchase,1.0,0 -22301321,"Space Hulk",purchase,1.0,0 -22301321,"Spintires",purchase,1.0,0 -22301321,"Spiral Knights",purchase,1.0,0 -22301321,"Stacking",purchase,1.0,0 -22301321,"Star Ruler",purchase,1.0,0 -22301321,"Starseed Pilgrim",purchase,1.0,0 -22301321,"State of Decay - Breakdown",purchase,1.0,0 -22301321,"State of Decay - Lifeline",purchase,1.0,0 -22301321,"Sunny - Hunter (Support Class)",purchase,1.0,0 -22301321,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -22301321,"Superfrog HD",purchase,1.0,0 -22301321,"Supreme Commander 2 - Infinite War Battle Pack One",purchase,1.0,0 -22301321,"Syberia",purchase,1.0,0 -22301321,"Syberia 2",purchase,1.0,0 -22301321,"System Protocol One",purchase,1.0,0 -22301321,"Team Fortress Classic",purchase,1.0,0 -22301321,"Terraria",purchase,1.0,0 -22301321,"Tesla Effect",purchase,1.0,0 -22301321,"Teslagrad",purchase,1.0,0 -22301321,"Tex Murphy Martian Memorandum",purchase,1.0,0 -22301321,"Tex Murphy Mean Streets",purchase,1.0,0 -22301321,"Tex Murphy Overseer",purchase,1.0,0 -22301321,"Tex Murphy The Pandora Directive",purchase,1.0,0 -22301321,"Tex Murphy Under a Killing Moon",purchase,1.0,0 -22301321,"The 7th Guest",purchase,1.0,0 -22301321,"The 11th Hour",purchase,1.0,0 -22301321,"The Ball",purchase,1.0,0 -22301321,"The Bureau XCOM Declassified",purchase,1.0,0 -22301321,"The Bureau XCOM Declassified - Code Breakers",purchase,1.0,0 -22301321,"The Bureau XCOM Declassified - Light Plasma Pistol",purchase,1.0,0 -22301321,"The Bureau XCOM Hangar 6 R&D",purchase,1.0,0 -22301321,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -22301321,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -22301321,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -22301321,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -22301321,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -22301321,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -22301321,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -22301321,"The LEGO Movie - Videogame",purchase,1.0,0 -22301321,"The Longest Journey",purchase,1.0,0 -22301321,"The Night of the Rabbit",purchase,1.0,0 -22301321,"The Novelist",purchase,1.0,0 -22301321,"The Raven - Legacy of a Master Thief",purchase,1.0,0 -22301321,"The Settlers 7 Paths to a Kingdom The Two Kings DLC #4",purchase,1.0,0 -22301321,"The Ship Tutorial",purchase,1.0,0 -22301321,"The Swapper",purchase,1.0,0 -22301321,"The Ultimate DOOM",purchase,1.0,0 -22301321,"The Walking Dead Season Two",purchase,1.0,0 -22301321,"The Witcher Enhanced Edition",purchase,1.0,0 -22301321,"The Wolf Among Us",purchase,1.0,0 -22301321,"Thomas Was Alone",purchase,1.0,0 -22301321,"Tomb Raider",purchase,1.0,0 -22301321,"Tomb Raider Anniversary",purchase,1.0,0 -22301321,"Tomb Raider Legend",purchase,1.0,0 -22301321,"Tomb Raider Underworld",purchase,1.0,0 -22301321,"Torchlight II",purchase,1.0,0 -22301321,"Torvald - Hunter (Assault Class)",purchase,1.0,0 -22301321,"Turbo Dismount",purchase,1.0,0 -22301321,"Twin Sector",purchase,1.0,0 -22301321,"Uplink",purchase,1.0,0 -22301321,"Vertical Drop Heroes HD",purchase,1.0,0 -22301321,"Vertiginous Golf",purchase,1.0,0 -22301321,"VVVVVV",purchase,1.0,0 -22301321,"Wanderlust Rebirth",purchase,1.0,0 -22301321,"Wargame European Escalation",purchase,1.0,0 -22301321,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -22301321,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -22301321,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -22301321,"Warhammer 40,000 Storm of Vengeance Deathwing Terminator",purchase,1.0,0 -22301321,"Waveform",purchase,1.0,0 -22301321,"Windosill",purchase,1.0,0 -22301321,"Wolfenstein 3D",purchase,1.0,0 -22301321,"Wolfenstein 3D Spear of Destiny",purchase,1.0,0 -22301321,"Worms Armageddon",purchase,1.0,0 -22301321,"Worms Blast",purchase,1.0,0 -22301321,"Worms Crazy Golf",purchase,1.0,0 -22301321,"Worms Pinball",purchase,1.0,0 -22301321,"Worms Revolution",purchase,1.0,0 -22301321,"Worms Ultimate Mayhem",purchase,1.0,0 -22301321,"X-COM Apocalypse",purchase,1.0,0 -22301321,"X-COM Enforcer",purchase,1.0,0 -22301321,"X-COM Interceptor",purchase,1.0,0 -22301321,"Yet Another Zombie Defense",purchase,1.0,0 -174689200,"H1Z1",purchase,1.0,0 -174689200,"H1Z1",play,19.5,0 -174689200,"Team Fortress 2",purchase,1.0,0 -174689200,"Team Fortress 2",play,0.7,0 -174689200,"H1Z1 Test Server",purchase,1.0,0 -235566877,"Warframe",purchase,1.0,0 -158136791,"Dota 2",purchase,1.0,0 -158136791,"Dota 2",play,1430.0,0 -158136791,"Counter-Strike Global Offensive",purchase,1.0,0 -158136791,"Counter-Strike Global Offensive",play,93.0,0 -158136791,"GunZ 2 The Second Duel",purchase,1.0,0 -158136791,"GunZ 2 The Second Duel",play,3.9,0 -158136791,"Elsword",purchase,1.0,0 -158136791,"Elsword",play,2.8,0 -158136791,"Two Worlds II",purchase,1.0,0 -158136791,"Two Worlds II",play,0.9,0 -158136791,"FINAL FANTASY XIII",purchase,1.0,0 -158136791,"FINAL FANTASY XIII",play,0.5,0 -158136791,"Archeblade",purchase,1.0,0 -158136791,"Archeblade",play,0.1,0 -158136791,"Commander Conquest of the Americas Gold",purchase,1.0,0 -158136791,"Commander Conquest of the Americas Gold",play,0.1,0 -158136791,"Divine Souls",purchase,1.0,0 -158136791,"Aura Kingdom",purchase,1.0,0 -158136791,"Might & Magic Duel of Champions",purchase,1.0,0 -158136791,"AirMech",purchase,1.0,0 -158136791,"America's Army Proving Grounds",purchase,1.0,0 -158136791,"Blacklight Retribution",purchase,1.0,0 -158136791,"Conquest of Champions",purchase,1.0,0 -158136791,"CrimeCraft GangWars",purchase,1.0,0 -158136791,"Defiance",purchase,1.0,0 -158136791,"Enclave",purchase,1.0,0 -158136791,"Firefall",purchase,1.0,0 -158136791,"Guns and Robots",purchase,1.0,0 -158136791,"Happy Wars",purchase,1.0,0 -158136791,"HAWKEN",purchase,1.0,0 -158136791,"Heroes & Generals",purchase,1.0,0 -158136791,"Knights and Merchants",purchase,1.0,0 -158136791,"Loadout",purchase,1.0,0 -158136791,"March of War",purchase,1.0,0 -158136791,"Neverwinter",purchase,1.0,0 -158136791,"Panzar",purchase,1.0,0 -158136791,"PlanetSide 2",purchase,1.0,0 -158136791,"Ragnarok",purchase,1.0,0 -158136791,"Realm of the Mad God",purchase,1.0,0 -158136791,"RIFT",purchase,1.0,0 -158136791,"Robocraft",purchase,1.0,0 -158136791,"Soldier Front 2",purchase,1.0,0 -158136791,"Stronghold Kingdoms",purchase,1.0,0 -158136791,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -158136791,"Two Worlds Epic Edition",purchase,1.0,0 -158136791,"Warframe",purchase,1.0,0 -158136791,"War of the Roses",purchase,1.0,0 -158136791,"War Thunder",purchase,1.0,0 -156150706,"Dota 2",purchase,1.0,0 -156150706,"Dota 2",play,546.0,0 -217289318,"Robocraft",purchase,1.0,0 -217289318,"Robocraft",play,1.2,0 -217289318,"Team Fortress 2",purchase,1.0,0 -217289318,"Team Fortress 2",play,0.3,0 -217289318,"8BitMMO",purchase,1.0,0 -217289318,"8BitMMO",play,0.2,0 -88659639,"Team Fortress 2",purchase,1.0,0 -88659639,"Team Fortress 2",play,549.0,0 -88659639,"Counter-Strike Global Offensive",purchase,1.0,0 -88659639,"Counter-Strike Global Offensive",play,232.0,0 -88659639,"Loadout",purchase,1.0,0 -88659639,"Loadout",play,10.7,0 -88659639,"SMITE",purchase,1.0,0 -88659639,"SMITE",play,7.2,0 -88659639,"APB Reloaded",purchase,1.0,0 -88659639,"APB Reloaded",play,3.0,0 -88659639,"Tribes Ascend",purchase,1.0,0 -88659639,"Tribes Ascend",play,1.7,0 -88659639,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -88659639,"A.V.A - Alliance of Valiant Arms",play,0.7,0 -88659639,"No More Room in Hell",purchase,1.0,0 -88659639,"No More Room in Hell",play,0.4,0 -88659639,"Dirty Bomb",purchase,1.0,0 -88659639,"Dirty Bomb",play,0.1,0 -88659639,"PlanetSide 2",purchase,1.0,0 -88659639,"Blacklight Retribution",purchase,1.0,0 -88659639,"Counter-Strike Nexon Zombies",purchase,1.0,0 -88659639,"Neverwinter",purchase,1.0,0 -88659639,"Nosgoth",purchase,1.0,0 -88659639,"Quake Live",purchase,1.0,0 -88659639,"Survarium",purchase,1.0,0 -88659639,"Trove",purchase,1.0,0 -88659639,"Warframe",purchase,1.0,0 -233695797,"The Mighty Quest For Epic Loot",purchase,1.0,0 -233695797,"The Mighty Quest For Epic Loot",play,13.5,0 -233695797,"Strife",purchase,1.0,0 -233695797,"Survarium",purchase,1.0,0 -233695797,"War Thunder",purchase,1.0,0 -255234412,"Unturned",purchase,1.0,0 -255234412,"Unturned",play,0.3,0 -255234412,"Gunscape",purchase,1.0,0 -255234412,"HIT",purchase,1.0,0 -255234412,"Penumbra Necrologue",purchase,1.0,0 -246224505,"Dota 2",purchase,1.0,0 -246224505,"Dota 2",play,22.0,0 -250284905,"Dying Light",purchase,1.0,0 -250284905,"Dying Light",play,53.0,0 -250284905,"Left 4 Dead 2",purchase,1.0,0 -250284905,"Left 4 Dead 2",play,15.5,0 -250284905,"Warhammer End Times - Vermintide",purchase,1.0,0 -250284905,"Warhammer End Times - Vermintide",play,9.0,0 -250284905,"Dungeon Defenders",purchase,1.0,0 -250284905,"Warhammer End Times - Vermintide Sigmar's Blessing",purchase,1.0,0 -96795319,"Team Fortress 2",purchase,1.0,0 -96795319,"Team Fortress 2",play,3.6,0 -250086157,"Garry's Mod",purchase,1.0,0 -250086157,"Garry's Mod",play,18.6,0 -135162448,"Dota 2",purchase,1.0,0 -135162448,"Dota 2",play,13.1,0 -208962079,"GEARCRACK Arena",purchase,1.0,0 -92429863,"Sid Meier's Civilization V",purchase,1.0,0 -92429863,"Sid Meier's Civilization V",play,3.9,0 -94994519,"Team Fortress 2",purchase,1.0,0 -94994519,"Team Fortress 2",play,0.5,0 -195065296,"Dota 2",purchase,1.0,0 -195065296,"Dota 2",play,2.7,0 -195065296,"No More Room in Hell",purchase,1.0,0 -195065296,"theHunter",purchase,1.0,0 -195065296,"Unturned",purchase,1.0,0 -211117005,"Dota 2",purchase,1.0,0 -211117005,"Dota 2",play,17.6,0 -190022459,"Surgeon Simulator",purchase,1.0,0 -190022459,"Surgeon Simulator",play,9.5,0 -190022459,"POSTAL 2",purchase,1.0,0 -190022459,"POSTAL 2",play,8.6,0 -190022459,"Rust",purchase,1.0,0 -190022459,"Rust",play,4.0,0 -190022459,"Stranded Deep",purchase,1.0,0 -190022459,"Stranded Deep",play,3.6,0 -190022459,"Chivalry Medieval Warfare",purchase,1.0,0 -190022459,"Chivalry Medieval Warfare",play,3.1,0 -190022459,"Goat Simulator",purchase,1.0,0 -190022459,"Goat Simulator",play,2.6,0 -190022459,"7 Days to Die",purchase,1.0,0 -190022459,"7 Days to Die",play,2.5,0 -190022459,"The Elder Scrolls V Skyrim",purchase,1.0,0 -190022459,"The Elder Scrolls V Skyrim",play,1.5,0 -190022459,"DayZ",purchase,1.0,0 -190022459,"DayZ",play,0.7,0 -190022459,"Fallout New Vegas",purchase,1.0,0 -190022459,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -190022459,"Fallout New Vegas Dead Money",purchase,1.0,0 -190022459,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -190022459,"Patch testing for Chivalry",purchase,1.0,0 -190022459,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -190022459,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -190022459,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -64754418,"Cities Skylines",purchase,1.0,0 -64754418,"Cities Skylines",play,110.0,0 -64754418,"Team Fortress 2",purchase,1.0,0 -64754418,"Team Fortress 2",play,23.0,0 -64754418,"Terraria",purchase,1.0,0 -64754418,"Terraria",play,15.6,0 -64754418,"Portal 2",purchase,1.0,0 -64754418,"Portal 2",play,8.9,0 -64754418,"Dota 2",purchase,1.0,0 -64754418,"Dota 2",play,0.4,0 -64754418,"Unturned",purchase,1.0,0 -64754418,"Unturned",play,0.4,0 -64754418,"Lara Croft and the Guardian of Light",purchase,1.0,0 -64754418,"Lara Croft and the Guardian of Light",play,0.2,0 -64754418,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -64754418,"Battlefield Bad Company 2",purchase,1.0,0 -64754418,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -64754418,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -64754418,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -64754418,"Crysis 2 Maximum Edition",purchase,1.0,0 -64754418,"Dead Space",purchase,1.0,0 -64754418,"Left 4 Dead 2",purchase,1.0,0 -64754418,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -64754418,"Medal of Honor(TM) Single Player",purchase,1.0,0 -64754418,"Medal of Honor Pre-Order",purchase,1.0,0 -64754418,"Mirror's Edge",purchase,1.0,0 -222701635,"Chivalry Medieval Warfare",purchase,1.0,0 -222701635,"Magicka",purchase,1.0,0 -222701635,"Patch testing for Chivalry",purchase,1.0,0 -222701635,"Torchlight II",purchase,1.0,0 -92482012,"The Lord of the Rings War in the North",purchase,1.0,0 -92482012,"The Lord of the Rings War in the North",play,71.0,0 -92482012,"Hitman Absolution",purchase,1.0,0 -92482012,"Hitman Absolution",play,33.0,0 -92482012,"The Elder Scrolls V Skyrim",purchase,1.0,0 -92482012,"The Elder Scrolls V Skyrim",play,26.0,0 -92482012,"Risen 2 - Dark Waters",purchase,1.0,0 -92482012,"Risen 2 - Dark Waters",play,24.0,0 -92482012,"Ryse Son of Rome",purchase,1.0,0 -92482012,"Ryse Son of Rome",play,12.2,0 -92482012,"Alan Wake",purchase,1.0,0 -92482012,"Alan Wake",play,10.5,0 -92482012,"Stronghold Crusader 2",purchase,1.0,0 -92482012,"Stronghold Crusader 2",play,9.6,0 -66211595,"Dota 2",purchase,1.0,0 -66211595,"Dota 2",play,221.0,0 -66211595,"DiRT 3",purchase,1.0,0 -66211595,"DiRT 3",play,2.6,0 -66211595,"Serious Sam HD The Second Encounter",purchase,1.0,0 -66211595,"Serious Sam HD The Second Encounter",play,2.5,0 -66211595,"Team Fortress 2",purchase,1.0,0 -66211595,"Team Fortress 2",play,0.8,0 -66211595,"Path of Exile",purchase,1.0,0 -66211595,"Path of Exile",play,0.7,0 -66211595,"DiRT 3 Complete Edition",purchase,1.0,0 -66211595,"EVGA PrecisionX 16",purchase,1.0,0 -66211595,"Portal",purchase,1.0,0 -236151749,"Dungeon Defenders II",purchase,1.0,0 -236151749,"Dungeon Defenders II",play,12.1,0 -236151749,"WTFast Gamers Private Network (GPN)",purchase,1.0,0 -114792785,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -114792785,"Red Orchestra Ostfront 41-45",play,0.1,0 -114792785,"Darkest Hour Europe '44-'45",purchase,1.0,0 -114792785,"Mare Nostrum",purchase,1.0,0 -236537366,"Dota 2",purchase,1.0,0 -236537366,"Dota 2",play,0.7,0 -84428602,"RAGE",purchase,1.0,0 -84428602,"RAGE",play,5.4,0 -84428602,"Empire Total War",purchase,1.0,0 -224539783,"Return to Castle Wolfenstein",purchase,1.0,0 -224539783,"Return to Castle Wolfenstein",play,79.0,0 -58129717,"Football Manager 2011",purchase,1.0,0 -58129717,"Football Manager 2011",play,14.6,0 -58129717,"Football Manager 2012",purchase,1.0,0 -58129717,"Football Manager 2012",play,12.3,0 -58129717,"IL-2 Sturmovik Cliffs of Dover",purchase,1.0,0 -58129717,"IL-2 Sturmovik Cliffs of Dover",play,6.3,0 -245438935,"Don't Starve Together Beta",purchase,1.0,0 -245438935,"Don't Starve Together Beta",play,37.0,0 -245438935,"Emily is Away",purchase,1.0,0 -245438935,"Emily is Away",play,0.8,0 -194619752,"Dota 2",purchase,1.0,0 -194619752,"Dota 2",play,419.0,0 -194619752,"Audition Online",purchase,1.0,0 -194619752,"FreeStyle2 Street Basketball",purchase,1.0,0 -194619752,"GunZ 2 The Second Duel",purchase,1.0,0 -194619752,"Warframe",purchase,1.0,0 -279638854,"Team Fortress 2",purchase,1.0,0 -279638854,"Team Fortress 2",play,1.0,0 -59756932,"Dota 2",purchase,1.0,0 -59756932,"Dota 2",play,205.0,0 -59756932,"Mafia II",purchase,1.0,0 -59756932,"Mafia II",play,52.0,0 -59756932,"PAYDAY 2",purchase,1.0,0 -59756932,"PAYDAY 2",play,13.3,0 -59756932,"The Walking Dead",purchase,1.0,0 -59756932,"The Walking Dead",play,6.0,0 -59756932,"Age of Mythology Extended Edition",purchase,1.0,0 -59756932,"Age of Mythology Extended Edition",play,4.5,0 -59756932,"Warframe",purchase,1.0,0 -59756932,"Warframe",play,3.2,0 -59756932,"Banished",purchase,1.0,0 -59756932,"Banished",play,2.8,0 -59756932,"Left 4 Dead 2",purchase,1.0,0 -59756932,"Left 4 Dead 2",play,2.5,0 -59756932,"Garry's Mod",purchase,1.0,0 -59756932,"Garry's Mod",play,2.2,0 -59756932,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -59756932,"Rising Storm/Red Orchestra 2 Multiplayer",play,1.9,0 -59756932,"Gang Beasts",purchase,1.0,0 -59756932,"Gang Beasts",play,0.7,0 -59756932,"Star Wars Knights of the Old Republic",purchase,1.0,0 -59756932,"FreeStyle2 Street Basketball",purchase,1.0,0 -59756932,"HAWKEN",purchase,1.0,0 -59756932,"Path of Exile",purchase,1.0,0 -59756932,"PlanetSide 2",purchase,1.0,0 -59756932,"Robocraft",purchase,1.0,0 -59756932,"Strife",purchase,1.0,0 -59756932,"The Walking Dead Season Two",purchase,1.0,0 -59756932,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -181291605,"PAYDAY 2",purchase,1.0,0 -181291605,"PAYDAY 2",play,164.0,0 -181291605,"PAYDAY The Heist",purchase,1.0,0 -181291605,"PAYDAY The Heist",play,27.0,0 -181291605,"The Forest",purchase,1.0,0 -181291605,"The Forest",play,1.1,0 -181291605,"Team Fortress 2",purchase,1.0,0 -181291605,"Team Fortress 2",play,0.2,0 -181291605,"PAYDAY Wolf Pack",purchase,1.0,0 -181291605,"Warface",purchase,1.0,0 -164296368,"Borderlands",purchase,1.0,0 -164296368,"Borderlands",play,31.0,0 -164296368,"Borderlands 2 RU",purchase,1.0,0 -164296368,"Borderlands 2 RU",play,22.0,0 -164296368,"Sanctum 2",purchase,1.0,0 -164296368,"Sanctum 2",play,21.0,0 -164296368,"Torchlight II",purchase,1.0,0 -164296368,"Torchlight II",play,2.8,0 -164296368,"Stronghold Kingdoms",purchase,1.0,0 -164296368,"Stronghold Kingdoms",play,2.7,0 -164296368,"Borderlands 2",purchase,1.0,0 -164296368,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -164296368,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -164296368,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -164296368,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -164296368,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -164296368,"Left 4 Dead 2",purchase,1.0,0 -85935348,"Battlefield Bad Company 2",purchase,1.0,0 -85935348,"Battlefield Bad Company 2",play,18.5,0 -85935348,"DiRT 3",purchase,1.0,0 -85935348,"DiRT 3",play,15.6,0 -85935348,"Portal 2",purchase,1.0,0 -85935348,"Portal 2",play,14.4,0 -85935348,"Chivalry Medieval Warfare",purchase,1.0,0 -85935348,"Chivalry Medieval Warfare",play,9.3,0 -85935348,"Team Fortress 2",purchase,1.0,0 -85935348,"Team Fortress 2",play,6.4,0 -85935348,"MX vs. ATV Supercross Encore",purchase,1.0,0 -85935348,"MX vs. ATV Supercross Encore",play,3.9,0 -85935348,"Dino D-Day",purchase,1.0,0 -85935348,"Dino D-Day",play,1.3,0 -85935348,"DiRT 3 Complete Edition",purchase,1.0,0 -85935348,"Patch testing for Chivalry",purchase,1.0,0 -216434385,"Dota 2",purchase,1.0,0 -216434385,"Dota 2",play,4.2,0 -235788745,"Dota 2",purchase,1.0,0 -235788745,"Dota 2",play,10.5,0 -235788745,"Team Fortress 2",purchase,1.0,0 -235788745,"Team Fortress 2",play,0.7,0 -235788745,"AirMech",purchase,1.0,0 -235788745,"AirMech",play,0.6,0 -235788745,"METAL SLUG DEFENSE",purchase,1.0,0 -235788745,"METAL SLUG DEFENSE",play,0.3,0 -235788745,"Unturned",purchase,1.0,0 -235788745,"Unturned",play,0.1,0 -235788745,"GunZ 2 The Second Duel",purchase,1.0,0 -101756948,"Team Fortress 2",purchase,1.0,0 -101756948,"Team Fortress 2",play,7.7,0 -259603495,"Team Fortress 2",purchase,1.0,0 -259603495,"Team Fortress 2",play,70.0,0 -129795122,"Soccer Manager 2015",purchase,1.0,0 -129795122,"Soccer Manager 2015",play,0.5,0 -129795122,"Orcs Must Die! 2",purchase,1.0,0 -129795122,"Orcs Must Die! 2",play,0.5,0 -45233261,"Football Manager 2009",purchase,1.0,0 -45233261,"Football Manager 2009",play,10.0,0 -190466640,"Team Fortress 2",purchase,1.0,0 -190466640,"Team Fortress 2",play,2.4,0 -111190541,"Borderlands 2",purchase,1.0,0 -111190541,"Borderlands 2",play,37.0,0 -111190541,"Total War SHOGUN 2",purchase,1.0,0 -111190541,"Total War SHOGUN 2",play,17.9,0 -111190541,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -132116602,"Team Fortress 2",purchase,1.0,0 -132116602,"Team Fortress 2",play,44.0,0 -207830797,"Team Fortress 2",purchase,1.0,0 -207830797,"Team Fortress 2",play,2150.0,0 -207830797,"Source Filmmaker",purchase,1.0,0 -207830797,"Source Filmmaker",play,37.0,0 -207830797,"Counter-Strike Global Offensive",purchase,1.0,0 -207830797,"Counter-Strike Global Offensive",play,24.0,0 -207830797,"Warface",purchase,1.0,0 -207830797,"Warface",play,19.0,0 -207830797,"Super Monday Night Combat",purchase,1.0,0 -207830797,"Super Monday Night Combat",play,12.6,0 -207830797,"Spiral Knights",purchase,1.0,0 -207830797,"Spiral Knights",play,12.1,0 -207830797,"SpaceChem",purchase,1.0,0 -207830797,"SpaceChem",play,6.3,0 -207830797,"RACE 07",purchase,1.0,0 -207830797,"RACE 07",play,6.1,0 -207830797,"Tactical Intervention",purchase,1.0,0 -207830797,"Tactical Intervention",play,5.3,0 -207830797,"Fistful of Frags",purchase,1.0,0 -207830797,"Fistful of Frags",play,4.5,0 -207830797,"ORION Prelude",purchase,1.0,0 -207830797,"ORION Prelude",play,4.2,0 -207830797,"Talisman Digital Edition",purchase,1.0,0 -207830797,"Talisman Digital Edition",play,3.9,0 -207830797,"Talisman Prologue",purchase,1.0,0 -207830797,"Talisman Prologue",play,3.9,0 -207830797,"Overcast - Walden and the Werewolf",purchase,1.0,0 -207830797,"Overcast - Walden and the Werewolf",play,3.6,0 -207830797,"Cities in Motion 2",purchase,1.0,0 -207830797,"Cities in Motion 2",play,3.6,0 -207830797,"Racer 8",purchase,1.0,0 -207830797,"Racer 8",play,3.5,0 -207830797,"Chainsaw Warrior",purchase,1.0,0 -207830797,"Chainsaw Warrior",play,3.4,0 -207830797,"The Incredible Adventures of Van Helsing II",purchase,1.0,0 -207830797,"The Incredible Adventures of Van Helsing II",play,3.2,0 -207830797,"Grimoire Manastorm",purchase,1.0,0 -207830797,"Grimoire Manastorm",play,3.1,0 -207830797,"Despair",purchase,1.0,0 -207830797,"Despair",play,2.9,0 -207830797,"Chainsaw Warrior Lords of the Night",purchase,1.0,0 -207830797,"Chainsaw Warrior Lords of the Night",play,2.9,0 -207830797,"Mechanic Escape",purchase,1.0,0 -207830797,"Mechanic Escape",play,2.4,0 -207830797,"No More Room in Hell",purchase,1.0,0 -207830797,"No More Room in Hell",play,2.4,0 -207830797,"The Culling Of The Cows",purchase,1.0,0 -207830797,"The Culling Of The Cows",play,2.2,0 -207830797,"Battlepaths",purchase,1.0,0 -207830797,"Battlepaths",play,2.1,0 -207830797,"The Stanley Parable",purchase,1.0,0 -207830797,"The Stanley Parable",play,2.1,0 -207830797,"Counter-Strike Nexon Zombies",purchase,1.0,0 -207830797,"Counter-Strike Nexon Zombies",play,2.0,0 -207830797,"Shadows on the Vatican - Act I Greed",purchase,1.0,0 -207830797,"Shadows on the Vatican - Act I Greed",play,1.9,0 -207830797,"Unturned",purchase,1.0,0 -207830797,"Unturned",play,1.4,0 -207830797,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -207830797,"Nosferatu The Wrath of Malachi",play,1.1,0 -207830797,"Torchlight II",purchase,1.0,0 -207830797,"Torchlight II",play,1.0,0 -207830797,"Spooky's House of Jump Scares",purchase,1.0,0 -207830797,"Spooky's House of Jump Scares",play,0.3,0 -207830797,"APB Reloaded",purchase,1.0,0 -207830797,"APB Reloaded",play,0.3,0 -207830797,"Amnesia The Dark Descent",purchase,1.0,0 -207830797,"Amnesia The Dark Descent",play,0.2,0 -207830797,"Litil Divil",purchase,1.0,0 -207830797,"CrimeCraft GangWars",purchase,1.0,0 -207830797,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -207830797,"GTR Evolution",purchase,1.0,0 -207830797,"Blood of Old",purchase,1.0,0 -207830797,"Bloop",purchase,1.0,0 -207830797,"Brawlhalla",purchase,1.0,0 -207830797,"Commando Jack",purchase,1.0,0 -207830797,"Copa Petrobras de Marcas",purchase,1.0,0 -207830797,"Crusaders of the Lost Idols",purchase,1.0,0 -207830797,"Cult of the Wind",purchase,1.0,0 -207830797,"Desert Thunder",purchase,1.0,0 -207830797,"Endless Sky",purchase,1.0,0 -207830797,"Eurofighter Typhoon",purchase,1.0,0 -207830797,"Fortress Forever",purchase,1.0,0 -207830797,"Hostile Waters Antaeus Rising",purchase,1.0,0 -207830797,"Hyper Fighters",purchase,1.0,0 -207830797,"iBomber Defense Pacific",purchase,1.0,0 -207830797,"Incoming Forces",purchase,1.0,0 -207830797,"Mortal Kombat Legacy - Ep. 3 Johnny Cage",purchase,1.0,0 -207830797,"Mortal Kombat Legacy - Ep. 4 Kitana & Mileena (Part 1)",purchase,1.0,0 -207830797,"Mortal Kombat Legacy - Ep. 5 Kitana & Mileena (Part 2)",purchase,1.0,0 -207830797,"Mortal Kombat Legacy - Ep. 6 Raiden",purchase,1.0,0 -207830797,"Mortal Kombat Legacy - Ep. 7 Scorpion and Sub-Zero (Part 1)",purchase,1.0,0 -207830797,"Mortal Kombat Legacy - Ep. 8 Scorpion and Sub-Zero (Part 2)",purchase,1.0,0 -207830797,"Mortal Kombat Legacy - Ep. 9 Cyrax & Sektor",purchase,1.0,0 -207830797,"Mortal Kombat Legacy II - Ep. 1 Reunited in Macau",purchase,1.0,0 -207830797,"Mortal Kombat Legacy II - Ep. 2 The Fall of Liu Kang",purchase,1.0,0 -207830797,"Mortal Kombat Legacy II - Ep. 3 Kenshi's Origin",purchase,1.0,0 -207830797,"Mortal Kombat Legacy II - Ep. 4 Kenshi Encounters Ermac",purchase,1.0,0 -207830797,"Mortal Kombat Legacy II - Ep. 5 Kitana and Mileena",purchase,1.0,0 -207830797,"Mortal Kombat Legacy II - Ep. 6 Johnny Cage",purchase,1.0,0 -207830797,"Mortal Kombat Legacy II - Ep. 7 Scorpion and Sub-Zero (Part 1)",purchase,1.0,0 -207830797,"Mortal Kombat Legacy II - Ep. 8 Scorpion and Sub-Zero (Part 2)",purchase,1.0,0 -207830797,"Mortal Kombat Legacy II - Ep. 9 Liu Kang",purchase,1.0,0 -207830797,"Mortal Kombat Legacy II - Ep. 10 Liu Kang and Kung Lao",purchase,1.0,0 -207830797,"Oddworld Abe's Oddysee",purchase,1.0,0 -207830797,"Overlord",purchase,1.0,0 -207830797,"Overlord II",purchase,1.0,0 -207830797,"Particula",purchase,1.0,0 -207830797,"RaceRoom Racing Experience ",purchase,1.0,0 -207830797,"Realms of the Haunting",purchase,1.0,0 -207830797,"Sakura Clicker",purchase,1.0,0 -207830797,"Soccer Manager 2016",purchase,1.0,0 -207830797,"Space Hack",purchase,1.0,0 -207830797,"Spark Rising",purchase,1.0,0 -207830797,"Steel & Steam Episode 1",purchase,1.0,0 -207830797,"Vertiginous Golf",purchase,1.0,0 -207830797,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -194156559,"Dota 2",purchase,1.0,0 -194156559,"Dota 2",play,0.8,0 -236864282,"AdVenture Capitalist",purchase,1.0,0 -236864282,"AdVenture Capitalist",play,0.8,0 -236864282,"Team Fortress 2",purchase,1.0,0 -236864282,"Team Fortress 2",play,0.3,0 -236864282,"Strife",purchase,1.0,0 -282739324,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -282739324,"Microsoft Flight Simulator X Steam Edition",play,1.0,0 -275513970,"Dota 2",purchase,1.0,0 -275513970,"Dota 2",play,4.1,0 -275513970,"X-COM Apocalypse",purchase,1.0,0 -275513970,"X-COM Terror from the Deep",purchase,1.0,0 -251385361,"Life Is Strange",purchase,1.0,0 -251385361,"Life Is Strange",play,17.8,0 -251385361,"Contrast",purchase,1.0,0 -251385361,"Contrast",play,4.7,0 -255728964,"The Elder Scrolls V Skyrim",purchase,1.0,0 -255728964,"The Elder Scrolls V Skyrim",play,183.0,0 -255728964,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -255728964,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -255728964,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -255728964,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -93209414,"Team Fortress 2",purchase,1.0,0 -93209414,"Team Fortress 2",play,0.5,0 -165793116,"Team Fortress 2",purchase,1.0,0 -165793116,"Team Fortress 2",play,0.7,0 -301355977,"Terrain Test",purchase,1.0,0 -301355977,"Terrain Test",play,0.2,0 -122492047,"Football Manager 2013",purchase,1.0,0 -122492047,"Football Manager 2013",play,309.0,0 -122492047,"Pro Cycling Manager 2014",purchase,1.0,0 -122492047,"Pro Cycling Manager 2014",play,292.0,0 -122492047,"Football Manager 2014",purchase,1.0,0 -122492047,"Football Manager 2014",play,118.0,0 -122492047,"The Elder Scrolls V Skyrim",purchase,1.0,0 -122492047,"The Elder Scrolls V Skyrim",play,67.0,0 -122492047,"Football Manager 2015",purchase,1.0,0 -122492047,"Football Manager 2015",play,58.0,0 -122492047,"The Witcher 3 Wild Hunt",purchase,1.0,0 -122492047,"The Witcher 3 Wild Hunt",play,3.2,0 -122492047,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -122492047,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -122492047,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -218134215,"War Thunder",purchase,1.0,0 -218134215,"War Thunder",play,0.1,0 -218134215,"Warframe",purchase,1.0,0 -242309800,"Team Fortress 2",purchase,1.0,0 -242309800,"Team Fortress 2",play,7.7,0 -226454327,"Neverwinter",purchase,1.0,0 -226454327,"Neverwinter",play,91.0,0 -226454327,"The Mighty Quest For Epic Loot",purchase,1.0,0 -226454327,"The Mighty Quest For Epic Loot",play,13.2,0 -102016550,"Counter-Strike Global Offensive",purchase,1.0,0 -102016550,"Counter-Strike Global Offensive",play,118.0,0 -102016550,"Call of Duty World at War",purchase,1.0,0 -102016550,"Call of Duty World at War",play,66.0,0 -102016550,"Portal 2",purchase,1.0,0 -102016550,"Portal 2",play,37.0,0 -102016550,"Blacklight Retribution",purchase,1.0,0 -102016550,"Blacklight Retribution",play,30.0,0 -102016550,"Warface",purchase,1.0,0 -102016550,"Warface",play,28.0,0 -102016550,"Insurgency",purchase,1.0,0 -102016550,"Insurgency",play,19.7,0 -102016550,"Team Fortress 2",purchase,1.0,0 -102016550,"Team Fortress 2",play,13.8,0 -102016550,"Borderlands 2",purchase,1.0,0 -102016550,"Borderlands 2",play,10.2,0 -102016550,"Amnesia The Dark Descent",purchase,1.0,0 -102016550,"Amnesia The Dark Descent",play,10.0,0 -102016550,"Alien Isolation",purchase,1.0,0 -102016550,"Alien Isolation",play,9.6,0 -102016550,"ARK Survival Evolved",purchase,1.0,0 -102016550,"ARK Survival Evolved",play,9.4,0 -102016550,"Soldier Front 2",purchase,1.0,0 -102016550,"Soldier Front 2",play,8.8,0 -102016550,"PlanetSide 2",purchase,1.0,0 -102016550,"PlanetSide 2",play,8.2,0 -102016550,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -102016550,"Tom Clancy's Ghost Recon Phantoms - NA",play,4.5,0 -102016550,"The Stanley Parable",purchase,1.0,0 -102016550,"The Stanley Parable",play,4.3,0 -102016550,"Screencheat",purchase,1.0,0 -102016550,"Screencheat",play,3.0,0 -102016550,"RaceRoom Racing Experience ",purchase,1.0,0 -102016550,"RaceRoom Racing Experience ",play,2.5,0 -102016550,"Heroes & Generals",purchase,1.0,0 -102016550,"Heroes & Generals",play,1.8,0 -102016550,"Warframe",purchase,1.0,0 -102016550,"Warframe",play,1.6,0 -102016550,"Borderlands",purchase,1.0,0 -102016550,"Borderlands",play,1.5,0 -102016550,"Need for Speed SHIFT",purchase,1.0,0 -102016550,"Need for Speed SHIFT",play,1.1,0 -102016550,"HAWKEN",purchase,1.0,0 -102016550,"HAWKEN",play,0.7,0 -102016550,"Tactical Intervention",purchase,1.0,0 -102016550,"Tactical Intervention",play,0.3,0 -102016550,"Source Filmmaker",purchase,1.0,0 -102016550,"Source Filmmaker",play,0.1,0 -102016550,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -102016550,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -102016550,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -102016550,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -102016550,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -102016550,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -102016550,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -102016550,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -102016550,"Loadout",purchase,1.0,0 -99613502,"Napoleon Total War",purchase,1.0,0 -99613502,"Napoleon Total War",play,42.0,0 -99613502,"Order of War",purchase,1.0,0 -99613502,"Order of War",play,38.0,0 -103691417,"Fallout New Vegas",purchase,1.0,0 -103691417,"Fallout New Vegas",play,40.0,0 -61367351,"Serious Sam HD The Second Encounter",purchase,1.0,0 -61367351,"Serious Sam HD The Second Encounter",play,0.6,0 -61367351,"Empire Total War",purchase,1.0,0 -228912039,"Dota 2",purchase,1.0,0 -228912039,"Dota 2",play,104.0,0 -228912039,"Ascend Hand of Kul",purchase,1.0,0 -228912039,"Loadout",purchase,1.0,0 -228912039,"RaceRoom Racing Experience ",purchase,1.0,0 -228912039,"theHunter",purchase,1.0,0 -228912039,"Warframe",purchase,1.0,0 -228912039,"War Thunder",purchase,1.0,0 -288259150,"Counter-Strike Global Offensive",purchase,1.0,0 -288259150,"Counter-Strike Global Offensive",play,80.0,0 -288259150,"Heroes & Generals",purchase,1.0,0 -288259150,"Magicka Wizard Wars",purchase,1.0,0 -288259150,"Nosgoth",purchase,1.0,0 -288259150,"The Lord of the Rings Online",purchase,1.0,0 -65531742,"Portal",purchase,1.0,0 -65531742,"Portal",play,15.7,0 -65531742,"realMyst",purchase,1.0,0 -65531742,"realMyst",play,0.1,0 -112613985,"Team Fortress 2",purchase,1.0,0 -112613985,"Team Fortress 2",play,0.2,0 -256809867,"Dota 2",purchase,1.0,0 -256809867,"Dota 2",play,0.1,0 -256809867,"RaceRoom Racing Experience ",purchase,1.0,0 -159853048,"Serious Sam HD The Second Encounter",purchase,1.0,0 -159853048,"Serious Sam HD The Second Encounter",play,0.4,0 -159853048,"Dead Island",purchase,1.0,0 -159853048,"Dead Island",play,0.1,0 -15474494,"Counter-Strike Source",purchase,1.0,0 -15474494,"Counter-Strike Source",play,0.1,0 -15474494,"Half-Life 2",purchase,1.0,0 -15474494,"Half-Life 2 Deathmatch",purchase,1.0,0 -15474494,"Half-Life 2 Lost Coast",purchase,1.0,0 -15474494,"Half-Life Source",purchase,1.0,0 -15474494,"Half-Life Deathmatch Source",purchase,1.0,0 -124537977,"Football Manager 2014",purchase,1.0,0 -124537977,"Football Manager 2014",play,135.0,0 -124537977,"Football Manager 2013",purchase,1.0,0 -124537977,"Football Manager 2013",play,46.0,0 -210986854,"Dota 2",purchase,1.0,0 -210986854,"Dota 2",play,246.0,0 -210986854,"Team Fortress 2",purchase,1.0,0 -210986854,"Team Fortress 2",play,173.0,0 -210986854,"Warframe",purchase,1.0,0 -210986854,"Warframe",play,50.0,0 -210986854,"Everlasting Summer",purchase,1.0,0 -210986854,"Everlasting Summer",play,8.6,0 -210986854,"sZone-Online",purchase,1.0,0 -210986854,"sZone-Online",play,1.5,0 -210986854,"Magic Barrage - Bitferno",purchase,1.0,0 -210986854,"Magic Barrage - Bitferno",play,0.2,0 -210986854,"Heroes & Generals",purchase,1.0,0 -210986854,"Mortal Online",purchase,1.0,0 -210986854,"SMITE",purchase,1.0,0 -95026679,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -95026679,"Call of Duty Modern Warfare 3 - Multiplayer",play,298.0,0 -95026679,"Call of Duty Modern Warfare 3",purchase,1.0,0 -95026679,"Call of Duty Modern Warfare 3",play,34.0,0 -70703031,"Call of Duty Black Ops",purchase,1.0,0 -70703031,"Call of Duty Black Ops",play,1.5,0 -70703031,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -290749426,"Terraria",purchase,1.0,0 -290749426,"Terraria",play,1.9,0 -84471496,"Counter-Strike Global Offensive",purchase,1.0,0 -84471496,"Counter-Strike Global Offensive",play,1487.0,0 -84471496,"Counter-Strike Source",purchase,1.0,0 -84471496,"Counter-Strike Source",play,82.0,0 -84471496,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -84471496,"DARK SOULS II Scholar of the First Sin",play,80.0,0 -84471496,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -84471496,"Rising Storm/Red Orchestra 2 Multiplayer",play,23.0,0 -84471496,"Arma 3",purchase,1.0,0 -84471496,"Arma 3",play,12.1,0 -84471496,"Don't Starve",purchase,1.0,0 -84471496,"Don't Starve",play,9.8,0 -84471496,"Dota 2",purchase,1.0,0 -84471496,"Dota 2",play,6.1,0 -84471496,"Space Engineers",purchase,1.0,0 -84471496,"Space Engineers",play,3.7,0 -84471496,"FaceRig",purchase,1.0,0 -84471496,"FaceRig",play,3.1,0 -84471496,"Free to Play",purchase,1.0,0 -84471496,"Free to Play",play,1.8,0 -84471496,"Loadout",purchase,1.0,0 -84471496,"Loadout",play,1.5,0 -84471496,"Portal 2",purchase,1.0,0 -84471496,"Portal 2",play,1.5,0 -84471496,"Hotline Miami",purchase,1.0,0 -84471496,"Hotline Miami",play,1.4,0 -84471496,"HAWKEN",purchase,1.0,0 -84471496,"HAWKEN",play,0.3,0 -84471496,"Warface",purchase,1.0,0 -84471496,"Warface",play,0.3,0 -84471496,"Blade Symphony",purchase,1.0,0 -84471496,"Blade Symphony",play,0.3,0 -84471496,"12 Labours of Hercules II The Cretan Bull",purchase,1.0,0 -84471496,"12 Labours of Hercules II The Cretan Bull",play,0.1,0 -84471496,"Arma 3 Zeus",purchase,1.0,0 -84471496,"Arma Cold War Assault",purchase,1.0,0 -84471496,"Darkest Hour Europe '44-'45",purchase,1.0,0 -84471496,"Don't Starve Together Beta",purchase,1.0,0 -84471496,"Fistful of Frags",purchase,1.0,0 -84471496,"Mare Nostrum",purchase,1.0,0 -84471496,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -84471496,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -219466457,"DayZ",purchase,1.0,0 -219466457,"DayZ",play,302.0,0 -219466457,"Arma 3",purchase,1.0,0 -219466457,"Arma 3",play,174.0,0 -219466457,"Rust",purchase,1.0,0 -219466457,"Rust",play,47.0,0 -219466457,"PlanetSide 2",purchase,1.0,0 -219466457,"PlanetSide 2",play,3.6,0 -219466457,"Arma 3 Zeus",purchase,1.0,0 -107743243,"Grand Theft Auto V",purchase,1.0,0 -107743243,"Grand Theft Auto V",play,337.0,0 -107743243,"The Elder Scrolls V Skyrim",purchase,1.0,0 -107743243,"The Elder Scrolls V Skyrim",play,192.0,0 -107743243,"Age of Wonders III",purchase,1.0,0 -107743243,"Age of Wonders III",play,69.0,0 -107743243,"Heroes of Might & Magic V",purchase,1.0,0 -107743243,"Heroes of Might & Magic V",play,55.0,0 -107743243,"Company of Heroes (New Steam Version)",purchase,1.0,0 -107743243,"Company of Heroes (New Steam Version)",play,47.0,0 -107743243,"ARK Survival Evolved",purchase,1.0,0 -107743243,"ARK Survival Evolved",play,46.0,0 -107743243,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -107743243,"Warhammer 40,000 Dawn of War II",play,35.0,0 -107743243,"Company of Heroes 2",purchase,1.0,0 -107743243,"Company of Heroes 2",play,26.0,0 -107743243,"R.U.S.E",purchase,1.0,0 -107743243,"R.U.S.E",play,26.0,0 -107743243,"Magic The Gathering - Duels of the Planeswalkers 2013",purchase,1.0,0 -107743243,"Magic The Gathering - Duels of the Planeswalkers 2013",play,20.0,0 -107743243,"Far Cry 3",purchase,1.0,0 -107743243,"Far Cry 3",play,17.8,0 -107743243,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -107743243,"Warhammer 40,000 Dawn of War Dark Crusade",play,17.7,0 -107743243,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -107743243,"Warhammer 40,000 Dawn of War II Retribution",play,16.7,0 -107743243,"Heroes of Might & Magic V Hammers of Fate",purchase,1.0,0 -107743243,"Heroes of Might & Magic V Hammers of Fate",play,16.4,0 -107743243,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -107743243,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,15.1,0 -107743243,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -107743243,"Warhammer 40,000 Dawn of War Soulstorm",play,14.3,0 -107743243,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -107743243,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,12.6,0 -107743243,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -107743243,"Warhammer 40,000 Dawn of War Winter Assault",play,10.4,0 -107743243,"Counter-Strike",purchase,1.0,0 -107743243,"Counter-Strike",play,10.1,0 -107743243,"Far Cry",purchase,1.0,0 -107743243,"Far Cry",play,4.9,0 -107743243,"Grand Theft Auto San Andreas",purchase,1.0,0 -107743243,"Grand Theft Auto San Andreas",play,4.5,0 -107743243,"Heroes of Might & Magic V Tribes of the East",purchase,1.0,0 -107743243,"Heroes of Might & Magic V Tribes of the East",play,3.6,0 -107743243,"DayZ",purchase,1.0,0 -107743243,"DayZ",play,3.5,0 -107743243,"Rise of Nations Extended Edition",purchase,1.0,0 -107743243,"Rise of Nations Extended Edition",play,2.5,0 -107743243,"Call of Duty World at War",purchase,1.0,0 -107743243,"Call of Duty World at War",play,2.4,0 -107743243,"DRAKERZ-Confrontation",purchase,1.0,0 -107743243,"DRAKERZ-Confrontation",play,1.9,0 -107743243,"Left 4 Dead 2",purchase,1.0,0 -107743243,"Left 4 Dead 2",play,1.8,0 -107743243,"Counter-Strike Condition Zero",purchase,1.0,0 -107743243,"Counter-Strike Condition Zero",play,1.4,0 -107743243,"Counter-Strike Global Offensive",purchase,1.0,0 -107743243,"Counter-Strike Global Offensive",play,0.1,0 -107743243,"Grand Theft Auto IV",purchase,1.0,0 -107743243,"Grand Theft Auto IV",play,0.1,0 -107743243,"SkyDrift",purchase,1.0,0 -107743243,"SkyDrift",play,0.1,0 -107743243,"The Elder Scrolls Online Tamriel Unlimited",purchase,1.0,0 -107743243,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -107743243,"Company of Heroes",purchase,1.0,0 -107743243,"Company of Heroes Opposing Fronts",purchase,1.0,0 -107743243,"Company of Heroes Tales of Valor",purchase,1.0,0 -107743243,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -107743243,"Grand Theft Auto San Andreas",purchase,1.0,0 -107743243,"Loadout",purchase,1.0,0 -107743243,"Path of Exile",purchase,1.0,0 -107743243,"R.U.S.E.",purchase,1.0,0 -107743243,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -107743243,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -107743243,"The Lord of the Rings Online",purchase,1.0,0 -107743243,"The Mighty Quest For Epic Loot",purchase,1.0,0 -107743243,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -107743243,"Unturned",purchase,1.0,0 -245845321,"Dota 2",purchase,1.0,0 -245845321,"Dota 2",play,0.8,0 -245845321,"CrimeCraft GangWars",purchase,1.0,0 -245845321,"GunZ 2 The Second Duel",purchase,1.0,0 -245845321,"Heroes & Generals",purchase,1.0,0 -245845321,"Loadout",purchase,1.0,0 -245845321,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -106796307,"Counter-Strike Global Offensive",purchase,1.0,0 -106796307,"Counter-Strike Global Offensive",play,1305.0,0 -106796307,"Counter-Strike Source",purchase,1.0,0 -106796307,"Counter-Strike Source",play,520.0,0 -106796307,"Garry's Mod",purchase,1.0,0 -106796307,"Garry's Mod",play,34.0,0 -106796307,"Team Fortress 2",purchase,1.0,0 -106796307,"Team Fortress 2",play,28.0,0 -106796307,"Terraria",purchase,1.0,0 -106796307,"Terraria",play,11.7,0 -106796307,"Grand Theft Auto IV",purchase,1.0,0 -106796307,"Grand Theft Auto IV",play,9.6,0 -106796307,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -106796307,"Call of Duty Black Ops II - Multiplayer",play,7.8,0 -106796307,"Killing Floor",purchase,1.0,0 -106796307,"Killing Floor",play,5.1,0 -106796307,"Risk of Rain",purchase,1.0,0 -106796307,"Risk of Rain",play,4.3,0 -106796307,"Grand Theft Auto San Andreas",purchase,1.0,0 -106796307,"Grand Theft Auto San Andreas",play,3.0,0 -106796307,"Strife",purchase,1.0,0 -106796307,"Strife",play,2.8,0 -106796307,"SMITE",purchase,1.0,0 -106796307,"SMITE",play,2.6,0 -106796307,"GRID Autosport",purchase,1.0,0 -106796307,"GRID Autosport",play,2.3,0 -106796307,"Unturned",purchase,1.0,0 -106796307,"Unturned",play,2.2,0 -106796307,"The Binding of Isaac",purchase,1.0,0 -106796307,"The Binding of Isaac",play,2.1,0 -106796307,"Hotline Miami",purchase,1.0,0 -106796307,"Hotline Miami",play,2.1,0 -106796307,"TERA",purchase,1.0,0 -106796307,"TERA",play,2.1,0 -106796307,"H1Z1",purchase,1.0,0 -106796307,"H1Z1",play,1.9,0 -106796307,"Dino D-Day",purchase,1.0,0 -106796307,"Dino D-Day",play,1.9,0 -106796307,"Dota 2",purchase,1.0,0 -106796307,"Dota 2",play,1.5,0 -106796307,"Far Cry 3 Blood Dragon",purchase,1.0,0 -106796307,"Far Cry 3 Blood Dragon",play,1.4,0 -106796307,"The Elder Scrolls V Skyrim",purchase,1.0,0 -106796307,"The Elder Scrolls V Skyrim",play,1.4,0 -106796307,"Warframe",purchase,1.0,0 -106796307,"Warframe",play,1.4,0 -106796307,"PlanetSide 2",purchase,1.0,0 -106796307,"PlanetSide 2",play,1.3,0 -106796307,"Trine 2",purchase,1.0,0 -106796307,"Trine 2",play,1.3,0 -106796307,"Natural Selection 2",purchase,1.0,0 -106796307,"Natural Selection 2",play,1.3,0 -106796307,"God Mode",purchase,1.0,0 -106796307,"God Mode",play,1.2,0 -106796307,"DLC Quest",purchase,1.0,0 -106796307,"DLC Quest",play,1.1,0 -106796307,"Cry of Fear",purchase,1.0,0 -106796307,"Cry of Fear",play,1.1,0 -106796307,"Bloodline Champions",purchase,1.0,0 -106796307,"Bloodline Champions",play,1.1,0 -106796307,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -106796307,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,1.0,0 -106796307,"Darksiders",purchase,1.0,0 -106796307,"Darksiders",play,1.0,0 -106796307,"Crysis",purchase,1.0,0 -106796307,"Crysis",play,0.9,0 -106796307,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -106796307,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.9,0 -106796307,"Left 4 Dead 2",purchase,1.0,0 -106796307,"Left 4 Dead 2",play,0.8,0 -106796307,"Star Trek",purchase,1.0,0 -106796307,"Star Trek",play,0.8,0 -106796307,"Sniper Elite V2",purchase,1.0,0 -106796307,"Sniper Elite V2",play,0.8,0 -106796307,"Spelunky",purchase,1.0,0 -106796307,"Spelunky",play,0.7,0 -106796307,"Nosgoth",purchase,1.0,0 -106796307,"Nosgoth",play,0.5,0 -106796307,"Portal 2",purchase,1.0,0 -106796307,"Portal 2",play,0.4,0 -106796307,"Dirty Bomb",purchase,1.0,0 -106796307,"Dirty Bomb",play,0.3,0 -106796307,"BRINK",purchase,1.0,0 -106796307,"BRINK",play,0.3,0 -106796307,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -106796307,"Red Orchestra Ostfront 41-45",play,0.2,0 -106796307,"Heroes & Generals",purchase,1.0,0 -106796307,"Heroes & Generals",play,0.1,0 -106796307,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -106796307,"Darkest Hour Europe '44-'45",purchase,1.0,0 -106796307,"Call of Duty Black Ops II",purchase,1.0,0 -106796307,"Clicker Heroes",purchase,1.0,0 -106796307,"Crysis 2 Maximum Edition",purchase,1.0,0 -106796307,"Crysis Warhead",purchase,1.0,0 -106796307,"Crysis Wars",purchase,1.0,0 -106796307,"Dead Island Epidemic",purchase,1.0,0 -106796307,"Dragon's Prophet (EU)",purchase,1.0,0 -106796307,"Grand Theft Auto San Andreas",purchase,1.0,0 -106796307,"H1Z1 Test Server",purchase,1.0,0 -106796307,"Hazard Ops",purchase,1.0,0 -106796307,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -106796307,"Mare Nostrum",purchase,1.0,0 -106796307,"Metro 2033",purchase,1.0,0 -106796307,"Modular Combat",purchase,1.0,0 -106796307,"No More Room in Hell",purchase,1.0,0 -106796307,"Path of Exile",purchase,1.0,0 -106796307,"Rise of Incarnates",purchase,1.0,0 -106796307,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -106796307,"sZone-Online",purchase,1.0,0 -106796307,"Warface",purchase,1.0,0 -106796307,"War Thunder",purchase,1.0,0 -110304379,"Fallout New Vegas",purchase,1.0,0 -110304379,"Fallout New Vegas",play,33.0,0 -110304379,"Team Fortress 2",purchase,1.0,0 -110304379,"Team Fortress 2",play,5.1,0 -110304379,"Age of Chivalry",purchase,1.0,0 -110304379,"Age of Chivalry",play,2.7,0 -110304379,"Haunted Memories",purchase,1.0,0 -110304379,"Haunted Memories",play,0.2,0 -110304379,"DCS World",purchase,1.0,0 -110304379,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -110304379,"Fallout New Vegas Dead Money",purchase,1.0,0 -110304379,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -156440750,"Outlast",purchase,1.0,0 -156440750,"Outlast",play,12.6,0 -156440750,"Amnesia The Dark Descent",purchase,1.0,0 -156440750,"Amnesia The Dark Descent",play,8.6,0 -156440750,"Duck Game",purchase,1.0,0 -156440750,"Duck Game",play,7.9,0 -156440750,"Dirty Bomb",purchase,1.0,0 -156440750,"Dirty Bomb",play,0.3,0 -156440750,"Outlast Whistleblower DLC",purchase,1.0,0 -173692133,"Dota 2",purchase,1.0,0 -173692133,"Dota 2",play,8.5,0 -255148277,"Team Fortress 2",purchase,1.0,0 -255148277,"Team Fortress 2",play,0.6,0 -255148277,"Source Filmmaker",purchase,1.0,0 -255148277,"Source Filmmaker",play,0.1,0 -255148277,"Dirty Bomb",purchase,1.0,0 -27029121,"Counter-Strike Source",purchase,1.0,0 -27029121,"Counter-Strike Source",play,0.3,0 -27029121,"Day of Defeat Source",purchase,1.0,0 -27029121,"Day of Defeat Source",play,0.1,0 -27029121,"Half-Life 2 Deathmatch",purchase,1.0,0 -27029121,"Half-Life 2 Lost Coast",purchase,1.0,0 -158891314,"Total War SHOGUN 2",purchase,1.0,0 -158891314,"Total War SHOGUN 2",play,35.0,0 -158891314,"Age of Empires II HD Edition",purchase,1.0,0 -158891314,"Age of Empires II HD Edition",play,31.0,0 -158891314,"Wargame AirLand Battle",purchase,1.0,0 -158891314,"Wargame AirLand Battle",play,2.4,0 -158891314,"Hearts of Iron III",purchase,1.0,0 -158891314,"Hearts of Iron III",play,0.9,0 -158891314,"War Thunder",purchase,1.0,0 -158891314,"War Thunder",play,0.7,0 -158891314,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -158959728,"Dota 2",purchase,1.0,0 -158959728,"Dota 2",play,3.7,0 -227811695,"Dota 2",purchase,1.0,0 -227811695,"Dota 2",play,308.0,0 -227811695,"Trove",purchase,1.0,0 -227811695,"Trove",play,2.1,0 -227811695,"Unturned",purchase,1.0,0 -227811695,"Unturned",play,1.1,0 -227811695,"Mortal Kombat Legacy II - Ep. 8 Scorpion and Sub-Zero (Part 2)",purchase,1.0,0 -227811695,"Free to Play",purchase,1.0,0 -227811695,"Mortal Kombat Legacy II - Ep. 7 Scorpion and Sub-Zero (Part 1)",purchase,1.0,0 -227811695,"Mortal Kombat Legacy II - Ep. 10 Liu Kang and Kung Lao",purchase,1.0,0 -227811695,"Arcane Saga Online",purchase,1.0,0 -227811695,"Archeblade",purchase,1.0,0 -227811695,"Brick-Force",purchase,1.0,0 -227811695,"Cannons Lasers Rockets",purchase,1.0,0 -227811695,"Dead Island Epidemic",purchase,1.0,0 -227811695,"Defiance",purchase,1.0,0 -227811695,"Dungeons & Dragons Online",purchase,1.0,0 -227811695,"Dystopia",purchase,1.0,0 -227811695,"Everlasting Summer",purchase,1.0,0 -227811695,"GunZ 2 The Second Duel",purchase,1.0,0 -227811695,"HAWKEN",purchase,1.0,0 -227811695,"Heroes & Generals",purchase,1.0,0 -227811695,"Neverwinter",purchase,1.0,0 -227811695,"Nosgoth",purchase,1.0,0 -227811695,"Pirates, Vikings, & Knights II",purchase,1.0,0 -227811695,"Prime World",purchase,1.0,0 -227811695,"RaiderZ",purchase,1.0,0 -227811695,"RIFT",purchase,1.0,0 -227811695,"Star Conflict",purchase,1.0,0 -227811695,"The Lord of the Rings Online",purchase,1.0,0 -227811695,"Transformice",purchase,1.0,0 -227811695,"Warframe",purchase,1.0,0 -227811695,"War Thunder",purchase,1.0,0 -63993064,"Football Manager 2014",purchase,1.0,0 -63993064,"Football Manager 2014",play,242.0,0 -63993064,"Sid Meier's Civilization V",purchase,1.0,0 -63993064,"Sid Meier's Civilization V",play,7.0,0 -63993064,"Dota 2",purchase,1.0,0 -63993064,"Dota 2",play,0.5,0 -29962674,"Counter-Strike Condition Zero",purchase,1.0,0 -29962674,"Counter-Strike Condition Zero",play,0.2,0 -29962674,"Counter-Strike",purchase,1.0,0 -29962674,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -29962674,"Day of Defeat",purchase,1.0,0 -29962674,"Deathmatch Classic",purchase,1.0,0 -29962674,"Ricochet",purchase,1.0,0 -302614540,"Back to Dinosaur Island ",purchase,1.0,0 -145275657,"The Jackbox Party Pack",purchase,1.0,0 -145275657,"The Jackbox Party Pack",play,409.0,0 -145275657,"Hotline Miami",purchase,1.0,0 -145275657,"Hotline Miami",play,7.4,0 -145275657,"Left 4 Dead 2",purchase,1.0,0 -145275657,"Left 4 Dead 2",play,1.8,0 -145275657,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -145275657,"Max Payne 2 The Fall of Max Payne",play,0.3,0 -145275657,"Max Payne",purchase,1.0,0 -145275657,"Peggle Extreme",purchase,1.0,0 -283814678,"Dota 2",purchase,1.0,0 -283814678,"Dota 2",play,432.0,0 -214980969,"Dota 2",purchase,1.0,0 -214980969,"Dota 2",play,6.6,0 -214980969,"TERA",purchase,1.0,0 -214980969,"TERA",play,0.2,0 -207208914,"This War of Mine",purchase,1.0,0 -207208914,"This War of Mine",play,54.0,0 -207208914,"The Vanishing of Ethan Carter",purchase,1.0,0 -207208914,"The Vanishing of Ethan Carter",play,23.0,0 -207208914,"Grim Fandango Remastered",purchase,1.0,0 -207208914,"Grim Fandango Remastered",play,7.5,0 -207208914,"Commandos 2 Men of Courage",purchase,1.0,0 -207208914,"Machinarium",purchase,1.0,0 -207208914,"Syberia",purchase,1.0,0 -207208914,"Syberia 2",purchase,1.0,0 -207208914,"The Vanishing of Ethan Carter Redux",purchase,1.0,0 -207208914,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",purchase,1.0,0 -191923237,"America's Army Proving Grounds",purchase,1.0,0 -191923237,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -191923237,"Unturned",purchase,1.0,0 -191923237,"Warframe",purchase,1.0,0 -37026839,"Day of Defeat",purchase,1.0,0 -37026839,"Day of Defeat",play,47.0,0 -37026839,"Counter-Strike",purchase,1.0,0 -37026839,"Counter-Strike",play,1.0,0 -37026839,"Counter-Strike Condition Zero",purchase,1.0,0 -37026839,"Counter-Strike Condition Zero",play,0.9,0 -37026839,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -37026839,"Deathmatch Classic",purchase,1.0,0 -37026839,"Ricochet",purchase,1.0,0 -53826748,"Left 4 Dead",purchase,1.0,0 -53826748,"Left 4 Dead",play,6.9,0 -122579249,"LEGO Batman The Videogame",purchase,1.0,0 -122579249,"LEGO Batman The Videogame",play,0.1,0 -97475059,"Hard Reset",purchase,1.0,0 -97475059,"Hard Reset Exile DLC",purchase,1.0,0 -97475059,"Serious Sam 3 BFE",purchase,1.0,0 -232948950,"Dota 2",purchase,1.0,0 -232948950,"Dota 2",play,0.6,0 -136253839,"Team Fortress 2",purchase,1.0,0 -136253839,"Team Fortress 2",play,0.3,0 -187632582,"Dota 2",purchase,1.0,0 -187632582,"Dota 2",play,0.6,0 -94297466,"Football Manager 2012",purchase,1.0,0 -94297466,"Football Manager 2012",play,553.0,0 -94297466,"Football Manager 2014",purchase,1.0,0 -94297466,"Football Manager 2014",play,21.0,0 -94297466,"Pinball FX2",purchase,1.0,0 -177018855,"Team Fortress 2",purchase,1.0,0 -177018855,"Team Fortress 2",play,415.0,0 -242982357,"Dota 2",purchase,1.0,0 -242982357,"Dota 2",play,199.0,0 -75938123,"Sid Meier's Civilization V",purchase,1.0,0 -75938123,"Sid Meier's Civilization V",play,0.4,0 -152867378,"Dota 2",purchase,1.0,0 -152867378,"Dota 2",play,39.0,0 -202480747,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -202480747,"Tom Clancy's Ghost Recon Phantoms - EU",play,3.4,0 -202480747,"Team Fortress 2",purchase,1.0,0 -202480747,"Team Fortress 2",play,0.7,0 -112365658,"Insurgency Modern Infantry Combat",purchase,1.0,0 -112365658,"Insurgency Modern Infantry Combat",play,2.1,0 -112365658,"Dota 2",purchase,1.0,0 -112365658,"Dota 2",play,0.5,0 -112365658,"Rise of Incarnates",purchase,1.0,0 -62784536,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -62784536,"Call of Duty Modern Warfare 2 - Multiplayer",play,137.0,0 -62784536,"Call of Duty Modern Warfare 2",purchase,1.0,0 -62784536,"Call of Duty Modern Warfare 2",play,28.0,0 -279523978,"Team Fortress 2",purchase,1.0,0 -279523978,"Team Fortress 2",play,0.8,0 -114730998,"Team Fortress 2",purchase,1.0,0 -114730998,"Team Fortress 2",play,2.8,0 -35849335,"Half-Life 2 Episode Two",purchase,1.0,0 -35849335,"Half-Life 2 Episode Two",play,10.1,0 -35849335,"Half-Life 2",purchase,1.0,0 -35849335,"Half-Life 2",play,5.9,0 -35849335,"Half-Life 2 Lost Coast",purchase,1.0,0 -35849335,"Half-Life 2 Lost Coast",play,0.5,0 -35849335,"Half-Life 2 Episode One",purchase,1.0,0 -35849335,"Portal",purchase,1.0,0 -180618704,"Team Fortress 2",purchase,1.0,0 -180618704,"Team Fortress 2",play,0.2,0 -8978697,"Counter-Strike",purchase,1.0,0 -8978697,"Day of Defeat",purchase,1.0,0 -8978697,"Deathmatch Classic",purchase,1.0,0 -8978697,"Half-Life",purchase,1.0,0 -8978697,"Half-Life Blue Shift",purchase,1.0,0 -8978697,"Half-Life Opposing Force",purchase,1.0,0 -8978697,"Ricochet",purchase,1.0,0 -8978697,"Team Fortress Classic",purchase,1.0,0 -6928806,"Dota 2",purchase,1.0,0 -6928806,"Dota 2",play,702.0,0 -6928806,"PAYDAY 2",purchase,1.0,0 -6928806,"PAYDAY 2",play,55.0,0 -6928806,"Sid Meier's Civilization IV",purchase,1.0,0 -6928806,"Sid Meier's Civilization IV",play,39.0,0 -6928806,"Batman Arkham City GOTY",purchase,1.0,0 -6928806,"Batman Arkham City GOTY",play,39.0,0 -6928806,"BioShock Infinite",purchase,1.0,0 -6928806,"BioShock Infinite",play,37.0,0 -6928806,"L.A. Noire",purchase,1.0,0 -6928806,"L.A. Noire",play,29.0,0 -6928806,"Bully Scholarship Edition",purchase,1.0,0 -6928806,"Bully Scholarship Edition",play,11.4,0 -6928806,"Saints Row The Third",purchase,1.0,0 -6928806,"Saints Row The Third",play,9.1,0 -6928806,"Counter-Strike Source",purchase,1.0,0 -6928806,"Counter-Strike Source",play,7.3,0 -6928806,"Age of Empires II HD Edition",purchase,1.0,0 -6928806,"Age of Empires II HD Edition",play,4.8,0 -6928806,"Left 4 Dead 2",purchase,1.0,0 -6928806,"Left 4 Dead 2",play,4.6,0 -6928806,"Counter-Strike Global Offensive",purchase,1.0,0 -6928806,"Counter-Strike Global Offensive",play,4.6,0 -6928806,"Sniper Elite V2",purchase,1.0,0 -6928806,"Sniper Elite V2",play,3.0,0 -6928806,"Fallout 3",purchase,1.0,0 -6928806,"Fallout 3",play,2.4,0 -6928806,"Total War ROME II - Emperor Edition",purchase,1.0,0 -6928806,"Total War ROME II - Emperor Edition",play,2.3,0 -6928806,"Archeblade",purchase,1.0,0 -6928806,"Archeblade",play,1.6,0 -6928806,"Grand Theft Auto San Andreas",purchase,1.0,0 -6928806,"Grand Theft Auto San Andreas",play,1.5,0 -6928806,"Grand Theft Auto IV",purchase,1.0,0 -6928806,"Grand Theft Auto IV",play,1.4,0 -6928806,"Titan Quest",purchase,1.0,0 -6928806,"Titan Quest",play,0.5,0 -6928806,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -6928806,"Dragon Age Origins - Ultimate Edition",play,0.2,0 -6928806,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -6928806,"Saints Row IV",purchase,1.0,0 -6928806,"Titan Quest Immortal Throne",purchase,1.0,0 -6928806,"Counter-Strike",purchase,1.0,0 -6928806,"Day of Defeat",purchase,1.0,0 -6928806,"Deathmatch Classic",purchase,1.0,0 -6928806,"Grand Theft Auto San Andreas",purchase,1.0,0 -6928806,"Half-Life",purchase,1.0,0 -6928806,"Half-Life Blue Shift",purchase,1.0,0 -6928806,"Half-Life Opposing Force",purchase,1.0,0 -6928806,"LEGO The Lord of the Rings",purchase,1.0,0 -6928806,"Ricochet",purchase,1.0,0 -6928806,"Sid Meier's Civilization IV",purchase,1.0,0 -6928806,"Team Fortress Classic",purchase,1.0,0 -220568686,"Counter-Strike Global Offensive",purchase,1.0,0 -220568686,"Counter-Strike Global Offensive",play,108.0,0 -220568686,"Dota 2",purchase,1.0,0 -220568686,"Dota 2",play,36.0,0 -220568686,"Golden Rush",purchase,1.0,0 -220568686,"Golden Rush",play,0.2,0 -220568686,"FreeStyle2 Street Basketball",purchase,1.0,0 -220568686,"FreeStyle2 Street Basketball",play,0.2,0 -216785107,"Rust",purchase,1.0,0 -216785107,"Rust",play,242.0,0 -216785107,"Magicka Wizard Wars",purchase,1.0,0 -216785107,"Magicka Wizard Wars",play,97.0,0 -216785107,"Mount & Blade Warband",purchase,1.0,0 -216785107,"Mount & Blade Warband",play,91.0,0 -216785107,"War Thunder",purchase,1.0,0 -216785107,"War Thunder",play,87.0,0 -216785107,"Path of Exile",purchase,1.0,0 -216785107,"Path of Exile",play,47.0,0 -216785107,"Fistful of Frags",purchase,1.0,0 -216785107,"Fistful of Frags",play,39.0,0 -216785107,"AdVenture Capitalist",purchase,1.0,0 -216785107,"AdVenture Capitalist",play,39.0,0 -216785107,"Besiege",purchase,1.0,0 -216785107,"Besiege",play,29.0,0 -216785107,"Age of Empires III Complete Collection",purchase,1.0,0 -216785107,"Age of Empires III Complete Collection",play,28.0,0 -216785107,"Stranded Deep",purchase,1.0,0 -216785107,"Stranded Deep",play,15.2,0 -216785107,"Unturned",purchase,1.0,0 -216785107,"Unturned",play,14.9,0 -216785107,"Survarium",purchase,1.0,0 -216785107,"Survarium",play,14.2,0 -216785107,"No More Room in Hell",purchase,1.0,0 -216785107,"No More Room in Hell",play,12.0,0 -216785107,"Gear Up",purchase,1.0,0 -216785107,"Gear Up",play,9.4,0 -216785107,"WARMODE",purchase,1.0,0 -216785107,"WARMODE",play,8.2,0 -216785107,"Heroes & Generals",purchase,1.0,0 -216785107,"Heroes & Generals",play,7.9,0 -216785107,"Far Cry",purchase,1.0,0 -216785107,"Far Cry",play,4.4,0 -216785107,"theHunter",purchase,1.0,0 -216785107,"theHunter",play,3.2,0 -216785107,"Tropico 5",purchase,1.0,0 -216785107,"Tropico 5",play,2.9,0 -216785107,"PlanetSide 2",purchase,1.0,0 -216785107,"PlanetSide 2",play,1.2,0 -216785107,"Team Fortress 2",purchase,1.0,0 -216785107,"Team Fortress 2",play,1.2,0 -216785107,"Dota 2",purchase,1.0,0 -216785107,"Dota 2",play,0.2,0 -216785107,"Apotheon Arena",purchase,1.0,0 -216785107,"Apotheon Arena",play,0.2,0 -216785107,"Loadout",purchase,1.0,0 -216785107,"Nosgoth",purchase,1.0,0 -216785107,"Aftermath",purchase,1.0,0 -216785107,"Tribes Ascend",purchase,1.0,0 -153593157,"Dota 2",purchase,1.0,0 -153593157,"Dota 2",play,764.0,0 -153593157,"Ragnarok Online 2",purchase,1.0,0 -113544961,"ARK Survival Evolved",purchase,1.0,0 -113544961,"ARK Survival Evolved",play,82.0,0 -113544961,"Torchlight II",purchase,1.0,0 -113544961,"Torchlight II",play,36.0,0 -113544961,"Robocraft",purchase,1.0,0 -113544961,"Robocraft",play,32.0,0 -113544961,"Guns of Icarus Online",purchase,1.0,0 -113544961,"Guns of Icarus Online",play,31.0,0 -113544961,"Risk of Rain",purchase,1.0,0 -113544961,"Risk of Rain",play,21.0,0 -113544961,"Natural Selection 2",purchase,1.0,0 -113544961,"Natural Selection 2",play,8.3,0 -113544961,"Magicka",purchase,1.0,0 -113544961,"Magicka",play,6.2,0 -113544961,"Dota 2",purchase,1.0,0 -113544961,"Dota 2",play,4.0,0 -113544961,"Hammerwatch",purchase,1.0,0 -113544961,"Hammerwatch",play,0.9,0 -113544961,"Shadowrun Returns",purchase,1.0,0 -113544961,"Shadowrun Returns",play,0.4,0 -113544961,"Realm of the Mad God",purchase,1.0,0 -113544961,"Realm of the Mad God",play,0.1,0 -113544961,"Amnesia A Machine for Pigs",purchase,1.0,0 -113544961,"Insanely Twisted Shadow Planet",purchase,1.0,0 -113544961,"Jazzpunk",purchase,1.0,0 -113544961,"King Arthur's Gold",purchase,1.0,0 -113544961,"OlliOlli",purchase,1.0,0 -113544961,"Teleglitch Die More Edition",purchase,1.0,0 -113544961,"Tower of Guns",purchase,1.0,0 -202516861,"Dota 2",purchase,1.0,0 -202516861,"Dota 2",play,43.0,0 -106980036,"Counter-Strike Global Offensive",purchase,1.0,0 -106980036,"Counter-Strike Global Offensive",play,451.0,0 -106980036,"Sid Meier's Civilization V",purchase,1.0,0 -106980036,"Sid Meier's Civilization V",play,44.0,0 -106980036,"Prison Architect",purchase,1.0,0 -106980036,"Prison Architect",play,21.0,0 -106980036,"Dota 2",purchase,1.0,0 -106980036,"Dota 2",play,20.0,0 -106980036,"Cities Skylines",purchase,1.0,0 -106980036,"Cities Skylines",play,18.9,0 -106980036,"Train Fever",purchase,1.0,0 -106980036,"Train Fever",play,18.8,0 -106980036,"The Elder Scrolls V Skyrim",purchase,1.0,0 -106980036,"The Elder Scrolls V Skyrim",play,16.7,0 -106980036,"ARK Survival Evolved",purchase,1.0,0 -106980036,"ARK Survival Evolved",play,16.5,0 -106980036,"Farming Simulator 15",purchase,1.0,0 -106980036,"Farming Simulator 15",play,15.5,0 -106980036,"Dungeon Defenders",purchase,1.0,0 -106980036,"Dungeon Defenders",play,15.3,0 -106980036,"Elite Dangerous",purchase,1.0,0 -106980036,"Elite Dangerous",play,14.8,0 -106980036,"Robocraft",purchase,1.0,0 -106980036,"Robocraft",play,13.9,0 -106980036,"Game Dev Tycoon",purchase,1.0,0 -106980036,"Game Dev Tycoon",play,13.7,0 -106980036,"Clicker Heroes",purchase,1.0,0 -106980036,"Clicker Heroes",play,10.0,0 -106980036,"Saints Row IV",purchase,1.0,0 -106980036,"Saints Row IV",play,9.2,0 -106980036,"Besiege",purchase,1.0,0 -106980036,"Besiege",play,7.5,0 -106980036,"Total War SHOGUN 2",purchase,1.0,0 -106980036,"Total War SHOGUN 2",play,6.8,0 -106980036,"Eador. Masters of the Broken World",purchase,1.0,0 -106980036,"Eador. Masters of the Broken World",play,6.5,0 -106980036,"Stonehearth",purchase,1.0,0 -106980036,"Stonehearth",play,6.5,0 -106980036,"DRAGON BALL XENOVERSE",purchase,1.0,0 -106980036,"DRAGON BALL XENOVERSE",play,5.3,0 -106980036,"Age of Empires II HD Edition",purchase,1.0,0 -106980036,"Age of Empires II HD Edition",play,4.4,0 -106980036,"H1Z1",purchase,1.0,0 -106980036,"H1Z1",play,4.4,0 -106980036,"Team Fortress 2",purchase,1.0,0 -106980036,"Team Fortress 2",play,4.3,0 -106980036,"Path of Exile",purchase,1.0,0 -106980036,"Path of Exile",play,4.0,0 -106980036,"Portal",purchase,1.0,0 -106980036,"Portal",play,2.8,0 -106980036,"Car Mechanic Simulator 2014",purchase,1.0,0 -106980036,"Car Mechanic Simulator 2014",play,2.3,0 -106980036,"Reus",purchase,1.0,0 -106980036,"Reus",play,2.2,0 -106980036,"Audiosurf 2",purchase,1.0,0 -106980036,"Audiosurf 2",play,1.2,0 -106980036,"Goat Simulator",purchase,1.0,0 -106980036,"Goat Simulator",play,0.4,0 -106980036,"Garry's Mod",purchase,1.0,0 -106980036,"Garry's Mod",play,0.1,0 -106980036,"America's Army Proving Grounds",purchase,1.0,0 -106980036,"H1Z1 Test Server",purchase,1.0,0 -106980036,"Neverwinter",purchase,1.0,0 -106980036,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -106980036,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -106980036,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -106980036,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -106980036,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -106980036,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -106980036,"Trove",purchase,1.0,0 -172135798,"Company of Heroes (New Steam Version)",purchase,1.0,0 -172135798,"Company of Heroes (New Steam Version)",play,63.0,0 -172135798,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -172135798,"Warhammer 40,000 Dawn of War Winter Assault",play,19.9,0 -172135798,"Company of Heroes",purchase,1.0,0 -172135798,"Company of Heroes",play,19.5,0 -172135798,"The Escapists",purchase,1.0,0 -172135798,"The Escapists",play,6.0,0 -172135798,"Europa Universalis IV",purchase,1.0,0 -172135798,"Europa Universalis IV",play,4.7,0 -172135798,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -172135798,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,1.0,0 -172135798,"Championship Manager 2008",purchase,1.0,0 -172135798,"Championship Manager 2008",play,0.4,0 -172135798,"Company of Heroes Opposing Fronts",purchase,1.0,0 -172135798,"Company of Heroes Tales of Valor",purchase,1.0,0 -224624355,"Dota 2",purchase,1.0,0 -224624355,"Dota 2",play,19.6,0 -237911985,"Dota 2",purchase,1.0,0 -237911985,"Dota 2",play,0.6,0 -162068651,"South Park The Stick of Truth",purchase,1.0,0 -162068651,"South Park The Stick of Truth",play,52.0,0 -162068651,"Alan Wake",purchase,1.0,0 -162068651,"Alan Wake",play,25.0,0 -162068651,"Alan Wake's American Nightmare",purchase,1.0,0 -162068651,"Alan Wake's American Nightmare",play,9.9,0 -162068651,"Amnesia A Machine for Pigs",purchase,1.0,0 -162068651,"Amnesia A Machine for Pigs",play,8.2,0 -162068651,"The Stanley Parable",purchase,1.0,0 -162068651,"The Stanley Parable",play,4.2,0 -162068651,"Angry Video Game Nerd Adventures",purchase,1.0,0 -162068651,"Angry Video Game Nerd Adventures",play,0.7,0 -133688603,"Farming Simulator 2013",purchase,1.0,0 -133688603,"Farming Simulator 2013",play,13.8,0 -94019469,"ARK Survival Evolved",purchase,1.0,0 -94019469,"ARK Survival Evolved",play,491.0,0 -94019469,"The Elder Scrolls V Skyrim",purchase,1.0,0 -94019469,"The Elder Scrolls V Skyrim",play,19.7,0 -94019469,"RIFT",purchase,1.0,0 -94019469,"RIFT",play,16.5,0 -94019469,"Dota 2",purchase,1.0,0 -94019469,"Dota 2",play,11.5,0 -94019469,"Magic Duels",purchase,1.0,0 -94019469,"Magic Duels",play,5.8,0 -94019469,"Warface",purchase,1.0,0 -94019469,"Warface",play,3.3,0 -94019469,"Heroes & Generals",purchase,1.0,0 -94019469,"Heroes & Generals",play,2.7,0 -94019469,"Survarium",purchase,1.0,0 -94019469,"Survarium",play,2.7,0 -94019469,"Star Conflict",purchase,1.0,0 -94019469,"Star Conflict",play,0.8,0 -94019469,"Blender 2.76b",purchase,1.0,0 -94019469,"Blender 2.76b",play,0.3,0 -94019469,"Aftermath",purchase,1.0,0 -94019469,"R.U.S.E",purchase,1.0,0 -94019469,"R.U.S.E.",purchase,1.0,0 -94019469,"Sins of a Dark Age",purchase,1.0,0 -211267002,"Elsword",purchase,1.0,0 -211267002,"Unturned",purchase,1.0,0 -216278473,"Dota 2",purchase,1.0,0 -216278473,"Dota 2",play,201.0,0 -216278473,"APB Reloaded",purchase,1.0,0 -216278473,"Combat Monsters",purchase,1.0,0 -216278473,"Spartans Vs Zombies Defense",purchase,1.0,0 -199841615,"Dota 2",purchase,1.0,0 -199841615,"Dota 2",play,1325.0,0 -199841615,"Grand Theft Auto V",purchase,1.0,0 -199841615,"Grand Theft Auto V",play,36.0,0 -164772402,"Spec Ops The Line",purchase,1.0,0 -164772402,"Spec Ops The Line",play,0.7,0 -140256783,"Dota 2",purchase,1.0,0 -140256783,"Dota 2",play,4.3,0 -247884568,"Dota 2",purchase,1.0,0 -247884568,"Dota 2",play,0.4,0 -111097037,"Dota 2",purchase,1.0,0 -111097037,"Dota 2",play,1.0,0 -297921685,"Dota 2",purchase,1.0,0 -297921685,"Dota 2",play,3.2,0 -113794086,"Counter-Strike Global Offensive",purchase,1.0,0 -113794086,"Counter-Strike Global Offensive",play,43.0,0 -113794086,"Alien Swarm",purchase,1.0,0 -113794086,"Alien Swarm",play,0.7,0 -73305545,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -73305545,"Game of Thrones - A Telltale Games Series",play,35.0,0 -73305545,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -73305545,"Call of Duty Black Ops - Multiplayer",play,29.0,0 -73305545,"Call of Duty Black Ops",purchase,1.0,0 -73305545,"Call of Duty Black Ops",play,17.4,0 -73305545,"Fallout 4",purchase,1.0,0 -73305545,"Fallout 4",play,2.1,0 -73305545,"State of Decay Year-One",purchase,1.0,0 -170932173,"Team Fortress 2",purchase,1.0,0 -170932173,"Team Fortress 2",play,0.8,0 -296514965,"Team Fortress 2",purchase,1.0,0 -296514965,"Team Fortress 2",play,0.4,0 -59205262,"Counter-Strike Source",purchase,1.0,0 -59205262,"Counter-Strike Source",play,246.0,0 -59205262,"The Elder Scrolls V Skyrim",purchase,1.0,0 -59205262,"The Elder Scrolls V Skyrim",play,52.0,0 -59205262,"Grand Theft Auto V",purchase,1.0,0 -59205262,"Grand Theft Auto V",play,27.0,0 -59205262,"Planetary Annihilation",purchase,1.0,0 -59205262,"Planetary Annihilation",play,22.0,0 -59205262,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -59205262,"Call of Duty Black Ops - Multiplayer",play,17.5,0 -59205262,"Middle-earth Shadow of Mordor",purchase,1.0,0 -59205262,"Middle-earth Shadow of Mordor",play,17.5,0 -59205262,"Thief",purchase,1.0,0 -59205262,"Thief",play,16.1,0 -59205262,"BioShock Infinite",purchase,1.0,0 -59205262,"BioShock Infinite",play,12.5,0 -59205262,"BioShock 2",purchase,1.0,0 -59205262,"BioShock 2",play,10.6,0 -59205262,"Call of Duty Black Ops",purchase,1.0,0 -59205262,"Call of Duty Black Ops",play,10.5,0 -59205262,"The Forest",purchase,1.0,0 -59205262,"The Forest",play,7.5,0 -59205262,"Counter-Strike Global Offensive",purchase,1.0,0 -59205262,"Counter-Strike Global Offensive",play,6.7,0 -59205262,"Portal",purchase,1.0,0 -59205262,"Portal",play,6.5,0 -59205262,"BioShock",purchase,1.0,0 -59205262,"BioShock",play,5.5,0 -59205262,"Age of Empires II HD Edition",purchase,1.0,0 -59205262,"Age of Empires II HD Edition",play,3.4,0 -59205262,"Time Clickers",purchase,1.0,0 -59205262,"Time Clickers",play,2.7,0 -59205262,"The Stanley Parable",purchase,1.0,0 -59205262,"The Stanley Parable",play,0.9,0 -59205262,"Alien Swarm",purchase,1.0,0 -59205262,"Alien Swarm",play,0.3,0 -59205262,"Day of Defeat Source",purchase,1.0,0 -59205262,"Day of Defeat Source",play,0.1,0 -59205262,"Half-Life 2 Deathmatch",purchase,1.0,0 -59205262,"Half-Life 2 Lost Coast",purchase,1.0,0 -246969153,"Dota 2",purchase,1.0,0 -246969153,"Dota 2",play,2.5,0 -146594813,"Counter-Strike Global Offensive",purchase,1.0,0 -146594813,"Counter-Strike Global Offensive",play,248.0,0 -146594813,"Dota 2",purchase,1.0,0 -146594813,"Dota 2",play,3.0,0 -146594813,"PAYDAY The Heist",purchase,1.0,0 -146594813,"PAYDAY The Heist",play,1.1,0 -153747813,"Dota 2",purchase,1.0,0 -153747813,"Dota 2",play,0.4,0 -233135465,"Unturned",purchase,1.0,0 -233135465,"Unturned",play,3.8,0 -128135136,"RACE 07",purchase,1.0,0 -128135136,"RACE 07",play,22.0,0 -128135136,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -171315014,"Dota 2",purchase,1.0,0 -171315014,"Dota 2",play,301.0,0 -171315014,"Unturned",purchase,1.0,0 -171315014,"Unturned",play,43.0,0 -171315014,"Counter-Strike Global Offensive",purchase,1.0,0 -171315014,"Counter-Strike Global Offensive",play,21.0,0 -171315014,"DiggerOnline",purchase,1.0,0 -171315014,"DiggerOnline",play,1.7,0 -171315014,"Batla",purchase,1.0,0 -171315014,"Batla",play,0.3,0 -307288211,"Unturned",purchase,1.0,0 -307288211,"Unturned",play,37.0,0 -307288211,"Team Fortress 2",purchase,1.0,0 -307288211,"Team Fortress 2",play,0.9,0 -23225650,"Marvel Heroes 2015",purchase,1.0,0 -23225650,"Marvel Heroes 2015",play,331.0,0 -23225650,"The Secret World",purchase,1.0,0 -23225650,"The Secret World",play,69.0,0 -23225650,"The Witcher 3 Wild Hunt",purchase,1.0,0 -23225650,"The Witcher 3 Wild Hunt",play,51.0,0 -23225650,"Hitman Absolution",purchase,1.0,0 -23225650,"Hitman Absolution",play,20.0,0 -23225650,"Dragon Age Origins",purchase,1.0,0 -23225650,"Dragon Age Origins",play,19.7,0 -23225650,"The Elder Scrolls V Skyrim",purchase,1.0,0 -23225650,"The Elder Scrolls V Skyrim",play,18.8,0 -23225650,"Craft The World",purchase,1.0,0 -23225650,"Craft The World",play,14.8,0 -23225650,"Tomb Raider",purchase,1.0,0 -23225650,"Tomb Raider",play,14.1,0 -23225650,"Counter-Strike Source",purchase,1.0,0 -23225650,"Counter-Strike Source",play,13.0,0 -23225650,"Dishonored",purchase,1.0,0 -23225650,"Dishonored",play,12.5,0 -23225650,"Neverwinter",purchase,1.0,0 -23225650,"Neverwinter",play,11.4,0 -23225650,"Fallout 4",purchase,1.0,0 -23225650,"Fallout 4",play,10.6,0 -23225650,"Chivalry Medieval Warfare",purchase,1.0,0 -23225650,"Chivalry Medieval Warfare",play,10.4,0 -23225650,"Dungeons 2",purchase,1.0,0 -23225650,"Dungeons 2",play,10.1,0 -23225650,"XCOM Enemy Unknown",purchase,1.0,0 -23225650,"XCOM Enemy Unknown",play,8.5,0 -23225650,"Middle-earth Shadow of Mordor",purchase,1.0,0 -23225650,"Middle-earth Shadow of Mordor",play,7.4,0 -23225650,"Subnautica",purchase,1.0,0 -23225650,"Subnautica",play,6.1,0 -23225650,"Sleeping Dogs",purchase,1.0,0 -23225650,"Sleeping Dogs",play,5.4,0 -23225650,"Thief",purchase,1.0,0 -23225650,"Thief",play,4.4,0 -23225650,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -23225650,"Injustice Gods Among Us Ultimate Edition",play,4.2,0 -23225650,"Fallout New Vegas",purchase,1.0,0 -23225650,"Fallout New Vegas",play,3.5,0 -23225650,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -23225650,"Deus Ex Human Revolution - Director's Cut",play,3.3,0 -23225650,"Mount & Blade Warband",purchase,1.0,0 -23225650,"Mount & Blade Warband",play,3.3,0 -23225650,"Satellite Reign",purchase,1.0,0 -23225650,"Satellite Reign",play,3.0,0 -23225650,"Endless Legend",purchase,1.0,0 -23225650,"Endless Legend",play,2.6,0 -23225650,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -23225650,"The Witcher 2 Assassins of Kings Enhanced Edition",play,2.4,0 -23225650,"Rocksmith 2014",purchase,1.0,0 -23225650,"Rocksmith 2014",play,2.1,0 -23225650,"Magic Duels",purchase,1.0,0 -23225650,"Magic Duels",play,2.0,0 -23225650,"DuckTales Remastered",purchase,1.0,0 -23225650,"DuckTales Remastered",play,2.0,0 -23225650,"Firefall",purchase,1.0,0 -23225650,"Firefall",play,1.8,0 -23225650,"Supreme Commander 2",purchase,1.0,0 -23225650,"Supreme Commander 2",play,1.1,0 -23225650,"Darksiders",purchase,1.0,0 -23225650,"Darksiders",play,1.1,0 -23225650,"Life Is Strange",purchase,1.0,0 -23225650,"Life Is Strange",play,0.9,0 -23225650,"Watch_Dogs",purchase,1.0,0 -23225650,"Watch_Dogs",play,0.9,0 -23225650,"FaceRig",purchase,1.0,0 -23225650,"FaceRig",play,0.9,0 -23225650,"Path of Exile",purchase,1.0,0 -23225650,"Path of Exile",play,0.9,0 -23225650,"The Witcher Enhanced Edition",purchase,1.0,0 -23225650,"The Witcher Enhanced Edition",play,0.7,0 -23225650,"Lara Croft and the Guardian of Light",purchase,1.0,0 -23225650,"Lara Croft and the Guardian of Light",play,0.6,0 -23225650,"The Book of Unwritten Tales",purchase,1.0,0 -23225650,"The Book of Unwritten Tales",play,0.6,0 -23225650,"Dota 2",purchase,1.0,0 -23225650,"Dota 2",play,0.5,0 -23225650,"Fuse",purchase,1.0,0 -23225650,"Fuse",play,0.4,0 -23225650,"Nosgoth",purchase,1.0,0 -23225650,"Nosgoth",play,0.2,0 -23225650,"Source Filmmaker",purchase,1.0,0 -23225650,"Source Filmmaker",play,0.2,0 -23225650,"Fractured Space",purchase,1.0,0 -23225650,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -23225650,"Batman Arkham City GOTY",purchase,1.0,0 -23225650,"BioShock",purchase,1.0,0 -23225650,"BioShock 2",purchase,1.0,0 -23225650,"BioShock Infinite",purchase,1.0,0 -23225650,"Darksiders II Deathinitive Edition",purchase,1.0,0 -23225650,"EverQuest II",purchase,1.0,0 -23225650,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -23225650,"Fallout New Vegas Dead Money",purchase,1.0,0 -23225650,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -23225650,"Half-Life 2",purchase,1.0,0 -23225650,"Half-Life 2 Deathmatch",purchase,1.0,0 -23225650,"Half-Life 2 Lost Coast",purchase,1.0,0 -23225650,"Half-Life Source",purchase,1.0,0 -23225650,"Half-Life Deathmatch Source",purchase,1.0,0 -23225650,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -23225650,"Kane & Lynch Dead Men",purchase,1.0,0 -23225650,"Mortal Kombat Legacy - Ep. 3 Johnny Cage",purchase,1.0,0 -23225650,"Mortal Kombat Legacy - Ep. 4 Kitana & Mileena (Part 1)",purchase,1.0,0 -23225650,"Mortal Kombat Legacy - Ep. 5 Kitana & Mileena (Part 2)",purchase,1.0,0 -23225650,"Mortal Kombat Legacy - Ep. 6 Raiden",purchase,1.0,0 -23225650,"Mortal Kombat Legacy - Ep. 7 Scorpion and Sub-Zero (Part 1)",purchase,1.0,0 -23225650,"Mortal Kombat Legacy - Ep. 8 Scorpion and Sub-Zero (Part 2)",purchase,1.0,0 -23225650,"Mortal Kombat Legacy - Ep. 9 Cyrax & Sektor",purchase,1.0,0 -23225650,"Mount & Blade",purchase,1.0,0 -23225650,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -23225650,"Mount & Blade Warband - Viking Conquest Reforged Edition",purchase,1.0,0 -23225650,"Mount & Blade With Fire and Sword",purchase,1.0,0 -23225650,"MURDERED SOUL SUSPECT",purchase,1.0,0 -23225650,"Patch testing for Chivalry",purchase,1.0,0 -23225650,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -23225650,"Startopia",purchase,1.0,0 -23225650,"The Book of Unwritten Tales 2",purchase,1.0,0 -23225650,"The Book of Unwritten Tales The Critter Chronicles",purchase,1.0,0 -23225650,"The Book of Unwritten Tales Extras",purchase,1.0,0 -23225650,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -23225650,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -23225650,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -23225650,"XCOM Enemy Within",purchase,1.0,0 -12529679,"Half-Life",purchase,1.0,0 -12529679,"Half-Life",play,43.0,0 -12529679,"Half-Life Blue Shift",purchase,1.0,0 -12529679,"Half-Life Blue Shift",play,5.6,0 -12529679,"Half-Life Opposing Force",purchase,1.0,0 -12529679,"Half-Life Opposing Force",play,3.8,0 -12529679,"Counter-Strike",purchase,1.0,0 -12529679,"Counter-Strike",play,0.6,0 -12529679,"Dota 2",purchase,1.0,0 -12529679,"Dota 2",play,0.5,0 -12529679,"Day of Defeat",purchase,1.0,0 -12529679,"Day of Defeat",play,0.1,0 -12529679,"Deathmatch Classic",purchase,1.0,0 -12529679,"Half-Life 2 Deathmatch",purchase,1.0,0 -12529679,"Half-Life 2 Lost Coast",purchase,1.0,0 -12529679,"RaceRoom Racing Experience ",purchase,1.0,0 -12529679,"Ricochet",purchase,1.0,0 -12529679,"Team Fortress Classic",purchase,1.0,0 -119236075,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -119236075,"Galactic Civilizations II Ultimate Edition",play,15.8,0 -119236075,"Darkest Hour A Hearts of Iron Game",purchase,1.0,0 -119236075,"Darkest Hour A Hearts of Iron Game",play,10.2,0 -119236075,"Age of Empires II HD Edition",purchase,1.0,0 -119236075,"Age of Empires II HD Edition",play,4.6,0 -119236075,"StarDrive",purchase,1.0,0 -119236075,"StarDrive",play,2.6,0 -119236075,"Supreme Commander Forged Alliance",purchase,1.0,0 -119236075,"Supreme Commander Forged Alliance",play,1.2,0 -119236075,"Europa Universalis IV",purchase,1.0,0 -119236075,"Europa Universalis IV",play,0.6,0 -119236075,"XCOM Enemy Unknown",purchase,1.0,0 -119236075,"XCOM Enemy Unknown",play,0.3,0 -122117928,"Dota 2",purchase,1.0,0 -122117928,"Dota 2",play,179.0,0 -173434036,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -173434036,"The Witcher 2 Assassins of Kings Enhanced Edition",play,43.0,0 -173434036,"Mortal Kombat X",purchase,1.0,0 -173434036,"Mortal Kombat X",play,7.7,0 -173434036,"Infestation Survivor Stories",purchase,1.0,0 -173434036,"Infestation Survivor Stories",play,2.1,0 -173434036,"Soccer Manager 2016",purchase,1.0,0 -173434036,"Soccer Manager 2016",play,0.9,0 -173434036,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -173434036,"School of Dragons How to Train Your Dragon",play,0.9,0 -173434036,"Counter-Strike Global Offensive",purchase,1.0,0 -173434036,"Counter-Strike Global Offensive",play,0.9,0 -173434036,"Alan Wake",purchase,1.0,0 -173434036,"Alan Wake",play,0.7,0 -173434036,"Metro 2033",purchase,1.0,0 -173434036,"Metro 2033",play,0.5,0 -173434036,"Alien Rage - Unlimited",purchase,1.0,0 -173434036,"Alien Rage - Unlimited",play,0.4,0 -173434036,"Deadbreed",purchase,1.0,0 -173434036,"Deadbreed",play,0.4,0 -173434036,"Afterfall InSanity Extended Edition",purchase,1.0,0 -173434036,"Afterfall InSanity Extended Edition",play,0.3,0 -173434036,"Memories of a Vagabond",purchase,1.0,0 -173434036,"Memories of a Vagabond",play,0.3,0 -173434036,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -173434036,"Cargo Commander",purchase,1.0,0 -173434036,"Commander Conquest of the Americas Gold",purchase,1.0,0 -173434036,"Dead Space",purchase,1.0,0 -173434036,"Dead Space 2",purchase,1.0,0 -173434036,"Dragon Age Origins",purchase,1.0,0 -173434036,"East India Company Gold",purchase,1.0,0 -173434036,"Enclave",purchase,1.0,0 -173434036,"Mass Effect 2",purchase,1.0,0 -173434036,"Tower Wars",purchase,1.0,0 -173434036,"Two Worlds Epic Edition",purchase,1.0,0 -107049645,"Dota 2",purchase,1.0,0 -107049645,"Dota 2",play,601.0,0 -308100652,"Dota 2",purchase,1.0,0 -308100652,"Dota 2",play,0.2,0 -235349841,"Warframe",purchase,1.0,0 -235349841,"Warframe",play,4.4,0 -111970037,"F1 2012",purchase,1.0,0 -111970037,"F1 2012",play,94.0,0 -111970037,"F1 2013",purchase,1.0,0 -111970037,"F1 2013",play,61.0,0 -234446915,"Robocraft",purchase,1.0,0 -234446915,"Robocraft",play,13.9,0 -183099734,"Dota 2",purchase,1.0,0 -183099734,"Dota 2",play,3.6,0 -183099734,"Heroes & Generals",purchase,1.0,0 -183099734,"Heroes & Generals",play,1.5,0 -183099734,"Team Fortress 2",purchase,1.0,0 -183099734,"Team Fortress 2",play,0.9,0 -99940330,"Dota 2",purchase,1.0,0 -99940330,"Dota 2",play,24.0,0 -170718943,"Dota 2",purchase,1.0,0 -170718943,"Dota 2",play,1.3,0 -84686973,"Team Fortress 2",purchase,1.0,0 -84686973,"Team Fortress 2",play,1.1,0 -84686973,"Left 4 Dead 2",purchase,1.0,0 -84686973,"Ragnarok",purchase,1.0,0 -120139965,"Don't Starve",purchase,1.0,0 -120139965,"Don't Starve",play,2.7,0 -120139965,"HuniePop",purchase,1.0,0 -120139965,"HuniePop",play,2.5,0 -120139965,"Dear Esther",purchase,1.0,0 -120139965,"Dear Esther",play,1.5,0 -120139965,"To the Moon",purchase,1.0,0 -120139965,"To the Moon",play,0.9,0 -120139965,"Rogue Legacy",purchase,1.0,0 -120139965,"Rogue Legacy",play,0.7,0 -120139965,"Recettear An Item Shop's Tale",purchase,1.0,0 -120139965,"Recettear An Item Shop's Tale",play,0.6,0 -120139965,"Dangerous High School Girls in Trouble!",purchase,1.0,0 -120139965,"Dangerous High School Girls in Trouble!",play,0.6,0 -120139965,"Goat Simulator",purchase,1.0,0 -120139965,"Goat Simulator",play,0.6,0 -120139965,"Scribblenauts Unlimited",purchase,1.0,0 -120139965,"Scribblenauts Unlimited",play,0.6,0 -120139965,"The Stanley Parable",purchase,1.0,0 -120139965,"The Stanley Parable",play,0.4,0 -120139965,"Thirty Flights of Loving",purchase,1.0,0 -120139965,"Thirty Flights of Loving",play,0.4,0 -120139965,"The Binding of Isaac",purchase,1.0,0 -120139965,"The Binding of Isaac",play,0.3,0 -120139965,"Anna - Extended Edition",purchase,1.0,0 -120139965,"Anna - Extended Edition",play,0.2,0 -120139965,"Terraria",purchase,1.0,0 -120139965,"Terraria",play,0.1,0 -120139965,"Risk of Rain",purchase,1.0,0 -120139965,"Risk of Rain",play,0.1,0 -120139965,"Hotline Miami",purchase,1.0,0 -120139965,"Hotline Miami",play,0.1,0 -120139965,"Amnesia A Machine for Pigs",purchase,1.0,0 -120139965,"Aliens versus Predator Classic 2000",purchase,1.0,0 -120139965,"Amnesia The Dark Descent",purchase,1.0,0 -120139965,"Closure",purchase,1.0,0 -120139965,"Don't Starve Together Beta",purchase,1.0,0 -120139965,"I Have No Mouth, and I Must Scream",purchase,1.0,0 -120139965,"Receiver",purchase,1.0,0 -120139965,"The Void",purchase,1.0,0 -126701146,"Mount & Blade Warband",purchase,1.0,0 -126701146,"Mount & Blade Warband",play,8.4,0 -126701146,"Half-Life 2",purchase,1.0,0 -126701146,"Half-Life 2",play,7.3,0 -126701146,"Amnesia The Dark Descent",purchase,1.0,0 -126701146,"Amnesia The Dark Descent",play,5.2,0 -126701146,"Super Meat Boy",purchase,1.0,0 -126701146,"Super Meat Boy",play,3.0,0 -126701146,"BIT.TRIP RUNNER",purchase,1.0,0 -126701146,"BIT.TRIP RUNNER",play,1.4,0 -126701146,"Torchlight II",purchase,1.0,0 -126701146,"Torchlight II",play,1.0,0 -126701146,"Portal",purchase,1.0,0 -126701146,"Portal",play,0.8,0 -126701146,"Portal 2",purchase,1.0,0 -126701146,"Portal 2",play,0.6,0 -126701146,"Half-Life 2 Lost Coast",purchase,1.0,0 -113752996,"Counter-Strike Global Offensive",purchase,1.0,0 -113752996,"Counter-Strike Global Offensive",play,1428.0,0 -113752996,"Counter-Strike Source",purchase,1.0,0 -113752996,"Counter-Strike Source",play,769.0,0 -113752996,"Grand Theft Auto V",purchase,1.0,0 -113752996,"Grand Theft Auto V",play,339.0,0 -113752996,"Garry's Mod",purchase,1.0,0 -113752996,"Garry's Mod",play,337.0,0 -113752996,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -113752996,"Call of Duty Black Ops II - Multiplayer",play,316.0,0 -113752996,"Arma 2 Operation Arrowhead",purchase,1.0,0 -113752996,"Arma 2 Operation Arrowhead",play,255.0,0 -113752996,"Rust",purchase,1.0,0 -113752996,"Rust",play,194.0,0 -113752996,"Arma 3",purchase,1.0,0 -113752996,"Arma 3",play,154.0,0 -113752996,"The Crew",purchase,1.0,0 -113752996,"The Crew",play,106.0,0 -113752996,"Euro Truck Simulator 2",purchase,1.0,0 -113752996,"Euro Truck Simulator 2",play,105.0,0 -113752996,"Grand Theft Auto IV",purchase,1.0,0 -113752996,"Grand Theft Auto IV",play,58.0,0 -113752996,"GRID 2",purchase,1.0,0 -113752996,"GRID 2",play,57.0,0 -113752996,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -113752996,"Call of Duty Modern Warfare 2 - Multiplayer",play,55.0,0 -113752996,"Rocket League",purchase,1.0,0 -113752996,"Rocket League",play,55.0,0 -113752996,"Far Cry 4",purchase,1.0,0 -113752996,"Far Cry 4",play,38.0,0 -113752996,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -113752996,"Grand Theft Auto Episodes from Liberty City",play,30.0,0 -113752996,"H1Z1",purchase,1.0,0 -113752996,"H1Z1",play,30.0,0 -113752996,"Dying Light",purchase,1.0,0 -113752996,"Dying Light",play,29.0,0 -113752996,"The Forest",purchase,1.0,0 -113752996,"The Forest",play,29.0,0 -113752996,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -113752996,"Just Cause 2 Multiplayer Mod",play,29.0,0 -113752996,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -113752996,"Call of Duty Advanced Warfare - Multiplayer",play,28.0,0 -113752996,"Farming Simulator 2013",purchase,1.0,0 -113752996,"Farming Simulator 2013",play,27.0,0 -113752996,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -113752996,"Call of Duty Ghosts - Multiplayer",play,23.0,0 -113752996,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -113752996,"Call of Duty Modern Warfare 3 - Multiplayer",play,23.0,0 -113752996,"DiRT 3",purchase,1.0,0 -113752996,"DiRT 3",play,18.4,0 -113752996,"Far Cry 3",purchase,1.0,0 -113752996,"Far Cry 3",play,16.3,0 -113752996,"DayZ",purchase,1.0,0 -113752996,"DayZ",play,15.2,0 -113752996,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -113752996,"Call of Duty Black Ops II - Zombies",play,15.1,0 -113752996,"GRID Autosport",purchase,1.0,0 -113752996,"GRID Autosport",play,14.1,0 -113752996,"Beat Hazard",purchase,1.0,0 -113752996,"Beat Hazard",play,13.7,0 -113752996,"BattleBlock Theater",purchase,1.0,0 -113752996,"BattleBlock Theater",play,13.0,0 -113752996,"Saints Row The Third",purchase,1.0,0 -113752996,"Saints Row The Third",play,13.0,0 -113752996,"Left 4 Dead 2",purchase,1.0,0 -113752996,"Left 4 Dead 2",play,12.9,0 -113752996,"PAYDAY 2",purchase,1.0,0 -113752996,"PAYDAY 2",play,12.7,0 -113752996,"AdVenture Capitalist",purchase,1.0,0 -113752996,"AdVenture Capitalist",play,11.9,0 -113752996,"Terraria",purchase,1.0,0 -113752996,"Terraria",play,11.6,0 -113752996,"Dead Island",purchase,1.0,0 -113752996,"Dead Island",play,9.1,0 -113752996,"Killing Floor",purchase,1.0,0 -113752996,"Killing Floor",play,8.4,0 -113752996,"Borderlands 2",purchase,1.0,0 -113752996,"Borderlands 2",play,8.4,0 -113752996,"Unturned",purchase,1.0,0 -113752996,"Unturned",play,8.2,0 -113752996,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -113752996,"Resident Evil 6 / Biohazard 6",play,7.7,0 -113752996,"Hitman Absolution",purchase,1.0,0 -113752996,"Hitman Absolution",play,7.3,0 -113752996,"No More Room in Hell",purchase,1.0,0 -113752996,"No More Room in Hell",play,6.4,0 -113752996,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -113752996,"Burnout Paradise The Ultimate Box",play,6.3,0 -113752996,"Call of Duty Ghosts",purchase,1.0,0 -113752996,"Call of Duty Ghosts",play,6.3,0 -113752996,"EVGA PrecisionX 16",purchase,1.0,0 -113752996,"EVGA PrecisionX 16",play,6.3,0 -113752996,"Metro Last Light",purchase,1.0,0 -113752996,"Metro Last Light",play,5.9,0 -113752996,"Mad Max",purchase,1.0,0 -113752996,"Mad Max",play,5.8,0 -113752996,"Game Dev Tycoon",purchase,1.0,0 -113752996,"Game Dev Tycoon",play,5.6,0 -113752996,"Daylight",purchase,1.0,0 -113752996,"Daylight",play,5.6,0 -113752996,"PROTOTYPE 2",purchase,1.0,0 -113752996,"PROTOTYPE 2",play,5.5,0 -113752996,"PAYDAY The Heist",purchase,1.0,0 -113752996,"PAYDAY The Heist",play,5.4,0 -113752996,"Worms Clan Wars",purchase,1.0,0 -113752996,"Worms Clan Wars",play,5.1,0 -113752996,"Mirror's Edge",purchase,1.0,0 -113752996,"Mirror's Edge",play,5.0,0 -113752996,"Call of Duty Advanced Warfare",purchase,1.0,0 -113752996,"Call of Duty Advanced Warfare",play,4.7,0 -113752996,"DiRT Showdown",purchase,1.0,0 -113752996,"DiRT Showdown",play,4.6,0 -113752996,"Outlast",purchase,1.0,0 -113752996,"Outlast",play,4.5,0 -113752996,"BioShock Infinite",purchase,1.0,0 -113752996,"BioShock Infinite",play,4.1,0 -113752996,"Dead Realm",purchase,1.0,0 -113752996,"Dead Realm",play,4.0,0 -113752996,"Trials Evolution Gold Edition",purchase,1.0,0 -113752996,"Trials Evolution Gold Edition",play,4.0,0 -113752996,"Crysis 2 Maximum Edition",purchase,1.0,0 -113752996,"Crysis 2 Maximum Edition",play,3.7,0 -113752996,"Alien Isolation",purchase,1.0,0 -113752996,"Alien Isolation",play,3.0,0 -113752996,"The Stanley Parable",purchase,1.0,0 -113752996,"The Stanley Parable",play,2.9,0 -113752996,"Surgeon Simulator",purchase,1.0,0 -113752996,"Surgeon Simulator",play,2.7,0 -113752996,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -113752996,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,2.4,0 -113752996,"Contagion",purchase,1.0,0 -113752996,"Contagion",play,2.4,0 -113752996,"Arma 2",purchase,1.0,0 -113752996,"Arma 2",play,2.4,0 -113752996,"Call of Duty Modern Warfare 2",purchase,1.0,0 -113752996,"Call of Duty Modern Warfare 2",play,2.3,0 -113752996,"Goat Simulator",purchase,1.0,0 -113752996,"Goat Simulator",play,2.2,0 -113752996,"ORION Prelude",purchase,1.0,0 -113752996,"ORION Prelude",play,2.0,0 -113752996,"Ace of Spades",purchase,1.0,0 -113752996,"Ace of Spades",play,1.9,0 -113752996,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -113752996,"Viscera Cleanup Detail Santa's Rampage",play,1.7,0 -113752996,"Just Cause 2",purchase,1.0,0 -113752996,"Just Cause 2",play,1.6,0 -113752996,"Tomb Raider",purchase,1.0,0 -113752996,"Tomb Raider",play,1.6,0 -113752996,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -113752996,"Medal of Honor(TM) Multiplayer",play,1.5,0 -113752996,"Super Meat Boy",purchase,1.0,0 -113752996,"Super Meat Boy",play,1.5,0 -113752996,"Team Fortress 2",purchase,1.0,0 -113752996,"Team Fortress 2",play,1.5,0 -113752996,"Tomb Raider Legend",purchase,1.0,0 -113752996,"Tomb Raider Legend",play,1.4,0 -113752996,"Heroes & Generals",purchase,1.0,0 -113752996,"Heroes & Generals",play,1.4,0 -113752996,"Sniper Elite V2",purchase,1.0,0 -113752996,"Sniper Elite V2",play,1.4,0 -113752996,"Deadlight",purchase,1.0,0 -113752996,"Deadlight",play,1.1,0 -113752996,"iO",purchase,1.0,0 -113752996,"iO",play,1.0,0 -113752996,"Real Horror Stories Ultimate Edition",purchase,1.0,0 -113752996,"Real Horror Stories Ultimate Edition",play,0.8,0 -113752996,"Loadout",purchase,1.0,0 -113752996,"Loadout",play,0.8,0 -113752996,"Shank",purchase,1.0,0 -113752996,"Shank",play,0.7,0 -113752996,"War Thunder",purchase,1.0,0 -113752996,"War Thunder",play,0.5,0 -113752996,"Stranded Deep",purchase,1.0,0 -113752996,"Stranded Deep",play,0.5,0 -113752996,"Call of Duty Modern Warfare 3",purchase,1.0,0 -113752996,"Call of Duty Modern Warfare 3",play,0.5,0 -113752996,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -113752996,"Killing Floor Mod Defence Alliance 2",play,0.5,0 -113752996,"DiRT 3 Complete Edition",purchase,1.0,0 -113752996,"DiRT 3 Complete Edition",play,0.4,0 -113752996,"Dead Island Epidemic",purchase,1.0,0 -113752996,"Dead Island Epidemic",play,0.3,0 -113752996,"Nosgoth",purchase,1.0,0 -113752996,"Nosgoth",play,0.3,0 -113752996,"Call of Duty Black Ops II",purchase,1.0,0 -113752996,"Call of Duty Black Ops II",play,0.3,0 -113752996,"Dirty Bomb",purchase,1.0,0 -113752996,"Dirty Bomb",play,0.3,0 -113752996,"Insurgency",purchase,1.0,0 -113752996,"Insurgency",play,0.3,0 -113752996,"BIT.TRIP RUNNER",purchase,1.0,0 -113752996,"BIT.TRIP RUNNER",play,0.2,0 -113752996,"One Late Night Deadline",purchase,1.0,0 -113752996,"One Late Night Deadline",play,0.2,0 -113752996,"Robocraft",purchase,1.0,0 -113752996,"Robocraft",play,0.2,0 -113752996,"Dino D-Day",purchase,1.0,0 -113752996,"Dino D-Day",play,0.1,0 -113752996,"Dead Space",purchase,1.0,0 -113752996,"Dead Space",play,0.1,0 -113752996,"Gun Monkeys",purchase,1.0,0 -113752996,"Grand Theft Auto San Andreas",purchase,1.0,0 -113752996,"David.",purchase,1.0,0 -113752996,"theHunter",purchase,1.0,0 -113752996,"Mount Your Friends",purchase,1.0,0 -113752996,"Arma 2 DayZ Mod",purchase,1.0,0 -113752996,"Amnesia The Dark Descent",purchase,1.0,0 -113752996,"H1Z1 Test Server",purchase,1.0,0 -113752996,"NightSky",purchase,1.0,0 -113752996,"RaceRoom Racing Experience ",purchase,1.0,0 -113752996,"Defy Gravity",purchase,1.0,0 -113752996,"Arma 3 Karts",purchase,1.0,0 -113752996,"Arma 3 Zeus",purchase,1.0,0 -113752996,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -113752996,"Grand Theft Auto San Andreas",purchase,1.0,0 -113752996,"GTR Evolution",purchase,1.0,0 -113752996,"Jamestown",purchase,1.0,0 -113752996,"Just Cause",purchase,1.0,0 -113752996,"Medal of Honor(TM) Single Player",purchase,1.0,0 -113752996,"Medal of Honor Pre-Order",purchase,1.0,0 -113752996,"Murder Miners",purchase,1.0,0 -113752996,"Outlast Whistleblower DLC",purchase,1.0,0 -113752996,"Prototype 2 RADNET Access Pack",purchase,1.0,0 -113752996,"Quake Live",purchase,1.0,0 -113752996,"RACE 07",purchase,1.0,0 -113752996,"SpaceChem",purchase,1.0,0 -113752996,"The Culling Of The Cows",purchase,1.0,0 -113752996,"Toki Tori",purchase,1.0,0 -113752996,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -87926559,"Empire Total War",purchase,1.0,0 -87926559,"Empire Total War",play,42.0,0 -161535358,"Deponia",purchase,1.0,0 -161535358,"Deponia",play,0.7,0 -131444737,"Counter-Strike Global Offensive",purchase,1.0,0 -131444737,"Counter-Strike Global Offensive",play,480.0,0 -131444737,"Chivalry Medieval Warfare",purchase,1.0,0 -131444737,"Chivalry Medieval Warfare",play,140.0,0 -131444737,"Dota 2",purchase,1.0,0 -131444737,"Dota 2",play,134.0,0 -131444737,"Team Fortress 2",purchase,1.0,0 -131444737,"Team Fortress 2",play,38.0,0 -131444737,"Arma 3",purchase,1.0,0 -131444737,"Arma 3",play,31.0,0 -131444737,"Trine 2",purchase,1.0,0 -131444737,"Trine 2",play,18.2,0 -131444737,"South Park The Stick of Truth",purchase,1.0,0 -131444737,"South Park The Stick of Truth",play,16.5,0 -131444737,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -131444737,"Dark Souls Prepare to Die Edition",play,15.8,0 -131444737,"Rogue Legacy",purchase,1.0,0 -131444737,"Rogue Legacy",play,14.7,0 -131444737,"Firefall",purchase,1.0,0 -131444737,"Firefall",play,12.9,0 -131444737,"Neverwinter",purchase,1.0,0 -131444737,"Neverwinter",play,11.5,0 -131444737,"Dust An Elysian Tail",purchase,1.0,0 -131444737,"Dust An Elysian Tail",play,10.5,0 -131444737,"Magicka Wizard Wars",purchase,1.0,0 -131444737,"Magicka Wizard Wars",play,8.0,0 -131444737,"Bloodline Champions",purchase,1.0,0 -131444737,"Bloodline Champions",play,6.8,0 -131444737,"War Thunder",purchase,1.0,0 -131444737,"War Thunder",play,6.2,0 -131444737,"Call of Juarez Gunslinger",purchase,1.0,0 -131444737,"Call of Juarez Gunslinger",play,6.1,0 -131444737,"Castle Crashers",purchase,1.0,0 -131444737,"Castle Crashers",play,6.0,0 -131444737,"King's Bounty The Legend",purchase,1.0,0 -131444737,"King's Bounty The Legend",play,5.7,0 -131444737,"The Elder Scrolls III Morrowind",purchase,1.0,0 -131444737,"The Elder Scrolls III Morrowind",play,5.1,0 -131444737,"Garry's Mod",purchase,1.0,0 -131444737,"Garry's Mod",play,4.8,0 -131444737,"Worms Clan Wars",purchase,1.0,0 -131444737,"Worms Clan Wars",play,4.3,0 -131444737,"Dungeon Defenders II",purchase,1.0,0 -131444737,"Dungeon Defenders II",play,3.9,0 -131444737,"Robocraft",purchase,1.0,0 -131444737,"Robocraft",play,3.7,0 -131444737,"Deus Ex Game of the Year Edition",purchase,1.0,0 -131444737,"Deus Ex Game of the Year Edition",play,2.9,0 -131444737,"Monaco",purchase,1.0,0 -131444737,"Monaco",play,2.5,0 -131444737,"Pirates, Vikings, & Knights II",purchase,1.0,0 -131444737,"Pirates, Vikings, & Knights II",play,1.5,0 -131444737,"Rise of Incarnates",purchase,1.0,0 -131444737,"Rise of Incarnates",play,1.3,0 -131444737,"Volgarr the Viking",purchase,1.0,0 -131444737,"Volgarr the Viking",play,1.0,0 -131444737,"Nosgoth",purchase,1.0,0 -131444737,"Nosgoth",play,1.0,0 -131444737,"Unturned",purchase,1.0,0 -131444737,"Unturned",play,0.8,0 -131444737,"Deus Ex Human Revolution",purchase,1.0,0 -131444737,"Deus Ex Human Revolution",play,0.6,0 -131444737,"Dirty Bomb",purchase,1.0,0 -131444737,"Dirty Bomb",play,0.4,0 -131444737,"Card Hunter",purchase,1.0,0 -131444737,"Card Hunter",play,0.3,0 -131444737,"AirMech",purchase,1.0,0 -131444737,"Arma 3 Zeus",purchase,1.0,0 -131444737,"Block N Load",purchase,1.0,0 -131444737,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -131444737,"Might & Magic Duel of Champions",purchase,1.0,0 -131444737,"Patch testing for Chivalry",purchase,1.0,0 -131444737,"The Lord of the Rings Online",purchase,1.0,0 -123671395,"Dota 2",purchase,1.0,0 -123671395,"Dota 2",play,1290.0,0 -123671395,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -123671395,"Tom Clancy's Ghost Recon Phantoms - NA",play,1.3,0 -123671395,"Aura Kingdom",purchase,1.0,0 -123671395,"Cry of Fear",purchase,1.0,0 -123671395,"Neverwinter",purchase,1.0,0 -123671395,"Path of Exile",purchase,1.0,0 -123671395,"Quake Live",purchase,1.0,0 -123671395,"SMITE",purchase,1.0,0 -123671395,"sZone-Online",purchase,1.0,0 -123671395,"Warface",purchase,1.0,0 -123671395,"Warframe",purchase,1.0,0 -123671395,"War Thunder",purchase,1.0,0 -244184827,"Dota 2",purchase,1.0,0 -244184827,"Dota 2",play,3.0,0 -249070225,"Dota 2",purchase,1.0,0 -249070225,"Dota 2",play,1.2,0 -80363319,"Mount & Blade With Fire and Sword",purchase,1.0,0 -80363319,"Mount & Blade With Fire and Sword",play,160.0,0 -80363319,"The Elder Scrolls V Skyrim",purchase,1.0,0 -80363319,"The Elder Scrolls V Skyrim",play,66.0,0 -80363319,"Fallout New Vegas",purchase,1.0,0 -80363319,"Fallout New Vegas",play,63.0,0 -80363319,"Craft The World",purchase,1.0,0 -80363319,"Craft The World",play,51.0,0 -80363319,"Empire Total War",purchase,1.0,0 -80363319,"Empire Total War",play,49.0,0 -80363319,"State of Decay",purchase,1.0,0 -80363319,"State of Decay",play,48.0,0 -80363319,"PAYDAY 2",purchase,1.0,0 -80363319,"PAYDAY 2",play,38.0,0 -80363319,"Company of Heroes 2",purchase,1.0,0 -80363319,"Company of Heroes 2",play,37.0,0 -80363319,"Reign Of Kings",purchase,1.0,0 -80363319,"Reign Of Kings",play,34.0,0 -80363319,"Fallout 4",purchase,1.0,0 -80363319,"Fallout 4",play,28.0,0 -80363319,"Napoleon Total War",purchase,1.0,0 -80363319,"Napoleon Total War",play,27.0,0 -80363319,"Wasteland 2",purchase,1.0,0 -80363319,"Wasteland 2",play,26.0,0 -80363319,"Saints Row IV",purchase,1.0,0 -80363319,"Saints Row IV",play,25.0,0 -80363319,"Total War SHOGUN 2",purchase,1.0,0 -80363319,"Total War SHOGUN 2",play,24.0,0 -80363319,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -80363319,"Resident Evil 6 / Biohazard 6",play,23.0,0 -80363319,"Risen 2 - Dark Waters",purchase,1.0,0 -80363319,"Risen 2 - Dark Waters",play,19.0,0 -80363319,"Sniper Ghost Warrior",purchase,1.0,0 -80363319,"Sniper Ghost Warrior",play,15.3,0 -80363319,"Heroes of Might & Magic V",purchase,1.0,0 -80363319,"Heroes of Might & Magic V",play,13.0,0 -80363319,"Borderlands 2",purchase,1.0,0 -80363319,"Borderlands 2",play,11.9,0 -80363319,"Omerta - City of Gangsters",purchase,1.0,0 -80363319,"Omerta - City of Gangsters",play,11.7,0 -80363319,"Dead Island",purchase,1.0,0 -80363319,"Dead Island",play,10.8,0 -80363319,"Mafia II",purchase,1.0,0 -80363319,"Mafia II",play,9.8,0 -80363319,"Metro 2033",purchase,1.0,0 -80363319,"Metro 2033",play,6.8,0 -80363319,"Company of Heroes (New Steam Version)",purchase,1.0,0 -80363319,"Company of Heroes (New Steam Version)",play,6.5,0 -80363319,"7 Days to Die",purchase,1.0,0 -80363319,"7 Days to Die",play,6.3,0 -80363319,"Afterfall InSanity Extended Edition",purchase,1.0,0 -80363319,"Afterfall InSanity Extended Edition",play,3.9,0 -80363319,"Euro Truck Simulator 2",purchase,1.0,0 -80363319,"Euro Truck Simulator 2",play,3.4,0 -80363319,"Unturned",purchase,1.0,0 -80363319,"Unturned",play,3.0,0 -80363319,"Batman Arkham Origins",purchase,1.0,0 -80363319,"Batman Arkham Origins",play,1.7,0 -80363319,"Homefront",purchase,1.0,0 -80363319,"Homefront",play,1.6,0 -80363319,"Counter-Strike Global Offensive",purchase,1.0,0 -80363319,"Counter-Strike Global Offensive",play,0.5,0 -80363319,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -80363319,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -80363319,"Company of Heroes",purchase,1.0,0 -80363319,"Company of Heroes 2 - Ardennes Assault",purchase,1.0,0 -80363319,"Company of Heroes Opposing Fronts",purchase,1.0,0 -80363319,"Company of Heroes Tales of Valor",purchase,1.0,0 -80363319,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -80363319,"Fallout New Vegas Dead Money",purchase,1.0,0 -80363319,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -80363319,"State of Decay - Breakdown",purchase,1.0,0 -80363319,"State of Decay - Lifeline",purchase,1.0,0 -80363319,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -80363319,"Wasteland 1 - The Original Classic",purchase,1.0,0 -80363319,"Wasteland 2 Director's Cut",purchase,1.0,0 -173923903,"Dota 2",purchase,1.0,0 -173923903,"Dota 2",play,39.0,0 -69261797,"Empire Total War",purchase,1.0,0 -69261797,"Empire Total War",play,6.2,0 -186099130,"Neverwinter",purchase,1.0,0 -186099130,"Neverwinter",play,16.2,0 -186099130,"Robocraft",purchase,1.0,0 -186099130,"Robocraft",play,16.1,0 -186099130,"Unturned",purchase,1.0,0 -186099130,"Unturned",play,10.5,0 -165750725,"Company of Heroes 2",purchase,1.0,0 -165750725,"Company of Heroes 2",play,78.0,0 -184215735,"Dota 2",purchase,1.0,0 -184215735,"Dota 2",play,14.5,0 -184215735,"MapleStory",purchase,1.0,0 -184215735,"Spiral Knights",purchase,1.0,0 -184215735,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -184215735,"Unturned",purchase,1.0,0 -159139948,"Divinity Dragon Commander",purchase,1.0,0 -159139948,"Divinity Dragon Commander",play,1.5,0 -150405762,"Call of Duty Modern Warfare 3",purchase,1.0,0 -150405762,"Call of Duty Modern Warfare 3",play,16.7,0 -150405762,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -240810622,"Counter-Strike Global Offensive",purchase,1.0,0 -240810622,"Counter-Strike Global Offensive",play,12.0,0 -240810622,"ACE - Arena Cyber Evolution",purchase,1.0,0 -240810622,"AdVenture Capitalist",purchase,1.0,0 -240810622,"Echo of Soul",purchase,1.0,0 -240810622,"GunZ 2 The Second Duel",purchase,1.0,0 -240810622,"Robocraft",purchase,1.0,0 -240810622,"Trove",purchase,1.0,0 -118031880,"State of Decay",purchase,1.0,0 -118031880,"State of Decay",play,118.0,0 -118031880,"The Elder Scrolls V Skyrim",purchase,1.0,0 -118031880,"The Elder Scrolls V Skyrim",play,19.5,0 -118031880,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -118031880,"State of Decay - Breakdown",purchase,1.0,0 -118031880,"State of Decay - Lifeline",purchase,1.0,0 -118031880,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -118031880,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -118031880,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -133938767,"Empires",purchase,1.0,0 -133938767,"Empires",play,748.0,0 -133938767,"Warframe",purchase,1.0,0 -133938767,"Warframe",play,595.0,0 -133938767,"Left 4 Dead 2",purchase,1.0,0 -133938767,"Left 4 Dead 2",play,43.0,0 -133938767,"Alien Swarm",purchase,1.0,0 -133938767,"Alien Swarm",play,34.0,0 -133938767,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -133938767,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,3.4,0 -133938767,"ACE - Arena Cyber Evolution",purchase,1.0,0 -133938767,"Arma Cold War Assault",purchase,1.0,0 -133938767,"Cakewalk Loop Manager",purchase,1.0,0 -133938767,"Counter-Strike Nexon Zombies",purchase,1.0,0 -133938767,"DCS World",purchase,1.0,0 -133938767,"Dead Island Epidemic",purchase,1.0,0 -133938767,"Fistful of Frags",purchase,1.0,0 -133938767,"Kung Fury",purchase,1.0,0 -133938767,"NEOTOKYO",purchase,1.0,0 -133938767,"Realm of the Mad God",purchase,1.0,0 -133938767,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -133938767,"Sins of a Dark Age",purchase,1.0,0 -133938767,"Unturned",purchase,1.0,0 -156675178,"Far Cry 3",purchase,1.0,0 -156675178,"Far Cry 3",play,34.0,0 -156675178,"BioShock Infinite",purchase,1.0,0 -156675178,"BioShock Infinite",play,22.0,0 -156675178,"Terraria",purchase,1.0,0 -156675178,"Terraria",play,14.0,0 -156675178,"Singularity",purchase,1.0,0 -156675178,"Singularity",play,11.0,0 -156675178,"Tomb Raider",purchase,1.0,0 -156675178,"Tomb Raider",play,10.9,0 -156675178,"Fable - The Lost Chapters",purchase,1.0,0 -156675178,"Fable - The Lost Chapters",play,10.6,0 -156675178,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -156675178,"Call of Duty Modern Warfare 2 - Multiplayer",play,10.4,0 -156675178,"Portal 2",purchase,1.0,0 -156675178,"Portal 2",play,7.8,0 -156675178,"Borderlands 2",purchase,1.0,0 -156675178,"Borderlands 2",play,7.8,0 -156675178,"Bulletstorm",purchase,1.0,0 -156675178,"Bulletstorm",play,5.8,0 -156675178,"LEGO The Lord of the Rings",purchase,1.0,0 -156675178,"LEGO The Lord of the Rings",play,5.4,0 -156675178,"Fallout New Vegas",purchase,1.0,0 -156675178,"Fallout New Vegas",play,4.9,0 -156675178,"Unepic",purchase,1.0,0 -156675178,"Unepic",play,4.8,0 -156675178,"Mass Effect",purchase,1.0,0 -156675178,"Mass Effect",play,4.8,0 -156675178,"BattleBlock Theater",purchase,1.0,0 -156675178,"BattleBlock Theater",play,4.7,0 -156675178,"Half-Life",purchase,1.0,0 -156675178,"Half-Life",play,4.4,0 -156675178,"Saints Row IV",purchase,1.0,0 -156675178,"Saints Row IV",play,4.3,0 -156675178,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -156675178,"Tom Clancy's Ghost Recon Phantoms - EU",play,4.2,0 -156675178,"The Binding of Isaac Rebirth",purchase,1.0,0 -156675178,"The Binding of Isaac Rebirth",play,4.0,0 -156675178,"Garry's Mod",purchase,1.0,0 -156675178,"Garry's Mod",play,4.0,0 -156675178,"Child of Light",purchase,1.0,0 -156675178,"Child of Light",play,3.9,0 -156675178,"Far Cry",purchase,1.0,0 -156675178,"Far Cry",play,3.9,0 -156675178,"The Bridge",purchase,1.0,0 -156675178,"The Bridge",play,3.9,0 -156675178,"Left 4 Dead 2",purchase,1.0,0 -156675178,"Left 4 Dead 2",play,3.7,0 -156675178,"Batman Arkham Origins",purchase,1.0,0 -156675178,"Batman Arkham Origins",play,3.4,0 -156675178,"Call of Duty Modern Warfare 2",purchase,1.0,0 -156675178,"Call of Duty Modern Warfare 2",play,3.4,0 -156675178,"Crysis",purchase,1.0,0 -156675178,"Crysis",play,3.3,0 -156675178,"A Story About My Uncle",purchase,1.0,0 -156675178,"A Story About My Uncle",play,2.9,0 -156675178,"Darksiders",purchase,1.0,0 -156675178,"Darksiders",play,2.9,0 -156675178,"Bastion",purchase,1.0,0 -156675178,"Bastion",play,2.8,0 -156675178,"Castle Crashers",purchase,1.0,0 -156675178,"Castle Crashers",play,2.3,0 -156675178,"Far Cry 3 Blood Dragon",purchase,1.0,0 -156675178,"Far Cry 3 Blood Dragon",play,2.3,0 -156675178,"Half-Life 2",purchase,1.0,0 -156675178,"Half-Life 2",play,2.3,0 -156675178,"The Binding of Isaac",purchase,1.0,0 -156675178,"The Binding of Isaac",play,2.2,0 -156675178,"The Elder Scrolls V Skyrim",purchase,1.0,0 -156675178,"The Elder Scrolls V Skyrim",play,2.1,0 -156675178,"Far Cry 2",purchase,1.0,0 -156675178,"Far Cry 2",play,2.1,0 -156675178,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -156675178,"Just Cause 2 Multiplayer Mod",play,2.1,0 -156675178,"Serious Sam 2",purchase,1.0,0 -156675178,"Serious Sam 2",play,1.9,0 -156675178,"F.E.A.R.",purchase,1.0,0 -156675178,"F.E.A.R.",play,1.9,0 -156675178,"Sanctum 2",purchase,1.0,0 -156675178,"Sanctum 2",play,1.8,0 -156675178,"How to Survive",purchase,1.0,0 -156675178,"How to Survive",play,1.7,0 -156675178,"Half-Life Source",purchase,1.0,0 -156675178,"Half-Life Source",play,1.6,0 -156675178,"Super Meat Boy",purchase,1.0,0 -156675178,"Super Meat Boy",play,1.6,0 -156675178,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -156675178,"Kingdoms of Amalur Reckoning",play,1.5,0 -156675178,"Rogue Legacy",purchase,1.0,0 -156675178,"Rogue Legacy",play,1.3,0 -156675178,"BIT.TRIP RUNNER",purchase,1.0,0 -156675178,"BIT.TRIP RUNNER",play,1.3,0 -156675178,"BioShock",purchase,1.0,0 -156675178,"BioShock",play,1.3,0 -156675178,"Team Fortress 2",purchase,1.0,0 -156675178,"Team Fortress 2",play,0.8,0 -156675178,"Lucius",purchase,1.0,0 -156675178,"Lucius",play,0.7,0 -156675178,"FEZ",purchase,1.0,0 -156675178,"FEZ",play,0.7,0 -156675178,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -156675178,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.6,0 -156675178,"Just Cause 2",purchase,1.0,0 -156675178,"Just Cause 2",play,0.5,0 -156675178,"Brothers - A Tale of Two Sons",purchase,1.0,0 -156675178,"Brothers - A Tale of Two Sons",play,0.5,0 -156675178,"Trine",purchase,1.0,0 -156675178,"Trine",play,0.5,0 -156675178,"Mass Effect 2",purchase,1.0,0 -156675178,"Mass Effect 2",play,0.5,0 -156675178,"8BitBoy",purchase,1.0,0 -156675178,"8BitBoy",play,0.5,0 -156675178,"POSTAL 2",purchase,1.0,0 -156675178,"POSTAL 2",play,0.4,0 -156675178,"Grand Theft Auto San Andreas",purchase,1.0,0 -156675178,"Grand Theft Auto San Andreas",play,0.4,0 -156675178,"Alice Madness Returns",purchase,1.0,0 -156675178,"Alice Madness Returns",play,0.4,0 -156675178,"PAYDAY The Heist",purchase,1.0,0 -156675178,"PAYDAY The Heist",play,0.3,0 -156675178,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -156675178,"Duke Nukem 3D Megaton Edition",play,0.3,0 -156675178,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -156675178,"Team Fortress Classic",purchase,1.0,0 -156675178,"Warface",purchase,1.0,0 -156675178,"Controller Companion",purchase,1.0,0 -156675178,"Volgarr the Viking",purchase,1.0,0 -156675178,"Double Action Boogaloo",purchase,1.0,0 -156675178,"BIT.TRIP BEAT",purchase,1.0,0 -156675178,"BIT.TRIP CORE",purchase,1.0,0 -156675178,"BIT.TRIP FATE",purchase,1.0,0 -156675178,"BIT.TRIP FATE Original Soundtrack",purchase,1.0,0 -156675178,"BIT.TRIP FLUX",purchase,1.0,0 -156675178,"BIT.TRIP FLUX Soundtrack",purchase,1.0,0 -156675178,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -156675178,"BIT.TRIP VOID",purchase,1.0,0 -156675178,"Counter-Strike Nexon Zombies",purchase,1.0,0 -156675178,"Crysis 2 Maximum Edition",purchase,1.0,0 -156675178,"Crysis Warhead",purchase,1.0,0 -156675178,"Crysis Wars",purchase,1.0,0 -156675178,"Dead Island",purchase,1.0,0 -156675178,"F.E.A.R. Extraction Point",purchase,1.0,0 -156675178,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -156675178,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -156675178,"Good Friends Character Pack",purchase,1.0,0 -156675178,"Grand Theft Auto San Andreas",purchase,1.0,0 -156675178,"Half-Life 2 Deathmatch",purchase,1.0,0 -156675178,"Half-Life 2 Episode One",purchase,1.0,0 -156675178,"Half-Life 2 Episode Two",purchase,1.0,0 -156675178,"Half-Life 2 Lost Coast",purchase,1.0,0 -156675178,"Half-Life Blue Shift",purchase,1.0,0 -156675178,"Half-Life Opposing Force",purchase,1.0,0 -156675178,"Half-Life Deathmatch Source",purchase,1.0,0 -156675178,"LEGO The Hobbit",purchase,1.0,0 -156675178,"Modular Combat",purchase,1.0,0 -156675178,"Narcissu 1st & 2nd",purchase,1.0,0 -156675178,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -156675178,"Sunrider Mask of Arcadius",purchase,1.0,0 -156675178,"Trine 2",purchase,1.0,0 -30010437,"Counter-Strike Source",purchase,1.0,0 -30010437,"Day of Defeat Source",purchase,1.0,0 -30010437,"Half-Life 2 Deathmatch",purchase,1.0,0 -30010437,"Half-Life 2 Lost Coast",purchase,1.0,0 -176968027,"Dota 2",purchase,1.0,0 -176968027,"Dota 2",play,0.2,0 -112939816,"Counter-Strike",purchase,1.0,0 -112939816,"Counter-Strike",play,17.4,0 -112939816,"Counter-Strike Condition Zero",purchase,1.0,0 -112939816,"Counter-Strike Condition Zero",play,8.9,0 -112939816,"Deathmatch Classic",purchase,1.0,0 -112939816,"Deathmatch Classic",play,0.1,0 -112939816,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -112939816,"Day of Defeat",purchase,1.0,0 -112939816,"Ricochet",purchase,1.0,0 -293845683,"Dota 2",purchase,1.0,0 -293845683,"Dota 2",play,89.0,0 -281401386,"Dota 2",purchase,1.0,0 -281401386,"Dota 2",play,3.2,0 -281401386,"Dream Of Mirror Online",purchase,1.0,0 -128297600,"Dota 2",purchase,1.0,0 -128297600,"Dota 2",play,66.0,0 -128297600,"Path of Exile",purchase,1.0,0 -128297600,"PlanetSide 2",purchase,1.0,0 -294148344,"Dota 2",purchase,1.0,0 -294148344,"Dota 2",play,0.4,0 -35039277,"Torchlight",purchase,1.0,0 -35039277,"Torchlight",play,68.0,0 -35039277,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -35039277,"Warhammer 40,000 Dawn of War II",play,62.0,0 -35039277,"Left 4 Dead",purchase,1.0,0 -35039277,"Left 4 Dead",play,53.0,0 -35039277,"Torchlight II",purchase,1.0,0 -35039277,"Torchlight II",play,32.0,0 -35039277,"Supreme Commander",purchase,1.0,0 -35039277,"Supreme Commander",play,22.0,0 -35039277,"Chivalry Medieval Warfare",purchase,1.0,0 -35039277,"Chivalry Medieval Warfare",play,15.4,0 -35039277,"Portal 2",purchase,1.0,0 -35039277,"Portal 2",play,14.9,0 -35039277,"The Ship",purchase,1.0,0 -35039277,"The Ship",play,13.9,0 -35039277,"HOARD",purchase,1.0,0 -35039277,"HOARD",play,12.9,0 -35039277,"Everyday Genius SquareLogic",purchase,1.0,0 -35039277,"Everyday Genius SquareLogic",play,12.2,0 -35039277,"Team Fortress 2",purchase,1.0,0 -35039277,"Team Fortress 2",play,9.0,0 -35039277,"Far Cry",purchase,1.0,0 -35039277,"Far Cry",play,8.9,0 -35039277,"Awesomenauts",purchase,1.0,0 -35039277,"Awesomenauts",play,8.8,0 -35039277,"Magicka",purchase,1.0,0 -35039277,"Magicka",play,7.8,0 -35039277,"Plain Sight",purchase,1.0,0 -35039277,"Plain Sight",play,5.8,0 -35039277,"Guns of Icarus Online",purchase,1.0,0 -35039277,"Guns of Icarus Online",play,5.8,0 -35039277,"Natural Selection 2",purchase,1.0,0 -35039277,"Natural Selection 2",play,5.7,0 -35039277,"Counter-Strike Source",purchase,1.0,0 -35039277,"Counter-Strike Source",play,4.2,0 -35039277,"Borderlands 2",purchase,1.0,0 -35039277,"Borderlands 2",play,3.1,0 -35039277,"Portal",purchase,1.0,0 -35039277,"Portal",play,2.8,0 -35039277,"Garry's Mod",purchase,1.0,0 -35039277,"Garry's Mod",play,2.4,0 -35039277,"Half-Life 2 Deathmatch",purchase,1.0,0 -35039277,"Half-Life 2 Deathmatch",play,2.3,0 -35039277,"Lumines",purchase,1.0,0 -35039277,"Lumines",play,2.2,0 -35039277,"World of Goo",purchase,1.0,0 -35039277,"World of Goo",play,2.2,0 -35039277,"Magicka Wizard Wars",purchase,1.0,0 -35039277,"Magicka Wizard Wars",play,2.0,0 -35039277,"Cogs",purchase,1.0,0 -35039277,"Cogs",play,2.0,0 -35039277,"Serious Sam HD The Second Encounter",purchase,1.0,0 -35039277,"Serious Sam HD The Second Encounter",play,1.9,0 -35039277,"ORION Prelude",purchase,1.0,0 -35039277,"ORION Prelude",play,1.8,0 -35039277,"Quake Live",purchase,1.0,0 -35039277,"Quake Live",play,1.3,0 -35039277,"Robot Roller-Derby Disco Dodgeball",purchase,1.0,0 -35039277,"Robot Roller-Derby Disco Dodgeball",play,1.3,0 -35039277,"Trine",purchase,1.0,0 -35039277,"Trine",play,0.9,0 -35039277,"Alien Swarm",purchase,1.0,0 -35039277,"Alien Swarm",play,0.7,0 -35039277,"Terraria",purchase,1.0,0 -35039277,"Terraria",play,0.3,0 -35039277,"Audiosurf",purchase,1.0,0 -35039277,"Audiosurf",play,0.3,0 -35039277,"Universe Sandbox",purchase,1.0,0 -35039277,"Universe Sandbox",play,0.1,0 -35039277,"Braid",purchase,1.0,0 -35039277,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -35039277,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -35039277,"Crysis 2 Maximum Edition",purchase,1.0,0 -35039277,"Dead Space",purchase,1.0,0 -35039277,"GemCraft - Chasing Shadows",purchase,1.0,0 -35039277,"Grand Theft Auto San Andreas",purchase,1.0,0 -35039277,"Grand Theft Auto San Andreas",purchase,1.0,0 -35039277,"Half-Life 2",purchase,1.0,0 -35039277,"Half-Life 2 Episode One",purchase,1.0,0 -35039277,"Half-Life 2 Episode Two",purchase,1.0,0 -35039277,"Half-Life 2 Lost Coast",purchase,1.0,0 -35039277,"Lumines Advanced Pack",purchase,1.0,0 -35039277,"Machinarium",purchase,1.0,0 -35039277,"Magicka Final Frontier",purchase,1.0,0 -35039277,"Magicka Frozen Lake",purchase,1.0,0 -35039277,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -35039277,"Magicka Nippon",purchase,1.0,0 -35039277,"Magicka Party Robes",purchase,1.0,0 -35039277,"Magicka The Watchtower",purchase,1.0,0 -35039277,"Magicka Vietnam",purchase,1.0,0 -35039277,"Magicka Wizard's Survival Kit",purchase,1.0,0 -35039277,"Mass Effect",purchase,1.0,0 -35039277,"Mass Effect 2",purchase,1.0,0 -35039277,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -35039277,"Medal of Honor(TM) Single Player",purchase,1.0,0 -35039277,"Medal of Honor Pre-Order",purchase,1.0,0 -35039277,"Mirror's Edge",purchase,1.0,0 -35039277,"Oddworld Abe's Exoddus",purchase,1.0,0 -35039277,"Oddworld Abe's Oddysee",purchase,1.0,0 -35039277,"Patch testing for Chivalry",purchase,1.0,0 -35039277,"PAYDAY The Heist",purchase,1.0,0 -35039277,"Sanctum",purchase,1.0,0 -35039277,"Sanctum 2",purchase,1.0,0 -35039277,"Serious Sam Classic The First Encounter",purchase,1.0,0 -35039277,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -35039277,"Serious Sam Classics Revolution",purchase,1.0,0 -35039277,"Serious Sam HD The First Encounter",purchase,1.0,0 -35039277,"Super Meat Boy",purchase,1.0,0 -35039277,"Supreme Commander Forged Alliance",purchase,1.0,0 -35039277,"The Ship Single Player",purchase,1.0,0 -35039277,"The Ship Tutorial",purchase,1.0,0 -175358288,"Team Fortress 2",purchase,1.0,0 -175358288,"Team Fortress 2",play,1.8,0 -146257187,"Dota 2",purchase,1.0,0 -146257187,"Dota 2",play,284.0,0 -127541532,"Dota 2",purchase,1.0,0 -127541532,"Dota 2",play,33.0,0 -241916029,"Counter-Strike Global Offensive",purchase,1.0,0 -241916029,"Counter-Strike Global Offensive",play,13.6,0 -41407280,"Counter-Strike",purchase,1.0,0 -41407280,"Counter-Strike Condition Zero",purchase,1.0,0 -41407280,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -41407280,"Day of Defeat",purchase,1.0,0 -41407280,"Deathmatch Classic",purchase,1.0,0 -41407280,"Ricochet",purchase,1.0,0 -136403318,"Sleeping Dogs",purchase,1.0,0 -136403318,"Sleeping Dogs",play,4.9,0 -90626360,"MX vs. ATV Reflex",purchase,1.0,0 -90626360,"MX vs. ATV Reflex",play,0.7,0 -90626360,"Team Fortress 2",purchase,1.0,0 -90626360,"Team Fortress 2",play,0.5,0 -251594700,"Grand Theft Auto V",purchase,1.0,0 -251594700,"Grand Theft Auto V",play,62.0,0 -251594700,"Codename CURE",purchase,1.0,0 -251594700,"Codename CURE",play,3.5,0 -251594700,"WARMODE",purchase,1.0,0 -251594700,"WARMODE",play,1.4,0 -171626186,"Dota 2",purchase,1.0,0 -171626186,"Dota 2",play,3.2,0 -90532259,"Football Manager 2013",purchase,1.0,0 -90532259,"Football Manager 2013",play,319.0,0 -90532259,"Football Manager 2014",purchase,1.0,0 -90532259,"Football Manager 2014",play,179.0,0 -90532259,"Football Manager 2012",purchase,1.0,0 -90532259,"Football Manager 2012",play,171.0,0 -90532259,"Football Manager 2015",purchase,1.0,0 -90532259,"Football Manager 2015",play,23.0,0 -1936551,"This War of Mine",purchase,1.0,0 -1936551,"This War of Mine",play,53.0,0 -1936551,"Majesty 2",purchase,1.0,0 -1936551,"Majesty 2",play,50.0,0 -1936551,"Rayman Legends",purchase,1.0,0 -1936551,"Rayman Legends",play,49.0,0 -1936551,"Prison Architect",purchase,1.0,0 -1936551,"Prison Architect",play,43.0,0 -1936551,"Sid Meier's Ace Patrol",purchase,1.0,0 -1936551,"Sid Meier's Ace Patrol",play,37.0,0 -1936551,"FTL Faster Than Light",purchase,1.0,0 -1936551,"FTL Faster Than Light",play,30.0,0 -1936551,"Magic 2015",purchase,1.0,0 -1936551,"Magic 2015",play,30.0,0 -1936551,"Blood Bowl Legendary Edition",purchase,1.0,0 -1936551,"Blood Bowl Legendary Edition",play,24.0,0 -1936551,"The Banner Saga",purchase,1.0,0 -1936551,"The Banner Saga",play,23.0,0 -1936551,"Machinarium",purchase,1.0,0 -1936551,"Machinarium",play,22.0,0 -1936551,"Giana Sisters Twisted Dreams",purchase,1.0,0 -1936551,"Giana Sisters Twisted Dreams",play,21.0,0 -1936551,"Pat & Mat",purchase,1.0,0 -1936551,"Pat & Mat",play,21.0,0 -1936551,"Castle Crashers",purchase,1.0,0 -1936551,"Castle Crashers",play,20.0,0 -1936551,"Space Hulk",purchase,1.0,0 -1936551,"Space Hulk",play,20.0,0 -1936551,"Ultimate General Gettysburg",purchase,1.0,0 -1936551,"Ultimate General Gettysburg",play,19.7,0 -1936551,"World of Goo",purchase,1.0,0 -1936551,"World of Goo",play,19.1,0 -1936551,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -1936551,"Warhammer 40,000 Dawn of War II",play,18.5,0 -1936551,"Game Dev Tycoon",purchase,1.0,0 -1936551,"Game Dev Tycoon",play,16.8,0 -1936551,"Spintires",purchase,1.0,0 -1936551,"Spintires",play,15.7,0 -1936551,"Borderlands 2",purchase,1.0,0 -1936551,"Borderlands 2",play,15.7,0 -1936551,"LEGO Worlds",purchase,1.0,0 -1936551,"LEGO Worlds",play,15.5,0 -1936551,"Broforce",purchase,1.0,0 -1936551,"Broforce",play,15.5,0 -1936551,"Mark of the Ninja",purchase,1.0,0 -1936551,"Mark of the Ninja",play,14.5,0 -1936551,"Octodad Dadliest Catch",purchase,1.0,0 -1936551,"Octodad Dadliest Catch",play,13.8,0 -1936551,"Magic 2014 ",purchase,1.0,0 -1936551,"Magic 2014 ",play,13.4,0 -1936551,"Legend of Grimrock",purchase,1.0,0 -1936551,"Legend of Grimrock",play,12.1,0 -1936551,"Men of War",purchase,1.0,0 -1936551,"Men of War",play,11.6,0 -1936551,"Warhammer 40,000 Space Marine",purchase,1.0,0 -1936551,"Warhammer 40,000 Space Marine",play,11.2,0 -1936551,"Elven Legacy",purchase,1.0,0 -1936551,"Elven Legacy",play,10.8,0 -1936551,"CastleStorm",purchase,1.0,0 -1936551,"CastleStorm",play,10.7,0 -1936551,"Skulls of the Shogun",purchase,1.0,0 -1936551,"Skulls of the Shogun",play,10.2,0 -1936551,"Kerbal Space Program",purchase,1.0,0 -1936551,"Kerbal Space Program",play,9.5,0 -1936551,"Magic Duels",purchase,1.0,0 -1936551,"Magic Duels",play,8.7,0 -1936551,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -1936551,"The Witcher 2 Assassins of Kings Enhanced Edition",play,7.5,0 -1936551,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -1936551,"Sid Meier's Civilization IV Colonization",play,7.4,0 -1936551,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -1936551,"Red Orchestra Ostfront 41-45",play,7.1,0 -1936551,"Napoleon Total War",purchase,1.0,0 -1936551,"Napoleon Total War",play,7.1,0 -1936551,"FEZ",purchase,1.0,0 -1936551,"FEZ",play,6.0,0 -1936551,"Sid Meier's Pirates!",purchase,1.0,0 -1936551,"Sid Meier's Pirates!",play,5.5,0 -1936551,"King of Dragon Pass",purchase,1.0,0 -1936551,"King of Dragon Pass",play,5.4,0 -1936551,"Ticket to Ride",purchase,1.0,0 -1936551,"Ticket to Ride",play,5.4,0 -1936551,"Botanicula",purchase,1.0,0 -1936551,"Botanicula",play,5.2,0 -1936551,"Always Sometimes Monsters",purchase,1.0,0 -1936551,"Always Sometimes Monsters",play,5.1,0 -1936551,"Car Mechanic Simulator 2014",purchase,1.0,0 -1936551,"Car Mechanic Simulator 2014",play,5.1,0 -1936551,"Far Cry 3",purchase,1.0,0 -1936551,"Far Cry 3",play,5.1,0 -1936551,"Guacamelee! Gold Edition",purchase,1.0,0 -1936551,"Guacamelee! Gold Edition",play,3.4,0 -1936551,"Trine 2",purchase,1.0,0 -1936551,"Trine 2",play,3.2,0 -1936551,"FlatOut 2",purchase,1.0,0 -1936551,"FlatOut 2",play,2.7,0 -1936551,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -1936551,"Batman Arkham Asylum GOTY Edition",play,2.5,0 -1936551,"Supreme Commander",purchase,1.0,0 -1936551,"Supreme Commander",play,2.5,0 -1936551,"Scribblenauts Unlimited",purchase,1.0,0 -1936551,"Scribblenauts Unlimited",play,2.3,0 -1936551,"Sid Meier's Railroads!",purchase,1.0,0 -1936551,"Sid Meier's Railroads!",play,2.3,0 -1936551,"TowerFall Ascension",purchase,1.0,0 -1936551,"TowerFall Ascension",play,2.2,0 -1936551,"Cossacks II Napoleonic Wars",purchase,1.0,0 -1936551,"Cossacks II Napoleonic Wars",play,2.1,0 -1936551,"Hotline Miami",purchase,1.0,0 -1936551,"Hotline Miami",play,2.0,0 -1936551,"Jagged Alliance 2 Gold Pack",purchase,1.0,0 -1936551,"Jagged Alliance 2 Gold Pack",play,1.6,0 -1936551,"Terraria",purchase,1.0,0 -1936551,"Terraria",play,1.6,0 -1936551,"Little Racers STREET",purchase,1.0,0 -1936551,"Little Racers STREET",play,1.5,0 -1936551,"The Escapists",purchase,1.0,0 -1936551,"The Escapists",play,1.4,0 -1936551,"Worms Reloaded",purchase,1.0,0 -1936551,"Worms Reloaded",play,1.3,0 -1936551,"Ori and the Blind Forest",purchase,1.0,0 -1936551,"Ori and the Blind Forest",play,1.2,0 -1936551,"The Swapper",purchase,1.0,0 -1936551,"The Swapper",play,1.1,0 -1936551,"Wings! Remastered Edition",purchase,1.0,0 -1936551,"Wings! Remastered Edition",play,1.1,0 -1936551,"Blackguards",purchase,1.0,0 -1936551,"Blackguards",play,1.1,0 -1936551,"Papers, Please",purchase,1.0,0 -1936551,"Papers, Please",play,1.0,0 -1936551,"Batman Arkham City GOTY",purchase,1.0,0 -1936551,"Batman Arkham City GOTY",play,0.9,0 -1936551,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -1936551,"Sid Meier's Ace Patrol Pacific Skies",play,0.9,0 -1936551,"Mortal Kombat Komplete Edition",purchase,1.0,0 -1936551,"Mortal Kombat Komplete Edition",play,0.9,0 -1936551,"SteamWorld Dig",purchase,1.0,0 -1936551,"SteamWorld Dig",play,0.8,0 -1936551,"Broken Sword 1 - Shadow of the Templars Director's Cut",purchase,1.0,0 -1936551,"Broken Sword 1 - Shadow of the Templars Director's Cut",play,0.7,0 -1936551,"Wizorb",purchase,1.0,0 -1936551,"Wizorb",play,0.6,0 -1936551,"Day of Defeat",purchase,1.0,0 -1936551,"Day of Defeat",play,0.6,0 -1936551,"SpeedRunners",purchase,1.0,0 -1936551,"SpeedRunners",play,0.5,0 -1936551,"Warlock 2 the Exiled",purchase,1.0,0 -1936551,"Warlock 2 the Exiled",play,0.5,0 -1936551,"Cities Skylines",purchase,1.0,0 -1936551,"Cities Skylines",play,0.5,0 -1936551,"Magicka",purchase,1.0,0 -1936551,"Magicka",play,0.4,0 -1936551,"Pinball FX2",purchase,1.0,0 -1936551,"Pinball FX2",play,0.4,0 -1936551,"Driftmoon",purchase,1.0,0 -1936551,"Driftmoon",play,0.3,0 -1936551,"Pixel Piracy",purchase,1.0,0 -1936551,"Pixel Piracy",play,0.3,0 -1936551,"Gunpoint",purchase,1.0,0 -1936551,"Gunpoint",play,0.3,0 -1936551,"Nidhogg",purchase,1.0,0 -1936551,"Nidhogg",play,0.3,0 -1936551,"Sid Meier's Civilization V",purchase,1.0,0 -1936551,"Sid Meier's Civilization V",play,0.3,0 -1936551,"Project Zomboid",purchase,1.0,0 -1936551,"Project Zomboid",play,0.3,0 -1936551,"The Lord of the Rings War in the North",purchase,1.0,0 -1936551,"The Lord of the Rings War in the North",play,0.3,0 -1936551,"Hammerwatch",purchase,1.0,0 -1936551,"Hammerwatch",play,0.3,0 -1936551,"Darkest Hour Europe '44-'45",purchase,1.0,0 -1936551,"Darkest Hour Europe '44-'45",play,0.2,0 -1936551,"LUFTRAUSERS",purchase,1.0,0 -1936551,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -1936551,"Arma Cold War Assault",purchase,1.0,0 -1936551,"Awesomenauts",purchase,1.0,0 -1936551,"Cities XL Platinum",purchase,1.0,0 -1936551,"Company of Heroes 2",purchase,1.0,0 -1936551,"Confrontation",purchase,1.0,0 -1936551,"Construction Machines 2014",purchase,1.0,0 -1936551,"Counter-Strike",purchase,1.0,0 -1936551,"Day of Defeat Source",purchase,1.0,0 -1936551,"Dear Esther",purchase,1.0,0 -1936551,"Deathmatch Classic",purchase,1.0,0 -1936551,"Divinity II Developer's Cut",purchase,1.0,0 -1936551,"Dust An Elysian Tail",purchase,1.0,0 -1936551,"Euro Truck Simulator 2",purchase,1.0,0 -1936551,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -1936551,"F.E.A.R. 3",purchase,1.0,0 -1936551,"Farm Machines Championships 2014",purchase,1.0,0 -1936551,"Game of Thrones ",purchase,1.0,0 -1936551,"Gone Home",purchase,1.0,0 -1936551,"GRID 2",purchase,1.0,0 -1936551,"Guardians of Middle-earth",purchase,1.0,0 -1936551,"Gunman Clive",purchase,1.0,0 -1936551,"Half-Life",purchase,1.0,0 -1936551,"Half-Life Blue Shift",purchase,1.0,0 -1936551,"Half-Life Opposing Force",purchase,1.0,0 -1936551,"Helicopter Simulator 2014 Search and Rescue",purchase,1.0,0 -1936551,"Hostile Waters Antaeus Rising",purchase,1.0,0 -1936551,"Humanity Asset",purchase,1.0,0 -1936551,"Insurgency",purchase,1.0,0 -1936551,"Jagged Alliance 2 Gold Unfinished Business",purchase,1.0,0 -1936551,"KAMI",purchase,1.0,0 -1936551,"Lume",purchase,1.0,0 -1936551,"Mare Nostrum",purchase,1.0,0 -1936551,"Medieval II Total War",purchase,1.0,0 -1936551,"Medieval II Total War Kingdoms",purchase,1.0,0 -1936551,"Men of War Assault Squad",purchase,1.0,0 -1936551,"Men of War Condemned Heroes",purchase,1.0,0 -1936551,"Men of War Red Tide",purchase,1.0,0 -1936551,"Men of War Vietnam",purchase,1.0,0 -1936551,"Mortal Kombat Kollection",purchase,1.0,0 -1936551,"N.P.P.D. RUSH - The milk of Ultra violet",purchase,1.0,0 -1936551,"Pinball FX2 - Core pack",purchase,1.0,0 -1936551,"Pinball FX2 - Earth Defense Table",purchase,1.0,0 -1936551,"Pinball FX2 - Epic Quest Table",purchase,1.0,0 -1936551,"Pinball FX2 - Paranormal Table",purchase,1.0,0 -1936551,"Pinball FX2 - Zen Classics Pack",purchase,1.0,0 -1936551,"Probably Archery",purchase,1.0,0 -1936551,"RAW - Realms of Ancient War",purchase,1.0,0 -1936551,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -1936551,"Ricochet",purchase,1.0,0 -1936551,"Rocksmith 2014",purchase,1.0,0 -1936551,"Shelter",purchase,1.0,0 -1936551,"SHOGUN Total War - Gold Edition",purchase,1.0,0 -1936551,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -1936551,"Stealth Inc 2",purchase,1.0,0 -1936551,"Supreme Commander Forged Alliance",purchase,1.0,0 -1936551,"Team Fortress Classic",purchase,1.0,0 -1936551,"Tesla Effect",purchase,1.0,0 -1936551,"The Banner Saga - Mod Content",purchase,1.0,0 -1936551,"Ticket to Ride - Europe",purchase,1.0,0 -1936551,"Ticket to Ride - USA 1910",purchase,1.0,0 -1936551,"Viking Battle for Asgard",purchase,1.0,0 -1936551,"Warhammer 40,000 Storm of Vengeance Deathwing Terminator",purchase,1.0,0 -1936551,"Windosill",purchase,1.0,0 -1936551,"Worms Revolution",purchase,1.0,0 -307671219,"Red Crucible Firestorm",purchase,1.0,0 -307671219,"Red Crucible Firestorm",play,0.6,0 -216502479,"Dota 2",purchase,1.0,0 -216502479,"Dota 2",play,2.8,0 -130378178,"Dota 2",purchase,1.0,0 -130378178,"Dota 2",play,400.0,0 -151662395,"Counter-Strike Global Offensive",purchase,1.0,0 -151662395,"Counter-Strike Global Offensive",play,578.0,0 -151662395,"Dota 2",purchase,1.0,0 -151662395,"Dota 2",play,26.0,0 -151662395,"SMITE",purchase,1.0,0 -151662395,"SMITE",play,7.8,0 -151662395,"Fallen Earth",purchase,1.0,0 -151662395,"Fallen Earth",play,2.6,0 -151662395,"Garry's Mod",purchase,1.0,0 -151662395,"Garry's Mod",play,1.9,0 -151662395,"Batla",purchase,1.0,0 -151662395,"Batla",play,1.7,0 -151662395,"Trove",purchase,1.0,0 -151662395,"Trove",play,1.5,0 -151662395,"Mortal Kombat Komplete Edition",purchase,1.0,0 -151662395,"Mortal Kombat Komplete Edition",play,1.2,0 -151662395,"Tribes Ascend",purchase,1.0,0 -151662395,"Tribes Ascend",play,0.7,0 -151662395,"Loadout",purchase,1.0,0 -151662395,"Loadout",play,0.6,0 -151662395,"Black Fire",purchase,1.0,0 -151662395,"Black Fire",play,0.3,0 -151662395,"Rise of Incarnates",purchase,1.0,0 -151662395,"Rise of Incarnates",play,0.1,0 -151662395,"Unturned",purchase,1.0,0 -151662395,"Batla - Starter Pack",purchase,1.0,0 -151662395,"Batla - Tank",purchase,1.0,0 -151662395,"Hexcells",purchase,1.0,0 -151662395,"Magicka Wizard Wars",purchase,1.0,0 -151662395,"TERA",purchase,1.0,0 -242207850,"Dota 2",purchase,1.0,0 -242207850,"Dota 2",play,5.0,0 -271938268,"Team Fortress 2",purchase,1.0,0 -271938268,"Team Fortress 2",play,28.0,0 -271938268,"Strife",purchase,1.0,0 -271938268,"Strife",play,13.0,0 -271938268,"SMITE",purchase,1.0,0 -271938268,"SMITE",play,12.7,0 -271938268,"Dirty Bomb",purchase,1.0,0 -271938268,"Dirty Bomb",play,6.9,0 -271938268,"Clicker Heroes",purchase,1.0,0 -271938268,"Clicker Heroes",play,6.4,0 -271938268,"ARK Survival Evolved",purchase,1.0,0 -271938268,"ARK Survival Evolved",play,4.1,0 -271938268,"TERA",purchase,1.0,0 -271938268,"TERA",play,3.7,0 -271938268,"Dota 2",purchase,1.0,0 -271938268,"Dota 2",play,0.9,0 -271938268,"Golden Rush",purchase,1.0,0 -271938268,"Golden Rush",play,0.6,0 -111419019,"Team Fortress 2",purchase,1.0,0 -111419019,"Team Fortress 2",play,0.4,0 -111419019,"Counter-Strike Global Offensive",purchase,1.0,0 -111419019,"Counter-Strike Global Offensive",play,0.2,0 -205339310,"Dota 2",purchase,1.0,0 -205339310,"Dota 2",play,1.7,0 -205339310,"GunZ 2 The Second Duel",purchase,1.0,0 -205339310,"Unturned",purchase,1.0,0 -258393767,"UberStrike",purchase,1.0,0 -58476249,"Speedball 2 Tournament",purchase,1.0,0 -58476249,"Speedball 2 Tournament",play,0.1,0 -276680364,"Dota 2",purchase,1.0,0 -276680364,"Dota 2",play,2.6,0 -172009351,"Dota 2",purchase,1.0,0 -172009351,"Dota 2",play,2.8,0 -168152540,"Sid Meier's Civilization V",purchase,1.0,0 -168152540,"Sid Meier's Civilization V",play,950.0,0 -168152540,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -168152540,"Microsoft Flight Simulator X Steam Edition",play,52.0,0 -168152540,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -307519874,"Dota 2",purchase,1.0,0 -307519874,"Dota 2",play,1.8,0 -94120095,"Team Fortress 2",purchase,1.0,0 -94120095,"Team Fortress 2",play,1120.0,0 -94120095,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -94120095,"Rising Storm/Red Orchestra 2 Multiplayer",play,3.5,0 -94120095,"Warlock - Master of the Arcane",purchase,1.0,0 -94120095,"Warlock - Master of the Arcane",play,2.4,0 -94120095,"PAYDAY The Heist",purchase,1.0,0 -94120095,"PAYDAY The Heist",play,2.2,0 -94120095,"Teleglitch Die More Edition",purchase,1.0,0 -94120095,"Teleglitch Die More Edition",play,2.1,0 -94120095,"Sniper Elite V2",purchase,1.0,0 -94120095,"Sniper Elite V2",play,1.7,0 -94120095,"Left 4 Dead 2",purchase,1.0,0 -94120095,"Left 4 Dead 2",play,1.4,0 -94120095,"Counter-Strike Nexon Zombies",purchase,1.0,0 -94120095,"Deadbreed",purchase,1.0,0 -94120095,"Free to Play",purchase,1.0,0 -94120095,"Kingdom Wars",purchase,1.0,0 -94120095,"Loadout",purchase,1.0,0 -94120095,"Pinball Arcade",purchase,1.0,0 -94120095,"Pinball FX2",purchase,1.0,0 -94120095,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -94120095,"The Expendabros",purchase,1.0,0 -94120095,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -94120095,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -291406122,"Counter-Strike Global Offensive",purchase,1.0,0 -291406122,"Counter-Strike Global Offensive",play,69.0,0 -291406122,"Lovely Weather We're Having",purchase,1.0,0 -201974556,"Unturned",purchase,1.0,0 -201974556,"Unturned",play,31.0,0 -201974556,"Aion",purchase,1.0,0 -201974556,"Aion",play,12.5,0 -201974556,"Team Fortress 2",purchase,1.0,0 -201974556,"Team Fortress 2",play,4.7,0 -201974556,"Fishing Planet",purchase,1.0,0 -201974556,"Fishing Planet",play,2.1,0 -201974556,"Mortal Online",purchase,1.0,0 -201974556,"Mortal Online",play,0.2,0 -201974556,"Back to Dinosaur Island ",purchase,1.0,0 -201974556,"Elsword",purchase,1.0,0 -201974556,"Piercing Blow",purchase,1.0,0 -8277694,"Counter-Strike Condition Zero",purchase,1.0,0 -8277694,"Counter-Strike Condition Zero",play,1.3,0 -8277694,"Counter-Strike",purchase,1.0,0 -8277694,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -242051423,"Unturned",purchase,1.0,0 -242051423,"Unturned",play,3.0,0 -11794760,"Dota 2",purchase,1.0,0 -11794760,"Dota 2",play,839.0,0 -11794760,"Team Fortress 2",purchase,1.0,0 -11794760,"Team Fortress 2",play,442.0,0 -11794760,"Terraria",purchase,1.0,0 -11794760,"Terraria",play,156.0,0 -11794760,"Evil Genius",purchase,1.0,0 -11794760,"Evil Genius",play,50.0,0 -11794760,"Kerbal Space Program",purchase,1.0,0 -11794760,"Kerbal Space Program",play,48.0,0 -11794760,"Just Cause 2",purchase,1.0,0 -11794760,"Just Cause 2",play,32.0,0 -11794760,"Marvel Heroes 2015",purchase,1.0,0 -11794760,"Marvel Heroes 2015",play,17.9,0 -11794760,"Torchlight",purchase,1.0,0 -11794760,"Torchlight",play,17.5,0 -11794760,"Torchlight II",purchase,1.0,0 -11794760,"Torchlight II",play,13.7,0 -11794760,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -11794760,"Call of Duty Black Ops - Multiplayer",play,8.9,0 -11794760,"Sid Meier's Civilization V",purchase,1.0,0 -11794760,"Sid Meier's Civilization V",play,7.5,0 -11794760,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -11794760,"Plants vs. Zombies Game of the Year",play,7.0,0 -11794760,"Spore",purchase,1.0,0 -11794760,"Spore",play,6.4,0 -11794760,"Left 4 Dead 2",purchase,1.0,0 -11794760,"Left 4 Dead 2",play,6.3,0 -11794760,"XCOM Enemy Unknown",purchase,1.0,0 -11794760,"XCOM Enemy Unknown",play,6.3,0 -11794760,"Orcs Must Die!",purchase,1.0,0 -11794760,"Orcs Must Die!",play,5.7,0 -11794760,"Just Cause",purchase,1.0,0 -11794760,"Just Cause",play,4.6,0 -11794760,"Left 4 Dead",purchase,1.0,0 -11794760,"Left 4 Dead",play,4.5,0 -11794760,"Command and Conquer Red Alert 3",purchase,1.0,0 -11794760,"Command and Conquer Red Alert 3",play,4.3,0 -11794760,"Portal 2",purchase,1.0,0 -11794760,"Portal 2",play,3.6,0 -11794760,"BRINK",purchase,1.0,0 -11794760,"BRINK",play,3.5,0 -11794760,"Portal",purchase,1.0,0 -11794760,"Portal",play,3.4,0 -11794760,"Far Cry 3",purchase,1.0,0 -11794760,"Far Cry 3",play,3.4,0 -11794760,"Dungeon Defenders",purchase,1.0,0 -11794760,"Dungeon Defenders",play,3.3,0 -11794760,"Dead Island",purchase,1.0,0 -11794760,"Dead Island",play,3.2,0 -11794760,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -11794760,"Star Wars The Force Unleashed Ultimate Sith Edition",play,2.9,0 -11794760,"Sins of a Solar Empire Trinity",purchase,1.0,0 -11794760,"Sins of a Solar Empire Trinity",play,2.9,0 -11794760,"Batman Arkham Asylum",purchase,1.0,0 -11794760,"Batman Arkham Asylum",play,2.6,0 -11794760,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -11794760,"Command and Conquer Red Alert 3 - Uprising",play,2.3,0 -11794760,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -11794760,"Warhammer 40,000 Dawn of War II",play,1.9,0 -11794760,"DC Universe Online",purchase,1.0,0 -11794760,"DC Universe Online",play,1.9,0 -11794760,"Star Wars Empire at War Gold",purchase,1.0,0 -11794760,"Star Wars Empire at War Gold",play,1.9,0 -11794760,"Supreme Commander 2",purchase,1.0,0 -11794760,"Supreme Commander 2",play,1.9,0 -11794760,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -11794760,"The Elder Scrolls IV Oblivion ",play,1.8,0 -11794760,"Hitman Absolution",purchase,1.0,0 -11794760,"Hitman Absolution",play,1.7,0 -11794760,"Sunless Sea",purchase,1.0,0 -11794760,"Sunless Sea",play,1.5,0 -11794760,"Starbound",purchase,1.0,0 -11794760,"Starbound",play,1.5,0 -11794760,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -11794760,"Unreal Tournament 3 Black Edition",play,1.4,0 -11794760,"Osmos",purchase,1.0,0 -11794760,"Osmos",play,1.4,0 -11794760,"Battlefield 2",purchase,1.0,0 -11794760,"Battlefield 2",play,1.4,0 -11794760,"Company of Heroes",purchase,1.0,0 -11794760,"Company of Heroes",play,1.3,0 -11794760,"BioShock",purchase,1.0,0 -11794760,"BioShock",play,1.3,0 -11794760,"The Vanishing of Ethan Carter",purchase,1.0,0 -11794760,"The Vanishing of Ethan Carter",play,1.1,0 -11794760,"State of Decay",purchase,1.0,0 -11794760,"State of Decay",play,1.1,0 -11794760,"Counter-Strike Global Offensive",purchase,1.0,0 -11794760,"Counter-Strike Global Offensive",play,1.1,0 -11794760,"Peggle Deluxe",purchase,1.0,0 -11794760,"Peggle Deluxe",play,1.1,0 -11794760,"Hitman 2 Silent Assassin",purchase,1.0,0 -11794760,"Hitman 2 Silent Assassin",play,1.1,0 -11794760,"CastleStorm",purchase,1.0,0 -11794760,"CastleStorm",play,1.1,0 -11794760,"Poker Night at the Inventory",purchase,1.0,0 -11794760,"Poker Night at the Inventory",play,1.0,0 -11794760,"Transformers War for Cybertron",purchase,1.0,0 -11794760,"Transformers War for Cybertron",play,0.9,0 -11794760,"Borderlands",purchase,1.0,0 -11794760,"Borderlands",play,0.9,0 -11794760,"Universe Sandbox",purchase,1.0,0 -11794760,"Universe Sandbox",play,0.9,0 -11794760,"Chime",purchase,1.0,0 -11794760,"Chime",play,0.9,0 -11794760,"Saints Row The Third",purchase,1.0,0 -11794760,"Saints Row The Third",play,0.9,0 -11794760,"Universe at War Earth Assault",purchase,1.0,0 -11794760,"Universe at War Earth Assault",play,0.7,0 -11794760,"Age of Empires II HD Edition",purchase,1.0,0 -11794760,"Age of Empires II HD Edition",play,0.7,0 -11794760,"Mass Effect 2",purchase,1.0,0 -11794760,"Mass Effect 2",play,0.7,0 -11794760,"Mirror's Edge",purchase,1.0,0 -11794760,"Mirror's Edge",play,0.7,0 -11794760,"Hitman Blood Money",purchase,1.0,0 -11794760,"Hitman Blood Money",play,0.7,0 -11794760,"Monday Night Combat",purchase,1.0,0 -11794760,"Monday Night Combat",play,0.6,0 -11794760,"X-COM UFO Defense",purchase,1.0,0 -11794760,"X-COM UFO Defense",play,0.6,0 -11794760,"Far Cry",purchase,1.0,0 -11794760,"Far Cry",play,0.6,0 -11794760,"Crysis",purchase,1.0,0 -11794760,"Crysis",play,0.5,0 -11794760,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -11794760,"Fallout 3 - Game of the Year Edition",play,0.5,0 -11794760,"Alien Swarm",purchase,1.0,0 -11794760,"Alien Swarm",play,0.4,0 -11794760,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -11794760,"Resident Evil 5 / Biohazard 5",play,0.4,0 -11794760,"Mark of the Ninja",purchase,1.0,0 -11794760,"Mark of the Ninja",play,0.4,0 -11794760,"Call of Duty Black Ops",purchase,1.0,0 -11794760,"Call of Duty Black Ops",play,0.4,0 -11794760,"Peggle Nights",purchase,1.0,0 -11794760,"Peggle Nights",play,0.4,0 -11794760,"Lost Planet Extreme Condition",purchase,1.0,0 -11794760,"Lost Planet Extreme Condition",play,0.4,0 -11794760,"Call of Cthulhu Dark Corners of the Earth",purchase,1.0,0 -11794760,"Call of Cthulhu Dark Corners of the Earth",play,0.3,0 -11794760,"Dead Space",purchase,1.0,0 -11794760,"Dead Space",play,0.3,0 -11794760,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -11794760,"Tom Clancy's Splinter Cell Conviction",play,0.3,0 -11794760,"BIT.TRIP BEAT",purchase,1.0,0 -11794760,"BIT.TRIP BEAT",play,0.3,0 -11794760,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -11794760,"Tropico 3 - Steam Special Edition",play,0.3,0 -11794760,"Hitman Sniper Challenge",purchase,1.0,0 -11794760,"Hitman Sniper Challenge",play,0.3,0 -11794760,"The Elder Scrolls V Skyrim",purchase,1.0,0 -11794760,"The Elder Scrolls V Skyrim",play,0.3,0 -11794760,"Lunar Flight",purchase,1.0,0 -11794760,"Lunar Flight",play,0.3,0 -11794760,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -11794760,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,0.3,0 -11794760,"X3 Terran Conflict",purchase,1.0,0 -11794760,"X3 Terran Conflict",play,0.2,0 -11794760,"Surgeon Simulator",purchase,1.0,0 -11794760,"Surgeon Simulator",play,0.2,0 -11794760,"Eufloria",purchase,1.0,0 -11794760,"Eufloria",play,0.2,0 -11794760,"Renegade Ops",purchase,1.0,0 -11794760,"Renegade Ops",play,0.2,0 -11794760,"PC Gamer",purchase,1.0,0 -11794760,"PC Gamer",play,0.2,0 -11794760,"Zuma's Revenge! - Adventure",purchase,1.0,0 -11794760,"Zuma's Revenge! - Adventure",play,0.2,0 -11794760,"From Dust",purchase,1.0,0 -11794760,"From Dust",play,0.2,0 -11794760,"Deadlight",purchase,1.0,0 -11794760,"Deadlight",play,0.2,0 -11794760,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -11794760,"Red Faction Guerrilla Steam Edition",play,0.2,0 -11794760,"Commandos 3 Destination Berlin",purchase,1.0,0 -11794760,"Commandos 3 Destination Berlin",play,0.2,0 -11794760,"Counter-Strike Condition Zero",purchase,1.0,0 -11794760,"Counter-Strike Condition Zero",play,0.2,0 -11794760,"Gnomoria",purchase,1.0,0 -11794760,"Gnomoria",play,0.2,0 -11794760,"Thief Deadly Shadows",purchase,1.0,0 -11794760,"Thief Deadly Shadows",play,0.1,0 -11794760,"Dawn of Discovery - Venice",purchase,1.0,0 -11794760,"Dawn of Discovery - Venice",play,0.1,0 -11794760,"Space Engineers",purchase,1.0,0 -11794760,"Space Engineers",play,0.1,0 -11794760,"Rogue Legacy",purchase,1.0,0 -11794760,"Rogue Legacy",play,0.1,0 -11794760,"Beat Hazard",purchase,1.0,0 -11794760,"Beat Hazard",play,0.1,0 -11794760,"Spelunky",purchase,1.0,0 -11794760,"Spelunky",play,0.1,0 -11794760,"Defense Grid The Awakening",purchase,1.0,0 -11794760,"Defense Grid The Awakening",play,0.1,0 -11794760,"HOARD",purchase,1.0,0 -11794760,"Monaco",purchase,1.0,0 -11794760,"Titan Quest",purchase,1.0,0 -11794760,"Race The Sun",purchase,1.0,0 -11794760,"Orcs Must Die! 2",purchase,1.0,0 -11794760,"Counter-Strike",purchase,1.0,0 -11794760,"1... 2... 3... KICK IT! (Drop That Beat Like an Ugly Baby)",purchase,1.0,0 -11794760,"AaAaAA!!! - A Reckless Disregard for Gravity",purchase,1.0,0 -11794760,"Age of Empires II HD The Forgotten",purchase,1.0,0 -11794760,"Alan Wake's American Nightmare",purchase,1.0,0 -11794760,"Amnesia The Dark Descent",purchase,1.0,0 -11794760,"Assassin's Creed",purchase,1.0,0 -11794760,"Audiosurf",purchase,1.0,0 -11794760,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -11794760,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -11794760,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -11794760,"Cogs",purchase,1.0,0 -11794760,"Commander Keen Complete Pack",purchase,1.0,0 -11794760,"Commandos 2 Men of Courage",purchase,1.0,0 -11794760,"Company of Heroes (New Steam Version)",purchase,1.0,0 -11794760,"Company of Heroes Opposing Fronts",purchase,1.0,0 -11794760,"Company of Heroes Tales of Valor",purchase,1.0,0 -11794760,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -11794760,"Counter-Strike Source",purchase,1.0,0 -11794760,"Crysis Warhead",purchase,1.0,0 -11794760,"Crysis Wars",purchase,1.0,0 -11794760,"Darksiders",purchase,1.0,0 -11794760,"Dawn of Discovery",purchase,1.0,0 -11794760,"Dawn of Discovery - Demo",purchase,1.0,0 -11794760,"Deus Ex Human Revolution",purchase,1.0,0 -11794760,"DOOM 3",purchase,1.0,0 -11794760,"DOOM 3 Resurrection of Evil",purchase,1.0,0 -11794760,"DOOM II Hell on Earth",purchase,1.0,0 -11794760,"Eufloria HD",purchase,1.0,0 -11794760,"Eufloria HD Original Soundtrack",purchase,1.0,0 -11794760,"Fallout New Vegas",purchase,1.0,0 -11794760,"Fallout New Vegas Dead Money",purchase,1.0,0 -11794760,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -11794760,"Final DOOM",purchase,1.0,0 -11794760,"Frontlines Fuel of War",purchase,1.0,0 -11794760,"Full Spectrum Warrior",purchase,1.0,0 -11794760,"Full Spectrum Warrior Ten Hammers",purchase,1.0,0 -11794760,"Garry's Mod",purchase,1.0,0 -11794760,"Grand Theft Auto IV",purchase,1.0,0 -11794760,"Half-Life 2",purchase,1.0,0 -11794760,"Half-Life 2 Deathmatch",purchase,1.0,0 -11794760,"Half-Life 2 Episode One",purchase,1.0,0 -11794760,"Half-Life 2 Episode Two",purchase,1.0,0 -11794760,"Half-Life 2 Lost Coast",purchase,1.0,0 -11794760,"Half-Life Deathmatch Source",purchase,1.0,0 -11794760,"Heretic Shadow of the Serpent Riders",purchase,1.0,0 -11794760,"Hero Academy",purchase,1.0,0 -11794760,"HeXen Beyond Heretic",purchase,1.0,0 -11794760,"HeXen Deathkings of the Dark Citadel",purchase,1.0,0 -11794760,"HeXen II",purchase,1.0,0 -11794760,"Hitman Codename 47",purchase,1.0,0 -11794760,"Hunted The Demon's Forge",purchase,1.0,0 -11794760,"Jamestown",purchase,1.0,0 -11794760,"Juiced 2 Hot Import Nights",purchase,1.0,0 -11794760,"Killing Floor",purchase,1.0,0 -11794760,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -11794760,"Mass Effect",purchase,1.0,0 -11794760,"Master Levels for DOOM II",purchase,1.0,0 -11794760,"Metro 2033",purchase,1.0,0 -11794760,"On the Rain-Slick Precipice of Darkness, Episode One",purchase,1.0,0 -11794760,"On the Rain-Slick Precipice of Darkness, Episode Two",purchase,1.0,0 -11794760,"Planetary Annihilation",purchase,1.0,0 -11794760,"Planetary Annihilation - Digital Deluxe Bundle",purchase,1.0,0 -11794760,"Planetary Annihilation - Original Soundtrack",purchase,1.0,0 -11794760,"Quake",purchase,1.0,0 -11794760,"Quake 4",purchase,1.0,0 -11794760,"Quake II",purchase,1.0,0 -11794760,"Quake II Ground Zero",purchase,1.0,0 -11794760,"Quake II The Reckoning",purchase,1.0,0 -11794760,"Quake III Team Arena",purchase,1.0,0 -11794760,"Quake III Arena",purchase,1.0,0 -11794760,"Quake Mission Pack 1 Scourge of Armagon",purchase,1.0,0 -11794760,"Quake Mission Pack 2 Dissolution of Eternity",purchase,1.0,0 -11794760,"Red Faction",purchase,1.0,0 -11794760,"Red Faction Armageddon",purchase,1.0,0 -11794760,"Red Faction II",purchase,1.0,0 -11794760,"Return to Castle Wolfenstein",purchase,1.0,0 -11794760,"Rogue Warrior",purchase,1.0,0 -11794760,"RUSH",purchase,1.0,0 -11794760,"Saints Row 2",purchase,1.0,0 -11794760,"Shatter",purchase,1.0,0 -11794760,"SMITE",purchase,1.0,0 -11794760,"Starbound - Unstable",purchase,1.0,0 -11794760,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -11794760,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -11794760,"Super Meat Boy",purchase,1.0,0 -11794760,"The Ball",purchase,1.0,0 -11794760,"The Elder Scrolls III Morrowind",purchase,1.0,0 -11794760,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -11794760,"The Ultimate DOOM",purchase,1.0,0 -11794760,"The Vanishing of Ethan Carter Redux",purchase,1.0,0 -11794760,"The Wonderful End of the World",purchase,1.0,0 -11794760,"Titan Quest Immortal Throne",purchase,1.0,0 -11794760,"Toki Tori",purchase,1.0,0 -11794760,"Tribes Ascend - Steam Starter Pack",purchase,1.0,0 -11794760,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -11794760,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -11794760,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -11794760,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -11794760,"Wolfenstein 3D",purchase,1.0,0 -11794760,"Wolfenstein 3D Spear of Destiny",purchase,1.0,0 -11794760,"World of Goo",purchase,1.0,0 -11794760,"X-COM Apocalypse",purchase,1.0,0 -11794760,"X-COM Enforcer",purchase,1.0,0 -11794760,"X-COM Interceptor",purchase,1.0,0 -11794760,"X-COM Terror from the Deep",purchase,1.0,0 -159842342,"Left 4 Dead 2",purchase,1.0,0 -159842342,"Left 4 Dead 2",play,5.8,0 -7757631,"Counter-Strike",purchase,1.0,0 -7757631,"Counter-Strike",play,94.0,0 -7757631,"Day of Defeat",purchase,1.0,0 -7757631,"Deathmatch Classic",purchase,1.0,0 -7757631,"Half-Life",purchase,1.0,0 -7757631,"Half-Life Blue Shift",purchase,1.0,0 -7757631,"Half-Life Opposing Force",purchase,1.0,0 -7757631,"Ricochet",purchase,1.0,0 -7757631,"Team Fortress Classic",purchase,1.0,0 -88220400,"Team Fortress 2",purchase,1.0,0 -88220400,"Team Fortress 2",play,0.6,0 -206864587,"Dota 2",purchase,1.0,0 -206864587,"Dota 2",play,2.9,0 -176483631,"Dota 2",purchase,1.0,0 -176483631,"Dota 2",play,0.2,0 -181966419,"Dota 2",purchase,1.0,0 -181966419,"Dota 2",play,282.0,0 -181966419,"The Elder Scrolls V Skyrim",purchase,1.0,0 -181966419,"The Elder Scrolls V Skyrim",play,18.6,0 -181966419,"BioShock",purchase,1.0,0 -181966419,"BioShock",play,2.4,0 -181966419,"Counter-Strike Global Offensive",purchase,1.0,0 -181966419,"Counter-Strike Global Offensive",play,1.7,0 -181966419,"SMITE",purchase,1.0,0 -181966419,"SMITE",play,1.6,0 -181966419,"Middle-earth Shadow of Mordor",purchase,1.0,0 -181966419,"Middle-earth Shadow of Mordor",play,0.7,0 -181966419,"BioShock 2",purchase,1.0,0 -181966419,"BioShock Infinite",purchase,1.0,0 -113557935,"King's Bounty Warriors of the North",purchase,1.0,0 -113557935,"King's Bounty Warriors of the North",play,177.0,0 -113557935,"Warlock - Master of the Arcane",purchase,1.0,0 -113557935,"Warlock - Master of the Arcane",play,42.0,0 -113557935,"Eador. Masters of the Broken World",purchase,1.0,0 -113557935,"Eador. Masters of the Broken World",play,2.5,0 -113557935,"Crowntakers",purchase,1.0,0 -113557935,"Crowntakers",play,0.2,0 -113557935,"King's Bounty Warriors of the North - Ice and Fire DLC",purchase,1.0,0 -113557935,"Kings Bounty Legions",purchase,1.0,0 -113557935,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -170591712,"Dota 2",purchase,1.0,0 -170591712,"Dota 2",play,47.0,0 -170591712,"Amnesia The Dark Descent",purchase,1.0,0 -170591712,"Clicker Heroes",purchase,1.0,0 -170591712,"Dirty Bomb",purchase,1.0,0 -170591712,"Dungeonland",purchase,1.0,0 -170591712,"Free to Play",purchase,1.0,0 -170591712,"GEARCRACK Arena",purchase,1.0,0 -170591712,"Gear Up",purchase,1.0,0 -170591712,"Magicka Wizard Wars",purchase,1.0,0 -170591712,"Neverwinter",purchase,1.0,0 -170591712,"Nosgoth",purchase,1.0,0 -170591712,"PlanetSide 2",purchase,1.0,0 -170591712,"Portal Stories Mel",purchase,1.0,0 -170591712,"Robocraft",purchase,1.0,0 -170591712,"TERA",purchase,1.0,0 -170591712,"The Lord of the Rings Online",purchase,1.0,0 -170591712,"Time Clickers",purchase,1.0,0 -170591712,"Toribash",purchase,1.0,0 -170591712,"Trove",purchase,1.0,0 -170591712,"Unturned",purchase,1.0,0 -170591712,"Warframe",purchase,1.0,0 -170591712,"War of the Roses",purchase,1.0,0 -170591712,"You Have to Win the Game",purchase,1.0,0 -53040574,"NBA 2K9",purchase,1.0,0 -53040574,"NBA 2K9",play,0.3,0 -223210213,"Heroes & Generals",purchase,1.0,0 -209087920,"Garry's Mod",purchase,1.0,0 -209087920,"Garry's Mod",play,25.0,0 -209087920,"Left 4 Dead 2",purchase,1.0,0 -209087920,"Left 4 Dead 2",play,16.3,0 -209087920,"APB Reloaded",purchase,1.0,0 -209087920,"APB Reloaded",play,7.7,0 -209087920,"Team Fortress 2",purchase,1.0,0 -209087920,"Team Fortress 2",play,6.8,0 -209087920,"Warframe",purchase,1.0,0 -209087920,"Warframe",play,1.9,0 -209087920,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -209087920,"Red Crucible Firestorm",purchase,1.0,0 -209087920,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -93275329,"Sonic Generations",purchase,1.0,0 -93275329,"Sonic Generations",play,155.0,0 -93275329,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -93275329,"Call of Duty Modern Warfare 2 - Multiplayer",play,121.0,0 -93275329,"Half-Life 2",purchase,1.0,0 -93275329,"Half-Life 2",play,104.0,0 -93275329,"Far Cry 3",purchase,1.0,0 -93275329,"Far Cry 3",play,93.0,0 -93275329,"Portal 2",purchase,1.0,0 -93275329,"Portal 2",play,74.0,0 -93275329,"Call of Duty Modern Warfare 2",purchase,1.0,0 -93275329,"Call of Duty Modern Warfare 2",play,52.0,0 -93275329,"BioShock Infinite",purchase,1.0,0 -93275329,"BioShock Infinite",play,49.0,0 -93275329,"Garry's Mod",purchase,1.0,0 -93275329,"Garry's Mod",play,49.0,0 -93275329,"Shovel Knight",purchase,1.0,0 -93275329,"Shovel Knight",play,39.0,0 -93275329,"Mirror's Edge",purchase,1.0,0 -93275329,"Mirror's Edge",play,36.0,0 -93275329,"Sleeping Dogs",purchase,1.0,0 -93275329,"Sleeping Dogs",play,35.0,0 -93275329,"BioShock 2",purchase,1.0,0 -93275329,"BioShock 2",play,34.0,0 -93275329,"Half-Life 2 Episode Two",purchase,1.0,0 -93275329,"Half-Life 2 Episode Two",play,27.0,0 -93275329,"Saints Row The Third",purchase,1.0,0 -93275329,"Saints Row The Third",play,27.0,0 -93275329,"Portal",purchase,1.0,0 -93275329,"Portal",play,22.0,0 -93275329,"Half-Life 2 Episode One",purchase,1.0,0 -93275329,"Half-Life 2 Episode One",play,22.0,0 -93275329,"Grand Theft Auto IV",purchase,1.0,0 -93275329,"Grand Theft Auto IV",play,20.0,0 -93275329,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -93275329,"METAL GEAR RISING REVENGEANCE",play,19.1,0 -93275329,"Saints Row IV",purchase,1.0,0 -93275329,"Saints Row IV",play,18.4,0 -93275329,"Team Fortress 2",purchase,1.0,0 -93275329,"Team Fortress 2",play,16.0,0 -93275329,"PAYDAY 2",purchase,1.0,0 -93275329,"PAYDAY 2",play,15.6,0 -93275329,"Skullgirls",purchase,1.0,0 -93275329,"Skullgirls",play,15.1,0 -93275329,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -93275329,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,14.7,0 -93275329,"Hitman Absolution",purchase,1.0,0 -93275329,"Hitman Absolution",play,12.6,0 -93275329,"Just Cause 2",purchase,1.0,0 -93275329,"Just Cause 2",play,12.0,0 -93275329,"SONIC THE HEDGEHOG 4 Episode II",purchase,1.0,0 -93275329,"SONIC THE HEDGEHOG 4 Episode II",play,11.4,0 -93275329,"Tomb Raider",purchase,1.0,0 -93275329,"Tomb Raider",play,10.7,0 -93275329,"Synergy",purchase,1.0,0 -93275329,"Synergy",play,8.5,0 -93275329,"Left 4 Dead 2",purchase,1.0,0 -93275329,"Left 4 Dead 2",play,8.3,0 -93275329,"Clicker Heroes",purchase,1.0,0 -93275329,"Clicker Heroes",play,7.2,0 -93275329,"Grand Theft Auto San Andreas",purchase,1.0,0 -93275329,"Grand Theft Auto San Andreas",play,6.9,0 -93275329,"The Elder Scrolls V Skyrim",purchase,1.0,0 -93275329,"The Elder Scrolls V Skyrim",play,5.7,0 -93275329,"Phantom Breaker Battle Grounds",purchase,1.0,0 -93275329,"Phantom Breaker Battle Grounds",play,4.6,0 -93275329,"Dota 2",purchase,1.0,0 -93275329,"Dota 2",play,4.0,0 -93275329,"Sniper Elite V2",purchase,1.0,0 -93275329,"Sniper Elite V2",play,3.9,0 -93275329,"AirMech",purchase,1.0,0 -93275329,"AirMech",play,3.5,0 -93275329,"Castle Crashers",purchase,1.0,0 -93275329,"Castle Crashers",play,3.3,0 -93275329,"PlanetSide 2",purchase,1.0,0 -93275329,"PlanetSide 2",play,2.6,0 -93275329,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -93275329,"Tom Clancy's Splinter Cell Blacklist",play,2.3,0 -93275329,"Spiral Knights",purchase,1.0,0 -93275329,"Spiral Knights",play,2.2,0 -93275329,"WAKFU",purchase,1.0,0 -93275329,"WAKFU",play,2.1,0 -93275329,"Realm of the Mad God",purchase,1.0,0 -93275329,"Realm of the Mad God",play,1.9,0 -93275329,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -93275329,"Just Cause 2 Multiplayer Mod",play,1.9,0 -93275329,"Loadout",purchase,1.0,0 -93275329,"Loadout",play,1.7,0 -93275329,"Half-Life 2 Lost Coast",purchase,1.0,0 -93275329,"Half-Life 2 Lost Coast",play,1.7,0 -93275329,"Sonic CD",purchase,1.0,0 -93275329,"Sonic CD",play,1.4,0 -93275329,"Unturned",purchase,1.0,0 -93275329,"Unturned",play,1.3,0 -93275329,"DC Universe Online",purchase,1.0,0 -93275329,"DC Universe Online",play,1.3,0 -93275329,"Estranged Act I",purchase,1.0,0 -93275329,"Estranged Act I",play,1.2,0 -93275329,"Pid ",purchase,1.0,0 -93275329,"Pid ",play,1.0,0 -93275329,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -93275329,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,1.0,0 -93275329,"Half-Life 2 Update",purchase,1.0,0 -93275329,"Half-Life 2 Update",play,0.9,0 -93275329,"To the Moon",purchase,1.0,0 -93275329,"To the Moon",play,0.8,0 -93275329,"L.A. Noire",purchase,1.0,0 -93275329,"L.A. Noire",play,0.6,0 -93275329,"Emily is Away",purchase,1.0,0 -93275329,"Emily is Away",play,0.5,0 -93275329,"No More Room in Hell",purchase,1.0,0 -93275329,"No More Room in Hell",play,0.5,0 -93275329,"Valkyria Chronicles",purchase,1.0,0 -93275329,"Valkyria Chronicles",play,0.4,0 -93275329,"Grand Theft Auto III",purchase,1.0,0 -93275329,"Grand Theft Auto III",play,0.3,0 -93275329,"Out There Somewhere",purchase,1.0,0 -93275329,"Out There Somewhere",play,0.3,0 -93275329,"Teeworlds",purchase,1.0,0 -93275329,"Teeworlds",play,0.3,0 -93275329,"Zombie Panic Source",purchase,1.0,0 -93275329,"Zombie Panic Source",play,0.2,0 -93275329,"Afterfall InSanity Extended Edition",purchase,1.0,0 -93275329,"Afterfall InSanity Extended Edition",play,0.2,0 -93275329,"Tales Runner",purchase,1.0,0 -93275329,"Tales Runner",play,0.1,0 -93275329,"Saints Row 2",purchase,1.0,0 -93275329,"Saints Row 2",play,0.1,0 -93275329,"Cry of Fear",purchase,1.0,0 -93275329,"Cry of Fear",play,0.1,0 -93275329,"You Have to Win the Game",purchase,1.0,0 -93275329,"You Have to Win the Game",play,0.1,0 -93275329,"RACE 07",purchase,1.0,0 -93275329,"RACE 07",play,0.1,0 -93275329,"La Tale",purchase,1.0,0 -93275329,"La Tale",play,0.1,0 -93275329,"Eternal Senia",purchase,1.0,0 -93275329,"Saints Row IV Inauguration Station",purchase,1.0,0 -93275329,"Shadow Warrior Classic (1997)",purchase,1.0,0 -93275329,"Anarchy Arcade",purchase,1.0,0 -93275329,"Heroine's Quest The Herald of Ragnarok",purchase,1.0,0 -93275329,"NEOTOKYO",purchase,1.0,0 -93275329,"Rush Bros",purchase,1.0,0 -93275329,"Really Big Sky",purchase,1.0,0 -93275329,"Gun Monkeys",purchase,1.0,0 -93275329,"Race The Sun",purchase,1.0,0 -93275329,"Arma Cold War Assault",purchase,1.0,0 -93275329,"Avencast",purchase,1.0,0 -93275329,"GTR Evolution",purchase,1.0,0 -93275329,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -93275329,"Grand Theft Auto Vice City",purchase,1.0,0 -93275329,"Aura Kingdom",purchase,1.0,0 -93275329,"404Sight",purchase,1.0,0 -93275329,"ACE - Arena Cyber Evolution",purchase,1.0,0 -93275329,"AdVenture Capitalist",purchase,1.0,0 -93275329,"Amnesia The Dark Descent",purchase,1.0,0 -93275329,"BioShock Infinite - Season Pass",purchase,1.0,0 -93275329,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -93275329,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -93275329,"Commandos Behind Enemy Lines",purchase,1.0,0 -93275329,"Crash Time II",purchase,1.0,0 -93275329,"Dead Island Epidemic",purchase,1.0,0 -93275329,"DETOUR",purchase,1.0,0 -93275329,"Dev Guy",purchase,1.0,0 -93275329,"Famaze",purchase,1.0,0 -93275329,"FEZ",purchase,1.0,0 -93275329,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -93275329,"Grand Theft Auto San Andreas",purchase,1.0,0 -93275329,"Grand Theft Auto Vice City",purchase,1.0,0 -93275329,"Grand Theft Auto III",purchase,1.0,0 -93275329,"Hitman Sniper Challenge",purchase,1.0,0 -93275329,"Kung Fury",purchase,1.0,0 -93275329,"Pox Nora",purchase,1.0,0 -93275329,"RaceRoom Racing Experience ",purchase,1.0,0 -93275329,"Robocraft",purchase,1.0,0 -93275329,"Skullgirls Endless Beta",purchase,1.0,0 -93275329,"Stealth Inc 2",purchase,1.0,0 -93275329,"Super Sanctum TD",purchase,1.0,0 -93275329,"Tactical Intervention",purchase,1.0,0 -93275329,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -93275329,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -93275329,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -93275329,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -93275329,"Woodle Tree Adventures",purchase,1.0,0 -93275329,"Zombies Monsters Robots",purchase,1.0,0 -165043954,"Dota 2",purchase,1.0,0 -165043954,"Dota 2",play,6.9,0 -265586844,"Dota 2",purchase,1.0,0 -265586844,"Dota 2",play,10.3,0 -132353043,"Team Fortress 2",purchase,1.0,0 -132353043,"Team Fortress 2",play,870.0,0 -132353043,"GunZ 2 The Second Duel",purchase,1.0,0 -132353043,"GunZ 2 The Second Duel",play,0.7,0 -132353043,"BLOCKADE 3D",purchase,1.0,0 -132353043,"BLOCKADE 3D",play,0.4,0 -132353043,"Sniper Elite V2",purchase,1.0,0 -170853969,"Counter-Strike Global Offensive",purchase,1.0,0 -170853969,"Counter-Strike Global Offensive",play,29.0,0 -170853969,"Unturned",purchase,1.0,0 -170853969,"Unturned",play,10.2,0 -170853969,"Heroes & Generals",purchase,1.0,0 -170853969,"Heroes & Generals",play,2.7,0 -170853969,"Team Fortress 2",purchase,1.0,0 -170853969,"Team Fortress 2",play,1.2,0 -170853969,"Robocraft",purchase,1.0,0 -170853969,"Robocraft",play,0.8,0 -170853969,"March of War",purchase,1.0,0 -170853969,"March of War",play,0.3,0 -170853969,"Color Symphony",purchase,1.0,0 -170853969,"The Expendabros",purchase,1.0,0 -170853969,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -296923200,"Bloons TD5",purchase,1.0,0 -296923200,"Bloons TD5",play,15.1,0 -296923200,"Rocket League",purchase,1.0,0 -296923200,"Rocket League",play,13.8,0 -195606876,"Dota 2",purchase,1.0,0 -195606876,"Dota 2",play,6.4,0 -167806571,"Dota 2",purchase,1.0,0 -167806571,"Dota 2",play,0.3,0 -275639648,"Blender 2.76b",purchase,1.0,0 -122216032,"Test Drive Unlimited 2",purchase,1.0,0 -122216032,"Test Drive Unlimited 2",play,0.8,0 -122216032,"Borderlands",purchase,1.0,0 -122216032,"Borderlands",play,0.5,0 -122216032,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -122216032,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -122216032,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -122216032,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -195274250,"Heroes & Generals",purchase,1.0,0 -194463248,"Dota 2",purchase,1.0,0 -194463248,"Dota 2",play,13.9,0 -94110492,"Crusader Kings II",purchase,1.0,0 -94110492,"Crusader Kings II",play,192.0,0 -94110492,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -94110492,"Call of Duty Modern Warfare 2 - Multiplayer",play,159.0,0 -94110492,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -94110492,"Call of Duty Modern Warfare 3 - Multiplayer",play,98.0,0 -94110492,"Star Trek Online",purchase,1.0,0 -94110492,"Star Trek Online",play,85.0,0 -94110492,"The Elder Scrolls V Skyrim",purchase,1.0,0 -94110492,"The Elder Scrolls V Skyrim",play,54.0,0 -94110492,"Europa Universalis IV",purchase,1.0,0 -94110492,"Europa Universalis IV",play,42.0,0 -94110492,"Assassin's Creed IV Black Flag",purchase,1.0,0 -94110492,"Assassin's Creed IV Black Flag",play,37.0,0 -94110492,"XCOM Enemy Unknown",purchase,1.0,0 -94110492,"XCOM Enemy Unknown",play,31.0,0 -94110492,"Risen 2 - Dark Waters",purchase,1.0,0 -94110492,"Risen 2 - Dark Waters",play,24.0,0 -94110492,"Prison Architect",purchase,1.0,0 -94110492,"Prison Architect",play,23.0,0 -94110492,"Sleeping Dogs",purchase,1.0,0 -94110492,"Sleeping Dogs",play,22.0,0 -94110492,"Spore Galactic Adventures",purchase,1.0,0 -94110492,"Spore Galactic Adventures",play,19.3,0 -94110492,"Total War ROME II - Emperor Edition",purchase,1.0,0 -94110492,"Total War ROME II - Emperor Edition",play,17.8,0 -94110492,"FTL Faster Than Light",purchase,1.0,0 -94110492,"FTL Faster Than Light",play,17.3,0 -94110492,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -94110492,"Call of Duty Black Ops II - Multiplayer",play,16.3,0 -94110492,"Sniper Elite 3",purchase,1.0,0 -94110492,"Sniper Elite 3",play,16.2,0 -94110492,"Endless Space",purchase,1.0,0 -94110492,"Endless Space",play,15.1,0 -94110492,"Sniper Elite V2",purchase,1.0,0 -94110492,"Sniper Elite V2",play,10.6,0 -94110492,"Stronghold 3",purchase,1.0,0 -94110492,"Stronghold 3",play,7.7,0 -94110492,"Tomb Raider",purchase,1.0,0 -94110492,"Tomb Raider",play,7.6,0 -94110492,"Deus Ex Human Revolution",purchase,1.0,0 -94110492,"Deus Ex Human Revolution",play,7.1,0 -94110492,"Call of Duty Modern Warfare 2",purchase,1.0,0 -94110492,"Call of Duty Modern Warfare 2",play,6.2,0 -94110492,"Call of Duty Modern Warfare 3",purchase,1.0,0 -94110492,"Call of Duty Modern Warfare 3",play,6.0,0 -94110492,"L.A. Noire",purchase,1.0,0 -94110492,"L.A. Noire",play,5.2,0 -94110492,"BioShock Infinite",purchase,1.0,0 -94110492,"BioShock Infinite",play,4.2,0 -94110492,"Tropico 5",purchase,1.0,0 -94110492,"Tropico 5",play,4.1,0 -94110492,"Knights of Honor",purchase,1.0,0 -94110492,"Knights of Honor",play,4.1,0 -94110492,"DC Universe Online",purchase,1.0,0 -94110492,"DC Universe Online",play,3.4,0 -94110492,"Alan Wake",purchase,1.0,0 -94110492,"Alan Wake",play,3.1,0 -94110492,"Call of Duty Black Ops II",purchase,1.0,0 -94110492,"Call of Duty Black Ops II",play,2.8,0 -94110492,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -94110492,"Fallout 3 - Game of the Year Edition",play,2.5,0 -94110492,"King Arthur II - The Role-playing Wargame",purchase,1.0,0 -94110492,"King Arthur II - The Role-playing Wargame",play,2.5,0 -94110492,"Divinity Original Sin",purchase,1.0,0 -94110492,"Divinity Original Sin",play,2.0,0 -94110492,"Two Worlds II",purchase,1.0,0 -94110492,"Two Worlds II",play,1.8,0 -94110492,"Sid Meier's Civilization V",purchase,1.0,0 -94110492,"Sid Meier's Civilization V",play,1.7,0 -94110492,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -94110492,"Call of Duty Black Ops II - Zombies",play,1.6,0 -94110492,"Borderlands 2",purchase,1.0,0 -94110492,"Borderlands 2",play,1.3,0 -94110492,"The Elder Scrolls III Morrowind",purchase,1.0,0 -94110492,"The Elder Scrolls III Morrowind",play,1.1,0 -94110492,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -94110492,"Dark Souls Prepare to Die Edition",play,0.8,0 -94110492,"Dota 2",purchase,1.0,0 -94110492,"Dota 2",play,0.8,0 -94110492,"Team Fortress 2",purchase,1.0,0 -94110492,"Team Fortress 2",play,0.6,0 -94110492,"Etherlords II",purchase,1.0,0 -94110492,"Etherlords II",play,0.5,0 -94110492,"Gothic II Gold Edition",purchase,1.0,0 -94110492,"Gothic II Gold Edition",play,0.4,0 -94110492,"King Arthur Collection",purchase,1.0,0 -94110492,"King Arthur Collection",play,0.3,0 -94110492,"Galactic Civilizations III",purchase,1.0,0 -94110492,"Galactic Civilizations III",play,0.3,0 -94110492,"Stronghold HD",purchase,1.0,0 -94110492,"Postmortem one must die (Extended Cut)",purchase,1.0,0 -94110492,"Etherlords",purchase,1.0,0 -94110492,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -94110492,"Bully Scholarship Edition",purchase,1.0,0 -94110492,"Crusader Kings II Hymns of Abraham",purchase,1.0,0 -94110492,"Crusader Kings II Military Orders Unit Pack",purchase,1.0,0 -94110492,"Crusader Kings II Sons of Abraham",purchase,1.0,0 -94110492,"Crusader Kings II Warriors of Faith Unit Pack",purchase,1.0,0 -94110492,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -94110492,"Europa Universalis IV American Dream DLC",purchase,1.0,0 -94110492,"Europa Universalis IV Conquest of Paradise",purchase,1.0,0 -94110492,"Europa Universalis IV Conquistadors Unit pack ",purchase,1.0,0 -94110492,"Europa Universalis IV National Monuments II",purchase,1.0,0 -94110492,"Europa Universalis IVNative Americans Unit Pack",purchase,1.0,0 -94110492,"Europa Universalis IV Songs of the New World",purchase,1.0,0 -94110492,"Orbital Gear",purchase,1.0,0 -94110492,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -94110492,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -94110492,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -94110492,"Spore",purchase,1.0,0 -94110492,"Spore Creepy & Cute Parts Pack",purchase,1.0,0 -94110492,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -94110492,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -94110492,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -94110492,"Two Worlds 2 - Pirates of the Flying Fortress ",purchase,1.0,0 -94110492,"XCOM Enemy Within",purchase,1.0,0 -104800393,"Mafia II",purchase,1.0,0 -104800393,"Mafia II",play,45.0,0 -101508611,"Mafia II",purchase,1.0,0 -101508611,"Mafia II",play,0.4,0 -101508611,"Sid Meier's Civilization V",purchase,1.0,0 -101508611,"Sid Meier's Civilization V",play,0.2,0 -242876828,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -242876828,"S.K.I.L.L. - Special Force 2",play,13.0,0 -242876828,"Dota 2",purchase,1.0,0 -242876828,"Dota 2",play,7.2,0 -242876828,"APB Reloaded",purchase,1.0,0 -242876828,"APB Reloaded",play,6.4,0 -242876828,"RaceRoom Racing Experience ",purchase,1.0,0 -242876828,"RaceRoom Racing Experience ",play,6.0,0 -242876828,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -242876828,"Tom Clancy's Ghost Recon Phantoms - EU",play,4.4,0 -242876828,"Red Crucible Firestorm",purchase,1.0,0 -242876828,"Red Crucible Firestorm",play,1.0,0 -242876828,"War Thunder",purchase,1.0,0 -222194703,"Rise of Incarnates",purchase,1.0,0 -222194703,"Rise of Incarnates",play,1.3,0 -248690176,"Dota 2",purchase,1.0,0 -248690176,"Dota 2",play,162.0,0 -248690176,"Audition Online",purchase,1.0,0 -248690176,"Clicker Heroes",purchase,1.0,0 -248690176,"FreeStyle2 Street Basketball",purchase,1.0,0 -248690176,"HAWKEN",purchase,1.0,0 -248690176,"Strife",purchase,1.0,0 -248690176,"Super Crate Box",purchase,1.0,0 -248690176,"The Expendabros",purchase,1.0,0 -248690176,"Warframe",purchase,1.0,0 -254243107,"Dota 2",purchase,1.0,0 -254243107,"Dota 2",play,3.3,0 -184488975,"Tom Clancy's Ghost Recon Phantoms - EU Recon Starter Pack",purchase,1.0,0 -130764464,"Dota 2",purchase,1.0,0 -130764464,"Dota 2",play,1790.0,0 -130764464,"Counter-Strike Global Offensive",purchase,1.0,0 -130764464,"Counter-Strike Global Offensive",play,23.0,0 -130764464,"PAYDAY The Heist",purchase,1.0,0 -130764464,"PAYDAY The Heist",play,5.8,0 -130764464,"8BitBoy",purchase,1.0,0 -130764464,"8BitBoy",play,0.2,0 -130764464,"Ben There, Dan That!",purchase,1.0,0 -130764464,"Bionic Dues",purchase,1.0,0 -130764464,"Enemy Mind",purchase,1.0,0 -130764464,"EVGA PrecisionX 16",purchase,1.0,0 -130764464,"Free to Play",purchase,1.0,0 -130764464,"Skyborn",purchase,1.0,0 -130764464,"Time Gentlemen, Please!",purchase,1.0,0 -89555434,"Team Fortress 2",purchase,1.0,0 -89555434,"Team Fortress 2",play,90.0,0 -89555434,"Borderlands 2",purchase,1.0,0 -89555434,"Borderlands 2",play,9.9,0 -89555434,"Shoot Many Robots",purchase,1.0,0 -89555434,"Shoot Many Robots",play,3.5,0 -227154329,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -227154329,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,22.0,0 -299497567,"Call of Duty Black Ops III",purchase,1.0,0 -299497567,"Call of Duty Black Ops III",play,43.0,0 -299497567,"Call of Duty Advanced Warfare",purchase,1.0,0 -299497567,"Call of Duty Advanced Warfare",play,1.6,0 -299497567,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -299497567,"Call of Duty Advanced Warfare - Multiplayer",play,0.6,0 -256865437,"Dota 2",purchase,1.0,0 -256865437,"Dota 2",play,0.5,0 -107913460,"The Elder Scrolls V Skyrim",purchase,1.0,0 -107913460,"The Elder Scrolls V Skyrim",play,178.0,0 -107913460,"Borderlands 2",purchase,1.0,0 -107913460,"Borderlands 2",play,171.0,0 -107913460,"Fallout New Vegas",purchase,1.0,0 -107913460,"Fallout New Vegas",play,92.0,0 -107913460,"The Elder Scrolls III Morrowind",purchase,1.0,0 -107913460,"The Elder Scrolls III Morrowind",play,84.0,0 -107913460,"Mass Effect 2",purchase,1.0,0 -107913460,"Mass Effect 2",play,79.0,0 -107913460,"Mass Effect",purchase,1.0,0 -107913460,"Mass Effect",play,72.0,0 -107913460,"LEGO The Lord of the Rings",purchase,1.0,0 -107913460,"LEGO The Lord of the Rings",play,54.0,0 -107913460,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -107913460,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,52.0,0 -107913460,"Borderlands",purchase,1.0,0 -107913460,"Borderlands",play,45.0,0 -107913460,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -107913460,"Fallout 3 - Game of the Year Edition",play,44.0,0 -107913460,"FINAL FANTASY VIII",purchase,1.0,0 -107913460,"FINAL FANTASY VIII",play,36.0,0 -107913460,"Lego Harry Potter",purchase,1.0,0 -107913460,"Lego Harry Potter",play,33.0,0 -107913460,"LEGO The Hobbit",purchase,1.0,0 -107913460,"LEGO The Hobbit",play,33.0,0 -107913460,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -107913460,"Deus Ex Human Revolution - Director's Cut",play,29.0,0 -107913460,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -107913460,"STAR WARS Knights of the Old Republic II The Sith Lords",play,26.0,0 -107913460,"Star Wars Knights of the Old Republic",purchase,1.0,0 -107913460,"Star Wars Knights of the Old Republic",play,25.0,0 -107913460,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",purchase,1.0,0 -107913460,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",play,25.0,0 -107913460,"Metro Last Light",purchase,1.0,0 -107913460,"Metro Last Light",play,23.0,0 -107913460,"LEGO Harry Potter Years 5-7",purchase,1.0,0 -107913460,"LEGO Harry Potter Years 5-7",play,23.0,0 -107913460,"Darksiders",purchase,1.0,0 -107913460,"Darksiders",play,21.0,0 -107913460,"BioShock",purchase,1.0,0 -107913460,"BioShock",play,19.7,0 -107913460,"Fable - The Lost Chapters",purchase,1.0,0 -107913460,"Fable - The Lost Chapters",play,19.2,0 -107913460,"Assassin's Creed Revelations",purchase,1.0,0 -107913460,"Assassin's Creed Revelations",play,19.1,0 -107913460,"BioShock 2",purchase,1.0,0 -107913460,"BioShock 2",play,18.7,0 -107913460,"Game of Thrones ",purchase,1.0,0 -107913460,"Game of Thrones ",play,17.2,0 -107913460,"Metro 2033",purchase,1.0,0 -107913460,"Metro 2033",play,17.0,0 -107913460,"South Park The Stick of Truth",purchase,1.0,0 -107913460,"South Park The Stick of Truth",play,15.4,0 -107913460,"Left 4 Dead 2",purchase,1.0,0 -107913460,"Left 4 Dead 2",play,15.2,0 -107913460,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -107913460,"Plants vs. Zombies Game of the Year",play,14.4,0 -107913460,"LEGO MARVEL Super Heroes",purchase,1.0,0 -107913460,"LEGO MARVEL Super Heroes",play,13.0,0 -107913460,"BioShock Infinite",purchase,1.0,0 -107913460,"BioShock Infinite",play,12.2,0 -107913460,"Half-Life 2",purchase,1.0,0 -107913460,"Half-Life 2",play,10.3,0 -107913460,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -107913460,"Dark Souls Prepare to Die Edition",play,8.7,0 -107913460,"Sid Meier's Pirates!",purchase,1.0,0 -107913460,"Sid Meier's Pirates!",play,6.6,0 -107913460,"Spec Ops The Line",purchase,1.0,0 -107913460,"Spec Ops The Line",play,5.8,0 -107913460,"Dota 2",purchase,1.0,0 -107913460,"Dota 2",play,4.2,0 -107913460,"Goat Simulator",purchase,1.0,0 -107913460,"Goat Simulator",play,3.4,0 -107913460,"Viscera Cleanup Detail",purchase,1.0,0 -107913460,"Viscera Cleanup Detail",play,3.2,0 -107913460,"Rise of Nations Extended Edition",purchase,1.0,0 -107913460,"Rise of Nations Extended Edition",play,2.7,0 -107913460,"The Darkness II",purchase,1.0,0 -107913460,"The Darkness II",play,2.1,0 -107913460,"Portal",purchase,1.0,0 -107913460,"Portal",play,1.7,0 -107913460,"Surgeon Simulator",purchase,1.0,0 -107913460,"Surgeon Simulator",play,0.8,0 -107913460,"FINAL FANTASY VII",purchase,1.0,0 -107913460,"FINAL FANTASY VII",play,0.6,0 -107913460,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -107913460,"Viscera Cleanup Detail Santa's Rampage",play,0.2,0 -107913460,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -107913460,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -107913460,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -107913460,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -107913460,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -107913460,"Fallout New Vegas Dead Money",purchase,1.0,0 -107913460,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -107913460,"Half-Life 2 Lost Coast",purchase,1.0,0 -107913460,"Max Payne 3",purchase,1.0,0 -107913460,"The Binding of Isaac",purchase,1.0,0 -107913460,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -107913460,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -107913460,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -107913460,"The Last Remnant",purchase,1.0,0 -107913460,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -116777928,"Dota 2",purchase,1.0,0 -116777928,"Dota 2",play,42.0,0 -116777928,"Saints Row The Third",purchase,1.0,0 -120169360,"Robocraft",purchase,1.0,0 -120169360,"Warframe",purchase,1.0,0 -103326015,"Sid Meier's Civilization V",purchase,1.0,0 -103326015,"Sid Meier's Civilization V",play,18.5,0 -111368209,"Team Fortress 2",purchase,1.0,0 -111368209,"Team Fortress 2",play,0.8,0 -145299659,"Clicker Heroes",purchase,1.0,0 -145299659,"Dethroned!",purchase,1.0,0 -145299659,"Unturned",purchase,1.0,0 -55334302,"Total War ROME II - Emperor Edition",purchase,1.0,0 -55334302,"Total War ROME II - Emperor Edition",play,483.0,0 -55334302,"Empire Total War",purchase,1.0,0 -55334302,"Empire Total War",play,328.0,0 -55334302,"Battlefield Bad Company 2",purchase,1.0,0 -55334302,"Battlefield Bad Company 2",play,240.0,0 -55334302,"Napoleon Total War",purchase,1.0,0 -55334302,"Napoleon Total War",play,220.0,0 -55334302,"R.U.S.E",purchase,1.0,0 -55334302,"R.U.S.E",play,168.0,0 -55334302,"Total War SHOGUN 2",purchase,1.0,0 -55334302,"Total War SHOGUN 2",play,152.0,0 -55334302,"Medieval II Total War",purchase,1.0,0 -55334302,"Medieval II Total War",play,118.0,0 -55334302,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -55334302,"Call of Duty Modern Warfare 2 - Multiplayer",play,50.0,0 -55334302,"Assassin's Creed II",purchase,1.0,0 -55334302,"Assassin's Creed II",play,37.0,0 -55334302,"Silent Hunter 5 Battle of the Atlantic",purchase,1.0,0 -55334302,"Silent Hunter 5 Battle of the Atlantic",play,33.0,0 -55334302,"Medieval II Total War Kingdoms",purchase,1.0,0 -55334302,"Medieval II Total War Kingdoms",play,31.0,0 -55334302,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -55334302,"Call of Duty Black Ops - Multiplayer",play,29.0,0 -55334302,"Call of Duty Modern Warfare 2",purchase,1.0,0 -55334302,"Call of Duty Modern Warfare 2",play,28.0,0 -55334302,"F1 2010",purchase,1.0,0 -55334302,"F1 2010",play,25.0,0 -55334302,"Sniper Elite V2",purchase,1.0,0 -55334302,"Sniper Elite V2",play,23.0,0 -55334302,"Call of Duty Black Ops",purchase,1.0,0 -55334302,"Call of Duty Black Ops",play,19.7,0 -55334302,"Call of Duty World at War",purchase,1.0,0 -55334302,"Call of Duty World at War",play,18.2,0 -55334302,"Assassin's Creed III",purchase,1.0,0 -55334302,"Assassin's Creed III",play,15.8,0 -55334302,"Company of Heroes 2",purchase,1.0,0 -55334302,"Company of Heroes 2",play,2.9,0 -55334302,"Silent Hunter III",purchase,1.0,0 -55334302,"Silent Hunter III",play,2.7,0 -55334302,"Rome Total War - Alexander",purchase,1.0,0 -55334302,"Rome Total War - Alexander",play,0.4,0 -55334302,"Rome Total War",purchase,1.0,0 -55334302,"Rome Total War",play,0.3,0 -55334302,"Counter-Strike Source",purchase,1.0,0 -55334302,"Counter-Strike Source",play,0.2,0 -55334302,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -55334302,"Garry's Mod",purchase,1.0,0 -55334302,"R.U.S.E.",purchase,1.0,0 -55334302,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -52723676,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -52723676,"Warhammer 40,000 Dawn of War II",play,87.0,0 -52723676,"Deus Ex Human Revolution",purchase,1.0,0 -52723676,"Deus Ex Human Revolution",play,68.0,0 -52723676,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -52723676,"Warhammer 40,000 Dawn of War II Retribution",play,43.0,0 -52723676,"Warhammer 40,000 Space Marine",purchase,1.0,0 -52723676,"Warhammer 40,000 Space Marine",play,28.0,0 -52723676,"Sniper Ghost Warrior",purchase,1.0,0 -52723676,"Sniper Ghost Warrior",play,6.8,0 -52723676,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -52723676,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,5.4,0 -52723676,"Sid Meier's Civilization V",purchase,1.0,0 -52723676,"Sid Meier's Civilization V",play,0.1,0 -283665212,"Dota 2",purchase,1.0,0 -283665212,"Dota 2",play,0.8,0 -281168230,"Team Fortress 2",purchase,1.0,0 -281168230,"Team Fortress 2",play,11.7,0 -281168230,"DC Universe Online",purchase,1.0,0 -281168230,"DC Universe Online",play,0.6,0 -281168230,"Counter-Strike Nexon Zombies",purchase,1.0,0 -281168230,"Counter-Strike Nexon Zombies",play,0.5,0 -281168230,"Fallen Earth",purchase,1.0,0 -281168230,"Back to Dinosaur Island ",purchase,1.0,0 -281168230,"Brick-Force",purchase,1.0,0 -281168230,"Dead Island Epidemic",purchase,1.0,0 -281168230,"Elsword",purchase,1.0,0 -281168230,"F.E.A.R. Online",purchase,1.0,0 -281168230,"Haunted Memories",purchase,1.0,0 -281168230,"Heroes & Generals",purchase,1.0,0 -281168230,"Marvel Heroes 2015",purchase,1.0,0 -281168230,"Robocraft",purchase,1.0,0 -281168230,"Unturned",purchase,1.0,0 -281168230,"Warface",purchase,1.0,0 -281168230,"War Thunder",purchase,1.0,0 -281168230,"World of Guns Gun Disassembly",purchase,1.0,0 -128925610,"Dota 2",purchase,1.0,0 -128925610,"Dota 2",play,2092.0,0 -128925610,"Tomb Raider",purchase,1.0,0 -128925610,"Tomb Raider",play,25.0,0 -128925610,"Prince of Persia The Sands of Time",purchase,1.0,0 -128925610,"Prince of Persia The Sands of Time",play,10.8,0 -128925610,"DC Universe Online",purchase,1.0,0 -128925610,"DC Universe Online",play,9.8,0 -128925610,"RIFT",purchase,1.0,0 -128925610,"RIFT",play,7.9,0 -128925610,"Ascend Hand of Kul",purchase,1.0,0 -128925610,"Ascend Hand of Kul",play,5.9,0 -128925610,"Ragnarok",purchase,1.0,0 -128925610,"Ragnarok",play,5.2,0 -128925610,"Unturned",purchase,1.0,0 -128925610,"Unturned",play,2.7,0 -128925610,"Left 4 Dead 2",purchase,1.0,0 -128925610,"Left 4 Dead 2",play,2.6,0 -128925610,"Garry's Mod",purchase,1.0,0 -128925610,"Garry's Mod",play,2.3,0 -128925610,"Robocraft",purchase,1.0,0 -128925610,"Robocraft",play,2.1,0 -128925610,"Neverwinter",purchase,1.0,0 -128925610,"Neverwinter",play,1.9,0 -128925610,"Ragnarok Online 2",purchase,1.0,0 -128925610,"Ragnarok Online 2",play,1.6,0 -128925610,"Serena",purchase,1.0,0 -128925610,"Serena",play,1.6,0 -128925610,"F.E.A.R. Online",purchase,1.0,0 -128925610,"F.E.A.R. Online",play,1.1,0 -128925610,"Path of Exile",purchase,1.0,0 -128925610,"Path of Exile",play,1.0,0 -128925610,"Infinite Crisis",purchase,1.0,0 -128925610,"Infinite Crisis",play,0.9,0 -128925610,"Spooky's House of Jump Scares",purchase,1.0,0 -128925610,"Spooky's House of Jump Scares",play,0.6,0 -128925610,"Heroes & Generals",purchase,1.0,0 -128925610,"Heroes & Generals",play,0.6,0 -128925610,"TERA",purchase,1.0,0 -128925610,"TERA",play,0.6,0 -128925610,"The Plan",purchase,1.0,0 -128925610,"The Plan",play,0.4,0 -128925610,"Eldevin",purchase,1.0,0 -128925610,"Eldevin",play,0.4,0 -128925610,"Battle Islands",purchase,1.0,0 -128925610,"Battle Islands",play,0.4,0 -128925610,"Counter-Strike Global Offensive",purchase,1.0,0 -128925610,"Counter-Strike Global Offensive",play,0.3,0 -128925610,"Archeblade",purchase,1.0,0 -128925610,"Archeblade",play,0.3,0 -128925610,"GunZ 2 The Second Duel",purchase,1.0,0 -128925610,"GunZ 2 The Second Duel",play,0.3,0 -128925610,"AirMech",purchase,1.0,0 -128925610,"AirMech",play,0.2,0 -128925610,"Toribash",purchase,1.0,0 -128925610,"Toribash",play,0.1,0 -128925610,"Marvel Heroes 2015",purchase,1.0,0 -128925610,"Karos",purchase,1.0,0 -128925610,"Divine Souls",purchase,1.0,0 -200082927,"Dota 2",purchase,1.0,0 -200082927,"Dota 2",play,57.0,0 -42363887,"Football Manager 2012",purchase,1.0,0 -42363887,"Football Manager 2012",play,1246.0,0 -42363887,"Football Manager 2013",purchase,1.0,0 -42363887,"Football Manager 2013",play,934.0,0 -42363887,"Football Manager 2011",purchase,1.0,0 -42363887,"Football Manager 2011",play,907.0,0 -42363887,"Football Manager 2014",purchase,1.0,0 -42363887,"Football Manager 2014",play,546.0,0 -42363887,"Football Manager 2010",purchase,1.0,0 -42363887,"Football Manager 2010",play,472.0,0 -42363887,"Football Manager 2009",purchase,1.0,0 -42363887,"Football Manager 2009",play,365.0,0 -42363887,"Football Manager 2015",purchase,1.0,0 -42363887,"Football Manager 2015",play,360.0,0 -42363887,"Football Manager 2016",purchase,1.0,0 -42363887,"Football Manager 2016",play,224.0,0 -42363887,"Medieval II Total War",purchase,1.0,0 -42363887,"Medieval II Total War",play,116.0,0 -42363887,"Pro Cycling Manager 2013",purchase,1.0,0 -42363887,"Pro Cycling Manager 2013",play,62.0,0 -42363887,"Total War SHOGUN 2",purchase,1.0,0 -42363887,"Total War SHOGUN 2",play,36.0,0 -42363887,"Total War ROME II - Emperor Edition",purchase,1.0,0 -42363887,"Total War ROME II - Emperor Edition",play,31.0,0 -42363887,"Empire Total War",purchase,1.0,0 -42363887,"Empire Total War",play,27.0,0 -42363887,"Medieval II Total War Kingdoms",purchase,1.0,0 -42363887,"Medieval II Total War Kingdoms",play,22.0,0 -42363887,"Football Tactics",purchase,1.0,0 -42363887,"Football Tactics",play,16.0,0 -42363887,"Assassin's Creed III",purchase,1.0,0 -42363887,"Assassin's Creed III",play,10.3,0 -42363887,"Rugby Challenge 2",purchase,1.0,0 -42363887,"Rugby Challenge 2",play,5.4,0 -42363887,"Stronghold 3",purchase,1.0,0 -42363887,"Stronghold 3",play,2.3,0 -42363887,"Batman Arkham Origins",purchase,1.0,0 -42363887,"Batman Arkham Origins",play,1.9,0 -42363887,"DC Universe Online",purchase,1.0,0 -42363887,"DC Universe Online",play,0.4,0 -42363887,"Stronghold Crusader Extreme HD",purchase,1.0,0 -42363887,"Stronghold Crusader HD",purchase,1.0,0 -42363887,"Stronghold Legends",purchase,1.0,0 -42363887,"Stronghold 2",purchase,1.0,0 -42363887,"Stronghold HD",purchase,1.0,0 -193423786,"Dota 2",purchase,1.0,0 -193423786,"Dota 2",play,1.0,0 -193423786,"Unturned",purchase,1.0,0 -77804318,"Mount & Blade Warband",purchase,1.0,0 -77804318,"Mount & Blade Warband",play,483.0,0 -12774878,"Counter-Strike Source",purchase,1.0,0 -12774878,"Counter-Strike Source",play,302.0,0 -12774878,"Mafia II",purchase,1.0,0 -12774878,"Mafia II",play,17.6,0 -12774878,"Counter-Strike Global Offensive",purchase,1.0,0 -12774878,"Counter-Strike Global Offensive",play,0.6,0 -12774878,"Counter-Strike",purchase,1.0,0 -12774878,"Counter-Strike Condition Zero",purchase,1.0,0 -12774878,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -12774878,"Darkest Hour Europe '44-'45",purchase,1.0,0 -12774878,"Day of Defeat",purchase,1.0,0 -12774878,"Day of Defeat Source",purchase,1.0,0 -12774878,"Deathmatch Classic",purchase,1.0,0 -12774878,"Half-Life 2",purchase,1.0,0 -12774878,"Half-Life 2 Deathmatch",purchase,1.0,0 -12774878,"Half-Life 2 Episode One",purchase,1.0,0 -12774878,"Half-Life 2 Episode Two",purchase,1.0,0 -12774878,"Half-Life 2 Lost Coast",purchase,1.0,0 -12774878,"Half-Life Deathmatch Source",purchase,1.0,0 -12774878,"Just Cause",purchase,1.0,0 -12774878,"Mare Nostrum",purchase,1.0,0 -12774878,"Portal",purchase,1.0,0 -12774878,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -12774878,"Ricochet",purchase,1.0,0 -240984833,"Dota 2",purchase,1.0,0 -240984833,"Dota 2",play,0.9,0 -235996643,"Heroes & Generals",purchase,1.0,0 -235996643,"Heroes & Generals",play,2.5,0 -235996643,"BLOCKADE 3D",purchase,1.0,0 -235996643,"BLOCKADE 3D",play,0.6,0 -235996643,"Two Worlds Epic Edition",purchase,1.0,0 -235996643,"Two Worlds Epic Edition",play,0.1,0 -235996643,"Fistful of Frags",purchase,1.0,0 -235996643,"Fistful of Frags",play,0.1,0 -235996643,"RaceRoom Racing Experience ",purchase,1.0,0 -235996643,"America's Army Proving Grounds",purchase,1.0,0 -235996643,"Knights and Merchants",purchase,1.0,0 -235996643,"KnightShift",purchase,1.0,0 -235996643,"Warframe",purchase,1.0,0 -159595237,"Warframe",purchase,1.0,0 -159595237,"Warframe",play,143.0,0 -159595237,"Left 4 Dead 2",purchase,1.0,0 -159595237,"Left 4 Dead 2",play,13.3,0 -159595237,"Dota 2",purchase,1.0,0 -159595237,"Dota 2",play,0.5,0 -245220208,"Counter-Strike",purchase,1.0,0 -245220208,"Counter-Strike",play,263.0,0 -245220208,"Counter-Strike Global Offensive",purchase,1.0,0 -245220208,"Counter-Strike Global Offensive",play,103.0,0 -245220208,"Counter-Strike Condition Zero",purchase,1.0,0 -245220208,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -245220208,"Heroes & Generals",purchase,1.0,0 -245220208,"Warframe",purchase,1.0,0 -683019,"Counter-Strike Source",purchase,1.0,0 -683019,"Counter-Strike Source",play,38.0,0 -683019,"F1 2014",purchase,1.0,0 -683019,"F1 2014",play,4.9,0 -683019,"Counter-Strike",purchase,1.0,0 -683019,"Day of Defeat",purchase,1.0,0 -683019,"Day of Defeat Source",purchase,1.0,0 -683019,"Deathmatch Classic",purchase,1.0,0 -683019,"Half-Life",purchase,1.0,0 -683019,"Half-Life 2 Deathmatch",purchase,1.0,0 -683019,"Half-Life 2 Lost Coast",purchase,1.0,0 -683019,"Half-Life Blue Shift",purchase,1.0,0 -683019,"Half-Life Opposing Force",purchase,1.0,0 -683019,"Ricochet",purchase,1.0,0 -683019,"Team Fortress Classic",purchase,1.0,0 -105949816,"Team Fortress 2",purchase,1.0,0 -105949816,"Team Fortress 2",play,21.0,0 -175150816,"Farming Simulator 15",purchase,1.0,0 -175150816,"Farming Simulator 15",play,34.0,0 -175150816,"DayZ",purchase,1.0,0 -175150816,"DayZ",play,11.4,0 -175150816,"Counter-Strike Source",purchase,1.0,0 -175150816,"Counter-Strike Source",play,1.5,0 -175150816,"Among Ripples",purchase,1.0,0 -175150816,"Construction-Simulator 2015",purchase,1.0,0 -175150816,"Construction Simulator 2015 Liebherr 150 EC-B",purchase,1.0,0 -175150816,"Construction Simulator 2015 Liebherr LB28",purchase,1.0,0 -175150816,"Construction Simulator 2015 Liebherr LR 1300",purchase,1.0,0 -175150816,"Construction Simulator 2015 Vertical Skyline",purchase,1.0,0 -175150816,"Unturned",purchase,1.0,0 -117321969,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -117321969,"Call of Duty Black Ops II - Multiplayer",play,174.0,0 -117321969,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -117321969,"Call of Duty Black Ops II - Zombies",play,69.0,0 -117321969,"Call of Duty Black Ops II",purchase,1.0,0 -167575590,"Dota 2",purchase,1.0,0 -167575590,"Dota 2",play,0.5,0 -47163562,"Football Manager 2012",purchase,1.0,0 -47163562,"Football Manager 2012",play,477.0,0 -47163562,"Football Manager 2011",purchase,1.0,0 -47163562,"Football Manager 2011",play,153.0,0 -47163562,"Football Manager 2013",purchase,1.0,0 -47163562,"Football Manager 2013",play,110.0,0 -277095274,"UberStrike",purchase,1.0,0 -277095274,"UberStrike",play,0.6,0 -277095274,"All Is Dust",purchase,1.0,0 -277095274,"Clicker Heroes",purchase,1.0,0 -277095274,"No More Room in Hell",purchase,1.0,0 -277095274,"RaceRoom Racing Experience ",purchase,1.0,0 -277095274,"Unturned",purchase,1.0,0 -67549251,"Torchlight",purchase,1.0,0 -67549251,"Torchlight",play,3.3,0 -283896040,"Dota 2",purchase,1.0,0 -283896040,"Dota 2",play,10.9,0 -283896040,"FreeStyle2 Street Basketball",purchase,1.0,0 -283896040,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -283896040,"Magicka Wizard Wars",purchase,1.0,0 -283896040,"Marvel Heroes 2015",purchase,1.0,0 -283896040,"Neverwinter",purchase,1.0,0 -283896040,"Warframe",purchase,1.0,0 -188981612,"Dota 2",purchase,1.0,0 -188981612,"Dota 2",play,15.8,0 -167957216,"Dota 2",purchase,1.0,0 -167957216,"Dota 2",play,1.5,0 -58897206,"Football Manager 2010",purchase,1.0,0 -58897206,"Football Manager 2010",play,71.0,0 -58897206,"Football Manager 2013",purchase,1.0,0 -58897206,"Football Manager 2013",play,19.3,0 -304971849,"AdVenture Capitalist",purchase,1.0,0 -304971849,"AdVenture Capitalist",play,11.1,0 -304971849,"Magicka Wizard Wars",purchase,1.0,0 -304971849,"Magicka Wizard Wars",play,4.9,0 -304971849,"Clicker Heroes",purchase,1.0,0 -304971849,"Clicker Heroes",play,2.0,0 -304971849,"Super Crate Box",purchase,1.0,0 -304971849,"Super Crate Box",play,1.9,0 -304971849,"Geometry Dash",purchase,1.0,0 -304971849,"Geometry Dash",play,0.5,0 -304971849,"Emily is Away",purchase,1.0,0 -304971849,"Emily is Away",play,0.5,0 -304971849,"Dungeon Defenders II",purchase,1.0,0 -304971849,"Dungeon Defenders II",play,0.2,0 -304971849,"Trove",purchase,1.0,0 -304971849,"Trove",play,0.1,0 -304971849,"Escape",purchase,1.0,0 -304971849,"Mitos.is The Game",purchase,1.0,0 -304971849,"Gear Up",purchase,1.0,0 -304971849,"Happy Wars",purchase,1.0,0 -304971849,"Robocraft",purchase,1.0,0 -304971849,"Firefall",purchase,1.0,0 -301987885,"Dota 2",purchase,1.0,0 -301987885,"Dota 2",play,15.8,0 -55763300,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -55763300,"Call of Duty Modern Warfare 2 - Multiplayer",play,1138.0,0 -55763300,"Call of Duty Modern Warfare 2",purchase,1.0,0 -55763300,"Call of Duty Modern Warfare 2",play,52.0,0 -55763300,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -55763300,"Call of Duty Black Ops - Multiplayer",play,26.0,0 -55763300,"Call of Duty Black Ops",purchase,1.0,0 -55763300,"Call of Duty Black Ops",play,13.3,0 -55763300,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -55763300,"Rising Storm/Red Orchestra 2 Multiplayer",play,5.6,0 -55763300,"Deus Ex Human Revolution",purchase,1.0,0 -55763300,"Deus Ex Human Revolution",play,4.4,0 -55763300,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -197245597,"Unturned",purchase,1.0,0 -197245597,"Unturned",play,0.4,0 -197245597,"Blacklight Retribution",purchase,1.0,0 -197245597,"Gotham City Impostors Free To Play",purchase,1.0,0 -197245597,"No More Room in Hell",purchase,1.0,0 -197245597,"Path of Exile",purchase,1.0,0 -197245597,"Realm of the Mad God",purchase,1.0,0 -197245597,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -109946857,"Grand Theft Auto IV",purchase,1.0,0 -109946857,"Grand Theft Auto IV",play,13.5,0 -239163602,"Dota 2",purchase,1.0,0 -239163602,"Dota 2",play,277.0,0 -239163602,"FreeStyle2 Street Basketball",purchase,1.0,0 -239163602,"FreeStyle2 Street Basketball",play,0.1,0 -239163602,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -239163602,"TERA",purchase,1.0,0 -55229923,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -55229923,"Call of Duty Modern Warfare 2 - Multiplayer",play,70.0,0 -55229923,"Call of Duty Modern Warfare 2",purchase,1.0,0 -55229923,"Call of Duty Modern Warfare 2",play,12.7,0 -188184581,"Dota 2",purchase,1.0,0 -188184581,"Dota 2",play,40.0,0 -49380630,"Counter-Strike Source",purchase,1.0,0 -49380630,"Counter-Strike Source",play,2965.0,0 -49380630,"Counter-Strike Global Offensive",purchase,1.0,0 -49380630,"Counter-Strike Global Offensive",play,2428.0,0 -49380630,"Spiral Knights",purchase,1.0,0 -49380630,"Spiral Knights",play,115.0,0 -49380630,"Half-Life 2 Deathmatch",purchase,1.0,0 -49380630,"Half-Life 2 Deathmatch",play,10.5,0 -49380630,"Dota 2",purchase,1.0,0 -49380630,"Dota 2",play,1.7,0 -49380630,"Team Fortress 2",purchase,1.0,0 -49380630,"Team Fortress 2",play,1.6,0 -49380630,"Dead Island Epidemic",purchase,1.0,0 -49380630,"Dead Island Epidemic",play,1.4,0 -49380630,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -49380630,"Resident Evil 6 / Biohazard 6",play,0.9,0 -49380630,"Left 4 Dead",purchase,1.0,0 -49380630,"Left 4 Dead",play,0.7,0 -49380630,"HAWKEN",purchase,1.0,0 -49380630,"HAWKEN",play,0.6,0 -49380630,"Insurgency Modern Infantry Combat",purchase,1.0,0 -49380630,"Insurgency Modern Infantry Combat",play,0.5,0 -49380630,"Dirty Bomb",purchase,1.0,0 -49380630,"Half-Life 2 Lost Coast",purchase,1.0,0 -211419882,"DayZ",purchase,1.0,0 -211419882,"DayZ",play,7.6,0 -211419882,"PlanetSide 2",purchase,1.0,0 -108750879,"Borderlands 2",purchase,1.0,0 -108750879,"Borderlands 2",play,758.0,0 -108750879,"The Elder Scrolls V Skyrim",purchase,1.0,0 -108750879,"The Elder Scrolls V Skyrim",play,511.0,0 -108750879,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -108750879,"Call of Duty Modern Warfare 3 - Multiplayer",play,149.0,0 -108750879,"Saints Row IV",purchase,1.0,0 -108750879,"Saints Row IV",play,117.0,0 -108750879,"Fallout 4",purchase,1.0,0 -108750879,"Fallout 4",play,77.0,0 -108750879,"Fallout New Vegas",purchase,1.0,0 -108750879,"Fallout New Vegas",play,71.0,0 -108750879,"Saints Row The Third",purchase,1.0,0 -108750879,"Saints Row The Third",play,33.0,0 -108750879,"Metro Last Light",purchase,1.0,0 -108750879,"Metro Last Light",play,26.0,0 -108750879,"Dota 2",purchase,1.0,0 -108750879,"Dota 2",play,25.0,0 -108750879,"F.E.A.R. 3",purchase,1.0,0 -108750879,"F.E.A.R. 3",play,17.2,0 -108750879,"Call of Duty Modern Warfare 3",purchase,1.0,0 -108750879,"Call of Duty Modern Warfare 3",play,9.9,0 -108750879,"Warframe",purchase,1.0,0 -108750879,"Warframe",play,6.9,0 -108750879,"Team Fortress 2",purchase,1.0,0 -108750879,"Team Fortress 2",play,3.7,0 -108750879,"Nosgoth",purchase,1.0,0 -108750879,"Nosgoth",play,1.4,0 -108750879,"Blacklight Tango Down",purchase,1.0,0 -108750879,"Blacklight Tango Down",play,1.4,0 -152889443,"Dota 2",purchase,1.0,0 -152889443,"Dota 2",play,342.0,0 -172854515,"Counter-Strike Global Offensive",purchase,1.0,0 -172854515,"Counter-Strike Global Offensive",play,87.0,0 -172854515,"Dota 2",purchase,1.0,0 -172854515,"Dota 2",play,1.8,0 -172854515,"No More Room in Hell",purchase,1.0,0 -172854515,"No More Room in Hell",play,0.2,0 -172854515,"Unturned",purchase,1.0,0 -172854515,"Unturned",play,0.2,0 -172854515,"AdVenture Capitalist",purchase,1.0,0 -172854515,"BLOCKADE 3D",purchase,1.0,0 -172854515,"Infinite Crisis",purchase,1.0,0 -172854515,"Loadout",purchase,1.0,0 -172854515,"Nosgoth",purchase,1.0,0 -172854515,"Warframe",purchase,1.0,0 -67694014,"Alien Swarm",purchase,1.0,0 -67694014,"Alien Swarm",play,2.7,0 -119829710,"Team Fortress 2",purchase,1.0,0 -119829710,"Team Fortress 2",play,0.7,0 -119829710,"Alien Swarm",purchase,1.0,0 -119829710,"Alien Swarm",play,0.1,0 -21416874,"Counter-Strike Source",purchase,1.0,0 -21416874,"Counter-Strike Source",play,2.2,0 -21416874,"Counter-Strike",purchase,1.0,0 -21416874,"Counter-Strike Condition Zero",purchase,1.0,0 -21416874,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -21416874,"Day of Defeat",purchase,1.0,0 -21416874,"Day of Defeat Source",purchase,1.0,0 -21416874,"Deathmatch Classic",purchase,1.0,0 -21416874,"Half-Life",purchase,1.0,0 -21416874,"Half-Life 2 Deathmatch",purchase,1.0,0 -21416874,"Half-Life 2 Lost Coast",purchase,1.0,0 -21416874,"Half-Life Blue Shift",purchase,1.0,0 -21416874,"Half-Life Opposing Force",purchase,1.0,0 -21416874,"Ricochet",purchase,1.0,0 -21416874,"Team Fortress Classic",purchase,1.0,0 -31668589,"Counter-Strike Source",purchase,1.0,0 -31668589,"Counter-Strike Source",play,141.0,0 -31668589,"Day of Defeat Source",purchase,1.0,0 -31668589,"Day of Defeat Source",play,48.0,0 -31668589,"Day of Defeat",purchase,1.0,0 -31668589,"Day of Defeat",play,34.0,0 -31668589,"Half-Life 2 Deathmatch",purchase,1.0,0 -31668589,"Half-Life 2 Deathmatch",play,0.4,0 -31668589,"Counter-Strike",purchase,1.0,0 -31668589,"Counter-Strike",play,0.2,0 -31668589,"Counter-Strike Condition Zero",purchase,1.0,0 -31668589,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -31668589,"Deathmatch Classic",purchase,1.0,0 -31668589,"Half-Life 2 Lost Coast",purchase,1.0,0 -31668589,"Ricochet",purchase,1.0,0 -206485753,"Dota 2",purchase,1.0,0 -206485753,"Dota 2",play,62.0,0 -206485753,"Counter-Strike Nexon Zombies",purchase,1.0,0 -206485753,"Heroes & Generals",purchase,1.0,0 -206485753,"Loadout",purchase,1.0,0 -206485753,"Marvel Puzzle Quest",purchase,1.0,0 -206485753,"Super Crate Box",purchase,1.0,0 -206485753,"Unturned",purchase,1.0,0 -304062371,"SMITE",purchase,1.0,0 -304062371,"SMITE",play,35.0,0 -277635586,"Terraria",purchase,1.0,0 -277635586,"Terraria",play,208.0,0 -277635586,"Counter-Strike Global Offensive",purchase,1.0,0 -277635586,"Counter-Strike Global Offensive",play,29.0,0 -277635586,"Portal 2",purchase,1.0,0 -277635586,"Portal 2",play,7.8,0 -277635586,"Clicker Heroes",purchase,1.0,0 -277635586,"Clicker Heroes",play,1.0,0 -277635586,"Trove",purchase,1.0,0 -277635586,"Trove",play,0.4,0 -277635586,"Portal",purchase,1.0,0 -17352311,"Counter-Strike",purchase,1.0,0 -17352311,"Counter-Strike",play,1.4,0 -17352311,"Half-Life",purchase,1.0,0 -17352311,"Half-Life",play,0.1,0 -17352311,"Day of Defeat",purchase,1.0,0 -17352311,"Deathmatch Classic",purchase,1.0,0 -17352311,"Half-Life Blue Shift",purchase,1.0,0 -17352311,"Half-Life Opposing Force",purchase,1.0,0 -17352311,"Ricochet",purchase,1.0,0 -17352311,"Team Fortress Classic",purchase,1.0,0 -57603447,"Dota 2",purchase,1.0,0 -57603447,"Dota 2",play,1727.0,0 -57603447,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -57603447,"Call of Duty Modern Warfare 2 - Multiplayer",play,127.0,0 -57603447,"Fallout 4",purchase,1.0,0 -57603447,"Fallout 4",play,120.0,0 -57603447,"Left 4 Dead 2",purchase,1.0,0 -57603447,"Left 4 Dead 2",play,73.0,0 -57603447,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -57603447,"Call of Duty Modern Warfare 3 - Multiplayer",play,69.0,0 -57603447,"The Witcher 3 Wild Hunt",purchase,1.0,0 -57603447,"The Witcher 3 Wild Hunt",play,60.0,0 -57603447,"Borderlands 2",purchase,1.0,0 -57603447,"Borderlands 2",play,58.0,0 -57603447,"The Sims(TM) 3",purchase,1.0,0 -57603447,"The Sims(TM) 3",play,54.0,0 -57603447,"Call of Duty Modern Warfare 2",purchase,1.0,0 -57603447,"Call of Duty Modern Warfare 2",play,31.0,0 -57603447,"Far Cry 3",purchase,1.0,0 -57603447,"Far Cry 3",play,26.0,0 -57603447,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -57603447,"The Witcher 2 Assassins of Kings Enhanced Edition",play,23.0,0 -57603447,"Counter-Strike Global Offensive",purchase,1.0,0 -57603447,"Counter-Strike Global Offensive",play,23.0,0 -57603447,"Wolfenstein The New Order",purchase,1.0,0 -57603447,"Wolfenstein The New Order",play,17.1,0 -57603447,"Call of Duty Modern Warfare 3",purchase,1.0,0 -57603447,"Call of Duty Modern Warfare 3",play,14.5,0 -57603447,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -57603447,"Warhammer 40,000 Dawn of War Soulstorm",play,14.0,0 -57603447,"Fallout New Vegas",purchase,1.0,0 -57603447,"Fallout New Vegas",play,11.3,0 -57603447,"Crysis 2 Maximum Edition",purchase,1.0,0 -57603447,"Crysis 2 Maximum Edition",play,11.1,0 -57603447,"Batman Arkham Origins",purchase,1.0,0 -57603447,"Batman Arkham Origins",play,10.5,0 -57603447,"Skullgirls",purchase,1.0,0 -57603447,"Skullgirls",play,8.9,0 -57603447,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -57603447,"Batman Arkham Asylum GOTY Edition",play,8.6,0 -57603447,"Bully Scholarship Edition",purchase,1.0,0 -57603447,"Bully Scholarship Edition",play,8.1,0 -57603447,"Grand Theft Auto IV",purchase,1.0,0 -57603447,"Grand Theft Auto IV",play,7.8,0 -57603447,"Batman Arkham City GOTY",purchase,1.0,0 -57603447,"Batman Arkham City GOTY",play,7.0,0 -57603447,"SteamWorld Dig",purchase,1.0,0 -57603447,"SteamWorld Dig",play,6.8,0 -57603447,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -57603447,"Injustice Gods Among Us Ultimate Edition",play,6.6,0 -57603447,"BioShock Infinite",purchase,1.0,0 -57603447,"BioShock Infinite",play,6.6,0 -57603447,"Team Fortress 2",purchase,1.0,0 -57603447,"Team Fortress 2",play,6.0,0 -57603447,"Max Payne 3",purchase,1.0,0 -57603447,"Max Payne 3",play,5.9,0 -57603447,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -57603447,"Warhammer 40,000 Dawn of War II Retribution",play,5.1,0 -57603447,"Trine 2",purchase,1.0,0 -57603447,"Trine 2",play,4.4,0 -57603447,"Darksiders",purchase,1.0,0 -57603447,"Darksiders",play,4.2,0 -57603447,"Ultra Street Fighter IV",purchase,1.0,0 -57603447,"Ultra Street Fighter IV",play,4.1,0 -57603447,"Half-Life 2",purchase,1.0,0 -57603447,"Half-Life 2",play,4.0,0 -57603447,"Shadow Warrior",purchase,1.0,0 -57603447,"Shadow Warrior",play,3.9,0 -57603447,"GUILTY GEAR Xrd -SIGN-",purchase,1.0,0 -57603447,"GUILTY GEAR Xrd -SIGN-",play,3.0,0 -57603447,"The Elder Scrolls V Skyrim",purchase,1.0,0 -57603447,"The Elder Scrolls V Skyrim",play,3.0,0 -57603447,"Broforce",purchase,1.0,0 -57603447,"Broforce",play,2.9,0 -57603447,"Chivalry Medieval Warfare",purchase,1.0,0 -57603447,"Chivalry Medieval Warfare",play,2.8,0 -57603447,"LIMBO",purchase,1.0,0 -57603447,"LIMBO",play,2.8,0 -57603447,"RAGE",purchase,1.0,0 -57603447,"RAGE",play,2.6,0 -57603447,"The Stanley Parable",purchase,1.0,0 -57603447,"The Stanley Parable",play,2.5,0 -57603447,"Shift 2 Unleashed",purchase,1.0,0 -57603447,"Shift 2 Unleashed",play,2.5,0 -57603447,"Rogue Legacy",purchase,1.0,0 -57603447,"Rogue Legacy",play,2.5,0 -57603447,"Guacamelee! Gold Edition",purchase,1.0,0 -57603447,"Guacamelee! Gold Edition",play,2.4,0 -57603447,"GRID Autosport",purchase,1.0,0 -57603447,"GRID Autosport",play,2.4,0 -57603447,"Risk of Rain",purchase,1.0,0 -57603447,"Risk of Rain",play,2.4,0 -57603447,"PAYDAY 2",purchase,1.0,0 -57603447,"PAYDAY 2",play,2.2,0 -57603447,"BattleBlock Theater",purchase,1.0,0 -57603447,"BattleBlock Theater",play,2.1,0 -57603447,"BioShock",purchase,1.0,0 -57603447,"BioShock",play,2.1,0 -57603447,"The Darkness II",purchase,1.0,0 -57603447,"The Darkness II",play,2.0,0 -57603447,"Far Cry 3 Blood Dragon",purchase,1.0,0 -57603447,"Far Cry 3 Blood Dragon",play,1.9,0 -57603447,"Final Exam",purchase,1.0,0 -57603447,"Final Exam",play,1.9,0 -57603447,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -57603447,"Tom Clancy's Splinter Cell Conviction",play,1.8,0 -57603447,"Shovel Knight",purchase,1.0,0 -57603447,"Shovel Knight",play,1.7,0 -57603447,"BioShock 2",purchase,1.0,0 -57603447,"BioShock 2",play,1.6,0 -57603447,"Metro Last Light",purchase,1.0,0 -57603447,"Metro Last Light",play,1.5,0 -57603447,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -57603447,"Tom Clancy's Splinter Cell Blacklist",play,1.5,0 -57603447,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -57603447,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,1.5,0 -57603447,"Gone Home",purchase,1.0,0 -57603447,"Gone Home",play,1.5,0 -57603447,"Spelunky",purchase,1.0,0 -57603447,"Spelunky",play,1.4,0 -57603447,"Spec Ops The Line",purchase,1.0,0 -57603447,"Spec Ops The Line",play,1.3,0 -57603447,"Sanctum 2",purchase,1.0,0 -57603447,"Sanctum 2",play,1.1,0 -57603447,"Surgeon Simulator",purchase,1.0,0 -57603447,"Surgeon Simulator",play,1.0,0 -57603447,"Mortal Kombat Komplete Edition",purchase,1.0,0 -57603447,"Mortal Kombat Komplete Edition",play,1.0,0 -57603447,"Super House of Dead Ninjas",purchase,1.0,0 -57603447,"Super House of Dead Ninjas",play,1.0,0 -57603447,"Sniper Elite Nazi Zombie Army",purchase,1.0,0 -57603447,"Sniper Elite Nazi Zombie Army",play,1.0,0 -57603447,"Dust An Elysian Tail",purchase,1.0,0 -57603447,"Dust An Elysian Tail",play,1.0,0 -57603447,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -57603447,"Call of Duty 4 Modern Warfare",play,0.9,0 -57603447,"Hotline Miami",purchase,1.0,0 -57603447,"Hotline Miami",play,0.9,0 -57603447,"DOOM 3 BFG Edition",purchase,1.0,0 -57603447,"DOOM 3 BFG Edition",play,0.9,0 -57603447,"Terraria",purchase,1.0,0 -57603447,"Terraria",play,0.8,0 -57603447,"Tomb Raider",purchase,1.0,0 -57603447,"Tomb Raider",play,0.8,0 -57603447,"Super Meat Boy",purchase,1.0,0 -57603447,"Super Meat Boy",play,0.7,0 -57603447,"Braid",purchase,1.0,0 -57603447,"Braid",play,0.7,0 -57603447,"TowerFall Ascension",purchase,1.0,0 -57603447,"TowerFall Ascension",play,0.7,0 -57603447,"Giana Sisters Twisted Dreams - Rise of the Owlverlord",purchase,1.0,0 -57603447,"Giana Sisters Twisted Dreams - Rise of the Owlverlord",play,0.7,0 -57603447,"Deadlight",purchase,1.0,0 -57603447,"Deadlight",play,0.7,0 -57603447,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -57603447,"The Incredible Adventures of Van Helsing",play,0.6,0 -57603447,"FEZ",purchase,1.0,0 -57603447,"FEZ",play,0.6,0 -57603447,"XCOM Enemy Unknown",purchase,1.0,0 -57603447,"XCOM Enemy Unknown",play,0.6,0 -57603447,"F.E.A.R.",purchase,1.0,0 -57603447,"F.E.A.R.",play,0.6,0 -57603447,"Dishonored",purchase,1.0,0 -57603447,"Dishonored",play,0.5,0 -57603447,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -57603447,"Command and Conquer Red Alert 3 - Uprising",play,0.4,0 -57603447,"Hitman Absolution",purchase,1.0,0 -57603447,"Hitman Absolution",play,0.4,0 -57603447,"Awesomenauts",purchase,1.0,0 -57603447,"Awesomenauts",play,0.4,0 -57603447,"L.A. Noire",purchase,1.0,0 -57603447,"L.A. Noire",play,0.4,0 -57603447,"Nidhogg",purchase,1.0,0 -57603447,"Nidhogg",play,0.4,0 -57603447,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -57603447,"Warhammer 40,000 Dawn of War II",play,0.4,0 -57603447,"Serious Sam 3 BFE",purchase,1.0,0 -57603447,"Serious Sam 3 BFE",play,0.4,0 -57603447,"Just Cause 2",purchase,1.0,0 -57603447,"Just Cause 2",play,0.3,0 -57603447,"Max Payne",purchase,1.0,0 -57603447,"Max Payne",play,0.3,0 -57603447,"Castle Crashers",purchase,1.0,0 -57603447,"Castle Crashers",play,0.3,0 -57603447,"Portal",purchase,1.0,0 -57603447,"Portal",play,0.3,0 -57603447,"Mark of the Ninja",purchase,1.0,0 -57603447,"Mark of the Ninja",play,0.3,0 -57603447,"Orcs Must Die! 2",purchase,1.0,0 -57603447,"Orcs Must Die! 2",play,0.3,0 -57603447,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -57603447,"Warhammer 40,000 Dawn of War Winter Assault",play,0.3,0 -57603447,"Super Time Force Ultra",purchase,1.0,0 -57603447,"Super Time Force Ultra",play,0.3,0 -57603447,"Hammerwatch",purchase,1.0,0 -57603447,"Hammerwatch",play,0.3,0 -57603447,"Red Faction Armageddon",purchase,1.0,0 -57603447,"Red Faction Armageddon",play,0.3,0 -57603447,"The Binding of Isaac",purchase,1.0,0 -57603447,"The Binding of Isaac",play,0.2,0 -57603447,"Torchlight II",purchase,1.0,0 -57603447,"Torchlight II",play,0.2,0 -57603447,"Crypt of the NecroDancer",purchase,1.0,0 -57603447,"Crypt of the NecroDancer",play,0.2,0 -57603447,"Bastion",purchase,1.0,0 -57603447,"Bastion",play,0.2,0 -57603447,"Don't Starve",purchase,1.0,0 -57603447,"Don't Starve",play,0.2,0 -57603447,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -57603447,"Grand Theft Auto Episodes from Liberty City",play,0.2,0 -57603447,"Metro 2033 Redux",purchase,1.0,0 -57603447,"Metro 2033 Redux",play,0.2,0 -57603447,"Alan Wake",purchase,1.0,0 -57603447,"Alan Wake",play,0.1,0 -57603447,"Skullgirls Endless Beta",purchase,1.0,0 -57603447,"Skullgirls Endless Beta",play,0.1,0 -57603447,"Sniper Elite V2",purchase,1.0,0 -57603447,"Sniper Elite V2",play,0.1,0 -57603447,"Tom Clancy's Splinter Cell Double Agent",purchase,1.0,0 -57603447,"Monaco",purchase,1.0,0 -57603447,"Retro City Rampage DX",purchase,1.0,0 -57603447,"Brothers - A Tale of Two Sons",purchase,1.0,0 -57603447,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -57603447,"Darksiders II",purchase,1.0,0 -57603447,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -57603447,"Papers, Please",purchase,1.0,0 -57603447,"Portal 2",purchase,1.0,0 -57603447,"Alan Wake's American Nightmare",purchase,1.0,0 -57603447,"BioShock Infinite - Season Pass",purchase,1.0,0 -57603447,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -57603447,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -57603447,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -57603447,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -57603447,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -57603447,"Crysis",purchase,1.0,0 -57603447,"Crysis Warhead",purchase,1.0,0 -57603447,"Crysis Wars",purchase,1.0,0 -57603447,"Dead Space",purchase,1.0,0 -57603447,"Dead Space 2",purchase,1.0,0 -57603447,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -57603447,"Don't Starve Reign of Giants",purchase,1.0,0 -57603447,"Don't Starve Together Beta",purchase,1.0,0 -57603447,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -57603447,"F.E.A.R. Extraction Point",purchase,1.0,0 -57603447,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -57603447,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -57603447,"Fallout New Vegas Dead Money",purchase,1.0,0 -57603447,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -57603447,"Half-Life 2 Deathmatch",purchase,1.0,0 -57603447,"Half-Life 2 Episode One",purchase,1.0,0 -57603447,"Half-Life 2 Episode Two",purchase,1.0,0 -57603447,"Half-Life 2 Lost Coast",purchase,1.0,0 -57603447,"Half-Life Deathmatch Source",purchase,1.0,0 -57603447,"Hard Reset",purchase,1.0,0 -57603447,"Hard Reset Exile DLC",purchase,1.0,0 -57603447,"Hitman Sniper Challenge",purchase,1.0,0 -57603447,"Magicka",purchase,1.0,0 -57603447,"Mark of the Ninja Special Edition DLC",purchase,1.0,0 -57603447,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -57603447,"Max Payne 3 Season Pass",purchase,1.0,0 -57603447,"Metro Last Light Redux",purchase,1.0,0 -57603447,"Middle-earth Shadow of Mordor",purchase,1.0,0 -57603447,"Patch testing for Chivalry",purchase,1.0,0 -57603447,"Quake 4",purchase,1.0,0 -57603447,"RIFT",purchase,1.0,0 -57603447,"Sniper Elite Nazi Zombie Army 2",purchase,1.0,0 -57603447,"Supreme Commander 2",purchase,1.0,0 -57603447,"Supreme Commander 2 - Infinite War Battle Pack One",purchase,1.0,0 -57603447,"System Shock 2",purchase,1.0,0 -57603447,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -57603447,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -57603447,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -57603447,"The Expendabros",purchase,1.0,0 -57603447,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -57603447,"The Witcher Enhanced Edition",purchase,1.0,0 -57603447,"Transistor",purchase,1.0,0 -57603447,"Trine",purchase,1.0,0 -57603447,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -57603447,"XCOM Enemy Within",purchase,1.0,0 -168278593,"Dota 2",purchase,1.0,0 -168278593,"Dota 2",play,190.0,0 -167193350,"Dota 2",purchase,1.0,0 -167193350,"Dota 2",play,0.7,0 -177399405,"Dota 2",purchase,1.0,0 -177399405,"Dota 2",play,2.3,0 -140435453,"Dota 2",purchase,1.0,0 -140435453,"Dota 2",play,6.3,0 -296479717,"Dota 2",purchase,1.0,0 -296479717,"Dota 2",play,0.5,0 -240332107,"Team Fortress 2",purchase,1.0,0 -240332107,"Team Fortress 2",play,0.5,0 -240332107,"Aura Kingdom",purchase,1.0,0 -240332107,"Clicker Heroes",purchase,1.0,0 -240332107,"Dirty Bomb",purchase,1.0,0 -240332107,"Elsword",purchase,1.0,0 -240332107,"Spiral Knights",purchase,1.0,0 -240332107,"Unturned",purchase,1.0,0 -240332107,"Voices from the Sea",purchase,1.0,0 -254692357,"The Escapists",purchase,1.0,0 -254692357,"The Escapists",play,7.2,0 -254692357,"Autobahn Police Simulator",purchase,1.0,0 -254692357,"Autobahn Police Simulator",play,1.1,0 -169684620,"Dota 2",purchase,1.0,0 -169684620,"Dota 2",play,1198.0,0 -169684620,"GunZ 2 The Second Duel",purchase,1.0,0 -169684620,"GunZ 2 The Second Duel",play,0.2,0 -169684620,"APB Reloaded",purchase,1.0,0 -169684620,"Free to Play",purchase,1.0,0 -169684620,"HAWKEN",purchase,1.0,0 -169684620,"Heroes & Generals",purchase,1.0,0 -34161935,"Portal",purchase,1.0,0 -34161935,"Half-Life 2",purchase,1.0,0 -34161935,"Half-Life 2 Episode One",purchase,1.0,0 -34161935,"Half-Life 2 Episode Two",purchase,1.0,0 -34161935,"Half-Life 2 Lost Coast",purchase,1.0,0 -233659279,"Call of Duty Black Ops",purchase,1.0,0 -233659279,"Call of Duty Black Ops",play,4.9,0 -233659279,"Shelter 2",purchase,1.0,0 -233659279,"Shelter 2",play,3.6,0 -233659279,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -95460323,"Football Manager 2012",purchase,1.0,0 -95460323,"Football Manager 2012",play,48.0,0 -145060724,"Dota 2",purchase,1.0,0 -145060724,"Dota 2",play,0.4,0 -175193054,"Dota 2",purchase,1.0,0 -175193054,"Dota 2",play,0.5,0 -153475364,"Dota 2",purchase,1.0,0 -153475364,"Dota 2",play,2.4,0 -250960203,"BattleBlock Theater",purchase,1.0,0 -250960203,"BattleBlock Theater",play,16.0,0 -250960203,"Warframe",purchase,1.0,0 -27403206,"Might & Magic Heroes VI",purchase,1.0,0 -27403206,"Might & Magic Heroes VI",play,95.0,0 -27403206,"Rocket League",purchase,1.0,0 -27403206,"Rocket League",play,55.0,0 -27403206,"Elite Dangerous",purchase,1.0,0 -27403206,"Elite Dangerous",play,34.0,0 -27403206,"Fallout 4",purchase,1.0,0 -27403206,"Fallout 4",play,23.0,0 -27403206,"Sid Meier's Civilization V",purchase,1.0,0 -27403206,"Sid Meier's Civilization V",play,22.0,0 -27403206,"Cities Skylines",purchase,1.0,0 -27403206,"Cities Skylines",play,19.3,0 -27403206,"Middle-earth Shadow of Mordor",purchase,1.0,0 -27403206,"Middle-earth Shadow of Mordor",play,18.6,0 -27403206,"Torchlight II",purchase,1.0,0 -27403206,"Torchlight II",play,17.5,0 -27403206,"DiRT 2",purchase,1.0,0 -27403206,"DiRT 2",play,16.4,0 -27403206,"Mass Effect 2",purchase,1.0,0 -27403206,"Mass Effect 2",play,15.8,0 -27403206,"The Crew",purchase,1.0,0 -27403206,"The Crew",play,12.8,0 -27403206,"Fallout New Vegas",purchase,1.0,0 -27403206,"Fallout New Vegas",play,12.1,0 -27403206,"Reassembly",purchase,1.0,0 -27403206,"Reassembly",play,10.6,0 -27403206,"Deus Ex Human Revolution",purchase,1.0,0 -27403206,"Deus Ex Human Revolution",play,10.4,0 -27403206,"Scribblenauts Unlimited",purchase,1.0,0 -27403206,"Scribblenauts Unlimited",play,10.3,0 -27403206,"Grand Theft Auto V",purchase,1.0,0 -27403206,"Grand Theft Auto V",play,10.3,0 -27403206,"Counter-Strike Global Offensive",purchase,1.0,0 -27403206,"Counter-Strike Global Offensive",play,8.8,0 -27403206,"Warlock - Master of the Arcane",purchase,1.0,0 -27403206,"Warlock - Master of the Arcane",play,7.7,0 -27403206,"Borderlands 2",purchase,1.0,0 -27403206,"Borderlands 2",play,7.3,0 -27403206,"Tropico 4",purchase,1.0,0 -27403206,"Tropico 4",play,7.2,0 -27403206,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -27403206,"Call of Duty Black Ops II - Multiplayer",play,7.0,0 -27403206,"South Park The Stick of Truth",purchase,1.0,0 -27403206,"South Park The Stick of Truth",play,6.9,0 -27403206,"Watch_Dogs",purchase,1.0,0 -27403206,"Watch_Dogs",play,6.8,0 -27403206,"Starbound",purchase,1.0,0 -27403206,"Starbound",play,6.5,0 -27403206,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -27403206,"Kingdoms of Amalur Reckoning",play,6.4,0 -27403206,"Dishonored",purchase,1.0,0 -27403206,"Dishonored",play,5.0,0 -27403206,"DiRT Rally",purchase,1.0,0 -27403206,"DiRT Rally",play,3.7,0 -27403206,"RAGE",purchase,1.0,0 -27403206,"RAGE",play,3.4,0 -27403206,"Arma 3",purchase,1.0,0 -27403206,"Arma 3",play,3.2,0 -27403206,"Spintires",purchase,1.0,0 -27403206,"Spintires",play,3.2,0 -27403206,"Counter-Strike Source",purchase,1.0,0 -27403206,"Counter-Strike Source",play,3.1,0 -27403206,"Besiege",purchase,1.0,0 -27403206,"Besiege",play,3.0,0 -27403206,"Dead Space",purchase,1.0,0 -27403206,"Dead Space",play,2.9,0 -27403206,"Age of Empires III Complete Collection",purchase,1.0,0 -27403206,"Age of Empires III Complete Collection",play,2.7,0 -27403206,"Call of Duty Black Ops II",purchase,1.0,0 -27403206,"Call of Duty Black Ops II",play,2.2,0 -27403206,"Natural Selection 2",purchase,1.0,0 -27403206,"Natural Selection 2",play,2.1,0 -27403206,"Reus",purchase,1.0,0 -27403206,"Reus",play,1.6,0 -27403206,"ArcaniA",purchase,1.0,0 -27403206,"ArcaniA",play,1.6,0 -27403206,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -27403206,"Microsoft Flight Simulator X Steam Edition",play,1.4,0 -27403206,"Magicka",purchase,1.0,0 -27403206,"Magicka",play,1.3,0 -27403206,"Don't Starve",purchase,1.0,0 -27403206,"Don't Starve",play,1.3,0 -27403206,"SteamWorld Dig",purchase,1.0,0 -27403206,"SteamWorld Dig",play,1.2,0 -27403206,"FTL Faster Than Light",purchase,1.0,0 -27403206,"FTL Faster Than Light",play,1.1,0 -27403206,"Crysis 2 Maximum Edition",purchase,1.0,0 -27403206,"Crysis 2 Maximum Edition",play,1.1,0 -27403206,"The Witcher 3 Wild Hunt",purchase,1.0,0 -27403206,"The Witcher 3 Wild Hunt",play,1.0,0 -27403206,"Defense Grid The Awakening",purchase,1.0,0 -27403206,"Defense Grid The Awakening",play,0.9,0 -27403206,"BioShock",purchase,1.0,0 -27403206,"BioShock",play,0.8,0 -27403206,"Darksiders II",purchase,1.0,0 -27403206,"Darksiders II",play,0.7,0 -27403206,"Empire Total War",purchase,1.0,0 -27403206,"Empire Total War",play,0.6,0 -27403206,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -27403206,"Batman Arkham Asylum GOTY Edition",play,0.5,0 -27403206,"BeamNG.drive",purchase,1.0,0 -27403206,"BeamNG.drive",play,0.3,0 -27403206,"Starbound - Unstable",purchase,1.0,0 -27403206,"Starbound - Unstable",play,0.3,0 -27403206,"Among Ripples",purchase,1.0,0 -27403206,"Among Ripples",play,0.1,0 -27403206,"STARWHAL",purchase,1.0,0 -27403206,"STARWHAL",play,0.1,0 -27403206,"TowerFall Ascension",purchase,1.0,0 -27403206,"TowerFall Ascension",play,0.1,0 -27403206,"Lethal League",purchase,1.0,0 -27403206,"Lethal League",play,0.1,0 -27403206,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -27403206,"Don't Starve Together Beta",purchase,1.0,0 -27403206,"Steam Marines",purchase,1.0,0 -27403206,"Kill The Bad Guy",purchase,1.0,0 -27403206,"Edge of Space",purchase,1.0,0 -27403206,"StarMade",purchase,1.0,0 -27403206,"Arma 3 Zeus",purchase,1.0,0 -27403206,"Batman Arkham City GOTY",purchase,1.0,0 -27403206,"BioShock 2",purchase,1.0,0 -27403206,"BioShock Infinite",purchase,1.0,0 -27403206,"Borderlands",purchase,1.0,0 -27403206,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -27403206,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -27403206,"Counter-Strike",purchase,1.0,0 -27403206,"Counter-Strike Condition Zero",purchase,1.0,0 -27403206,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -27403206,"Day of Defeat",purchase,1.0,0 -27403206,"Day of Defeat Source",purchase,1.0,0 -27403206,"Deathmatch Classic",purchase,1.0,0 -27403206,"Don't Starve Reign of Giants",purchase,1.0,0 -27403206,"Emergency 2014",purchase,1.0,0 -27403206,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -27403206,"F.E.A.R. 3",purchase,1.0,0 -27403206,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -27403206,"Fallout New Vegas Dead Money",purchase,1.0,0 -27403206,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -27403206,"Half-Life 2 Deathmatch",purchase,1.0,0 -27403206,"Half-Life 2 Lost Coast",purchase,1.0,0 -27403206,"Interplanetary",purchase,1.0,0 -27403206,"Legend of Grimrock 2",purchase,1.0,0 -27403206,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -27403206,"Medal of Honor(TM) Single Player",purchase,1.0,0 -27403206,"Medal of Honor Pre-Order",purchase,1.0,0 -27403206,"Mirror's Edge",purchase,1.0,0 -27403206,"Painkiller Hell & Damnation",purchase,1.0,0 -27403206,"Red Faction Armageddon",purchase,1.0,0 -27403206,"Ricochet",purchase,1.0,0 -27403206,"Saints Row IV",purchase,1.0,0 -27403206,"SanctuaryRPG Black Edition",purchase,1.0,0 -27403206,"SpellForce 2 - Faith in Destiny",purchase,1.0,0 -27403206,"Supreme Commander",purchase,1.0,0 -27403206,"Supreme Commander Forged Alliance",purchase,1.0,0 -27403206,"The Elder Scrolls V Skyrim",purchase,1.0,0 -27403206,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -27403206,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -27403206,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -27403206,"The Guild II",purchase,1.0,0 -27403206,"The Lord of the Rings War in the North",purchase,1.0,0 -27403206,"Valkyria Chronicles",purchase,1.0,0 -27403206,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -27403206,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -27403206,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -27403206,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -27403206,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -29001140,"DOOM 3 BFG Edition",purchase,1.0,0 -29001140,"DOOM 3 BFG Edition",play,7.0,0 -29001140,"Lara Croft and the Guardian of Light",purchase,1.0,0 -29001140,"Lara Croft and the Guardian of Light",play,0.6,0 -141749157,"Team Fortress 2",purchase,1.0,0 -141749157,"Team Fortress 2",play,8.9,0 -141749157,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -141749157,"Tom Clancy's Ghost Recon Phantoms - NA",play,3.1,0 -141749157,"Half-Life 2 Update",purchase,1.0,0 -308819212,"Dota 2",purchase,1.0,0 -308819212,"Dota 2",play,6.4,0 -280978702,"No More Room in Hell",purchase,1.0,0 -280978702,"No More Room in Hell",play,1.5,0 -172111265,"Dota 2",purchase,1.0,0 -172111265,"Dota 2",play,232.0,0 -172111265,"Creativerse",purchase,1.0,0 -172111265,"Creativerse",play,19.6,0 -172111265,"Left 4 Dead 2",purchase,1.0,0 -172111265,"Left 4 Dead 2",play,2.2,0 -172111265,"Spiral Knights",purchase,1.0,0 -172111265,"Spiral Knights",play,0.8,0 -79455558,"Football Manager 2011",purchase,1.0,0 -177162591,"Dota 2",purchase,1.0,0 -177162591,"Dota 2",play,1426.0,0 -25863903,"Counter-Strike",purchase,1.0,0 -25863903,"Counter-Strike",play,45.0,0 -25863903,"Fallout New Vegas",purchase,1.0,0 -25863903,"Fallout New Vegas",play,22.0,0 -25863903,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -25863903,"Counter-Strike Condition Zero Deleted Scenes",play,4.8,0 -25863903,"Counter-Strike Condition Zero",purchase,1.0,0 -25863903,"Day of Defeat",purchase,1.0,0 -25863903,"Deathmatch Classic",purchase,1.0,0 -25863903,"Ricochet",purchase,1.0,0 -33622085,"Clicker Heroes",purchase,1.0,0 -33622085,"Clicker Heroes",play,464.0,0 -33622085,"Age of Chivalry",purchase,1.0,0 -33622085,"Age of Chivalry",play,461.0,0 -33622085,"Left 4 Dead",purchase,1.0,0 -33622085,"Left 4 Dead",play,278.0,0 -33622085,"Elite Dangerous",purchase,1.0,0 -33622085,"Elite Dangerous",play,225.0,0 -33622085,"Dungeon Defenders",purchase,1.0,0 -33622085,"Dungeon Defenders",play,217.0,0 -33622085,"Heroes & Generals",purchase,1.0,0 -33622085,"Heroes & Generals",play,170.0,0 -33622085,"DC Universe Online",purchase,1.0,0 -33622085,"DC Universe Online",play,149.0,0 -33622085,"Team Fortress 2",purchase,1.0,0 -33622085,"Team Fortress 2",play,137.0,0 -33622085,"Kerbal Space Program",purchase,1.0,0 -33622085,"Kerbal Space Program",play,132.0,0 -33622085,"Borderlands 2",purchase,1.0,0 -33622085,"Borderlands 2",play,109.0,0 -33622085,"Dead Island Epidemic",purchase,1.0,0 -33622085,"Dead Island Epidemic",play,95.0,0 -33622085,"Left 4 Dead 2",purchase,1.0,0 -33622085,"Left 4 Dead 2",play,91.0,0 -33622085,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -33622085,"Call of Duty Modern Warfare 2 - Multiplayer",play,84.0,0 -33622085,"ARK Survival Evolved",purchase,1.0,0 -33622085,"ARK Survival Evolved",play,74.0,0 -33622085,"Killing Floor",purchase,1.0,0 -33622085,"Killing Floor",play,67.0,0 -33622085,"PAYDAY 2",purchase,1.0,0 -33622085,"PAYDAY 2",play,63.0,0 -33622085,"EVE Online",purchase,1.0,0 -33622085,"EVE Online",play,61.0,0 -33622085,"Crusader Kings II",purchase,1.0,0 -33622085,"Crusader Kings II",play,59.0,0 -33622085,"Nation Red",purchase,1.0,0 -33622085,"Nation Red",play,50.0,0 -33622085,"PAYDAY The Heist",purchase,1.0,0 -33622085,"PAYDAY The Heist",play,41.0,0 -33622085,"DayZ",purchase,1.0,0 -33622085,"DayZ",play,40.0,0 -33622085,"Dead Island",purchase,1.0,0 -33622085,"Dead Island",play,36.0,0 -33622085,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -33622085,"Call of Duty Modern Warfare 3 - Multiplayer",play,34.0,0 -33622085,"Far Cry 3",purchase,1.0,0 -33622085,"Far Cry 3",play,28.0,0 -33622085,"Prison Architect",purchase,1.0,0 -33622085,"Prison Architect",play,27.0,0 -33622085,"Call of Duty Modern Warfare 3",purchase,1.0,0 -33622085,"Call of Duty Modern Warfare 3",play,25.0,0 -33622085,"Titan Quest Immortal Throne",purchase,1.0,0 -33622085,"Titan Quest Immortal Throne",play,23.0,0 -33622085,"FTL Faster Than Light",purchase,1.0,0 -33622085,"FTL Faster Than Light",play,23.0,0 -33622085,"Magic Duels",purchase,1.0,0 -33622085,"Magic Duels",play,21.0,0 -33622085,"Grand Theft Auto IV",purchase,1.0,0 -33622085,"Grand Theft Auto IV",play,20.0,0 -33622085,"Rogue Legacy",purchase,1.0,0 -33622085,"Rogue Legacy",play,19.9,0 -33622085,"Magic The Gathering Duels of the Planeswalkers 2012",purchase,1.0,0 -33622085,"Magic The Gathering Duels of the Planeswalkers 2012",play,19.3,0 -33622085,"Card Hunter",purchase,1.0,0 -33622085,"Card Hunter",play,17.3,0 -33622085,"Call of Duty Modern Warfare 2",purchase,1.0,0 -33622085,"Call of Duty Modern Warfare 2",play,14.7,0 -33622085,"XCOM Enemy Unknown",purchase,1.0,0 -33622085,"XCOM Enemy Unknown",play,12.8,0 -33622085,"Cities Skylines",purchase,1.0,0 -33622085,"Cities Skylines",play,12.8,0 -33622085,"The Binding of Isaac",purchase,1.0,0 -33622085,"The Binding of Isaac",play,12.4,0 -33622085,"Portal 2",purchase,1.0,0 -33622085,"Portal 2",play,12.3,0 -33622085,"Starbound",purchase,1.0,0 -33622085,"Starbound",play,12.1,0 -33622085,"Path of Exile",purchase,1.0,0 -33622085,"Path of Exile",play,10.7,0 -33622085,"DeathSpank",purchase,1.0,0 -33622085,"DeathSpank",play,9.2,0 -33622085,"The Baconing",purchase,1.0,0 -33622085,"The Baconing",play,8.8,0 -33622085,"Alien Swarm",purchase,1.0,0 -33622085,"Alien Swarm",play,8.5,0 -33622085,"Chivalry Medieval Warfare",purchase,1.0,0 -33622085,"Chivalry Medieval Warfare",play,8.3,0 -33622085,"Keep Talking and Nobody Explodes",purchase,1.0,0 -33622085,"Keep Talking and Nobody Explodes",play,7.2,0 -33622085,"Super Meat Boy",purchase,1.0,0 -33622085,"Super Meat Boy",play,7.1,0 -33622085,"Peggle Deluxe",purchase,1.0,0 -33622085,"Peggle Deluxe",play,6.0,0 -33622085,"Trials Evolution Gold Edition",purchase,1.0,0 -33622085,"Trials Evolution Gold Edition",play,5.7,0 -33622085,"Dota 2",purchase,1.0,0 -33622085,"Dota 2",play,5.3,0 -33622085,"7 Days to Die",purchase,1.0,0 -33622085,"7 Days to Die",play,4.8,0 -33622085,"Half-Life 2 Episode Two",purchase,1.0,0 -33622085,"Half-Life 2 Episode Two",play,4.7,0 -33622085,"Sid Meier's Civilization V",purchase,1.0,0 -33622085,"Sid Meier's Civilization V",play,4.5,0 -33622085,"BIT.TRIP RUNNER",purchase,1.0,0 -33622085,"BIT.TRIP RUNNER",play,4.3,0 -33622085,"Wolfenstein The New Order German Edition",purchase,1.0,0 -33622085,"Wolfenstein The New Order German Edition",play,4.3,0 -33622085,"Ace of Spades",purchase,1.0,0 -33622085,"Ace of Spades",play,4.1,0 -33622085,"One Finger Death Punch",purchase,1.0,0 -33622085,"One Finger Death Punch",play,3.7,0 -33622085,"Far Cry 3 Blood Dragon",purchase,1.0,0 -33622085,"Far Cry 3 Blood Dragon",play,3.5,0 -33622085,"Loadout",purchase,1.0,0 -33622085,"Loadout",play,3.5,0 -33622085,"The Stanley Parable",purchase,1.0,0 -33622085,"The Stanley Parable",play,3.4,0 -33622085,"Rust",purchase,1.0,0 -33622085,"Rust",play,3.2,0 -33622085,"LIMBO",purchase,1.0,0 -33622085,"LIMBO",play,3.2,0 -33622085,"All Zombies Must Die!",purchase,1.0,0 -33622085,"All Zombies Must Die!",play,3.2,0 -33622085,"Don't Starve",purchase,1.0,0 -33622085,"Don't Starve",play,3.1,0 -33622085,"Quantum Conundrum",purchase,1.0,0 -33622085,"Quantum Conundrum",play,2.9,0 -33622085,"Hotline Miami",purchase,1.0,0 -33622085,"Hotline Miami",play,2.8,0 -33622085,"Viscera Cleanup Detail",purchase,1.0,0 -33622085,"Viscera Cleanup Detail",play,2.7,0 -33622085,"HOARD",purchase,1.0,0 -33622085,"HOARD",play,2.6,0 -33622085,"Galactic Civilizations III",purchase,1.0,0 -33622085,"Galactic Civilizations III",play,2.4,0 -33622085,"Gunpoint",purchase,1.0,0 -33622085,"Gunpoint",play,2.3,0 -33622085,"Trials Fusion",purchase,1.0,0 -33622085,"Trials Fusion",play,2.3,0 -33622085,"Insurgency",purchase,1.0,0 -33622085,"Insurgency",play,2.1,0 -33622085,"Outlast",purchase,1.0,0 -33622085,"Outlast",play,1.8,0 -33622085,"Evoland",purchase,1.0,0 -33622085,"Evoland",play,1.6,0 -33622085,"Terraria",purchase,1.0,0 -33622085,"Terraria",play,1.5,0 -33622085,"Titan Quest",purchase,1.0,0 -33622085,"Titan Quest",play,1.5,0 -33622085,"Don't Starve Together Beta",purchase,1.0,0 -33622085,"Don't Starve Together Beta",play,1.5,0 -33622085,"SpaceChem",purchase,1.0,0 -33622085,"SpaceChem",play,1.4,0 -33622085,"Besiege",purchase,1.0,0 -33622085,"Besiege",play,1.3,0 -33622085,"Uplink",purchase,1.0,0 -33622085,"Uplink",play,1.1,0 -33622085,"Teleglitch Die More Edition",purchase,1.0,0 -33622085,"Teleglitch Die More Edition",play,1.1,0 -33622085,"Unstoppable Gorg",purchase,1.0,0 -33622085,"Unstoppable Gorg",play,1.1,0 -33622085,"War Thunder",purchase,1.0,0 -33622085,"War Thunder",play,0.9,0 -33622085,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -33622085,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",play,0.9,0 -33622085,"Psychonauts",purchase,1.0,0 -33622085,"Psychonauts",play,0.8,0 -33622085,"Renegade Ops",purchase,1.0,0 -33622085,"Renegade Ops",play,0.7,0 -33622085,"Half-Life 2 Episode One",purchase,1.0,0 -33622085,"Half-Life 2 Episode One",play,0.6,0 -33622085,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -33622085,"Grand Theft Auto Episodes from Liberty City",play,0.6,0 -33622085,"Half-Life 2",purchase,1.0,0 -33622085,"Half-Life 2",play,0.5,0 -33622085,"Worms",purchase,1.0,0 -33622085,"Worms",play,0.5,0 -33622085,"Antichamber",purchase,1.0,0 -33622085,"Antichamber",play,0.5,0 -33622085,"Half-Life 2 Lost Coast",purchase,1.0,0 -33622085,"Half-Life 2 Lost Coast",play,0.4,0 -33622085,"Five Nights at Freddy's 2",purchase,1.0,0 -33622085,"Five Nights at Freddy's 2",play,0.3,0 -33622085,"Unturned",purchase,1.0,0 -33622085,"Unturned",play,0.3,0 -33622085,"Magicka",purchase,1.0,0 -33622085,"Magicka",play,0.2,0 -33622085,"Mountain",purchase,1.0,0 -33622085,"Mountain",play,0.2,0 -33622085,"SEGA Bass Fishing",purchase,1.0,0 -33622085,"SEGA Bass Fishing",play,0.2,0 -33622085,"Monaco",purchase,1.0,0 -33622085,"Monaco",play,0.2,0 -33622085,"Castle Crashers",purchase,1.0,0 -33622085,"Castle Crashers",play,0.1,0 -33622085,"Door Kickers",purchase,1.0,0 -33622085,"Door Kickers",play,0.1,0 -33622085,"Space Engineers",purchase,1.0,0 -33622085,"Space Engineers",play,0.1,0 -33622085,"Sonic Adventure DX",purchase,1.0,0 -33622085,"Arma 2 Operation Arrowhead",purchase,1.0,0 -33622085,"How to Survive",purchase,1.0,0 -33622085,"DCS World",purchase,1.0,0 -33622085,"Arma 2",purchase,1.0,0 -33622085,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -33622085,"Contraption Maker",purchase,1.0,0 -33622085,"Crazy Taxi",purchase,1.0,0 -33622085,"Darwinia",purchase,1.0,0 -33622085,"DEFCON",purchase,1.0,0 -33622085,"Door Kickers Soundtrack",purchase,1.0,0 -33622085,"Fist Puncher",purchase,1.0,0 -33622085,"Galactic Civilizations III - Ship Designer's Toolbox DLC",purchase,1.0,0 -33622085,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -33622085,"Magicka Wizard's Survival Kit",purchase,1.0,0 -33622085,"Multiwinia",purchase,1.0,0 -33622085,"Patch testing for Chivalry",purchase,1.0,0 -33622085,"Portal",purchase,1.0,0 -33622085,"Psychonauts Demo",purchase,1.0,0 -33622085,"Space Channel 5 Part 2",purchase,1.0,0 -33622085,"Starbound - Unstable",purchase,1.0,0 -33622085,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -33622085,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -33622085,"Warframe",purchase,1.0,0 -183493923,"DC Universe Online",purchase,1.0,0 -183493923,"DC Universe Online",play,2.6,0 -183493923,"Unturned",purchase,1.0,0 -183493923,"WAKFU",purchase,1.0,0 -128937352,"Garry's Mod",purchase,1.0,0 -128937352,"Garry's Mod",play,2.8,0 -199085938,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -199085938,"Tom Clancy's Ghost Recon Phantoms - NA",play,1.3,0 -199085938,"Blacklight Retribution",purchase,1.0,0 -199085938,"Blacklight Retribution",play,0.8,0 -199085938,"Tactical Intervention",purchase,1.0,0 -201631174,"Super Monday Night Combat",purchase,1.0,0 -123128145,"Grand Theft Auto V",purchase,1.0,0 -123128145,"Grand Theft Auto V",play,841.0,0 -107632182,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -107632182,"STAR WARS Knights of the Old Republic II The Sith Lords",play,168.0,0 -107632182,"Star Wars - Battlefront II",purchase,1.0,0 -107632182,"Star Wars - Battlefront II",play,95.0,0 -107632182,"Age of Mythology Extended Edition",purchase,1.0,0 -107632182,"Age of Mythology Extended Edition",play,39.0,0 -107632182,"Star Wars Republic Commando",purchase,1.0,0 -107632182,"Star Wars Republic Commando",play,2.9,0 -107632182,"Demigod",purchase,1.0,0 -107632182,"Demigod",play,0.8,0 -81258000,"Dota 2",purchase,1.0,0 -81258000,"Dota 2",play,1024.0,0 -81258000,"Counter-Strike",purchase,1.0,0 -81258000,"Counter-Strike",play,352.0,0 -81258000,"AdVenture Capitalist",purchase,1.0,0 -81258000,"Black Fire",purchase,1.0,0 -81258000,"Clicker Heroes",purchase,1.0,0 -81258000,"Counter-Strike Condition Zero",purchase,1.0,0 -81258000,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -81258000,"Counter-Strike Nexon Zombies",purchase,1.0,0 -81258000,"CroNix",purchase,1.0,0 -81258000,"Day of Defeat",purchase,1.0,0 -81258000,"Deathmatch Classic",purchase,1.0,0 -81258000,"FreeStyle2 Street Basketball",purchase,1.0,0 -81258000,"HAWKEN",purchase,1.0,0 -81258000,"Heroes & Generals",purchase,1.0,0 -81258000,"Loadout",purchase,1.0,0 -81258000,"Magicka Wizard Wars",purchase,1.0,0 -81258000,"Ricochet",purchase,1.0,0 -81258000,"TERA",purchase,1.0,0 -81258000,"Trove",purchase,1.0,0 -81258000,"Warframe",purchase,1.0,0 -123461705,"Counter-Strike",purchase,1.0,0 -123461705,"Counter-Strike",play,488.0,0 -123461705,"Day of Defeat",purchase,1.0,0 -123461705,"Day of Defeat",play,1.6,0 -123461705,"Ricochet",purchase,1.0,0 -123461705,"Ricochet",play,0.6,0 -123461705,"Counter-Strike Condition Zero",purchase,1.0,0 -123461705,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -123461705,"Deathmatch Classic",purchase,1.0,0 -51268450,"Counter-Strike Source",purchase,1.0,0 -51268450,"Day of Defeat Source",purchase,1.0,0 -51268450,"Half-Life 2 Deathmatch",purchase,1.0,0 -51268450,"Half-Life 2 Lost Coast",purchase,1.0,0 -239153407,"Dota 2",purchase,1.0,0 -239153407,"Dota 2",play,1.0,0 -160598077,"Napoleon Total War",purchase,1.0,0 -160598077,"Napoleon Total War",play,8.8,0 -160598077,"Sid Meier's Civilization V",purchase,1.0,0 -160598077,"Sid Meier's Civilization V",play,0.4,0 -160598077,"Alan Wake",purchase,1.0,0 -184743467,"Empire Total War",purchase,1.0,0 -184743467,"Empire Total War",play,68.0,0 -293706250,"BLOCKADE 3D",purchase,1.0,0 -293706250,"BLOCKADE 3D",play,5.6,0 -293706250,"Unturned",purchase,1.0,0 -130753596,"Medieval II Total War",purchase,1.0,0 -130753596,"Medieval II Total War",play,174.0,0 -130753596,"Total War ROME II - Emperor Edition",purchase,1.0,0 -130753596,"Total War ROME II - Emperor Edition",play,25.0,0 -293537600,"War Thunder",purchase,1.0,0 -293537600,"War Thunder",play,7.8,0 -200115424,"Counter-Strike Global Offensive",purchase,1.0,0 -200115424,"Counter-Strike Global Offensive",play,70.0,0 -200115424,"Garry's Mod",purchase,1.0,0 -200115424,"Garry's Mod",play,49.0,0 -200115424,"Unturned",purchase,1.0,0 -200115424,"Unturned",play,0.2,0 -200115424,"Loadout",purchase,1.0,0 -273416560,"Super Crate Box",purchase,1.0,0 -273416560,"Super Crate Box",play,0.8,0 -170253449,"Dota 2",purchase,1.0,0 -170253449,"Dota 2",play,1.5,0 -230572014,"Counter-Strike Global Offensive",purchase,1.0,0 -230572014,"Counter-Strike Global Offensive",play,845.0,0 -230572014,"Arma 3",purchase,1.0,0 -230572014,"Arma 3",play,125.0,0 -230572014,"DayZ",purchase,1.0,0 -230572014,"DayZ",play,27.0,0 -230572014,"Team Fortress 2",purchase,1.0,0 -230572014,"Team Fortress 2",play,14.3,0 -230572014,"Hitman Absolution",purchase,1.0,0 -230572014,"Hitman Absolution",play,5.5,0 -230572014,"Dirty Bomb",purchase,1.0,0 -230572014,"Dirty Bomb",play,0.6,0 -230572014,"Mirror's Edge",purchase,1.0,0 -230572014,"Mirror's Edge",play,0.4,0 -230572014,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -230572014,"Just Cause 2 Multiplayer Mod",play,0.4,0 -230572014,"Heroes & Generals",purchase,1.0,0 -230572014,"16 Bit Arena",purchase,1.0,0 -230572014,"Arma 3 Zeus",purchase,1.0,0 -230572014,"Dishonored",purchase,1.0,0 -230572014,"Fractured Space",purchase,1.0,0 -230572014,"FTL Faster Than Light",purchase,1.0,0 -230572014,"Hitman Sniper Challenge",purchase,1.0,0 -230572014,"Just Cause 2",purchase,1.0,0 -8311704,"Half-Life 2 Episode Two",purchase,1.0,0 -8311704,"Half-Life 2 Episode Two",play,13.6,0 -8311704,"Left 4 Dead",purchase,1.0,0 -8311704,"Left 4 Dead",play,6.1,0 -8311704,"Portal",purchase,1.0,0 -8311704,"Portal",play,1.2,0 -8311704,"Call of Duty Modern Warfare 2",purchase,1.0,0 -8311704,"Call of Duty Modern Warfare 2",play,1.0,0 -8311704,"Fallout New Vegas",purchase,1.0,0 -8311704,"Fallout New Vegas",play,0.9,0 -8311704,"No More Room in Hell",purchase,1.0,0 -8311704,"No More Room in Hell",play,0.8,0 -8311704,"Call of Duty Black Ops",purchase,1.0,0 -8311704,"Call of Duty Black Ops",play,0.6,0 -8311704,"Half-Life",purchase,1.0,0 -8311704,"Half-Life",play,0.6,0 -8311704,"Left 4 Dead 2",purchase,1.0,0 -8311704,"Left 4 Dead 2",play,0.2,0 -8311704,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -8311704,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -8311704,"Counter-Strike",purchase,1.0,0 -8311704,"Counter-Strike Source",purchase,1.0,0 -8311704,"Day of Defeat",purchase,1.0,0 -8311704,"Deathmatch Classic",purchase,1.0,0 -8311704,"Half-Life 2",purchase,1.0,0 -8311704,"Half-Life 2 Deathmatch",purchase,1.0,0 -8311704,"Half-Life 2 Episode One",purchase,1.0,0 -8311704,"Half-Life 2 Lost Coast",purchase,1.0,0 -8311704,"Half-Life Blue Shift",purchase,1.0,0 -8311704,"Half-Life Opposing Force",purchase,1.0,0 -8311704,"Half-Life Deathmatch Source",purchase,1.0,0 -8311704,"RACE Caterham Expansion",purchase,1.0,0 -8311704,"Race The WTCC Game",purchase,1.0,0 -8311704,"Ricochet",purchase,1.0,0 -8311704,"Team Fortress Classic",purchase,1.0,0 -97883175,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -97883175,"The Witcher 2 Assassins of Kings Enhanced Edition",play,44.0,0 -97883175,"Stronghold 3",purchase,1.0,0 -97883175,"Stronghold 3",play,18.9,0 -97883175,"Besiege",purchase,1.0,0 -97883175,"Besiege",play,3.4,0 -298954577,"Team Fortress 2",purchase,1.0,0 -298954577,"Team Fortress 2",play,12.9,0 -235139665,"Unturned",purchase,1.0,0 -235139665,"Unturned",play,27.0,0 -235139665,"Heroes & Generals",purchase,1.0,0 -235139665,"Heroes & Generals",play,0.4,0 -235139665,"The Lord of the Rings Online",purchase,1.0,0 -748719,"Counter-Strike Global Offensive",purchase,1.0,0 -748719,"Counter-Strike Global Offensive",play,1329.0,0 -748719,"Sid Meier's Civilization V",purchase,1.0,0 -748719,"Sid Meier's Civilization V",play,67.0,0 -748719,"DayZ",purchase,1.0,0 -748719,"DayZ",play,40.0,0 -748719,"Counter-Strike",purchase,1.0,0 -748719,"Counter-Strike",play,13.6,0 -748719,"Dishonored",purchase,1.0,0 -748719,"Dishonored",play,9.2,0 -748719,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -748719,"Batman Arkham Asylum GOTY Edition",play,6.9,0 -748719,"Arma 2 Operation Arrowhead",purchase,1.0,0 -748719,"Arma 2 Operation Arrowhead",play,5.9,0 -748719,"Brothers in Arms Road to Hill 30",purchase,1.0,0 -748719,"Brothers in Arms Road to Hill 30",play,3.9,0 -748719,"Company of Heroes Tales of Valor",purchase,1.0,0 -748719,"Company of Heroes Tales of Valor",play,3.0,0 -748719,"Natural Selection 2",purchase,1.0,0 -748719,"Natural Selection 2",play,2.5,0 -748719,"Might & Magic Heroes VI",purchase,1.0,0 -748719,"Might & Magic Heroes VI",play,2.3,0 -748719,"Borderlands 2",purchase,1.0,0 -748719,"Borderlands 2",play,2.3,0 -748719,"Cabela's Dangerous Hunts 2013",purchase,1.0,0 -748719,"Cabela's Dangerous Hunts 2013",play,0.8,0 -748719,"Counter-Strike Source",purchase,1.0,0 -748719,"Counter-Strike Source",play,0.5,0 -748719,"Day of Defeat",purchase,1.0,0 -748719,"Day of Defeat",play,0.3,0 -748719,"Arma 2",purchase,1.0,0 -748719,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -748719,"Batman Arkham City GOTY",purchase,1.0,0 -748719,"Brothers in Arms Earned in Blood",purchase,1.0,0 -748719,"Brothers in Arms Hell's Highway",purchase,1.0,0 -748719,"Company of Heroes (New Steam Version)",purchase,1.0,0 -748719,"Deathmatch Classic",purchase,1.0,0 -748719,"Half-Life",purchase,1.0,0 -748719,"Half-Life 2",purchase,1.0,0 -748719,"Half-Life 2 Deathmatch",purchase,1.0,0 -748719,"Half-Life 2 Lost Coast",purchase,1.0,0 -748719,"Half-Life Blue Shift",purchase,1.0,0 -748719,"Half-Life Opposing Force",purchase,1.0,0 -748719,"Ricochet",purchase,1.0,0 -748719,"Team Fortress Classic",purchase,1.0,0 -196558392,"Clicker Heroes",purchase,1.0,0 -196558392,"Clicker Heroes",play,452.0,0 -196558392,"Brawlhalla",purchase,1.0,0 -196558392,"Brawlhalla",play,2.5,0 -196558392,"WAKFU",purchase,1.0,0 -196558392,"WAKFU",play,2.3,0 -196558392,"Brick-Force",purchase,1.0,0 -196558392,"Brick-Force",play,1.4,0 -196558392,"Unturned",purchase,1.0,0 -196558392,"Unturned",play,1.2,0 -196558392,"DC Universe Online",purchase,1.0,0 -196558392,"DC Universe Online",play,1.2,0 -196558392,"Block N Load",purchase,1.0,0 -196558392,"Block N Load",play,0.4,0 -82324393,"Grand Theft Auto IV",purchase,1.0,0 -82324393,"Grand Theft Auto IV",play,0.5,0 -179758802,"Dota 2",purchase,1.0,0 -179758802,"Dota 2",play,1391.0,0 -179758802,"Don't Starve Together Beta",purchase,1.0,0 -179758802,"Don't Starve Together Beta",play,4.5,0 -179758802,"FreeStyle2 Street Basketball",purchase,1.0,0 -113227222,"Dota 2",purchase,1.0,0 -113227222,"Dota 2",play,1009.0,0 -113227222,"Counter-Strike Global Offensive",purchase,1.0,0 -113227222,"Counter-Strike Global Offensive",play,510.0,0 -113227222,"Counter-Strike",purchase,1.0,0 -113227222,"Counter-Strike",play,203.0,0 -113227222,"Panzar",purchase,1.0,0 -113227222,"Panzar",play,37.0,0 -113227222,"Rust",purchase,1.0,0 -113227222,"Rust",play,34.0,0 -113227222,"PAYDAY 2",purchase,1.0,0 -113227222,"PAYDAY 2",play,32.0,0 -113227222,"Grand Theft Auto V",purchase,1.0,0 -113227222,"Grand Theft Auto V",play,21.0,0 -113227222,"Clicker Heroes",purchase,1.0,0 -113227222,"Clicker Heroes",play,9.2,0 -113227222,"SNOW",purchase,1.0,0 -113227222,"SNOW",play,8.0,0 -113227222,"BLOCKADE 3D",purchase,1.0,0 -113227222,"BLOCKADE 3D",play,4.5,0 -113227222,"Torchlight II",purchase,1.0,0 -113227222,"Torchlight II",play,4.0,0 -113227222,"Terraria",purchase,1.0,0 -113227222,"Terraria",play,2.5,0 -113227222,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -113227222,"Just Cause 2 Multiplayer Mod",play,1.8,0 -113227222,"Ragnarok Online 2",purchase,1.0,0 -113227222,"Ragnarok Online 2",play,0.9,0 -113227222,"AdVenture Capitalist",purchase,1.0,0 -113227222,"AdVenture Capitalist",play,0.9,0 -113227222,"Nosgoth",purchase,1.0,0 -113227222,"Nosgoth",play,0.8,0 -113227222,"My Lands",purchase,1.0,0 -113227222,"My Lands",play,0.4,0 -113227222,"Brick-Force",purchase,1.0,0 -113227222,"Brick-Force",play,0.1,0 -113227222,"Just Cause 2",purchase,1.0,0 -113227222,"Just Cause 2",play,0.1,0 -113227222,"Counter-Strike Condition Zero",purchase,1.0,0 -113227222,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -113227222,"RIFT",purchase,1.0,0 -190003864,"Dota 2",purchase,1.0,0 -190003864,"Dota 2",play,1299.0,0 -190003864,"Warframe",purchase,1.0,0 -218463646,"Dota 2",purchase,1.0,0 -218463646,"Dota 2",play,475.0,0 -218463646,"Grand Theft Auto V",purchase,1.0,0 -218463646,"Grand Theft Auto V",play,6.9,0 -212207315,"DayZ",purchase,1.0,0 -212207315,"DayZ",play,9.1,0 -202738708,"Grand Theft Auto V",purchase,1.0,0 -202738708,"Grand Theft Auto V",play,446.0,0 -202738708,"Call of Duty Advanced Warfare",purchase,1.0,0 -202738708,"Call of Duty Advanced Warfare",play,47.0,0 -202738708,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -202738708,"Call of Duty Advanced Warfare - Multiplayer",play,0.1,0 -104418870,"Sid Meier's Civilization V",purchase,1.0,0 -104418870,"Sid Meier's Civilization V",play,35.0,0 -104418870,"Deus Ex Invisible War",purchase,1.0,0 -104418870,"Deus Ex Invisible War",play,1.6,0 -104418870,"Deus Ex Game of the Year Edition",purchase,1.0,0 -104418870,"Deus Ex Game of the Year Edition",play,1.5,0 -236877694,"Dota 2",purchase,1.0,0 -236877694,"Dota 2",play,2.2,0 -213580459,"Dota 2",purchase,1.0,0 -213580459,"Dota 2",play,18.1,0 -213580459,"GunZ 2 The Second Duel",purchase,1.0,0 -213580459,"Ragnarok Online 2",purchase,1.0,0 -213580459,"War Thunder",purchase,1.0,0 -287330018,"The Amazing Spider-Man 2",purchase,1.0,0 -135554311,"Team Fortress 2",purchase,1.0,0 -135554311,"Team Fortress 2",play,404.0,0 -135554311,"Garry's Mod",purchase,1.0,0 -135554311,"Garry's Mod",play,133.0,0 -135554311,"Counter-Strike Global Offensive",purchase,1.0,0 -135554311,"Counter-Strike Global Offensive",play,106.0,0 -135554311,"Unturned",purchase,1.0,0 -135554311,"Unturned",play,11.9,0 -135554311,"Robocraft",purchase,1.0,0 -135554311,"Robocraft",play,6.1,0 -135554311,"Tactical Intervention",purchase,1.0,0 -135554311,"Tactical Intervention",play,1.2,0 -135554311,"Terraria",purchase,1.0,0 -135554311,"Terraria",play,0.7,0 -135554311,"Dota 2",purchase,1.0,0 -135554311,"Dota 2",play,0.5,0 -135554311,"Red Crucible Firestorm",purchase,1.0,0 -135554311,"Red Crucible Firestorm",play,0.4,0 -135554311,"Fallen Earth",purchase,1.0,0 -135554311,"Heroes & Generals",purchase,1.0,0 -135554311,"Warframe",purchase,1.0,0 -135554311,"War Thunder",purchase,1.0,0 -228261210,"H1Z1",purchase,1.0,0 -228261210,"H1Z1",play,14.4,0 -228261210,"H1Z1 Test Server",purchase,1.0,0 -228261210,"H1Z1 Test Server",play,2.5,0 -210112807,"Counter-Strike Global Offensive",purchase,1.0,0 -210112807,"Counter-Strike Global Offensive",play,586.0,0 -210112807,"Sid Meier's Starships",purchase,1.0,0 -210112807,"Sid Meier's Starships",play,0.7,0 -210112807,"Unturned",purchase,1.0,0 -210112807,"Unturned",play,0.2,0 -210112807,"Dungeonland",purchase,1.0,0 -210112807,"No More Room in Hell",purchase,1.0,0 -210112807,"PlanetSide 2",purchase,1.0,0 -210112807,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -210112807,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -113667989,"Dota 2",purchase,1.0,0 -113667989,"Dota 2",play,465.0,0 -113667989,"Archeblade",purchase,1.0,0 -113667989,"Counter-Strike Nexon Zombies",purchase,1.0,0 -113667989,"Dead Island Epidemic",purchase,1.0,0 -113667989,"Defiance",purchase,1.0,0 -113667989,"F.E.A.R. Online",purchase,1.0,0 -113667989,"Fallen Earth",purchase,1.0,0 -113667989,"La Tale",purchase,1.0,0 -113667989,"No More Room in Hell",purchase,1.0,0 -113667989,"Pox Nora",purchase,1.0,0 -113667989,"Sunrider Mask of Arcadius",purchase,1.0,0 -113667989,"Toribash",purchase,1.0,0 -117469505,"Team Fortress 2",purchase,1.0,0 -117469505,"Team Fortress 2",play,0.6,0 -117397132,"DC Universe Online",purchase,1.0,0 -117397132,"DC Universe Online",play,0.4,0 -71527252,"Dota 2",purchase,1.0,0 -71527252,"Dota 2",play,262.0,0 -71527252,"Rocksmith 2014",purchase,1.0,0 -71527252,"Rocksmith 2014",play,222.0,0 -71527252,"Movie Studio 13 Platinum - Steam Powered",purchase,1.0,0 -71527252,"Movie Studio 13 Platinum - Steam Powered",play,166.0,0 -71527252,"Terraria",purchase,1.0,0 -71527252,"Terraria",play,93.0,0 -71527252,"Fallout 4",purchase,1.0,0 -71527252,"Fallout 4",play,84.0,0 -71527252,"Action! - Gameplay Recording and Streaming",purchase,1.0,0 -71527252,"Action! - Gameplay Recording and Streaming",play,83.0,0 -71527252,"The Witcher 3 Wild Hunt",purchase,1.0,0 -71527252,"The Witcher 3 Wild Hunt",play,76.0,0 -71527252,"The Elder Scrolls Online Tamriel Unlimited",purchase,1.0,0 -71527252,"The Elder Scrolls Online Tamriel Unlimited",play,75.0,0 -71527252,"Endless Legend",purchase,1.0,0 -71527252,"Endless Legend",play,54.0,0 -71527252,"Runers",purchase,1.0,0 -71527252,"Runers",play,50.0,0 -71527252,"The Elder Scrolls V Skyrim",purchase,1.0,0 -71527252,"The Elder Scrolls V Skyrim",play,47.0,0 -71527252,"7 Days to Die",purchase,1.0,0 -71527252,"7 Days to Die",play,43.0,0 -71527252,"Magicite",purchase,1.0,0 -71527252,"Magicite",play,31.0,0 -71527252,"State of Decay",purchase,1.0,0 -71527252,"State of Decay",play,30.0,0 -71527252,"Crusader Kings II",purchase,1.0,0 -71527252,"Crusader Kings II",play,28.0,0 -71527252,"Sid Meier's Civilization V",purchase,1.0,0 -71527252,"Sid Meier's Civilization V",play,27.0,0 -71527252,"Crawl",purchase,1.0,0 -71527252,"Crawl",play,26.0,0 -71527252,"Risen 2 - Dark Waters",purchase,1.0,0 -71527252,"Risen 2 - Dark Waters",play,25.0,0 -71527252,"8BitBoy",purchase,1.0,0 -71527252,"8BitBoy",play,24.0,0 -71527252,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -71527252,"DARK SOULS II Scholar of the First Sin",play,22.0,0 -71527252,"Stranded Deep",purchase,1.0,0 -71527252,"Stranded Deep",play,22.0,0 -71527252,"Fallout New Vegas",purchase,1.0,0 -71527252,"Fallout New Vegas",play,20.0,0 -71527252,"FarSky",purchase,1.0,0 -71527252,"FarSky",play,18.5,0 -71527252,"Hero Siege",purchase,1.0,0 -71527252,"Hero Siege",play,18.1,0 -71527252,"The Binding of Isaac Rebirth",purchase,1.0,0 -71527252,"The Binding of Isaac Rebirth",play,17.5,0 -71527252,"Magicka",purchase,1.0,0 -71527252,"Magicka",play,15.6,0 -71527252,"Torchlight II",purchase,1.0,0 -71527252,"Torchlight II",play,14.1,0 -71527252,"SOMA",purchase,1.0,0 -71527252,"SOMA",play,13.4,0 -71527252,"Starbound",purchase,1.0,0 -71527252,"Starbound",play,13.3,0 -71527252,"TowerFall Ascension",purchase,1.0,0 -71527252,"TowerFall Ascension",play,11.6,0 -71527252,"Divine Divinity",purchase,1.0,0 -71527252,"Divine Divinity",play,10.3,0 -71527252,"Trine",purchase,1.0,0 -71527252,"Trine",play,10.1,0 -71527252,"Darkest Dungeon",purchase,1.0,0 -71527252,"Darkest Dungeon",play,10.0,0 -71527252,"Black Ink",purchase,1.0,0 -71527252,"Black Ink",play,8.0,0 -71527252,"Chivalry Medieval Warfare",purchase,1.0,0 -71527252,"Chivalry Medieval Warfare",play,8.0,0 -71527252,"Obscure",purchase,1.0,0 -71527252,"Obscure",play,7.9,0 -71527252,"Rampage Knights",purchase,1.0,0 -71527252,"Rampage Knights",play,7.7,0 -71527252,"Magicka 2",purchase,1.0,0 -71527252,"Magicka 2",play,7.5,0 -71527252,"Super Amazing Wagon Adventure",purchase,1.0,0 -71527252,"Super Amazing Wagon Adventure",play,7.2,0 -71527252,"Shadow Warrior",purchase,1.0,0 -71527252,"Shadow Warrior",play,6.8,0 -71527252,"Grim Dawn",purchase,1.0,0 -71527252,"Grim Dawn",play,6.8,0 -71527252,"SteamWorld Dig",purchase,1.0,0 -71527252,"SteamWorld Dig",play,6.1,0 -71527252,"Hammerwatch",purchase,1.0,0 -71527252,"Hammerwatch",play,5.8,0 -71527252,"Arx Fatalis",purchase,1.0,0 -71527252,"Arx Fatalis",play,5.8,0 -71527252,"Fancy Skulls",purchase,1.0,0 -71527252,"Fancy Skulls",play,5.6,0 -71527252,"Don't Starve Together Beta",purchase,1.0,0 -71527252,"Don't Starve Together Beta",play,5.0,0 -71527252,"Savage Lands",purchase,1.0,0 -71527252,"Savage Lands",play,5.0,0 -71527252,"Risk of Rain",purchase,1.0,0 -71527252,"Risk of Rain",play,4.7,0 -71527252,"Vagante",purchase,1.0,0 -71527252,"Vagante",play,4.5,0 -71527252,"Undertale",purchase,1.0,0 -71527252,"Undertale",play,4.2,0 -71527252,"Titan Souls",purchase,1.0,0 -71527252,"Titan Souls",play,4.1,0 -71527252,"Warface",purchase,1.0,0 -71527252,"Warface",play,4.0,0 -71527252,"Nuclear Throne",purchase,1.0,0 -71527252,"Nuclear Throne",play,3.9,0 -71527252,"Edge of Space",purchase,1.0,0 -71527252,"Edge of Space",play,3.6,0 -71527252,"Call of Cthulhu Dark Corners of the Earth",purchase,1.0,0 -71527252,"Call of Cthulhu Dark Corners of the Earth",play,3.5,0 -71527252,"Deadbreed",purchase,1.0,0 -71527252,"Deadbreed",play,2.8,0 -71527252,"ORION Prelude",purchase,1.0,0 -71527252,"ORION Prelude",play,2.7,0 -71527252,"Nidhogg",purchase,1.0,0 -71527252,"Nidhogg",play,2.2,0 -71527252,"Tomb Raider",purchase,1.0,0 -71527252,"Tomb Raider",play,2.0,0 -71527252,"Rivals of Aether",purchase,1.0,0 -71527252,"Rivals of Aether",play,1.5,0 -71527252,"Ziggurat",purchase,1.0,0 -71527252,"Ziggurat",play,1.4,0 -71527252,"The Elder Scrolls III Morrowind",purchase,1.0,0 -71527252,"The Elder Scrolls III Morrowind",play,1.4,0 -71527252,"A Valley Without Wind",purchase,1.0,0 -71527252,"A Valley Without Wind",play,1.2,0 -71527252,"Don't Starve",purchase,1.0,0 -71527252,"Don't Starve",play,1.1,0 -71527252,"Daylight",purchase,1.0,0 -71527252,"Daylight",play,1.0,0 -71527252,"Crypt of the NecroDancer",purchase,1.0,0 -71527252,"Crypt of the NecroDancer",play,1.0,0 -71527252,"Obscure 2",purchase,1.0,0 -71527252,"Obscure 2",play,1.0,0 -71527252,"Grand Class Melee 2",purchase,1.0,0 -71527252,"Grand Class Melee 2",play,0.7,0 -71527252,"Unturned",purchase,1.0,0 -71527252,"Unturned",play,0.7,0 -71527252,"The Forest",purchase,1.0,0 -71527252,"The Forest",play,0.7,0 -71527252,"Garry's Mod",purchase,1.0,0 -71527252,"Garry's Mod",play,0.5,0 -71527252,"E.Y.E Divine Cybermancy",purchase,1.0,0 -71527252,"E.Y.E Divine Cybermancy",play,0.5,0 -71527252,"Might & Magic X - Legacy ",purchase,1.0,0 -71527252,"Might & Magic X - Legacy ",play,0.4,0 -71527252,"ENKI",purchase,1.0,0 -71527252,"ENKI",play,0.3,0 -71527252,"Blood Omen 2 Legacy of Kain",purchase,1.0,0 -71527252,"Blood Omen 2 Legacy of Kain",play,0.3,0 -71527252,"Tabletop Simulator",purchase,1.0,0 -71527252,"Tabletop Simulator",play,0.2,0 -71527252,"RPG Maker VX Ace",purchase,1.0,0 -71527252,"RPG Maker VX Ace",play,0.2,0 -71527252,"A Valley Without Wind 2",purchase,1.0,0 -71527252,"A Valley Without Wind 2",play,0.1,0 -71527252,"Game Character Hub",purchase,1.0,0 -71527252,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -71527252,"bit Dungeon II",purchase,1.0,0 -71527252,"Dungeon Nightmares II The Memory",purchase,1.0,0 -71527252,"Deus Ex Game of the Year Edition",purchase,1.0,0 -71527252,"Tomb Raider I",purchase,1.0,0 -71527252,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -71527252,"Thief Gold",purchase,1.0,0 -71527252,"Battlestations Midway",purchase,1.0,0 -71527252,"Battlestations Pacific",purchase,1.0,0 -71527252,"Deadbreed Undertaker Beta Pack",purchase,1.0,0 -71527252,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -71527252,"Deus Ex Invisible War",purchase,1.0,0 -71527252,"Deus Ex The Fall",purchase,1.0,0 -71527252,"Don't Starve Reign of Giants",purchase,1.0,0 -71527252,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -71527252,"Fallout New Vegas Dead Money",purchase,1.0,0 -71527252,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -71527252,"Five Nights at Freddy's 4",purchase,1.0,0 -71527252,"Hero Siege - The Karp of Doom (Digital Collector's Edition)",purchase,1.0,0 -71527252,"Hitman 2 Silent Assassin",purchase,1.0,0 -71527252,"Hitman Absolution",purchase,1.0,0 -71527252,"Hitman Blood Money",purchase,1.0,0 -71527252,"Hitman Codename 47",purchase,1.0,0 -71527252,"Hitman Contracts",purchase,1.0,0 -71527252,"Hitman Sniper Challenge",purchase,1.0,0 -71527252,"Just Cause",purchase,1.0,0 -71527252,"Just Cause 2",purchase,1.0,0 -71527252,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -71527252,"Kane & Lynch Dead Men",purchase,1.0,0 -71527252,"Lara Croft and the Guardian of Light",purchase,1.0,0 -71527252,"Legacy of Kain Defiance",purchase,1.0,0 -71527252,"Legacy of Kain Soul Reaver",purchase,1.0,0 -71527252,"Legacy of Kain Soul Reaver 2",purchase,1.0,0 -71527252,"Monstrum ",purchase,1.0,0 -71527252,"Nosgoth",purchase,1.0,0 -71527252,"Patch testing for Chivalry",purchase,1.0,0 -71527252,"Resident Evil / biohazard HD REMASTER",purchase,1.0,0 -71527252,"Rune Classic",purchase,1.0,0 -71527252,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -71527252,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -71527252,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -71527252,"Starbound - Unstable",purchase,1.0,0 -71527252,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -71527252,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -71527252,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -71527252,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -71527252,"The Mighty Quest For Epic Loot",purchase,1.0,0 -71527252,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -71527252,"The Witcher Enhanced Edition",purchase,1.0,0 -71527252,"Thief",purchase,1.0,0 -71527252,"Thief - Ghost",purchase,1.0,0 -71527252,"Thief - Opportunist",purchase,1.0,0 -71527252,"Thief - Predator",purchase,1.0,0 -71527252,"Thief - The Bank Heist",purchase,1.0,0 -71527252,"Thief 2",purchase,1.0,0 -71527252,"Thief Deadly Shadows",purchase,1.0,0 -71527252,"Titan Quest",purchase,1.0,0 -71527252,"Titan Quest Immortal Throne",purchase,1.0,0 -71527252,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -71527252,"Tomb Raider Anniversary",purchase,1.0,0 -71527252,"Tomb Raider Chronicles",purchase,1.0,0 -71527252,"Tomb Raider Legend",purchase,1.0,0 -71527252,"Tomb Raider The Last Revelation",purchase,1.0,0 -71527252,"Tomb Raider Underworld",purchase,1.0,0 -71527252,"Tomb Raider II",purchase,1.0,0 -71527252,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -154611788,"Dota 2",purchase,1.0,0 -154611788,"Dota 2",play,1.6,0 -50810886,"Left 4 Dead",purchase,1.0,0 -205758042,"America's Army Proving Grounds",purchase,1.0,0 -205758042,"America's Army Proving Grounds",play,0.3,0 -205758042,"PlanetSide 2",purchase,1.0,0 -205758042,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -205758042,"Counter-Strike Nexon Zombies",purchase,1.0,0 -205758042,"Heroes & Generals",purchase,1.0,0 -205758042,"Loadout",purchase,1.0,0 -205758042,"No More Room in Hell",purchase,1.0,0 -205758042,"Tactical Intervention",purchase,1.0,0 -205758042,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -184003742,"theHunter",purchase,1.0,0 -184003742,"theHunter",play,0.3,0 -184003742,"Heroes & Generals",purchase,1.0,0 -184003742,"Metro 2033",purchase,1.0,0 -251111748,"Dota 2",purchase,1.0,0 -251111748,"Dota 2",play,31.0,0 -200749959,"Dota 2",purchase,1.0,0 -200749959,"Dota 2",play,2.2,0 -204750078,"Dota 2",purchase,1.0,0 -204750078,"Dota 2",play,1.8,0 -70167393,"Dota 2",purchase,1.0,0 -70167393,"Dota 2",play,220.0,0 -204480696,"Banished",purchase,1.0,0 -204480696,"Banished",play,157.0,0 -204480696,"Don't Starve",purchase,1.0,0 -204480696,"Don't Starve",play,120.0,0 -204480696,"Don't Starve Together Beta",purchase,1.0,0 -204480696,"Don't Starve Together Beta",play,26.0,0 -204480696,"Terraria",purchase,1.0,0 -204480696,"Terraria",play,14.3,0 -204480696,"Viscera Cleanup Detail",purchase,1.0,0 -204480696,"Viscera Cleanup Detail",play,9.7,0 -204480696,"BioShock Infinite",purchase,1.0,0 -204480696,"BioShock Infinite",play,8.9,0 -204480696,"Amnesia A Machine for Pigs",purchase,1.0,0 -204480696,"Amnesia A Machine for Pigs",play,1.4,0 -204480696,"BioShock",purchase,1.0,0 -204480696,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -204480696,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -58618147,"ARK Survival Evolved",purchase,1.0,0 -58618147,"ARK Survival Evolved",play,524.0,0 -58618147,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -58618147,"Warhammer 40,000 Dawn of War II Retribution",play,400.0,0 -58618147,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -58618147,"Warhammer 40,000 Dawn of War II",play,96.0,0 -58618147,"7 Days to Die",purchase,1.0,0 -58618147,"7 Days to Die",play,54.0,0 -58618147,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -58618147,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,44.0,0 -58618147,"Dota 2",purchase,1.0,0 -58618147,"Dota 2",play,34.0,0 -58618147,"Star Wars Empire at War Gold",purchase,1.0,0 -58618147,"Star Wars Empire at War Gold",play,23.0,0 -58618147,"Tabletop Simulator",purchase,1.0,0 -58618147,"Tabletop Simulator",play,5.9,0 -58618147,"Space Engineers",purchase,1.0,0 -58618147,"Space Engineers",play,2.0,0 -58618147,"Saints Row IV",purchase,1.0,0 -58618147,"Saints Row IV",play,1.8,0 -58618147,"Magicka Wizard Wars",purchase,1.0,0 -58618147,"Magicka Wizard Wars",play,1.0,0 -58618147,"Half-Life 2",purchase,1.0,0 -58618147,"Half-Life 2",play,0.7,0 -58618147,"Echo of Soul",purchase,1.0,0 -58618147,"PAYDAY The Heist",purchase,1.0,0 -58618147,"Portal",purchase,1.0,0 -58618147,"Portal 2",purchase,1.0,0 -183361928,"Dota 2",purchase,1.0,0 -183361928,"Dota 2",play,0.7,0 -183440094,"Dota 2",purchase,1.0,0 -183440094,"Dota 2",play,97.0,0 -183440094,"Aura Kingdom",purchase,1.0,0 -10868970,"Half-Life 2",purchase,1.0,0 -10868970,"Half-Life 2",play,2.9,0 -10868970,"Counter-Strike Source",purchase,1.0,0 -10868970,"Half-Life 2 Deathmatch",purchase,1.0,0 -10868970,"Half-Life 2 Lost Coast",purchase,1.0,0 -42935819,"Football Manager 2014",purchase,1.0,0 -42935819,"Football Manager 2014",play,2279.0,0 -42935819,"Football Manager 2012",purchase,1.0,0 -42935819,"Football Manager 2012",play,1710.0,0 -42935819,"Football Manager 2011",purchase,1.0,0 -42935819,"Football Manager 2011",play,1656.0,0 -42935819,"Football Manager 2015",purchase,1.0,0 -42935819,"Football Manager 2015",play,1435.0,0 -42935819,"Football Manager 2013",purchase,1.0,0 -42935819,"Football Manager 2013",play,1090.0,0 -42935819,"Banished",purchase,1.0,0 -42935819,"Banished",play,2.4,0 -42935819,"Football Manager 2009",purchase,1.0,0 -42935819,"Football Manager 2009",play,0.5,0 -156079601,"Mafia II",purchase,1.0,0 -156079601,"Mafia II",play,6.7,0 -271646756,"Team Fortress 2",purchase,1.0,0 -271646756,"Team Fortress 2",play,0.2,0 -171400391,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -171400391,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.8,0 -171400391,"Call of Duty Modern Warfare 2",purchase,1.0,0 -95316727,"Zombie Shooter 2",purchase,1.0,0 -73231305,"Half-Life 2",purchase,1.0,0 -73231305,"Half-Life 2",play,21.0,0 -73231305,"Half-Life 2 Episode Two",purchase,1.0,0 -73231305,"Half-Life 2 Episode Two",play,17.0,0 -73231305,"Half-Life 2 Episode One",purchase,1.0,0 -73231305,"Half-Life 2 Episode One",play,9.7,0 -73231305,"Half-Life 2 Lost Coast",purchase,1.0,0 -73231305,"Half-Life 2 Lost Coast",play,1.2,0 -73231305,"Portal",purchase,1.0,0 -256563201,"Counter-Strike Global Offensive",purchase,1.0,0 -256563201,"Counter-Strike Global Offensive",play,50.0,0 -256563201,"Unturned",purchase,1.0,0 -243321952,"You Need A Budget 4 (YNAB)",purchase,1.0,0 -243321952,"You Need A Budget 4 (YNAB)",play,2.4,0 -193289015,"Dota 2",purchase,1.0,0 -193289015,"Dota 2",play,293.0,0 -193289015,"Strife",purchase,1.0,0 -193289015,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -168703116,"DC Universe Online",purchase,1.0,0 -168703116,"DC Universe Online",play,8.1,0 -168703116,"Dota 2",purchase,1.0,0 -168703116,"Dota 2",play,0.4,0 -156460514,"XCOM Enemy Unknown",purchase,1.0,0 -156460514,"XCOM Enemy Unknown",play,65.0,0 -156460514,"Sid Meier's Civilization V",purchase,1.0,0 -156460514,"Sid Meier's Civilization V",play,3.6,0 -156460514,"Running Shadow",purchase,1.0,0 -98194674,"Shadow Harvest Phantom Ops",purchase,1.0,0 -103804924,"Dota 2",purchase,1.0,0 -103804924,"Dota 2",play,3704.0,0 -103804924,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -103804924,"Sid Meier's Civilization Beyond Earth",play,31.0,0 -103804924,"DayZ",purchase,1.0,0 -103804924,"DayZ",play,16.1,0 -103804924,"Prison Architect",purchase,1.0,0 -103804924,"Prison Architect",play,11.1,0 -103804924,"Defense Grid The Awakening",purchase,1.0,0 -103804924,"Defense Grid The Awakening",play,3.8,0 -103804924,"Far Cry 3",purchase,1.0,0 -103804924,"Far Cry 3",play,2.5,0 -103804924,"Team Fortress 2",purchase,1.0,0 -103804924,"Team Fortress 2",play,2.0,0 -103804924,"Crysis 2 Maximum Edition",purchase,1.0,0 -103804924,"Crysis 2 Maximum Edition",play,1.0,0 -103804924,"Magicka Wizard Wars",purchase,1.0,0 -103804924,"Magicka Wizard Wars",play,0.7,0 -103804924,"Sniper Ghost Warrior 2",purchase,1.0,0 -103804924,"Sniper Ghost Warrior 2",play,0.3,0 -103804924,"Metro 2033 Redux",purchase,1.0,0 -103804924,"Cry of Fear",purchase,1.0,0 -103804924,"Defense Grid Containment DLC",purchase,1.0,0 -103804924,"Defense Grid Resurgence Map Pack 1",purchase,1.0,0 -103804924,"Defense Grid Resurgence Map Pack 2 ",purchase,1.0,0 -103804924,"Defense Grid Resurgence Map Pack 3",purchase,1.0,0 -103804924,"Defense Grid Resurgence Map Pack 4",purchase,1.0,0 -103804924,"Metro Last Light Redux",purchase,1.0,0 -103804924,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -200194583,"No More Room in Hell",purchase,1.0,0 -200194583,"No More Room in Hell",play,0.5,0 -156493428,"Counter-Strike Source",purchase,1.0,0 -156493428,"Counter-Strike Source",play,3.5,0 -200243546,"Dota 2",purchase,1.0,0 -200243546,"Dota 2",play,0.7,0 -200243546,"Loadout",purchase,1.0,0 -145867654,"Dota 2",purchase,1.0,0 -145867654,"Dota 2",play,283.0,0 -145867654,"Dead Island",purchase,1.0,0 -145867654,"Dead Island",play,17.5,0 -145867654,"Dead Island Riptide",purchase,1.0,0 -170172944,"The Elder Scrolls V Skyrim",purchase,1.0,0 -170172944,"The Elder Scrolls V Skyrim",play,33.0,0 -170172944,"Team Fortress 2",purchase,1.0,0 -170172944,"Team Fortress 2",play,26.0,0 -170172944,"RIFT",purchase,1.0,0 -170172944,"RIFT",play,8.8,0 -170172944,"Terraria",purchase,1.0,0 -170172944,"Terraria",play,8.5,0 -170172944,"Garry's Mod",purchase,1.0,0 -170172944,"Garry's Mod",play,8.2,0 -170172944,"DayZ",purchase,1.0,0 -170172944,"DayZ",play,4.6,0 -170172944,"The Lord of the Rings Online",purchase,1.0,0 -170172944,"The Lord of the Rings Online",play,4.1,0 -170172944,"Borderlands 2",purchase,1.0,0 -170172944,"Borderlands 2",play,4.1,0 -170172944,"The Forest",purchase,1.0,0 -170172944,"The Forest",play,2.3,0 -170172944,"Echo of Soul",purchase,1.0,0 -170172944,"Echo of Soul",play,2.0,0 -170172944,"Warframe",purchase,1.0,0 -170172944,"Warframe",play,1.2,0 -170172944,"Greyfox",purchase,1.0,0 -170172944,"Greyfox",play,1.0,0 -170172944,"TERA",purchase,1.0,0 -170172944,"TERA",play,0.8,0 -170172944,"Gotham City Impostors Free To Play",purchase,1.0,0 -170172944,"Gotham City Impostors Free To Play",play,0.8,0 -170172944,"Elsword",purchase,1.0,0 -170172944,"Elsword",play,0.4,0 -170172944,"Grand Theft Auto San Andreas",purchase,1.0,0 -170172944,"Grand Theft Auto San Andreas",play,0.4,0 -170172944,"Defiance",purchase,1.0,0 -170172944,"Defiance",play,0.4,0 -170172944,"Castle Crashers",purchase,1.0,0 -170172944,"Castle Crashers",play,0.4,0 -170172944,"Fallout 3",purchase,1.0,0 -170172944,"Star Wars Knights of the Old Republic",purchase,1.0,0 -170172944,"Castle Crashers - Blacksmith Pack",purchase,1.0,0 -170172944,"Castle Crashers - Pink Knight Pack",purchase,1.0,0 -170172944,"Destiny Warriors",purchase,1.0,0 -170172944,"Far Cry 2",purchase,1.0,0 -170172944,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -170172944,"Grand Theft Auto San Andreas",purchase,1.0,0 -170172944,"Legend of Mysteria",purchase,1.0,0 -170172944,"Secret Of Magia",purchase,1.0,0 -109446355,"Dota 2",purchase,1.0,0 -109446355,"Dota 2",play,900.0,0 -136804252,"Dota 2",purchase,1.0,0 -136804252,"Dota 2",play,664.0,0 -129466241,"Dead Island Riptide",purchase,1.0,0 -129466241,"Dead Island Riptide",play,3.1,0 -129466241,"Robocraft",purchase,1.0,0 -160373639,"Team Fortress 2",purchase,1.0,0 -160373639,"Team Fortress 2",play,56.0,0 -160373639,"Sniper Elite V2",purchase,1.0,0 -160373639,"Sniper Elite V2",play,9.6,0 -160373639,"TERA",purchase,1.0,0 -176271982,"Sniper Ghost Warrior 2",purchase,1.0,0 -176271982,"Sniper Ghost Warrior 2",play,0.3,0 -176271982,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -176271982,"Sniper Ghost Warrior 2 World Hunter Pack",purchase,1.0,0 -61541943,"Counter-Strike Source",purchase,1.0,0 -61541943,"Counter-Strike Source",play,5.1,0 -61541943,"Garry's Mod",purchase,1.0,0 -61541943,"Garry's Mod",play,2.1,0 -297699756,"Counter-Strike Global Offensive",purchase,1.0,0 -297699756,"Counter-Strike Global Offensive",play,127.0,0 -297699756,"Bob Was Hungry",purchase,1.0,0 -297699756,"Bob Was Hungry",play,1.9,0 -297699756,"Sonic Generations",purchase,1.0,0 -297699756,"Sonic Generations",play,1.6,0 -8763960,"Counter-Strike Condition Zero",purchase,1.0,0 -8763960,"Counter-Strike Condition Zero",play,613.0,0 -8763960,"Counter-Strike",purchase,1.0,0 -8763960,"Counter-Strike",play,6.3,0 -8763960,"Counter-Strike Global Offensive",purchase,1.0,0 -8763960,"Counter-Strike Global Offensive",play,1.4,0 -8763960,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -8763960,"Counter-Strike Condition Zero Deleted Scenes",play,1.2,0 -105644511,"Sid Meier's Civilization V",purchase,1.0,0 -105644511,"Sid Meier's Civilization V",play,27.0,0 -197302530,"Dota 2",purchase,1.0,0 -197302530,"Dota 2",play,467.0,0 -197302530,"Counter-Strike Global Offensive",purchase,1.0,0 -197302530,"Counter-Strike Global Offensive",play,327.0,0 -197302530,"Rocket League",purchase,1.0,0 -197302530,"Rocket League",play,42.0,0 -197302530,"Borderlands 2",purchase,1.0,0 -197302530,"Borderlands 2",play,35.0,0 -197302530,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -197302530,"Burnout Paradise The Ultimate Box",play,30.0,0 -197302530,"Left 4 Dead 2",purchase,1.0,0 -197302530,"Left 4 Dead 2",play,5.6,0 -197302530,"Unreal Tournament 2004",purchase,1.0,0 -197302530,"Unreal Tournament 2004",play,2.0,0 -197302530,"Counter-Strike",purchase,1.0,0 -197302530,"Counter-Strike",play,1.8,0 -197302530,"PAYDAY 2",purchase,1.0,0 -197302530,"PAYDAY 2",play,1.8,0 -197302530,"Borderlands 2 RU",purchase,1.0,0 -197302530,"Borderlands 2 RU",play,0.7,0 -197302530,"Counter-Strike Condition Zero",purchase,1.0,0 -197302530,"Counter-Strike Condition Zero",play,0.2,0 -197302530,"Amnesia The Dark Descent",purchase,1.0,0 -197302530,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -197302530,"Counter-Strike Source",purchase,1.0,0 -251440763,"Wolfenstein The New Order German Edition",purchase,1.0,0 -251440763,"Wolfenstein The New Order German Edition",play,31.0,0 -251440763,"Rocket League",purchase,1.0,0 -251440763,"Rocket League",play,1.7,0 -251440763,"Company of Heroes (New Steam Version)",purchase,1.0,0 -251440763,"Company of Heroes (New Steam Version)",play,0.1,0 -251440763,"Company of Heroes",purchase,1.0,0 -139187216,"Dota 2",purchase,1.0,0 -139187216,"Dota 2",play,170.0,0 -139187216,"Serious Sam HD The Second Encounter",purchase,1.0,0 -139187216,"Serious Sam HD The Second Encounter",play,0.6,0 -146834586,"Dota 2",purchase,1.0,0 -146834586,"Dota 2",play,1.0,0 -79017735,"Counter-Strike Global Offensive",purchase,1.0,0 -79017735,"Counter-Strike Global Offensive",play,509.0,0 -79017735,"Grand Theft Auto V",purchase,1.0,0 -79017735,"Grand Theft Auto V",play,97.0,0 -79017735,"AdVenture Capitalist",purchase,1.0,0 -79017735,"AdVenture Capitalist",play,55.0,0 -79017735,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -79017735,"Call of Duty Advanced Warfare - Multiplayer",play,34.0,0 -79017735,"FINAL FANTASY XIV A Realm Reborn",purchase,1.0,0 -79017735,"FINAL FANTASY XIV A Realm Reborn",play,34.0,0 -79017735,"Elite Dangerous",purchase,1.0,0 -79017735,"Elite Dangerous",play,13.2,0 -79017735,"Rocket League",purchase,1.0,0 -79017735,"Rocket League",play,7.9,0 -79017735,"War Thunder",purchase,1.0,0 -79017735,"War Thunder",play,6.0,0 -79017735,"DARK SOULS II",purchase,1.0,0 -79017735,"DARK SOULS II",play,4.5,0 -79017735,"DayZ",purchase,1.0,0 -79017735,"DayZ",play,3.9,0 -79017735,"Just Cause 2",purchase,1.0,0 -79017735,"Just Cause 2",play,2.5,0 -79017735,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -79017735,"Just Cause 2 Multiplayer Mod",play,1.2,0 -79017735,"Fishing Planet",purchase,1.0,0 -79017735,"Fishing Planet",play,0.9,0 -79017735,"Warframe",purchase,1.0,0 -79017735,"Warframe",play,0.8,0 -79017735,"Team Fortress 2",purchase,1.0,0 -79017735,"Team Fortress 2",play,0.7,0 -79017735,"Dirty Bomb",purchase,1.0,0 -79017735,"Dirty Bomb",play,0.4,0 -79017735,"Dota 2",purchase,1.0,0 -79017735,"Dota 2",play,0.3,0 -79017735,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -79017735,"Call of Duty Black Ops II - Multiplayer",play,0.2,0 -79017735,"Call of Duty Advanced Warfare",purchase,1.0,0 -79017735,"Call of Duty Advanced Warfare",play,0.2,0 -79017735,"EVGA PrecisionX 16",purchase,1.0,0 -79017735,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -79017735,"Call of Duty Black Ops II",purchase,1.0,0 -79017735,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -79017735,"FINAL FANTASY XIV A Realm Reborn (NA version)",purchase,1.0,0 -79017735,"PlanetSide 2",purchase,1.0,0 -244485884,"Path of Exile",purchase,1.0,0 -244485884,"Path of Exile",play,17.8,0 -244485884,"No More Room in Hell",purchase,1.0,0 -244485884,"No More Room in Hell",play,1.0,0 -244485884,"Heroes & Generals",purchase,1.0,0 -244485884,"The Lord of the Rings Online",purchase,1.0,0 -244485884,"Divine Souls",purchase,1.0,0 -243767019,"Dota 2",purchase,1.0,0 -243767019,"Dota 2",play,2.6,0 -59536273,"Dota 2",purchase,1.0,0 -59536273,"Dota 2",play,2412.0,0 -59536273,"Counter-Strike",purchase,1.0,0 -59536273,"Counter-Strike",play,369.0,0 -59536273,"Counter-Strike Source",purchase,1.0,0 -59536273,"Counter-Strike Source",play,265.0,0 -59536273,"Counter-Strike Global Offensive",purchase,1.0,0 -59536273,"Counter-Strike Global Offensive",play,32.0,0 -59536273,"Don't Starve",purchase,1.0,0 -59536273,"Don't Starve",play,27.0,0 -59536273,"Portal 2",purchase,1.0,0 -59536273,"Portal 2",play,22.0,0 -59536273,"Ricochet",purchase,1.0,0 -59536273,"Ricochet",play,13.6,0 -59536273,"Far Cry 3",purchase,1.0,0 -59536273,"Far Cry 3",play,9.9,0 -59536273,"Saints Row The Third",purchase,1.0,0 -59536273,"Saints Row The Third",play,9.4,0 -59536273,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -59536273,"Counter-Strike Condition Zero Deleted Scenes",play,9.2,0 -59536273,"Ace of Spades",purchase,1.0,0 -59536273,"Ace of Spades",play,7.9,0 -59536273,"Left 4 Dead",purchase,1.0,0 -59536273,"Left 4 Dead",play,7.6,0 -59536273,"Left 4 Dead 2",purchase,1.0,0 -59536273,"Left 4 Dead 2",play,6.6,0 -59536273,"Far Cry 2",purchase,1.0,0 -59536273,"Far Cry 2",play,4.8,0 -59536273,"Don't Starve Together Beta",purchase,1.0,0 -59536273,"Don't Starve Together Beta",play,4.5,0 -59536273,"Team Fortress 2",purchase,1.0,0 -59536273,"Team Fortress 2",play,4.4,0 -59536273,"Grand Theft Auto IV",purchase,1.0,0 -59536273,"Grand Theft Auto IV",play,4.3,0 -59536273,"Counter-Strike Condition Zero",purchase,1.0,0 -59536273,"Counter-Strike Condition Zero",play,3.9,0 -59536273,"DiRT 2",purchase,1.0,0 -59536273,"DiRT 2",play,3.7,0 -59536273,"Garry's Mod",purchase,1.0,0 -59536273,"Garry's Mod",play,2.0,0 -59536273,"Max Payne 3",purchase,1.0,0 -59536273,"Max Payne 3",play,1.7,0 -59536273,"Free to Play",purchase,1.0,0 -59536273,"Free to Play",play,1.5,0 -59536273,"DiRT Showdown",purchase,1.0,0 -59536273,"DiRT Showdown",play,1.4,0 -59536273,"GRID",purchase,1.0,0 -59536273,"GRID",play,0.9,0 -59536273,"Bully Scholarship Edition",purchase,1.0,0 -59536273,"Bully Scholarship Edition",play,0.9,0 -59536273,"Portal",purchase,1.0,0 -59536273,"Portal",play,0.7,0 -59536273,"Robocraft",purchase,1.0,0 -59536273,"Robocraft",play,0.6,0 -59536273,"DiRT 3",purchase,1.0,0 -59536273,"DiRT 3",play,0.4,0 -59536273,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -59536273,"Grand Theft Auto Episodes from Liberty City",play,0.4,0 -59536273,"Day of Defeat",purchase,1.0,0 -59536273,"Day of Defeat",play,0.3,0 -59536273,"Deathmatch Classic",purchase,1.0,0 -59536273,"DiRT 3 Complete Edition",purchase,1.0,0 -59536273,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -59536273,"Max Payne 3 Season Pass",purchase,1.0,0 -59536273,"Strife",purchase,1.0,0 -70686116,"Dota 2",purchase,1.0,0 -70686116,"Dota 2",play,1110.0,0 -70686116,"Sid Meier's Civilization V",purchase,1.0,0 -70686116,"Sid Meier's Civilization V",play,109.0,0 -70686116,"Blacklight Retribution",purchase,1.0,0 -70686116,"Counter-Strike Nexon Zombies",purchase,1.0,0 -70686116,"Loadout",purchase,1.0,0 -70686116,"Neverwinter",purchase,1.0,0 -70686116,"Path of Exile",purchase,1.0,0 -70686116,"Quake Live",purchase,1.0,0 -70686116,"Warframe",purchase,1.0,0 -88921433,"Counter-Strike Global Offensive",purchase,1.0,0 -88921433,"Counter-Strike Global Offensive",play,550.0,0 -88921433,"Portal",purchase,1.0,0 -88921433,"Portal",play,11.6,0 -88921433,"Portal 2",purchase,1.0,0 -88921433,"Portal 2",play,11.5,0 -88921433,"Grand Theft Auto IV",purchase,1.0,0 -88921433,"Grand Theft Auto IV",play,8.5,0 -88921433,"Half-Life 2 Episode One",purchase,1.0,0 -88921433,"Half-Life 2 Episode One",play,3.7,0 -88921433,"Mass Effect",purchase,1.0,0 -88921433,"Mass Effect",play,1.6,0 -88921433,"Half-Life 2 Episode Two",purchase,1.0,0 -88921433,"Half-Life 2 Deathmatch",purchase,1.0,0 -88921433,"Half-Life 2 Lost Coast",purchase,1.0,0 -88921433,"Half-Life Deathmatch Source",purchase,1.0,0 -287264958,"Counter-Strike Global Offensive",purchase,1.0,0 -287264958,"Counter-Strike Global Offensive",play,23.0,0 -287264958,"WARMODE",purchase,1.0,0 -287264958,"WARMODE",play,13.5,0 -287264958,"The Escapists",purchase,1.0,0 -287264958,"The Escapists",play,4.0,0 -287264958,"Block N Load",purchase,1.0,0 -287264958,"Block N Load",play,2.7,0 -287264958,"Dirty Bomb",purchase,1.0,0 -287264958,"Dirty Bomb",play,1.8,0 -287264958,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -287264958,"Tom Clancy's Ghost Recon Phantoms - NA",play,1.4,0 -287264958,"SMITE",purchase,1.0,0 -287264958,"SMITE",play,1.3,0 -287264958,"Dota 2",purchase,1.0,0 -287264958,"Dota 2",play,1.0,0 -287264958,"Unturned",purchase,1.0,0 -287264958,"Unturned",play,0.3,0 -287264958,"Realm of the Mad God",purchase,1.0,0 -287264958,"America's Army Proving Grounds",purchase,1.0,0 -287264958,"Gotham City Impostors Free To Play",purchase,1.0,0 -287264958,"Warface",purchase,1.0,0 -287264958,"Warframe",purchase,1.0,0 -45957399,"Counter-Strike",purchase,1.0,0 -45957399,"Counter-Strike",play,25.0,0 -45957399,"Left 4 Dead 2",purchase,1.0,0 -45957399,"Left 4 Dead 2",play,17.3,0 -45957399,"Counter-Strike Condition Zero",purchase,1.0,0 -45957399,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -74966682,"Half-Life 2",purchase,1.0,0 -74966682,"Half-Life 2",play,1.2,0 -239785586,"Dota 2",purchase,1.0,0 -239785586,"Dota 2",play,1.0,0 -171847702,"Dota 2",purchase,1.0,0 -171847702,"Dota 2",play,1.7,0 -304744338,"Back to Dinosaur Island ",purchase,1.0,0 -211348545,"BLOCKADE 3D",purchase,1.0,0 -211348545,"BLOCKADE 3D",play,1.1,0 -211348545,"Dizzel",purchase,1.0,0 -23672423,"Counter-Strike Source",purchase,1.0,0 -23672423,"Counter-Strike Source",play,336.0,0 -23672423,"Team Fortress 2",purchase,1.0,0 -23672423,"Team Fortress 2",play,89.0,0 -23672423,"Cities Skylines",purchase,1.0,0 -23672423,"Cities Skylines",play,25.0,0 -23672423,"Alien Swarm",purchase,1.0,0 -23672423,"Alien Swarm",play,4.9,0 -23672423,"Portal",purchase,1.0,0 -23672423,"Portal",play,3.9,0 -23672423,"Fallout",purchase,1.0,0 -23672423,"Fallout",play,2.0,0 -23672423,"Dota 2",purchase,1.0,0 -23672423,"Dota 2",play,0.5,0 -23672423,"Half-Life 2",purchase,1.0,0 -23672423,"Half-Life 2",play,0.4,0 -23672423,"Half-Life 2 Episode Two",purchase,1.0,0 -23672423,"Half-Life 2 Episode Two",play,0.2,0 -23672423,"Counter-Strike",purchase,1.0,0 -23672423,"Counter-Strike Condition Zero",purchase,1.0,0 -23672423,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -23672423,"Day of Defeat",purchase,1.0,0 -23672423,"Day of Defeat Source",purchase,1.0,0 -23672423,"Deathmatch Classic",purchase,1.0,0 -23672423,"Half-Life 2 Deathmatch",purchase,1.0,0 -23672423,"Half-Life 2 Episode One",purchase,1.0,0 -23672423,"Half-Life 2 Lost Coast",purchase,1.0,0 -23672423,"Ricochet",purchase,1.0,0 -23672423,"Total War ROME II - Emperor Edition",purchase,1.0,0 -27691746,"Counter-Strike Source",purchase,1.0,0 -27691746,"Counter-Strike Source",play,0.3,0 -27691746,"Day of Defeat Source",purchase,1.0,0 -27691746,"Half-Life 2 Deathmatch",purchase,1.0,0 -286244196,"Dota 2",purchase,1.0,0 -286244196,"Dota 2",play,0.2,0 -161275092,"BLOCKADE 3D",purchase,1.0,0 -161275092,"Everlasting Summer",purchase,1.0,0 -161275092,"Fallen Earth",purchase,1.0,0 -161275092,"Magicka Wizard Wars",purchase,1.0,0 -161275092,"Survarium",purchase,1.0,0 -161275092,"sZone-Online",purchase,1.0,0 -142388676,"Dota 2",purchase,1.0,0 -142388676,"Dota 2",play,2.9,0 -142388676,"Realm of the Mad God",purchase,1.0,0 -142388676,"Realm of the Mad God",play,2.8,0 -142388676,"Warframe",purchase,1.0,0 -142388676,"Warframe",play,1.6,0 -142388676,"Team Fortress 2",purchase,1.0,0 -142388676,"Team Fortress 2",play,0.4,0 -142388676,"Lost Saga North America",purchase,1.0,0 -142388676,"Elsword",purchase,1.0,0 -190305835,"Arma 2 Operation Arrowhead",purchase,1.0,0 -190305835,"Arma 2 Operation Arrowhead",play,545.0,0 -190305835,"Grand Theft Auto V",purchase,1.0,0 -190305835,"Grand Theft Auto V",play,150.0,0 -190305835,"Arma 3",purchase,1.0,0 -190305835,"Arma 3",play,147.0,0 -190305835,"PAYDAY 2",purchase,1.0,0 -190305835,"PAYDAY 2",play,43.0,0 -190305835,"Space Engineers",purchase,1.0,0 -190305835,"Space Engineers",play,25.0,0 -190305835,"Empire Total War",purchase,1.0,0 -190305835,"Empire Total War",play,21.0,0 -190305835,"Spintires",purchase,1.0,0 -190305835,"Spintires",play,7.9,0 -190305835,"Insurgency",purchase,1.0,0 -190305835,"Insurgency",play,5.6,0 -190305835,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -190305835,"Rising Storm/Red Orchestra 2 Multiplayer",play,4.9,0 -190305835,"Mount & Blade Warband",purchase,1.0,0 -190305835,"Mount & Blade Warband",play,4.7,0 -190305835,"Star Wars - Battlefront II",purchase,1.0,0 -190305835,"Star Wars - Battlefront II",play,4.3,0 -190305835,"Down To One",purchase,1.0,0 -190305835,"Down To One",play,3.6,0 -190305835,"Unturned",purchase,1.0,0 -190305835,"Unturned",play,2.5,0 -190305835,"Take On Helicopters",purchase,1.0,0 -190305835,"Take On Helicopters",play,2.1,0 -190305835,"Verdun",purchase,1.0,0 -190305835,"Verdun",play,0.9,0 -190305835,"Moonbase Alpha",purchase,1.0,0 -190305835,"Moonbase Alpha",play,0.6,0 -190305835,"Arma Cold War Assault",purchase,1.0,0 -190305835,"Arma Cold War Assault",play,0.4,0 -190305835,"Heroes & Generals",purchase,1.0,0 -190305835,"Heroes & Generals",play,0.3,0 -190305835,"The Expendabros",purchase,1.0,0 -190305835,"The Expendabros",play,0.3,0 -190305835,"Arma 2",purchase,1.0,0 -190305835,"No More Room in Hell",purchase,1.0,0 -190305835,"Arma 2 British Armed Forces",purchase,1.0,0 -190305835,"Arma 2 Private Military Company",purchase,1.0,0 -190305835,"Anarchy Arcade",purchase,1.0,0 -190305835,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -190305835,"Arma 3 Karts",purchase,1.0,0 -190305835,"Arma 3 Marksmen",purchase,1.0,0 -190305835,"Arma 3 Zeus",purchase,1.0,0 -190305835,"DCS World",purchase,1.0,0 -190305835,"Dead Island Epidemic",purchase,1.0,0 -190305835,"Dirty Bomb",purchase,1.0,0 -190305835,"Fistful of Frags",purchase,1.0,0 -190305835,"Hacker Evolution - Untold",purchase,1.0,0 -190305835,"PlanetSide 2",purchase,1.0,0 -190305835,"Realms of the Haunting",purchase,1.0,0 -190305835,"Robocraft",purchase,1.0,0 -190305835,"Super Crate Box",purchase,1.0,0 -190305835,"Tactical Intervention",purchase,1.0,0 -190305835,"theHunter",purchase,1.0,0 -190305835,"Thinking with Time Machine",purchase,1.0,0 -190305835,"Velvet Sundown",purchase,1.0,0 -190305835,"World of Guns Gun Disassembly",purchase,1.0,0 -239821411,"Dota 2",purchase,1.0,0 -239821411,"Dota 2",play,121.0,0 -302606492,"The Elder Scrolls V Skyrim",purchase,1.0,0 -302606492,"The Elder Scrolls V Skyrim",play,54.0,0 -302606492,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -302606492,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -302606492,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -302606492,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -105274697,"Dota 2",purchase,1.0,0 -105274697,"Dota 2",play,921.0,0 -105274697,"Football Manager 2015",purchase,1.0,0 -105274697,"Football Manager 2015",play,877.0,0 -105274697,"Football Manager 2013",purchase,1.0,0 -105274697,"Football Manager 2013",play,293.0,0 -105274697,"Football Manager 2014",purchase,1.0,0 -105274697,"Football Manager 2014",play,272.0,0 -105274697,"Football Manager 2016",purchase,1.0,0 -105274697,"Football Manager 2016",play,124.0,0 -105274697,"Marvel Heroes 2015",purchase,1.0,0 -105274697,"Marvel Heroes 2015",play,2.5,0 -138695243,"Football Manager 2014",purchase,1.0,0 -138695243,"Football Manager 2014",play,16.1,0 -138695243,"Patrician III",purchase,1.0,0 -138695243,"Patrician III",play,1.4,0 -1268792,"Counter-Strike",purchase,1.0,0 -1268792,"Counter-Strike",play,0.5,0 -1268792,"Day of Defeat",purchase,1.0,0 -1268792,"Deathmatch Classic",purchase,1.0,0 -1268792,"Half-Life",purchase,1.0,0 -1268792,"Half-Life Blue Shift",purchase,1.0,0 -1268792,"Half-Life Opposing Force",purchase,1.0,0 -1268792,"Ricochet",purchase,1.0,0 -1268792,"Team Fortress Classic",purchase,1.0,0 -88762385,"Team Fortress 2",purchase,1.0,0 -88762385,"Team Fortress 2",play,3.4,0 -262942892,"Unturned",purchase,1.0,0 -262942892,"BLOCKADE 3D",purchase,1.0,0 -262942892,"Copa Petrobras de Marcas",purchase,1.0,0 -262942892,"Counter-Strike Nexon Zombies",purchase,1.0,0 -262942892,"Gotham City Impostors Free To Play",purchase,1.0,0 -262942892,"Heroes & Generals",purchase,1.0,0 -262942892,"HIT",purchase,1.0,0 -262942892,"Infinite Crisis",purchase,1.0,0 -262942892,"Marvel Heroes 2015",purchase,1.0,0 -262942892,"Modular Combat",purchase,1.0,0 -262942892,"Panzar",purchase,1.0,0 -250386039,"Dota 2",purchase,1.0,0 -250386039,"Dota 2",play,1.6,0 -307233796,"Dota 2",purchase,1.0,0 -307233796,"Dota 2",play,0.3,0 -299644153,"Dota 2",purchase,1.0,0 -299644153,"Dota 2",play,2.8,0 -299644153,"Free to Play",purchase,1.0,0 -111820040,"Total War ROME II - Emperor Edition",purchase,1.0,0 -111820040,"Total War ROME II - Emperor Edition",play,91.0,0 -111820040,"Warhammer 40,000 Space Marine",purchase,1.0,0 -111820040,"Warhammer 40,000 Space Marine",play,1.3,0 -173266809,"Dota 2",purchase,1.0,0 -173266809,"Dota 2",play,393.0,0 -173266809,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -249852209,"Clicker Heroes",purchase,1.0,0 -249852209,"Trove",purchase,1.0,0 -38853323,"RACE 07",purchase,1.0,0 -38853323,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -57788398,"Call of Duty Modern Warfare 2",purchase,1.0,0 -57788398,"Call of Duty Modern Warfare 2",play,11.6,0 -57788398,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -57788398,"Call of Duty Modern Warfare 2 - Multiplayer",play,6.7,0 -196749226,"Train Fever",purchase,1.0,0 -196749226,"Train Fever",play,7.5,0 -28705385,"Counter-Strike",purchase,1.0,0 -28705385,"Counter-Strike",play,6.8,0 -28705385,"Counter-Strike Condition Zero",purchase,1.0,0 -28705385,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -298952330,"Neverwinter",purchase,1.0,0 -297626426,"Dota 2",purchase,1.0,0 -297626426,"Dota 2",play,1.5,0 -212428693,"Sniper Elite 3",purchase,1.0,0 -212428693,"Sniper Elite 3",play,11.2,0 -212428693,"sZone-Online",purchase,1.0,0 -212428693,"sZone-Online",play,1.6,0 -212428693,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -212428693,"Brick-Force",purchase,1.0,0 -145041407,"Dota 2",purchase,1.0,0 -145041407,"Dota 2",play,1177.0,0 -145041407,"BloodRealm Battlegrounds",purchase,1.0,0 -145041407,"The Way of Life Free Edition",purchase,1.0,0 -116663350,"Saints Row 2",purchase,1.0,0 -116663350,"Saints Row 2",play,0.4,0 -250739065,"Dota 2",purchase,1.0,0 -250739065,"Dota 2",play,1.0,0 -295883706,"Counter-Strike Global Offensive",purchase,1.0,0 -295883706,"Counter-Strike Global Offensive",play,209.0,0 -103523221,"Team Fortress 2",purchase,1.0,0 -103523221,"Team Fortress 2",play,13.0,0 -237566493,"Dota 2",purchase,1.0,0 -237566493,"Dota 2",play,2.5,0 -174853268,"Dota 2",purchase,1.0,0 -174853268,"Dota 2",play,4.3,0 -95853467,"Counter-Strike Source",purchase,1.0,0 -95853467,"Counter-Strike Source",play,1021.0,0 -95853467,"Counter-Strike",purchase,1.0,0 -95853467,"Counter-Strike",play,69.0,0 -95853467,"Counter-Strike Condition Zero",purchase,1.0,0 -95853467,"Counter-Strike Condition Zero",play,62.0,0 -95853467,"Steel Ocean",purchase,1.0,0 -95853467,"Steel Ocean",play,32.0,0 -95853467,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -95853467,"Counter-Strike Condition Zero Deleted Scenes",play,15.6,0 -95853467,"Batla",purchase,1.0,0 -95853467,"Batla",play,8.3,0 -95853467,"Robocraft",purchase,1.0,0 -95853467,"Robocraft",play,6.7,0 -95853467,"Infinite Crisis",purchase,1.0,0 -95853467,"Infinite Crisis",play,1.7,0 -95853467,"Dota 2",purchase,1.0,0 -95853467,"Dota 2",play,0.2,0 -95853467,"METAL SLUG DEFENSE",purchase,1.0,0 -95853467,"Run and Fire",purchase,1.0,0 -95853467,"Half-Life 2 Update",purchase,1.0,0 -95853467,"Marvel Heroes 2015",purchase,1.0,0 -147159299,"Dota 2",purchase,1.0,0 -147159299,"Dota 2",play,3.3,0 -183315077,"Fable - The Lost Chapters",purchase,1.0,0 -183315077,"Fable - The Lost Chapters",play,46.0,0 -183315077,"Assassin's Creed II",purchase,1.0,0 -183315077,"Assassin's Creed II",play,14.8,0 -183315077,"Chivalry Medieval Warfare",purchase,1.0,0 -183315077,"Chivalry Medieval Warfare",play,5.2,0 -183315077,"The Elder Scrolls V Skyrim",purchase,1.0,0 -183315077,"The Elder Scrolls V Skyrim",play,3.6,0 -183315077,"Counter-Strike Global Offensive",purchase,1.0,0 -183315077,"Counter-Strike Global Offensive",play,1.7,0 -183315077,"Dota 2",purchase,1.0,0 -183315077,"Dota 2",play,1.2,0 -183315077,"Portal",purchase,1.0,0 -183315077,"Portal",play,1.0,0 -183315077,"1954 Alcatraz",purchase,1.0,0 -183315077,"A New Beginning - Final Cut",purchase,1.0,0 -183315077,"Chaos on Deponia",purchase,1.0,0 -183315077,"Cities Skylines",purchase,1.0,0 -183315077,"Counter-Strike",purchase,1.0,0 -183315077,"Counter-Strike Condition Zero",purchase,1.0,0 -183315077,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -183315077,"Counter-Strike Source",purchase,1.0,0 -183315077,"Deponia",purchase,1.0,0 -183315077,"Edna & Harvey Harvey's New Eyes",purchase,1.0,0 -183315077,"Edna & Harvey The Breakout",purchase,1.0,0 -183315077,"Garry's Mod",purchase,1.0,0 -183315077,"Goodbye Deponia",purchase,1.0,0 -183315077,"Insurgency",purchase,1.0,0 -183315077,"Life Is Strange",purchase,1.0,0 -183315077,"Memoria",purchase,1.0,0 -183315077,"Mirror's Edge",purchase,1.0,0 -183315077,"Patch testing for Chivalry",purchase,1.0,0 -183315077,"Portal 2",purchase,1.0,0 -183315077,"The Dark Eye Chains of Satinav",purchase,1.0,0 -183315077,"The Night of the Rabbit",purchase,1.0,0 -183315077,"The Walking Dead",purchase,1.0,0 -183315077,"The Whispered World Special Edition",purchase,1.0,0 -183315077,"Tomb Raider",purchase,1.0,0 -236727418,"Terraria",purchase,1.0,0 -236727418,"Terraria",play,62.0,0 -236727418,"Brawlhalla",purchase,1.0,0 -236727418,"Brawlhalla",play,3.7,0 -236727418,"Dragon Nest",purchase,1.0,0 -236727418,"Dragon Nest",play,0.8,0 -236727418,"Dungeon Defenders II",purchase,1.0,0 -236727418,"Dungeon Defenders II",play,0.7,0 -236727418,"SMITE",purchase,1.0,0 -238311629,"Dota 2",purchase,1.0,0 -238311629,"Dota 2",play,6.8,0 -238311629,"Team Fortress 2",purchase,1.0,0 -238311629,"Team Fortress 2",play,1.1,0 -238311629,"AdVenture Capitalist",purchase,1.0,0 -238311629,"AdVenture Capitalist",play,0.2,0 -238311629,"FreeStyle2 Street Basketball",purchase,1.0,0 -238311629,"FreeStyle2 Street Basketball",play,0.1,0 -238311629,"War Thunder",purchase,1.0,0 -189278950,"Garry's Mod",purchase,1.0,0 -189278950,"Garry's Mod",play,53.0,0 -196931524,"Robocraft",purchase,1.0,0 -196931524,"Robocraft",play,2.1,0 -196931524,"Magicka Wizard Wars",purchase,1.0,0 -196931524,"Magicka Wizard Wars",play,0.3,0 -222465255,"Dota 2",purchase,1.0,0 -222465255,"Dota 2",play,1.8,0 -149143479,"Mortal Kombat X",purchase,1.0,0 -149143479,"Mortal Kombat X",play,306.0,0 -149143479,"Mortal Kombat Komplete Edition",purchase,1.0,0 -149143479,"Mortal Kombat Komplete Edition",play,267.0,0 -149143479,"Fallout 4",purchase,1.0,0 -149143479,"Fallout 4",play,239.0,0 -149143479,"Portal 2",purchase,1.0,0 -149143479,"Portal 2",play,85.0,0 -149143479,"Garry's Mod",purchase,1.0,0 -149143479,"Garry's Mod",play,38.0,0 -149143479,"Divinity Original Sin",purchase,1.0,0 -149143479,"Divinity Original Sin",play,31.0,0 -149143479,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -149143479,"The Witcher 2 Assassins of Kings Enhanced Edition",play,28.0,0 -149143479,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -149143479,"Divinity Original Sin Enhanced Edition",play,16.5,0 -149143479,"The Culling Of The Cows",purchase,1.0,0 -149143479,"The Culling Of The Cows",play,0.5,0 -149143479,"Divine Divinity",purchase,1.0,0 -149143479,"Beyond Divinity",purchase,1.0,0 -149143479,"Counter-Strike Global Offensive",purchase,1.0,0 -149143479,"Goat Simulator",purchase,1.0,0 -171795280,"Dota 2",purchase,1.0,0 -171795280,"Dota 2",play,23.0,0 -34679511,"Race The WTCC Game",purchase,1.0,0 -278932462,"Dota 2",purchase,1.0,0 -278932462,"Dota 2",play,87.0,0 -278932462,"Warframe",purchase,1.0,0 -105741405,"Team Fortress 2",purchase,1.0,0 -105741405,"Team Fortress 2",play,2.8,0 -84414029,"Team Fortress 2",purchase,1.0,0 -84414029,"Team Fortress 2",play,0.8,0 -187643062,"Unturned",purchase,1.0,0 -187643062,"Unturned",play,1.4,0 -151042957,"Alien Swarm",purchase,1.0,0 -151042957,"Alien Swarm",play,0.3,0 -101902528,"Team Fortress 2",purchase,1.0,0 -101902528,"Team Fortress 2",play,0.8,0 -300944123,"Dota 2",purchase,1.0,0 -300944123,"Dota 2",play,111.0,0 -261290656,"Dota 2",purchase,1.0,0 -261290656,"Dota 2",play,2.4,0 -175187740,"Dota 2",purchase,1.0,0 -175187740,"Dota 2",play,0.5,0 -65064340,"Counter-Strike Global Offensive",purchase,1.0,0 -65064340,"Counter-Strike Global Offensive",play,1113.0,0 -65064340,"The Elder Scrolls V Skyrim",purchase,1.0,0 -65064340,"The Elder Scrolls V Skyrim",play,41.0,0 -65064340,"Far Cry 4",purchase,1.0,0 -65064340,"Far Cry 4",play,35.0,0 -65064340,"FTL Faster Than Light",purchase,1.0,0 -65064340,"FTL Faster Than Light",play,29.0,0 -65064340,"Far Cry 3",purchase,1.0,0 -65064340,"Far Cry 3",play,29.0,0 -65064340,"Saints Row The Third",purchase,1.0,0 -65064340,"Saints Row The Third",play,21.0,0 -65064340,"BioShock Infinite",purchase,1.0,0 -65064340,"BioShock Infinite",play,18.4,0 -65064340,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -65064340,"Tom Clancy's Splinter Cell Blacklist",play,18.1,0 -65064340,"Fable - The Lost Chapters",purchase,1.0,0 -65064340,"Fable - The Lost Chapters",play,17.2,0 -65064340,"Fallout New Vegas",purchase,1.0,0 -65064340,"Fallout New Vegas",play,15.6,0 -65064340,"Tomb Raider",purchase,1.0,0 -65064340,"Tomb Raider",play,14.8,0 -65064340,"Metro 2033",purchase,1.0,0 -65064340,"Metro 2033",play,11.9,0 -65064340,"Child of Light",purchase,1.0,0 -65064340,"Child of Light",play,10.0,0 -65064340,"Saints Row IV",purchase,1.0,0 -65064340,"Saints Row IV",play,6.7,0 -65064340,"Don't Starve",purchase,1.0,0 -65064340,"Don't Starve",play,6.7,0 -65064340,"Portal 2",purchase,1.0,0 -65064340,"Portal 2",play,5.4,0 -65064340,"The Stanley Parable",purchase,1.0,0 -65064340,"The Stanley Parable",play,4.5,0 -65064340,"Borderlands 2",purchase,1.0,0 -65064340,"Borderlands 2",play,3.6,0 -65064340,"Metro Last Light",purchase,1.0,0 -65064340,"Metro Last Light",play,2.9,0 -65064340,"The Long Dark",purchase,1.0,0 -65064340,"The Long Dark",play,2.3,0 -65064340,"Battlefield Bad Company 2",purchase,1.0,0 -65064340,"Battlefield Bad Company 2",play,2.1,0 -65064340,"Year Walk",purchase,1.0,0 -65064340,"Year Walk",play,1.9,0 -65064340,"The Witcher Enhanced Edition",purchase,1.0,0 -65064340,"The Witcher Enhanced Edition",play,1.7,0 -65064340,"Papers, Please",purchase,1.0,0 -65064340,"Papers, Please",play,1.6,0 -65064340,"Red Faction Armageddon",purchase,1.0,0 -65064340,"Red Faction Armageddon",play,1.4,0 -65064340,"Portal",purchase,1.0,0 -65064340,"Portal",play,1.1,0 -65064340,"Braid",purchase,1.0,0 -65064340,"Braid",play,0.8,0 -65064340,"Undertale",purchase,1.0,0 -65064340,"Undertale",play,0.6,0 -65064340,"FINAL FANTASY VII",purchase,1.0,0 -65064340,"FINAL FANTASY VII",play,0.6,0 -65064340,"Darksiders",purchase,1.0,0 -65064340,"Darksiders",play,0.6,0 -65064340,"Far Cry 3 Blood Dragon",purchase,1.0,0 -65064340,"Far Cry 3 Blood Dragon",play,0.5,0 -65064340,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -65064340,"METAL GEAR RISING REVENGEANCE",play,0.5,0 -65064340,"Tom Clancy's Splinter Cell",purchase,1.0,0 -65064340,"Tom Clancy's Splinter Cell",play,0.4,0 -65064340,"South Park The Stick of Truth",purchase,1.0,0 -65064340,"South Park The Stick of Truth",play,0.4,0 -65064340,"Octodad Dadliest Catch",purchase,1.0,0 -65064340,"Octodad Dadliest Catch",play,0.4,0 -65064340,"Legend of Grimrock 2",purchase,1.0,0 -65064340,"Legend of Grimrock 2",play,0.3,0 -65064340,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -65064340,"Deus Ex Human Revolution - Director's Cut",play,0.3,0 -65064340,"Oddworld New 'n' Tasty",purchase,1.0,0 -65064340,"Oddworld New 'n' Tasty",play,0.3,0 -65064340,"Halo Spartan Assault",purchase,1.0,0 -65064340,"Halo Spartan Assault",play,0.3,0 -65064340,"Unturned",purchase,1.0,0 -65064340,"Tom Clancy's Splinter Cell Chaos Theory",purchase,1.0,0 -65064340,"Alan Wake",purchase,1.0,0 -65064340,"Company of Heroes",purchase,1.0,0 -65064340,"Company of Heroes (New Steam Version)",purchase,1.0,0 -65064340,"Company of Heroes Opposing Fronts",purchase,1.0,0 -65064340,"Company of Heroes Tales of Valor",purchase,1.0,0 -65064340,"Don't Starve Reign of Giants",purchase,1.0,0 -65064340,"Don't Starve Together Beta",purchase,1.0,0 -65064340,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -65064340,"Fallout New Vegas Dead Money",purchase,1.0,0 -65064340,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -65064340,"Legend of Grimrock",purchase,1.0,0 -65064340,"Mighty Gunvolt",purchase,1.0,0 -65064340,"ORION Prelude",purchase,1.0,0 -65064340,"Saints Row 2",purchase,1.0,0 -65064340,"South Park The Stick of Truth - Super Samurai Spaceman Pack",purchase,1.0,0 -65064340,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -65064340,"Transistor",purchase,1.0,0 -155183068,"Unturned",purchase,1.0,0 -155183068,"Unturned",play,7.6,0 -155183068,"Dota 2",purchase,1.0,0 -155183068,"Dota 2",play,2.5,0 -155183068,"Tribes Ascend",purchase,1.0,0 -155183068,"Tribes Ascend",play,0.9,0 -155183068,"The Expendabros",purchase,1.0,0 -155183068,"The Expendabros",play,0.5,0 -155183068,"PAYDAY The Heist",purchase,1.0,0 -155183068,"The Mighty Quest For Epic Loot",purchase,1.0,0 -27872805,"Counter-Strike Source",purchase,1.0,0 -27872805,"Counter-Strike Source",play,11.4,0 -27872805,"Counter-Strike",purchase,1.0,0 -27872805,"Counter-Strike",play,1.6,0 -27872805,"Counter-Strike Condition Zero",purchase,1.0,0 -27872805,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -27872805,"Day of Defeat",purchase,1.0,0 -27872805,"Day of Defeat Source",purchase,1.0,0 -27872805,"Deathmatch Classic",purchase,1.0,0 -27872805,"Half-Life 2 Deathmatch",purchase,1.0,0 -27872805,"Half-Life 2 Lost Coast",purchase,1.0,0 -27872805,"Ricochet",purchase,1.0,0 -161234634,"Sid Meier's Civilization V",purchase,1.0,0 -161234634,"Sid Meier's Civilization V",play,18.9,0 -181857096,"Trove",purchase,1.0,0 -181857096,"Trove",play,6.6,0 -194544287,"Warframe",purchase,1.0,0 -194544287,"Warframe",play,40.0,0 -194544287,"Blacklight Retribution",purchase,1.0,0 -194544287,"Blacklight Retribution",play,3.8,0 -194544287,"Dirty Bomb",purchase,1.0,0 -194544287,"Dirty Bomb",play,2.4,0 -194544287,"Team Fortress 2",purchase,1.0,0 -194544287,"Team Fortress 2",play,0.3,0 -194544287,"Firefall",purchase,1.0,0 -194544287,"RIFT",purchase,1.0,0 -41606445,"Counter-Strike",purchase,1.0,0 -41606445,"Counter-Strike",play,2605.0,0 -41606445,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -41606445,"Counter-Strike Condition Zero Deleted Scenes",play,2.0,0 -41606445,"Dota 2",purchase,1.0,0 -41606445,"Dota 2",play,1.6,0 -41606445,"Counter-Strike Condition Zero",purchase,1.0,0 -41606445,"Counter-Strike Condition Zero",play,0.9,0 -41606445,"Divine Souls",purchase,1.0,0 -41606445,"Divine Souls",play,0.2,0 -41606445,"Deathmatch Classic",purchase,1.0,0 -41606445,"Deathmatch Classic",play,0.1,0 -41606445,"Ricochet",purchase,1.0,0 -41606445,"Ricochet",play,0.1,0 -41606445,"Day of Defeat",purchase,1.0,0 -41606445,"Counter-Strike Nexon Zombies",purchase,1.0,0 -42456478,"Football Manager 2009",purchase,1.0,0 -42456478,"Football Manager 2009",play,21.0,0 -119909634,"Unturned",purchase,1.0,0 -119909634,"Unturned",play,34.0,0 -119909634,"Counter-Strike Global Offensive",purchase,1.0,0 -119909634,"Counter-Strike Global Offensive",play,11.5,0 -119909634,"PAYDAY 2",purchase,1.0,0 -119909634,"PAYDAY 2",play,8.2,0 -119909634,"Dota 2",purchase,1.0,0 -119909634,"Dota 2",play,3.0,0 -119909634,"SMITE",purchase,1.0,0 -119909634,"SMITE",play,1.0,0 -119909634,"Medal of Honor(TM) Single Player",purchase,1.0,0 -119909634,"Medal of Honor(TM) Single Player",play,0.8,0 -119909634,"Team Fortress 2",purchase,1.0,0 -119909634,"Team Fortress 2",play,0.6,0 -119909634,"Trove",purchase,1.0,0 -119909634,"Trove",play,0.3,0 -119909634,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -119909634,"Medal of Honor(TM) Multiplayer",play,0.2,0 -119909634,"PAYDAY The Heist",purchase,1.0,0 -119909634,"PAYDAY The Heist",play,0.1,0 -119909634,"Dino D-Day",purchase,1.0,0 -119909634,"East India Company Gold",purchase,1.0,0 -119909634,"Enclave",purchase,1.0,0 -119909634,"GTR Evolution",purchase,1.0,0 -119909634,"Gun Monkeys",purchase,1.0,0 -119909634,"Knights and Merchants",purchase,1.0,0 -119909634,"KnightShift",purchase,1.0,0 -119909634,"Left 4 Dead 2",purchase,1.0,0 -119909634,"Medal of Honor Pre-Order",purchase,1.0,0 -119909634,"RACE 07",purchase,1.0,0 -119909634,"RaceRoom Racing Experience ",purchase,1.0,0 -119909634,"Really Big Sky",purchase,1.0,0 -119909634,"Sniper Elite V2",purchase,1.0,0 -119909634,"SpaceChem",purchase,1.0,0 -119909634,"Two Worlds Epic Edition",purchase,1.0,0 -119909634,"Warface",purchase,1.0,0 -293615878,"SMITE",purchase,1.0,0 -293615878,"TERA",purchase,1.0,0 -145137322,"Dota 2",purchase,1.0,0 -145137322,"Dota 2",play,1409.0,0 -123052194,"Dota 2",purchase,1.0,0 -123052194,"Dota 2",play,115.0,0 -123052194,"TERA",purchase,1.0,0 -123052194,"TERA",play,23.0,0 -123052194,"Clicker Heroes",purchase,1.0,0 -123052194,"Clicker Heroes",play,17.7,0 -298346862,"APB Reloaded",purchase,1.0,0 -298346862,"APB Reloaded",play,3.9,0 -199210319,"America's Army Proving Grounds",purchase,1.0,0 -199210319,"Cubic Castles",purchase,1.0,0 -199210319,"Dwarfs F2P",purchase,1.0,0 -199210319,"Fallen Earth",purchase,1.0,0 -199210319,"Unturned",purchase,1.0,0 -199210319,"Warface",purchase,1.0,0 -38465050,"Ace of Spades",purchase,1.0,0 -38465050,"Ace of Spades",play,65.0,0 -38465050,"LEGO MARVEL Super Heroes",purchase,1.0,0 -38465050,"LEGO MARVEL Super Heroes",play,53.0,0 -38465050,"Defense Grid The Awakening",purchase,1.0,0 -38465050,"Defense Grid The Awakening",play,48.0,0 -38465050,"The Elder Scrolls V Skyrim",purchase,1.0,0 -38465050,"The Elder Scrolls V Skyrim",play,43.0,0 -38465050,"Rocket League",purchase,1.0,0 -38465050,"Rocket League",play,41.0,0 -38465050,"Portal 2",purchase,1.0,0 -38465050,"Portal 2",play,23.0,0 -38465050,"Race The Sun",purchase,1.0,0 -38465050,"Race The Sun",play,21.0,0 -38465050,"The LEGO Movie - Videogame",purchase,1.0,0 -38465050,"The LEGO Movie - Videogame",play,18.9,0 -38465050,"Mirror's Edge",purchase,1.0,0 -38465050,"Mirror's Edge",play,13.5,0 -38465050,"LEGO The Lord of the Rings",purchase,1.0,0 -38465050,"LEGO The Lord of the Rings",play,11.9,0 -38465050,"Grimm",purchase,1.0,0 -38465050,"Grimm",play,11.0,0 -38465050,"Defense Grid 2",purchase,1.0,0 -38465050,"Defense Grid 2",play,9.9,0 -38465050,"Trials Evolution Gold Edition",purchase,1.0,0 -38465050,"Trials Evolution Gold Edition",play,9.1,0 -38465050,"A Story About My Uncle",purchase,1.0,0 -38465050,"A Story About My Uncle",play,8.1,0 -38465050,"Thomas Was Alone",purchase,1.0,0 -38465050,"Thomas Was Alone",play,7.7,0 -38465050,"Train Simulator",purchase,1.0,0 -38465050,"Train Simulator",play,5.2,0 -38465050,"Unreal Tournament 2004",purchase,1.0,0 -38465050,"Unreal Tournament 2004",play,5.0,0 -38465050,"Evochron Mercenary",purchase,1.0,0 -38465050,"Evochron Mercenary",play,4.8,0 -38465050,"LEGO Harry Potter Years 5-7",purchase,1.0,0 -38465050,"LEGO Harry Potter Years 5-7",play,4.0,0 -38465050,"Dustoff Heli Rescue",purchase,1.0,0 -38465050,"Dustoff Heli Rescue",play,3.9,0 -38465050,"Magicka",purchase,1.0,0 -38465050,"Magicka",play,3.7,0 -38465050,"The Polynomial",purchase,1.0,0 -38465050,"The Polynomial",play,3.6,0 -38465050,"Magicka Wizard Wars",purchase,1.0,0 -38465050,"Magicka Wizard Wars",play,2.6,0 -38465050,"Antichamber",purchase,1.0,0 -38465050,"Antichamber",play,2.0,0 -38465050,"Galaxy on Fire 2 Full HD",purchase,1.0,0 -38465050,"Galaxy on Fire 2 Full HD",play,1.6,0 -38465050,"Ultratron",purchase,1.0,0 -38465050,"Ultratron",play,1.5,0 -38465050,"Terraria",purchase,1.0,0 -38465050,"Terraria",play,1.5,0 -38465050,"Strike Vector",purchase,1.0,0 -38465050,"Strike Vector",play,1.3,0 -38465050,"Ghostbusters The Video Game",purchase,1.0,0 -38465050,"Ghostbusters The Video Game",play,1.1,0 -38465050,"Windward",purchase,1.0,0 -38465050,"Windward",play,1.0,0 -38465050,"Road Redemption",purchase,1.0,0 -38465050,"Road Redemption",play,0.8,0 -38465050,"Team Fortress 2",purchase,1.0,0 -38465050,"Team Fortress 2",play,0.8,0 -38465050,"Windosill",purchase,1.0,0 -38465050,"Windosill",play,0.8,0 -38465050,"DogFighter",purchase,1.0,0 -38465050,"DogFighter",play,0.7,0 -38465050,"Serious Sam HD The Second Encounter",purchase,1.0,0 -38465050,"Serious Sam HD The Second Encounter",play,0.7,0 -38465050,"Robocraft",purchase,1.0,0 -38465050,"Robocraft",play,0.7,0 -38465050,"Spectraball",purchase,1.0,0 -38465050,"Spectraball",play,0.6,0 -38465050,"Portal",purchase,1.0,0 -38465050,"Portal",play,0.6,0 -38465050,"Planetary Annihilation",purchase,1.0,0 -38465050,"Planetary Annihilation",play,0.5,0 -38465050,"Monaco",purchase,1.0,0 -38465050,"Monaco",play,0.5,0 -38465050,"FRACT OSC",purchase,1.0,0 -38465050,"FRACT OSC",play,0.5,0 -38465050,"Rock of Ages",purchase,1.0,0 -38465050,"Rock of Ages",play,0.4,0 -38465050,"Plain Sight",purchase,1.0,0 -38465050,"Plain Sight",play,0.3,0 -38465050,"Dragons and Titans",purchase,1.0,0 -38465050,"Dragons and Titans",play,0.3,0 -38465050,"ARK Survival Evolved",purchase,1.0,0 -38465050,"ARK Survival Evolved",play,0.3,0 -38465050,"Grow Home",purchase,1.0,0 -38465050,"Grow Home",play,0.2,0 -38465050,"Babel Rising",purchase,1.0,0 -38465050,"Babel Rising",play,0.2,0 -38465050,"Haunted House",purchase,1.0,0 -38465050,"Haunted House",play,0.2,0 -38465050,"Altitude",purchase,1.0,0 -38465050,"Altitude",play,0.2,0 -38465050,"UberStrike",purchase,1.0,0 -38465050,"UberStrike",play,0.2,0 -38465050,"Dota 2",purchase,1.0,0 -38465050,"Dota 2",play,0.2,0 -38465050,"8BitMMO",purchase,1.0,0 -38465050,"8BitMMO",play,0.2,0 -38465050,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -38465050,"School of Dragons How to Train Your Dragon",play,0.1,0 -38465050,"Infinite Crisis",purchase,1.0,0 -38465050,"Infinite Crisis",play,0.1,0 -38465050,"Quake Live",purchase,1.0,0 -38465050,"Quake Live",play,0.1,0 -38465050,"Half-Life 2 Deathmatch",purchase,1.0,0 -38465050,"Half-Life 2 Deathmatch",play,0.1,0 -38465050,"Guns and Robots",purchase,1.0,0 -38465050,"Guns and Robots",play,0.1,0 -38465050,"Uebergame",purchase,1.0,0 -38465050,"404Sight",purchase,1.0,0 -38465050,"AirMech",purchase,1.0,0 -38465050,"Batla",purchase,1.0,0 -38465050,"Blacklight Retribution",purchase,1.0,0 -38465050,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -38465050,"Defense Grid Resurgence Map Pack 1",purchase,1.0,0 -38465050,"Defense Grid Resurgence Map Pack 2 ",purchase,1.0,0 -38465050,"Defense Grid Resurgence Map Pack 3",purchase,1.0,0 -38465050,"Defense Grid Resurgence Map Pack 4",purchase,1.0,0 -38465050,"Firefall",purchase,1.0,0 -38465050,"Fistful of Frags",purchase,1.0,0 -38465050,"Gear Up",purchase,1.0,0 -38465050,"Half-Life 2 Lost Coast",purchase,1.0,0 -38465050,"Happy Wars",purchase,1.0,0 -38465050,"HAWKEN",purchase,1.0,0 -38465050,"Quintet",purchase,1.0,0 -38465050,"Toribash",purchase,1.0,0 -38465050,"Trove",purchase,1.0,0 -38465050,"Unturned",purchase,1.0,0 -38465050,"Warface",purchase,1.0,0 -213623518,"Counter-Strike Nexon Zombies",purchase,1.0,0 -213623518,"Counter-Strike Nexon Zombies",play,0.5,0 -213623518,"F.E.A.R. Online",purchase,1.0,0 -100616360,"Team Fortress 2",purchase,1.0,0 -100616360,"Team Fortress 2",play,1.7,0 -143198999,"Dead Island",purchase,1.0,0 -237244349,"DC Universe Online",purchase,1.0,0 -237244349,"DC Universe Online",play,72.0,0 -237244349,"Unturned",purchase,1.0,0 -237244349,"Unturned",play,22.0,0 -237244349,"PAYDAY The Heist",purchase,1.0,0 -237244349,"PAYDAY The Heist",play,14.4,0 -237244349,"Defiance",purchase,1.0,0 -237244349,"Defiance",play,12.4,0 -237244349,"Piercing Blow",purchase,1.0,0 -237244349,"Piercing Blow",play,10.1,0 -237244349,"Brawlhalla",purchase,1.0,0 -237244349,"Brawlhalla",play,4.6,0 -237244349,"Star Trek Online",purchase,1.0,0 -237244349,"Star Trek Online",play,2.9,0 -237244349,"Trove",purchase,1.0,0 -237244349,"Trove",play,2.2,0 -237244349,"Transformice",purchase,1.0,0 -237244349,"Transformice",play,1.2,0 -237244349,"SMITE",purchase,1.0,0 -237244349,"SMITE",play,1.2,0 -237244349,"Marvel Heroes 2015",purchase,1.0,0 -237244349,"Marvel Heroes 2015",play,1.0,0 -237244349,"Red Crucible Firestorm",purchase,1.0,0 -237244349,"Red Crucible Firestorm",play,0.7,0 -237244349,"Fingerbones",purchase,1.0,0 -237244349,"Fingerbones",play,0.3,0 -237244349,"Fallen Earth",purchase,1.0,0 -237244349,"Fallen Earth",play,0.2,0 -237244349,"Counter-Strike Nexon Zombies",purchase,1.0,0 -237244349,"Counter-Strike Nexon Zombies",play,0.1,0 -237244349,"Tactical Intervention",purchase,1.0,0 -237244349,"Tactical Intervention",play,0.1,0 -237244349,"WARMODE",purchase,1.0,0 -237244349,"Codename CURE",purchase,1.0,0 -237244349,"sZone-Online",purchase,1.0,0 -237244349,"No More Room in Hell",purchase,1.0,0 -237244349,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -190342639,"Flower Shop Winter In Fairbrook",purchase,1.0,0 -190342639,"Flower Shop Winter In Fairbrook",play,4.9,0 -177531835,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -177531835,"Warhammer 40,000 Dawn of War II",play,8.8,0 -177531835,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -243540632,"Left 4 Dead 2",purchase,1.0,0 -243540632,"Left 4 Dead 2",play,12.0,0 -156615447,"Dota 2",purchase,1.0,0 -156615447,"Dota 2",play,758.0,0 -156615447,"Counter-Strike Global Offensive",purchase,1.0,0 -156615447,"Counter-Strike Global Offensive",play,278.0,0 -156615447,"Portal 2",purchase,1.0,0 -156615447,"Portal 2",play,11.7,0 -156615447,"Tomb Raider",purchase,1.0,0 -156615447,"Tomb Raider",play,11.6,0 -156615447,"FTL Faster Than Light",purchase,1.0,0 -156615447,"FTL Faster Than Light",play,11.3,0 -156615447,"Batman Arkham City GOTY",purchase,1.0,0 -156615447,"Batman Arkham City GOTY",play,11.0,0 -156615447,"Guns of Icarus Online",purchase,1.0,0 -156615447,"Guns of Icarus Online",play,10.9,0 -156615447,"Garry's Mod",purchase,1.0,0 -156615447,"Garry's Mod",play,9.4,0 -156615447,"BattleBlock Theater",purchase,1.0,0 -156615447,"BattleBlock Theater",play,7.3,0 -156615447,"Hotline Miami",purchase,1.0,0 -156615447,"Hotline Miami",play,6.7,0 -156615447,"Don't Starve Together Beta",purchase,1.0,0 -156615447,"Don't Starve Together Beta",play,6.6,0 -156615447,"Bastion",purchase,1.0,0 -156615447,"Bastion",play,5.6,0 -156615447,"Gunpoint",purchase,1.0,0 -156615447,"Gunpoint",play,5.0,0 -156615447,"Don't Starve",purchase,1.0,0 -156615447,"Don't Starve",play,4.1,0 -156615447,"Trine",purchase,1.0,0 -156615447,"Trine",play,4.0,0 -156615447,"Risk of Rain",purchase,1.0,0 -156615447,"Risk of Rain",play,3.9,0 -156615447,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -156615447,"Plants vs. Zombies Game of the Year",play,3.2,0 -156615447,"The Binding of Isaac",purchase,1.0,0 -156615447,"The Binding of Isaac",play,3.0,0 -156615447,"Left 4 Dead 2",purchase,1.0,0 -156615447,"Left 4 Dead 2",play,2.8,0 -156615447,"LEGO MARVEL Super Heroes",purchase,1.0,0 -156615447,"LEGO MARVEL Super Heroes",play,1.7,0 -156615447,"Out There Somewhere",purchase,1.0,0 -156615447,"Out There Somewhere",play,1.4,0 -156615447,"Castle Crashers",purchase,1.0,0 -156615447,"Castle Crashers",play,1.2,0 -156615447,"Chivalry Medieval Warfare",purchase,1.0,0 -156615447,"Chivalry Medieval Warfare",play,1.2,0 -156615447,"Hero Siege",purchase,1.0,0 -156615447,"Hero Siege",play,1.0,0 -156615447,"Super Meat Boy",purchase,1.0,0 -156615447,"Super Meat Boy",play,0.8,0 -156615447,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",purchase,1.0,0 -156615447,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",play,0.8,0 -156615447,"DLC Quest",purchase,1.0,0 -156615447,"DLC Quest",play,0.8,0 -156615447,"Stealth Bastard Deluxe",purchase,1.0,0 -156615447,"Stealth Bastard Deluxe",play,0.8,0 -156615447,"Torchlight II",purchase,1.0,0 -156615447,"Torchlight II",play,0.7,0 -156615447,"Boson X",purchase,1.0,0 -156615447,"Boson X",play,0.7,0 -156615447,"POSTAL 2",purchase,1.0,0 -156615447,"POSTAL 2",play,0.4,0 -156615447,"POSTAL",purchase,1.0,0 -156615447,"POSTAL",play,0.3,0 -156615447,"Insurgency",purchase,1.0,0 -156615447,"Insurgency",play,0.2,0 -156615447,"To the Moon",purchase,1.0,0 -156615447,"To the Moon",play,0.2,0 -156615447,"Caster",purchase,1.0,0 -156615447,"Caster",play,0.1,0 -156615447,"BioShock",purchase,1.0,0 -156615447,"BioShock 2",purchase,1.0,0 -156615447,"BioShock Infinite",purchase,1.0,0 -156615447,"Borderlands 2",purchase,1.0,0 -156615447,"Borderlands 2 RU",purchase,1.0,0 -156615447,"Don't Starve Reign of Giants",purchase,1.0,0 -156615447,"EDGE",purchase,1.0,0 -156615447,"Faerie Solitaire",purchase,1.0,0 -156615447,"Patch testing for Chivalry",purchase,1.0,0 -156615447,"RUSH",purchase,1.0,0 -156615447,"SMITE",purchase,1.0,0 -156615447,"Stealth Bastard Deluxe - The Teleporter Chambers",purchase,1.0,0 -156615447,"Time Clickers",purchase,1.0,0 -156615447,"Toki Tori",purchase,1.0,0 -156615447,"Trine 2",purchase,1.0,0 -156615447,"Waveform",purchase,1.0,0 -137222368,"Dota 2",purchase,1.0,0 -137222368,"Dota 2",play,4074.0,0 -137222368,"Grand Theft Auto IV",purchase,1.0,0 -137222368,"Grand Theft Auto IV",play,55.0,0 -137222368,"Nosgoth",purchase,1.0,0 -137222368,"Nosgoth",play,54.0,0 -137222368,"Rust",purchase,1.0,0 -137222368,"Rust",play,29.0,0 -137222368,"War Thunder",purchase,1.0,0 -137222368,"War Thunder",play,21.0,0 -137222368,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -137222368,"Tom Clancy's Ghost Recon Phantoms - EU",play,12.4,0 -137222368,"Team Fortress 2",purchase,1.0,0 -137222368,"Team Fortress 2",play,0.9,0 -137222368,"PAYDAY The Heist",purchase,1.0,0 -137222368,"PAYDAY The Heist",play,0.3,0 -137222368,"Trove",purchase,1.0,0 -137222368,"Trove",play,0.2,0 -137222368,"Counter-Strike Nexon Zombies",purchase,1.0,0 -137222368,"Robocraft",purchase,1.0,0 -137222368,"Warface",purchase,1.0,0 -132313154,"Dota 2",purchase,1.0,0 -132313154,"Dota 2",play,10.0,0 -33431754,"Counter-Strike Source",purchase,1.0,0 -33431754,"Counter-Strike Source",play,0.1,0 -33431754,"Day of Defeat Source",purchase,1.0,0 -33431754,"Half-Life 2 Deathmatch",purchase,1.0,0 -33431754,"Half-Life 2 Lost Coast",purchase,1.0,0 -88524965,"Dota 2",purchase,1.0,0 -88524965,"Dota 2",play,626.0,0 -242059457,"Dota 2",purchase,1.0,0 -242059457,"Dota 2",play,5.5,0 -51557405,"The Elder Scrolls V Skyrim",purchase,1.0,0 -51557405,"The Elder Scrolls V Skyrim",play,112.0,0 -51557405,"XCOM Enemy Unknown",purchase,1.0,0 -51557405,"XCOM Enemy Unknown",play,81.0,0 -51557405,"Far Cry 3",purchase,1.0,0 -51557405,"Far Cry 3",play,70.0,0 -51557405,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -51557405,"Tom Clancy's Splinter Cell Blacklist",play,63.0,0 -51557405,"Wasteland 2",purchase,1.0,0 -51557405,"Wasteland 2",play,57.0,0 -51557405,"Atom Zombie Smasher ",purchase,1.0,0 -51557405,"Atom Zombie Smasher ",play,56.0,0 -51557405,"Sid Meier's Civilization V",purchase,1.0,0 -51557405,"Sid Meier's Civilization V",play,51.0,0 -51557405,"Mass Effect 2",purchase,1.0,0 -51557405,"Mass Effect 2",play,43.0,0 -51557405,"Cities Skylines",purchase,1.0,0 -51557405,"Cities Skylines",play,41.0,0 -51557405,"Grand Theft Auto V",purchase,1.0,0 -51557405,"Grand Theft Auto V",play,40.0,0 -51557405,"This War of Mine",purchase,1.0,0 -51557405,"This War of Mine",play,34.0,0 -51557405,"Sleeping Dogs",purchase,1.0,0 -51557405,"Sleeping Dogs",play,33.0,0 -51557405,"Beat Hazard",purchase,1.0,0 -51557405,"Beat Hazard",play,31.0,0 -51557405,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -51557405,"Deus Ex Human Revolution - Director's Cut",play,29.0,0 -51557405,"Wolfenstein The New Order",purchase,1.0,0 -51557405,"Wolfenstein The New Order",play,29.0,0 -51557405,"Portal 2",purchase,1.0,0 -51557405,"Portal 2",play,28.0,0 -51557405,"Wings of Prey",purchase,1.0,0 -51557405,"Wings of Prey",play,27.0,0 -51557405,"Dead Island",purchase,1.0,0 -51557405,"Dead Island",play,27.0,0 -51557405,"Mass Effect",purchase,1.0,0 -51557405,"Mass Effect",play,23.0,0 -51557405,"Middle-earth Shadow of Mordor",purchase,1.0,0 -51557405,"Middle-earth Shadow of Mordor",play,19.9,0 -51557405,"Trials Evolution Gold Edition",purchase,1.0,0 -51557405,"Trials Evolution Gold Edition",play,19.8,0 -51557405,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -51557405,"The Witcher 2 Assassins of Kings Enhanced Edition",play,18.6,0 -51557405,"Deus Ex Human Revolution",purchase,1.0,0 -51557405,"Deus Ex Human Revolution",play,18.2,0 -51557405,"Sherlock Holmes Crimes and Punishments",purchase,1.0,0 -51557405,"Sherlock Holmes Crimes and Punishments",play,18.0,0 -51557405,"The Walking Dead",purchase,1.0,0 -51557405,"The Walking Dead",play,16.5,0 -51557405,"The Long Dark",purchase,1.0,0 -51557405,"The Long Dark",play,16.2,0 -51557405,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -51557405,"The Secret of Monkey Island Special Edition",play,15.9,0 -51557405,"Broken Sword 5 - the Serpent's Curse",purchase,1.0,0 -51557405,"Broken Sword 5 - the Serpent's Curse",play,15.7,0 -51557405,"GRID 2",purchase,1.0,0 -51557405,"GRID 2",play,15.7,0 -51557405,"The Testament of Sherlock Holmes",purchase,1.0,0 -51557405,"The Testament of Sherlock Holmes",play,15.7,0 -51557405,"Metro Last Light",purchase,1.0,0 -51557405,"Metro Last Light",play,15.6,0 -51557405,"Life Is Strange",purchase,1.0,0 -51557405,"Life Is Strange",play,15.6,0 -51557405,"Half-Life 2",purchase,1.0,0 -51557405,"Half-Life 2",play,15.2,0 -51557405,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -51557405,"Tom Clancy's Splinter Cell Conviction",play,14.9,0 -51557405,"Tomb Raider",purchase,1.0,0 -51557405,"Tomb Raider",play,14.9,0 -51557405,"Far Cry 4",purchase,1.0,0 -51557405,"Far Cry 4",play,14.6,0 -51557405,"Company of Heroes",purchase,1.0,0 -51557405,"Company of Heroes",play,13.9,0 -51557405,"The Banner Saga",purchase,1.0,0 -51557405,"The Banner Saga",play,13.4,0 -51557405,"Rocket League",purchase,1.0,0 -51557405,"Rocket League",play,13.4,0 -51557405,"Call of Juarez Bound in Blood",purchase,1.0,0 -51557405,"Call of Juarez Bound in Blood",play,13.3,0 -51557405,"The Walking Dead Season Two",purchase,1.0,0 -51557405,"The Walking Dead Season Two",play,13.1,0 -51557405,"Valkyria Chronicles",purchase,1.0,0 -51557405,"Valkyria Chronicles",play,12.9,0 -51557405,"BioShock Infinite",purchase,1.0,0 -51557405,"BioShock Infinite",play,12.8,0 -51557405,"The Longest Journey",purchase,1.0,0 -51557405,"The Longest Journey",play,12.6,0 -51557405,"Broken Age",purchase,1.0,0 -51557405,"Broken Age",play,12.4,0 -51557405,"Arma 3",purchase,1.0,0 -51557405,"Arma 3",play,12.1,0 -51557405,"Prison Architect",purchase,1.0,0 -51557405,"Prison Architect",play,11.8,0 -51557405,"Half-Life",purchase,1.0,0 -51557405,"Half-Life",play,11.6,0 -51557405,"Stacking",purchase,1.0,0 -51557405,"Stacking",play,11.5,0 -51557405,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",purchase,1.0,0 -51557405,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",play,11.4,0 -51557405,"Dreamfall The Longest Journey",purchase,1.0,0 -51557405,"Dreamfall The Longest Journey",play,10.7,0 -51557405,"I Am Alive",purchase,1.0,0 -51557405,"I Am Alive",play,10.3,0 -51557405,"The Raven - Legacy of a Master Thief",purchase,1.0,0 -51557405,"The Raven - Legacy of a Master Thief",play,9.6,0 -51557405,"Max Payne",purchase,1.0,0 -51557405,"Max Payne",play,9.3,0 -51557405,"Dishonored",purchase,1.0,0 -51557405,"Dishonored",play,9.3,0 -51557405,"Call of Juarez Gunslinger",purchase,1.0,0 -51557405,"Call of Juarez Gunslinger",play,9.1,0 -51557405,"Trials Fusion",purchase,1.0,0 -51557405,"Trials Fusion",play,9.1,0 -51557405,"Renegade Ops",purchase,1.0,0 -51557405,"Renegade Ops",play,9.1,0 -51557405,"Bastion",purchase,1.0,0 -51557405,"Bastion",play,8.7,0 -51557405,"Sniper Elite V2",purchase,1.0,0 -51557405,"Sniper Elite V2",play,8.5,0 -51557405,"Crusader Kings II",purchase,1.0,0 -51557405,"Crusader Kings II",play,8.4,0 -51557405,"Company of Heroes 2",purchase,1.0,0 -51557405,"Company of Heroes 2",play,8.3,0 -51557405,"The Wolf Among Us",purchase,1.0,0 -51557405,"The Wolf Among Us",play,8.3,0 -51557405,"Deadlight",purchase,1.0,0 -51557405,"Deadlight",play,8.2,0 -51557405,"Portal",purchase,1.0,0 -51557405,"Portal",play,8.1,0 -51557405,"Invisible, Inc.",purchase,1.0,0 -51557405,"Invisible, Inc.",play,8.0,0 -51557405,"Machinarium",purchase,1.0,0 -51557405,"Machinarium",play,7.9,0 -51557405,"Batman Arkham City",purchase,1.0,0 -51557405,"Batman Arkham City",play,7.8,0 -51557405,"Shadowgrounds",purchase,1.0,0 -51557405,"Shadowgrounds",play,7.7,0 -51557405,"Papers, Please",purchase,1.0,0 -51557405,"Papers, Please",play,7.7,0 -51557405,"Endless Legend",purchase,1.0,0 -51557405,"Endless Legend",play,7.5,0 -51557405,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -51557405,"Max Payne 2 The Fall of Max Payne",play,7.1,0 -51557405,"Cthulhu Saves the World ",purchase,1.0,0 -51557405,"Cthulhu Saves the World ",play,7.0,0 -51557405,"Next Car Game Wreckfest",purchase,1.0,0 -51557405,"Next Car Game Wreckfest",play,7.0,0 -51557405,"The Witcher Enhanced Edition",purchase,1.0,0 -51557405,"The Witcher Enhanced Edition",play,6.9,0 -51557405,"Mark of the Ninja",purchase,1.0,0 -51557405,"Mark of the Ninja",play,6.9,0 -51557405,"Chivalry Medieval Warfare",purchase,1.0,0 -51557405,"Chivalry Medieval Warfare",play,6.5,0 -51557405,"Gemini Rue",purchase,1.0,0 -51557405,"Gemini Rue",play,6.4,0 -51557405,"Wolfenstein The Old Blood ",purchase,1.0,0 -51557405,"Wolfenstein The Old Blood ",play,6.4,0 -51557405,"FTL Faster Than Light",purchase,1.0,0 -51557405,"FTL Faster Than Light",play,5.9,0 -51557405,"Spec Ops The Line",purchase,1.0,0 -51557405,"Spec Ops The Line",play,5.8,0 -51557405,"Antichamber",purchase,1.0,0 -51557405,"Antichamber",play,5.7,0 -51557405,"Indie Game The Movie",purchase,1.0,0 -51557405,"Indie Game The Movie",play,5.4,0 -51557405,"Half-Life 2 Episode Two",purchase,1.0,0 -51557405,"Half-Life 2 Episode Two",play,5.3,0 -51557405,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -51557405,"Deus Ex Human Revolution - The Missing Link",play,5.1,0 -51557405,"Batman Arkham City GOTY",purchase,1.0,0 -51557405,"Batman Arkham City GOTY",play,5.1,0 -51557405,"Far Cry 3 Blood Dragon",purchase,1.0,0 -51557405,"Far Cry 3 Blood Dragon",play,5.1,0 -51557405,"Surgeon Simulator",purchase,1.0,0 -51557405,"Surgeon Simulator",play,5.1,0 -51557405,"Shadowrun Returns",purchase,1.0,0 -51557405,"Shadowrun Returns",play,5.0,0 -51557405,"Age of Empires III Complete Collection",purchase,1.0,0 -51557405,"Age of Empires III Complete Collection",play,4.9,0 -51557405,"Half-Life 2 Episode One",purchase,1.0,0 -51557405,"Half-Life 2 Episode One",play,4.8,0 -51557405,"Joe Danger 2 The Movie",purchase,1.0,0 -51557405,"Joe Danger 2 The Movie",play,4.7,0 -51557405,"Her Story",purchase,1.0,0 -51557405,"Her Story",play,4.6,0 -51557405,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -51557405,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",play,4.5,0 -51557405,"Empire Total War",purchase,1.0,0 -51557405,"Empire Total War",play,4.4,0 -51557405,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -51557405,"Grand Theft Auto Episodes from Liberty City",play,4.2,0 -51557405,"DC Universe Online",purchase,1.0,0 -51557405,"DC Universe Online",play,4.2,0 -51557405,"BIT.TRIP BEAT",purchase,1.0,0 -51557405,"BIT.TRIP BEAT",play,4.2,0 -51557405,"Botanicula",purchase,1.0,0 -51557405,"Botanicula",play,4.1,0 -51557405,"Hotline Miami",purchase,1.0,0 -51557405,"Hotline Miami",play,4.1,0 -51557405,"Team Fortress 2",purchase,1.0,0 -51557405,"Team Fortress 2",play,4.0,0 -51557405,"The Binding of Isaac",purchase,1.0,0 -51557405,"The Binding of Isaac",play,3.9,0 -51557405,"Hitman Absolution",purchase,1.0,0 -51557405,"Hitman Absolution",play,3.7,0 -51557405,"Trine",purchase,1.0,0 -51557405,"Trine",play,3.7,0 -51557405,"State of Decay",purchase,1.0,0 -51557405,"State of Decay",play,3.4,0 -51557405,"Alan Wake",purchase,1.0,0 -51557405,"Alan Wake",play,3.3,0 -51557405,"Kentucky Route Zero",purchase,1.0,0 -51557405,"Kentucky Route Zero",play,3.1,0 -51557405,"Don't Starve",purchase,1.0,0 -51557405,"Don't Starve",play,3.0,0 -51557405,"DayZ",purchase,1.0,0 -51557405,"DayZ",play,3.0,0 -51557405,"Assassin's Creed IV Black Flag",purchase,1.0,0 -51557405,"Assassin's Creed IV Black Flag",play,2.9,0 -51557405,"Super Meat Boy",purchase,1.0,0 -51557405,"Super Meat Boy",play,2.9,0 -51557405,"Cogs",purchase,1.0,0 -51557405,"Cogs",play,2.9,0 -51557405,"Counter-Strike Global Offensive",purchase,1.0,0 -51557405,"Counter-Strike Global Offensive",play,2.9,0 -51557405,"Garry's Mod",purchase,1.0,0 -51557405,"Garry's Mod",play,2.9,0 -51557405,"BIT.TRIP RUNNER",purchase,1.0,0 -51557405,"BIT.TRIP RUNNER",play,2.7,0 -51557405,"Space Channel 5 Part 2",purchase,1.0,0 -51557405,"Space Channel 5 Part 2",play,2.7,0 -51557405,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -51557405,"Tiny and Big Grandpa's Leftovers",play,2.6,0 -51557405,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -51557405,"Rising Storm/Red Orchestra 2 Multiplayer",play,2.5,0 -51557405,"Joe Danger",purchase,1.0,0 -51557405,"Joe Danger",play,2.5,0 -51557405,"Left 4 Dead 2",purchase,1.0,0 -51557405,"Left 4 Dead 2",play,2.4,0 -51557405,"The Talos Principle",purchase,1.0,0 -51557405,"The Talos Principle",play,2.4,0 -51557405,"Borderlands 2",purchase,1.0,0 -51557405,"Borderlands 2",play,2.2,0 -51557405,"Brothers - A Tale of Two Sons",purchase,1.0,0 -51557405,"Brothers - A Tale of Two Sons",play,2.2,0 -51557405,"E.Y.E Divine Cybermancy",purchase,1.0,0 -51557405,"E.Y.E Divine Cybermancy",play,2.2,0 -51557405,"Dust An Elysian Tail",purchase,1.0,0 -51557405,"Dust An Elysian Tail",play,2.1,0 -51557405,"PAYDAY The Heist",purchase,1.0,0 -51557405,"PAYDAY The Heist",play,2.0,0 -51557405,"Source Filmmaker",purchase,1.0,0 -51557405,"Source Filmmaker",play,1.9,0 -51557405,"Fallout 2",purchase,1.0,0 -51557405,"Fallout 2",play,1.9,0 -51557405,"Frozen Synapse",purchase,1.0,0 -51557405,"Frozen Synapse",play,1.9,0 -51557405,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -51557405,"Vampire The Masquerade - Bloodlines",play,1.9,0 -51557405,"Guacamelee! Gold Edition",purchase,1.0,0 -51557405,"Guacamelee! Gold Edition",play,1.9,0 -51557405,"The Stanley Parable",purchase,1.0,0 -51557405,"The Stanley Parable",play,1.8,0 -51557405,"NBA 2K14",purchase,1.0,0 -51557405,"NBA 2K14",play,1.8,0 -51557405,"Rayman Origins",purchase,1.0,0 -51557405,"Rayman Origins",play,1.7,0 -51557405,"Thomas Was Alone",purchase,1.0,0 -51557405,"Thomas Was Alone",play,1.7,0 -51557405,"Alien Isolation",purchase,1.0,0 -51557405,"Alien Isolation",play,1.7,0 -51557405,"The Path",purchase,1.0,0 -51557405,"The Path",play,1.6,0 -51557405,"Shelter",purchase,1.0,0 -51557405,"Shelter",play,1.6,0 -51557405,"Dear Esther",purchase,1.0,0 -51557405,"Dear Esther",play,1.6,0 -51557405,"Space Quest Collection",purchase,1.0,0 -51557405,"Space Quest Collection",play,1.5,0 -51557405,"Revenge of the Titans",purchase,1.0,0 -51557405,"Revenge of the Titans",play,1.5,0 -51557405,"Monaco",purchase,1.0,0 -51557405,"Monaco",play,1.5,0 -51557405,"Gone Home",purchase,1.0,0 -51557405,"Gone Home",play,1.5,0 -51557405,"Arma 2 Operation Arrowhead",purchase,1.0,0 -51557405,"Arma 2 Operation Arrowhead",play,1.4,0 -51557405,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -51557405,"METAL GEAR SOLID V GROUND ZEROES",play,1.3,0 -51557405,"Grand Theft Auto IV",purchase,1.0,0 -51557405,"Grand Theft Auto IV",play,1.3,0 -51557405,"Reus",purchase,1.0,0 -51557405,"Reus",play,1.3,0 -51557405,"Metro 2033 Redux",purchase,1.0,0 -51557405,"Metro 2033 Redux",play,1.3,0 -51557405,"Deponia",purchase,1.0,0 -51557405,"Deponia",play,1.3,0 -51557405,"X3 Terran Conflict",purchase,1.0,0 -51557405,"X3 Terran Conflict",play,1.3,0 -51557405,"Universe Sandbox",purchase,1.0,0 -51557405,"Universe Sandbox",play,1.2,0 -51557405,"Worms Revolution",purchase,1.0,0 -51557405,"Worms Revolution",play,1.2,0 -51557405,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -51557405,"Superbrothers Sword & Sworcery EP",play,1.2,0 -51557405,"ENSLAVED Odyssey to the West Premium Edition",purchase,1.0,0 -51557405,"ENSLAVED Odyssey to the West Premium Edition",play,1.2,0 -51557405,"Bulletstorm",purchase,1.0,0 -51557405,"Bulletstorm",play,1.1,0 -51557405,"Mirror's Edge",purchase,1.0,0 -51557405,"Mirror's Edge",play,1.1,0 -51557405,"Giana Sisters Twisted Dreams",purchase,1.0,0 -51557405,"Giana Sisters Twisted Dreams",play,1.0,0 -51557405,"GRID",purchase,1.0,0 -51557405,"GRID",play,1.0,0 -51557405,"SimCity 4 Deluxe",purchase,1.0,0 -51557405,"SimCity 4 Deluxe",play,1.0,0 -51557405,"Grim Fandango Remastered",purchase,1.0,0 -51557405,"Grim Fandango Remastered",play,1.0,0 -51557405,"Republique",purchase,1.0,0 -51557405,"Republique",play,1.0,0 -51557405,"Mount & Blade Warband",purchase,1.0,0 -51557405,"Mount & Blade Warband",play,0.9,0 -51557405,"Transistor",purchase,1.0,0 -51557405,"Transistor",play,0.9,0 -51557405,"The Ship",purchase,1.0,0 -51557405,"The Ship",play,0.9,0 -51557405,"And Yet It Moves",purchase,1.0,0 -51557405,"And Yet It Moves",play,0.9,0 -51557405,"Tomb Raider Anniversary",purchase,1.0,0 -51557405,"Tomb Raider Anniversary",play,0.8,0 -51557405,"The Swapper",purchase,1.0,0 -51557405,"The Swapper",play,0.8,0 -51557405,"Audiosurf",purchase,1.0,0 -51557405,"Audiosurf",play,0.7,0 -51557405,"Arma 2 DayZ Mod",purchase,1.0,0 -51557405,"Arma 2 DayZ Mod",play,0.7,0 -51557405,"Psychonauts",purchase,1.0,0 -51557405,"Psychonauts",play,0.7,0 -51557405,"Stronghold HD",purchase,1.0,0 -51557405,"Stronghold HD",play,0.7,0 -51557405,"Dreamfall Chapters",purchase,1.0,0 -51557405,"Dreamfall Chapters",play,0.7,0 -51557405,"Planetary Annihilation",purchase,1.0,0 -51557405,"Planetary Annihilation",play,0.6,0 -51557405,"Amnesia The Dark Descent",purchase,1.0,0 -51557405,"Amnesia The Dark Descent",play,0.6,0 -51557405,"Microsoft Flight",purchase,1.0,0 -51557405,"Microsoft Flight",play,0.5,0 -51557405,"The Ship Tutorial",purchase,1.0,0 -51557405,"The Ship Tutorial",play,0.5,0 -51557405,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -51557405,"Burnout Paradise The Ultimate Box",play,0.5,0 -51557405,"Portal Stories Mel",purchase,1.0,0 -51557405,"Portal Stories Mel",play,0.5,0 -51557405,"Darwinia",purchase,1.0,0 -51557405,"Darwinia",play,0.5,0 -51557405,"Alien Swarm",purchase,1.0,0 -51557405,"Alien Swarm",play,0.5,0 -51557405,"Crayon Physics Deluxe",purchase,1.0,0 -51557405,"Crayon Physics Deluxe",play,0.5,0 -51557405,"FEZ",purchase,1.0,0 -51557405,"FEZ",play,0.5,0 -51557405,"Estranged Act I",purchase,1.0,0 -51557405,"Estranged Act I",play,0.4,0 -51557405,"Half-Life 2 Lost Coast",purchase,1.0,0 -51557405,"Half-Life 2 Lost Coast",play,0.3,0 -51557405,"Lone Survivor The Director's Cut",purchase,1.0,0 -51557405,"Lone Survivor The Director's Cut",play,0.3,0 -51557405,"Hitman Codename 47",purchase,1.0,0 -51557405,"Hitman Codename 47",play,0.3,0 -51557405,"The Polynomial",purchase,1.0,0 -51557405,"The Polynomial",play,0.3,0 -51557405,"AaAaAA!!! - A Reckless Disregard for Gravity",purchase,1.0,0 -51557405,"AaAaAA!!! - A Reckless Disregard for Gravity",play,0.3,0 -51557405,"VVVVVV",purchase,1.0,0 -51557405,"VVVVVV",play,0.3,0 -51557405,"BioShock",purchase,1.0,0 -51557405,"BioShock",play,0.3,0 -51557405,"South Park The Stick of Truth",purchase,1.0,0 -51557405,"South Park The Stick of Truth",play,0.3,0 -51557405,"Osmos",purchase,1.0,0 -51557405,"Osmos",play,0.3,0 -51557405,"Still Life",purchase,1.0,0 -51557405,"Still Life",play,0.3,0 -51557405,"Dota 2",purchase,1.0,0 -51557405,"Dota 2",play,0.3,0 -51557405,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -51557405,"Next Car Game Sneak Peek 2.0",play,0.3,0 -51557405,"Toki Tori",purchase,1.0,0 -51557405,"Toki Tori",play,0.2,0 -51557405,"Scribblenauts Unlimited",purchase,1.0,0 -51557405,"Scribblenauts Unlimited",play,0.2,0 -51557405,"Oil Rush",purchase,1.0,0 -51557405,"Oil Rush",play,0.2,0 -51557405,"Endless Space",purchase,1.0,0 -51557405,"Endless Space",play,0.2,0 -51557405,"Thief Gold",purchase,1.0,0 -51557405,"Thief Gold",play,0.2,0 -51557405,"The Path - Prologue",purchase,1.0,0 -51557405,"The Path - Prologue",play,0.2,0 -51557405,"Samorost 2",purchase,1.0,0 -51557405,"Samorost 2",play,0.2,0 -51557405,"Hitman Blood Money",purchase,1.0,0 -51557405,"Hitman Blood Money",play,0.1,0 -51557405,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -51557405,"Microsoft Flight Simulator X Steam Edition",play,0.1,0 -51557405,"Risk of Rain",purchase,1.0,0 -51557405,"Risk of Rain",play,0.1,0 -51557405,"Broken Sword 1 - Shadow of the Templars Director's Cut",purchase,1.0,0 -51557405,"Broken Sword 1 - Shadow of the Templars Director's Cut",play,0.1,0 -51557405,"Arma 2",purchase,1.0,0 -51557405,"Arma 2",play,0.1,0 -51557405,"Insanely Twisted Shadow Planet",purchase,1.0,0 -51557405,"Insanely Twisted Shadow Planet",play,0.1,0 -51557405,"Half-Life 2 Deathmatch",purchase,1.0,0 -51557405,"Half-Life 2 Deathmatch",play,0.1,0 -51557405,"Quantum Conundrum",purchase,1.0,0 -51557405,"Quantum Conundrum",play,0.1,0 -51557405,"Proteus",purchase,1.0,0 -51557405,"Hitman 2 Silent Assassin",purchase,1.0,0 -51557405,"Geometry Wars Retro Evolved",purchase,1.0,0 -51557405,"Thinking with Time Machine",purchase,1.0,0 -51557405,"DisplayFusion",purchase,1.0,0 -51557405,"Ben There, Dan That!",purchase,1.0,0 -51557405,"The Wonderful End of the World",purchase,1.0,0 -51557405,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -51557405,"Alan Wake's American Nightmare",purchase,1.0,0 -51557405,"Alien Breed 2 Assault",purchase,1.0,0 -51557405,"Arma 3 Zeus",purchase,1.0,0 -51557405,"Beyond Good & Evil",purchase,1.0,0 -51557405,"BioShock Infinite - Season Pass",purchase,1.0,0 -51557405,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -51557405,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -51557405,"Braid",purchase,1.0,0 -51557405,"Breath of Death VII ",purchase,1.0,0 -51557405,"Broken Sword 2 - the Smoking Mirror Remastered",purchase,1.0,0 -51557405,"Broken Sword 3 - the Sleeping Dragon",purchase,1.0,0 -51557405,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -51557405,"Company of Heroes (New Steam Version)",purchase,1.0,0 -51557405,"Company of Heroes Opposing Fronts",purchase,1.0,0 -51557405,"Crysis 2 Maximum Edition",purchase,1.0,0 -51557405,"Deadlight Original Soundtrack",purchase,1.0,0 -51557405,"Dead Space",purchase,1.0,0 -51557405,"DEFCON",purchase,1.0,0 -51557405,"Digital Combat Simulator A-10C Warthog",purchase,1.0,0 -51557405,"Don't Starve Together Beta",purchase,1.0,0 -51557405,"Fractured Space",purchase,1.0,0 -51557405,"From Dust",purchase,1.0,0 -51557405,"Good Friends Character Pack",purchase,1.0,0 -51557405,"Grand Theft Auto",purchase,1.0,0 -51557405,"Grand Theft Auto 2",purchase,1.0,0 -51557405,"Grand Theft Auto San Andreas",purchase,1.0,0 -51557405,"Grand Theft Auto San Andreas",purchase,1.0,0 -51557405,"Grand Theft Auto Vice City",purchase,1.0,0 -51557405,"Grand Theft Auto Vice City",purchase,1.0,0 -51557405,"Grand Theft Auto III",purchase,1.0,0 -51557405,"Grand Theft Auto III",purchase,1.0,0 -51557405,"Half-Life Blue Shift",purchase,1.0,0 -51557405,"Half-Life Opposing Force",purchase,1.0,0 -51557405,"Half-Life Source",purchase,1.0,0 -51557405,"Half-Life Deathmatch Source",purchase,1.0,0 -51557405,"Hammerfight",purchase,1.0,0 -51557405,"Hitman Sniper Challenge",purchase,1.0,0 -51557405,"Homeworld Remastered Collection",purchase,1.0,0 -51557405,"LIMBO",purchase,1.0,0 -51557405,"Max Payne 3",purchase,1.0,0 -51557405,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -51557405,"Medal of Honor(TM) Single Player",purchase,1.0,0 -51557405,"Medal of Honor Pre-Order",purchase,1.0,0 -51557405,"Metro 2033",purchase,1.0,0 -51557405,"Monkey Island 2 Special Edition",purchase,1.0,0 -51557405,"Multiwinia",purchase,1.0,0 -51557405,"Papo & Yo",purchase,1.0,0 -51557405,"Patch testing for Chivalry",purchase,1.0,0 -51557405,"Post Mortem",purchase,1.0,0 -51557405,"Psychonauts Demo",purchase,1.0,0 -51557405,"Return to Mysterious Island",purchase,1.0,0 -51557405,"Return to Mysterious Island 2",purchase,1.0,0 -51557405,"Rochard",purchase,1.0,0 -51557405,"Saints Row IV",purchase,1.0,0 -51557405,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -51557405,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -51557405,"Splice",purchase,1.0,0 -51557405,"Steel Storm Burning Retribution",purchase,1.0,0 -51557405,"Still Life 2",purchase,1.0,0 -51557405,"Team Fortress Classic",purchase,1.0,0 -51557405,"The Banner Saga - Mod Content",purchase,1.0,0 -51557405,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -51557405,"The Expendabros",purchase,1.0,0 -51557405,"The Ship Single Player",purchase,1.0,0 -51557405,"Thief 2",purchase,1.0,0 -51557405,"Thief Deadly Shadows",purchase,1.0,0 -51557405,"This War of Mine - War Child Charity DLC",purchase,1.0,0 -51557405,"Time Gentlemen, Please!",purchase,1.0,0 -51557405,"Tomb Raider Legend",purchase,1.0,0 -51557405,"Tomb Raider Underworld",purchase,1.0,0 -51557405,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -51557405,"Transistor Soundtrack",purchase,1.0,0 -51557405,"Uplink",purchase,1.0,0 -51557405,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -51557405,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -51557405,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -51557405,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -51557405,"Wasteland 1 - The Original Classic",purchase,1.0,0 -51557405,"Wasteland 2 Director's Cut",purchase,1.0,0 -51557405,"X-COM Apocalypse",purchase,1.0,0 -51557405,"X-COM Enforcer",purchase,1.0,0 -51557405,"X-COM Interceptor",purchase,1.0,0 -51557405,"X-COM Terror from the Deep",purchase,1.0,0 -51557405,"X-COM UFO Defense",purchase,1.0,0 -51557405,"XCOM Enemy Within",purchase,1.0,0 -164107877,"Dota 2",purchase,1.0,0 -164107877,"Dota 2",play,0.2,0 -118554131,"Arma 3",purchase,1.0,0 -118554131,"Arma 3",play,851.0,0 -118554131,"Counter-Strike Global Offensive",purchase,1.0,0 -118554131,"Counter-Strike Global Offensive",play,318.0,0 -118554131,"The Elder Scrolls V Skyrim",purchase,1.0,0 -118554131,"The Elder Scrolls V Skyrim",play,110.0,0 -118554131,"Infestation Survivor Stories",purchase,1.0,0 -118554131,"Infestation Survivor Stories",play,71.0,0 -118554131,"Left 4 Dead 2",purchase,1.0,0 -118554131,"Left 4 Dead 2",play,17.6,0 -118554131,"Unturned",purchase,1.0,0 -118554131,"Unturned",play,9.0,0 -118554131,"Insurgency Modern Infantry Combat",purchase,1.0,0 -118554131,"Insurgency Modern Infantry Combat",play,7.1,0 -118554131,"Sniper Elite V2",purchase,1.0,0 -118554131,"Sniper Elite V2",play,6.0,0 -118554131,"PAYDAY The Heist",purchase,1.0,0 -118554131,"PAYDAY The Heist",play,2.2,0 -118554131,"Fishing Planet",purchase,1.0,0 -118554131,"Fishing Planet",play,1.8,0 -118554131,"Aftermath",purchase,1.0,0 -118554131,"Aftermath",play,0.6,0 -118554131,"Arma 3 Zeus",purchase,1.0,0 -118554131,"DCS World",purchase,1.0,0 -118554131,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -118554131,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -197724494,"Team Fortress 2",purchase,1.0,0 -197724494,"Team Fortress 2",play,11.5,0 -197724494,"Brawlhalla",purchase,1.0,0 -197724494,"SMITE",purchase,1.0,0 -197724494,"Trove",purchase,1.0,0 -197724494,"Unturned",purchase,1.0,0 -253999415,"Dota 2",purchase,1.0,0 -253999415,"Dota 2",play,0.3,0 -101138714,"Team Fortress 2",purchase,1.0,0 -101138714,"Team Fortress 2",play,0.7,0 -284729488,"Team Fortress 2",purchase,1.0,0 -284729488,"Team Fortress 2",play,46.0,0 -284729488,"Dead Island Riptide",purchase,1.0,0 -284729488,"Dead Island Riptide",play,27.0,0 -284729488,"Counter-Strike Nexon Zombies",purchase,1.0,0 -284729488,"Counter-Strike Nexon Zombies",play,7.9,0 -284729488,"Gear Up",purchase,1.0,0 -284729488,"Gear Up",play,3.9,0 -284729488,"Robocraft",purchase,1.0,0 -284729488,"Robocraft",play,1.3,0 -284729488,"Aftermath",purchase,1.0,0 -155190853,"Dota 2",purchase,1.0,0 -155190853,"Dota 2",play,13.2,0 -195289372,"Dota 2",purchase,1.0,0 -195289372,"Dota 2",play,9.2,0 -55498890,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -55498890,"Call of Duty Modern Warfare 2 - Multiplayer",play,91.0,0 -55498890,"Call of Duty Modern Warfare 2",purchase,1.0,0 -55498890,"Call of Duty Modern Warfare 2",play,1.9,0 -252973296,"Dota 2",purchase,1.0,0 -252973296,"Dota 2",play,8.0,0 -250933008,"Rise of Incarnates",purchase,1.0,0 -94234855,"RACE 07",purchase,1.0,0 -94234855,"RACE 07",play,125.0,0 -94234855,"F1 2012",purchase,1.0,0 -94234855,"F1 2012",play,32.0,0 -94234855,"Project CARS",purchase,1.0,0 -94234855,"Project CARS",play,24.0,0 -94234855,"RaceRoom Racing Experience ",purchase,1.0,0 -94234855,"RACE On",purchase,1.0,0 -94234855,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -94234855,"STCC The Game",purchase,1.0,0 -224853414,"Dota 2",purchase,1.0,0 -224853414,"Dota 2",play,4.7,0 -189304702,"Counter-Strike Nexon Zombies",purchase,1.0,0 -189304702,"Counter-Strike Nexon Zombies",play,190.0,0 -189304702,"Warframe",purchase,1.0,0 -189304702,"Warframe",play,74.0,0 -189304702,"Counter-Strike Global Offensive",purchase,1.0,0 -189304702,"Counter-Strike Global Offensive",play,61.0,0 -189304702,"Unturned",purchase,1.0,0 -189304702,"Unturned",play,43.0,0 -189304702,"Dota 2",purchase,1.0,0 -189304702,"Dota 2",play,30.0,0 -189304702,"Robocraft",purchase,1.0,0 -189304702,"Robocraft",play,13.4,0 -189304702,"Guns and Robots",purchase,1.0,0 -189304702,"Guns and Robots",play,9.5,0 -189304702,"Block N Load",purchase,1.0,0 -189304702,"Block N Load",play,3.2,0 -189304702,"Neverwinter",purchase,1.0,0 -189304702,"Neverwinter",play,2.7,0 -189304702,"Realm of the Mad God",purchase,1.0,0 -189304702,"Realm of the Mad God",play,2.3,0 -189304702,"Brawlhalla",purchase,1.0,0 -189304702,"Brawlhalla",play,1.9,0 -189304702,"Infinite Crisis",purchase,1.0,0 -189304702,"Infinite Crisis",play,1.3,0 -189304702,"Gotham City Impostors Free To Play",purchase,1.0,0 -189304702,"Gotham City Impostors Free To Play",play,1.0,0 -189304702,"GunZ 2 The Second Duel",purchase,1.0,0 -189304702,"GunZ 2 The Second Duel",play,0.5,0 -189304702,"BLOCKADE 3D",purchase,1.0,0 -189304702,"BLOCKADE 3D",play,0.4,0 -189304702,"Team Fortress 2",purchase,1.0,0 -189304702,"Team Fortress 2",play,0.4,0 -189304702,"Nosgoth",purchase,1.0,0 -189304702,"Nosgoth",play,0.3,0 -189304702,"Run and Fire",purchase,1.0,0 -189304702,"Fallen Earth",purchase,1.0,0 -189304702,"Heroes & Generals",purchase,1.0,0 -189304702,"Loadout",purchase,1.0,0 -189304702,"Marvel Heroes 2015",purchase,1.0,0 -189304702,"Survarium",purchase,1.0,0 -189304702,"theHunter",purchase,1.0,0 -189304702,"War of the Roses",purchase,1.0,0 -276567244,"Unturned",purchase,1.0,0 -276567244,"Unturned",play,26.0,0 -276567244,"ARK Survival Evolved",purchase,1.0,0 -276567244,"ARK Survival Evolved",play,0.2,0 -187737814,"Dota 2",purchase,1.0,0 -187737814,"Dota 2",play,9.0,0 -124059151,"The Elder Scrolls V Skyrim",purchase,1.0,0 -124059151,"The Elder Scrolls V Skyrim",play,235.0,0 -124059151,"Fallout 4",purchase,1.0,0 -124059151,"Fallout 4",play,64.0,0 -124059151,"Hatoful Boyfriend",purchase,1.0,0 -124059151,"Hatoful Boyfriend",play,12.4,0 -124059151,"Spore",purchase,1.0,0 -124059151,"Spore",play,10.3,0 -124059151,"Bastion",purchase,1.0,0 -124059151,"Bastion",play,7.2,0 -124059151,"Brothers - A Tale of Two Sons",purchase,1.0,0 -124059151,"Brothers - A Tale of Two Sons",play,4.2,0 -124059151,"Goat Simulator",purchase,1.0,0 -124059151,"Goat Simulator",play,2.3,0 -124059151,"Chivalry Medieval Warfare",purchase,1.0,0 -124059151,"Chivalry Medieval Warfare",play,1.9,0 -124059151,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -124059151,"Dragon Age Origins - Ultimate Edition",play,1.9,0 -124059151,"Fallout New Vegas",purchase,1.0,0 -124059151,"Fallout New Vegas",play,1.6,0 -124059151,"Putt-Putt Travels Through Time",purchase,1.0,0 -124059151,"Putt-Putt Travels Through Time",play,1.3,0 -124059151,"Putt-Putt Joins the Circus",purchase,1.0,0 -124059151,"Putt-Putt Joins the Circus",play,1.3,0 -124059151,"Putt-Putt Saves the Zoo",purchase,1.0,0 -124059151,"Putt-Putt Saves the Zoo",play,0.6,0 -124059151,"Project Zomboid",purchase,1.0,0 -124059151,"Project Zomboid",play,0.4,0 -124059151,"Anno 2070",purchase,1.0,0 -124059151,"Anno 2070",play,0.1,0 -124059151,"Putt-Putt and Pep's Dog on a Stick",purchase,1.0,0 -124059151,"Amnesia The Dark Descent",purchase,1.0,0 -124059151,"Beyond Eyes",purchase,1.0,0 -124059151,"BioShock",purchase,1.0,0 -124059151,"BioShock 2",purchase,1.0,0 -124059151,"BioShock Infinite",purchase,1.0,0 -124059151,"Borderlands",purchase,1.0,0 -124059151,"Borderlands 2",purchase,1.0,0 -124059151,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -124059151,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -124059151,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -124059151,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -124059151,"Bound By Flame",purchase,1.0,0 -124059151,"Child of Light",purchase,1.0,0 -124059151,"Dream",purchase,1.0,0 -124059151,"Duke Nukem Forever",purchase,1.0,0 -124059151,"Eador. Masters of the Broken World",purchase,1.0,0 -124059151,"Earth Defense Force Insect Armageddon",purchase,1.0,0 -124059151,"Fable Anniversary",purchase,1.0,0 -124059151,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -124059151,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -124059151,"Fallout New Vegas Dead Money",purchase,1.0,0 -124059151,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -124059151,"Far Cry",purchase,1.0,0 -124059151,"Far Cry 2",purchase,1.0,0 -124059151,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -124059151,"Far Cry 4",purchase,1.0,0 -124059151,"Far Cry 3",purchase,1.0,0 -124059151,"Far Cry 3 Blood Dragon",purchase,1.0,0 -124059151,"FINAL FANTASY TYPE-0 HD",purchase,1.0,0 -124059151,"FINAL FANTASY VII",purchase,1.0,0 -124059151,"FINAL FANTASY XIII",purchase,1.0,0 -124059151,"Freddi Fish 2 The Case of the Haunted Schoolhouse",purchase,1.0,0 -124059151,"Freddi Fish 3 The Case of the Stolen Conch Shell",purchase,1.0,0 -124059151,"Freddi Fish 4 The Case of the Hogfish Rustlers of Briny Gulch",purchase,1.0,0 -124059151,"Freddi Fish 5 The Case of the Creature of Coral Cove",purchase,1.0,0 -124059151,"Freddi Fish and Luther's Maze Madness",purchase,1.0,0 -124059151,"Freddi Fish and Luther's Water Worries",purchase,1.0,0 -124059151,"Freddi Fish and The Case of the Missing Kelp Seeds",purchase,1.0,0 -124059151,"Grand Theft Auto San Andreas",purchase,1.0,0 -124059151,"Grand Theft Auto San Andreas",purchase,1.0,0 -124059151,"Grand Theft Auto IV",purchase,1.0,0 -124059151,"LIMBO",purchase,1.0,0 -124059151,"Loadout",purchase,1.0,0 -124059151,"Mafia II",purchase,1.0,0 -124059151,"Middle-earth Shadow of Mordor",purchase,1.0,0 -124059151,"Mount & Blade Warband",purchase,1.0,0 -124059151,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -124059151,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",purchase,1.0,0 -124059151,"Never Alone (Kisima Ingitchuna)",purchase,1.0,0 -124059151,"Never Alone Original Soundtrack",purchase,1.0,0 -124059151,"Ori and the Blind Forest",purchase,1.0,0 -124059151,"Patch testing for Chivalry",purchase,1.0,0 -124059151,"Putt-Putt Pep's Birthday Surprise",purchase,1.0,0 -124059151,"Putt-Putt and Fatty Bear's Activity Pack",purchase,1.0,0 -124059151,"Putt-Putt and Pep's Balloon-o-Rama",purchase,1.0,0 -124059151,"Putt-Putt Enters the Race",purchase,1.0,0 -124059151,"Putt-Putt Goes to the Moon",purchase,1.0,0 -124059151,"Putt-Putt Joins the Parade",purchase,1.0,0 -124059151,"RPG Maker VX Ace",purchase,1.0,0 -124059151,"Sid Meier's Ace Patrol",purchase,1.0,0 -124059151,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -124059151,"Sid Meier's Civilization III Complete",purchase,1.0,0 -124059151,"Sid Meier's Civilization IV",purchase,1.0,0 -124059151,"Sid Meier's Civilization IV",purchase,1.0,0 -124059151,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -124059151,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -124059151,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -124059151,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -124059151,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -124059151,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -124059151,"Sid Meier's Civilization V",purchase,1.0,0 -124059151,"Sid Meier's Pirates!",purchase,1.0,0 -124059151,"Sid Meier's Railroads!",purchase,1.0,0 -124059151,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -124059151,"Sparkle 2 Evo",purchase,1.0,0 -124059151,"Spec Ops The Line",purchase,1.0,0 -124059151,"SpeedRunners",purchase,1.0,0 -124059151,"Spore Creepy & Cute Parts Pack",purchase,1.0,0 -124059151,"Spore Galactic Adventures",purchase,1.0,0 -124059151,"TERA",purchase,1.0,0 -124059151,"The Banner Saga",purchase,1.0,0 -124059151,"The Banner Saga - Mod Content",purchase,1.0,0 -124059151,"The Bureau XCOM Declassified",purchase,1.0,0 -124059151,"The Darkness II",purchase,1.0,0 -124059151,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -124059151,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -124059151,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -124059151,"The Forest",purchase,1.0,0 -124059151,"The Talos Principle",purchase,1.0,0 -124059151,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -124059151,"The Witcher 3 Wild Hunt",purchase,1.0,0 -124059151,"The Witcher Enhanced Edition",purchase,1.0,0 -124059151,"Thief",purchase,1.0,0 -124059151,"Thief - Ghost",purchase,1.0,0 -124059151,"Thief - Opportunist",purchase,1.0,0 -124059151,"Thief - Predator",purchase,1.0,0 -124059151,"Thief - The Bank Heist",purchase,1.0,0 -124059151,"Thief 2",purchase,1.0,0 -124059151,"Thief Deadly Shadows",purchase,1.0,0 -124059151,"Thief Gold",purchase,1.0,0 -124059151,"Transistor",purchase,1.0,0 -124059151,"XCOM Enemy Unknown",purchase,1.0,0 -305889009,"Dota 2",purchase,1.0,0 -305889009,"Dota 2",play,15.7,0 -164629829,"Dota 2",purchase,1.0,0 -164629829,"Dota 2",play,0.2,0 -155706294,"The Mighty Quest For Epic Loot",purchase,1.0,0 -155706294,"The Mighty Quest For Epic Loot",play,25.0,0 -149920224,"Dota 2",purchase,1.0,0 -149920224,"Dota 2",play,939.0,0 -149920224,"Warframe",purchase,1.0,0 -149920224,"Warframe",play,193.0,0 -149920224,"Team Fortress 2",purchase,1.0,0 -149920224,"Team Fortress 2",play,59.0,0 -149920224,"Counter-Strike Global Offensive",purchase,1.0,0 -149920224,"Counter-Strike Global Offensive",play,57.0,0 -149920224,"Don't Starve",purchase,1.0,0 -149920224,"Don't Starve",play,52.0,0 -149920224,"Unturned",purchase,1.0,0 -149920224,"Unturned",play,47.0,0 -149920224,"Fistful of Frags",purchase,1.0,0 -149920224,"Fistful of Frags",play,29.0,0 -149920224,"Don't Starve Together Beta",purchase,1.0,0 -149920224,"Don't Starve Together Beta",play,24.0,0 -149920224,"Styx Master of Shadows",purchase,1.0,0 -149920224,"Styx Master of Shadows",play,20.0,0 -149920224,"SMITE",purchase,1.0,0 -149920224,"SMITE",play,16.7,0 -149920224,"AirMech",purchase,1.0,0 -149920224,"AirMech",play,13.9,0 -149920224,"Neverwinter",purchase,1.0,0 -149920224,"Neverwinter",play,13.5,0 -149920224,"Loadout",purchase,1.0,0 -149920224,"Loadout",play,8.7,0 -149920224,"Ace of Spades",purchase,1.0,0 -149920224,"Ace of Spades",play,7.7,0 -149920224,"Borderlands",purchase,1.0,0 -149920224,"Borderlands",play,7.0,0 -149920224,"Magicka Wizard Wars",purchase,1.0,0 -149920224,"Magicka Wizard Wars",play,6.8,0 -149920224,"Nosgoth",purchase,1.0,0 -149920224,"Nosgoth",play,6.2,0 -149920224,"Trove",purchase,1.0,0 -149920224,"Trove",play,4.9,0 -149920224,"Castle Crashers",purchase,1.0,0 -149920224,"Castle Crashers",play,4.9,0 -149920224,"PAYDAY 2",purchase,1.0,0 -149920224,"PAYDAY 2",play,4.1,0 -149920224,"Mortal Kombat Komplete Edition",purchase,1.0,0 -149920224,"Mortal Kombat Komplete Edition",play,3.6,0 -149920224,"Portal 2",purchase,1.0,0 -149920224,"Portal 2",play,3.3,0 -149920224,"Garry's Mod",purchase,1.0,0 -149920224,"Garry's Mod",play,2.7,0 -149920224,"Heroes & Generals",purchase,1.0,0 -149920224,"Heroes & Generals",play,2.0,0 -149920224,"Mortal Kombat X",purchase,1.0,0 -149920224,"Mortal Kombat X",play,1.3,0 -149920224,"Robocraft",purchase,1.0,0 -149920224,"Robocraft",play,1.1,0 -149920224,"Dead Island Riptide",purchase,1.0,0 -149920224,"Dead Island Riptide",play,1.1,0 -149920224,"King's Bounty Armored Princess",purchase,1.0,0 -149920224,"King's Bounty Armored Princess",play,0.9,0 -149920224,"Moonbase Alpha",purchase,1.0,0 -149920224,"Moonbase Alpha",play,0.4,0 -149920224,"Caster",purchase,1.0,0 -149920224,"Caster",play,0.3,0 -149920224,"Fallout 3",purchase,1.0,0 -149920224,"Absconding Zatwor",purchase,1.0,0 -149920224,"Counter-Strike",purchase,1.0,0 -149920224,"Counter-Strike Condition Zero",purchase,1.0,0 -149920224,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -149920224,"Counter-Strike Source",purchase,1.0,0 -149920224,"Dead Island",purchase,1.0,0 -149920224,"Dead Island Epidemic",purchase,1.0,0 -149920224,"Don't Starve Shipwrecked",purchase,1.0,0 -149920224,"Don't Starve Reign of Giants",purchase,1.0,0 -149920224,"Dragon Nest Europe",purchase,1.0,0 -149920224,"Enclave",purchase,1.0,0 -149920224,"Eron",purchase,1.0,0 -149920224,"Firefall",purchase,1.0,0 -149920224,"Flesh Eaters",purchase,1.0,0 -149920224,"King's Bounty Crossworlds",purchase,1.0,0 -149920224,"King's Bounty The Legend",purchase,1.0,0 -149920224,"No More Room in Hell",purchase,1.0,0 -149920224,"Rooms The Main Building",purchase,1.0,0 -149920224,"theHunter",purchase,1.0,0 -149920224,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -149920224,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -198261883,"Counter-Strike Global Offensive",purchase,1.0,0 -198261883,"Counter-Strike Global Offensive",play,435.0,0 -198261883,"GunZ 2 The Second Duel",purchase,1.0,0 -287193260,"Dota 2",purchase,1.0,0 -287193260,"Dota 2",play,144.0,0 -296394954,"Dota 2",purchase,1.0,0 -296394954,"Dota 2",play,2.2,0 -205757975,"Dota 2",purchase,1.0,0 -205757975,"Dota 2",play,0.5,0 -196974297,"Loadout",purchase,1.0,0 -161659407,"Sid Meier's Civilization V",purchase,1.0,0 -161659407,"Sid Meier's Civilization V",play,130.0,0 -161659407,"Sid Meier's Civilization III Complete",purchase,1.0,0 -161659407,"Sid Meier's Civilization III Complete",play,60.0,0 -161659407,"Sid Meier's Civilization IV",purchase,1.0,0 -161659407,"Sid Meier's Civilization IV",play,42.0,0 -161659407,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -161659407,"Sid Meier's Civilization IV Beyond the Sword",play,41.0,0 -161659407,"Rome Total War",purchase,1.0,0 -161659407,"Rome Total War",play,29.0,0 -161659407,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -161659407,"Star Wars - Jedi Knight II Jedi Outcast",play,19.3,0 -161659407,"Nancy Drew The White Wolf of Icicle Creek",purchase,1.0,0 -161659407,"Nancy Drew The White Wolf of Icicle Creek",play,13.3,0 -161659407,"Star Wars - Battlefront II",purchase,1.0,0 -161659407,"Star Wars - Battlefront II",play,10.2,0 -161659407,"Memoir '44 Online",purchase,1.0,0 -161659407,"Memoir '44 Online",play,8.1,0 -161659407,"Full Spectrum Warrior Ten Hammers",purchase,1.0,0 -161659407,"Full Spectrum Warrior Ten Hammers",play,6.9,0 -161659407,"Nancy Drew Curse of Blackmoor Manor ",purchase,1.0,0 -161659407,"Nancy Drew Curse of Blackmoor Manor ",play,6.7,0 -161659407,"Age of Empires II HD Edition",purchase,1.0,0 -161659407,"Age of Empires II HD Edition",play,5.8,0 -161659407,"Nancy Drew Secrets can Kill",purchase,1.0,0 -161659407,"Nancy Drew Secrets can Kill",play,3.8,0 -161659407,"Nancy Drew Secret of the Scarlet Hand ",purchase,1.0,0 -161659407,"Nancy Drew Secret of the Scarlet Hand ",play,3.5,0 -161659407,"Delta Force 2",purchase,1.0,0 -161659407,"Delta Force 2",play,3.3,0 -161659407,"Indiana Jones and the Fate of Atlantis",purchase,1.0,0 -161659407,"Indiana Jones and the Fate of Atlantis",play,3.1,0 -161659407,"Fallout",purchase,1.0,0 -161659407,"Fallout",play,2.8,0 -161659407,"The Kings' Crusade",purchase,1.0,0 -161659407,"The Kings' Crusade",play,2.7,0 -161659407,"Car Mechanic Simulator 2014",purchase,1.0,0 -161659407,"Car Mechanic Simulator 2014",play,2.2,0 -161659407,"Street Racing Syndicate",purchase,1.0,0 -161659407,"Street Racing Syndicate",play,1.9,0 -161659407,"Indiana Jones and the Last Crusade",purchase,1.0,0 -161659407,"Indiana Jones and the Last Crusade",play,1.5,0 -161659407,"Heroes & Generals",purchase,1.0,0 -161659407,"Heroes & Generals",play,0.6,0 -161659407,"Battle Islands",purchase,1.0,0 -161659407,"Battle Islands",play,0.6,0 -161659407,"theHunter",purchase,1.0,0 -161659407,"theHunter",play,0.1,0 -161659407,"Arma Gold Edition",purchase,1.0,0 -161659407,"Brothers in Arms Road to Hill 30",purchase,1.0,0 -161659407,"Loom",purchase,1.0,0 -161659407,"Sid Meier's Civilization IV",purchase,1.0,0 -161659407,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -161659407,"The Dig",purchase,1.0,0 -161659407,"The Lord of the Rings Online",purchase,1.0,0 -151264009,"Dota 2",purchase,1.0,0 -151264009,"Dota 2",play,0.8,0 -131203306,"Dota 2",purchase,1.0,0 -131203306,"Dota 2",play,0.5,0 -116637302,"Team Fortress 2",purchase,1.0,0 -116637302,"Team Fortress 2",play,0.2,0 -186214948,"Unturned",purchase,1.0,0 -186214948,"Unturned",play,1.1,0 -166639984,"Path of Exile",purchase,1.0,0 -166639984,"Path of Exile",play,428.0,0 -166639984,"RaiderZ",purchase,1.0,0 -166639984,"RaiderZ",play,11.1,0 -166639984,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -166639984,"Archeblade",purchase,1.0,0 -166639984,"Blacklight Retribution",purchase,1.0,0 -166639984,"C9",purchase,1.0,0 -166639984,"Dragon's Prophet (EU)",purchase,1.0,0 -166639984,"Global Agenda",purchase,1.0,0 -166639984,"Gotham City Impostors Free To Play",purchase,1.0,0 -166639984,"Haunted Memories",purchase,1.0,0 -166639984,"PlanetSide 2",purchase,1.0,0 -166639984,"Ragnarok Online - Free to Play - European Version",purchase,1.0,0 -166639984,"Ragnarok Online 2",purchase,1.0,0 -166639984,"RIFT",purchase,1.0,0 -166639984,"Tactical Intervention",purchase,1.0,0 -166639984,"Unturned",purchase,1.0,0 -100741663,"Half-Life 2",purchase,1.0,0 -100741663,"Half-Life 2",play,18.1,0 -100741663,"Half-Life",purchase,1.0,0 -100741663,"Half-Life",play,15.0,0 -100741663,"Rome Total War",purchase,1.0,0 -100741663,"Rome Total War",play,7.9,0 -100741663,"Portal 2",purchase,1.0,0 -100741663,"Portal 2",play,7.8,0 -100741663,"Half-Life 2 Episode Two",purchase,1.0,0 -100741663,"Half-Life 2 Episode Two",play,5.1,0 -100741663,"Half-Life 2 Episode One",purchase,1.0,0 -100741663,"Half-Life 2 Episode One",play,4.9,0 -100741663,"Star Wars - Battlefront II",purchase,1.0,0 -100741663,"Star Wars - Battlefront II",play,3.3,0 -100741663,"Portal",purchase,1.0,0 -100741663,"Portal",play,2.6,0 -100741663,"Star Wars Republic Commando",purchase,1.0,0 -100741663,"Star Wars Republic Commando",play,2.5,0 -100741663,"Borderlands",purchase,1.0,0 -100741663,"Borderlands",play,1.8,0 -100741663,"Empire Total War",purchase,1.0,0 -100741663,"Empire Total War",play,1.2,0 -100741663,"Age of Empires II HD Edition",purchase,1.0,0 -100741663,"Age of Empires II HD Edition",play,0.9,0 -100741663,"Medieval II Total War",purchase,1.0,0 -100741663,"Medieval II Total War",play,0.5,0 -100741663,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -100741663,"Batman Arkham Asylum GOTY Edition",play,0.5,0 -100741663,"Batman Arkham City GOTY",purchase,1.0,0 -100741663,"Batman Arkham City",purchase,1.0,0 -100741663,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -100741663,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -100741663,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -100741663,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -100741663,"Gotham City Impostors",purchase,1.0,0 -100741663,"Gotham City Impostors Free To Play",purchase,1.0,0 -100741663,"Half-Life 2 Deathmatch",purchase,1.0,0 -100741663,"Half-Life 2 Lost Coast",purchase,1.0,0 -100741663,"Half-Life Deathmatch Source",purchase,1.0,0 -100741663,"LEGO Batman 2",purchase,1.0,0 -100741663,"Medieval II Total War Kingdoms",purchase,1.0,0 -100741663,"Napoleon Total War",purchase,1.0,0 -100741663,"Rome Total War - Alexander",purchase,1.0,0 -62481936,"Fallout 4",purchase,1.0,0 -62481936,"Fallout 4",play,62.0,0 -62481936,"RAGE",purchase,1.0,0 -62481936,"RAGE",play,39.0,0 -62481936,"Metro 2033",purchase,1.0,0 -62481936,"Metro 2033",play,35.0,0 -62481936,"Deus Ex Human Revolution",purchase,1.0,0 -62481936,"Deus Ex Human Revolution",play,35.0,0 -62481936,"Natural Selection 2",purchase,1.0,0 -62481936,"Natural Selection 2",play,32.0,0 -62481936,"Project Zomboid",purchase,1.0,0 -62481936,"Project Zomboid",play,16.2,0 -62481936,"DOOM 3 BFG Edition",purchase,1.0,0 -62481936,"DOOM 3 BFG Edition",play,10.9,0 -62481936,"Hatred",purchase,1.0,0 -62481936,"Hatred",play,7.7,0 -62481936,"Orcs Must Die! 2",purchase,1.0,0 -62481936,"Orcs Must Die! 2",play,1.6,0 -62481936,"Darksiders",purchase,1.0,0 -62481936,"Darksiders II",purchase,1.0,0 -62481936,"Darksiders II Deathinitive Edition",purchase,1.0,0 -62481936,"Darksiders II Soundtrack",purchase,1.0,0 -62481936,"Darksiders Soundtrack",purchase,1.0,0 -62481936,"Keep Talking and Nobody Explodes",purchase,1.0,0 -62481936,"Kung Fury",purchase,1.0,0 -199985422,"Dota 2",purchase,1.0,0 -199985422,"Dota 2",play,64.0,0 -207319088,"Dota 2",purchase,1.0,0 -207319088,"Dota 2",play,0.5,0 -277294176,"UberStrike",purchase,1.0,0 -46397411,"Left 4 Dead",purchase,1.0,0 -46397411,"Left 4 Dead",play,32.0,0 -46397411,"Team Fortress 2",purchase,1.0,0 -46397411,"Team Fortress 2",play,2.8,0 -46397411,"Car Mechanic Simulator 2014",purchase,1.0,0 -46397411,"Car Mechanic Simulator 2014",play,0.2,0 -46397411,"Half-Life 2 Deathmatch",purchase,1.0,0 -46397411,"Half-Life 2 Deathmatch",play,0.2,0 -46397411,"Infested Planet",purchase,1.0,0 -46397411,"Half-Life 2 Lost Coast",purchase,1.0,0 -244445520,"Garry's Mod",purchase,1.0,0 -244445520,"Garry's Mod",play,19.0,0 -244445520,"Team Fortress 2",purchase,1.0,0 -244445520,"Team Fortress 2",play,13.7,0 -244445520,"Double Action Boogaloo",purchase,1.0,0 -244445520,"Double Action Boogaloo",play,3.7,0 -244445520,"Unturned",purchase,1.0,0 -244445520,"Unturned",play,2.5,0 -244445520,"Construct 2 Free",purchase,1.0,0 -244445520,"Construct 2 Free",play,1.4,0 -244445520,"BLOCKADE 3D",purchase,1.0,0 -244445520,"BLOCKADE 3D",play,1.1,0 -244445520,"Deadpool",purchase,1.0,0 -244445520,"Deadpool",play,1.0,0 -244445520,"OCEAN CITY RACING",purchase,1.0,0 -244445520,"OCEAN CITY RACING",play,0.5,0 -244445520,"7 Days to Die",purchase,1.0,0 -244445520,"7 Days to Die",play,0.4,0 -244445520,"Star Wars - Battlefront II",purchase,1.0,0 -244445520,"Star Wars - Battlefront II",play,0.4,0 -244445520,"Gunscape",purchase,1.0,0 -244445520,"Gunscape",play,0.3,0 -244445520,"DCS World",purchase,1.0,0 -244445520,"DCS World",play,0.2,0 -244445520,"The Way of Life Free Edition",purchase,1.0,0 -244445520,"The Way of Life Free Edition",play,0.2,0 -244445520,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -244445520,"Boring Man - Online Tactical Stickman Combat",play,0.2,0 -244445520,"Tactical Intervention",purchase,1.0,0 -244445520,"Heroes & Generals",purchase,1.0,0 -244445520,"Modular Combat",purchase,1.0,0 -244445520,"No More Room in Hell",purchase,1.0,0 -244445520,"Dizzel",purchase,1.0,0 -244445520,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -154393235,"Dota 2",purchase,1.0,0 -154393235,"Dota 2",play,107.0,0 -84948626,"Duke Nukem",purchase,1.0,0 -206440537,"Unturned",purchase,1.0,0 -206440537,"HAWKEN",purchase,1.0,0 -206440537,"Loadout",purchase,1.0,0 -206440537,"PlanetSide 2",purchase,1.0,0 -206440537,"War Thunder",purchase,1.0,0 -147551308,"Dota 2",purchase,1.0,0 -147551308,"Dota 2",play,302.0,0 -147551308,"Robocraft",purchase,1.0,0 -139494513,"Dota 2",purchase,1.0,0 -139494513,"Dota 2",play,1.0,0 -217492717,"Dota 2",purchase,1.0,0 -217492717,"Dota 2",play,0.5,0 -192886504,"Dota 2",purchase,1.0,0 -192886504,"Dota 2",play,45.0,0 -106579434,"Sid Meier's Civilization V",purchase,1.0,0 -106579434,"Sid Meier's Civilization V",play,148.0,0 -102740003,"Dota 2",purchase,1.0,0 -102740003,"Dota 2",play,45.0,0 -45977895,"Napoleon Total War",purchase,1.0,0 -45977895,"Napoleon Total War",play,19.4,0 -111003065,"Counter-Strike Global Offensive",purchase,1.0,0 -111003065,"Counter-Strike Global Offensive",play,950.0,0 -111003065,"PAYDAY 2",purchase,1.0,0 -111003065,"PAYDAY 2",play,69.0,0 -111003065,"Far Cry 3",purchase,1.0,0 -111003065,"Far Cry 3",play,28.0,0 -111003065,"Devilian",purchase,1.0,0 -111003065,"Devilian",play,10.8,0 -111003065,"Piercing Blow",purchase,1.0,0 -111003065,"Piercing Blow",play,9.4,0 -111003065,"Call of Duty Modern Warfare 2",purchase,1.0,0 -111003065,"Call of Duty Modern Warfare 2",play,2.3,0 -111003065,"Assassin's Creed",purchase,1.0,0 -111003065,"Assassin's Creed",play,1.1,0 -111003065,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -111003065,"S.K.I.L.L. - Special Force 2",play,1.0,0 -111003065,"Worms Revolution",purchase,1.0,0 -111003065,"Worms Revolution",play,0.7,0 -111003065,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -111003065,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.7,0 -111003065,"ONE PIECE PIRATE WARRIORS 3",purchase,1.0,0 -111003065,"ONE PIECE PIRATE WARRIORS 3",play,0.6,0 -111003065,"War Thunder",purchase,1.0,0 -111003065,"War Thunder",play,0.1,0 -111003065,"Assassin's Creed III",purchase,1.0,0 -111003065,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -111003065,"SimCity 4 Deluxe",purchase,1.0,0 -111003065,"Assassin's Creed II",purchase,1.0,0 -164454723,"Team Fortress 2",purchase,1.0,0 -164454723,"Team Fortress 2",play,4.0,0 -164454723,"Dota 2",purchase,1.0,0 -164454723,"Dota 2",play,0.2,0 -39834113,"Team Fortress 2",purchase,1.0,0 -39834113,"Team Fortress 2",play,1012.0,0 -39834113,"Left 4 Dead 2",purchase,1.0,0 -39834113,"Left 4 Dead 2",play,338.0,0 -39834113,"Left 4 Dead",purchase,1.0,0 -39834113,"Left 4 Dead",play,57.0,0 -39834113,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -39834113,"Unreal Tournament 3 Black Edition",play,19.1,0 -39834113,"Counter-Strike Source",purchase,1.0,0 -39834113,"Counter-Strike Source",play,12.3,0 -39834113,"Half-Life",purchase,1.0,0 -39834113,"Half-Life",play,5.6,0 -39834113,"Dirty Bomb",purchase,1.0,0 -39834113,"Dirty Bomb",play,4.9,0 -39834113,"Zombie Panic Source",purchase,1.0,0 -39834113,"Zombie Panic Source",play,4.1,0 -39834113,"Smashball",purchase,1.0,0 -39834113,"Smashball",play,0.6,0 -39834113,"Half-Life 2 Lost Coast",purchase,1.0,0 -39834113,"Half-Life 2 Lost Coast",play,0.2,0 -39834113,"Half-Life 2 Deathmatch",purchase,1.0,0 -39834113,"AdVenture Capitalist",purchase,1.0,0 -39834113,"EVE Online",purchase,1.0,0 -39834113,"Fallen Earth",purchase,1.0,0 -39834113,"Magic Duels",purchase,1.0,0 -39834113,"Moonbase Alpha",purchase,1.0,0 -39834113,"Realm of the Mad God",purchase,1.0,0 -39834113,"Star Trek Online",purchase,1.0,0 -39834113,"Unreal Gold",purchase,1.0,0 -39834113,"Unreal II The Awakening",purchase,1.0,0 -39834113,"Unreal Tournament 2004",purchase,1.0,0 -39834113,"Unreal Tournament Game of the Year Edition",purchase,1.0,0 -247032504,"Dota 2",purchase,1.0,0 -247032504,"Dota 2",play,49.0,0 -247032504,"Unturned",purchase,1.0,0 -247032504,"Unturned",play,0.5,0 -247032504,"Robocraft",purchase,1.0,0 -247032504,"Robocraft",play,0.5,0 -247032504,"Blockstorm",purchase,1.0,0 -247032504,"Blockstorm",play,0.3,0 -247032504,"BLOCKADE 3D",purchase,1.0,0 -49287511,"Counter-Strike Source",purchase,1.0,0 -49287511,"Counter-Strike Source",play,354.0,0 -211020695,"Dota 2",purchase,1.0,0 -211020695,"Dota 2",play,94.0,0 -33434940,"Half-Life 2",purchase,1.0,0 -308098481,"Dota 2",purchase,1.0,0 -308098481,"Dota 2",play,8.7,0 -185268529,"Unturned",purchase,1.0,0 -185268529,"Unturned",play,132.0,0 -185268529,"BLOCKADE 3D",purchase,1.0,0 -185268529,"BLOCKADE 3D",play,7.8,0 -49191483,"Half-Life 2 Deathmatch",purchase,1.0,0 -49191483,"Half-Life 2 Deathmatch",play,658.0,0 -49191483,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -49191483,"Call of Duty Black Ops - Multiplayer",play,4.6,0 -49191483,"Call of Duty Black Ops",purchase,1.0,0 -49191483,"Call of Duty Black Ops",play,4.5,0 -49191483,"Half-Life 2 Lost Coast",purchase,1.0,0 -49191483,"Half-Life 2 Lost Coast",play,0.3,0 -49191483,"Half-Life 2 Episode One",purchase,1.0,0 -49191483,"Half-Life 2 Episode One",play,0.1,0 -49191483,"Half-Life Deathmatch Source",purchase,1.0,0 -49191483,"Half-Life Deathmatch Source",play,0.1,0 -295941603,"Mitos.is The Game",purchase,1.0,0 -295941603,"Mitos.is The Game",play,20.0,0 -295941603,"Clicker Heroes",purchase,1.0,0 -295941603,"Clicker Heroes",play,3.7,0 -295941603,"WARMODE",purchase,1.0,0 -295941603,"WARMODE",play,0.3,0 -295941603,"Astro Lords",purchase,1.0,0 -295941603,"Astro Lords",play,0.2,0 -295941603,"Nyctophilia",purchase,1.0,0 -136092449,"Dota 2",purchase,1.0,0 -136092449,"Dota 2",play,87.0,0 -70381757,"Call of Duty Black Ops",purchase,1.0,0 -70381757,"Call of Duty Black Ops",play,2.2,0 -70381757,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -70381757,"Call of Duty Black Ops - Multiplayer",play,0.9,0 -70381757,"Just Cause 2",purchase,1.0,0 -70381757,"Just Cause 2",play,0.7,0 -27689253,"Counter-Strike",purchase,1.0,0 -27689253,"Counter-Strike",play,37.0,0 -27689253,"Counter-Strike Condition Zero",purchase,1.0,0 -27689253,"Counter-Strike Condition Zero",play,0.7,0 -27689253,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -27689253,"Day of Defeat",purchase,1.0,0 -27689253,"Deathmatch Classic",purchase,1.0,0 -27689253,"Ricochet",purchase,1.0,0 -93697357,"Team Fortress 2",purchase,1.0,0 -93697357,"Team Fortress 2",play,15.4,0 -262076820,"Dota 2",purchase,1.0,0 -262076820,"Dota 2",play,0.9,0 -201353444,"Blacklight Retribution",purchase,1.0,0 -201353444,"Free to Play",purchase,1.0,0 -100767560,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -100767560,"Plants vs. Zombies Game of the Year",play,11.6,0 -263993336,"Left 4 Dead 2",purchase,1.0,0 -263993336,"Left 4 Dead 2",play,11.3,0 -263993336,"Unturned",purchase,1.0,0 -263993336,"Unturned",play,4.3,0 -263993336,"Grand Theft Auto IV",purchase,1.0,0 -263993336,"Grand Theft Auto IV",play,2.3,0 -263993336,"Team Fortress 2",purchase,1.0,0 -263993336,"Team Fortress 2",play,0.1,0 -263993336,"HAWKEN",purchase,1.0,0 -250429116,"Warframe",purchase,1.0,0 -212915541,"Dota 2",purchase,1.0,0 -212915541,"Dota 2",play,1605.0,0 -212915541,"APB Reloaded",purchase,1.0,0 -212915541,"Dirty Bomb",purchase,1.0,0 -212915541,"Epic Arena",purchase,1.0,0 -212915541,"Fishing Planet",purchase,1.0,0 -212915541,"FreeStyle2 Street Basketball",purchase,1.0,0 -212915541,"Loadout",purchase,1.0,0 -212915541,"Magic Duels",purchase,1.0,0 -212915541,"Magicka Wizard Wars",purchase,1.0,0 -212915541,"METAL SLUG DEFENSE",purchase,1.0,0 -212915541,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -212915541,"No More Room in Hell",purchase,1.0,0 -212915541,"Nosgoth",purchase,1.0,0 -212915541,"Path of Exile",purchase,1.0,0 -212915541,"Robocraft",purchase,1.0,0 -212915541,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -212915541,"Trove",purchase,1.0,0 -212915541,"Unturned",purchase,1.0,0 -212915541,"Warframe",purchase,1.0,0 -212915541,"War Inc. Battlezone",purchase,1.0,0 -212647014,"Don't Starve",purchase,1.0,0 -212647014,"Don't Starve Together Beta",purchase,1.0,0 -253282893,"Viridi",purchase,1.0,0 -253282893,"Time Clickers",purchase,1.0,0 -247686933,"Unturned",purchase,1.0,0 -247686933,"Unturned",play,15.6,0 -247686933,"Trove",purchase,1.0,0 -247686933,"Trove",play,7.4,0 -247686933,"Double Action Boogaloo",purchase,1.0,0 -55367062,"The Elder Scrolls V Skyrim",purchase,1.0,0 -55367062,"The Elder Scrolls V Skyrim",play,140.0,0 -55367062,"Torchlight",purchase,1.0,0 -55367062,"Torchlight",play,38.0,0 -55367062,"BioShock Infinite",purchase,1.0,0 -55367062,"BioShock Infinite",play,37.0,0 -55367062,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -55367062,"Sid Meier's Civilization Beyond Earth",play,36.0,0 -55367062,"Craft The World",purchase,1.0,0 -55367062,"Craft The World",play,28.0,0 -55367062,"Don't Starve",purchase,1.0,0 -55367062,"Don't Starve",play,28.0,0 -55367062,"Trials Evolution Gold Edition",purchase,1.0,0 -55367062,"Trials Evolution Gold Edition",play,25.0,0 -55367062,"Reus",purchase,1.0,0 -55367062,"Reus",play,18.9,0 -55367062,"Tomb Raider",purchase,1.0,0 -55367062,"Tomb Raider",play,15.9,0 -55367062,"Hero Siege",purchase,1.0,0 -55367062,"Hero Siege",play,15.8,0 -55367062,"Crysis",purchase,1.0,0 -55367062,"Crysis",play,15.2,0 -55367062,"Bastion",purchase,1.0,0 -55367062,"Bastion",play,13.8,0 -55367062,"Sid Meier's Civilization V",purchase,1.0,0 -55367062,"Sid Meier's Civilization V",play,13.7,0 -55367062,"Ori and the Blind Forest",purchase,1.0,0 -55367062,"Ori and the Blind Forest",play,12.2,0 -55367062,"Infested Planet",purchase,1.0,0 -55367062,"Infested Planet",play,11.3,0 -55367062,"Sunless Sea",purchase,1.0,0 -55367062,"Sunless Sea",play,10.4,0 -55367062,"Anno 2070",purchase,1.0,0 -55367062,"Anno 2070",play,10.2,0 -55367062,"Batman Arkham City GOTY",purchase,1.0,0 -55367062,"Batman Arkham City GOTY",play,9.6,0 -55367062,"Tales of Zestiria",purchase,1.0,0 -55367062,"Tales of Zestiria",play,8.9,0 -55367062,"SteamWorld Dig",purchase,1.0,0 -55367062,"SteamWorld Dig",play,8.4,0 -55367062,"Torchlight II",purchase,1.0,0 -55367062,"Torchlight II",play,8.1,0 -55367062,"Far Cry 3",purchase,1.0,0 -55367062,"Far Cry 3",play,6.8,0 -55367062,"FTL Faster Than Light",purchase,1.0,0 -55367062,"FTL Faster Than Light",play,6.2,0 -55367062,"The Evil Within",purchase,1.0,0 -55367062,"The Evil Within",play,6.0,0 -55367062,"Offworld Trading Company",purchase,1.0,0 -55367062,"Offworld Trading Company",play,5.3,0 -55367062,"LIMBO",purchase,1.0,0 -55367062,"LIMBO",play,4.4,0 -55367062,"Brothers - A Tale of Two Sons",purchase,1.0,0 -55367062,"Brothers - A Tale of Two Sons",play,4.3,0 -55367062,"The Cave",purchase,1.0,0 -55367062,"The Cave",play,4.2,0 -55367062,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -55367062,"Fallout 3 - Game of the Year Edition",play,4.2,0 -55367062,"Deadlight",purchase,1.0,0 -55367062,"Deadlight",play,4.0,0 -55367062,"Dust An Elysian Tail",purchase,1.0,0 -55367062,"Dust An Elysian Tail",play,3.3,0 -55367062,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -55367062,"Dark Souls Prepare to Die Edition",play,2.5,0 -55367062,"Port Royale 3",purchase,1.0,0 -55367062,"Port Royale 3",play,2.4,0 -55367062,"FEZ",purchase,1.0,0 -55367062,"FEZ",play,2.2,0 -55367062,"This War of Mine",purchase,1.0,0 -55367062,"This War of Mine",play,1.6,0 -55367062,"Lost Planet 3",purchase,1.0,0 -55367062,"Lost Planet 3",play,1.5,0 -55367062,"Metro Last Light",purchase,1.0,0 -55367062,"Metro Last Light",play,1.5,0 -55367062,"Teslagrad",purchase,1.0,0 -55367062,"Teslagrad",play,1.4,0 -55367062,"The Long Dark",purchase,1.0,0 -55367062,"The Long Dark",play,1.3,0 -55367062,"DiRT 3",purchase,1.0,0 -55367062,"DiRT 3",play,1.2,0 -55367062,"Planet Explorers",purchase,1.0,0 -55367062,"Planet Explorers",play,1.2,0 -55367062,"Borderlands 2",purchase,1.0,0 -55367062,"Borderlands 2",play,1.1,0 -55367062,"Rochard",purchase,1.0,0 -55367062,"Rochard",play,1.1,0 -55367062,"Kerbal Space Program",purchase,1.0,0 -55367062,"Kerbal Space Program",play,1.0,0 -55367062,"Max The Curse of Brotherhood",purchase,1.0,0 -55367062,"Max The Curse of Brotherhood",play,0.9,0 -55367062,"Far Cry 2",purchase,1.0,0 -55367062,"Far Cry 2",play,0.9,0 -55367062,"Giana Sisters Twisted Dreams",purchase,1.0,0 -55367062,"Giana Sisters Twisted Dreams",play,0.9,0 -55367062,"Mark of the Ninja",purchase,1.0,0 -55367062,"Mark of the Ninja",play,0.9,0 -55367062,"Among the Sleep",purchase,1.0,0 -55367062,"Among the Sleep",play,0.8,0 -55367062,"Pid ",purchase,1.0,0 -55367062,"Pid ",play,0.7,0 -55367062,"Mortal Kombat Komplete Edition",purchase,1.0,0 -55367062,"Mortal Kombat Komplete Edition",play,0.5,0 -55367062,"Need for Speed Hot Pursuit",purchase,1.0,0 -55367062,"Need for Speed Hot Pursuit",play,0.5,0 -55367062,"Nihilumbra",purchase,1.0,0 -55367062,"Nihilumbra",play,0.5,0 -55367062,"FORCED",purchase,1.0,0 -55367062,"FORCED",play,0.5,0 -55367062,"Trine 2",purchase,1.0,0 -55367062,"Trine 2",play,0.4,0 -55367062,"Planetary Annihilation",purchase,1.0,0 -55367062,"Planetary Annihilation",play,0.4,0 -55367062,"Blackguards",purchase,1.0,0 -55367062,"Blackguards",play,0.4,0 -55367062,"Road Not Taken",purchase,1.0,0 -55367062,"Road Not Taken",play,0.4,0 -55367062,"Just Cause 2",purchase,1.0,0 -55367062,"Just Cause 2",play,0.3,0 -55367062,"Never Alone (Kisima Ingitchuna)",purchase,1.0,0 -55367062,"Never Alone (Kisima Ingitchuna)",play,0.3,0 -55367062,"Alan Wake",purchase,1.0,0 -55367062,"Alan Wake",play,0.3,0 -55367062,"Super Meat Boy",purchase,1.0,0 -55367062,"Super Meat Boy",play,0.3,0 -55367062,"To the Moon",purchase,1.0,0 -55367062,"To the Moon",play,0.3,0 -55367062,"The Swapper",purchase,1.0,0 -55367062,"The Swapper",play,0.2,0 -55367062,"Divinity Original Sin",purchase,1.0,0 -55367062,"Divinity Original Sin",play,0.2,0 -55367062,"TRI Of Friendship and Madness",purchase,1.0,0 -55367062,"TRI Of Friendship and Madness",play,0.2,0 -55367062,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -55367062,"Batman Arkham Asylum GOTY Edition",play,0.2,0 -55367062,"Portal 2",purchase,1.0,0 -55367062,"Portal 2",play,0.2,0 -55367062,"Call of Juarez Gunslinger",purchase,1.0,0 -55367062,"Call of Juarez Gunslinger",play,0.2,0 -55367062,"Shadowrun Returns",purchase,1.0,0 -55367062,"Shadowrun Returns",play,0.1,0 -55367062,"Shovel Knight",purchase,1.0,0 -55367062,"Shovel Knight",play,0.1,0 -55367062,"Metro 2033",purchase,1.0,0 -55367062,"Metro 2033",play,0.1,0 -55367062,"Dungeon of the Endless",purchase,1.0,0 -55367062,"Dungeon of the Endless",play,0.1,0 -55367062,"Skullgirls",purchase,1.0,0 -55367062,"Skullgirls",play,0.1,0 -55367062,"Distance",purchase,1.0,0 -55367062,"Broken Age",purchase,1.0,0 -55367062,"Botanicula",purchase,1.0,0 -55367062,"Age of Wonders III",purchase,1.0,0 -55367062,"Alice Madness Returns",purchase,1.0,0 -55367062,"Amnesia The Dark Descent",purchase,1.0,0 -55367062,"Batman Arkham Origins",purchase,1.0,0 -55367062,"Betrayer",purchase,1.0,0 -55367062,"BioShock",purchase,1.0,0 -55367062,"BioShock 2",purchase,1.0,0 -55367062,"BioShock Infinite - Season Pass",purchase,1.0,0 -55367062,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -55367062,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -55367062,"Castlevania Lords of Shadow - Ultimate Edition",purchase,1.0,0 -55367062,"Contrast",purchase,1.0,0 -55367062,"Crysis 2 Maximum Edition",purchase,1.0,0 -55367062,"Crysis Warhead",purchase,1.0,0 -55367062,"Crysis Wars",purchase,1.0,0 -55367062,"Darksiders",purchase,1.0,0 -55367062,"Darksiders II",purchase,1.0,0 -55367062,"DARK SOULS II",purchase,1.0,0 -55367062,"Dead Space",purchase,1.0,0 -55367062,"Dead Space 2",purchase,1.0,0 -55367062,"Deus Ex Human Revolution",purchase,1.0,0 -55367062,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -55367062,"DiRT 2",purchase,1.0,0 -55367062,"DiRT 3 Complete Edition",purchase,1.0,0 -55367062,"DiRT Showdown",purchase,1.0,0 -55367062,"Dishonored",purchase,1.0,0 -55367062,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -55367062,"Don't Starve Reign of Giants",purchase,1.0,0 -55367062,"Don't Starve Together Beta",purchase,1.0,0 -55367062,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -55367062,"Dungeon Siege",purchase,1.0,0 -55367062,"Dungeon Siege 2",purchase,1.0,0 -55367062,"Dungeon Siege III",purchase,1.0,0 -55367062,"ENSLAVED Odyssey to the West Premium Edition",purchase,1.0,0 -55367062,"F.E.A.R. 3",purchase,1.0,0 -55367062,"Fallout New Vegas",purchase,1.0,0 -55367062,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -55367062,"Fallout New Vegas Dead Money",purchase,1.0,0 -55367062,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -55367062,"Far Cry",purchase,1.0,0 -55367062,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -55367062,"Far Cry 3 Blood Dragon",purchase,1.0,0 -55367062,"FINAL FANTASY VII",purchase,1.0,0 -55367062,"FINAL FANTASY VIII",purchase,1.0,0 -55367062,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -55367062,"Grand Theft Auto IV",purchase,1.0,0 -55367062,"Grow Home",purchase,1.0,0 -55367062,"Hero Siege - The Karp of Doom (Digital Collector's Edition)",purchase,1.0,0 -55367062,"I Am Alive",purchase,1.0,0 -55367062,"Interplanetary",purchase,1.0,0 -55367062,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -55367062,"Left 4 Dead 2",purchase,1.0,0 -55367062,"Machinarium",purchase,1.0,0 -55367062,"Mark of the Ninja Special Edition DLC",purchase,1.0,0 -55367062,"Mass Effect 2",purchase,1.0,0 -55367062,"Might & Magic Heroes VI",purchase,1.0,0 -55367062,"Oddworld New 'n' Tasty",purchase,1.0,0 -55367062,"Outlast",purchase,1.0,0 -55367062,"Prototype",purchase,1.0,0 -55367062,"PROTOTYPE 2",purchase,1.0,0 -55367062,"Rise of Venice",purchase,1.0,0 -55367062,"Shadow Warrior",purchase,1.0,0 -55367062,"Skullgirls Endless Beta",purchase,1.0,0 -55367062,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -55367062,"Spelunky",purchase,1.0,0 -55367062,"Styx Master of Shadows",purchase,1.0,0 -55367062,"Terraria",purchase,1.0,0 -55367062,"Test Drive Unlimited 2",purchase,1.0,0 -55367062,"The Banner Saga",purchase,1.0,0 -55367062,"The Banner Saga - Mod Content",purchase,1.0,0 -55367062,"The Binding of Isaac Rebirth",purchase,1.0,0 -55367062,"The Elder Scrolls III Morrowind",purchase,1.0,0 -55367062,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -55367062,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -55367062,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -55367062,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -55367062,"The Vanishing of Ethan Carter",purchase,1.0,0 -55367062,"The Vanishing of Ethan Carter Redux",purchase,1.0,0 -55367062,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -55367062,"Waking Mars",purchase,1.0,0 -55367062,"Wolfenstein The New Order",purchase,1.0,0 -139695479,"Sid Meier's Civilization V",purchase,1.0,0 -139695479,"Sid Meier's Civilization V",play,789.0,0 -139695479,"DayZ",purchase,1.0,0 -139695479,"DayZ",play,347.0,0 -139695479,"Space Engineers",purchase,1.0,0 -139695479,"Space Engineers",play,46.0,0 -139695479,"H1Z1",purchase,1.0,0 -139695479,"H1Z1",play,9.1,0 -139695479,"Arma 3",purchase,1.0,0 -139695479,"Arma 3",play,8.3,0 -139695479,"Rust",purchase,1.0,0 -139695479,"Rust",play,1.4,0 -139695479,"March of War",purchase,1.0,0 -139695479,"March of War",play,0.5,0 -139695479,"Arma 3 Zeus",purchase,1.0,0 -139695479,"H1Z1 Test Server",purchase,1.0,0 -129300430,"War Thunder",purchase,1.0,0 -129300430,"War Thunder",play,95.0,0 -129300430,"APB Reloaded",purchase,1.0,0 -129300430,"APB Reloaded",play,23.0,0 -129300430,"Euro Truck Simulator 2",purchase,1.0,0 -129300430,"Euro Truck Simulator 2",play,17.8,0 -129300430,"Scania Truck Driving Simulator",purchase,1.0,0 -129300430,"Scania Truck Driving Simulator",play,5.5,0 -129300430,"Stronghold Kingdoms",purchase,1.0,0 -129300430,"Stronghold Kingdoms",play,2.0,0 -129300430,"Anno Online",purchase,1.0,0 -129300430,"Anno Online",play,0.9,0 -129300430,"War of the Roses",purchase,1.0,0 -129300430,"War of the Roses",play,0.3,0 -129300430,"AirMech",purchase,1.0,0 -129300430,"AirMech",play,0.2,0 -129300430,"March of War",purchase,1.0,0 -129300430,"March of War",play,0.1,0 -129300430,"Forge",purchase,1.0,0 -129300430,"Robocraft",purchase,1.0,0 -129300430,"DCS World",purchase,1.0,0 -129300430,"Fishing Planet",purchase,1.0,0 -94239910,"The Elder Scrolls V Skyrim",purchase,1.0,0 -94239910,"The Elder Scrolls V Skyrim",play,8.4,0 -244532668,"Dota 2",purchase,1.0,0 -244532668,"Dota 2",play,0.2,0 -158496230,"Dota 2",purchase,1.0,0 -158496230,"Dota 2",play,12.3,0 -300974418,"Dota 2",purchase,1.0,0 -300974418,"Dota 2",play,3.0,0 -203822193,"Dota 2",purchase,1.0,0 -203822193,"Dota 2",play,332.0,0 -224033250,"Counter-Strike Global Offensive",purchase,1.0,0 -224033250,"Counter-Strike Global Offensive",play,464.0,0 -224033250,"Garry's Mod",purchase,1.0,0 -224033250,"Garry's Mod",play,35.0,0 -224033250,"Call of Duty World at War",purchase,1.0,0 -224033250,"Call of Duty World at War",play,30.0,0 -224033250,"Team Fortress 2",purchase,1.0,0 -224033250,"Team Fortress 2",play,2.8,0 -224033250,"H1Z1",purchase,1.0,0 -224033250,"H1Z1",play,1.2,0 -224033250,"H1Z1 Test Server",purchase,1.0,0 -224033250,"War of the Roses",purchase,1.0,0 -293110570,"Heroes & Generals",purchase,1.0,0 -293110570,"PlanetSide 2",purchase,1.0,0 -293110570,"Unturned",purchase,1.0,0 -223985145,"Dota 2",purchase,1.0,0 -223985145,"Dota 2",play,1.1,0 -174021956,"Dota 2",purchase,1.0,0 -174021956,"Dota 2",play,1.4,0 -199628395,"Counter-Strike Global Offensive",purchase,1.0,0 -199628395,"Counter-Strike Global Offensive",play,211.0,0 -199628395,"Age of Empires III Complete Collection",purchase,1.0,0 -199628395,"Age of Empires III Complete Collection",play,50.0,0 -199628395,"PAYDAY 2",purchase,1.0,0 -199628395,"PAYDAY 2",play,32.0,0 -199628395,"Don't Starve Together Beta",purchase,1.0,0 -199628395,"Don't Starve Together Beta",play,17.0,0 -199628395,"Tropico 4",purchase,1.0,0 -199628395,"Tropico 4",play,14.1,0 -199628395,"Call of Juarez Gunslinger",purchase,1.0,0 -199628395,"Call of Juarez Gunslinger",play,9.2,0 -199628395,"Mount & Blade With Fire and Sword",purchase,1.0,0 -199628395,"Mount & Blade With Fire and Sword",play,5.3,0 -199628395,"Team Fortress 2",purchase,1.0,0 -199628395,"Team Fortress 2",play,5.1,0 -199628395,"Stronghold Kingdoms",purchase,1.0,0 -199628395,"Stronghold Kingdoms",play,4.8,0 -199628395,"Total War ROME II - Emperor Edition",purchase,1.0,0 -199628395,"Total War ROME II - Emperor Edition",play,4.1,0 -199628395,"How to Survive",purchase,1.0,0 -199628395,"How to Survive",play,3.5,0 -199628395,"Deponia",purchase,1.0,0 -199628395,"Deponia",play,3.4,0 -199628395,"Far Cry 3",purchase,1.0,0 -199628395,"Far Cry 3",play,1.7,0 -199628395,"Mortal Kombat Komplete Edition",purchase,1.0,0 -199628395,"Mortal Kombat Komplete Edition",play,1.6,0 -199628395,"Guns of Icarus Online",purchase,1.0,0 -199628395,"Guns of Icarus Online",play,1.5,0 -199628395,"Grand Theft Auto IV",purchase,1.0,0 -199628395,"Grand Theft Auto IV",play,1.4,0 -199628395,"Dota 2",purchase,1.0,0 -199628395,"Dota 2",play,0.7,0 -199628395,"Grand Theft Auto III",purchase,1.0,0 -199628395,"Grand Theft Auto III",play,0.7,0 -199628395,"Tomb Raider",purchase,1.0,0 -199628395,"Tomb Raider",play,0.6,0 -199628395,"Dino D-Day",purchase,1.0,0 -199628395,"Dino D-Day",play,0.3,0 -199628395,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -199628395,"Assassin's Creed Revelations",purchase,1.0,0 -199628395,"AdVenture Capitalist",purchase,1.0,0 -199628395,"To the Moon",purchase,1.0,0 -199628395,"Age of Empires II HD Edition",purchase,1.0,0 -199628395,"Age of Empires II HD The Forgotten",purchase,1.0,0 -199628395,"Chaos on Deponia",purchase,1.0,0 -199628395,"Goodbye Deponia",purchase,1.0,0 -199628395,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -199628395,"Grand Theft Auto San Andreas",purchase,1.0,0 -199628395,"Grand Theft Auto San Andreas",purchase,1.0,0 -199628395,"Grand Theft Auto Vice City",purchase,1.0,0 -199628395,"Grand Theft Auto Vice City",purchase,1.0,0 -199628395,"Grand Theft Auto III",purchase,1.0,0 -199628395,"Hitman 2 Silent Assassin",purchase,1.0,0 -199628395,"Magicka",purchase,1.0,0 -199628395,"Prime World Defenders",purchase,1.0,0 -199628395,"R.U.S.E",purchase,1.0,0 -199628395,"R.U.S.E.",purchase,1.0,0 -199628395,"System Shock 2",purchase,1.0,0 -199628395,"Terraria",purchase,1.0,0 -137079357,"Dota 2",purchase,1.0,0 -137079357,"Dota 2",play,41.0,0 -183882260,"Dota 2",purchase,1.0,0 -183882260,"Dota 2",play,1.9,0 -194491088,"Dota 2",purchase,1.0,0 -194491088,"Dota 2",play,52.0,0 -194491088,"GunZ 2 The Second Duel",purchase,1.0,0 -194491088,"TERA",purchase,1.0,0 -194491088,"Warframe",purchase,1.0,0 -36915181,"Counter-Strike",purchase,1.0,0 -36915181,"Counter-Strike",play,971.0,0 -36915181,"Counter-Strike Condition Zero",purchase,1.0,0 -36915181,"Counter-Strike Condition Zero",play,6.5,0 -36915181,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -36915181,"Day of Defeat",purchase,1.0,0 -36915181,"Deathmatch Classic",purchase,1.0,0 -36915181,"Ricochet",purchase,1.0,0 -185414347,"Dota 2",purchase,1.0,0 -185414347,"Dota 2",play,53.0,0 -89450291,"Team Fortress 2",purchase,1.0,0 -89450291,"Team Fortress 2",play,0.1,0 -174055973,"Dota 2",purchase,1.0,0 -174055973,"Dota 2",play,2.8,0 -77141216,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -77141216,"Warhammer 40,000 Dawn of War II",play,45.0,0 -102348964,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -102348964,"Warhammer 40,000 Dawn of War II",play,0.1,0 -102348964,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -179897426,"Dota 2",purchase,1.0,0 -179897426,"Dota 2",play,3.7,0 -29078995,"Half-Life 2",purchase,1.0,0 -29078995,"Half-Life 2 Deathmatch",purchase,1.0,0 -29078995,"Half-Life 2 Lost Coast",purchase,1.0,0 -134516625,"Sid Meier's Civilization V",purchase,1.0,0 -134516625,"Sid Meier's Civilization V",play,103.0,0 -134516625,"Counter-Strike Global Offensive",purchase,1.0,0 -134516625,"Counter-Strike Global Offensive",play,9.0,0 -134516625,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -134516625,"Dragon Age Origins - Ultimate Edition",play,8.3,0 -134516625,"Tomb Raider",purchase,1.0,0 -134516625,"Tomb Raider",play,5.9,0 -134516625,"Portal",purchase,1.0,0 -134516625,"Portal",play,4.4,0 -134516625,"Killing Floor",purchase,1.0,0 -134516625,"Killing Floor",play,3.4,0 -134516625,"Batman Arkham City GOTY",purchase,1.0,0 -134516625,"Batman Arkham City GOTY",play,3.3,0 -134516625,"DC Universe Online",purchase,1.0,0 -134516625,"DC Universe Online",play,2.6,0 -134516625,"Alan Wake",purchase,1.0,0 -134516625,"Alan Wake",play,2.4,0 -134516625,"Gone Home",purchase,1.0,0 -134516625,"Gone Home",play,2.3,0 -134516625,"Left 4 Dead 2",purchase,1.0,0 -134516625,"Left 4 Dead 2",play,2.2,0 -134516625,"Middle-earth Shadow of Mordor",purchase,1.0,0 -134516625,"Middle-earth Shadow of Mordor",play,1.7,0 -134516625,"Audiosurf",purchase,1.0,0 -134516625,"Audiosurf",play,1.0,0 -134516625,"Castle Crashers",purchase,1.0,0 -134516625,"Castle Crashers",play,0.7,0 -134516625,"NBA 2K15",purchase,1.0,0 -134516625,"NBA 2K15",play,0.3,0 -134516625,"To the Moon",purchase,1.0,0 -134516625,"To the Moon",play,0.3,0 -134516625,"9.03m",purchase,1.0,0 -134516625,"9.03m",play,0.3,0 -134516625,"Portal 2",purchase,1.0,0 -134516625,"Portal 2",play,0.1,0 -134516625,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -134516625,"Alan Wake's American Nightmare",purchase,1.0,0 -134516625,"BioShock",purchase,1.0,0 -134516625,"Brothers - A Tale of Two Sons",purchase,1.0,0 -134516625,"Child of Light",purchase,1.0,0 -134516625,"Don't Starve",purchase,1.0,0 -134516625,"Fallout New Vegas",purchase,1.0,0 -134516625,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -134516625,"Fallout New Vegas Dead Money",purchase,1.0,0 -134516625,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -134516625,"Far Cry 3",purchase,1.0,0 -134516625,"Half-Life 2",purchase,1.0,0 -134516625,"Half-Life 2 Episode One",purchase,1.0,0 -134516625,"Half-Life 2 Episode Two",purchase,1.0,0 -134516625,"Half-Life 2 Lost Coast",purchase,1.0,0 -134516625,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -134516625,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -134516625,"Mars War Logs",purchase,1.0,0 -134516625,"Sid Meier's Ace Patrol",purchase,1.0,0 -134516625,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -134516625,"Sid Meier's Civilization III Complete",purchase,1.0,0 -134516625,"Sid Meier's Civilization IV",purchase,1.0,0 -134516625,"Sid Meier's Civilization IV",purchase,1.0,0 -134516625,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -134516625,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -134516625,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -134516625,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -134516625,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -134516625,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -134516625,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -134516625,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -134516625,"Sid Meier's Pirates!",purchase,1.0,0 -134516625,"Sid Meier's Railroads!",purchase,1.0,0 -134516625,"Sonic Adventure 2 ",purchase,1.0,0 -134516625,"Sonic Adventure 2 Battle Mode DLC",purchase,1.0,0 -134516625,"Strike Vector",purchase,1.0,0 -134516625,"The Bureau XCOM Declassified",purchase,1.0,0 -134516625,"The Darkness II",purchase,1.0,0 -134516625,"The Stanley Parable",purchase,1.0,0 -134516625,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",purchase,1.0,0 -73672854,"Sid Meier's Civilization V",purchase,1.0,0 -73672854,"Sid Meier's Civilization V",play,0.3,0 -296508653,"Dota 2",purchase,1.0,0 -296508653,"Dota 2",play,2.0,0 -100070732,"Wargame Red Dragon",purchase,1.0,0 -100070732,"Wargame Red Dragon",play,129.0,0 -100070732,"Wargame European Escalation",purchase,1.0,0 -100070732,"Wargame European Escalation",play,78.0,0 -100070732,"Cities Skylines",purchase,1.0,0 -100070732,"Cities Skylines",play,48.0,0 -100070732,"Wargame AirLand Battle",purchase,1.0,0 -100070732,"Wargame AirLand Battle",play,28.0,0 -100070732,"Arma 2 Operation Arrowhead",purchase,1.0,0 -100070732,"Arma 2",purchase,1.0,0 -100070732,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -157095466,"Counter-Strike Global Offensive",purchase,1.0,0 -157095466,"Counter-Strike Global Offensive",play,632.0,0 -157095466,"Counter-Strike Source",purchase,1.0,0 -157095466,"Counter-Strike Source",play,27.0,0 -157095466,"Counter-Strike",purchase,1.0,0 -157095466,"Counter-Strike",play,1.6,0 -157095466,"Skyscraper Simulator",purchase,1.0,0 -157095466,"Counter-Strike Condition Zero",purchase,1.0,0 -157095466,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -157095466,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -157095466,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -157095466,"Sid Meier's Civilization IV",purchase,1.0,0 -157095466,"Sid Meier's Civilization IV",purchase,1.0,0 -157095466,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -157095466,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -157095466,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -157095466,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -157095466,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -157095466,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -248356320,"Dota 2",purchase,1.0,0 -248356320,"Dota 2",play,38.0,0 -101414179,"Dota 2",purchase,1.0,0 -101414179,"Dota 2",play,5982.0,0 -37659112,"Half-Life 2 Deathmatch",purchase,1.0,0 -37659112,"Half-Life 2 Lost Coast",purchase,1.0,0 -8013465,"Counter-Strike",purchase,1.0,0 -8013465,"Counter-Strike",play,3.9,0 -8013465,"Counter-Strike Condition Zero",purchase,1.0,0 -8013465,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -8013465,"Day of Defeat",purchase,1.0,0 -8013465,"Deathmatch Classic",purchase,1.0,0 -8013465,"Half-Life",purchase,1.0,0 -8013465,"Half-Life 2 Deathmatch",purchase,1.0,0 -8013465,"Half-Life 2 Lost Coast",purchase,1.0,0 -8013465,"Half-Life Blue Shift",purchase,1.0,0 -8013465,"Half-Life Opposing Force",purchase,1.0,0 -8013465,"Ricochet",purchase,1.0,0 -8013465,"Team Fortress Classic",purchase,1.0,0 -148118934,"Dota 2",purchase,1.0,0 -148118934,"Dota 2",play,1.2,0 -210019205,"Loadout",purchase,1.0,0 -210019205,"Loadout",play,17.4,0 -210019205,"Team Fortress 2",purchase,1.0,0 -210019205,"Team Fortress 2",play,14.0,0 -210019205,"Loadout Campaign Beta",purchase,1.0,0 -210019205,"Loadout Campaign Beta",play,11.5,0 -210019205,"Magicka Wizard Wars",purchase,1.0,0 -210019205,"Magicka Wizard Wars",play,0.9,0 -210019205,"Gear Up",purchase,1.0,0 -210019205,"Gear Up",play,0.4,0 -210019205,"Dota 2",purchase,1.0,0 -210019205,"Dota 2",play,0.4,0 -210019205,"HIT",purchase,1.0,0 -210019205,"HIT",play,0.1,0 -96902425,"Counter-Strike",purchase,1.0,0 -96902425,"Counter-Strike",play,97.0,0 -96902425,"Counter-Strike Global Offensive",purchase,1.0,0 -96902425,"Counter-Strike Global Offensive",play,27.0,0 -96902425,"Left 4 Dead 2",purchase,1.0,0 -96902425,"Left 4 Dead 2",play,0.6,0 -96902425,"Alien Swarm",purchase,1.0,0 -96902425,"Alien Swarm",play,0.4,0 -96902425,"Counter-Strike Condition Zero",purchase,1.0,0 -96902425,"Counter-Strike Condition Zero",play,0.2,0 -96902425,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -96902425,"Unturned",purchase,1.0,0 -96902425,"Arctic Combat",purchase,1.0,0 -130351904,"Dota 2",purchase,1.0,0 -130351904,"Dota 2",play,15.4,0 -130351904,"Team Fortress 2",purchase,1.0,0 -130351904,"Team Fortress 2",play,15.1,0 -130351904,"Left 4 Dead 2",purchase,1.0,0 -130351904,"Left 4 Dead 2",play,4.3,0 -130351904,"Don't Starve Together Beta",purchase,1.0,0 -130351904,"Don't Starve Together Beta",play,1.4,0 -130351904,"Gotham City Impostors Free To Play",purchase,1.0,0 -130351904,"Gotham City Impostors Free To Play",play,1.4,0 -130351904,"Football Superstars",purchase,1.0,0 -40070349,"Half-Life 2 Episode Two",purchase,1.0,0 -40070349,"Half-Life 2 Episode Two",play,0.1,0 -84863268,"Portal",purchase,1.0,0 -84863268,"Portal",play,3.9,0 -84863268,"SpaceChem",purchase,1.0,0 -84863268,"SpaceChem",play,2.2,0 -84863268,"Jamestown",purchase,1.0,0 -241830955,"Football Manager 2015",purchase,1.0,0 -241830955,"Football Manager 2015",play,10.6,0 -307788609,"Dota 2",purchase,1.0,0 -307788609,"Dota 2",play,14.9,0 -108771877,"Team Fortress 2",purchase,1.0,0 -108771877,"Team Fortress 2",play,127.0,0 -101897182,"Realm of the Mad God",purchase,1.0,0 -101897182,"Realm of the Mad God",play,46.0,0 -101897182,"APB Reloaded",purchase,1.0,0 -101897182,"APB Reloaded",play,1.8,0 -58312813,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -58312813,"Call of Duty Modern Warfare 2 - Multiplayer",play,95.0,0 -58312813,"Call of Duty Modern Warfare 2",purchase,1.0,0 -58312813,"Call of Duty Modern Warfare 2",play,12.3,0 -161991221,"Garry's Mod",purchase,1.0,0 -161991221,"Garry's Mod",play,226.0,0 -161991221,"The Walking Dead Season Two",purchase,1.0,0 -161991221,"The Walking Dead Season Two",play,96.0,0 -161991221,"The Elder Scrolls V Skyrim",purchase,1.0,0 -161991221,"The Elder Scrolls V Skyrim",play,68.0,0 -161991221,"Undertale",purchase,1.0,0 -161991221,"Undertale",play,38.0,0 -161991221,"PAYDAY 2",purchase,1.0,0 -161991221,"PAYDAY 2",play,21.0,0 -161991221,"Plague Inc Evolved",purchase,1.0,0 -161991221,"Plague Inc Evolved",play,16.9,0 -161991221,"Thief",purchase,1.0,0 -161991221,"Thief",play,10.8,0 -161991221,"Defiance",purchase,1.0,0 -161991221,"Defiance",play,9.6,0 -161991221,"Game Dev Tycoon",purchase,1.0,0 -161991221,"Game Dev Tycoon",play,5.9,0 -161991221,"Surgeon Simulator",purchase,1.0,0 -161991221,"Surgeon Simulator",play,5.9,0 -161991221,"Unturned",purchase,1.0,0 -161991221,"Unturned",play,5.7,0 -161991221,"Remember Me",purchase,1.0,0 -161991221,"Remember Me",play,5.1,0 -161991221,"Realm of the Mad God",purchase,1.0,0 -161991221,"Realm of the Mad God",play,3.2,0 -161991221,"Killing Floor",purchase,1.0,0 -161991221,"Killing Floor",play,2.3,0 -161991221,"Goat Simulator",purchase,1.0,0 -161991221,"Goat Simulator",play,1.8,0 -161991221,"Dino D-Day",purchase,1.0,0 -161991221,"Dino D-Day",play,1.8,0 -161991221,"PlanetSide 2",purchase,1.0,0 -161991221,"PlanetSide 2",play,1.7,0 -161991221,"Team Fortress 2",purchase,1.0,0 -161991221,"Team Fortress 2",play,1.7,0 -161991221,"HAWKEN",purchase,1.0,0 -161991221,"HAWKEN",play,1.6,0 -161991221,"Cry of Fear",purchase,1.0,0 -161991221,"Cry of Fear",play,1.1,0 -161991221,"APB Reloaded",purchase,1.0,0 -161991221,"APB Reloaded",play,0.8,0 -161991221,"Zombies Monsters Robots",purchase,1.0,0 -161991221,"Zombies Monsters Robots",play,0.8,0 -161991221,"Counter-Strike Source",purchase,1.0,0 -161991221,"Counter-Strike Source",play,0.8,0 -161991221,"Amnesia The Dark Descent",purchase,1.0,0 -161991221,"Amnesia The Dark Descent",play,0.8,0 -161991221,"Clicker Heroes",purchase,1.0,0 -161991221,"Clicker Heroes",play,0.8,0 -161991221,"Dungeon Defenders II",purchase,1.0,0 -161991221,"Dungeon Defenders II",play,0.7,0 -161991221,"Turbo Dismount",purchase,1.0,0 -161991221,"Turbo Dismount",play,0.7,0 -161991221,"Spooky's House of Jump Scares",purchase,1.0,0 -161991221,"Spooky's House of Jump Scares",play,0.6,0 -161991221,"Emily is Away",purchase,1.0,0 -161991221,"Emily is Away",play,0.5,0 -161991221,"Loadout",purchase,1.0,0 -161991221,"Loadout",play,0.5,0 -161991221,"Super Hexagon",purchase,1.0,0 -161991221,"Super Hexagon",play,0.4,0 -161991221,"Ace of Spades",purchase,1.0,0 -161991221,"Ace of Spades",play,0.3,0 -161991221,"Counter-Strike Nexon Zombies",purchase,1.0,0 -161991221,"Counter-Strike Nexon Zombies",play,0.2,0 -161991221,"Only If",purchase,1.0,0 -161991221,"Only If",play,0.2,0 -161991221,"Dead Island Epidemic",purchase,1.0,0 -161991221,"Dead Island Epidemic",play,0.2,0 -161991221,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -161991221,"Killing Floor Mod Defence Alliance 2",play,0.2,0 -161991221,"Double Action Boogaloo",purchase,1.0,0 -161991221,"Double Action Boogaloo",play,0.2,0 -161991221,"Dota 2",purchase,1.0,0 -161991221,"Dota 2",play,0.2,0 -161991221,"Haunted Memories",purchase,1.0,0 -161991221,"Haunted Memories",play,0.2,0 -161991221,"Mitos.is The Game",purchase,1.0,0 -161991221,"Mitos.is The Game",play,0.1,0 -161991221,"Combat Arms",purchase,1.0,0 -161991221,"Combat Arms",play,0.1,0 -161991221,"Back to Dinosaur Island ",purchase,1.0,0 -161991221,"Back to Dinosaur Island ",play,0.1,0 -161991221,"Modular Combat",purchase,1.0,0 -161991221,"Modular Combat",play,0.1,0 -161991221,"Written in the Sky",purchase,1.0,0 -161991221,"Robocraft",purchase,1.0,0 -161991221,"Viridi",purchase,1.0,0 -161991221,"Aftermath",purchase,1.0,0 -161991221,"Blacklight Retribution",purchase,1.0,0 -161991221,"NEOTOKYO",purchase,1.0,0 -161991221,"8BitMMO",purchase,1.0,0 -161991221,"BLOCKADE 3D",purchase,1.0,0 -161991221,"Block N Load",purchase,1.0,0 -161991221,"Brick-Force",purchase,1.0,0 -161991221,"Dragons and Titans",purchase,1.0,0 -161991221,"Face of Mankind",purchase,1.0,0 -161991221,"Fistful of Frags",purchase,1.0,0 -161991221,"Gear Up",purchase,1.0,0 -161991221,"Killing Floor - Toy Master",purchase,1.0,0 -161991221,"MechWarrior Online",purchase,1.0,0 -161991221,"No More Room in Hell",purchase,1.0,0 -161991221,"Sins of a Dark Age",purchase,1.0,0 -161991221,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -161991221,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -161991221,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -161991221,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -161991221,"Toribash",purchase,1.0,0 -161991221,"Warface",purchase,1.0,0 -161991221,"Warframe",purchase,1.0,0 -91549286,"Football Manager 2012",purchase,1.0,0 -91549286,"Football Manager 2012",play,251.0,0 -112345616,"F1 2012",purchase,1.0,0 -112345616,"F1 2012",play,431.0,0 -112345616,"GRID 2",purchase,1.0,0 -112345616,"GRID 2",play,7.2,0 -72905300,"Call of Duty Black Ops",purchase,1.0,0 -72905300,"Call of Duty Black Ops",play,17.5,0 -72905300,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -72905300,"Call of Duty Black Ops - Multiplayer",play,3.4,0 -242421974,"404Sight",purchase,1.0,0 -242421974,"ArcheAge",purchase,1.0,0 -242421974,"Double Action Boogaloo",purchase,1.0,0 -242421974,"Heroes & Generals",purchase,1.0,0 -242421974,"Infinite Crisis",purchase,1.0,0 -242421974,"Path of Exile",purchase,1.0,0 -242421974,"Super Crate Box",purchase,1.0,0 -242421974,"TERA",purchase,1.0,0 -242421974,"Unturned",purchase,1.0,0 -59467141,"The Elder Scrolls V Skyrim",purchase,1.0,0 -59467141,"The Elder Scrolls V Skyrim",play,109.0,0 -59467141,"Counter-Strike Global Offensive",purchase,1.0,0 -59467141,"Counter-Strike Global Offensive",play,33.0,0 -59467141,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -59467141,"Call of Duty Modern Warfare 2 - Multiplayer",play,17.6,0 -59467141,"Call of Duty Modern Warfare 2",purchase,1.0,0 -59467141,"Call of Duty Modern Warfare 2",play,0.3,0 -305575697,"Warframe",purchase,1.0,0 -153046757,"Football Manager 2014",purchase,1.0,0 -153046757,"Football Manager 2014",play,119.0,0 -182295415,"Arma 2 Operation Arrowhead",purchase,1.0,0 -182295415,"Arma 2 Operation Arrowhead",play,81.0,0 -182295415,"Arma 2",purchase,1.0,0 -182295415,"Arma 2",play,4.1,0 -182295415,"Castle Story",purchase,1.0,0 -182295415,"Castle Story",play,0.7,0 -182295415,"APB Reloaded",purchase,1.0,0 -182295415,"APB Reloaded",play,0.5,0 -182295415,"Arma 2 DayZ Mod",purchase,1.0,0 -182295415,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -182295415,"No More Room in Hell",purchase,1.0,0 -182295415,"Codename CURE",purchase,1.0,0 -182295415,"Gotham City Impostors Free To Play",purchase,1.0,0 -182295415,"Heroes & Generals",purchase,1.0,0 -182295415,"Realm of the Mad God",purchase,1.0,0 -182295415,"Robocraft",purchase,1.0,0 -182295415,"Trove",purchase,1.0,0 -182295415,"Unturned",purchase,1.0,0 -182295415,"Warface",purchase,1.0,0 -182295415,"War Thunder",purchase,1.0,0 -217680215,"Garry's Mod",purchase,1.0,0 -217680215,"Garry's Mod",play,59.0,0 -217680215,"Counter-Strike Global Offensive",purchase,1.0,0 -217680215,"Counter-Strike Global Offensive",play,15.8,0 -217680215,"Counter-Strike Source",purchase,1.0,0 -217680215,"Counter-Strike Source",play,15.0,0 -217680215,"Half-Life 2",purchase,1.0,0 -217680215,"Half-Life 2",play,5.1,0 -217680215,"Half-Life 2 Episode One",purchase,1.0,0 -217680215,"Half-Life 2 Episode One",play,4.5,0 -217680215,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -217680215,"Counter-Strike Condition Zero Deleted Scenes",play,2.3,0 -217680215,"Half-Life 2 Deathmatch",purchase,1.0,0 -217680215,"Half-Life 2 Deathmatch",play,1.3,0 -217680215,"Counter-Strike",purchase,1.0,0 -217680215,"Counter-Strike",play,0.6,0 -217680215,"Counter-Strike Condition Zero",purchase,1.0,0 -217680215,"Counter-Strike Condition Zero",play,0.6,0 -217680215,"Half-Life 2 Episode Two",purchase,1.0,0 -217680215,"Half-Life 2 Episode Two",play,0.2,0 -217680215,"Half-Life 2 Lost Coast",purchase,1.0,0 -217680215,"Half-Life 2 Lost Coast",play,0.1,0 -217680215,"Half-Life",purchase,1.0,0 -217680215,"Half-Life",play,0.1,0 -217680215,"Half-Life Blue Shift",purchase,1.0,0 -217680215,"Half-Life Opposing Force",purchase,1.0,0 -217680215,"Half-Life Source",purchase,1.0,0 -217680215,"Half-Life Deathmatch Source",purchase,1.0,0 -217680215,"Tactical Intervention",purchase,1.0,0 -217680215,"Team Fortress Classic",purchase,1.0,0 -144911326,"Dota 2",purchase,1.0,0 -144911326,"Dota 2",play,1445.0,0 -144911326,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -256606025,"ARK Survival Evolved",purchase,1.0,0 -256606025,"ARK Survival Evolved",play,352.0,0 -256606025,"Heroes & Generals",purchase,1.0,0 -256606025,"Heroes & Generals",play,39.0,0 -256606025,"Counter-Strike Global Offensive",purchase,1.0,0 -256606025,"Counter-Strike Global Offensive",play,16.2,0 -81579335,"Medieval II Total War",purchase,1.0,0 -81579335,"Medieval II Total War",play,249.0,0 -81579335,"Age of Empires II HD Edition",purchase,1.0,0 -81579335,"Age of Empires II HD Edition",play,57.0,0 -81579335,"Total War ATTILA",purchase,1.0,0 -81579335,"Total War ATTILA",play,26.0,0 -81579335,"Football Manager 2015",purchase,1.0,0 -81579335,"Football Manager 2015",play,22.0,0 -81579335,"Total War ROME II - Emperor Edition",purchase,1.0,0 -81579335,"Total War ROME II - Emperor Edition",play,16.5,0 -81579335,"The Bard's Tale",purchase,1.0,0 -81579335,"The Bard's Tale",play,7.2,0 -81579335,"The Elder Scrolls V Skyrim",purchase,1.0,0 -81579335,"The Elder Scrolls V Skyrim",play,4.4,0 -81579335,"Empire Total War",purchase,1.0,0 -81579335,"Empire Total War",play,3.4,0 -81579335,"Divinity Original Sin",purchase,1.0,0 -81579335,"Divinity Original Sin",play,1.8,0 -81579335,"Total War SHOGUN 2",purchase,1.0,0 -81579335,"Total War SHOGUN 2",play,1.1,0 -81579335,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -81579335,"Medieval II Total War Kingdoms",purchase,1.0,0 -81579335,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -81579335,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -81579335,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -187312942,"Half-Life",purchase,1.0,0 -187312942,"Half-Life",play,0.9,0 -246626691,"Dota 2",purchase,1.0,0 -246626691,"Dota 2",play,2.2,0 -246626691,"GunZ 2 The Second Duel",purchase,1.0,0 -246626691,"HAWKEN",purchase,1.0,0 -246626691,"Warframe",purchase,1.0,0 -151727207,"Dota 2",purchase,1.0,0 -151727207,"Dota 2",play,156.0,0 -151727207,"FreeStyle2 Street Basketball",purchase,1.0,0 -151727207,"FreeStyle2 Street Basketball",play,1.7,0 -151727207,"GunZ 2 The Second Duel",purchase,1.0,0 -110088484,"Counter-Strike",purchase,1.0,0 -110088484,"Counter-Strike",play,3.7,0 -110088484,"Counter-Strike Condition Zero",purchase,1.0,0 -110088484,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -245540103,"Dota 2",purchase,1.0,0 -245540103,"Dota 2",play,0.3,0 -205339707,"Warface",purchase,1.0,0 -205339707,"Warface",play,0.9,0 -205339707,"theHunter",purchase,1.0,0 -82778779,"Portal 2",purchase,1.0,0 -82778779,"Portal 2",play,57.0,0 -82778779,"Team Fortress 2",purchase,1.0,0 -82778779,"Team Fortress 2",play,23.0,0 -82778779,"Dota 2",purchase,1.0,0 -82778779,"Dota 2",play,18.9,0 -82778779,"Unturned",purchase,1.0,0 -82778779,"Unturned",play,7.7,0 -82778779,"Robocraft",purchase,1.0,0 -82778779,"Robocraft",play,0.3,0 -82778779,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -142955654,"Dota 2",purchase,1.0,0 -142955654,"Dota 2",play,11.8,0 -27685049,"Counter-Strike Condition Zero",purchase,1.0,0 -27685049,"Counter-Strike Condition Zero",play,0.6,0 -27685049,"Counter-Strike",purchase,1.0,0 -27685049,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -27685049,"Day of Defeat",purchase,1.0,0 -27685049,"Deathmatch Classic",purchase,1.0,0 -27685049,"Ricochet",purchase,1.0,0 -87725878,"Team Fortress 2",purchase,1.0,0 -87725878,"Team Fortress 2",play,0.2,0 -191019302,"Team Fortress 2",purchase,1.0,0 -191019302,"Team Fortress 2",play,237.0,0 -191019302,"Real Horror Stories Ultimate Edition",purchase,1.0,0 -307701164,"Emily is Away",purchase,1.0,0 -307701164,"Emily is Away",play,0.9,0 -242046461,"ARK Survival Evolved",purchase,1.0,0 -242046461,"ARK Survival Evolved",play,142.0,0 -242523654,"Survival Postapocalypse Now",purchase,1.0,0 -242523654,"Survival Postapocalypse Now",play,27.0,0 -242523654,"Counter-Strike Global Offensive",purchase,1.0,0 -242523654,"Counter-Strike Global Offensive",play,26.0,0 -242523654,"PAYDAY 2",purchase,1.0,0 -242523654,"PAYDAY 2",play,5.4,0 -242523654,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -242523654,"Just Cause 2 Multiplayer Mod",play,2.7,0 -242523654,"Crusader Kings II",purchase,1.0,0 -242523654,"Crusader Kings II",play,2.4,0 -242523654,"Mount & Blade",purchase,1.0,0 -242523654,"Mount & Blade",play,1.7,0 -242523654,"Age of Empires III Complete Collection",purchase,1.0,0 -242523654,"Age of Empires III Complete Collection",play,1.0,0 -242523654,"Saints Row The Third",purchase,1.0,0 -242523654,"Saints Row The Third",play,1.0,0 -242523654,"Happy Wars",purchase,1.0,0 -242523654,"Happy Wars",play,0.8,0 -242523654,"Age of Empires II HD Edition",purchase,1.0,0 -242523654,"Age of Empires II HD Edition",play,0.7,0 -242523654,"Dead Island Riptide",purchase,1.0,0 -242523654,"Dead Island Riptide",play,0.5,0 -242523654,"Unturned",purchase,1.0,0 -242523654,"Unturned",play,0.5,0 -242523654,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -242523654,"Warhammer 40,000 Dawn of War Dark Crusade",play,0.2,0 -242523654,"Just Cause 2",purchase,1.0,0 -242523654,"Just Cause 2",play,0.1,0 -242523654,"Verdun",purchase,1.0,0 -242523654,"Age of Empires II HD The Forgotten",purchase,1.0,0 -242523654,"Dead Island Epidemic",purchase,1.0,0 -242523654,"Defiance",purchase,1.0,0 -242523654,"Disney Infinity 3.0 Play Without Limits",purchase,1.0,0 -242523654,"Firefall",purchase,1.0,0 -242523654,"Survarium",purchase,1.0,0 -242523654,"sZone-Online",purchase,1.0,0 -242523654,"Warface",purchase,1.0,0 -128292918,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -128292918,"Call of Duty Modern Warfare 2 - Multiplayer",play,42.0,0 -128292918,"Call of Duty Modern Warfare 2",purchase,1.0,0 -216688763,"Grand Theft Auto V",purchase,1.0,0 -216688763,"Grand Theft Auto V",play,109.0,0 -216688763,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -216688763,"Call of Duty Black Ops II - Multiplayer",play,9.6,0 -216688763,"Counter-Strike Global Offensive",purchase,1.0,0 -216688763,"Counter-Strike Global Offensive",play,9.0,0 -216688763,"DayZ",purchase,1.0,0 -216688763,"DayZ",play,8.5,0 -216688763,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -216688763,"Call of Duty Black Ops II - Zombies",play,4.6,0 -216688763,"PAYDAY 2",purchase,1.0,0 -216688763,"PAYDAY 2",play,2.3,0 -216688763,"Call of Duty Black Ops II",purchase,1.0,0 -216688763,"Grand Theft Auto San Andreas",purchase,1.0,0 -216688763,"Grand Theft Auto San Andreas",purchase,1.0,0 -171759125,"Max Payne 3",purchase,1.0,0 -171759125,"Max Payne 3",play,1.2,0 -171759125,"World of Soccer online",purchase,1.0,0 -47364777,"Rust",purchase,1.0,0 -47364777,"Rust",play,8.9,0 -47364777,"Dota 2",purchase,1.0,0 -47364777,"Dota 2",play,2.3,0 -47364777,"Left 4 Dead 2",purchase,1.0,0 -47364777,"Left 4 Dead 2",play,0.7,0 -196446810,"Warframe",purchase,1.0,0 -196446810,"Warframe",play,1.5,0 -196446810,"Zombies Monsters Robots",purchase,1.0,0 -196446810,"Zombies Monsters Robots",play,0.2,0 -196446810,"Firefall",purchase,1.0,0 -240322275,"Dota 2",purchase,1.0,0 -240322275,"Dota 2",play,12.3,0 -224620778,"Soldier Front 2",purchase,1.0,0 -224620778,"Soldier Front 2",play,1.3,0 -165691348,"Dota 2",purchase,1.0,0 -165691348,"Dota 2",play,8.8,0 -165691348,"FreeStyle2 Street Basketball",purchase,1.0,0 -165691348,"GunZ 2 The Second Duel",purchase,1.0,0 -165691348,"Robocraft",purchase,1.0,0 -165691348,"TERA",purchase,1.0,0 -165691348,"Unturned",purchase,1.0,0 -165691348,"Warframe",purchase,1.0,0 -58530556,"The Elder Scrolls V Skyrim",purchase,1.0,0 -58530556,"The Elder Scrolls V Skyrim",play,391.0,0 -58530556,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -58530556,"Call of Duty Modern Warfare 2 - Multiplayer",play,225.0,0 -58530556,"Fallout 4",purchase,1.0,0 -58530556,"Fallout 4",play,83.0,0 -58530556,"Divinity Original Sin",purchase,1.0,0 -58530556,"Divinity Original Sin",play,53.0,0 -58530556,"Dishonored (RU)",purchase,1.0,0 -58530556,"Dishonored (RU)",play,37.0,0 -58530556,"Mafia II",purchase,1.0,0 -58530556,"Mafia II",play,34.0,0 -58530556,"BioShock Infinite",purchase,1.0,0 -58530556,"BioShock Infinite",play,30.0,0 -58530556,"Call of Duty Modern Warfare 2",purchase,1.0,0 -58530556,"Call of Duty Modern Warfare 2",play,24.0,0 -58530556,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -58530556,"Call of Duty Modern Warfare 3 - Multiplayer",play,24.0,0 -58530556,"Fallout New Vegas",purchase,1.0,0 -58530556,"Fallout New Vegas",play,19.0,0 -58530556,"Call of Duty Modern Warfare 3",purchase,1.0,0 -58530556,"Call of Duty Modern Warfare 3",play,12.0,0 -58530556,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -58530556,"Divinity Original Sin Enhanced Edition",play,6.6,0 -58530556,"Metro 2033",purchase,1.0,0 -58530556,"Metro 2033",play,4.2,0 -58530556,"Portal 2",purchase,1.0,0 -58530556,"Portal 2",play,1.5,0 -58530556,"Middle-earth Shadow of Mordor",purchase,1.0,0 -58530556,"Middle-earth Shadow of Mordor",play,1.3,0 -58530556,"Fallout 3",purchase,1.0,0 -58530556,"Fallout 3",play,1.0,0 -58530556,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -58530556,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.5,0 -58530556,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -58530556,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -58530556,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -30246419,"The Witcher 3 Wild Hunt",purchase,1.0,0 -30246419,"The Witcher 3 Wild Hunt",play,99.0,0 -30246419,"Fallout 4",purchase,1.0,0 -30246419,"Fallout 4",play,97.0,0 -30246419,"Two Worlds II",purchase,1.0,0 -30246419,"Two Worlds II",play,61.0,0 -30246419,"Test Drive Unlimited 2",purchase,1.0,0 -30246419,"Test Drive Unlimited 2",play,57.0,0 -30246419,"Middle-earth Shadow of Mordor",purchase,1.0,0 -30246419,"Middle-earth Shadow of Mordor",play,53.0,0 -30246419,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -30246419,"The Witcher 2 Assassins of Kings Enhanced Edition",play,52.0,0 -30246419,"Titan Quest",purchase,1.0,0 -30246419,"Titan Quest",play,51.0,0 -30246419,"Trine 2",purchase,1.0,0 -30246419,"Trine 2",play,34.0,0 -30246419,"Euro Truck Simulator 2",purchase,1.0,0 -30246419,"Euro Truck Simulator 2",play,30.0,0 -30246419,"Fable III",purchase,1.0,0 -30246419,"Fable III",play,24.0,0 -30246419,"Battlefield Bad Company 2",purchase,1.0,0 -30246419,"Battlefield Bad Company 2",play,21.0,0 -30246419,"Sid Meier's Civilization V",purchase,1.0,0 -30246419,"Sid Meier's Civilization V",play,18.6,0 -30246419,"The Walking Dead",purchase,1.0,0 -30246419,"The Walking Dead",play,18.5,0 -30246419,"Project CARS",purchase,1.0,0 -30246419,"Project CARS",play,18.1,0 -30246419,"Call of Juarez Gunslinger",purchase,1.0,0 -30246419,"Call of Juarez Gunslinger",play,17.8,0 -30246419,"Age of Empires II HD Edition",purchase,1.0,0 -30246419,"Age of Empires II HD Edition",play,17.7,0 -30246419,"Pirates of Black Cove",purchase,1.0,0 -30246419,"Pirates of Black Cove",play,17.6,0 -30246419,"The Guild II",purchase,1.0,0 -30246419,"The Guild II",play,17.1,0 -30246419,"FINAL FANTASY XIII",purchase,1.0,0 -30246419,"FINAL FANTASY XIII",play,16.1,0 -30246419,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -30246419,"Dragon Age Origins - Ultimate Edition",play,15.3,0 -30246419,"Chivalry Medieval Warfare",purchase,1.0,0 -30246419,"Chivalry Medieval Warfare",play,15.0,0 -30246419,"Bastion",purchase,1.0,0 -30246419,"Bastion",play,14.3,0 -30246419,"Stronghold Kingdoms",purchase,1.0,0 -30246419,"Stronghold Kingdoms",play,14.2,0 -30246419,"Brtal Legend",purchase,1.0,0 -30246419,"Brtal Legend",play,14.0,0 -30246419,"Deponia",purchase,1.0,0 -30246419,"Deponia",play,13.9,0 -30246419,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -30246419,"Batman Arkham Asylum GOTY Edition",play,13.0,0 -30246419,"Medieval Engineers",purchase,1.0,0 -30246419,"Medieval Engineers",play,12.9,0 -30246419,"Creativerse",purchase,1.0,0 -30246419,"Creativerse",play,12.4,0 -30246419,"Castle of Illusion",purchase,1.0,0 -30246419,"Castle of Illusion",play,12.4,0 -30246419,"The Testament of Sherlock Holmes",purchase,1.0,0 -30246419,"The Testament of Sherlock Holmes",play,11.7,0 -30246419,"Costume Quest",purchase,1.0,0 -30246419,"Costume Quest",play,11.4,0 -30246419,"The Forest",purchase,1.0,0 -30246419,"The Forest",play,11.1,0 -30246419,"A New Beginning - Final Cut",purchase,1.0,0 -30246419,"A New Beginning - Final Cut",play,10.5,0 -30246419,"To the Moon",purchase,1.0,0 -30246419,"To the Moon",play,10.4,0 -30246419,"WRC Powerslide",purchase,1.0,0 -30246419,"WRC Powerslide",play,9.5,0 -30246419,"Assetto Corsa",purchase,1.0,0 -30246419,"Assetto Corsa",play,9.5,0 -30246419,"Sniper Ghost Warrior",purchase,1.0,0 -30246419,"Sniper Ghost Warrior",play,9.4,0 -30246419,"Men of War Assault Squad 2",purchase,1.0,0 -30246419,"Men of War Assault Squad 2",play,9.3,0 -30246419,"Grim Legends The Forsaken Bride",purchase,1.0,0 -30246419,"Grim Legends The Forsaken Bride",play,9.2,0 -30246419,"Alan Wake",purchase,1.0,0 -30246419,"Alan Wake",play,9.2,0 -30246419,"FTL Faster Than Light",purchase,1.0,0 -30246419,"FTL Faster Than Light",play,8.6,0 -30246419,"Airport Simulator 2014",purchase,1.0,0 -30246419,"Airport Simulator 2014",play,8.5,0 -30246419,"DiRT Rally",purchase,1.0,0 -30246419,"DiRT Rally",play,8.2,0 -30246419,"Path of Exile",purchase,1.0,0 -30246419,"Path of Exile",play,8.1,0 -30246419,"Lumino City",purchase,1.0,0 -30246419,"Lumino City",play,7.4,0 -30246419,"Magicka",purchase,1.0,0 -30246419,"Magicka",play,7.2,0 -30246419,"Deadlight",purchase,1.0,0 -30246419,"Deadlight",play,7.1,0 -30246419,"The Elder Scrolls V Skyrim",purchase,1.0,0 -30246419,"The Elder Scrolls V Skyrim",play,7.0,0 -30246419,"Serious Sam 3 BFE",purchase,1.0,0 -30246419,"Serious Sam 3 BFE",play,7.0,0 -30246419,"The Vanishing of Ethan Carter",purchase,1.0,0 -30246419,"The Vanishing of Ethan Carter",play,6.6,0 -30246419,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -30246419,"Kingdoms of Amalur Reckoning",play,6.3,0 -30246419,"Supreme Commander Forged Alliance",purchase,1.0,0 -30246419,"Supreme Commander Forged Alliance",play,6.3,0 -30246419,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -30246419,"Operation Flashpoint Dragon Rising",play,6.1,0 -30246419,"Game Dev Tycoon",purchase,1.0,0 -30246419,"Game Dev Tycoon",play,5.8,0 -30246419,"TrackMania Valley",purchase,1.0,0 -30246419,"TrackMania Valley",play,5.5,0 -30246419,"Cities XL Platinum",purchase,1.0,0 -30246419,"Cities XL Platinum",play,5.2,0 -30246419,"An Assassin in Orlandes",purchase,1.0,0 -30246419,"An Assassin in Orlandes",play,5.0,0 -30246419,"Universe Sandbox",purchase,1.0,0 -30246419,"Universe Sandbox",play,4.8,0 -30246419,"Dogfight 1942",purchase,1.0,0 -30246419,"Dogfight 1942",play,4.6,0 -30246419,"Sniper Elite",purchase,1.0,0 -30246419,"Sniper Elite",play,4.5,0 -30246419,"State of Decay",purchase,1.0,0 -30246419,"State of Decay",play,4.2,0 -30246419,"FUEL",purchase,1.0,0 -30246419,"FUEL",play,4.1,0 -30246419,"Papo & Yo",purchase,1.0,0 -30246419,"Papo & Yo",play,4.1,0 -30246419,"RaceRoom Racing Experience ",purchase,1.0,0 -30246419,"RaceRoom Racing Experience ",play,4.0,0 -30246419,"Battlepaths",purchase,1.0,0 -30246419,"Battlepaths",play,3.7,0 -30246419,"Construct 2 Free",purchase,1.0,0 -30246419,"Construct 2 Free",play,3.7,0 -30246419,"Legend of Grimrock 2",purchase,1.0,0 -30246419,"Legend of Grimrock 2",play,3.5,0 -30246419,"Supreme Commander",purchase,1.0,0 -30246419,"Supreme Commander",play,3.3,0 -30246419,"Just Cause 2",purchase,1.0,0 -30246419,"Just Cause 2",play,3.3,0 -30246419,"Planetary Annihilation",purchase,1.0,0 -30246419,"Planetary Annihilation",play,3.1,0 -30246419,"Metro 2033",purchase,1.0,0 -30246419,"Metro 2033",play,3.1,0 -30246419,"Sid Meier's Railroads!",purchase,1.0,0 -30246419,"Sid Meier's Railroads!",play,3.0,0 -30246419,"Akane the Kunoichi",purchase,1.0,0 -30246419,"Akane the Kunoichi",play,2.9,0 -30246419,"Half-Life 2",purchase,1.0,0 -30246419,"Half-Life 2",play,2.8,0 -30246419,"Tom Clancy's H.A.W.X. 2",purchase,1.0,0 -30246419,"Tom Clancy's H.A.W.X. 2",play,2.7,0 -30246419,"Brothers - A Tale of Two Sons",purchase,1.0,0 -30246419,"Brothers - A Tale of Two Sons",play,2.7,0 -30246419,"DiRT 2",purchase,1.0,0 -30246419,"DiRT 2",play,2.6,0 -30246419,"PAYDAY The Heist",purchase,1.0,0 -30246419,"PAYDAY The Heist",play,2.6,0 -30246419,"Fairy Bloom Freesia",purchase,1.0,0 -30246419,"Fairy Bloom Freesia",play,2.6,0 -30246419,"Anomaly Warzone Earth",purchase,1.0,0 -30246419,"Anomaly Warzone Earth",play,2.5,0 -30246419,"Tomb Raider",purchase,1.0,0 -30246419,"Tomb Raider",play,2.3,0 -30246419,"Aura Fate of the Ages",purchase,1.0,0 -30246419,"Aura Fate of the Ages",play,2.3,0 -30246419,"Crazy Machines",purchase,1.0,0 -30246419,"Crazy Machines",play,2.2,0 -30246419,"Mini Motor Racing EVO",purchase,1.0,0 -30246419,"Mini Motor Racing EVO",play,2.1,0 -30246419,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -30246419,"The Incredible Adventures of Van Helsing",play,2.1,0 -30246419,"SpellForce 2 - Faith in Destiny",purchase,1.0,0 -30246419,"SpellForce 2 - Faith in Destiny",play,2.1,0 -30246419,"Sniper Elite V2",purchase,1.0,0 -30246419,"Sniper Elite V2",play,2.0,0 -30246419,"Airline Tycoon 2",purchase,1.0,0 -30246419,"Airline Tycoon 2",play,2.0,0 -30246419,"AirBuccaneers",purchase,1.0,0 -30246419,"AirBuccaneers",play,2.0,0 -30246419,"Worms Crazy Golf",purchase,1.0,0 -30246419,"Worms Crazy Golf",play,1.8,0 -30246419,"Miasmata",purchase,1.0,0 -30246419,"Miasmata",play,1.8,0 -30246419,"How to Survive",purchase,1.0,0 -30246419,"How to Survive",play,1.6,0 -30246419,"SolForge",purchase,1.0,0 -30246419,"SolForge",play,1.6,0 -30246419,"SkyDrift",purchase,1.0,0 -30246419,"SkyDrift",play,1.4,0 -30246419,"DogFighter",purchase,1.0,0 -30246419,"DogFighter",play,1.4,0 -30246419,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -30246419,"Sid Meier's Ace Patrol Pacific Skies",play,1.3,0 -30246419,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -30246419,"Just Cause 2 Multiplayer Mod",play,1.3,0 -30246419,"BIT.TRIP RUNNER",purchase,1.0,0 -30246419,"BIT.TRIP RUNNER",play,1.3,0 -30246419,"Space Pirates and Zombies",purchase,1.0,0 -30246419,"Space Pirates and Zombies",play,1.3,0 -30246419,"140",purchase,1.0,0 -30246419,"140",play,1.2,0 -30246419,"Bardbarian",purchase,1.0,0 -30246419,"Bardbarian",play,1.2,0 -30246419,"Blockland",purchase,1.0,0 -30246419,"Blockland",play,1.2,0 -30246419,"The Last Remnant",purchase,1.0,0 -30246419,"The Last Remnant",play,1.2,0 -30246419,"A Bird Story",purchase,1.0,0 -30246419,"A Bird Story",play,1.2,0 -30246419,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -30246419,"Grand Theft Auto Episodes from Liberty City",play,1.1,0 -30246419,"Ballpoint Universe Infinite",purchase,1.0,0 -30246419,"Ballpoint Universe Infinite",play,1.0,0 -30246419,"Test Drive Ferrari Racing Legends",purchase,1.0,0 -30246419,"Test Drive Ferrari Racing Legends",play,1.0,0 -30246419,"Adventure Park",purchase,1.0,0 -30246419,"Adventure Park",play,0.9,0 -30246419,"A Virus Named TOM",purchase,1.0,0 -30246419,"A Virus Named TOM",play,0.8,0 -30246419,"Two Worlds II Castle Defense",purchase,1.0,0 -30246419,"Two Worlds II Castle Defense",play,0.8,0 -30246419,"Bridge It (plus)",purchase,1.0,0 -30246419,"Bridge It (plus)",play,0.8,0 -30246419,"Arma Tactics",purchase,1.0,0 -30246419,"Arma Tactics",play,0.8,0 -30246419,"DCS World",purchase,1.0,0 -30246419,"DCS World",play,0.7,0 -30246419,"Men of War Assault Squad",purchase,1.0,0 -30246419,"Men of War Assault Squad",play,0.7,0 -30246419,"Crazy Plant Shop",purchase,1.0,0 -30246419,"Crazy Plant Shop",play,0.7,0 -30246419,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -30246419,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",play,0.7,0 -30246419,"Kingdom Wars",purchase,1.0,0 -30246419,"Kingdom Wars",play,0.6,0 -30246419,"Victory The Age of Racing",purchase,1.0,0 -30246419,"Victory The Age of Racing",play,0.6,0 -30246419,"OlliOlli",purchase,1.0,0 -30246419,"OlliOlli",play,0.6,0 -30246419,"Space Engineers",purchase,1.0,0 -30246419,"Space Engineers",play,0.5,0 -30246419,"Grand Theft Auto 2",purchase,1.0,0 -30246419,"Grand Theft Auto 2",play,0.5,0 -30246419,"Day of Defeat Source",purchase,1.0,0 -30246419,"Day of Defeat Source",play,0.4,0 -30246419,"Waking Mars",purchase,1.0,0 -30246419,"Waking Mars",play,0.4,0 -30246419,"Magic 2015",purchase,1.0,0 -30246419,"Magic 2015",play,0.3,0 -30246419,"Dead Island Epidemic",purchase,1.0,0 -30246419,"Dead Island Epidemic",play,0.3,0 -30246419,"Saira",purchase,1.0,0 -30246419,"Saira",play,0.3,0 -30246419,"Grand Theft Auto",purchase,1.0,0 -30246419,"Grand Theft Auto",play,0.3,0 -30246419,"Crouching Pony Hidden Dragon",purchase,1.0,0 -30246419,"Crouching Pony Hidden Dragon",play,0.3,0 -30246419,"Frozen Synapse",purchase,1.0,0 -30246419,"Frozen Synapse",play,0.3,0 -30246419,"99 Levels To Hell",purchase,1.0,0 -30246419,"99 Levels To Hell",play,0.2,0 -30246419,"Knights and Merchants",purchase,1.0,0 -30246419,"Knights and Merchants",play,0.2,0 -30246419,"Arcane Worlds",purchase,1.0,0 -30246419,"Arcane Worlds",play,0.2,0 -30246419,"Heroes & Generals",purchase,1.0,0 -30246419,"Heroes & Generals",play,0.2,0 -30246419,"Axis Game Factory's AGFPRO 3.0",purchase,1.0,0 -30246419,"Axis Game Factory's AGFPRO 3.0",play,0.1,0 -30246419,"Ignite",purchase,1.0,0 -30246419,"Ignite",play,0.1,0 -30246419,"InMind VR",purchase,1.0,0 -30246419,"Skyscraper Simulator",purchase,1.0,0 -30246419,"Conquest of Champions",purchase,1.0,0 -30246419,"Monaco",purchase,1.0,0 -30246419,"Sid Meier's Ace Patrol",purchase,1.0,0 -30246419,"Kung Fury",purchase,1.0,0 -30246419,"8-Bit Adventures The Forgotten Journey Remastered Edition",purchase,1.0,0 -30246419,"9 Clues The Secret of Serpent Creek",purchase,1.0,0 -30246419,"About Love, Hate and the other ones",purchase,1.0,0 -30246419,"Abyss The Wraiths of Eden",purchase,1.0,0 -30246419,"Abyss Odyssey",purchase,1.0,0 -30246419,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",purchase,1.0,0 -30246419,"A City Sleeps",purchase,1.0,0 -30246419,"Afterfall InSanity Extended Edition",purchase,1.0,0 -30246419,"Age of Empires II HD The Forgotten",purchase,1.0,0 -30246419,"Age of Empires III Complete Collection",purchase,1.0,0 -30246419,"AGFPRO Fantasy Side-Scroller Player",purchase,1.0,0 -30246419,"A Golden Wake",purchase,1.0,0 -30246419,"Agricultural Simulator 2011 Extended Edition",purchase,1.0,0 -30246419,"Agricultural Simulator Historical Farming",purchase,1.0,0 -30246419,"AI War Fleet Command",purchase,1.0,0 -30246419,"Alan Wake's American Nightmare",purchase,1.0,0 -30246419,"Alien Breed 2 Assault",purchase,1.0,0 -30246419,"Alien Breed 3 Descent",purchase,1.0,0 -30246419,"Alien Breed Impact",purchase,1.0,0 -30246419,"Alien Rage - Unlimited",purchase,1.0,0 -30246419,"Alpha Prime",purchase,1.0,0 -30246419,"Alpha Protocol",purchase,1.0,0 -30246419,"American Conquest",purchase,1.0,0 -30246419,"Amygdala",purchase,1.0,0 -30246419,"Anachronox",purchase,1.0,0 -30246419,"Another Perspective",purchase,1.0,0 -30246419,"Antichamber",purchase,1.0,0 -30246419,"ArcaniA",purchase,1.0,0 -30246419,"Arma 2",purchase,1.0,0 -30246419,"Arma Gold Edition",purchase,1.0,0 -30246419,"Aura Kingdom",purchase,1.0,0 -30246419,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -30246419,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -30246419,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -30246419,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -30246419,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -30246419,"Banished",purchase,1.0,0 -30246419,"Batman Arkham City GOTY",purchase,1.0,0 -30246419,"Batman Arkham Origins",purchase,1.0,0 -30246419,"Battlestations Midway",purchase,1.0,0 -30246419,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -30246419,"Before the Echo",purchase,1.0,0 -30246419,"Bejeweled 3",purchase,1.0,0 -30246419,"Ben There, Dan That!",purchase,1.0,0 -30246419,"Bermuda",purchase,1.0,0 -30246419,"Besiege",purchase,1.0,0 -30246419,"Betrayer",purchase,1.0,0 -30246419,"Beware Planet Earth",purchase,1.0,0 -30246419,"Binary Domain",purchase,1.0,0 -30246419,"BioShock",purchase,1.0,0 -30246419,"BioShock 2",purchase,1.0,0 -30246419,"Blackguards",purchase,1.0,0 -30246419,"Blackguards 2",purchase,1.0,0 -30246419,"Black Viper Sophia's Fate",purchase,1.0,0 -30246419,"Blade Kitten",purchase,1.0,0 -30246419,"Blades of Time",purchase,1.0,0 -30246419,"Blade Symphony",purchase,1.0,0 -30246419,"BlazeRush",purchase,1.0,0 -30246419,"Blood Bowl Legendary Edition",purchase,1.0,0 -30246419,"Borderlands",purchase,1.0,0 -30246419,"Borderlands 2",purchase,1.0,0 -30246419,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -30246419,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -30246419,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -30246419,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -30246419,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -30246419,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -30246419,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -30246419,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -30246419,"Broken Sword 1 - Shadow of the Templars Director's Cut",purchase,1.0,0 -30246419,"Broken Sword 2 - the Smoking Mirror Remastered",purchase,1.0,0 -30246419,"Broken Sword 3 - the Sleeping Dragon",purchase,1.0,0 -30246419,"Broken Sword 5 - the Serpent's Curse",purchase,1.0,0 -30246419,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -30246419,"C-RUSH",purchase,1.0,0 -30246419,"Call of Juarez",purchase,1.0,0 -30246419,"Canyon Capers",purchase,1.0,0 -30246419,"Card City Nights",purchase,1.0,0 -30246419,"Car Mechanic Simulator 2014",purchase,1.0,0 -30246419,"Chaser",purchase,1.0,0 -30246419,"Child of Light",purchase,1.0,0 -30246419,"Chroma Squad",purchase,1.0,0 -30246419,"Cognition - Original Soundtrack Vol 1",purchase,1.0,0 -30246419,"Cognition An Erica Reed Thriller",purchase,1.0,0 -30246419,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -30246419,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -30246419,"Coldfire Keep",purchase,1.0,0 -30246419,"Colin McRae Rally",purchase,1.0,0 -30246419,"Combat Wings Battle of Britain",purchase,1.0,0 -30246419,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -30246419,"Commandos 2 Men of Courage",purchase,1.0,0 -30246419,"Commandos 3 Destination Berlin",purchase,1.0,0 -30246419,"Commandos Behind Enemy Lines",purchase,1.0,0 -30246419,"Commandos Beyond the Call of Duty",purchase,1.0,0 -30246419,"Company of Heroes",purchase,1.0,0 -30246419,"Company of Heroes (New Steam Version)",purchase,1.0,0 -30246419,"Company of Heroes 2",purchase,1.0,0 -30246419,"Company of Heroes 2 - The British Forces",purchase,1.0,0 -30246419,"Company of Heroes Opposing Fronts",purchase,1.0,0 -30246419,"Company of Heroes Tales of Valor",purchase,1.0,0 -30246419,"Confrontation",purchase,1.0,0 -30246419,"Contagion",purchase,1.0,0 -30246419,"Contraption Maker",purchase,1.0,0 -30246419,"Cossacks European Wars",purchase,1.0,0 -30246419,"Cossacks II Napoleonic Wars",purchase,1.0,0 -30246419,"Crash Time II",purchase,1.0,0 -30246419,"Crazy Machines 1.5 Inventors Training Camp",purchase,1.0,0 -30246419,"Crazy Machines 1.5 New from the Lab",purchase,1.0,0 -30246419,"Crazy Machines 2",purchase,1.0,0 -30246419,"Crazy Machines 2 Fluid Add-On",purchase,1.0,0 -30246419,"Crusader Kings Complete",purchase,1.0,0 -30246419,"Crusader Kings II",purchase,1.0,0 -30246419,"Crysis 2 Maximum Edition",purchase,1.0,0 -30246419,"Crystals of Time",purchase,1.0,0 -30246419,"CT Special Forces Fire for Effect",purchase,1.0,0 -30246419,"Cubetractor",purchase,1.0,0 -30246419,"Curse of the Assassin",purchase,1.0,0 -30246419,"Daikatana",purchase,1.0,0 -30246419,"DARK",purchase,1.0,0 -30246419,"Darkest Hour A Hearts of Iron Game",purchase,1.0,0 -30246419,"Dark Fall 1 The Journal",purchase,1.0,0 -30246419,"Dark Fall 2 Lights Out",purchase,1.0,0 -30246419,"Darksiders",purchase,1.0,0 -30246419,"Darksiders II",purchase,1.0,0 -30246419,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -30246419,"DarkStar One",purchase,1.0,0 -30246419,"Darwinia",purchase,1.0,0 -30246419,"Data Jammers FastForward",purchase,1.0,0 -30246419,"Deadbreed",purchase,1.0,0 -30246419,"DeadCore",purchase,1.0,0 -30246419,"Dead Island",purchase,1.0,0 -30246419,"Deadlight Original Soundtrack",purchase,1.0,0 -30246419,"Deadly 30",purchase,1.0,0 -30246419,"Deadnaut",purchase,1.0,0 -30246419,"Dead Space",purchase,1.0,0 -30246419,"Dead Space 2",purchase,1.0,0 -30246419,"DEFCON",purchase,1.0,0 -30246419,"Detective Grimoire",purchase,1.0,0 -30246419,"Deus Ex Human Revolution",purchase,1.0,0 -30246419,"Deus Ex Invisible War",purchase,1.0,0 -30246419,"Deus Ex The Fall",purchase,1.0,0 -30246419,"Dino D-Day",purchase,1.0,0 -30246419,"DiRT 3",purchase,1.0,0 -30246419,"DiRT 3 Complete Edition",purchase,1.0,0 -30246419,"DiRT Showdown",purchase,1.0,0 -30246419,"Disciples III Reincarnation",purchase,1.0,0 -30246419,"Dismal Swamp DLC",purchase,1.0,0 -30246419,"Divinity Dragon Commander",purchase,1.0,0 -30246419,"Divinity II Developer's Cut",purchase,1.0,0 -30246419,"Dogfight 1942 Fire over Africa",purchase,1.0,0 -30246419,"Dogfight 1942 Russia under Siege",purchase,1.0,0 -30246419,"Dracula 4 and 5 - Special Steam Edition",purchase,1.0,0 -30246419,"Drakensang",purchase,1.0,0 -30246419,"Dreaming Sarah",purchase,1.0,0 -30246419,"Dreaming Sarah OST",purchase,1.0,0 -30246419,"Droid Assault",purchase,1.0,0 -30246419,"Dungeonland",purchase,1.0,0 -30246419,"Dungeonland - All access pass",purchase,1.0,0 -30246419,"Dust An Elysian Tail",purchase,1.0,0 -30246419,"Edna & Harvey Harvey's New Eyes",purchase,1.0,0 -30246419,"Edna & Harvey The Breakout",purchase,1.0,0 -30246419,"Eets",purchase,1.0,0 -30246419,"Enclave",purchase,1.0,0 -30246419,"Endless Space",purchase,1.0,0 -30246419,"Enigmatis 2 The Mists of Ravenwood",purchase,1.0,0 -30246419,"ENSLAVED Odyssey to the West Premium Edition",purchase,1.0,0 -30246419,"Eryi's Action",purchase,1.0,0 -30246419,"Ethan Meteor Hunter",purchase,1.0,0 -30246419,"Ether Vapor Remaster",purchase,1.0,0 -30246419,"Europa Universalis III",purchase,1.0,0 -30246419,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -30246419,"eXceed - Gun Bullet Children",purchase,1.0,0 -30246419,"eXceed 2nd - Vampire REX",purchase,1.0,0 -30246419,"eXceed 3rd - Jade Penetrate Black Package",purchase,1.0,0 -30246419,"F.E.A.R.",purchase,1.0,0 -30246419,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -30246419,"F.E.A.R. 3",purchase,1.0,0 -30246419,"F.E.A.R. Extraction Point",purchase,1.0,0 -30246419,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -30246419,"Fabula Mortis",purchase,1.0,0 -30246419,"Face Noir",purchase,1.0,0 -30246419,"Far Cry",purchase,1.0,0 -30246419,"Far Cry 2",purchase,1.0,0 -30246419,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -30246419,"Far Cry 3",purchase,1.0,0 -30246419,"Far Cry 3 Blood Dragon",purchase,1.0,0 -30246419,"Fat Chicken",purchase,1.0,0 -30246419,"Fearless Fantasy",purchase,1.0,0 -30246419,"FEZ",purchase,1.0,0 -30246419,"Finding Teddy",purchase,1.0,0 -30246419,"Finding Teddy Soundtrack",purchase,1.0,0 -30246419,"FlatOut",purchase,1.0,0 -30246419,"FlatOut 2",purchase,1.0,0 -30246419,"Flatout 3",purchase,1.0,0 -30246419,"FlatOut Ultimate Carnage",purchase,1.0,0 -30246419,"Fortix 2",purchase,1.0,0 -30246419,"Freaking Meatbags",purchase,1.0,0 -30246419,"Freedom Fall",purchase,1.0,0 -30246419,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -30246419,"Game of Thrones ",purchase,1.0,0 -30246419,"Game Tycoon 1.5",purchase,1.0,0 -30246419,"GAUGE",purchase,1.0,0 -30246419,"Giana Sisters Twisted Dreams",purchase,1.0,0 -30246419,"Glowfish",purchase,1.0,0 -30246419,"Gomo",purchase,1.0,0 -30246419,"Goodbye Deponia",purchase,1.0,0 -30246419,"Gorky 17",purchase,1.0,0 -30246419,"Grand Ages Rome",purchase,1.0,0 -30246419,"Grand Theft Auto San Andreas",purchase,1.0,0 -30246419,"Grand Theft Auto San Andreas",purchase,1.0,0 -30246419,"Grand Theft Auto Vice City",purchase,1.0,0 -30246419,"Grand Theft Auto Vice City",purchase,1.0,0 -30246419,"Grand Theft Auto III",purchase,1.0,0 -30246419,"Grand Theft Auto III",purchase,1.0,0 -30246419,"Grand Theft Auto IV",purchase,1.0,0 -30246419,"Gray Matter",purchase,1.0,0 -30246419,"GRID",purchase,1.0,0 -30246419,"GRID 2",purchase,1.0,0 -30246419,"GRID Autosport",purchase,1.0,0 -30246419,"Grimind",purchase,1.0,0 -30246419,"GT Legends",purchase,1.0,0 -30246419,"GTR Evolution",purchase,1.0,0 -30246419,"Guacamelee! Gold Edition",purchase,1.0,0 -30246419,"Guardians of Middle-earth",purchase,1.0,0 -30246419,"Gun Monkeys",purchase,1.0,0 -30246419,"Guns of Icarus Online",purchase,1.0,0 -30246419,"Hack 'n' Slash",purchase,1.0,0 -30246419,"Hacker Evolution - Untold",purchase,1.0,0 -30246419,"Hacker Evolution Duality",purchase,1.0,0 -30246419,"Half-Life",purchase,1.0,0 -30246419,"Half-Life 2 Deathmatch",purchase,1.0,0 -30246419,"Half-Life 2 Episode One",purchase,1.0,0 -30246419,"Half-Life 2 Episode Two",purchase,1.0,0 -30246419,"Half-Life 2 Lost Coast",purchase,1.0,0 -30246419,"Half-Life Blue Shift",purchase,1.0,0 -30246419,"Half-Life Opposing Force",purchase,1.0,0 -30246419,"Half-Life Source",purchase,1.0,0 -30246419,"Half-Life Deathmatch Source",purchase,1.0,0 -30246419,"Hard Reset",purchase,1.0,0 -30246419,"Hard Reset Exile DLC",purchase,1.0,0 -30246419,"HassleHeart",purchase,1.0,0 -30246419,"Hector Ep 1",purchase,1.0,0 -30246419,"Hector Ep 2",purchase,1.0,0 -30246419,"Hector Ep 3",purchase,1.0,0 -30246419,"Helldorado",purchase,1.0,0 -30246419,"Hell Yeah!",purchase,1.0,0 -30246419,"Hero of Many",purchase,1.0,0 -30246419,"Hero of the Kingdom",purchase,1.0,0 -30246419,"Hitman 2 Silent Assassin",purchase,1.0,0 -30246419,"Hitman Absolution",purchase,1.0,0 -30246419,"Hitman Blood Money",purchase,1.0,0 -30246419,"Hitman Codename 47",purchase,1.0,0 -30246419,"Hitman Contracts",purchase,1.0,0 -30246419,"HOARD",purchase,1.0,0 -30246419,"Hospital Tycoon",purchase,1.0,0 -30246419,"Hotel Collectors Edition",purchase,1.0,0 -30246419,"How To Survive Third Person",purchase,1.0,0 -30246419,"Huntsman - The Orphanage Halloween Edition",purchase,1.0,0 -30246419,"Hydrophobia Prophecy",purchase,1.0,0 -30246419,"Hyper Fighters",purchase,1.0,0 -30246419,"I Am Vegend",purchase,1.0,0 -30246419,"Ichi",purchase,1.0,0 -30246419,"Ihf Handball Challenge 12",purchase,1.0,0 -30246419,"Imperial Glory",purchase,1.0,0 -30246419,"Imperium Romanum Gold Edition",purchase,1.0,0 -30246419,"Incoming Forces",purchase,1.0,0 -30246419,"Infinite Space III Sea of Stars",purchase,1.0,0 -30246419,"Inquisitor",purchase,1.0,0 -30246419,"Insanely Twisted Shadow Planet",purchase,1.0,0 -30246419,"Insurgency",purchase,1.0,0 -30246419,"Into the Dark",purchase,1.0,0 -30246419,"Ion Assault",purchase,1.0,0 -30246419,"Iron Grip Warlord",purchase,1.0,0 -30246419,"Jack Keane 2 - The Fire Within",purchase,1.0,0 -30246419,"Joe Danger 2 The Movie",purchase,1.0,0 -30246419,"Journey of a Roach",purchase,1.0,0 -30246419,"Just Cause",purchase,1.0,0 -30246419,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -30246419,"Kane & Lynch Dead Men",purchase,1.0,0 -30246419,"Kill The Bad Guy",purchase,1.0,0 -30246419,"King's Bounty Armored Princess",purchase,1.0,0 -30246419,"King's Bounty Crossworlds",purchase,1.0,0 -30246419,"King's Bounty The Legend",purchase,1.0,0 -30246419,"King Arthur Collection",purchase,1.0,0 -30246419,"King Arthur II - The Role-playing Wargame",purchase,1.0,0 -30246419,"Kingdom Elemental",purchase,1.0,0 -30246419,"Kingdom Rush",purchase,1.0,0 -30246419,"Knights of Pen and Paper +1",purchase,1.0,0 -30246419,"La-Mulana",purchase,1.0,0 -30246419,"Lara Croft and the Guardian of Light",purchase,1.0,0 -30246419,"Left 4 Dead 2",purchase,1.0,0 -30246419,"Legend of Grimrock",purchase,1.0,0 -30246419,"Legends of Persia",purchase,1.0,0 -30246419,"Lethal League",purchase,1.0,0 -30246419,"Leviathan The Last Day of the Decade",purchase,1.0,0 -30246419,"Leviathan Warships",purchase,1.0,0 -30246419,"Lightfish",purchase,1.0,0 -30246419,"LIMBO",purchase,1.0,0 -30246419,"Limited Edition",purchase,1.0,0 -30246419,"Lucius",purchase,1.0,0 -30246419,"LUDWIG",purchase,1.0,0 -30246419,"Lume",purchase,1.0,0 -30246419,"Lunar Flight",purchase,1.0,0 -30246419,"Luxor Evolved",purchase,1.0,0 -30246419,"Machinarium",purchase,1.0,0 -30246419,"Mafia II",purchase,1.0,0 -30246419,"Magicka Final Frontier",purchase,1.0,0 -30246419,"Magicka Frozen Lake",purchase,1.0,0 -30246419,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -30246419,"Magicka Nippon",purchase,1.0,0 -30246419,"Magicka Party Robes",purchase,1.0,0 -30246419,"Magicka The Watchtower",purchase,1.0,0 -30246419,"Magicka Vietnam",purchase,1.0,0 -30246419,"Magicka Wizard's Survival Kit",purchase,1.0,0 -30246419,"Magnetic By Nature",purchase,1.0,0 -30246419,"Majesty 2 Collection",purchase,1.0,0 -30246419,"Major Mayhem",purchase,1.0,0 -30246419,"Mark of the Ninja",purchase,1.0,0 -30246419,"Mass Effect 2",purchase,1.0,0 -30246419,"Mechanic Escape",purchase,1.0,0 -30246419,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -30246419,"Medal of Honor(TM) Single Player",purchase,1.0,0 -30246419,"Medal of Honor Pre-Order",purchase,1.0,0 -30246419,"Medieval II Total War",purchase,1.0,0 -30246419,"Melissa K. and the Heart of Gold Collector's Edition",purchase,1.0,0 -30246419,"Men of War",purchase,1.0,0 -30246419,"Men of War Condemned Heroes",purchase,1.0,0 -30246419,"Men of War Red Tide",purchase,1.0,0 -30246419,"Metal Planet",purchase,1.0,0 -30246419,"Mini Ninjas",purchase,1.0,0 -30246419,"Mirror's Edge",purchase,1.0,0 -30246419,"MirrorMoon EP",purchase,1.0,0 -30246419,"Mortal Kombat Kollection",purchase,1.0,0 -30246419,"Mount & Blade",purchase,1.0,0 -30246419,"Muffin Knight",purchase,1.0,0 -30246419,"Multiwinia",purchase,1.0,0 -30246419,"MURDERED SOUL SUSPECT",purchase,1.0,0 -30246419,"Mushroom Men Truffle Trouble ",purchase,1.0,0 -30246419,"Naval War Arctic Circle",purchase,1.0,0 -30246419,"Neighbours from Hell",purchase,1.0,0 -30246419,"Neighbours from Hell 2",purchase,1.0,0 -30246419,"NEON STRUCT",purchase,1.0,0 -30246419,"NEON STRUCT Soundtrack & Artbook",purchase,1.0,0 -30246419,"Nightmares from the Deep 2 The Siren`s Call",purchase,1.0,0 -30246419,"Nightmares from the Deep The Cursed Heart",purchase,1.0,0 -30246419,"Nosgoth",purchase,1.0,0 -30246419,"Numen Contest of Heroes",purchase,1.0,0 -30246419,"Nux",purchase,1.0,0 -30246419,"Once Bitten, Twice Dead",purchase,1.0,0 -30246419,"Onikira Demon Killer",purchase,1.0,0 -30246419,"Operation Flashpoint Red River",purchase,1.0,0 -30246419,"Orborun",purchase,1.0,0 -30246419,"Orcs Must Die! 2",purchase,1.0,0 -30246419,"Outlast",purchase,1.0,0 -30246419,"Overlord",purchase,1.0,0 -30246419,"Overlord Raising Hell",purchase,1.0,0 -30246419,"Overlord II",purchase,1.0,0 -30246419,"PAC-MAN Championship Edition DX+",purchase,1.0,0 -30246419,"Painkiller Recurring Evil",purchase,1.0,0 -30246419,"Painkiller Redemption",purchase,1.0,0 -30246419,"Painkiller Hell & Damnation",purchase,1.0,0 -30246419,"Paranormal State Poison Spring Collector's Edition",purchase,1.0,0 -30246419,"Patch testing for Chivalry",purchase,1.0,0 -30246419,"Patrician III",purchase,1.0,0 -30246419,"Patrician IV Steam Special Edition",purchase,1.0,0 -30246419,"PAYDAY 2",purchase,1.0,0 -30246419,"Penguins Arena Sedna's World",purchase,1.0,0 -30246419,"Pid ",purchase,1.0,0 -30246419,"PixelJunk Eden",purchase,1.0,0 -30246419,"Pixel Piracy",purchase,1.0,0 -30246419,"Planets Under Attack",purchase,1.0,0 -30246419,"Platformines",purchase,1.0,0 -30246419,"Poker Night at the Inventory",purchase,1.0,0 -30246419,"Portal",purchase,1.0,0 -30246419,"Portal 2",purchase,1.0,0 -30246419,"Power-Up",purchase,1.0,0 -30246419,"Praetorians",purchase,1.0,0 -30246419,"Pressure",purchase,1.0,0 -30246419,"Pressured",purchase,1.0,0 -30246419,"Primal Fears",purchase,1.0,0 -30246419,"Prison Architect",purchase,1.0,0 -30246419,"Project Temporality",purchase,1.0,0 -30246419,"Psychonauts",purchase,1.0,0 -30246419,"Psychonauts Demo",purchase,1.0,0 -30246419,"Puddle",purchase,1.0,0 -30246419,"Puzzle Agent",purchase,1.0,0 -30246419,"Puzzle Agent 2",purchase,1.0,0 -30246419,"Puzzle Kingdoms",purchase,1.0,0 -30246419,"Q.U.B.E Director's Cut",purchase,1.0,0 -30246419,"QuestRun",purchase,1.0,0 -30246419,"RACE 07",purchase,1.0,0 -30246419,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -30246419,"RACE On",purchase,1.0,0 -30246419,"Racer 8",purchase,1.0,0 -30246419,"Race The Sun",purchase,1.0,0 -30246419,"RADical ROACH Deluxe Edition",purchase,1.0,0 -30246419,"RAW - Realms of Ancient War",purchase,1.0,0 -30246419,"Really Big Sky",purchase,1.0,0 -30246419,"Real World Racing",purchase,1.0,0 -30246419,"Real World Racing Amsterdam & Oakland",purchase,1.0,0 -30246419,"Receiver",purchase,1.0,0 -30246419,"Red Faction Armageddon",purchase,1.0,0 -30246419,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -30246419,"Renegade Ops",purchase,1.0,0 -30246419,"Rescue Everyday Heroes",purchase,1.0,0 -30246419,"Reus",purchase,1.0,0 -30246419,"Rhythm Destruction",purchase,1.0,0 -30246419,"Ride 'em Low",purchase,1.0,0 -30246419,"Ridge Racer Unbounded",purchase,1.0,0 -30246419,"Risen",purchase,1.0,0 -30246419,"Risen 2 - Dark Waters",purchase,1.0,0 -30246419,"Rise of Flight United",purchase,1.0,0 -30246419,"Rise of the Argonauts",purchase,1.0,0 -30246419,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -30246419,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -30246419,"Rome Total War",purchase,1.0,0 -30246419,"Runaway A Road Adventure",purchase,1.0,0 -30246419,"Runaway A Twist of Fate",purchase,1.0,0 -30246419,"Runaway The Dream of the Turtle",purchase,1.0,0 -30246419,"Rune Classic",purchase,1.0,0 -30246419,"Rush Bros",purchase,1.0,0 -30246419,"Rust",purchase,1.0,0 -30246419,"RWRZ",purchase,1.0,0 -30246419,"Sacraboar",purchase,1.0,0 -30246419,"Sacred 2 Gold",purchase,1.0,0 -30246419,"Sacred Citadel",purchase,1.0,0 -30246419,"Sacred Gold",purchase,1.0,0 -30246419,"Safecracker The Ultimate Puzzle Adventure",purchase,1.0,0 -30246419,"Saints Row 2",purchase,1.0,0 -30246419,"Saints Row The Third",purchase,1.0,0 -30246419,"Saints Row IV",purchase,1.0,0 -30246419,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -30246419,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -30246419,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -30246419,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -30246419,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -30246419,"SanctuaryRPG Black Edition",purchase,1.0,0 -30246419,"Sang-Froid - Tales of Werewolves",purchase,1.0,0 -30246419,"SATAZIUS",purchase,1.0,0 -30246419,"Saturday Morning RPG",purchase,1.0,0 -30246419,"Scribblenauts Unlimited",purchase,1.0,0 -30246419,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -30246419,"Selknam Defense",purchase,1.0,0 -30246419,"Serious Sam 2",purchase,1.0,0 -30246419,"Serious Sam The Random Encounter",purchase,1.0,0 -30246419,"Serious Sam Classic The First Encounter",purchase,1.0,0 -30246419,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -30246419,"Serious Sam Classics Revolution",purchase,1.0,0 -30246419,"Serious Sam Double D XXL",purchase,1.0,0 -30246419,"Serious Sam HD The First Encounter",purchase,1.0,0 -30246419,"Shadowgrounds",purchase,1.0,0 -30246419,"Shadows of War",purchase,1.0,0 -30246419,"Shadows on the Vatican - Act I Greed",purchase,1.0,0 -30246419,"Shank",purchase,1.0,0 -30246419,"Shank 2",purchase,1.0,0 -30246419,"Shelter",purchase,1.0,0 -30246419,"Ship Simulator Extremes",purchase,1.0,0 -30246419,"Sid Meier's Civilization III Complete",purchase,1.0,0 -30246419,"Sid Meier's Civilization IV",purchase,1.0,0 -30246419,"Sid Meier's Civilization IV",purchase,1.0,0 -30246419,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -30246419,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -30246419,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -30246419,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -30246419,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -30246419,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -30246419,"Sid Meier's Pirates!",purchase,1.0,0 -30246419,"Silence of the Sleep",purchase,1.0,0 -30246419,"Sinister City",purchase,1.0,0 -30246419,"Sir, You Are Being Hunted",purchase,1.0,0 -30246419,"Skyborn",purchase,1.0,0 -30246419,"Sleeping Dogs",purchase,1.0,0 -30246419,"Slender The Arrival",purchase,1.0,0 -30246419,"Sniper Elite 3",purchase,1.0,0 -30246419,"Sniper Ghost Warrior 2",purchase,1.0,0 -30246419,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -30246419,"Solar Flux",purchase,1.0,0 -30246419,"SpaceChem",purchase,1.0,0 -30246419,"Space Hack",purchase,1.0,0 -30246419,"Spec Ops The Line",purchase,1.0,0 -30246419,"Spintires",purchase,1.0,0 -30246419,"Stacking",purchase,1.0,0 -30246419,"Stargazer",purchase,1.0,0 -30246419,"Starseed Pilgrim",purchase,1.0,0 -30246419,"Startopia",purchase,1.0,0 -30246419,"Star Trek",purchase,1.0,0 -30246419,"STCC The Game",purchase,1.0,0 -30246419,"Stealth Inc 2",purchase,1.0,0 -30246419,"Steel & Steam Episode 1",purchase,1.0,0 -30246419,"STORM Frontline Nation",purchase,1.0,0 -30246419,"Street Racing Syndicate",purchase,1.0,0 -30246419,"Streets of Chaos",purchase,1.0,0 -30246419,"Strike Suit Zero",purchase,1.0,0 -30246419,"Stronghold Crusader Extreme HD",purchase,1.0,0 -30246419,"Stronghold Crusader HD",purchase,1.0,0 -30246419,"Superfrog HD",purchase,1.0,0 -30246419,"Super Sanctum TD",purchase,1.0,0 -30246419,"Super Splatters",purchase,1.0,0 -30246419,"Super Toy Cars",purchase,1.0,0 -30246419,"Supreme Commander 2",purchase,1.0,0 -30246419,"Surgeon Simulator",purchase,1.0,0 -30246419,"Syberia",purchase,1.0,0 -30246419,"Syberia 2",purchase,1.0,0 -30246419,"Symphony",purchase,1.0,0 -30246419,"Take On Helicopters",purchase,1.0,0 -30246419,"Talisman Digital Edition",purchase,1.0,0 -30246419,"Talisman Prologue",purchase,1.0,0 -30246419,"Team Fortress Classic",purchase,1.0,0 -30246419,"Teleglitch Die More Edition",purchase,1.0,0 -30246419,"Terraria",purchase,1.0,0 -30246419,"The 39 Steps",purchase,1.0,0 -30246419,"The Battle of Sol",purchase,1.0,0 -30246419,"The Book of Unwritten Tales",purchase,1.0,0 -30246419,"The Book of Unwritten Tales The Critter Chronicles",purchase,1.0,0 -30246419,"The Book of Unwritten Tales Extras",purchase,1.0,0 -30246419,"The Bureau XCOM Declassified",purchase,1.0,0 -30246419,"The Cat Lady",purchase,1.0,0 -30246419,"The Dark Eye Chains of Satinav",purchase,1.0,0 -30246419,"The Darkness II",purchase,1.0,0 -30246419,"The Detail",purchase,1.0,0 -30246419,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -30246419,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -30246419,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -30246419,"The First Templar",purchase,1.0,0 -30246419,"The Great Art Race",purchase,1.0,0 -30246419,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -30246419,"The Journey Down Chapter One",purchase,1.0,0 -30246419,"The Journey Down Chapter Two",purchase,1.0,0 -30246419,"The Joylancer Legendary Motor Knight",purchase,1.0,0 -30246419,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -30246419,"The Last Tinker City of Colors",purchase,1.0,0 -30246419,"The Legend of Korra",purchase,1.0,0 -30246419,"The Lord of the Rings War in the North",purchase,1.0,0 -30246419,"The Marvellous Miss Take",purchase,1.0,0 -30246419,"The Mysterious Cities of Gold - Secret Paths",purchase,1.0,0 -30246419,"The Samaritan Paradox",purchase,1.0,0 -30246419,"The Secret Of Hildegards",purchase,1.0,0 -30246419,"The Showdown Effect",purchase,1.0,0 -30246419,"The Sun at Night",purchase,1.0,0 -30246419,"The Swapper",purchase,1.0,0 -30246419,"The Tiny Bang Story",purchase,1.0,0 -30246419,"The Typing of The Dead Overkill",purchase,1.0,0 -30246419,"The Vanishing of Ethan Carter Redux",purchase,1.0,0 -30246419,"The Walking Dead Season Two",purchase,1.0,0 -30246419,"The Whispered World",purchase,1.0,0 -30246419,"The Whispered World Special Edition",purchase,1.0,0 -30246419,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -30246419,"The Wolf Among Us",purchase,1.0,0 -30246419,"Thief",purchase,1.0,0 -30246419,"Thief - Ghost",purchase,1.0,0 -30246419,"Thief - Opportunist",purchase,1.0,0 -30246419,"Thief - Predator",purchase,1.0,0 -30246419,"Thief - The Bank Heist",purchase,1.0,0 -30246419,"Thief 2",purchase,1.0,0 -30246419,"Thief Deadly Shadows",purchase,1.0,0 -30246419,"Thief Gold",purchase,1.0,0 -30246419,"Thunder Wolves",purchase,1.0,0 -30246419,"Time Gentlemen, Please!",purchase,1.0,0 -30246419,"Time Mysteries 2 The Ancient Spectres",purchase,1.0,0 -30246419,"Toki Tori 2+",purchase,1.0,0 -30246419,"Torchlight II",purchase,1.0,0 -30246419,"TowerFall Ascension",purchase,1.0,0 -30246419,"Tower of Guns",purchase,1.0,0 -30246419,"Toybox Turbos",purchase,1.0,0 -30246419,"Trainz Simulator 12",purchase,1.0,0 -30246419,"Trine",purchase,1.0,0 -30246419,"Tropico",purchase,1.0,0 -30246419,"Tropico 2 Pirate Cove",purchase,1.0,0 -30246419,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -30246419,"Tropico 4",purchase,1.0,0 -30246419,"Two Worlds 2 - Pirates of the Flying Fortress ",purchase,1.0,0 -30246419,"TypeRider",purchase,1.0,0 -30246419,"UFO Afterlight",purchase,1.0,0 -30246419,"UFO Extraterrestrials Gold",purchase,1.0,0 -30246419,"Unepic",purchase,1.0,0 -30246419,"Unhack",purchase,1.0,0 -30246419,"Uplink",purchase,1.0,0 -30246419,"Urban Trial Freestyle",purchase,1.0,0 -30246419,"Valkyria Chronicles",purchase,1.0,0 -30246419,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -30246419,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -30246419,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -30246419,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -30246419,"Vanguard Princess",purchase,1.0,0 -30246419,"Vanguard Princess Director's Cut",purchase,1.0,0 -30246419,"Velvet Assassin",purchase,1.0,0 -30246419,"Venetica",purchase,1.0,0 -30246419,"Wallace & Gromit Ep 1 Fright of the Bumblebees",purchase,1.0,0 -30246419,"Wallace & Gromit Ep 2 The Last Resort",purchase,1.0,0 -30246419,"Wallace & Gromit Ep 3 Muzzled!",purchase,1.0,0 -30246419,"Wallace & Gromit Ep 4 The Bogey Man",purchase,1.0,0 -30246419,"War, the Game",purchase,1.0,0 -30246419,"Wargame European Escalation",purchase,1.0,0 -30246419,"Warhammer 40,000 Space Marine",purchase,1.0,0 -30246419,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -30246419,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -30246419,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -30246419,"Warlock - Master of the Arcane",purchase,1.0,0 -30246419,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -30246419,"War of the Roses",purchase,1.0,0 -30246419,"War of the Roses Kingmaker",purchase,1.0,0 -30246419,"War of the Roses Balance Beta",purchase,1.0,0 -30246419,"Weird Worlds Return to Infinite Space",purchase,1.0,0 -30246419,"Windosill",purchase,1.0,0 -30246419,"Wolfenstein The Old Blood ",purchase,1.0,0 -30246419,"Woodcutter Simulator 2013",purchase,1.0,0 -30246419,"Worms Armageddon",purchase,1.0,0 -30246419,"Worms Blast",purchase,1.0,0 -30246419,"Worms Pinball",purchase,1.0,0 -30246419,"Worms Revolution",purchase,1.0,0 -30246419,"Worms Ultimate Mayhem",purchase,1.0,0 -30246419,"Wrack",purchase,1.0,0 -30246419,"WRC 4 FIA WORLD RALLY CHAMPIONSHIP",purchase,1.0,0 -30246419,"X-Blades",purchase,1.0,0 -30246419,"X-COM Apocalypse",purchase,1.0,0 -30246419,"X-COM Enforcer",purchase,1.0,0 -30246419,"X-COM Interceptor",purchase,1.0,0 -30246419,"X-COM Terror from the Deep",purchase,1.0,0 -30246419,"X-COM UFO Defense",purchase,1.0,0 -30246419,"Xpand Rally Xtreme",purchase,1.0,0 -30246419,"Yury",purchase,1.0,0 -30246419,"Z",purchase,1.0,0 -30246419,"Zafehouse Diaries",purchase,1.0,0 -30246419,"Zeno Clash 2",purchase,1.0,0 -30246419,"Zooloretto",purchase,1.0,0 -244314033,"APB Reloaded",purchase,1.0,0 -152291766,"Dota 2",purchase,1.0,0 -152291766,"Dota 2",play,509.0,0 -152291766,"Team Fortress 2",purchase,1.0,0 -152291766,"Team Fortress 2",play,1.1,0 -152291766,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -137455836,"Magic 2014 ",purchase,1.0,0 -137455836,"Magic 2014 ",play,9.4,0 -137455836,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -137455836,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.9,0 -137455836,"The Witcher Enhanced Edition",purchase,1.0,0 -65944691,"The Dig",purchase,1.0,0 -65944691,"The Dig",play,3.3,0 -65944691,"Indiana Jones and the Fate of Atlantis",purchase,1.0,0 -65944691,"Indiana Jones and the Fate of Atlantis",play,3.1,0 -65944691,"Loom",purchase,1.0,0 -65944691,"Indiana Jones and the Last Crusade",purchase,1.0,0 -110478090,"Counter-Strike",purchase,1.0,0 -110478090,"Counter-Strike",play,226.0,0 -110478090,"Grand Theft Auto IV",purchase,1.0,0 -110478090,"Grand Theft Auto IV",play,2.0,0 -110478090,"Team Fortress 2",purchase,1.0,0 -110478090,"Team Fortress 2",play,0.5,0 -110478090,"Counter-Strike Condition Zero",purchase,1.0,0 -110478090,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -154560653,"Dota 2",purchase,1.0,0 -154560653,"Dota 2",play,41.0,0 -46178364,"Counter-Strike Source",purchase,1.0,0 -46178364,"Counter-Strike Source",play,1406.0,0 -46178364,"Half-Life 2 Episode Two",purchase,1.0,0 -46178364,"Half-Life 2 Episode Two",play,13.1,0 -46178364,"Half-Life 2 Episode One",purchase,1.0,0 -46178364,"Half-Life 2 Episode One",play,3.7,0 -46178364,"Half-Life 2 Lost Coast",purchase,1.0,0 -46178364,"Half-Life 2 Lost Coast",play,1.0,0 -46178364,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -46178364,"Call of Duty Black Ops - Multiplayer",play,0.6,0 -46178364,"Team Fortress 2",purchase,1.0,0 -46178364,"Team Fortress 2",play,0.3,0 -46178364,"Counter-Strike",purchase,1.0,0 -46178364,"Counter-Strike",play,0.3,0 -46178364,"Call of Duty Black Ops",purchase,1.0,0 -46178364,"Call of Duty Black Ops",play,0.3,0 -46178364,"Half-Life 2",purchase,1.0,0 -46178364,"Half-Life 2",play,0.2,0 -46178364,"Portal",purchase,1.0,0 -46178364,"Counter-Strike Condition Zero",purchase,1.0,0 -46178364,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -46178364,"Free to Play",purchase,1.0,0 -188180021,"Dota 2",purchase,1.0,0 -188180021,"Dota 2",play,8.4,0 -214905138,"Mitos.is The Game",purchase,1.0,0 -214905138,"Mitos.is The Game",play,5.7,0 -214905138,"Dota 2",purchase,1.0,0 -214905138,"Dota 2",play,0.3,0 -116831920,"Team Fortress 2",purchase,1.0,0 -116831920,"Team Fortress 2",play,2.5,0 -154083425,"Dishonored (RU)",purchase,1.0,0 -154083425,"Dishonored (RU)",play,4.7,0 -154083425,"Team Fortress 2",purchase,1.0,0 -154083425,"Team Fortress 2",play,0.9,0 -154083425,"Arma Cold War Assault",purchase,1.0,0 -194812058,"Dota 2",purchase,1.0,0 -194812058,"Dota 2",play,52.0,0 -194812058,"Team Fortress 2",purchase,1.0,0 -194812058,"Team Fortress 2",play,2.1,0 -90195299,"Team Fortress 2",purchase,1.0,0 -90195299,"Team Fortress 2",play,1.6,0 -229285089,"Dota 2",purchase,1.0,0 -229285089,"Dota 2",play,388.0,0 -35116894,"Half-Life 2 Deathmatch",purchase,1.0,0 -35116894,"Half-Life 2 Lost Coast",purchase,1.0,0 -224677810,"Dota 2",purchase,1.0,0 -224677810,"Dota 2",play,1.7,0 -224677810,"APB Reloaded",purchase,1.0,0 -224677810,"APB Reloaded",play,1.0,0 -210433327,"Dota 2",purchase,1.0,0 -210433327,"Dota 2",play,0.7,0 -224526163,"Fallen Earth",purchase,1.0,0 -224526163,"Fallen Earth",play,1.2,0 -224526163,"War of the Roses",purchase,1.0,0 -224526163,"War of the Roses",play,0.2,0 -224526163,"The Lord of the Rings Online",purchase,1.0,0 -53155177,"Football Manager 2013",purchase,1.0,0 -53155177,"Football Manager 2013",play,79.0,0 -53155177,"Left 4 Dead",purchase,1.0,0 -53155177,"Left 4 Dead",play,1.8,0 -202759236,"Football Manager 2015",purchase,1.0,0 -202759236,"Football Manager 2015",play,749.0,0 -202759236,"Counter-Strike Nexon Zombies",purchase,1.0,0 -80550861,"Counter-Strike Global Offensive",purchase,1.0,0 -80550861,"Counter-Strike Global Offensive",play,379.0,0 -80550861,"Arma 3",purchase,1.0,0 -80550861,"Arma 3",play,229.0,0 -80550861,"The Witcher 3 Wild Hunt",purchase,1.0,0 -80550861,"The Witcher 3 Wild Hunt",play,72.0,0 -80550861,"DayZ",purchase,1.0,0 -80550861,"DayZ",play,56.0,0 -80550861,"Fallout 4",purchase,1.0,0 -80550861,"Fallout 4",play,54.0,0 -80550861,"DARK SOULS II",purchase,1.0,0 -80550861,"DARK SOULS II",play,47.0,0 -80550861,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -80550861,"Dark Souls Prepare to Die Edition",play,39.0,0 -80550861,"PAYDAY 2",purchase,1.0,0 -80550861,"PAYDAY 2",play,36.0,0 -80550861,"Rogue Legacy",purchase,1.0,0 -80550861,"Rogue Legacy",play,20.0,0 -80550861,"Hammerwatch",purchase,1.0,0 -80550861,"Hammerwatch",play,17.3,0 -80550861,"Warface",purchase,1.0,0 -80550861,"Warface",play,16.7,0 -80550861,"Portal 2",purchase,1.0,0 -80550861,"Portal 2",play,14.3,0 -80550861,"Pillars of Eternity",purchase,1.0,0 -80550861,"Pillars of Eternity",play,12.3,0 -80550861,"Fallout New Vegas",purchase,1.0,0 -80550861,"Fallout New Vegas",play,11.9,0 -80550861,"Risk of Rain",purchase,1.0,0 -80550861,"Risk of Rain",play,11.5,0 -80550861,"Hotline Miami 2 Wrong Number",purchase,1.0,0 -80550861,"Hotline Miami 2 Wrong Number",play,7.9,0 -80550861,"Darkest Dungeon",purchase,1.0,0 -80550861,"Darkest Dungeon",play,7.3,0 -80550861,"Resident Evil / biohazard HD REMASTER",purchase,1.0,0 -80550861,"Resident Evil / biohazard HD REMASTER",play,6.8,0 -80550861,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -80550861,"Game of Thrones - A Telltale Games Series",play,6.6,0 -80550861,"Far Cry 4",purchase,1.0,0 -80550861,"Far Cry 4",play,6.2,0 -80550861,"The Elder Scrolls V Skyrim",purchase,1.0,0 -80550861,"The Elder Scrolls V Skyrim",play,5.3,0 -80550861,"The Evil Within",purchase,1.0,0 -80550861,"The Evil Within",play,4.5,0 -80550861,"Middle-earth Shadow of Mordor",purchase,1.0,0 -80550861,"Middle-earth Shadow of Mordor",play,4.5,0 -80550861,"Grand Theft Auto V",purchase,1.0,0 -80550861,"Grand Theft Auto V",play,4.3,0 -80550861,"FTL Faster Than Light",purchase,1.0,0 -80550861,"FTL Faster Than Light",play,3.4,0 -80550861,"South Park The Stick of Truth",purchase,1.0,0 -80550861,"South Park The Stick of Truth",play,3.2,0 -80550861,"Team Fortress 2",purchase,1.0,0 -80550861,"Team Fortress 2",play,3.1,0 -80550861,"Metro Last Light",purchase,1.0,0 -80550861,"Metro Last Light",play,2.3,0 -80550861,"Baldur's Gate II Enhanced Edition",purchase,1.0,0 -80550861,"Baldur's Gate II Enhanced Edition",play,2.2,0 -80550861,"3DMark",purchase,1.0,0 -80550861,"3DMark",play,2.1,0 -80550861,"Loadout",purchase,1.0,0 -80550861,"Loadout",play,1.9,0 -80550861,"Far Cry 3",purchase,1.0,0 -80550861,"Far Cry 3",play,1.4,0 -80550861,"Contagion",purchase,1.0,0 -80550861,"Contagion",play,1.2,0 -80550861,"Serious Sam 3 BFE",purchase,1.0,0 -80550861,"Serious Sam 3 BFE",play,0.7,0 -80550861,"The Stanley Parable",purchase,1.0,0 -80550861,"The Stanley Parable",play,0.7,0 -80550861,"Outlast",purchase,1.0,0 -80550861,"Outlast",play,0.6,0 -80550861,"Mark of the Ninja",purchase,1.0,0 -80550861,"Mark of the Ninja",play,0.4,0 -80550861,"The Binding of Isaac Rebirth",purchase,1.0,0 -80550861,"The Binding of Isaac Rebirth",play,0.3,0 -80550861,"Age of Empires II HD Edition",purchase,1.0,0 -80550861,"Age of Empires II HD Edition",play,0.1,0 -80550861,"3DMark API Overhead feature test",purchase,1.0,0 -80550861,"3DMark Cloud Gate benchmark",purchase,1.0,0 -80550861,"3DMark Fire Strike benchmark",purchase,1.0,0 -80550861,"3DMark Ice Storm benchmark",purchase,1.0,0 -80550861,"3DMark Sky Diver benchmark",purchase,1.0,0 -80550861,"Arma 3 Helicopters",purchase,1.0,0 -80550861,"Arma 3 Karts",purchase,1.0,0 -80550861,"Arma 3 Marksmen",purchase,1.0,0 -80550861,"Arma 3 Zeus",purchase,1.0,0 -80550861,"Axiom Verge",purchase,1.0,0 -80550861,"Brtal Legend",purchase,1.0,0 -80550861,"Call of Cthulhu Dark Corners of the Earth",purchase,1.0,0 -80550861,"Cities in Motion 2",purchase,1.0,0 -80550861,"DARK SOULS II - Season Pass",purchase,1.0,0 -80550861,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -80550861,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -80550861,"Dishonored",purchase,1.0,0 -80550861,"Eets Munchies",purchase,1.0,0 -80550861,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -80550861,"Fallout New Vegas Dead Money",purchase,1.0,0 -80550861,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -80550861,"FEZ",purchase,1.0,0 -80550861,"Garry's Mod",purchase,1.0,0 -80550861,"Hotline Miami",purchase,1.0,0 -80550861,"Magicka",purchase,1.0,0 -80550861,"Magicka Vietnam",purchase,1.0,0 -80550861,"Natural Selection 2",purchase,1.0,0 -80550861,"Orcs Must Die!",purchase,1.0,0 -80550861,"Orcs Must Die! 2",purchase,1.0,0 -80550861,"Papers, Please",purchase,1.0,0 -80550861,"Sanctum",purchase,1.0,0 -80550861,"Sanctum 2",purchase,1.0,0 -80550861,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -80550861,"Terraria",purchase,1.0,0 -80550861,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -80550861,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -80550861,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -80550861,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -80550861,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -80550861,"Total War ROME II - Emperor Edition",purchase,1.0,0 -80550861,"Trine 2",purchase,1.0,0 -80550861,"Volgarr the Viking",purchase,1.0,0 -80550861,"XCOM Enemy Unknown",purchase,1.0,0 -80550861,"XCOM Enemy Within",purchase,1.0,0 -111545169,"Duke Nukem Forever",purchase,1.0,0 -242732085,"Assassin's Creed III",purchase,1.0,0 -242732085,"Assassin's Creed III",play,4.0,0 -242732085,"Blender 2.76b",purchase,1.0,0 -242732085,"Risen",purchase,1.0,0 -242732085,"Risen 2 - Dark Waters",purchase,1.0,0 -242732085,"Risen 3 - Titan Lords",purchase,1.0,0 -283597302,"Cry of Fear",purchase,1.0,0 -283597302,"sZone-Online",purchase,1.0,0 -178574781,"Warface",purchase,1.0,0 -178574781,"Warface",play,677.0,0 -178574781,"PAYDAY 2",purchase,1.0,0 -178574781,"PAYDAY 2",play,530.0,0 -178574781,"Battlefield Bad Company 2",purchase,1.0,0 -178574781,"Battlefield Bad Company 2",play,26.0,0 -178574781,"Tomb Raider",purchase,1.0,0 -178574781,"Tomb Raider",play,20.0,0 -178574781,"Defiance",purchase,1.0,0 -178574781,"Defiance",play,4.4,0 -178574781,"Garry's Mod",purchase,1.0,0 -178574781,"Garry's Mod",play,3.3,0 -178574781,"War Thunder",purchase,1.0,0 -178574781,"War Thunder",play,3.1,0 -178574781,"Insurgency",purchase,1.0,0 -178574781,"Insurgency",play,1.5,0 -178574781,"Sniper Elite V2",purchase,1.0,0 -178574781,"Sniper Elite V2",play,0.6,0 -196057622,"My Lands",purchase,1.0,0 -196057622,"My Lands",play,15.0,0 -80230375,"Call of Duty Black Ops",purchase,1.0,0 -80230375,"Call of Duty Black Ops",play,0.5,0 -80230375,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -134127685,"Team Fortress 2",purchase,1.0,0 -134127685,"Team Fortress 2",play,7.3,0 -134127685,"Dota 2",purchase,1.0,0 -134127685,"Dota 2",play,3.1,0 -134127685,"Left 4 Dead 2",purchase,1.0,0 -218396091,"Dota 2",purchase,1.0,0 -218396091,"Dota 2",play,4.9,0 -185080568,"Dota 2",purchase,1.0,0 -185080568,"Dota 2",play,0.5,0 -172263364,"Serious Sam HD The Second Encounter",purchase,1.0,0 -172263364,"Serious Sam HD The Second Encounter",play,2.3,0 -178396764,"Dota 2",purchase,1.0,0 -178396764,"Dota 2",play,670.0,0 -178396764,"Counter-Strike Global Offensive",purchase,1.0,0 -178396764,"Counter-Strike Global Offensive",play,31.0,0 -47728342,"Counter-Strike",purchase,1.0,0 -47728342,"Counter-Strike",play,163.0,0 -47728342,"Left 4 Dead",purchase,1.0,0 -47728342,"Left 4 Dead",play,83.0,0 -47728342,"Counter-Strike Condition Zero",purchase,1.0,0 -47728342,"Counter-Strike Condition Zero",play,9.7,0 -47728342,"Half-Life 2 Deathmatch",purchase,1.0,0 -47728342,"Half-Life 2 Deathmatch",play,2.0,0 -47728342,"Day of Defeat",purchase,1.0,0 -47728342,"Day of Defeat",play,1.3,0 -47728342,"Zombie Panic Source",purchase,1.0,0 -47728342,"Zombie Panic Source",play,0.6,0 -47728342,"Half-Life 2 Lost Coast",purchase,1.0,0 -47728342,"Half-Life 2 Lost Coast",play,0.6,0 -47728342,"Ricochet",purchase,1.0,0 -47728342,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -47728342,"Deathmatch Classic",purchase,1.0,0 -206577552,"Marvel Puzzle Quest",purchase,1.0,0 -206577552,"Marvel Puzzle Quest",play,5.9,0 -128135895,"Team Fortress 2",purchase,1.0,0 -128135895,"Team Fortress 2",play,11.6,0 -91627755,"Dungeon Defenders",purchase,1.0,0 -91627755,"Dungeon Defenders",play,24.0,0 -91627755,"Infestation Survivor Stories",purchase,1.0,0 -91627755,"Infestation Survivor Stories",play,12.3,0 -91627755,"Strife",purchase,1.0,0 -91627755,"Strife",play,6.0,0 -91627755,"Counter-Strike Global Offensive",purchase,1.0,0 -91627755,"Counter-Strike Global Offensive",play,4.7,0 -91627755,"Wanderlust Rebirth",purchase,1.0,0 -91627755,"Wanderlust Rebirth",play,3.8,0 -91627755,"Team Fortress 2",purchase,1.0,0 -91627755,"Team Fortress 2",play,1.7,0 -91627755,"Counter-Strike",purchase,1.0,0 -91627755,"Counter-Strike Condition Zero",purchase,1.0,0 -91627755,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -91627755,"Counter-Strike Source",purchase,1.0,0 -91627755,"DiRT Showdown",purchase,1.0,0 -91627755,"Left 4 Dead 2",purchase,1.0,0 -165760407,"Dota 2",purchase,1.0,0 -165760407,"Dota 2",play,2.0,0 -27099151,"Half-Life 2 Deathmatch",purchase,1.0,0 -27099151,"Half-Life 2 Deathmatch",play,0.4,0 -27099151,"Half-Life 2",purchase,1.0,0 -27099151,"Half-Life 2 Episode One",purchase,1.0,0 -27099151,"Half-Life 2 Lost Coast",purchase,1.0,0 -27099151,"Half-Life Source",purchase,1.0,0 -27099151,"Half-Life Deathmatch Source",purchase,1.0,0 -246688925,"Dota 2",purchase,1.0,0 -246688925,"Dota 2",play,61.0,0 -34040508,"Counter-Strike Global Offensive",purchase,1.0,0 -34040508,"Counter-Strike Global Offensive",play,530.0,0 -34040508,"Counter-Strike Source",purchase,1.0,0 -34040508,"Counter-Strike Source",play,18.2,0 -34040508,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -34040508,"Tom Clancy's Ghost Recon Phantoms - EU",play,3.7,0 -34040508,"Medieval II Total War",purchase,1.0,0 -34040508,"Medieval II Total War",play,0.3,0 -34040508,"Half-Life 2 Deathmatch",purchase,1.0,0 -34040508,"Half-Life 2 Deathmatch",play,0.2,0 -34040508,"Day of Defeat Source",purchase,1.0,0 -34040508,"Empire Total War",purchase,1.0,0 -34040508,"Half-Life 2 Lost Coast",purchase,1.0,0 -34040508,"Warframe",purchase,1.0,0 -209559315,"Terraria",purchase,1.0,0 -209559315,"Terraria",play,56.0,0 -209559315,"Castle Crashers",purchase,1.0,0 -209559315,"Castle Crashers",play,8.0,0 -209559315,"Garry's Mod",purchase,1.0,0 -209559315,"Garry's Mod",play,3.4,0 -209559315,"Goat Simulator",purchase,1.0,0 -209559315,"Goat Simulator",play,1.4,0 -209559315,"BattleBlock Theater",purchase,1.0,0 -209559315,"BattleBlock Theater",play,1.0,0 -209559315,"Super Meat Boy",purchase,1.0,0 -102327684,"Team Fortress 2",purchase,1.0,0 -102327684,"Team Fortress 2",play,1.4,0 -233397077,"Counter-Strike Global Offensive",purchase,1.0,0 -233397077,"Counter-Strike Global Offensive",play,12.7,0 -233397077,"Quake Live",purchase,1.0,0 -236020018,"Counter-Strike Global Offensive",purchase,1.0,0 -236020018,"Counter-Strike Global Offensive",play,110.0,0 -244269423,"Dota 2",purchase,1.0,0 -244269423,"Dota 2",play,1.2,0 -69796945,"Just Cause 2",purchase,1.0,0 -209509599,"Dota 2",purchase,1.0,0 -209509599,"Dota 2",play,1.8,0 -301801801,"The Escapists",purchase,1.0,0 -301801801,"The Escapists",play,6.2,0 -301801801,"ARK Survival Evolved",purchase,1.0,0 -301801801,"ARK Survival Evolved",play,6.1,0 -169159974,"Dota 2",purchase,1.0,0 -169159974,"Dota 2",play,120.0,0 -86866292,"Dota 2",purchase,1.0,0 -86866292,"Dota 2",play,1540.0,0 -86866292,"Disciples II Gallean's Return",purchase,1.0,0 -86866292,"Disciples II Gallean's Return",play,32.0,0 -86866292,"BioShock Infinite",purchase,1.0,0 -86866292,"BioShock Infinite",play,25.0,0 -86866292,"Path of Exile",purchase,1.0,0 -86866292,"Path of Exile",play,25.0,0 -86866292,"Aura Kingdom",purchase,1.0,0 -86866292,"Aura Kingdom",play,1.0,0 -86866292,"Don't Starve",purchase,1.0,0 -86866292,"Don't Starve Together Beta",purchase,1.0,0 -167167647,"Source Filmmaker",purchase,1.0,0 -167167647,"Source Filmmaker",play,312.0,0 -167167647,"Garry's Mod",purchase,1.0,0 -167167647,"Garry's Mod",play,112.0,0 -167167647,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -167167647,"METAL GEAR SOLID V THE PHANTOM PAIN",play,100.0,0 -167167647,"APB Reloaded",purchase,1.0,0 -167167647,"APB Reloaded",play,64.0,0 -167167647,"Fallout 4",purchase,1.0,0 -167167647,"Fallout 4",play,60.0,0 -167167647,"Sid Meier's Civilization V",purchase,1.0,0 -167167647,"Sid Meier's Civilization V",play,53.0,0 -167167647,"Sid Meier's Civilization III Complete",purchase,1.0,0 -167167647,"Sid Meier's Civilization III Complete",play,24.0,0 -167167647,"Unturned",purchase,1.0,0 -167167647,"Unturned",play,23.0,0 -167167647,"Prison Architect",purchase,1.0,0 -167167647,"Prison Architect",play,18.7,0 -167167647,"Call of Duty World at War",purchase,1.0,0 -167167647,"Call of Duty World at War",play,16.0,0 -167167647,"Rocket League",purchase,1.0,0 -167167647,"Rocket League",play,15.3,0 -167167647,"Robocraft",purchase,1.0,0 -167167647,"Robocraft",play,14.3,0 -167167647,"Borderless Gaming",purchase,1.0,0 -167167647,"Borderless Gaming",play,13.1,0 -167167647,"Contagion",purchase,1.0,0 -167167647,"Contagion",play,12.4,0 -167167647,"Tabletop Simulator",purchase,1.0,0 -167167647,"Tabletop Simulator",play,11.2,0 -167167647,"Project Zomboid",purchase,1.0,0 -167167647,"Project Zomboid",play,9.9,0 -167167647,"Counter-Strike Global Offensive",purchase,1.0,0 -167167647,"Counter-Strike Global Offensive",play,9.4,0 -167167647,"The Ship",purchase,1.0,0 -167167647,"The Ship",play,8.8,0 -167167647,"PAYDAY 2",purchase,1.0,0 -167167647,"PAYDAY 2",play,5.4,0 -167167647,"Portal 2",purchase,1.0,0 -167167647,"Portal 2",play,4.0,0 -167167647,"Star Wars - Battlefront II",purchase,1.0,0 -167167647,"Star Wars - Battlefront II",play,3.9,0 -167167647,"Warframe",purchase,1.0,0 -167167647,"Warframe",play,2.7,0 -167167647,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -167167647,"Microsoft Flight Simulator X Steam Edition",play,2.7,0 -167167647,"Pool Nation FX",purchase,1.0,0 -167167647,"Pool Nation FX",play,1.8,0 -167167647,"Ultimate Tic-Tac-Toe",purchase,1.0,0 -167167647,"Ultimate Tic-Tac-Toe",play,1.7,0 -167167647,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -167167647,"Sid Meier's Civilization Beyond Earth",play,1.4,0 -167167647,"Terraria",purchase,1.0,0 -167167647,"Terraria",play,0.7,0 -167167647,"Hexcells",purchase,1.0,0 -167167647,"Hexcells",play,0.7,0 -167167647,"ACE - Arena Cyber Evolution",purchase,1.0,0 -167167647,"ACE - Arena Cyber Evolution",play,0.4,0 -167167647,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -167167647,"Boring Man - Online Tactical Stickman Combat",play,0.2,0 -167167647,"Peggle Extreme",purchase,1.0,0 -167167647,"Peggle Extreme",play,0.2,0 -167167647,"Tactical Intervention",purchase,1.0,0 -167167647,"Tactical Intervention",play,0.1,0 -167167647,"Counter-Strike Source",purchase,1.0,0 -167167647,"Arma 2",purchase,1.0,0 -167167647,"Mountain",purchase,1.0,0 -167167647,"Arma 2 Operation Arrowhead",purchase,1.0,0 -167167647,"Dizzel",purchase,1.0,0 -167167647,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -167167647,"Arma Cold War Assault",purchase,1.0,0 -167167647,"Blender 2.76b",purchase,1.0,0 -167167647,"DCS World",purchase,1.0,0 -167167647,"Dirty Bomb",purchase,1.0,0 -167167647,"Double Action Boogaloo",purchase,1.0,0 -167167647,"Fishing Planet",purchase,1.0,0 -167167647,"Floating Point",purchase,1.0,0 -167167647,"Fuse",purchase,1.0,0 -167167647,"Moonbase Alpha",purchase,1.0,0 -167167647,"No More Room in Hell",purchase,1.0,0 -167167647,"Portal Stories Mel",purchase,1.0,0 -167167647,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -167167647,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -167167647,"The Binding of Isaac",purchase,1.0,0 -167167647,"theHunter",purchase,1.0,0 -167167647,"The Ship Single Player",purchase,1.0,0 -167167647,"The Ship Tutorial",purchase,1.0,0 -167167647,"Thinking with Time Machine",purchase,1.0,0 -167167647,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -167167647,"Viridi",purchase,1.0,0 -38222088,"Counter-Strike Source",purchase,1.0,0 -38222088,"Counter-Strike Source",play,11.5,0 -205929037,"Dota 2",purchase,1.0,0 -205929037,"Dota 2",play,4.6,0 -1129452,"Day of Defeat",purchase,1.0,0 -1129452,"Day of Defeat",play,257.0,0 -1129452,"Sniper Elite",purchase,1.0,0 -1129452,"Sniper Elite",play,238.0,0 -1129452,"War Inc. Battlezone",purchase,1.0,0 -1129452,"War Inc. Battlezone",play,53.0,0 -1129452,"Half-Life",purchase,1.0,0 -1129452,"Half-Life",play,40.0,0 -1129452,"Half-Life Opposing Force",purchase,1.0,0 -1129452,"Half-Life Opposing Force",play,23.0,0 -1129452,"Half-Life 2",purchase,1.0,0 -1129452,"Half-Life 2",play,14.4,0 -1129452,"Half-Life 2 Episode Two",purchase,1.0,0 -1129452,"Half-Life 2 Episode Two",play,13.5,0 -1129452,"Half-Life Blue Shift",purchase,1.0,0 -1129452,"Half-Life Blue Shift",play,9.9,0 -1129452,"Sid Meier's Civilization III Complete",purchase,1.0,0 -1129452,"Sid Meier's Civilization III Complete",play,9.7,0 -1129452,"Half-Life 2 Episode One",purchase,1.0,0 -1129452,"Half-Life 2 Episode One",play,9.5,0 -1129452,"Portal",purchase,1.0,0 -1129452,"Portal",play,1.7,0 -1129452,"Silent Hunter III",purchase,1.0,0 -1129452,"Silent Hunter III",play,0.9,0 -1129452,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -1129452,"S.T.A.L.K.E.R. Clear Sky",play,0.8,0 -1129452,"Counter-Strike",purchase,1.0,0 -1129452,"Counter-Strike Source",purchase,1.0,0 -1129452,"Day of Defeat Source",purchase,1.0,0 -1129452,"Deathmatch Classic",purchase,1.0,0 -1129452,"Half-Life 2 Deathmatch",purchase,1.0,0 -1129452,"Half-Life 2 Lost Coast",purchase,1.0,0 -1129452,"Iron Warriors T-72 Tank Command",purchase,1.0,0 -1129452,"Ricochet",purchase,1.0,0 -1129452,"Team Fortress Classic",purchase,1.0,0 -174681719,"Dota 2",purchase,1.0,0 -174681719,"Dota 2",play,0.2,0 -47978182,"Left 4 Dead",purchase,1.0,0 -47978182,"Left 4 Dead",play,4.5,0 -110881546,"Ragnarok Online 2",purchase,1.0,0 -110881546,"Ragnarok Online 2",play,802.0,0 -110881546,"Might & Magic Heroes VI",purchase,1.0,0 -110881546,"Might & Magic Heroes VI",play,180.0,0 -110881546,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -110881546,"Kingdoms of Amalur Reckoning",play,153.0,0 -110881546,"Torchlight II",purchase,1.0,0 -110881546,"Torchlight II",play,79.0,0 -110881546,"Recettear An Item Shop's Tale",purchase,1.0,0 -110881546,"Recettear An Item Shop's Tale",play,62.0,0 -110881546,"Overlord Raising Hell",purchase,1.0,0 -110881546,"Overlord Raising Hell",play,57.0,0 -110881546,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -110881546,"METAL GEAR RISING REVENGEANCE",play,47.0,0 -110881546,"Darksiders II",purchase,1.0,0 -110881546,"Darksiders II",play,46.0,0 -110881546,"Overlord II",purchase,1.0,0 -110881546,"Overlord II",play,43.0,0 -110881546,"Mark of the Ninja",purchase,1.0,0 -110881546,"Mark of the Ninja",play,31.0,0 -110881546,"Of Orcs And Men",purchase,1.0,0 -110881546,"Of Orcs And Men",play,30.0,0 -110881546,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -110881546,"The Incredible Adventures of Van Helsing",play,30.0,0 -110881546,"Alice Madness Returns",purchase,1.0,0 -110881546,"Alice Madness Returns",play,28.0,0 -110881546,"Portal 2",purchase,1.0,0 -110881546,"Portal 2",play,21.0,0 -110881546,"Trine 2",purchase,1.0,0 -110881546,"Trine 2",play,20.0,0 -110881546,"DmC Devil May Cry",purchase,1.0,0 -110881546,"DmC Devil May Cry",play,17.3,0 -110881546,"Trine",purchase,1.0,0 -110881546,"Trine",play,16.1,0 -110881546,"Abyss Odyssey",purchase,1.0,0 -110881546,"Abyss Odyssey",play,12.5,0 -110881546,"Brtal Legend",purchase,1.0,0 -110881546,"Brtal Legend",play,7.2,0 -110881546,"Brothers - A Tale of Two Sons",purchase,1.0,0 -110881546,"Brothers - A Tale of Two Sons",play,4.6,0 -110881546,"Overlord",purchase,1.0,0 -110881546,"Overlord",play,0.5,0 -110881546,"Dota 2",purchase,1.0,0 -110881546,"Dota 2",play,0.2,0 -110881546,"Bastion",purchase,1.0,0 -110881546,"Devil May Cry 4",purchase,1.0,0 -110881546,"Dragon Age Origins",purchase,1.0,0 -110881546,"Dust An Elysian Tail",purchase,1.0,0 -110881546,"Mark of the Ninja Special Edition DLC",purchase,1.0,0 -110881546,"Ori and the Blind Forest",purchase,1.0,0 -110881546,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -110881546,"Sacred Citadel",purchase,1.0,0 -110881546,"Styx Master of Shadows",purchase,1.0,0 -110881546,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -110881546,"The Lord of the Rings War in the North",purchase,1.0,0 -110881546,"Thief",purchase,1.0,0 -110881546,"Thief - Ghost",purchase,1.0,0 -110881546,"Thief - Opportunist",purchase,1.0,0 -110881546,"Thief - Predator",purchase,1.0,0 -110881546,"Thief - The Bank Heist",purchase,1.0,0 -110881546,"Two Worlds 2 - Pirates of the Flying Fortress ",purchase,1.0,0 -110881546,"Two Worlds Epic Edition",purchase,1.0,0 -110881546,"Two Worlds II",purchase,1.0,0 -110881546,"Two Worlds II Castle Defense",purchase,1.0,0 -110881546,"X3 Terran Conflict",purchase,1.0,0 -144977276,"Dota 2",purchase,1.0,0 -144977276,"Dota 2",play,812.0,0 -271659144,"Dota 2",purchase,1.0,0 -271659144,"Dota 2",play,22.0,0 -271659144,"Kung Fury",purchase,1.0,0 -271659144,"Rise of Flight United",purchase,1.0,0 -264424976,"War Thunder",purchase,1.0,0 -88199811,"The Elder Scrolls V Skyrim",purchase,1.0,0 -88199811,"The Elder Scrolls V Skyrim",play,178.0,0 -88199811,"FINAL FANTASY III",purchase,1.0,0 -88199811,"FINAL FANTASY III",play,55.0,0 -88199811,"RPG Maker MV",purchase,1.0,0 -88199811,"RPG Maker MV",play,55.0,0 -88199811,"RAGE",purchase,1.0,0 -88199811,"RAGE",play,22.0,0 -88199811,"Arma 3",purchase,1.0,0 -88199811,"Arma 3",play,13.8,0 -88199811,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -88199811,"Just Cause 2 Multiplayer Mod",play,13.6,0 -88199811,"Just Cause 2",purchase,1.0,0 -88199811,"Just Cause 2",play,13.5,0 -88199811,"BeamNG.drive",purchase,1.0,0 -88199811,"BeamNG.drive",play,6.0,0 -88199811,"Fallout New Vegas",purchase,1.0,0 -88199811,"Fallout New Vegas",play,5.6,0 -88199811,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",purchase,1.0,0 -88199811,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",play,3.1,0 -88199811,"Call of Duty Black Ops",purchase,1.0,0 -88199811,"Call of Duty Black Ops",play,2.8,0 -88199811,"Portal 2",purchase,1.0,0 -88199811,"Portal 2",play,2.8,0 -88199811,"Next Car Game Wreckfest",purchase,1.0,0 -88199811,"Next Car Game Wreckfest",play,1.7,0 -88199811,"Worms Reloaded",purchase,1.0,0 -88199811,"Worms Reloaded",play,1.2,0 -88199811,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -88199811,"Next Car Game Sneak Peek 2.0",play,0.2,0 -88199811,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -88199811,"Arma 3 Zeus",purchase,1.0,0 -88199811,"DiRT Showdown",purchase,1.0,0 -88199811,"RPG Maker MV Cover Art Characters Pack",purchase,1.0,0 -88199811,"RPG Maker MV Essentials Add-On",purchase,1.0,0 -88199811,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -88199811,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -88199811,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -88199811,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -155420511,"Team Fortress 2",purchase,1.0,0 -155420511,"Team Fortress 2",play,846.0,0 -155420511,"Dota 2",purchase,1.0,0 -155420511,"Dota 2",play,243.0,0 -155420511,"Counter-Strike Global Offensive",purchase,1.0,0 -155420511,"Counter-Strike Global Offensive",play,133.0,0 -155420511,"The Elder Scrolls V Skyrim",purchase,1.0,0 -155420511,"The Elder Scrolls V Skyrim",play,38.0,0 -155420511,"Might & Magic Heroes Online",purchase,1.0,0 -155420511,"Might & Magic Heroes Online",play,2.6,0 -155420511,"Poker Night at the Inventory",purchase,1.0,0 -155420511,"Poker Night at the Inventory",play,2.1,0 -155420511,"Fallout 3",purchase,1.0,0 -155420511,"Fallout 3",play,1.7,0 -155420511,"Quake Live",purchase,1.0,0 -155420511,"Quake Live",play,1.2,0 -155420511,"Poker Night 2",purchase,1.0,0 -155420511,"Poker Night 2",play,1.0,0 -155420511,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -155420511,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.5,0 -155420511,"The Culling Of The Cows",purchase,1.0,0 -155420511,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -155420511,"CrimeCraft GangWars",purchase,1.0,0 -155420511,"Super Monday Night Combat",purchase,1.0,0 -155420511,"Spiral Knights",purchase,1.0,0 -155420511,"Amnesia The Dark Descent",purchase,1.0,0 -155420511,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -155420511,"TERA",purchase,1.0,0 -155420511,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -155420511,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -155420511,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -98686446,"DOOM 3 BFG Edition",purchase,1.0,0 -98686446,"DOOM 3 BFG Edition",play,230.0,0 -98686446,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -98686446,"Call of Duty Black Ops - Multiplayer",play,90.0,0 -98686446,"Call of Duty Black Ops",purchase,1.0,0 -98686446,"Call of Duty Black Ops",play,8.4,0 -246456527,"DayZ",purchase,1.0,0 -246456527,"DayZ",play,10.7,0 -246456527,"Counter-Strike Global Offensive",purchase,1.0,0 -246456527,"Counter-Strike Global Offensive",play,9.1,0 -246456527,"TERA",purchase,1.0,0 -246456527,"TERA",play,0.4,0 -113224251,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -113224251,"Call of Duty Black Ops II - Multiplayer",play,532.0,0 -113224251,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -113224251,"A.V.A - Alliance of Valiant Arms",play,36.0,0 -113224251,"Counter-Strike Global Offensive",purchase,1.0,0 -113224251,"Counter-Strike Global Offensive",play,30.0,0 -113224251,"Hitman Absolution",purchase,1.0,0 -113224251,"Hitman Absolution",play,11.1,0 -113224251,"Call of Juarez Gunslinger",purchase,1.0,0 -113224251,"Call of Juarez Gunslinger",play,8.0,0 -113224251,"DiRT Showdown",purchase,1.0,0 -113224251,"DiRT Showdown",play,6.0,0 -113224251,"Zombie Panic Source",purchase,1.0,0 -113224251,"Zombie Panic Source",play,3.8,0 -113224251,"GRID 2",purchase,1.0,0 -113224251,"GRID 2",play,2.6,0 -113224251,"Max Payne 3",purchase,1.0,0 -113224251,"Max Payne 3",play,1.2,0 -113224251,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -113224251,"Call of Duty Black Ops II - Zombies",play,1.0,0 -113224251,"Unturned",purchase,1.0,0 -113224251,"Unturned",play,0.6,0 -113224251,"Alien Swarm",purchase,1.0,0 -113224251,"Alien Swarm",play,0.3,0 -113224251,"Call of Duty Black Ops II",purchase,1.0,0 -113224251,"PAYDAY The Heist",purchase,1.0,0 -113224251,"Clicker Heroes",purchase,1.0,0 -113224251,"Hitman Sniper Challenge",purchase,1.0,0 -113224251,"Warface",purchase,1.0,0 -191803558,"Dota 2",purchase,1.0,0 -191803558,"Dota 2",play,1.2,0 -10181060,"Half-Life 2",purchase,1.0,0 -10181060,"Half-Life 2",play,27.0,0 -10181060,"Age of Empires III Complete Collection",purchase,1.0,0 -10181060,"Age of Empires III Complete Collection",play,14.0,0 -10181060,"Half-Life 2 Lost Coast",purchase,1.0,0 -10181060,"Half-Life 2 Lost Coast",play,1.5,0 -10181060,"Portal 2",purchase,1.0,0 -10181060,"Portal 2",play,1.1,0 -10181060,"Age of Empires II HD Edition",purchase,1.0,0 -10181060,"Age of Empires II HD Edition",play,0.5,0 -10181060,"Counter-Strike Source",purchase,1.0,0 -10181060,"Counter-Strike Source",play,0.2,0 -10181060,"Counter-Strike Global Offensive",purchase,1.0,0 -10181060,"Counter-Strike Global Offensive",play,0.2,0 -10181060,"Day of Defeat Source",purchase,1.0,0 -10181060,"Day of Defeat Source",play,0.1,0 -10181060,"Devil May Cry 4",purchase,1.0,0 -10181060,"Age of Empires II HD The Forgotten",purchase,1.0,0 -10181060,"Half-Life 2 Deathmatch",purchase,1.0,0 -105024602,"Zombie Panic Source",purchase,1.0,0 -105024602,"Zombie Panic Source",play,10.3,0 -105024602,"Alien Swarm",purchase,1.0,0 -105024602,"Alien Swarm",play,2.7,0 -105024602,"Team Fortress 2",purchase,1.0,0 -105024602,"Team Fortress 2",play,2.5,0 -78671103,"Team Fortress 2",purchase,1.0,0 -78671103,"Team Fortress 2",play,18.4,0 -78671103,"Marvel Heroes 2015",purchase,1.0,0 -78671103,"Marvel Heroes 2015",play,14.3,0 -78671103,"Infestation Survivor Stories",purchase,1.0,0 -78671103,"Infestation Survivor Stories",play,13.6,0 -78671103,"Dota 2",purchase,1.0,0 -78671103,"Dota 2",play,11.5,0 -78671103,"DC Universe Online",purchase,1.0,0 -78671103,"DC Universe Online",play,3.3,0 -78671103,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -78671103,"Unreal Tournament 3 Black Edition",play,1.8,0 -78671103,"Orcs Must Die!",purchase,1.0,0 -78671103,"Orcs Must Die!",play,1.5,0 -78671103,"Path of Exile",purchase,1.0,0 -78671103,"Path of Exile",play,0.5,0 -78671103,"F.E.A.R. 3",purchase,1.0,0 -78671103,"F.E.A.R. 3",play,0.5,0 -78671103,"Blades of Time",purchase,1.0,0 -78671103,"Painkiller Hell & Damnation",purchase,1.0,0 -78671103,"Sniper Elite V2",purchase,1.0,0 -78671103,"Wargame European Escalation",purchase,1.0,0 -91784246,"Football Manager 2012",purchase,1.0,0 -91784246,"Football Manager 2012",play,89.0,0 -96219642,"Team Fortress 2",purchase,1.0,0 -96219642,"Team Fortress 2",play,212.0,0 -96219642,"Source Filmmaker",purchase,1.0,0 -96219642,"Source Filmmaker",play,1.4,0 -44948554,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -44948554,"Call of Duty Modern Warfare 3 - Multiplayer",play,21.0,0 -44948554,"Call of Duty Modern Warfare 3",purchase,1.0,0 -44948554,"Call of Duty Modern Warfare 3",play,4.1,0 -203241031,"Defiance",purchase,1.0,0 -203241031,"Defiance",play,277.0,0 -203241031,"Ragnarok Online 2",purchase,1.0,0 -203241031,"Ragnarok Online 2",play,23.0,0 -203241031,"RIFT",purchase,1.0,0 -203241031,"RIFT",play,14.2,0 -203241031,"Aura Kingdom",purchase,1.0,0 -203241031,"Aura Kingdom",play,6.0,0 -203241031,"Eldevin",purchase,1.0,0 -203241031,"Eldevin",play,0.1,0 -203241031,"Defiance Arktech Revolution",purchase,1.0,0 -34858979,"Counter-Strike Source",purchase,1.0,0 -34858979,"Counter-Strike Source",play,8.2,0 -34858979,"Half-Life 2 Lost Coast",purchase,1.0,0 -34858979,"Half-Life 2 Lost Coast",play,2.0,0 -34858979,"Half-Life 2 Deathmatch",purchase,1.0,0 -34858979,"Half-Life 2 Deathmatch",play,0.6,0 -34858979,"Day of Defeat Source",purchase,1.0,0 -34858979,"Day of Defeat Source",play,0.1,0 -287498478,"LEGO Worlds",purchase,1.0,0 -287498478,"LEGO Worlds",play,0.4,0 -82438562,"Sid Meier's Civilization V",purchase,1.0,0 -82438562,"Sid Meier's Civilization V",play,18.7,0 -82438562,"You Need A Budget 4 (YNAB)",purchase,1.0,0 -82438562,"You Need A Budget 4 (YNAB)",play,1.2,0 -82438562,"Portal",purchase,1.0,0 -82438562,"Portal",play,0.6,0 -82438562,"Puzzle Agent",purchase,1.0,0 -82438562,"Puzzle Agent",play,0.3,0 -82438562,"Eets",purchase,1.0,0 -97782908,"Age of Mythology Extended Edition",purchase,1.0,0 -97782908,"Age of Mythology Extended Edition",play,98.0,0 -97782908,"Audiosurf",purchase,1.0,0 -97782908,"Audiosurf",play,95.0,0 -97782908,"South Park The Stick of Truth",purchase,1.0,0 -97782908,"South Park The Stick of Truth",play,45.0,0 -97782908,"Five Nights at Freddy's",purchase,1.0,0 -97782908,"Five Nights at Freddy's",play,13.3,0 -97782908,"Bastion",purchase,1.0,0 -97782908,"Bastion",play,11.9,0 -97782908,"DC Universe Online",purchase,1.0,0 -97782908,"DC Universe Online",play,10.1,0 -97782908,"Five Nights at Freddy's 2",purchase,1.0,0 -97782908,"Five Nights at Freddy's 2",play,9.4,0 -97782908,"Goat Simulator",purchase,1.0,0 -97782908,"Goat Simulator",play,6.4,0 -97782908,"Scribblenauts Unlimited",purchase,1.0,0 -97782908,"Scribblenauts Unlimited",play,2.3,0 -97782908,"Amnesia The Dark Descent",purchase,1.0,0 -97782908,"Amnesia The Dark Descent",play,1.3,0 -97782908,"Impossible Creatures",purchase,1.0,0 -97782908,"Impossible Creatures",play,1.2,0 -97782908,"Braid",purchase,1.0,0 -97782908,"Braid",play,0.8,0 -97782908,"Darkest Dungeon",purchase,1.0,0 -97782908,"Darkest Dungeon",play,0.6,0 -97782908,"Psychonauts",purchase,1.0,0 -97782908,"Psychonauts",play,0.3,0 -97782908,"Path of Exile",purchase,1.0,0 -97782908,"Path of Exile",play,0.1,0 -97782908,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -97782908,"LIMBO",purchase,1.0,0 -97782908,"Lone Survivor The Director's Cut",purchase,1.0,0 -97782908,"Psychonauts Demo",purchase,1.0,0 -97782908,"South Park The Stick of Truth - Super Samurai Spaceman Pack",purchase,1.0,0 -97782908,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -97782908,"Super Meat Boy",purchase,1.0,0 -88525821,"Counter-Strike Global Offensive",purchase,1.0,0 -88525821,"Counter-Strike Global Offensive",play,1300.0,0 -88525821,"Baldur's Gate II Enhanced Edition",purchase,1.0,0 -88525821,"Baldur's Gate II Enhanced Edition",play,45.0,0 -88525821,"Fallout 2",purchase,1.0,0 -88525821,"Fallout 2",play,34.0,0 -88525821,"Pillars of Eternity",purchase,1.0,0 -88525821,"Pillars of Eternity",play,32.0,0 -88525821,"The Evil Within",purchase,1.0,0 -88525821,"The Evil Within",play,30.0,0 -88525821,"Broken Sword 5 - the Serpent's Curse",purchase,1.0,0 -88525821,"Broken Sword 5 - the Serpent's Curse",play,30.0,0 -88525821,"Torchlight II",purchase,1.0,0 -88525821,"Torchlight II",play,28.0,0 -88525821,"Deponia The Complete Journey",purchase,1.0,0 -88525821,"Deponia The Complete Journey",play,27.0,0 -88525821,"Wasteland 2",purchase,1.0,0 -88525821,"Wasteland 2",play,26.0,0 -88525821,"Fallout 4",purchase,1.0,0 -88525821,"Fallout 4",play,23.0,0 -88525821,"Age of Empires II HD Edition",purchase,1.0,0 -88525821,"Age of Empires II HD Edition",play,21.0,0 -88525821,"Broken Sword 4 - the Angel of Death",purchase,1.0,0 -88525821,"Broken Sword 4 - the Angel of Death",play,21.0,0 -88525821,"Alien Isolation",purchase,1.0,0 -88525821,"Alien Isolation",play,19.0,0 -88525821,"SpeedRunners",purchase,1.0,0 -88525821,"SpeedRunners",play,16.0,0 -88525821,"7 Days to Die",purchase,1.0,0 -88525821,"7 Days to Die",play,15.3,0 -88525821,"Worms Armageddon",purchase,1.0,0 -88525821,"Worms Armageddon",play,14.5,0 -88525821,"Wolfenstein The New Order",purchase,1.0,0 -88525821,"Wolfenstein The New Order",play,14.2,0 -88525821,"Portal 2",purchase,1.0,0 -88525821,"Portal 2",play,13.6,0 -88525821,"Insurgency",purchase,1.0,0 -88525821,"Insurgency",play,13.5,0 -88525821,"Divinity Original Sin",purchase,1.0,0 -88525821,"Divinity Original Sin",play,12.8,0 -88525821,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -88525821,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,12.4,0 -88525821,"Metro 2033 Redux",purchase,1.0,0 -88525821,"Metro 2033 Redux",play,11.8,0 -88525821,"Mercenary Kings",purchase,1.0,0 -88525821,"Mercenary Kings",play,11.8,0 -88525821,"Magic 2015",purchase,1.0,0 -88525821,"Magic 2015",play,11.0,0 -88525821,"Darksiders II",purchase,1.0,0 -88525821,"Darksiders II",play,10.9,0 -88525821,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -88525821,"Baldur's Gate Enhanced Edition",play,10.7,0 -88525821,"Sanitarium",purchase,1.0,0 -88525821,"Sanitarium",play,10.4,0 -88525821,"Metro Last Light Redux",purchase,1.0,0 -88525821,"Metro Last Light Redux",play,10.3,0 -88525821,"Gauntlet ",purchase,1.0,0 -88525821,"Gauntlet ",play,9.9,0 -88525821,"Hammerwatch",purchase,1.0,0 -88525821,"Hammerwatch",play,9.6,0 -88525821,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -88525821,"Deus Ex Human Revolution - Director's Cut",play,9.2,0 -88525821,"Left 4 Dead 2",purchase,1.0,0 -88525821,"Left 4 Dead 2",play,7.5,0 -88525821,"Full Mojo Rampage",purchase,1.0,0 -88525821,"Full Mojo Rampage",play,7.0,0 -88525821,"Resident Evil / biohazard HD REMASTER",purchase,1.0,0 -88525821,"Resident Evil / biohazard HD REMASTER",play,6.9,0 -88525821,"Shantae and the Pirate's Curse",purchase,1.0,0 -88525821,"Shantae and the Pirate's Curse",play,6.9,0 -88525821,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -88525821,"Shadowrun Dragonfall - Director's Cut",play,6.8,0 -88525821,"Deadly Premonition The Director's Cut",purchase,1.0,0 -88525821,"Deadly Premonition The Director's Cut",play,5.9,0 -88525821,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -88525821,"The Witcher 2 Assassins of Kings Enhanced Edition",play,5.5,0 -88525821,"Borderlands 2",purchase,1.0,0 -88525821,"Borderlands 2",play,5.4,0 -88525821,"Castle Crashers",purchase,1.0,0 -88525821,"Castle Crashers",play,5.1,0 -88525821,"The Last Remnant",purchase,1.0,0 -88525821,"The Last Remnant",play,5.0,0 -88525821,"Fallout",purchase,1.0,0 -88525821,"Fallout",play,4.9,0 -88525821,"To the Moon",purchase,1.0,0 -88525821,"To the Moon",play,4.5,0 -88525821,"Starbound",purchase,1.0,0 -88525821,"Starbound",play,4.4,0 -88525821,"Broforce",purchase,1.0,0 -88525821,"Broforce",play,4.2,0 -88525821,"Portal",purchase,1.0,0 -88525821,"Portal",play,3.9,0 -88525821,"Hitman Absolution",purchase,1.0,0 -88525821,"Hitman Absolution",play,3.7,0 -88525821,"Sanctum 2",purchase,1.0,0 -88525821,"Sanctum 2",play,3.7,0 -88525821,"Trine 2",purchase,1.0,0 -88525821,"Trine 2",play,3.2,0 -88525821,"Torchlight",purchase,1.0,0 -88525821,"Torchlight",play,3.1,0 -88525821,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -88525821,"Rising Storm/Red Orchestra 2 Multiplayer",play,3.1,0 -88525821,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -88525821,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,3.0,0 -88525821,"War Thunder",purchase,1.0,0 -88525821,"War Thunder",play,2.9,0 -88525821,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -88525821,"METAL GEAR SOLID V GROUND ZEROES",play,2.4,0 -88525821,"Worms Revolution",purchase,1.0,0 -88525821,"Worms Revolution",play,2.3,0 -88525821,"Grim Fandango Remastered",purchase,1.0,0 -88525821,"Grim Fandango Remastered",play,2.2,0 -88525821,"Shadowrun Returns",purchase,1.0,0 -88525821,"Shadowrun Returns",play,2.1,0 -88525821,"Foul Play",purchase,1.0,0 -88525821,"Foul Play",play,1.8,0 -88525821,"Super Meat Boy",purchase,1.0,0 -88525821,"Super Meat Boy",play,1.5,0 -88525821,"Dust An Elysian Tail",purchase,1.0,0 -88525821,"Dust An Elysian Tail",play,1.5,0 -88525821,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -88525821,"THE KING OF FIGHTERS XIII STEAM EDITION",play,1.4,0 -88525821,"Killing Floor",purchase,1.0,0 -88525821,"Killing Floor",play,1.4,0 -88525821,"Magicka",purchase,1.0,0 -88525821,"Magicka",play,1.3,0 -88525821,"Chivalry Medieval Warfare",purchase,1.0,0 -88525821,"Chivalry Medieval Warfare",play,1.3,0 -88525821,"Team Fortress 2",purchase,1.0,0 -88525821,"Team Fortress 2",play,1.0,0 -88525821,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -88525821,"The Incredible Adventures of Van Helsing",play,1.0,0 -88525821,"Sonic Generations",purchase,1.0,0 -88525821,"Sonic Generations",play,1.0,0 -88525821,"100% Orange Juice",purchase,1.0,0 -88525821,"100% Orange Juice",play,0.9,0 -88525821,"Hero Siege",purchase,1.0,0 -88525821,"Hero Siege",play,0.8,0 -88525821,"Patch testing for Chivalry",purchase,1.0,0 -88525821,"Patch testing for Chivalry",play,0.7,0 -88525821,"Castlevania Lords of Shadow Mirror of Fate HD",purchase,1.0,0 -88525821,"Castlevania Lords of Shadow Mirror of Fate HD",play,0.6,0 -88525821,"Monaco",purchase,1.0,0 -88525821,"Monaco",play,0.5,0 -88525821,"Card Hunter",purchase,1.0,0 -88525821,"Card Hunter",play,0.4,0 -88525821,"Amnesia The Dark Descent",purchase,1.0,0 -88525821,"Amnesia The Dark Descent",play,0.3,0 -88525821,"Risk of Rain",purchase,1.0,0 -88525821,"Risk of Rain",play,0.3,0 -88525821,"Worms Crazy Golf",purchase,1.0,0 -88525821,"Worms Crazy Golf",play,0.2,0 -88525821,"Aquaria",purchase,1.0,0 -88525821,"Aquaria",play,0.2,0 -88525821,"Worms Ultimate Mayhem",purchase,1.0,0 -88525821,"Worms Ultimate Mayhem",play,0.2,0 -88525821,"Dota 2",purchase,1.0,0 -88525821,"Dota 2",play,0.2,0 -88525821,"MURDERED SOUL SUSPECT",purchase,1.0,0 -88525821,"MURDERED SOUL SUSPECT",play,0.2,0 -88525821,"Garry's Mod",purchase,1.0,0 -88525821,"Garry's Mod",play,0.2,0 -88525821,"Heroes & Generals",purchase,1.0,0 -88525821,"Heroes & Generals",play,0.1,0 -88525821,"CaesarIA",purchase,1.0,0 -88525821,"OH! RPG!",purchase,1.0,0 -88525821,"Fractured Space",purchase,1.0,0 -88525821,"The Binding of Isaac",purchase,1.0,0 -88525821,"Batman Arkham City GOTY",purchase,1.0,0 -88525821,"Beyond Divinity",purchase,1.0,0 -88525821,"Call of Cthulhu Dark Corners of the Earth",purchase,1.0,0 -88525821,"Cities in Motion 2",purchase,1.0,0 -88525821,"Crusader Kings II",purchase,1.0,0 -88525821,"Dead Island Epidemic",purchase,1.0,0 -88525821,"Deadlight",purchase,1.0,0 -88525821,"Deadlight Original Soundtrack",purchase,1.0,0 -88525821,"Divine Divinity",purchase,1.0,0 -88525821,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -88525821,"Don't Starve",purchase,1.0,0 -88525821,"Don't Starve Together Beta",purchase,1.0,0 -88525821,"Fallout Tactics",purchase,1.0,0 -88525821,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -88525821,"Hero Siege - The Karp of Doom",purchase,1.0,0 -88525821,"Hitman Sniper Challenge",purchase,1.0,0 -88525821,"Jamestown",purchase,1.0,0 -88525821,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -88525821,"Magicka 2",purchase,1.0,0 -88525821,"Magicka Final Frontier",purchase,1.0,0 -88525821,"Magicka Frozen Lake",purchase,1.0,0 -88525821,"Magicka Nippon",purchase,1.0,0 -88525821,"Magicka Party Robes",purchase,1.0,0 -88525821,"Magicka The Watchtower",purchase,1.0,0 -88525821,"Magicka Vietnam",purchase,1.0,0 -88525821,"Magicka Wizard's Survival Kit",purchase,1.0,0 -88525821,"Natural Selection 2",purchase,1.0,0 -88525821,"Orcs Must Die!",purchase,1.0,0 -88525821,"Orcs Must Die! 2",purchase,1.0,0 -88525821,"Sanctum",purchase,1.0,0 -88525821,"Serious Sam 3 BFE",purchase,1.0,0 -88525821,"Sniper Elite V2",purchase,1.0,0 -88525821,"Starbound - Unstable",purchase,1.0,0 -88525821,"Superfrog HD",purchase,1.0,0 -88525821,"Terraria",purchase,1.0,0 -88525821,"The Bard's Tale",purchase,1.0,0 -88525821,"The Basement Collection",purchase,1.0,0 -88525821,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -88525821,"Valdis Story Abyssal City",purchase,1.0,0 -88525821,"Wasteland 1 - The Original Classic",purchase,1.0,0 -88525821,"Wasteland 2 Director's Cut",purchase,1.0,0 -88525821,"Worms Blast",purchase,1.0,0 -88525821,"Worms Pinball",purchase,1.0,0 -121523105,"Sid Meier's Civilization V",purchase,1.0,0 -121523105,"Sid Meier's Civilization V",play,0.8,0 -121523105,"GRID 2",purchase,1.0,0 -121523105,"GRID 2",play,0.7,0 -75395097,"Call of Duty Black Ops",purchase,1.0,0 -75395097,"Call of Duty Black Ops",play,6.6,0 -75395097,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -127272741,"Counter-Strike Global Offensive",purchase,1.0,0 -127272741,"Counter-Strike Global Offensive",play,649.0,0 -127272741,"Terraria",purchase,1.0,0 -127272741,"Terraria",play,510.0,0 -127272741,"Kingdom Rush",purchase,1.0,0 -127272741,"Kingdom Rush",play,508.0,0 -127272741,"Sid Meier's Civilization V",purchase,1.0,0 -127272741,"Sid Meier's Civilization V",play,501.0,0 -127272741,"Besiege",purchase,1.0,0 -127272741,"Besiege",play,492.0,0 -127272741,"Borderlands 2",purchase,1.0,0 -127272741,"Borderlands 2",play,187.0,0 -127272741,"Rome Total War",purchase,1.0,0 -127272741,"Rome Total War",play,127.0,0 -127272741,"AdVenture Capitalist",purchase,1.0,0 -127272741,"AdVenture Capitalist",play,119.0,0 -127272741,"Sid Meier's Civilization III Complete",purchase,1.0,0 -127272741,"Sid Meier's Civilization III Complete",play,96.0,0 -127272741,"Team Fortress 2",purchase,1.0,0 -127272741,"Team Fortress 2",play,78.0,0 -127272741,"TERA",purchase,1.0,0 -127272741,"TERA",play,67.0,0 -127272741,"The Elder Scrolls V Skyrim",purchase,1.0,0 -127272741,"The Elder Scrolls V Skyrim",play,66.0,0 -127272741,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -127272741,"Dark Souls Prepare to Die Edition",play,56.0,0 -127272741,"Rocket League",purchase,1.0,0 -127272741,"Rocket League",play,49.0,0 -127272741,"Chivalry Medieval Warfare",purchase,1.0,0 -127272741,"Chivalry Medieval Warfare",play,48.0,0 -127272741,"Fallout New Vegas",purchase,1.0,0 -127272741,"Fallout New Vegas",play,37.0,0 -127272741,"Mount & Blade Warband",purchase,1.0,0 -127272741,"Mount & Blade Warband",play,30.0,0 -127272741,"Dungeon Defenders",purchase,1.0,0 -127272741,"Dungeon Defenders",play,26.0,0 -127272741,"Time Clickers",purchase,1.0,0 -127272741,"Time Clickers",play,24.0,0 -127272741,"NBA 2K14",purchase,1.0,0 -127272741,"NBA 2K14",play,23.0,0 -127272741,"Spore",purchase,1.0,0 -127272741,"Spore",play,21.0,0 -127272741,"Magicka",purchase,1.0,0 -127272741,"Magicka",play,20.0,0 -127272741,"Ultimate Tic-Tac-Toe",purchase,1.0,0 -127272741,"Ultimate Tic-Tac-Toe",play,17.7,0 -127272741,"Goat Simulator",purchase,1.0,0 -127272741,"Goat Simulator",play,17.2,0 -127272741,"Depth",purchase,1.0,0 -127272741,"Depth",play,15.9,0 -127272741,"Crusaders of the Lost Idols",purchase,1.0,0 -127272741,"Crusaders of the Lost Idols",play,15.6,0 -127272741,"XCOM Enemy Unknown",purchase,1.0,0 -127272741,"XCOM Enemy Unknown",play,14.7,0 -127272741,"Bad Rats",purchase,1.0,0 -127272741,"Bad Rats",play,12.8,0 -127272741,"Trove",purchase,1.0,0 -127272741,"Trove",play,12.3,0 -127272741,"The Binding of Isaac",purchase,1.0,0 -127272741,"The Binding of Isaac",play,10.3,0 -127272741,"Garry's Mod",purchase,1.0,0 -127272741,"Garry's Mod",play,9.1,0 -127272741,"Fable - The Lost Chapters",purchase,1.0,0 -127272741,"Fable - The Lost Chapters",play,9.1,0 -127272741,"Fallout 3",purchase,1.0,0 -127272741,"Fallout 3",play,8.4,0 -127272741,"Ace of Spades",purchase,1.0,0 -127272741,"Ace of Spades",play,8.3,0 -127272741,"Realm of the Mad God",purchase,1.0,0 -127272741,"Realm of the Mad God",play,7.5,0 -127272741,"Universe Sandbox",purchase,1.0,0 -127272741,"Universe Sandbox",play,6.9,0 -127272741,"Dota 2",purchase,1.0,0 -127272741,"Dota 2",play,5.9,0 -127272741,"Lugaru HD ",purchase,1.0,0 -127272741,"Lugaru HD ",play,5.7,0 -127272741,"Hero Siege",purchase,1.0,0 -127272741,"Hero Siege",play,5.6,0 -127272741,"Robocraft",purchase,1.0,0 -127272741,"Robocraft",play,5.6,0 -127272741,"Just Cause 2",purchase,1.0,0 -127272741,"Just Cause 2",play,5.4,0 -127272741,"Nosgoth",purchase,1.0,0 -127272741,"Nosgoth",play,5.3,0 -127272741,"Mirror's Edge",purchase,1.0,0 -127272741,"Mirror's Edge",play,5.2,0 -127272741,"Overgrowth",purchase,1.0,0 -127272741,"Overgrowth",play,4.9,0 -127272741,"Arma 2",purchase,1.0,0 -127272741,"Arma 2",play,4.7,0 -127272741,"Half-Life 2",purchase,1.0,0 -127272741,"Half-Life 2",play,4.7,0 -127272741,"Unturned",purchase,1.0,0 -127272741,"Unturned",play,4.3,0 -127272741,"Age of Empires II HD Edition",purchase,1.0,0 -127272741,"Age of Empires II HD Edition",play,4.0,0 -127272741,"Left 4 Dead 2",purchase,1.0,0 -127272741,"Left 4 Dead 2",play,3.8,0 -127272741,"Portal 2",purchase,1.0,0 -127272741,"Portal 2",play,3.6,0 -127272741,"Papers, Please",purchase,1.0,0 -127272741,"Papers, Please",play,3.3,0 -127272741,"Enclave",purchase,1.0,0 -127272741,"Enclave",play,3.3,0 -127272741,"Castle Crashers",purchase,1.0,0 -127272741,"Castle Crashers",play,2.9,0 -127272741,"DLC Quest",purchase,1.0,0 -127272741,"DLC Quest",play,2.9,0 -127272741,"Downwell",purchase,1.0,0 -127272741,"Downwell",play,2.8,0 -127272741,"America's Army Proving Grounds",purchase,1.0,0 -127272741,"America's Army Proving Grounds",play,2.6,0 -127272741,"Dishonored",purchase,1.0,0 -127272741,"Dishonored",play,2.6,0 -127272741,"One Finger Death Punch",purchase,1.0,0 -127272741,"One Finger Death Punch",play,1.9,0 -127272741,"Edge of Space",purchase,1.0,0 -127272741,"Edge of Space",play,1.5,0 -127272741,"LUFTRAUSERS",purchase,1.0,0 -127272741,"LUFTRAUSERS",play,1.4,0 -127272741,"Darksiders II",purchase,1.0,0 -127272741,"Darksiders II",play,1.4,0 -127272741,"Surgeon Simulator",purchase,1.0,0 -127272741,"Surgeon Simulator",play,1.4,0 -127272741,"Euro Truck Simulator 2",purchase,1.0,0 -127272741,"Euro Truck Simulator 2",play,1.3,0 -127272741,"theHunter",purchase,1.0,0 -127272741,"theHunter",play,1.2,0 -127272741,"LIMBO",purchase,1.0,0 -127272741,"LIMBO",play,1.0,0 -127272741,"Monopoly",purchase,1.0,0 -127272741,"Monopoly",play,1.0,0 -127272741,"Endless Sky",purchase,1.0,0 -127272741,"Endless Sky",play,1.0,0 -127272741,"FlatOut 2",purchase,1.0,0 -127272741,"FlatOut 2",play,0.9,0 -127272741,"Blockstorm",purchase,1.0,0 -127272741,"Blockstorm",play,0.9,0 -127272741,"Trine",purchase,1.0,0 -127272741,"Trine",play,0.9,0 -127272741,"Legendary",purchase,1.0,0 -127272741,"Legendary",play,0.8,0 -127272741,"Yet Another Zombie Defense",purchase,1.0,0 -127272741,"Yet Another Zombie Defense",play,0.8,0 -127272741,"Penumbra Overture",purchase,1.0,0 -127272741,"Penumbra Overture",play,0.7,0 -127272741,"Geometry Wars Retro Evolved",purchase,1.0,0 -127272741,"Geometry Wars Retro Evolved",play,0.7,0 -127272741,"Trine 2",purchase,1.0,0 -127272741,"Trine 2",play,0.6,0 -127272741,"Brawlhalla",purchase,1.0,0 -127272741,"Brawlhalla",play,0.6,0 -127272741,"Sparkle 2 Evo",purchase,1.0,0 -127272741,"Sparkle 2 Evo",play,0.5,0 -127272741,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -127272741,"SEGA Genesis & Mega Drive Classics",play,0.5,0 -127272741,"PARTICLE MACE",purchase,1.0,0 -127272741,"PARTICLE MACE",play,0.4,0 -127272741,"The Stanley Parable",purchase,1.0,0 -127272741,"The Stanley Parable",play,0.4,0 -127272741,"Dungeon Defenders II",purchase,1.0,0 -127272741,"Dungeon Defenders II",play,0.4,0 -127272741,"The Way of Life Free Edition",purchase,1.0,0 -127272741,"The Way of Life Free Edition",play,0.3,0 -127272741,"NEOTOKYO",purchase,1.0,0 -127272741,"NEOTOKYO",play,0.3,0 -127272741,"Receiver",purchase,1.0,0 -127272741,"Receiver",play,0.3,0 -127272741,"Gear Up",purchase,1.0,0 -127272741,"Gear Up",play,0.2,0 -127272741,"Emily is Away",purchase,1.0,0 -127272741,"Emily is Away",play,0.2,0 -127272741,"Floating Point",purchase,1.0,0 -127272741,"Floating Point",play,0.2,0 -127272741,"Apotheon Arena",purchase,1.0,0 -127272741,"Apotheon Arena",play,0.1,0 -127272741,"Oh...Sir!",purchase,1.0,0 -127272741,"Oh...Sir!",play,0.1,0 -127272741,"Heroes & Generals",purchase,1.0,0 -127272741,"Heroes & Generals",play,0.1,0 -127272741,"Dirty Bomb",purchase,1.0,0 -127272741,"Dirty Bomb",play,0.1,0 -127272741,"Echoes+",purchase,1.0,0 -127272741,"Echoes+",play,0.1,0 -127272741,"One Way To Die Steam Edition",purchase,1.0,0 -127272741,"Teeworlds",purchase,1.0,0 -127272741,"Risk of Rain",purchase,1.0,0 -127272741,"Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald A Whirlwind Heist",purchase,1.0,0 -127272741,"Fishing Planet",purchase,1.0,0 -127272741,"Castle Crashers - Blacksmith Pack",purchase,1.0,0 -127272741,"Castle Crashers - Pink Knight Pack",purchase,1.0,0 -127272741,"Codename CURE",purchase,1.0,0 -127272741,"Face of Mankind",purchase,1.0,0 -127272741,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -127272741,"Fallout New Vegas Dead Money",purchase,1.0,0 -127272741,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -127272741,"Half-Life 2 Lost Coast",purchase,1.0,0 -127272741,"Patch testing for Chivalry",purchase,1.0,0 -127272741,"Penumbra Black Plague",purchase,1.0,0 -127272741,"Penumbra Requiem",purchase,1.0,0 -127272741,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -127272741,"Warface",purchase,1.0,0 -127272741,"War Thunder",purchase,1.0,0 -35701646,"Team Fortress 2",purchase,1.0,0 -35701646,"Team Fortress 2",play,914.0,0 -35701646,"Dota 2",purchase,1.0,0 -35701646,"Dota 2",play,764.0,0 -35701646,"Left 4 Dead 2",purchase,1.0,0 -35701646,"Left 4 Dead 2",play,372.0,0 -35701646,"The Elder Scrolls V Skyrim",purchase,1.0,0 -35701646,"The Elder Scrolls V Skyrim",play,222.0,0 -35701646,"Fallout New Vegas",purchase,1.0,0 -35701646,"Fallout New Vegas",play,175.0,0 -35701646,"Left 4 Dead",purchase,1.0,0 -35701646,"Left 4 Dead",play,113.0,0 -35701646,"Don't Starve",purchase,1.0,0 -35701646,"Don't Starve",play,109.0,0 -35701646,"Dragon Age Origins",purchase,1.0,0 -35701646,"Dragon Age Origins",play,104.0,0 -35701646,"FTL Faster Than Light",purchase,1.0,0 -35701646,"FTL Faster Than Light",play,79.0,0 -35701646,"Grand Theft Auto IV",purchase,1.0,0 -35701646,"Grand Theft Auto IV",play,44.0,0 -35701646,"Deus Ex Human Revolution",purchase,1.0,0 -35701646,"Deus Ex Human Revolution",play,40.0,0 -35701646,"Mass Effect 2",purchase,1.0,0 -35701646,"Mass Effect 2",play,38.0,0 -35701646,"XCOM Enemy Unknown",purchase,1.0,0 -35701646,"XCOM Enemy Unknown",play,38.0,0 -35701646,"Prison Architect",purchase,1.0,0 -35701646,"Prison Architect",play,37.0,0 -35701646,"The Binding of Isaac",purchase,1.0,0 -35701646,"The Binding of Isaac",play,37.0,0 -35701646,"Batman Arkham City",purchase,1.0,0 -35701646,"Batman Arkham City",play,36.0,0 -35701646,"The Banner Saga",purchase,1.0,0 -35701646,"The Banner Saga",play,33.0,0 -35701646,"Defense Grid The Awakening",purchase,1.0,0 -35701646,"Defense Grid The Awakening",play,27.0,0 -35701646,"Shattered Horizon",purchase,1.0,0 -35701646,"Shattered Horizon",play,25.0,0 -35701646,"The Walking Dead",purchase,1.0,0 -35701646,"The Walking Dead",play,23.0,0 -35701646,"BioShock",purchase,1.0,0 -35701646,"BioShock",play,23.0,0 -35701646,"Magicka",purchase,1.0,0 -35701646,"Magicka",play,22.0,0 -35701646,"resident evil 4 / biohazard 4",purchase,1.0,0 -35701646,"resident evil 4 / biohazard 4",play,20.0,0 -35701646,"Bastion",purchase,1.0,0 -35701646,"Bastion",play,19.5,0 -35701646,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -35701646,"The Elder Scrolls IV Oblivion ",play,19.1,0 -35701646,"Torchlight II",purchase,1.0,0 -35701646,"Torchlight II",play,18.0,0 -35701646,"Mark of the Ninja",purchase,1.0,0 -35701646,"Mark of the Ninja",play,17.1,0 -35701646,"Dishonored",purchase,1.0,0 -35701646,"Dishonored",play,16.7,0 -35701646,"Overlord",purchase,1.0,0 -35701646,"Overlord",play,16.4,0 -35701646,"Alien Isolation",purchase,1.0,0 -35701646,"Alien Isolation",play,16.0,0 -35701646,"Overlord II",purchase,1.0,0 -35701646,"Overlord II",play,14.7,0 -35701646,"Path of Exile",purchase,1.0,0 -35701646,"Path of Exile",play,14.6,0 -35701646,"Batman Arkham City GOTY",purchase,1.0,0 -35701646,"Batman Arkham City GOTY",play,13.7,0 -35701646,"BioShock 2",purchase,1.0,0 -35701646,"BioShock 2",play,13.4,0 -35701646,"Tomb Raider",purchase,1.0,0 -35701646,"Tomb Raider",play,12.8,0 -35701646,"Half-Life 2",purchase,1.0,0 -35701646,"Half-Life 2",play,11.8,0 -35701646,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -35701646,"Fallout 3 - Game of the Year Edition",play,11.4,0 -35701646,"Metro Last Light",purchase,1.0,0 -35701646,"Metro Last Light",play,11.2,0 -35701646,"Day of Defeat Source",purchase,1.0,0 -35701646,"Day of Defeat Source",play,10.5,0 -35701646,"The Walking Dead Season Two",purchase,1.0,0 -35701646,"The Walking Dead Season Two",play,8.4,0 -35701646,"World of Goo",purchase,1.0,0 -35701646,"World of Goo",play,8.3,0 -35701646,"Middle-earth Shadow of Mordor",purchase,1.0,0 -35701646,"Middle-earth Shadow of Mordor",play,8.3,0 -35701646,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -35701646,"Resident Evil 5 / Biohazard 5",play,7.6,0 -35701646,"Amnesia The Dark Descent",purchase,1.0,0 -35701646,"Amnesia The Dark Descent",play,7.6,0 -35701646,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -35701646,"Grand Theft Auto Episodes from Liberty City",play,7.3,0 -35701646,"Portal 2",purchase,1.0,0 -35701646,"Portal 2",play,6.6,0 -35701646,"Just Cause 2",purchase,1.0,0 -35701646,"Just Cause 2",play,6.6,0 -35701646,"Alan Wake",purchase,1.0,0 -35701646,"Alan Wake",play,6.3,0 -35701646,"Half-Life 2 Episode Two",purchase,1.0,0 -35701646,"Half-Life 2 Episode Two",play,5.4,0 -35701646,"Sleeping Dogs",purchase,1.0,0 -35701646,"Sleeping Dogs",play,5.1,0 -35701646,"LIMBO",purchase,1.0,0 -35701646,"LIMBO",play,4.7,0 -35701646,"Insanely Twisted Shadow Planet",purchase,1.0,0 -35701646,"Insanely Twisted Shadow Planet",play,4.4,0 -35701646,"Deadlight",purchase,1.0,0 -35701646,"Deadlight",play,4.3,0 -35701646,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -35701646,"The Witcher 2 Assassins of Kings Enhanced Edition",play,4.3,0 -35701646,"Kane & Lynch Dead Men",purchase,1.0,0 -35701646,"Kane & Lynch Dead Men",play,3.9,0 -35701646,"Shadowrun Returns",purchase,1.0,0 -35701646,"Shadowrun Returns",play,3.6,0 -35701646,"Risk of Rain",purchase,1.0,0 -35701646,"Risk of Rain",play,3.5,0 -35701646,"Crusader Kings II",purchase,1.0,0 -35701646,"Crusader Kings II",play,3.4,0 -35701646,"The Ball",purchase,1.0,0 -35701646,"The Ball",play,3.3,0 -35701646,"The Bureau XCOM Declassified",purchase,1.0,0 -35701646,"The Bureau XCOM Declassified",play,3.1,0 -35701646,"WAKFU",purchase,1.0,0 -35701646,"WAKFU",play,3.1,0 -35701646,"Half-Life 2 Episode One",purchase,1.0,0 -35701646,"Half-Life 2 Episode One",play,2.8,0 -35701646,"Brothers - A Tale of Two Sons",purchase,1.0,0 -35701646,"Brothers - A Tale of Two Sons",play,2.8,0 -35701646,"Super Meat Boy",purchase,1.0,0 -35701646,"Super Meat Boy",play,2.6,0 -35701646,"Counter-Strike Source",purchase,1.0,0 -35701646,"Counter-Strike Source",play,2.5,0 -35701646,"Borderlands 2",purchase,1.0,0 -35701646,"Borderlands 2",play,2.4,0 -35701646,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -35701646,"Deus Ex Human Revolution - Director's Cut",play,2.2,0 -35701646,"Antichamber",purchase,1.0,0 -35701646,"Antichamber",play,2.1,0 -35701646,"The Stanley Parable",purchase,1.0,0 -35701646,"The Stanley Parable",play,2.1,0 -35701646,"Fallout",purchase,1.0,0 -35701646,"Fallout",play,1.9,0 -35701646,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -35701646,"Dark Souls Prepare to Die Edition",play,1.8,0 -35701646,"Democracy 3",purchase,1.0,0 -35701646,"Democracy 3",play,1.7,0 -35701646,"Dustforce",purchase,1.0,0 -35701646,"Dustforce",play,1.6,0 -35701646,"Counter-Strike Global Offensive",purchase,1.0,0 -35701646,"Counter-Strike Global Offensive",play,1.6,0 -35701646,"Audiosurf",purchase,1.0,0 -35701646,"Audiosurf",play,1.5,0 -35701646,"The Talos Principle",purchase,1.0,0 -35701646,"The Talos Principle",play,1.5,0 -35701646,"Osmos",purchase,1.0,0 -35701646,"Osmos",play,1.3,0 -35701646,"Trine 2",purchase,1.0,0 -35701646,"Trine 2",play,1.2,0 -35701646,"Half-Life Blue Shift",purchase,1.0,0 -35701646,"Half-Life Blue Shift",play,1.1,0 -35701646,"Half-Life Opposing Force",purchase,1.0,0 -35701646,"Half-Life Opposing Force",play,1.1,0 -35701646,"Bejeweled 3",purchase,1.0,0 -35701646,"Bejeweled 3",play,1.0,0 -35701646,"Thief",purchase,1.0,0 -35701646,"Thief",play,1.0,0 -35701646,"Amnesia A Machine for Pigs",purchase,1.0,0 -35701646,"Amnesia A Machine for Pigs",play,1.0,0 -35701646,"Killing Floor",purchase,1.0,0 -35701646,"Killing Floor",play,0.9,0 -35701646,"Cogs",purchase,1.0,0 -35701646,"Cogs",play,0.9,0 -35701646,"Outlast",purchase,1.0,0 -35701646,"Outlast",play,0.8,0 -35701646,"Braid",purchase,1.0,0 -35701646,"Braid",play,0.6,0 -35701646,"The Novelist",purchase,1.0,0 -35701646,"The Novelist",play,0.6,0 -35701646,"The Elder Scrolls III Morrowind",purchase,1.0,0 -35701646,"The Elder Scrolls III Morrowind",play,0.6,0 -35701646,"Ultra Street Fighter IV",purchase,1.0,0 -35701646,"Ultra Street Fighter IV",play,0.6,0 -35701646,"Dungeon Defenders",purchase,1.0,0 -35701646,"Dungeon Defenders",play,0.6,0 -35701646,"Dear Esther",purchase,1.0,0 -35701646,"Dear Esther",play,0.6,0 -35701646,"Lara Croft and the Guardian of Light",purchase,1.0,0 -35701646,"Lara Croft and the Guardian of Light",play,0.6,0 -35701646,"RIFT",purchase,1.0,0 -35701646,"RIFT",play,0.6,0 -35701646,"BIT.TRIP BEAT",purchase,1.0,0 -35701646,"BIT.TRIP BEAT",play,0.5,0 -35701646,"The Wonderful End of the World",purchase,1.0,0 -35701646,"The Wonderful End of the World",play,0.4,0 -35701646,"Half-Life 2 Deathmatch",purchase,1.0,0 -35701646,"Half-Life 2 Deathmatch",play,0.3,0 -35701646,"Eldritch",purchase,1.0,0 -35701646,"Eldritch",play,0.3,0 -35701646,"Dragon Age Origins Character Creator",purchase,1.0,0 -35701646,"Dragon Age Origins Character Creator",play,0.2,0 -35701646,"Fallout Tactics",purchase,1.0,0 -35701646,"Fallout Tactics",play,0.2,0 -35701646,"AaAaAA!!! - A Reckless Disregard for Gravity",purchase,1.0,0 -35701646,"AaAaAA!!! - A Reckless Disregard for Gravity",play,0.1,0 -35701646,"BioShock Infinite",purchase,1.0,0 -35701646,"BioShock Infinite",play,0.1,0 -35701646,"Dragon Age Origins - Awakening",purchase,1.0,0 -35701646,"1... 2... 3... KICK IT! (Drop That Beat Like an Ugly Baby)",purchase,1.0,0 -35701646,"Overlord Raising Hell",purchase,1.0,0 -35701646,"AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome",purchase,1.0,0 -35701646,"Batman Arkham Origins",purchase,1.0,0 -35701646,"Bionic Commando Rearmed",purchase,1.0,0 -35701646,"Darwinia",purchase,1.0,0 -35701646,"Dead Space 2",purchase,1.0,0 -35701646,"DEFCON",purchase,1.0,0 -35701646,"DmC Devil May Cry",purchase,1.0,0 -35701646,"Don't Starve Reign of Giants",purchase,1.0,0 -35701646,"Don't Starve Together Beta",purchase,1.0,0 -35701646,"Fallout 2",purchase,1.0,0 -35701646,"Fallout New Vegas Dead Money",purchase,1.0,0 -35701646,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -35701646,"Half-Life",purchase,1.0,0 -35701646,"Half-Life 2 Lost Coast",purchase,1.0,0 -35701646,"Hitman Absolution",purchase,1.0,0 -35701646,"Jack Lumber",purchase,1.0,0 -35701646,"Jazzpunk",purchase,1.0,0 -35701646,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -35701646,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -35701646,"Lost Planet 3",purchase,1.0,0 -35701646,"Magicka Final Frontier",purchase,1.0,0 -35701646,"Magicka Frozen Lake",purchase,1.0,0 -35701646,"Magicka Nippon",purchase,1.0,0 -35701646,"Magicka Party Robes",purchase,1.0,0 -35701646,"Magicka The Watchtower",purchase,1.0,0 -35701646,"Magicka Vietnam",purchase,1.0,0 -35701646,"Magicka Wizard's Survival Kit",purchase,1.0,0 -35701646,"Multiwinia",purchase,1.0,0 -35701646,"MURDERED SOUL SUSPECT",purchase,1.0,0 -35701646,"OlliOlli",purchase,1.0,0 -35701646,"Portal",purchase,1.0,0 -35701646,"Remember Me",purchase,1.0,0 -35701646,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -35701646,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -35701646,"RUSH",purchase,1.0,0 -35701646,"Startopia",purchase,1.0,0 -35701646,"Strider",purchase,1.0,0 -35701646,"Super Hexagon",purchase,1.0,0 -35701646,"Supreme Commander 2",purchase,1.0,0 -35701646,"Tales from Space Mutant Blobs Attack",purchase,1.0,0 -35701646,"Team Fortress Classic",purchase,1.0,0 -35701646,"Teleglitch Die More Edition",purchase,1.0,0 -35701646,"The Banner Saga - Mod Content",purchase,1.0,0 -35701646,"The Bureau XCOM Declassified - Code Breakers",purchase,1.0,0 -35701646,"Toki Tori",purchase,1.0,0 -35701646,"Tower of Guns",purchase,1.0,0 -35701646,"Uplink",purchase,1.0,0 -35701646,"XCOM Enemy Within",purchase,1.0,0 -35701646,"Zen Bound 2",purchase,1.0,0 -65883119,"Saints Row 2",purchase,1.0,0 -65883119,"Saints Row 2",play,113.0,0 -186648598,"Team Fortress 2",purchase,1.0,0 -186648598,"Team Fortress 2",play,20.0,0 -186648598,"Unturned",purchase,1.0,0 -186648598,"Unturned",play,0.3,0 -169958335,"Dota 2",purchase,1.0,0 -169958335,"Dota 2",play,5.8,0 -161240367,"Counter-Strike Global Offensive",purchase,1.0,0 -161240367,"Counter-Strike Global Offensive",play,637.0,0 -161240367,"Garry's Mod",purchase,1.0,0 -161240367,"Garry's Mod",play,385.0,0 -161240367,"Grand Theft Auto V",purchase,1.0,0 -161240367,"Grand Theft Auto V",play,94.0,0 -161240367,"Borderlands 2",purchase,1.0,0 -161240367,"Borderlands 2",play,23.0,0 -161240367,"PAYDAY 2",purchase,1.0,0 -161240367,"PAYDAY 2",play,21.0,0 -161240367,"Heroes & Generals",purchase,1.0,0 -161240367,"Heroes & Generals",play,21.0,0 -161240367,"Unreal Tournament Game of the Year Edition",purchase,1.0,0 -161240367,"Unreal Tournament Game of the Year Edition",play,0.9,0 -161240367,"Brawlhalla",purchase,1.0,0 -161240367,"Don't Starve Together Beta",purchase,1.0,0 -174698259,"Counter-Strike Global Offensive",purchase,1.0,0 -174698259,"Counter-Strike Global Offensive",play,60.0,0 -174698259,"Dragon Nest Europe",purchase,1.0,0 -174698259,"Dragon Nest Europe",play,8.6,0 -160928826,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -160928826,"Plants vs. Zombies Game of the Year",play,7.9,0 -160928826,"Commander Keen Complete Pack",purchase,1.0,0 -160928826,"Commander Keen Complete Pack",play,1.6,0 -160928826,"Warframe",purchase,1.0,0 -300444723,"Undertale",purchase,1.0,0 -300444723,"Undertale",play,9.8,0 -182514935,"Floating Point",purchase,1.0,0 -236470339,"The Mighty Quest For Epic Loot",purchase,1.0,0 -181810697,"Dota 2",purchase,1.0,0 -181810697,"Dota 2",play,2.4,0 -135865220,"Kerbal Space Program",purchase,1.0,0 -135865220,"Kerbal Space Program",play,328.0,0 -135865220,"Sid Meier's Civilization V",purchase,1.0,0 -135865220,"Sid Meier's Civilization V",play,84.0,0 -135865220,"Terraria",purchase,1.0,0 -135865220,"Terraria",play,72.0,0 -135865220,"Robocraft",purchase,1.0,0 -135865220,"Robocraft",play,48.0,0 -135865220,"Unturned",purchase,1.0,0 -135865220,"Unturned",play,40.0,0 -135865220,"Path of Exile",purchase,1.0,0 -135865220,"Path of Exile",play,15.6,0 -135865220,"Counter-Strike Global Offensive",purchase,1.0,0 -135865220,"Counter-Strike Global Offensive",play,12.9,0 -135865220,"The Expendabros",purchase,1.0,0 -135865220,"The Expendabros",play,8.1,0 -135865220,"Vindictus",purchase,1.0,0 -135865220,"Vindictus",play,7.7,0 -135865220,"Spore",purchase,1.0,0 -135865220,"Spore",play,7.0,0 -135865220,"PlanetSide 2",purchase,1.0,0 -135865220,"PlanetSide 2",play,6.8,0 -135865220,"Warframe",purchase,1.0,0 -135865220,"Warframe",play,6.5,0 -135865220,"Star Conflict",purchase,1.0,0 -135865220,"Star Conflict",play,4.5,0 -135865220,"Team Fortress 2",purchase,1.0,0 -135865220,"Team Fortress 2",play,4.0,0 -135865220,"Heroes & Generals",purchase,1.0,0 -135865220,"Heroes & Generals",play,3.3,0 -135865220,"GameMaker Studio",purchase,1.0,0 -135865220,"GameMaker Studio",play,2.3,0 -135865220,"Face of Mankind",purchase,1.0,0 -135865220,"Face of Mankind",play,2.3,0 -135865220,"The Elder Scrolls V Skyrim",purchase,1.0,0 -135865220,"The Elder Scrolls V Skyrim",play,2.2,0 -135865220,"War Thunder",purchase,1.0,0 -135865220,"War Thunder",play,1.9,0 -135865220,"Universe Sandbox",purchase,1.0,0 -135865220,"Universe Sandbox",play,1.4,0 -135865220,"POSTAL 2",purchase,1.0,0 -135865220,"POSTAL 2",play,0.6,0 -135865220,"ORION Prelude",purchase,1.0,0 -135865220,"ORION Prelude",play,0.3,0 -135865220,"World of Guns Gun Disassembly",purchase,1.0,0 -135865220,"World of Guns Gun Disassembly",play,0.2,0 -135865220,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -135865220,"Blacklight Retribution",purchase,1.0,0 -135865220,"Evolution RTS",purchase,1.0,0 -135865220,"Firefall",purchase,1.0,0 -135865220,"Fistful of Frags",purchase,1.0,0 -135865220,"Fractured Space",purchase,1.0,0 -135865220,"Gear Up",purchase,1.0,0 -135865220,"HAWKEN",purchase,1.0,0 -135865220,"Infinite Crisis",purchase,1.0,0 -135865220,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -135865220,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -135865220,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -135865220,"Survarium",purchase,1.0,0 -135865220,"The Lord of the Rings Online",purchase,1.0,0 -135865220,"UberStrike",purchase,1.0,0 -135865220,"Warface",purchase,1.0,0 -201026570,"Team Fortress 2",purchase,1.0,0 -201026570,"Team Fortress 2",play,1.6,0 -201026570,"Loadout",purchase,1.0,0 -201026570,"Panzar",purchase,1.0,0 -201026570,"War of the Roses",purchase,1.0,0 -163281091,"PAYDAY 2",purchase,1.0,0 -163281091,"PAYDAY 2",play,71.0,0 -163281091,"Saints Row The Third",purchase,1.0,0 -163281091,"Saints Row The Third",play,35.0,0 -163281091,"South Park The Stick of Truth",purchase,1.0,0 -163281091,"South Park The Stick of Truth",play,25.0,0 -163281091,"Dota 2",purchase,1.0,0 -163281091,"Dota 2",play,22.0,0 -163281091,"Team Fortress 2",purchase,1.0,0 -163281091,"Team Fortress 2",play,13.4,0 -163281091,"Subnautica",purchase,1.0,0 -163281091,"Subnautica",play,7.5,0 -163281091,"The Elder Scrolls V Skyrim",purchase,1.0,0 -163281091,"The Elder Scrolls V Skyrim",play,4.4,0 -163281091,"Star Conflict",purchase,1.0,0 -163281091,"Star Conflict",play,2.7,0 -163281091,"Garry's Mod",purchase,1.0,0 -163281091,"Garry's Mod",play,1.7,0 -163281091,"Homeworld Remastered Collection",purchase,1.0,0 -163281091,"Homeworld Remastered Collection",play,1.6,0 -163281091,"Aftermath",purchase,1.0,0 -163281091,"Aftermath",play,1.1,0 -163281091,"Moonbase Alpha",purchase,1.0,0 -163281091,"Moonbase Alpha",play,0.6,0 -163281091,"Unturned",purchase,1.0,0 -163281091,"Unturned",play,0.3,0 -163281091,"Trove",purchase,1.0,0 -163281091,"Trove",play,0.2,0 -163281091,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -163281091,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -163281091,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -163281091,"War Thunder",purchase,1.0,0 -188988198,"Unturned",purchase,1.0,0 -188988198,"Unturned",play,32.0,0 -188988198,"APB Reloaded",purchase,1.0,0 -188988198,"APB Reloaded",play,1.3,0 -188988198,"The Lord of the Rings Online",purchase,1.0,0 -188988198,"The Lord of the Rings Online",play,1.2,0 -188988198,"Team Fortress 2",purchase,1.0,0 -188988198,"Team Fortress 2",play,1.0,0 -188988198,"Spooky's House of Jump Scares",purchase,1.0,0 -188988198,"Spooky's House of Jump Scares",play,1.0,0 -188988198,"Stranded Deep",purchase,1.0,0 -188988198,"Stranded Deep",play,0.7,0 -188988198,"Robocraft",purchase,1.0,0 -188988198,"Robocraft",play,0.2,0 -188988198,"Tactical Intervention",purchase,1.0,0 -188988198,"Tactical Intervention",play,0.2,0 -188988198,"Copa Petrobras de Marcas",purchase,1.0,0 -188988198,"Copa Petrobras de Marcas",play,0.2,0 -188988198,"Deepworld",purchase,1.0,0 -188988198,"Deepworld",play,0.1,0 -188988198,"Escape",purchase,1.0,0 -188988198,"Warframe",purchase,1.0,0 -188988198,"War Thunder",purchase,1.0,0 -188988198,"Rise of Incarnates",purchase,1.0,0 -188988198,"Rustbucket Rumble",purchase,1.0,0 -188988198,"Counter-Strike Nexon Zombies",purchase,1.0,0 -188988198,"Dirty Bomb",purchase,1.0,0 -188988198,"Fingerbones",purchase,1.0,0 -188988198,"Firefall",purchase,1.0,0 -188988198,"Fishing Planet",purchase,1.0,0 -188988198,"Let the Cat In",purchase,1.0,0 -188988198,"Relic Hunters Zero",purchase,1.0,0 -188988198,"Star Trek Online",purchase,1.0,0 -188988198,"Tap Tap Infinity",purchase,1.0,0 -188988198,"the static speaks my name",purchase,1.0,0 -188988198,"Trove",purchase,1.0,0 -188988198,"Warface",purchase,1.0,0 -172396268,"Dota 2",purchase,1.0,0 -172396268,"Dota 2",play,10.7,0 -137158399,"Dota 2",purchase,1.0,0 -137158399,"Dota 2",play,1957.0,0 -137158399,"Counter-Strike Global Offensive",purchase,1.0,0 -137158399,"Counter-Strike Global Offensive",play,970.0,0 -137158399,"Team Fortress 2",purchase,1.0,0 -137158399,"Team Fortress 2",play,19.2,0 -137158399,"Robocraft",purchase,1.0,0 -137158399,"Robocraft",play,11.1,0 -137158399,"Unturned",purchase,1.0,0 -137158399,"Unturned",play,10.5,0 -137158399,"Lucius",purchase,1.0,0 -137158399,"Lucius",play,1.3,0 -137158399,"The Mighty Quest For Epic Loot",purchase,1.0,0 -137158399,"The Mighty Quest For Epic Loot",play,1.2,0 -137158399,"Faces of War",purchase,1.0,0 -137158399,"Faces of War",play,0.7,0 -137158399,"Warframe",purchase,1.0,0 -137158399,"Warframe",play,0.5,0 -137158399,"Anomaly Warzone Earth",purchase,1.0,0 -137158399,"Space Trader Merchant Marine",purchase,1.0,0 -137158399,"AI War Fleet Command",purchase,1.0,0 -137158399,"Karos",purchase,1.0,0 -137158399,"My Lands",purchase,1.0,0 -137158399,"War Thunder",purchase,1.0,0 -129211317,"Rust",purchase,1.0,0 -129211317,"Rust",play,229.0,0 -129211317,"DayZ",purchase,1.0,0 -129211317,"DayZ",play,21.0,0 -129211317,"Portal 2",purchase,1.0,0 -129211317,"Portal 2",play,10.9,0 -129211317,"Tomb Raider",purchase,1.0,0 -129211317,"Tomb Raider",play,2.6,0 -129211317,"Trine 2",purchase,1.0,0 -129211317,"Trine 2",play,2.2,0 -129211317,"Alan Wake",purchase,1.0,0 -129211317,"Alan Wake",play,0.8,0 -129211317,"BioShock Infinite",purchase,1.0,0 -129211317,"BioShock Infinite",play,0.1,0 -129211317,"Alan Wake's American Nightmare",purchase,1.0,0 -129211317,"Dead Island Epidemic",purchase,1.0,0 -258754843,"Dota 2",purchase,1.0,0 -258754843,"Dota 2",play,1.1,0 -68530075,"Alien Swarm",purchase,1.0,0 -68530075,"Alien Swarm",play,0.4,0 -89479298,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -89479298,"Warhammer 40,000 Dawn of War II",play,35.0,0 -89479298,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -89479298,"Warhammer 40,000 Dawn of War II Retribution",play,1.1,0 -89479298,"Warhammer 40,000 Space Marine",purchase,1.0,0 -89479298,"Warhammer 40,000 Space Marine",play,0.7,0 -89479298,"Team Fortress 2",purchase,1.0,0 -89479298,"Team Fortress 2",play,0.4,0 -89479298,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -89479298,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,0.2,0 -167680474,"Dota 2",purchase,1.0,0 -167680474,"Dota 2",play,1.1,0 -18074031,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -18074031,"Call of Duty Modern Warfare 2 - Multiplayer",play,237.0,0 -18074031,"H1Z1",purchase,1.0,0 -18074031,"H1Z1",play,70.0,0 -18074031,"Team Fortress 2",purchase,1.0,0 -18074031,"Team Fortress 2",play,22.0,0 -18074031,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -18074031,"Call of Duty Black Ops - Multiplayer",play,16.2,0 -18074031,"Call of Duty Modern Warfare 2",purchase,1.0,0 -18074031,"Call of Duty Modern Warfare 2",play,5.8,0 -18074031,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -18074031,"Call of Duty Advanced Warfare - Multiplayer",play,3.2,0 -18074031,"Counter-Strike Source",purchase,1.0,0 -18074031,"Counter-Strike Source",play,3.0,0 -18074031,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -18074031,"Call of Duty Modern Warfare 3 - Multiplayer",play,0.3,0 -18074031,"Call of Duty Black Ops",purchase,1.0,0 -18074031,"Call of Duty Advanced Warfare",purchase,1.0,0 -18074031,"Call of Duty Modern Warfare 3",purchase,1.0,0 -18074031,"H1Z1 Test Server",purchase,1.0,0 -18074031,"Half-Life 2",purchase,1.0,0 -18074031,"Half-Life 2 Deathmatch",purchase,1.0,0 -18074031,"Half-Life 2 Lost Coast",purchase,1.0,0 -18074031,"Half-Life Source",purchase,1.0,0 -18074031,"Half-Life Deathmatch Source",purchase,1.0,0 -196873040,"Counter-Strike Global Offensive",purchase,1.0,0 -196873040,"Counter-Strike Global Offensive",play,16.7,0 -196873040,"Dota 2",purchase,1.0,0 -196873040,"Dota 2",play,0.9,0 -196873040,"PlanetSide 2",purchase,1.0,0 -36464641,"Pro Evolution Soccer 2015",purchase,1.0,0 -36464641,"Pro Evolution Soccer 2015",play,84.0,0 -182334680,"Dota 2",purchase,1.0,0 -182334680,"Dota 2",play,41.0,0 -132732817,"AION Free-to-Play",purchase,1.0,0 -132732817,"AION Free-to-Play",play,15.6,0 -132732817,"Counter-Strike Global Offensive",purchase,1.0,0 -132732817,"Counter-Strike Global Offensive",play,10.3,0 -132732817,"Stronghold Kingdoms",purchase,1.0,0 -132732817,"Stronghold Kingdoms",play,0.5,0 -225466182,"Dota 2",purchase,1.0,0 -225466182,"Dota 2",play,0.7,0 -110999033,"Dota 2",purchase,1.0,0 -110999033,"Dota 2",play,8.0,0 -153872830,"Dota 2",purchase,1.0,0 -153872830,"Dota 2",play,47.0,0 -204737421,"Total War ROME II - Emperor Edition",purchase,1.0,0 -204737421,"Total War ROME II - Emperor Edition",play,1.8,0 -144381643,"Dota 2",purchase,1.0,0 -144381643,"Dota 2",play,143.0,0 -285167092,"Dota 2",purchase,1.0,0 -285167092,"Dota 2",play,2.9,0 -272981192,"Counter-Strike Global Offensive",purchase,1.0,0 -272981192,"Counter-Strike Global Offensive",play,191.0,0 -272981192,"Dota 2",purchase,1.0,0 -272981192,"Dota 2",play,2.3,0 -272981192,"Counter-Strike",purchase,1.0,0 -272981192,"Counter-Strike",play,0.8,0 -272981192,"Counter-Strike Condition Zero",purchase,1.0,0 -272981192,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -272981192,"Counter-Strike Source",purchase,1.0,0 -272981192,"Counter-Strike Nexon Zombies",purchase,1.0,0 -272981192,"Ted by Dawn",purchase,1.0,0 -272981192,"Unturned",purchase,1.0,0 -190162483,"Dota 2",purchase,1.0,0 -190162483,"Dota 2",play,1.2,0 -290700906,"Counter-Strike Nexon Zombies",purchase,1.0,0 -290700906,"Counter-Strike Nexon Zombies",play,17.2,0 -290700906,"Toribash",purchase,1.0,0 -290700906,"Toribash",play,1.9,0 -290700906,"Trove",purchase,1.0,0 -290700906,"Trove",play,0.2,0 -290700906,"ArcheAge",purchase,1.0,0 -290700906,"RIFT",purchase,1.0,0 -290700906,"Run and Fire",purchase,1.0,0 -107567915,"Terraria",purchase,1.0,0 -107567915,"Terraria",play,100.0,0 -107567915,"Dungeon Defenders",purchase,1.0,0 -107567915,"Dungeon Defenders",play,90.0,0 -107567915,"LEGO The Lord of the Rings",purchase,1.0,0 -107567915,"LEGO The Lord of the Rings",play,23.0,0 -107567915,"Star Wars Knights of the Old Republic",purchase,1.0,0 -107567915,"Star Wars Knights of the Old Republic",play,15.8,0 -107567915,"Nuclear Dawn",purchase,1.0,0 -107567915,"Nuclear Dawn",play,14.7,0 -107567915,"FATE",purchase,1.0,0 -107567915,"FATE",play,12.8,0 -107567915,"The Mighty Quest For Epic Loot",purchase,1.0,0 -107567915,"The Mighty Quest For Epic Loot",play,12.7,0 -107567915,"Super Hexagon",purchase,1.0,0 -107567915,"Super Hexagon",play,7.7,0 -107567915,"Dwarfs F2P",purchase,1.0,0 -107567915,"Dwarfs F2P",play,6.4,0 -107567915,"Reus",purchase,1.0,0 -107567915,"Reus",play,5.4,0 -107567915,"Unturned",purchase,1.0,0 -107567915,"Unturned",play,5.3,0 -107567915,"Anna - Extended Edition",purchase,1.0,0 -107567915,"Anna - Extended Edition",play,5.3,0 -107567915,"Tiny Troopers",purchase,1.0,0 -107567915,"Tiny Troopers",play,4.4,0 -107567915,"FEZ",purchase,1.0,0 -107567915,"FEZ",play,4.2,0 -107567915,"Depression Quest",purchase,1.0,0 -107567915,"Depression Quest",play,3.5,0 -107567915,"Cubemen",purchase,1.0,0 -107567915,"Cubemen",play,3.0,0 -107567915,"Goat Simulator",purchase,1.0,0 -107567915,"Goat Simulator",play,2.4,0 -107567915,"World of Guns Gun Disassembly",purchase,1.0,0 -107567915,"World of Guns Gun Disassembly",play,2.3,0 -107567915,"Draw a Stickman EPIC",purchase,1.0,0 -107567915,"Draw a Stickman EPIC",play,2.2,0 -107567915,"Chains",purchase,1.0,0 -107567915,"Chains",play,2.0,0 -107567915,"SkyDrift",purchase,1.0,0 -107567915,"SkyDrift",play,1.9,0 -107567915,"Dino D-Day",purchase,1.0,0 -107567915,"Dino D-Day",play,1.6,0 -107567915,"Gumboy Crazy Adventures",purchase,1.0,0 -107567915,"Gumboy Crazy Adventures",play,1.1,0 -107567915,"Obulis",purchase,1.0,0 -107567915,"Obulis",play,1.0,0 -107567915,"Brick-Force",purchase,1.0,0 -107567915,"Brick-Force",play,1.0,0 -107567915,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",purchase,1.0,0 -107567915,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",play,0.9,0 -107567915,"Villagers and Heroes",purchase,1.0,0 -107567915,"Villagers and Heroes",play,0.4,0 -107567915,"The Plan",purchase,1.0,0 -107567915,"The Plan",play,0.4,0 -107567915,"Color Symphony",purchase,1.0,0 -107567915,"Color Symphony",play,0.3,0 -107567915,"Pinball Arcade",purchase,1.0,0 -107567915,"Pinball Arcade",play,0.3,0 -107567915,"Gumboy Crazy Features",purchase,1.0,0 -107567915,"Gumboy Crazy Features",play,0.3,0 -107567915,"Warframe",purchase,1.0,0 -107567915,"Warframe",play,0.3,0 -107567915,"Dragons and Titans",purchase,1.0,0 -107567915,"Dragons and Titans",play,0.2,0 -107567915,"Magicka Wizard Wars",purchase,1.0,0 -107567915,"Magicka Wizard Wars",play,0.2,0 -107567915,"You Have to Win the Game",purchase,1.0,0 -107567915,"You Have to Win the Game",play,0.1,0 -107567915,"8BitMMO",purchase,1.0,0 -107567915,"8BitMMO",play,0.1,0 -107567915,"Vigil Blood Bitterness",purchase,1.0,0 -107567915,"Vigil Blood Bitterness",play,0.1,0 -302942360,"Garry's Mod",purchase,1.0,0 -302942360,"Garry's Mod",play,15.2,0 -302942360,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -151381644,"Train Simulator",purchase,1.0,0 -151381644,"Train Simulator",play,6.2,0 -289734724,"Dota 2",purchase,1.0,0 -289734724,"Dota 2",play,269.0,0 -69427304,"Worms Reloaded",purchase,1.0,0 -69427304,"Worms Reloaded",play,8.5,0 -73124384,"Call of Duty Black Ops",purchase,1.0,0 -73124384,"Call of Duty Black Ops",play,8.6,0 -73124384,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -221670883,"Dota 2",purchase,1.0,0 -221670883,"Dota 2",play,15.6,0 -183779370,"Unturned",purchase,1.0,0 -81487543,"Sid Meier's Civilization V",purchase,1.0,0 -81487543,"Sid Meier's Civilization V",play,216.0,0 -121497634,"Warframe",purchase,1.0,0 -121497634,"Warframe",play,1069.0,0 -121497634,"Prime World",purchase,1.0,0 -121497634,"Prime World",play,531.0,0 -121497634,"The Elder Scrolls V Skyrim",purchase,1.0,0 -121497634,"The Elder Scrolls V Skyrim",play,483.0,0 -121497634,"Left 4 Dead 2",purchase,1.0,0 -121497634,"Left 4 Dead 2",play,164.0,0 -121497634,"Far Cry 3",purchase,1.0,0 -121497634,"Far Cry 3",play,142.0,0 -121497634,"Firefall",purchase,1.0,0 -121497634,"Firefall",play,114.0,0 -121497634,"Starbound",purchase,1.0,0 -121497634,"Starbound",play,96.0,0 -121497634,"PlanetSide 2",purchase,1.0,0 -121497634,"PlanetSide 2",play,85.0,0 -121497634,"Borderlands 2",purchase,1.0,0 -121497634,"Borderlands 2",play,47.0,0 -121497634,"Fallout New Vegas",purchase,1.0,0 -121497634,"Fallout New Vegas",play,37.0,0 -121497634,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -121497634,"Dark Souls Prepare to Die Edition",play,35.0,0 -121497634,"Sid Meier's Civilization V",purchase,1.0,0 -121497634,"Sid Meier's Civilization V",play,30.0,0 -121497634,"Path of Exile",purchase,1.0,0 -121497634,"Path of Exile",play,26.0,0 -121497634,"Dishonored",purchase,1.0,0 -121497634,"Dishonored",play,26.0,0 -121497634,"TERA",purchase,1.0,0 -121497634,"TERA",play,23.0,0 -121497634,"State of Decay",purchase,1.0,0 -121497634,"State of Decay",play,22.0,0 -121497634,"Unturned",purchase,1.0,0 -121497634,"Unturned",play,16.5,0 -121497634,"Killing Floor",purchase,1.0,0 -121497634,"Killing Floor",play,16.4,0 -121497634,"Far Cry 3 Blood Dragon",purchase,1.0,0 -121497634,"Far Cry 3 Blood Dragon",play,14.1,0 -121497634,"Warface",purchase,1.0,0 -121497634,"Warface",play,13.7,0 -121497634,"Blacklight Retribution",purchase,1.0,0 -121497634,"Blacklight Retribution",play,12.3,0 -121497634,"7 Days to Die",purchase,1.0,0 -121497634,"7 Days to Die",play,10.8,0 -121497634,"Ragnarok Online 2",purchase,1.0,0 -121497634,"Ragnarok Online 2",play,8.6,0 -121497634,"Tomb Raider",purchase,1.0,0 -121497634,"Tomb Raider",play,8.3,0 -121497634,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -121497634,"Tom Clancy's Ghost Recon Phantoms - NA",play,8.3,0 -121497634,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -121497634,"Resident Evil 6 / Biohazard 6",play,5.4,0 -121497634,"The Mighty Quest For Epic Loot",purchase,1.0,0 -121497634,"The Mighty Quest For Epic Loot",play,5.2,0 -121497634,"Trove",purchase,1.0,0 -121497634,"Trove",play,3.1,0 -121497634,"Crysis",purchase,1.0,0 -121497634,"Crysis",play,2.8,0 -121497634,"Chivalry Medieval Warfare",purchase,1.0,0 -121497634,"Chivalry Medieval Warfare",play,2.0,0 -121497634,"Wizardry Online",purchase,1.0,0 -121497634,"Wizardry Online",play,1.3,0 -121497634,"Forsaken World ",purchase,1.0,0 -121497634,"Forsaken World ",play,0.9,0 -121497634,"No More Room in Hell",purchase,1.0,0 -121497634,"No More Room in Hell",play,0.7,0 -121497634,"Fallen Earth",purchase,1.0,0 -121497634,"Fallen Earth",play,0.5,0 -121497634,"Lost Planet 3",purchase,1.0,0 -121497634,"Lost Planet 3",play,0.5,0 -121497634,"Lords Of The Fallen",purchase,1.0,0 -121497634,"Lords Of The Fallen",play,0.4,0 -121497634,"Metro 2033 Redux",purchase,1.0,0 -121497634,"Metro 2033 Redux",play,0.3,0 -121497634,"Arma Cold War Assault",purchase,1.0,0 -121497634,"Arma Cold War Assault",play,0.2,0 -121497634,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -121497634,"Killing Floor Mod Defence Alliance 2",play,0.2,0 -121497634,"Metro Last Light Redux",purchase,1.0,0 -121497634,"Metro Last Light Redux",play,0.1,0 -121497634,"Vindictus",purchase,1.0,0 -121497634,"Crysis Warhead",purchase,1.0,0 -121497634,"Crysis Wars",purchase,1.0,0 -121497634,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -121497634,"Fallout New Vegas Dead Money",purchase,1.0,0 -121497634,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -121497634,"Heroes & Generals",purchase,1.0,0 -121497634,"Nosgoth",purchase,1.0,0 -121497634,"Patch testing for Chivalry",purchase,1.0,0 -121497634,"Planetside 2 Elite Soldier Bundle",purchase,1.0,0 -121497634,"Resident Evil 6 Mercenaries No Mercy",purchase,1.0,0 -121497634,"Robocraft",purchase,1.0,0 -121497634,"Starbound - Unstable",purchase,1.0,0 -121497634,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -121497634,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -121497634,"Tom Clancy's Ghost Recon Phantoms - NA Assault Starter Pack",purchase,1.0,0 -159694986,"Left 4 Dead 2",purchase,1.0,0 -32021037,"Half-Life 2",purchase,1.0,0 -32021037,"Half-Life Source",purchase,1.0,0 -32021037,"Counter-Strike Source",purchase,1.0,0 -32021037,"Half-Life 2 Deathmatch",purchase,1.0,0 -32021037,"Half-Life 2 Lost Coast",purchase,1.0,0 -32021037,"Half-Life Deathmatch Source",purchase,1.0,0 -183074217,"Team Fortress 2",purchase,1.0,0 -183074217,"Team Fortress 2",play,97.0,0 -183074217,"Driver San Francisco",purchase,1.0,0 -183074217,"Driver San Francisco",play,0.9,0 -183074217,"Sid Meier's Civilization V",purchase,1.0,0 -183074217,"Sid Meier's Civilization V",play,0.2,0 -183074217,"APB Reloaded",purchase,1.0,0 -183074217,"Cubic Castles",purchase,1.0,0 -183074217,"Eldevin",purchase,1.0,0 -183074217,"Marvel Heroes 2015",purchase,1.0,0 -183074217,"Robocraft",purchase,1.0,0 -183074217,"Unturned",purchase,1.0,0 -251973211,"Left 4 Dead 2",purchase,1.0,0 -309216884,"Dota 2",purchase,1.0,0 -309216884,"Dota 2",play,4.0,0 -62848935,"Europa Universalis III",purchase,1.0,0 -129808247,"MLB 2K12",purchase,1.0,0 -129808247,"MLB 2K12",play,7.7,0 -121075133,"Dota 2",purchase,1.0,0 -121075133,"Dota 2",play,843.0,0 -121075133,"Counter-Strike Global Offensive",purchase,1.0,0 -121075133,"Counter-Strike Global Offensive",play,716.0,0 -303320631,"Trove",purchase,1.0,0 -303320631,"Trove",play,0.4,0 -202760244,"Dota 2",purchase,1.0,0 -202760244,"Dota 2",play,222.0,0 -202760244,"FreeStyle2 Street Basketball",purchase,1.0,0 -202760244,"FreeStyle2 Street Basketball",play,0.3,0 -202760244,"GunZ 2 The Second Duel",purchase,1.0,0 -202760244,"Loadout",purchase,1.0,0 -248679217,"Magic Duels",purchase,1.0,0 -248679217,"Magic Duels",play,8.5,0 -15841586,"Counter-Strike Source",purchase,1.0,0 -15841586,"Half-Life 2",purchase,1.0,0 -15841586,"Half-Life 2 Deathmatch",purchase,1.0,0 -15841586,"Half-Life 2 Lost Coast",purchase,1.0,0 -123727087,"Dota 2",purchase,1.0,0 -123727087,"Dota 2",play,117.0,0 -171965445,"Warface",purchase,1.0,0 -171965445,"Warface",play,7.1,0 -171965445,"Unturned",purchase,1.0,0 -171965445,"Unturned",play,3.3,0 -171965445,"WARMODE",purchase,1.0,0 -171965445,"WARMODE",play,1.6,0 -171965445,"Block N Load",purchase,1.0,0 -171965445,"Block N Load",play,1.1,0 -171965445,"Fistful of Frags",purchase,1.0,0 -171965445,"Fistful of Frags",play,0.3,0 -171965445,"BRINK",purchase,1.0,0 -124525404,"Garry's Mod",purchase,1.0,0 -124525404,"Garry's Mod",play,21.0,0 -124525404,"The Lord of the Rings Online",purchase,1.0,0 -124525404,"The Lord of the Rings Online",play,6.1,0 -124525404,"Heroes & Generals",purchase,1.0,0 -124525404,"RIFT",purchase,1.0,0 -59005471,"The Elder Scrolls V Skyrim",purchase,1.0,0 -59005471,"The Elder Scrolls V Skyrim",play,219.0,0 -59005471,"Sid Meier's Civilization V",purchase,1.0,0 -59005471,"Sid Meier's Civilization V",play,198.0,0 -59005471,"Terraria",purchase,1.0,0 -59005471,"Terraria",play,146.0,0 -59005471,"Left 4 Dead 2",purchase,1.0,0 -59005471,"Left 4 Dead 2",play,145.0,0 -59005471,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -59005471,"Sid Meier's Civilization IV Beyond the Sword",play,122.0,0 -59005471,"XCOM Enemy Unknown",purchase,1.0,0 -59005471,"XCOM Enemy Unknown",play,87.0,0 -59005471,"Borderlands 2",purchase,1.0,0 -59005471,"Borderlands 2",play,73.0,0 -59005471,"Assassin's Creed III",purchase,1.0,0 -59005471,"Assassin's Creed III",play,58.0,0 -59005471,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -59005471,"The Witcher 2 Assassins of Kings Enhanced Edition",play,53.0,0 -59005471,"Batman Arkham City",purchase,1.0,0 -59005471,"Batman Arkham City",play,36.0,0 -59005471,"Half-Life 2",purchase,1.0,0 -59005471,"Half-Life 2",play,27.0,0 -59005471,"Deus Ex Human Revolution",purchase,1.0,0 -59005471,"Deus Ex Human Revolution",play,25.0,0 -59005471,"Mass Effect",purchase,1.0,0 -59005471,"Mass Effect",play,24.0,0 -59005471,"Dishonored",purchase,1.0,0 -59005471,"Dishonored",play,20.0,0 -59005471,"Worms Revolution",purchase,1.0,0 -59005471,"Worms Revolution",play,20.0,0 -59005471,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -59005471,"Plants vs. Zombies Game of the Year",play,19.6,0 -59005471,"Tomb Raider",purchase,1.0,0 -59005471,"Tomb Raider",play,18.1,0 -59005471,"BioShock Infinite",purchase,1.0,0 -59005471,"BioShock Infinite",play,15.0,0 -59005471,"Magicka",purchase,1.0,0 -59005471,"Magicka",play,10.9,0 -59005471,"Max Payne 3",purchase,1.0,0 -59005471,"Max Payne 3",play,10.3,0 -59005471,"Mass Effect 2",purchase,1.0,0 -59005471,"Mass Effect 2",play,10.0,0 -59005471,"Spec Ops The Line",purchase,1.0,0 -59005471,"Spec Ops The Line",play,8.8,0 -59005471,"Magic The Gathering Tactics",purchase,1.0,0 -59005471,"Magic The Gathering Tactics",play,6.5,0 -59005471,"Path of Exile",purchase,1.0,0 -59005471,"Path of Exile",play,5.3,0 -59005471,"Grand Theft Auto IV",purchase,1.0,0 -59005471,"Grand Theft Auto IV",play,3.4,0 -59005471,"Rochard",purchase,1.0,0 -59005471,"Rochard",play,2.6,0 -59005471,"Empire Total War",purchase,1.0,0 -59005471,"Empire Total War",play,2.0,0 -59005471,"King Arthur - The Role-playing Wargame",purchase,1.0,0 -59005471,"King Arthur - The Role-playing Wargame",play,1.9,0 -59005471,"Team Fortress 2",purchase,1.0,0 -59005471,"Team Fortress 2",play,1.6,0 -59005471,"Tower Wars",purchase,1.0,0 -59005471,"Tower Wars",play,1.6,0 -59005471,"Synergy",purchase,1.0,0 -59005471,"Synergy",play,1.2,0 -59005471,"Gotham City Impostors",purchase,1.0,0 -59005471,"Gotham City Impostors",play,0.7,0 -59005471,"Worms Reloaded",purchase,1.0,0 -59005471,"Worms Reloaded",play,0.7,0 -59005471,"Half-Life 2 Deathmatch",purchase,1.0,0 -59005471,"Half-Life 2 Deathmatch",play,0.4,0 -59005471,"Sid Meier's Civilization IV",purchase,1.0,0 -59005471,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -59005471,"Batman Arkham City GOTY",purchase,1.0,0 -59005471,"FTL Faster Than Light",purchase,1.0,0 -59005471,"Gotham City Impostors Free To Play",purchase,1.0,0 -59005471,"Grand Theft Auto",purchase,1.0,0 -59005471,"Grand Theft Auto 2",purchase,1.0,0 -59005471,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -59005471,"Grand Theft Auto San Andreas",purchase,1.0,0 -59005471,"Grand Theft Auto San Andreas",purchase,1.0,0 -59005471,"Grand Theft Auto Vice City",purchase,1.0,0 -59005471,"Grand Theft Auto Vice City",purchase,1.0,0 -59005471,"Grand Theft Auto III",purchase,1.0,0 -59005471,"Grand Theft Auto III",purchase,1.0,0 -59005471,"Magicka Wizard's Survival Kit",purchase,1.0,0 -59005471,"Sid Meier's Civilization IV",purchase,1.0,0 -59005471,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -59005471,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -59005471,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -59005471,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -59005471,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -59005471,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -59005471,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -59005471,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -59005471,"The Witcher Enhanced Edition",purchase,1.0,0 -59005471,"VVVVVV",purchase,1.0,0 -59005471,"XCOM Enemy Within",purchase,1.0,0 -268470708,"Dota 2",purchase,1.0,0 -268470708,"Dota 2",play,1.2,0 -33583543,"Half-Life 2 Deathmatch",purchase,1.0,0 -33583543,"Half-Life 2 Lost Coast",purchase,1.0,0 -124229280,"Dota 2",purchase,1.0,0 -124229280,"Dota 2",play,1.7,0 -124229280,"Dream Of Mirror Online",purchase,1.0,0 -124229280,"Path of Exile",purchase,1.0,0 -124229280,"War of the Roses",purchase,1.0,0 -64479113,"Half-Life Opposing Force",purchase,1.0,0 -64479113,"Half-Life Opposing Force",play,8.8,0 -64479113,"Half-Life Blue Shift",purchase,1.0,0 -64479113,"Half-Life Blue Shift",play,2.8,0 -64479113,"Half-Life",purchase,1.0,0 -64479113,"Half-Life",play,0.6,0 -64479113,"Team Fortress Classic",purchase,1.0,0 -179390131,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -179390131,"Tom Clancy's Ghost Recon Phantoms - NA",play,145.0,0 -179390131,"Warframe",purchase,1.0,0 -179390131,"Warframe",play,3.2,0 -179390131,"GunZ 2 The Second Duel",purchase,1.0,0 -179390131,"GunZ 2 The Second Duel",play,2.4,0 -179390131,"Dota 2",purchase,1.0,0 -179390131,"Dota 2",play,1.6,0 -179390131,"World of Guns Gun Disassembly",purchase,1.0,0 -179390131,"World of Guns Gun Disassembly",play,0.8,0 -179390131,"Dizzel",purchase,1.0,0 -179390131,"Dizzel",play,0.6,0 -179390131,"Team Fortress 2",purchase,1.0,0 -179390131,"Team Fortress 2",play,0.5,0 -179390131,"Toribash",purchase,1.0,0 -179390131,"Toribash",play,0.3,0 -179390131,"Star Conflict",purchase,1.0,0 -179390131,"Star Conflict",play,0.3,0 -179390131,"America's Army Proving Grounds",purchase,1.0,0 -12860805,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -12860805,"Call of Duty Ghosts - Multiplayer",play,539.0,0 -12860805,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -12860805,"Call of Duty Modern Warfare 3 - Multiplayer",play,324.0,0 -12860805,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -12860805,"Call of Duty Black Ops - Multiplayer",play,238.0,0 -12860805,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -12860805,"Call of Duty Modern Warfare 2 - Multiplayer",play,118.0,0 -12860805,"Call of Duty Modern Warfare 3",purchase,1.0,0 -12860805,"Call of Duty Modern Warfare 3",play,105.0,0 -12860805,"Call of Duty Black Ops",purchase,1.0,0 -12860805,"Call of Duty Black Ops",play,93.0,0 -12860805,"Call of Duty Modern Warfare 2",purchase,1.0,0 -12860805,"Call of Duty Modern Warfare 2",play,31.0,0 -12860805,"Call of Duty Ghosts",purchase,1.0,0 -12860805,"Call of Duty Ghosts",play,15.3,0 -12860805,"Counter-Strike Source",purchase,1.0,0 -12860805,"Counter-Strike Source",play,14.5,0 -12860805,"Half-Life 2 Deathmatch",purchase,1.0,0 -12860805,"Half-Life 2 Deathmatch",play,14.0,0 -12860805,"Half-Life 2 Episode One",purchase,1.0,0 -12860805,"Half-Life 2 Episode One",play,5.4,0 -12860805,"Half-Life 2",purchase,1.0,0 -12860805,"Half-Life 2",play,2.0,0 -12860805,"Deus Ex Human Revolution",purchase,1.0,0 -12860805,"Deus Ex Human Revolution",play,0.3,0 -12860805,"Half-Life Deathmatch Source",purchase,1.0,0 -12860805,"Half-Life Deathmatch Source",play,0.1,0 -12860805,"Day of Defeat Source",purchase,1.0,0 -12860805,"Call of Duty Modern Warfare 2 - Resurgence Pack",purchase,1.0,0 -12860805,"Half-Life 2 Lost Coast",purchase,1.0,0 -183210904,"Order of War",purchase,1.0,0 -183210904,"Order of War",play,0.3,0 -100642975,"Faerie Solitaire",purchase,1.0,0 -100642975,"Left 4 Dead 2",purchase,1.0,0 -100642975,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -100642975,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -100642975,"Stronghold Kingdoms",purchase,1.0,0 -239007338,"Dota 2",purchase,1.0,0 -239007338,"Dota 2",play,2.4,0 -66530362,"Darkest Dungeon",purchase,1.0,0 -66530362,"Darkest Dungeon",play,94.0,0 -66530362,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -66530362,"Dragon Age Origins - Ultimate Edition",play,54.0,0 -66530362,"Command and Conquer 4 Tiberian Twilight",purchase,1.0,0 -66530362,"Command and Conquer 4 Tiberian Twilight",play,36.0,0 -66530362,"Mass Effect",purchase,1.0,0 -66530362,"Mass Effect",play,26.0,0 -66530362,"Call of Cthulhu Dark Corners of the Earth",purchase,1.0,0 -66530362,"Call of Cthulhu Dark Corners of the Earth",play,21.0,0 -66530362,"Titan Attacks",purchase,1.0,0 -66530362,"Titan Attacks",play,2.0,0 -89211039,"Insurgency Modern Infantry Combat",purchase,1.0,0 -89211039,"Insurgency Modern Infantry Combat",play,0.7,0 -55136688,"Garry's Mod",purchase,1.0,0 -55136688,"Garry's Mod",play,47.0,0 -55136688,"Counter-Strike Source",purchase,1.0,0 -55136688,"Counter-Strike Source",play,0.2,0 -280288586,"No More Room in Hell",purchase,1.0,0 -280288586,"No More Room in Hell",play,3.1,0 -142803056,"Crysis 2 Maximum Edition",purchase,1.0,0 -142803056,"Crysis 2 Maximum Edition",play,1.5,0 -61409763,"Aliens vs. Predator",purchase,1.0,0 -61409763,"Aliens vs. Predator",play,46.0,0 -121225694,"Source Filmmaker",purchase,1.0,0 -121225694,"Source Filmmaker",play,0.4,0 -205031950,"Dota 2",purchase,1.0,0 -205031950,"Dota 2",play,0.5,0 -2613043,"Counter-Strike",purchase,1.0,0 -2613043,"Counter-Strike",play,0.2,0 -2613043,"Day of Defeat",purchase,1.0,0 -2613043,"Deathmatch Classic",purchase,1.0,0 -2613043,"Half-Life",purchase,1.0,0 -2613043,"Half-Life Blue Shift",purchase,1.0,0 -2613043,"Half-Life Opposing Force",purchase,1.0,0 -2613043,"Ricochet",purchase,1.0,0 -2613043,"Team Fortress Classic",purchase,1.0,0 -107902370,"Dota 2",purchase,1.0,0 -107902370,"Dota 2",play,537.0,0 -107902370,"Serious Sam HD The Second Encounter",purchase,1.0,0 -107902370,"Serious Sam HD The Second Encounter",play,26.0,0 -107902370,"Europa Universalis III",purchase,1.0,0 -107902370,"FTL Faster Than Light",purchase,1.0,0 -125255679,"Team Fortress 2",purchase,1.0,0 -125255679,"Team Fortress 2",play,15.7,0 -125255679,"Serious Sam HD The Second Encounter",purchase,1.0,0 -125255679,"Serious Sam HD The Second Encounter",play,13.5,0 -248949033,"Unturned",purchase,1.0,0 -248949033,"Unturned",play,3.7,0 -248949033,"Trove",purchase,1.0,0 -52472947,"Left 4 Dead",purchase,1.0,0 -52472947,"Left 4 Dead",play,32.0,0 -155092386,"Dota 2",purchase,1.0,0 -155092386,"Dota 2",play,0.8,0 -249922888,"Dota 2",purchase,1.0,0 -249922888,"Dota 2",play,564.0,0 -159535257,"Dead Island",purchase,1.0,0 -159535257,"Dead Island",play,38.0,0 -159535257,"Left 4 Dead 2",purchase,1.0,0 -159535257,"Left 4 Dead 2",play,26.0,0 -159535257,"Only If",purchase,1.0,0 -159535257,"Only If",play,0.2,0 -159535257,"Dead Island Epidemic",purchase,1.0,0 -159535257,"Dead Island Riptide",purchase,1.0,0 -248660144,"Source Filmmaker",purchase,1.0,0 -248660144,"Source Filmmaker",play,5.5,0 -248660144,"Dead Island Epidemic",purchase,1.0,0 -248660144,"Path of Exile",purchase,1.0,0 -248660144,"RIFT",purchase,1.0,0 -136752099,"Dota 2",purchase,1.0,0 -136752099,"Dota 2",play,1.2,0 -250402599,"Dota 2",purchase,1.0,0 -250402599,"Dota 2",play,90.0,0 -90154516,"Titan Quest",purchase,1.0,0 -90154516,"Titan Quest",play,5.7,0 -90154516,"Titan Quest Immortal Throne",purchase,1.0,0 -301613541,"Fallout 4",purchase,1.0,0 -301613541,"Fallout 4",play,2.0,0 -205511851,"Dota 2",purchase,1.0,0 -205511851,"Dota 2",play,0.8,0 -173046677,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -173046677,"Tom Clancy's Ghost Recon Phantoms - NA",play,70.0,0 -173046677,"Team Fortress 2",purchase,1.0,0 -173046677,"Team Fortress 2",play,7.2,0 -3663009,"Counter-Strike Source",purchase,1.0,0 -3663009,"Counter-Strike Source",play,0.9,0 -3663009,"Counter-Strike",purchase,1.0,0 -3663009,"Day of Defeat",purchase,1.0,0 -3663009,"Deathmatch Classic",purchase,1.0,0 -3663009,"Half-Life",purchase,1.0,0 -3663009,"Half-Life 2",purchase,1.0,0 -3663009,"Half-Life 2 Deathmatch",purchase,1.0,0 -3663009,"Half-Life 2 Lost Coast",purchase,1.0,0 -3663009,"Half-Life Blue Shift",purchase,1.0,0 -3663009,"Half-Life Opposing Force",purchase,1.0,0 -3663009,"Ricochet",purchase,1.0,0 -3663009,"Team Fortress Classic",purchase,1.0,0 -239214165,"Unturned",purchase,1.0,0 -239214165,"Unturned",play,3.7,0 -239214165,"Copa Petrobras de Marcas",purchase,1.0,0 -87740709,"Dota 2",purchase,1.0,0 -87740709,"Dota 2",play,3356.0,0 -87740709,"DARK SOULS II",purchase,1.0,0 -87740709,"DARK SOULS II",play,120.0,0 -87740709,"Counter-Strike Global Offensive",purchase,1.0,0 -87740709,"Counter-Strike Global Offensive",play,71.0,0 -87740709,"Team Fortress 2",purchase,1.0,0 -87740709,"Team Fortress 2",play,57.0,0 -87740709,"Counter-Strike",purchase,1.0,0 -87740709,"Counter-Strike",play,39.0,0 -87740709,"Middle-earth Shadow of Mordor",purchase,1.0,0 -87740709,"Middle-earth Shadow of Mordor",play,12.8,0 -87740709,"Mortal Kombat Komplete Edition",purchase,1.0,0 -87740709,"Mortal Kombat Komplete Edition",play,9.2,0 -87740709,"GRID Autosport",purchase,1.0,0 -87740709,"GRID Autosport",play,7.7,0 -87740709,"Lords Of The Fallen",purchase,1.0,0 -87740709,"Lords Of The Fallen",play,4.7,0 -87740709,"Fritz Chess 14",purchase,1.0,0 -87740709,"Fritz Chess 14",play,2.0,0 -87740709,"3DMark",purchase,1.0,0 -87740709,"3DMark",play,1.0,0 -87740709,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -87740709,"3DMark API Overhead feature test",purchase,1.0,0 -87740709,"3DMark Cloud Gate benchmark",purchase,1.0,0 -87740709,"3DMark Fire Strike benchmark",purchase,1.0,0 -87740709,"3DMark Ice Storm benchmark",purchase,1.0,0 -87740709,"3DMark Sky Diver benchmark",purchase,1.0,0 -87740709,"Counter-Strike Condition Zero",purchase,1.0,0 -87740709,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -87740709,"DARK SOULS II - Season Pass",purchase,1.0,0 -87740709,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -87740709,"Deep Fritz 14 DLC",purchase,1.0,0 -134482539,"PROTOTYPE 2",purchase,1.0,0 -134482539,"PROTOTYPE 2",play,2.5,0 -134482539,"Prototype 2 RADNET Access Pack",purchase,1.0,0 -158333599,"Portal",purchase,1.0,0 -158333599,"Portal",play,3.2,0 -228258798,"Dota 2",purchase,1.0,0 -228258798,"Dota 2",play,2.7,0 -164561444,"Sid Meier's Civilization V",purchase,1.0,0 -164561444,"Sid Meier's Civilization V",play,61.0,0 -164561444,"Amnesia The Dark Descent",purchase,1.0,0 -164561444,"Amnesia The Dark Descent",play,2.4,0 -164561444,"Sid Meier's Ace Patrol",purchase,1.0,0 -164561444,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -164561444,"Sid Meier's Civilization III Complete",purchase,1.0,0 -164561444,"Sid Meier's Civilization IV",purchase,1.0,0 -164561444,"Sid Meier's Civilization IV",purchase,1.0,0 -164561444,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -164561444,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -164561444,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -164561444,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -164561444,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -164561444,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -164561444,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -164561444,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -164561444,"Sid Meier's Pirates!",purchase,1.0,0 -164561444,"Sid Meier's Railroads!",purchase,1.0,0 -16717658,"Counter-Strike",purchase,1.0,0 -16717658,"Counter-Strike Condition Zero",purchase,1.0,0 -16717658,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -107256941,"Dota 2",purchase,1.0,0 -107256941,"Dota 2",play,78.0,0 -234114335,"Grand Theft Auto V",purchase,1.0,0 -234114335,"Grand Theft Auto V",play,21.0,0 -232831378,"FreeStyle2 Street Basketball",purchase,1.0,0 -167443514,"Dota 2",purchase,1.0,0 -167443514,"Dota 2",play,0.2,0 -204302937,"Teleglitch Die More Edition",purchase,1.0,0 -144813543,"Dota 2",purchase,1.0,0 -144813543,"Dota 2",play,1054.0,0 -144813543,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -144813543,"Tom Clancy's Ghost Recon Phantoms - NA",play,24.0,0 -144813543,"No More Room in Hell",purchase,1.0,0 -144813543,"Clicker Heroes",purchase,1.0,0 -144813543,"Dota 2 - Short Film Contest",purchase,1.0,0 -144813543,"Dungeon Defenders II",purchase,1.0,0 -199642080,"Garry's Mod",purchase,1.0,0 -199642080,"Garry's Mod",play,18.4,0 -199642080,"BLOCKADE 3D",purchase,1.0,0 -199642080,"BLOCKADE 3D",play,7.6,0 -199642080,"Counter-Strike Nexon Zombies",purchase,1.0,0 -199642080,"Fishing Planet",purchase,1.0,0 -199642080,"Heroes & Generals",purchase,1.0,0 -199642080,"Survarium",purchase,1.0,0 -159364080,"Football Manager 2014",purchase,1.0,0 -159364080,"Football Manager 2014",play,1.2,0 -206977463,"Dota 2",purchase,1.0,0 -206977463,"Dota 2",play,1.6,0 -154691996,"Dota 2",purchase,1.0,0 -154691996,"Dota 2",play,0.1,0 -192641031,"Toribash",purchase,1.0,0 -192641031,"Toribash",play,0.5,0 -192641031,"Happy Wars",purchase,1.0,0 -192641031,"Robocraft",purchase,1.0,0 -192641031,"Unturned",purchase,1.0,0 -259798464,"The Elder Scrolls V Skyrim",purchase,1.0,0 -259798464,"The Elder Scrolls V Skyrim",play,278.0,0 -259798464,"The Elder Scrolls III Morrowind",purchase,1.0,0 -259798464,"The Elder Scrolls III Morrowind",play,31.0,0 -259798464,"The Elder Scrolls Online Tamriel Unlimited",purchase,1.0,0 -259798464,"The Elder Scrolls Online Tamriel Unlimited",play,1.0,0 -259798464,"Robocraft",purchase,1.0,0 -259798464,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -259798464,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -259798464,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -259798464,"Toribash",purchase,1.0,0 -259798464,"Warface",purchase,1.0,0 -210576042,"Don't Starve",purchase,1.0,0 -210576042,"Don't Starve",play,50.0,0 -210576042,"Portal 2",purchase,1.0,0 -210576042,"Portal 2",play,23.0,0 -210576042,"Papers, Please",purchase,1.0,0 -210576042,"Papers, Please",play,10.2,0 -210576042,"Portal",purchase,1.0,0 -210576042,"Portal",play,8.9,0 -210576042,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -210576042,"RollerCoaster Tycoon 3 Platinum!",play,8.8,0 -210576042,"Hollywood Visionary",purchase,1.0,0 -210576042,"Hollywood Visionary",play,3.2,0 -210576042,"Don't Starve Together Beta",purchase,1.0,0 -210576042,"Don't Starve Together Beta",play,2.0,0 -210576042,"Viridi",purchase,1.0,0 -210576042,"Viridi",play,0.2,0 -210576042,"Monaco",purchase,1.0,0 -210576042,"Monaco",play,0.2,0 -210576042,"That Old Time Religion",purchase,1.0,0 -210576042,"Ben There, Dan That!",purchase,1.0,0 -210576042,"Don't Starve Reign of Giants",purchase,1.0,0 -210576042,"Path of Exile",purchase,1.0,0 -210576042,"Realm of the Mad God",purchase,1.0,0 -210576042,"Time Gentlemen, Please!",purchase,1.0,0 -210576042,"Warframe",purchase,1.0,0 -105159839,"Dota 2",purchase,1.0,0 -105159839,"Dota 2",play,1829.0,0 -105159839,"Fallen Earth",purchase,1.0,0 -105159839,"Football Superstars",purchase,1.0,0 -105159839,"Solstice Arena",purchase,1.0,0 -105159839,"Warframe",purchase,1.0,0 -105159839,"War Thunder",purchase,1.0,0 -253970176,"Dota 2",purchase,1.0,0 -253970176,"Dota 2",play,2.0,0 -33995654,"Empire Total War",purchase,1.0,0 -33995654,"Empire Total War",play,729.0,0 -33995654,"Total War ROME II - Emperor Edition",purchase,1.0,0 -33995654,"Total War ROME II - Emperor Edition",play,616.0,0 -33995654,"Rome Total War",purchase,1.0,0 -33995654,"Rome Total War",play,343.0,0 -33995654,"Napoleon Total War",purchase,1.0,0 -33995654,"Napoleon Total War",play,105.0,0 -33995654,"Counter-Strike Source",purchase,1.0,0 -33995654,"Counter-Strike Source",play,1.8,0 -33995654,"Day of Defeat Source",purchase,1.0,0 -33995654,"Half-Life 2 Deathmatch",purchase,1.0,0 -33995654,"Half-Life 2 Lost Coast",purchase,1.0,0 -167759366,"Team Fortress 2",purchase,1.0,0 -167759366,"Team Fortress 2",play,0.5,0 -292737214,"Team Fortress 2",purchase,1.0,0 -292737214,"Team Fortress 2",play,0.3,0 -173859218,"Counter-Strike Global Offensive",purchase,1.0,0 -173859218,"Counter-Strike Global Offensive",play,22.0,0 -173859218,"Counter-Strike",purchase,1.0,0 -173859218,"Counter-Strike",play,15.3,0 -173859218,"Team Fortress 2",purchase,1.0,0 -173859218,"Team Fortress 2",play,7.4,0 -173859218,"Mitos.is The Game",purchase,1.0,0 -173859218,"Mitos.is The Game",play,0.3,0 -173859218,"Half-Life 2",purchase,1.0,0 -173859218,"Half-Life 2",play,0.2,0 -173859218,"Aberoth",purchase,1.0,0 -173859218,"Aberoth",play,0.1,0 -173859218,"Counter-Strike Condition Zero",purchase,1.0,0 -173859218,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -173859218,"Counter-Strike Source",purchase,1.0,0 -173859218,"Day of Defeat",purchase,1.0,0 -173859218,"Day of Defeat Source",purchase,1.0,0 -173859218,"Deathmatch Classic",purchase,1.0,0 -173859218,"Half-Life",purchase,1.0,0 -173859218,"Half-Life 2 Deathmatch",purchase,1.0,0 -173859218,"Half-Life 2 Episode One",purchase,1.0,0 -173859218,"Half-Life 2 Episode Two",purchase,1.0,0 -173859218,"Half-Life 2 Lost Coast",purchase,1.0,0 -173859218,"Half-Life Blue Shift",purchase,1.0,0 -173859218,"Half-Life Opposing Force",purchase,1.0,0 -173859218,"Half-Life Source",purchase,1.0,0 -173859218,"Half-Life Deathmatch Source",purchase,1.0,0 -173859218,"Left 4 Dead",purchase,1.0,0 -173859218,"Left 4 Dead 2",purchase,1.0,0 -173859218,"Portal",purchase,1.0,0 -173859218,"Portal 2",purchase,1.0,0 -173859218,"Ricochet",purchase,1.0,0 -173859218,"Sakura Clicker",purchase,1.0,0 -173859218,"Team Fortress Classic",purchase,1.0,0 -77213306,"Dota 2",purchase,1.0,0 -77213306,"Dota 2",play,488.0,0 -212648189,"Dota 2",purchase,1.0,0 -212648189,"Dota 2",play,359.0,0 -212648189,"Chaos Heroes Online",purchase,1.0,0 -212648189,"FreeStyle2 Street Basketball",purchase,1.0,0 -212648189,"Marvel Heroes 2015",purchase,1.0,0 -212648189,"Running Shadow",purchase,1.0,0 -212648189,"TERA",purchase,1.0,0 -203103090,"Dota 2",purchase,1.0,0 -203103090,"Dota 2",play,21.0,0 -155993090,"Dota 2",purchase,1.0,0 -155993090,"Dota 2",play,3.5,0 -116912767,"PlanetSide 2",purchase,1.0,0 -116912767,"PlanetSide 2",play,176.0,0 -116912767,"The Elder Scrolls V Skyrim",purchase,1.0,0 -116912767,"The Elder Scrolls V Skyrim",play,125.0,0 -116912767,"Natural Selection 2",purchase,1.0,0 -116912767,"Natural Selection 2",play,105.0,0 -116912767,"The Long Dark",purchase,1.0,0 -116912767,"The Long Dark",play,103.0,0 -116912767,"BioShock Infinite",purchase,1.0,0 -116912767,"BioShock Infinite",play,97.0,0 -116912767,"Garry's Mod",purchase,1.0,0 -116912767,"Garry's Mod",play,59.0,0 -116912767,"Team Fortress 2",purchase,1.0,0 -116912767,"Team Fortress 2",play,59.0,0 -116912767,"Killing Floor 2",purchase,1.0,0 -116912767,"Killing Floor 2",play,51.0,0 -116912767,"Counter-Strike Global Offensive",purchase,1.0,0 -116912767,"Counter-Strike Global Offensive",play,47.0,0 -116912767,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -116912767,"Call of Duty Modern Warfare 2 - Multiplayer",play,40.0,0 -116912767,"Wolfenstein The New Order",purchase,1.0,0 -116912767,"Wolfenstein The New Order",play,39.0,0 -116912767,"Bloons TD5",purchase,1.0,0 -116912767,"Bloons TD5",play,32.0,0 -116912767,"Left 4 Dead 2",purchase,1.0,0 -116912767,"Left 4 Dead 2",play,26.0,0 -116912767,"Call of Duty World at War",purchase,1.0,0 -116912767,"Call of Duty World at War",play,23.0,0 -116912767,"Call of Duty Modern Warfare 2",purchase,1.0,0 -116912767,"Call of Duty Modern Warfare 2",play,20.0,0 -116912767,"Child of Light",purchase,1.0,0 -116912767,"Child of Light",play,15.6,0 -116912767,"Insurgency",purchase,1.0,0 -116912767,"Insurgency",play,3.8,0 -116912767,"Dota 2",purchase,1.0,0 -116912767,"Dota 2",play,1.9,0 -116912767,"Tomb Raider",purchase,1.0,0 -116912767,"Tomb Raider",play,1.6,0 -116912767,"H1Z1",purchase,1.0,0 -116912767,"H1Z1",play,0.8,0 -116912767,"Unturned",purchase,1.0,0 -116912767,"Unturned",play,0.2,0 -116912767,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -116912767,"BioShock Infinite - Season Pass",purchase,1.0,0 -116912767,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -116912767,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -116912767,"H1Z1 Test Server",purchase,1.0,0 -116912767,"Planetside 2 First Recruit Bundle",purchase,1.0,0 -116912767,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -284555178,"Dota 2",purchase,1.0,0 -284555178,"Dota 2",play,0.3,0 -56684410,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -56684410,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,32.0,0 -56684410,"Counter-Strike",purchase,1.0,0 -56684410,"Counter-Strike",play,9.9,0 -56684410,"Divinity II Developer's Cut",purchase,1.0,0 -56684410,"Divinity II Developer's Cut",play,0.3,0 -56684410,"Beyond Divinity",purchase,1.0,0 -56684410,"Day of Defeat",purchase,1.0,0 -56684410,"Deathmatch Classic",purchase,1.0,0 -56684410,"Divine Divinity",purchase,1.0,0 -56684410,"Half-Life",purchase,1.0,0 -56684410,"Half-Life Blue Shift",purchase,1.0,0 -56684410,"Half-Life Opposing Force",purchase,1.0,0 -56684410,"Neverwinter",purchase,1.0,0 -56684410,"Ricochet",purchase,1.0,0 -56684410,"Team Fortress Classic",purchase,1.0,0 -56684410,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -224396593,"FreeStyle2 Street Basketball",purchase,1.0,0 -224396593,"FreeStyle2 Street Basketball",play,26.0,0 -224396593,"Robocraft",purchase,1.0,0 -224396593,"Robocraft",play,5.9,0 -224396593,"Strife",purchase,1.0,0 -224396593,"Strife",play,0.8,0 -224396593,"Team Fortress 2",purchase,1.0,0 -224396593,"Team Fortress 2",play,0.6,0 -224396593,"GunZ 2 The Second Duel",purchase,1.0,0 -224396593,"GunZ 2 The Second Duel",play,0.2,0 -224396593,"Survarium",purchase,1.0,0 -187075435,"Turbo Dismount",purchase,1.0,0 -187075435,"Turbo Dismount",play,13.8,0 -243532285,"Dota 2",purchase,1.0,0 -243532285,"Dota 2",play,0.4,0 -11731710,"Dota 2",purchase,1.0,0 -11731710,"Dota 2",play,1243.0,0 -11731710,"PAYDAY 2",purchase,1.0,0 -11731710,"PAYDAY 2",play,1029.0,0 -11731710,"Borderlands 2",purchase,1.0,0 -11731710,"Borderlands 2",play,295.0,0 -11731710,"Left 4 Dead 2",purchase,1.0,0 -11731710,"Left 4 Dead 2",play,268.0,0 -11731710,"Dungeon Defenders",purchase,1.0,0 -11731710,"Dungeon Defenders",play,174.0,0 -11731710,"Darkspore",purchase,1.0,0 -11731710,"Darkspore",play,89.0,0 -11731710,"Divinity Original Sin",purchase,1.0,0 -11731710,"Divinity Original Sin",play,70.0,0 -11731710,"Deus Ex Human Revolution",purchase,1.0,0 -11731710,"Deus Ex Human Revolution",play,51.0,0 -11731710,"Batman Arkham City GOTY",purchase,1.0,0 -11731710,"Batman Arkham City GOTY",play,46.0,0 -11731710,"Windward",purchase,1.0,0 -11731710,"Windward",play,44.0,0 -11731710,"Transformers Fall of Cybertron",purchase,1.0,0 -11731710,"Transformers Fall of Cybertron",play,43.0,0 -11731710,"Gauntlet ",purchase,1.0,0 -11731710,"Gauntlet ",play,42.0,0 -11731710,"Far Cry 3",purchase,1.0,0 -11731710,"Far Cry 3",play,41.0,0 -11731710,"Sword Coast Legends",purchase,1.0,0 -11731710,"Sword Coast Legends",play,41.0,0 -11731710,"Supreme Commander 2",purchase,1.0,0 -11731710,"Supreme Commander 2",play,37.0,0 -11731710,"BRINK",purchase,1.0,0 -11731710,"BRINK",play,34.0,0 -11731710,"Banished",purchase,1.0,0 -11731710,"Banished",play,33.0,0 -11731710,"Alien Swarm",purchase,1.0,0 -11731710,"Alien Swarm",play,30.0,0 -11731710,"RAGE",purchase,1.0,0 -11731710,"RAGE",play,30.0,0 -11731710,"Pillars of Eternity",purchase,1.0,0 -11731710,"Pillars of Eternity",play,29.0,0 -11731710,"Batman Arkham Origins",purchase,1.0,0 -11731710,"Batman Arkham Origins",play,29.0,0 -11731710,"Mass Effect",purchase,1.0,0 -11731710,"Mass Effect",play,22.0,0 -11731710,"PROTOTYPE 2",purchase,1.0,0 -11731710,"PROTOTYPE 2",play,21.0,0 -11731710,"Crysis 2 Maximum Edition",purchase,1.0,0 -11731710,"Crysis 2 Maximum Edition",play,19.1,0 -11731710,"Monday Night Combat",purchase,1.0,0 -11731710,"Monday Night Combat",play,18.0,0 -11731710,"Warframe",purchase,1.0,0 -11731710,"Warframe",play,17.8,0 -11731710,"GRID 2",purchase,1.0,0 -11731710,"GRID 2",play,17.7,0 -11731710,"Two Worlds II",purchase,1.0,0 -11731710,"Two Worlds II",play,17.0,0 -11731710,"Half-Life 2",purchase,1.0,0 -11731710,"Half-Life 2",play,16.1,0 -11731710,"The Banner Saga",purchase,1.0,0 -11731710,"The Banner Saga",play,14.9,0 -11731710,"Metro 2033",purchase,1.0,0 -11731710,"Metro 2033",play,14.0,0 -11731710,"Half-Life 2 Episode Two",purchase,1.0,0 -11731710,"Half-Life 2 Episode Two",play,13.9,0 -11731710,"Dungeons & Dragons Chronicles of Mystara",purchase,1.0,0 -11731710,"Dungeons & Dragons Chronicles of Mystara",play,12.2,0 -11731710,"Robot Roller-Derby Disco Dodgeball",purchase,1.0,0 -11731710,"Robot Roller-Derby Disco Dodgeball",play,11.3,0 -11731710,"Magic Duels",purchase,1.0,0 -11731710,"Magic Duels",play,10.7,0 -11731710,"Portal",purchase,1.0,0 -11731710,"Portal",play,10.2,0 -11731710,"Ultra Street Fighter IV",purchase,1.0,0 -11731710,"Ultra Street Fighter IV",play,9.5,0 -11731710,"Counter-Strike Source",purchase,1.0,0 -11731710,"Counter-Strike Source",play,6.5,0 -11731710,"Demigod",purchase,1.0,0 -11731710,"Demigod",play,6.3,0 -11731710,"The Elder Scrolls V Skyrim",purchase,1.0,0 -11731710,"The Elder Scrolls V Skyrim",play,4.3,0 -11731710,"Half-Life 2 Episode One",purchase,1.0,0 -11731710,"Half-Life 2 Episode One",play,4.2,0 -11731710,"Card Hunter",purchase,1.0,0 -11731710,"Card Hunter",play,2.4,0 -11731710,"Dungeon Defenders Eternity",purchase,1.0,0 -11731710,"Dungeon Defenders Eternity",play,2.2,0 -11731710,"Moonbase Alpha",purchase,1.0,0 -11731710,"Moonbase Alpha",play,1.7,0 -11731710,"Depression Quest",purchase,1.0,0 -11731710,"Depression Quest",play,1.5,0 -11731710,"To the Moon",purchase,1.0,0 -11731710,"To the Moon",play,1.1,0 -11731710,"Tom Clancy's EndWar",purchase,1.0,0 -11731710,"Tom Clancy's EndWar",play,1.0,0 -11731710,"State of Decay",purchase,1.0,0 -11731710,"State of Decay",play,0.9,0 -11731710,"Darksiders",purchase,1.0,0 -11731710,"Darksiders",play,0.9,0 -11731710,"Magicka",purchase,1.0,0 -11731710,"Magicka",play,0.8,0 -11731710,"HAWKEN",purchase,1.0,0 -11731710,"HAWKEN",play,0.8,0 -11731710,"Mount & Blade With Fire and Sword",purchase,1.0,0 -11731710,"Mount & Blade With Fire and Sword",play,0.5,0 -11731710,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -11731710,"Burnout Paradise The Ultimate Box",play,0.4,0 -11731710,"The Witcher Enhanced Edition",purchase,1.0,0 -11731710,"The Witcher Enhanced Edition",play,0.4,0 -11731710,"Mount & Blade Warband",purchase,1.0,0 -11731710,"Mount & Blade Warband",play,0.3,0 -11731710,"The Banner Saga Factions",purchase,1.0,0 -11731710,"The Banner Saga Factions",play,0.2,0 -11731710,"Titan Quest Immortal Throne",purchase,1.0,0 -11731710,"Titan Quest Immortal Throne",play,0.2,0 -11731710,"Goat Simulator",purchase,1.0,0 -11731710,"Garry's Mod",purchase,1.0,0 -11731710,"Alan Wake",purchase,1.0,0 -11731710,"Alan Wake's American Nightmare",purchase,1.0,0 -11731710,"Amnesia The Dark Descent",purchase,1.0,0 -11731710,"Anomaly 2",purchase,1.0,0 -11731710,"Baldur's Gate II Enhanced Edition",purchase,1.0,0 -11731710,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -11731710,"Batman Arkham Origins - Initiation",purchase,1.0,0 -11731710,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -11731710,"Beyond Divinity",purchase,1.0,0 -11731710,"BioShock",purchase,1.0,0 -11731710,"BioShock 2",purchase,1.0,0 -11731710,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -11731710,"Command and Conquer 4 Tiberian Twilight",purchase,1.0,0 -11731710,"Company of Heroes",purchase,1.0,0 -11731710,"Company of Heroes (New Steam Version)",purchase,1.0,0 -11731710,"Dead Space",purchase,1.0,0 -11731710,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -11731710,"Divine Divinity",purchase,1.0,0 -11731710,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -11731710,"Dungeon Defenders II",purchase,1.0,0 -11731710,"F.E.A.R. 3",purchase,1.0,0 -11731710,"GRID 2 GTR Racing Pack",purchase,1.0,0 -11731710,"Half-Life 2 Deathmatch",purchase,1.0,0 -11731710,"Half-Life 2 Lost Coast",purchase,1.0,0 -11731710,"Hotline Miami",purchase,1.0,0 -11731710,"L.A. Noire",purchase,1.0,0 -11731710,"Magicka Wizard Wars",purchase,1.0,0 -11731710,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -11731710,"Medal of Honor(TM) Single Player",purchase,1.0,0 -11731710,"Medal of Honor Pre-Order",purchase,1.0,0 -11731710,"Medieval II Total War",purchase,1.0,0 -11731710,"Mirror's Edge",purchase,1.0,0 -11731710,"Mortal Kombat Kollection",purchase,1.0,0 -11731710,"Mount & Blade",purchase,1.0,0 -11731710,"MX vs. ATV Reflex",purchase,1.0,0 -11731710,"PAYDAY The Heist",purchase,1.0,0 -11731710,"Portal 2",purchase,1.0,0 -11731710,"Psychonauts",purchase,1.0,0 -11731710,"Psychonauts Demo",purchase,1.0,0 -11731710,"Sid Meier's Civilization III Complete",purchase,1.0,0 -11731710,"Sniper Elite V2",purchase,1.0,0 -11731710,"The Banner Saga - Mod Content",purchase,1.0,0 -11731710,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -11731710,"Titan Quest",purchase,1.0,0 -11731710,"Torchlight II",purchase,1.0,0 -11731710,"Trove",purchase,1.0,0 -180321976,"Dota 2",purchase,1.0,0 -180321976,"Dota 2",play,2.4,0 -244743801,"Dota 2",purchase,1.0,0 -244743801,"Dota 2",play,0.8,0 -149911598,"Dota 2",purchase,1.0,0 -149911598,"Dota 2",play,2.2,0 -94142618,"Portal 2",purchase,1.0,0 -94142618,"Portal 2",play,6.7,0 -94142618,"Portal",purchase,1.0,0 -94142618,"Portal",play,2.1,0 -94142618,"IL-2 Sturmovik Cliffs of Dover",purchase,1.0,0 -94142618,"IL-2 Sturmovik Cliffs of Dover",play,0.7,0 -221710011,"Counter-Strike Global Offensive",purchase,1.0,0 -221710011,"Counter-Strike Global Offensive",play,690.0,0 -159582514,"Left 4 Dead 2",purchase,1.0,0 -174652811,"FreeStyle2 Street Basketball",purchase,1.0,0 -174652811,"FreeStyle2 Street Basketball",play,1.8,0 -174652811,"Marvel Heroes 2015",purchase,1.0,0 -174652811,"Marvel Heroes 2015",play,0.4,0 -861238,"Team Fortress Classic",purchase,1.0,0 -861238,"Team Fortress Classic",play,0.7,0 -861238,"Counter-Strike Global Offensive",purchase,1.0,0 -861238,"Counter-Strike Global Offensive",play,0.6,0 -861238,"Counter-Strike",purchase,1.0,0 -861238,"Counter-Strike",play,0.6,0 -861238,"Half-Life Opposing Force",purchase,1.0,0 -861238,"Day of Defeat",purchase,1.0,0 -861238,"Deathmatch Classic",purchase,1.0,0 -861238,"Half-Life",purchase,1.0,0 -861238,"Half-Life Blue Shift",purchase,1.0,0 -861238,"Ricochet",purchase,1.0,0 -304353788,"Team Fortress 2",purchase,1.0,0 -304353788,"Team Fortress 2",play,7.0,0 -304353788,"Unturned",purchase,1.0,0 -304353788,"Unturned",play,1.6,0 -184554757,"Unturned",purchase,1.0,0 -184554757,"Unturned",play,42.0,0 -184554757,"Garry's Mod",purchase,1.0,0 -184554757,"Garry's Mod",play,30.0,0 -184554757,"PAYDAY 2",purchase,1.0,0 -184554757,"PAYDAY 2",play,25.0,0 -184554757,"APB Reloaded",purchase,1.0,0 -184554757,"APB Reloaded",play,12.7,0 -184554757,"Left 4 Dead 2",purchase,1.0,0 -184554757,"Left 4 Dead 2",play,8.3,0 -184554757,"Team Fortress 2",purchase,1.0,0 -184554757,"Team Fortress 2",play,8.3,0 -184554757,"Warframe",purchase,1.0,0 -184554757,"Warframe",play,8.0,0 -184554757,"GunZ 2 The Second Duel",purchase,1.0,0 -184554757,"GunZ 2 The Second Duel",play,1.7,0 -184554757,"No More Room in Hell",purchase,1.0,0 -184554757,"No More Room in Hell",play,1.5,0 -184554757,"The Forgotten Ones",purchase,1.0,0 -184554757,"The Forgotten Ones",play,1.4,0 -184554757,"Haunted Memories",purchase,1.0,0 -184554757,"Haunted Memories",play,0.7,0 -184554757,"HAWKEN",purchase,1.0,0 -184554757,"HAWKEN",play,0.5,0 -184554757,"Rise of the Argonauts",purchase,1.0,0 -184554757,"Rise of the Argonauts",play,0.4,0 -184554757,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -148424406,"Dota 2",purchase,1.0,0 -148424406,"Dota 2",play,2.1,0 -151080401,"PAYDAY 2",purchase,1.0,0 -151080401,"PAYDAY 2",play,1.2,0 -156778965,"Team Fortress 2",purchase,1.0,0 -156778965,"Team Fortress 2",play,10.2,0 -91250489,"Team Fortress 2",purchase,1.0,0 -91250489,"Team Fortress 2",play,4.2,0 -247887213,"Counter-Strike Global Offensive",purchase,1.0,0 -247887213,"Counter-Strike Global Offensive",play,58.0,0 -247887213,"PAYDAY 2",purchase,1.0,0 -247887213,"PAYDAY 2",play,1.3,0 -247887213,"MXGP - The Official Motocross Videogame",purchase,1.0,0 -247887213,"Roogoo",purchase,1.0,0 -247887213,"Stranded In Time",purchase,1.0,0 -122563664,"Team Fortress 2",purchase,1.0,0 -122563664,"Team Fortress 2",play,17.7,0 -122563664,"Guns of Icarus Online",purchase,1.0,0 -122563664,"Guns of Icarus Online",play,2.2,0 -63441045,"Call of Duty Black Ops",purchase,1.0,0 -63441045,"Call of Duty Black Ops",play,17.5,0 -63441045,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -63441045,"Call of Duty Black Ops - Multiplayer",play,9.3,0 -63441045,"Empire Total War",purchase,1.0,0 -63441045,"Empire Total War",play,1.2,0 -43700700,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -43700700,"Call of Duty 4 Modern Warfare",play,18.1,0 -43700700,"Team Fortress 2",purchase,1.0,0 -43700700,"Team Fortress 2",play,3.7,0 -43700700,"Half-Life 2",purchase,1.0,0 -43700700,"Half-Life 2",play,2.6,0 -43700700,"Portal",purchase,1.0,0 -43700700,"Portal",play,2.3,0 -43700700,"Half-Life 2 Episode One",purchase,1.0,0 -43700700,"Half-Life 2 Episode Two",purchase,1.0,0 -43700700,"Half-Life 2 Lost Coast",purchase,1.0,0 -216678161,"Garry's Mod",purchase,1.0,0 -216678161,"Garry's Mod",play,80.0,0 -65392764,"Counter-Strike Source",purchase,1.0,0 -65392764,"Counter-Strike Source",play,1.1,0 -65392764,"Day of Defeat Source",purchase,1.0,0 -65392764,"Half-Life 2 Deathmatch",purchase,1.0,0 -65392764,"Portal",purchase,1.0,0 -193743047,"Dota 2",purchase,1.0,0 -193743047,"Dota 2",play,0.4,0 -274082752,"Quake Live",purchase,1.0,0 -140971088,"Dota 2",purchase,1.0,0 -140971088,"Dota 2",play,6.1,0 -196098976,"Counter-Strike Global Offensive",purchase,1.0,0 -196098976,"Counter-Strike Global Offensive",play,162.0,0 -196098976,"America's Army 3",purchase,1.0,0 -196098976,"Card Hunter",purchase,1.0,0 -196098976,"Dead Island Epidemic",purchase,1.0,0 -196098976,"Dirty Bomb",purchase,1.0,0 -196098976,"F.E.A.R. Online",purchase,1.0,0 -196098976,"Fistful of Frags",purchase,1.0,0 -196098976,"Invisible Apartment",purchase,1.0,0 -196098976,"Nosgoth",purchase,1.0,0 -196098976,"Only If",purchase,1.0,0 -196098976,"Pinball Arcade",purchase,1.0,0 -196098976,"PlanetSide 2",purchase,1.0,0 -196098976,"Quake Live",purchase,1.0,0 -196098976,"Rusty Hearts",purchase,1.0,0 -196098976,"Tactical Intervention",purchase,1.0,0 -196098976,"Unturned",purchase,1.0,0 -196098976,"Zombies Monsters Robots",purchase,1.0,0 -172485624,"Dota 2",purchase,1.0,0 -172485624,"Dota 2",play,0.5,0 -197147371,"Dota 2",purchase,1.0,0 -197147371,"Dota 2",play,2.1,0 -274439260,"Rugby League Team Manager 2015",purchase,1.0,0 -274439260,"Rugby League Team Manager 2015",play,9.0,0 -53258793,"Counter-Strike",purchase,1.0,0 -53258793,"Counter-Strike",play,1511.0,0 -53258793,"Counter-Strike Condition Zero",purchase,1.0,0 -53258793,"Counter-Strike Condition Zero",play,7.4,0 -53258793,"Left 4 Dead 2",purchase,1.0,0 -53258793,"Left 4 Dead 2",play,2.0,0 -53258793,"Zombie Panic Source",purchase,1.0,0 -53258793,"Zombie Panic Source",play,1.4,0 -53258793,"Day of Defeat",purchase,1.0,0 -53258793,"Day of Defeat",play,1.3,0 -53258793,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -53258793,"Ricochet",purchase,1.0,0 -53258793,"Deathmatch Classic",purchase,1.0,0 -242875877,"Unturned",purchase,1.0,0 -242875877,"Unturned",play,0.6,0 -38337633,"The Ship Single Player",purchase,1.0,0 -38337633,"The Ship Single Player",play,0.5,0 -38337633,"The Ship",purchase,1.0,0 -38337633,"The Ship Tutorial",purchase,1.0,0 -252153772,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -252153772,"Unturned",purchase,1.0,0 -32710856,"Super Monday Night Combat",purchase,1.0,0 -32710856,"Super Monday Night Combat",play,332.0,0 -32710856,"Left 4 Dead",purchase,1.0,0 -32710856,"Left 4 Dead",play,151.0,0 -32710856,"PlanetSide 2",purchase,1.0,0 -32710856,"PlanetSide 2",play,124.0,0 -32710856,"Dota 2",purchase,1.0,0 -32710856,"Dota 2",play,107.0,0 -32710856,"Team Fortress 2",purchase,1.0,0 -32710856,"Team Fortress 2",play,70.0,0 -32710856,"Hitman Absolution",purchase,1.0,0 -32710856,"Hitman Absolution",play,31.0,0 -32710856,"Left 4 Dead 2",purchase,1.0,0 -32710856,"Left 4 Dead 2",play,12.1,0 -32710856,"Natural Selection 2",purchase,1.0,0 -32710856,"Natural Selection 2",play,7.9,0 -32710856,"Orcs Must Die! 2",purchase,1.0,0 -32710856,"Orcs Must Die! 2",play,7.2,0 -32710856,"Half-Life 2",purchase,1.0,0 -32710856,"Half-Life 2",play,6.9,0 -32710856,"District 187",purchase,1.0,0 -32710856,"District 187",play,5.7,0 -32710856,"Crysis 2 Maximum Edition",purchase,1.0,0 -32710856,"Crysis 2 Maximum Edition",play,5.3,0 -32710856,"Terraria",purchase,1.0,0 -32710856,"Terraria",play,3.6,0 -32710856,"Vindictus",purchase,1.0,0 -32710856,"Vindictus",play,2.9,0 -32710856,"Company of Heroes",purchase,1.0,0 -32710856,"Company of Heroes",play,2.7,0 -32710856,"Dungeon Defenders",purchase,1.0,0 -32710856,"Dungeon Defenders",play,2.5,0 -32710856,"DC Universe Online",purchase,1.0,0 -32710856,"DC Universe Online",play,2.4,0 -32710856,"Marvel Heroes 2015",purchase,1.0,0 -32710856,"Marvel Heroes 2015",play,1.5,0 -32710856,"Half-Life 2 Episode One",purchase,1.0,0 -32710856,"Half-Life 2 Episode One",play,1.2,0 -32710856,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -32710856,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,1.0,0 -32710856,"Dragon Nest",purchase,1.0,0 -32710856,"Dragon Nest",play,0.8,0 -32710856,"Company of Heroes Tales of Valor",purchase,1.0,0 -32710856,"Company of Heroes Tales of Valor",play,0.4,0 -32710856,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -32710856,"Command and Conquer Red Alert 3 - Uprising",play,0.4,0 -32710856,"Titan Quest",purchase,1.0,0 -32710856,"Titan Quest",play,0.1,0 -32710856,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -32710856,"Darksiders",purchase,1.0,0 -32710856,"Metro 2033",purchase,1.0,0 -32710856,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -32710856,"Company of Heroes (New Steam Version)",purchase,1.0,0 -32710856,"Company of Heroes Opposing Fronts",purchase,1.0,0 -32710856,"Dead Space",purchase,1.0,0 -32710856,"Half-Life 2 Episode Two",purchase,1.0,0 -32710856,"Half-Life 2 Lost Coast",purchase,1.0,0 -32710856,"Hitman Sniper Challenge",purchase,1.0,0 -32710856,"Medal of Honor(TM) Single Player",purchase,1.0,0 -32710856,"Medal of Honor Pre-Order",purchase,1.0,0 -32710856,"Mirror's Edge",purchase,1.0,0 -32710856,"Portal",purchase,1.0,0 -32710856,"Red Faction Armageddon",purchase,1.0,0 -32710856,"Saints Row The Third",purchase,1.0,0 -256584820,"Dota 2",purchase,1.0,0 -256584820,"Dota 2",play,68.0,0 -95132622,"Trine",purchase,1.0,0 -95132622,"Trine",play,3.4,0 -95132622,"Trine 2",purchase,1.0,0 -95132622,"Trine 2",play,1.7,0 -95132622,"A.R.E.S.",purchase,1.0,0 -95132622,"A.R.E.S.",play,1.5,0 -95132622,"Alien Shooter",purchase,1.0,0 -95132622,"Alien Shooter 2 Reloaded",purchase,1.0,0 -95132622,"Altitude",purchase,1.0,0 -95132622,"Disciples II Gallean's Return",purchase,1.0,0 -95132622,"Really Big Sky",purchase,1.0,0 -95132622,"Steel Storm Burning Retribution",purchase,1.0,0 -49655019,"Counter-Strike Source",purchase,1.0,0 -49655019,"Counter-Strike Source",play,18.3,0 -133404545,"Counter-Strike Source",purchase,1.0,0 -133404545,"Counter-Strike Source",play,47.0,0 -133404545,"The Elder Scrolls V Skyrim",purchase,1.0,0 -133404545,"The Elder Scrolls V Skyrim",play,34.0,0 -133404545,"Portal 2",purchase,1.0,0 -133404545,"Portal 2",play,20.0,0 -133404545,"Counter-Strike Global Offensive",purchase,1.0,0 -133404545,"Counter-Strike Global Offensive",play,19.3,0 -133404545,"South Park The Stick of Truth",purchase,1.0,0 -133404545,"South Park The Stick of Truth",play,15.4,0 -133404545,"Deadpool",purchase,1.0,0 -133404545,"Deadpool",play,9.4,0 -133404545,"Thief",purchase,1.0,0 -133404545,"Thief",play,3.6,0 -133404545,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -133404545,"RollerCoaster Tycoon 3 Platinum!",play,2.7,0 -133404545,"Unturned",purchase,1.0,0 -133404545,"Unturned",play,1.5,0 -133404545,"Plague Inc Evolved",purchase,1.0,0 -133404545,"Plague Inc Evolved",play,0.2,0 -133404545,"Mortal Kombat Komplete Edition",purchase,1.0,0 -133404545,"Portal 2 - The Final Hours",purchase,1.0,0 -133404545,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -133404545,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -133404545,"Thief - Opportunist",purchase,1.0,0 -9946133,"Counter-Strike Source",purchase,1.0,0 -9946133,"Counter-Strike Source",play,1229.0,0 -9946133,"Counter-Strike Global Offensive",purchase,1.0,0 -9946133,"Counter-Strike Global Offensive",play,573.0,0 -9946133,"Garry's Mod",purchase,1.0,0 -9946133,"Garry's Mod",play,79.0,0 -9946133,"PAYDAY 2",purchase,1.0,0 -9946133,"PAYDAY 2",play,19.8,0 -9946133,"Portal 2",purchase,1.0,0 -9946133,"Portal 2",play,12.7,0 -9946133,"Euro Truck Simulator 2",purchase,1.0,0 -9946133,"Euro Truck Simulator 2",play,5.1,0 -9946133,"Dota 2",purchase,1.0,0 -9946133,"Dota 2",play,4.4,0 -9946133,"Mafia II",purchase,1.0,0 -9946133,"Mafia II",play,3.9,0 -9946133,"Assassin's Creed",purchase,1.0,0 -9946133,"Assassin's Creed",play,2.8,0 -9946133,"Left 4 Dead 2",purchase,1.0,0 -9946133,"Left 4 Dead 2",play,2.5,0 -9946133,"Call of Juarez Bound in Blood",purchase,1.0,0 -9946133,"Call of Juarez Bound in Blood",play,1.6,0 -9946133,"Battlefield Bad Company 2",purchase,1.0,0 -9946133,"Battlefield Bad Company 2",play,0.5,0 -9946133,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -9946133,"Tom Clancy's Splinter Cell Conviction",play,0.4,0 -9946133,"Dead Island Epidemic",purchase,1.0,0 -9946133,"Dead Island Epidemic",play,0.3,0 -9946133,"Lead and Gold - Gangs of the Wild West",purchase,1.0,0 -9946133,"Lead and Gold - Gangs of the Wild West",play,0.3,0 -9946133,"Team Fortress 2",purchase,1.0,0 -9946133,"Team Fortress 2",play,0.3,0 -9946133,"Quake Live",purchase,1.0,0 -9946133,"Quake Live",play,0.3,0 -9946133,"Saints Row 2",purchase,1.0,0 -9946133,"Alien Breed 2 Assault",purchase,1.0,0 -9946133,"Day of Defeat Source",purchase,1.0,0 -9946133,"Far Cry 2",purchase,1.0,0 -9946133,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -9946133,"Half-Life 2 Deathmatch",purchase,1.0,0 -9946133,"Half-Life 2 Lost Coast",purchase,1.0,0 -9946133,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -9946133,"Tom Clancy's Rainbow Six Vegas 2",purchase,1.0,0 -52293096,"The Elder Scrolls V Skyrim",purchase,1.0,0 -52293096,"The Elder Scrolls V Skyrim",play,539.0,0 -52293096,"The Last Remnant",purchase,1.0,0 -52293096,"The Last Remnant",play,75.0,0 -52293096,"Mount & Blade With Fire and Sword",purchase,1.0,0 -52293096,"Mount & Blade With Fire and Sword",play,5.0,0 -52293096,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -52293096,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -52293096,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -96440794,"Portal 2",purchase,1.0,0 -96440794,"Portal 2",play,14.4,0 -96440794,"Team Fortress 2",purchase,1.0,0 -96440794,"Team Fortress 2",play,3.5,0 -176448305,"Dota 2",purchase,1.0,0 -176448305,"Dota 2",play,3.9,0 -176448305,"Stronghold Kingdoms",purchase,1.0,0 -176448305,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -164939568,"Dota 2",purchase,1.0,0 -164939568,"Dota 2",play,4.1,0 -171773017,"Arma 2 Operation Arrowhead",purchase,1.0,0 -171773017,"Arma 2 Operation Arrowhead",play,0.5,0 -171773017,"Arma 2",purchase,1.0,0 -171773017,"Arma 2",play,0.1,0 -171773017,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -222360879,"Counter-Strike Global Offensive",purchase,1.0,0 -222360879,"Counter-Strike Global Offensive",play,2.5,0 -137949393,"Team Fortress 2",purchase,1.0,0 -137949393,"Team Fortress 2",play,3.6,0 -137949393,"Robocraft",purchase,1.0,0 -137949393,"Robocraft",play,0.2,0 -137949393,"War Thunder",purchase,1.0,0 -213650130,"Dota 2",purchase,1.0,0 -213650130,"Dota 2",play,52.0,0 -213650130,"Wrath of Athena",purchase,1.0,0 -213650130,"FreeStyle2 Street Basketball",purchase,1.0,0 -213650130,"Neverwinter",purchase,1.0,0 -55464294,"Call of Duty Modern Warfare 2",purchase,1.0,0 -55464294,"Call of Duty Modern Warfare 2",play,13.9,0 -55464294,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -256573229,"Magic Duels",purchase,1.0,0 -114112364,"Dota 2",purchase,1.0,0 -114112364,"Dota 2",play,3047.0,0 -130534025,"Mount & Blade Warband",purchase,1.0,0 -130534025,"Mount & Blade Warband",play,9.0,0 -130534025,"A New Beginning - Final Cut",purchase,1.0,0 -130534025,"A New Beginning - Final Cut",play,8.4,0 -130534025,"Age of Empires II HD Edition",purchase,1.0,0 -130534025,"Age of Empires II HD Edition",play,4.1,0 -130534025,"Mount & Blade With Fire and Sword",purchase,1.0,0 -130534025,"Mount & Blade With Fire and Sword",play,2.2,0 -130534025,"Mount & Blade",purchase,1.0,0 -130534025,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -137977132,"Mafia II",purchase,1.0,0 -137977132,"Mafia II",play,10.6,0 -82512087,"Dota 2",purchase,1.0,0 -82512087,"Dota 2",play,105.0,0 -82512087,"Team Fortress 2",purchase,1.0,0 -82512087,"Team Fortress 2",play,93.0,0 -82512087,"Loadout",purchase,1.0,0 -82512087,"Loadout",play,2.9,0 -82512087,"DC Universe Online",purchase,1.0,0 -82512087,"DC Universe Online",play,1.1,0 -82512087,"Fistful of Frags",purchase,1.0,0 -82512087,"Fistful of Frags",play,0.8,0 -82512087,"Nosgoth",purchase,1.0,0 -82512087,"Nosgoth",play,0.5,0 -82512087,"Alien Swarm",purchase,1.0,0 -82512087,"Alien Swarm",play,0.4,0 -166295260,"Dota 2",purchase,1.0,0 -166295260,"Dota 2",play,0.7,0 -102254281,"Team Fortress 2",purchase,1.0,0 -102254281,"Team Fortress 2",play,6.7,0 -54353026,"Sam & Max 101 Culture Shock",purchase,1.0,0 -54353026,"Sam & Max 101 Culture Shock",play,2.7,0 -54353026,"Sam & Max 102 Situation Comedy",purchase,1.0,0 -54353026,"Sam & Max 102 Situation Comedy",play,1.7,0 -54353026,"Sam & Max 103 The Mole, the Mob and the Meatball",purchase,1.0,0 -54353026,"Sam & Max 105 Reality 2.0",purchase,1.0,0 -54353026,"Sam & Max 106 Bright Side of the Moon",purchase,1.0,0 -54353026,"Sam & Max 201 Ice Station Santa",purchase,1.0,0 -54353026,"Sam & Max 202 Moai Better Blues",purchase,1.0,0 -54353026,"Sam & Max 203 Night of the Raving Dead",purchase,1.0,0 -54353026,"Sam & Max 204 Chariots of the Dogs",purchase,1.0,0 -54353026,"Sam & Max 205 What's New Beelzebub?",purchase,1.0,0 -194237851,"Dota 2",purchase,1.0,0 -194237851,"Dota 2",play,0.3,0 -194237851,"Neverwinter",purchase,1.0,0 -194237851,"Unturned",purchase,1.0,0 -81711607,"Order of War",purchase,1.0,0 -187883872,"Dota 2",purchase,1.0,0 -187883872,"Dota 2",play,2.4,0 -143824748,"Dota 2",purchase,1.0,0 -143824748,"Dota 2",play,2.8,0 -143824748,"Happy Wars",purchase,1.0,0 -143824748,"Happy Wars",play,0.5,0 -143824748,"Eternal Senia",purchase,1.0,0 -134549707,"Dota 2",purchase,1.0,0 -134549707,"Dota 2",play,0.1,0 -42020116,"PAYDAY The Heist",purchase,1.0,0 -42020116,"PAYDAY The Heist",play,9.8,0 -42020116,"Team Fortress 2",purchase,1.0,0 -42020116,"Team Fortress 2",play,8.6,0 -212572713,"Dota 2",purchase,1.0,0 -212572713,"Dota 2",play,0.4,0 -170570863,"Undertale",purchase,1.0,0 -170570863,"Undertale",play,4.0,0 -170570863,"Terraria",purchase,1.0,0 -170570863,"Terraria",play,3.9,0 -170570863,"Star Wars Knights of the Old Republic",purchase,1.0,0 -170570863,"Star Wars Knights of the Old Republic",play,3.4,0 -170570863,"Villagers and Heroes",purchase,1.0,0 -170570863,"Villagers and Heroes",play,1.4,0 -170570863,"Sonic Adventure 2 ",purchase,1.0,0 -170570863,"Sonic Adventure 2 ",play,1.4,0 -170570863,"Unturned",purchase,1.0,0 -170570863,"Unturned",play,0.9,0 -216361717,"Broforce",purchase,1.0,0 -216361717,"Grand Theft Auto V",purchase,1.0,0 -216361717,"Medieval Engineers",purchase,1.0,0 -216361717,"Rust",purchase,1.0,0 -216361717,"Space Engineers",purchase,1.0,0 -216361717,"SpeedRunners",purchase,1.0,0 -216361717,"Starbound",purchase,1.0,0 -216361717,"Starbound - Unstable",purchase,1.0,0 -216361717,"Teeworlds",purchase,1.0,0 -271364180,"Dota 2",purchase,1.0,0 -271364180,"Dota 2",play,2.8,0 -129926253,"Dota 2",purchase,1.0,0 -129926253,"Dota 2",play,2292.0,0 -129926253,"Free to Play",purchase,1.0,0 -129926253,"Free to Play",play,0.3,0 -129926253,"Deadbreed",purchase,1.0,0 -129926253,"Magicka Wizard Wars",purchase,1.0,0 -80145435,"Fallout New Vegas",purchase,1.0,0 -80145435,"Fallout New Vegas",play,397.0,0 -80145435,"Risen 2 - Dark Waters",purchase,1.0,0 -80145435,"Risen 2 - Dark Waters",play,169.0,0 -80145435,"Call of Juarez Gunslinger",purchase,1.0,0 -80145435,"Call of Juarez Gunslinger",play,43.0,0 -80145435,"Dead Island",purchase,1.0,0 -80145435,"Dead Island",play,16.1,0 -80145435,"Front Mission Evolved",purchase,1.0,0 -80145435,"Front Mission Evolved",play,5.8,0 -80145435,"Call of Juarez The Cartel",purchase,1.0,0 -80145435,"Call of Juarez The Cartel",play,3.4,0 -80145435,"ACE - Arena Cyber Evolution",purchase,1.0,0 -80145435,"Binary Domain",purchase,1.0,0 -80145435,"Just Cause 2",purchase,1.0,0 -80145435,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -80145435,"Magicka",purchase,1.0,0 -73979725,"Empire Total War",purchase,1.0,0 -73979725,"Empire Total War",play,0.4,0 -287880344,"Team Fortress 2",purchase,1.0,0 -287880344,"Team Fortress 2",play,0.3,0 -178890826,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -127603833,"Dota 2",purchase,1.0,0 -127603833,"Dota 2",play,1843.0,0 -127603833,"Team Fortress 2",purchase,1.0,0 -127603833,"Team Fortress 2",play,402.0,0 -127603833,"PAYDAY The Heist",purchase,1.0,0 -195403462,"Firefall",purchase,1.0,0 -195403462,"Firefall",play,9.3,0 -300885999,"Dota 2",purchase,1.0,0 -300885999,"Dota 2",play,1.2,0 -160883669,"Dota 2",purchase,1.0,0 -160883669,"Dota 2",play,808.0,0 -160883669,"Counter-Strike Global Offensive",purchase,1.0,0 -160883669,"Counter-Strike Global Offensive",play,234.0,0 -160883669,"Rust",purchase,1.0,0 -160883669,"Rust",play,106.0,0 -160883669,"Counter-Strike",purchase,1.0,0 -160883669,"Counter-Strike",play,48.0,0 -160883669,"PAYDAY 2",purchase,1.0,0 -160883669,"PAYDAY 2",play,23.0,0 -160883669,"Robocraft",purchase,1.0,0 -160883669,"Robocraft",play,17.6,0 -160883669,"Ace of Spades",purchase,1.0,0 -160883669,"Ace of Spades",play,17.1,0 -160883669,"Counter-Strike Source",purchase,1.0,0 -160883669,"Counter-Strike Source",play,15.1,0 -160883669,"Gotham City Impostors Free To Play",purchase,1.0,0 -160883669,"Gotham City Impostors Free To Play",play,14.9,0 -160883669,"Borderlands 2 RU",purchase,1.0,0 -160883669,"Borderlands 2 RU",play,14.2,0 -160883669,"Terraria",purchase,1.0,0 -160883669,"Terraria",play,12.1,0 -160883669,"Portal 2",purchase,1.0,0 -160883669,"Portal 2",play,7.8,0 -160883669,"War Thunder",purchase,1.0,0 -160883669,"War Thunder",play,7.2,0 -160883669,"Killing Floor",purchase,1.0,0 -160883669,"Killing Floor",play,7.1,0 -160883669,"The Forest",purchase,1.0,0 -160883669,"The Forest",play,6.9,0 -160883669,"No More Room in Hell",purchase,1.0,0 -160883669,"No More Room in Hell",play,6.8,0 -160883669,"Team Fortress 2",purchase,1.0,0 -160883669,"Team Fortress 2",play,5.8,0 -160883669,"Garry's Mod",purchase,1.0,0 -160883669,"Garry's Mod",play,4.8,0 -160883669,"DayZ",purchase,1.0,0 -160883669,"DayZ",play,4.7,0 -160883669,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -160883669,"Counter-Strike Condition Zero Deleted Scenes",play,2.8,0 -160883669,"Grand Theft Auto IV",purchase,1.0,0 -160883669,"Grand Theft Auto IV",play,2.1,0 -160883669,"Titan Quest Immortal Throne",purchase,1.0,0 -160883669,"Titan Quest Immortal Throne",play,1.9,0 -160883669,"Dead Island Riptide",purchase,1.0,0 -160883669,"Dead Island Riptide",play,1.7,0 -160883669,"Arma 2",purchase,1.0,0 -160883669,"Arma 2",play,1.3,0 -160883669,"Arma 2 Operation Arrowhead",purchase,1.0,0 -160883669,"Arma 2 Operation Arrowhead",play,1.1,0 -160883669,"TUG",purchase,1.0,0 -160883669,"TUG",play,0.6,0 -160883669,"Counter-Strike Condition Zero",purchase,1.0,0 -160883669,"Counter-Strike Condition Zero",play,0.1,0 -160883669,"Arma 2 DayZ Mod",purchase,1.0,0 -160883669,"Arma 2 DayZ Mod",play,0.1,0 -160883669,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -160883669,"Borderlands 2",purchase,1.0,0 -160883669,"Dead Island Epidemic",purchase,1.0,0 -160883669,"Defy Gravity",purchase,1.0,0 -160883669,"Free to Play",purchase,1.0,0 -160883669,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -160883669,"Titan Quest",purchase,1.0,0 -160883669,"Unturned",purchase,1.0,0 -160883669,"Warframe",purchase,1.0,0 -243967067,"America's Army Proving Grounds",purchase,1.0,0 -243967067,"America's Army Proving Grounds",play,0.2,0 -8865447,"The Last Remnant",purchase,1.0,0 -8865447,"The Last Remnant",play,4.6,0 -8865447,"Dota 2",purchase,1.0,0 -8865447,"Dota 2",play,1.3,0 -8865447,"Counter-Strike Source",purchase,1.0,0 -8865447,"Counter-Strike Source",play,1.0,0 -8865447,"Half-Life 2",purchase,1.0,0 -8865447,"Half-Life 2 Deathmatch",purchase,1.0,0 -8865447,"Half-Life 2 Lost Coast",purchase,1.0,0 -8865447,"Half-Life Source",purchase,1.0,0 -8865447,"Half-Life Deathmatch Source",purchase,1.0,0 -2039434,"Team Fortress 2",purchase,1.0,0 -2039434,"Team Fortress 2",play,69.0,0 -2039434,"Synergy",purchase,1.0,0 -2039434,"Synergy",play,9.1,0 -2039434,"Half-Life 2 Deathmatch",purchase,1.0,0 -2039434,"Half-Life 2 Deathmatch",play,1.2,0 -2039434,"Counter-Strike",purchase,1.0,0 -2039434,"Half-Life",purchase,1.0,0 -2039434,"Day of Defeat",purchase,1.0,0 -2039434,"Deathmatch Classic",purchase,1.0,0 -2039434,"Half-Life 2",purchase,1.0,0 -2039434,"Half-Life 2 Episode One",purchase,1.0,0 -2039434,"Half-Life 2 Episode Two",purchase,1.0,0 -2039434,"Half-Life 2 Lost Coast",purchase,1.0,0 -2039434,"Half-Life Blue Shift",purchase,1.0,0 -2039434,"Half-Life Opposing Force",purchase,1.0,0 -2039434,"Portal",purchase,1.0,0 -2039434,"Ricochet",purchase,1.0,0 -2039434,"Team Fortress Classic",purchase,1.0,0 -55502052,"Call of Duty Black Ops",purchase,1.0,0 -55502052,"Call of Duty Black Ops",play,36.0,0 -55502052,"Sniper Ghost Warrior",purchase,1.0,0 -55502052,"Sniper Ghost Warrior",play,26.0,0 -55502052,"Call of Duty Modern Warfare 2",purchase,1.0,0 -55502052,"Call of Duty Modern Warfare 2",play,25.0,0 -55502052,"Call of Duty Modern Warfare 3",purchase,1.0,0 -55502052,"Call of Duty Modern Warfare 3",play,12.2,0 -55502052,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -55502052,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.7,0 -55502052,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -55502052,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -233730505,"Dota 2",purchase,1.0,0 -233730505,"Dota 2",play,3.0,0 -206908028,"Clicker Heroes",purchase,1.0,0 -206908028,"Clicker Heroes",play,657.0,0 -206908028,"Counter-Strike Global Offensive",purchase,1.0,0 -206908028,"Counter-Strike Global Offensive",play,346.0,0 -206908028,"Mount & Blade Warband",purchase,1.0,0 -206908028,"Mount & Blade Warband",play,24.0,0 -206908028,"Grand Theft Auto IV",purchase,1.0,0 -206908028,"Grand Theft Auto IV",play,17.3,0 -206908028,"Counter-Strike",purchase,1.0,0 -206908028,"Counter-Strike",play,11.2,0 -206908028,"Far Cry 3",purchase,1.0,0 -206908028,"Far Cry 3",play,9.2,0 -206908028,"Shift 2 Unleashed",purchase,1.0,0 -206908028,"Shift 2 Unleashed",play,2.8,0 -206908028,"Call of Duty Modern Warfare 2",purchase,1.0,0 -206908028,"Call of Duty Modern Warfare 2",play,1.0,0 -206908028,"Thief",purchase,1.0,0 -206908028,"Thief",play,0.9,0 -206908028,"Mafia II",purchase,1.0,0 -206908028,"Mafia II",play,0.3,0 -206908028,"Racer 8",purchase,1.0,0 -206908028,"Call of Duty Modern Warfare 3",purchase,1.0,0 -206908028,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -206908028,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -206908028,"Chaos Domain",purchase,1.0,0 -206908028,"Counter-Strike Condition Zero",purchase,1.0,0 -206908028,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -206908028,"Day of Defeat",purchase,1.0,0 -206908028,"Deadbreed",purchase,1.0,0 -206908028,"Deathmatch Classic",purchase,1.0,0 -206908028,"Mortal Kombat Legacy II - Ep. 1 Reunited in Macau",purchase,1.0,0 -206908028,"Mortal Kombat Legacy II - Ep. 2 The Fall of Liu Kang",purchase,1.0,0 -206908028,"Mortal Kombat Legacy II - Ep. 3 Kenshi's Origin",purchase,1.0,0 -206908028,"Mortal Kombat Legacy II - Ep. 4 Kenshi Encounters Ermac",purchase,1.0,0 -206908028,"Mortal Kombat Legacy II - Ep. 5 Kitana and Mileena",purchase,1.0,0 -206908028,"Mortal Kombat Legacy II - Ep. 6 Johnny Cage",purchase,1.0,0 -206908028,"Mortal Kombat Legacy II - Ep. 7 Scorpion and Sub-Zero (Part 1)",purchase,1.0,0 -206908028,"Mortal Kombat Legacy II - Ep. 8 Scorpion and Sub-Zero (Part 2)",purchase,1.0,0 -206908028,"Mortal Kombat Legacy II - Ep. 9 Liu Kang",purchase,1.0,0 -206908028,"Mortal Kombat Legacy II - Ep. 10 Liu Kang and Kung Lao",purchase,1.0,0 -206908028,"Ricochet",purchase,1.0,0 -198311110,"Dota 2",purchase,1.0,0 -198311110,"Dota 2",play,5.7,0 -283079860,"Dota 2",purchase,1.0,0 -283079860,"Dota 2",play,2.1,0 -149860301,"Team Fortress 2",purchase,1.0,0 -149860301,"Team Fortress 2",play,0.7,0 -130312302,"Counter-Strike Global Offensive",purchase,1.0,0 -130312302,"Counter-Strike Global Offensive",play,107.0,0 -130312302,"Just Cause 2",purchase,1.0,0 -130312302,"Just Cause 2",play,52.0,0 -130312302,"The Elder Scrolls V Skyrim",purchase,1.0,0 -130312302,"The Elder Scrolls V Skyrim",play,37.0,0 -130312302,"Dishonored",purchase,1.0,0 -130312302,"Dishonored",play,33.0,0 -130312302,"Far Cry 3",purchase,1.0,0 -130312302,"Far Cry 3",play,27.0,0 -130312302,"Wolfenstein The New Order",purchase,1.0,0 -130312302,"Wolfenstein The New Order",play,24.0,0 -130312302,"Batman Arkham City GOTY",purchase,1.0,0 -130312302,"Batman Arkham City GOTY",play,21.0,0 -130312302,"Portal 2",purchase,1.0,0 -130312302,"Portal 2",play,19.5,0 -130312302,"Arma 2 Operation Arrowhead",purchase,1.0,0 -130312302,"Arma 2 Operation Arrowhead",play,19.4,0 -130312302,"Middle-earth Shadow of Mordor",purchase,1.0,0 -130312302,"Middle-earth Shadow of Mordor",play,18.0,0 -130312302,"Batman Arkham Origins",purchase,1.0,0 -130312302,"Batman Arkham Origins",play,13.8,0 -130312302,"Metro Last Light",purchase,1.0,0 -130312302,"Metro Last Light",play,13.6,0 -130312302,"BioShock Infinite",purchase,1.0,0 -130312302,"BioShock Infinite",play,13.1,0 -130312302,"Crysis 2 Maximum Edition",purchase,1.0,0 -130312302,"Crysis 2 Maximum Edition",play,13.1,0 -130312302,"Sniper Elite 3",purchase,1.0,0 -130312302,"Sniper Elite 3",play,11.5,0 -130312302,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -130312302,"Deus Ex Human Revolution - Director's Cut",play,10.1,0 -130312302,"Operation Flashpoint Red River",purchase,1.0,0 -130312302,"Operation Flashpoint Red River",play,9.3,0 -130312302,"Far Cry 3 Blood Dragon",purchase,1.0,0 -130312302,"Far Cry 3 Blood Dragon",play,7.6,0 -130312302,"Team Fortress 2",purchase,1.0,0 -130312302,"Team Fortress 2",play,7.4,0 -130312302,"Thomas Was Alone",purchase,1.0,0 -130312302,"Thomas Was Alone",play,7.2,0 -130312302,"Dota 2",purchase,1.0,0 -130312302,"Dota 2",play,7.2,0 -130312302,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -130312302,"Burnout Paradise The Ultimate Box",play,6.8,0 -130312302,"Spec Ops The Line",purchase,1.0,0 -130312302,"Spec Ops The Line",play,5.9,0 -130312302,"Mark of the Ninja",purchase,1.0,0 -130312302,"Mark of the Ninja",play,5.7,0 -130312302,"To the Moon",purchase,1.0,0 -130312302,"To the Moon",play,5.1,0 -130312302,"Crysis",purchase,1.0,0 -130312302,"Crysis",play,5.0,0 -130312302,"Sid Meier's Civilization V",purchase,1.0,0 -130312302,"Sid Meier's Civilization V",play,4.8,0 -130312302,"Metro 2033 Redux",purchase,1.0,0 -130312302,"Metro 2033 Redux",play,4.5,0 -130312302,"Transistor",purchase,1.0,0 -130312302,"Transistor",play,4.3,0 -130312302,"LIMBO",purchase,1.0,0 -130312302,"LIMBO",play,4.3,0 -130312302,"Insurgency",purchase,1.0,0 -130312302,"Insurgency",play,3.5,0 -130312302,"DayZ",purchase,1.0,0 -130312302,"DayZ",play,3.1,0 -130312302,"LEGO MARVEL Super Heroes",purchase,1.0,0 -130312302,"LEGO MARVEL Super Heroes",play,2.7,0 -130312302,"Sniper Elite V2",purchase,1.0,0 -130312302,"Sniper Elite V2",play,2.1,0 -130312302,"Garry's Mod",purchase,1.0,0 -130312302,"Garry's Mod",play,1.9,0 -130312302,"PlanetSide 2",purchase,1.0,0 -130312302,"PlanetSide 2",play,1.6,0 -130312302,"The Swapper",purchase,1.0,0 -130312302,"The Swapper",play,1.6,0 -130312302,"Metro 2033",purchase,1.0,0 -130312302,"Metro 2033",play,1.5,0 -130312302,"Strike Suit Zero",purchase,1.0,0 -130312302,"Strike Suit Zero",play,1.4,0 -130312302,"BioShock",purchase,1.0,0 -130312302,"BioShock",play,1.3,0 -130312302,"Medal of Honor Airborne",purchase,1.0,0 -130312302,"Medal of Honor Airborne",play,1.2,0 -130312302,"140",purchase,1.0,0 -130312302,"140",play,1.2,0 -130312302,"DiRT 3 Complete Edition",purchase,1.0,0 -130312302,"DiRT 3 Complete Edition",play,1.2,0 -130312302,"Reus",purchase,1.0,0 -130312302,"Reus",play,1.1,0 -130312302,"Antichamber",purchase,1.0,0 -130312302,"Antichamber",play,1.0,0 -130312302,"Arma 2",purchase,1.0,0 -130312302,"Arma 2",play,0.9,0 -130312302,"FORCED",purchase,1.0,0 -130312302,"FORCED",play,0.8,0 -130312302,"Arma 2 DayZ Mod",purchase,1.0,0 -130312302,"Arma 2 DayZ Mod",play,0.8,0 -130312302,"Super Meat Boy",purchase,1.0,0 -130312302,"Super Meat Boy",play,0.7,0 -130312302,"Papers, Please",purchase,1.0,0 -130312302,"Papers, Please",play,0.7,0 -130312302,"Company of Heroes (New Steam Version)",purchase,1.0,0 -130312302,"Company of Heroes (New Steam Version)",play,0.4,0 -130312302,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -130312302,"Just Cause 2 Multiplayer Mod",play,0.4,0 -130312302,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -130312302,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",play,0.2,0 -130312302,"Papo & Yo",purchase,1.0,0 -130312302,"Papo & Yo",play,0.2,0 -130312302,"Joe Danger 2 The Movie",purchase,1.0,0 -130312302,"Joe Danger 2 The Movie",play,0.2,0 -130312302,"Company of Heroes",purchase,1.0,0 -130312302,"Loadout",purchase,1.0,0 -130312302,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -130312302,"Rise of the Argonauts",purchase,1.0,0 -130312302,"Company of Heroes Opposing Fronts",purchase,1.0,0 -130312302,"Company of Heroes Tales of Valor",purchase,1.0,0 -130312302,"Crysis Warhead",purchase,1.0,0 -130312302,"Crysis Wars",purchase,1.0,0 -130312302,"DiRT 3",purchase,1.0,0 -130312302,"DiRT Showdown",purchase,1.0,0 -130312302,"Dirty Bomb",purchase,1.0,0 -130312302,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -130312302,"HOARD",purchase,1.0,0 -130312302,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -130312302,"Overlord",purchase,1.0,0 -130312302,"Overlord Raising Hell",purchase,1.0,0 -130312302,"Overlord II",purchase,1.0,0 -130312302,"Quake Live",purchase,1.0,0 -130312302,"Sid Meier's Ace Patrol",purchase,1.0,0 -130312302,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -130312302,"Sid Meier's Civilization III Complete",purchase,1.0,0 -130312302,"Sid Meier's Civilization IV",purchase,1.0,0 -130312302,"Sid Meier's Civilization IV",purchase,1.0,0 -130312302,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -130312302,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -130312302,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -130312302,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -130312302,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -130312302,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -130312302,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -130312302,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -130312302,"Sid Meier's Pirates!",purchase,1.0,0 -130312302,"Sid Meier's Railroads!",purchase,1.0,0 -130312302,"Super Hexagon",purchase,1.0,0 -130312302,"Surgeon Simulator",purchase,1.0,0 -130312302,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -130312302,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -130312302,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -130312302,"Toki Tori 2+",purchase,1.0,0 -75938972,"Football Manager 2010",purchase,1.0,0 -75938972,"Football Manager 2010",play,4.7,0 -288863634,"UberStrike",purchase,1.0,0 -288863634,"UberStrike",play,3.6,0 -288863634,"Metro Conflict",purchase,1.0,0 -186697335,"Unturned",purchase,1.0,0 -186697335,"Unturned",play,6.6,0 -274693664,"Team Fortress 2",purchase,1.0,0 -274693664,"Team Fortress 2",play,7.0,0 -132366413,"Escape",purchase,1.0,0 -217751926,"Counter-Strike Global Offensive",purchase,1.0,0 -217751926,"Counter-Strike Global Offensive",play,710.0,0 -217751926,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -217751926,"Trove",purchase,1.0,0 -253205489,"Besiege",purchase,1.0,0 -253205489,"Besiege",play,26.0,0 -253205489,"Poly Bridge",purchase,1.0,0 -253205489,"Poly Bridge",play,11.4,0 -253205489,"Robocraft",purchase,1.0,0 -253205489,"Robocraft",play,4.5,0 -253205489,"Team Fortress 2",purchase,1.0,0 -253205489,"Team Fortress 2",play,4.2,0 -253205489,"Aftermath",purchase,1.0,0 -143157943,"Counter-Strike",purchase,1.0,0 -143157943,"Counter-Strike",play,235.0,0 -143157943,"Counter-Strike Global Offensive",purchase,1.0,0 -143157943,"Counter-Strike Global Offensive",play,68.0,0 -143157943,"Dota 2",purchase,1.0,0 -143157943,"Dota 2",play,2.0,0 -143157943,"Counter-Strike Condition Zero",purchase,1.0,0 -143157943,"Counter-Strike Condition Zero",play,0.2,0 -143157943,"APB Reloaded",purchase,1.0,0 -143157943,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -143157943,"Counter-Strike Nexon Zombies",purchase,1.0,0 -143157943,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -143157943,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -143157943,"Robocraft",purchase,1.0,0 -143157943,"Zombies Monsters Robots",purchase,1.0,0 -229950378,"Counter-Strike Nexon Zombies",purchase,1.0,0 -178008203,"Dota 2",purchase,1.0,0 -178008203,"Dota 2",play,0.7,0 -54894744,"Football Manager 2010",purchase,1.0,0 -54894744,"Football Manager 2010",play,8.4,0 -24444528,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -24444528,"Red Orchestra Ostfront 41-45",play,0.8,0 -24444528,"Darkest Hour Europe '44-'45",purchase,1.0,0 -24444528,"Mare Nostrum",purchase,1.0,0 -157692363,"Dota 2",purchase,1.0,0 -157692363,"Dota 2",play,617.0,0 -157692363,"The Expendabros",purchase,1.0,0 -157692363,"The Expendabros",play,5.3,0 -157692363,"Portal",purchase,1.0,0 -157692363,"Robocraft",purchase,1.0,0 -157692363,"The Mighty Quest For Epic Loot",purchase,1.0,0 -274843696,"Dota 2",purchase,1.0,0 -274843696,"Dota 2",play,56.0,0 -179819524,"Dota 2",purchase,1.0,0 -179819524,"Dota 2",play,34.0,0 -215458951,"Dota 2",purchase,1.0,0 -215458951,"Dota 2",play,1.2,0 -308925147,"Pool Nation FX",purchase,1.0,0 -119361334,"Total War SHOGUN 2",purchase,1.0,0 -119361334,"Total War SHOGUN 2",play,141.0,0 -119361334,"King Arthur II - The Role-playing Wargame",purchase,1.0,0 -119361334,"King Arthur II - The Role-playing Wargame",play,2.4,0 -119361334,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -302555311,"Dota 2",purchase,1.0,0 -302555311,"Dota 2",play,127.0,0 -61753631,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -61753631,"Call of Duty Modern Warfare 2 - Multiplayer",play,1118.0,0 -61753631,"Call of Duty Modern Warfare 2",purchase,1.0,0 -61753631,"Call of Duty Modern Warfare 2",play,2.3,0 -46276248,"NBA 2K9",purchase,1.0,0 -46276248,"NBA 2K9",play,6.7,0 -139573198,"Pillars of Eternity",purchase,1.0,0 -139573198,"Pillars of Eternity",play,1.4,0 -42849279,"Football Manager 2011",purchase,1.0,0 -42849279,"Football Manager 2011",play,2116.0,0 -42849279,"Football Manager 2010",purchase,1.0,0 -42849279,"Football Manager 2010",play,1783.0,0 -42849279,"Football Manager 2014",purchase,1.0,0 -42849279,"Football Manager 2014",play,1076.0,0 -42849279,"Football Manager 2013",purchase,1.0,0 -42849279,"Football Manager 2013",play,848.0,0 -42849279,"Football Manager 2012",purchase,1.0,0 -42849279,"Football Manager 2012",play,739.0,0 -42849279,"Football Manager 2009",purchase,1.0,0 -42849279,"Football Manager 2009",play,175.0,0 -42849279,"Left 4 Dead",purchase,1.0,0 -42849279,"Left 4 Dead",play,22.0,0 -42849279,"Age of Empires III Complete Collection",purchase,1.0,0 -42849279,"Age of Empires III Complete Collection",play,7.0,0 -42849279,"Team Fortress 2",purchase,1.0,0 -42849279,"Team Fortress 2",play,0.2,0 -42849279,"APB Reloaded",purchase,1.0,0 -42849279,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -128784125,"Team Fortress 2",purchase,1.0,0 -128784125,"Team Fortress 2",play,0.5,0 -154245235,"Dota 2",purchase,1.0,0 -154245235,"Dota 2",play,0.1,0 -124785503,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -124785503,"Call of Duty Modern Warfare 2 - Multiplayer",play,1.0,0 -124785503,"Call of Duty Modern Warfare 2",purchase,1.0,0 -66438889,"Battle Academy",purchase,1.0,0 -66438889,"Battle Academy",play,14.6,0 -66438889,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -66438889,"Sid Meier's Ace Patrol Pacific Skies",play,8.5,0 -66438889,"To End All Wars",purchase,1.0,0 -66438889,"To End All Wars",play,4.8,0 -66438889,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -66438889,"Red Orchestra Ostfront 41-45",play,3.1,0 -66438889,"Close Combat - Gateway to Caen",purchase,1.0,0 -66438889,"Close Combat - Gateway to Caen",play,1.0,0 -66438889,"Papers, Please",purchase,1.0,0 -66438889,"Papers, Please",play,0.6,0 -66438889,"Darkest Hour Europe '44-'45",purchase,1.0,0 -66438889,"Darkest Hour Europe '44-'45",play,0.4,0 -66438889,"March of the Eagles",purchase,1.0,0 -66438889,"March of the Eagles",play,0.4,0 -66438889,"Battle Academy 2 Eastern Front",purchase,1.0,0 -66438889,"Battle Academy 2 Eastern Front",play,0.1,0 -66438889,"Victory At Sea",purchase,1.0,0 -66438889,"Victory At Sea",play,0.1,0 -66438889,"Mare Nostrum",purchase,1.0,0 -66438889,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -73319987,"Sid Meier's Civilization V",purchase,1.0,0 -73319987,"Sid Meier's Civilization V",play,18.5,0 -294560519,"Batman Arkham Knight",purchase,1.0,0 -294560519,"Batman Arkham Knight",play,1.0,0 -294560519,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -294560519,"Batman Arkham City GOTY",purchase,1.0,0 -294560519,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -294560519,"Batman Arkham Origins - Initiation",purchase,1.0,0 -294560519,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -294560519,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -294560519,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -294560519,"Batman Arkham Origins",purchase,1.0,0 -294560519,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -176882096,"Dota 2",purchase,1.0,0 -176882096,"Dota 2",play,0.5,0 -191365887,"Dota 2",purchase,1.0,0 -191365887,"Dota 2",play,3.0,0 -191365887,"Serious Sam HD The Second Encounter",purchase,1.0,0 -191365887,"Serious Sam HD The Second Encounter",play,1.4,0 -191365887,"Team Fortress 2",purchase,1.0,0 -191365887,"Team Fortress 2",play,0.3,0 -191365887,"APB Reloaded",purchase,1.0,0 -191365887,"Fistful of Frags",purchase,1.0,0 -191365887,"Free to Play",purchase,1.0,0 -191365887,"Gotham City Impostors Free To Play",purchase,1.0,0 -191365887,"HAWKEN",purchase,1.0,0 -191365887,"Heroes & Generals",purchase,1.0,0 -191365887,"Magicka Wizard Wars",purchase,1.0,0 -191365887,"No More Room in Hell",purchase,1.0,0 -191365887,"Panzar",purchase,1.0,0 -191365887,"PlanetSide 2",purchase,1.0,0 -191365887,"Robocraft",purchase,1.0,0 -191365887,"Smashmuck Champions",purchase,1.0,0 -191365887,"Tactical Intervention",purchase,1.0,0 -191365887,"The Mighty Quest For Epic Loot",purchase,1.0,0 -191365887,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -191365887,"Toribash",purchase,1.0,0 -191365887,"Unturned",purchase,1.0,0 -191365887,"Warface",purchase,1.0,0 -191365887,"Warframe",purchase,1.0,0 -191365887,"War of the Roses",purchase,1.0,0 -191365887,"War Thunder",purchase,1.0,0 -191365887,"World of Guns Gun Disassembly",purchase,1.0,0 -33866564,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -33866564,"Red Orchestra Ostfront 41-45",play,1.6,0 -33866564,"Darkest Hour Europe '44-'45",purchase,1.0,0 -33866564,"Mare Nostrum",purchase,1.0,0 -43093291,"Football Manager 2009",purchase,1.0,0 -168057618,"Dota 2",purchase,1.0,0 -168057618,"Dota 2",play,3.1,0 -259554515,"AdVenture Capitalist",purchase,1.0,0 -259554515,"AdVenture Capitalist",play,0.5,0 -259554515,"Crossfire Europe",purchase,1.0,0 -259554515,"Crossfire Europe",play,0.3,0 -109655092,"Dota 2",purchase,1.0,0 -109655092,"Dota 2",play,31.0,0 -159835268,"Dota 2",purchase,1.0,0 -159835268,"Dota 2",play,200.0,0 -50255774,"Assassin's Creed",purchase,1.0,0 -50255774,"Assassin's Creed",play,7.6,0 -50255774,"Portal",purchase,1.0,0 -232678951,"Counter-Strike Nexon Zombies",purchase,1.0,0 -232678951,"Counter-Strike Nexon Zombies",play,1.5,0 -232678951,"Heroes & Generals",purchase,1.0,0 -232678951,"Heroes & Generals",play,0.2,0 -99329811,"Team Fortress 2",purchase,1.0,0 -99329811,"Team Fortress 2",play,0.4,0 -172145195,"Counter-Strike Global Offensive",purchase,1.0,0 -172145195,"Counter-Strike Global Offensive",play,91.0,0 -172145195,"Garry's Mod",purchase,1.0,0 -172145195,"Garry's Mod",play,2.2,0 -172145195,"Team Fortress 2",purchase,1.0,0 -172145195,"Team Fortress 2",play,0.6,0 -172145195,"Loadout",purchase,1.0,0 -172145195,"No More Room in Hell",purchase,1.0,0 -172145195,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -172145195,"Unturned",purchase,1.0,0 -81196525,"Dota 2",purchase,1.0,0 -81196525,"Dota 2",play,1079.0,0 -152175390,"Fable - The Lost Chapters",purchase,1.0,0 -152175390,"Fable - The Lost Chapters",play,23.0,0 -152175390,"Vindictus",purchase,1.0,0 -152175390,"Vindictus",play,2.4,0 -152175390,"Dead Island",purchase,1.0,0 -152175390,"Dead Island",play,0.3,0 -152175390,"Dark Void",purchase,1.0,0 -295504656,"Dota 2",purchase,1.0,0 -295504656,"Dota 2",play,12.8,0 -160299889,"Robocraft",purchase,1.0,0 -160299889,"Robocraft",play,87.0,0 -160299889,"Rust",purchase,1.0,0 -160299889,"Rust",play,72.0,0 -160299889,"Supreme Commander Forged Alliance",purchase,1.0,0 -160299889,"Supreme Commander Forged Alliance",play,50.0,0 -160299889,"Sid Meier's Civilization V",purchase,1.0,0 -160299889,"Sid Meier's Civilization V",play,49.0,0 -160299889,"Star Conflict",purchase,1.0,0 -160299889,"Star Conflict",play,47.0,0 -160299889,"Borderlands 2",purchase,1.0,0 -160299889,"Borderlands 2",play,44.0,0 -160299889,"The Elder Scrolls V Skyrim",purchase,1.0,0 -160299889,"The Elder Scrolls V Skyrim",play,38.0,0 -160299889,"Portal 2",purchase,1.0,0 -160299889,"Portal 2",play,10.6,0 -160299889,"Orcs Must Die! 2",purchase,1.0,0 -160299889,"Orcs Must Die! 2",play,9.9,0 -160299889,"Lost Planet 2",purchase,1.0,0 -160299889,"Lost Planet 2",play,7.0,0 -160299889,"Trine 2",purchase,1.0,0 -160299889,"Trine 2",play,6.3,0 -160299889,"Serious Sam 3 BFE",purchase,1.0,0 -160299889,"Serious Sam 3 BFE",play,2.9,0 -160299889,"Dead Island Epidemic",purchase,1.0,0 -160299889,"Dead Island Epidemic",play,2.2,0 -160299889,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -160299889,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.9,0 -160299889,"Interplanetary",purchase,1.0,0 -160299889,"Interplanetary",play,0.5,0 -160299889,"Homeworld Remastered Collection",purchase,1.0,0 -160299889,"Homeworld Remastered Collection",play,0.5,0 -160299889,"Serious Sam 2",purchase,1.0,0 -160299889,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -160299889,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -160299889,"Supreme Commander",purchase,1.0,0 -160299889,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -160299889,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -160299889,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -225978911,"Dota 2",purchase,1.0,0 -225978911,"Dota 2",play,1.7,0 -188233566,"Arma 2 Operation Arrowhead",purchase,1.0,0 -188233566,"Arma 2 Operation Arrowhead",play,78.0,0 -188233566,"War Thunder",purchase,1.0,0 -188233566,"War Thunder",play,29.0,0 -188233566,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -188233566,"Heroes & Generals",purchase,1.0,0 -125552489,"Team Fortress 2",purchase,1.0,0 -125552489,"Team Fortress 2",play,0.2,0 -239433762,"Dragons and Titans",purchase,1.0,0 -239433762,"Dragons and Titans",play,9.4,0 -212811599,"Team Fortress 2",purchase,1.0,0 -212811599,"Team Fortress 2",play,2.2,0 -213241329,"Dota 2",purchase,1.0,0 -213241329,"Dota 2",play,202.0,0 -213241329,"Archeblade",purchase,1.0,0 -213241329,"David.",purchase,1.0,0 -213241329,"Free to Play",purchase,1.0,0 -213241329,"Quake Live",purchase,1.0,0 -213241329,"War Thunder",purchase,1.0,0 -213241329,"World of Guns Gun Disassembly",purchase,1.0,0 -213241329,"You Have to Win the Game",purchase,1.0,0 -195999024,"Team Fortress 2",purchase,1.0,0 -195999024,"Team Fortress 2",play,1.3,0 -96232797,"Team Fortress 2",purchase,1.0,0 -96232797,"Team Fortress 2",play,4.3,0 -23333992,"Counter-Strike Source",purchase,1.0,0 -23333992,"Counter-Strike Source",play,0.2,0 -23333992,"Day of Defeat Source",purchase,1.0,0 -23333992,"Half-Life 2 Deathmatch",purchase,1.0,0 -23333992,"Half-Life 2 Lost Coast",purchase,1.0,0 -71680081,"Call of Duty Modern Warfare 2",purchase,1.0,0 -71680081,"Call of Duty Modern Warfare 2",play,92.0,0 -71680081,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -71680081,"Call of Duty Modern Warfare 2 - Multiplayer",play,1.0,0 -284680706,"Dota 2",purchase,1.0,0 -284680706,"Dota 2",play,360.0,0 -284680706,"Audition Online",purchase,1.0,0 -284680706,"Blacklight Retribution",purchase,1.0,0 -284680706,"Firefall",purchase,1.0,0 -284680706,"FreeStyle2 Street Basketball",purchase,1.0,0 -284680706,"HAWKEN",purchase,1.0,0 -284680706,"Heroes & Generals",purchase,1.0,0 -284680706,"Neverwinter",purchase,1.0,0 -284680706,"PlanetSide 2",purchase,1.0,0 -284680706,"RIFT",purchase,1.0,0 -284680706,"ROSE Online",purchase,1.0,0 -284680706,"TERA",purchase,1.0,0 -284680706,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -284680706,"Trove",purchase,1.0,0 -284680706,"Warframe",purchase,1.0,0 -40289887,"Half-Life 2",purchase,1.0,0 -40289887,"Half-Life 2",play,40.0,0 -40289887,"Half-Life 2 Episode Two",purchase,1.0,0 -40289887,"Half-Life 2 Episode Two",play,13.4,0 -40289887,"Portal",purchase,1.0,0 -40289887,"Portal",play,9.1,0 -40289887,"Half-Life 2 Episode One",purchase,1.0,0 -40289887,"Half-Life 2 Episode One",play,7.7,0 -40289887,"Counter-Strike Source",purchase,1.0,0 -40289887,"Counter-Strike Source",play,6.3,0 -40289887,"Half-Life 2 Lost Coast",purchase,1.0,0 -40289887,"Half-Life 2 Lost Coast",play,1.3,0 -40289887,"Half-Life 2 Deathmatch",purchase,1.0,0 -40289887,"Half-Life 2 Deathmatch",play,0.4,0 -40289887,"Day of Defeat Source",purchase,1.0,0 -40289887,"Day of Defeat Source",play,0.2,0 -97571329,"The Elder Scrolls V Skyrim",purchase,1.0,0 -97571329,"The Elder Scrolls V Skyrim",play,41.0,0 -68325099,"Synergy",purchase,1.0,0 -68325099,"Synergy",play,37.0,0 -68325099,"Half-Life 2",purchase,1.0,0 -68325099,"Half-Life 2",play,35.0,0 -68325099,"Team Fortress 2",purchase,1.0,0 -68325099,"Team Fortress 2",play,23.0,0 -68325099,"Day of Defeat Source",purchase,1.0,0 -68325099,"Day of Defeat Source",play,14.9,0 -68325099,"Half-Life 2 Episode Two",purchase,1.0,0 -68325099,"Half-Life 2 Episode Two",play,12.6,0 -68325099,"Garry's Mod",purchase,1.0,0 -68325099,"Garry's Mod",play,11.9,0 -68325099,"Counter-Strike",purchase,1.0,0 -68325099,"Counter-Strike",play,11.3,0 -68325099,"Half-Life 2 Episode One",purchase,1.0,0 -68325099,"Half-Life 2 Episode One",play,11.2,0 -68325099,"Counter-Strike Condition Zero",purchase,1.0,0 -68325099,"Counter-Strike Condition Zero",play,5.3,0 -68325099,"Left 4 Dead",purchase,1.0,0 -68325099,"Left 4 Dead",play,3.3,0 -68325099,"Portal",purchase,1.0,0 -68325099,"Portal",play,1.9,0 -68325099,"Sniper Elite",purchase,1.0,0 -68325099,"Sniper Elite",play,1.8,0 -68325099,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -68325099,"Red Faction Guerrilla Steam Edition",play,1.5,0 -68325099,"DC Universe Online",purchase,1.0,0 -68325099,"DC Universe Online",play,1.1,0 -68325099,"Half-Life 2 Lost Coast",purchase,1.0,0 -68325099,"Half-Life 2 Lost Coast",play,0.8,0 -68325099,"Zombie Panic Source",purchase,1.0,0 -68325099,"Zombie Panic Source",play,0.5,0 -68325099,"D.I.P.R.I.P. Warm Up",purchase,1.0,0 -68325099,"D.I.P.R.I.P. Warm Up",play,0.3,0 -68325099,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -68325099,"Counter-Strike Condition Zero Deleted Scenes",play,0.2,0 -68325099,"Half-Life 2 Deathmatch",purchase,1.0,0 -68325099,"Half-Life 2 Deathmatch",play,0.1,0 -68325099,"Half-Life Deathmatch Source",purchase,1.0,0 -99171164,"Garry's Mod",purchase,1.0,0 -99171164,"Garry's Mod",play,296.0,0 -99171164,"Rust",purchase,1.0,0 -99171164,"Rust",play,87.0,0 -99171164,"Team Fortress 2",purchase,1.0,0 -99171164,"Team Fortress 2",play,42.0,0 -99171164,"Loadout",purchase,1.0,0 -99171164,"Loadout",play,24.0,0 -99171164,"Mirror's Edge",purchase,1.0,0 -99171164,"Mirror's Edge",play,24.0,0 -99171164,"Dota 2",purchase,1.0,0 -99171164,"Dota 2",play,2.4,0 -99171164,"Next Car Game Wreckfest",purchase,1.0,0 -99171164,"Next Car Game Wreckfest",play,2.0,0 -99171164,"Arma 2 Operation Arrowhead",purchase,1.0,0 -99171164,"Arma 2 Operation Arrowhead",play,1.4,0 -99171164,"DayZ",purchase,1.0,0 -99171164,"DayZ",play,1.4,0 -99171164,"Arma 2",purchase,1.0,0 -99171164,"Arma 2",play,0.9,0 -99171164,"Counter-Strike Source",purchase,1.0,0 -99171164,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -99171164,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -268110072,"Unturned",purchase,1.0,0 -268110072,"Unturned",play,23.0,0 -268110072,"DiggerOnline",purchase,1.0,0 -268110072,"DiggerOnline",play,5.6,0 -268110072,"Dota 2",purchase,1.0,0 -268110072,"Dota 2",play,1.8,0 -268110072,"sZone-Online",purchase,1.0,0 -268110072,"sZone-Online",play,1.8,0 -268110072,"Team Fortress 2",purchase,1.0,0 -268110072,"Team Fortress 2",play,1.2,0 -268110072,"No More Room in Hell",purchase,1.0,0 -268110072,"No More Room in Hell",play,1.0,0 -268110072,"Dead Island Epidemic",purchase,1.0,0 -268110072,"Dead Island Epidemic",play,1.0,0 -268110072,"Block N Load",purchase,1.0,0 -268110072,"Block N Load",play,0.5,0 -268110072,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -268110072,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.4,0 -268110072,"Defiance",purchase,1.0,0 -268110072,"Defiance",play,0.4,0 -268110072,"Survarium",purchase,1.0,0 -268110072,"Survarium",play,0.4,0 -268110072,"Aftermath",purchase,1.0,0 -268110072,"Aftermath",play,0.3,0 -268110072,"Cry of Fear",purchase,1.0,0 -268110072,"Cry of Fear",play,0.3,0 -268110072,"Heroes & Generals",purchase,1.0,0 -268110072,"Heroes & Generals",play,0.2,0 -268110072,"Dirty Bomb",purchase,1.0,0 -268110072,"Dirty Bomb",play,0.1,0 -268110072,"America's Army Proving Grounds",purchase,1.0,0 -268110072,"Back to Dinosaur Island ",purchase,1.0,0 -268110072,"Fallen Earth",purchase,1.0,0 -268110072,"Blender 2.76b",purchase,1.0,0 -268110072,"CrimeCraft GangWars",purchase,1.0,0 -268110072,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -268110072,"Warframe",purchase,1.0,0 -125198998,"Sid Meier's Civilization V",purchase,1.0,0 -125198998,"Sid Meier's Civilization V",play,7.1,0 -35606448,"DC Universe Online",purchase,1.0,0 -35606448,"DC Universe Online",play,2.8,0 -35606448,"Team Fortress 2",purchase,1.0,0 -35606448,"Team Fortress 2",play,1.0,0 -189389925,"Dota 2",purchase,1.0,0 -189389925,"Dota 2",play,2.7,0 -69371602,"Napoleon Total War",purchase,1.0,0 -95059220,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -95059220,"Call of Duty Modern Warfare 3 - Multiplayer",play,543.0,0 -95059220,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -95059220,"Call of Duty Ghosts - Multiplayer",play,23.0,0 -95059220,"Hitman Absolution",purchase,1.0,0 -95059220,"Hitman Absolution",play,15.8,0 -95059220,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -95059220,"Call of Duty Advanced Warfare - Multiplayer",play,12.4,0 -95059220,"Call of Duty Ghosts",purchase,1.0,0 -95059220,"Call of Duty Ghosts",play,8.2,0 -95059220,"Call of Duty Advanced Warfare",purchase,1.0,0 -95059220,"Call of Duty Advanced Warfare",play,8.0,0 -95059220,"Spec Ops The Line",purchase,1.0,0 -95059220,"Spec Ops The Line",play,1.6,0 -95059220,"Alan Wake",purchase,1.0,0 -95059220,"Alan Wake",play,1.0,0 -95059220,"Remember Me",purchase,1.0,0 -95059220,"Remember Me",play,0.8,0 -95059220,"Call of Duty Modern Warfare 3",purchase,1.0,0 -95059220,"Call of Duty Modern Warfare 3",play,0.7,0 -133273541,"Dota 2",purchase,1.0,0 -133273541,"Dota 2",play,1.2,0 -240933441,"Dota 2",purchase,1.0,0 -240933441,"Dota 2",play,1.6,0 -113857311,"Empire Total War",purchase,1.0,0 -256276021,"Team Fortress 2",purchase,1.0,0 -256276021,"Team Fortress 2",play,288.0,0 -256276021,"Spiral Knights",purchase,1.0,0 -256276021,"Trove",purchase,1.0,0 -256276021,"WARMODE",purchase,1.0,0 -35192299,"Day of Defeat",purchase,1.0,0 -35192299,"Day of Defeat",play,256.0,0 -35192299,"Counter-Strike",purchase,1.0,0 -35192299,"Counter-Strike",play,2.2,0 -35192299,"Counter-Strike Condition Zero",purchase,1.0,0 -35192299,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -35192299,"Deathmatch Classic",purchase,1.0,0 -35192299,"Ricochet",purchase,1.0,0 -228919399,"Counter-Strike Global Offensive",purchase,1.0,0 -228919399,"Counter-Strike Global Offensive",play,457.0,0 -228919399,"PAYDAY 2",purchase,1.0,0 -228919399,"PAYDAY 2",play,32.0,0 -228919399,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -228919399,"Counter-Strike Condition Zero Deleted Scenes",play,10.1,0 -228919399,"FreeStyle2 Street Basketball",purchase,1.0,0 -228919399,"FreeStyle2 Street Basketball",play,4.5,0 -228919399,"Left 4 Dead 2",purchase,1.0,0 -228919399,"Left 4 Dead 2",play,2.3,0 -228919399,"Dota 2",purchase,1.0,0 -228919399,"Dota 2",play,2.2,0 -228919399,"Counter-Strike Condition Zero",purchase,1.0,0 -228919399,"Counter-Strike Condition Zero",play,1.6,0 -228919399,"sZone-Online",purchase,1.0,0 -228919399,"sZone-Online",play,0.7,0 -228919399,"Counter-Strike Nexon Zombies",purchase,1.0,0 -228919399,"Counter-Strike Nexon Zombies",play,0.5,0 -228919399,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -228919399,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.2,0 -228919399,"Counter-Strike",purchase,1.0,0 -228919399,"Counter-Strike",play,0.1,0 -228919399,"No More Room in Hell",purchase,1.0,0 -228919399,"Blender 2.76b",purchase,1.0,0 -228919399,"SMITE",purchase,1.0,0 -228919399,"Dead Island Epidemic",purchase,1.0,0 -228919399,"Marvel Heroes 2015",purchase,1.0,0 -287333204,"Rocket League",purchase,1.0,0 -287333204,"Rocket League",play,0.2,0 -113124720,"Marvel Heroes 2015",purchase,1.0,0 -113124720,"Marvel Heroes 2015",play,1082.0,0 -113124720,"Farming Simulator 15",purchase,1.0,0 -113124720,"Farming Simulator 15",play,102.0,0 -113124720,"Euro Truck Simulator 2",purchase,1.0,0 -113124720,"Euro Truck Simulator 2",play,38.0,0 -113124720,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -113124720,"Batman Arkham Asylum GOTY Edition",play,36.0,0 -113124720,"Batman Arkham City GOTY",purchase,1.0,0 -113124720,"Batman Arkham City GOTY",play,35.0,0 -113124720,"Rust",purchase,1.0,0 -113124720,"Rust",play,31.0,0 -113124720,"Unturned",purchase,1.0,0 -113124720,"Unturned",play,3.6,0 -113124720,"Hospital Tycoon",purchase,1.0,0 -113124720,"Hospital Tycoon",play,2.9,0 -113124720,"Sleeping Dogs",purchase,1.0,0 -113124720,"Sleeping Dogs",play,2.0,0 -113124720,"Counter-Strike Global Offensive",purchase,1.0,0 -113124720,"Counter-Strike Global Offensive",play,1.9,0 -113124720,"Counter-Strike",purchase,1.0,0 -113124720,"Counter-Strike",play,0.9,0 -113124720,"Hard Truck Apocalypse Rise Of Clans / Ex Machina Meridian 113",purchase,1.0,0 -113124720,"Hard Truck Apocalypse Rise Of Clans / Ex Machina Meridian 113",play,0.7,0 -113124720,"The Walking Dead",purchase,1.0,0 -113124720,"The Walking Dead",play,0.7,0 -113124720,"Mass Effect",purchase,1.0,0 -113124720,"Mass Effect",play,0.6,0 -113124720,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -113124720,"Counter-Strike Condition Zero Deleted Scenes",play,0.5,0 -113124720,"Counter-Strike Condition Zero",purchase,1.0,0 -113124720,"Counter-Strike Condition Zero",play,0.2,0 -113124720,"Lilly and Sasha Curse of the Immortals",purchase,1.0,0 -113124720,"Commander Conquest of the Americas Gold",purchase,1.0,0 -113124720,"Counter-Strike Source",purchase,1.0,0 -113124720,"Dying Light",purchase,1.0,0 -113124720,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -113124720,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -113124720,"Farming Simulator 15 - ITRunner",purchase,1.0,0 -113124720,"Gorky 17",purchase,1.0,0 -113124720,"Mass Effect 2",purchase,1.0,0 -113124720,"VERGELost chapter",purchase,1.0,0 -113124720,"Yet Another Zombie Defense",purchase,1.0,0 -123625432,"Call of Duty World at War",purchase,1.0,0 -123625432,"Call of Duty World at War",play,39.0,0 -123625432,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -123625432,"Call of Duty Modern Warfare 2 - Multiplayer",play,30.0,0 -123625432,"Counter-Strike Global Offensive",purchase,1.0,0 -123625432,"Counter-Strike Global Offensive",play,18.8,0 -123625432,"Garry's Mod",purchase,1.0,0 -123625432,"Garry's Mod",play,12.2,0 -123625432,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -123625432,"Call of Duty Black Ops II - Multiplayer",play,7.7,0 -123625432,"Worms Revolution",purchase,1.0,0 -123625432,"Worms Revolution",play,6.6,0 -123625432,"Killing Floor",purchase,1.0,0 -123625432,"Killing Floor",play,4.0,0 -123625432,"Dota 2",purchase,1.0,0 -123625432,"Dota 2",play,3.5,0 -123625432,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -123625432,"Injustice Gods Among Us Ultimate Edition",play,3.5,0 -123625432,"Infinite Crisis",purchase,1.0,0 -123625432,"Infinite Crisis",play,3.2,0 -123625432,"Mirror's Edge",purchase,1.0,0 -123625432,"Mirror's Edge",play,2.0,0 -123625432,"Sniper Elite Nazi Zombie Army",purchase,1.0,0 -123625432,"Sniper Elite Nazi Zombie Army",play,1.9,0 -123625432,"Worms Clan Wars",purchase,1.0,0 -123625432,"Worms Clan Wars",play,1.9,0 -123625432,"Borderlands 2",purchase,1.0,0 -123625432,"Borderlands 2",play,1.8,0 -123625432,"Call of Duty Modern Warfare 2",purchase,1.0,0 -123625432,"Call of Duty Modern Warfare 2",play,1.4,0 -123625432,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -123625432,"Rising Storm/Red Orchestra 2 Multiplayer",play,1.0,0 -123625432,"Blacklight Retribution",purchase,1.0,0 -123625432,"Blacklight Retribution",play,1.0,0 -123625432,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -123625432,"Burnout Paradise The Ultimate Box",play,0.8,0 -123625432,"Team Fortress 2",purchase,1.0,0 -123625432,"Team Fortress 2",play,0.7,0 -123625432,"Sniper Elite V2",purchase,1.0,0 -123625432,"Sniper Elite V2",play,0.2,0 -123625432,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -123625432,"Medal of Honor(TM) Multiplayer",play,0.2,0 -123625432,"Alan Wake",purchase,1.0,0 -123625432,"Alan Wake",play,0.1,0 -123625432,"Grand Theft Auto IV",purchase,1.0,0 -123625432,"Grand Theft Auto IV",play,0.1,0 -123625432,"Prince of Persia The Sands of Time",purchase,1.0,0 -123625432,"Prince of Persia The Sands of Time",play,0.1,0 -123625432,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -123625432,"Counter-Strike Source",purchase,1.0,0 -123625432,"Prince of Persia",purchase,1.0,0 -123625432,"DisplayFusion",purchase,1.0,0 -123625432,"Alan Wake's American Nightmare",purchase,1.0,0 -123625432,"Call of Duty Black Ops II",purchase,1.0,0 -123625432,"Crysis 2 Maximum Edition",purchase,1.0,0 -123625432,"Darkest Hour Europe '44-'45",purchase,1.0,0 -123625432,"Dead Space",purchase,1.0,0 -123625432,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -123625432,"Mare Nostrum",purchase,1.0,0 -123625432,"Medal of Honor(TM) Single Player",purchase,1.0,0 -123625432,"Medal of Honor Pre-Order",purchase,1.0,0 -123625432,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -123625432,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -37419728,"Counter-Strike",purchase,1.0,0 -37419728,"Counter-Strike Condition Zero",purchase,1.0,0 -37419728,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -37419728,"Day of Defeat",purchase,1.0,0 -37419728,"Deathmatch Classic",purchase,1.0,0 -37419728,"Ricochet",purchase,1.0,0 -177827103,"Dota 2",purchase,1.0,0 -177827103,"Dota 2",play,1253.0,0 -177827103,"The Elder Scrolls V Skyrim",purchase,1.0,0 -177827103,"The Elder Scrolls V Skyrim",play,26.0,0 -177827103,"Euro Truck Simulator 2",purchase,1.0,0 -177827103,"Euro Truck Simulator 2",play,15.5,0 -177827103,"Counter-Strike Source",purchase,1.0,0 -177827103,"Counter-Strike Source",play,13.8,0 -177827103,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -177827103,"Burnout Paradise The Ultimate Box",play,9.7,0 -177827103,"Fable Anniversary",purchase,1.0,0 -177827103,"Fable Anniversary",play,5.0,0 -177827103,"Sid Meier's Civilization V",purchase,1.0,0 -177827103,"Sid Meier's Civilization V",play,3.3,0 -177827103,"Mortal Kombat Komplete Edition",purchase,1.0,0 -177827103,"Mortal Kombat Komplete Edition",play,1.1,0 -177827103,"Portal",purchase,1.0,0 -177827103,"Portal",play,0.9,0 -177827103,"Portal 2",purchase,1.0,0 -177827103,"Portal 2",play,0.4,0 -177827103,"Fable - The Lost Chapters",purchase,1.0,0 -177827103,"Fable - The Lost Chapters",play,0.2,0 -177827103,"Sacred Gold",purchase,1.0,0 -177827103,"Sacred Gold",play,0.1,0 -177827103,"Neverwinter",purchase,1.0,0 -177827103,"Counter-Strike Nexon Zombies",purchase,1.0,0 -177827103,"Rise of Incarnates",purchase,1.0,0 -177827103,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -177827103,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -177827103,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -177827103,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -177827103,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -193304011,"Team Fortress 2",purchase,1.0,0 -193304011,"Team Fortress 2",play,53.0,0 -193304011,"BLOCKADE 3D",purchase,1.0,0 -193304011,"BLOCKADE 3D",play,15.0,0 -193304011,"Unturned",purchase,1.0,0 -193304011,"Unturned",play,0.8,0 -193304011,"Dead Island Epidemic",purchase,1.0,0 -193304011,"Dead Island Epidemic",play,0.4,0 -215844562,"Dota 2",purchase,1.0,0 -215844562,"Dota 2",play,179.0,0 -215844562,"GunZ 2 The Second Duel",purchase,1.0,0 -215844562,"AirMech",purchase,1.0,0 -215844562,"FreeStyle2 Street Basketball",purchase,1.0,0 -215844562,"Heroes & Generals",purchase,1.0,0 -215844562,"Loadout",purchase,1.0,0 -215844562,"Realm of the Mad God",purchase,1.0,0 -215844562,"Spiral Knights",purchase,1.0,0 -215844562,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -90169163,"Team Fortress 2",purchase,1.0,0 -90169163,"Team Fortress 2",play,245.0,0 -194534689,"No More Room in Hell",purchase,1.0,0 -194534689,"No More Room in Hell",play,0.4,0 -287557416,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -287557416,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.5,0 -287557416,"Dota 2",purchase,1.0,0 -287557416,"Dota 2",play,0.2,0 -69849141,"Total War ROME II - Emperor Edition",purchase,1.0,0 -69849141,"Total War ROME II - Emperor Edition",play,541.0,0 -69849141,"The Elder Scrolls V Skyrim",purchase,1.0,0 -69849141,"The Elder Scrolls V Skyrim",play,136.0,0 -69849141,"Mafia II",purchase,1.0,0 -69849141,"Mafia II",play,117.0,0 -69849141,"Napoleon Total War",purchase,1.0,0 -69849141,"Napoleon Total War",play,85.0,0 -69849141,"Wolfenstein The New Order",purchase,1.0,0 -69849141,"Wolfenstein The New Order",play,36.0,0 -69849141,"Total War SHOGUN 2",purchase,1.0,0 -69849141,"Total War SHOGUN 2",play,33.0,0 -69849141,"Empire Total War",purchase,1.0,0 -69849141,"Empire Total War",play,32.0,0 -69849141,"Half-Life 2",purchase,1.0,0 -69849141,"Half-Life 2",play,14.1,0 -69849141,"War of the Roses",purchase,1.0,0 -69849141,"War of the Roses",play,3.0,0 -69849141,"Lara Croft and the Guardian of Light",purchase,1.0,0 -69849141,"Lara Croft and the Guardian of Light",play,1.0,0 -69849141,"Half-Life 2 Episode One",purchase,1.0,0 -69849141,"Half-Life 2 Episode One",play,0.2,0 -69849141,"Portal",purchase,1.0,0 -69849141,"Half-Life 2 Episode Two",purchase,1.0,0 -69849141,"Half-Life 2 Lost Coast",purchase,1.0,0 -69849141,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -69849141,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -69849141,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -298093863,"Dota 2",purchase,1.0,0 -298093863,"Dota 2",play,0.8,0 -163690628,"Dota 2",purchase,1.0,0 -163690628,"Dota 2",play,22.0,0 -112647787,"Dota 2",purchase,1.0,0 -112647787,"Dota 2",play,2609.0,0 -186746583,"Dota 2",purchase,1.0,0 -186746583,"Dota 2",play,1.1,0 -202491399,"Dota 2",purchase,1.0,0 -202491399,"Dota 2",play,2041.0,0 -202491399,"War Thunder",purchase,1.0,0 -202491399,"War Thunder",play,4.4,0 -202491399,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -202491399,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.9,0 -202491399,"Firefall",purchase,1.0,0 -202491399,"Grand Chase",purchase,1.0,0 -202491399,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -280824162,"Dota 2",purchase,1.0,0 -280824162,"Dota 2",play,592.0,0 -280824162,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -280824162,"Anno Online",purchase,1.0,0 -280824162,"APB Reloaded",purchase,1.0,0 -280824162,"Blender 2.76b",purchase,1.0,0 -280824162,"Clicker Heroes",purchase,1.0,0 -280824162,"Mortal Online",purchase,1.0,0 -280824162,"Pinball FX2",purchase,1.0,0 -280824162,"RIFT",purchase,1.0,0 -280824162,"SMITE",purchase,1.0,0 -280824162,"Super Crate Box",purchase,1.0,0 -280824162,"The Lord of the Rings Online",purchase,1.0,0 -280824162,"Villagers and Heroes",purchase,1.0,0 -237603863,"Sid Meier's Civilization V",purchase,1.0,0 -237603863,"Sid Meier's Civilization V",play,9.5,0 -207391878,"Dota 2",purchase,1.0,0 -207391878,"Dota 2",play,0.9,0 -35370794,"Counter-Strike Global Offensive",purchase,1.0,0 -35370794,"Counter-Strike Global Offensive",play,104.0,0 -31733621,"Sid Meier's Civilization V",purchase,1.0,0 -31733621,"Sid Meier's Civilization V",play,213.0,0 -31733621,"Half-Life 2 Episode One",purchase,1.0,0 -31733621,"Half-Life 2 Episode One",play,7.3,0 -31733621,"Half-Life 2 Deathmatch",purchase,1.0,0 -31733621,"Half-Life 2 Lost Coast",purchase,1.0,0 -31733621,"Half-Life Deathmatch Source",purchase,1.0,0 -31733621,"Sid Meier's Ace Patrol",purchase,1.0,0 -31733621,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -31733621,"Sid Meier's Civilization IV",purchase,1.0,0 -31733621,"Sid Meier's Civilization IV",purchase,1.0,0 -31733621,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -31733621,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -31733621,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -31733621,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -31733621,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -31733621,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -31733621,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -177963795,"Team Fortress 2",purchase,1.0,0 -177963795,"Team Fortress 2",play,5.7,0 -177963795,"Champions Online",purchase,1.0,0 -177963795,"Champions Online",play,1.7,0 -177963795,"Napoleon Total War",purchase,1.0,0 -26636189,"Half-Life 2 Episode Two",purchase,1.0,0 -26636189,"Half-Life 2 Episode Two",play,8.3,0 -26636189,"Half-Life 2",purchase,1.0,0 -26636189,"Half-Life 2 Deathmatch",purchase,1.0,0 -26636189,"Half-Life 2 Episode One",purchase,1.0,0 -26636189,"Half-Life 2 Lost Coast",purchase,1.0,0 -26636189,"Half-Life Deathmatch Source",purchase,1.0,0 -26636189,"Portal",purchase,1.0,0 -69828237,"Left 4 Dead 2",purchase,1.0,0 -69828237,"Left 4 Dead 2",play,908.0,0 -69828237,"Borderlands 2 RU",purchase,1.0,0 -69828237,"Borderlands 2 RU",play,502.0,0 -69828237,"Mafia II",purchase,1.0,0 -69828237,"Mafia II",play,144.0,0 -69828237,"Borderlands The Pre-Sequel",purchase,1.0,0 -69828237,"Borderlands The Pre-Sequel",play,121.0,0 -69828237,"Tomb Raider",purchase,1.0,0 -69828237,"Tomb Raider",play,29.0,0 -69828237,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -69828237,"Fallout 3 - Game of the Year Edition",play,14.8,0 -69828237,"Fallout 2",purchase,1.0,0 -69828237,"Fallout 2",play,4.3,0 -69828237,"Fallout",purchase,1.0,0 -69828237,"Fallout",play,2.8,0 -69828237,"Dota 2",purchase,1.0,0 -69828237,"Dota 2",play,0.2,0 -69828237,"Borderlands",purchase,1.0,0 -69828237,"Borderlands 2",purchase,1.0,0 -69828237,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -69828237,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -69828237,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -69828237,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -69828237,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -69828237,"Fallout Tactics",purchase,1.0,0 -44762681,"Counter-Strike",purchase,1.0,0 -44762681,"Counter-Strike",play,0.1,0 -44762681,"Day of Defeat",purchase,1.0,0 -44762681,"Deathmatch Classic",purchase,1.0,0 -44762681,"Half-Life",purchase,1.0,0 -44762681,"Half-Life Blue Shift",purchase,1.0,0 -44762681,"Half-Life Opposing Force",purchase,1.0,0 -44762681,"Ricochet",purchase,1.0,0 -44762681,"Team Fortress Classic",purchase,1.0,0 -207945140,"Unturned",purchase,1.0,0 -207945140,"Unturned",play,18.4,0 -167108328,"Counter-Strike Global Offensive",purchase,1.0,0 -167108328,"Counter-Strike Global Offensive",play,62.0,0 -167108328,"Dota 2",purchase,1.0,0 -167108328,"Dota 2",play,0.4,0 -102343357,"Team Fortress 2",purchase,1.0,0 -102343357,"Team Fortress 2",play,3.2,0 -52781598,"Counter-Strike",purchase,1.0,0 -52781598,"Counter-Strike",play,38.0,0 -52781598,"Counter-Strike Condition Zero",purchase,1.0,0 -52781598,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -52781598,"Day of Defeat",purchase,1.0,0 -52781598,"Deathmatch Classic",purchase,1.0,0 -52781598,"Ricochet",purchase,1.0,0 -302084159,"Unturned",purchase,1.0,0 -152741550,"Grand Theft Auto V",purchase,1.0,0 -152741550,"Grand Theft Auto V",play,29.0,0 -152741550,"Dota 2",purchase,1.0,0 -152741550,"Dota 2",play,1.7,0 -195238292,"Unturned",purchase,1.0,0 -195238292,"Unturned",play,0.5,0 -170313294,"XCOM Enemy Unknown",purchase,1.0,0 -170313294,"XCOM Enemy Unknown",play,15.4,0 -211785658,"Unturned",purchase,1.0,0 -44421638,"Empire Total War",purchase,1.0,0 -44421638,"Empire Total War",play,1.2,0 -44421638,"Half-Life 2",purchase,1.0,0 -44421638,"Half-Life 2",play,0.1,0 -44421638,"Team Fortress 2",purchase,1.0,0 -44421638,"Team Fortress 2",play,0.1,0 -44421638,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -44421638,"Warhammer 40,000 Dawn of War II",play,0.1,0 -44421638,"Half-Life 2 Episode One",purchase,1.0,0 -44421638,"Half-Life 2 Episode Two",purchase,1.0,0 -44421638,"Half-Life 2 Lost Coast",purchase,1.0,0 -44421638,"Portal",purchase,1.0,0 -156071982,"Counter-Strike Global Offensive",purchase,1.0,0 -156071982,"Counter-Strike Global Offensive",play,119.0,0 -156071982,"Garry's Mod",purchase,1.0,0 -156071982,"Garry's Mod",play,101.0,0 -156071982,"Realm of the Mad God",purchase,1.0,0 -156071982,"Realm of the Mad God",play,55.0,0 -156071982,"PAYDAY 2",purchase,1.0,0 -156071982,"PAYDAY 2",play,52.0,0 -156071982,"Left 4 Dead 2",purchase,1.0,0 -156071982,"Left 4 Dead 2",play,49.0,0 -156071982,"Team Fortress 2",purchase,1.0,0 -156071982,"Team Fortress 2",play,39.0,0 -156071982,"Heroes of Scene",purchase,1.0,0 -156071982,"Heroes of Scene",play,26.0,0 -156071982,"Spore",purchase,1.0,0 -156071982,"Spore",play,25.0,0 -156071982,"Castle Crashers",purchase,1.0,0 -156071982,"Castle Crashers",play,25.0,0 -156071982,"Far Cry 3",purchase,1.0,0 -156071982,"Far Cry 3",play,24.0,0 -156071982,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -156071982,"Just Cause 2 Multiplayer Mod",play,21.0,0 -156071982,"Terraria",purchase,1.0,0 -156071982,"Terraria",play,16.9,0 -156071982,"Clicker Heroes",purchase,1.0,0 -156071982,"Clicker Heroes",play,14.3,0 -156071982,"Tactical Intervention",purchase,1.0,0 -156071982,"Tactical Intervention",play,13.6,0 -156071982,"The Walking Dead Season Two",purchase,1.0,0 -156071982,"The Walking Dead Season Two",play,12.9,0 -156071982,"Just Cause 2",purchase,1.0,0 -156071982,"Just Cause 2",play,12.3,0 -156071982,"Surgeon Simulator",purchase,1.0,0 -156071982,"Surgeon Simulator",play,12.0,0 -156071982,"Portal 2",purchase,1.0,0 -156071982,"Portal 2",play,11.7,0 -156071982,"Grand Theft Auto IV",purchase,1.0,0 -156071982,"Grand Theft Auto IV",play,11.1,0 -156071982,"POSTAL 2",purchase,1.0,0 -156071982,"POSTAL 2",play,7.9,0 -156071982,"Unturned",purchase,1.0,0 -156071982,"Unturned",play,6.7,0 -156071982,"Uncrowded",purchase,1.0,0 -156071982,"Uncrowded",play,6.4,0 -156071982,"PixelJunk Shooter",purchase,1.0,0 -156071982,"PixelJunk Shooter",play,5.6,0 -156071982,"Assassin's Creed III",purchase,1.0,0 -156071982,"Assassin's Creed III",play,5.5,0 -156071982,"McPixel",purchase,1.0,0 -156071982,"McPixel",play,5.0,0 -156071982,"Ace of Spades",purchase,1.0,0 -156071982,"Ace of Spades",play,4.9,0 -156071982,"Pixel Piracy",purchase,1.0,0 -156071982,"Pixel Piracy",play,4.2,0 -156071982,"Everlasting Summer",purchase,1.0,0 -156071982,"Everlasting Summer",play,3.5,0 -156071982,"The Slaughtering Grounds",purchase,1.0,0 -156071982,"The Slaughtering Grounds",play,3.2,0 -156071982,"Trove",purchase,1.0,0 -156071982,"Trove",play,3.2,0 -156071982,"Left 4 Dead",purchase,1.0,0 -156071982,"Left 4 Dead",play,3.2,0 -156071982,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -156071982,"Plants vs. Zombies Game of the Year",play,3.1,0 -156071982,"Polarity",purchase,1.0,0 -156071982,"Polarity",play,2.8,0 -156071982,"Monopoly",purchase,1.0,0 -156071982,"Monopoly",play,2.7,0 -156071982,"NotGTAV",purchase,1.0,0 -156071982,"NotGTAV",play,2.6,0 -156071982,"Flesh Eaters",purchase,1.0,0 -156071982,"Flesh Eaters",play,2.4,0 -156071982,"Spooky's House of Jump Scares",purchase,1.0,0 -156071982,"Spooky's House of Jump Scares",play,2.4,0 -156071982,"Five Nights at Freddy's 2",purchase,1.0,0 -156071982,"Five Nights at Freddy's 2",play,2.4,0 -156071982,"Robocraft",purchase,1.0,0 -156071982,"Robocraft",play,2.4,0 -156071982,"The Binding of Isaac",purchase,1.0,0 -156071982,"The Binding of Isaac",play,2.0,0 -156071982,"Source Filmmaker",purchase,1.0,0 -156071982,"Source Filmmaker",play,1.7,0 -156071982,"World of Guns Gun Disassembly",purchase,1.0,0 -156071982,"World of Guns Gun Disassembly",play,1.4,0 -156071982,"7 Days to Die",purchase,1.0,0 -156071982,"7 Days to Die",play,1.0,0 -156071982,"Warface",purchase,1.0,0 -156071982,"Warface",play,0.7,0 -156071982,"Dead Pixels",purchase,1.0,0 -156071982,"Dead Pixels",play,0.4,0 -156071982,"Arma 2",purchase,1.0,0 -156071982,"Arma 2",play,0.4,0 -156071982,"PAC-MAN Championship Edition DX+",purchase,1.0,0 -156071982,"PAC-MAN Championship Edition DX+",play,0.2,0 -156071982,"One Manga Day",purchase,1.0,0 -156071982,"One Manga Day",play,0.2,0 -156071982,"One Way To Die Steam Edition",purchase,1.0,0 -156071982,"One Way To Die Steam Edition",play,0.1,0 -156071982,"Arma 2 DayZ Mod",purchase,1.0,0 -156071982,"Viridi",purchase,1.0,0 -156071982,"Seduce Me the Otome",purchase,1.0,0 -156071982,"Dizzel",purchase,1.0,0 -156071982,"Narcissu 1st & 2nd",purchase,1.0,0 -156071982,"Arma 2 Operation Arrowhead",purchase,1.0,0 -156071982,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -156071982,"SMITE",purchase,1.0,0 -156071982,"Spore Galactic Adventures",purchase,1.0,0 -156071982,"Voices from the Sea",purchase,1.0,0 -181304845,"The Elder Scrolls V Skyrim",purchase,1.0,0 -181304845,"The Elder Scrolls V Skyrim",play,40.0,0 -181304845,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -181304845,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -181304845,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -181304845,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -8100868,"Counter-Strike",purchase,1.0,0 -8100868,"Counter-Strike",play,10.2,0 -8100868,"Day of Defeat",purchase,1.0,0 -8100868,"Deathmatch Classic",purchase,1.0,0 -8100868,"Half-Life",purchase,1.0,0 -8100868,"Half-Life Blue Shift",purchase,1.0,0 -8100868,"Half-Life Opposing Force",purchase,1.0,0 -8100868,"Ricochet",purchase,1.0,0 -8100868,"Team Fortress Classic",purchase,1.0,0 -159277759,"Garry's Mod",purchase,1.0,0 -159277759,"Garry's Mod",play,41.0,0 -159277759,"Star Trek Online",purchase,1.0,0 -159277759,"Star Trek Online",play,14.4,0 -159277759,"Team Fortress 2",purchase,1.0,0 -159277759,"Team Fortress 2",play,5.3,0 -159277759,"Killing Floor",purchase,1.0,0 -159277759,"Killing Floor",play,5.1,0 -159277759,"Unturned",purchase,1.0,0 -159277759,"Unturned",play,4.6,0 -159277759,"Dota 2",purchase,1.0,0 -159277759,"Dota 2",play,1.9,0 -159277759,"The Expendabros",purchase,1.0,0 -159277759,"The Expendabros",play,0.6,0 -159277759,"Happy Wars",purchase,1.0,0 -159277759,"Happy Wars",play,0.2,0 -159277759,"State of Decay",purchase,1.0,0 -159277759,"State of Decay",play,0.2,0 -159277759,"Nosgoth",purchase,1.0,0 -159277759,"Guns and Robots",purchase,1.0,0 -159277759,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -159277759,"Marvel Heroes 2015",purchase,1.0,0 -28818246,"Counter-Strike",purchase,1.0,0 -28818246,"Counter-Strike",play,0.2,0 -28818246,"Counter-Strike Condition Zero",purchase,1.0,0 -28818246,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -297169314,"Dota 2",purchase,1.0,0 -297169314,"Dota 2",play,0.8,0 -127117543,"Dota 2",purchase,1.0,0 -127117543,"Dota 2",play,10.8,0 -295601631,"Dota 2",purchase,1.0,0 -295601631,"Dota 2",play,11.3,0 -57564540,"Counter-Strike Source",purchase,1.0,0 -57564540,"Counter-Strike Source",play,103.0,0 -179368446,"Dota 2",purchase,1.0,0 -179368446,"Dota 2",play,1.7,0 -90302081,"Sleeping Dogs",purchase,1.0,0 -90302081,"Sleeping Dogs",play,51.0,0 -90302081,"Call of Juarez The Cartel",purchase,1.0,0 -90302081,"Call of Juarez The Cartel",play,35.0,0 -90302081,"Call of Juarez Gunslinger",purchase,1.0,0 -90302081,"Call of Juarez Gunslinger",play,25.0,0 -90302081,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -90302081,"Rising Storm/Red Orchestra 2 Multiplayer",play,4.6,0 -90302081,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -221892471,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -221892471,"Call of Duty Modern Warfare 2 - Multiplayer",play,59.0,0 -221892471,"Call of Duty Modern Warfare 2",purchase,1.0,0 -221892471,"Call of Duty Modern Warfare 2",play,4.4,0 -167364183,"Dota 2",purchase,1.0,0 -167364183,"Dota 2",play,2.5,0 -182175885,"Team Fortress 2",purchase,1.0,0 -182175885,"Team Fortress 2",play,154.0,0 -281308924,"Unturned",purchase,1.0,0 -281308924,"Unturned",play,0.6,0 -300631922,"Electric Highways",purchase,1.0,0 -259308565,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -259308565,"METAL GEAR SOLID V GROUND ZEROES",play,6.0,0 -172877288,"Team Fortress 2",purchase,1.0,0 -172877288,"Team Fortress 2",play,0.5,0 -172877288,"Arma 2 Free",purchase,1.0,0 -172877288,"Arma 2 Free",play,0.2,0 -119723223,"Terraria",purchase,1.0,0 -119723223,"Terraria",play,40.0,0 -119723223,"Stronghold 3",purchase,1.0,0 -119723223,"Stronghold 3",play,12.7,0 -173658892,"Dota 2",purchase,1.0,0 -173658892,"Dota 2",play,0.8,0 -5314150,"Counter-Strike",purchase,1.0,0 -5314150,"Counter-Strike Condition Zero",purchase,1.0,0 -5314150,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -5314150,"Counter-Strike Source",purchase,1.0,0 -5314150,"Day of Defeat Source",purchase,1.0,0 -5314150,"Half-Life 2 Deathmatch",purchase,1.0,0 -5314150,"Half-Life 2 Lost Coast",purchase,1.0,0 -286084810,"Dead Realm",purchase,1.0,0 -286084810,"Dead Realm",play,10.4,0 -286084810,"Dying Light",purchase,1.0,0 -286084810,"Dying Light",play,5.8,0 -286084810,"ArcheAge",purchase,1.0,0 -286084810,"ArcheAge",play,0.2,0 -146145063,"Robocraft",purchase,1.0,0 -146145063,"Robocraft",play,217.0,0 -146145063,"The Elder Scrolls V Skyrim",purchase,1.0,0 -146145063,"The Elder Scrolls V Skyrim",play,87.0,0 -146145063,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -146145063,"Call of Duty Black Ops II - Multiplayer",play,81.0,0 -146145063,"Mortal Kombat X",purchase,1.0,0 -146145063,"Mortal Kombat X",play,66.0,0 -146145063,"Dishonored",purchase,1.0,0 -146145063,"Dishonored",play,38.0,0 -146145063,"Garry's Mod",purchase,1.0,0 -146145063,"Garry's Mod",play,28.0,0 -146145063,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -146145063,"Call of Duty Black Ops II - Zombies",play,15.4,0 -146145063,"Call of Duty Black Ops II",purchase,1.0,0 -146145063,"Call of Duty Black Ops II",play,7.1,0 -146145063,"Counter-Strike Global Offensive",purchase,1.0,0 -146145063,"Enclave",purchase,1.0,0 -146145063,"Pirates of Black Cove Gold",purchase,1.0,0 -146145063,"Pool Nation",purchase,1.0,0 -282810196,"Dota 2",purchase,1.0,0 -282810196,"Dota 2",play,2.5,0 -178038549,"Counter-Strike Global Offensive",purchase,1.0,0 -178038549,"Counter-Strike Global Offensive",play,586.0,0 -178038549,"Grand Theft Auto V",purchase,1.0,0 -178038549,"Grand Theft Auto V",play,389.0,0 -178038549,"Dota 2",purchase,1.0,0 -178038549,"Dota 2",play,324.0,0 -178038549,"DayZ",purchase,1.0,0 -178038549,"DayZ",play,87.0,0 -178038549,"Rust",purchase,1.0,0 -178038549,"Rust",play,71.0,0 -178038549,"Borderlands 2 RU",purchase,1.0,0 -178038549,"Borderlands 2 RU",play,24.0,0 -178038549,"PAYDAY 2",purchase,1.0,0 -178038549,"PAYDAY 2",play,17.2,0 -178038549,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -178038549,"Warhammer 40,000 Dawn of War Soulstorm",play,16.7,0 -178038549,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -178038549,"The Witcher 2 Assassins of Kings Enhanced Edition",play,16.2,0 -178038549,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -178038549,"Just Cause 2 Multiplayer Mod",play,11.1,0 -178038549,"Aliens vs. Predator",purchase,1.0,0 -178038549,"Aliens vs. Predator",play,8.2,0 -178038549,"The Forest",purchase,1.0,0 -178038549,"The Forest",play,6.9,0 -178038549,"Fallout 3",purchase,1.0,0 -178038549,"Fallout 3",play,6.7,0 -178038549,"War Thunder",purchase,1.0,0 -178038549,"War Thunder",play,6.1,0 -178038549,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -178038549,"S.T.A.L.K.E.R. Call of Pripyat",play,5.5,0 -178038549,"Reign Of Kings",purchase,1.0,0 -178038549,"Reign Of Kings",play,5.5,0 -178038549,"Sniper Elite 3",purchase,1.0,0 -178038549,"Sniper Elite 3",play,5.2,0 -178038549,"Warframe",purchase,1.0,0 -178038549,"Warframe",play,4.9,0 -178038549,"Mortal Kombat Komplete Edition",purchase,1.0,0 -178038549,"Mortal Kombat Komplete Edition",play,4.5,0 -178038549,"LEGO MARVEL Super Heroes",purchase,1.0,0 -178038549,"LEGO MARVEL Super Heroes",play,3.4,0 -178038549,"Don't Starve Together Beta",purchase,1.0,0 -178038549,"Don't Starve Together Beta",play,3.1,0 -178038549,"Trove",purchase,1.0,0 -178038549,"Trove",play,3.1,0 -178038549,"Saints Row The Third",purchase,1.0,0 -178038549,"Saints Row The Third",play,2.9,0 -178038549,"Just Cause 2",purchase,1.0,0 -178038549,"Just Cause 2",play,2.4,0 -178038549,"Team Fortress 2",purchase,1.0,0 -178038549,"Team Fortress 2",play,1.3,0 -178038549,"DiggerOnline",purchase,1.0,0 -178038549,"DiggerOnline",play,0.9,0 -178038549,"Split/Second",purchase,1.0,0 -178038549,"Split/Second",play,0.5,0 -178038549,"Grand Theft Auto San Andreas",purchase,1.0,0 -178038549,"Grand Theft Auto San Andreas",play,0.3,0 -178038549,"Nosgoth",purchase,1.0,0 -178038549,"Nosgoth",play,0.2,0 -178038549,"A New Beginning - Final Cut",purchase,1.0,0 -178038549,"Borderlands 2",purchase,1.0,0 -178038549,"Fistful of Frags",purchase,1.0,0 -178038549,"Grand Theft Auto San Andreas",purchase,1.0,0 -178038549,"theHunter",purchase,1.0,0 -270590020,"Alganon",purchase,1.0,0 -281196596,"Dota 2",purchase,1.0,0 -281196596,"Dota 2",play,79.0,0 -281196596,"Walkover",purchase,1.0,0 -218242005,"Dota 2",purchase,1.0,0 -218242005,"Dota 2",play,0.5,0 -88095884,"Team Fortress 2",purchase,1.0,0 -88095884,"Team Fortress 2",play,952.0,0 -88095884,"Battlefield Bad Company 2",purchase,1.0,0 -88095884,"Battlefield Bad Company 2",play,624.0,0 -88095884,"Portal",purchase,1.0,0 -88095884,"Portal",play,15.8,0 -260788360,"Dota 2",purchase,1.0,0 -260788360,"Dota 2",play,113.0,0 -260788360,"Neverwinter",purchase,1.0,0 -260788360,"Neverwinter",play,47.0,0 -260788360,"SMITE",purchase,1.0,0 -260788360,"SMITE",play,27.0,0 -260788360,"TERA",purchase,1.0,0 -260788360,"TERA",play,27.0,0 -260788360,"Grand Theft Auto V",purchase,1.0,0 -260788360,"Grand Theft Auto V",play,9.4,0 -260788360,"theHunter",purchase,1.0,0 -260788360,"theHunter",play,6.9,0 -260788360,"Warframe",purchase,1.0,0 -260788360,"Warframe",play,5.5,0 -260788360,"Infinite Crisis",purchase,1.0,0 -260788360,"Infinite Crisis",play,0.7,0 -260788360,"Firefall",purchase,1.0,0 -260788360,"Rise of Incarnates",purchase,1.0,0 -179456244,"Dota 2",purchase,1.0,0 -179456244,"Dota 2",play,0.8,0 -154882228,"Dota 2",purchase,1.0,0 -154882228,"Dota 2",play,432.0,0 -69364340,"Empire Total War",purchase,1.0,0 -69364340,"Empire Total War",play,28.0,0 -237627929,"Dota 2",purchase,1.0,0 -237627929,"Dota 2",play,0.8,0 -237627929,"Frontline Tactics",purchase,1.0,0 -28851953,"Half-Life",purchase,1.0,0 -28851953,"Counter-Strike Source",purchase,1.0,0 -28851953,"Garry's Mod",purchase,1.0,0 -288712080,"Dota 2",purchase,1.0,0 -288712080,"Dota 2",play,16.5,0 -288712080,"FreeStyle2 Street Basketball",purchase,1.0,0 -180901075,"Counter-Strike",purchase,1.0,0 -180901075,"Counter-Strike",play,359.0,0 -180901075,"Counter-Strike Nexon Zombies",purchase,1.0,0 -180901075,"Counter-Strike Nexon Zombies",play,269.0,0 -180901075,"Half-Life 2",purchase,1.0,0 -180901075,"Half-Life 2",play,23.0,0 -180901075,"SpeedRunners",purchase,1.0,0 -180901075,"SpeedRunners",play,14.9,0 -180901075,"Overture",purchase,1.0,0 -180901075,"Overture",play,12.9,0 -180901075,"Reprisal Universe",purchase,1.0,0 -180901075,"Reprisal Universe",play,10.8,0 -180901075,"Counter-Strike Condition Zero",purchase,1.0,0 -180901075,"Counter-Strike Condition Zero",play,9.6,0 -180901075,"Really Big Sky",purchase,1.0,0 -180901075,"Really Big Sky",play,8.7,0 -180901075,"The Expendabros",purchase,1.0,0 -180901075,"The Expendabros",play,8.5,0 -180901075,"BattleBlock Theater",purchase,1.0,0 -180901075,"BattleBlock Theater",play,8.2,0 -180901075,"Realm of the Mad God",purchase,1.0,0 -180901075,"Realm of the Mad God",play,8.1,0 -180901075,"The Guild II",purchase,1.0,0 -180901075,"The Guild II",play,7.2,0 -180901075,"Victim of Xen",purchase,1.0,0 -180901075,"Victim of Xen",play,6.8,0 -180901075,"QuestRun",purchase,1.0,0 -180901075,"QuestRun",play,6.6,0 -180901075,"Speedball 2 HD",purchase,1.0,0 -180901075,"Speedball 2 HD",play,6.5,0 -180901075,"Pixel Puzzles Japan",purchase,1.0,0 -180901075,"Pixel Puzzles Japan",play,6.2,0 -180901075,"Castle Crashers",purchase,1.0,0 -180901075,"Castle Crashers",play,5.3,0 -180901075,"Unturned",purchase,1.0,0 -180901075,"Unturned",play,5.3,0 -180901075,"Memories of a Vagabond",purchase,1.0,0 -180901075,"Memories of a Vagabond",play,5.2,0 -180901075,"Penguins Arena Sedna's World",purchase,1.0,0 -180901075,"Penguins Arena Sedna's World",play,4.6,0 -180901075,"Knights and Merchants",purchase,1.0,0 -180901075,"Knights and Merchants",play,4.2,0 -180901075,"iBomber Defense Pacific",purchase,1.0,0 -180901075,"iBomber Defense Pacific",play,4.1,0 -180901075,"Vertical Drop Heroes HD",purchase,1.0,0 -180901075,"Vertical Drop Heroes HD",play,3.4,0 -180901075,"Anomaly Warzone Earth",purchase,1.0,0 -180901075,"Anomaly Warzone Earth",play,2.8,0 -180901075,"Half-Life 2 Episode One",purchase,1.0,0 -180901075,"Half-Life 2 Episode One",play,2.7,0 -180901075,"Dino D-Day",purchase,1.0,0 -180901075,"Dino D-Day",play,2.6,0 -180901075,"Containment The Zombie Puzzler",purchase,1.0,0 -180901075,"Containment The Zombie Puzzler",play,2.3,0 -180901075,"Defy Gravity",purchase,1.0,0 -180901075,"Defy Gravity",play,2.2,0 -180901075,"The Culling Of The Cows",purchase,1.0,0 -180901075,"The Culling Of The Cows",play,2.2,0 -180901075,"Bionic Dues",purchase,1.0,0 -180901075,"Bionic Dues",play,2.0,0 -180901075,"Scribblenauts Unlimited",purchase,1.0,0 -180901075,"Scribblenauts Unlimited",play,2.0,0 -180901075,"Project Explore",purchase,1.0,0 -180901075,"Project Explore",play,2.0,0 -180901075,"Clicker Heroes",purchase,1.0,0 -180901075,"Clicker Heroes",play,1.8,0 -180901075,"Skyborn",purchase,1.0,0 -180901075,"Skyborn",play,1.8,0 -180901075,"Race The Sun",purchase,1.0,0 -180901075,"Race The Sun",play,1.5,0 -180901075,"Battlepaths",purchase,1.0,0 -180901075,"Battlepaths",play,1.5,0 -180901075,"Gigantic Army",purchase,1.0,0 -180901075,"Gigantic Army",play,1.4,0 -180901075,"Garry's Mod",purchase,1.0,0 -180901075,"Garry's Mod",play,1.4,0 -180901075,"Actual Sunlight",purchase,1.0,0 -180901075,"Actual Sunlight",play,1.3,0 -180901075,"Enclave",purchase,1.0,0 -180901075,"Enclave",play,1.2,0 -180901075,"Weird Worlds Return to Infinite Space",purchase,1.0,0 -180901075,"Weird Worlds Return to Infinite Space",play,1.1,0 -180901075,"Canyon Capers",purchase,1.0,0 -180901075,"Canyon Capers",play,1.1,0 -180901075,"Grimm",purchase,1.0,0 -180901075,"Grimm",play,0.9,0 -180901075,"PixelJunk Monsters Ultimate",purchase,1.0,0 -180901075,"PixelJunk Monsters Ultimate",play,0.9,0 -180901075,"Chip",purchase,1.0,0 -180901075,"Chip",play,0.8,0 -180901075,"Chronicles of a Dark Lord Episode 1 Tides of Fate Complete",purchase,1.0,0 -180901075,"Chronicles of a Dark Lord Episode 1 Tides of Fate Complete",play,0.7,0 -180901075,"Yet Another Zombie Defense",purchase,1.0,0 -180901075,"Yet Another Zombie Defense",play,0.7,0 -180901075,"POSTAL",purchase,1.0,0 -180901075,"POSTAL",play,0.7,0 -180901075,"Space Hack",purchase,1.0,0 -180901075,"Space Hack",play,0.6,0 -180901075,"Dead Bits",purchase,1.0,0 -180901075,"Dead Bits",play,0.6,0 -180901075,"The Journey Down Chapter One",purchase,1.0,0 -180901075,"The Journey Down Chapter One",play,0.6,0 -180901075,"Why So Evil 2 Dystopia",purchase,1.0,0 -180901075,"Why So Evil 2 Dystopia",play,0.6,0 -180901075,"BEEP",purchase,1.0,0 -180901075,"BEEP",play,0.5,0 -180901075,"Jet Gunner",purchase,1.0,0 -180901075,"Jet Gunner",play,0.5,0 -180901075,"Out There Somewhere",purchase,1.0,0 -180901075,"Out There Somewhere",play,0.4,0 -180901075,"Yury",purchase,1.0,0 -180901075,"Yury",play,0.4,0 -180901075,"Frozen Hearth",purchase,1.0,0 -180901075,"Frozen Hearth",play,0.4,0 -180901075,"Gothic 3",purchase,1.0,0 -180901075,"Gothic 3",play,0.3,0 -180901075,"Orborun",purchase,1.0,0 -180901075,"Orborun",play,0.3,0 -180901075,"ProtoGalaxy",purchase,1.0,0 -180901075,"ProtoGalaxy",play,0.3,0 -180901075,"SpaceChem",purchase,1.0,0 -180901075,"SpaceChem",play,0.2,0 -180901075,"KnightShift",purchase,1.0,0 -180901075,"KnightShift",play,0.2,0 -180901075,"RADical ROACH Deluxe Edition",purchase,1.0,0 -180901075,"RADical ROACH Deluxe Edition",play,0.2,0 -180901075,"Camera Obscura",purchase,1.0,0 -180901075,"Camera Obscura",play,0.2,0 -180901075,"Gun Monkeys",purchase,1.0,0 -180901075,"Gun Monkeys",play,0.2,0 -180901075,"Racer 8",purchase,1.0,0 -180901075,"Racer 8",play,0.2,0 -180901075,"Happy Wars",purchase,1.0,0 -180901075,"Happy Wars",play,0.2,0 -180901075,"Sanctum",purchase,1.0,0 -180901075,"Sanctum",play,0.2,0 -180901075,"Waveform",purchase,1.0,0 -180901075,"Waveform",play,0.1,0 -180901075,"Space Warp",purchase,1.0,0 -180901075,"Space Warp",play,0.1,0 -180901075,"Grimoire Manastorm",purchase,1.0,0 -180901075,"Grimoire Manastorm",play,0.1,0 -180901075,"Chaos Domain",purchase,1.0,0 -180901075,"Chaos Domain",play,0.1,0 -180901075,"Cobi Treasure Deluxe",purchase,1.0,0 -180901075,"Cobi Treasure Deluxe",play,0.1,0 -180901075,"Uriel's Chasm",purchase,1.0,0 -180901075,"Uriel's Chasm",play,0.1,0 -180901075,"Ionball 2 Ionstorm",purchase,1.0,0 -180901075,"Ionball 2 Ionstorm",play,0.1,0 -180901075,"Dead Island Epidemic",purchase,1.0,0 -180901075,"Dead Island Epidemic",play,0.1,0 -180901075,"ACE - Arena Cyber Evolution",purchase,1.0,0 -180901075,"ACE - Arena Cyber Evolution",play,0.1,0 -180901075,"Shadows on the Vatican - Act I Greed",purchase,1.0,0 -180901075,"Gravity Core - Braintwisting Space Odyssey",purchase,1.0,0 -180901075,"Lovely Planet",purchase,1.0,0 -180901075,"Humanity Asset",purchase,1.0,0 -180901075,"Teleglitch Die More Edition",purchase,1.0,0 -180901075,"Woodle Tree Adventures",purchase,1.0,0 -180901075,"Starlaxis Supernova Edition",purchase,1.0,0 -180901075,"Magicka Wizard Wars",purchase,1.0,0 -180901075,"Kung Fu Strike The Warrior's Rise",purchase,1.0,0 -180901075,"Super Killer Hornet Resurrection",purchase,1.0,0 -180901075,"Time Gentlemen, Please!",purchase,1.0,0 -180901075,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -180901075,"Litil Divil",purchase,1.0,0 -180901075,"Deadbreed",purchase,1.0,0 -180901075,"Ruzh Delta Z",purchase,1.0,0 -180901075,"Anomaly Korea",purchase,1.0,0 -180901075,"Receiver",purchase,1.0,0 -180901075,"Borealis",purchase,1.0,0 -180901075,"Shadow Warrior Classic (1997)",purchase,1.0,0 -180901075,"East India Company Gold",purchase,1.0,0 -180901075,"Planets Under Attack",purchase,1.0,0 -180901075,"GTR Evolution",purchase,1.0,0 -180901075,"Avencast",purchase,1.0,0 -180901075,"Epigenesis",purchase,1.0,0 -180901075,"8BitBoy",purchase,1.0,0 -180901075,"Afterfall InSanity Extended Edition",purchase,1.0,0 -180901075,"Alien Breed Impact",purchase,1.0,0 -180901075,"Amnesia The Dark Descent",purchase,1.0,0 -180901075,"AquaNox",purchase,1.0,0 -180901075,"AquaNox 2 Revelation",purchase,1.0,0 -180901075,"ArcaniA",purchase,1.0,0 -180901075,"Arma 2 Free",purchase,1.0,0 -180901075,"Aveyond 3-2 Gates of Night",purchase,1.0,0 -180901075,"Battle Nations",purchase,1.0,0 -180901075,"Ben There, Dan That!",purchase,1.0,0 -180901075,"Bloop",purchase,1.0,0 -180901075,"Commander Conquest of the Americas Gold",purchase,1.0,0 -180901075,"Commando Jack",purchase,1.0,0 -180901075,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -180901075,"Counter-Strike Nexon Zombies - Starter Pack",purchase,1.0,0 -180901075,"Crash Time II",purchase,1.0,0 -180901075,"Crysis",purchase,1.0,0 -180901075,"Crysis 2 Maximum Edition",purchase,1.0,0 -180901075,"Crysis Warhead",purchase,1.0,0 -180901075,"Crysis Wars",purchase,1.0,0 -180901075,"Cult of the Wind",purchase,1.0,0 -180901075,"Desert Thunder",purchase,1.0,0 -180901075,"Earth 2150 Lost Souls",purchase,1.0,0 -180901075,"Enemy Mind",purchase,1.0,0 -180901075,"Fistful of Frags",purchase,1.0,0 -180901075,"GooCubelets",purchase,1.0,0 -180901075,"Gorky 17",purchase,1.0,0 -180901075,"Gotham City Impostors Free To Play",purchase,1.0,0 -180901075,"Gun Metal",purchase,1.0,0 -180901075,"Half-Life 2 Episode Two",purchase,1.0,0 -180901075,"Half-Life 2 Lost Coast",purchase,1.0,0 -180901075,"Hitman 2 Silent Assassin",purchase,1.0,0 -180901075,"Hostile Waters Antaeus Rising",purchase,1.0,0 -180901075,"Incoming Forces",purchase,1.0,0 -180901075,"Insurgency",purchase,1.0,0 -180901075,"Lost Saga North America",purchase,1.0,0 -180901075,"Lucius",purchase,1.0,0 -180901075,"Marine Sharpshooter II Jungle Warfare",purchase,1.0,0 -180901075,"Metro 2033",purchase,1.0,0 -180901075,"MicroVolts Surge",purchase,1.0,0 -180901075,"Murder Miners",purchase,1.0,0 -180901075,"Neighbours from Hell",purchase,1.0,0 -180901075,"Neighbours from Hell 2",purchase,1.0,0 -180901075,"No More Room in Hell",purchase,1.0,0 -180901075,"Nosgoth",purchase,1.0,0 -180901075,"Numba Deluxe",purchase,1.0,0 -180901075,"Overcast - Walden and the Werewolf",purchase,1.0,0 -180901075,"Painkiller Black Edition",purchase,1.0,0 -180901075,"Painkiller Hell & Damnation",purchase,1.0,0 -180901075,"Panzer Elite Action Fields of Glory",purchase,1.0,0 -180901075,"Pid ",purchase,1.0,0 -180901075,"Pirates, Vikings, & Knights II",purchase,1.0,0 -180901075,"Pirates of Black Cove Gold",purchase,1.0,0 -180901075,"Platypus II",purchase,1.0,0 -180901075,"Polarity",purchase,1.0,0 -180901075,"Portal",purchase,1.0,0 -180901075,"RACE 07",purchase,1.0,0 -180901075,"RaceRoom Racing Experience ",purchase,1.0,0 -180901075,"Realms of the Haunting",purchase,1.0,0 -180901075,"RIFT",purchase,1.0,0 -180901075,"Royal Quest",purchase,1.0,0 -180901075,"Silent Storm",purchase,1.0,0 -180901075,"Silent Storm Sentinels",purchase,1.0,0 -180901075,"SpellForce 2 Gold Edition",purchase,1.0,0 -180901075,"SpellForce Platinum Edition",purchase,1.0,0 -180901075,"Stealth Inc 2",purchase,1.0,0 -180901075,"Storm United",purchase,1.0,0 -180901075,"SUPER DISTRO",purchase,1.0,0 -180901075,"SuperPower 2 Steam Edition",purchase,1.0,0 -180901075,"Talisman Prologue",purchase,1.0,0 -180901075,"The 39 Steps",purchase,1.0,0 -180901075,"The Guild II - Pirates of the European Seas",purchase,1.0,0 -180901075,"The Ship",purchase,1.0,0 -180901075,"The Ship Single Player",purchase,1.0,0 -180901075,"The Ship Tutorial",purchase,1.0,0 -180901075,"Tiestru",purchase,1.0,0 -180901075,"Trine",purchase,1.0,0 -180901075,"Trine 2",purchase,1.0,0 -180901075,"Trine 3 The Artifacts of Power",purchase,1.0,0 -180901075,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -180901075,"Trove",purchase,1.0,0 -180901075,"Two Worlds Epic Edition",purchase,1.0,0 -180901075,"Why So Evil",purchase,1.0,0 -180901075,"X-Blades",purchase,1.0,0 -180901075,"XCOM Enemy Unknown",purchase,1.0,0 -308954355,"Dota 2",purchase,1.0,0 -308954355,"Dota 2",play,4.1,0 -73519553,"Football Manager 2009",purchase,1.0,0 -73519553,"Football Manager 2009",play,1885.0,0 -247521204,"BattleBlock Theater",purchase,1.0,0 -247521204,"BattleBlock Theater",play,22.0,0 -255511589,"Warframe",purchase,1.0,0 -255511589,"Warframe",play,3.4,0 -255511589,"FreeStyle2 Street Basketball",purchase,1.0,0 -255511589,"FreeStyle2 Street Basketball",play,2.9,0 -255511589,"Blender 2.76b",purchase,1.0,0 -255511589,"Blender 2.76b",play,1.3,0 -255511589,"Soccer Manager 2016",purchase,1.0,0 -255511589,"Soccer Manager 2016",play,0.6,0 -80091744,"Mount & Blade Warband",purchase,1.0,0 -80091744,"Mount & Blade Warband",play,0.4,0 -136961289,"Dota 2",purchase,1.0,0 -136961289,"Dota 2",play,6.1,0 -222363622,"Robocraft",purchase,1.0,0 -222363622,"Robocraft",play,223.0,0 -222363622,"Trove",purchase,1.0,0 -222363622,"Trove",play,16.6,0 -222363622,"Rise of Incarnates",purchase,1.0,0 -222363622,"Marvel Heroes 2015",purchase,1.0,0 -144307381,"Dota 2",purchase,1.0,0 -144307381,"Dota 2",play,0.1,0 -107452765,"Borderlands 2",purchase,1.0,0 -107452765,"Borderlands 2",play,159.0,0 -107452765,"The Elder Scrolls V Skyrim",purchase,1.0,0 -107452765,"The Elder Scrolls V Skyrim",play,95.0,0 -107452765,"Far Cry 3",purchase,1.0,0 -107452765,"Far Cry 3",play,64.0,0 -107452765,"Borderlands",purchase,1.0,0 -107452765,"Borderlands",play,31.0,0 -107452765,"Dishonored",purchase,1.0,0 -107452765,"Dishonored",play,24.0,0 -107452765,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -107452765,"The Witcher 2 Assassins of Kings Enhanced Edition",play,17.2,0 -107452765,"Max Payne 3",purchase,1.0,0 -107452765,"Max Payne 3",play,14.9,0 -107452765,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -107452765,"Tom Clancy's Splinter Cell Conviction",play,12.1,0 -107452765,"Deus Ex Human Revolution",purchase,1.0,0 -107452765,"Deus Ex Human Revolution",play,11.8,0 -107452765,"Portal 2",purchase,1.0,0 -107452765,"Portal 2",play,9.9,0 -107452765,"Saints Row The Third",purchase,1.0,0 -107452765,"Saints Row The Third",play,8.3,0 -107452765,"Hitman Absolution",purchase,1.0,0 -107452765,"Hitman Absolution",play,5.6,0 -107452765,"Sniper Elite V2",purchase,1.0,0 -107452765,"Sniper Elite V2",play,3.1,0 -107452765,"Half-Life 2",purchase,1.0,0 -107452765,"Half-Life 2",play,2.0,0 -107452765,"Darksiders",purchase,1.0,0 -107452765,"Darksiders",play,1.3,0 -107452765,"Mark of the Ninja",purchase,1.0,0 -107452765,"Mark of the Ninja",play,1.1,0 -107452765,"Crysis",purchase,1.0,0 -107452765,"Crysis",play,0.9,0 -107452765,"PAYDAY The Heist",purchase,1.0,0 -107452765,"PAYDAY The Heist",play,0.5,0 -107452765,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -107452765,"Tom Clancy's Splinter Cell Blacklist",play,0.5,0 -107452765,"Chivalry Medieval Warfare",purchase,1.0,0 -107452765,"Chivalry Medieval Warfare",play,0.3,0 -107452765,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -107452765,"Fallout 3 - Game of the Year Edition",play,0.1,0 -107452765,"Terraria",purchase,1.0,0 -107452765,"Just Cause 2",purchase,1.0,0 -107452765,"Age of Empires II HD Edition",purchase,1.0,0 -107452765,"Age of Empires II HD The Forgotten",purchase,1.0,0 -107452765,"Age of Empires III Complete Collection",purchase,1.0,0 -107452765,"Age of Mythology Extended Edition",purchase,1.0,0 -107452765,"Age of Wonders III",purchase,1.0,0 -107452765,"Air Conflicts - Secret Wars",purchase,1.0,0 -107452765,"Alan Wake",purchase,1.0,0 -107452765,"Alan Wake's American Nightmare",purchase,1.0,0 -107452765,"Alice Madness Returns",purchase,1.0,0 -107452765,"Amnesia A Machine for Pigs",purchase,1.0,0 -107452765,"Amnesia The Dark Descent",purchase,1.0,0 -107452765,"Arma 2",purchase,1.0,0 -107452765,"Arma 2 British Armed Forces",purchase,1.0,0 -107452765,"Arma 2 DayZ Mod",purchase,1.0,0 -107452765,"Arma 2 Operation Arrowhead",purchase,1.0,0 -107452765,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -107452765,"Arma 2 Private Military Company",purchase,1.0,0 -107452765,"Arma 3",purchase,1.0,0 -107452765,"Arma 3 Zeus",purchase,1.0,0 -107452765,"Assassin's Creed IV Black Flag",purchase,1.0,0 -107452765,"Banished",purchase,1.0,0 -107452765,"Bastion",purchase,1.0,0 -107452765,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -107452765,"Batman Arkham City GOTY",purchase,1.0,0 -107452765,"Batman Arkham City",purchase,1.0,0 -107452765,"Batman Arkham Origins",purchase,1.0,0 -107452765,"BattleBlock Theater",purchase,1.0,0 -107452765,"BioShock",purchase,1.0,0 -107452765,"BioShock 2",purchase,1.0,0 -107452765,"BioShock Infinite",purchase,1.0,0 -107452765,"Blackguards",purchase,1.0,0 -107452765,"Blackguards 2",purchase,1.0,0 -107452765,"Blackguards Untold Legends",purchase,1.0,0 -107452765,"Blade Kitten",purchase,1.0,0 -107452765,"Borderlands The Pre-Sequel",purchase,1.0,0 -107452765,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -107452765,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -107452765,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -107452765,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -107452765,"Braid",purchase,1.0,0 -107452765,"Brothers - A Tale of Two Sons",purchase,1.0,0 -107452765,"Bully Scholarship Edition",purchase,1.0,0 -107452765,"Cargo! - The quest for gravity",purchase,1.0,0 -107452765,"Child of Light",purchase,1.0,0 -107452765,"Counter-Strike Global Offensive",purchase,1.0,0 -107452765,"Crysis 2 Maximum Edition",purchase,1.0,0 -107452765,"Crysis Warhead",purchase,1.0,0 -107452765,"Crysis Wars",purchase,1.0,0 -107452765,"Darksiders II",purchase,1.0,0 -107452765,"Darksiders II Deathinitive Edition",purchase,1.0,0 -107452765,"Darksiders II Soundtrack",purchase,1.0,0 -107452765,"Darksiders Soundtrack",purchase,1.0,0 -107452765,"DeadCore",purchase,1.0,0 -107452765,"Divinity Dragon Commander",purchase,1.0,0 -107452765,"Divinity Dragon Commander Beta",purchase,1.0,0 -107452765,"DmC Devil May Cry",purchase,1.0,0 -107452765,"Don't Starve",purchase,1.0,0 -107452765,"Don't Starve Together Beta",purchase,1.0,0 -107452765,"Dust An Elysian Tail",purchase,1.0,0 -107452765,"Eldritch",purchase,1.0,0 -107452765,"Fable Anniversary",purchase,1.0,0 -107452765,"Fallout New Vegas",purchase,1.0,0 -107452765,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -107452765,"Fallout New Vegas Dead Money",purchase,1.0,0 -107452765,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -107452765,"Far Cry 3 Blood Dragon",purchase,1.0,0 -107452765,"FEZ",purchase,1.0,0 -107452765,"FINAL FANTASY XIII",purchase,1.0,0 -107452765,"FINAL FANTASY XIII-2",purchase,1.0,0 -107452765,"FTL Faster Than Light",purchase,1.0,0 -107452765,"Goat Simulator",purchase,1.0,0 -107452765,"Grand Ages Rome",purchase,1.0,0 -107452765,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -107452765,"Grand Theft Auto IV",purchase,1.0,0 -107452765,"Half-Life 2 Lost Coast",purchase,1.0,0 -107452765,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",purchase,1.0,0 -107452765,"Half Minute Hero The Second Coming",purchase,1.0,0 -107452765,"Hotline Miami",purchase,1.0,0 -107452765,"Magicka",purchase,1.0,0 -107452765,"Magicka Final Frontier",purchase,1.0,0 -107452765,"Magicka Frozen Lake",purchase,1.0,0 -107452765,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -107452765,"Magicka Nippon",purchase,1.0,0 -107452765,"Magicka Party Robes",purchase,1.0,0 -107452765,"Magicka The Watchtower",purchase,1.0,0 -107452765,"Magicka Vietnam",purchase,1.0,0 -107452765,"Magicka Wizard's Survival Kit",purchase,1.0,0 -107452765,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -107452765,"Metro 2033",purchase,1.0,0 -107452765,"Metro 2033 Redux",purchase,1.0,0 -107452765,"Metro Last Light",purchase,1.0,0 -107452765,"Metro Last Light Redux",purchase,1.0,0 -107452765,"Middle-earth Shadow of Mordor",purchase,1.0,0 -107452765,"Mount & Blade",purchase,1.0,0 -107452765,"Mount & Blade Warband",purchase,1.0,0 -107452765,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -107452765,"Mount & Blade With Fire and Sword",purchase,1.0,0 -107452765,"Orcs Must Die!",purchase,1.0,0 -107452765,"Orcs Must Die! 2",purchase,1.0,0 -107452765,"Outlast",purchase,1.0,0 -107452765,"Papers, Please",purchase,1.0,0 -107452765,"Patch testing for Chivalry",purchase,1.0,0 -107452765,"PAYDAY 2",purchase,1.0,0 -107452765,"Portal",purchase,1.0,0 -107452765,"POSTAL 2",purchase,1.0,0 -107452765,"RAGE",purchase,1.0,0 -107452765,"Red Faction Armageddon",purchase,1.0,0 -107452765,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -107452765,"resident evil 4 / biohazard 4",purchase,1.0,0 -107452765,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -107452765,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -107452765,"Rogue Legacy",purchase,1.0,0 -107452765,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -107452765,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -107452765,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -107452765,"Saints Row 2",purchase,1.0,0 -107452765,"Saints Row The Third - Initiation Station",purchase,1.0,0 -107452765,"Saints Row IV",purchase,1.0,0 -107452765,"Sanctum 2",purchase,1.0,0 -107452765,"Shadow Harvest Phantom Ops",purchase,1.0,0 -107452765,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -107452765,"Sid Meier's Civilization IV",purchase,1.0,0 -107452765,"Sid Meier's Civilization IV",purchase,1.0,0 -107452765,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -107452765,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -107452765,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -107452765,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -107452765,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -107452765,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -107452765,"Sid Meier's Civilization V",purchase,1.0,0 -107452765,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -107452765,"Sid Meier's Starships",purchase,1.0,0 -107452765,"Sleeping Dogs",purchase,1.0,0 -107452765,"Sniper Elite",purchase,1.0,0 -107452765,"Sniper Elite 3",purchase,1.0,0 -107452765,"Spec Ops The Line",purchase,1.0,0 -107452765,"Spelunky",purchase,1.0,0 -107452765,"Star Wars - Battlefront II",purchase,1.0,0 -107452765,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -107452765,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -107452765,"Star Wars Dark Forces",purchase,1.0,0 -107452765,"Star Wars Empire at War Gold",purchase,1.0,0 -107452765,"Star Wars Knights of the Old Republic",purchase,1.0,0 -107452765,"Star Wars The Force Unleashed II",purchase,1.0,0 -107452765,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -107452765,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -107452765,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -107452765,"Star Wars Republic Commando",purchase,1.0,0 -107452765,"Star Wars Starfighter",purchase,1.0,0 -107452765,"Star Wars The Clone Wars Republic Heroes",purchase,1.0,0 -107452765,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -107452765,"Super Meat Boy",purchase,1.0,0 -107452765,"Syberia",purchase,1.0,0 -107452765,"Syberia 2",purchase,1.0,0 -107452765,"The Binding of Isaac",purchase,1.0,0 -107452765,"The Bridge",purchase,1.0,0 -107452765,"The Bureau XCOM Declassified",purchase,1.0,0 -107452765,"The Bureau XCOM Declassified - Code Breakers",purchase,1.0,0 -107452765,"The Bureau XCOM Declassified - Light Plasma Pistol",purchase,1.0,0 -107452765,"The Bureau XCOM Hangar 6 R&D",purchase,1.0,0 -107452765,"The Elder Scrolls III Morrowind",purchase,1.0,0 -107452765,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -107452765,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -107452765,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -107452765,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -107452765,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -107452765,"The Incredible Adventures of Van Helsing II",purchase,1.0,0 -107452765,"The Last Remnant",purchase,1.0,0 -107452765,"The Stanley Parable",purchase,1.0,0 -107452765,"The Swapper",purchase,1.0,0 -107452765,"The Talos Principle",purchase,1.0,0 -107452765,"The Walking Dead",purchase,1.0,0 -107452765,"The Walking Dead Season Two",purchase,1.0,0 -107452765,"The Wolf Among Us",purchase,1.0,0 -107452765,"Thief 2",purchase,1.0,0 -107452765,"Thief Deadly Shadows",purchase,1.0,0 -107452765,"Thief Gold",purchase,1.0,0 -107452765,"This War of Mine",purchase,1.0,0 -107452765,"Titan Quest",purchase,1.0,0 -107452765,"Titan Quest Immortal Throne",purchase,1.0,0 -107452765,"Tomb Raider",purchase,1.0,0 -107452765,"Torchlight II",purchase,1.0,0 -107452765,"Total War ROME II - Emperor Edition",purchase,1.0,0 -107452765,"Trine",purchase,1.0,0 -107452765,"Trine 2",purchase,1.0,0 -107452765,"Tropico 4",purchase,1.0,0 -107452765,"Two Worlds II",purchase,1.0,0 -107452765,"Unity of Command",purchase,1.0,0 -107452765,"Wargame AirLand Battle",purchase,1.0,0 -107452765,"Wargame European Escalation",purchase,1.0,0 -107452765,"Wargame Red Dragon",purchase,1.0,0 -107452765,"War of the Roses",purchase,1.0,0 -107452765,"War of the Roses Kingmaker",purchase,1.0,0 -107452765,"War of the Roses Balance Beta",purchase,1.0,0 -107452765,"Wolfenstein The New Order",purchase,1.0,0 -107452765,"Wolfenstein The Old Blood ",purchase,1.0,0 -107452765,"XCOM Enemy Unknown",purchase,1.0,0 -107452765,"XCOM Enemy Within",purchase,1.0,0 -152694671,"Dota 2",purchase,1.0,0 -152694671,"Dota 2",play,0.8,0 -68633391,"Football Manager 2009",purchase,1.0,0 -68633391,"Football Manager 2009",play,6.7,0 -127335438,"DARK SOULS II",purchase,1.0,0 -127335438,"DARK SOULS II",play,710.0,0 -127335438,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -127335438,"Dark Souls Prepare to Die Edition",play,117.0,0 -127335438,"DRAGON BALL XENOVERSE",purchase,1.0,0 -127335438,"DRAGON BALL XENOVERSE",play,114.0,0 -127335438,"Fallout 4",purchase,1.0,0 -127335438,"Fallout 4",play,78.0,0 -127335438,"Borderlands The Pre-Sequel",purchase,1.0,0 -127335438,"Borderlands The Pre-Sequel",play,72.0,0 -127335438,"The Elder Scrolls V Skyrim",purchase,1.0,0 -127335438,"The Elder Scrolls V Skyrim",play,53.0,0 -127335438,"Fallout New Vegas",purchase,1.0,0 -127335438,"Fallout New Vegas",play,37.0,0 -127335438,"Besiege",purchase,1.0,0 -127335438,"Besiege",play,35.0,0 -127335438,"Far Cry 3",purchase,1.0,0 -127335438,"Far Cry 3",play,31.0,0 -127335438,"Dead Island",purchase,1.0,0 -127335438,"Dead Island",play,26.0,0 -127335438,"Darksiders",purchase,1.0,0 -127335438,"Darksiders",play,25.0,0 -127335438,"Garry's Mod",purchase,1.0,0 -127335438,"Garry's Mod",play,19.7,0 -127335438,"Age of Empires II HD Edition",purchase,1.0,0 -127335438,"Age of Empires II HD Edition",play,15.5,0 -127335438,"The Binding of Isaac Rebirth",purchase,1.0,0 -127335438,"The Binding of Isaac Rebirth",play,14.8,0 -127335438,"South Park The Stick of Truth",purchase,1.0,0 -127335438,"South Park The Stick of Truth",play,14.5,0 -127335438,"Dota 2",purchase,1.0,0 -127335438,"Dota 2",play,12.7,0 -127335438,"Sniper Elite 3",purchase,1.0,0 -127335438,"Sniper Elite 3",play,11.1,0 -127335438,"Goat Simulator",purchase,1.0,0 -127335438,"Goat Simulator",play,9.9,0 -127335438,"Lichdom Battlemage",purchase,1.0,0 -127335438,"Lichdom Battlemage",play,9.3,0 -127335438,"Earth Defense Force Insect Armageddon",purchase,1.0,0 -127335438,"Earth Defense Force Insect Armageddon",play,9.3,0 -127335438,"Mortal Kombat Komplete Edition",purchase,1.0,0 -127335438,"Mortal Kombat Komplete Edition",play,8.8,0 -127335438,"Warframe",purchase,1.0,0 -127335438,"Warframe",play,8.4,0 -127335438,"How to Survive",purchase,1.0,0 -127335438,"How to Survive",play,7.7,0 -127335438,"Evolve",purchase,1.0,0 -127335438,"Evolve",play,5.9,0 -127335438,"Spore",purchase,1.0,0 -127335438,"Spore",play,5.7,0 -127335438,"Star Wars Knights of the Old Republic",purchase,1.0,0 -127335438,"Star Wars Knights of the Old Republic",play,5.4,0 -127335438,"Loadout",purchase,1.0,0 -127335438,"Loadout",play,4.7,0 -127335438,"Wolfenstein The New Order",purchase,1.0,0 -127335438,"Wolfenstein The New Order",play,3.3,0 -127335438,"Alien Isolation",purchase,1.0,0 -127335438,"Alien Isolation",play,3.1,0 -127335438,"I am Bread",purchase,1.0,0 -127335438,"I am Bread",play,2.8,0 -127335438,"Assassin's Creed Freedom Cry",purchase,1.0,0 -127335438,"Assassin's Creed Freedom Cry",play,2.6,0 -127335438,"The Evil Within",purchase,1.0,0 -127335438,"The Evil Within",play,2.4,0 -127335438,"Depth",purchase,1.0,0 -127335438,"Depth",play,2.0,0 -127335438,"Rome Total War",purchase,1.0,0 -127335438,"Rome Total War",play,1.8,0 -127335438,"Thief",purchase,1.0,0 -127335438,"Thief",play,1.7,0 -127335438,"Oddworld Stranger's Wrath HD",purchase,1.0,0 -127335438,"Oddworld Stranger's Wrath HD",play,1.6,0 -127335438,"The Basement Collection",purchase,1.0,0 -127335438,"The Basement Collection",play,1.5,0 -127335438,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -127335438,"Fallout 3 - Game of the Year Edition",play,1.2,0 -127335438,"Total War ROME II - Emperor Edition",purchase,1.0,0 -127335438,"Total War ROME II - Emperor Edition",play,1.2,0 -127335438,"Surgeon Simulator",purchase,1.0,0 -127335438,"Surgeon Simulator",play,1.2,0 -127335438,"Elsword",purchase,1.0,0 -127335438,"Elsword",play,0.8,0 -127335438,"Hatred",purchase,1.0,0 -127335438,"Hatred",play,0.6,0 -127335438,"Beat Hazard",purchase,1.0,0 -127335438,"Beat Hazard",play,0.6,0 -127335438,"Spore Creepy & Cute Parts Pack",purchase,1.0,0 -127335438,"Spore Creepy & Cute Parts Pack",play,0.6,0 -127335438,"Serious Sam 2",purchase,1.0,0 -127335438,"Serious Sam 2",play,0.5,0 -127335438,"No More Room in Hell",purchase,1.0,0 -127335438,"No More Room in Hell",play,0.4,0 -127335438,"The Plan",purchase,1.0,0 -127335438,"The Plan",play,0.4,0 -127335438,"The Binding of Isaac",purchase,1.0,0 -127335438,"The Binding of Isaac",play,0.3,0 -127335438,"Lone Survivor The Director's Cut",purchase,1.0,0 -127335438,"Lone Survivor The Director's Cut",play,0.2,0 -127335438,"War of the Roses",purchase,1.0,0 -127335438,"War of the Roses",play,0.2,0 -127335438,"Super Crate Box",purchase,1.0,0 -127335438,"Super Crate Box",play,0.1,0 -127335438,"Grand Theft Auto San Andreas",purchase,1.0,0 -127335438,"theHunter",purchase,1.0,0 -127335438,"Rome Total War - Alexander",purchase,1.0,0 -127335438,"Worms Pinball",purchase,1.0,0 -127335438,"MicroVolts Surge",purchase,1.0,0 -127335438,"Archeblade",purchase,1.0,0 -127335438,"Castle Crashers",purchase,1.0,0 -127335438,"Crow - Hunter (Trapper Class)",purchase,1.0,0 -127335438,"Darksiders II",purchase,1.0,0 -127335438,"DARK SOULS II - Season Pass",purchase,1.0,0 -127335438,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -127335438,"Dying Light",purchase,1.0,0 -127335438,"E.Y.E Divine Cybermancy",purchase,1.0,0 -127335438,"Emet - Hunter (Medic Class)",purchase,1.0,0 -127335438,"Evolve - Gorgon",purchase,1.0,0 -127335438,"Fallout",purchase,1.0,0 -127335438,"Fallout 2",purchase,1.0,0 -127335438,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -127335438,"Fallout New Vegas Dead Money",purchase,1.0,0 -127335438,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -127335438,"Fallout Tactics",purchase,1.0,0 -127335438,"Far Cry 3 Blood Dragon",purchase,1.0,0 -127335438,"Grand Theft Auto San Andreas",purchase,1.0,0 -127335438,"Grand Theft Auto Vice City",purchase,1.0,0 -127335438,"Grand Theft Auto Vice City",purchase,1.0,0 -127335438,"Grand Theft Auto III",purchase,1.0,0 -127335438,"Grand Theft Auto III",purchase,1.0,0 -127335438,"Haunted Memories",purchase,1.0,0 -127335438,"Jack - Hunter (Trapper Class)",purchase,1.0,0 -127335438,"Killing Floor",purchase,1.0,0 -127335438,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -127335438,"Lennox - Hunter (Assault Class)",purchase,1.0,0 -127335438,"Neverwinter",purchase,1.0,0 -127335438,"Oddworld Abe's Exoddus",purchase,1.0,0 -127335438,"Oddworld Abe's Oddysee",purchase,1.0,0 -127335438,"Oddworld Munch's Oddysee",purchase,1.0,0 -127335438,"Over The Void",purchase,1.0,0 -127335438,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -127335438,"Slim - Hunter (Medic Class)",purchase,1.0,0 -127335438,"Spiral Knights",purchase,1.0,0 -127335438,"State of Decay",purchase,1.0,0 -127335438,"Sunny - Hunter (Support Class)",purchase,1.0,0 -127335438,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -127335438,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -127335438,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -127335438,"Thief - Opportunist",purchase,1.0,0 -127335438,"Torvald - Hunter (Assault Class)",purchase,1.0,0 -127335438,"Worms",purchase,1.0,0 -127335438,"Worms Armageddon",purchase,1.0,0 -127335438,"Worms Blast",purchase,1.0,0 -127335438,"Worms Crazy Golf",purchase,1.0,0 -127335438,"Worms Reloaded",purchase,1.0,0 -127335438,"Worms Revolution",purchase,1.0,0 -127335438,"Worms Ultimate Mayhem",purchase,1.0,0 -259891015,"Dota 2",purchase,1.0,0 -259891015,"Dota 2",play,62.0,0 -259891015,"APB Reloaded",purchase,1.0,0 -259891015,"Dead Island Epidemic",purchase,1.0,0 -259891015,"FreeStyle2 Street Basketball",purchase,1.0,0 -259891015,"GunZ 2 The Second Duel",purchase,1.0,0 -259891015,"Ragnarok",purchase,1.0,0 -299736416,"Dota 2",purchase,1.0,0 -299736416,"Dota 2",play,7.7,0 -148346652,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -148346652,"RollerCoaster Tycoon 3 Platinum!",play,54.0,0 -148346652,"Tomb Raider The Last Revelation",purchase,1.0,0 -148346652,"Tomb Raider The Last Revelation",play,1.2,0 -148346652,"Tomb Raider",purchase,1.0,0 -148346652,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -148346652,"Tomb Raider Anniversary",purchase,1.0,0 -148346652,"Tomb Raider Chronicles",purchase,1.0,0 -148346652,"Tomb Raider Legend",purchase,1.0,0 -148346652,"Tomb Raider Underworld",purchase,1.0,0 -148346652,"Tomb Raider I",purchase,1.0,0 -148346652,"Tomb Raider II",purchase,1.0,0 -148346652,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -159428605,"Dota 2",purchase,1.0,0 -159428605,"Dota 2",play,1033.0,0 -159428605,"Counter-Strike Global Offensive",purchase,1.0,0 -159428605,"Counter-Strike Global Offensive",play,184.0,0 -159428605,"Left 4 Dead 2",purchase,1.0,0 -159428605,"Left 4 Dead 2",play,84.0,0 -159428605,"Path of Exile",purchase,1.0,0 -159428605,"Path of Exile",play,18.7,0 -159428605,"Don't Starve",purchase,1.0,0 -159428605,"Don't Starve",play,15.8,0 -159428605,"The Lord of the Rings War in the North",purchase,1.0,0 -159428605,"The Lord of the Rings War in the North",play,13.7,0 -159428605,"Pool Nation",purchase,1.0,0 -159428605,"Pool Nation",play,12.0,0 -159428605,"Torchlight II",purchase,1.0,0 -159428605,"Torchlight II",play,10.5,0 -159428605,"Guns of Icarus Online",purchase,1.0,0 -159428605,"Guns of Icarus Online",play,8.7,0 -159428605,"Portal 2",purchase,1.0,0 -159428605,"Portal 2",play,7.3,0 -159428605,"Unturned",purchase,1.0,0 -159428605,"Unturned",play,5.0,0 -159428605,"Free to Play",purchase,1.0,0 -159428605,"Free to Play",play,3.5,0 -159428605,"Rust",purchase,1.0,0 -159428605,"Rust",play,3.4,0 -159428605,"War Thunder",purchase,1.0,0 -159428605,"War Thunder",play,2.9,0 -159428605,"How to Survive",purchase,1.0,0 -159428605,"How to Survive",play,2.3,0 -159428605,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -159428605,"Rising Storm/Red Orchestra 2 Multiplayer",play,1.9,0 -159428605,"Castle Crashers",purchase,1.0,0 -159428605,"Castle Crashers",play,1.8,0 -159428605,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -159428605,"The Incredible Adventures of Van Helsing",play,1.8,0 -159428605,"The Culling Of The Cows",purchase,1.0,0 -159428605,"The Culling Of The Cows",play,0.5,0 -159428605,"Watchmen The End Is Nigh",purchase,1.0,0 -159428605,"Watchmen The End Is Nigh",play,0.4,0 -159428605,"Grand Theft Auto Vice City",purchase,1.0,0 -159428605,"Grand Theft Auto Vice City",play,0.3,0 -159428605,"Killing Floor",purchase,1.0,0 -159428605,"Killing Floor",play,0.1,0 -159428605,"World of Goo",purchase,1.0,0 -159428605,"World of Goo",play,0.1,0 -159428605,"WRC Powerslide",purchase,1.0,0 -159428605,"WRC Powerslide",play,0.1,0 -159428605,"Warlock - Master of the Arcane",purchase,1.0,0 -159428605,"Deadlight",purchase,1.0,0 -159428605,"Deadlight Original Soundtrack",purchase,1.0,0 -159428605,"Defy Gravity",purchase,1.0,0 -159428605,"Don't Starve Together Beta",purchase,1.0,0 -159428605,"Firefall",purchase,1.0,0 -159428605,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -159428605,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -159428605,"Grand Theft Auto San Andreas",purchase,1.0,0 -159428605,"Grand Theft Auto San Andreas",purchase,1.0,0 -159428605,"Grand Theft Auto Vice City",purchase,1.0,0 -159428605,"Grand Theft Auto III",purchase,1.0,0 -159428605,"Grand Theft Auto III",purchase,1.0,0 -159428605,"Grand Theft Auto IV",purchase,1.0,0 -159428605,"GTR Evolution",purchase,1.0,0 -159428605,"Heroes & Generals",purchase,1.0,0 -159428605,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -159428605,"PAYDAY 2",purchase,1.0,0 -159428605,"PAYDAY The Heist",purchase,1.0,0 -159428605,"RACE 07",purchase,1.0,0 -159428605,"RaceRoom Racing Experience ",purchase,1.0,0 -159428605,"Real World Racing",purchase,1.0,0 -159428605,"Real World Racing Amsterdam & Oakland",purchase,1.0,0 -159428605,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -159428605,"RWRZ",purchase,1.0,0 -159428605,"Saints Row The Third",purchase,1.0,0 -159428605,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -159428605,"Sniper Elite V2",purchase,1.0,0 -159428605,"Terraria",purchase,1.0,0 -159428605,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -159428605,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -159428605,"Urban Trial Freestyle",purchase,1.0,0 -159428605,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -159428605,"Watchmen The End Is Nigh Part 2",purchase,1.0,0 -177426132,"Dota 2",purchase,1.0,0 -177426132,"Dota 2",play,5.7,0 -110895915,"Sid Meier's Civilization V",purchase,1.0,0 -110895915,"Sid Meier's Civilization V",play,30.0,0 -141682250,"Team Fortress 2",purchase,1.0,0 -141682250,"Team Fortress 2",play,14.5,0 -141682250,"Dota 2",purchase,1.0,0 -141682250,"Dota 2",play,3.6,0 -254458836,"Team Fortress 2",purchase,1.0,0 -254458836,"Team Fortress 2",play,0.8,0 -254458836,"Running Shadow",purchase,1.0,0 -254458836,"Running Shadow",play,0.2,0 -254458836,"NEED FOR MADNESS ?",purchase,1.0,0 -254458836,"Path of Exile",purchase,1.0,0 -254458836,"Robocraft",purchase,1.0,0 -185258131,"Assassin's Creed IV Black Flag",purchase,1.0,0 -185258131,"Assassin's Creed IV Black Flag",play,261.0,0 -185258131,"The Witcher 3 Wild Hunt",purchase,1.0,0 -185258131,"The Witcher 3 Wild Hunt",play,198.0,0 -185258131,"Fallout 4",purchase,1.0,0 -185258131,"Fallout 4",play,172.0,0 -185258131,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -185258131,"The Witcher 2 Assassins of Kings Enhanced Edition",play,133.0,0 -185258131,"The Witcher Enhanced Edition",purchase,1.0,0 -185258131,"The Witcher Enhanced Edition",play,127.0,0 -185258131,"Grand Theft Auto V",purchase,1.0,0 -185258131,"Grand Theft Auto V",play,99.0,0 -185258131,"Saints Row IV",purchase,1.0,0 -185258131,"Saints Row IV",play,65.0,0 -185258131,"Assassin's Creed III",purchase,1.0,0 -185258131,"Assassin's Creed III",play,60.0,0 -185258131,"Far Cry 3",purchase,1.0,0 -185258131,"Far Cry 3",play,39.0,0 -185258131,"Assassins Creed Unity",purchase,1.0,0 -185258131,"Assassins Creed Unity",play,27.0,0 -185258131,"Mortal Kombat X",purchase,1.0,0 -185258131,"Mortal Kombat X",play,15.9,0 -185258131,"Spore",purchase,1.0,0 -185258131,"Spore",play,7.7,0 -185258131,"Watch_Dogs",purchase,1.0,0 -185258131,"Watch_Dogs",play,5.1,0 -185258131,"Counter-Strike Global Offensive",purchase,1.0,0 -185258131,"Counter-Strike Global Offensive",play,4.8,0 -185258131,"Batman Arkham Origins",purchase,1.0,0 -185258131,"Batman Arkham Origins",play,4.1,0 -185258131,"The Elder Scrolls V Skyrim",purchase,1.0,0 -185258131,"The Elder Scrolls V Skyrim",play,2.9,0 -185258131,"Sherlock Holmes Crimes and Punishments",purchase,1.0,0 -185258131,"Sherlock Holmes Crimes and Punishments",play,2.6,0 -185258131,"MURDERED SOUL SUSPECT",purchase,1.0,0 -185258131,"MURDERED SOUL SUSPECT",play,2.5,0 -185258131,"Call of Juarez Gunslinger",purchase,1.0,0 -185258131,"Call of Juarez Gunslinger",play,1.8,0 -185258131,"Football Manager 2015",purchase,1.0,0 -185258131,"Football Manager 2015",play,1.5,0 -185258131,"Crayon Physics Deluxe",purchase,1.0,0 -185258131,"Crayon Physics Deluxe",play,0.9,0 -185258131,"Spore Creepy & Cute Parts Pack",purchase,1.0,0 -185258131,"Spore Creepy & Cute Parts Pack",play,0.8,0 -185258131,"LEGO MARVEL Super Heroes",purchase,1.0,0 -185258131,"LEGO MARVEL Super Heroes",play,0.5,0 -185258131,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -185258131,"S.T.A.L.K.E.R. Clear Sky",play,0.5,0 -185258131,"Styx Master of Shadows",purchase,1.0,0 -185258131,"Styx Master of Shadows",play,0.4,0 -185258131,"Fable Anniversary",purchase,1.0,0 -185258131,"Fable Anniversary",play,0.2,0 -185258131,"Dead Island",purchase,1.0,0 -185258131,"Far Cry 3 Blood Dragon",purchase,1.0,0 -185258131,"Just Cause 2",purchase,1.0,0 -185258131,"Age of Empires III Complete Collection",purchase,1.0,0 -185258131,"Assassin's Creed Freedom Cry",purchase,1.0,0 -185258131,"BioShock Infinite",purchase,1.0,0 -185258131,"Child of Light",purchase,1.0,0 -185258131,"Dead Island Epidemic",purchase,1.0,0 -185258131,"Dead Island Riptide",purchase,1.0,0 -185258131,"Far Cry 4",purchase,1.0,0 -185258131,"Grand Theft Auto San Andreas",purchase,1.0,0 -185258131,"Grand Theft Auto San Andreas",purchase,1.0,0 -185258131,"Left 4 Dead 2",purchase,1.0,0 -185258131,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -185258131,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -185258131,"Saints Row IV Inauguration Station",purchase,1.0,0 -185258131,"Spore Galactic Adventures",purchase,1.0,0 -185258131,"The Witcher 3 Wild Hunt - Expansion Pass",purchase,1.0,0 -41746000,"Serious Sam HD The Second Encounter",purchase,1.0,0 -41746000,"Serious Sam HD The Second Encounter",play,2.1,0 -190191843,"Counter-Strike Global Offensive",purchase,1.0,0 -190191843,"Counter-Strike Global Offensive",play,1803.0,0 -190191843,"The Elder Scrolls Online Tamriel Unlimited",purchase,1.0,0 -190191843,"The Elder Scrolls Online Tamriel Unlimited",play,214.0,0 -190191843,"H1Z1",purchase,1.0,0 -190191843,"H1Z1",play,178.0,0 -190191843,"Grand Theft Auto V",purchase,1.0,0 -190191843,"Grand Theft Auto V",play,175.0,0 -190191843,"AdVenture Capitalist",purchase,1.0,0 -190191843,"AdVenture Capitalist",play,71.0,0 -190191843,"Rocket League",purchase,1.0,0 -190191843,"Rocket League",play,59.0,0 -190191843,"PAYDAY 2",purchase,1.0,0 -190191843,"PAYDAY 2",play,43.0,0 -190191843,"PlanetSide 2",purchase,1.0,0 -190191843,"PlanetSide 2",play,41.0,0 -190191843,"The Forest",purchase,1.0,0 -190191843,"The Forest",play,33.0,0 -190191843,"Arma 3",purchase,1.0,0 -190191843,"Arma 3",play,30.0,0 -190191843,"Fallout 4",purchase,1.0,0 -190191843,"Fallout 4",play,23.0,0 -190191843,"Mortal Kombat X",purchase,1.0,0 -190191843,"Mortal Kombat X",play,12.2,0 -190191843,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -190191843,"Fallout 3 - Game of the Year Edition",play,12.0,0 -190191843,"Left 4 Dead 2",purchase,1.0,0 -190191843,"Left 4 Dead 2",play,11.4,0 -190191843,"BioShock 2",purchase,1.0,0 -190191843,"BioShock 2",play,8.8,0 -190191843,"BioShock",purchase,1.0,0 -190191843,"BioShock",play,8.4,0 -190191843,"BioShock Infinite",purchase,1.0,0 -190191843,"BioShock Infinite",play,7.5,0 -190191843,"Metro 2033 Redux",purchase,1.0,0 -190191843,"Metro 2033 Redux",play,7.3,0 -190191843,"BattleBlock Theater",purchase,1.0,0 -190191843,"BattleBlock Theater",play,5.0,0 -190191843,"DiRT Rally",purchase,1.0,0 -190191843,"DiRT Rally",play,5.0,0 -190191843,"Five Nights at Freddy's",purchase,1.0,0 -190191843,"Five Nights at Freddy's",play,4.5,0 -190191843,"Castle Crashers",purchase,1.0,0 -190191843,"Castle Crashers",play,3.7,0 -190191843,"Metro Last Light Redux",purchase,1.0,0 -190191843,"Metro Last Light Redux",play,3.4,0 -190191843,"Portal 2",purchase,1.0,0 -190191843,"Portal 2",play,2.8,0 -190191843,"Killing Floor 2",purchase,1.0,0 -190191843,"Killing Floor 2",play,2.6,0 -190191843,"Chivalry Medieval Warfare",purchase,1.0,0 -190191843,"Chivalry Medieval Warfare",play,2.5,0 -190191843,"Garry's Mod",purchase,1.0,0 -190191843,"Garry's Mod",play,1.5,0 -190191843,"War Thunder",purchase,1.0,0 -190191843,"War Thunder",play,1.3,0 -190191843,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -190191843,"Rising Storm/Red Orchestra 2 Multiplayer",play,1.1,0 -190191843,"Amnesia The Dark Descent",purchase,1.0,0 -190191843,"Amnesia The Dark Descent",play,0.8,0 -190191843,"Mount Your Friends",purchase,1.0,0 -190191843,"Mount Your Friends",play,0.6,0 -190191843,"POSTAL 2",purchase,1.0,0 -190191843,"POSTAL 2",play,0.5,0 -190191843,"Unturned",purchase,1.0,0 -190191843,"Unturned",play,0.4,0 -190191843,"Hearts of Iron III",purchase,1.0,0 -190191843,"Hearts of Iron III",play,0.2,0 -190191843,"Team Fortress 2",purchase,1.0,0 -190191843,"Team Fortress 2",play,0.2,0 -190191843,"oO",purchase,1.0,0 -190191843,"Men of War Assault Squad 2",purchase,1.0,0 -190191843,"Arma 3 Zeus",purchase,1.0,0 -190191843,"Castle Crashers - Blacksmith Pack",purchase,1.0,0 -190191843,"Castle Crashers - Pink Knight Pack",purchase,1.0,0 -190191843,"H1Z1 Test Server",purchase,1.0,0 -190191843,"Let the Cat In",purchase,1.0,0 -190191843,"Patch testing for Chivalry",purchase,1.0,0 -190191843,"Victoria II",purchase,1.0,0 -110107925,"Counter-Strike Global Offensive",purchase,1.0,0 -110107925,"Counter-Strike Global Offensive",play,498.0,0 -110107925,"Left 4 Dead 2",purchase,1.0,0 -110107925,"Left 4 Dead 2",play,60.0,0 -110107925,"Killing Floor",purchase,1.0,0 -110107925,"Killing Floor",play,17.5,0 -110107925,"Euro Truck Simulator 2",purchase,1.0,0 -110107925,"Euro Truck Simulator 2",play,6.2,0 -110107925,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -110107925,"The Witcher 2 Assassins of Kings Enhanced Edition",play,2.6,0 -110107925,"Fallout 2",purchase,1.0,0 -110107925,"Fallout 2",play,1.2,0 -110107925,"Sleeping Dogs",purchase,1.0,0 -110107925,"Sleeping Dogs",play,0.8,0 -110107925,"F.E.A.R. 3",purchase,1.0,0 -110107925,"F.E.A.R. 3",play,0.1,0 -110107925,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -110107925,"Fallout Tactics",purchase,1.0,0 -110107925,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -110107925,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -110107925,"Fallout",purchase,1.0,0 -110107925,"Hitman Absolution",purchase,1.0,0 -110107925,"PAYDAY The Heist",purchase,1.0,0 -110107925,"Sniper Elite V2",purchase,1.0,0 -110107925,"The Witcher Enhanced Edition",purchase,1.0,0 -110107925,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -183982123,"Dota 2",purchase,1.0,0 -183982123,"Dota 2",play,0.4,0 -188910738,"Unturned",purchase,1.0,0 -188910738,"Unturned",play,16.8,0 -188910738,"Neverwinter",purchase,1.0,0 -188910738,"Neverwinter",play,10.6,0 -188910738,"Warframe",purchase,1.0,0 -188910738,"Warframe",play,1.4,0 -188910738,"Path of Exile",purchase,1.0,0 -188910738,"Path of Exile",play,0.5,0 -188910738,"Fuse",purchase,1.0,0 -188910738,"Fuse",play,0.4,0 -188910738,"RIFT",purchase,1.0,0 -188910738,"RIFT",play,0.4,0 -188910738,"C9",purchase,1.0,0 -188910738,"C9",play,0.4,0 -188910738,"Forge",purchase,1.0,0 -188910738,"Forge",play,0.1,0 -188910738,"Ascend Hand of Kul",purchase,1.0,0 -188910738,"Dragons and Titans",purchase,1.0,0 -188910738,"Age of Conan Unchained - EU version",purchase,1.0,0 -188910738,"Dungeons & Dragons Online",purchase,1.0,0 -188910738,"The Lord of the Rings Online",purchase,1.0,0 -186609588,"Dota 2",purchase,1.0,0 -186609588,"Dota 2",play,9.5,0 -231451737,"Counter-Strike Global Offensive",purchase,1.0,0 -231451737,"Counter-Strike Global Offensive",play,122.0,0 -13556140,"Left 4 Dead 2",purchase,1.0,0 -13556140,"Left 4 Dead 2",play,95.0,0 -13556140,"Counter-Strike Source",purchase,1.0,0 -13556140,"Counter-Strike Source",play,43.0,0 -13556140,"Counter-Strike Global Offensive",purchase,1.0,0 -13556140,"Counter-Strike Global Offensive",play,37.0,0 -13556140,"Left 4 Dead",purchase,1.0,0 -13556140,"Left 4 Dead",play,34.0,0 -13556140,"Counter-Strike",purchase,1.0,0 -13556140,"Day of Defeat",purchase,1.0,0 -13556140,"Deathmatch Classic",purchase,1.0,0 -13556140,"Defiance",purchase,1.0,0 -13556140,"Half-Life",purchase,1.0,0 -13556140,"Half-Life 2",purchase,1.0,0 -13556140,"Half-Life 2 Deathmatch",purchase,1.0,0 -13556140,"Half-Life 2 Lost Coast",purchase,1.0,0 -13556140,"Half-Life Blue Shift",purchase,1.0,0 -13556140,"Half-Life Opposing Force",purchase,1.0,0 -13556140,"Marvel Heroes 2015",purchase,1.0,0 -13556140,"Neverwinter",purchase,1.0,0 -13556140,"Ricochet",purchase,1.0,0 -13556140,"Team Fortress Classic",purchase,1.0,0 -194207397,"Counter-Strike Global Offensive",purchase,1.0,0 -194207397,"Counter-Strike Global Offensive",play,428.0,0 -194207397,"The Binding of Isaac",purchase,1.0,0 -194207397,"The Binding of Isaac",play,49.0,0 -194207397,"Dota 2",purchase,1.0,0 -194207397,"Dota 2",play,1.2,0 -194207397,"Quake Live",purchase,1.0,0 -194207397,"Quake Live",play,0.2,0 -194207397,"Battle Nations",purchase,1.0,0 -194207397,"Unturned",purchase,1.0,0 -194207397,"Blacklight Retribution",purchase,1.0,0 -194207397,"Dead Island Epidemic",purchase,1.0,0 -194207397,"Heroes & Generals",purchase,1.0,0 -194207397,"Marvel Heroes 2015",purchase,1.0,0 -194207397,"Path of Exile",purchase,1.0,0 -194207397,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -266455892,"Dota 2",purchase,1.0,0 -266455892,"Dota 2",play,1.3,0 -289573026,"Warframe",purchase,1.0,0 -289573026,"Warframe",play,7.2,0 -110903956,"Team Fortress 2",purchase,1.0,0 -110903956,"Team Fortress 2",play,1.5,0 -206846798,"Team Fortress 2",purchase,1.0,0 -206846798,"Team Fortress 2",play,5.6,0 -98839983,"Dota 2",purchase,1.0,0 -98839983,"Dota 2",play,3672.0,0 -292715948,"Dota 2",purchase,1.0,0 -292715948,"Dota 2",play,2.6,0 -197871154,"Dota 2",purchase,1.0,0 -197871154,"Dota 2",play,37.0,0 -269920248,"Dota 2",purchase,1.0,0 -269920248,"Dota 2",play,0.4,0 -125246281,"Dota 2",purchase,1.0,0 -125246281,"Dota 2",play,12.2,0 -125246281,"Garry's Mod",purchase,1.0,0 -125246281,"Garry's Mod",play,9.2,0 -125246281,"Team Fortress 2",purchase,1.0,0 -125246281,"Team Fortress 2",play,0.9,0 -145633458,"Total War ROME II - Emperor Edition",purchase,1.0,0 -145633458,"Total War ROME II - Emperor Edition",play,13.0,0 -197279519,"Dota 2",purchase,1.0,0 -197279519,"Dota 2",play,0.6,0 -303325128,"Call of Duty Black Ops III",purchase,1.0,0 -303325128,"Call of Duty Black Ops III",play,42.0,0 -166907146,"Spiral Knights",purchase,1.0,0 -166907146,"Spiral Knights",play,18.8,0 -166907146,"Dota 2",purchase,1.0,0 -166907146,"Dota 2",play,14.8,0 -156821142,"Magicka",purchase,1.0,0 -156821142,"Garry's Mod",purchase,1.0,0 -156821142,"Magicka Vietnam",purchase,1.0,0 -156821142,"Natural Selection 2",purchase,1.0,0 -156821142,"Orcs Must Die! 2",purchase,1.0,0 -156821142,"Sanctum 2",purchase,1.0,0 -156821142,"Serious Sam 3 BFE",purchase,1.0,0 -112240173,"Age of Empires Online",purchase,1.0,0 -112240173,"Age of Empires Online",play,4.8,0 -112240173,"Total War ROME II - Emperor Edition",purchase,1.0,0 -112240173,"Total War ROME II - Emperor Edition",play,1.5,0 -191937970,"Robocraft",purchase,1.0,0 -191937970,"Robocraft",play,0.7,0 -191937970,"APB Reloaded",purchase,1.0,0 -191937970,"Elsword",purchase,1.0,0 -191937970,"Haunted Memories",purchase,1.0,0 -191937970,"Pinball Arcade",purchase,1.0,0 -191937970,"PlanetSide 2",purchase,1.0,0 -191937970,"RaceRoom Racing Experience ",purchase,1.0,0 -191937970,"Warframe",purchase,1.0,0 -232646553,"FreeStyle2 Street Basketball",purchase,1.0,0 -105938590,"Team Fortress 2",purchase,1.0,0 -105938590,"Team Fortress 2",play,0.7,0 -189240537,"Dota 2",purchase,1.0,0 -189240537,"Dota 2",play,124.0,0 -199552639,"Spintires",purchase,1.0,0 -199552639,"Spintires",play,13.9,0 -242233654,"AdVenture Capitalist",purchase,1.0,0 -242233654,"AdVenture Capitalist",play,1.3,0 -213126679,"Arma 2",purchase,1.0,0 -213126679,"Arma 2",play,10.6,0 -213126679,"Heroes & Generals",purchase,1.0,0 -213126679,"Heroes & Generals",play,0.2,0 -206493334,"Dota 2",purchase,1.0,0 -206493334,"Dota 2",play,775.0,0 -240810001,"Dota 2",purchase,1.0,0 -240810001,"Dota 2",play,0.7,0 -240810001,"FreeStyle2 Street Basketball",purchase,1.0,0 -240810001,"GunZ 2 The Second Duel",purchase,1.0,0 -240810001,"Marvel Heroes 2015",purchase,1.0,0 -240810001,"Neverwinter",purchase,1.0,0 -150382608,"Dota 2",purchase,1.0,0 -150382608,"Dota 2",play,717.0,0 -115918955,"Mad Max",purchase,1.0,0 -115918955,"Mad Max",play,2.4,0 -115918955,"Heli Heroes",purchase,1.0,0 -115918955,"Heli Heroes",play,0.7,0 -106454385,"Football Manager 2012",purchase,1.0,0 -106454385,"Football Manager 2012",play,32.0,0 -106454385,"Football Manager 2013",purchase,1.0,0 -106454385,"Football Manager 2013",play,6.0,0 -149850626,"RACE 07",purchase,1.0,0 -149850626,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -149850626,"RACE On",purchase,1.0,0 -149850626,"STCC The Game",purchase,1.0,0 -88246304,"Team Fortress 2",purchase,1.0,0 -88246304,"Team Fortress 2",play,0.6,0 -105720584,"Blender 2.76b",purchase,1.0,0 -105720584,"Blender 2.76b",play,0.4,0 -276186966,"UberStrike",purchase,1.0,0 -276186966,"UberStrike",play,25.0,0 -276186966,"Brick-Force",purchase,1.0,0 -276186966,"Brick-Force",play,2.8,0 -276186966,"Trove",purchase,1.0,0 -276186966,"Trove",play,0.5,0 -276186966,"Team Fortress 2",purchase,1.0,0 -276186966,"Team Fortress 2",play,0.4,0 -65638515,"Counter-Strike",purchase,1.0,0 -65638515,"Counter-Strike",play,915.0,0 -65638515,"Counter-Strike Condition Zero",purchase,1.0,0 -65638515,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -65638515,"Day of Defeat",purchase,1.0,0 -65638515,"Deathmatch Classic",purchase,1.0,0 -65638515,"Ricochet",purchase,1.0,0 -205867397,"Dota 2",purchase,1.0,0 -205867397,"Dota 2",play,3.2,0 -82542485,"Sid Meier's Civilization V",purchase,1.0,0 -82542485,"Sid Meier's Civilization V",play,147.0,0 -147283870,"Team Fortress 2",purchase,1.0,0 -147283870,"Team Fortress 2",play,19.6,0 -205089128,"Lost Horizon",purchase,1.0,0 -205089128,"Lost Horizon",play,25.0,0 -205089128,"Brothers - A Tale of Two Sons",purchase,1.0,0 -205089128,"Brothers - A Tale of Two Sons",play,4.2,0 -205089128,"Broken Sword 5 - the Serpent's Curse",purchase,1.0,0 -205089128,"Broken Sword 5 - the Serpent's Curse",play,1.9,0 -113205285,"Football Manager 2013",purchase,1.0,0 -113205285,"Football Manager 2013",play,1.9,0 -201269065,"DuckTales Remastered",purchase,1.0,0 -201269065,"DuckTales Remastered",play,8.5,0 -162321309,"Dota 2",purchase,1.0,0 -162321309,"Dota 2",play,31.0,0 -162321309,"Team Fortress 2",purchase,1.0,0 -162321309,"Team Fortress 2",play,1.6,0 -133387630,"Dota 2",purchase,1.0,0 -133387630,"Dota 2",play,0.2,0 -108595389,"X-Plane 10 Global - 64 Bit",purchase,1.0,0 -108595389,"X-Plane 10 Global - 64 Bit",play,30.0,0 -108595389,"Euro Truck Simulator 2",purchase,1.0,0 -108595389,"Euro Truck Simulator 2",play,3.2,0 -108595389,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -108595389,"Microsoft Flight Simulator X Steam Edition",play,2.2,0 -108595389,"RollerCoaster Tycoon Deluxe",purchase,1.0,0 -108595389,"RollerCoaster Tycoon Deluxe",play,2.0,0 -108595389,"War Thunder",purchase,1.0,0 -108595389,"War Thunder",play,2.0,0 -108595389,"Theme Park Studio",purchase,1.0,0 -108595389,"Theme Park Studio",play,2.0,0 -108595389,"RollerCoaster Tycoon",purchase,1.0,0 -108595389,"RollerCoaster Tycoon",play,1.4,0 -108595389,"Blacklight Retribution",purchase,1.0,0 -108595389,"Blacklight Retribution",play,1.0,0 -108595389,"BioShock Infinite",purchase,1.0,0 -108595389,"BioShock Infinite",play,0.9,0 -108595389,"NASCAR '14",purchase,1.0,0 -108595389,"NASCAR '14",play,0.9,0 -108595389,"theHunter",purchase,1.0,0 -108595389,"theHunter",play,0.8,0 -108595389,"Only If",purchase,1.0,0 -108595389,"Only If",play,0.5,0 -108595389,"DCS World",purchase,1.0,0 -108595389,"DCS World",play,0.2,0 -108595389,"Scania Truck Driving Simulator",purchase,1.0,0 -108595389,"Scania Truck Driving Simulator",play,0.1,0 -108595389,"Bus Driver",purchase,1.0,0 -108595389,"Bus Driver",play,0.1,0 -108595389,"Trucks & Trailers",purchase,1.0,0 -108595389,"Euro Truck Simulator",purchase,1.0,0 -108595389,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -108595389,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -108595389,"X-Plane 10 Global - 64 Bit - Africa Scenery",purchase,1.0,0 -108595389,"X-Plane 10 Global - 64 Bit - Asia Scenery",purchase,1.0,0 -108595389,"X-Plane 10 Global - 64 Bit - Australia Scenery",purchase,1.0,0 -108595389,"X-Plane 10 Global - 64 Bit - North America Scenery",purchase,1.0,0 -108595389,"X-Plane 10 Global - 64 Bit - South America Scenery",purchase,1.0,0 -46785501,"The Elder Scrolls V Skyrim",purchase,1.0,0 -46785501,"The Elder Scrolls V Skyrim",play,197.0,0 -46785501,"Anno 2070",purchase,1.0,0 -46785501,"Anno 2070",play,83.0,0 -46785501,"Fallout New Vegas",purchase,1.0,0 -46785501,"Fallout New Vegas",play,78.0,0 -46785501,"Total War SHOGUN 2",purchase,1.0,0 -46785501,"Total War SHOGUN 2",play,68.0,0 -46785501,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -46785501,"Warhammer 40,000 Dawn of War II Retribution",play,36.0,0 -46785501,"Sid Meier's Civilization V",purchase,1.0,0 -46785501,"Sid Meier's Civilization V",play,26.0,0 -46785501,"Age of Mythology Extended Edition",purchase,1.0,0 -46785501,"Age of Mythology Extended Edition",play,22.0,0 -46785501,"Supreme Commander 2",purchase,1.0,0 -46785501,"Supreme Commander 2",play,22.0,0 -46785501,"Company of Heroes 2",purchase,1.0,0 -46785501,"Company of Heroes 2",play,16.9,0 -46785501,"Earth 2160",purchase,1.0,0 -46785501,"Earth 2160",play,16.4,0 -46785501,"Age of Empires II HD Edition",purchase,1.0,0 -46785501,"Age of Empires II HD Edition",play,15.0,0 -46785501,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -46785501,"Warhammer 40,000 Dawn of War II",play,12.9,0 -46785501,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -46785501,"Sins of a Solar Empire Rebellion",play,12.9,0 -46785501,"Company of Heroes (New Steam Version)",purchase,1.0,0 -46785501,"Company of Heroes (New Steam Version)",play,11.1,0 -46785501,"Planetary Annihilation",purchase,1.0,0 -46785501,"Planetary Annihilation",play,10.0,0 -46785501,"Empire Total War",purchase,1.0,0 -46785501,"Empire Total War",play,8.5,0 -46785501,"Kingdom Wars",purchase,1.0,0 -46785501,"Kingdom Wars",play,5.6,0 -46785501,"Napoleon Total War",purchase,1.0,0 -46785501,"Napoleon Total War",play,5.5,0 -46785501,"Stronghold 3",purchase,1.0,0 -46785501,"Stronghold 3",play,5.4,0 -46785501,"Genesis Rising",purchase,1.0,0 -46785501,"Genesis Rising",play,4.0,0 -46785501,"Earth 2150 Trilogy",purchase,1.0,0 -46785501,"Earth 2150 Trilogy",play,3.6,0 -46785501,"Overlord",purchase,1.0,0 -46785501,"Overlord",play,3.5,0 -46785501,"Order of War",purchase,1.0,0 -46785501,"Order of War",play,3.2,0 -46785501,"Universe at War Earth Assault",purchase,1.0,0 -46785501,"Universe at War Earth Assault",play,3.0,0 -46785501,"CivCity Rome",purchase,1.0,0 -46785501,"CivCity Rome",play,3.0,0 -46785501,"Nexus The Jupiter Incident",purchase,1.0,0 -46785501,"Nexus The Jupiter Incident",play,1.8,0 -46785501,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -46785501,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,0.9,0 -46785501,"Aggression Europe Under Fire",purchase,1.0,0 -46785501,"Aggression Europe Under Fire",play,0.6,0 -46785501,"King Arthur II - The Role-playing Wargame",purchase,1.0,0 -46785501,"King Arthur II - The Role-playing Wargame",play,0.5,0 -46785501,"Original War",purchase,1.0,0 -46785501,"Original War",play,0.3,0 -46785501,"Age of Empires II HD The Forgotten",purchase,1.0,0 -46785501,"Company of Heroes",purchase,1.0,0 -46785501,"Company of Heroes Opposing Fronts",purchase,1.0,0 -46785501,"Company of Heroes Tales of Valor",purchase,1.0,0 -46785501,"Earth 2150 Lost Souls",purchase,1.0,0 -46785501,"Earth 2150 The Moon Project",purchase,1.0,0 -46785501,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -46785501,"Fallout New Vegas Dead Money",purchase,1.0,0 -46785501,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -46785501,"Robocraft",purchase,1.0,0 -46785501,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -46785501,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -46785501,"Supreme Commander 2 - Infinite War Battle Pack One",purchase,1.0,0 -46785501,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -46785501,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -46785501,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -46785501,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -288077180,"Heroes & Generals",purchase,1.0,0 -288077180,"Marvel Heroes 2015",purchase,1.0,0 -55745376,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -55745376,"Call of Duty Modern Warfare 2 - Multiplayer",play,124.0,0 -55745376,"Call of Duty Modern Warfare 2",purchase,1.0,0 -55745376,"Call of Duty Modern Warfare 2",play,27.0,0 -55745376,"Metro 2033",purchase,1.0,0 -55745376,"Metro 2033",play,0.2,0 -147619675,"Team Fortress 2",purchase,1.0,0 -147619675,"Team Fortress 2",play,0.5,0 -168900284,"Dota 2",purchase,1.0,0 -168900284,"Dota 2",play,22.0,0 -168473500,"Dota 2",purchase,1.0,0 -168473500,"Dota 2",play,2.2,0 -167233270,"Dota 2",purchase,1.0,0 -167233270,"Dota 2",play,1.3,0 -179418535,"Team Fortress 2",purchase,1.0,0 -179418535,"Team Fortress 2",play,471.0,0 -205452022,"Dota 2",purchase,1.0,0 -205452022,"Dota 2",play,6.0,0 -103563010,"Dota 2",purchase,1.0,0 -103563010,"Dota 2",play,3353.0,0 -103563010,"Team Fortress 2",purchase,1.0,0 -103563010,"Team Fortress 2",play,38.0,0 -103563010,"Rome Total War",purchase,1.0,0 -103563010,"Rome Total War",play,27.0,0 -103563010,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -103563010,"Star Wars - Jedi Knight II Jedi Outcast",play,22.0,0 -103563010,"Football Manager 2013",purchase,1.0,0 -103563010,"Football Manager 2013",play,20.0,0 -103563010,"Sid Meier's Civilization V",purchase,1.0,0 -103563010,"Sid Meier's Civilization V",play,12.4,0 -103563010,"Borderlands 2",purchase,1.0,0 -103563010,"Borderlands 2",play,6.4,0 -103563010,"Europa Universalis IV",purchase,1.0,0 -103563010,"Europa Universalis IV",play,5.9,0 -103563010,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -103563010,"The Elder Scrolls IV Oblivion ",play,3.5,0 -103563010,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -103563010,"Star Wars Jedi Knight Jedi Academy",play,1.8,0 -103563010,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -103563010,"Warhammer 40,000 Dawn of War II",play,0.8,0 -103563010,"The Legend of Korra",purchase,1.0,0 -103563010,"The Legend of Korra",play,0.6,0 -103563010,"Rome Total War - Alexander",purchase,1.0,0 -170489182,"Dota 2",purchase,1.0,0 -170489182,"Dota 2",play,0.2,0 -36502549,"Borderlands 2",purchase,1.0,0 -36502549,"Borderlands 2",play,381.0,0 -36502549,"Team Fortress 2",purchase,1.0,0 -36502549,"Team Fortress 2",play,350.0,0 -36502549,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -36502549,"Sid Meier's Civilization IV Beyond the Sword",play,313.0,0 -36502549,"Marvel Heroes 2015",purchase,1.0,0 -36502549,"Marvel Heroes 2015",play,229.0,0 -36502549,"Magic 2015",purchase,1.0,0 -36502549,"Magic 2015",play,206.0,0 -36502549,"XCOM Enemy Unknown",purchase,1.0,0 -36502549,"XCOM Enemy Unknown",play,164.0,0 -36502549,"Guild Wars",purchase,1.0,0 -36502549,"Guild Wars",play,151.0,0 -36502549,"Orcs Must Die! 2",purchase,1.0,0 -36502549,"Orcs Must Die! 2",play,147.0,0 -36502549,"FINAL FANTASY VII",purchase,1.0,0 -36502549,"FINAL FANTASY VII",play,133.0,0 -36502549,"Borderlands",purchase,1.0,0 -36502549,"Borderlands",play,117.0,0 -36502549,"Torchlight II",purchase,1.0,0 -36502549,"Torchlight II",play,104.0,0 -36502549,"Magic 2014 ",purchase,1.0,0 -36502549,"Magic 2014 ",play,93.0,0 -36502549,"Magic Duels",purchase,1.0,0 -36502549,"Magic Duels",play,83.0,0 -36502549,"Darksiders II",purchase,1.0,0 -36502549,"Darksiders II",play,71.0,0 -36502549,"Gauntlet ",purchase,1.0,0 -36502549,"Gauntlet ",play,66.0,0 -36502549,"Terraria",purchase,1.0,0 -36502549,"Terraria",play,59.0,0 -36502549,"Bastion",purchase,1.0,0 -36502549,"Bastion",play,20.0,0 -36502549,"On the Rain-Slick Precipice of Darkness, Episode Two",purchase,1.0,0 -36502549,"On the Rain-Slick Precipice of Darkness, Episode Two",play,19.5,0 -36502549,"Castle Crashers",purchase,1.0,0 -36502549,"Castle Crashers",play,12.7,0 -36502549,"Portal 2",purchase,1.0,0 -36502549,"Portal 2",play,12.2,0 -36502549,"Sacred Citadel",purchase,1.0,0 -36502549,"Sacred Citadel",play,11.0,0 -36502549,"DC Universe Online",purchase,1.0,0 -36502549,"DC Universe Online",play,10.6,0 -36502549,"Magicka",purchase,1.0,0 -36502549,"Magicka",play,9.2,0 -36502549,"On the Rain-Slick Precipice of Darkness, Episode One",purchase,1.0,0 -36502549,"On the Rain-Slick Precipice of Darkness, Episode One",play,8.6,0 -36502549,"Prison Architect",purchase,1.0,0 -36502549,"Prison Architect",play,7.1,0 -36502549,"Dead Island Riptide",purchase,1.0,0 -36502549,"Dead Island Riptide",play,5.0,0 -36502549,"Left 4 Dead",purchase,1.0,0 -36502549,"Left 4 Dead",play,4.9,0 -36502549,"Darksiders",purchase,1.0,0 -36502549,"Darksiders",play,4.6,0 -36502549,"Saints Row The Third",purchase,1.0,0 -36502549,"Saints Row The Third",play,1.7,0 -36502549,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -36502549,"Just Cause 2 Multiplayer Mod",play,1.3,0 -36502549,"Portal",purchase,1.0,0 -36502549,"Portal",play,0.9,0 -36502549,"Strider",purchase,1.0,0 -36502549,"Strider",play,0.8,0 -36502549,"E.Y.E Divine Cybermancy",purchase,1.0,0 -36502549,"E.Y.E Divine Cybermancy",play,0.7,0 -36502549,"BioShock 2",purchase,1.0,0 -36502549,"BioShock 2",play,0.4,0 -36502549,"Saints Row IV",purchase,1.0,0 -36502549,"Saints Row IV",play,0.4,0 -36502549,"Geometry Wars Retro Evolved",purchase,1.0,0 -36502549,"Geometry Wars Retro Evolved",play,0.4,0 -36502549,"FORCED",purchase,1.0,0 -36502549,"FORCED",play,0.3,0 -36502549,"Dungeons & Dragons Chronicles of Mystara",purchase,1.0,0 -36502549,"Dungeons & Dragons Chronicles of Mystara",play,0.2,0 -36502549,"BioShock",purchase,1.0,0 -36502549,"BioShock",play,0.2,0 -36502549,"Savage Lands",purchase,1.0,0 -36502549,"Savage Lands",play,0.1,0 -36502549,"Tropico 4",purchase,1.0,0 -36502549,"Tropico 4",play,0.1,0 -36502549,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -36502549,"Fable III",purchase,1.0,0 -36502549,"Battlefield Bad Company 2",purchase,1.0,0 -36502549,"BioShock Infinite",purchase,1.0,0 -36502549,"Darksiders II Deathinitive Edition",purchase,1.0,0 -36502549,"Darksiders II Soundtrack",purchase,1.0,0 -36502549,"Darksiders Soundtrack",purchase,1.0,0 -36502549,"Guild Wars Trilogy",purchase,1.0,0 -36502549,"Half-Life 2",purchase,1.0,0 -36502549,"Half-Life 2 Episode One",purchase,1.0,0 -36502549,"Half-Life 2 Episode Two",purchase,1.0,0 -36502549,"Half-Life 2 Lost Coast",purchase,1.0,0 -36502549,"Just Cause 2",purchase,1.0,0 -36502549,"Sid Meier's Civilization IV",purchase,1.0,0 -36502549,"Sid Meier's Civilization IV",purchase,1.0,0 -36502549,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -36502549,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -36502549,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -36502549,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -36502549,"Toy Soldiers",purchase,1.0,0 -36502549,"XCOM Enemy Within",purchase,1.0,0 -154485753,"Football Manager 2014",purchase,1.0,0 -154485753,"Football Manager 2014",play,485.0,0 -154485753,"Football Manager 2016",purchase,1.0,0 -154485753,"Football Manager 2016",play,80.0,0 -154485753,"Hitman Absolution",purchase,1.0,0 -154485753,"Hitman Absolution",play,53.0,0 -154485753,"Tomb Raider",purchase,1.0,0 -154485753,"Tomb Raider",play,11.5,0 -154485753,"Batman Arkham City GOTY",purchase,1.0,0 -154485753,"Batman Arkham City GOTY",play,2.2,0 -154485753,"Mount & Blade With Fire and Sword",purchase,1.0,0 -154485753,"Mount & Blade With Fire and Sword",play,0.9,0 -154485753,"Darksiders",purchase,1.0,0 -154485753,"Darksiders",play,0.9,0 -154485753,"Alan Wake",purchase,1.0,0 -154485753,"Alan Wake",play,0.5,0 -185342941,"Unturned",purchase,1.0,0 -185342941,"Unturned",play,5.5,0 -201656921,"Grand Theft Auto V",purchase,1.0,0 -201656921,"Grand Theft Auto V",play,208.0,0 -201656921,"ARK Survival Evolved",purchase,1.0,0 -201656921,"ARK Survival Evolved",play,75.0,0 -201656921,"Call of Duty Advanced Warfare",purchase,1.0,0 -201656921,"Call of Duty Advanced Warfare",play,23.0,0 -201656921,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -201656921,"Call of Duty Advanced Warfare - Multiplayer",play,20.0,0 -201656921,"War Thunder",purchase,1.0,0 -201656921,"War Thunder",play,0.9,0 -280352750,"Dota 2",purchase,1.0,0 -280352750,"Dota 2",play,2.5,0 -280352750,"FreeStyle2 Street Basketball",purchase,1.0,0 -280352750,"Free to Play",purchase,1.0,0 -176696984,"Dota 2",purchase,1.0,0 -176696984,"Dota 2",play,0.4,0 -194063322,"Dota 2",purchase,1.0,0 -194063322,"Dota 2",play,9.2,0 -194063322,"Free to Play",purchase,1.0,0 -64936592,"Metro 2033",purchase,1.0,0 -113186568,"Counter-Strike Global Offensive",purchase,1.0,0 -113186568,"Counter-Strike Global Offensive",play,421.0,0 -113186568,"Clicker Heroes",purchase,1.0,0 -113186568,"Clicker Heroes",play,117.0,0 -113186568,"Left 4 Dead 2",purchase,1.0,0 -113186568,"Left 4 Dead 2",play,79.0,0 -113186568,"Assassin's Creed III",purchase,1.0,0 -113186568,"Assassin's Creed III",play,40.0,0 -113186568,"Borderlands 2",purchase,1.0,0 -113186568,"Borderlands 2",play,16.0,0 -113186568,"Sniper Elite 3",purchase,1.0,0 -113186568,"Sniper Elite 3",play,6.6,0 -113186568,"Team Fortress 2",purchase,1.0,0 -113186568,"Team Fortress 2",play,1.9,0 -113186568,"Warframe",purchase,1.0,0 -113186568,"Warframe",play,1.3,0 -113186568,"No More Room in Hell",purchase,1.0,0 -113186568,"No More Room in Hell",play,0.6,0 -283815388,"Trove",purchase,1.0,0 -283815388,"Trove",play,1.3,0 -283815388,"Fallen Earth",purchase,1.0,0 -283815388,"Fallen Earth",play,1.1,0 -283815388,"Dota 2",purchase,1.0,0 -283815388,"Dota 2",play,1.1,0 -191244808,"Garry's Mod",purchase,1.0,0 -191244808,"Garry's Mod",play,41.0,0 -191244808,"Unturned",purchase,1.0,0 -191244808,"Unturned",play,1.7,0 -191244808,"Team Fortress 2",purchase,1.0,0 -191244808,"Team Fortress 2",play,1.6,0 -191244808,"Transformice",purchase,1.0,0 -191244808,"Transformice",play,1.6,0 -191244808,"Dota 2",purchase,1.0,0 -191244808,"Dota 2",play,1.0,0 -191244808,"AdVenture Capitalist",purchase,1.0,0 -191244808,"AdVenture Capitalist",play,0.9,0 -191244808,"Trove",purchase,1.0,0 -191244808,"Trove",play,0.5,0 -191244808,"Robocraft",purchase,1.0,0 -191244808,"Robocraft",play,0.3,0 -191244808,"QuestRun",purchase,1.0,0 -191244808,"Copa Petrobras de Marcas",purchase,1.0,0 -191244808,"Dirty Bomb",purchase,1.0,0 -191244808,"theHunter",purchase,1.0,0 -191244808,"War Thunder",purchase,1.0,0 -216042414,"Dota 2",purchase,1.0,0 -216042414,"Dota 2",play,178.0,0 -216042414,"Audition Online",purchase,1.0,0 -216042414,"Blacklight Retribution",purchase,1.0,0 -216042414,"Firefall",purchase,1.0,0 -216042414,"FreeStyle2 Street Basketball",purchase,1.0,0 -216042414,"Gotham City Impostors Free To Play",purchase,1.0,0 -216042414,"HAWKEN",purchase,1.0,0 -216042414,"Heroes & Generals",purchase,1.0,0 -216042414,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -216042414,"Neverwinter",purchase,1.0,0 -216042414,"PlanetSide 2",purchase,1.0,0 -216042414,"RIFT",purchase,1.0,0 -216042414,"TERA",purchase,1.0,0 -216042414,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -216042414,"Trove",purchase,1.0,0 -216042414,"Warframe",purchase,1.0,0 -194057051,"Dota 2",purchase,1.0,0 -194057051,"Dota 2",play,23.0,0 -194057051,"Free to Play",purchase,1.0,0 -96249915,"Warframe",purchase,1.0,0 -96249915,"Warframe",play,62.0,0 -96249915,"Aura Kingdom",purchase,1.0,0 -96249915,"Aura Kingdom",play,36.0,0 -96249915,"Spiral Knights",purchase,1.0,0 -96249915,"Spiral Knights",play,17.7,0 -96249915,"Champions Online",purchase,1.0,0 -96249915,"Champions Online",play,17.1,0 -96249915,"World of Guns Gun Disassembly",purchase,1.0,0 -96249915,"World of Guns Gun Disassembly",play,16.6,0 -96249915,"Defiance",purchase,1.0,0 -96249915,"Defiance",play,6.9,0 -96249915,"Dota 2",purchase,1.0,0 -96249915,"Dota 2",play,4.2,0 -96249915,"Ragnarok Online 2",purchase,1.0,0 -96249915,"Ragnarok Online 2",play,3.5,0 -96249915,"GunZ 2 The Second Duel",purchase,1.0,0 -96249915,"GunZ 2 The Second Duel",play,3.3,0 -96249915,"You Have to Win the Game",purchase,1.0,0 -96249915,"You Have to Win the Game",play,0.9,0 -96249915,"Unturned",purchase,1.0,0 -96249915,"Unturned",play,0.9,0 -96249915,"Spartans Vs Zombies Defense",purchase,1.0,0 -96249915,"Spartans Vs Zombies Defense",play,0.7,0 -96249915,"RPG MO",purchase,1.0,0 -96249915,"RPG MO",play,0.3,0 -96249915,"Lamia Must Die",purchase,1.0,0 -96249915,"Lamia Must Die",play,0.3,0 -96249915,"Loadout",purchase,1.0,0 -96249915,"Loadout",play,0.2,0 -96249915,"Dead Island Epidemic",purchase,1.0,0 -96249915,"Dead Island Epidemic",play,0.2,0 -96249915,"Dungeons & Dragons Online",purchase,1.0,0 -96249915,"Ragnarok",purchase,1.0,0 -96249915,"Royal Quest",purchase,1.0,0 -135967185,"Dota 2",purchase,1.0,0 -135967185,"Dota 2",play,0.2,0 -44156169,"Team Fortress 2",purchase,1.0,0 -44156169,"Team Fortress 2",play,296.0,0 -44156169,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -44156169,"Call of Duty Modern Warfare 2 - Multiplayer",play,57.0,0 -44156169,"APB Reloaded",purchase,1.0,0 -44156169,"APB Reloaded",play,21.0,0 -44156169,"Call of Duty Modern Warfare 2",purchase,1.0,0 -44156169,"Call of Duty Modern Warfare 2",play,9.1,0 -44156169,"PAYDAY 2",purchase,1.0,0 -44156169,"PAYDAY 2",play,9.1,0 -44156169,"Awesomenauts",purchase,1.0,0 -44156169,"Awesomenauts",play,1.9,0 -44156169,"Half-Life 2",purchase,1.0,0 -44156169,"Half-Life 2",play,1.6,0 -44156169,"Double Action Boogaloo",purchase,1.0,0 -44156169,"Double Action Boogaloo",play,0.4,0 -44156169,"CrimeCraft GangWars",purchase,1.0,0 -44156169,"CrimeCraft GangWars",play,0.3,0 -44156169,"Half-Life 2 Episode One",purchase,1.0,0 -44156169,"Half-Life 2 Episode One",play,0.2,0 -44156169,"BLOCKADE 3D",purchase,1.0,0 -44156169,"Fallen Earth",purchase,1.0,0 -44156169,"Fistful of Frags",purchase,1.0,0 -44156169,"Half-Life 2 Episode Two",purchase,1.0,0 -44156169,"Half-Life 2 Lost Coast",purchase,1.0,0 -44156169,"Lambda Wars Beta",purchase,1.0,0 -44156169,"Portal",purchase,1.0,0 -44156169,"Tactical Intervention",purchase,1.0,0 -44156169,"Unturned",purchase,1.0,0 -111212436,"Mount & Blade Warband",purchase,1.0,0 -111212436,"Mount & Blade Warband",play,115.0,0 -111212436,"Team Fortress 2",purchase,1.0,0 -111212436,"Team Fortress 2",play,105.0,0 -111212436,"Unturned",purchase,1.0,0 -111212436,"Unturned",play,101.0,0 -111212436,"Counter-Strike Global Offensive",purchase,1.0,0 -111212436,"Counter-Strike Global Offensive",play,81.0,0 -111212436,"Garry's Mod",purchase,1.0,0 -111212436,"Garry's Mod",play,71.0,0 -111212436,"Space Engineers",purchase,1.0,0 -111212436,"Space Engineers",play,25.0,0 -111212436,"Robocraft",purchase,1.0,0 -111212436,"Robocraft",play,25.0,0 -111212436,"Prison Architect",purchase,1.0,0 -111212436,"Prison Architect",play,23.0,0 -111212436,"No More Room in Hell",purchase,1.0,0 -111212436,"No More Room in Hell",play,22.0,0 -111212436,"DC Universe Online",purchase,1.0,0 -111212436,"DC Universe Online",play,18.6,0 -111212436,"Starbound",purchase,1.0,0 -111212436,"Starbound",play,15.9,0 -111212436,"Dota 2",purchase,1.0,0 -111212436,"Dota 2",play,15.2,0 -111212436,"Don't Starve Together Beta",purchase,1.0,0 -111212436,"Don't Starve Together Beta",play,12.5,0 -111212436,"How to Survive",purchase,1.0,0 -111212436,"How to Survive",play,12.1,0 -111212436,"ArcheAge",purchase,1.0,0 -111212436,"ArcheAge",play,10.8,0 -111212436,"Half-Life 2",purchase,1.0,0 -111212436,"Half-Life 2",play,8.1,0 -111212436,"Magicka Wizard Wars",purchase,1.0,0 -111212436,"Magicka Wizard Wars",play,6.9,0 -111212436,"BioShock Infinite",purchase,1.0,0 -111212436,"BioShock Infinite",play,6.7,0 -111212436,"BioShock",purchase,1.0,0 -111212436,"BioShock",play,5.3,0 -111212436,"MapleStory",purchase,1.0,0 -111212436,"MapleStory",play,3.9,0 -111212436,"Spiral Knights",purchase,1.0,0 -111212436,"Spiral Knights",play,3.9,0 -111212436,"Far Cry 3",purchase,1.0,0 -111212436,"Far Cry 3",play,3.8,0 -111212436,"Medieval Engineers",purchase,1.0,0 -111212436,"Medieval Engineers",play,3.4,0 -111212436,"PAYDAY 2",purchase,1.0,0 -111212436,"PAYDAY 2",play,3.0,0 -111212436,"HAWKEN",purchase,1.0,0 -111212436,"HAWKEN",play,2.2,0 -111212436,"PlanetSide 2",purchase,1.0,0 -111212436,"PlanetSide 2",play,1.6,0 -111212436,"Trove",purchase,1.0,0 -111212436,"Trove",play,1.5,0 -111212436,"APB Reloaded",purchase,1.0,0 -111212436,"APB Reloaded",play,1.3,0 -111212436,"Codename CURE",purchase,1.0,0 -111212436,"Codename CURE",play,0.8,0 -111212436,"Don't Starve",purchase,1.0,0 -111212436,"Don't Starve",play,0.7,0 -111212436,"BioShock 2",purchase,1.0,0 -111212436,"BioShock 2",play,0.7,0 -111212436,"Villagers and Heroes",purchase,1.0,0 -111212436,"Villagers and Heroes",play,0.5,0 -111212436,"Half-Life 2 Lost Coast",purchase,1.0,0 -111212436,"Half-Life 2 Lost Coast",play,0.5,0 -111212436,"War Thunder",purchase,1.0,0 -111212436,"War Thunder",play,0.4,0 -111212436,"theHunter",purchase,1.0,0 -111212436,"theHunter",play,0.4,0 -111212436,"Transformice",purchase,1.0,0 -111212436,"Transformice",play,0.2,0 -111212436,"Blacklight Retribution",purchase,1.0,0 -111212436,"AdVenture Capitalist",purchase,1.0,0 -111212436,"Don't Starve Reign of Giants",purchase,1.0,0 -111212436,"Starbound - Unstable",purchase,1.0,0 -111212436,"Survarium",purchase,1.0,0 -111212436,"WARMODE",purchase,1.0,0 -43240189,"Football Manager 2009",purchase,1.0,0 -43240189,"Football Manager 2009",play,1788.0,0 -43240189,"Football Manager 2010",purchase,1.0,0 -43240189,"Football Manager 2010",play,15.5,0 -60210313,"The Elder Scrolls V Skyrim",purchase,1.0,0 -60210313,"The Elder Scrolls V Skyrim",play,427.0,0 -60210313,"Saints Row 2",purchase,1.0,0 -60210313,"Saints Row 2",play,129.0,0 -60210313,"Half-Life 2",purchase,1.0,0 -60210313,"Half-Life 2",play,35.0,0 -60210313,"RIFT",purchase,1.0,0 -60210313,"RIFT",play,33.0,0 -60210313,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -60210313,"Vampire The Masquerade - Bloodlines",play,29.0,0 -60210313,"Mafia II",purchase,1.0,0 -60210313,"Mafia II",play,29.0,0 -60210313,"Loadout",purchase,1.0,0 -60210313,"Loadout",play,26.0,0 -60210313,"Path of Exile",purchase,1.0,0 -60210313,"Path of Exile",play,11.3,0 -60210313,"ArcheAge",purchase,1.0,0 -60210313,"ArcheAge",play,10.4,0 -60210313,"Half-Life 2 Episode One",purchase,1.0,0 -60210313,"Half-Life 2 Episode One",play,9.2,0 -60210313,"Monkey Island 2 Special Edition",purchase,1.0,0 -60210313,"Monkey Island 2 Special Edition",play,7.6,0 -60210313,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -60210313,"The Secret of Monkey Island Special Edition",play,7.4,0 -60210313,"Half-Life 2 Episode Two",purchase,1.0,0 -60210313,"Half-Life 2 Episode Two",play,6.7,0 -60210313,"Portal",purchase,1.0,0 -60210313,"Portal",play,5.3,0 -60210313,"Don't Starve",purchase,1.0,0 -60210313,"Don't Starve",play,4.5,0 -60210313,"The Stanley Parable",purchase,1.0,0 -60210313,"The Stanley Parable",play,3.0,0 -60210313,"Transistor",purchase,1.0,0 -60210313,"Transistor",play,2.2,0 -60210313,"Neverwinter",purchase,1.0,0 -60210313,"Neverwinter",play,2.1,0 -60210313,"Half-Life 2 Lost Coast",purchase,1.0,0 -60210313,"Half-Life 2 Lost Coast",play,0.6,0 -60210313,"Alien Swarm",purchase,1.0,0 -60210313,"Alien Swarm",play,0.6,0 -60210313,"Dwarfs F2P",purchase,1.0,0 -60210313,"Dwarfs F2P",play,0.5,0 -60210313,"Frozen Free Fall Snowball Fight",purchase,1.0,0 -60210313,"Frozen Free Fall Snowball Fight",play,0.5,0 -60210313,"Realm of the Mad God",purchase,1.0,0 -60210313,"Realm of the Mad God",play,0.4,0 -60210313,"FEZ",purchase,1.0,0 -60210313,"FEZ",play,0.2,0 -60210313,"Dear Esther",purchase,1.0,0 -60210313,"Don't Starve Reign of Giants",purchase,1.0,0 -60210313,"Fallout New Vegas",purchase,1.0,0 -60210313,"Grand Theft Auto San Andreas",purchase,1.0,0 -60210313,"Grand Theft Auto San Andreas",purchase,1.0,0 -60210313,"Half-Life 2 Deathmatch",purchase,1.0,0 -60210313,"Half-Life Deathmatch Source",purchase,1.0,0 -60210313,"Left 4 Dead 2",purchase,1.0,0 -60210313,"Mafia",purchase,1.0,0 -60210313,"Max Gentlemen",purchase,1.0,0 -60210313,"Metro 2033",purchase,1.0,0 -60210313,"Portal 2",purchase,1.0,0 -60210313,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -60210313,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -60210313,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -60210313,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -60210313,"The Plan",purchase,1.0,0 -60210313,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -60210313,"The Witcher Enhanced Edition",purchase,1.0,0 -93882483,"Counter-Strike Global Offensive",purchase,1.0,0 -93882483,"Counter-Strike Global Offensive",play,156.0,0 -93882483,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -93882483,"Call of Duty Modern Warfare 3 - Multiplayer",play,141.0,0 -93882483,"Team Fortress 2",purchase,1.0,0 -93882483,"Team Fortress 2",play,131.0,0 -93882483,"Rust",purchase,1.0,0 -93882483,"Rust",play,79.0,0 -93882483,"Left 4 Dead 2",purchase,1.0,0 -93882483,"Left 4 Dead 2",play,71.0,0 -93882483,"Call of Duty Modern Warfare 3",purchase,1.0,0 -93882483,"Call of Duty Modern Warfare 3",play,33.0,0 -93882483,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -93882483,"Call of Duty Black Ops II - Multiplayer",play,31.0,0 -93882483,"Call of Duty Black Ops II",purchase,1.0,0 -93882483,"Call of Duty Black Ops II",play,20.0,0 -93882483,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -93882483,"Call of Duty Black Ops II - Zombies",play,17.1,0 -93882483,"Unturned",purchase,1.0,0 -93882483,"Unturned",play,8.7,0 -93882483,"Alien Swarm",purchase,1.0,0 -93882483,"Alien Swarm",play,3.1,0 -93882483,"Pirates, Vikings, & Knights II",purchase,1.0,0 -93882483,"Pirates, Vikings, & Knights II",play,1.9,0 -93882483,"Bloody Trapland",purchase,1.0,0 -93882483,"Bloody Trapland",play,0.5,0 -93882483,"Heroes & Generals",purchase,1.0,0 -93882483,"Heroes & Generals",play,0.4,0 -93882483,"BLOCKADE 3D",purchase,1.0,0 -93882483,"Brick-Force",purchase,1.0,0 -93882483,"PAYDAY The Heist",purchase,1.0,0 -93882483,"Without Within",purchase,1.0,0 -96400571,"The Elder Scrolls V Skyrim",purchase,1.0,0 -96400571,"The Elder Scrolls V Skyrim",play,732.0,0 -96400571,"Counter-Strike Global Offensive",purchase,1.0,0 -96400571,"Counter-Strike Global Offensive",play,321.0,0 -96400571,"Arma 2 Operation Arrowhead",purchase,1.0,0 -96400571,"Arma 2 Operation Arrowhead",play,303.0,0 -96400571,"Just Cause 2",purchase,1.0,0 -96400571,"Just Cause 2",play,270.0,0 -96400571,"Far Cry 3",purchase,1.0,0 -96400571,"Far Cry 3",play,154.0,0 -96400571,"Arma 3",purchase,1.0,0 -96400571,"Arma 3",play,142.0,0 -96400571,"Rust",purchase,1.0,0 -96400571,"Rust",play,113.0,0 -96400571,"Terraria",purchase,1.0,0 -96400571,"Terraria",play,106.0,0 -96400571,"ARK Survival Evolved",purchase,1.0,0 -96400571,"ARK Survival Evolved",play,100.0,0 -96400571,"Arma 2",purchase,1.0,0 -96400571,"Arma 2",play,87.0,0 -96400571,"Mount & Blade Warband",purchase,1.0,0 -96400571,"Mount & Blade Warband",play,75.0,0 -96400571,"PlanetSide 2",purchase,1.0,0 -96400571,"PlanetSide 2",play,72.0,0 -96400571,"Unturned",purchase,1.0,0 -96400571,"Unturned",play,65.0,0 -96400571,"Dungeon Defenders",purchase,1.0,0 -96400571,"Dungeon Defenders",play,53.0,0 -96400571,"The Mighty Quest For Epic Loot",purchase,1.0,0 -96400571,"The Mighty Quest For Epic Loot",play,48.0,0 -96400571,"Sid Meier's Civilization V",purchase,1.0,0 -96400571,"Sid Meier's Civilization V",play,44.0,0 -96400571,"DRAGON BALL XENOVERSE",purchase,1.0,0 -96400571,"DRAGON BALL XENOVERSE",play,38.0,0 -96400571,"The Binding of Isaac",purchase,1.0,0 -96400571,"The Binding of Isaac",play,36.0,0 -96400571,"Garry's Mod",purchase,1.0,0 -96400571,"Garry's Mod",play,34.0,0 -96400571,"Star Trek Online",purchase,1.0,0 -96400571,"Star Trek Online",play,32.0,0 -96400571,"Firefall",purchase,1.0,0 -96400571,"Firefall",play,31.0,0 -96400571,"Natural Selection 2",purchase,1.0,0 -96400571,"Natural Selection 2",play,26.0,0 -96400571,"Don't Starve Together Beta",purchase,1.0,0 -96400571,"Don't Starve Together Beta",play,25.0,0 -96400571,"RAGE",purchase,1.0,0 -96400571,"RAGE",play,22.0,0 -96400571,"Team Fortress 2",purchase,1.0,0 -96400571,"Team Fortress 2",play,17.5,0 -96400571,"TERA",purchase,1.0,0 -96400571,"TERA",play,17.1,0 -96400571,"7 Days to Die",purchase,1.0,0 -96400571,"7 Days to Die",play,14.6,0 -96400571,"Salt",purchase,1.0,0 -96400571,"Salt",play,12.6,0 -96400571,"Overgrowth",purchase,1.0,0 -96400571,"Overgrowth",play,12.3,0 -96400571,"Tribes Ascend",purchase,1.0,0 -96400571,"Tribes Ascend",play,10.9,0 -96400571,"Robocraft",purchase,1.0,0 -96400571,"Robocraft",play,8.8,0 -96400571,"Mirror's Edge",purchase,1.0,0 -96400571,"Mirror's Edge",play,8.6,0 -96400571,"Reign Of Kings",purchase,1.0,0 -96400571,"Reign Of Kings",play,8.3,0 -96400571,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -96400571,"Fallout 3 - Game of the Year Edition",play,7.8,0 -96400571,"Nancy Drew Danger By Design",purchase,1.0,0 -96400571,"Nancy Drew Danger By Design",play,7.2,0 -96400571,"XCOM Enemy Unknown",purchase,1.0,0 -96400571,"XCOM Enemy Unknown",play,6.4,0 -96400571,"Gunpoint",purchase,1.0,0 -96400571,"Gunpoint",play,5.9,0 -96400571,"Turbo Dismount",purchase,1.0,0 -96400571,"Turbo Dismount",play,5.9,0 -96400571,"The Escapists",purchase,1.0,0 -96400571,"The Escapists",play,5.7,0 -96400571,"Planetary Annihilation",purchase,1.0,0 -96400571,"Planetary Annihilation",play,5.4,0 -96400571,"Euro Truck Simulator 2",purchase,1.0,0 -96400571,"Euro Truck Simulator 2",play,5.2,0 -96400571,"Dishonored",purchase,1.0,0 -96400571,"Dishonored",play,5.2,0 -96400571,"Total War ROME II - Emperor Edition",purchase,1.0,0 -96400571,"Total War ROME II - Emperor Edition",play,4.9,0 -96400571,"Surgeon Simulator",purchase,1.0,0 -96400571,"Surgeon Simulator",play,4.1,0 -96400571,"Loadout",purchase,1.0,0 -96400571,"Loadout",play,4.0,0 -96400571,"Don't Starve",purchase,1.0,0 -96400571,"Don't Starve",play,3.3,0 -96400571,"Dota 2",purchase,1.0,0 -96400571,"Dota 2",play,3.2,0 -96400571,"Floating Point",purchase,1.0,0 -96400571,"Floating Point",play,2.9,0 -96400571,"Super Hexagon",purchase,1.0,0 -96400571,"Super Hexagon",play,2.8,0 -96400571,"Receiver",purchase,1.0,0 -96400571,"Receiver",play,2.7,0 -96400571,"The Binding of Isaac Rebirth",purchase,1.0,0 -96400571,"The Binding of Isaac Rebirth",play,2.4,0 -96400571,"Dwarfs F2P",purchase,1.0,0 -96400571,"Dwarfs F2P",play,2.4,0 -96400571,"Super Crate Box",purchase,1.0,0 -96400571,"Super Crate Box",play,2.3,0 -96400571,"SMITE",purchase,1.0,0 -96400571,"SMITE",play,1.9,0 -96400571,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -96400571,"Just Cause 2 Multiplayer Mod",play,1.9,0 -96400571,"Nosgoth",purchase,1.0,0 -96400571,"Nosgoth",play,1.9,0 -96400571,"FTL Faster Than Light",purchase,1.0,0 -96400571,"FTL Faster Than Light",play,1.8,0 -96400571,"Might & Magic Duel of Champions",purchase,1.0,0 -96400571,"Might & Magic Duel of Champions",play,1.8,0 -96400571,"Cook, Serve, Delicious!",purchase,1.0,0 -96400571,"Cook, Serve, Delicious!",play,1.7,0 -96400571,"Five Nights at Freddy's",purchase,1.0,0 -96400571,"Five Nights at Freddy's",play,1.6,0 -96400571,"Tropico 4",purchase,1.0,0 -96400571,"Tropico 4",play,1.1,0 -96400571,"Five Nights at Freddy's 3",purchase,1.0,0 -96400571,"Five Nights at Freddy's 3",play,0.9,0 -96400571,"PixelJunk Shooter",purchase,1.0,0 -96400571,"PixelJunk Shooter",play,0.9,0 -96400571,"The Lord of the Rings Online",purchase,1.0,0 -96400571,"The Lord of the Rings Online",play,0.8,0 -96400571,"Universe Sandbox",purchase,1.0,0 -96400571,"Universe Sandbox",play,0.7,0 -96400571,"Organ Trail Director's Cut",purchase,1.0,0 -96400571,"Organ Trail Director's Cut",play,0.6,0 -96400571,"Sir, You Are Being Hunted",purchase,1.0,0 -96400571,"Sir, You Are Being Hunted",play,0.5,0 -96400571,"Left 4 Dead 2",purchase,1.0,0 -96400571,"Left 4 Dead 2",play,0.4,0 -96400571,"Rock of Ages",purchase,1.0,0 -96400571,"Rock of Ages",play,0.4,0 -96400571,"Counter-Strike Source",purchase,1.0,0 -96400571,"Counter-Strike Source",play,0.4,0 -96400571,"Only If",purchase,1.0,0 -96400571,"Only If",play,0.3,0 -96400571,"Counter-Strike Condition Zero",purchase,1.0,0 -96400571,"Counter-Strike Condition Zero",play,0.3,0 -96400571,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -96400571,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,0.2,0 -96400571,"Prison Architect",purchase,1.0,0 -96400571,"Prison Architect",play,0.2,0 -96400571,"Banished",purchase,1.0,0 -96400571,"Banished",play,0.1,0 -96400571,"Dungeons & Dragons Online",purchase,1.0,0 -96400571,"Dungeons & Dragons Online",play,0.1,0 -96400571,"Arma 2 DayZ Mod",purchase,1.0,0 -96400571,"Arma 3 Zeus",purchase,1.0,0 -96400571,"Counter-Strike",purchase,1.0,0 -96400571,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -96400571,"Don't Starve Reign of Giants",purchase,1.0,0 -96400571,"Heroes & Generals",purchase,1.0,0 -96400571,"Out of the Park Baseball 14",purchase,1.0,0 -96400571,"Planetary Annihilation - Digital Deluxe Bundle",purchase,1.0,0 -96400571,"Planetary Annihilation - Original Soundtrack",purchase,1.0,0 -96400571,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -96400571,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -96400571,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -96400571,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -96400571,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -96400571,"XCOM Enemy Within",purchase,1.0,0 -256296627,"Dragons and Titans",purchase,1.0,0 -172771532,"Robocraft",purchase,1.0,0 -172771532,"Robocraft",play,83.0,0 -172771532,"Transformice",purchase,1.0,0 -172771532,"Transformice",play,31.0,0 -172771532,"GunZ 2 The Second Duel",purchase,1.0,0 -172771532,"GunZ 2 The Second Duel",play,30.0,0 -172771532,"WAKFU",purchase,1.0,0 -172771532,"WAKFU",play,5.2,0 -172771532,"Zombies Monsters Robots",purchase,1.0,0 -172771532,"Zombies Monsters Robots",play,2.5,0 -172771532,"TDP4Team Battle",purchase,1.0,0 -172771532,"TDP4Team Battle",play,1.9,0 -172771532,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -172771532,"Tom Clancy's Ghost Recon Phantoms - NA",play,1.1,0 -172771532,"Dota 2",purchase,1.0,0 -172771532,"Dota 2",play,1.1,0 -172771532,"Spiral Knights",purchase,1.0,0 -172771532,"Spiral Knights",play,0.7,0 -172771532,"Warframe",purchase,1.0,0 -172771532,"Warframe",play,0.6,0 -172771532,"Unturned",purchase,1.0,0 -172771532,"Unturned",play,0.4,0 -172771532,"Running Shadow",purchase,1.0,0 -172771532,"Running Shadow",play,0.4,0 -172771532,"theHunter",purchase,1.0,0 -172771532,"theHunter",play,0.3,0 -172771532,"Loadout Campaign Beta",purchase,1.0,0 -172771532,"Loadout Campaign Beta",play,0.2,0 -172771532,"Guns and Robots",purchase,1.0,0 -172771532,"Guns and Robots",play,0.2,0 -172771532,"Archeblade",purchase,1.0,0 -172771532,"Archeblade",play,0.2,0 -172771532,"CroNix",purchase,1.0,0 -172771532,"CroNix",play,0.2,0 -172771532,"Path of Exile",purchase,1.0,0 -172771532,"Path of Exile",play,0.2,0 -172771532,"Lost Saga North America",purchase,1.0,0 -172771532,"Gear Up",purchase,1.0,0 -172771532,"Firefall",purchase,1.0,0 -172771532,"Rise of Incarnates",purchase,1.0,0 -172771532,"Tales Runner",purchase,1.0,0 -172771532,"Dizzel",purchase,1.0,0 -172771532,"Defiance",purchase,1.0,0 -172771532,"Dragon Nest Europe",purchase,1.0,0 -172771532,"Elsword",purchase,1.0,0 -172771532,"Marvel Heroes 2015",purchase,1.0,0 -172771532,"Neverwinter",purchase,1.0,0 -172771532,"PlanetSide 2",purchase,1.0,0 -172771532,"RaceRoom Racing Experience ",purchase,1.0,0 -172771532,"RaiderZ",purchase,1.0,0 -172771532,"RIFT",purchase,1.0,0 -172771532,"Super Monday Night Combat",purchase,1.0,0 -172771532,"Tribes Ascend",purchase,1.0,0 -68305989,"Supreme Commander 2",purchase,1.0,0 -68305989,"Supreme Commander 2",play,23.0,0 -68305989,"Half-Life 2",purchase,1.0,0 -68305989,"Half-Life 2 Deathmatch",purchase,1.0,0 -68305989,"Half-Life 2 Lost Coast",purchase,1.0,0 -291277170,"Dota 2",purchase,1.0,0 -291277170,"Dota 2",play,0.7,0 -48603188,"Team Fortress 2",purchase,1.0,0 -48603188,"Team Fortress 2",play,0.3,0 -207621814,"Dota 2",purchase,1.0,0 -207621814,"Dota 2",play,1.4,0 -62705916,"Europa Universalis III",purchase,1.0,0 -62705916,"Europa Universalis III",play,678.0,0 -62705916,"Mount & Blade Warband",purchase,1.0,0 -62705916,"Mount & Blade Warband",play,365.0,0 -62705916,"Crusader Kings II",purchase,1.0,0 -62705916,"Crusader Kings II",play,338.0,0 -62705916,"Empire Total War",purchase,1.0,0 -62705916,"Empire Total War",play,304.0,0 -62705916,"Napoleon Total War",purchase,1.0,0 -62705916,"Napoleon Total War",play,291.0,0 -62705916,"Men of War Assault Squad 2",purchase,1.0,0 -62705916,"Men of War Assault Squad 2",play,264.0,0 -62705916,"Medieval II Total War",purchase,1.0,0 -62705916,"Medieval II Total War",play,244.0,0 -62705916,"Men of War Assault Squad",purchase,1.0,0 -62705916,"Men of War Assault Squad",play,220.0,0 -62705916,"Total War SHOGUN 2",purchase,1.0,0 -62705916,"Total War SHOGUN 2",play,205.0,0 -62705916,"Total War ROME II - Emperor Edition",purchase,1.0,0 -62705916,"Total War ROME II - Emperor Edition",play,190.0,0 -62705916,"Victoria II",purchase,1.0,0 -62705916,"Victoria II",play,129.0,0 -62705916,"Action! - Gameplay Recording and Streaming",purchase,1.0,0 -62705916,"Action! - Gameplay Recording and Streaming",play,129.0,0 -62705916,"Making History The Calm & The Storm",purchase,1.0,0 -62705916,"Making History The Calm & The Storm",play,79.0,0 -62705916,"Battle of Empires 1914-1918",purchase,1.0,0 -62705916,"Battle of Empires 1914-1918",play,72.0,0 -62705916,"Cities Skylines",purchase,1.0,0 -62705916,"Cities Skylines",play,59.0,0 -62705916,"Tropico 3 Absolute Power",purchase,1.0,0 -62705916,"Tropico 3 Absolute Power",play,56.0,0 -62705916,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -62705916,"Rising Storm/Red Orchestra 2 Multiplayer",play,54.0,0 -62705916,"Cities XL 2011",purchase,1.0,0 -62705916,"Cities XL 2011",play,48.0,0 -62705916,"Company of Heroes (New Steam Version)",purchase,1.0,0 -62705916,"Company of Heroes (New Steam Version)",play,46.0,0 -62705916,"Sid Meier's Civilization V",purchase,1.0,0 -62705916,"Sid Meier's Civilization V",play,44.0,0 -62705916,"Company of Heroes",purchase,1.0,0 -62705916,"Company of Heroes",play,37.0,0 -62705916,"Call to Arms",purchase,1.0,0 -62705916,"Call to Arms",play,31.0,0 -62705916,"Total War ATTILA",purchase,1.0,0 -62705916,"Total War ATTILA",play,28.0,0 -62705916,"Star Wars Empire at War Gold",purchase,1.0,0 -62705916,"Star Wars Empire at War Gold",play,21.0,0 -62705916,"Sniper Elite V2",purchase,1.0,0 -62705916,"Sniper Elite V2",play,16.9,0 -62705916,"Men of War",purchase,1.0,0 -62705916,"Men of War",play,15.9,0 -62705916,"PAYDAY The Heist",purchase,1.0,0 -62705916,"PAYDAY The Heist",play,14.3,0 -62705916,"Europa Universalis IV",purchase,1.0,0 -62705916,"Europa Universalis IV",play,10.0,0 -62705916,"Stronghold 3",purchase,1.0,0 -62705916,"Stronghold 3",play,8.8,0 -62705916,"Omerta - City of Gangsters",purchase,1.0,0 -62705916,"Omerta - City of Gangsters",play,7.9,0 -62705916,"Star Wars - Battlefront II",purchase,1.0,0 -62705916,"Star Wars - Battlefront II",play,7.8,0 -62705916,"Medieval II Total War Kingdoms",purchase,1.0,0 -62705916,"Medieval II Total War Kingdoms",play,7.2,0 -62705916,"Company of Heroes 2",purchase,1.0,0 -62705916,"Company of Heroes 2",play,7.0,0 -62705916,"Sniper Elite 3",purchase,1.0,0 -62705916,"Sniper Elite 3",play,5.8,0 -62705916,"Company of Heroes Europe at War",purchase,1.0,0 -62705916,"Company of Heroes Europe at War",play,5.2,0 -62705916,"The Guild II Renaissance",purchase,1.0,0 -62705916,"The Guild II Renaissance",play,4.9,0 -62705916,"Company of Heroes Tales of Valor",purchase,1.0,0 -62705916,"Company of Heroes Tales of Valor",play,4.0,0 -62705916,"Battlestations Midway",purchase,1.0,0 -62705916,"Battlestations Midway",play,3.7,0 -62705916,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",purchase,1.0,0 -62705916,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",play,3.6,0 -62705916,"Only If",purchase,1.0,0 -62705916,"Only If",play,3.5,0 -62705916,"Arma 2",purchase,1.0,0 -62705916,"Arma 2",play,2.9,0 -62705916,"Medal of Honor Airborne",purchase,1.0,0 -62705916,"Medal of Honor Airborne",play,2.4,0 -62705916,"Heroes & Generals",purchase,1.0,0 -62705916,"Heroes & Generals",play,2.1,0 -62705916,"The Expendabros",purchase,1.0,0 -62705916,"The Expendabros",play,2.1,0 -62705916,"PAYDAY 2",purchase,1.0,0 -62705916,"PAYDAY 2",play,1.8,0 -62705916,"Spec Ops The Line",purchase,1.0,0 -62705916,"Spec Ops The Line",play,1.8,0 -62705916,"Counter-Strike Global Offensive",purchase,1.0,0 -62705916,"Counter-Strike Global Offensive",play,1.4,0 -62705916,"The Guild II",purchase,1.0,0 -62705916,"The Guild II",play,1.4,0 -62705916,"Goat Simulator",purchase,1.0,0 -62705916,"Goat Simulator",play,1.3,0 -62705916,"Unturned",purchase,1.0,0 -62705916,"Unturned",play,1.2,0 -62705916,"Dawn of Discovery",purchase,1.0,0 -62705916,"Dawn of Discovery",play,1.1,0 -62705916,"War of the Roses",purchase,1.0,0 -62705916,"War of the Roses",play,1.0,0 -62705916,"Cities XL - Limited Edition",purchase,1.0,0 -62705916,"Cities XL - Limited Edition",play,1.0,0 -62705916,"Surgeon Simulator",purchase,1.0,0 -62705916,"Surgeon Simulator",play,0.9,0 -62705916,"Europa Universalis Rome - Gold Edition",purchase,1.0,0 -62705916,"Europa Universalis Rome - Gold Edition",play,0.6,0 -62705916,"The Silent Age",purchase,1.0,0 -62705916,"The Silent Age",play,0.3,0 -62705916,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -62705916,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.3,0 -62705916,"Team Fortress 2",purchase,1.0,0 -62705916,"Team Fortress 2",play,0.2,0 -62705916,"Life Is Strange",purchase,1.0,0 -62705916,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -62705916,"Battlestations Pacific",purchase,1.0,0 -62705916,"Arma 2 Operation Arrowhead",purchase,1.0,0 -62705916,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -62705916,"Brothers - A Tale of Two Sons",purchase,1.0,0 -62705916,"Call to Arms - Deluxe Edition",purchase,1.0,0 -62705916,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -62705916,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -62705916,"Company of Heroes Opposing Fronts",purchase,1.0,0 -62705916,"Crusader Kings II Sons of Abraham",purchase,1.0,0 -62705916,"Dawn of Discovery - Demo",purchase,1.0,0 -62705916,"Dawn of Discovery - Venice",purchase,1.0,0 -62705916,"Europa Universalis Rome - Vae Victis",purchase,1.0,0 -62705916,"Europa Universalis III Divine Wind",purchase,1.0,0 -62705916,"Europa Universalis III Heir to the Throne",purchase,1.0,0 -62705916,"Europa Universalis IV Conquest of Paradise",purchase,1.0,0 -62705916,"Europa Universalis IV Conquistadors Unit pack ",purchase,1.0,0 -62705916,"Insurgency",purchase,1.0,0 -62705916,"Jurassic Park The Game",purchase,1.0,0 -62705916,"Metro 2033 Redux",purchase,1.0,0 -62705916,"Metro Last Light Redux",purchase,1.0,0 -62705916,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -62705916,"Mount & Blade Warband - Viking Conquest Reforged Edition",purchase,1.0,0 -62705916,"PAYDAY Wolf Pack",purchase,1.0,0 -62705916,"Rise of Flight United",purchase,1.0,0 -62705916,"Spore",purchase,1.0,0 -62705916,"Star Wars Republic Commando",purchase,1.0,0 -62705916,"Tomb Raider",purchase,1.0,0 -62705916,"Total War ATTILA - Age of Charlemagne Campaign Pack",purchase,1.0,0 -62705916,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -62705916,"Toy Soldiers",purchase,1.0,0 -62705916,"War of the Roses Kingmaker",purchase,1.0,0 -62705916,"War of the Roses Balance Beta",purchase,1.0,0 -130315685,"Team Fortress 2",purchase,1.0,0 -130315685,"Team Fortress 2",play,0.5,0 -297340678,"Dota 2",purchase,1.0,0 -297340678,"Dota 2",play,1.0,0 -9759887,"Counter-Strike",purchase,1.0,0 -9759887,"Counter-Strike",play,0.3,0 -9759887,"Day of Defeat",purchase,1.0,0 -9759887,"Deathmatch Classic",purchase,1.0,0 -9759887,"Half-Life",purchase,1.0,0 -9759887,"Half-Life Blue Shift",purchase,1.0,0 -9759887,"Half-Life Opposing Force",purchase,1.0,0 -9759887,"Ricochet",purchase,1.0,0 -9759887,"Team Fortress Classic",purchase,1.0,0 -43114966,"RACE 07",purchase,1.0,0 -43114966,"RACE 07",play,37.0,0 -43114966,"GTR Evolution",purchase,1.0,0 -43114966,"GTR Evolution",play,14.0,0 -43114966,"IL-2 Sturmovik 1946",purchase,1.0,0 -43114966,"IL-2 Sturmovik 1946",play,3.5,0 -43114966,"GT Power Expansion",purchase,1.0,0 -43114966,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -43114966,"STCC II",purchase,1.0,0 -43114966,"The Retro Expansion",purchase,1.0,0 -43114966,"The WTCC 2010 Pack",purchase,1.0,0 -190860375,"Unturned",purchase,1.0,0 -190860375,"Unturned",play,15.2,0 -214900977,"Dota 2",purchase,1.0,0 -214900977,"Dota 2",play,3.1,0 -195072781,"Counter-Strike Global Offensive",purchase,1.0,0 -195072781,"Counter-Strike Global Offensive",play,312.0,0 -195072781,"Warframe",purchase,1.0,0 -195072781,"Warframe",play,4.2,0 -195072781,"Guns of Icarus Online",purchase,1.0,0 -195072781,"Guns of Icarus Online",play,4.0,0 -195072781,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -195072781,"The Witcher 2 Assassins of Kings Enhanced Edition",play,3.2,0 -195072781,"Dota 2",purchase,1.0,0 -195072781,"Dota 2",play,2.1,0 -195072781,"BLOCKADE 3D",purchase,1.0,0 -195072781,"BLOCKADE 3D",play,1.2,0 -195072781,"The Witcher Enhanced Edition",purchase,1.0,0 -195072781,"The Witcher Enhanced Edition",play,0.7,0 -195072781,"Teeworlds",purchase,1.0,0 -195072781,"Teeworlds",play,0.3,0 -195072781,"hocus",purchase,1.0,0 -195072781,"hocus",play,0.1,0 -195072781,"Awesomenauts",purchase,1.0,0 -195072781,"Insurgency",purchase,1.0,0 -195072781,"PAYDAY 2",purchase,1.0,0 -195072781,"PAYDAY The Heist",purchase,1.0,0 -195072781,"Quake Live",purchase,1.0,0 -172976494,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -172976494,"Call of Duty Ghosts - Multiplayer",play,14.4,0 -172976494,"Call of Duty Ghosts",purchase,1.0,0 -172976494,"Call of Duty Ghosts",play,0.6,0 -172976494,"America's Army Proving Grounds",purchase,1.0,0 -172976494,"BLOCKADE 3D",purchase,1.0,0 -172976494,"District 187",purchase,1.0,0 -172976494,"Gotham City Impostors Free To Play",purchase,1.0,0 -172976494,"Haunted Memories",purchase,1.0,0 -202760417,"Altitude",purchase,1.0,0 -202760417,"Always Sometimes Monsters",purchase,1.0,0 -202760417,"Dead Island Epidemic",purchase,1.0,0 -202760417,"Defiance",purchase,1.0,0 -202760417,"Fistful of Frags",purchase,1.0,0 -202760417,"Free to Play",purchase,1.0,0 -202760417,"Heroes & Generals",purchase,1.0,0 -202760417,"Insurgency",purchase,1.0,0 -202760417,"Loadout",purchase,1.0,0 -202760417,"No More Room in Hell",purchase,1.0,0 -202760417,"Pinball FX2",purchase,1.0,0 -202760417,"PlanetSide 2",purchase,1.0,0 -202760417,"Saira",purchase,1.0,0 -202760417,"Star Trek Online",purchase,1.0,0 -202760417,"Tesla Effect",purchase,1.0,0 -202760417,"theHunter",purchase,1.0,0 -202760417,"The Plan",purchase,1.0,0 -202760417,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -202760417,"Unturned",purchase,1.0,0 -202760417,"Warframe",purchase,1.0,0 -202760417,"War Thunder",purchase,1.0,0 -26583023,"Counter-Strike Source",purchase,1.0,0 -26583023,"Counter-Strike Source",play,2.0,0 -26583023,"Half-Life 2 Deathmatch",purchase,1.0,0 -26583023,"Day of Defeat Source",purchase,1.0,0 -26583023,"Half-Life 2 Lost Coast",purchase,1.0,0 -107123140,"The Binding of Isaac",purchase,1.0,0 -107123140,"The Binding of Isaac",play,25.0,0 -107123140,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -107123140,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,4.8,0 -107123140,"Arma 2",purchase,1.0,0 -107123140,"Arma 2",play,4.1,0 -107123140,"Unturned",purchase,1.0,0 -107123140,"Unturned",play,2.8,0 -107123140,"Arma 2 Operation Arrowhead",purchase,1.0,0 -107123140,"Arma 2 Operation Arrowhead",play,2.5,0 -107123140,"Team Fortress 2",purchase,1.0,0 -107123140,"Team Fortress 2",play,0.9,0 -107123140,"Combat Arms",purchase,1.0,0 -107123140,"FreeStyle2 Street Basketball",purchase,1.0,0 -107123140,"TERA",purchase,1.0,0 -219566087,"Dota 2",purchase,1.0,0 -219566087,"Dota 2",play,66.0,0 -205145940,"Dota 2",purchase,1.0,0 -205145940,"Dota 2",play,6.5,0 -234455210,"Counter-Strike Global Offensive",purchase,1.0,0 -234455210,"Counter-Strike Global Offensive",play,49.0,0 -237826369,"Dota 2",purchase,1.0,0 -237826369,"Dota 2",play,2.3,0 -258795101,"Trove",purchase,1.0,0 -258795101,"Trove",play,7.3,0 -258795101,"PlanetSide 2",purchase,1.0,0 -258795101,"PlanetSide 2",play,3.5,0 -188803925,"Happy Wars",purchase,1.0,0 -188803925,"Happy Wars",play,0.1,0 -99616757,"Counter-Strike Global Offensive",purchase,1.0,0 -99616757,"Counter-Strike Global Offensive",play,6.8,0 -99616757,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -99616757,"Burnout Paradise The Ultimate Box",play,2.1,0 -99616757,"Guacamelee! Gold Edition",purchase,1.0,0 -99616757,"Guacamelee! Gold Edition",play,1.2,0 -99616757,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -99616757,"Command and Conquer Red Alert 3 - Uprising",play,0.5,0 -99616757,"LIMBO",purchase,1.0,0 -99616757,"LIMBO",play,0.5,0 -99616757,"Team Fortress 2",purchase,1.0,0 -99616757,"Team Fortress 2",play,0.3,0 -99616757,"Bastion",purchase,1.0,0 -99616757,"Bastion",play,0.1,0 -99616757,"FEZ",purchase,1.0,0 -99616757,"Monaco",purchase,1.0,0 -99616757,"Portal",purchase,1.0,0 -99616757,"Antichamber",purchase,1.0,0 -99616757,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -99616757,"Chaos Domain",purchase,1.0,0 -99616757,"Counter-Strike",purchase,1.0,0 -99616757,"Counter-Strike Condition Zero",purchase,1.0,0 -99616757,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -99616757,"Counter-Strike Source",purchase,1.0,0 -99616757,"Crysis 2 Maximum Edition",purchase,1.0,0 -99616757,"Day of Defeat",purchase,1.0,0 -99616757,"Day of Defeat Source",purchase,1.0,0 -99616757,"Dead Space",purchase,1.0,0 -99616757,"Deathmatch Classic",purchase,1.0,0 -99616757,"Dust An Elysian Tail",purchase,1.0,0 -99616757,"Giana Sisters Twisted Dreams",purchase,1.0,0 -99616757,"Half-Life",purchase,1.0,0 -99616757,"Half-Life 2",purchase,1.0,0 -99616757,"Half-Life 2 Deathmatch",purchase,1.0,0 -99616757,"Half-Life 2 Episode One",purchase,1.0,0 -99616757,"Half-Life 2 Episode Two",purchase,1.0,0 -99616757,"Half-Life 2 Lost Coast",purchase,1.0,0 -99616757,"Half-Life Blue Shift",purchase,1.0,0 -99616757,"Half-Life Opposing Force",purchase,1.0,0 -99616757,"Half-Life Source",purchase,1.0,0 -99616757,"Half-Life Deathmatch Source",purchase,1.0,0 -99616757,"Left 4 Dead",purchase,1.0,0 -99616757,"Left 4 Dead 2",purchase,1.0,0 -99616757,"Marvel Heroes 2015",purchase,1.0,0 -99616757,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -99616757,"Medal of Honor(TM) Single Player",purchase,1.0,0 -99616757,"Medal of Honor Pre-Order",purchase,1.0,0 -99616757,"Mirror's Edge",purchase,1.0,0 -99616757,"Portal 2",purchase,1.0,0 -99616757,"Ricochet",purchase,1.0,0 -99616757,"Starseed Pilgrim",purchase,1.0,0 -99616757,"Team Fortress Classic",purchase,1.0,0 -99616757,"The Swapper",purchase,1.0,0 -186207833,"Dota 2",purchase,1.0,0 -186207833,"Dota 2",play,4.7,0 -133422169,"Arma 3",purchase,1.0,0 -133422169,"Arma 3",play,276.0,0 -133422169,"Euro Truck Simulator 2",purchase,1.0,0 -133422169,"Euro Truck Simulator 2",play,112.0,0 -133422169,"Construction-Simulator 2015",purchase,1.0,0 -133422169,"Construction-Simulator 2015",play,95.0,0 -133422169,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -133422169,"Just Cause 2 Multiplayer Mod",play,94.0,0 -133422169,"Garry's Mod",purchase,1.0,0 -133422169,"Garry's Mod",play,85.0,0 -133422169,"The Binding of Isaac Rebirth",purchase,1.0,0 -133422169,"The Binding of Isaac Rebirth",play,66.0,0 -133422169,"Team Fortress 2",purchase,1.0,0 -133422169,"Team Fortress 2",play,38.0,0 -133422169,"Far Cry 3",purchase,1.0,0 -133422169,"Far Cry 3",play,35.0,0 -133422169,"PAYDAY 2",purchase,1.0,0 -133422169,"PAYDAY 2",play,31.0,0 -133422169,"Counter-Strike Global Offensive",purchase,1.0,0 -133422169,"Counter-Strike Global Offensive",play,28.0,0 -133422169,"Warframe",purchase,1.0,0 -133422169,"Warframe",play,27.0,0 -133422169,"PAYDAY The Heist",purchase,1.0,0 -133422169,"PAYDAY The Heist",play,25.0,0 -133422169,"Unturned",purchase,1.0,0 -133422169,"Unturned",play,25.0,0 -133422169,"Spintires",purchase,1.0,0 -133422169,"Spintires",play,17.8,0 -133422169,"PlanetSide 2",purchase,1.0,0 -133422169,"PlanetSide 2",play,17.5,0 -133422169,"Borderlands 2",purchase,1.0,0 -133422169,"Borderlands 2",play,14.8,0 -133422169,"Mafia II",purchase,1.0,0 -133422169,"Mafia II",play,13.3,0 -133422169,"Don't Starve Together Beta",purchase,1.0,0 -133422169,"Don't Starve Together Beta",play,9.2,0 -133422169,"ARK Survival Evolved",purchase,1.0,0 -133422169,"ARK Survival Evolved",play,9.1,0 -133422169,"Fistful of Frags",purchase,1.0,0 -133422169,"Fistful of Frags",play,7.8,0 -133422169,"Cities Skylines",purchase,1.0,0 -133422169,"Cities Skylines",play,7.3,0 -133422169,"Goat Simulator",purchase,1.0,0 -133422169,"Goat Simulator",play,5.5,0 -133422169,"Dirty Bomb",purchase,1.0,0 -133422169,"Dirty Bomb",play,5.5,0 -133422169,"Ski Region Simulator",purchase,1.0,0 -133422169,"Ski Region Simulator",play,5.1,0 -133422169,"Cubic Castles",purchase,1.0,0 -133422169,"Cubic Castles",play,4.6,0 -133422169,"GRID 2",purchase,1.0,0 -133422169,"GRID 2",play,3.8,0 -133422169,"Heroes & Generals",purchase,1.0,0 -133422169,"Heroes & Generals",play,2.6,0 -133422169,"Battlefield Bad Company 2",purchase,1.0,0 -133422169,"Battlefield Bad Company 2",play,2.5,0 -133422169,"BeamNG.drive",purchase,1.0,0 -133422169,"BeamNG.drive",play,2.4,0 -133422169,"War Inc. Battlezone",purchase,1.0,0 -133422169,"War Inc. Battlezone",play,2.0,0 -133422169,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -133422169,"Grand Theft Auto Episodes from Liberty City",play,1.7,0 -133422169,"Castle Crashers",purchase,1.0,0 -133422169,"Castle Crashers",play,1.3,0 -133422169,"Dungeon Defenders",purchase,1.0,0 -133422169,"Dungeon Defenders",play,1.2,0 -133422169,"Blacklight Retribution",purchase,1.0,0 -133422169,"Blacklight Retribution",play,0.9,0 -133422169,"Red Crucible Firestorm",purchase,1.0,0 -133422169,"Red Crucible Firestorm",play,0.6,0 -133422169,"Moonbase Alpha",purchase,1.0,0 -133422169,"Moonbase Alpha",play,0.6,0 -133422169,"Tropico",purchase,1.0,0 -133422169,"Tropico",play,0.5,0 -133422169,"F1 2014",purchase,1.0,0 -133422169,"F1 2014",play,0.4,0 -133422169,"Nidhogg",purchase,1.0,0 -133422169,"Nidhogg",play,0.4,0 -133422169,"Tactical Intervention",purchase,1.0,0 -133422169,"Tactical Intervention",play,0.2,0 -133422169,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -133422169,"Just Cause 2",purchase,1.0,0 -133422169,"DCS World",purchase,1.0,0 -133422169,"America's Army 3",purchase,1.0,0 -133422169,"APB Reloaded",purchase,1.0,0 -133422169,"Arma 3 Karts",purchase,1.0,0 -133422169,"Arma 3 Zeus",purchase,1.0,0 -133422169,"Construction Simulator 2015 Liebherr 150 EC-B",purchase,1.0,0 -133422169,"Construction Simulator 2015 Liebherr LB28",purchase,1.0,0 -133422169,"Construction Simulator 2015 Liebherr LR 1300",purchase,1.0,0 -133422169,"Construction Simulator 2015 Vertical Skyline",purchase,1.0,0 -133422169,"Counter-Strike",purchase,1.0,0 -133422169,"Counter-Strike Condition Zero",purchase,1.0,0 -133422169,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -133422169,"Counter-Strike Source",purchase,1.0,0 -133422169,"Day of Defeat",purchase,1.0,0 -133422169,"Day of Defeat Source",purchase,1.0,0 -133422169,"Deathmatch Classic",purchase,1.0,0 -133422169,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -133422169,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -133422169,"Fractured Space",purchase,1.0,0 -133422169,"Half-Life",purchase,1.0,0 -133422169,"Half-Life 2",purchase,1.0,0 -133422169,"Half-Life 2 Deathmatch",purchase,1.0,0 -133422169,"Half-Life 2 Episode One",purchase,1.0,0 -133422169,"Half-Life 2 Episode Two",purchase,1.0,0 -133422169,"Half-Life 2 Lost Coast",purchase,1.0,0 -133422169,"Half-Life Blue Shift",purchase,1.0,0 -133422169,"Half-Life Opposing Force",purchase,1.0,0 -133422169,"Half-Life Source",purchase,1.0,0 -133422169,"Half-Life Deathmatch Source",purchase,1.0,0 -133422169,"Just Cause",purchase,1.0,0 -133422169,"Left 4 Dead",purchase,1.0,0 -133422169,"Left 4 Dead 2",purchase,1.0,0 -133422169,"Portal",purchase,1.0,0 -133422169,"Portal 2",purchase,1.0,0 -133422169,"Ricochet",purchase,1.0,0 -133422169,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -133422169,"Team Fortress Classic",purchase,1.0,0 -133422169,"Tropico 2 Pirate Cove",purchase,1.0,0 -133422169,"Tropico 3 Absolute Power",purchase,1.0,0 -133422169,"Warface",purchase,1.0,0 -296212279,"BLOCKADE 3D",purchase,1.0,0 -296212279,"BLOCKADE 3D",play,0.9,0 -167311640,"Dota 2",purchase,1.0,0 -167311640,"Dota 2",play,828.0,0 -256525720,"H1Z1",purchase,1.0,0 -256525720,"H1Z1",play,10.2,0 -256525720,"RIFT",purchase,1.0,0 -256525720,"RIFT",play,8.8,0 -256525720,"Depth",purchase,1.0,0 -256525720,"Depth",play,4.6,0 -256525720,"AION Free-to-Play",purchase,1.0,0 -256525720,"AION Free-to-Play",play,3.0,0 -256525720,"Victor Vran",purchase,1.0,0 -256525720,"Victor Vran",play,2.4,0 -256525720,"Team Fortress 2",purchase,1.0,0 -256525720,"Team Fortress 2",play,0.8,0 -256525720,"H1Z1 Test Server",purchase,1.0,0 -143446735,"Warface",purchase,1.0,0 -143446735,"Warface",play,11.2,0 -147361523,"Dota 2",purchase,1.0,0 -147361523,"Dota 2",play,1.7,0 -205670497,"Dota 2",purchase,1.0,0 -205670497,"Dota 2",play,1.5,0 -182862561,"Dota 2",purchase,1.0,0 -182862561,"Dota 2",play,0.3,0 -79073449,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -79073449,"Dark Souls Prepare to Die Edition",play,58.0,0 -79073449,"The Witcher 3 Wild Hunt",purchase,1.0,0 -79073449,"The Witcher 3 Wild Hunt",play,49.0,0 -79073449,"The Elder Scrolls V Skyrim",purchase,1.0,0 -79073449,"The Elder Scrolls V Skyrim",play,42.0,0 -79073449,"The Witcher Enhanced Edition",purchase,1.0,0 -79073449,"The Witcher Enhanced Edition",play,41.0,0 -79073449,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -79073449,"The Witcher 2 Assassins of Kings Enhanced Edition",play,32.0,0 -79073449,"Left 4 Dead 2",purchase,1.0,0 -79073449,"Left 4 Dead 2",play,32.0,0 -79073449,"Star Wars Knights of the Old Republic",purchase,1.0,0 -79073449,"Star Wars Knights of the Old Republic",play,30.0,0 -79073449,"Fable III",purchase,1.0,0 -79073449,"Fable III",play,30.0,0 -79073449,"Assassin's Creed IV Black Flag",purchase,1.0,0 -79073449,"Assassin's Creed IV Black Flag",play,29.0,0 -79073449,"War of the Roses",purchase,1.0,0 -79073449,"War of the Roses",play,28.0,0 -79073449,"Medieval II Total War",purchase,1.0,0 -79073449,"Medieval II Total War",play,21.0,0 -79073449,"Mount & Blade Warband",purchase,1.0,0 -79073449,"Mount & Blade Warband",play,20.0,0 -79073449,"Assassin's Creed II",purchase,1.0,0 -79073449,"Assassin's Creed II",play,20.0,0 -79073449,"Game of Thrones ",purchase,1.0,0 -79073449,"Game of Thrones ",play,19.8,0 -79073449,"Crusader Kings II",purchase,1.0,0 -79073449,"Crusader Kings II",play,14.7,0 -79073449,"Assassin's Creed III",purchase,1.0,0 -79073449,"Assassin's Creed III",play,13.5,0 -79073449,"Assassin's Creed Brotherhood",purchase,1.0,0 -79073449,"Assassin's Creed Brotherhood",play,13.5,0 -79073449,"Batman Arkham Origins",purchase,1.0,0 -79073449,"Batman Arkham Origins",play,13.0,0 -79073449,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -79073449,"Game of Thrones - A Telltale Games Series",play,12.4,0 -79073449,"Batman Arkham City",purchase,1.0,0 -79073449,"Batman Arkham City",play,12.1,0 -79073449,"Assassin's Creed Revelations",purchase,1.0,0 -79073449,"Assassin's Creed Revelations",play,12.0,0 -79073449,"Alan Wake",purchase,1.0,0 -79073449,"Alan Wake",play,11.1,0 -79073449,"FINAL FANTASY VIII",purchase,1.0,0 -79073449,"FINAL FANTASY VIII",play,10.6,0 -79073449,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -79073449,"Vampire The Masquerade - Bloodlines",play,9.6,0 -79073449,"The Banner Saga",purchase,1.0,0 -79073449,"The Banner Saga",play,9.5,0 -79073449,"L.A. Noire",purchase,1.0,0 -79073449,"L.A. Noire",play,8.7,0 -79073449,"The Wolf Among Us",purchase,1.0,0 -79073449,"The Wolf Among Us",play,8.3,0 -79073449,"Castlevania Lords of Shadow - Ultimate Edition",purchase,1.0,0 -79073449,"Castlevania Lords of Shadow - Ultimate Edition",play,7.6,0 -79073449,"Magicka",purchase,1.0,0 -79073449,"Magicka",play,7.6,0 -79073449,"Counter-Strike Global Offensive",purchase,1.0,0 -79073449,"Counter-Strike Global Offensive",play,7.5,0 -79073449,"Broken Sword 1 - Shadow of the Templars Director's Cut",purchase,1.0,0 -79073449,"Broken Sword 1 - Shadow of the Templars Director's Cut",play,6.9,0 -79073449,"Pillars of Eternity",purchase,1.0,0 -79073449,"Pillars of Eternity",play,5.8,0 -79073449,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -79073449,"Kingdoms of Amalur Reckoning",play,5.8,0 -79073449,"Broken Sword 2 - the Smoking Mirror Remastered",purchase,1.0,0 -79073449,"Broken Sword 2 - the Smoking Mirror Remastered",play,5.7,0 -79073449,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -79073449,"Injustice Gods Among Us Ultimate Edition",play,5.5,0 -79073449,"Deus Ex Human Revolution",purchase,1.0,0 -79073449,"Deus Ex Human Revolution",play,5.4,0 -79073449,"Napoleon Total War",purchase,1.0,0 -79073449,"Napoleon Total War",play,5.4,0 -79073449,"Ultra Street Fighter IV",purchase,1.0,0 -79073449,"Ultra Street Fighter IV",play,3.9,0 -79073449,"DARK SOULS II",purchase,1.0,0 -79073449,"DARK SOULS II",play,3.8,0 -79073449,"Champions Online",purchase,1.0,0 -79073449,"Champions Online",play,3.8,0 -79073449,"Need for Speed Undercover",purchase,1.0,0 -79073449,"Need for Speed Undercover",play,3.0,0 -79073449,"Batman Arkham City GOTY",purchase,1.0,0 -79073449,"Batman Arkham City GOTY",play,2.8,0 -79073449,"Medieval II Total War Kingdoms",purchase,1.0,0 -79073449,"Medieval II Total War Kingdoms",play,2.6,0 -79073449,"Life is Feudal Your Own",purchase,1.0,0 -79073449,"Life is Feudal Your Own",play,2.5,0 -79073449,"Mount & Blade",purchase,1.0,0 -79073449,"Mount & Blade",play,2.5,0 -79073449,"Sniper Elite V2",purchase,1.0,0 -79073449,"Sniper Elite V2",play,1.9,0 -79073449,"The Chronicles of Riddick Assault on Dark Athena",purchase,1.0,0 -79073449,"The Chronicles of Riddick Assault on Dark Athena",play,1.5,0 -79073449,"Chivalry Medieval Warfare",purchase,1.0,0 -79073449,"Chivalry Medieval Warfare",play,0.8,0 -79073449,"DC Universe Online",purchase,1.0,0 -79073449,"DC Universe Online",play,0.4,0 -79073449,"Commandos Behind Enemy Lines",purchase,1.0,0 -79073449,"A New Beginning - Final Cut",purchase,1.0,0 -79073449,"Assassin's Creed",purchase,1.0,0 -79073449,"Broken Sword 3 - the Sleeping Dragon",purchase,1.0,0 -79073449,"Castlevania Lords of Shadow 2",purchase,1.0,0 -79073449,"Castlevania Lords of Shadow 2 - Armored Dracula Costume",purchase,1.0,0 -79073449,"Castlevania Lords of Shadow 2 - Dark Dracula Costume",purchase,1.0,0 -79073449,"Castlevania Lords of Shadow 2 - Relic Rune Pack",purchase,1.0,0 -79073449,"Commandos 2 Men of Courage",purchase,1.0,0 -79073449,"Commandos 3 Destination Berlin",purchase,1.0,0 -79073449,"Commandos Beyond the Call of Duty",purchase,1.0,0 -79073449,"Counter-Strike",purchase,1.0,0 -79073449,"Counter-Strike Condition Zero",purchase,1.0,0 -79073449,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -79073449,"Counter-Strike Source",purchase,1.0,0 -79073449,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -79073449,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -79073449,"Dracula Origin",purchase,1.0,0 -79073449,"Dungeon Siege",purchase,1.0,0 -79073449,"Dungeon Siege 2",purchase,1.0,0 -79073449,"Dungeon Siege III",purchase,1.0,0 -79073449,"Empire Total War",purchase,1.0,0 -79073449,"Enclave",purchase,1.0,0 -79073449,"Fallout New Vegas",purchase,1.0,0 -79073449,"Grand Theft Auto IV",purchase,1.0,0 -79073449,"Grim Fandango Remastered",purchase,1.0,0 -79073449,"Half-Life 2",purchase,1.0,0 -79073449,"Half-Life 2 Lost Coast",purchase,1.0,0 -79073449,"Max Payne",purchase,1.0,0 -79073449,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -79073449,"Max Payne 3",purchase,1.0,0 -79073449,"Max Payne 3 Season Pass",purchase,1.0,0 -79073449,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -79073449,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -79073449,"Mount & Blade Warband - Viking Conquest Reforged Edition",purchase,1.0,0 -79073449,"Mount & Blade With Fire and Sword",purchase,1.0,0 -79073449,"Patch testing for Chivalry",purchase,1.0,0 -79073449,"Rome Total War",purchase,1.0,0 -79073449,"Sherlock Holmes versus Jack the Ripper",purchase,1.0,0 -79073449,"Syberia",purchase,1.0,0 -79073449,"Syberia 2",purchase,1.0,0 -79073449,"The Banner Saga - Mod Content",purchase,1.0,0 -79073449,"The Testament of Sherlock Holmes",purchase,1.0,0 -79073449,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -79073449,"Total War SHOGUN 2",purchase,1.0,0 -79073449,"War of the Roses Kingmaker",purchase,1.0,0 -79073449,"War of the Roses Balance Beta",purchase,1.0,0 -178343030,"Dota 2",purchase,1.0,0 -178343030,"Dota 2",play,0.1,0 -201968130,"Double Action Boogaloo",purchase,1.0,0 -201968130,"Double Action Boogaloo",play,0.4,0 -56901667,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -56901667,"Call of Duty Modern Warfare 2 - Multiplayer",play,213.0,0 -56901667,"Call of Duty Modern Warfare 2",purchase,1.0,0 -56901667,"Call of Duty Modern Warfare 2",play,48.0,0 -56901667,"Left 4 Dead 2",purchase,1.0,0 -56901667,"Left 4 Dead 2",play,15.8,0 -84659295,"Sid Meier's Civilization V",purchase,1.0,0 -84659295,"Sid Meier's Civilization V",play,3.5,0 -84659295,"Portal",purchase,1.0,0 -84659295,"Portal",play,2.6,0 -285792368,"Medieval II Total War",purchase,1.0,0 -285792368,"Medieval II Total War",play,46.0,0 -285792368,"Medieval II Total War Kingdoms",purchase,1.0,0 -78051467,"Team Fortress 2",purchase,1.0,0 -78051467,"Team Fortress 2",play,0.5,0 -265545744,"Dota 2",purchase,1.0,0 -265545744,"Dota 2",play,2.2,0 -265545744,"BLOCKADE 3D",purchase,1.0,0 -265545744,"HIS (Heroes In the Sky)",purchase,1.0,0 -265545744,"No More Room in Hell",purchase,1.0,0 -265545744,"Warframe",purchase,1.0,0 -265545744,"War Thunder",purchase,1.0,0 -237390911,"Dota 2",purchase,1.0,0 -237390911,"Dota 2",play,36.0,0 -237390911,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -289934364,"Dota 2",purchase,1.0,0 -289934364,"Dota 2",play,0.8,0 -205171017,"Counter-Strike Global Offensive",purchase,1.0,0 -205171017,"Counter-Strike Global Offensive",play,333.0,0 -205171017,"Rust",purchase,1.0,0 -205171017,"Rust",play,46.0,0 -205171017,"Grand Theft Auto San Andreas",purchase,1.0,0 -205171017,"Grand Theft Auto San Andreas",play,19.5,0 -205171017,"Grand Theft Auto San Andreas",purchase,1.0,0 -178233300,"Counter-Strike Global Offensive",purchase,1.0,0 -178233300,"Counter-Strike Global Offensive",play,644.0,0 -178233300,"Dota 2",purchase,1.0,0 -178233300,"Dota 2",play,189.0,0 -178233300,"No More Room in Hell",purchase,1.0,0 -178233300,"No More Room in Hell",play,18.3,0 -178233300,"Castle Crashers",purchase,1.0,0 -178233300,"Castle Crashers",play,6.0,0 -178233300,"Unturned",purchase,1.0,0 -178233300,"Unturned",play,2.9,0 -178233300,"Team Fortress 2",purchase,1.0,0 -178233300,"Team Fortress 2",play,0.4,0 -178233300,"Geometry Dash",purchase,1.0,0 -178233300,"Red Crucible Firestorm",purchase,1.0,0 -110238251,"Empire Total War",purchase,1.0,0 -110238251,"Empire Total War",play,72.0,0 -110238251,"Napoleon Total War",purchase,1.0,0 -110238251,"Napoleon Total War",play,65.0,0 -110238251,"Total War ROME II - Emperor Edition",purchase,1.0,0 -110238251,"Total War ROME II - Emperor Edition",play,31.0,0 -110238251,"Total War ATTILA",purchase,1.0,0 -110238251,"Total War ATTILA",play,23.0,0 -110238251,"Mars War Logs",purchase,1.0,0 -110238251,"Mars War Logs",play,1.6,0 -139841475,"Dota 2",purchase,1.0,0 -139841475,"Dota 2",play,38.0,0 -199363978,"Counter-Strike Nexon Zombies",purchase,1.0,0 -199363978,"Counter-Strike Nexon Zombies",play,0.7,0 -262017556,"Dota 2",purchase,1.0,0 -262017556,"Dota 2",play,1.6,0 -266874064,"Counter-Strike Global Offensive",purchase,1.0,0 -266874064,"Counter-Strike Global Offensive",play,60.0,0 -266874064,"Rocket League",purchase,1.0,0 -266874064,"Rocket League",play,28.0,0 -266874064,"H1Z1",purchase,1.0,0 -266874064,"H1Z1",play,11.4,0 -266874064,"H1Z1 Test Server",purchase,1.0,0 -97366087,"Team Fortress 2",purchase,1.0,0 -97366087,"Team Fortress 2",play,2.4,0 -213893829,"Dota 2",purchase,1.0,0 -213893829,"Dota 2",play,6.1,0 -170947678,"Euro Truck Simulator 2",purchase,1.0,0 -170947678,"Euro Truck Simulator 2",play,126.0,0 -170947678,"Grand Theft Auto V",purchase,1.0,0 -170947678,"Grand Theft Auto V",play,27.0,0 -170947678,"Farming Simulator 15",purchase,1.0,0 -170947678,"Farming Simulator 15",play,5.8,0 -170947678,"Grand Theft Auto IV",purchase,1.0,0 -170947678,"Grand Theft Auto IV",play,1.3,0 -170947678,"Grand Theft Auto San Andreas",purchase,1.0,0 -170947678,"Grand Theft Auto San Andreas",play,1.2,0 -170947678,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -170947678,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -170947678,"Grand Theft Auto San Andreas",purchase,1.0,0 -45617627,"The Elder Scrolls V Skyrim",purchase,1.0,0 -45617627,"The Elder Scrolls V Skyrim",play,288.0,0 -45617627,"Alien Isolation",purchase,1.0,0 -45617627,"Alien Isolation",play,91.0,0 -45617627,"Assassin's Creed IV Black Flag",purchase,1.0,0 -45617627,"Assassin's Creed IV Black Flag",play,58.0,0 -45617627,"Watch_Dogs",purchase,1.0,0 -45617627,"Watch_Dogs",play,57.0,0 -45617627,"Far Cry 3",purchase,1.0,0 -45617627,"Far Cry 3",play,57.0,0 -45617627,"Aliens Colonial Marines",purchase,1.0,0 -45617627,"Aliens Colonial Marines",play,44.0,0 -45617627,"Dying Light",purchase,1.0,0 -45617627,"Dying Light",play,41.0,0 -45617627,"Firefall",purchase,1.0,0 -45617627,"Firefall",play,35.0,0 -45617627,"Tomb Raider",purchase,1.0,0 -45617627,"Tomb Raider",play,33.0,0 -45617627,"Dishonored",purchase,1.0,0 -45617627,"Dishonored",play,32.0,0 -45617627,"Silent Hunter 5 Battle of the Atlantic",purchase,1.0,0 -45617627,"Silent Hunter 5 Battle of the Atlantic",play,31.0,0 -45617627,"Defiance",purchase,1.0,0 -45617627,"Defiance",play,29.0,0 -45617627,"HAWKEN",purchase,1.0,0 -45617627,"HAWKEN",play,24.0,0 -45617627,"Subnautica",purchase,1.0,0 -45617627,"Subnautica",play,24.0,0 -45617627,"Perpetuum",purchase,1.0,0 -45617627,"Perpetuum",play,22.0,0 -45617627,"X Rebirth",purchase,1.0,0 -45617627,"X Rebirth",play,21.0,0 -45617627,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -45617627,"The Witcher 2 Assassins of Kings Enhanced Edition",play,21.0,0 -45617627,"Sniper Elite 3",purchase,1.0,0 -45617627,"Sniper Elite 3",play,20.0,0 -45617627,"Aliens vs. Predator",purchase,1.0,0 -45617627,"Aliens vs. Predator",play,20.0,0 -45617627,"Grand Theft Auto IV",purchase,1.0,0 -45617627,"Grand Theft Auto IV",play,20.0,0 -45617627,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -45617627,"Dark Souls Prepare to Die Edition",play,19.4,0 -45617627,"Wolfenstein The New Order",purchase,1.0,0 -45617627,"Wolfenstein The New Order",play,19.1,0 -45617627,"Crysis 2 Maximum Edition",purchase,1.0,0 -45617627,"Crysis 2 Maximum Edition",play,18.7,0 -45617627,"Lost Planet 3",purchase,1.0,0 -45617627,"Lost Planet 3",play,18.0,0 -45617627,"Arma 3",purchase,1.0,0 -45617627,"Arma 3",play,17.0,0 -45617627,"Mad Max",purchase,1.0,0 -45617627,"Mad Max",play,16.2,0 -45617627,"Thief",purchase,1.0,0 -45617627,"Thief",play,15.9,0 -45617627,"PlanetSide 2",purchase,1.0,0 -45617627,"PlanetSide 2",play,15.4,0 -45617627,"Metro Last Light",purchase,1.0,0 -45617627,"Metro Last Light",play,15.2,0 -45617627,"BioShock Infinite",purchase,1.0,0 -45617627,"BioShock Infinite",play,15.1,0 -45617627,"Metro 2033 Redux",purchase,1.0,0 -45617627,"Metro 2033 Redux",play,14.6,0 -45617627,"LEGO MARVEL Super Heroes",purchase,1.0,0 -45617627,"LEGO MARVEL Super Heroes",play,14.6,0 -45617627,"Batman Arkham City",purchase,1.0,0 -45617627,"Batman Arkham City",play,14.2,0 -45617627,"Borderlands",purchase,1.0,0 -45617627,"Borderlands",play,14.0,0 -45617627,"Nether",purchase,1.0,0 -45617627,"Nether",play,13.8,0 -45617627,"Darksiders II",purchase,1.0,0 -45617627,"Darksiders II",play,13.5,0 -45617627,"Blacklight Retribution",purchase,1.0,0 -45617627,"Blacklight Retribution",play,13.1,0 -45617627,"Assetto Corsa",purchase,1.0,0 -45617627,"Assetto Corsa",play,13.0,0 -45617627,"The Forest",purchase,1.0,0 -45617627,"The Forest",play,12.8,0 -45617627,"Dead Island",purchase,1.0,0 -45617627,"Dead Island",play,12.3,0 -45617627,"Call of Juarez Gunslinger",purchase,1.0,0 -45617627,"Call of Juarez Gunslinger",play,12.0,0 -45617627,"Batman Arkham Origins",purchase,1.0,0 -45617627,"Batman Arkham Origins",play,11.7,0 -45617627,"Left 4 Dead 2",purchase,1.0,0 -45617627,"Left 4 Dead 2",play,10.8,0 -45617627,"Batman Arkham City GOTY",purchase,1.0,0 -45617627,"Batman Arkham City GOTY",play,10.7,0 -45617627,"LEGO Worlds",purchase,1.0,0 -45617627,"LEGO Worlds",play,10.7,0 -45617627,"Middle-earth Shadow of Mordor",purchase,1.0,0 -45617627,"Middle-earth Shadow of Mordor",play,10.3,0 -45617627,"Deus Ex Human Revolution",purchase,1.0,0 -45617627,"Deus Ex Human Revolution",play,9.8,0 -45617627,"DC Universe Online",purchase,1.0,0 -45617627,"DC Universe Online",play,9.6,0 -45617627,"Styx Master of Shadows",purchase,1.0,0 -45617627,"Styx Master of Shadows",play,9.6,0 -45617627,"Just Cause 2",purchase,1.0,0 -45617627,"Just Cause 2",play,9.3,0 -45617627,"LEGO Batman The Videogame",purchase,1.0,0 -45617627,"LEGO Batman The Videogame",play,9.3,0 -45617627,"Hard Reset",purchase,1.0,0 -45617627,"Hard Reset",play,9.2,0 -45617627,"Ryse Son of Rome",purchase,1.0,0 -45617627,"Ryse Son of Rome",play,9.1,0 -45617627,"Star Trek Online",purchase,1.0,0 -45617627,"Star Trek Online",play,9.1,0 -45617627,"Portal 2",purchase,1.0,0 -45617627,"Portal 2",play,9.0,0 -45617627,"Space Engineers",purchase,1.0,0 -45617627,"Space Engineers",play,8.8,0 -45617627,"Metro 2033",purchase,1.0,0 -45617627,"Metro 2033",play,8.7,0 -45617627,"Remember Me",purchase,1.0,0 -45617627,"Remember Me",play,8.6,0 -45617627,"Outlast",purchase,1.0,0 -45617627,"Outlast",play,8.3,0 -45617627,"Saints Row The Third",purchase,1.0,0 -45617627,"Saints Row The Third",play,7.9,0 -45617627,"Warframe",purchase,1.0,0 -45617627,"Warframe",play,7.6,0 -45617627,"Team Fortress 2",purchase,1.0,0 -45617627,"Team Fortress 2",play,7.2,0 -45617627,"Black Mesa",purchase,1.0,0 -45617627,"Black Mesa",play,7.0,0 -45617627,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -45617627,"METAL GEAR SOLID V GROUND ZEROES",play,6.6,0 -45617627,"Duke Nukem Forever",purchase,1.0,0 -45617627,"Duke Nukem Forever",play,6.4,0 -45617627,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -45617627,"Unreal Tournament 3 Black Edition",play,6.3,0 -45617627,"RAGE",purchase,1.0,0 -45617627,"RAGE",play,6.2,0 -45617627,"Lego Star Wars 3 The Clone Wars",purchase,1.0,0 -45617627,"Lego Star Wars 3 The Clone Wars",play,6.0,0 -45617627,"Silent Hunter Wolves of the Pacific",purchase,1.0,0 -45617627,"Silent Hunter Wolves of the Pacific",play,5.8,0 -45617627,"Hitman Absolution",purchase,1.0,0 -45617627,"Hitman Absolution",play,5.8,0 -45617627,"Two Worlds II",purchase,1.0,0 -45617627,"Two Worlds II",play,5.8,0 -45617627,"Velvet Assassin",purchase,1.0,0 -45617627,"Velvet Assassin",play,5.4,0 -45617627,"Dead Space 2",purchase,1.0,0 -45617627,"Dead Space 2",play,5.0,0 -45617627,"Gotham City Impostors",purchase,1.0,0 -45617627,"Gotham City Impostors",play,4.9,0 -45617627,"War Thunder",purchase,1.0,0 -45617627,"War Thunder",play,4.8,0 -45617627,"XCOM Enemy Unknown",purchase,1.0,0 -45617627,"XCOM Enemy Unknown",play,4.8,0 -45617627,"Aliens versus Predator Classic 2000",purchase,1.0,0 -45617627,"Aliens versus Predator Classic 2000",play,4.7,0 -45617627,"Sniper Ghost Warrior 2",purchase,1.0,0 -45617627,"Sniper Ghost Warrior 2",play,4.6,0 -45617627,"Garry's Mod",purchase,1.0,0 -45617627,"Garry's Mod",play,4.5,0 -45617627,"ArcaniA",purchase,1.0,0 -45617627,"ArcaniA",play,4.3,0 -45617627,"DCS Black Shark",purchase,1.0,0 -45617627,"DCS Black Shark",play,4.2,0 -45617627,"3DMark",purchase,1.0,0 -45617627,"3DMark",play,4.2,0 -45617627,"Alan Wake",purchase,1.0,0 -45617627,"Alan Wake",play,4.1,0 -45617627,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -45617627,"METAL GEAR RISING REVENGEANCE",play,4.0,0 -45617627,"Tomb Raider Anniversary",purchase,1.0,0 -45617627,"Tomb Raider Anniversary",play,4.0,0 -45617627,"The Darkness II",purchase,1.0,0 -45617627,"The Darkness II",play,3.5,0 -45617627,"Sonic Generations",purchase,1.0,0 -45617627,"Sonic Generations",play,3.4,0 -45617627,"Train Simulator",purchase,1.0,0 -45617627,"Train Simulator",play,3.4,0 -45617627,"Hydrophobia Prophecy",purchase,1.0,0 -45617627,"Hydrophobia Prophecy",play,3.3,0 -45617627,"Red Faction Armageddon",purchase,1.0,0 -45617627,"Red Faction Armageddon",play,2.9,0 -45617627,"Dungeon Siege III",purchase,1.0,0 -45617627,"Dungeon Siege III",play,2.8,0 -45617627,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -45617627,"SEGA Genesis & Mega Drive Classics",play,2.8,0 -45617627,"Alien Rage - Unlimited",purchase,1.0,0 -45617627,"Alien Rage - Unlimited",play,2.7,0 -45617627,"Lunar Flight",purchase,1.0,0 -45617627,"Lunar Flight",play,2.7,0 -45617627,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -45617627,"Operation Flashpoint Dragon Rising",play,2.5,0 -45617627,"Euro Truck Simulator 2",purchase,1.0,0 -45617627,"Euro Truck Simulator 2",play,2.5,0 -45617627,"Half-Life",purchase,1.0,0 -45617627,"Half-Life",play,2.4,0 -45617627,"Portal",purchase,1.0,0 -45617627,"Portal",play,2.4,0 -45617627,"Serious Sam 3 BFE",purchase,1.0,0 -45617627,"Serious Sam 3 BFE",play,2.3,0 -45617627,"Fallout New Vegas",purchase,1.0,0 -45617627,"Fallout New Vegas",play,2.2,0 -45617627,"Lichdom Battlemage",purchase,1.0,0 -45617627,"Lichdom Battlemage",play,2.2,0 -45617627,"Mars War Logs",purchase,1.0,0 -45617627,"Mars War Logs",play,2.0,0 -45617627,"Shattered Horizon",purchase,1.0,0 -45617627,"Shattered Horizon",play,1.8,0 -45617627,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -45617627,"Tom Clancy's Splinter Cell Conviction",play,1.7,0 -45617627,"Assassin's Creed II",purchase,1.0,0 -45617627,"Assassin's Creed II",play,1.7,0 -45617627,"Thunder Wolves",purchase,1.0,0 -45617627,"Thunder Wolves",play,1.6,0 -45617627,"Strike Vector",purchase,1.0,0 -45617627,"Strike Vector",play,1.5,0 -45617627,"BioShock 2",purchase,1.0,0 -45617627,"BioShock 2",play,1.5,0 -45617627,"Mark of the Ninja",purchase,1.0,0 -45617627,"Mark of the Ninja",play,1.4,0 -45617627,"The Testament of Sherlock Holmes",purchase,1.0,0 -45617627,"The Testament of Sherlock Holmes",play,1.4,0 -45617627,"Lifeless Planet",purchase,1.0,0 -45617627,"Lifeless Planet",play,1.4,0 -45617627,"Red Faction",purchase,1.0,0 -45617627,"Red Faction",play,1.2,0 -45617627,"Neverwinter",purchase,1.0,0 -45617627,"Neverwinter",play,1.1,0 -45617627,"Infestation Survivor Stories",purchase,1.0,0 -45617627,"Infestation Survivor Stories",play,1.1,0 -45617627,"Hitman Sniper Challenge",purchase,1.0,0 -45617627,"Hitman Sniper Challenge",play,1.1,0 -45617627,"Mirror's Edge",purchase,1.0,0 -45617627,"Mirror's Edge",play,1.0,0 -45617627,"Ace of Spades",purchase,1.0,0 -45617627,"Ace of Spades",play,0.8,0 -45617627,"From Dust",purchase,1.0,0 -45617627,"From Dust",play,0.8,0 -45617627,"FTL Faster Than Light",purchase,1.0,0 -45617627,"FTL Faster Than Light",play,0.7,0 -45617627,"Sonic and SEGA All Stars Racing",purchase,1.0,0 -45617627,"Sonic and SEGA All Stars Racing",play,0.6,0 -45617627,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -45617627,"Red Faction Guerrilla Steam Edition",play,0.4,0 -45617627,"L.A. Noire",purchase,1.0,0 -45617627,"L.A. Noire",play,0.4,0 -45617627,"NiGHTS into Dreams...",purchase,1.0,0 -45617627,"NiGHTS into Dreams...",play,0.4,0 -45617627,"Galaxy on Fire 2 Full HD",purchase,1.0,0 -45617627,"Galaxy on Fire 2 Full HD",play,0.4,0 -45617627,"Carrier Command Gaea Mission",purchase,1.0,0 -45617627,"Carrier Command Gaea Mission",play,0.3,0 -45617627,"Nosgoth",purchase,1.0,0 -45617627,"Nosgoth",play,0.3,0 -45617627,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -45617627,"The Elder Scrolls IV Oblivion ",play,0.3,0 -45617627,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -45617627,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,0.3,0 -45617627,"The Walking Dead",purchase,1.0,0 -45617627,"The Walking Dead",play,0.3,0 -45617627,"Tomb Raider I",purchase,1.0,0 -45617627,"Tomb Raider I",play,0.2,0 -45617627,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -45617627,"Warhammer 40,000 Dawn of War II",play,0.2,0 -45617627,"Half-Life 2 Episode Two",purchase,1.0,0 -45617627,"Half-Life 2 Episode Two",play,0.2,0 -45617627,"Robocraft",purchase,1.0,0 -45617627,"Robocraft",play,0.2,0 -45617627,"Half-Life 2",purchase,1.0,0 -45617627,"Half-Life 2",play,0.2,0 -45617627,"Railroad Tycoon 3",purchase,1.0,0 -45617627,"Railroad Tycoon 3",play,0.2,0 -45617627,"Crysis",purchase,1.0,0 -45617627,"Crysis",play,0.1,0 -45617627,"Red Faction II",purchase,1.0,0 -45617627,"Crysis Wars",purchase,1.0,0 -45617627,"Crysis Warhead",purchase,1.0,0 -45617627,"Team Fortress Classic",purchase,1.0,0 -45617627,"3DMark API Overhead feature test",purchase,1.0,0 -45617627,"3DMark Cloud Gate benchmark",purchase,1.0,0 -45617627,"3DMark Fire Strike benchmark",purchase,1.0,0 -45617627,"3DMark Ice Storm benchmark",purchase,1.0,0 -45617627,"3DMark Sky Diver benchmark",purchase,1.0,0 -45617627,"Arma 3 Zeus",purchase,1.0,0 -45617627,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -45617627,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -45617627,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -45617627,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -45617627,"Gotham City Impostors Free To Play",purchase,1.0,0 -45617627,"Half-Life 2 Episode One",purchase,1.0,0 -45617627,"Half-Life 2 Lost Coast",purchase,1.0,0 -45617627,"Half-Life Blue Shift",purchase,1.0,0 -45617627,"Half-Life Opposing Force",purchase,1.0,0 -45617627,"Hard Reset Exile DLC",purchase,1.0,0 -45617627,"Mark of the Ninja Special Edition DLC",purchase,1.0,0 -45617627,"Nether - Believer",purchase,1.0,0 -45617627,"Nether Arena",purchase,1.0,0 -45617627,"Red Faction Armageddon Soundtrack",purchase,1.0,0 -45617627,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -45617627,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -45617627,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -45617627,"Thief - Opportunist",purchase,1.0,0 -187193689,"Dota 2",purchase,1.0,0 -187193689,"Dota 2",play,5.0,0 -70345887,"Empire Total War",purchase,1.0,0 -70345887,"Empire Total War",play,2.1,0 -203260681,"Professional Farmer 2014",purchase,1.0,0 -203260681,"Professional Farmer 2014",play,1.3,0 -306955075,"Football Manager 2015",purchase,1.0,0 -306955075,"Football Manager 2015",play,48.0,0 -53711793,"Day of Defeat Source",purchase,1.0,0 -53711793,"Day of Defeat Source",play,1461.0,0 -53711793,"Counter-Strike Global Offensive",purchase,1.0,0 -53711793,"Counter-Strike Global Offensive",play,702.0,0 -53711793,"Counter-Strike Source",purchase,1.0,0 -53711793,"Counter-Strike Source",play,425.0,0 -53711793,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -53711793,"Call of Duty Modern Warfare 2 - Multiplayer",play,196.0,0 -53711793,"Counter-Strike",purchase,1.0,0 -53711793,"Counter-Strike",play,120.0,0 -53711793,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -53711793,"Call of Duty Modern Warfare 3 - Multiplayer",play,94.0,0 -53711793,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -53711793,"Counter-Strike Condition Zero Deleted Scenes",play,27.0,0 -53711793,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -53711793,"Call of Duty Advanced Warfare - Multiplayer",play,11.6,0 -53711793,"Day of Defeat",purchase,1.0,0 -53711793,"Day of Defeat",play,6.1,0 -53711793,"Call of Duty Black Ops",purchase,1.0,0 -53711793,"Call of Duty Black Ops",play,3.9,0 -53711793,"Medal of Honor(TM) Single Player",purchase,1.0,0 -53711793,"Medal of Honor(TM) Single Player",play,3.2,0 -53711793,"Sniper Ghost Warrior",purchase,1.0,0 -53711793,"Sniper Ghost Warrior",play,2.1,0 -53711793,"Insurgency Modern Infantry Combat",purchase,1.0,0 -53711793,"Insurgency Modern Infantry Combat",play,1.7,0 -53711793,"Call of Duty Advanced Warfare",purchase,1.0,0 -53711793,"Call of Duty Advanced Warfare",play,1.5,0 -53711793,"Call of Duty Modern Warfare 2",purchase,1.0,0 -53711793,"Call of Duty Modern Warfare 2",play,1.5,0 -53711793,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -53711793,"Call of Duty Black Ops - Multiplayer",play,1.4,0 -53711793,"Counter-Strike Condition Zero",purchase,1.0,0 -53711793,"Counter-Strike Condition Zero",play,1.1,0 -53711793,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -53711793,"Call of Duty 4 Modern Warfare",play,1.0,0 -53711793,"Sniper Elite V2",purchase,1.0,0 -53711793,"Sniper Elite V2",play,0.9,0 -53711793,"Call of Duty Modern Warfare 3",purchase,1.0,0 -53711793,"Call of Duty Modern Warfare 3",play,0.7,0 -53711793,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -53711793,"Medal of Honor(TM) Multiplayer",play,0.6,0 -53711793,"Alien Swarm",purchase,1.0,0 -53711793,"Alien Swarm",play,0.5,0 -53711793,"Ricochet",purchase,1.0,0 -53711793,"Amnesia The Dark Descent",purchase,1.0,0 -53711793,"Call of Duty Modern Warfare 2 - Resurgence Pack",purchase,1.0,0 -53711793,"Deathmatch Classic",purchase,1.0,0 -53711793,"DiRT 2",purchase,1.0,0 -53711793,"Medal of Honor Pre-Order",purchase,1.0,0 -307181486,"Football Manager 2016",purchase,1.0,0 -307181486,"Football Manager 2016",play,42.0,0 -253224439,"Dota 2",purchase,1.0,0 -253224439,"Dota 2",play,4.4,0 -253224439,"Everlasting Summer",purchase,1.0,0 -253224439,"No More Room in Hell",purchase,1.0,0 -253224439,"Quake Live",purchase,1.0,0 -50487226,"Team Fortress 2",purchase,1.0,0 -50487226,"Team Fortress 2",play,4.9,0 -258633808,"Dota 2",purchase,1.0,0 -258633808,"Dota 2",play,98.0,0 -25490518,"Counter-Strike Source",purchase,1.0,0 -25490518,"Counter-Strike Source",play,10.1,0 -25490518,"Day of Defeat Source",purchase,1.0,0 -25490518,"Day of Defeat Source",play,5.1,0 -25490518,"Half-Life 2 Deathmatch",purchase,1.0,0 -25490518,"Half-Life 2 Deathmatch",play,1.9,0 -25490518,"Half-Life 2 Lost Coast",purchase,1.0,0 -195780309,"Grand Theft Auto V",purchase,1.0,0 -195780309,"Grand Theft Auto V",play,106.0,0 -195780309,"Game Dev Tycoon",purchase,1.0,0 -195780309,"Game Dev Tycoon",play,26.0,0 -195780309,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -195780309,"Call of Duty Black Ops II - Multiplayer",play,24.0,0 -195780309,"Turbo Dismount",purchase,1.0,0 -195780309,"Turbo Dismount",play,18.8,0 -195780309,"Counter-Strike Global Offensive",purchase,1.0,0 -195780309,"Counter-Strike Global Offensive",play,13.6,0 -195780309,"Team Fortress 2",purchase,1.0,0 -195780309,"Team Fortress 2",play,11.7,0 -195780309,"Tomb Raider",purchase,1.0,0 -195780309,"Tomb Raider",play,11.0,0 -195780309,"PAYDAY 2",purchase,1.0,0 -195780309,"PAYDAY 2",play,10.9,0 -195780309,"Defiance",purchase,1.0,0 -195780309,"Defiance",play,7.5,0 -195780309,"GameGuru",purchase,1.0,0 -195780309,"GameGuru",play,7.2,0 -195780309,"Reign Of Kings",purchase,1.0,0 -195780309,"Reign Of Kings",play,6.1,0 -195780309,"Unturned",purchase,1.0,0 -195780309,"Unturned",play,4.5,0 -195780309,"Dying Light",purchase,1.0,0 -195780309,"Dying Light",play,4.5,0 -195780309,"Call of Duty Black Ops II",purchase,1.0,0 -195780309,"Call of Duty Black Ops II",play,4.4,0 -195780309,"Garry's Mod",purchase,1.0,0 -195780309,"Garry's Mod",play,3.9,0 -195780309,"Watch_Dogs",purchase,1.0,0 -195780309,"Watch_Dogs",play,3.4,0 -195780309,"Heroes & Generals",purchase,1.0,0 -195780309,"Heroes & Generals",play,3.3,0 -195780309,"Five Nights at Freddy's 2",purchase,1.0,0 -195780309,"Five Nights at Freddy's 2",play,3.2,0 -195780309,"The Escapists",purchase,1.0,0 -195780309,"The Escapists",play,3.1,0 -195780309,"Saints Row The Third",purchase,1.0,0 -195780309,"Saints Row The Third",play,3.0,0 -195780309,"Trove",purchase,1.0,0 -195780309,"Trove",play,2.7,0 -195780309,"Rocket League",purchase,1.0,0 -195780309,"Rocket League",play,2.4,0 -195780309,"BeamNG.drive",purchase,1.0,0 -195780309,"BeamNG.drive",play,2.0,0 -195780309,"theHunter",purchase,1.0,0 -195780309,"theHunter",play,1.2,0 -195780309,"Subnautica",purchase,1.0,0 -195780309,"Subnautica",play,1.0,0 -195780309,"War Thunder",purchase,1.0,0 -195780309,"War Thunder",play,0.9,0 -195780309,"Five Nights at Freddy's 3",purchase,1.0,0 -195780309,"Five Nights at Freddy's 3",play,0.7,0 -195780309,"Dirty Bomb",purchase,1.0,0 -195780309,"Dirty Bomb",play,0.7,0 -195780309,"Emily is Away",purchase,1.0,0 -195780309,"Emily is Away",play,0.6,0 -195780309,"The Ship Single Player",purchase,1.0,0 -195780309,"The Ship Single Player",play,0.6,0 -195780309,"The Ship",purchase,1.0,0 -195780309,"The Ship",play,0.6,0 -195780309,"Marvel Heroes 2015",purchase,1.0,0 -195780309,"Marvel Heroes 2015",play,0.5,0 -195780309,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -195780309,"METAL GEAR SOLID V GROUND ZEROES",play,0.4,0 -195780309,"Counter-Strike Nexon Zombies",purchase,1.0,0 -195780309,"Counter-Strike Nexon Zombies",play,0.3,0 -195780309,"SMITE",purchase,1.0,0 -195780309,"SMITE",play,0.3,0 -195780309,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -195780309,"DARK SOULS II Scholar of the First Sin",play,0.3,0 -195780309,"The Ship Tutorial",purchase,1.0,0 -195780309,"The Ship Tutorial",play,0.3,0 -195780309,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -195780309,"Call of Duty Black Ops II - Zombies",play,0.2,0 -195780309,"404Sight",purchase,1.0,0 -195780309,"404Sight",play,0.2,0 -195780309,"GameMaker Studio",purchase,1.0,0 -195780309,"GameMaker Studio",play,0.2,0 -195780309,"Robocraft",purchase,1.0,0 -195780309,"Robocraft",play,0.1,0 -195780309,"Mitos.is The Game",purchase,1.0,0 -195780309,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -195780309,"No More Room in Hell",purchase,1.0,0 -195780309,"Gear Up",purchase,1.0,0 -195780309,"AdVenture Capitalist",purchase,1.0,0 -195780309,"Cakewalk Loop Manager",purchase,1.0,0 -195780309,"Kung Fury",purchase,1.0,0 -195780309,"Cakewalk Sound Center",purchase,1.0,0 -195780309,"Anarchy Arcade",purchase,1.0,0 -195780309,"RaceRoom Racing Experience ",purchase,1.0,0 -195780309,"Cards and Castles",purchase,1.0,0 -195780309,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -95103912,"Zombie Shooter",purchase,1.0,0 -205820352,"Dota 2",purchase,1.0,0 -205820352,"Dota 2",play,83.0,0 -203968405,"Garry's Mod",purchase,1.0,0 -203968405,"Garry's Mod",play,87.0,0 -203968405,"CastleMiner Z",purchase,1.0,0 -203968405,"CastleMiner Z",play,10.2,0 -203968405,"Amazing World",purchase,1.0,0 -203968405,"Amazing World",play,1.3,0 -203968405,"Trove",purchase,1.0,0 -203968405,"Trove",play,0.8,0 -203968405,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -203968405,"School of Dragons How to Train Your Dragon",play,0.6,0 -203968405,"Cubic Castles",purchase,1.0,0 -203968405,"Cubic Castles",play,0.5,0 -203968405,"theHunter",purchase,1.0,0 -203968405,"theHunter",play,0.3,0 -203968405,"Unturned",purchase,1.0,0 -203968405,"Unturned",play,0.2,0 -203968405,"Aura Kingdom",purchase,1.0,0 -203968405,"Among Ripples",purchase,1.0,0 -203968405,"Magic The Gathering Tactics",purchase,1.0,0 -203968405,"Star Trek Online",purchase,1.0,0 -203968405,"Super Monday Night Combat",purchase,1.0,0 -203968405,"Warframe",purchase,1.0,0 -156965566,"Sid Meier's Civilization V",purchase,1.0,0 -156965566,"Sid Meier's Civilization V",play,483.0,0 -156965566,"Garry's Mod",purchase,1.0,0 -156965566,"Garry's Mod",play,16.2,0 -156965566,"Arma 3",purchase,1.0,0 -156965566,"Arma 3",play,9.0,0 -156965566,"Verdun",purchase,1.0,0 -156965566,"Verdun",play,1.1,0 -156965566,"Unturned",purchase,1.0,0 -156965566,"Unturned",play,1.0,0 -156965566,"sZone-Online",purchase,1.0,0 -156965566,"Arma 3 Zeus",purchase,1.0,0 -156965566,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -156965566,"Survarium",purchase,1.0,0 -26637363,"Counter-Strike Condition Zero",purchase,1.0,0 -26637363,"Counter-Strike Condition Zero",play,0.5,0 -26637363,"Counter-Strike",purchase,1.0,0 -26637363,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -26637363,"Day of Defeat",purchase,1.0,0 -26637363,"Deathmatch Classic",purchase,1.0,0 -26637363,"Ricochet",purchase,1.0,0 -124709414,"Team Fortress 2",purchase,1.0,0 -124709414,"Team Fortress 2",play,1002.0,0 -197364659,"Farming Simulator 15",purchase,1.0,0 -197364659,"Farming Simulator 15",play,58.0,0 -197364659,"Counter-Strike Global Offensive",purchase,1.0,0 -197364659,"Counter-Strike Global Offensive",play,3.3,0 -197364659,"Counter-Strike Nexon Zombies",purchase,1.0,0 -197364659,"Heroes & Generals",purchase,1.0,0 -197364659,"War Thunder",purchase,1.0,0 -55761025,"Team Fortress 2",purchase,1.0,0 -55761025,"Team Fortress 2",play,787.0,0 -55761025,"Battlefield Bad Company 2",purchase,1.0,0 -55761025,"Battlefield Bad Company 2",play,659.0,0 -55761025,"Left 4 Dead 2",purchase,1.0,0 -55761025,"Left 4 Dead 2",play,61.0,0 -55761025,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -55761025,"Call of Duty Black Ops - Multiplayer",play,52.0,0 -55761025,"Grand Theft Auto V",purchase,1.0,0 -55761025,"Grand Theft Auto V",play,36.0,0 -55761025,"Mass Effect 2",purchase,1.0,0 -55761025,"Mass Effect 2",play,22.0,0 -55761025,"Need for Speed Hot Pursuit",purchase,1.0,0 -55761025,"Need for Speed Hot Pursuit",play,20.0,0 -55761025,"DiRT 2",purchase,1.0,0 -55761025,"DiRT 2",play,15.2,0 -55761025,"Call of Duty Black Ops",purchase,1.0,0 -55761025,"Call of Duty Black Ops",play,12.5,0 -55761025,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -55761025,"Call of Duty Modern Warfare 2 - Multiplayer",play,11.3,0 -55761025,"DiRT 3",purchase,1.0,0 -55761025,"DiRT 3",play,10.0,0 -55761025,"Democracy 3",purchase,1.0,0 -55761025,"Democracy 3",play,9.8,0 -55761025,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -55761025,"Call of Duty Black Ops II - Zombies",play,8.8,0 -55761025,"Call of Duty Modern Warfare 2",purchase,1.0,0 -55761025,"Call of Duty Modern Warfare 2",play,8.7,0 -55761025,"GRID",purchase,1.0,0 -55761025,"GRID",play,7.9,0 -55761025,"Assassin's Creed Brotherhood",purchase,1.0,0 -55761025,"Assassin's Creed Brotherhood",play,7.1,0 -55761025,"Homefront",purchase,1.0,0 -55761025,"Homefront",play,6.7,0 -55761025,"Crysis",purchase,1.0,0 -55761025,"Crysis",play,4.6,0 -55761025,"Assassin's Creed III",purchase,1.0,0 -55761025,"Assassin's Creed III",play,3.0,0 -55761025,"Far Cry 3",purchase,1.0,0 -55761025,"Far Cry 3",play,2.6,0 -55761025,"Crysis Warhead",purchase,1.0,0 -55761025,"Crysis Warhead",play,1.2,0 -55761025,"Tribes Ascend",purchase,1.0,0 -55761025,"Tribes Ascend",play,1.1,0 -55761025,"Portal",purchase,1.0,0 -55761025,"Portal",play,1.1,0 -55761025,"Crysis Wars",purchase,1.0,0 -55761025,"Crysis Wars",play,1.1,0 -55761025,"Batman Arkham Knight",purchase,1.0,0 -55761025,"Batman Arkham Knight",play,1.0,0 -55761025,"Reign Of Kings",purchase,1.0,0 -55761025,"Reign Of Kings",play,1.0,0 -55761025,"PlanetSide 2",purchase,1.0,0 -55761025,"PlanetSide 2",play,1.0,0 -55761025,"Portal 2",purchase,1.0,0 -55761025,"Portal 2",play,0.9,0 -55761025,"HAWKEN",purchase,1.0,0 -55761025,"HAWKEN",play,0.9,0 -55761025,"Deus Ex Human Revolution",purchase,1.0,0 -55761025,"Deus Ex Human Revolution",play,0.8,0 -55761025,"Prototype",purchase,1.0,0 -55761025,"Prototype",play,0.6,0 -55761025,"Grand Theft Auto San Andreas",purchase,1.0,0 -55761025,"Grand Theft Auto San Andreas",play,0.4,0 -55761025,"Grand Theft Auto Vice City",purchase,1.0,0 -55761025,"Grand Theft Auto Vice City",play,0.3,0 -55761025,"Mirror's Edge",purchase,1.0,0 -55761025,"Mirror's Edge",play,0.3,0 -55761025,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -55761025,"Call of Duty Black Ops II - Multiplayer",play,0.3,0 -55761025,"NEOTOKYO",purchase,1.0,0 -55761025,"NEOTOKYO",play,0.3,0 -55761025,"Napoleon Total War",purchase,1.0,0 -55761025,"Napoleon Total War",play,0.2,0 -55761025,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -55761025,"Fallout 3 - Game of the Year Edition",play,0.1,0 -55761025,"Insurgency",purchase,1.0,0 -55761025,"Insurgency",play,0.1,0 -55761025,"Prince of Persia The Two Thrones",purchase,1.0,0 -55761025,"Prince of Persia The Two Thrones",play,0.1,0 -55761025,"The Expendabros",purchase,1.0,0 -55761025,"WARMODE",purchase,1.0,0 -55761025,"Mega Man Legacy Collection",purchase,1.0,0 -55761025,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -55761025,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -55761025,"Batman Arkham City GOTY",purchase,1.0,0 -55761025,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -55761025,"Batman Arkham Origins - Initiation",purchase,1.0,0 -55761025,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -55761025,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -55761025,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -55761025,"Batman Arkham Origins",purchase,1.0,0 -55761025,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -55761025,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -55761025,"Call of Duty Black Ops II",purchase,1.0,0 -55761025,"DiRT 3 Complete Edition",purchase,1.0,0 -55761025,"Grand Theft Auto",purchase,1.0,0 -55761025,"Grand Theft Auto 2",purchase,1.0,0 -55761025,"Grand Theft Auto San Andreas",purchase,1.0,0 -55761025,"Grand Theft Auto Vice City",purchase,1.0,0 -55761025,"Grand Theft Auto III",purchase,1.0,0 -55761025,"Grand Theft Auto III",purchase,1.0,0 -55761025,"Half-Life 2 Deathmatch",purchase,1.0,0 -55761025,"Half-Life 2 Lost Coast",purchase,1.0,0 -73998041,"Sid Meier's Civilization V",purchase,1.0,0 -73998041,"Sid Meier's Civilization V",play,0.2,0 -166863117,"Stronghold 2",purchase,1.0,0 -166863117,"Stronghold 2",play,87.0,0 -166863117,"Unturned",purchase,1.0,0 -166863117,"Unturned",play,65.0,0 -166863117,"Far Cry 3",purchase,1.0,0 -166863117,"Far Cry 3",play,31.0,0 -166863117,"Ace of Spades",purchase,1.0,0 -166863117,"Ace of Spades",play,22.0,0 -166863117,"Just Cause 2",purchase,1.0,0 -166863117,"Just Cause 2",play,18.6,0 -166863117,"7 Days to Die",purchase,1.0,0 -166863117,"7 Days to Die",play,16.9,0 -166863117,"Star Conflict",purchase,1.0,0 -166863117,"Star Conflict",play,8.9,0 -166863117,"PAYDAY 2",purchase,1.0,0 -166863117,"PAYDAY 2",play,8.7,0 -166863117,"Crysis 2 Maximum Edition",purchase,1.0,0 -166863117,"Crysis 2 Maximum Edition",play,7.5,0 -166863117,"The Forest",purchase,1.0,0 -166863117,"The Forest",play,4.9,0 -166863117,"Contagion",purchase,1.0,0 -166863117,"Contagion",play,4.4,0 -166863117,"No More Room in Hell",purchase,1.0,0 -166863117,"No More Room in Hell",play,4.3,0 -166863117,"War Thunder",purchase,1.0,0 -166863117,"War Thunder",play,4.1,0 -166863117,"Counter-Strike Nexon Zombies",purchase,1.0,0 -166863117,"Counter-Strike Nexon Zombies",play,3.9,0 -166863117,"Saints Row The Third",purchase,1.0,0 -166863117,"Saints Row The Third",play,3.8,0 -166863117,"Robocraft",purchase,1.0,0 -166863117,"Robocraft",play,3.5,0 -166863117,"BLOCKADE 3D",purchase,1.0,0 -166863117,"BLOCKADE 3D",play,3.1,0 -166863117,"Dota 2",purchase,1.0,0 -166863117,"Dota 2",play,2.7,0 -166863117,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -166863117,"Just Cause 2 Multiplayer Mod",play,2.5,0 -166863117,"State of Decay",purchase,1.0,0 -166863117,"State of Decay",play,2.4,0 -166863117,"The Elder Scrolls V Skyrim",purchase,1.0,0 -166863117,"The Elder Scrolls V Skyrim",play,1.6,0 -166863117,"Stronghold 3",purchase,1.0,0 -166863117,"Stronghold 3",play,1.2,0 -166863117,"Quake Live",purchase,1.0,0 -166863117,"Quake Live",play,0.9,0 -166863117,"Garry's Mod",purchase,1.0,0 -166863117,"Garry's Mod",play,0.7,0 -166863117,"Warframe",purchase,1.0,0 -166863117,"Warframe",play,0.6,0 -166863117,"Cubot",purchase,1.0,0 -166863117,"Cubot",play,0.5,0 -166863117,"Borderlands 2 RU",purchase,1.0,0 -166863117,"Borderlands 2 RU",play,0.5,0 -166863117,"Team Fortress 2",purchase,1.0,0 -166863117,"Team Fortress 2",play,0.5,0 -166863117,"Stronghold Kingdoms",purchase,1.0,0 -166863117,"Stronghold Kingdoms",play,0.5,0 -166863117,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -166863117,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.4,0 -166863117,"PAC-MAN Championship Edition DX+",purchase,1.0,0 -166863117,"PAC-MAN Championship Edition DX+",play,0.4,0 -166863117,"Loadout",purchase,1.0,0 -166863117,"Loadout",play,0.3,0 -166863117,"Double Action Boogaloo",purchase,1.0,0 -166863117,"Double Action Boogaloo",play,0.3,0 -166863117,"sZone-Online",purchase,1.0,0 -166863117,"sZone-Online",play,0.2,0 -166863117,"Wargame Red Dragon",purchase,1.0,0 -166863117,"Wargame Red Dragon",play,0.2,0 -166863117,"Hacker Evolution",purchase,1.0,0 -166863117,"Hacker Evolution",play,0.2,0 -166863117,"Dizzel",purchase,1.0,0 -166863117,"Dizzel",play,0.2,0 -166863117,"Arma 2 Free",purchase,1.0,0 -166863117,"Arma 2 Free",play,0.2,0 -166863117,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",purchase,1.0,0 -166863117,"Haunted Memories",purchase,1.0,0 -166863117,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -166863117,"Cry of Fear",purchase,1.0,0 -166863117,"Stronghold Legends",purchase,1.0,0 -166863117,"TimeShift",purchase,1.0,0 -166863117,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -166863117,"Age of Empires Online",purchase,1.0,0 -166863117,"Amazing World",purchase,1.0,0 -166863117,"America's Army 3",purchase,1.0,0 -166863117,"America's Army Proving Grounds",purchase,1.0,0 -166863117,"APB Reloaded",purchase,1.0,0 -166863117,"Arcane Saga Online",purchase,1.0,0 -166863117,"Archeblade",purchase,1.0,0 -166863117,"Arctic Combat",purchase,1.0,0 -166863117,"Atlantica Online",purchase,1.0,0 -166863117,"Aura Kingdom",purchase,1.0,0 -166863117,"BattleBlock Theater",purchase,1.0,0 -166863117,"Bloodline Champions",purchase,1.0,0 -166863117,"Borderlands 2",purchase,1.0,0 -166863117,"Brawl Busters",purchase,1.0,0 -166863117,"Bullet Run",purchase,1.0,0 -166863117,"C9",purchase,1.0,0 -166863117,"Cakewalk Loop Manager",purchase,1.0,0 -166863117,"Champions Online",purchase,1.0,0 -166863117,"Combat Arms",purchase,1.0,0 -166863117,"Commander Conquest of the Americas Gold",purchase,1.0,0 -166863117,"Construct 2 Free",purchase,1.0,0 -166863117,"CrimeCraft GangWars",purchase,1.0,0 -166863117,"DCS World",purchase,1.0,0 -166863117,"Dead Island Epidemic",purchase,1.0,0 -166863117,"Defiance",purchase,1.0,0 -166863117,"DiggerOnline",purchase,1.0,0 -166863117,"District 187",purchase,1.0,0 -166863117,"Dragon Nest",purchase,1.0,0 -166863117,"Dragon Nest Europe",purchase,1.0,0 -166863117,"Dragons and Titans",purchase,1.0,0 -166863117,"Dungeon Fighter Online",purchase,1.0,0 -166863117,"Dungeonland",purchase,1.0,0 -166863117,"Dungeon Party",purchase,1.0,0 -166863117,"Dwarfs F2P",purchase,1.0,0 -166863117,"Enclave",purchase,1.0,0 -166863117,"EverQuest Free-to-Play",purchase,1.0,0 -166863117,"EverQuest II",purchase,1.0,0 -166863117,"EVGA PrecisionX 16",purchase,1.0,0 -166863117,"Face of Mankind",purchase,1.0,0 -166863117,"Fallen Earth",purchase,1.0,0 -166863117,"Fiesta Online",purchase,1.0,0 -166863117,"Fiesta Online NA",purchase,1.0,0 -166863117,"Firefall",purchase,1.0,0 -166863117,"Floating Point",purchase,1.0,0 -166863117,"Football Superstars",purchase,1.0,0 -166863117,"Forsaken World ",purchase,1.0,0 -166863117,"Frontline Tactics",purchase,1.0,0 -166863117,"Global Agenda",purchase,1.0,0 -166863117,"Gotham City Impostors Free To Play",purchase,1.0,0 -166863117,"Grand Chase",purchase,1.0,0 -166863117,"Guns and Robots",purchase,1.0,0 -166863117,"Heroes & Generals",purchase,1.0,0 -166863117,"HOMEFRONT Demo",purchase,1.0,0 -166863117,"Knights and Merchants",purchase,1.0,0 -166863117,"KnightShift",purchase,1.0,0 -166863117,"La Tale",purchase,1.0,0 -166863117,"Mabinogi",purchase,1.0,0 -166863117,"Magic The Gathering Tactics",purchase,1.0,0 -166863117,"March of War",purchase,1.0,0 -166863117,"Marvel Heroes 2015",purchase,1.0,0 -166863117,"Memoir '44 Online",purchase,1.0,0 -166863117,"MicroVolts Surge",purchase,1.0,0 -166863117,"Moon Breakers",purchase,1.0,0 -166863117,"NEOTOKYO",purchase,1.0,0 -166863117,"Neverwinter",purchase,1.0,0 -166863117,"Nosgoth",purchase,1.0,0 -166863117,"Only If",purchase,1.0,0 -166863117,"Pandora Saga Weapons of Balance",purchase,1.0,0 -166863117,"Panzar",purchase,1.0,0 -166863117,"Path of Exile",purchase,1.0,0 -166863117,"Pinball Arcade",purchase,1.0,0 -166863117,"Pirates of Black Cove Gold",purchase,1.0,0 -166863117,"PlanetSide 2",purchase,1.0,0 -166863117,"Pox Nora",purchase,1.0,0 -166863117,"Puzzle Pirates",purchase,1.0,0 -166863117,"Quantum Rush Online",purchase,1.0,0 -166863117,"RaceRoom Racing Experience ",purchase,1.0,0 -166863117,"Ragnarok Online 2",purchase,1.0,0 -166863117,"Realm of the Mad God",purchase,1.0,0 -166863117,"Reversion - The Escape",purchase,1.0,0 -166863117,"Rise of Incarnates",purchase,1.0,0 -166863117,"ROSE Online",purchase,1.0,0 -166863117,"Royal Quest",purchase,1.0,0 -166863117,"Rusty Hearts",purchase,1.0,0 -166863117,"Saints Row 2",purchase,1.0,0 -166863117,"Saints Row IV",purchase,1.0,0 -166863117,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -166863117,"Shadow Warrior Classic (1997)",purchase,1.0,0 -166863117,"Spiral Knights",purchase,1.0,0 -166863117,"Star Trek Online",purchase,1.0,0 -166863117,"Stronghold Crusader Extreme HD",purchase,1.0,0 -166863117,"Stronghold Crusader HD",purchase,1.0,0 -166863117,"Stronghold HD",purchase,1.0,0 -166863117,"Sunrider Mask of Arcadius",purchase,1.0,0 -166863117,"Super Crate Box",purchase,1.0,0 -166863117,"Super Monday Night Combat",purchase,1.0,0 -166863117,"Tactical Intervention",purchase,1.0,0 -166863117,"The Banner Saga Factions",purchase,1.0,0 -166863117,"The Expendabros",purchase,1.0,0 -166863117,"The Forgotten Ones",purchase,1.0,0 -166863117,"theHunter",purchase,1.0,0 -166863117,"The Lord of the Rings Online",purchase,1.0,0 -166863117,"Thinking with Time Machine",purchase,1.0,0 -166863117,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -166863117,"Tribes Ascend",purchase,1.0,0 -166863117,"Two Worlds Epic Edition",purchase,1.0,0 -166863117,"Uncharted Waters Online",purchase,1.0,0 -166863117,"Vanguard Princess",purchase,1.0,0 -166863117,"Vanguard Princess Director's Cut",purchase,1.0,0 -166863117,"Velvet Sundown",purchase,1.0,0 -166863117,"Vindictus",purchase,1.0,0 -166863117,"Warface",purchase,1.0,0 -166863117,"War Inc. Battlezone",purchase,1.0,0 -166863117,"World of Battles",purchase,1.0,0 -166863117,"World of Guns Gun Disassembly",purchase,1.0,0 -166863117,"Xam",purchase,1.0,0 -251819763,"Dota 2",purchase,1.0,0 -251819763,"Dota 2",play,0.2,0 -58761868,"The Elder Scrolls V Skyrim",purchase,1.0,0 -58761868,"The Elder Scrolls V Skyrim",play,1986.0,0 -58761868,"Fallout 4",purchase,1.0,0 -58761868,"Fallout 4",play,179.0,0 -58761868,"Borderlands 2",purchase,1.0,0 -58761868,"Borderlands 2",play,137.0,0 -58761868,"Call of Duty Modern Warfare 2",purchase,1.0,0 -58761868,"Call of Duty Modern Warfare 2",play,116.0,0 -58761868,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -58761868,"Call of Duty 4 Modern Warfare",play,94.0,0 -58761868,"Anno 2070",purchase,1.0,0 -58761868,"Anno 2070",play,88.0,0 -58761868,"Toy Soldiers",purchase,1.0,0 -58761868,"Toy Soldiers",play,85.0,0 -58761868,"Star Trek Online",purchase,1.0,0 -58761868,"Star Trek Online",play,80.0,0 -58761868,"DC Universe Online",purchase,1.0,0 -58761868,"DC Universe Online",play,79.0,0 -58761868,"Endless Space",purchase,1.0,0 -58761868,"Endless Space",play,76.0,0 -58761868,"Call of Duty World at War",purchase,1.0,0 -58761868,"Call of Duty World at War",play,67.0,0 -58761868,"Call of Duty Modern Warfare 3",purchase,1.0,0 -58761868,"Call of Duty Modern Warfare 3",play,55.0,0 -58761868,"Medal of Honor(TM) Single Player",purchase,1.0,0 -58761868,"Medal of Honor(TM) Single Player",play,46.0,0 -58761868,"Call of Duty Black Ops",purchase,1.0,0 -58761868,"Call of Duty Black Ops",play,41.0,0 -58761868,"Assassin's Creed II",purchase,1.0,0 -58761868,"Assassin's Creed II",play,36.0,0 -58761868,"Sunless Sea",purchase,1.0,0 -58761868,"Sunless Sea",play,36.0,0 -58761868,"Fable III",purchase,1.0,0 -58761868,"Fable III",play,34.0,0 -58761868,"BioShock",purchase,1.0,0 -58761868,"BioShock",play,31.0,0 -58761868,"Banished",purchase,1.0,0 -58761868,"Banished",play,29.0,0 -58761868,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -58761868,"Baldur's Gate Enhanced Edition",play,26.0,0 -58761868,"Tomb Raider",purchase,1.0,0 -58761868,"Tomb Raider",play,19.8,0 -58761868,"Fallout New Vegas",purchase,1.0,0 -58761868,"Fallout New Vegas",play,18.5,0 -58761868,"Homefront",purchase,1.0,0 -58761868,"Homefront",play,15.6,0 -58761868,"South Park The Stick of Truth",purchase,1.0,0 -58761868,"South Park The Stick of Truth",play,15.0,0 -58761868,"Shadowrun Returns",purchase,1.0,0 -58761868,"Shadowrun Returns",play,14.0,0 -58761868,"Wings of Prey",purchase,1.0,0 -58761868,"Wings of Prey",play,13.7,0 -58761868,"Wargame Red Dragon",purchase,1.0,0 -58761868,"Wargame Red Dragon",play,12.4,0 -58761868,"Grey Goo",purchase,1.0,0 -58761868,"Grey Goo",play,11.8,0 -58761868,"Grotesque Tactics Evil Heroes",purchase,1.0,0 -58761868,"Grotesque Tactics Evil Heroes",play,11.5,0 -58761868,"Portal",purchase,1.0,0 -58761868,"Portal",play,10.8,0 -58761868,"Dungeons & Dragons Daggerdale",purchase,1.0,0 -58761868,"Dungeons & Dragons Daggerdale",play,9.3,0 -58761868,"Portal 2",purchase,1.0,0 -58761868,"Portal 2",play,7.7,0 -58761868,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -58761868,"STAR WARS Knights of the Old Republic II The Sith Lords",play,6.0,0 -58761868,"Battle Los Angeles",purchase,1.0,0 -58761868,"Battle Los Angeles",play,4.1,0 -58761868,"Wargame European Escalation",purchase,1.0,0 -58761868,"Wargame European Escalation",play,2.2,0 -58761868,"Gratuitous Space Battles",purchase,1.0,0 -58761868,"Gratuitous Space Battles",play,2.0,0 -58761868,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -58761868,"Medal of Honor(TM) Multiplayer",play,1.7,0 -58761868,"Sword Coast Legends",purchase,1.0,0 -58761868,"Sword Coast Legends",play,1.4,0 -58761868,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -58761868,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.6,0 -58761868,"Wargame AirLand Battle",purchase,1.0,0 -58761868,"Wargame AirLand Battle",play,0.4,0 -58761868,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -58761868,"Fallout 3 - Game of the Year Edition",play,0.2,0 -58761868,"Grotesque Tactics 2 - Dungeons and Donuts",purchase,1.0,0 -58761868,"BioShock 2",purchase,1.0,0 -58761868,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -58761868,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -58761868,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -58761868,"Fallout New Vegas Dead Money",purchase,1.0,0 -58761868,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -58761868,"Grey Goo - Emergence Campaign",purchase,1.0,0 -58761868,"Holy Avatar vs. Maidens of the Dead",purchase,1.0,0 -58761868,"Medal of Honor Pre-Order",purchase,1.0,0 -58761868,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -58761868,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -58761868,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -58761868,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -155844529,"Dota 2",purchase,1.0,0 -155844529,"Dota 2",play,0.6,0 -279218570,"Counter-Strike Global Offensive",purchase,1.0,0 -279218570,"Counter-Strike Global Offensive",play,0.7,0 -279218570,"Dota 2",purchase,1.0,0 -279218570,"Dota 2",play,0.5,0 -268252196,"Heroes & Generals",purchase,1.0,0 -268252196,"Heroes & Generals",play,0.2,0 -268252196,"Counter-Strike Global Offensive",purchase,1.0,0 -252007735,"Dota 2",purchase,1.0,0 -252007735,"Dota 2",play,8.3,0 -109961633,"Call of Duty Modern Warfare 2",purchase,1.0,0 -109961633,"Call of Duty Modern Warfare 2",play,0.9,0 -109961633,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -109961633,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.4,0 -174170835,"Dota 2",purchase,1.0,0 -174170835,"Dota 2",play,5.3,0 -174170835,"Solstice Arena",purchase,1.0,0 -174170835,"Solstice Arena",play,1.6,0 -174170835,"Aura Kingdom",purchase,1.0,0 -174170835,"The Lord of the Rings Online",purchase,1.0,0 -174170835,"Dungeon Defenders II",purchase,1.0,0 -91020997,"Aliens vs. Predator",purchase,1.0,0 -91020997,"Aliens vs. Predator",play,88.0,0 -91020997,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -91020997,"Warhammer 40,000 Dawn of War II Retribution",play,12.4,0 -91020997,"DOOM 3 BFG Edition",purchase,1.0,0 -256636491,"Total War ROME II - Emperor Edition",purchase,1.0,0 -256636491,"Total War ROME II - Emperor Edition",play,18.4,0 -91027316,"Terraria",purchase,1.0,0 -91027316,"Terraria",play,28.0,0 -241998525,"FreeStyle2 Street Basketball",purchase,1.0,0 -153431729,"Dota 2",purchase,1.0,0 -153431729,"Dota 2",play,7.5,0 -153431729,"Team Fortress 2",purchase,1.0,0 -153431729,"Team Fortress 2",play,0.5,0 -246481939,"Rise of Incarnates",purchase,1.0,0 -246481939,"Rise of Incarnates",play,0.3,0 -207448199,"Counter-Strike Global Offensive",purchase,1.0,0 -207448199,"Counter-Strike Global Offensive",play,32.0,0 -30913209,"Counter-Strike Source",purchase,1.0,0 -30913209,"Counter-Strike Source",play,2354.0,0 -30913209,"Dota 2",purchase,1.0,0 -30913209,"Dota 2",play,506.0,0 -30913209,"Champions Online",purchase,1.0,0 -30913209,"Champions Online",play,218.0,0 -30913209,"Garry's Mod",purchase,1.0,0 -30913209,"Garry's Mod",play,88.0,0 -30913209,"Killing Floor",purchase,1.0,0 -30913209,"Killing Floor",play,75.0,0 -30913209,"GunZ 2 The Second Duel",purchase,1.0,0 -30913209,"GunZ 2 The Second Duel",play,68.0,0 -30913209,"Grand Theft Auto V",purchase,1.0,0 -30913209,"Grand Theft Auto V",play,68.0,0 -30913209,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -30913209,"Call of Duty Black Ops - Multiplayer",play,63.0,0 -30913209,"Battlefield Bad Company 2",purchase,1.0,0 -30913209,"Battlefield Bad Company 2",play,60.0,0 -30913209,"Borderlands",purchase,1.0,0 -30913209,"Borderlands",play,57.0,0 -30913209,"Counter-Strike",purchase,1.0,0 -30913209,"Counter-Strike",play,54.0,0 -30913209,"Beasts of Prey",purchase,1.0,0 -30913209,"Beasts of Prey",play,53.0,0 -30913209,"Left 4 Dead 2",purchase,1.0,0 -30913209,"Left 4 Dead 2",play,35.0,0 -30913209,"Left 4 Dead",purchase,1.0,0 -30913209,"Left 4 Dead",play,21.0,0 -30913209,"Day of Defeat Source",purchase,1.0,0 -30913209,"Day of Defeat Source",play,14.5,0 -30913209,"Grand Theft Auto IV",purchase,1.0,0 -30913209,"Grand Theft Auto IV",play,12.3,0 -30913209,"Alien Swarm",purchase,1.0,0 -30913209,"Alien Swarm",play,11.8,0 -30913209,"Call of Duty Black Ops",purchase,1.0,0 -30913209,"Call of Duty Black Ops",play,11.1,0 -30913209,"Team Fortress 2",purchase,1.0,0 -30913209,"Team Fortress 2",play,9.4,0 -30913209,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -30913209,"Batman Arkham Asylum GOTY Edition",play,7.1,0 -30913209,"Magic The Gathering Duels of the Planeswalkers 2012",purchase,1.0,0 -30913209,"Magic The Gathering Duels of the Planeswalkers 2012",play,4.5,0 -30913209,"Half-Life",purchase,1.0,0 -30913209,"Half-Life",play,4.5,0 -30913209,"Trine",purchase,1.0,0 -30913209,"Trine",play,3.1,0 -30913209,"Magicka",purchase,1.0,0 -30913209,"Magicka",play,3.0,0 -30913209,"Half-Life 2 Episode One",purchase,1.0,0 -30913209,"Half-Life 2 Episode One",play,2.9,0 -30913209,"Portal",purchase,1.0,0 -30913209,"Portal",play,2.4,0 -30913209,"Zombie Panic Source",purchase,1.0,0 -30913209,"Zombie Panic Source",play,1.9,0 -30913209,"Counter-Strike Global Offensive",purchase,1.0,0 -30913209,"Counter-Strike Global Offensive",play,1.2,0 -30913209,"Audiosurf",purchase,1.0,0 -30913209,"Audiosurf",play,1.0,0 -30913209,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -30913209,"School of Dragons How to Train Your Dragon",play,0.5,0 -30913209,"Shadowgrounds",purchase,1.0,0 -30913209,"Shadowgrounds",play,0.3,0 -30913209,"Half-Life 2 Deathmatch",purchase,1.0,0 -30913209,"Half-Life 2 Deathmatch",play,0.2,0 -30913209,"Half-Life 2 Lost Coast",purchase,1.0,0 -30913209,"Half-Life 2 Lost Coast",play,0.2,0 -30913209,"Insurgency Modern Infantry Combat",purchase,1.0,0 -30913209,"Insurgency Modern Infantry Combat",play,0.2,0 -30913209,"Age of Wushu",purchase,1.0,0 -30913209,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -30913209,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -30913209,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -30913209,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -30913209,"Counter-Strike Condition Zero",purchase,1.0,0 -30913209,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -30913209,"Half-Life Deathmatch Source",purchase,1.0,0 -30913209,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -30913209,"Shadowgrounds Survivor",purchase,1.0,0 -211994918,"Dota 2",purchase,1.0,0 -211994918,"Dota 2",play,2.8,0 -203494117,"Dota 2",purchase,1.0,0 -203494117,"Dota 2",play,0.7,0 -30172489,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -30172489,"Call of Duty Modern Warfare 3 - Multiplayer",play,67.0,0 -30172489,"Call of Duty Modern Warfare 2",purchase,1.0,0 -30172489,"Call of Duty Modern Warfare 2",play,29.0,0 -30172489,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -30172489,"Call of Duty Modern Warfare 2 - Multiplayer",play,27.0,0 -30172489,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -30172489,"Call of Duty Black Ops II - Multiplayer",play,26.0,0 -30172489,"Call of Duty Black Ops",purchase,1.0,0 -30172489,"Call of Duty Black Ops",play,20.0,0 -30172489,"Call of Duty Modern Warfare 3",purchase,1.0,0 -30172489,"Call of Duty Modern Warfare 3",play,18.6,0 -30172489,"Call of Duty Black Ops II",purchase,1.0,0 -30172489,"Call of Duty Black Ops II",play,14.0,0 -30172489,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -30172489,"Call of Duty Black Ops - Multiplayer",play,7.5,0 -30172489,"Call of Duty Ghosts",purchase,1.0,0 -30172489,"Call of Duty Ghosts",play,7.2,0 -30172489,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -30172489,"Call of Duty Ghosts - Multiplayer",play,5.7,0 -30172489,"Counter-Strike Source",purchase,1.0,0 -30172489,"Counter-Strike Source",play,5.3,0 -30172489,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -30172489,"Call of Duty Black Ops II - Zombies",play,0.2,0 -30172489,"Day of Defeat Source",purchase,1.0,0 -30172489,"Dungeon Siege III",purchase,1.0,0 -30172489,"Half-Life 2 Deathmatch",purchase,1.0,0 -30172489,"Half-Life 2 Lost Coast",purchase,1.0,0 -141097888,"Dota 2",purchase,1.0,0 -141097888,"Dota 2",play,328.0,0 -17894253,"Counter-Strike Condition Zero",purchase,1.0,0 -17894253,"Counter-Strike Condition Zero",play,4.9,0 -17894253,"Counter-Strike",purchase,1.0,0 -17894253,"Counter-Strike",play,0.2,0 -17894253,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -70779914,"Sid Meier's Civilization V",purchase,1.0,0 -70779914,"Sid Meier's Civilization V",play,184.0,0 -70779914,"Total War SHOGUN 2",purchase,1.0,0 -70779914,"Total War SHOGUN 2",play,24.0,0 -70779914,"Company of Heroes 2",purchase,1.0,0 -70779914,"Company of Heroes 2",play,10.5,0 -70779914,"Legends of Pegasus",purchase,1.0,0 -70779914,"Legends of Pegasus",play,6.9,0 -70779914,"Chivalry Medieval Warfare",purchase,1.0,0 -70779914,"Chivalry Medieval Warfare",play,2.2,0 -70779914,"Napoleon Total War",purchase,1.0,0 -70779914,"Patch testing for Chivalry",purchase,1.0,0 -70779914,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -70779914,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -115736372,"Tropico 4",purchase,1.0,0 -115736372,"Tropico 4",play,13.8,0 -181523262,"Dota 2",purchase,1.0,0 -181523262,"Dota 2",play,1.7,0 -229911,"Counter-Strike Condition Zero",purchase,1.0,0 -229911,"Counter-Strike Condition Zero",play,165.0,0 -229911,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -229911,"Call of Duty Modern Warfare 2 - Multiplayer",play,109.0,0 -229911,"Counter-Strike",purchase,1.0,0 -229911,"Counter-Strike",play,45.0,0 -229911,"Call of Duty Modern Warfare 2",purchase,1.0,0 -229911,"Call of Duty Modern Warfare 2",play,44.0,0 -229911,"Call of Duty Black Ops",purchase,1.0,0 -229911,"Call of Duty Black Ops",play,8.1,0 -229911,"Half-Life 2 Episode Two",purchase,1.0,0 -229911,"Half-Life 2 Episode Two",play,5.5,0 -229911,"Half-Life 2 Episode One",purchase,1.0,0 -229911,"Half-Life 2 Episode One",play,3.6,0 -229911,"Worms Reloaded",purchase,1.0,0 -229911,"Worms Reloaded",play,3.1,0 -229911,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -229911,"Call of Duty Black Ops - Multiplayer",play,2.8,0 -229911,"Counter-Strike Source",purchase,1.0,0 -229911,"Counter-Strike Source",play,1.5,0 -229911,"Half-Life 2",purchase,1.0,0 -229911,"Half-Life 2",play,0.6,0 -229911,"Half-Life",purchase,1.0,0 -229911,"Half-Life",play,0.5,0 -229911,"Team Fortress 2",purchase,1.0,0 -229911,"Team Fortress 2",play,0.4,0 -229911,"Insurgency Modern Infantry Combat",purchase,1.0,0 -229911,"Insurgency Modern Infantry Combat",play,0.4,0 -229911,"Day of Defeat",purchase,1.0,0 -229911,"Day of Defeat",play,0.4,0 -229911,"Half-Life 2 Lost Coast",purchase,1.0,0 -229911,"Half-Life 2 Lost Coast",play,0.3,0 -229911,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -229911,"Counter-Strike Condition Zero Deleted Scenes",play,0.2,0 -229911,"Portal",purchase,1.0,0 -229911,"Portal",play,0.1,0 -229911,"Ricochet",purchase,1.0,0 -229911,"Call of Duty Modern Warfare 2 - Resurgence Pack",purchase,1.0,0 -229911,"Call of Duty Modern Warfare 2 Stimulus Package",purchase,1.0,0 -229911,"Deathmatch Classic",purchase,1.0,0 -229911,"Half-Life 2 Deathmatch",purchase,1.0,0 -229911,"Half-Life Blue Shift",purchase,1.0,0 -229911,"Half-Life Opposing Force",purchase,1.0,0 -229911,"Half-Life Deathmatch Source",purchase,1.0,0 -229911,"Team Fortress Classic",purchase,1.0,0 -161974027,"War Thunder",purchase,1.0,0 -161974027,"War Thunder",play,8.4,0 -161974027,"Dota 2",purchase,1.0,0 -161974027,"Dota 2",play,5.7,0 -209450381,"Company of Heroes (New Steam Version)",purchase,1.0,0 -209450381,"Company of Heroes (New Steam Version)",play,97.0,0 -209450381,"Age of Empires II HD Edition",purchase,1.0,0 -209450381,"Age of Empires II HD Edition",play,41.0,0 -209450381,"Supreme Commander Forged Alliance",purchase,1.0,0 -209450381,"Supreme Commander Forged Alliance",play,29.0,0 -209450381,"Supreme Commander 2",purchase,1.0,0 -209450381,"Supreme Commander 2",play,22.0,0 -209450381,"Sid Meier's Civilization V",purchase,1.0,0 -209450381,"Sid Meier's Civilization V",play,22.0,0 -209450381,"Unturned",purchase,1.0,0 -209450381,"Unturned",play,19.2,0 -209450381,"Zombies Monsters Robots",purchase,1.0,0 -209450381,"Zombies Monsters Robots",play,4.7,0 -209450381,"MoW Face Off M",purchase,1.0,0 -209450381,"MoW Face Off M",play,3.0,0 -209450381,"No More Room in Hell",purchase,1.0,0 -209450381,"No More Room in Hell",play,2.8,0 -209450381,"METAL SLUG DEFENSE",purchase,1.0,0 -209450381,"METAL SLUG DEFENSE",play,0.8,0 -209450381,"Victory Command",purchase,1.0,0 -209450381,"Company of Heroes",purchase,1.0,0 -209450381,"Company of Heroes Opposing Fronts",purchase,1.0,0 -209450381,"Company of Heroes Tales of Valor",purchase,1.0,0 -209450381,"Rome Total War",purchase,1.0,0 -209450381,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -209450381,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -115753521,"Left 4 Dead 2",purchase,1.0,0 -19302548,"Counter-Strike Global Offensive",purchase,1.0,0 -19302548,"Counter-Strike Global Offensive",play,84.0,0 -19302548,"Unturned",purchase,1.0,0 -19302548,"Unturned",play,3.7,0 -19302548,"Counter-Strike Source",purchase,1.0,0 -19302548,"Counter-Strike Source",play,3.5,0 -19302548,"Counter-Strike Nexon Zombies",purchase,1.0,0 -19302548,"Defiance",purchase,1.0,0 -19302548,"Face of Mankind",purchase,1.0,0 -19302548,"Half-Life 2",purchase,1.0,0 -19302548,"Half-Life 2 Deathmatch",purchase,1.0,0 -19302548,"Half-Life 2 Lost Coast",purchase,1.0,0 -19302548,"Half-Life Source",purchase,1.0,0 -19302548,"Half-Life Deathmatch Source",purchase,1.0,0 -19302548,"Heroes & Generals",purchase,1.0,0 -19302548,"No More Room in Hell",purchase,1.0,0 -277541086,"Clicker Heroes",purchase,1.0,0 -277541086,"Clicker Heroes",play,51.0,0 -277541086,"Sins of a Dark Age",purchase,1.0,0 -277541086,"Sins of a Dark Age",play,1.5,0 -277541086,"Frontline Tactics",purchase,1.0,0 -277541086,"Frontline Tactics",play,0.3,0 -277541086,"Eternal Senia",purchase,1.0,0 -277541086,"Eternal Senia",play,0.3,0 -277541086,"UberStrike",purchase,1.0,0 -277541086,"UberStrike",play,0.2,0 -277541086,"Cubic Castles",purchase,1.0,0 -277541086,"Cubic Castles",play,0.2,0 -277541086,"Divine Souls",purchase,1.0,0 -277541086,"8BitMMO",purchase,1.0,0 -277541086,"Galcon 2",purchase,1.0,0 -277541086,"Anno Online",purchase,1.0,0 -277541086,"Rise of Incarnates",purchase,1.0,0 -277541086,"TERA",purchase,1.0,0 -277541086,"The Knobbly Crook Chapter I - The Horse You Sailed In On",purchase,1.0,0 -277541086,"War Thunder",purchase,1.0,0 -162396225,"Dota 2",purchase,1.0,0 -162396225,"Dota 2",play,1.2,0 -112986636,"Cities Skylines",purchase,1.0,0 -112986636,"Cities Skylines",play,50.0,0 -112986636,"Sid Meier's Civilization V",purchase,1.0,0 -112986636,"Sid Meier's Civilization V",play,12.2,0 -112986636,"Euro Truck Simulator 2",purchase,1.0,0 -112986636,"Euro Truck Simulator 2",play,9.9,0 -112986636,"The Elder Scrolls V Skyrim",purchase,1.0,0 -112986636,"The Elder Scrolls V Skyrim",play,3.2,0 -112986636,"Alan Wake's American Nightmare",purchase,1.0,0 -112986636,"Alan Wake's American Nightmare",play,1.0,0 -112986636,"Team Fortress 2",purchase,1.0,0 -112986636,"Team Fortress 2",play,0.9,0 -112986636,"PlanetSide 2",purchase,1.0,0 -112986636,"PlanetSide 2",play,0.2,0 -112986636,"Star Wars - Battlefront II",purchase,1.0,0 -112986636,"Star Wars - Battlefront II",play,0.1,0 -112986636,"Banished",purchase,1.0,0 -112986636,"Banished",play,0.1,0 -112986636,"Alan Wake",purchase,1.0,0 -112986636,"Grand Theft Auto IV",purchase,1.0,0 -112986636,"Mirror's Edge",purchase,1.0,0 -112986636,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -112986636,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -32102983,"The Elder Scrolls V Skyrim",purchase,1.0,0 -32102983,"The Elder Scrolls V Skyrim",play,309.0,0 -32102983,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -32102983,"Call of Duty Modern Warfare 2 - Multiplayer",play,301.0,0 -32102983,"Arma 2 Operation Arrowhead",purchase,1.0,0 -32102983,"Arma 2 Operation Arrowhead",play,88.0,0 -32102983,"DayZ",purchase,1.0,0 -32102983,"DayZ",play,42.0,0 -32102983,"Counter-Strike Global Offensive",purchase,1.0,0 -32102983,"Counter-Strike Global Offensive",play,29.0,0 -32102983,"The Long Dark",purchase,1.0,0 -32102983,"The Long Dark",play,15.1,0 -32102983,"7 Days to Die",purchase,1.0,0 -32102983,"7 Days to Die",play,5.3,0 -32102983,"Dota 2",purchase,1.0,0 -32102983,"Dota 2",play,3.9,0 -32102983,"Counter-Strike",purchase,1.0,0 -32102983,"Counter-Strike",play,3.7,0 -32102983,"Else Heart.Break()",purchase,1.0,0 -32102983,"Else Heart.Break()",play,2.4,0 -32102983,"Far Cry 2",purchase,1.0,0 -32102983,"Far Cry 2",play,2.3,0 -32102983,"Call of Duty Modern Warfare 2",purchase,1.0,0 -32102983,"Call of Duty Modern Warfare 2",play,2.1,0 -32102983,"Unturned",purchase,1.0,0 -32102983,"Unturned",play,1.5,0 -32102983,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -32102983,"Arma 2",purchase,1.0,0 -32102983,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -32102983,"Counter-Strike Condition Zero",purchase,1.0,0 -32102983,"Day of Defeat",purchase,1.0,0 -32102983,"Deathmatch Classic",purchase,1.0,0 -32102983,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -32102983,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -32102983,"Ricochet",purchase,1.0,0 -188144733,"Heroes & Generals",purchase,1.0,0 -188144733,"Heroes & Generals",play,0.5,0 -142754561,"Team Fortress 2",purchase,1.0,0 -142754561,"Team Fortress 2",play,147.0,0 -142754561,"Dota 2",purchase,1.0,0 -142754561,"Dota 2",play,84.0,0 -142754561,"NEOTOKYO",purchase,1.0,0 -142754561,"NEOTOKYO",play,28.0,0 -160749747,"The Elder Scrolls V Skyrim",purchase,1.0,0 -160749747,"The Elder Scrolls V Skyrim",play,2.2,0 -160749747,"Dota 2",purchase,1.0,0 -160749747,"Dota 2",play,0.8,0 -160749747,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -160749747,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -160749747,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -168733900,"Dota 2",purchase,1.0,0 -168733900,"Dota 2",play,6.8,0 -256766924,"Dota 2",purchase,1.0,0 -256766924,"Dota 2",play,1212.0,0 -256766924,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -71510748,"Team Fortress 2",purchase,1.0,0 -71510748,"Team Fortress 2",play,2158.0,0 -71510748,"Terraria",purchase,1.0,0 -71510748,"Terraria",play,130.0,0 -71510748,"GameMaker Studio",purchase,1.0,0 -71510748,"GameMaker Studio",play,109.0,0 -71510748,"Spelunky",purchase,1.0,0 -71510748,"Spelunky",play,87.0,0 -71510748,"Sid Meier's Civilization V",purchase,1.0,0 -71510748,"Sid Meier's Civilization V",play,58.0,0 -71510748,"Saints Row The Third",purchase,1.0,0 -71510748,"Saints Row The Third",play,36.0,0 -71510748,"Portal 2",purchase,1.0,0 -71510748,"Portal 2",play,26.0,0 -71510748,"Grand Theft Auto IV",purchase,1.0,0 -71510748,"Grand Theft Auto IV",play,24.0,0 -71510748,"L.A. Noire",purchase,1.0,0 -71510748,"L.A. Noire",play,20.0,0 -71510748,"Deus Ex Human Revolution",purchase,1.0,0 -71510748,"Deus Ex Human Revolution",play,18.8,0 -71510748,"Sleeping Dogs",purchase,1.0,0 -71510748,"Sleeping Dogs",play,16.8,0 -71510748,"Football Manager 2011",purchase,1.0,0 -71510748,"Football Manager 2011",play,16.1,0 -71510748,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -71510748,"Deus Ex Human Revolution - Director's Cut",play,15.7,0 -71510748,"Source Filmmaker",purchase,1.0,0 -71510748,"Source Filmmaker",play,15.6,0 -71510748,"Need for Speed Hot Pursuit",purchase,1.0,0 -71510748,"Need for Speed Hot Pursuit",play,14.8,0 -71510748,"Borderlands 2",purchase,1.0,0 -71510748,"Borderlands 2",play,14.3,0 -71510748,"Dishonored",purchase,1.0,0 -71510748,"Dishonored",play,12.7,0 -71510748,"Synergy",purchase,1.0,0 -71510748,"Synergy",play,12.7,0 -71510748,"Cities Skylines",purchase,1.0,0 -71510748,"Cities Skylines",play,11.0,0 -71510748,"XCOM Enemy Unknown",purchase,1.0,0 -71510748,"XCOM Enemy Unknown",play,10.7,0 -71510748,"Mirror's Edge",purchase,1.0,0 -71510748,"Mirror's Edge",play,10.0,0 -71510748,"FTL Faster Than Light",purchase,1.0,0 -71510748,"FTL Faster Than Light",play,9.7,0 -71510748,"Just Cause 2",purchase,1.0,0 -71510748,"Just Cause 2",play,8.8,0 -71510748,"Trine 2",purchase,1.0,0 -71510748,"Trine 2",play,8.8,0 -71510748,"Far Cry 3",purchase,1.0,0 -71510748,"Far Cry 3",play,8.7,0 -71510748,"The Binding of Isaac",purchase,1.0,0 -71510748,"The Binding of Isaac",play,8.4,0 -71510748,"Guacamelee! Gold Edition",purchase,1.0,0 -71510748,"Guacamelee! Gold Edition",play,6.8,0 -71510748,"Monaco",purchase,1.0,0 -71510748,"Monaco",play,6.3,0 -71510748,"Nidhogg",purchase,1.0,0 -71510748,"Nidhogg",play,5.6,0 -71510748,"Super Meat Boy",purchase,1.0,0 -71510748,"Super Meat Boy",play,5.6,0 -71510748,"Euro Truck Simulator 2",purchase,1.0,0 -71510748,"Euro Truck Simulator 2",play,5.4,0 -71510748,"Left 4 Dead 2",purchase,1.0,0 -71510748,"Left 4 Dead 2",play,5.3,0 -71510748,"The Ship",purchase,1.0,0 -71510748,"The Ship",play,5.2,0 -71510748,"Grand Theft Auto Vice City",purchase,1.0,0 -71510748,"Grand Theft Auto Vice City",play,4.9,0 -71510748,"Kentucky Route Zero",purchase,1.0,0 -71510748,"Kentucky Route Zero",play,4.9,0 -71510748,"The Showdown Effect",purchase,1.0,0 -71510748,"The Showdown Effect",play,4.9,0 -71510748,"The Walking Dead",purchase,1.0,0 -71510748,"The Walking Dead",play,4.4,0 -71510748,"The Wolf Among Us",purchase,1.0,0 -71510748,"The Wolf Among Us",play,4.3,0 -71510748,"Rogue Legacy",purchase,1.0,0 -71510748,"Rogue Legacy",play,4.2,0 -71510748,"PAYDAY The Heist",purchase,1.0,0 -71510748,"PAYDAY The Heist",play,4.1,0 -71510748,"Hotline Miami",purchase,1.0,0 -71510748,"Hotline Miami",play,3.9,0 -71510748,"Poker Night at the Inventory",purchase,1.0,0 -71510748,"Poker Night at the Inventory",play,3.7,0 -71510748,"Loadout",purchase,1.0,0 -71510748,"Loadout",play,3.7,0 -71510748,"Shoot Many Robots",purchase,1.0,0 -71510748,"Shoot Many Robots",play,3.6,0 -71510748,"Trine",purchase,1.0,0 -71510748,"Trine",play,3.5,0 -71510748,"Counter-Strike Global Offensive",purchase,1.0,0 -71510748,"Counter-Strike Global Offensive",play,3.4,0 -71510748,"Papers, Please",purchase,1.0,0 -71510748,"Papers, Please",play,3.4,0 -71510748,"Revelations 2012",purchase,1.0,0 -71510748,"Revelations 2012",play,3.1,0 -71510748,"Grand Theft Auto III",purchase,1.0,0 -71510748,"Grand Theft Auto III",play,3.0,0 -71510748,"Gunpoint",purchase,1.0,0 -71510748,"Gunpoint",play,2.9,0 -71510748,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -71510748,"The Witcher 2 Assassins of Kings Enhanced Edition",play,2.8,0 -71510748,"Mark of the Ninja",purchase,1.0,0 -71510748,"Mark of the Ninja",play,2.6,0 -71510748,"Bastion",purchase,1.0,0 -71510748,"Bastion",play,2.6,0 -71510748,"Poker Night 2",purchase,1.0,0 -71510748,"Poker Night 2",play,2.6,0 -71510748,"DiRT 3",purchase,1.0,0 -71510748,"DiRT 3",play,2.5,0 -71510748,"The Political Machine",purchase,1.0,0 -71510748,"The Political Machine",play,2.3,0 -71510748,"The Stanley Parable",purchase,1.0,0 -71510748,"The Stanley Parable",play,2.3,0 -71510748,"Organ Trail Director's Cut",purchase,1.0,0 -71510748,"Organ Trail Director's Cut",play,2.3,0 -71510748,"Psychonauts",purchase,1.0,0 -71510748,"Psychonauts",play,2.3,0 -71510748,"Altitude",purchase,1.0,0 -71510748,"Altitude",play,2.3,0 -71510748,"Magicka",purchase,1.0,0 -71510748,"Magicka",play,2.1,0 -71510748,"DEFCON",purchase,1.0,0 -71510748,"DEFCON",play,2.0,0 -71510748,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -71510748,"Burnout Paradise The Ultimate Box",play,1.9,0 -71510748,"Spec Ops The Line",purchase,1.0,0 -71510748,"Spec Ops The Line",play,1.8,0 -71510748,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -71510748,"Just Cause 2 Multiplayer Mod",play,1.7,0 -71510748,"Hitman Absolution",purchase,1.0,0 -71510748,"Hitman Absolution",play,1.7,0 -71510748,"Garry's Mod",purchase,1.0,0 -71510748,"Garry's Mod",play,1.7,0 -71510748,"Jazzpunk",purchase,1.0,0 -71510748,"Jazzpunk",play,1.7,0 -71510748,"The Elder Scrolls V Skyrim",purchase,1.0,0 -71510748,"The Elder Scrolls V Skyrim",play,1.6,0 -71510748,"Cook, Serve, Delicious!",purchase,1.0,0 -71510748,"Cook, Serve, Delicious!",play,1.6,0 -71510748,"Metro 2033",purchase,1.0,0 -71510748,"Metro 2033",play,1.5,0 -71510748,"Fallout New Vegas",purchase,1.0,0 -71510748,"Fallout New Vegas",play,1.5,0 -71510748,"LIMBO",purchase,1.0,0 -71510748,"LIMBO",play,1.4,0 -71510748,"Thomas Was Alone",purchase,1.0,0 -71510748,"Thomas Was Alone",play,1.3,0 -71510748,"Antichamber",purchase,1.0,0 -71510748,"Antichamber",play,1.2,0 -71510748,"Rochard",purchase,1.0,0 -71510748,"Rochard",play,1.2,0 -71510748,"Super Game Jam",purchase,1.0,0 -71510748,"Super Game Jam",play,1.2,0 -71510748,"Gun Monkeys",purchase,1.0,0 -71510748,"Gun Monkeys",play,1.2,0 -71510748,"Risk of Rain",purchase,1.0,0 -71510748,"Risk of Rain",play,1.1,0 -71510748,"Blocks That Matter",purchase,1.0,0 -71510748,"Blocks That Matter",play,1.0,0 -71510748,"Rise of the Triad",purchase,1.0,0 -71510748,"Rise of the Triad",play,1.0,0 -71510748,"Gone Home",purchase,1.0,0 -71510748,"Gone Home",play,1.0,0 -71510748,"Snuggle Truck",purchase,1.0,0 -71510748,"Snuggle Truck",play,1.0,0 -71510748,"Super Hexagon",purchase,1.0,0 -71510748,"Super Hexagon",play,0.9,0 -71510748,"Portal",purchase,1.0,0 -71510748,"Portal",play,0.9,0 -71510748,"VVVVVV",purchase,1.0,0 -71510748,"VVVVVV",play,0.9,0 -71510748,"Screencheat",purchase,1.0,0 -71510748,"Screencheat",play,0.9,0 -71510748,"Jamestown",purchase,1.0,0 -71510748,"Jamestown",play,0.9,0 -71510748,"BioShock Infinite",purchase,1.0,0 -71510748,"BioShock Infinite",play,0.8,0 -71510748,"The Swapper",purchase,1.0,0 -71510748,"The Swapper",play,0.8,0 -71510748,"Dear Esther",purchase,1.0,0 -71510748,"Dear Esther",play,0.8,0 -71510748,"SpeedRunners",purchase,1.0,0 -71510748,"SpeedRunners",play,0.8,0 -71510748,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -71510748,"Dark Souls Prepare to Die Edition",play,0.8,0 -71510748,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -71510748,"Deus Ex Human Revolution - The Missing Link",play,0.8,0 -71510748,"Atom Zombie Smasher ",purchase,1.0,0 -71510748,"Atom Zombie Smasher ",play,0.7,0 -71510748,"BioShock",purchase,1.0,0 -71510748,"BioShock",play,0.6,0 -71510748,"Don't Starve",purchase,1.0,0 -71510748,"Don't Starve",play,0.6,0 -71510748,"Teleglitch Die More Edition",purchase,1.0,0 -71510748,"Teleglitch Die More Edition",play,0.6,0 -71510748,"Thirty Flights of Loving",purchase,1.0,0 -71510748,"Thirty Flights of Loving",play,0.6,0 -71510748,"Half-Life 2",purchase,1.0,0 -71510748,"Half-Life 2",play,0.6,0 -71510748,"Breath of Death VII ",purchase,1.0,0 -71510748,"Breath of Death VII ",play,0.6,0 -71510748,"Dustforce",purchase,1.0,0 -71510748,"Dustforce",play,0.6,0 -71510748,"Grand Theft Auto San Andreas",purchase,1.0,0 -71510748,"Grand Theft Auto San Andreas",play,0.6,0 -71510748,"Portal 2 - The Final Hours",purchase,1.0,0 -71510748,"Portal 2 - The Final Hours",play,0.6,0 -71510748,"Lone Survivor The Director's Cut",purchase,1.0,0 -71510748,"Lone Survivor The Director's Cut",play,0.5,0 -71510748,"Greed Corp",purchase,1.0,0 -71510748,"Greed Corp",play,0.5,0 -71510748,"Proteus",purchase,1.0,0 -71510748,"Proteus",play,0.5,0 -71510748,"Little Inferno",purchase,1.0,0 -71510748,"Little Inferno",play,0.5,0 -71510748,"Cricket Revolution",purchase,1.0,0 -71510748,"Cricket Revolution",play,0.4,0 -71510748,"Braid",purchase,1.0,0 -71510748,"Braid",play,0.4,0 -71510748,"Cthulhu Saves the World ",purchase,1.0,0 -71510748,"Cthulhu Saves the World ",play,0.4,0 -71510748,"Torchlight",purchase,1.0,0 -71510748,"Torchlight",play,0.4,0 -71510748,"Assassin's Creed II",purchase,1.0,0 -71510748,"Assassin's Creed II",play,0.4,0 -71510748,"Natural Selection 2",purchase,1.0,0 -71510748,"Natural Selection 2",play,0.4,0 -71510748,"Cave Story+",purchase,1.0,0 -71510748,"Cave Story+",play,0.4,0 -71510748,"Universe Sandbox",purchase,1.0,0 -71510748,"Universe Sandbox",play,0.3,0 -71510748,"Shatter",purchase,1.0,0 -71510748,"Shatter",play,0.3,0 -71510748,"Nuclear Throne",purchase,1.0,0 -71510748,"Nuclear Throne",play,0.3,0 -71510748,"BIT.TRIP RUNNER",purchase,1.0,0 -71510748,"BIT.TRIP RUNNER",play,0.3,0 -71510748,"Thief Town",purchase,1.0,0 -71510748,"Thief Town",play,0.3,0 -71510748,"POSTAL 2",purchase,1.0,0 -71510748,"POSTAL 2",play,0.2,0 -71510748,"Tomb Raider",purchase,1.0,0 -71510748,"Tomb Raider",play,0.2,0 -71510748,"Saints Row 2",purchase,1.0,0 -71510748,"Saints Row 2",play,0.2,0 -71510748,"Tom Clancy's Splinter Cell Chaos Theory",purchase,1.0,0 -71510748,"Tom Clancy's Splinter Cell Chaos Theory",play,0.2,0 -71510748,"Vessel",purchase,1.0,0 -71510748,"Vessel",play,0.2,0 -71510748,"Grand Theft Auto San Andreas",purchase,1.0,0 -71510748,"Grand Theft Auto San Andreas",play,0.2,0 -71510748,"And Yet It Moves",purchase,1.0,0 -71510748,"And Yet It Moves",play,0.2,0 -71510748,"La-Mulana",purchase,1.0,0 -71510748,"La-Mulana",play,0.2,0 -71510748,"BattleBlock Theater",purchase,1.0,0 -71510748,"BattleBlock Theater",play,0.2,0 -71510748,"Eidolon",purchase,1.0,0 -71510748,"Eidolon",play,0.2,0 -71510748,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -71510748,"Superbrothers Sword & Sworcery EP",play,0.2,0 -71510748,"NEOTOKYO",purchase,1.0,0 -71510748,"NEOTOKYO",play,0.1,0 -71510748,"Dynamite Jack",purchase,1.0,0 -71510748,"Dynamite Jack",play,0.1,0 -71510748,"Floating Point",purchase,1.0,0 -71510748,"Floating Point",play,0.1,0 -71510748,"Darwinia",purchase,1.0,0 -71510748,"Gratuitous Space Battles",purchase,1.0,0 -71510748,"Dungeon of the Endless",purchase,1.0,0 -71510748,"Receiver",purchase,1.0,0 -71510748,"The Blue Flamingo",purchase,1.0,0 -71510748,"Multiwinia",purchase,1.0,0 -71510748,"Transistor",purchase,1.0,0 -71510748,"Grand Theft Auto Vice City",purchase,1.0,0 -71510748,"Gish",purchase,1.0,0 -71510748,"140",purchase,1.0,0 -71510748,"Amnesia The Dark Descent",purchase,1.0,0 -71510748,"Awesomenauts",purchase,1.0,0 -71510748,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -71510748,"Batman Arkham City GOTY",purchase,1.0,0 -71510748,"Call of Juarez Gunslinger",purchase,1.0,0 -71510748,"Cogs",purchase,1.0,0 -71510748,"Crayon Physics Deluxe",purchase,1.0,0 -71510748,"Dead Island",purchase,1.0,0 -71510748,"DiRT 3 Complete Edition",purchase,1.0,0 -71510748,"Don't Starve Together Beta",purchase,1.0,0 -71510748,"Dungeonland",purchase,1.0,0 -71510748,"Dungeonland - All access pass",purchase,1.0,0 -71510748,"Dust An Elysian Tail",purchase,1.0,0 -71510748,"Fallout 3",purchase,1.0,0 -71510748,"Far Cry 3 Blood Dragon",purchase,1.0,0 -71510748,"GameMaker Studio Standard",purchase,1.0,0 -71510748,"Giana Sisters Twisted Dreams",purchase,1.0,0 -71510748,"Grand Theft Auto",purchase,1.0,0 -71510748,"Grand Theft Auto 2",purchase,1.0,0 -71510748,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -71510748,"Grand Theft Auto III",purchase,1.0,0 -71510748,"Half-Life 2 Episode One",purchase,1.0,0 -71510748,"Half-Life 2 Episode Two",purchase,1.0,0 -71510748,"Half-Life 2 Lost Coast",purchase,1.0,0 -71510748,"Hammerfight",purchase,1.0,0 -71510748,"Hitman Sniper Challenge",purchase,1.0,0 -71510748,"Max Payne 3",purchase,1.0,0 -71510748,"NightSky",purchase,1.0,0 -71510748,"Pid ",purchase,1.0,0 -71510748,"Psychonauts Demo",purchase,1.0,0 -71510748,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -71510748,"Risen 2 - Dark Waters",purchase,1.0,0 -71510748,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -71510748,"Sacred 2 Gold",purchase,1.0,0 -71510748,"Scribblenauts Unlimited",purchase,1.0,0 -71510748,"Shank",purchase,1.0,0 -71510748,"Shelter",purchase,1.0,0 -71510748,"Space Pirates and Zombies",purchase,1.0,0 -71510748,"Starseed Pilgrim",purchase,1.0,0 -71510748,"The Ship Single Player",purchase,1.0,0 -71510748,"The Ship Tutorial",purchase,1.0,0 -71510748,"Uplink",purchase,1.0,0 -71510748,"X-COM Apocalypse",purchase,1.0,0 -71510748,"X-COM Enforcer",purchase,1.0,0 -71510748,"X-COM Interceptor",purchase,1.0,0 -71510748,"X-COM Terror from the Deep",purchase,1.0,0 -71510748,"X-COM UFO Defense",purchase,1.0,0 -71510748,"Year Walk",purchase,1.0,0 -28472068,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -28472068,"Tom Clancy's Ghost Recon Phantoms - EU",play,73.0,0 -28472068,"Trials Evolution Gold Edition",purchase,1.0,0 -28472068,"Trials Evolution Gold Edition",play,55.0,0 -28472068,"Spelunky",purchase,1.0,0 -28472068,"Spelunky",play,26.0,0 -28472068,"Call of Duty Black Ops III",purchase,1.0,0 -28472068,"Call of Duty Black Ops III",play,23.0,0 -28472068,"Sleeping Dogs",purchase,1.0,0 -28472068,"Sleeping Dogs",play,18.5,0 -28472068,"Counter-Strike Global Offensive",purchase,1.0,0 -28472068,"Counter-Strike Global Offensive",play,15.3,0 -28472068,"Team Fortress 2",purchase,1.0,0 -28472068,"Team Fortress 2",play,14.5,0 -28472068,"Counter-Strike Source",purchase,1.0,0 -28472068,"Counter-Strike Source",play,14.1,0 -28472068,"Dota 2",purchase,1.0,0 -28472068,"Dota 2",play,13.0,0 -28472068,"Batman Arkham Knight",purchase,1.0,0 -28472068,"Batman Arkham Knight",play,12.9,0 -28472068,"Batman Arkham Origins",purchase,1.0,0 -28472068,"Batman Arkham Origins",play,11.4,0 -28472068,"War Thunder",purchase,1.0,0 -28472068,"War Thunder",play,10.3,0 -28472068,"PAYDAY 2",purchase,1.0,0 -28472068,"PAYDAY 2",play,9.2,0 -28472068,"FINAL FANTASY VIII",purchase,1.0,0 -28472068,"FINAL FANTASY VIII",play,9.0,0 -28472068,"Max Payne 3",purchase,1.0,0 -28472068,"Max Payne 3",play,7.6,0 -28472068,"Day of Defeat Source",purchase,1.0,0 -28472068,"Day of Defeat Source",play,7.0,0 -28472068,"Grand Theft Auto IV",purchase,1.0,0 -28472068,"Grand Theft Auto IV",play,7.0,0 -28472068,"Titan Quest",purchase,1.0,0 -28472068,"Titan Quest",play,6.3,0 -28472068,"Grand Theft Auto Vice City",purchase,1.0,0 -28472068,"Grand Theft Auto Vice City",play,5.3,0 -28472068,"Dead Island Riptide",purchase,1.0,0 -28472068,"Dead Island Riptide",play,4.6,0 -28472068,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -28472068,"Tom Clancy's Splinter Cell Conviction",play,4.4,0 -28472068,"Half-Life 2",purchase,1.0,0 -28472068,"Half-Life 2",play,4.3,0 -28472068,"Magic The Gathering - Duels of the Planeswalkers 2013",purchase,1.0,0 -28472068,"Magic The Gathering - Duels of the Planeswalkers 2013",play,4.1,0 -28472068,"Counter-Strike",purchase,1.0,0 -28472068,"Counter-Strike",play,3.8,0 -28472068,"Half-Life",purchase,1.0,0 -28472068,"Half-Life",play,3.7,0 -28472068,"Dragon Age Origins",purchase,1.0,0 -28472068,"Dragon Age Origins",play,3.1,0 -28472068,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -28472068,"Resident Evil 6 / Biohazard 6",play,2.9,0 -28472068,"Torchlight II",purchase,1.0,0 -28472068,"Torchlight II",play,2.9,0 -28472068,"Dead Island Epidemic",purchase,1.0,0 -28472068,"Dead Island Epidemic",play,2.8,0 -28472068,"Might & Magic Heroes VI",purchase,1.0,0 -28472068,"Might & Magic Heroes VI",play,2.8,0 -28472068,"Fallout New Vegas",purchase,1.0,0 -28472068,"Fallout New Vegas",play,2.7,0 -28472068,"APB Reloaded",purchase,1.0,0 -28472068,"APB Reloaded",play,2.6,0 -28472068,"Prison Architect",purchase,1.0,0 -28472068,"Prison Architect",play,2.5,0 -28472068,"Command and Conquer 3 Tiberium Wars",purchase,1.0,0 -28472068,"Command and Conquer 3 Tiberium Wars",play,2.5,0 -28472068,"Guild Wars Game of the Year",purchase,1.0,0 -28472068,"Guild Wars Game of the Year",play,2.3,0 -28472068,"Terraria",purchase,1.0,0 -28472068,"Terraria",play,2.2,0 -28472068,"Sid Meier's Civilization V",purchase,1.0,0 -28472068,"Sid Meier's Civilization V",play,2.1,0 -28472068,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -28472068,"Rising Storm/Red Orchestra 2 Multiplayer",play,2.1,0 -28472068,"The Next BIG Thing",purchase,1.0,0 -28472068,"The Next BIG Thing",play,2.0,0 -28472068,"BioShock Infinite",purchase,1.0,0 -28472068,"BioShock Infinite",play,1.9,0 -28472068,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -28472068,"Grand Theft Auto Episodes from Liberty City",play,1.8,0 -28472068,"Far Cry 2",purchase,1.0,0 -28472068,"Far Cry 2",play,1.7,0 -28472068,"Tom Clancy's Rainbow Six Vegas 2",purchase,1.0,0 -28472068,"Tom Clancy's Rainbow Six Vegas 2",play,1.6,0 -28472068,"Hotline Miami",purchase,1.0,0 -28472068,"Hotline Miami",play,1.6,0 -28472068,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -28472068,"Call of Duty 4 Modern Warfare",play,1.5,0 -28472068,"Star Wars Knights of the Old Republic",purchase,1.0,0 -28472068,"Star Wars Knights of the Old Republic",play,1.5,0 -28472068,"Crysis",purchase,1.0,0 -28472068,"Crysis",play,1.5,0 -28472068,"Fable III",purchase,1.0,0 -28472068,"Fable III",play,1.4,0 -28472068,"Day of Defeat",purchase,1.0,0 -28472068,"Day of Defeat",play,1.3,0 -28472068,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -28472068,"Warhammer 40,000 Dawn of War II",play,1.3,0 -28472068,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -28472068,"S.T.A.L.K.E.R. Clear Sky",play,1.2,0 -28472068,"Max Payne",purchase,1.0,0 -28472068,"Max Payne",play,1.2,0 -28472068,"DiRT Rally",purchase,1.0,0 -28472068,"DiRT Rally",play,1.2,0 -28472068,"Oddworld Abe's Exoddus",purchase,1.0,0 -28472068,"Oddworld Abe's Exoddus",play,1.2,0 -28472068,"The Maw",purchase,1.0,0 -28472068,"The Maw",play,1.1,0 -28472068,"Rogue Legacy",purchase,1.0,0 -28472068,"Rogue Legacy",play,1.1,0 -28472068,"Oddworld Abe's Oddysee",purchase,1.0,0 -28472068,"Oddworld Abe's Oddysee",play,0.8,0 -28472068,"RaceRoom Racing Experience ",purchase,1.0,0 -28472068,"RaceRoom Racing Experience ",play,0.8,0 -28472068,"Mercenary Kings",purchase,1.0,0 -28472068,"Mercenary Kings",play,0.8,0 -28472068,"Majesty 2 Collection",purchase,1.0,0 -28472068,"Majesty 2 Collection",play,0.8,0 -28472068,"Grand Theft Auto San Andreas",purchase,1.0,0 -28472068,"Grand Theft Auto San Andreas",play,0.7,0 -28472068,"Monaco",purchase,1.0,0 -28472068,"Monaco",play,0.7,0 -28472068,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -28472068,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.6,0 -28472068,"Arx Fatalis",purchase,1.0,0 -28472068,"Arx Fatalis",play,0.6,0 -28472068,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -28472068,"Max Payne 2 The Fall of Max Payne",play,0.5,0 -28472068,"Quake Live",purchase,1.0,0 -28472068,"Quake Live",play,0.5,0 -28472068,"Oddworld Stranger's Wrath HD",purchase,1.0,0 -28472068,"Oddworld Stranger's Wrath HD",play,0.5,0 -28472068,"Mirror's Edge",purchase,1.0,0 -28472068,"Mirror's Edge",play,0.4,0 -28472068,"SNOW",purchase,1.0,0 -28472068,"SNOW",play,0.4,0 -28472068,"Grand Theft Auto III",purchase,1.0,0 -28472068,"Grand Theft Auto III",play,0.4,0 -28472068,"Far Cry",purchase,1.0,0 -28472068,"Far Cry",play,0.4,0 -28472068,"Grand Theft Auto Vice City",purchase,1.0,0 -28472068,"Grand Theft Auto Vice City",play,0.4,0 -28472068,"Runaway A Road Adventure",purchase,1.0,0 -28472068,"Runaway A Road Adventure",play,0.3,0 -28472068,"Left 4 Dead 2",purchase,1.0,0 -28472068,"Left 4 Dead 2",play,0.3,0 -28472068,"Deus Ex Game of the Year Edition",purchase,1.0,0 -28472068,"Deus Ex Game of the Year Edition",play,0.3,0 -28472068,"The Expendabros",purchase,1.0,0 -28472068,"The Expendabros",play,0.3,0 -28472068,"Dust An Elysian Tail",purchase,1.0,0 -28472068,"Dust An Elysian Tail",play,0.3,0 -28472068,"GundeadliGne",purchase,1.0,0 -28472068,"GundeadliGne",play,0.3,0 -28472068,"Gundemonium Recollection",purchase,1.0,0 -28472068,"Gundemonium Recollection",play,0.3,0 -28472068,"Indiana Jones and the Last Crusade",purchase,1.0,0 -28472068,"Indiana Jones and the Last Crusade",play,0.3,0 -28472068,"BioShock 2",purchase,1.0,0 -28472068,"BioShock 2",play,0.3,0 -28472068,"Crazy Machines 2",purchase,1.0,0 -28472068,"Crazy Machines 2",play,0.2,0 -28472068,"Grand Theft Auto San Andreas",purchase,1.0,0 -28472068,"Grand Theft Auto San Andreas",play,0.2,0 -28472068,"The Witcher Enhanced Edition",purchase,1.0,0 -28472068,"The Witcher Enhanced Edition",play,0.2,0 -28472068,"Portal",purchase,1.0,0 -28472068,"Portal",play,0.2,0 -28472068,"Aftermath",purchase,1.0,0 -28472068,"Aftermath",play,0.2,0 -28472068,"Crazy Machines",purchase,1.0,0 -28472068,"Crazy Machines",play,0.2,0 -28472068,"Insurgency Modern Infantry Combat",purchase,1.0,0 -28472068,"Insurgency Modern Infantry Combat",play,0.2,0 -28472068,"Hitogata Happa",purchase,1.0,0 -28472068,"Hitogata Happa",play,0.2,0 -28472068,"Half-Life 2 Update",purchase,1.0,0 -28472068,"Half-Life 2 Update",play,0.2,0 -28472068,"Indiana Jones and the Fate of Atlantis",purchase,1.0,0 -28472068,"Indiana Jones and the Fate of Atlantis",play,0.2,0 -28472068,"Path of Exile",purchase,1.0,0 -28472068,"Path of Exile",play,0.2,0 -28472068,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -28472068,"S.K.I.L.L. - Special Force 2",play,0.1,0 -28472068,"Grand Theft Auto III",purchase,1.0,0 -28472068,"Grand Theft Auto III",play,0.1,0 -28472068,"Half-Life Source",purchase,1.0,0 -28472068,"Grand Theft Auto 2",purchase,1.0,0 -28472068,"Oddworld Munch's Oddysee",purchase,1.0,0 -28472068,"Grand Theft Auto",purchase,1.0,0 -28472068,"Crazy Machines Elements",purchase,1.0,0 -28472068,"Runaway The Dream of the Turtle",purchase,1.0,0 -28472068,"Half-Life Opposing Force",purchase,1.0,0 -28472068,"Commandos 3 Destination Berlin",purchase,1.0,0 -28472068,"The Dig",purchase,1.0,0 -28472068,"Commandos Behind Enemy Lines",purchase,1.0,0 -28472068,"Aion",purchase,1.0,0 -28472068,"America's Army Proving Grounds",purchase,1.0,0 -28472068,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -28472068,"Batman Arkham City GOTY",purchase,1.0,0 -28472068,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -28472068,"Batman Arkham Origins - Initiation",purchase,1.0,0 -28472068,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -28472068,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -28472068,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -28472068,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -28472068,"BioShock",purchase,1.0,0 -28472068,"Commandos 2 Men of Courage",purchase,1.0,0 -28472068,"Commandos Beyond the Call of Duty",purchase,1.0,0 -28472068,"Counter-Strike Condition Zero",purchase,1.0,0 -28472068,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -28472068,"Crazy Machines 1.5 Inventors Training Camp",purchase,1.0,0 -28472068,"Crazy Machines 1.5 New from the Lab",purchase,1.0,0 -28472068,"Crazy Machines 2 - Jewel Digger DLC",purchase,1.0,0 -28472068,"Crazy Machines 2 Fluid Add-On",purchase,1.0,0 -28472068,"Crazy Machines Golden Gears",purchase,1.0,0 -28472068,"Deathmatch Classic",purchase,1.0,0 -28472068,"Defiance",purchase,1.0,0 -28472068,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -28472068,"Fallout New Vegas Dead Money",purchase,1.0,0 -28472068,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -28472068,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -28472068,"Firefall",purchase,1.0,0 -28472068,"Guild Wars",purchase,1.0,0 -28472068,"Half-Life 2 Deathmatch",purchase,1.0,0 -28472068,"Half-Life 2 Episode One",purchase,1.0,0 -28472068,"Half-Life 2 Episode Two",purchase,1.0,0 -28472068,"Half-Life 2 Lost Coast",purchase,1.0,0 -28472068,"Half-Life Blue Shift",purchase,1.0,0 -28472068,"Half-Life Deathmatch Source",purchase,1.0,0 -28472068,"HAWKEN",purchase,1.0,0 -28472068,"Heroes & Generals",purchase,1.0,0 -28472068,"Loadout Campaign Beta",purchase,1.0,0 -28472068,"Loom",purchase,1.0,0 -28472068,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -28472068,"Ricochet",purchase,1.0,0 -28472068,"Runaway A Twist of Fate",purchase,1.0,0 -28472068,"Team Fortress Classic",purchase,1.0,0 -28472068,"The Maw Brute Force",purchase,1.0,0 -28472068,"The Maw River Redirect",purchase,1.0,0 -28472068,"The Maw Speeder Lane",purchase,1.0,0 -28472068,"Titan Quest Immortal Throne",purchase,1.0,0 -28472068,"Tom Clancy's Ghost Recon Phantoms - EU Recon Starter Pack",purchase,1.0,0 -28472068,"Unturned",purchase,1.0,0 -28472068,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -28472068,"Yesterday",purchase,1.0,0 -124540027,"Dota 2",purchase,1.0,0 -124540027,"Dota 2",play,1.5,0 -124540027,"Warframe",purchase,1.0,0 -124540027,"Warframe",play,1.2,0 -124540027,"Magic Duels",purchase,1.0,0 -124540027,"Time Clickers",purchase,1.0,0 -101142088,"The Elder Scrolls V Skyrim",purchase,1.0,0 -101142088,"The Elder Scrolls V Skyrim",play,252.0,0 -101142088,"HAWKEN",purchase,1.0,0 -101142088,"HAWKEN",play,185.0,0 -101142088,"ARK Survival Evolved",purchase,1.0,0 -101142088,"ARK Survival Evolved",play,131.0,0 -101142088,"Warframe",purchase,1.0,0 -101142088,"Warframe",play,72.0,0 -101142088,"Borderlands 2",purchase,1.0,0 -101142088,"Borderlands 2",play,57.0,0 -101142088,"Star Conflict",purchase,1.0,0 -101142088,"Star Conflict",play,28.0,0 -101142088,"Neverwinter",purchase,1.0,0 -101142088,"Neverwinter",play,24.0,0 -101142088,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -101142088,"DARK SOULS II Scholar of the First Sin",play,16.7,0 -101142088,"Nosgoth",purchase,1.0,0 -101142088,"Nosgoth",play,11.6,0 -101142088,"Gauntlet ",purchase,1.0,0 -101142088,"Gauntlet ",play,11.6,0 -101142088,"Age of Empires II HD Edition",purchase,1.0,0 -101142088,"Age of Empires II HD Edition",play,10.4,0 -101142088,"The Elder Scrolls Online Tamriel Unlimited",purchase,1.0,0 -101142088,"The Elder Scrolls Online Tamriel Unlimited",play,10.0,0 -101142088,"Thief",purchase,1.0,0 -101142088,"Thief",play,8.7,0 -101142088,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -101142088,"Baldur's Gate Enhanced Edition",play,6.7,0 -101142088,"Heroes & Generals",purchase,1.0,0 -101142088,"Heroes & Generals",play,6.1,0 -101142088,"Dirty Bomb",purchase,1.0,0 -101142088,"Dirty Bomb",play,1.5,0 -101142088,"War Thunder",purchase,1.0,0 -101142088,"War Thunder",play,1.4,0 -101142088,"Darksiders",purchase,1.0,0 -101142088,"Darksiders",play,0.7,0 -101142088,"Blender 2.76b",purchase,1.0,0 -101142088,"Blender 2.76b",play,0.7,0 -101142088,"Wolfenstein The New Order",purchase,1.0,0 -101142088,"Wolfenstein The New Order",play,0.5,0 -101142088,"Darksiders II",purchase,1.0,0 -101142088,"Age of Empires II HD The Forgotten",purchase,1.0,0 -101142088,"Counter-Strike",purchase,1.0,0 -101142088,"Counter-Strike Condition Zero",purchase,1.0,0 -101142088,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -101142088,"Counter-Strike Global Offensive",purchase,1.0,0 -101142088,"Counter-Strike Source",purchase,1.0,0 -101142088,"Darksiders II Deathinitive Edition",purchase,1.0,0 -101142088,"Darksiders II Soundtrack",purchase,1.0,0 -101142088,"Darksiders Soundtrack",purchase,1.0,0 -101142088,"Day of Defeat",purchase,1.0,0 -101142088,"Day of Defeat Source",purchase,1.0,0 -101142088,"Deathmatch Classic",purchase,1.0,0 -101142088,"Half-Life",purchase,1.0,0 -101142088,"Half-Life 2",purchase,1.0,0 -101142088,"Half-Life 2 Deathmatch",purchase,1.0,0 -101142088,"Half-Life 2 Episode One",purchase,1.0,0 -101142088,"Half-Life 2 Episode Two",purchase,1.0,0 -101142088,"Half-Life 2 Lost Coast",purchase,1.0,0 -101142088,"Half-Life Blue Shift",purchase,1.0,0 -101142088,"Half-Life Opposing Force",purchase,1.0,0 -101142088,"Half-Life Source",purchase,1.0,0 -101142088,"Half-Life Deathmatch Source",purchase,1.0,0 -101142088,"Left 4 Dead",purchase,1.0,0 -101142088,"Left 4 Dead 2",purchase,1.0,0 -101142088,"Portal",purchase,1.0,0 -101142088,"Portal 2",purchase,1.0,0 -101142088,"Ricochet",purchase,1.0,0 -101142088,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -101142088,"Team Fortress Classic",purchase,1.0,0 -101142088,"Thief - Opportunist",purchase,1.0,0 -70075801,"Total War SHOGUN 2",purchase,1.0,0 -70075801,"Total War SHOGUN 2",play,292.0,0 -70075801,"Napoleon Total War",purchase,1.0,0 -70075801,"Napoleon Total War",play,38.0,0 -70075801,"Left 4 Dead 2",purchase,1.0,0 -70075801,"Left 4 Dead 2",play,18.9,0 -70075801,"Empire Total War",purchase,1.0,0 -70075801,"Empire Total War",play,15.1,0 -70075801,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -81245611,"Portal",purchase,1.0,0 -81245611,"Portal",play,3.3,0 -81245611,"Machinarium",purchase,1.0,0 -81245611,"Machinarium",play,1.9,0 -115290202,"Team Fortress 2",purchase,1.0,0 -115290202,"Team Fortress 2",play,0.3,0 -141162118,"Dota 2",purchase,1.0,0 -141162118,"Dota 2",play,0.5,0 -147279161,"Dota 2",purchase,1.0,0 -147279161,"Dota 2",play,398.0,0 -85333773,"Team Fortress 2",purchase,1.0,0 -85333773,"Team Fortress 2",play,65.0,0 -142775542,"The Witcher 3 Wild Hunt",purchase,1.0,0 -142775542,"The Witcher 3 Wild Hunt",play,154.0,0 -142775542,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -142775542,"Vampire The Masquerade - Bloodlines",play,69.0,0 -142775542,"Thief",purchase,1.0,0 -142775542,"Thief",play,58.0,0 -142775542,"Shadowrun Returns",purchase,1.0,0 -142775542,"Shadowrun Returns",play,52.0,0 -142775542,"Plague Inc Evolved",purchase,1.0,0 -142775542,"Plague Inc Evolved",play,32.0,0 -142775542,"Fallout New Vegas",purchase,1.0,0 -142775542,"Fallout New Vegas",play,22.0,0 -142775542,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -142775542,"STAR WARS Knights of the Old Republic II The Sith Lords",play,20.0,0 -142775542,"Total War SHOGUN 2",purchase,1.0,0 -142775542,"Total War SHOGUN 2",play,15.8,0 -142775542,"Shadowrun Hong Kong",purchase,1.0,0 -142775542,"Shadowrun Hong Kong",play,14.3,0 -142775542,"The Mighty Quest For Epic Loot",purchase,1.0,0 -142775542,"The Mighty Quest For Epic Loot",play,11.8,0 -142775542,"Space Hulk",purchase,1.0,0 -142775542,"Space Hulk",play,9.2,0 -142775542,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -142775542,"Fallout 3 - Game of the Year Edition",play,7.1,0 -142775542,"Dungeons & Dragons Chronicles of Mystara",purchase,1.0,0 -142775542,"Dungeons & Dragons Chronicles of Mystara",play,6.1,0 -142775542,"Transistor",purchase,1.0,0 -142775542,"Transistor",play,3.6,0 -142775542,"The Witcher Enhanced Edition",purchase,1.0,0 -142775542,"The Witcher Enhanced Edition",play,2.4,0 -142775542,"Portal",purchase,1.0,0 -142775542,"Portal",play,2.3,0 -142775542,"Warmachine Tactics",purchase,1.0,0 -142775542,"Warmachine Tactics",play,1.7,0 -142775542,"Trine 3 The Artifacts of Power",purchase,1.0,0 -142775542,"Trine 3 The Artifacts of Power",play,0.7,0 -142775542,"Trine",purchase,1.0,0 -142775542,"Trine",play,0.5,0 -142775542,"Fallout 2",purchase,1.0,0 -142775542,"Fallout 2",play,0.5,0 -142775542,"Spiral Knights",purchase,1.0,0 -142775542,"Spiral Knights",play,0.4,0 -142775542,"Portal 2",purchase,1.0,0 -142775542,"Portal 2",play,0.2,0 -142775542,"Tomb Raider Anniversary",purchase,1.0,0 -142775542,"Tomb Raider Anniversary",play,0.2,0 -142775542,"I Have No Mouth, and I Must Scream",purchase,1.0,0 -142775542,"I Have No Mouth, and I Must Scream",play,0.2,0 -142775542,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -142775542,"Shadowrun Dragonfall - Director's Cut",play,0.2,0 -142775542,"Trine 2",purchase,1.0,0 -142775542,"Tomb Raider II",purchase,1.0,0 -142775542,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -142775542,"Fallout",purchase,1.0,0 -142775542,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -142775542,"Fallout New Vegas Dead Money",purchase,1.0,0 -142775542,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -142775542,"Fallout Tactics",purchase,1.0,0 -142775542,"Lara Croft and the Guardian of Light",purchase,1.0,0 -142775542,"Shadowrun Dragonfall",purchase,1.0,0 -142775542,"Strike Suit Infinity",purchase,1.0,0 -142775542,"The Witcher 3 Wild Hunt - Expansion Pass",purchase,1.0,0 -142775542,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -142775542,"Thief - Ghost",purchase,1.0,0 -142775542,"Thief - Opportunist",purchase,1.0,0 -142775542,"Thief - Predator",purchase,1.0,0 -142775542,"Thief - The Bank Heist",purchase,1.0,0 -142775542,"Tomb Raider",purchase,1.0,0 -142775542,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -142775542,"Tomb Raider Chronicles",purchase,1.0,0 -142775542,"Tomb Raider Legend",purchase,1.0,0 -142775542,"Tomb Raider The Last Revelation",purchase,1.0,0 -142775542,"Tomb Raider Underworld",purchase,1.0,0 -142775542,"Tomb Raider I",purchase,1.0,0 -142775542,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -142775542,"Warhammer 40,000 Storm of Vengeance Deathwing Terminator",purchase,1.0,0 -142775542,"WARMACHINE Tactics - Retribution of Scyrah Faction Bundle",purchase,1.0,0 -216915681,"Counter-Strike Global Offensive",purchase,1.0,0 -216915681,"Counter-Strike Global Offensive",play,960.0,0 -216915681,"AirMech",purchase,1.0,0 -216915681,"Unturned",purchase,1.0,0 -7907686,"Sid Meier's Civilization V",purchase,1.0,0 -7907686,"Sid Meier's Civilization V",play,175.0,0 -7907686,"Borderlands",purchase,1.0,0 -7907686,"Borderlands",play,55.0,0 -7907686,"Left 4 Dead 2",purchase,1.0,0 -7907686,"Left 4 Dead 2",play,42.0,0 -7907686,"Tropico 4",purchase,1.0,0 -7907686,"Tropico 4",play,38.0,0 -7907686,"XCOM Enemy Unknown",purchase,1.0,0 -7907686,"XCOM Enemy Unknown",play,37.0,0 -7907686,"Left 4 Dead",purchase,1.0,0 -7907686,"Left 4 Dead",play,37.0,0 -7907686,"Just Cause 3",purchase,1.0,0 -7907686,"Just Cause 3",play,31.0,0 -7907686,"Grand Theft Auto IV",purchase,1.0,0 -7907686,"Grand Theft Auto IV",play,26.0,0 -7907686,"Sleeping Dogs",purchase,1.0,0 -7907686,"Sleeping Dogs",play,19.1,0 -7907686,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -7907686,"Sid Meier's Civilization Beyond Earth",play,18.9,0 -7907686,"Tropico 5",purchase,1.0,0 -7907686,"Tropico 5",play,17.4,0 -7907686,"Cities Skylines",purchase,1.0,0 -7907686,"Cities Skylines",play,16.1,0 -7907686,"Saints Row The Third",purchase,1.0,0 -7907686,"Saints Row The Third",play,15.0,0 -7907686,"Cities XL 2012",purchase,1.0,0 -7907686,"Cities XL 2012",play,14.8,0 -7907686,"Borderlands 2",purchase,1.0,0 -7907686,"Borderlands 2",play,14.2,0 -7907686,"L.A. Noire",purchase,1.0,0 -7907686,"L.A. Noire",play,13.3,0 -7907686,"Supreme Commander 2",purchase,1.0,0 -7907686,"Supreme Commander 2",play,12.9,0 -7907686,"Saints Row IV",purchase,1.0,0 -7907686,"Saints Row IV",play,11.7,0 -7907686,"Mass Effect",purchase,1.0,0 -7907686,"Mass Effect",play,9.9,0 -7907686,"Elite Dangerous",purchase,1.0,0 -7907686,"Elite Dangerous",play,9.4,0 -7907686,"Portal",purchase,1.0,0 -7907686,"Portal",play,9.1,0 -7907686,"Mirror's Edge",purchase,1.0,0 -7907686,"Mirror's Edge",play,6.5,0 -7907686,"SimCity 4 Deluxe",purchase,1.0,0 -7907686,"SimCity 4 Deluxe",play,6.2,0 -7907686,"Game Dev Tycoon",purchase,1.0,0 -7907686,"Game Dev Tycoon",play,6.0,0 -7907686,"Company of Heroes Tales of Valor",purchase,1.0,0 -7907686,"Company of Heroes Tales of Valor",play,5.8,0 -7907686,"Euro Truck Simulator 2",purchase,1.0,0 -7907686,"Euro Truck Simulator 2",play,5.5,0 -7907686,"Age of Empires III Complete Collection",purchase,1.0,0 -7907686,"Age of Empires III Complete Collection",play,2.7,0 -7907686,"Team Fortress 2",purchase,1.0,0 -7907686,"Team Fortress 2",play,2.6,0 -7907686,"EVE Online",purchase,1.0,0 -7907686,"EVE Online",play,2.4,0 -7907686,"Strike Suit Zero Director's Cut",purchase,1.0,0 -7907686,"Strike Suit Zero Director's Cut",play,2.3,0 -7907686,"Grand Theft Auto V",purchase,1.0,0 -7907686,"Grand Theft Auto V",play,1.8,0 -7907686,"Total War ROME II - Emperor Edition",purchase,1.0,0 -7907686,"Total War ROME II - Emperor Edition",play,1.5,0 -7907686,"Bully Scholarship Edition",purchase,1.0,0 -7907686,"Bully Scholarship Edition",play,1.3,0 -7907686,"Tom Clancy's Rainbow Six Vegas 2",purchase,1.0,0 -7907686,"Tom Clancy's Rainbow Six Vegas 2",play,1.3,0 -7907686,"Company of Heroes 2",purchase,1.0,0 -7907686,"Company of Heroes 2",play,1.3,0 -7907686,"Borderlands The Pre-Sequel",purchase,1.0,0 -7907686,"Borderlands The Pre-Sequel",play,1.3,0 -7907686,"BioShock",purchase,1.0,0 -7907686,"BioShock",play,1.0,0 -7907686,"Day of Defeat Source",purchase,1.0,0 -7907686,"Day of Defeat Source",play,1.0,0 -7907686,"Besiege",purchase,1.0,0 -7907686,"Besiege",play,1.0,0 -7907686,"Mass Effect 2",purchase,1.0,0 -7907686,"Mass Effect 2",play,0.9,0 -7907686,"World in Conflict Soviet Assault",purchase,1.0,0 -7907686,"World in Conflict Soviet Assault",play,0.9,0 -7907686,"Battlefield Bad Company 2",purchase,1.0,0 -7907686,"Battlefield Bad Company 2",play,0.8,0 -7907686,"Age of Empires II HD Edition",purchase,1.0,0 -7907686,"Age of Empires II HD Edition",play,0.7,0 -7907686,"Metro 2033",purchase,1.0,0 -7907686,"Metro 2033",play,0.6,0 -7907686,"Dota 2",purchase,1.0,0 -7907686,"Dota 2",play,0.6,0 -7907686,"Anno 2070",purchase,1.0,0 -7907686,"Anno 2070",play,0.5,0 -7907686,"Half-Life",purchase,1.0,0 -7907686,"Half-Life",play,0.5,0 -7907686,"Hitman Absolution",purchase,1.0,0 -7907686,"Hitman Absolution",play,0.5,0 -7907686,"Woody Two-Legs Attack of the Zombie Pirates",purchase,1.0,0 -7907686,"Woody Two-Legs Attack of the Zombie Pirates",play,0.5,0 -7907686,"Planetary Annihilation",purchase,1.0,0 -7907686,"Planetary Annihilation",play,0.5,0 -7907686,"Train Simulator",purchase,1.0,0 -7907686,"Train Simulator",play,0.4,0 -7907686,"Democracy 3",purchase,1.0,0 -7907686,"Democracy 3",play,0.4,0 -7907686,"Alien Swarm",purchase,1.0,0 -7907686,"Alien Swarm",play,0.3,0 -7907686,"Shattered Horizon",purchase,1.0,0 -7907686,"Shattered Horizon",play,0.2,0 -7907686,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -7907686,"Microsoft Flight Simulator X Steam Edition",play,0.1,0 -7907686,"Star Wars Knights of the Old Republic",purchase,1.0,0 -7907686,"Grand Theft Auto III",purchase,1.0,0 -7907686,"Counter-Strike",purchase,1.0,0 -7907686,"World in Conflict",purchase,1.0,0 -7907686,"The Elder Scrolls V Skyrim",purchase,1.0,0 -7907686,"Arma Cold War Assault",purchase,1.0,0 -7907686,"Borderlands 2 RU",purchase,1.0,0 -7907686,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -7907686,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -7907686,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -7907686,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -7907686,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -7907686,"Company of Heroes",purchase,1.0,0 -7907686,"Company of Heroes (New Steam Version)",purchase,1.0,0 -7907686,"Company of Heroes Opposing Fronts",purchase,1.0,0 -7907686,"Counter-Strike Condition Zero",purchase,1.0,0 -7907686,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -7907686,"Counter-Strike Source",purchase,1.0,0 -7907686,"Crysis 2 Maximum Edition",purchase,1.0,0 -7907686,"Darksiders",purchase,1.0,0 -7907686,"Day of Defeat",purchase,1.0,0 -7907686,"Dead Space",purchase,1.0,0 -7907686,"Deathmatch Classic",purchase,1.0,0 -7907686,"Democracy 3 Extremism",purchase,1.0,0 -7907686,"Democracy 3 Extremism Linux",purchase,1.0,0 -7907686,"Democracy 3 Extremism Mac",purchase,1.0,0 -7907686,"Democracy 3 Social Engineering",purchase,1.0,0 -7907686,"Democracy 3 Social Engineering Linux",purchase,1.0,0 -7907686,"Democracy 3 Social Engineering Mac",purchase,1.0,0 -7907686,"Dungeon Defenders",purchase,1.0,0 -7907686,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -7907686,"FEZ",purchase,1.0,0 -7907686,"Grand Theft Auto III",purchase,1.0,0 -7907686,"Half-Life 2",purchase,1.0,0 -7907686,"Half-Life 2 Deathmatch",purchase,1.0,0 -7907686,"Half-Life 2 Episode One",purchase,1.0,0 -7907686,"Half-Life 2 Episode Two",purchase,1.0,0 -7907686,"Half-Life 2 Lost Coast",purchase,1.0,0 -7907686,"Half-Life Blue Shift",purchase,1.0,0 -7907686,"Half-Life Opposing Force",purchase,1.0,0 -7907686,"Half-Life Source",purchase,1.0,0 -7907686,"Half-Life Deathmatch Source",purchase,1.0,0 -7907686,"Hitman Sniper Challenge",purchase,1.0,0 -7907686,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -7907686,"Medal of Honor(TM) Single Player",purchase,1.0,0 -7907686,"Medal of Honor Pre-Order",purchase,1.0,0 -7907686,"Red Faction Armageddon",purchase,1.0,0 -7907686,"Ricochet",purchase,1.0,0 -7907686,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -7907686,"Star Wars Empire at War Gold",purchase,1.0,0 -7907686,"Supreme Commander 2 - Infinite War Battle Pack One",purchase,1.0,0 -7907686,"Surgeon Simulator",purchase,1.0,0 -7907686,"Team Fortress Classic",purchase,1.0,0 -7907686,"The Bureau XCOM Declassified",purchase,1.0,0 -7907686,"The Bureau XCOM Declassified - Code Breakers",purchase,1.0,0 -7907686,"The Bureau XCOM Declassified - Light Plasma Pistol",purchase,1.0,0 -7907686,"The Bureau XCOM Hangar 6 R&D",purchase,1.0,0 -7907686,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -7907686,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -7907686,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -7907686,"Titan Quest",purchase,1.0,0 -7907686,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -7907686,"XCOM Enemy Within",purchase,1.0,0 -183390852,"Dota 2",purchase,1.0,0 -183390852,"Dota 2",play,1.4,0 -84487058,"Eufloria",purchase,1.0,0 -84487058,"Eufloria",play,27.0,0 -84487058,"Eufloria HD",purchase,1.0,0 -84487058,"Eufloria HD Original Soundtrack",purchase,1.0,0 -280664166,"Dota 2",purchase,1.0,0 -280664166,"Dota 2",play,0.8,0 -280664166,"The Mighty Quest For Epic Loot",purchase,1.0,0 -196725782,"Dota 2",purchase,1.0,0 -196725782,"Dota 2",play,74.0,0 -240551525,"Team Fortress 2",purchase,1.0,0 -240551525,"Team Fortress 2",play,31.0,0 -240551525,"Unturned",purchase,1.0,0 -240551525,"Unturned",play,31.0,0 -240551525,"Garry's Mod",purchase,1.0,0 -240551525,"Garry's Mod",play,29.0,0 -240551525,"Age of Conan Unchained - EU version",purchase,1.0,0 -240551525,"Age of Conan Unchained - EU version",play,26.0,0 -240551525,"Creativerse",purchase,1.0,0 -240551525,"Creativerse",play,17.7,0 -240551525,"Robocraft",purchase,1.0,0 -240551525,"Robocraft",play,6.6,0 -240551525,"Trove",purchase,1.0,0 -240551525,"Trove",play,4.0,0 -240551525,"LEGO The Hobbit",purchase,1.0,0 -240551525,"LEGO The Hobbit",play,2.6,0 -240551525,"Darksiders II",purchase,1.0,0 -240551525,"Darksiders II",play,2.3,0 -240551525,"BLOCKADE 3D",purchase,1.0,0 -240551525,"BLOCKADE 3D",play,2.0,0 -240551525,"theHunter",purchase,1.0,0 -240551525,"theHunter",play,1.2,0 -240551525,"Piercing Blow",purchase,1.0,0 -240551525,"Piercing Blow",play,1.0,0 -240551525,"Counter-Strike Nexon Zombies",purchase,1.0,0 -240551525,"Counter-Strike Nexon Zombies",play,0.4,0 -240551525,"Gear Up",purchase,1.0,0 -240551525,"Gear Up",play,0.2,0 -240551525,"World of Guns Gun Disassembly",purchase,1.0,0 -240551525,"World of Guns Gun Disassembly",play,0.1,0 -240551525,"Back to Dinosaur Island ",purchase,1.0,0 -240551525,"Codename CURE",purchase,1.0,0 -240551525,"Counter-Strike Global Offensive",purchase,1.0,0 -240551525,"Dragomon Hunter",purchase,1.0,0 -240551525,"Dragon's Prophet (EU)",purchase,1.0,0 -240551525,"Marvel Heroes 2015",purchase,1.0,0 -167524538,"BioShock Infinite",purchase,1.0,0 -167524538,"BioShock Infinite",play,8.7,0 -71870712,"Counter-Strike Source",purchase,1.0,0 -71870712,"Counter-Strike Source",play,448.0,0 -71870712,"Half-Life 2 Episode Two",purchase,1.0,0 -71870712,"Half-Life 2 Episode Two",play,10.3,0 -71870712,"Day of Defeat Source",purchase,1.0,0 -71870712,"Day of Defeat Source",play,0.4,0 -71870712,"Half-Life 2 Deathmatch",purchase,1.0,0 -71870712,"Half-Life 2 Deathmatch",play,0.2,0 -71870712,"Half-Life 2 Lost Coast",purchase,1.0,0 -110761091,"Dota 2",purchase,1.0,0 -110761091,"Dota 2",play,100.0,0 -228505777,"Dota 2",purchase,1.0,0 -228505777,"Dota 2",play,14.4,0 -130547869,"The Elder Scrolls V Skyrim",purchase,1.0,0 -130547869,"The Elder Scrolls V Skyrim",play,365.0,0 -130547869,"Fallout New Vegas",purchase,1.0,0 -130547869,"Fallout New Vegas",play,327.0,0 -130547869,"7 Days to Die",purchase,1.0,0 -130547869,"7 Days to Die",play,137.0,0 -130547869,"Dying Light",purchase,1.0,0 -130547869,"Dying Light",play,48.0,0 -130547869,"MURDERED SOUL SUSPECT",purchase,1.0,0 -130547869,"MURDERED SOUL SUSPECT",play,39.0,0 -130547869,"The Forest",purchase,1.0,0 -130547869,"The Forest",play,30.0,0 -130547869,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -130547869,"The Witcher 2 Assassins of Kings Enhanced Edition",play,26.0,0 -130547869,"Sid Meier's Civilization V",purchase,1.0,0 -130547869,"Sid Meier's Civilization V",play,10.6,0 -130547869,"Spore",purchase,1.0,0 -130547869,"Spore",play,5.4,0 -130547869,"Spore Creepy & Cute Parts Pack",purchase,1.0,0 -130547869,"Spore Creepy & Cute Parts Pack",play,4.8,0 -130547869,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -130547869,"Tom Clancy's Ghost Recon Phantoms - NA",play,4.2,0 -130547869,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -130547869,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -130547869,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -138135171,"Assassins Creed Unity",purchase,1.0,0 -138135171,"Assassins Creed Unity",play,26.0,0 -138135171,"DayZ",purchase,1.0,0 -138135171,"DayZ",play,0.7,0 -138135171,"Assassins Creed Chronicles China",purchase,1.0,0 -220525938,"Professional Farmer 2014",purchase,1.0,0 -220525938,"Professional Farmer 2014",play,2.0,0 -220525938,"Good Ol Times",purchase,1.0,0 -220525938,"Professional Farmer 2014 - America DLC",purchase,1.0,0 -291629654,"Dota 2",purchase,1.0,0 -291629654,"Dota 2",play,6.9,0 -181584582,"Castle Crashers",purchase,1.0,0 -181584582,"Castle Crashers",play,15.3,0 -181584582,"Terraria",purchase,1.0,0 -181584582,"Terraria",play,2.5,0 -181584582,"Magicka",purchase,1.0,0 -181584582,"Castle Crashers - Blacksmith Pack",purchase,1.0,0 -181584582,"Castle Crashers - Pink Knight Pack",purchase,1.0,0 -181584582,"La Tale",purchase,1.0,0 -39673466,"Day of Defeat",purchase,1.0,0 -39673466,"Day of Defeat",play,0.2,0 -298449280,"Dota 2",purchase,1.0,0 -298449280,"Dota 2",play,156.0,0 -254382323,"Fistful of Frags",purchase,1.0,0 -254382323,"Fistful of Frags",play,0.6,0 -30454984,"Counter-Strike Condition Zero",purchase,1.0,0 -30454984,"Counter-Strike Condition Zero",play,0.2,0 -30454984,"Counter-Strike",purchase,1.0,0 -30454984,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -30454984,"Day of Defeat",purchase,1.0,0 -30454984,"Deathmatch Classic",purchase,1.0,0 -30454984,"Ricochet",purchase,1.0,0 -180608368,"Dota 2",purchase,1.0,0 -180608368,"Dota 2",play,12.5,0 -216059509,"Team Fortress 2",purchase,1.0,0 -216059509,"Team Fortress 2",play,38.0,0 -169890700,"Metro Conflict",purchase,1.0,0 -169890700,"Metro Conflict",play,0.4,0 -169890700,"War Thunder",purchase,1.0,0 -270705624,"Dota 2",purchase,1.0,0 -270705624,"Dota 2",play,193.0,0 -27279261,"Dota 2",purchase,1.0,0 -27279261,"Dota 2",play,1862.0,0 -27279261,"Path of Exile",purchase,1.0,0 -27279261,"Path of Exile",play,603.0,0 -27279261,"Counter-Strike Global Offensive",purchase,1.0,0 -27279261,"Counter-Strike Global Offensive",play,209.0,0 -27279261,"Sid Meier's Civilization V",purchase,1.0,0 -27279261,"Sid Meier's Civilization V",play,141.0,0 -27279261,"Killing Floor",purchase,1.0,0 -27279261,"Killing Floor",play,107.0,0 -27279261,"The Elder Scrolls V Skyrim",purchase,1.0,0 -27279261,"The Elder Scrolls V Skyrim",play,81.0,0 -27279261,"War Thunder",purchase,1.0,0 -27279261,"War Thunder",play,76.0,0 -27279261,"Borderlands 2",purchase,1.0,0 -27279261,"Borderlands 2",play,72.0,0 -27279261,"Saints Row The Third",purchase,1.0,0 -27279261,"Saints Row The Third",play,55.0,0 -27279261,"Team Fortress 2",purchase,1.0,0 -27279261,"Team Fortress 2",play,43.0,0 -27279261,"Clicker Heroes",purchase,1.0,0 -27279261,"Clicker Heroes",play,26.0,0 -27279261,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -27279261,"Call of Duty 4 Modern Warfare",play,26.0,0 -27279261,"Darksiders II",purchase,1.0,0 -27279261,"Darksiders II",play,26.0,0 -27279261,"Darksiders",purchase,1.0,0 -27279261,"Darksiders",play,23.0,0 -27279261,"Portal 2",purchase,1.0,0 -27279261,"Portal 2",play,19.5,0 -27279261,"Left 4 Dead 2",purchase,1.0,0 -27279261,"Left 4 Dead 2",play,19.4,0 -27279261,"F.E.A.R. 3",purchase,1.0,0 -27279261,"F.E.A.R. 3",play,19.4,0 -27279261,"Borderlands",purchase,1.0,0 -27279261,"Borderlands",play,19.1,0 -27279261,"Audiosurf",purchase,1.0,0 -27279261,"Audiosurf",play,17.4,0 -27279261,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -27279261,"Sonic & All-Stars Racing Transformed",play,16.5,0 -27279261,"Devil May Cry 4",purchase,1.0,0 -27279261,"Devil May Cry 4",play,15.8,0 -27279261,"Command and Conquer 3 Kane's Wrath",purchase,1.0,0 -27279261,"Command and Conquer 3 Kane's Wrath",play,14.5,0 -27279261,"Hearts of Iron II Complete",purchase,1.0,0 -27279261,"Hearts of Iron II Complete",play,14.4,0 -27279261,"DOOM 3 Resurrection of Evil",purchase,1.0,0 -27279261,"DOOM 3 Resurrection of Evil",play,12.7,0 -27279261,"Counter-Strike Condition Zero",purchase,1.0,0 -27279261,"Counter-Strike Condition Zero",play,12.6,0 -27279261,"Beat Hazard",purchase,1.0,0 -27279261,"Beat Hazard",play,12.4,0 -27279261,"Garry's Mod",purchase,1.0,0 -27279261,"Garry's Mod",play,12.2,0 -27279261,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -27279261,"Unreal Tournament 3 Black Edition",play,11.0,0 -27279261,"Poker Night 2",purchase,1.0,0 -27279261,"Poker Night 2",play,10.7,0 -27279261,"DOOM 3",purchase,1.0,0 -27279261,"DOOM 3",play,10.5,0 -27279261,"Sonic Generations",purchase,1.0,0 -27279261,"Sonic Generations",play,10.0,0 -27279261,"PAYDAY 2",purchase,1.0,0 -27279261,"PAYDAY 2",play,8.6,0 -27279261,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -27279261,"Killing Floor Mod Defence Alliance 2",play,7.6,0 -27279261,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -27279261,"F.E.A.R. 2 Project Origin",play,7.5,0 -27279261,"Magicka",purchase,1.0,0 -27279261,"Magicka",play,6.5,0 -27279261,"Torchlight II",purchase,1.0,0 -27279261,"Torchlight II",play,5.6,0 -27279261,"Counter-Strike Source",purchase,1.0,0 -27279261,"Counter-Strike Source",play,5.4,0 -27279261,"Tropico 4",purchase,1.0,0 -27279261,"Tropico 4",play,5.3,0 -27279261,"Counter-Strike",purchase,1.0,0 -27279261,"Counter-Strike",play,4.9,0 -27279261,"Sanctum 2",purchase,1.0,0 -27279261,"Sanctum 2",play,4.4,0 -27279261,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -27279261,"F.E.A.R. Perseus Mandate",play,4.4,0 -27279261,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -27279261,"Plants vs. Zombies Game of the Year",play,4.3,0 -27279261,"Supreme Commander Forged Alliance",purchase,1.0,0 -27279261,"Supreme Commander Forged Alliance",play,4.3,0 -27279261,"Left 4 Dead",purchase,1.0,0 -27279261,"Left 4 Dead",play,4.3,0 -27279261,"Mark of the Ninja",purchase,1.0,0 -27279261,"Mark of the Ninja",play,4.1,0 -27279261,"L.A. Noire",purchase,1.0,0 -27279261,"L.A. Noire",play,4.0,0 -27279261,"Brtal Legend",purchase,1.0,0 -27279261,"Brtal Legend",play,4.0,0 -27279261,"Crysis 2 Maximum Edition",purchase,1.0,0 -27279261,"Crysis 2 Maximum Edition",play,3.4,0 -27279261,"Trine 2",purchase,1.0,0 -27279261,"Trine 2",play,3.4,0 -27279261,"FINAL FANTASY VII",purchase,1.0,0 -27279261,"FINAL FANTASY VII",play,3.2,0 -27279261,"Risen 2 - Dark Waters",purchase,1.0,0 -27279261,"Risen 2 - Dark Waters",play,3.1,0 -27279261,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -27279261,"Burnout Paradise The Ultimate Box",play,3.1,0 -27279261,"The Darkness II",purchase,1.0,0 -27279261,"The Darkness II",play,3.0,0 -27279261,"Sid Meier's Civilization III Complete",purchase,1.0,0 -27279261,"Sid Meier's Civilization III Complete",play,2.7,0 -27279261,"Age of Empires II HD Edition",purchase,1.0,0 -27279261,"Age of Empires II HD Edition",play,2.6,0 -27279261,"Devil May Cry 3 Special Edition",purchase,1.0,0 -27279261,"Devil May Cry 3 Special Edition",play,2.6,0 -27279261,"Warlock - Master of the Arcane",purchase,1.0,0 -27279261,"Warlock - Master of the Arcane",play,2.4,0 -27279261,"Gauntlet ",purchase,1.0,0 -27279261,"Gauntlet ",play,2.3,0 -27279261,"Risen",purchase,1.0,0 -27279261,"Risen",play,2.2,0 -27279261,"The Showdown Effect",purchase,1.0,0 -27279261,"The Showdown Effect",play,2.1,0 -27279261,"Prime World Defenders",purchase,1.0,0 -27279261,"Prime World Defenders",play,2.1,0 -27279261,"KickBeat Steam Edition",purchase,1.0,0 -27279261,"KickBeat Steam Edition",play,2.0,0 -27279261,"Always Sometimes Monsters",purchase,1.0,0 -27279261,"Always Sometimes Monsters",play,2.0,0 -27279261,"Cthulhu Saves the World ",purchase,1.0,0 -27279261,"Cthulhu Saves the World ",play,1.9,0 -27279261,"Terraria",purchase,1.0,0 -27279261,"Terraria",play,1.7,0 -27279261,"Portal",purchase,1.0,0 -27279261,"Portal",play,1.6,0 -27279261,"Blackguards",purchase,1.0,0 -27279261,"Blackguards",play,1.5,0 -27279261,"Half-Life 2",purchase,1.0,0 -27279261,"Half-Life 2",play,1.5,0 -27279261,"Medal of Honor(TM) Single Player",purchase,1.0,0 -27279261,"Medal of Honor(TM) Single Player",play,1.4,0 -27279261,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -27279261,"Red Orchestra Ostfront 41-45",play,1.4,0 -27279261,"Super Meat Boy",purchase,1.0,0 -27279261,"Super Meat Boy",play,1.4,0 -27279261,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -27279261,"THE KING OF FIGHTERS XIII STEAM EDITION",play,1.4,0 -27279261,"Full Mojo Rampage",purchase,1.0,0 -27279261,"Full Mojo Rampage",play,1.4,0 -27279261,"PixelJunk Eden",purchase,1.0,0 -27279261,"PixelJunk Eden",play,1.3,0 -27279261,"Europa Universalis III",purchase,1.0,0 -27279261,"Europa Universalis III",play,1.3,0 -27279261,"System Shock 2",purchase,1.0,0 -27279261,"System Shock 2",play,1.2,0 -27279261,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -27279261,"Batman Arkham Asylum GOTY Edition",play,1.2,0 -27279261,"Killer is Dead",purchase,1.0,0 -27279261,"Killer is Dead",play,1.2,0 -27279261,"X-Blades",purchase,1.0,0 -27279261,"X-Blades",play,1.2,0 -27279261,"Hammerwatch",purchase,1.0,0 -27279261,"Hammerwatch",play,1.2,0 -27279261,"Castle Crashers",purchase,1.0,0 -27279261,"Castle Crashers",play,1.2,0 -27279261,"To the Moon",purchase,1.0,0 -27279261,"To the Moon",play,0.9,0 -27279261,"Eets Munchies",purchase,1.0,0 -27279261,"Eets Munchies",play,0.9,0 -27279261,"Strike Suit Infinity",purchase,1.0,0 -27279261,"Strike Suit Infinity",play,0.9,0 -27279261,"Superfrog HD",purchase,1.0,0 -27279261,"Superfrog HD",play,0.9,0 -27279261,"Dungeonland",purchase,1.0,0 -27279261,"Dungeonland",play,0.9,0 -27279261,"War of the Roses",purchase,1.0,0 -27279261,"War of the Roses",play,0.9,0 -27279261,"Euro Truck Simulator 2",purchase,1.0,0 -27279261,"Euro Truck Simulator 2",play,0.8,0 -27279261,"Child of Light",purchase,1.0,0 -27279261,"Child of Light",play,0.8,0 -27279261,"F.E.A.R.",purchase,1.0,0 -27279261,"F.E.A.R.",play,0.6,0 -27279261,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -27279261,"Command and Conquer Red Alert 3 - Uprising",play,0.5,0 -27279261,"R.U.S.E",purchase,1.0,0 -27279261,"R.U.S.E",play,0.5,0 -27279261,"Alien Swarm",purchase,1.0,0 -27279261,"Alien Swarm",play,0.5,0 -27279261,"Day of Defeat",purchase,1.0,0 -27279261,"Day of Defeat",play,0.4,0 -27279261,"Super Monday Night Combat",purchase,1.0,0 -27279261,"Super Monday Night Combat",play,0.4,0 -27279261,"Mirror's Edge",purchase,1.0,0 -27279261,"Mirror's Edge",play,0.3,0 -27279261,"Fractured Space",purchase,1.0,0 -27279261,"Fractured Space",play,0.3,0 -27279261,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -27279261,"The Incredible Adventures of Van Helsing",play,0.3,0 -27279261,"Dungeon Defenders",purchase,1.0,0 -27279261,"Dungeon Defenders",play,0.3,0 -27279261,"Deus Ex Human Revolution",purchase,1.0,0 -27279261,"Deus Ex Human Revolution",play,0.2,0 -27279261,"Crusader Kings II",purchase,1.0,0 -27279261,"Crusader Kings II",play,0.2,0 -27279261,"Command and Conquer 3 Tiberium Wars",purchase,1.0,0 -27279261,"Command and Conquer 3 Tiberium Wars",play,0.1,0 -27279261,"GRID 2",purchase,1.0,0 -27279261,"GRID 2",play,0.1,0 -27279261,"F.E.A.R. Extraction Point",purchase,1.0,0 -27279261,"Neverwinter",purchase,1.0,0 -27279261,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -27279261,"Worms Ultimate Mayhem",purchase,1.0,0 -27279261,"Alien Breed 2 Assault",purchase,1.0,0 -27279261,"Alien Breed 3 Descent",purchase,1.0,0 -27279261,"Alien Breed Impact",purchase,1.0,0 -27279261,"ArcaniA",purchase,1.0,0 -27279261,"Bastion",purchase,1.0,0 -27279261,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -27279261,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -27279261,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -27279261,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -27279261,"Brothers - A Tale of Two Sons",purchase,1.0,0 -27279261,"Colin McRae Rally",purchase,1.0,0 -27279261,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -27279261,"Darkest Hour Europe '44-'45",purchase,1.0,0 -27279261,"Dead Island Epidemic",purchase,1.0,0 -27279261,"Deadlight",purchase,1.0,0 -27279261,"Deadlight Original Soundtrack",purchase,1.0,0 -27279261,"Dead Space",purchase,1.0,0 -27279261,"Deathmatch Classic",purchase,1.0,0 -27279261,"Deponia",purchase,1.0,0 -27279261,"DiRT Showdown",purchase,1.0,0 -27279261,"Dragon Age Origins",purchase,1.0,0 -27279261,"Dungeonland - All access pass",purchase,1.0,0 -27279261,"East India Company Gold",purchase,1.0,0 -27279261,"GRID",purchase,1.0,0 -27279261,"Half-Life 2 Deathmatch",purchase,1.0,0 -27279261,"Half-Life 2 Episode One",purchase,1.0,0 -27279261,"Half-Life 2 Lost Coast",purchase,1.0,0 -27279261,"Half-Life Deathmatch Source",purchase,1.0,0 -27279261,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",purchase,1.0,0 -27279261,"Insurgency",purchase,1.0,0 -27279261,"Legend of Grimrock",purchase,1.0,0 -27279261,"Leviathan Warships",purchase,1.0,0 -27279261,"Magicka Vietnam",purchase,1.0,0 -27279261,"Mare Nostrum",purchase,1.0,0 -27279261,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -27279261,"Medal of Honor Pre-Order",purchase,1.0,0 -27279261,"Metro 2033",purchase,1.0,0 -27279261,"Mount & Blade With Fire and Sword",purchase,1.0,0 -27279261,"Oddworld Abe's Exoddus",purchase,1.0,0 -27279261,"Oddworld Abe's Oddysee",purchase,1.0,0 -27279261,"Oddworld Munch's Oddysee",purchase,1.0,0 -27279261,"Oddworld Stranger's Wrath HD",purchase,1.0,0 -27279261,"One Finger Death Punch",purchase,1.0,0 -27279261,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -27279261,"Operation Flashpoint Red River",purchase,1.0,0 -27279261,"Orcs Must Die! 2",purchase,1.0,0 -27279261,"Outlast",purchase,1.0,0 -27279261,"Overlord",purchase,1.0,0 -27279261,"Overlord Raising Hell",purchase,1.0,0 -27279261,"Overlord II",purchase,1.0,0 -27279261,"Painkiller Hell & Damnation",purchase,1.0,0 -27279261,"R.U.S.E.",purchase,1.0,0 -27279261,"Red Faction Armageddon",purchase,1.0,0 -27279261,"Ricochet",purchase,1.0,0 -27279261,"Rise of the Argonauts",purchase,1.0,0 -27279261,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -27279261,"Sacred 2 Gold",purchase,1.0,0 -27279261,"Sacred Citadel",purchase,1.0,0 -27279261,"Saints Row 2",purchase,1.0,0 -27279261,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -27279261,"SpellForce 2 - Faith in Destiny",purchase,1.0,0 -27279261,"Supreme Commander",purchase,1.0,0 -27279261,"Tesla Effect",purchase,1.0,0 -27279261,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -27279261,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -27279261,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -27279261,"The Guild II",purchase,1.0,0 -27279261,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -27279261,"The Lord of the Rings War in the North",purchase,1.0,0 -27279261,"Tribes Ascend - Steam Starter Pack",purchase,1.0,0 -27279261,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -27279261,"War of the Roses Kingmaker",purchase,1.0,0 -27279261,"War of the Roses Balance Beta",purchase,1.0,0 -27279261,"Worms",purchase,1.0,0 -27279261,"Worms Armageddon",purchase,1.0,0 -27279261,"Worms Blast",purchase,1.0,0 -27279261,"Worms Crazy Golf",purchase,1.0,0 -27279261,"Worms Pinball",purchase,1.0,0 -191422617,"Unturned",purchase,1.0,0 -191422617,"Unturned",play,17.6,0 -191422617,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -155781142,"Dota 2",purchase,1.0,0 -155781142,"Dota 2",play,0.4,0 -177976130,"Counter-Strike Global Offensive",purchase,1.0,0 -177976130,"Counter-Strike Global Offensive",play,281.0,0 -177976130,"Firefall",purchase,1.0,0 -177976130,"Firefall",play,15.6,0 -177976130,"Dirty Bomb",purchase,1.0,0 -177976130,"Dirty Bomb",play,6.8,0 -151331732,"Sid Meier's Civilization V",purchase,1.0,0 -151331732,"Sid Meier's Civilization V",play,48.0,0 -151331732,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -151331732,"Batman Arkham Asylum GOTY Edition",play,14.2,0 -151331732,"Batman Arkham City GOTY",purchase,1.0,0 -151331732,"Batman Arkham City GOTY",play,7.4,0 -151331732,"Age of Empires II HD Edition",purchase,1.0,0 -151331732,"Age of Empires II HD Edition",play,7.3,0 -151331732,"Narcissu 1st & 2nd",purchase,1.0,0 -151331732,"Narcissu 1st & 2nd",play,5.6,0 -151331732,"Sunrider Mask of Arcadius",purchase,1.0,0 -151331732,"Sunrider Mask of Arcadius",play,1.0,0 -151331732,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -151331732,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -177828156,"Dota 2",purchase,1.0,0 -177828156,"Dota 2",play,3.3,0 -224983017,"Counter-Strike Global Offensive",purchase,1.0,0 -224983017,"Counter-Strike Global Offensive",play,13.3,0 -100769089,"Counter-Strike Global Offensive",purchase,1.0,0 -100769089,"Counter-Strike Global Offensive",play,114.0,0 -100769089,"Terraria",purchase,1.0,0 -100769089,"Terraria",play,46.0,0 -100769089,"Team Fortress 2",purchase,1.0,0 -100769089,"Team Fortress 2",play,37.0,0 -100769089,"The Elder Scrolls V Skyrim",purchase,1.0,0 -100769089,"The Elder Scrolls V Skyrim",play,23.0,0 -100769089,"BioShock Infinite",purchase,1.0,0 -100769089,"BioShock Infinite",play,8.7,0 -100769089,"APB Reloaded",purchase,1.0,0 -100769089,"APB Reloaded",play,8.4,0 -100769089,"Don't Starve",purchase,1.0,0 -100769089,"Don't Starve",play,8.3,0 -100769089,"Dungeon Defenders II",purchase,1.0,0 -100769089,"Dungeon Defenders II",play,5.9,0 -100769089,"AdVenture Capitalist",purchase,1.0,0 -100769089,"AdVenture Capitalist",play,1.5,0 -100769089,"Unturned",purchase,1.0,0 -100769089,"Unturned",play,1.2,0 -100769089,"Torchlight II",purchase,1.0,0 -100769089,"Torchlight II",play,0.8,0 -100769089,"Super Meat Boy",purchase,1.0,0 -100769089,"Super Meat Boy",play,0.7,0 -100769089,"Trove",purchase,1.0,0 -100769089,"Trove",play,0.7,0 -100769089,"Dota 2",purchase,1.0,0 -100769089,"Dota 2",play,0.6,0 -100769089,"Firefall",purchase,1.0,0 -100769089,"Firefall",play,0.2,0 -100769089,"Robocraft",purchase,1.0,0 -100769089,"Robocraft",play,0.1,0 -100769089,"Don't Starve Together Beta",purchase,1.0,0 -66403743,"Counter-Strike",purchase,1.0,0 -66403743,"Counter-Strike",play,3368.0,0 -66403743,"Day of Defeat",purchase,1.0,0 -66403743,"Day of Defeat",play,1.5,0 -66403743,"Ricochet",purchase,1.0,0 -66403743,"Team Fortress Classic",purchase,1.0,0 -66403743,"Counter-Strike Nexon Zombies",purchase,1.0,0 -66403743,"Deathmatch Classic",purchase,1.0,0 -66403743,"Half-Life",purchase,1.0,0 -66403743,"Half-Life Blue Shift",purchase,1.0,0 -66403743,"Half-Life Opposing Force",purchase,1.0,0 -66403743,"Sniper Elite V2",purchase,1.0,0 -126326205,"Orcs Must Die! 2",purchase,1.0,0 -126326205,"Orcs Must Die! 2",play,1.4,0 -306298588,"Gems of War",purchase,1.0,0 -306298588,"Gems of War",play,2.6,0 -264977320,"Dota 2",purchase,1.0,0 -264977320,"Dota 2",play,0.8,0 -91871147,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -91871147,"Dark Souls Prepare to Die Edition",play,36.0,0 -91871147,"Batman Arkham Origins",purchase,1.0,0 -91871147,"Batman Arkham Origins",play,22.0,0 -91871147,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -91871147,"Batman Arkham Asylum GOTY Edition",play,16.5,0 -91871147,"Dota 2",purchase,1.0,0 -91871147,"Dota 2",play,13.5,0 -91871147,"Metro 2033",purchase,1.0,0 -91871147,"Metro 2033",play,8.0,0 -91871147,"Team Fortress 2",purchase,1.0,0 -91871147,"Team Fortress 2",play,1.2,0 -91871147,"Borderlands",purchase,1.0,0 -48718309,"Empire Total War",purchase,1.0,0 -48718309,"Empire Total War",play,191.0,0 -48718309,"Team Fortress 2",purchase,1.0,0 -48718309,"Team Fortress 2",play,10.8,0 -138938057,"Dota 2",purchase,1.0,0 -138938057,"Dota 2",play,222.0,0 -138938057,"Left 4 Dead 2",purchase,1.0,0 -175003850,"Dota 2",purchase,1.0,0 -175003850,"Dota 2",play,1.3,0 -16720641,"Counter-Strike Source",purchase,1.0,0 -16720641,"Counter-Strike Source",play,74.0,0 -16720641,"Counter-Strike",purchase,1.0,0 -16720641,"Counter-Strike Condition Zero",purchase,1.0,0 -16720641,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -16720641,"Day of Defeat Source",purchase,1.0,0 -16720641,"Half-Life 2 Deathmatch",purchase,1.0,0 -16720641,"Half-Life 2 Lost Coast",purchase,1.0,0 -232879561,"Team Fortress 2",purchase,1.0,0 -232879561,"Team Fortress 2",play,16.0,0 -232879561,"South Park The Stick of Truth",purchase,1.0,0 -232879561,"South Park The Stick of Truth",play,11.0,0 -232879561,"BioShock Infinite",purchase,1.0,0 -232879561,"BioShock Infinite",play,5.8,0 -232879561,"Borderlands 2",purchase,1.0,0 -232879561,"Borderlands 2",play,0.6,0 -232879561,"TERA",purchase,1.0,0 -232879561,"TERA",play,0.3,0 -120237789,"ARK Survival Evolved",purchase,1.0,0 -120237789,"ARK Survival Evolved",play,319.0,0 -120237789,"DRAGON BALL XENOVERSE",purchase,1.0,0 -120237789,"DRAGON BALL XENOVERSE",play,128.0,0 -120237789,"Banished",purchase,1.0,0 -120237789,"Banished",play,48.0,0 -120237789,"Middle-earth Shadow of Mordor",purchase,1.0,0 -120237789,"Middle-earth Shadow of Mordor",play,46.0,0 -120237789,"Call of Duty Black Ops",purchase,1.0,0 -120237789,"Call of Duty Black Ops",play,28.0,0 -120237789,"Batman Arkham Knight",purchase,1.0,0 -120237789,"Batman Arkham Knight",play,25.0,0 -120237789,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -120237789,"METAL GEAR SOLID V THE PHANTOM PAIN",play,24.0,0 -120237789,"Mortal Kombat X",purchase,1.0,0 -120237789,"Mortal Kombat X",play,18.3,0 -120237789,"Tony Hawk's Pro Skater HD",purchase,1.0,0 -120237789,"Tony Hawk's Pro Skater HD",play,17.8,0 -120237789,"Cities Skylines",purchase,1.0,0 -120237789,"Cities Skylines",play,14.9,0 -120237789,"H1Z1",purchase,1.0,0 -120237789,"H1Z1",play,11.8,0 -120237789,"Shoppe Keep",purchase,1.0,0 -120237789,"Shoppe Keep",play,9.6,0 -120237789,"One Finger Death Punch",purchase,1.0,0 -120237789,"One Finger Death Punch",play,7.5,0 -120237789,"Spore Creepy & Cute Parts Pack",purchase,1.0,0 -120237789,"Spore Creepy & Cute Parts Pack",play,5.1,0 -120237789,"SMITE",purchase,1.0,0 -120237789,"SMITE",play,4.7,0 -120237789,"Darkest Dungeon",purchase,1.0,0 -120237789,"Darkest Dungeon",play,3.1,0 -120237789,"Portal",purchase,1.0,0 -120237789,"Portal",play,2.1,0 -120237789,"Spore",purchase,1.0,0 -120237789,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -120237789,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -120237789,"Batman Arkham City GOTY",purchase,1.0,0 -120237789,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -120237789,"Batman Arkham Origins - Initiation",purchase,1.0,0 -120237789,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -120237789,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -120237789,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -120237789,"Batman Arkham Origins",purchase,1.0,0 -120237789,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -120237789,"H1Z1 Test Server",purchase,1.0,0 -120237789,"Mabinogi",purchase,1.0,0 -120237789,"Portal 2",purchase,1.0,0 -157569705,"Counter-Strike Global Offensive",purchase,1.0,0 -157569705,"Counter-Strike Global Offensive",play,141.0,0 -157569705,"Free to Play",purchase,1.0,0 -157569705,"Hotline Miami 2 Wrong Number Digital Comic",purchase,1.0,0 -157569705,"Moonbase Alpha",purchase,1.0,0 -157569705,"No More Room in Hell",purchase,1.0,0 -157569705,"Super Crate Box",purchase,1.0,0 -90117736,"Football Manager 2015",purchase,1.0,0 -90117736,"Football Manager 2015",play,1104.0,0 -90117736,"Football Manager 2014",purchase,1.0,0 -90117736,"Football Manager 2014",play,600.0,0 -90117736,"Football Manager 2012",purchase,1.0,0 -90117736,"Football Manager 2012",play,243.0,0 -90117736,"Football Manager 2013",purchase,1.0,0 -90117736,"Football Manager 2013",play,150.0,0 -90117736,"Football Manager 2016 Demo",purchase,1.0,0 -90117736,"Football Manager 2016 Demo",play,1.1,0 -131481418,"Sid Meier's Civilization V",purchase,1.0,0 -131481418,"Sid Meier's Civilization V",play,7.4,0 -197302969,"Dota 2",purchase,1.0,0 -197302969,"Dota 2",play,0.3,0 -147131147,"Dota 2",purchase,1.0,0 -147131147,"Dota 2",play,44.0,0 -81151589,"Empire Total War",purchase,1.0,0 -81151589,"Empire Total War",play,149.0,0 -81151589,"Total War SHOGUN 2",purchase,1.0,0 -81151589,"Total War SHOGUN 2",play,86.0,0 -81151589,"Sid Meier's Civilization V",purchase,1.0,0 -81151589,"Sid Meier's Civilization V",play,49.0,0 -81151589,"Napoleon Total War",purchase,1.0,0 -81151589,"Napoleon Total War",play,17.4,0 -81151589,"A Game of Thrones - Genesis",purchase,1.0,0 -81151589,"A Game of Thrones - Genesis",play,10.4,0 -81151589,"War Thunder",purchase,1.0,0 -81151589,"War Thunder",play,5.2,0 -206346171,"Dungeon Defenders II",purchase,1.0,0 -206346171,"Dungeon Defenders II",play,25.0,0 -206346171,"GRAV",purchase,1.0,0 -206346171,"GRAV",play,14.7,0 -206346171,"Project Zomboid",purchase,1.0,0 -206346171,"Project Zomboid",play,13.7,0 -206346171,"Grey Goo",purchase,1.0,0 -206346171,"Grey Goo",play,12.9,0 -206346171,"Zombie Army Trilogy",purchase,1.0,0 -206346171,"Zombie Army Trilogy",play,3.9,0 -206346171,"Warhammer End Times - Vermintide",purchase,1.0,0 -206346171,"Warhammer End Times - Vermintide",play,3.8,0 -206346171,"PlanetSide 2",purchase,1.0,0 -206346171,"PlanetSide 2",play,3.5,0 -206346171,"How to Survive",purchase,1.0,0 -206346171,"How to Survive",play,1.9,0 -206346171,"Moonbase Alpha",purchase,1.0,0 -206346171,"Moonbase Alpha",play,1.2,0 -206346171,"Dead Island",purchase,1.0,0 -206346171,"Dead Island",play,0.2,0 -206346171,"No More Room in Hell",purchase,1.0,0 -206346171,"No More Room in Hell",play,0.1,0 -206346171,"Warframe",purchase,1.0,0 -206346171,"Warhammer End Times - Vermintide Sigmar's Blessing",purchase,1.0,0 -122538805,"Dota 2",purchase,1.0,0 -122538805,"Dota 2",play,252.0,0 -122538805,"GunZ 2 The Second Duel",purchase,1.0,0 -122538805,"GunZ 2 The Second Duel",play,0.7,0 -122538805,"PlanetSide 2",purchase,1.0,0 -122538805,"FreeStyle2 Street Basketball",purchase,1.0,0 -122538805,"APB Reloaded",purchase,1.0,0 -122538805,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -193956726,"BLOCKADE 3D",purchase,1.0,0 -193956726,"BLOCKADE 3D",play,3.4,0 -193956726,"No More Room in Hell",purchase,1.0,0 -193956726,"No More Room in Hell",play,1.1,0 -193956726,"Heroes & Generals",purchase,1.0,0 -193956726,"Heroes & Generals",play,0.3,0 -193956726,"Cry of Fear",purchase,1.0,0 -193956726,"War Thunder",purchase,1.0,0 -32644336,"NBA 2K14",purchase,1.0,0 -32644336,"NBA 2K14",play,82.0,0 -32644336,"NBA 2K13",purchase,1.0,0 -32644336,"NBA 2K13",play,48.0,0 -32644336,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -32644336,"Fallout 3 - Game of the Year Edition",play,26.0,0 -32644336,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -32644336,"Call of Duty Black Ops - Multiplayer",play,20.0,0 -32644336,"Tomb Raider",purchase,1.0,0 -32644336,"Tomb Raider",play,18.6,0 -32644336,"Sleeping Dogs",purchase,1.0,0 -32644336,"Sleeping Dogs",play,17.2,0 -32644336,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -32644336,"Tom Clancy's Splinter Cell Blacklist",play,16.2,0 -32644336,"Batman Arkham Origins",purchase,1.0,0 -32644336,"Batman Arkham Origins",play,15.7,0 -32644336,"Call of Duty Modern Warfare 3",purchase,1.0,0 -32644336,"Call of Duty Modern Warfare 3",play,10.4,0 -32644336,"Max Payne 3",purchase,1.0,0 -32644336,"Max Payne 3",play,10.3,0 -32644336,"Call of Duty Ghosts",purchase,1.0,0 -32644336,"Call of Duty Ghosts",play,8.2,0 -32644336,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -32644336,"METAL GEAR RISING REVENGEANCE",play,8.1,0 -32644336,"Sid Meier's Civilization V",purchase,1.0,0 -32644336,"Sid Meier's Civilization V",play,7.0,0 -32644336,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -32644336,"Call of Duty Modern Warfare 3 - Multiplayer",play,5.5,0 -32644336,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -32644336,"Star Wars The Force Unleashed Ultimate Sith Edition",play,5.5,0 -32644336,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -32644336,"Injustice Gods Among Us Ultimate Edition",play,5.4,0 -32644336,"Company of Heroes",purchase,1.0,0 -32644336,"Company of Heroes",play,4.2,0 -32644336,"Call of Duty Black Ops",purchase,1.0,0 -32644336,"Call of Duty Black Ops",play,3.8,0 -32644336,"L.A. Noire",purchase,1.0,0 -32644336,"L.A. Noire",play,3.6,0 -32644336,"Team Fortress 2",purchase,1.0,0 -32644336,"Team Fortress 2",play,2.8,0 -32644336,"Alien Isolation",purchase,1.0,0 -32644336,"Alien Isolation",play,2.6,0 -32644336,"Tom Clancy's Splinter Cell Double Agent",purchase,1.0,0 -32644336,"Tom Clancy's Splinter Cell Double Agent",play,2.4,0 -32644336,"LEGO MARVEL Super Heroes",purchase,1.0,0 -32644336,"LEGO MARVEL Super Heroes",play,1.6,0 -32644336,"Dead Space",purchase,1.0,0 -32644336,"Dead Space",play,1.3,0 -32644336,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -32644336,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.8,0 -32644336,"Half-Life 2",purchase,1.0,0 -32644336,"Half-Life 2",play,0.5,0 -32644336,"Machinarium",purchase,1.0,0 -32644336,"Machinarium",play,0.4,0 -32644336,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -32644336,"Call of Duty Ghosts - Multiplayer",play,0.4,0 -32644336,"BioShock 2",purchase,1.0,0 -32644336,"BioShock 2",play,0.4,0 -32644336,"Left 4 Dead 2",purchase,1.0,0 -32644336,"BioShock",purchase,1.0,0 -32644336,"Braid",purchase,1.0,0 -32644336,"Company of Heroes (New Steam Version)",purchase,1.0,0 -32644336,"Company of Heroes Opposing Fronts",purchase,1.0,0 -32644336,"Company of Heroes Tales of Valor",purchase,1.0,0 -32644336,"Half-Life 2 Episode One",purchase,1.0,0 -32644336,"Half-Life 2 Episode Two",purchase,1.0,0 -32644336,"Half-Life 2 Lost Coast",purchase,1.0,0 -32644336,"Left 4 Dead",purchase,1.0,0 -32644336,"Portal",purchase,1.0,0 -32644336,"Portal 2",purchase,1.0,0 -32644336,"Tom Clancy's Splinter Cell",purchase,1.0,0 -32644336,"Tom Clancy's Splinter Cell Chaos Theory",purchase,1.0,0 -32644336,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -32644336,"VVVVVV",purchase,1.0,0 -262577480,"Dota 2",purchase,1.0,0 -262577480,"Dota 2",play,15.5,0 -145247573,"Sniper Ghost Warrior 2",purchase,1.0,0 -145247573,"Sniper Ghost Warrior 2",play,9.8,0 -145247573,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -159966899,"Left 4 Dead 2",purchase,1.0,0 -198804975,"Battle Islands",purchase,1.0,0 -198804975,"Battle Islands",play,8.2,0 -198804975,"PAYDAY The Heist",purchase,1.0,0 -198804975,"PAYDAY The Heist",play,6.8,0 -198804975,"DiRT 3 Complete Edition",purchase,1.0,0 -198804975,"DiRT 3 Complete Edition",play,5.5,0 -198804975,"Afterfall InSanity Extended Edition",purchase,1.0,0 -198804975,"Afterfall InSanity Extended Edition",play,2.1,0 -198804975,"Dirty Bomb",purchase,1.0,0 -198804975,"Dirty Bomb",play,1.0,0 -198804975,"Elsword",purchase,1.0,0 -198804975,"Elsword",play,0.7,0 -198804975,"DiRT 3",purchase,1.0,0 -198804975,"DiRT 3",play,0.5,0 -198804975,"Serious Sam HD The Second Encounter",purchase,1.0,0 -198804975,"Serious Sam HD The Second Encounter",play,0.1,0 -198804975,"Chaos Domain",purchase,1.0,0 -162580876,"Rust",purchase,1.0,0 -162580876,"Rust",play,11.0,0 -162580876,"Star Conflict",purchase,1.0,0 -162580876,"War Thunder",purchase,1.0,0 -235648821,"Rustbucket Rumble",purchase,1.0,0 -146055391,"Dota 2",purchase,1.0,0 -146055391,"Dota 2",play,2.1,0 -98221974,"Empire Total War",purchase,1.0,0 -98221974,"Empire Total War",play,28.0,0 -5949488,"Clicker Heroes",purchase,1.0,0 -5949488,"Clicker Heroes",play,228.0,0 -5949488,"Half-Life 2",purchase,1.0,0 -5949488,"Half-Life 2",play,4.9,0 -5949488,"Dota 2",purchase,1.0,0 -5949488,"Dota 2",play,3.5,0 -5949488,"Portal",purchase,1.0,0 -5949488,"Portal",play,0.7,0 -5949488,"Half-Life",purchase,1.0,0 -5949488,"Half-Life",play,0.3,0 -5949488,"Counter-Strike",purchase,1.0,0 -5949488,"Counter-Strike Source",purchase,1.0,0 -5949488,"Day of Defeat",purchase,1.0,0 -5949488,"Deathmatch Classic",purchase,1.0,0 -5949488,"Half-Life 2 Deathmatch",purchase,1.0,0 -5949488,"Half-Life 2 Episode One",purchase,1.0,0 -5949488,"Half-Life 2 Episode Two",purchase,1.0,0 -5949488,"Half-Life 2 Lost Coast",purchase,1.0,0 -5949488,"Half-Life Blue Shift",purchase,1.0,0 -5949488,"Half-Life Opposing Force",purchase,1.0,0 -5949488,"Ricochet",purchase,1.0,0 -5949488,"Team Fortress Classic",purchase,1.0,0 -226418742,"EVGA PrecisionX 16",purchase,1.0,0 -70717745,"Sid Meier's Civilization V",purchase,1.0,0 -70717745,"Sid Meier's Civilization V",play,31.0,0 -81160212,"Dota 2",purchase,1.0,0 -81160212,"Dota 2",play,181.0,0 -81160212,"Borderlands 2",purchase,1.0,0 -81160212,"Borderlands 2",play,96.0,0 -81160212,"Sid Meier's Civilization V",purchase,1.0,0 -81160212,"Sid Meier's Civilization V",play,45.0,0 -81160212,"Risk of Rain",purchase,1.0,0 -81160212,"Risk of Rain",play,37.0,0 -81160212,"Far Cry 3",purchase,1.0,0 -81160212,"Far Cry 3",play,37.0,0 -81160212,"Team Fortress 2",purchase,1.0,0 -81160212,"Team Fortress 2",play,33.0,0 -81160212,"XCOM Enemy Unknown",purchase,1.0,0 -81160212,"XCOM Enemy Unknown",play,31.0,0 -81160212,"Dishonored",purchase,1.0,0 -81160212,"Dishonored",play,26.0,0 -81160212,"HAWKEN",purchase,1.0,0 -81160212,"HAWKEN",play,23.0,0 -81160212,"Fallout New Vegas",purchase,1.0,0 -81160212,"Fallout New Vegas",play,22.0,0 -81160212,"Space Engineers",purchase,1.0,0 -81160212,"Space Engineers",play,20.0,0 -81160212,"PAYDAY 2",purchase,1.0,0 -81160212,"PAYDAY 2",play,19.9,0 -81160212,"War Thunder",purchase,1.0,0 -81160212,"War Thunder",play,19.7,0 -81160212,"Batman Arkham City GOTY",purchase,1.0,0 -81160212,"Batman Arkham City GOTY",play,19.2,0 -81160212,"Shadowrun Returns",purchase,1.0,0 -81160212,"Shadowrun Returns",play,18.3,0 -81160212,"Saints Row The Third",purchase,1.0,0 -81160212,"Saints Row The Third",play,16.9,0 -81160212,"Poker Night 2",purchase,1.0,0 -81160212,"Poker Night 2",play,15.7,0 -81160212,"Shadowrun Hong Kong",purchase,1.0,0 -81160212,"Shadowrun Hong Kong",play,15.0,0 -81160212,"Need for Speed Hot Pursuit",purchase,1.0,0 -81160212,"Need for Speed Hot Pursuit",play,14.4,0 -81160212,"The Witcher Enhanced Edition",purchase,1.0,0 -81160212,"The Witcher Enhanced Edition",play,14.1,0 -81160212,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -81160212,"Warhammer 40,000 Dawn of War II",play,12.4,0 -81160212,"Left 4 Dead 2",purchase,1.0,0 -81160212,"Left 4 Dead 2",play,11.9,0 -81160212,"Warhammer 40,000 Space Marine",purchase,1.0,0 -81160212,"Warhammer 40,000 Space Marine",play,11.4,0 -81160212,"The Binding of Isaac",purchase,1.0,0 -81160212,"The Binding of Isaac",play,9.9,0 -81160212,"Mad Max",purchase,1.0,0 -81160212,"Mad Max",play,9.5,0 -81160212,"Brtal Legend",purchase,1.0,0 -81160212,"Brtal Legend",play,8.8,0 -81160212,"Skullgirls",purchase,1.0,0 -81160212,"Skullgirls",play,8.6,0 -81160212,"The Wolf Among Us",purchase,1.0,0 -81160212,"The Wolf Among Us",play,8.4,0 -81160212,"Middle-earth Shadow of Mordor",purchase,1.0,0 -81160212,"Middle-earth Shadow of Mordor",play,8.3,0 -81160212,"Portal 2",purchase,1.0,0 -81160212,"Portal 2",play,7.5,0 -81160212,"Strike Suit Zero",purchase,1.0,0 -81160212,"Strike Suit Zero",play,6.0,0 -81160212,"Hitman Absolution",purchase,1.0,0 -81160212,"Hitman Absolution",play,5.8,0 -81160212,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -81160212,"Warhammer 40,000 Dawn of War II Retribution",play,5.5,0 -81160212,"Fable - The Lost Chapters",purchase,1.0,0 -81160212,"Fable - The Lost Chapters",play,5.5,0 -81160212,"Aliens vs. Predator",purchase,1.0,0 -81160212,"Aliens vs. Predator",play,5.5,0 -81160212,"BioShock Infinite",purchase,1.0,0 -81160212,"BioShock Infinite",play,5.5,0 -81160212,"E.Y.E Divine Cybermancy",purchase,1.0,0 -81160212,"E.Y.E Divine Cybermancy",play,5.2,0 -81160212,"The Binding of Isaac Rebirth",purchase,1.0,0 -81160212,"The Binding of Isaac Rebirth",play,3.7,0 -81160212,"Hotline Miami",purchase,1.0,0 -81160212,"Hotline Miami",play,3.2,0 -81160212,"Amnesia A Machine for Pigs",purchase,1.0,0 -81160212,"Amnesia A Machine for Pigs",play,3.0,0 -81160212,"Red Faction Armageddon",purchase,1.0,0 -81160212,"Red Faction Armageddon",play,2.5,0 -81160212,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -81160212,"Warhammer 40,000 Dawn of War Soulstorm",play,2.5,0 -81160212,"Skullgirls Endless Beta",purchase,1.0,0 -81160212,"Skullgirls Endless Beta",play,2.5,0 -81160212,"Nidhogg",purchase,1.0,0 -81160212,"Nidhogg",play,2.4,0 -81160212,"Darksiders II",purchase,1.0,0 -81160212,"Darksiders II",play,2.4,0 -81160212,"Spec Ops The Line",purchase,1.0,0 -81160212,"Spec Ops The Line",play,2.3,0 -81160212,"Red Faction",purchase,1.0,0 -81160212,"Red Faction",play,2.1,0 -81160212,"Sunless Sea",purchase,1.0,0 -81160212,"Sunless Sea",play,2.1,0 -81160212,"Castle Crashers",purchase,1.0,0 -81160212,"Castle Crashers",play,2.1,0 -81160212,"L.A. Noire",purchase,1.0,0 -81160212,"L.A. Noire",play,1.9,0 -81160212,"Batman Arkham Origins",purchase,1.0,0 -81160212,"Batman Arkham Origins",play,1.6,0 -81160212,"Company of Heroes Opposing Fronts",purchase,1.0,0 -81160212,"Company of Heroes Opposing Fronts",play,1.6,0 -81160212,"Borderlands The Pre-Sequel",purchase,1.0,0 -81160212,"Borderlands The Pre-Sequel",play,1.6,0 -81160212,"Papers, Please",purchase,1.0,0 -81160212,"Papers, Please",play,1.2,0 -81160212,"Company of Heroes",purchase,1.0,0 -81160212,"Company of Heroes",play,1.2,0 -81160212,"Planetary Annihilation",purchase,1.0,0 -81160212,"Planetary Annihilation",play,1.1,0 -81160212,"Total War SHOGUN 2",purchase,1.0,0 -81160212,"Total War SHOGUN 2",play,1.0,0 -81160212,"Star Wars - Battlefront II",purchase,1.0,0 -81160212,"Star Wars - Battlefront II",play,0.9,0 -81160212,"The Elder Scrolls V Skyrim",purchase,1.0,0 -81160212,"The Elder Scrolls V Skyrim",play,0.8,0 -81160212,"Quake III Arena",purchase,1.0,0 -81160212,"Quake III Arena",play,0.8,0 -81160212,"StarForge",purchase,1.0,0 -81160212,"StarForge",play,0.8,0 -81160212,"Alien Swarm",purchase,1.0,0 -81160212,"Alien Swarm",play,0.7,0 -81160212,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -81160212,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.7,0 -81160212,"Leviathan Warships",purchase,1.0,0 -81160212,"Leviathan Warships",play,0.6,0 -81160212,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",purchase,1.0,0 -81160212,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",play,0.6,0 -81160212,"The Banner Saga",purchase,1.0,0 -81160212,"The Banner Saga",play,0.4,0 -81160212,"World of Guns Gun Disassembly",purchase,1.0,0 -81160212,"World of Guns Gun Disassembly",play,0.3,0 -81160212,"MX vs. ATV Reflex",purchase,1.0,0 -81160212,"MX vs. ATV Reflex",play,0.2,0 -81160212,"Hitman Sniper Challenge",purchase,1.0,0 -81160212,"Hitman Sniper Challenge",play,0.2,0 -81160212,"Quake",purchase,1.0,0 -81160212,"Quake",play,0.1,0 -81160212,"Star Trek Online",purchase,1.0,0 -81160212,"Star Trek Online",play,0.1,0 -81160212,"They Bleed Pixels",purchase,1.0,0 -81160212,"They Bleed Pixels",play,0.1,0 -81160212,"Drunken Robot Pornography",purchase,1.0,0 -81160212,"Quake II",purchase,1.0,0 -81160212,"Red Faction II",purchase,1.0,0 -81160212,"Quake II Ground Zero",purchase,1.0,0 -81160212,"Half-Life 2 Episode One",purchase,1.0,0 -81160212,"The Witcher 3 Wild Hunt",purchase,1.0,0 -81160212,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -81160212,"Arma Cold War Assault",purchase,1.0,0 -81160212,"Assassin's Creed III",purchase,1.0,0 -81160212,"Bad Rats",purchase,1.0,0 -81160212,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -81160212,"Batman Arkham Origins - Initiation",purchase,1.0,0 -81160212,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -81160212,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -81160212,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -81160212,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -81160212,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -81160212,"Company of Heroes (New Steam Version)",purchase,1.0,0 -81160212,"Crypt of the NecroDancer",purchase,1.0,0 -81160212,"Crysis 2 Maximum Edition",purchase,1.0,0 -81160212,"Darksiders",purchase,1.0,0 -81160212,"Dead Space",purchase,1.0,0 -81160212,"Disciples II Gallean's Return",purchase,1.0,0 -81160212,"Disciples II Rise of the Elves",purchase,1.0,0 -81160212,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -81160212,"Fallout New Vegas Dead Money",purchase,1.0,0 -81160212,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -81160212,"FTL Faster Than Light",purchase,1.0,0 -81160212,"Half-Life 2",purchase,1.0,0 -81160212,"Half-Life 2 Deathmatch",purchase,1.0,0 -81160212,"Half-Life 2 Episode Two",purchase,1.0,0 -81160212,"Half-Life 2 Lost Coast",purchase,1.0,0 -81160212,"Half-Life Deathmatch Source",purchase,1.0,0 -81160212,"Homefront",purchase,1.0,0 -81160212,"Metro 2033",purchase,1.0,0 -81160212,"Mount & Blade Warband",purchase,1.0,0 -81160212,"Natural Selection 2",purchase,1.0,0 -81160212,"Nexuiz",purchase,1.0,0 -81160212,"Nexuiz Beta",purchase,1.0,0 -81160212,"Nexuiz STUPID Mode",purchase,1.0,0 -81160212,"Quake II The Reckoning",purchase,1.0,0 -81160212,"Quake III Team Arena",purchase,1.0,0 -81160212,"Quake Mission Pack 1 Scourge of Armagon",purchase,1.0,0 -81160212,"Quake Mission Pack 2 Dissolution of Eternity",purchase,1.0,0 -81160212,"Saints Row 2",purchase,1.0,0 -81160212,"Sanctum 2",purchase,1.0,0 -81160212,"Shadowrun Dragonfall",purchase,1.0,0 -81160212,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -81160212,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -81160212,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -81160212,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -81160212,"Star Wars Dark Forces",purchase,1.0,0 -81160212,"Star Wars Empire at War Gold",purchase,1.0,0 -81160212,"Star Wars Knights of the Old Republic",purchase,1.0,0 -81160212,"Star Wars The Force Unleashed II",purchase,1.0,0 -81160212,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -81160212,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -81160212,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -81160212,"Star Wars Republic Commando",purchase,1.0,0 -81160212,"Star Wars Starfighter",purchase,1.0,0 -81160212,"Star Wars The Clone Wars Republic Heroes",purchase,1.0,0 -81160212,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -81160212,"Strike Suit Infinity",purchase,1.0,0 -81160212,"Supreme Commander",purchase,1.0,0 -81160212,"Supreme Commander Forged Alliance",purchase,1.0,0 -81160212,"The Banner Saga - Mod Content",purchase,1.0,0 -81160212,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -81160212,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -81160212,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -81160212,"Thief",purchase,1.0,0 -81160212,"Thief - The Bank Heist",purchase,1.0,0 -81160212,"Titan Quest",purchase,1.0,0 -81160212,"Titan Quest Immortal Throne",purchase,1.0,0 -81160212,"Toy Soldiers Complete",purchase,1.0,0 -81160212,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -81160212,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -81160212,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -81160212,"XCOM Enemy Within",purchase,1.0,0 -35177894,"Batman Arkham Origins",purchase,1.0,0 -35177894,"Batman Arkham Origins",play,92.0,0 -35177894,"Left 4 Dead 2",purchase,1.0,0 -35177894,"Left 4 Dead 2",play,49.0,0 -35177894,"Warhammer 40,000 Space Marine",purchase,1.0,0 -35177894,"Warhammer 40,000 Space Marine",play,38.0,0 -35177894,"Tomb Raider",purchase,1.0,0 -35177894,"Tomb Raider",play,19.5,0 -35177894,"South Park The Stick of Truth",purchase,1.0,0 -35177894,"South Park The Stick of Truth",play,9.4,0 -35177894,"Lost Planet Extreme Condition",purchase,1.0,0 -35177894,"Lost Planet Extreme Condition",play,4.6,0 -35177894,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -35177894,"Injustice Gods Among Us Ultimate Edition",play,4.2,0 -35177894,"Tomb Raider Anniversary",purchase,1.0,0 -35177894,"Tomb Raider Anniversary",play,0.8,0 -35177894,"Dota 2",purchase,1.0,0 -35177894,"Dota 2",play,0.4,0 -35177894,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -35177894,"Batman Arkham Origins - Initiation",purchase,1.0,0 -35177894,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -279122638,"Dota 2",purchase,1.0,0 -279122638,"Dota 2",play,7.8,0 -279122638,"RaiderZ",purchase,1.0,0 -279122638,"RaiderZ",play,0.2,0 -279122638,"Archeblade",purchase,1.0,0 -279122638,"Archeblade",play,0.2,0 -279122638,"Aura Kingdom",purchase,1.0,0 -279122638,"Survarium",purchase,1.0,0 -279122638,"TERA",purchase,1.0,0 -279122638,"Unturned",purchase,1.0,0 -281324958,"APB Reloaded",purchase,1.0,0 -281324958,"APB Reloaded",play,5.7,0 -130051338,"Dota 2",purchase,1.0,0 -130051338,"Dota 2",play,1566.0,0 -130051338,"Assassins Creed Unity",purchase,1.0,0 -130051338,"Assassins Creed Unity",play,29.0,0 -130051338,"Free to Play",purchase,1.0,0 -130051338,"Free to Play",play,1.8,0 -130051338,"Lethal League",purchase,1.0,0 -130051338,"Lethal League",play,1.4,0 -130051338,"Counter-Strike Global Offensive",purchase,1.0,0 -130051338,"Counter-Strike Global Offensive",play,1.4,0 -130051338,"PAYDAY The Heist",purchase,1.0,0 -130051338,"PAYDAY The Heist",play,0.9,0 -130051338,"Quake Live",purchase,1.0,0 -130051338,"Quake Live",play,0.7,0 -130051338,"Double Action Boogaloo",purchase,1.0,0 -130051338,"Magic Duels",purchase,1.0,0 -130051338,"The Expendabros",purchase,1.0,0 -130051338,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -130051338,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -23608098,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -23608098,"Call of Duty Modern Warfare 3 - Multiplayer",play,176.0,0 -23608098,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -23608098,"Call of Duty Modern Warfare 2 - Multiplayer",play,136.0,0 -23608098,"Counter-Strike Source",purchase,1.0,0 -23608098,"Counter-Strike Source",play,115.0,0 -23608098,"Assassin's Creed II",purchase,1.0,0 -23608098,"Assassin's Creed II",play,75.0,0 -23608098,"Call of Duty Modern Warfare 3",purchase,1.0,0 -23608098,"Call of Duty Modern Warfare 3",play,54.0,0 -23608098,"Mafia II",purchase,1.0,0 -23608098,"Mafia II",play,54.0,0 -23608098,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -23608098,"Call of Duty Ghosts - Multiplayer",play,48.0,0 -23608098,"War Thunder",purchase,1.0,0 -23608098,"War Thunder",play,42.0,0 -23608098,"Tomb Raider",purchase,1.0,0 -23608098,"Tomb Raider",play,39.0,0 -23608098,"Portal 2",purchase,1.0,0 -23608098,"Portal 2",play,35.0,0 -23608098,"Call of Duty Modern Warfare 2",purchase,1.0,0 -23608098,"Call of Duty Modern Warfare 2",play,34.0,0 -23608098,"The Lord of the Rings Online",purchase,1.0,0 -23608098,"The Lord of the Rings Online",play,26.0,0 -23608098,"Call of Duty Advanced Warfare",purchase,1.0,0 -23608098,"Call of Duty Advanced Warfare",play,24.0,0 -23608098,"Age of Empires II HD Edition",purchase,1.0,0 -23608098,"Age of Empires II HD Edition",play,23.0,0 -23608098,"Age of Mythology Extended Edition",purchase,1.0,0 -23608098,"Age of Mythology Extended Edition",play,19.0,0 -23608098,"Call of Duty Ghosts",purchase,1.0,0 -23608098,"Call of Duty Ghosts",play,17.8,0 -23608098,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -23608098,"Unreal Tournament 3 Black Edition",play,13.2,0 -23608098,"Counter-Strike Condition Zero",purchase,1.0,0 -23608098,"Counter-Strike Condition Zero",play,12.5,0 -23608098,"Call of Duty Black Ops",purchase,1.0,0 -23608098,"Call of Duty Black Ops",play,12.4,0 -23608098,"Call of Duty Black Ops II",purchase,1.0,0 -23608098,"Call of Duty Black Ops II",play,10.1,0 -23608098,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -23608098,"Call of Duty Black Ops - Multiplayer",play,4.2,0 -23608098,"Garry's Mod",purchase,1.0,0 -23608098,"Garry's Mod",play,3.0,0 -23608098,"Ricochet",purchase,1.0,0 -23608098,"Ricochet",play,2.0,0 -23608098,"Team Fortress 2",purchase,1.0,0 -23608098,"Team Fortress 2",play,1.5,0 -23608098,"Worms Ultimate Mayhem",purchase,1.0,0 -23608098,"Worms Ultimate Mayhem",play,1.1,0 -23608098,"Counter-Strike",purchase,1.0,0 -23608098,"Counter-Strike",play,1.0,0 -23608098,"LEGO MARVEL Super Heroes",purchase,1.0,0 -23608098,"LEGO MARVEL Super Heroes",play,0.2,0 -23608098,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -23608098,"Call of Duty Black Ops II - Multiplayer",play,0.1,0 -23608098,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -23608098,"Age of Empires II HD The Forgotten",purchase,1.0,0 -23608098,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -23608098,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -23608098,"Counter-Strike Global Offensive",purchase,1.0,0 -23608098,"Day of Defeat",purchase,1.0,0 -23608098,"Day of Defeat Source",purchase,1.0,0 -23608098,"Deathmatch Classic",purchase,1.0,0 -23608098,"Half-Life 2 Deathmatch",purchase,1.0,0 -23608098,"Half-Life 2 Lost Coast",purchase,1.0,0 -162262069,"Dota 2",purchase,1.0,0 -162262069,"Dota 2",play,0.3,0 -112085262,"Order of War",purchase,1.0,0 -112085262,"Order of War",play,1.1,0 -35153301,"Counter-Strike Source",purchase,1.0,0 -35153301,"Counter-Strike Source",play,216.0,0 -35153301,"Day of Defeat Source",purchase,1.0,0 -35153301,"Day of Defeat Source",play,18.1,0 -35153301,"Half-Life 2 Lost Coast",purchase,1.0,0 -35153301,"Half-Life 2 Lost Coast",play,1.5,0 -35153301,"Half-Life 2 Deathmatch",purchase,1.0,0 -35153301,"Half-Life 2 Deathmatch",play,0.6,0 -174805098,"Dota 2",purchase,1.0,0 -174805098,"Dota 2",play,14.1,0 -162179350,"Dota 2",purchase,1.0,0 -162179350,"Dota 2",play,0.2,0 -200086626,"Dota 2",purchase,1.0,0 -200086626,"Dota 2",play,1322.0,0 -200086626,"Warframe",purchase,1.0,0 -200086626,"Warframe",play,3.6,0 -200086626,"Trove",purchase,1.0,0 -200086626,"Trove",play,1.4,0 -200086626,"Unturned",purchase,1.0,0 -200086626,"Unturned",play,0.5,0 -200086626,"Heroes & Generals",purchase,1.0,0 -200086626,"RUSH",purchase,1.0,0 -200086626,"Toribash",purchase,1.0,0 -192089288,"Tactical Intervention",purchase,1.0,0 -192089288,"Heroes & Generals",purchase,1.0,0 -192089288,"War Thunder",purchase,1.0,0 -134086280,"Serious Sam HD The Second Encounter",purchase,1.0,0 -134086280,"Serious Sam HD The Second Encounter",play,6.8,0 -190668443,"Dota 2",purchase,1.0,0 -190668443,"Dota 2",play,5.8,0 -206214102,"Dota 2",purchase,1.0,0 -206214102,"Dota 2",play,69.0,0 -206214102,"Team Fortress 2",purchase,1.0,0 -206214102,"Team Fortress 2",play,5.8,0 -206214102,"Counter-Strike Global Offensive",purchase,1.0,0 -206214102,"Counter-Strike Global Offensive",play,2.1,0 -206214102,"Neverwinter",purchase,1.0,0 -206214102,"Neverwinter",play,1.1,0 -206214102,"Dead Island Epidemic",purchase,1.0,0 -206214102,"Dead Island Epidemic",play,0.3,0 -206214102,"Robocraft",purchase,1.0,0 -206214102,"Counter-Strike Nexon Zombies",purchase,1.0,0 -98088157,"The Elder Scrolls V Skyrim",purchase,1.0,0 -98088157,"The Elder Scrolls V Skyrim",play,4.3,0 -291439350,"Dota 2",purchase,1.0,0 -291439350,"Dota 2",play,56.0,0 -59264152,"Half-Life 2 Deathmatch",purchase,1.0,0 -59264152,"Half-Life 2 Lost Coast",purchase,1.0,0 -15841597,"Counter-Strike Source",purchase,1.0,0 -15841597,"Counter-Strike Source",play,592.0,0 -15841597,"Half-Life 2",purchase,1.0,0 -15841597,"Half-Life 2",play,60.0,0 -15841597,"Garry's Mod",purchase,1.0,0 -15841597,"Garry's Mod",play,51.0,0 -15841597,"Half-Life 2 Episode Two",purchase,1.0,0 -15841597,"Half-Life 2 Episode Two",play,33.0,0 -15841597,"Half-Life 2 Episode One",purchase,1.0,0 -15841597,"Half-Life 2 Episode One",play,23.0,0 -15841597,"Counter-Strike",purchase,1.0,0 -15841597,"Counter-Strike",play,13.8,0 -15841597,"Portal",purchase,1.0,0 -15841597,"Portal",play,4.6,0 -15841597,"Half-Life 2 Lost Coast",purchase,1.0,0 -15841597,"Half-Life 2 Lost Coast",play,0.9,0 -15841597,"Half-Life Opposing Force",purchase,1.0,0 -15841597,"Half-Life Opposing Force",play,0.7,0 -15841597,"Ricochet",purchase,1.0,0 -15841597,"Ricochet",play,0.4,0 -15841597,"Half-Life",purchase,1.0,0 -15841597,"Half-Life",play,0.4,0 -15841597,"Half-Life 2 Deathmatch",purchase,1.0,0 -15841597,"Half-Life 2 Deathmatch",play,0.3,0 -15841597,"Counter-Strike Condition Zero",purchase,1.0,0 -15841597,"Team Fortress Classic",purchase,1.0,0 -15841597,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -15841597,"Day of Defeat",purchase,1.0,0 -15841597,"Deathmatch Classic",purchase,1.0,0 -15841597,"Half-Life Blue Shift",purchase,1.0,0 -15841597,"Half-Life Deathmatch Source",purchase,1.0,0 -15841597,"Nosgoth",purchase,1.0,0 -58411748,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -58411748,"Call of Duty Modern Warfare 3 - Multiplayer",play,340.0,0 -58411748,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -58411748,"Call of Duty Black Ops II - Multiplayer",play,248.0,0 -58411748,"Call of Duty Modern Warfare 3",purchase,1.0,0 -58411748,"Call of Duty Modern Warfare 3",play,17.0,0 -58411748,"Counter-Strike",purchase,1.0,0 -58411748,"Counter-Strike",play,10.3,0 -58411748,"Call of Duty Black Ops II",purchase,1.0,0 -58411748,"Call of Duty Black Ops II",play,2.8,0 -58411748,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -58411748,"Call of Duty Black Ops II - Zombies",play,0.2,0 -58411748,"Call of Duty World at War",purchase,1.0,0 -58411748,"Counter-Strike Condition Zero",purchase,1.0,0 -58411748,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -58411748,"Day of Defeat",purchase,1.0,0 -58411748,"Deathmatch Classic",purchase,1.0,0 -58411748,"Ricochet",purchase,1.0,0 -79932478,"Sid Meier's Civilization V",purchase,1.0,0 -79932478,"Sid Meier's Civilization V",play,113.0,0 -184750340,"Dota 2",purchase,1.0,0 -184750340,"Dota 2",play,17.7,0 -256528415,"Dota 2",purchase,1.0,0 -256528415,"Dota 2",play,5.7,0 -256528415,"Counter-Strike Nexon Zombies",purchase,1.0,0 -256528415,"Heroes & Generals",purchase,1.0,0 -256528415,"My Lands",purchase,1.0,0 -256528415,"Unturned",purchase,1.0,0 -175128094,"Euro Truck Simulator 2",purchase,1.0,0 -175128094,"Euro Truck Simulator 2",play,101.0,0 -175128094,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -62097332,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -62097332,"Call of Duty Modern Warfare 2 - Multiplayer",play,302.0,0 -62097332,"Farming Simulator 2013",purchase,1.0,0 -62097332,"Farming Simulator 2013",play,106.0,0 -62097332,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -62097332,"Call of Duty Modern Warfare 3 - Multiplayer",play,47.0,0 -62097332,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -62097332,"Call of Duty Black Ops - Multiplayer",play,45.0,0 -62097332,"DiRT 2",purchase,1.0,0 -62097332,"DiRT 2",play,16.1,0 -62097332,"Call of Duty Modern Warfare 2",purchase,1.0,0 -62097332,"Call of Duty Modern Warfare 2",play,12.3,0 -62097332,"Call of Duty Modern Warfare 3",purchase,1.0,0 -62097332,"Call of Duty Modern Warfare 3",play,9.2,0 -62097332,"Counter-Strike Source",purchase,1.0,0 -62097332,"Counter-Strike Source",play,7.6,0 -62097332,"Counter-Strike",purchase,1.0,0 -62097332,"Counter-Strike",play,5.9,0 -62097332,"Call of Duty Black Ops",purchase,1.0,0 -62097332,"Call of Duty Black Ops",play,4.8,0 -62097332,"Battlefield Bad Company 2",purchase,1.0,0 -62097332,"Battlefield Bad Company 2",play,3.5,0 -62097332,"MicroVolts Surge",purchase,1.0,0 -62097332,"MicroVolts Surge",play,3.3,0 -62097332,"Alien Swarm",purchase,1.0,0 -62097332,"Alien Swarm",play,2.1,0 -62097332,"Dota 2",purchase,1.0,0 -62097332,"Dota 2",play,1.3,0 -62097332,"Portal",purchase,1.0,0 -62097332,"Portal",play,1.2,0 -62097332,"Blacklight Retribution",purchase,1.0,0 -62097332,"Blacklight Retribution",play,1.1,0 -62097332,"Tribes Ascend",purchase,1.0,0 -62097332,"Tribes Ascend",play,0.4,0 -62097332,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -62097332,"Counter-Strike Condition Zero Deleted Scenes",play,0.2,0 -62097332,"Deathmatch Classic",purchase,1.0,0 -62097332,"Deathmatch Classic",play,0.1,0 -62097332,"Day of Defeat",purchase,1.0,0 -62097332,"Counter-Strike Condition Zero",purchase,1.0,0 -62097332,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -62097332,"Ricochet",purchase,1.0,0 -296405510,"Dota 2",purchase,1.0,0 -296405510,"Dota 2",play,1.0,0 -209985078,"Dota 2",purchase,1.0,0 -209985078,"Dota 2",play,1960.0,0 -209985078,"Sid Meier's Civilization V",purchase,1.0,0 -209985078,"Sid Meier's Civilization V",play,128.0,0 -209985078,"The Evil Within",purchase,1.0,0 -209985078,"The Evil Within",play,34.0,0 -209985078,"Left 4 Dead 2",purchase,1.0,0 -209985078,"Left 4 Dead 2",play,0.5,0 -209985078,"Deadlight",purchase,1.0,0 -209985078,"Deadlight",play,0.2,0 -209985078,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -209985078,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -114635070,"Dota 2",purchase,1.0,0 -114635070,"Dota 2",play,92.0,0 -178418547,"Unturned",purchase,1.0,0 -178418547,"Unturned",play,1.5,0 -178418547,"Team Fortress 2",purchase,1.0,0 -178418547,"Team Fortress 2",play,1.1,0 -92542467,"Fallout New Vegas",purchase,1.0,0 -92542467,"Fallout New Vegas",play,40.0,0 -92542467,"Call of Duty Modern Warfare 3",purchase,1.0,0 -92542467,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -151601979,"Dota 2",purchase,1.0,0 -151601979,"Dota 2",play,41.0,0 -146611097,"Dota 2",purchase,1.0,0 -146611097,"Dota 2",play,119.0,0 -146611097,"Warframe",purchase,1.0,0 -146611097,"GunZ 2 The Second Duel",purchase,1.0,0 -146611097,"Marvel Heroes 2015",purchase,1.0,0 -146611097,"No More Room in Hell",purchase,1.0,0 -146611097,"Ragnarok Online 2",purchase,1.0,0 -146611097,"RIFT",purchase,1.0,0 -146611097,"theHunter",purchase,1.0,0 -259130115,"Hotline Miami 2 Wrong Number Digital Comic",purchase,1.0,0 -259130115,"No More Room in Hell",purchase,1.0,0 -259130115,"Quake Live",purchase,1.0,0 -147499580,"Dota 2",purchase,1.0,0 -147499580,"Dota 2",play,1.2,0 -198639468,"Dota 2",purchase,1.0,0 -198639468,"Dota 2",play,1.5,0 -294809452,"Dota 2",purchase,1.0,0 -294809452,"Dota 2",play,46.0,0 -159570497,"Left 4 Dead 2",purchase,1.0,0 -159570497,"Warface",purchase,1.0,0 -104587115,"Team Fortress 2",purchase,1.0,0 -104587115,"Team Fortress 2",play,18.8,0 -67729331,"Dota 2",purchase,1.0,0 -67729331,"Dota 2",play,856.0,0 -67729331,"Heroes of Might & Magic V Tribes of the East",purchase,1.0,0 -67729331,"Heroes of Might & Magic V Tribes of the East",play,373.0,0 -67729331,"War Thunder",purchase,1.0,0 -67729331,"War Thunder",play,327.0,0 -67729331,"The Elder Scrolls V Skyrim",purchase,1.0,0 -67729331,"The Elder Scrolls V Skyrim",play,121.0,0 -67729331,"Heroes & Generals",purchase,1.0,0 -67729331,"Heroes & Generals",play,89.0,0 -67729331,"Neverwinter Nights 2 Platinum",purchase,1.0,0 -67729331,"Neverwinter Nights 2 Platinum",play,54.0,0 -67729331,"Age of Empires II HD Edition",purchase,1.0,0 -67729331,"Age of Empires II HD Edition",play,40.0,0 -67729331,"This War of Mine",purchase,1.0,0 -67729331,"This War of Mine",play,21.0,0 -67729331,"Serious Sam 3 BFE",purchase,1.0,0 -67729331,"Serious Sam 3 BFE",play,15.8,0 -67729331,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -67729331,"Medal of Honor(TM) Multiplayer",play,13.4,0 -67729331,"Serious Sam HD The First Encounter",purchase,1.0,0 -67729331,"Serious Sam HD The First Encounter",play,11.7,0 -67729331,"Medal of Honor(TM) Single Player",purchase,1.0,0 -67729331,"Medal of Honor(TM) Single Player",play,8.9,0 -67729331,"How to Survive",purchase,1.0,0 -67729331,"How to Survive",play,8.6,0 -67729331,"The Typing of The Dead Overkill",purchase,1.0,0 -67729331,"The Typing of The Dead Overkill",play,6.9,0 -67729331,"Dead Island Riptide",purchase,1.0,0 -67729331,"Dead Island Riptide",play,6.8,0 -67729331,"Banished",purchase,1.0,0 -67729331,"Banished",play,6.2,0 -67729331,"Serious Sam HD The Second Encounter",purchase,1.0,0 -67729331,"Serious Sam HD The Second Encounter",play,6.1,0 -67729331,"Empire Total War",purchase,1.0,0 -67729331,"Empire Total War",play,4.8,0 -67729331,"BattleBlock Theater",purchase,1.0,0 -67729331,"BattleBlock Theater",play,4.3,0 -67729331,"The Bard's Tale",purchase,1.0,0 -67729331,"The Bard's Tale",play,3.9,0 -67729331,"Stronghold 3",purchase,1.0,0 -67729331,"Stronghold 3",play,3.1,0 -67729331,"Sang-Froid - Tales of Werewolves",purchase,1.0,0 -67729331,"Sang-Froid - Tales of Werewolves",play,2.8,0 -67729331,"Amnesia The Dark Descent",purchase,1.0,0 -67729331,"Amnesia The Dark Descent",play,2.4,0 -67729331,"Greed Corp",purchase,1.0,0 -67729331,"Greed Corp",play,2.3,0 -67729331,"Crysis 2 Maximum Edition",purchase,1.0,0 -67729331,"Crysis 2 Maximum Edition",play,2.2,0 -67729331,"Edna & Harvey The Breakout",purchase,1.0,0 -67729331,"Edna & Harvey The Breakout",play,1.8,0 -67729331,"Deponia",purchase,1.0,0 -67729331,"Deponia",play,1.7,0 -67729331,"Hell Yeah!",purchase,1.0,0 -67729331,"Hell Yeah!",play,1.5,0 -67729331,"Knights and Merchants",purchase,1.0,0 -67729331,"Knights and Merchants",play,1.2,0 -67729331,"Team Fortress 2",purchase,1.0,0 -67729331,"Team Fortress 2",play,1.0,0 -67729331,"Fallen Earth",purchase,1.0,0 -67729331,"Fallen Earth",play,0.9,0 -67729331,"Stronghold Kingdoms",purchase,1.0,0 -67729331,"Stronghold Kingdoms",play,0.8,0 -67729331,"Hard Reset",purchase,1.0,0 -67729331,"Hard Reset",play,0.8,0 -67729331,"Outlast",purchase,1.0,0 -67729331,"Outlast",play,0.7,0 -67729331,"Stronghold HD",purchase,1.0,0 -67729331,"Stronghold HD",play,0.7,0 -67729331,"The Walking Dead",purchase,1.0,0 -67729331,"The Walking Dead",play,0.6,0 -67729331,"Yet Another Zombie Defense",purchase,1.0,0 -67729331,"Yet Another Zombie Defense",play,0.5,0 -67729331,"RAW - Realms of Ancient War",purchase,1.0,0 -67729331,"RAW - Realms of Ancient War",play,0.5,0 -67729331,"Shadow Warrior Classic Redux",purchase,1.0,0 -67729331,"Shadow Warrior Classic Redux",play,0.4,0 -67729331,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -67729331,"Command and Conquer Red Alert 3 - Uprising",play,0.4,0 -67729331,"The Testament of Sherlock Holmes",purchase,1.0,0 -67729331,"The Testament of Sherlock Holmes",play,0.3,0 -67729331,"Organ Trail Director's Cut",purchase,1.0,0 -67729331,"Organ Trail Director's Cut",play,0.3,0 -67729331,"Game of Thrones ",purchase,1.0,0 -67729331,"Game of Thrones ",play,0.2,0 -67729331,"Guns'N'Zombies",purchase,1.0,0 -67729331,"Guns'N'Zombies",play,0.2,0 -67729331,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -67729331,"Sins of a Solar Empire Rebellion",play,0.2,0 -67729331,"Dead Effect",purchase,1.0,0 -67729331,"Dead Effect",play,0.2,0 -67729331,"Wargame European Escalation",purchase,1.0,0 -67729331,"Wargame European Escalation",play,0.1,0 -67729331,"Confrontation",purchase,1.0,0 -67729331,"Confrontation",play,0.1,0 -67729331,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -67729331,"SEGA Genesis & Mega Drive Classics",play,0.1,0 -67729331,"Aura Fate of the Ages",purchase,1.0,0 -67729331,"Aura Fate of the Ages",play,0.1,0 -67729331,"Spiral Knights",purchase,1.0,0 -67729331,"Spiral Knights",play,0.1,0 -67729331,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -67729331,"Safecracker The Ultimate Puzzle Adventure",purchase,1.0,0 -67729331,"Receiver",purchase,1.0,0 -67729331,"Ticket to Ride",purchase,1.0,0 -67729331,"Enclave",purchase,1.0,0 -67729331,"Dead Space",purchase,1.0,0 -67729331,"Incredipede",purchase,1.0,0 -67729331,"Alan Wake",purchase,1.0,0 -67729331,"Alan Wake's American Nightmare",purchase,1.0,0 -67729331,"Alpha Protocol",purchase,1.0,0 -67729331,"Anodyne",purchase,1.0,0 -67729331,"Binary Domain",purchase,1.0,0 -67729331,"Blood Bowl Legendary Edition",purchase,1.0,0 -67729331,"Broken Sword 1 - Shadow of the Templars Director's Cut",purchase,1.0,0 -67729331,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -67729331,"Cities XL Platinum",purchase,1.0,0 -67729331,"Company of Heroes",purchase,1.0,0 -67729331,"Company of Heroes (New Steam Version)",purchase,1.0,0 -67729331,"Dark Fall 1 The Journal",purchase,1.0,0 -67729331,"Dark Fall 2 Lights Out",purchase,1.0,0 -67729331,"Divinity II Developer's Cut",purchase,1.0,0 -67729331,"East India Company Gold",purchase,1.0,0 -67729331,"Guns'N'Zombies N'Aliens",purchase,1.0,0 -67729331,"Hard Reset Exile DLC",purchase,1.0,0 -67729331,"Jack Keane 2 - The Fire Within",purchase,1.0,0 -67729331,"KnightShift",purchase,1.0,0 -67729331,"Medal of Honor Pre-Order",purchase,1.0,0 -67729331,"Medieval II Total War",purchase,1.0,0 -67729331,"Metro 2033",purchase,1.0,0 -67729331,"Mirror's Edge",purchase,1.0,0 -67729331,"No More Room in Hell",purchase,1.0,0 -67729331,"Pirates of Black Cove Gold",purchase,1.0,0 -67729331,"Renegade Ops",purchase,1.0,0 -67729331,"Rome Total War",purchase,1.0,0 -67729331,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -67729331,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -67729331,"System Shock 2",purchase,1.0,0 -67729331,"Teleglitch Die More Edition",purchase,1.0,0 -67729331,"The Binding of Isaac",purchase,1.0,0 -67729331,"The Book of Unwritten Tales",purchase,1.0,0 -67729331,"The Book of Unwritten Tales The Critter Chronicles",purchase,1.0,0 -67729331,"The Book of Unwritten Tales Extras",purchase,1.0,0 -67729331,"Ticket to Ride - Europe",purchase,1.0,0 -67729331,"Ticket to Ride - USA 1910",purchase,1.0,0 -67729331,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -67729331,"Worms Reloaded",purchase,1.0,0 -37123018,"Counter-Strike",purchase,1.0,0 -37123018,"Counter-Strike",play,0.5,0 -37123018,"Counter-Strike Condition Zero",purchase,1.0,0 -37123018,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -37123018,"Day of Defeat",purchase,1.0,0 -37123018,"Deathmatch Classic",purchase,1.0,0 -37123018,"Ricochet",purchase,1.0,0 -105585767,"F1 2012",purchase,1.0,0 -105585767,"F1 2012",play,109.0,0 -105585767,"Sleeping Dogs",purchase,1.0,0 -105585767,"Sleeping Dogs",play,55.0,0 -105585767,"Saints Row The Third",purchase,1.0,0 -105585767,"Saints Row The Third",play,36.0,0 -105585767,"London 2012 The Official Video Game of the Olympic Games",purchase,1.0,0 -105585767,"London 2012 The Official Video Game of the Olympic Games",play,19.7,0 -146168069,"Dota 2",purchase,1.0,0 -146168069,"Dota 2",play,462.0,0 -92958887,"Borderlands 2",purchase,1.0,0 -92958887,"Borderlands 2",play,41.0,0 -92958887,"Space Engineers",purchase,1.0,0 -92958887,"Space Engineers",play,37.0,0 -92958887,"Batman Arkham City GOTY",purchase,1.0,0 -92958887,"Batman Arkham City GOTY",play,17.9,0 -92958887,"Pixel Piracy",purchase,1.0,0 -92958887,"Pixel Piracy",play,17.4,0 -92958887,"Air Conflicts - Secret Wars",purchase,1.0,0 -92958887,"Air Conflicts - Secret Wars",play,2.6,0 -92958887,"The Mighty Quest For Epic Loot",purchase,1.0,0 -92958887,"The Mighty Quest For Epic Loot",play,2.0,0 -92958887,"SMITE",purchase,1.0,0 -92958887,"SMITE",play,1.5,0 -92958887,"Dead Rising 2",purchase,1.0,0 -92958887,"Dead Rising 2",play,1.5,0 -92958887,"Reversion - The Escape",purchase,1.0,0 -92958887,"Reversion - The Escape",play,1.2,0 -92958887,"Team Fortress 2",purchase,1.0,0 -92958887,"Team Fortress 2",play,1.0,0 -92958887,"Battle Nations",purchase,1.0,0 -92958887,"Battle Nations",play,1.0,0 -92958887,"Terraria",purchase,1.0,0 -92958887,"Terraria",play,0.7,0 -92958887,"Just Cause 2",purchase,1.0,0 -92958887,"Just Cause 2",play,0.7,0 -92958887,"Gotham City Impostors Free To Play",purchase,1.0,0 -92958887,"Gotham City Impostors Free To Play",play,0.7,0 -92958887,"LIMBO",purchase,1.0,0 -92958887,"LIMBO",play,0.6,0 -92958887,"Portal 2",purchase,1.0,0 -92958887,"Portal 2",play,0.4,0 -92958887,"Only If",purchase,1.0,0 -92958887,"Only If",play,0.3,0 -92958887,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -92958887,"Superbrothers Sword & Sworcery EP",play,0.3,0 -92958887,"Crayon Physics Deluxe",purchase,1.0,0 -92958887,"Crayon Physics Deluxe",play,0.2,0 -92958887,"Nosgoth",purchase,1.0,0 -92958887,"Nosgoth",play,0.2,0 -92958887,"My Lands",purchase,1.0,0 -92958887,"My Lands",play,0.1,0 -92958887,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -92958887,"Borderlands",purchase,1.0,0 -92958887,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -92958887,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -92958887,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -92958887,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -92958887,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -92958887,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -92958887,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -92958887,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -92958887,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -92958887,"Cave Story+",purchase,1.0,0 -92958887,"Cogs",purchase,1.0,0 -92958887,"Dead Rising 2 Off the Record",purchase,1.0,0 -92958887,"Left 4 Dead 2",purchase,1.0,0 -92958887,"Machinarium",purchase,1.0,0 -291248270,"Dota 2",purchase,1.0,0 -291248270,"Dota 2",play,1.7,0 -167333229,"Unturned",purchase,1.0,0 -167333229,"Unturned",play,6.9,0 -167333229,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -167333229,"A.V.A - Alliance of Valiant Arms",play,1.9,0 -167333229,"Dota 2",purchase,1.0,0 -167333229,"Dota 2",play,0.5,0 -167333229,"The Plan",purchase,1.0,0 -167333229,"The Plan",play,0.1,0 -245530835,"Dota 2",purchase,1.0,0 -245530835,"Dota 2",play,8.9,0 -143275153,"Dota 2",purchase,1.0,0 -143275153,"Dota 2",play,0.7,0 -277874860,"Dota 2",purchase,1.0,0 -277874860,"Dota 2",play,646.0,0 -277874860,"Unturned",purchase,1.0,0 -277874860,"Unturned",play,1.0,0 -277874860,"Free to Play",purchase,1.0,0 -277874860,"Free to Play",play,0.4,0 -259934836,"Vindictus",purchase,1.0,0 -259934836,"Vindictus",play,2.6,0 -259934836,"Dragon Nest",purchase,1.0,0 -259934836,"Dragon Nest",play,0.8,0 -259934836,"C9",purchase,1.0,0 -259934836,"C9",play,0.1,0 -300985675,"Dota 2",purchase,1.0,0 -300985675,"Dota 2",play,34.0,0 -163349712,"Dota 2",purchase,1.0,0 -163349712,"Dota 2",play,0.9,0 -103235293,"Team Fortress 2",purchase,1.0,0 -103235293,"Team Fortress 2",play,30.0,0 -26779878,"Half-Life 2 Deathmatch",purchase,1.0,0 -26779878,"Half-Life 2 Lost Coast",purchase,1.0,0 -26779878,"Counter-Strike Source",purchase,1.0,0 -26779878,"Day of Defeat Source",purchase,1.0,0 -155118453,"Dota 2",purchase,1.0,0 -155118453,"Dota 2",play,2.6,0 -185130561,"Garry's Mod",purchase,1.0,0 -185130561,"Garry's Mod",play,27.0,0 -185130561,"Borderlands 2",purchase,1.0,0 -185130561,"Borderlands 2",play,4.3,0 -185130561,"Only If",purchase,1.0,0 -185130561,"Only If",play,3.8,0 -185130561,"theHunter",purchase,1.0,0 -185130561,"theHunter",play,0.9,0 -185130561,"Robocraft",purchase,1.0,0 -185130561,"Robocraft",play,0.9,0 -185130561,"World of Guns Gun Disassembly",purchase,1.0,0 -185130561,"World of Guns Gun Disassembly",play,0.7,0 -185130561,"Sigils of Elohim",purchase,1.0,0 -185130561,"Double Action Boogaloo",purchase,1.0,0 -89262373,"Dota 2",purchase,1.0,0 -89262373,"Dota 2",play,41.0,0 -295723032,"Dota 2",purchase,1.0,0 -295723032,"Dota 2",play,0.9,0 -246461215,"Dota 2",purchase,1.0,0 -246461215,"Dota 2",play,132.0,0 -257237771,"Infestation Survivor Stories",purchase,1.0,0 -169771622,"Dota 2",purchase,1.0,0 -169771622,"Dota 2",play,703.0,0 -169771622,"Zombies Monsters Robots",purchase,1.0,0 -169771622,"Zombies Monsters Robots",play,6.0,0 -169771622,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -169771622,"S.K.I.L.L. - Special Force 2",play,5.0,0 -169771622,"Bloodline Champions",purchase,1.0,0 -169771622,"Counter-Strike Nexon Zombies",purchase,1.0,0 -169771622,"DiggerOnline",purchase,1.0,0 -169771622,"Get Off My Lawn!",purchase,1.0,0 -169771622,"Modular Combat",purchase,1.0,0 -169771622,"Nosgoth",purchase,1.0,0 -169771622,"Panzar",purchase,1.0,0 -169771622,"Quake Live",purchase,1.0,0 -169771622,"Rise of Flight United",purchase,1.0,0 -169771622,"Unturned",purchase,1.0,0 -169771622,"Warframe",purchase,1.0,0 -2643609,"Counter-Strike",purchase,1.0,0 -2643609,"Counter-Strike",play,286.0,0 -2643609,"Counter-Strike Source",purchase,1.0,0 -2643609,"Counter-Strike Source",play,153.0,0 -2643609,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -2643609,"Call of Duty Modern Warfare 2 - Multiplayer",play,87.0,0 -2643609,"Counter-Strike Global Offensive",purchase,1.0,0 -2643609,"Counter-Strike Global Offensive",play,60.0,0 -2643609,"Battlefield Bad Company 2",purchase,1.0,0 -2643609,"Battlefield Bad Company 2",play,55.0,0 -2643609,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -2643609,"Call of Duty Black Ops - Multiplayer",play,46.0,0 -2643609,"Trials Evolution Gold Edition",purchase,1.0,0 -2643609,"Trials Evolution Gold Edition",play,35.0,0 -2643609,"Portal 2",purchase,1.0,0 -2643609,"Portal 2",play,13.4,0 -2643609,"PAYDAY 2",purchase,1.0,0 -2643609,"PAYDAY 2",play,6.2,0 -2643609,"Team Fortress 2",purchase,1.0,0 -2643609,"Team Fortress 2",play,5.1,0 -2643609,"F1 2011",purchase,1.0,0 -2643609,"F1 2011",play,4.3,0 -2643609,"Call of Duty Modern Warfare 3",purchase,1.0,0 -2643609,"Call of Duty Modern Warfare 3",play,3.1,0 -2643609,"Garry's Mod",purchase,1.0,0 -2643609,"Garry's Mod",play,3.0,0 -2643609,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -2643609,"Call of Duty Modern Warfare 3 - Multiplayer",play,2.3,0 -2643609,"Left 4 Dead 2",purchase,1.0,0 -2643609,"Left 4 Dead 2",play,2.3,0 -2643609,"War Thunder",purchase,1.0,0 -2643609,"War Thunder",play,1.8,0 -2643609,"Game Dev Tycoon",purchase,1.0,0 -2643609,"Game Dev Tycoon",play,1.5,0 -2643609,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -2643609,"Call of Duty Ghosts - Multiplayer",play,0.9,0 -2643609,"Besiege",purchase,1.0,0 -2643609,"Besiege",play,0.7,0 -2643609,"Half-Life 2 Deathmatch",purchase,1.0,0 -2643609,"Half-Life 2 Deathmatch",play,0.6,0 -2643609,"Day of Defeat",purchase,1.0,0 -2643609,"Day of Defeat",play,0.5,0 -2643609,"Dota 2",purchase,1.0,0 -2643609,"Dota 2",play,0.4,0 -2643609,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -2643609,"Operation Flashpoint Dragon Rising",play,0.3,0 -2643609,"Call of Duty Black Ops",purchase,1.0,0 -2643609,"Call of Duty Black Ops",play,0.2,0 -2643609,"Audiosurf",purchase,1.0,0 -2643609,"Audiosurf",play,0.2,0 -2643609,"Ricochet",purchase,1.0,0 -2643609,"Ricochet",play,0.2,0 -2643609,"Commandos Behind Enemy Lines",purchase,1.0,0 -2643609,"Commandos Behind Enemy Lines",play,0.2,0 -2643609,"Amnesia The Dark Descent",purchase,1.0,0 -2643609,"Amnesia The Dark Descent",play,0.2,0 -2643609,"Call of Duty Modern Warfare 2",purchase,1.0,0 -2643609,"Call of Duty Modern Warfare 2",play,0.1,0 -2643609,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -2643609,"Commandos 3 Destination Berlin",purchase,1.0,0 -2643609,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -2643609,"Call of Duty Ghosts",purchase,1.0,0 -2643609,"Call of Duty Modern Warfare 2 - Resurgence Pack",purchase,1.0,0 -2643609,"Call of Duty Modern Warfare 2 Stimulus Package",purchase,1.0,0 -2643609,"Commandos 2 Men of Courage",purchase,1.0,0 -2643609,"Commandos Beyond the Call of Duty",purchase,1.0,0 -2643609,"Counter-Strike Condition Zero",purchase,1.0,0 -2643609,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -2643609,"Deathmatch Classic",purchase,1.0,0 -2643609,"Goat Simulator",purchase,1.0,0 -2643609,"Half-Life",purchase,1.0,0 -2643609,"Half-Life 2",purchase,1.0,0 -2643609,"Half-Life 2 Lost Coast",purchase,1.0,0 -2643609,"Half-Life Blue Shift",purchase,1.0,0 -2643609,"Half-Life Opposing Force",purchase,1.0,0 -2643609,"Team Fortress Classic",purchase,1.0,0 -2643609,"Worms Clan Wars",purchase,1.0,0 -2643609,"Worms Revolution",purchase,1.0,0 -304056467,"Dota 2",purchase,1.0,0 -304056467,"Dota 2",play,22.0,0 -91729217,"Dungeon Defenders",purchase,1.0,0 -91729217,"Dungeon Defenders",play,428.0,0 -91729217,"Counter-Strike Global Offensive",purchase,1.0,0 -91729217,"Counter-Strike Global Offensive",play,358.0,0 -91729217,"Rust",purchase,1.0,0 -91729217,"Rust",play,323.0,0 -91729217,"ARK Survival Evolved",purchase,1.0,0 -91729217,"ARK Survival Evolved",play,86.0,0 -91729217,"FINAL FANTASY VII",purchase,1.0,0 -91729217,"FINAL FANTASY VII",play,66.0,0 -91729217,"DRAGON BALL XENOVERSE",purchase,1.0,0 -91729217,"DRAGON BALL XENOVERSE",play,35.0,0 -91729217,"Dota 2",purchase,1.0,0 -91729217,"Dota 2",play,14.3,0 -91729217,"Half-Life 2 Deathmatch",purchase,1.0,0 -91729217,"Half-Life 2 Deathmatch",play,10.5,0 -91729217,"Counter-Strike Source",purchase,1.0,0 -91729217,"Counter-Strike Source",play,8.9,0 -91729217,"Cities Skylines",purchase,1.0,0 -91729217,"Cities Skylines",play,6.8,0 -91729217,"Airline Tycoon 2",purchase,1.0,0 -91729217,"Airline Tycoon 2",play,6.0,0 -91729217,"Echo of Soul",purchase,1.0,0 -91729217,"Echo of Soul",play,5.8,0 -91729217,"Counter-Strike Condition Zero",purchase,1.0,0 -91729217,"Counter-Strike Condition Zero",play,2.5,0 -91729217,"Counter-Strike",purchase,1.0,0 -91729217,"Counter-Strike",play,1.5,0 -91729217,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -91729217,"Microsoft Flight Simulator X Steam Edition",play,0.9,0 -91729217,"Gothic II Gold Edition",purchase,1.0,0 -91729217,"Gothic II Gold Edition",play,0.2,0 -91729217,"Gothic",purchase,1.0,0 -91729217,"Gothic",play,0.1,0 -91729217,"FINAL FANTASY XIV A Realm Reborn",purchase,1.0,0 -91729217,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -91729217,"FINAL FANTASY XIV A Realm Reborn (PAL version)",purchase,1.0,0 -91729217,"Gothic 3",purchase,1.0,0 -268698660,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -268698660,"S.K.I.L.L. - Special Force 2",play,3.4,0 -163086238,"Dota 2",purchase,1.0,0 -163086238,"Dota 2",play,1.5,0 -225379182,"Counter-Strike Global Offensive",purchase,1.0,0 -225379182,"Counter-Strike Global Offensive",play,1172.0,0 -225379182,"Team Fortress 2",purchase,1.0,0 -225379182,"Team Fortress 2",play,1.6,0 -225379182,"Fallen Earth",purchase,1.0,0 -225379182,"Fallen Earth",play,0.4,0 -225379182,"Heroes & Generals",purchase,1.0,0 -225379182,"Loadout",purchase,1.0,0 -201355162,"Dota 2",purchase,1.0,0 -201355162,"Dota 2",play,165.0,0 -201355162,"Warframe",purchase,1.0,0 -201355162,"Warframe",play,18.9,0 -201355162,"Rise of Incarnates",purchase,1.0,0 -178615518,"Dota 2",purchase,1.0,0 -178615518,"Dota 2",play,32.0,0 -103093573,"Counter-Strike",purchase,1.0,0 -103093573,"Counter-Strike",play,675.0,0 -103093573,"Dota 2",purchase,1.0,0 -103093573,"Dota 2",play,45.0,0 -103093573,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -103093573,"Counter-Strike Condition Zero Deleted Scenes",play,0.8,0 -103093573,"Counter-Strike Condition Zero",purchase,1.0,0 -103093573,"Counter-Strike Condition Zero",play,0.4,0 -42043359,"Counter-Strike",purchase,1.0,0 -42043359,"Counter-Strike",play,1.1,0 -42043359,"Counter-Strike Global Offensive",purchase,1.0,0 -42043359,"Counter-Strike Global Offensive",play,0.5,0 -42043359,"Counter-Strike Condition Zero",purchase,1.0,0 -42043359,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -42043359,"Counter-Strike Source",purchase,1.0,0 -172434236,"Football Manager 2014",purchase,1.0,0 -172434236,"Football Manager 2014",play,694.0,0 -172434236,"Counter-Strike Global Offensive",purchase,1.0,0 -172434236,"Counter-Strike Global Offensive",play,420.0,0 -172434236,"Football Manager 2015",purchase,1.0,0 -172434236,"Football Manager 2015",play,342.0,0 -172434236,"Garry's Mod",purchase,1.0,0 -172434236,"Garry's Mod",play,339.0,0 -172434236,"Euro Truck Simulator 2",purchase,1.0,0 -172434236,"Euro Truck Simulator 2",play,41.0,0 -172434236,"Unturned",purchase,1.0,0 -172434236,"Unturned",play,25.0,0 -172434236,"Sid Meier's Civilization V",purchase,1.0,0 -172434236,"Sid Meier's Civilization V",play,12.7,0 -172434236,"Counter-Strike Source",purchase,1.0,0 -172434236,"Counter-Strike Source",play,10.8,0 -172434236,"Goat Simulator",purchase,1.0,0 -172434236,"Goat Simulator",play,1.7,0 -172434236,"Grand Theft Auto IV",purchase,1.0,0 -172434236,"Grand Theft Auto IV",play,1.7,0 -172434236,"Star Wars - Battlefront II",purchase,1.0,0 -172434236,"Star Wars - Battlefront II",play,0.5,0 -172434236,"AdVenture Capitalist",purchase,1.0,0 -172434236,"AdVenture Capitalist",play,0.3,0 -172434236,"The Ship",purchase,1.0,0 -172434236,"The Ship",play,0.2,0 -172434236,"Surgeon Simulator",purchase,1.0,0 -172434236,"Grand Theft Auto San Andreas",purchase,1.0,0 -172434236,"Happy Wars",purchase,1.0,0 -172434236,"Grand Theft Auto III",purchase,1.0,0 -172434236,"Guacamelee! Gold Edition",purchase,1.0,0 -172434236,"Anomaly 2",purchase,1.0,0 -172434236,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -172434236,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -172434236,"Grand Theft Auto San Andreas",purchase,1.0,0 -172434236,"Grand Theft Auto Vice City",purchase,1.0,0 -172434236,"Grand Theft Auto Vice City",purchase,1.0,0 -172434236,"Grand Theft Auto III",purchase,1.0,0 -172434236,"Killing Floor",purchase,1.0,0 -172434236,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -172434236,"Mortal Kombat Kollection",purchase,1.0,0 -172434236,"MX vs. ATV Reflex",purchase,1.0,0 -172434236,"Sid Meier's Civilization III Complete",purchase,1.0,0 -172434236,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -172434236,"The Ship Single Player",purchase,1.0,0 -172434236,"The Ship Tutorial",purchase,1.0,0 -172434236,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -172434236,"Warframe",purchase,1.0,0 -307541221,"Dungeon Defenders II",purchase,1.0,0 -307541221,"Dungeon Defenders II",play,0.2,0 -90272527,"The Elder Scrolls V Skyrim",purchase,1.0,0 -90272527,"The Elder Scrolls V Skyrim",play,399.0,0 -90272527,"Terraria",purchase,1.0,0 -90272527,"Terraria",play,232.0,0 -90272527,"FINAL FANTASY XIV A Realm Reborn",purchase,1.0,0 -90272527,"FINAL FANTASY XIV A Realm Reborn",play,192.0,0 -90272527,"Dying Light",purchase,1.0,0 -90272527,"Dying Light",play,109.0,0 -90272527,"APB Reloaded",purchase,1.0,0 -90272527,"APB Reloaded",play,86.0,0 -90272527,"Awesomenauts",purchase,1.0,0 -90272527,"Awesomenauts",play,84.0,0 -90272527,"ARK Survival Evolved",purchase,1.0,0 -90272527,"ARK Survival Evolved",play,81.0,0 -90272527,"Left 4 Dead 2",purchase,1.0,0 -90272527,"Left 4 Dead 2",play,58.0,0 -90272527,"Dead Island",purchase,1.0,0 -90272527,"Dead Island",play,52.0,0 -90272527,"Torchlight II",purchase,1.0,0 -90272527,"Torchlight II",play,50.0,0 -90272527,"PAYDAY 2",purchase,1.0,0 -90272527,"PAYDAY 2",play,49.0,0 -90272527,"Banished",purchase,1.0,0 -90272527,"Banished",play,49.0,0 -90272527,"Starbound",purchase,1.0,0 -90272527,"Starbound",play,43.0,0 -90272527,"Dota 2",purchase,1.0,0 -90272527,"Dota 2",play,40.0,0 -90272527,"Warframe",purchase,1.0,0 -90272527,"Warframe",play,37.0,0 -90272527,"Dungeon Defenders",purchase,1.0,0 -90272527,"Dungeon Defenders",play,34.0,0 -90272527,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -90272527,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,31.0,0 -90272527,"Team Fortress 2",purchase,1.0,0 -90272527,"Team Fortress 2",play,29.0,0 -90272527,"Killing Floor",purchase,1.0,0 -90272527,"Killing Floor",play,28.0,0 -90272527,"Magicka",purchase,1.0,0 -90272527,"Magicka",play,27.0,0 -90272527,"Trove",purchase,1.0,0 -90272527,"Trove",play,24.0,0 -90272527,"Loadout",purchase,1.0,0 -90272527,"Loadout",play,24.0,0 -90272527,"Aliens vs. Predator",purchase,1.0,0 -90272527,"Aliens vs. Predator",play,22.0,0 -90272527,"Dungeon Defenders II",purchase,1.0,0 -90272527,"Dungeon Defenders II",play,19.5,0 -90272527,"MapleStory",purchase,1.0,0 -90272527,"MapleStory",play,18.9,0 -90272527,"Clicker Heroes",purchase,1.0,0 -90272527,"Clicker Heroes",play,17.7,0 -90272527,"Portal 2",purchase,1.0,0 -90272527,"Portal 2",play,16.8,0 -90272527,"ORION Prelude",purchase,1.0,0 -90272527,"ORION Prelude",play,15.8,0 -90272527,"The Forest",purchase,1.0,0 -90272527,"The Forest",play,14.5,0 -90272527,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",purchase,1.0,0 -90272527,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",play,13.3,0 -90272527,"Torchlight",purchase,1.0,0 -90272527,"Torchlight",play,13.2,0 -90272527,"Don't Starve Together Beta",purchase,1.0,0 -90272527,"Don't Starve Together Beta",play,12.9,0 -90272527,"Elsword",purchase,1.0,0 -90272527,"Elsword",play,12.3,0 -90272527,"Age of Mythology Extended Edition",purchase,1.0,0 -90272527,"Age of Mythology Extended Edition",play,12.2,0 -90272527,"Neverwinter",purchase,1.0,0 -90272527,"Neverwinter",play,12.0,0 -90272527,"Mortal Kombat Komplete Edition",purchase,1.0,0 -90272527,"Mortal Kombat Komplete Edition",play,10.3,0 -90272527,"Outlast",purchase,1.0,0 -90272527,"Outlast",play,9.5,0 -90272527,"Nether",purchase,1.0,0 -90272527,"Nether",play,8.9,0 -90272527,"DayZ",purchase,1.0,0 -90272527,"DayZ",play,8.8,0 -90272527,"Lichdom Battlemage",purchase,1.0,0 -90272527,"Lichdom Battlemage",play,8.6,0 -90272527,"Natural Selection 2",purchase,1.0,0 -90272527,"Natural Selection 2",play,8.6,0 -90272527,"Magic 2015",purchase,1.0,0 -90272527,"Magic 2015",play,8.5,0 -90272527,"RAGE",purchase,1.0,0 -90272527,"RAGE",play,8.2,0 -90272527,"Counter-Strike Global Offensive",purchase,1.0,0 -90272527,"Counter-Strike Global Offensive",play,8.2,0 -90272527,"DC Universe Online",purchase,1.0,0 -90272527,"DC Universe Online",play,8.1,0 -90272527,"Gauntlet ",purchase,1.0,0 -90272527,"Gauntlet ",play,7.9,0 -90272527,"Deadpool",purchase,1.0,0 -90272527,"Deadpool",play,7.7,0 -90272527,"The Secret World",purchase,1.0,0 -90272527,"The Secret World",play,7.3,0 -90272527,"FORCED",purchase,1.0,0 -90272527,"FORCED",play,7.0,0 -90272527,"Star Wars - Battlefront II",purchase,1.0,0 -90272527,"Star Wars - Battlefront II",play,6.9,0 -90272527,"Dead Island Riptide",purchase,1.0,0 -90272527,"Dead Island Riptide",play,6.8,0 -90272527,"Guns of Icarus Online",purchase,1.0,0 -90272527,"Guns of Icarus Online",play,6.8,0 -90272527,"Nosgoth",purchase,1.0,0 -90272527,"Nosgoth",play,6.5,0 -90272527,"Darksiders",purchase,1.0,0 -90272527,"Darksiders",play,5.9,0 -90272527,"HAWKEN",purchase,1.0,0 -90272527,"HAWKEN",play,5.5,0 -90272527,"Garry's Mod",purchase,1.0,0 -90272527,"Garry's Mod",play,4.4,0 -90272527,"The Evil Within",purchase,1.0,0 -90272527,"The Evil Within",play,4.3,0 -90272527,"Painkiller Hell & Damnation",purchase,1.0,0 -90272527,"Painkiller Hell & Damnation",play,4.2,0 -90272527,"Magicka Wizard Wars",purchase,1.0,0 -90272527,"Magicka Wizard Wars",play,3.8,0 -90272527,"Fable Anniversary",purchase,1.0,0 -90272527,"Fable Anniversary",play,3.7,0 -90272527,"Dead Island Epidemic",purchase,1.0,0 -90272527,"Dead Island Epidemic",play,3.4,0 -90272527,"Layers of Fear",purchase,1.0,0 -90272527,"Layers of Fear",play,3.0,0 -90272527,"DARK",purchase,1.0,0 -90272527,"DARK",play,3.0,0 -90272527,"Don't Starve",purchase,1.0,0 -90272527,"Don't Starve",play,2.9,0 -90272527,"Evoland",purchase,1.0,0 -90272527,"Evoland",play,2.6,0 -90272527,"Viscera Cleanup Detail",purchase,1.0,0 -90272527,"Viscera Cleanup Detail",play,2.5,0 -90272527,"Castle Crashers",purchase,1.0,0 -90272527,"Castle Crashers",play,2.5,0 -90272527,"Robocraft",purchase,1.0,0 -90272527,"Robocraft",play,2.5,0 -90272527,"Marvel Heroes 2015",purchase,1.0,0 -90272527,"Marvel Heroes 2015",play,2.2,0 -90272527,"The Showdown Effect",purchase,1.0,0 -90272527,"The Showdown Effect",play,2.1,0 -90272527,"Two Worlds II",purchase,1.0,0 -90272527,"Two Worlds II",play,2.1,0 -90272527,"DOOM 3",purchase,1.0,0 -90272527,"DOOM 3",play,1.9,0 -90272527,"PAYDAY The Heist",purchase,1.0,0 -90272527,"PAYDAY The Heist",play,1.8,0 -90272527,"Bunch Of Heroes",purchase,1.0,0 -90272527,"Bunch Of Heroes",play,1.7,0 -90272527,"Path of Exile",purchase,1.0,0 -90272527,"Path of Exile",play,1.5,0 -90272527,"Hammerwatch",purchase,1.0,0 -90272527,"Hammerwatch",play,1.3,0 -90272527,"Dragon Age Origins",purchase,1.0,0 -90272527,"Dragon Age Origins",play,1.3,0 -90272527,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -90272527,"METAL GEAR RISING REVENGEANCE",play,1.2,0 -90272527,"Grand Theft Auto IV",purchase,1.0,0 -90272527,"Grand Theft Auto IV",play,1.0,0 -90272527,"Aftermath",purchase,1.0,0 -90272527,"Aftermath",play,1.0,0 -90272527,"Just Cause",purchase,1.0,0 -90272527,"Just Cause",play,0.8,0 -90272527,"Insurgency",purchase,1.0,0 -90272527,"Insurgency",play,0.6,0 -90272527,"Quake Live",purchase,1.0,0 -90272527,"Quake Live",play,0.2,0 -90272527,"Two Worlds II Castle Defense",purchase,1.0,0 -90272527,"Two Worlds II Castle Defense",play,0.2,0 -90272527,"Bejeweled 3",purchase,1.0,0 -90272527,"Bionic Commando Rearmed",purchase,1.0,0 -90272527,"Counter-Strike Source",purchase,1.0,0 -90272527,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -90272527,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -90272527,"Darksiders II",purchase,1.0,0 -90272527,"Darksiders II Deathinitive Edition",purchase,1.0,0 -90272527,"Darksiders II Soundtrack",purchase,1.0,0 -90272527,"Darksiders Soundtrack",purchase,1.0,0 -90272527,"Dead Space 2",purchase,1.0,0 -90272527,"DmC Devil May Cry",purchase,1.0,0 -90272527,"DOOM 3 Resurrection of Evil",purchase,1.0,0 -90272527,"Euro Truck Simulator 2",purchase,1.0,0 -90272527,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -90272527,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -90272527,"FINAL FANTASY XIV A Realm Reborn (NA version)",purchase,1.0,0 -90272527,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -90272527,"Heroes & Generals",purchase,1.0,0 -90272527,"Heroes of Might & Magic III - HD Edition",purchase,1.0,0 -90272527,"Heroes of Might & Magic V",purchase,1.0,0 -90272527,"Heroes of Might & Magic V Hammers of Fate",purchase,1.0,0 -90272527,"Heroes of Might & Magic V Tribes of the East",purchase,1.0,0 -90272527,"Just Cause 2",purchase,1.0,0 -90272527,"Killing Floor Uncovered",purchase,1.0,0 -90272527,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -90272527,"Loadout Steam Launch Starter Pack",purchase,1.0,0 -90272527,"Lost Planet 3",purchase,1.0,0 -90272527,"Magicka Final Frontier",purchase,1.0,0 -90272527,"Magicka Frozen Lake",purchase,1.0,0 -90272527,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -90272527,"Magicka Nippon",purchase,1.0,0 -90272527,"Magicka Party Robes",purchase,1.0,0 -90272527,"Magicka The Watchtower",purchase,1.0,0 -90272527,"Magicka Vietnam",purchase,1.0,0 -90272527,"Magicka Wizard's Survival Kit",purchase,1.0,0 -90272527,"Mass Effect 2",purchase,1.0,0 -90272527,"Might & Magic Clash of Heroes",purchase,1.0,0 -90272527,"Might & Magic Heroes VI",purchase,1.0,0 -90272527,"Might & Magic X - Legacy ",purchase,1.0,0 -90272527,"Portal",purchase,1.0,0 -90272527,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -90272527,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -90272527,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -90272527,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -90272527,"Sniper Elite V2",purchase,1.0,0 -90272527,"Starbound - Unstable",purchase,1.0,0 -90272527,"Strider",purchase,1.0,0 -90272527,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -90272527,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -90272527,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -90272527,"Two Worlds 2 - Pirates of the Flying Fortress ",purchase,1.0,0 -90272527,"Two Worlds Epic Edition",purchase,1.0,0 -90272527,"Ultra Street Fighter IV",purchase,1.0,0 -90272527,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -90272527,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -36495125,"Half-Life 2",purchase,1.0,0 -36495125,"Counter-Strike Source",purchase,1.0,0 -36495125,"Half-Life 2 Deathmatch",purchase,1.0,0 -36495125,"Half-Life 2 Lost Coast",purchase,1.0,0 -36495125,"Half-Life Source",purchase,1.0,0 -36495125,"Half-Life Deathmatch Source",purchase,1.0,0 -246103765,"Tomb Raider",purchase,1.0,0 -246103765,"Tomb Raider",play,21.0,0 -246103765,"Star Trek",purchase,1.0,0 -246103765,"Star Trek",play,1.0,0 -150731350,"Dota 2",purchase,1.0,0 -150731350,"Dota 2",play,9.7,0 -303712259,"Counter-Strike Global Offensive",purchase,1.0,0 -303712259,"Counter-Strike Global Offensive",play,3.8,0 -293787115,"Counter-Strike Global Offensive",purchase,1.0,0 -293787115,"Counter-Strike Global Offensive",play,4.1,0 -63157803,"Dota 2",purchase,1.0,0 -63157803,"Dota 2",play,519.0,0 -63157803,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -63157803,"Warhammer 40,000 Dawn of War II Retribution",play,319.0,0 -63157803,"Terraria",purchase,1.0,0 -63157803,"Terraria",play,272.0,0 -63157803,"Team Fortress 2",purchase,1.0,0 -63157803,"Team Fortress 2",play,252.0,0 -63157803,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -63157803,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,248.0,0 -63157803,"Dragon Age Origins",purchase,1.0,0 -63157803,"Dragon Age Origins",play,242.0,0 -63157803,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -63157803,"Call of Duty Modern Warfare 2 - Multiplayer",play,228.0,0 -63157803,"Killing Floor",purchase,1.0,0 -63157803,"Killing Floor",play,198.0,0 -63157803,"Fallout New Vegas",purchase,1.0,0 -63157803,"Fallout New Vegas",play,198.0,0 -63157803,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -63157803,"Call of Duty Black Ops - Multiplayer",play,166.0,0 -63157803,"Disciples III Renaissance",purchase,1.0,0 -63157803,"Disciples III Renaissance",play,164.0,0 -63157803,"Company of Heroes Tales of Valor",purchase,1.0,0 -63157803,"Company of Heroes Tales of Valor",play,157.0,0 -63157803,"Garry's Mod",purchase,1.0,0 -63157803,"Garry's Mod",play,153.0,0 -63157803,"Company of Heroes 2",purchase,1.0,0 -63157803,"Company of Heroes 2",play,143.0,0 -63157803,"Borderlands",purchase,1.0,0 -63157803,"Borderlands",play,123.0,0 -63157803,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -63157803,"Call of Duty 4 Modern Warfare",play,113.0,0 -63157803,"Warhammer 40,000 Space Marine",purchase,1.0,0 -63157803,"Warhammer 40,000 Space Marine",play,110.0,0 -63157803,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -63157803,"Call of Duty Modern Warfare 3 - Multiplayer",play,83.0,0 -63157803,"Warframe",purchase,1.0,0 -63157803,"Warframe",play,74.0,0 -63157803,"Dragon Age II",purchase,1.0,0 -63157803,"Dragon Age II",play,70.0,0 -63157803,"Call of Duty Modern Warfare 2",purchase,1.0,0 -63157803,"Call of Duty Modern Warfare 2",play,69.0,0 -63157803,"Borderlands 2",purchase,1.0,0 -63157803,"Borderlands 2",play,68.0,0 -63157803,"Duke Nukem Forever",purchase,1.0,0 -63157803,"Duke Nukem Forever",play,64.0,0 -63157803,"Call of Duty Black Ops",purchase,1.0,0 -63157803,"Call of Duty Black Ops",play,63.0,0 -63157803,"Talisman Digital Edition",purchase,1.0,0 -63157803,"Talisman Digital Edition",play,58.0,0 -63157803,"Global Agenda",purchase,1.0,0 -63157803,"Global Agenda",play,55.0,0 -63157803,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -63157803,"Warhammer 40,000 Dawn of War II",play,49.0,0 -63157803,"Metro 2033",purchase,1.0,0 -63157803,"Metro 2033",play,45.0,0 -63157803,"Call of Duty Modern Warfare 3",purchase,1.0,0 -63157803,"Call of Duty Modern Warfare 3",play,42.0,0 -63157803,"Dead Island",purchase,1.0,0 -63157803,"Dead Island",play,40.0,0 -63157803,"Company of Heroes (New Steam Version)",purchase,1.0,0 -63157803,"Company of Heroes (New Steam Version)",play,35.0,0 -63157803,"RAGE",purchase,1.0,0 -63157803,"RAGE",play,34.0,0 -63157803,"Demigod",purchase,1.0,0 -63157803,"Demigod",play,32.0,0 -63157803,"Command and Conquer Red Alert 3",purchase,1.0,0 -63157803,"Command and Conquer Red Alert 3",play,29.0,0 -63157803,"Fable III",purchase,1.0,0 -63157803,"Fable III",play,28.0,0 -63157803,"Darksiders",purchase,1.0,0 -63157803,"Darksiders",play,27.0,0 -63157803,"Darksiders II",purchase,1.0,0 -63157803,"Darksiders II",play,23.0,0 -63157803,"Portal 2",purchase,1.0,0 -63157803,"Portal 2",play,21.0,0 -63157803,"Command and Conquer 3 Kane's Wrath",purchase,1.0,0 -63157803,"Command and Conquer 3 Kane's Wrath",play,17.4,0 -63157803,"Command and Conquer 3 Tiberium Wars",purchase,1.0,0 -63157803,"Command and Conquer 3 Tiberium Wars",play,17.1,0 -63157803,"Portal",purchase,1.0,0 -63157803,"Portal",play,16.7,0 -63157803,"Section 8 Prejudice",purchase,1.0,0 -63157803,"Section 8 Prejudice",play,16.1,0 -63157803,"Heroes of Might & Magic V",purchase,1.0,0 -63157803,"Heroes of Might & Magic V",play,13.9,0 -63157803,"Serious Sam HD The Second Encounter",purchase,1.0,0 -63157803,"Serious Sam HD The Second Encounter",play,13.0,0 -63157803,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -63157803,"Command and Conquer Red Alert 3 - Uprising",play,13.0,0 -63157803,"Company of Heroes",purchase,1.0,0 -63157803,"Company of Heroes",play,11.0,0 -63157803,"Left 4 Dead",purchase,1.0,0 -63157803,"Left 4 Dead",play,10.3,0 -63157803,"Half-Life 2",purchase,1.0,0 -63157803,"Half-Life 2",play,10.2,0 -63157803,"Dead Space",purchase,1.0,0 -63157803,"Dead Space",play,8.2,0 -63157803,"Alien Swarm",purchase,1.0,0 -63157803,"Alien Swarm",play,6.7,0 -63157803,"Serious Sam Classic The First Encounter",purchase,1.0,0 -63157803,"Serious Sam Classic The First Encounter",play,5.3,0 -63157803,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -63157803,"Dark Messiah of Might & Magic Single Player",play,4.5,0 -63157803,"From Dust",purchase,1.0,0 -63157803,"From Dust",play,4.2,0 -63157803,"Company of Heroes Opposing Fronts",purchase,1.0,0 -63157803,"Company of Heroes Opposing Fronts",play,3.9,0 -63157803,"Counter-Strike Global Offensive",purchase,1.0,0 -63157803,"Counter-Strike Global Offensive",play,3.2,0 -63157803,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -63157803,"Dark Messiah of Might & Magic Multi-Player",play,2.8,0 -63157803,"War Thunder",purchase,1.0,0 -63157803,"War Thunder",play,2.7,0 -63157803,"Arma 2 Operation Arrowhead",purchase,1.0,0 -63157803,"Arma 2 Operation Arrowhead",play,2.3,0 -63157803,"Heroes of Might & Magic V Hammers of Fate",purchase,1.0,0 -63157803,"Heroes of Might & Magic V Hammers of Fate",play,1.0,0 -63157803,"Command and Conquer 4 Tiberian Twilight",purchase,1.0,0 -63157803,"Command and Conquer 4 Tiberian Twilight",play,0.7,0 -63157803,"Grand Theft Auto San Andreas",purchase,1.0,0 -63157803,"Grand Theft Auto San Andreas",play,0.7,0 -63157803,"Sniper Ghost Warrior",purchase,1.0,0 -63157803,"Sniper Ghost Warrior",play,0.6,0 -63157803,"Talisman Prologue",purchase,1.0,0 -63157803,"Talisman Prologue",play,0.5,0 -63157803,"Age of Empires II HD Edition",purchase,1.0,0 -63157803,"Age of Empires II HD Edition",play,0.4,0 -63157803,"Yet Another Zombie Defense",purchase,1.0,0 -63157803,"Yet Another Zombie Defense",play,0.4,0 -63157803,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -63157803,"Serious Sam Classic The Second Encounter",play,0.4,0 -63157803,"Serious Sam HD The First Encounter",purchase,1.0,0 -63157803,"AdVenture Capitalist",purchase,1.0,0 -63157803,"Arma 2",purchase,1.0,0 -63157803,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -63157803,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -63157803,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -63157803,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -63157803,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -63157803,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -63157803,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -63157803,"Fallout New Vegas Dead Money",purchase,1.0,0 -63157803,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -63157803,"Free to Play",purchase,1.0,0 -63157803,"Gear Up",purchase,1.0,0 -63157803,"Grand Theft Auto San Andreas",purchase,1.0,0 -63157803,"Half-Life",purchase,1.0,0 -63157803,"Half-Life 2 Deathmatch",purchase,1.0,0 -63157803,"Half-Life 2 Episode One",purchase,1.0,0 -63157803,"Half-Life 2 Episode Two",purchase,1.0,0 -63157803,"Half-Life 2 Lost Coast",purchase,1.0,0 -63157803,"Half-Life Blue Shift",purchase,1.0,0 -63157803,"Half-Life Opposing Force",purchase,1.0,0 -63157803,"Half-Life Source",purchase,1.0,0 -63157803,"Half-Life Deathmatch Source",purchase,1.0,0 -63157803,"Heroes of Might & Magic V Tribes of the East",purchase,1.0,0 -63157803,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -63157803,"Kingdom Wars",purchase,1.0,0 -63157803,"Left 4 Dead 2",purchase,1.0,0 -63157803,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -63157803,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -63157803,"Serious Sam Classics Revolution",purchase,1.0,0 -63157803,"Serious Sam HD The Second Encounter Player Models",purchase,1.0,0 -63157803,"Team Fortress Classic",purchase,1.0,0 -63157803,"Tower Wars",purchase,1.0,0 -63157803,"Warmachine Tactics",purchase,1.0,0 -234987725,"Dota 2",purchase,1.0,0 -234987725,"Dota 2",play,2.6,0 -39403038,"Counter-Strike Source",purchase,1.0,0 -39403038,"Counter-Strike Source",play,42.0,0 -39403038,"Left 4 Dead",purchase,1.0,0 -39403038,"Left 4 Dead",play,24.0,0 -39403038,"Team Fortress 2",purchase,1.0,0 -39403038,"Team Fortress 2",play,9.8,0 -39403038,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -39403038,"Unreal Tournament 3 Black Edition",play,1.7,0 -39403038,"Portal",purchase,1.0,0 -39403038,"Portal",play,1.0,0 -39403038,"Audiosurf",purchase,1.0,0 -39403038,"Audiosurf",play,1.0,0 -39403038,"BioShock",purchase,1.0,0 -39403038,"Day of Defeat Source",purchase,1.0,0 -39403038,"Garry's Mod",purchase,1.0,0 -39403038,"Half-Life 2 Deathmatch",purchase,1.0,0 -39403038,"Half-Life 2 Lost Coast",purchase,1.0,0 -227648085,"Dota 2",purchase,1.0,0 -227648085,"Dota 2",play,1.1,0 -300488750,"H1Z1",purchase,1.0,0 -300488750,"H1Z1",play,243.0,0 -300488750,"H1Z1 Test Server",purchase,1.0,0 -57368001,"Warframe",purchase,1.0,0 -57368001,"Warframe",play,574.0,0 -57368001,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -57368001,"Call of Duty Modern Warfare 2 - Multiplayer",play,348.0,0 -57368001,"War Thunder",purchase,1.0,0 -57368001,"War Thunder",play,99.0,0 -57368001,"Borderlands 2",purchase,1.0,0 -57368001,"Borderlands 2",play,85.0,0 -57368001,"Path of Exile",purchase,1.0,0 -57368001,"Path of Exile",play,69.0,0 -57368001,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -57368001,"Warhammer 40,000 Dawn of War II",play,47.0,0 -57368001,"Kerbal Space Program",purchase,1.0,0 -57368001,"Kerbal Space Program",play,36.0,0 -57368001,"Risk of Rain",purchase,1.0,0 -57368001,"Risk of Rain",play,33.0,0 -57368001,"Alien Swarm",purchase,1.0,0 -57368001,"Alien Swarm",play,27.0,0 -57368001,"Team Fortress 2",purchase,1.0,0 -57368001,"Team Fortress 2",play,22.0,0 -57368001,"Banished",purchase,1.0,0 -57368001,"Banished",play,19.6,0 -57368001,"Call of Duty Modern Warfare 2",purchase,1.0,0 -57368001,"Call of Duty Modern Warfare 2",play,17.8,0 -57368001,"Counter-Strike Global Offensive",purchase,1.0,0 -57368001,"Counter-Strike Global Offensive",play,16.1,0 -57368001,"Supreme Commander Forged Alliance",purchase,1.0,0 -57368001,"Supreme Commander Forged Alliance",play,13.3,0 -57368001,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -57368001,"Warhammer 40,000 Dawn of War II Retribution",play,10.8,0 -57368001,"Space Engineers",purchase,1.0,0 -57368001,"Space Engineers",play,10.2,0 -57368001,"Call of Duty Black Ops",purchase,1.0,0 -57368001,"Call of Duty Black Ops",play,6.6,0 -57368001,"Sanctum 2",purchase,1.0,0 -57368001,"Sanctum 2",play,6.1,0 -57368001,"Garry's Mod",purchase,1.0,0 -57368001,"Garry's Mod",play,6.0,0 -57368001,"Robocraft",purchase,1.0,0 -57368001,"Robocraft",play,3.3,0 -57368001,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -57368001,"Just Cause 2 Multiplayer Mod",play,3.1,0 -57368001,"Left 4 Dead 2",purchase,1.0,0 -57368001,"Left 4 Dead 2",play,2.5,0 -57368001,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -57368001,"Call of Duty Black Ops - Multiplayer",play,2.2,0 -57368001,"Fractured Space",purchase,1.0,0 -57368001,"Fractured Space",play,1.8,0 -57368001,"PlanetSide 2",purchase,1.0,0 -57368001,"PlanetSide 2",play,1.6,0 -57368001,"TERA",purchase,1.0,0 -57368001,"TERA",play,0.8,0 -57368001,"Just Cause 2",purchase,1.0,0 -57368001,"Just Cause 2",play,0.7,0 -57368001,"BattleBlock Theater",purchase,1.0,0 -57368001,"Just Cause",purchase,1.0,0 -57368001,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -57368001,"Supreme Commander",purchase,1.0,0 -73564778,"Deus Ex Human Revolution",purchase,1.0,0 -73564778,"Deus Ex Human Revolution",play,92.0,0 -73564778,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -73564778,"Call of Duty Black Ops - Multiplayer",play,85.0,0 -73564778,"Borderlands 2",purchase,1.0,0 -73564778,"Borderlands 2",play,78.0,0 -73564778,"Borderlands",purchase,1.0,0 -73564778,"Borderlands",play,72.0,0 -73564778,"Call of Duty Black Ops",purchase,1.0,0 -73564778,"Call of Duty Black Ops",play,52.0,0 -73564778,"BioShock Infinite",purchase,1.0,0 -73564778,"BioShock Infinite",play,47.0,0 -73564778,"Prototype",purchase,1.0,0 -73564778,"Prototype",play,44.0,0 -73564778,"Portal 2",purchase,1.0,0 -73564778,"Portal 2",play,40.0,0 -73564778,"BioShock 2",purchase,1.0,0 -73564778,"BioShock 2",play,36.0,0 -73564778,"Left 4 Dead 2",purchase,1.0,0 -73564778,"Left 4 Dead 2",play,31.0,0 -73564778,"Rocksmith 2014",purchase,1.0,0 -73564778,"Rocksmith 2014",play,27.0,0 -73564778,"Half-Life",purchase,1.0,0 -73564778,"Half-Life",play,27.0,0 -73564778,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -73564778,"Batman Arkham Asylum GOTY Edition",play,26.0,0 -73564778,"Tomb Raider",purchase,1.0,0 -73564778,"Tomb Raider",play,26.0,0 -73564778,"BioShock",purchase,1.0,0 -73564778,"BioShock",play,23.0,0 -73564778,"Rayman Legends",purchase,1.0,0 -73564778,"Rayman Legends",play,19.7,0 -73564778,"Crysis 2 Maximum Edition",purchase,1.0,0 -73564778,"Crysis 2 Maximum Edition",play,19.2,0 -73564778,"The Walking Dead",purchase,1.0,0 -73564778,"The Walking Dead",play,17.8,0 -73564778,"PROTOTYPE 2",purchase,1.0,0 -73564778,"PROTOTYPE 2",play,17.2,0 -73564778,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -73564778,"Deus Ex Human Revolution - The Missing Link",play,16.9,0 -73564778,"Portal",purchase,1.0,0 -73564778,"Portal",play,15.1,0 -73564778,"The Wolf Among Us",purchase,1.0,0 -73564778,"The Wolf Among Us",play,12.9,0 -73564778,"Crysis",purchase,1.0,0 -73564778,"Crysis",play,12.8,0 -73564778,"Spec Ops The Line",purchase,1.0,0 -73564778,"Spec Ops The Line",play,12.5,0 -73564778,"The Walking Dead Season Two",purchase,1.0,0 -73564778,"The Walking Dead Season Two",play,12.1,0 -73564778,"Crysis Warhead",purchase,1.0,0 -73564778,"Crysis Warhead",play,5.7,0 -73564778,"Counter-Strike Global Offensive",purchase,1.0,0 -73564778,"Counter-Strike Global Offensive",play,2.0,0 -73564778,"Max Payne",purchase,1.0,0 -73564778,"Max Payne",play,1.1,0 -73564778,"Mirror's Edge",purchase,1.0,0 -73564778,"Mirror's Edge",play,0.5,0 -73564778,"Need for Speed Hot Pursuit",purchase,1.0,0 -73564778,"Need for Speed Hot Pursuit",play,0.4,0 -73564778,"System Shock 2",purchase,1.0,0 -73564778,"System Shock 2",play,0.2,0 -73564778,"Half-Life Opposing Force",purchase,1.0,0 -73564778,"Half-Life 2 Episode One",purchase,1.0,0 -73564778,"Half-Life 2",purchase,1.0,0 -73564778,"Alan Wake",purchase,1.0,0 -73564778,"Assassin's Creed",purchase,1.0,0 -73564778,"Assassin's Creed Brotherhood",purchase,1.0,0 -73564778,"Assassin's Creed II",purchase,1.0,0 -73564778,"Assassin's Creed Revelations",purchase,1.0,0 -73564778,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -73564778,"Batman Arkham Origins - Initiation",purchase,1.0,0 -73564778,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -73564778,"Batman Arkham Origins",purchase,1.0,0 -73564778,"BioShock Infinite - Season Pass",purchase,1.0,0 -73564778,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -73564778,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -73564778,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -73564778,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -73564778,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -73564778,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -73564778,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -73564778,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -73564778,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -73564778,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -73564778,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -73564778,"Crysis Wars",purchase,1.0,0 -73564778,"Dead Space",purchase,1.0,0 -73564778,"Dead Space 2",purchase,1.0,0 -73564778,"Deus Ex Game of the Year Edition",purchase,1.0,0 -73564778,"Deus Ex Invisible War",purchase,1.0,0 -73564778,"Dishonored",purchase,1.0,0 -73564778,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -73564778,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -73564778,"Fallout New Vegas",purchase,1.0,0 -73564778,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -73564778,"Fallout New Vegas Dead Money",purchase,1.0,0 -73564778,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -73564778,"Far Cry 3",purchase,1.0,0 -73564778,"Half-Life 2 Deathmatch",purchase,1.0,0 -73564778,"Half-Life 2 Episode Two",purchase,1.0,0 -73564778,"Half-Life 2 Lost Coast",purchase,1.0,0 -73564778,"Half-Life Blue Shift",purchase,1.0,0 -73564778,"Half-Life Source",purchase,1.0,0 -73564778,"Half-Life Deathmatch Source",purchase,1.0,0 -73564778,"Kung Fury",purchase,1.0,0 -73564778,"L.A. Noire",purchase,1.0,0 -73564778,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -73564778,"Max Payne 3",purchase,1.0,0 -73564778,"Max Payne 3 Season Pass",purchase,1.0,0 -73564778,"Metro 2033",purchase,1.0,0 -73564778,"Metro 2033 Redux",purchase,1.0,0 -73564778,"Metro Last Light Redux",purchase,1.0,0 -73564778,"RAGE",purchase,1.0,0 -73564778,"Rocksmith",purchase,1.0,0 -73564778,"Team Fortress Classic",purchase,1.0,0 -73564778,"The Elder Scrolls III Morrowind",purchase,1.0,0 -73564778,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -73564778,"The Elder Scrolls V Skyrim",purchase,1.0,0 -73564778,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -73564778,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -73564778,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -73564778,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -73564778,"The Witcher Enhanced Edition",purchase,1.0,0 -73564778,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -73564778,"Tomb Raider Anniversary",purchase,1.0,0 -73564778,"Tomb Raider Chronicles",purchase,1.0,0 -73564778,"Tomb Raider Legend",purchase,1.0,0 -73564778,"Tomb Raider The Last Revelation",purchase,1.0,0 -73564778,"Tomb Raider Underworld",purchase,1.0,0 -73564778,"Tomb Raider I",purchase,1.0,0 -73564778,"Tomb Raider II",purchase,1.0,0 -73564778,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -73564778,"Wolfenstein The New Order",purchase,1.0,0 -106859813,"Team Fortress 2",purchase,1.0,0 -106859813,"Team Fortress 2",play,1.5,0 -276374866,"Soldier Front 2",purchase,1.0,0 -108872482,"The Elder Scrolls V Skyrim",purchase,1.0,0 -88472012,"Team Fortress 2",purchase,1.0,0 -88472012,"Team Fortress 2",play,2.2,0 -131610144,"Dota 2",purchase,1.0,0 -131610144,"Dota 2",play,1829.0,0 -131610144,"Counter-Strike Global Offensive",purchase,1.0,0 -131610144,"Counter-Strike Global Offensive",play,1284.0,0 -131610144,"Team Fortress 2",purchase,1.0,0 -131610144,"Team Fortress 2",play,1079.0,0 -131610144,"Rust",purchase,1.0,0 -131610144,"Rust",play,230.0,0 -131610144,"Grand Theft Auto V",purchase,1.0,0 -131610144,"Grand Theft Auto V",play,185.0,0 -131610144,"Counter-Strike",purchase,1.0,0 -131610144,"Counter-Strike",play,155.0,0 -131610144,"Left 4 Dead 2",purchase,1.0,0 -131610144,"Left 4 Dead 2",play,79.0,0 -131610144,"PAYDAY 2",purchase,1.0,0 -131610144,"PAYDAY 2",play,75.0,0 -131610144,"Grand Theft Auto IV",purchase,1.0,0 -131610144,"Grand Theft Auto IV",play,70.0,0 -131610144,"Unturned",purchase,1.0,0 -131610144,"Unturned",play,53.0,0 -131610144,"Far Cry 3",purchase,1.0,0 -131610144,"Far Cry 3",play,21.0,0 -131610144,"Euro Truck Simulator 2",purchase,1.0,0 -131610144,"Euro Truck Simulator 2",play,18.8,0 -131610144,"Transformers Fall of Cybertron",purchase,1.0,0 -131610144,"Transformers Fall of Cybertron",play,15.3,0 -131610144,"Portal 2",purchase,1.0,0 -131610144,"Portal 2",play,14.3,0 -131610144,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -131610144,"Call of Duty Black Ops II - Multiplayer",play,13.1,0 -131610144,"Saints Row IV",purchase,1.0,0 -131610144,"Saints Row IV",play,10.6,0 -131610144,"PROTOTYPE 2",purchase,1.0,0 -131610144,"PROTOTYPE 2",play,10.2,0 -131610144,"Metro Last Light",purchase,1.0,0 -131610144,"Metro Last Light",play,9.2,0 -131610144,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -131610144,"Burnout Paradise The Ultimate Box",play,6.2,0 -131610144,"Call of Duty Black Ops II",purchase,1.0,0 -131610144,"Call of Duty Black Ops II",play,6.1,0 -131610144,"Dead Space 2",purchase,1.0,0 -131610144,"Dead Space 2",play,5.1,0 -131610144,"The Elder Scrolls V Skyrim",purchase,1.0,0 -131610144,"The Elder Scrolls V Skyrim",play,4.3,0 -131610144,"Metro 2033",purchase,1.0,0 -131610144,"Metro 2033",play,3.7,0 -131610144,"TRANSFORMERS Rise of the Dark Spark",purchase,1.0,0 -131610144,"TRANSFORMERS Rise of the Dark Spark",play,3.0,0 -131610144,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -131610144,"Grand Theft Auto Episodes from Liberty City",play,2.8,0 -131610144,"Dead Island Epidemic",purchase,1.0,0 -131610144,"Dead Island Epidemic",play,2.6,0 -131610144,"Garry's Mod",purchase,1.0,0 -131610144,"Garry's Mod",play,2.1,0 -131610144,"Assassin's Creed III",purchase,1.0,0 -131610144,"Assassin's Creed III",play,1.8,0 -131610144,"Insurgency",purchase,1.0,0 -131610144,"Insurgency",play,0.8,0 -131610144,"Battlefield 2",purchase,1.0,0 -131610144,"Battlefield 2",play,0.6,0 -131610144,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -131610144,"Counter-Strike Condition Zero Deleted Scenes",play,0.5,0 -131610144,"Counter-Strike Condition Zero",purchase,1.0,0 -131610144,"Counter-Strike Condition Zero",play,0.4,0 -131610144,"RaceRoom Racing Experience ",purchase,1.0,0 -131610144,"RaceRoom Racing Experience ",play,0.1,0 -131610144,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -131610144,"RACE 07",purchase,1.0,0 -131610144,"Blacklight Retribution",purchase,1.0,0 -131610144,"Counter-Strike Nexon Zombies",purchase,1.0,0 -131610144,"Enclave",purchase,1.0,0 -131610144,"GTR Evolution",purchase,1.0,0 -131610144,"Sniper Elite V2",purchase,1.0,0 -247003548,"Dota 2",purchase,1.0,0 -247003548,"Dota 2",play,135.0,0 -247003548,"Team Fortress 2",purchase,1.0,0 -247003548,"Team Fortress 2",play,15.4,0 -174061897,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -174061897,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -116024605,"Left 4 Dead 2",purchase,1.0,0 -116024605,"Left 4 Dead 2",play,529.0,0 -143222174,"Thief",purchase,1.0,0 -143222174,"Thief",play,23.0,0 -143222174,"Gone Home",purchase,1.0,0 -143222174,"Gone Home",play,1.7,0 -143222174,"Thief - The Bank Heist",purchase,1.0,0 -152133579,"Dota 2",purchase,1.0,0 -152133579,"Dota 2",play,76.0,0 -77446275,"Counter-Strike Global Offensive",purchase,1.0,0 -77446275,"Counter-Strike Global Offensive",play,745.0,0 -77446275,"Counter-Strike Source",purchase,1.0,0 -77446275,"Counter-Strike Source",play,274.0,0 -77446275,"Dota 2",purchase,1.0,0 -77446275,"Dota 2",play,157.0,0 -77446275,"Call of Duty Modern Warfare 3",purchase,1.0,0 -77446275,"Call of Duty Modern Warfare 3",play,34.0,0 -77446275,"Call of Duty Modern Warfare 2",purchase,1.0,0 -77446275,"Call of Duty Modern Warfare 2",play,15.5,0 -77446275,"Dungeon Defenders",purchase,1.0,0 -77446275,"Dungeon Defenders",play,13.3,0 -77446275,"The Lord of the Rings War in the North",purchase,1.0,0 -77446275,"The Lord of the Rings War in the North",play,11.8,0 -77446275,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -77446275,"Call of Duty Modern Warfare 3 - Multiplayer",play,11.3,0 -77446275,"Half-Life 2 Deathmatch",purchase,1.0,0 -77446275,"Half-Life 2 Deathmatch",play,3.8,0 -77446275,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -77446275,"Call of Duty Modern Warfare 2 - Multiplayer",play,2.7,0 -77446275,"Magicka",purchase,1.0,0 -77446275,"Magicka",play,1.8,0 -77446275,"Day of Defeat Source",purchase,1.0,0 -77446275,"Day of Defeat Source",play,0.5,0 -77446275,"King's Bounty Armored Princess",purchase,1.0,0 -77446275,"King's Bounty Armored Princess",play,0.1,0 -77446275,"Half-Life 2 Lost Coast",purchase,1.0,0 -77446275,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -77446275,"Dungeonbowl Knockout Edition",purchase,1.0,0 -77446275,"Jagged Alliance 2 - Wildfire ",purchase,1.0,0 -77446275,"King's Bounty Dark Side",purchase,1.0,0 -77446275,"Men of War",purchase,1.0,0 -77446275,"Men of War Red Tide",purchase,1.0,0 -77446275,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -77446275,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -77446275,"Space Pirates and Zombies",purchase,1.0,0 -77446275,"Theatre of War 2 Kursk 1943 ",purchase,1.0,0 -217391754,"Team Fortress 2",purchase,1.0,0 -217391754,"Team Fortress 2",play,0.7,0 -217391754,"Spiral Knights",purchase,1.0,0 -217391754,"Super Monday Night Combat",purchase,1.0,0 -217391754,"The Expendabros",purchase,1.0,0 -217391754,"Unturned",purchase,1.0,0 -301445962,"Emily is Away",purchase,1.0,0 -301445962,"Emily is Away",play,0.8,0 -78707098,"Left 4 Dead",purchase,1.0,0 -78707098,"Left 4 Dead",play,2.8,0 -109175936,"ARK Survival Evolved",purchase,1.0,0 -109175936,"ARK Survival Evolved",play,436.0,0 -109175936,"PAYDAY 2",purchase,1.0,0 -109175936,"PAYDAY 2",play,185.0,0 -109175936,"Grand Theft Auto V",purchase,1.0,0 -109175936,"Grand Theft Auto V",play,137.0,0 -109175936,"The Witcher 3 Wild Hunt",purchase,1.0,0 -109175936,"The Witcher 3 Wild Hunt",play,113.0,0 -109175936,"Call of Duty Black Ops III",purchase,1.0,0 -109175936,"Call of Duty Black Ops III",play,56.0,0 -109175936,"Left 4 Dead 2",purchase,1.0,0 -109175936,"Left 4 Dead 2",play,19.7,0 -109175936,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -109175936,"Call of Duty Modern Warfare 3 - Multiplayer",play,13.0,0 -109175936,"Counter-Strike Global Offensive",purchase,1.0,0 -109175936,"Counter-Strike Global Offensive",play,12.6,0 -109175936,"Call of Duty Modern Warfare 3",purchase,1.0,0 -109175936,"Call of Duty Modern Warfare 3",play,6.9,0 -109175936,"Besiege",purchase,1.0,0 -109175936,"Besiege",play,6.3,0 -109175936,"Bulletstorm",purchase,1.0,0 -109175936,"Bulletstorm",play,5.3,0 -109175936,"Dota 2",purchase,1.0,0 -109175936,"Dota 2",play,3.0,0 -109175936,"Arma 3",purchase,1.0,0 -109175936,"Arma 3",play,2.8,0 -109175936,"Wargame Red Dragon",purchase,1.0,0 -109175936,"Wargame Red Dragon",play,0.5,0 -109175936,"Arma 3 Helicopters",purchase,1.0,0 -109175936,"Arma 3 Karts",purchase,1.0,0 -109175936,"Arma 3 Marksmen",purchase,1.0,0 -109175936,"Arma 3 Zeus",purchase,1.0,0 -109175936,"Arma Cold War Assault",purchase,1.0,0 -109175936,"Depth",purchase,1.0,0 -109175936,"Garry's Mod",purchase,1.0,0 -109175936,"Neverwinter",purchase,1.0,0 -109175936,"ORION Prelude",purchase,1.0,0 -109175936,"Path of Exile",purchase,1.0,0 -109175936,"Portal 2",purchase,1.0,0 -109175936,"RIFT",purchase,1.0,0 -109175936,"SMITE",purchase,1.0,0 -109175936,"The Howler",purchase,1.0,0 -109175936,"The Witcher 3 Wild Hunt - Expansion Pass",purchase,1.0,0 -109175936,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -109175936,"Warframe",purchase,1.0,0 -59382844,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -59382844,"Call of Duty Modern Warfare 2 - Multiplayer",play,800.0,0 -59382844,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -59382844,"Call of Duty Black Ops - Multiplayer",play,440.0,0 -59382844,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -59382844,"Call of Duty Modern Warfare 3 - Multiplayer",play,235.0,0 -59382844,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -59382844,"Call of Duty Black Ops II - Multiplayer",play,129.0,0 -59382844,"Grand Theft Auto V",purchase,1.0,0 -59382844,"Grand Theft Auto V",play,85.0,0 -59382844,"Call of Duty World at War",purchase,1.0,0 -59382844,"Call of Duty World at War",play,48.0,0 -59382844,"FreeStyle2 Street Basketball",purchase,1.0,0 -59382844,"FreeStyle2 Street Basketball",play,47.0,0 -59382844,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -59382844,"Call of Duty Advanced Warfare - Multiplayer",play,38.0,0 -59382844,"The Elder Scrolls V Skyrim",purchase,1.0,0 -59382844,"The Elder Scrolls V Skyrim",play,35.0,0 -59382844,"Call of Duty Black Ops III",purchase,1.0,0 -59382844,"Call of Duty Black Ops III",play,25.0,0 -59382844,"Sleeping Dogs",purchase,1.0,0 -59382844,"Sleeping Dogs",play,23.0,0 -59382844,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -59382844,"METAL GEAR SOLID V THE PHANTOM PAIN",play,22.0,0 -59382844,"Call of Duty Modern Warfare 2",purchase,1.0,0 -59382844,"Call of Duty Modern Warfare 2",play,16.5,0 -59382844,"Call of Duty Black Ops",purchase,1.0,0 -59382844,"Call of Duty Black Ops",play,16.2,0 -59382844,"Shoot Many Robots",purchase,1.0,0 -59382844,"Shoot Many Robots",play,16.0,0 -59382844,"Test Drive Unlimited 2",purchase,1.0,0 -59382844,"Test Drive Unlimited 2",play,15.1,0 -59382844,"Dead Island Epidemic",purchase,1.0,0 -59382844,"Dead Island Epidemic",play,13.7,0 -59382844,"The Last Remnant",purchase,1.0,0 -59382844,"The Last Remnant",play,13.6,0 -59382844,"Sid Meier's Civilization V",purchase,1.0,0 -59382844,"Sid Meier's Civilization V",play,13.5,0 -59382844,"Borderlands",purchase,1.0,0 -59382844,"Borderlands",play,11.4,0 -59382844,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -59382844,"Call of Duty Ghosts - Multiplayer",play,10.8,0 -59382844,"Middle-earth Shadow of Mordor",purchase,1.0,0 -59382844,"Middle-earth Shadow of Mordor",play,9.5,0 -59382844,"Borderlands 2",purchase,1.0,0 -59382844,"Borderlands 2",play,8.8,0 -59382844,"PAYDAY 2",purchase,1.0,0 -59382844,"PAYDAY 2",play,7.3,0 -59382844,"The Witcher 3 Wild Hunt",purchase,1.0,0 -59382844,"The Witcher 3 Wild Hunt",play,7.3,0 -59382844,"BRINK",purchase,1.0,0 -59382844,"BRINK",play,6.4,0 -59382844,"Prototype",purchase,1.0,0 -59382844,"Prototype",play,6.2,0 -59382844,"Call of Duty Modern Warfare 3",purchase,1.0,0 -59382844,"Call of Duty Modern Warfare 3",play,6.2,0 -59382844,"Call of Duty Advanced Warfare",purchase,1.0,0 -59382844,"Call of Duty Advanced Warfare",play,4.1,0 -59382844,"Alien Swarm",purchase,1.0,0 -59382844,"Alien Swarm",play,3.4,0 -59382844,"Tom Clancy's Ghost Recon Future Soldier",purchase,1.0,0 -59382844,"Tom Clancy's Ghost Recon Future Soldier",play,2.8,0 -59382844,"Call of Duty Ghosts",purchase,1.0,0 -59382844,"Call of Duty Ghosts",play,2.1,0 -59382844,"Call of Duty Black Ops II",purchase,1.0,0 -59382844,"Call of Duty Black Ops II",play,1.2,0 -59382844,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -59382844,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -59382844,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -59382844,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -59382844,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -59382844,"Call of Duty Modern Warfare 2 Stimulus Package",purchase,1.0,0 -59382844,"Serious Sam 3 BFE",purchase,1.0,0 -59382844,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -59382844,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -59382844,"theHunter",purchase,1.0,0 -59382844,"The Witcher 3 Wild Hunt - Expansion Pass",purchase,1.0,0 -209718563,"No More Room in Hell",purchase,1.0,0 -209718563,"No More Room in Hell",play,0.8,0 -209718563,"Combat Arms",purchase,1.0,0 -209718563,"Combat Arms",play,0.2,0 -167277296,"Unturned",purchase,1.0,0 -167277296,"Unturned",play,10.8,0 -167277296,"Brick-Force",purchase,1.0,0 -167277296,"Defiance",purchase,1.0,0 -167277296,"GunZ 2 The Second Duel",purchase,1.0,0 -167277296,"MicroVolts Surge",purchase,1.0,0 -167277296,"NEOTOKYO",purchase,1.0,0 -167277296,"No More Room in Hell",purchase,1.0,0 -167277296,"Quake Live",purchase,1.0,0 -167277296,"Realm of the Mad God",purchase,1.0,0 -167277296,"Robocraft",purchase,1.0,0 -277605352,"Dota 2",purchase,1.0,0 -277605352,"Dota 2",play,346.0,0 -142011717,"Counter-Strike Condition Zero",purchase,1.0,0 -142011717,"Counter-Strike Condition Zero",play,6.1,0 -142011717,"Counter-Strike",purchase,1.0,0 -142011717,"Counter-Strike",play,2.0,0 -142011717,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -120514265,"Torchlight II",purchase,1.0,0 -120514265,"Torchlight II",play,113.0,0 -54092998,"Trove",purchase,1.0,0 -120164786,"Football Manager 2014",purchase,1.0,0 -120164786,"Football Manager 2014",play,210.0,0 -120164786,"Football Manager 2015",purchase,1.0,0 -120164786,"Football Manager 2015",play,144.0,0 -120164786,"Football Manager 2013",purchase,1.0,0 -120164786,"Football Manager 2013",play,82.0,0 -120164786,"Grand Theft Auto IV",purchase,1.0,0 -120164786,"Grand Theft Auto IV",play,68.0,0 -120164786,"Counter-Strike Global Offensive",purchase,1.0,0 -120164786,"Counter-Strike Global Offensive",play,54.0,0 -120164786,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -120164786,"Grand Theft Auto Episodes from Liberty City",play,7.2,0 -120164786,"Age of Empires II HD Edition",purchase,1.0,0 -120164786,"Age of Empires II HD Edition",play,5.2,0 -120164786,"Unturned",purchase,1.0,0 -120164786,"Unturned",play,0.2,0 -120164786,"Age of Empires II HD The Forgotten",purchase,1.0,0 -206384784,"Dota 2",purchase,1.0,0 -206384784,"Dota 2",play,230.0,0 -287317468,"Fishing Planet",purchase,1.0,0 -287317468,"Fishing Planet",play,1.7,0 -42695514,"Football Manager 2012",purchase,1.0,0 -42695514,"Football Manager 2012",play,297.0,0 -42695514,"Football Manager 2013",purchase,1.0,0 -42695514,"Football Manager 2013",play,248.0,0 -42695514,"Football Manager 2015",purchase,1.0,0 -42695514,"Football Manager 2015",play,209.0,0 -42695514,"Football Manager 2014",purchase,1.0,0 -42695514,"Football Manager 2014",play,182.0,0 -42695514,"Football Manager 2009",purchase,1.0,0 -42695514,"Football Manager 2009",play,16.4,0 -42695514,"Football Manager 2016",purchase,1.0,0 -42695514,"Football Manager 2016",play,8.1,0 -43518355,"The Ship",purchase,1.0,0 -43518355,"The Ship Single Player",purchase,1.0,0 -43518355,"The Ship Tutorial",purchase,1.0,0 -86187882,"Empire Total War",purchase,1.0,0 -86187882,"Empire Total War",play,330.0,0 -297821985,"The Elder Scrolls V Skyrim",purchase,1.0,0 -297821985,"The Elder Scrolls V Skyrim",play,6.9,0 -88116642,"Insurgency Modern Infantry Combat",purchase,1.0,0 -88116642,"Insurgency Modern Infantry Combat",play,0.5,0 -88116642,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -88116642,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -247871700,"Dota 2",purchase,1.0,0 -247871700,"Dota 2",play,36.0,0 -247871700,"Loadout",purchase,1.0,0 -247871700,"Magicka Wizard Wars",purchase,1.0,0 -200362041,"Warframe",purchase,1.0,0 -200362041,"Warframe",play,5.2,0 -200362041,"War Thunder",purchase,1.0,0 -200362041,"War Thunder",play,0.5,0 -200362041,"ArcheAge",purchase,1.0,0 -200362041,"Destination Sol",purchase,1.0,0 -200362041,"Dizzel",purchase,1.0,0 -200362041,"Heroes & Generals",purchase,1.0,0 -200362041,"PlanetSide 2",purchase,1.0,0 -200362041,"Star Conflict",purchase,1.0,0 -200362041,"TERA",purchase,1.0,0 -200362041,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -78703486,"Empire Total War",purchase,1.0,0 -78703486,"Empire Total War",play,13.9,0 -110104967,"Counter-Strike",purchase,1.0,0 -110104967,"Counter-Strike",play,12.0,0 -110104967,"Worms Revolution",purchase,1.0,0 -110104967,"Worms Revolution",play,9.9,0 -110104967,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -110104967,"Call of Duty Ghosts - Multiplayer",play,3.8,0 -110104967,"Left 4 Dead 2",purchase,1.0,0 -110104967,"Left 4 Dead 2",play,3.3,0 -110104967,"Nosgoth",purchase,1.0,0 -110104967,"Nosgoth",play,3.1,0 -110104967,"Call of Duty Ghosts",purchase,1.0,0 -110104967,"Call of Duty Ghosts",play,1.2,0 -110104967,"Marvel Heroes 2015",purchase,1.0,0 -110104967,"Marvel Heroes 2015",play,1.0,0 -110104967,"Dota 2",purchase,1.0,0 -110104967,"Dota 2",play,0.2,0 -110104967,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -110104967,"ArcheAge",purchase,1.0,0 -110104967,"Counter-Strike Condition Zero",purchase,1.0,0 -110104967,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -110104967,"Fallout New Vegas",purchase,1.0,0 -110104967,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -110104967,"Fallout New Vegas Dead Money",purchase,1.0,0 -110104967,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -161634552,"Dota 2",purchase,1.0,0 -161634552,"Dota 2",play,2.4,0 -274422668,"Homeworld Remastered Collection",purchase,1.0,0 -274422668,"Homeworld Remastered Collection",play,1.1,0 -219930123,"Dota 2",purchase,1.0,0 -219930123,"Dota 2",play,616.0,0 -219930123,"Chaos Heroes Online",purchase,1.0,0 -219930123,"CroNix",purchase,1.0,0 -219930123,"The Expendabros",purchase,1.0,0 -219930123,"Warface",purchase,1.0,0 -219930123,"Warframe",purchase,1.0,0 -61530197,"Call of Duty Modern Warfare 2",purchase,1.0,0 -61530197,"Call of Duty Modern Warfare 2",play,1.1,0 -61530197,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -64079170,"Left 4 Dead 2",purchase,1.0,0 -64079170,"Left 4 Dead 2",play,47.0,0 -64079170,"Alien Swarm",purchase,1.0,0 -64079170,"Alien Swarm",play,8.9,0 -64079170,"Left 4 Dead",purchase,1.0,0 -64079170,"Left 4 Dead",play,7.1,0 -64079170,"Team Fortress 2",purchase,1.0,0 -64079170,"Team Fortress 2",play,1.1,0 -170904528,"Counter-Strike Global Offensive",purchase,1.0,0 -170904528,"Counter-Strike Global Offensive",play,9.3,0 -170904528,"Dota 2",purchase,1.0,0 -170904528,"Dota 2",play,5.8,0 -170904528,"Counter-Strike Source",purchase,1.0,0 -170904528,"Counter-Strike Source",play,1.4,0 -170904528,"Counter-Strike",purchase,1.0,0 -170904528,"Counter-Strike",play,0.3,0 -170904528,"Unturned",purchase,1.0,0 -170904528,"Unturned",play,0.1,0 -170904528,"Age of Empires Online",purchase,1.0,0 -170904528,"Counter-Strike Condition Zero",purchase,1.0,0 -170904528,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -170904528,"Free to Play",purchase,1.0,0 -170904528,"No More Room in Hell",purchase,1.0,0 -136668535,"Counter-Strike Global Offensive",purchase,1.0,0 -136668535,"Counter-Strike Global Offensive",play,93.0,0 -136668535,"Pro Evolution Soccer 2016",purchase,1.0,0 -136668535,"Pro Evolution Soccer 2016",play,50.0,0 -136668535,"Rocket League",purchase,1.0,0 -136668535,"Rocket League",play,40.0,0 -136668535,"Grand Theft Auto IV",purchase,1.0,0 -136668535,"Grand Theft Auto IV",play,35.0,0 -136668535,"Team Fortress 2",purchase,1.0,0 -136668535,"Team Fortress 2",play,27.0,0 -136668535,"Unturned",purchase,1.0,0 -136668535,"Unturned",play,5.3,0 -136668535,"Blacklight Retribution",purchase,1.0,0 -136668535,"Blacklight Retribution",play,4.2,0 -136668535,"Dota 2",purchase,1.0,0 -136668535,"Dota 2",play,4.0,0 -208815172,"Unturned",purchase,1.0,0 -208815172,"Unturned",play,6.5,0 -255042063,"UberStrike",purchase,1.0,0 -255042063,"UberStrike",play,0.3,0 -266112568,"Dota 2",purchase,1.0,0 -266112568,"Dota 2",play,1.4,0 -177313747,"Dota 2",purchase,1.0,0 -177313747,"Dota 2",play,484.0,0 -177313747,"Counter-Strike Global Offensive",purchase,1.0,0 -177313747,"Counter-Strike Global Offensive",play,158.0,0 -177313747,"No More Room in Hell",purchase,1.0,0 -177313747,"No More Room in Hell",play,14.3,0 -177313747,"Hitman Absolution",purchase,1.0,0 -177313747,"Hitman Absolution",play,10.2,0 -177313747,"Kings Bounty Legions",purchase,1.0,0 -177313747,"Kings Bounty Legions",play,6.2,0 -177313747,"Hitman Sniper Challenge",purchase,1.0,0 -177313747,"theHunter",purchase,1.0,0 -177313747,"War Thunder",purchase,1.0,0 -245540957,"Blender 2.76b",purchase,1.0,0 -245540957,"Dirty Bomb",purchase,1.0,0 -245540957,"PlanetSide 2",purchase,1.0,0 -245540957,"Robocraft",purchase,1.0,0 -245540957,"Warface",purchase,1.0,0 -128034621,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -128034621,"Resident Evil 6 / Biohazard 6",play,12.3,0 -144229102,"Dota 2",purchase,1.0,0 -144229102,"Dota 2",play,46.0,0 -218451030,"Counter-Strike Global Offensive",purchase,1.0,0 -218451030,"Counter-Strike Global Offensive",play,191.0,0 -218451030,"Need for Speed Hot Pursuit",purchase,1.0,0 -218451030,"Need for Speed Hot Pursuit",play,23.0,0 -218451030,"Halo Spartan Assault",purchase,1.0,0 -26491227,"Counter-Strike Source",purchase,1.0,0 -26491227,"Day of Defeat Source",purchase,1.0,0 -26491227,"Half-Life 2 Deathmatch",purchase,1.0,0 -26491227,"Half-Life 2 Lost Coast",purchase,1.0,0 -246357409,"Dota 2",purchase,1.0,0 -246357409,"Dota 2",play,14.4,0 -198810299,"PAYDAY The Heist",purchase,1.0,0 -198810299,"PAYDAY The Heist",play,26.0,0 -139240080,"Team Fortress 2",purchase,1.0,0 -139240080,"Team Fortress 2",play,38.0,0 -206471743,"Dota 2",purchase,1.0,0 -206471743,"Dota 2",play,2.1,0 -52352692,"Counter-Strike Source",purchase,1.0,0 -52352692,"Counter-Strike Source",play,211.0,0 -52352692,"Half-Life 2 Deathmatch",purchase,1.0,0 -52352692,"Half-Life 2 Deathmatch",play,0.9,0 -52352692,"Half-Life 2 Lost Coast",purchase,1.0,0 -52352692,"Half-Life 2 Lost Coast",play,0.3,0 -52352692,"Day of Defeat Source",purchase,1.0,0 -41324040,"Counter-Strike Source",purchase,1.0,0 -41324040,"Counter-Strike Source",play,18.4,0 -41324040,"Day of Defeat Source",purchase,1.0,0 -41324040,"Half-Life 2 Deathmatch",purchase,1.0,0 -41324040,"Half-Life 2 Lost Coast",purchase,1.0,0 -128706580,"Worms Reloaded",purchase,1.0,0 -128706580,"Worms Reloaded",play,0.2,0 -129081996,"Pillars of Eternity",purchase,1.0,0 -129081996,"Pillars of Eternity",play,53.0,0 -129081996,"Victor Vran",purchase,1.0,0 -129081996,"Victor Vran",play,51.0,0 -129081996,"The Incredible Adventures of Van Helsing II",purchase,1.0,0 -129081996,"The Incredible Adventures of Van Helsing II",play,42.0,0 -129081996,"Dota 2",purchase,1.0,0 -129081996,"Dota 2",play,36.0,0 -129081996,"Path of Exile",purchase,1.0,0 -129081996,"Path of Exile",play,31.0,0 -129081996,"Dungeon Defenders II",purchase,1.0,0 -129081996,"Dungeon Defenders II",play,22.0,0 -129081996,"Anno 2070",purchase,1.0,0 -129081996,"Anno 2070",play,14.0,0 -129081996,"Gauntlet ",purchase,1.0,0 -129081996,"Gauntlet ",play,12.8,0 -129081996,"Team Fortress 2",purchase,1.0,0 -129081996,"Team Fortress 2",play,6.2,0 -129081996,"Space Engineers",purchase,1.0,0 -129081996,"Space Engineers",play,0.8,0 -129081996,"Blood Bowl Chaos Edition",purchase,1.0,0 -296979815,"Crusaders of the Lost Idols",purchase,1.0,0 -296979815,"Crusaders of the Lost Idols",play,600.0,0 -296979815,"Path of Exile",purchase,1.0,0 -296979815,"Path of Exile",play,4.0,0 -296979815,"Neverwinter",purchase,1.0,0 -296979815,"Neverwinter",play,3.0,0 -296979815,"Dungeon Defenders II",purchase,1.0,0 -296979815,"Dungeon Defenders II",play,0.7,0 -296979815,"Counter-Strike Nexon Zombies",purchase,1.0,0 -296979815,"Counter-Strike Nexon Zombies",play,0.5,0 -296979815,"Eternal Fate",purchase,1.0,0 -296979815,"Eternal Fate",play,0.5,0 -296979815,"Spiral Knights",purchase,1.0,0 -296979815,"Spiral Knights",play,0.4,0 -296979815,"Aura Kingdom",purchase,1.0,0 -97473168,"Call of Duty Modern Warfare 3",purchase,1.0,0 -97473168,"Call of Duty Modern Warfare 3",play,7.4,0 -97473168,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -97473168,"Call of Duty Modern Warfare 3 - Multiplayer",play,0.1,0 -207144527,"Dota 2",purchase,1.0,0 -207144527,"Dota 2",play,1.9,0 -105788297,"Team Fortress 2",purchase,1.0,0 -105788297,"Team Fortress 2",play,512.0,0 -105788297,"Warframe",purchase,1.0,0 -105788297,"Warframe",play,188.0,0 -105788297,"Terraria",purchase,1.0,0 -105788297,"Terraria",play,176.0,0 -105788297,"Saints Row IV",purchase,1.0,0 -105788297,"Saints Row IV",play,40.0,0 -105788297,"Garry's Mod",purchase,1.0,0 -105788297,"Garry's Mod",play,38.0,0 -105788297,"The Elder Scrolls V Skyrim",purchase,1.0,0 -105788297,"The Elder Scrolls V Skyrim",play,3.6,0 -105788297,"Dota 2",purchase,1.0,0 -105788297,"Dota 2",play,0.2,0 -190900804,"Worms Reloaded",purchase,1.0,0 -190900804,"Worms Reloaded",play,3.3,0 -190900804,"Unturned",purchase,1.0,0 -190900804,"Alien Breed 2 Assault",purchase,1.0,0 -190900804,"Alien Breed 3 Descent",purchase,1.0,0 -190900804,"Alien Breed Impact",purchase,1.0,0 -190900804,"Light",purchase,1.0,0 -190900804,"Overruled!",purchase,1.0,0 -190900804,"Superfrog HD",purchase,1.0,0 -190900804,"Worms",purchase,1.0,0 -190900804,"Worms Armageddon",purchase,1.0,0 -190900804,"Worms Blast",purchase,1.0,0 -190900804,"Worms Crazy Golf",purchase,1.0,0 -190900804,"Worms Pinball",purchase,1.0,0 -190900804,"Worms Revolution",purchase,1.0,0 -190900804,"Worms Ultimate Mayhem",purchase,1.0,0 -204198891,"Dota 2",purchase,1.0,0 -204198891,"Dota 2",play,2.3,0 -204198891,"Team Fortress 2",purchase,1.0,0 -204198891,"Team Fortress 2",play,1.4,0 -65225038,"Portal 2",purchase,1.0,0 -65225038,"Portal 2",play,3.3,0 -65225038,"Team Fortress 2",purchase,1.0,0 -65225038,"Team Fortress 2",play,0.4,0 -211197762,"Dota 2",purchase,1.0,0 -211197762,"Dota 2",play,1149.0,0 -211197762,"Counter-Strike Global Offensive",purchase,1.0,0 -211197762,"Counter-Strike Global Offensive",play,97.0,0 -211197762,"Counter-Strike",purchase,1.0,0 -211197762,"Counter-Strike",play,12.5,0 -211197762,"Archeblade",purchase,1.0,0 -211197762,"Archeblade",play,4.0,0 -211197762,"Toribash",purchase,1.0,0 -211197762,"Toribash",play,2.4,0 -211197762,"Warframe",purchase,1.0,0 -211197762,"Warframe",play,2.2,0 -211197762,"War Thunder",purchase,1.0,0 -211197762,"War Thunder",play,0.7,0 -211197762,"Counter-Strike Condition Zero",purchase,1.0,0 -211197762,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -211197762,"Counter-Strike Source",purchase,1.0,0 -44201412,"Football Manager 2009",purchase,1.0,0 -44201412,"Football Manager 2009",play,12.7,0 -66250126,"Mount & Blade Warband",purchase,1.0,0 -66250126,"Mount & Blade Warband",play,185.0,0 -163874774,"Dota 2",purchase,1.0,0 -163874774,"Dota 2",play,52.0,0 -244520683,"Dota 2",purchase,1.0,0 -244520683,"Dota 2",play,3.8,0 -265558728,"Dota 2",purchase,1.0,0 -265558728,"Dota 2",play,470.0,0 -237652003,"Dota 2",purchase,1.0,0 -237652003,"Dota 2",play,6.5,0 -155793870,"Infestation Survivor Stories",purchase,1.0,0 -155793870,"Infestation Survivor Stories",play,2.0,0 -81037765,"Zombie Panic Source",purchase,1.0,0 -81037765,"Zombie Panic Source",play,15.9,0 -173749431,"Dota 2",purchase,1.0,0 -173749431,"Dota 2",play,107.0,0 -84507921,"Dungeon Siege III",purchase,1.0,0 -84507921,"Dungeon Siege III",play,3.1,0 -198550551,"La Tale",purchase,1.0,0 -198550551,"La Tale",play,46.0,0 -198550551,"Tomb Raider",purchase,1.0,0 -198550551,"Tomb Raider",play,4.9,0 -198550551,"Ragnarok Online 2",purchase,1.0,0 -198550551,"Ragnarok Online 2",play,1.9,0 -250909464,"Unturned",purchase,1.0,0 -250909464,"Unturned",play,1.1,0 -250909464,"Rise of Incarnates",purchase,1.0,0 -238390074,"Dota 2",purchase,1.0,0 -238390074,"Dota 2",play,404.0,0 -238390074,"RollerCoaster Tycoon Deluxe",purchase,1.0,0 -238390074,"RollerCoaster Tycoon Deluxe",play,22.0,0 -213203809,"Dota 2",purchase,1.0,0 -213203809,"Dota 2",play,71.0,0 -123875734,"Dota 2",purchase,1.0,0 -123875734,"Dota 2",play,233.0,0 -123875734,"Warframe",purchase,1.0,0 -123875734,"Warframe",play,17.2,0 -123875734,"Sphere III Enchanted World",purchase,1.0,0 -123875734,"Sphere III Enchanted World",play,2.0,0 -159734412,"Portal 2",purchase,1.0,0 -159734412,"Portal 2",play,31.0,0 -159734412,"Team Fortress 2",purchase,1.0,0 -159734412,"Team Fortress 2",play,8.1,0 -159734412,"Grand Theft Auto V",purchase,1.0,0 -159734412,"Grand Theft Auto V",play,4.9,0 -159734412,"Left 4 Dead 2",purchase,1.0,0 -159734412,"Left 4 Dead 2",play,3.3,0 -159734412,"the static speaks my name",purchase,1.0,0 -187801454,"Grand Theft Auto IV",purchase,1.0,0 -187801454,"Grand Theft Auto IV",play,1.2,0 -187801454,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -187801454,"Grand Theft Auto San Andreas",purchase,1.0,0 -187801454,"Grand Theft Auto San Andreas",purchase,1.0,0 -187801454,"Grand Theft Auto Vice City",purchase,1.0,0 -187801454,"Grand Theft Auto Vice City",purchase,1.0,0 -187801454,"Grand Theft Auto III",purchase,1.0,0 -187801454,"Grand Theft Auto III",purchase,1.0,0 -309262440,"Team Fortress 2",purchase,1.0,0 -309262440,"Team Fortress 2",play,1.2,0 -309262440,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -309262440,"CrimeCraft GangWars",purchase,1.0,0 -144715893,"Dota 2",purchase,1.0,0 -144715893,"Dota 2",play,15.0,0 -96963765,"Dota 2",purchase,1.0,0 -96963765,"Dota 2",play,1145.0,0 -96963765,"Cubic Castles",purchase,1.0,0 -96963765,"FreeStyle2 Street Basketball",purchase,1.0,0 -96963765,"Guns and Robots",purchase,1.0,0 -96963765,"Karos",purchase,1.0,0 -96963765,"Red Stone Online",purchase,1.0,0 -96963765,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -96963765,"Solstice Arena",purchase,1.0,0 -96963765,"Trove",purchase,1.0,0 -96963765,"Unturned",purchase,1.0,0 -240805337,"Team Fortress 2",purchase,1.0,0 -240805337,"Team Fortress 2",play,0.2,0 -240805337,"Robocraft",purchase,1.0,0 -244030924,"Dota 2",purchase,1.0,0 -244030924,"Dota 2",play,0.7,0 -83188092,"Total War ROME II - Emperor Edition",purchase,1.0,0 -83188092,"Total War ROME II - Emperor Edition",play,80.0,0 -83188092,"Empire Total War",purchase,1.0,0 -83188092,"Empire Total War",play,47.0,0 -83188092,"Infestation Survivor Stories",purchase,1.0,0 -83188092,"Infestation Survivor Stories",play,33.0,0 -83188092,"War Thunder",purchase,1.0,0 -83188092,"War Thunder",play,8.5,0 -83188092,"War of the Roses",purchase,1.0,0 -83188092,"War of the Roses",play,6.8,0 -83188092,"War of the Roses Balance Beta",purchase,1.0,0 -83188092,"War of the Roses Kingmaker",purchase,1.0,0 -191973826,"GunZ 2 The Second Duel",purchase,1.0,0 -191973826,"GunZ 2 The Second Duel",play,0.5,0 -182627985,"Goat Simulator",purchase,1.0,0 -182627985,"Goat Simulator",play,0.4,0 -180426359,"Dota 2",purchase,1.0,0 -180426359,"Dota 2",play,0.8,0 -108162562,"Dota 2",purchase,1.0,0 -108162562,"Dota 2",play,0.1,0 -211934059,"Dota 2",purchase,1.0,0 -211934059,"Dota 2",play,114.0,0 -213427457,"Counter-Strike Global Offensive",purchase,1.0,0 -213427457,"Counter-Strike Global Offensive",play,227.0,0 -213427457,"Ace of Spades",purchase,1.0,0 -213427457,"Ace of Spades",play,12.4,0 -213427457,"Goat Simulator",purchase,1.0,0 -213427457,"Goat Simulator",play,5.2,0 -213427457,"Fistful of Frags",purchase,1.0,0 -213427457,"Fistful of Frags",play,0.8,0 -213427457,"Dead Island Epidemic",purchase,1.0,0 -213427457,"Dead Island Epidemic",play,0.4,0 -213427457,"Counter-Strike Nexon Zombies",purchase,1.0,0 -213427457,"Counter-Strike Nexon Zombies",play,0.2,0 -213427457,"Disney Infinity 3.0 Play Without Limits",purchase,1.0,0 -213427457,"No More Room in Hell",purchase,1.0,0 -221063173,"The Way of Life Free Edition",purchase,1.0,0 -221063173,"Unturned",purchase,1.0,0 -64307328,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -64307328,"Call of Duty Modern Warfare 2 - Multiplayer",play,102.0,0 -64307328,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -64307328,"Call of Duty Black Ops - Multiplayer",play,82.0,0 -64307328,"Call of Duty Modern Warfare 2",purchase,1.0,0 -64307328,"Call of Duty Modern Warfare 2",play,1.9,0 -64307328,"Call of Duty Black Ops",purchase,1.0,0 -308563852,"Dota 2",purchase,1.0,0 -308563852,"Dota 2",play,8.4,0 -168786245,"Sid Meier's Railroads!",purchase,1.0,0 -168786245,"Sid Meier's Railroads!",play,11.7,0 -168786245,"Railroad Tycoon 2 Platinum",purchase,1.0,0 -168786245,"Railroad Tycoon 2 Platinum",play,0.4,0 -124978318,"Dota 2",purchase,1.0,0 -124978318,"Dota 2",play,295.0,0 -124978318,"Free to Play",purchase,1.0,0 -286700638,"Dota 2",purchase,1.0,0 -286700638,"Dota 2",play,32.0,0 -80394189,"IL-2 Sturmovik Cliffs of Dover",purchase,1.0,0 -80394189,"IL-2 Sturmovik Cliffs of Dover",play,7.2,0 -80394189,"Call of Juarez The Cartel",purchase,1.0,0 -80394189,"Call of Juarez The Cartel",play,0.6,0 -202618978,"Magicka",purchase,1.0,0 -202618978,"Magicka",play,69.0,0 -202618978,"Age of Empires II HD Edition",purchase,1.0,0 -202618978,"Age of Empires II HD Edition",play,3.5,0 -202618978,"TERA",purchase,1.0,0 -202618978,"TERA",play,0.6,0 -202618978,"Magicka Final Frontier",purchase,1.0,0 -202618978,"Magicka Frozen Lake",purchase,1.0,0 -202618978,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -202618978,"Magicka Nippon",purchase,1.0,0 -202618978,"Magicka Party Robes",purchase,1.0,0 -202618978,"Magicka The Watchtower",purchase,1.0,0 -202618978,"Magicka Vietnam",purchase,1.0,0 -202618978,"Magicka Wizard's Survival Kit",purchase,1.0,0 -211454678,"Garry's Mod",purchase,1.0,0 -211454678,"Garry's Mod",play,334.0,0 -211454678,"Counter-Strike Global Offensive",purchase,1.0,0 -211454678,"Counter-Strike Global Offensive",play,271.0,0 -211454678,"The Binding of Isaac Rebirth",purchase,1.0,0 -211454678,"The Binding of Isaac Rebirth",play,173.0,0 -211454678,"Rust",purchase,1.0,0 -211454678,"Rust",play,120.0,0 -211454678,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -211454678,"Tom Clancy's Ghost Recon Phantoms - NA",play,107.0,0 -211454678,"Warframe",purchase,1.0,0 -211454678,"Warframe",play,95.0,0 -211454678,"Arma 3",purchase,1.0,0 -211454678,"Arma 3",play,91.0,0 -211454678,"Dungeon Souls",purchase,1.0,0 -211454678,"Dungeon Souls",play,90.0,0 -211454678,"Starbound",purchase,1.0,0 -211454678,"Starbound",play,53.0,0 -211454678,"TERA",purchase,1.0,0 -211454678,"TERA",play,52.0,0 -211454678,"Robocraft",purchase,1.0,0 -211454678,"Robocraft",play,44.0,0 -211454678,"Unturned",purchase,1.0,0 -211454678,"Unturned",play,33.0,0 -211454678,"Magicite",purchase,1.0,0 -211454678,"Magicite",play,29.0,0 -211454678,"Dying Light",purchase,1.0,0 -211454678,"Dying Light",play,29.0,0 -211454678,"The Forest",purchase,1.0,0 -211454678,"The Forest",play,19.9,0 -211454678,"Gang Beasts",purchase,1.0,0 -211454678,"Gang Beasts",play,16.9,0 -211454678,"Team Fortress 2",purchase,1.0,0 -211454678,"Team Fortress 2",play,16.6,0 -211454678,"H1Z1",purchase,1.0,0 -211454678,"H1Z1",play,14.8,0 -211454678,"PAYDAY 2",purchase,1.0,0 -211454678,"PAYDAY 2",play,14.5,0 -211454678,"Terraria",purchase,1.0,0 -211454678,"Terraria",play,14.1,0 -211454678,"One Finger Death Punch",purchase,1.0,0 -211454678,"One Finger Death Punch",play,9.9,0 -211454678,"Trine 2",purchase,1.0,0 -211454678,"Trine 2",play,8.0,0 -211454678,"Dungeon Defenders II",purchase,1.0,0 -211454678,"Dungeon Defenders II",play,7.9,0 -211454678,"Steredenn",purchase,1.0,0 -211454678,"Steredenn",play,7.8,0 -211454678,"Stranded Deep",purchase,1.0,0 -211454678,"Stranded Deep",play,7.8,0 -211454678,"Survarium",purchase,1.0,0 -211454678,"Survarium",play,7.7,0 -211454678,"Dig or Die",purchase,1.0,0 -211454678,"Dig or Die",play,7.2,0 -211454678,"The Escapists",purchase,1.0,0 -211454678,"The Escapists",play,6.0,0 -211454678,"Dirty Bomb",purchase,1.0,0 -211454678,"Dirty Bomb",play,5.3,0 -211454678,"Relic Hunters Zero",purchase,1.0,0 -211454678,"Relic Hunters Zero",play,5.0,0 -211454678,"Besiege",purchase,1.0,0 -211454678,"Besiege",play,4.7,0 -211454678,"Evoland",purchase,1.0,0 -211454678,"Evoland",play,4.7,0 -211454678,"Path of Exile",purchase,1.0,0 -211454678,"Path of Exile",play,4.1,0 -211454678,"Hero Siege",purchase,1.0,0 -211454678,"Hero Siege",play,3.1,0 -211454678,"Curse of Mermos",purchase,1.0,0 -211454678,"Curse of Mermos",play,1.7,0 -211454678,"Magicka 2",purchase,1.0,0 -211454678,"Magicka 2",play,1.7,0 -211454678,"Drunken Robot Pornography",purchase,1.0,0 -211454678,"Drunken Robot Pornography",play,1.6,0 -211454678,"Card Hunter",purchase,1.0,0 -211454678,"Card Hunter",play,1.6,0 -211454678,"Trove",purchase,1.0,0 -211454678,"Trove",play,0.9,0 -211454678,"Dota 2",purchase,1.0,0 -211454678,"Dota 2",play,0.8,0 -211454678,"PlanetSide 2",purchase,1.0,0 -211454678,"PlanetSide 2",play,0.8,0 -211454678,"Codename CURE",purchase,1.0,0 -211454678,"Codename CURE",play,0.7,0 -211454678,"Aftermath",purchase,1.0,0 -211454678,"Aftermath",play,0.7,0 -211454678,"Emily is Away",purchase,1.0,0 -211454678,"Emily is Away",play,0.6,0 -211454678,"Piercing Blow",purchase,1.0,0 -211454678,"Piercing Blow",play,0.5,0 -211454678,"Requiem",purchase,1.0,0 -211454678,"Requiem",play,0.5,0 -211454678,"ArcheAge",purchase,1.0,0 -211454678,"ArcheAge",play,0.5,0 -211454678,"Counter-Strike Nexon Zombies",purchase,1.0,0 -211454678,"Counter-Strike Nexon Zombies",play,0.5,0 -211454678,"RWBY Grimm Eclipse",purchase,1.0,0 -211454678,"RWBY Grimm Eclipse",play,0.4,0 -211454678,"WARMODE",purchase,1.0,0 -211454678,"WARMODE",play,0.1,0 -211454678,"F.E.A.R. Online",purchase,1.0,0 -211454678,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -211454678,"Brick-Force",purchase,1.0,0 -211454678,"Dragon Nest",purchase,1.0,0 -211454678,"Blacklight Retribution",purchase,1.0,0 -211454678,"Arma 3 Zeus",purchase,1.0,0 -211454678,"H1Z1 Test Server",purchase,1.0,0 -211454678,"Starbound - Unstable",purchase,1.0,0 -211454678,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -211454678,"Warface",purchase,1.0,0 -276958784,"Grand Theft Auto V",purchase,1.0,0 -276958784,"Grand Theft Auto V",play,12.0,0 -276958784,"The Elder Scrolls V Skyrim",purchase,1.0,0 -276958784,"The Elder Scrolls V Skyrim",play,8.8,0 -276958784,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -276958784,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -276958784,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -276958784,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -62078957,"Clicker Heroes",purchase,1.0,0 -62078957,"Clicker Heroes",play,1912.0,0 -62078957,"Counter-Strike",purchase,1.0,0 -62078957,"Counter-Strike",play,777.0,0 -62078957,"Counter-Strike Global Offensive",purchase,1.0,0 -62078957,"Counter-Strike Global Offensive",play,686.0,0 -62078957,"Counter-Strike Source",purchase,1.0,0 -62078957,"Counter-Strike Source",play,52.0,0 -62078957,"Dota 2",purchase,1.0,0 -62078957,"Dota 2",play,47.0,0 -62078957,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -62078957,"Call of Duty Ghosts - Multiplayer",play,17.5,0 -62078957,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -62078957,"Call of Duty Modern Warfare 2 - Multiplayer",play,13.2,0 -62078957,"Devilian",purchase,1.0,0 -62078957,"Devilian",play,9.4,0 -62078957,"Call of Duty Ghosts",purchase,1.0,0 -62078957,"Call of Duty Ghosts",play,2.2,0 -62078957,"Chivalry Medieval Warfare",purchase,1.0,0 -62078957,"Chivalry Medieval Warfare",play,2.1,0 -62078957,"Team Fortress 2",purchase,1.0,0 -62078957,"Team Fortress 2",play,1.1,0 -62078957,"Mirror's Edge",purchase,1.0,0 -62078957,"Mirror's Edge",play,1.0,0 -62078957,"Call of Duty Modern Warfare 2",purchase,1.0,0 -62078957,"Counter-Strike Condition Zero",purchase,1.0,0 -62078957,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -62078957,"Day of Defeat",purchase,1.0,0 -62078957,"Day of Defeat Source",purchase,1.0,0 -62078957,"Deathmatch Classic",purchase,1.0,0 -62078957,"Half-Life 2 Deathmatch",purchase,1.0,0 -62078957,"Half-Life 2 Lost Coast",purchase,1.0,0 -62078957,"Patch testing for Chivalry",purchase,1.0,0 -62078957,"Ricochet",purchase,1.0,0 -293500233,"Dota 2",purchase,1.0,0 -293500233,"Dota 2",play,1.5,0 -126465386,"Dungeons of Dredmor",purchase,1.0,0 -126465386,"Dungeons of Dredmor",play,2.9,0 -191940483,"Dota 2",purchase,1.0,0 -191940483,"Dota 2",play,1.5,0 -191940483,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -15576531,"Counter-Strike",purchase,1.0,0 -15576531,"Counter-Strike",play,77.0,0 -15576531,"Counter-Strike Condition Zero",purchase,1.0,0 -15576531,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -15576531,"Day of Defeat",purchase,1.0,0 -15576531,"Deathmatch Classic",purchase,1.0,0 -15576531,"Half-Life",purchase,1.0,0 -15576531,"Half-Life Blue Shift",purchase,1.0,0 -15576531,"Half-Life Opposing Force",purchase,1.0,0 -15576531,"Ricochet",purchase,1.0,0 -15576531,"Team Fortress Classic",purchase,1.0,0 -61428062,"Half-Life 2",purchase,1.0,0 -61428062,"Half-Life 2",play,18.3,0 -61428062,"Half-Life 2 Episode Two",purchase,1.0,0 -61428062,"Half-Life 2 Episode Two",play,10.5,0 -61428062,"Half-Life 2 Episode One",purchase,1.0,0 -61428062,"Half-Life 2 Episode One",play,9.0,0 -61428062,"Team Fortress 2",purchase,1.0,0 -61428062,"Team Fortress 2",play,1.5,0 -61428062,"Half-Life 2 Lost Coast",purchase,1.0,0 -61428062,"Portal",purchase,1.0,0 -264759872,"America's Army Proving Grounds",purchase,1.0,0 -264759872,"America's Army Proving Grounds",play,0.5,0 -264759872,"Copa Petrobras de Marcas",purchase,1.0,0 -232477991,"Homeworld Remastered Collection",purchase,1.0,0 -232477991,"Homeworld Remastered Collection",play,9.5,0 -96157153,"Call of Duty Black Ops",purchase,1.0,0 -96157153,"Call of Duty Black Ops",play,20.0,0 -96157153,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -146003284,"Team Fortress 2",purchase,1.0,0 -146003284,"Team Fortress 2",play,51.0,0 -57077457,"Dungeon Siege III",purchase,1.0,0 -57077457,"Dungeon Siege III",play,0.6,0 -120066253,"Call of Duty Modern Warfare 2",purchase,1.0,0 -120066253,"Call of Duty Modern Warfare 2",play,3.5,0 -120066253,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -160776422,"Dota 2",purchase,1.0,0 -160776422,"Dota 2",play,0.6,0 -231317343,"Dota 2",purchase,1.0,0 -231317343,"Dota 2",play,2.2,0 -219958874,"Dota 2",purchase,1.0,0 -219958874,"Dota 2",play,54.0,0 -204908772,"Double Action Boogaloo",purchase,1.0,0 -204908772,"Double Action Boogaloo",play,25.0,0 -177154840,"Dota 2",purchase,1.0,0 -177154840,"Dota 2",play,374.0,0 -177154840,"Path of Exile",purchase,1.0,0 -177154840,"Path of Exile",play,0.8,0 -198166157,"Unturned",purchase,1.0,0 -198166157,"Unturned",play,0.6,0 -182604873,"Sid Meier's Civilization V",purchase,1.0,0 -182604873,"Sid Meier's Civilization V",play,64.0,0 -182604873,"The Elder Scrolls V Skyrim",purchase,1.0,0 -182604873,"The Elder Scrolls V Skyrim",play,9.2,0 -182604873,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -182604873,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -182604873,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -182604873,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -182604873,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -163114751,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -163114751,"Sid Meier's Civilization IV Warlords",play,79.0,0 -163114751,"Sid Meier's Civilization V",purchase,1.0,0 -163114751,"Sid Meier's Civilization V",play,1.0,0 -163114751,"Sid Meier's Civilization IV",purchase,1.0,0 -163114751,"Sid Meier's Civilization IV",purchase,1.0,0 -163114751,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -163114751,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -163114751,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -163114751,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -163114751,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -276587942,"Unturned",purchase,1.0,0 -276587942,"Unturned",play,0.5,0 -276587942,"All Is Dust",purchase,1.0,0 -162748673,"Rocksmith 2014",purchase,1.0,0 -162748673,"Rocksmith 2014",play,158.0,0 -162748673,"DayZ",purchase,1.0,0 -162748673,"DayZ",play,2.0,0 -162748673,"Team Fortress 2",purchase,1.0,0 -162748673,"Team Fortress 2",play,0.2,0 -162748673,"Rocksmith",purchase,1.0,0 -164348218,"Professional Farmer 2014",purchase,1.0,0 -164348218,"Professional Farmer 2014",play,1.7,0 -138670893,"Company of Heroes 2",purchase,1.0,0 -138670893,"Company of Heroes 2",play,3.9,0 -128868128,"Dota 2",purchase,1.0,0 -128868128,"Dota 2",play,34.0,0 -229465233,"Construction-Simulator 2015",purchase,1.0,0 -229465233,"Construction-Simulator 2015",play,0.5,0 -228209477,"Cities Skylines",purchase,1.0,0 -228209477,"Cities Skylines",play,15.6,0 -293660635,"Unturned",purchase,1.0,0 -293660635,"Unturned",play,12.0,0 -293660635,"The Settlers Online",purchase,1.0,0 -293660635,"Trove",purchase,1.0,0 -126843636,"Dota 2",purchase,1.0,0 -126843636,"Dota 2",play,1.1,0 -189086011,"Unturned",purchase,1.0,0 -189086011,"Unturned",play,44.0,0 -189086011,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -189086011,"Tom Clancy's Ghost Recon Phantoms - EU",play,12.7,0 -189086011,"RIFT",purchase,1.0,0 -189086011,"RIFT",play,7.4,0 -189086011,"War Inc. Battlezone",purchase,1.0,0 -189086011,"War Inc. Battlezone",play,5.8,0 -189086011,"Team Fortress 2",purchase,1.0,0 -189086011,"Team Fortress 2",play,5.2,0 -189086011,"Dragon's Prophet (EU)",purchase,1.0,0 -189086011,"Dragon's Prophet (EU)",play,2.8,0 -189086011,"Cubic Castles",purchase,1.0,0 -189086011,"Cubic Castles",play,1.6,0 -189086011,"Happy Wars",purchase,1.0,0 -189086011,"Happy Wars",play,1.1,0 -189086011,"Divine Souls",purchase,1.0,0 -189086011,"Counter-Strike Nexon Zombies",purchase,1.0,0 -189086011,"Firefall",purchase,1.0,0 -242296105,"BLOCKADE 3D",purchase,1.0,0 -242296105,"BLOCKADE 3D",play,1.1,0 -242296105,"Heroes & Generals",purchase,1.0,0 -242296105,"Heroes & Generals",play,0.7,0 -242296105,"Heroes of SoulCraft",purchase,1.0,0 -107097425,"Team Fortress 2",purchase,1.0,0 -107097425,"Team Fortress 2",play,32.0,0 -107097425,"Penumbra Black Plague",purchase,1.0,0 -107097425,"Penumbra Black Plague",play,9.2,0 -107097425,"Amnesia The Dark Descent",purchase,1.0,0 -107097425,"Amnesia The Dark Descent",play,4.9,0 -107097425,"Penumbra Requiem",purchase,1.0,0 -107097425,"Penumbra Requiem",play,0.1,0 -159424645,"Rome Total War",purchase,1.0,0 -159424645,"Rome Total War",play,137.0,0 -159424645,"Banished",purchase,1.0,0 -159424645,"Banished",play,19.9,0 -159424645,"Neverwinter",purchase,1.0,0 -159424645,"Neverwinter",play,17.9,0 -159424645,"Team Fortress 2",purchase,1.0,0 -159424645,"Team Fortress 2",play,17.5,0 -159424645,"Star Wars - Battlefront II",purchase,1.0,0 -159424645,"Star Wars - Battlefront II",play,6.0,0 -159424645,"Rome Total War - Alexander",purchase,1.0,0 -159424645,"Rome Total War - Alexander",play,2.7,0 -159424645,"Warface",purchase,1.0,0 -159424645,"Warface",play,1.1,0 -159424645,"Heroes & Generals",purchase,1.0,0 -159424645,"Heroes & Generals",play,0.1,0 -174138275,"Unturned",purchase,1.0,0 -174138275,"Unturned",play,1.9,0 -174138275,"Quake Live",purchase,1.0,0 -174138275,"Quake Live",play,1.7,0 -221513057,"Dota 2",purchase,1.0,0 -221513057,"Dota 2",play,0.8,0 -268037268,"Dota 2",purchase,1.0,0 -268037268,"Dota 2",play,1.1,0 -73513367,"Left 4 Dead 2",purchase,1.0,0 -73513367,"Left 4 Dead 2",play,285.0,0 -73513367,"The Elder Scrolls V Skyrim",purchase,1.0,0 -73513367,"The Elder Scrolls V Skyrim",play,83.0,0 -73513367,"Left 4 Dead",purchase,1.0,0 -73513367,"Left 4 Dead",play,6.0,0 -73513367,"Half-Life 2 Episode Two",purchase,1.0,0 -73513367,"Half-Life 2 Episode Two",play,1.6,0 -73513367,"Call of Duty Black Ops II",purchase,1.0,0 -73513367,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -73513367,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -266479412,"Unturned",purchase,1.0,0 -266479412,"Unturned",play,18.1,0 -266479412,"Metal War Online Retribution",purchase,1.0,0 -266479412,"Metal War Online Retribution",play,5.2,0 -266479412,"Villagers and Heroes",purchase,1.0,0 -266479412,"Villagers and Heroes",play,5.0,0 -266479412,"World of Guns Gun Disassembly",purchase,1.0,0 -266479412,"World of Guns Gun Disassembly",play,2.1,0 -266479412,"BLOCKADE 3D",purchase,1.0,0 -266479412,"BLOCKADE 3D",play,1.6,0 -266479412,"Trove",purchase,1.0,0 -266479412,"Trove",play,1.4,0 -266479412,"Robocraft",purchase,1.0,0 -266479412,"Robocraft",play,1.2,0 -266479412,"Anno Online",purchase,1.0,0 -266479412,"Anno Online",play,0.9,0 -266479412,"Counter-Strike Nexon Zombies",purchase,1.0,0 -266479412,"Counter-Strike Nexon Zombies",play,0.8,0 -266479412,"Crusaders of the Lost Idols",purchase,1.0,0 -266479412,"Crusaders of the Lost Idols",play,0.7,0 -266479412,"Spartans Vs Zombies Defense",purchase,1.0,0 -266479412,"Spartans Vs Zombies Defense",play,0.6,0 -266479412,"Might & Magic Heroes Online",purchase,1.0,0 -266479412,"Might & Magic Heroes Online",play,0.6,0 -266479412,"The Settlers Online",purchase,1.0,0 -266479412,"The Settlers Online",play,0.6,0 -266479412,"Survarium",purchase,1.0,0 -266479412,"Survarium",play,0.5,0 -266479412,"Clicker Heroes",purchase,1.0,0 -266479412,"Clicker Heroes",play,0.5,0 -266479412,"War Thunder",purchase,1.0,0 -266479412,"War Thunder",play,0.4,0 -266479412,"Team Fortress 2",purchase,1.0,0 -266479412,"Team Fortress 2",play,0.4,0 -266479412,"Gladiators Online Death Before Dishonor",purchase,1.0,0 -266479412,"Gladiators Online Death Before Dishonor",play,0.2,0 -266479412,"No More Room in Hell",purchase,1.0,0 -266479412,"No More Room in Hell",play,0.2,0 -266479412,"Copa Petrobras de Marcas",purchase,1.0,0 -266479412,"Copa Petrobras de Marcas",play,0.1,0 -266479412,"Dirty Bomb",purchase,1.0,0 -266479412,"Run and Fire",purchase,1.0,0 -266479412,"sZone-Online",purchase,1.0,0 -266479412,"Mortal Online",purchase,1.0,0 -266479412,"WARMODE",purchase,1.0,0 -266479412,"Esenthel Engine",purchase,1.0,0 -266479412,"Aftermath",purchase,1.0,0 -266479412,"Lamia Must Die",purchase,1.0,0 -266479412,"Battle Battalions",purchase,1.0,0 -266479412,"MechWarrior Online",purchase,1.0,0 -266479412,"Red Crucible Firestorm",purchase,1.0,0 -266479412,"Rise of Incarnates",purchase,1.0,0 -266479412,"theHunter",purchase,1.0,0 -266479412,"UberStrike",purchase,1.0,0 -266479412,"Zombies Monsters Robots",purchase,1.0,0 -230971174,"Dota 2",purchase,1.0,0 -230971174,"Dota 2",play,1.5,0 -144681252,"Dota 2",purchase,1.0,0 -144681252,"Dota 2",play,3.9,0 -101304417,"Team Fortress 2",purchase,1.0,0 -101304417,"Team Fortress 2",play,13.7,0 -96914675,"Counter-Strike Global Offensive",purchase,1.0,0 -96914675,"Counter-Strike Global Offensive",play,217.0,0 -96914675,"Team Fortress 2",purchase,1.0,0 -96914675,"Team Fortress 2",play,102.0,0 -96914675,"Left 4 Dead 2",purchase,1.0,0 -96914675,"Left 4 Dead 2",play,29.0,0 -96914675,"DayZ",purchase,1.0,0 -96914675,"DayZ",play,18.0,0 -96914675,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -96914675,"Resident Evil 6 / Biohazard 6",play,15.2,0 -96914675,"PAYDAY The Heist",purchase,1.0,0 -96914675,"PAYDAY The Heist",play,13.9,0 -96914675,"Call of Duty Black Ops",purchase,1.0,0 -96914675,"Call of Duty Black Ops",play,12.2,0 -96914675,"Dota 2",purchase,1.0,0 -96914675,"Dota 2",play,12.0,0 -96914675,"Mirror's Edge",purchase,1.0,0 -96914675,"Mirror's Edge",play,11.4,0 -96914675,"Aliens vs. Predator",purchase,1.0,0 -96914675,"Aliens vs. Predator",play,10.1,0 -96914675,"Call of Juarez",purchase,1.0,0 -96914675,"Call of Juarez",play,8.6,0 -96914675,"Killing Floor",purchase,1.0,0 -96914675,"Killing Floor",play,6.8,0 -96914675,"Insurgency Modern Infantry Combat",purchase,1.0,0 -96914675,"Insurgency Modern Infantry Combat",play,3.8,0 -96914675,"Serious Sam 3 BFE",purchase,1.0,0 -96914675,"Serious Sam 3 BFE",play,3.2,0 -96914675,"Alan Wake's American Nightmare",purchase,1.0,0 -96914675,"Alan Wake's American Nightmare",play,2.8,0 -96914675,"Estranged Act I",purchase,1.0,0 -96914675,"Estranged Act I",play,2.5,0 -96914675,"Defiance",purchase,1.0,0 -96914675,"Defiance",play,1.5,0 -96914675,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -96914675,"Resident Evil Revelations 2 / Biohazard Revelations 2",play,1.1,0 -96914675,"McPixel",purchase,1.0,0 -96914675,"McPixel",play,1.0,0 -96914675,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -96914675,"Call of Duty Black Ops - Multiplayer",play,0.9,0 -96914675,"Jets'n'Guns Gold",purchase,1.0,0 -96914675,"Jets'n'Guns Gold",play,0.4,0 -96914675,"Saints Row IV",purchase,1.0,0 -96914675,"Saints Row IV",play,0.3,0 -96914675,"Unturned",purchase,1.0,0 -96914675,"Unturned",play,0.2,0 -96914675,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -96914675,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,0.1,0 -96914675,"Enclave",purchase,1.0,0 -96914675,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -96914675,"Knights and Merchants",purchase,1.0,0 -96914675,"Mount & Blade",purchase,1.0,0 -96914675,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -96914675,"Ship Simulator Extremes",purchase,1.0,0 -96914675,"Trainz Classic Cabon City",purchase,1.0,0 -96914675,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -96914675,"Woodcutter Simulator 2013",purchase,1.0,0 -189963855,"Dota 2",purchase,1.0,0 -189963855,"Dota 2",play,29.0,0 -198680785,"PAYDAY The Heist",purchase,1.0,0 -198680785,"PAYDAY The Heist",play,0.2,0 -283922576,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -283922576,"Tom Clancy's Ghost Recon Phantoms - NA",play,6.1,0 -283922576,"Shadow Warrior",purchase,1.0,0 -283922576,"Shadow Warrior",play,0.8,0 -283922576,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -283922576,"Viscera Cleanup Detail Shadow Warrior",play,0.2,0 -283922576,"TERA",purchase,1.0,0 -283922576,"TERA",play,0.1,0 -283922576,"The Lord of the Rings Online",purchase,1.0,0 -283922576,"The Lord of the Rings Online",play,0.1,0 -283922576,"ArcheAge",purchase,1.0,0 -283922576,"Dead Island Epidemic",purchase,1.0,0 -283922576,"Mortal Online",purchase,1.0,0 -283922576,"Path of Exile",purchase,1.0,0 -283922576,"Warframe",purchase,1.0,0 -128019521,"BioShock Infinite",purchase,1.0,0 -128019521,"BioShock Infinite",play,25.0,0 -277673224,"Dota 2",purchase,1.0,0 -277673224,"Dota 2",play,31.0,0 -277673224,"FreeStyle2 Street Basketball",purchase,1.0,0 -277673224,"TERA",purchase,1.0,0 -147876770,"Dota 2",purchase,1.0,0 -147876770,"Dota 2",play,0.5,0 -147876770,"Defiance",purchase,1.0,0 -277229584,"Football Manager 2015",purchase,1.0,0 -277229584,"Football Manager 2015",play,7.8,0 -277229584,"BLOCKADE 3D",purchase,1.0,0 -277229584,"BLOCKADE 3D",play,0.2,0 -277229584,"Dirty Bomb",purchase,1.0,0 -223634790,"Team Fortress 2",purchase,1.0,0 -223634790,"Team Fortress 2",play,3.0,0 -202409306,"Dota 2",purchase,1.0,0 -202409306,"Dota 2",play,2.7,0 -177726145,"Transistor",purchase,1.0,0 -177726145,"Transistor",play,2.0,0 -176197170,"Dota 2",purchase,1.0,0 -176197170,"Dota 2",play,42.0,0 -189148170,"Dota 2",purchase,1.0,0 -189148170,"Dota 2",play,1.1,0 -296898457,"Dota 2",purchase,1.0,0 -296898457,"Dota 2",play,22.0,0 -245390247,"Robocraft",purchase,1.0,0 -245390247,"Robocraft",play,2.7,0 -3054990,"Counter-Strike",purchase,1.0,0 -3054990,"Counter-Strike",play,60.0,0 -3054990,"Day of Defeat",purchase,1.0,0 -3054990,"Deathmatch Classic",purchase,1.0,0 -3054990,"Half-Life",purchase,1.0,0 -3054990,"Half-Life Blue Shift",purchase,1.0,0 -3054990,"Half-Life Opposing Force",purchase,1.0,0 -3054990,"Ricochet",purchase,1.0,0 -3054990,"Team Fortress Classic",purchase,1.0,0 -77194086,"Dungeon Defenders",purchase,1.0,0 -77194086,"Dungeon Defenders",play,124.0,0 -77194086,"Counter-Strike Global Offensive",purchase,1.0,0 -77194086,"Counter-Strike Global Offensive",play,81.0,0 -77194086,"Trine 2",purchase,1.0,0 -77194086,"Trine 2",play,17.5,0 -77194086,"Dead Island",purchase,1.0,0 -77194086,"Dead Island",play,14.4,0 -77194086,"Magicka",purchase,1.0,0 -77194086,"Magicka",play,11.4,0 -77194086,"PAYDAY 2",purchase,1.0,0 -77194086,"PAYDAY 2",play,6.0,0 -77194086,"Dota 2",purchase,1.0,0 -77194086,"Dota 2",play,4.2,0 -77194086,"Alien Swarm",purchase,1.0,0 -77194086,"Alien Swarm",play,3.9,0 -77194086,"Monday Night Combat",purchase,1.0,0 -77194086,"Monday Night Combat",play,3.8,0 -77194086,"DC Universe Online",purchase,1.0,0 -77194086,"DC Universe Online",play,2.9,0 -77194086,"Sanctum",purchase,1.0,0 -77194086,"Sanctum",play,2.3,0 -77194086,"Castle Crashers",purchase,1.0,0 -77194086,"Castle Crashers",play,2.2,0 -77194086,"Neverwinter Nights 2 Platinum",purchase,1.0,0 -77194086,"Neverwinter Nights 2 Platinum",play,2.2,0 -77194086,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -77194086,"Dark Souls Prepare to Die Edition",play,2.1,0 -77194086,"Frozen Synapse",purchase,1.0,0 -77194086,"Frozen Synapse",play,1.3,0 -77194086,"Bunch Of Heroes",purchase,1.0,0 -77194086,"Bunch Of Heroes",play,0.9,0 -77194086,"The Ship",purchase,1.0,0 -77194086,"The Ship",play,0.8,0 -77194086,"The Typing of The Dead Overkill",purchase,1.0,0 -77194086,"The Typing of The Dead Overkill",play,0.7,0 -77194086,"The Mighty Quest For Epic Loot",purchase,1.0,0 -77194086,"The Mighty Quest For Epic Loot",play,0.7,0 -77194086,"Team Fortress 2",purchase,1.0,0 -77194086,"Team Fortress 2",play,0.6,0 -77194086,"HOARD",purchase,1.0,0 -77194086,"HOARD",play,0.2,0 -77194086,"Arma 2 Operation Arrowhead",purchase,1.0,0 -77194086,"Arma 2",purchase,1.0,0 -77194086,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -77194086,"Magicka Wizard's Survival Kit",purchase,1.0,0 -77194086,"The Ship Single Player",purchase,1.0,0 -77194086,"The Ship Tutorial",purchase,1.0,0 -89648859,"Dungeon Siege III",purchase,1.0,0 -89648859,"Dungeon Siege III",play,0.5,0 -249371209,"HAWKEN",purchase,1.0,0 -249371209,"HAWKEN",play,49.0,0 -148663325,"Total War ROME II - Emperor Edition",purchase,1.0,0 -148663325,"Total War ROME II - Emperor Edition",play,7.0,0 -307750400,"Team Fortress 2",purchase,1.0,0 -307750400,"Team Fortress 2",play,0.9,0 -116968417,"Team Fortress 2",purchase,1.0,0 -116968417,"Team Fortress 2",play,6.7,0 -303627886,"Dota 2",purchase,1.0,0 -303627886,"Dota 2",play,1.0,0 -294715521,"DayZ",purchase,1.0,0 -294715521,"DayZ",play,0.2,0 -108639015,"Total War ROME II - Emperor Edition",purchase,1.0,0 -108639015,"Total War ROME II - Emperor Edition",play,223.0,0 -108639015,"Total War SHOGUN 2",purchase,1.0,0 -108639015,"Total War SHOGUN 2",play,123.0,0 -108639015,"Medieval II Total War",purchase,1.0,0 -108639015,"Medieval II Total War",play,54.0,0 -108639015,"Omerta - City of Gangsters",purchase,1.0,0 -108639015,"Omerta - City of Gangsters",play,3.5,0 -108639015,"War of the Vikings",purchase,1.0,0 -108639015,"War of the Vikings",play,2.5,0 -108639015,"Life is Feudal Your Own",purchase,1.0,0 -108639015,"Life is Feudal Your Own",play,1.9,0 -108639015,"Napoleon Total War",purchase,1.0,0 -108639015,"Napoleon Total War",play,1.8,0 -108639015,"Empire Total War",purchase,1.0,0 -108639015,"Empire Total War",play,0.6,0 -108639015,"War of the Roses",purchase,1.0,0 -108639015,"War of the Roses",play,0.3,0 -108639015,"Medieval II Total War Kingdoms",purchase,1.0,0 -108639015,"Rome Total War",purchase,1.0,0 -108639015,"Rome Total War - Alexander",purchase,1.0,0 -172105480,"Dota 2",purchase,1.0,0 -172105480,"Dota 2",play,3116.0,0 -172105480,"Counter-Strike Global Offensive",purchase,1.0,0 -172105480,"Counter-Strike Global Offensive",play,86.0,0 -172105480,"Super Meat Boy",purchase,1.0,0 -172105480,"Super Meat Boy",play,10.4,0 -172105480,"Counter-Strike",purchase,1.0,0 -172105480,"Counter-Strike Condition Zero",purchase,1.0,0 -172105480,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -172105480,"Counter-Strike Source",purchase,1.0,0 -97667936,"Dota 2",purchase,1.0,0 -97667936,"Dota 2",play,26.0,0 -97667936,"Left 4 Dead 2",purchase,1.0,0 -97667936,"Left 4 Dead 2",play,8.8,0 -97667936,"Transformice",purchase,1.0,0 -97667936,"Transformice",play,2.7,0 -97667936,"Ragnarok Online 2",purchase,1.0,0 -97667936,"Ragnarok Online 2",play,2.2,0 -97667936,"Team Fortress 2",purchase,1.0,0 -97667936,"Team Fortress 2",play,0.8,0 -97667936,"Ragnarok",purchase,1.0,0 -97667936,"Ragnarok",play,0.5,0 -97667936,"Unturned",purchase,1.0,0 -97667936,"Unturned",play,0.2,0 -97667936,"Terraria",purchase,1.0,0 -97667936,"Terraria",play,0.1,0 -97667936,"Block N Load",purchase,1.0,0 -97667936,"Robocraft",purchase,1.0,0 -97667936,"The Lord of the Rings Online",purchase,1.0,0 -232457943,"Dota 2",purchase,1.0,0 -232457943,"Dota 2",play,520.0,0 -17530772,"Grand Theft Auto V",purchase,1.0,0 -17530772,"Grand Theft Auto V",play,192.0,0 -17530772,"The Elder Scrolls V Skyrim",purchase,1.0,0 -17530772,"The Elder Scrolls V Skyrim",play,122.0,0 -17530772,"DayZ",purchase,1.0,0 -17530772,"DayZ",play,97.0,0 -17530772,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -17530772,"Dark Souls Prepare to Die Edition",play,90.0,0 -17530772,"DARK SOULS II",purchase,1.0,0 -17530772,"DARK SOULS II",play,82.0,0 -17530772,"The Elder Scrolls Online Tamriel Unlimited",purchase,1.0,0 -17530772,"The Elder Scrolls Online Tamriel Unlimited",play,78.0,0 -17530772,"Ultra Street Fighter IV",purchase,1.0,0 -17530772,"Ultra Street Fighter IV",play,73.0,0 -17530772,"Fallout 4",purchase,1.0,0 -17530772,"Fallout 4",play,67.0,0 -17530772,"Left 4 Dead 2",purchase,1.0,0 -17530772,"Left 4 Dead 2",play,66.0,0 -17530772,"The Witcher 3 Wild Hunt",purchase,1.0,0 -17530772,"The Witcher 3 Wild Hunt",play,61.0,0 -17530772,"Divinity Original Sin",purchase,1.0,0 -17530772,"Divinity Original Sin",play,44.0,0 -17530772,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -17530772,"Call of Duty Modern Warfare 2 - Multiplayer",play,44.0,0 -17530772,"Terraria",purchase,1.0,0 -17530772,"Terraria",play,42.0,0 -17530772,"The Witcher Enhanced Edition",purchase,1.0,0 -17530772,"The Witcher Enhanced Edition",play,37.0,0 -17530772,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -17530772,"The Witcher 2 Assassins of Kings Enhanced Edition",play,34.0,0 -17530772,"Resident Evil / biohazard HD REMASTER",purchase,1.0,0 -17530772,"Resident Evil / biohazard HD REMASTER",play,33.0,0 -17530772,"H1Z1",purchase,1.0,0 -17530772,"H1Z1",play,33.0,0 -17530772,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -17530772,"Warhammer 40,000 Dawn of War II",play,32.0,0 -17530772,"Unreal Tournament Game of the Year Edition",purchase,1.0,0 -17530772,"Unreal Tournament Game of the Year Edition",play,30.0,0 -17530772,"Dead Island",purchase,1.0,0 -17530772,"Dead Island",play,30.0,0 -17530772,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -17530772,"Call of Duty Modern Warfare 3 - Multiplayer",play,30.0,0 -17530772,"Mafia II",purchase,1.0,0 -17530772,"Mafia II",play,28.0,0 -17530772,"Magicka",purchase,1.0,0 -17530772,"Magicka",play,28.0,0 -17530772,"Risen",purchase,1.0,0 -17530772,"Risen",play,28.0,0 -17530772,"Assassin's Creed III",purchase,1.0,0 -17530772,"Assassin's Creed III",play,27.0,0 -17530772,"Test Drive Unlimited 2",purchase,1.0,0 -17530772,"Test Drive Unlimited 2",play,27.0,0 -17530772,"Sleeping Dogs",purchase,1.0,0 -17530772,"Sleeping Dogs",play,27.0,0 -17530772,"Assassin's Creed IV Black Flag",purchase,1.0,0 -17530772,"Assassin's Creed IV Black Flag",play,27.0,0 -17530772,"Grand Theft Auto IV",purchase,1.0,0 -17530772,"Grand Theft Auto IV",play,26.0,0 -17530772,"Elite Dangerous",purchase,1.0,0 -17530772,"Elite Dangerous",play,26.0,0 -17530772,"Left 4 Dead",purchase,1.0,0 -17530772,"Left 4 Dead",play,25.0,0 -17530772,"Euro Truck Simulator 2",purchase,1.0,0 -17530772,"Euro Truck Simulator 2",play,25.0,0 -17530772,"Mass Effect 2",purchase,1.0,0 -17530772,"Mass Effect 2",play,24.0,0 -17530772,"Battlefield Bad Company 2",purchase,1.0,0 -17530772,"Battlefield Bad Company 2",play,24.0,0 -17530772,"Arma 2",purchase,1.0,0 -17530772,"Arma 2",play,23.0,0 -17530772,"Music Creator 6 Touch",purchase,1.0,0 -17530772,"Music Creator 6 Touch",play,23.0,0 -17530772,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -17530772,"Resident Evil 6 / Biohazard 6",play,22.0,0 -17530772,"Middle-earth Shadow of Mordor",purchase,1.0,0 -17530772,"Middle-earth Shadow of Mordor",play,22.0,0 -17530772,"Mass Effect",purchase,1.0,0 -17530772,"Mass Effect",play,22.0,0 -17530772,"Kerbal Space Program",purchase,1.0,0 -17530772,"Kerbal Space Program",play,22.0,0 -17530772,"GRID",purchase,1.0,0 -17530772,"GRID",play,21.0,0 -17530772,"Dying Light",purchase,1.0,0 -17530772,"Dying Light",play,20.0,0 -17530772,"Overlord",purchase,1.0,0 -17530772,"Overlord",play,19.9,0 -17530772,"The Walking Dead",purchase,1.0,0 -17530772,"The Walking Dead",play,19.8,0 -17530772,"BioShock Infinite",purchase,1.0,0 -17530772,"BioShock Infinite",play,19.7,0 -17530772,"Chivalry Medieval Warfare",purchase,1.0,0 -17530772,"Chivalry Medieval Warfare",play,19.5,0 -17530772,"PAYDAY 2",purchase,1.0,0 -17530772,"PAYDAY 2",play,19.2,0 -17530772,"Fallout New Vegas",purchase,1.0,0 -17530772,"Fallout New Vegas",play,18.7,0 -17530772,"Tropico 4",purchase,1.0,0 -17530772,"Tropico 4",play,18.7,0 -17530772,"State of Decay",purchase,1.0,0 -17530772,"State of Decay",play,18.5,0 -17530772,"Tropico 3 Absolute Power",purchase,1.0,0 -17530772,"Tropico 3 Absolute Power",play,18.2,0 -17530772,"Max Payne 3",purchase,1.0,0 -17530772,"Max Payne 3",play,18.0,0 -17530772,"Mortal Kombat X",purchase,1.0,0 -17530772,"Mortal Kombat X",play,17.5,0 -17530772,"Magic The Gathering - Duels of the Planeswalkers 2013",purchase,1.0,0 -17530772,"Magic The Gathering - Duels of the Planeswalkers 2013",play,17.5,0 -17530772,"Saints Row IV",purchase,1.0,0 -17530772,"Saints Row IV",play,17.4,0 -17530772,"L.A. Noire",purchase,1.0,0 -17530772,"L.A. Noire",play,17.0,0 -17530772,"Rayman Origins",purchase,1.0,0 -17530772,"Rayman Origins",play,16.9,0 -17530772,"Batman Arkham City",purchase,1.0,0 -17530772,"Batman Arkham City",play,15.4,0 -17530772,"Amnesia The Dark Descent",purchase,1.0,0 -17530772,"Amnesia The Dark Descent",play,14.7,0 -17530772,"Arma 2 Operation Arrowhead",purchase,1.0,0 -17530772,"Arma 2 Operation Arrowhead",play,14.7,0 -17530772,"Mortal Kombat Komplete Edition",purchase,1.0,0 -17530772,"Mortal Kombat Komplete Edition",play,14.6,0 -17530772,"Saints Row The Third",purchase,1.0,0 -17530772,"Saints Row The Third",play,14.3,0 -17530772,"Metro 2033",purchase,1.0,0 -17530772,"Metro 2033",play,13.8,0 -17530772,"South Park The Stick of Truth",purchase,1.0,0 -17530772,"South Park The Stick of Truth",play,13.0,0 -17530772,"DiRT 3",purchase,1.0,0 -17530772,"DiRT 3",play,12.9,0 -17530772,"Total War SHOGUN 2",purchase,1.0,0 -17530772,"Total War SHOGUN 2",play,12.8,0 -17530772,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -17530772,"Batman Arkham Asylum GOTY Edition",play,12.6,0 -17530772,"Empire Total War",purchase,1.0,0 -17530772,"Empire Total War",play,12.2,0 -17530772,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -17530772,"Tom Clancy's Splinter Cell Conviction",play,12.2,0 -17530772,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -17530772,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,12.1,0 -17530772,"Metro Last Light",purchase,1.0,0 -17530772,"Metro Last Light",play,12.0,0 -17530772,"Wolfenstein The New Order",purchase,1.0,0 -17530772,"Wolfenstein The New Order",play,11.9,0 -17530772,"The Wolf Among Us",purchase,1.0,0 -17530772,"The Wolf Among Us",play,11.7,0 -17530772,"Magic The Gathering Duels of the Planeswalkers 2012",purchase,1.0,0 -17530772,"Magic The Gathering Duels of the Planeswalkers 2012",play,11.7,0 -17530772,"DRAGON BALL XENOVERSE",purchase,1.0,0 -17530772,"DRAGON BALL XENOVERSE",play,11.6,0 -17530772,"Killing Floor",purchase,1.0,0 -17530772,"Killing Floor",play,11.5,0 -17530772,"Tomb Raider",purchase,1.0,0 -17530772,"Tomb Raider",play,11.4,0 -17530772,"Company of Heroes Opposing Fronts",purchase,1.0,0 -17530772,"Company of Heroes Opposing Fronts",play,11.3,0 -17530772,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -17530772,"RollerCoaster Tycoon 3 Platinum!",play,11.2,0 -17530772,"Trine 2",purchase,1.0,0 -17530772,"Trine 2",play,11.0,0 -17530772,"Sid Meier's Civilization V",purchase,1.0,0 -17530772,"Sid Meier's Civilization V",play,10.8,0 -17530772,"Dead Space 2",purchase,1.0,0 -17530772,"Dead Space 2",play,10.7,0 -17530772,"Ghostbusters The Video Game",purchase,1.0,0 -17530772,"Ghostbusters The Video Game",play,10.7,0 -17530772,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -17530772,"THE KING OF FIGHTERS XIII STEAM EDITION",play,10.4,0 -17530772,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -17530772,"Resident Evil 5 / Biohazard 5",play,10.3,0 -17530772,"Alice Madness Returns",purchase,1.0,0 -17530772,"Alice Madness Returns",play,9.8,0 -17530772,"Majesty 2",purchase,1.0,0 -17530772,"Majesty 2",play,9.8,0 -17530772,"Portal 2",purchase,1.0,0 -17530772,"Portal 2",play,9.6,0 -17530772,"RAGE",purchase,1.0,0 -17530772,"RAGE",play,9.5,0 -17530772,"Call of Duty World at War",purchase,1.0,0 -17530772,"Call of Duty World at War",play,9.5,0 -17530772,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -17530772,"Call of Duty Black Ops II - Multiplayer",play,9.3,0 -17530772,"The Walking Dead Season Two",purchase,1.0,0 -17530772,"The Walking Dead Season Two",play,9.2,0 -17530772,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -17530772,"Rising Storm/Red Orchestra 2 Multiplayer",play,9.2,0 -17530772,"Duke Nukem Forever",purchase,1.0,0 -17530772,"Duke Nukem Forever",play,9.1,0 -17530772,"Trials Evolution Gold Edition",purchase,1.0,0 -17530772,"Trials Evolution Gold Edition",play,9.0,0 -17530772,"Street Fighter IV",purchase,1.0,0 -17530772,"Street Fighter IV",play,8.9,0 -17530772,"The Four Kings Casino and Slots",purchase,1.0,0 -17530772,"The Four Kings Casino and Slots",play,8.8,0 -17530772,"Sonic Generations",purchase,1.0,0 -17530772,"Sonic Generations",play,8.7,0 -17530772,"Penumbra Overture",purchase,1.0,0 -17530772,"Penumbra Overture",play,8.4,0 -17530772,"Cry of Fear",purchase,1.0,0 -17530772,"Cry of Fear",play,8.3,0 -17530772,"Aliens vs. Predator",purchase,1.0,0 -17530772,"Aliens vs. Predator",play,8.0,0 -17530772,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -17530772,"Medal of Honor(TM) Multiplayer",play,8.0,0 -17530772,"Outlast",purchase,1.0,0 -17530772,"Outlast",play,7.5,0 -17530772,"Hitman Absolution",purchase,1.0,0 -17530772,"Hitman Absolution",play,7.2,0 -17530772,"Grow Home",purchase,1.0,0 -17530772,"Grow Home",play,7.1,0 -17530772,"Rayman Legends",purchase,1.0,0 -17530772,"Rayman Legends",play,6.8,0 -17530772,"Call of Duty Modern Warfare 2",purchase,1.0,0 -17530772,"Call of Duty Modern Warfare 2",play,6.7,0 -17530772,"resident evil 4 / biohazard 4",purchase,1.0,0 -17530772,"resident evil 4 / biohazard 4",play,6.4,0 -17530772,"Medal of Honor(TM) Single Player",purchase,1.0,0 -17530772,"Medal of Honor(TM) Single Player",play,6.1,0 -17530772,"Alan Wake",purchase,1.0,0 -17530772,"Alan Wake",play,6.0,0 -17530772,"Dead Rising 2",purchase,1.0,0 -17530772,"Dead Rising 2",play,5.6,0 -17530772,"Garry's Mod",purchase,1.0,0 -17530772,"Garry's Mod",play,5.3,0 -17530772,"The Forest",purchase,1.0,0 -17530772,"The Forest",play,5.2,0 -17530772,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",purchase,1.0,0 -17530772,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",play,5.0,0 -17530772,"Dead Space",purchase,1.0,0 -17530772,"Dead Space",play,5.0,0 -17530772,"Amnesia A Machine for Pigs",purchase,1.0,0 -17530772,"Amnesia A Machine for Pigs",play,5.0,0 -17530772,"Serious Sam 3 BFE",purchase,1.0,0 -17530772,"Serious Sam 3 BFE",play,4.9,0 -17530772,"Grand Theft Auto Vice City",purchase,1.0,0 -17530772,"Grand Theft Auto Vice City",play,4.8,0 -17530772,"Stronghold 3",purchase,1.0,0 -17530772,"Stronghold 3",play,4.7,0 -17530772,"Tom Clancy's Rainbow Six Vegas 2",purchase,1.0,0 -17530772,"Tom Clancy's Rainbow Six Vegas 2",play,4.7,0 -17530772,"Borderlands 2",purchase,1.0,0 -17530772,"Borderlands 2",play,4.4,0 -17530772,"Warhammer 40,000 Space Marine",purchase,1.0,0 -17530772,"Warhammer 40,000 Space Marine",play,4.4,0 -17530772,"Virtua Tennis 4",purchase,1.0,0 -17530772,"Virtua Tennis 4",play,4.4,0 -17530772,"Goat Simulator",purchase,1.0,0 -17530772,"Goat Simulator",play,4.3,0 -17530772,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -17530772,"Call of Duty 4 Modern Warfare",play,4.3,0 -17530772,"BRINK",purchase,1.0,0 -17530772,"BRINK",play,4.0,0 -17530772,"Silent Hill Homecoming",purchase,1.0,0 -17530772,"Silent Hill Homecoming",play,4.0,0 -17530772,"Bulletstorm",purchase,1.0,0 -17530772,"Bulletstorm",play,3.9,0 -17530772,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -17530772,"Back to the Future Ep 1 - It's About Time",play,3.5,0 -17530772,"RIFT",purchase,1.0,0 -17530772,"RIFT",play,3.5,0 -17530772,"Grand Theft Auto San Andreas",purchase,1.0,0 -17530772,"Grand Theft Auto San Andreas",play,3.5,0 -17530772,"Half-Life 2",purchase,1.0,0 -17530772,"Half-Life 2",play,3.2,0 -17530772,"Medal of Honor Airborne",purchase,1.0,0 -17530772,"Medal of Honor Airborne",play,3.1,0 -17530772,"Anno 2070",purchase,1.0,0 -17530772,"Anno 2070",play,3.1,0 -17530772,"Alien Isolation",purchase,1.0,0 -17530772,"Alien Isolation",play,3.1,0 -17530772,"Tomb Raider Underworld",purchase,1.0,0 -17530772,"Tomb Raider Underworld",play,3.0,0 -17530772,"Need for Speed Hot Pursuit",purchase,1.0,0 -17530772,"Need for Speed Hot Pursuit",play,3.0,0 -17530772,"Deus Ex Human Revolution",purchase,1.0,0 -17530772,"Deus Ex Human Revolution",play,2.9,0 -17530772,"F.E.A.R. 3",purchase,1.0,0 -17530772,"F.E.A.R. 3",play,2.8,0 -17530772,"Tony Hawk's Pro Skater HD",purchase,1.0,0 -17530772,"Tony Hawk's Pro Skater HD",play,2.8,0 -17530772,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -17530772,"Call of Duty Black Ops II - Zombies",play,2.6,0 -17530772,"The Stanley Parable",purchase,1.0,0 -17530772,"The Stanley Parable",play,2.5,0 -17530772,"Tom Clancy's Splinter Cell Chaos Theory",purchase,1.0,0 -17530772,"Tom Clancy's Splinter Cell Chaos Theory",play,2.4,0 -17530772,"Dead Island Riptide",purchase,1.0,0 -17530772,"Dead Island Riptide",play,2.1,0 -17530772,"Rust",purchase,1.0,0 -17530772,"Rust",play,2.1,0 -17530772,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -17530772,"Unreal Tournament 3 Black Edition",play,2.1,0 -17530772,"Company of Heroes 2",purchase,1.0,0 -17530772,"Company of Heroes 2",play,2.1,0 -17530772,"Subnautica",purchase,1.0,0 -17530772,"Subnautica",play,2.0,0 -17530772,"Road Redemption",purchase,1.0,0 -17530772,"Road Redemption",play,2.0,0 -17530772,"SOMA",purchase,1.0,0 -17530772,"SOMA",play,1.8,0 -17530772,"Fable - The Lost Chapters",purchase,1.0,0 -17530772,"Fable - The Lost Chapters",play,1.8,0 -17530772,"Dota 2",purchase,1.0,0 -17530772,"Dota 2",play,1.7,0 -17530772,"Sniper Elite 3",purchase,1.0,0 -17530772,"Sniper Elite 3",play,1.7,0 -17530772,"Kentucky Route Zero",purchase,1.0,0 -17530772,"Kentucky Route Zero",play,1.6,0 -17530772,"Lucius",purchase,1.0,0 -17530772,"Lucius",play,1.5,0 -17530772,"Half-Life 2 Lost Coast",purchase,1.0,0 -17530772,"Half-Life 2 Lost Coast",play,1.5,0 -17530772,"Albino Lullaby Episode 1",purchase,1.0,0 -17530772,"Albino Lullaby Episode 1",play,1.5,0 -17530772,"Might & Magic Heroes VI",purchase,1.0,0 -17530772,"Might & Magic Heroes VI",play,1.4,0 -17530772,"Call of Duty Modern Warfare 3",purchase,1.0,0 -17530772,"Call of Duty Modern Warfare 3",play,1.4,0 -17530772,"Dishonored",purchase,1.0,0 -17530772,"Dishonored",play,1.4,0 -17530772,"Command and Conquer Red Alert 3",purchase,1.0,0 -17530772,"Command and Conquer Red Alert 3",play,1.4,0 -17530772,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -17530772,"S.T.A.L.K.E.R. Call of Pripyat",play,1.4,0 -17530772,"Sir, You Are Being Hunted",purchase,1.0,0 -17530772,"Sir, You Are Being Hunted",play,1.2,0 -17530772,"Worms Armageddon",purchase,1.0,0 -17530772,"Worms Armageddon",play,1.2,0 -17530772,"Trine",purchase,1.0,0 -17530772,"Trine",play,1.1,0 -17530772,"Max Payne",purchase,1.0,0 -17530772,"Max Payne",play,1.0,0 -17530772,"Magicka 2",purchase,1.0,0 -17530772,"Magicka 2",play,0.9,0 -17530772,"The Darkness II",purchase,1.0,0 -17530772,"The Darkness II",play,0.9,0 -17530772,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -17530772,"Resident Evil Revelations / Biohazard Revelations",play,0.9,0 -17530772,"PAYDAY The Heist",purchase,1.0,0 -17530772,"PAYDAY The Heist",play,0.8,0 -17530772,"The Hat Man Shadow Ward",purchase,1.0,0 -17530772,"The Hat Man Shadow Ward",play,0.7,0 -17530772,"Spec Ops The Line",purchase,1.0,0 -17530772,"Spec Ops The Line",play,0.7,0 -17530772,"Age of Empires III Complete Collection",purchase,1.0,0 -17530772,"Age of Empires III Complete Collection",play,0.6,0 -17530772,"Overlord II",purchase,1.0,0 -17530772,"Overlord II",play,0.6,0 -17530772,"Dead Realm",purchase,1.0,0 -17530772,"Dead Realm",play,0.6,0 -17530772,"Blur",purchase,1.0,0 -17530772,"Blur",play,0.6,0 -17530772,"Counter-Strike Source",purchase,1.0,0 -17530772,"Counter-Strike Source",play,0.6,0 -17530772,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -17530772,"Warhammer 40,000 Dawn of War II Retribution",play,0.6,0 -17530772,"Alan Wake's American Nightmare",purchase,1.0,0 -17530772,"Alan Wake's American Nightmare",play,0.6,0 -17530772,"YOU DON'T KNOW JACK Vol. 1 XL",purchase,1.0,0 -17530772,"YOU DON'T KNOW JACK Vol. 1 XL",play,0.5,0 -17530772,"Grand Theft Auto III",purchase,1.0,0 -17530772,"Grand Theft Auto III",play,0.5,0 -17530772,"Five Nights at Freddy's 4",purchase,1.0,0 -17530772,"Five Nights at Freddy's 4",play,0.5,0 -17530772,"DiRT Showdown",purchase,1.0,0 -17530772,"DiRT Showdown",play,0.5,0 -17530772,"PlanetSide 2",purchase,1.0,0 -17530772,"PlanetSide 2",play,0.5,0 -17530772,"ArcaniA",purchase,1.0,0 -17530772,"ArcaniA",play,0.5,0 -17530772,"Half-Life Blue Shift",purchase,1.0,0 -17530772,"Half-Life Blue Shift",play,0.5,0 -17530772,"DOOM 3",purchase,1.0,0 -17530772,"DOOM 3",play,0.4,0 -17530772,"Supreme Commander",purchase,1.0,0 -17530772,"Supreme Commander",play,0.4,0 -17530772,"SimCity 4 Deluxe",purchase,1.0,0 -17530772,"SimCity 4 Deluxe",play,0.4,0 -17530772,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -17530772,"Grand Theft Auto Episodes from Liberty City",play,0.4,0 -17530772,"Batman Arkham Origins",purchase,1.0,0 -17530772,"Batman Arkham Origins",play,0.4,0 -17530772,"Painkiller Hell & Damnation",purchase,1.0,0 -17530772,"Painkiller Hell & Damnation",play,0.3,0 -17530772,"FlatOut 2",purchase,1.0,0 -17530772,"FlatOut 2",play,0.3,0 -17530772,"Red Faction Armageddon",purchase,1.0,0 -17530772,"Red Faction Armageddon",play,0.3,0 -17530772,"Men of War Assault Squad",purchase,1.0,0 -17530772,"Men of War Assault Squad",play,0.3,0 -17530772,"Commandos 3 Destination Berlin",purchase,1.0,0 -17530772,"Commandos 3 Destination Berlin",play,0.3,0 -17530772,"The Ultimate DOOM",purchase,1.0,0 -17530772,"The Ultimate DOOM",play,0.3,0 -17530772,"Leo's Fortune",purchase,1.0,0 -17530772,"Leo's Fortune",play,0.3,0 -17530772,"Stealth Bastard Deluxe",purchase,1.0,0 -17530772,"Stealth Bastard Deluxe",play,0.3,0 -17530772,"Napoleon Total War",purchase,1.0,0 -17530772,"Napoleon Total War",play,0.2,0 -17530772,"YOU DON'T KNOW JACK Vol. 2",purchase,1.0,0 -17530772,"YOU DON'T KNOW JACK Vol. 2",play,0.2,0 -17530772,"The Long Dark",purchase,1.0,0 -17530772,"The Long Dark",play,0.2,0 -17530772,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -17530772,"Max Payne 2 The Fall of Max Payne",play,0.2,0 -17530772,"Team Fortress 2",purchase,1.0,0 -17530772,"Team Fortress 2",play,0.2,0 -17530772,"The Binding of Isaac",purchase,1.0,0 -17530772,"The Binding of Isaac",play,0.2,0 -17530772,"Haunted Memories",purchase,1.0,0 -17530772,"Haunted Memories",play,0.2,0 -17530772,"Keep Talking and Nobody Explodes",purchase,1.0,0 -17530772,"Keep Talking and Nobody Explodes",play,0.2,0 -17530772,"Half-Life 2 Episode Two",purchase,1.0,0 -17530772,"Half-Life 2 Episode Two",play,0.1,0 -17530772,"Thief 2",purchase,1.0,0 -17530772,"Thief 2",play,0.1,0 -17530772,"Red Faction",purchase,1.0,0 -17530772,"DOOM 3 Resurrection of Evil",purchase,1.0,0 -17530772,"Half-Life",purchase,1.0,0 -17530772,"Hitman Blood Money",purchase,1.0,0 -17530772,"Grand Theft Auto",purchase,1.0,0 -17530772,"YOU DON'T KNOW JACK MOVIES",purchase,1.0,0 -17530772,"Surgeon Simulator",purchase,1.0,0 -17530772,"Master Levels for DOOM II",purchase,1.0,0 -17530772,"Arma 2 Private Military Company",purchase,1.0,0 -17530772,"Arma 2 British Armed Forces",purchase,1.0,0 -17530772,"Grand Theft Auto 2",purchase,1.0,0 -17530772,"Thief Gold",purchase,1.0,0 -17530772,"Supreme Commander Forged Alliance",purchase,1.0,0 -17530772,"DOOM II Hell on Earth",purchase,1.0,0 -17530772,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -17530772,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -17530772,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -17530772,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -17530772,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -17530772,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -17530772,"Batman Arkham City GOTY",purchase,1.0,0 -17530772,"BioShock",purchase,1.0,0 -17530772,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -17530772,"Cakewalk Loop Manager",purchase,1.0,0 -17530772,"Cakewalk Sound Center",purchase,1.0,0 -17530772,"Call of Duty Black Ops II",purchase,1.0,0 -17530772,"Call of Duty Modern Warfare 2 Stimulus Package",purchase,1.0,0 -17530772,"Company of Heroes (New Steam Version)",purchase,1.0,0 -17530772,"Counter-Strike",purchase,1.0,0 -17530772,"DARK SOULS II - Season Pass",purchase,1.0,0 -17530772,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -17530772,"Day of Defeat",purchase,1.0,0 -17530772,"Deathmatch Classic",purchase,1.0,0 -17530772,"Deus Ex Game of the Year Edition",purchase,1.0,0 -17530772,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -17530772,"Deus Ex Invisible War",purchase,1.0,0 -17530772,"DiRT 3 Complete Edition",purchase,1.0,0 -17530772,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -17530772,"Enclave",purchase,1.0,0 -17530772,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -17530772,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -17530772,"Final DOOM",purchase,1.0,0 -17530772,"Football Manager 2009",purchase,1.0,0 -17530772,"From Dust",purchase,1.0,0 -17530772,"Grand Theft Auto San Andreas",purchase,1.0,0 -17530772,"Grand Theft Auto Vice City",purchase,1.0,0 -17530772,"Grand Theft Auto III",purchase,1.0,0 -17530772,"H1Z1 Test Server",purchase,1.0,0 -17530772,"Half-Life 2 Deathmatch",purchase,1.0,0 -17530772,"Half-Life Opposing Force",purchase,1.0,0 -17530772,"Half-Life Source",purchase,1.0,0 -17530772,"Half-Life Deathmatch Source",purchase,1.0,0 -17530772,"Hitman 2 Silent Assassin",purchase,1.0,0 -17530772,"Hitman Codename 47",purchase,1.0,0 -17530772,"Hitman Sniper Challenge",purchase,1.0,0 -17530772,"Magicka Party Robes",purchase,1.0,0 -17530772,"Magicka Vietnam",purchase,1.0,0 -17530772,"Magicka Wizard's Survival Kit",purchase,1.0,0 -17530772,"Medal of Honor Pre-Order",purchase,1.0,0 -17530772,"Medieval II Total War",purchase,1.0,0 -17530772,"Medieval II Total War Kingdoms",purchase,1.0,0 -17530772,"Outlast Whistleblower DLC",purchase,1.0,0 -17530772,"Overlord Raising Hell",purchase,1.0,0 -17530772,"Patch testing for Chivalry",purchase,1.0,0 -17530772,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -17530772,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -17530772,"Return to Castle Wolfenstein",purchase,1.0,0 -17530772,"Ricochet",purchase,1.0,0 -17530772,"Rome Total War",purchase,1.0,0 -17530772,"Rome Total War - Alexander",purchase,1.0,0 -17530772,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -17530772,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -17530772,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -17530772,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -17530772,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -17530772,"State of Decay - Breakdown",purchase,1.0,0 -17530772,"State of Decay - Lifeline",purchase,1.0,0 -17530772,"Stronghold 2",purchase,1.0,0 -17530772,"Stronghold Crusader Extreme HD",purchase,1.0,0 -17530772,"Stronghold Crusader HD",purchase,1.0,0 -17530772,"Stronghold HD",purchase,1.0,0 -17530772,"Stronghold Legends",purchase,1.0,0 -17530772,"Team Fortress Classic",purchase,1.0,0 -17530772,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -17530772,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -17530772,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -17530772,"Thief Deadly Shadows",purchase,1.0,0 -17530772,"Tomb Raider I",purchase,1.0,0 -17530772,"Tomb Raider II",purchase,1.0,0 -17530772,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -17530772,"XCOM Enemy Unknown",purchase,1.0,0 -17530772,"Yet Another Zombie Defense",purchase,1.0,0 -17530772,"YOU DON'T KNOW JACK HEADRUSH",purchase,1.0,0 -17530772,"YOU DON'T KNOW JACK SPORTS",purchase,1.0,0 -17530772,"YOU DON'T KNOW JACK TELEVISION",purchase,1.0,0 -17530772,"YOU DON'T KNOW JACK Vol. 3",purchase,1.0,0 -17530772,"YOU DON'T KNOW JACK Vol. 4 The Ride",purchase,1.0,0 -17530772,"Z3TA+ 2",purchase,1.0,0 -56973040,"Call of Duty Modern Warfare 2",purchase,1.0,0 -56973040,"Call of Duty Modern Warfare 2",play,54.0,0 -56973040,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -56973040,"Call of Duty Modern Warfare 2 - Multiplayer",play,2.1,0 -286178286,"Dota 2",purchase,1.0,0 -286178286,"Dota 2",play,2.4,0 -138681278,"Dota 2",purchase,1.0,0 -138681278,"Dota 2",play,7.0,0 -60074997,"Lost Planet 3",purchase,1.0,0 -60074997,"Lost Planet 3",play,18.1,0 -60074997,"DmC Devil May Cry",purchase,1.0,0 -60074997,"DmC Devil May Cry",play,10.3,0 -60074997,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -60074997,"Call of Duty Modern Warfare 2 - Multiplayer",play,7.0,0 -60074997,"Call of Duty Modern Warfare 2",purchase,1.0,0 -60074997,"Call of Duty Modern Warfare 2",play,5.9,0 -195750181,"Unturned",purchase,1.0,0 -195750181,"Unturned",play,15.4,0 -195750181,"War of the Roses",purchase,1.0,0 -195750181,"War Thunder",purchase,1.0,0 -136271892,"Sid Meier's Civilization IV",purchase,1.0,0 -136271892,"Sid Meier's Civilization IV",play,0.7,0 -136271892,"Sid Meier's Civilization IV",purchase,1.0,0 -115472935,"Dota 2",purchase,1.0,0 -115472935,"Dota 2",play,38.0,0 -115472935,"Archeblade",purchase,1.0,0 -115472935,"Archeblade",play,1.7,0 -41465526,"Dota 2",purchase,1.0,0 -41465526,"Dota 2",play,2.4,0 -197571337,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -197571337,"Tom Clancy's Ghost Recon Phantoms - EU",play,115.0,0 -197571337,"MicroVolts Surge",purchase,1.0,0 -197571337,"MicroVolts Surge",play,4.0,0 -197571337,"Counter-Strike Nexon Zombies",purchase,1.0,0 -197571337,"Counter-Strike Nexon Zombies",play,1.2,0 -197571337,"PlanetSide 2",purchase,1.0,0 -197571337,"PlanetSide 2",play,1.0,0 -197571337,"Magicka Wizard Wars",purchase,1.0,0 -197571337,"Magicka Wizard Wars",play,0.6,0 -197571337,"Dirty Bomb",purchase,1.0,0 -197571337,"Dirty Bomb",play,0.3,0 -94335638,"The Elder Scrolls V Skyrim",purchase,1.0,0 -94335638,"The Elder Scrolls V Skyrim",play,149.0,0 -94335638,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -94335638,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -94335638,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -172237313,"Dota 2",purchase,1.0,0 -172237313,"Dota 2",play,2.6,0 -95780749,"Goat Simulator",purchase,1.0,0 -95780749,"Goat Simulator",play,18.4,0 -95780749,"Terraria",purchase,1.0,0 -95780749,"Terraria",play,7.7,0 -95780749,"Life Is Strange",purchase,1.0,0 -95780749,"Life Is Strange",play,5.3,0 -95780749,"SimCity 4 Deluxe",purchase,1.0,0 -95780749,"SimCity 4 Deluxe",play,4.5,0 -95780749,"LIMBO",purchase,1.0,0 -95780749,"LIMBO",play,3.9,0 -95780749,"Team Fortress 2",purchase,1.0,0 -95780749,"Team Fortress 2",play,1.9,0 -95780749,"To the Moon",purchase,1.0,0 -95780749,"To the Moon",play,1.7,0 -95780749,"60 Seconds!",purchase,1.0,0 -95780749,"60 Seconds!",play,1.6,0 -95780749,"CreaVures",purchase,1.0,0 -95780749,"CreaVures",play,1.6,0 -95780749,"Orcs Must Die! 2",purchase,1.0,0 -95780749,"Orcs Must Die! 2",play,1.1,0 -95780749,"Surgeon Simulator",purchase,1.0,0 -95780749,"Surgeon Simulator",play,0.7,0 -95780749,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -95780749,"Plants vs. Zombies Game of the Year",play,0.5,0 -95780749,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -95780749,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",play,0.4,0 -95780749,"Spooky's House of Jump Scares",purchase,1.0,0 -95780749,"Spooky's House of Jump Scares",play,0.2,0 -95780749,"Five Nights at Freddy's",purchase,1.0,0 -95780749,"Five Nights at Freddy's",play,0.2,0 -95780749,"Amnesia The Dark Descent",purchase,1.0,0 -95780749,"Cities in Motion 2",purchase,1.0,0 -95780749,"Don't Starve",purchase,1.0,0 -95780749,"Don't Starve Reign of Giants",purchase,1.0,0 -95780749,"Don't Starve Together Beta",purchase,1.0,0 -95780749,"Garry's Mod",purchase,1.0,0 -95780749,"HOARD",purchase,1.0,0 -95780749,"Joe Danger 2 The Movie",purchase,1.0,0 -95780749,"Magicka",purchase,1.0,0 -95780749,"Magicka Vietnam",purchase,1.0,0 -95780749,"Natural Selection 2",purchase,1.0,0 -95780749,"Orcs Must Die!",purchase,1.0,0 -95780749,"Papo & Yo",purchase,1.0,0 -95780749,"Reus",purchase,1.0,0 -95780749,"Sanctum",purchase,1.0,0 -95780749,"Sanctum 2",purchase,1.0,0 -95780749,"Serious Sam 3 BFE",purchase,1.0,0 -95780749,"Strike Suit Zero",purchase,1.0,0 -95780749,"Toki Tori 2+",purchase,1.0,0 -119675419,"Team Fortress 2",purchase,1.0,0 -119675419,"Team Fortress 2",play,133.0,0 -179321212,"Dota 2",purchase,1.0,0 -179321212,"Dota 2",play,0.5,0 -95472968,"Sword of the Stars II Enhanced Edition",purchase,1.0,0 -95472968,"Sword of the Stars II Enhanced Edition",play,118.0,0 -298873670,"ARK Survival Evolved",purchase,1.0,0 -298873670,"ARK Survival Evolved",play,5.5,0 -121133260,"Call of Duty Black Ops III",purchase,1.0,0 -121133260,"Call of Duty Black Ops III",play,91.0,0 -121133260,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -121133260,"Call of Duty Black Ops - Multiplayer",play,13.4,0 -121133260,"The Elder Scrolls V Skyrim",purchase,1.0,0 -121133260,"The Elder Scrolls V Skyrim",play,7.9,0 -121133260,"Call of Duty Black Ops",purchase,1.0,0 -121133260,"Call of Duty Black Ops",play,7.4,0 -121133260,"Call of Duty World at War",purchase,1.0,0 -121133260,"Call of Duty World at War",play,5.4,0 -121133260,"No More Room in Hell",purchase,1.0,0 -121133260,"No More Room in Hell",play,0.3,0 -121133260,"sZone-Online",purchase,1.0,0 -121133260,"sZone-Online",play,0.2,0 -121133260,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -121133260,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.2,0 -121133260,"Marine Sharpshooter II Jungle Warfare",purchase,1.0,0 -156565178,"ARK Survival Evolved",purchase,1.0,0 -156565178,"ARK Survival Evolved",play,50.0,0 -156565178,"Fallout 4",purchase,1.0,0 -156565178,"Fallout 4",play,41.0,0 -156565178,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -156565178,"METAL GEAR SOLID V THE PHANTOM PAIN",play,35.0,0 -156565178,"Borderlands 2",purchase,1.0,0 -156565178,"Borderlands 2",play,33.0,0 -156565178,"Pro Evolution Soccer 2015",purchase,1.0,0 -156565178,"Pro Evolution Soccer 2015",play,31.0,0 -156565178,"The Elder Scrolls V Skyrim",purchase,1.0,0 -156565178,"The Elder Scrolls V Skyrim",play,24.0,0 -156565178,"Valkyria Chronicles",purchase,1.0,0 -156565178,"Valkyria Chronicles",play,21.0,0 -156565178,"Middle-earth Shadow of Mordor",purchase,1.0,0 -156565178,"Middle-earth Shadow of Mordor",play,18.6,0 -156565178,"DARK SOULS II",purchase,1.0,0 -156565178,"DARK SOULS II",play,14.0,0 -156565178,"XCOM Enemy Unknown",purchase,1.0,0 -156565178,"XCOM Enemy Unknown",play,13.1,0 -156565178,"Sid Meier's Civilization V",purchase,1.0,0 -156565178,"Sid Meier's Civilization V",play,12.0,0 -156565178,"PAYDAY 2",purchase,1.0,0 -156565178,"PAYDAY 2",play,11.7,0 -156565178,"Rust",purchase,1.0,0 -156565178,"Rust",play,11.0,0 -156565178,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -156565178,"Deus Ex Human Revolution - Director's Cut",play,9.0,0 -156565178,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -156565178,"STAR WARS Knights of the Old Republic II The Sith Lords",play,8.7,0 -156565178,"Divinity Original Sin",purchase,1.0,0 -156565178,"Divinity Original Sin",play,7.7,0 -156565178,"Garry's Mod",purchase,1.0,0 -156565178,"Garry's Mod",play,7.2,0 -156565178,"Mortal Kombat X",purchase,1.0,0 -156565178,"Mortal Kombat X",play,6.8,0 -156565178,"Hitman Absolution",purchase,1.0,0 -156565178,"Hitman Absolution",play,6.1,0 -156565178,"Prison Architect",purchase,1.0,0 -156565178,"Prison Architect",play,5.7,0 -156565178,"Company of Heroes (New Steam Version)",purchase,1.0,0 -156565178,"Company of Heroes (New Steam Version)",play,4.7,0 -156565178,"L.A. Noire",purchase,1.0,0 -156565178,"L.A. Noire",play,4.7,0 -156565178,"Mark of the Ninja",purchase,1.0,0 -156565178,"Mark of the Ninja",play,4.6,0 -156565178,"Tomb Raider",purchase,1.0,0 -156565178,"Tomb Raider",play,4.4,0 -156565178,"Sleeping Dogs Definitive Edition",purchase,1.0,0 -156565178,"Sleeping Dogs Definitive Edition",play,4.4,0 -156565178,"BioShock Infinite",purchase,1.0,0 -156565178,"BioShock Infinite",play,4.1,0 -156565178,"Batman Arkham City GOTY",purchase,1.0,0 -156565178,"Batman Arkham City GOTY",play,4.0,0 -156565178,"Left 4 Dead 2",purchase,1.0,0 -156565178,"Left 4 Dead 2",play,3.9,0 -156565178,"Sniper Elite V2",purchase,1.0,0 -156565178,"Sniper Elite V2",play,3.7,0 -156565178,"Saints Row IV",purchase,1.0,0 -156565178,"Saints Row IV",play,3.6,0 -156565178,"Thief",purchase,1.0,0 -156565178,"Thief",play,3.5,0 -156565178,"Alpha Protocol",purchase,1.0,0 -156565178,"Alpha Protocol",play,3.2,0 -156565178,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -156565178,"The Witcher 2 Assassins of Kings Enhanced Edition",play,3.2,0 -156565178,"Spec Ops The Line",purchase,1.0,0 -156565178,"Spec Ops The Line",play,3.1,0 -156565178,"Papers, Please",purchase,1.0,0 -156565178,"Papers, Please",play,2.7,0 -156565178,"Total War SHOGUN 2",purchase,1.0,0 -156565178,"Total War SHOGUN 2",play,2.5,0 -156565178,"Batman Arkham Knight",purchase,1.0,0 -156565178,"Batman Arkham Knight",play,2.5,0 -156565178,"Dungeon Defenders",purchase,1.0,0 -156565178,"Dungeon Defenders",play,2.3,0 -156565178,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -156565178,"Kingdoms of Amalur Reckoning",play,2.3,0 -156565178,"BioShock",purchase,1.0,0 -156565178,"BioShock",play,2.2,0 -156565178,"Far Cry 3",purchase,1.0,0 -156565178,"Far Cry 3",play,2.2,0 -156565178,"Wolfenstein The Old Blood ",purchase,1.0,0 -156565178,"Wolfenstein The Old Blood ",play,2.0,0 -156565178,"Company of Heroes 2",purchase,1.0,0 -156565178,"Company of Heroes 2",play,1.9,0 -156565178,"resident evil 4 / biohazard 4",purchase,1.0,0 -156565178,"resident evil 4 / biohazard 4",play,1.8,0 -156565178,"Hotline Miami",purchase,1.0,0 -156565178,"Hotline Miami",play,1.7,0 -156565178,"Star Wars - Battlefront II",purchase,1.0,0 -156565178,"Star Wars - Battlefront II",play,1.6,0 -156565178,"The Forest",purchase,1.0,0 -156565178,"The Forest",play,1.6,0 -156565178,"Mortal Kombat Komplete Edition",purchase,1.0,0 -156565178,"Mortal Kombat Komplete Edition",play,1.5,0 -156565178,"The Walking Dead",purchase,1.0,0 -156565178,"The Walking Dead",play,1.1,0 -156565178,"Don't Starve",purchase,1.0,0 -156565178,"Don't Starve",play,0.9,0 -156565178,"South Park The Stick of Truth",purchase,1.0,0 -156565178,"South Park The Stick of Truth",play,0.9,0 -156565178,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -156565178,"Rising Storm/Red Orchestra 2 Multiplayer",play,0.9,0 -156565178,"Trine 2",purchase,1.0,0 -156565178,"Trine 2",play,0.5,0 -156565178,"Arma 2",purchase,1.0,0 -156565178,"Arma 2",play,0.5,0 -156565178,"Guacamelee! Gold Edition",purchase,1.0,0 -156565178,"Guacamelee! Gold Edition",play,0.5,0 -156565178,"The Darkness II",purchase,1.0,0 -156565178,"The Darkness II",play,0.4,0 -156565178,"Counter-Strike Global Offensive",purchase,1.0,0 -156565178,"Counter-Strike Global Offensive",play,0.4,0 -156565178,"Anomaly Warzone Earth",purchase,1.0,0 -156565178,"Anomaly Warzone Earth",play,0.4,0 -156565178,"Just Cause 2",purchase,1.0,0 -156565178,"Just Cause 2",play,0.4,0 -156565178,"Killing Floor",purchase,1.0,0 -156565178,"Killing Floor",play,0.3,0 -156565178,"Binary Domain",purchase,1.0,0 -156565178,"Binary Domain",play,0.3,0 -156565178,"Arma 2 British Armed Forces",purchase,1.0,0 -156565178,"Arma 2 DayZ Mod",purchase,1.0,0 -156565178,"Arma 2 Operation Arrowhead",purchase,1.0,0 -156565178,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -156565178,"Arma 2 Private Military Company",purchase,1.0,0 -156565178,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -156565178,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -156565178,"Batman Arkham Origins - Initiation",purchase,1.0,0 -156565178,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -156565178,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -156565178,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -156565178,"Batman Arkham Origins",purchase,1.0,0 -156565178,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -156565178,"BioShock 2",purchase,1.0,0 -156565178,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -156565178,"Braid",purchase,1.0,0 -156565178,"Company of Heroes",purchase,1.0,0 -156565178,"Deus Ex Invisible War",purchase,1.0,0 -156565178,"Deus Ex The Fall",purchase,1.0,0 -156565178,"Dishonored",purchase,1.0,0 -156565178,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -156565178,"Don't Starve Together Beta",purchase,1.0,0 -156565178,"FINAL FANTASY XIII",purchase,1.0,0 -156565178,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -156565178,"Hell Yeah!",purchase,1.0,0 -156565178,"Hitman 2 Silent Assassin",purchase,1.0,0 -156565178,"Hitman Blood Money",purchase,1.0,0 -156565178,"Hitman Codename 47",purchase,1.0,0 -156565178,"Hitman Contracts",purchase,1.0,0 -156565178,"Hitman Sniper Challenge",purchase,1.0,0 -156565178,"Just Cause",purchase,1.0,0 -156565178,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -156565178,"Life Is Strange",purchase,1.0,0 -156565178,"Mafia II",purchase,1.0,0 -156565178,"Mark of the Ninja Special Edition DLC",purchase,1.0,0 -156565178,"Medieval II Total War",purchase,1.0,0 -156565178,"Monaco",purchase,1.0,0 -156565178,"MURDERED SOUL SUSPECT",purchase,1.0,0 -156565178,"Oddworld Abe's Oddysee",purchase,1.0,0 -156565178,"Poker Night 2",purchase,1.0,0 -156565178,"Portal 2",purchase,1.0,0 -156565178,"Renegade Ops",purchase,1.0,0 -156565178,"Rome Total War",purchase,1.0,0 -156565178,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -156565178,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -156565178,"Stealth Inc 2",purchase,1.0,0 -156565178,"Terraria",purchase,1.0,0 -156565178,"The Bureau XCOM Declassified",purchase,1.0,0 -156565178,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -156565178,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -156565178,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -156565178,"The Last Remnant",purchase,1.0,0 -156565178,"The Typing of The Dead Overkill",purchase,1.0,0 -156565178,"The Walking Dead Season Two",purchase,1.0,0 -156565178,"The Wolf Among Us",purchase,1.0,0 -156565178,"Thief - Ghost",purchase,1.0,0 -156565178,"Thief - Opportunist",purchase,1.0,0 -156565178,"Thief - Predator",purchase,1.0,0 -156565178,"Thief - The Bank Heist",purchase,1.0,0 -156565178,"Thief Gold",purchase,1.0,0 -156565178,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -156565178,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -156565178,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -156565178,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -156565178,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -156565178,"X-COM Apocalypse",purchase,1.0,0 -156565178,"X-COM Enforcer",purchase,1.0,0 -156565178,"X-COM Interceptor",purchase,1.0,0 -156565178,"X-COM Terror from the Deep",purchase,1.0,0 -156565178,"X-COM UFO Defense",purchase,1.0,0 -156565178,"XCOM Enemy Within",purchase,1.0,0 -245863248,"Counter-Strike Global Offensive",purchase,1.0,0 -245863248,"Counter-Strike Global Offensive",play,545.0,0 -245863248,"Call of Duty World at War",purchase,1.0,0 -245863248,"Call of Duty World at War",play,51.0,0 -245863248,"Arma 3",purchase,1.0,0 -245863248,"Arma 3",play,4.4,0 -245863248,"Aftermath",purchase,1.0,0 -245863248,"Aftermath",play,1.6,0 -245863248,"H1Z1",purchase,1.0,0 -245863248,"H1Z1",play,1.2,0 -245863248,"Insurgency",purchase,1.0,0 -245863248,"Insurgency",play,0.8,0 -245863248,"Reign Of Kings",purchase,1.0,0 -245863248,"Reign Of Kings",play,0.8,0 -245863248,"PAYDAY 2",purchase,1.0,0 -245863248,"PAYDAY 2",play,0.2,0 -245863248,"Blockstorm",purchase,1.0,0 -245863248,"Blockstorm",play,0.2,0 -245863248,"Unturned",purchase,1.0,0 -245863248,"Unturned",play,0.1,0 -245863248,"Clicker Heroes",purchase,1.0,0 -245863248,"Arma 3 Zeus",purchase,1.0,0 -245863248,"Everlasting Summer",purchase,1.0,0 -245863248,"F.E.A.R. Online",purchase,1.0,0 -245863248,"Gear Up",purchase,1.0,0 -245863248,"H1Z1 Test Server",purchase,1.0,0 -245863248,"Magicka Wizard Wars",purchase,1.0,0 -245863248,"No More Room in Hell",purchase,1.0,0 -245863248,"Nosgoth",purchase,1.0,0 -245863248,"War Inc. Battlezone",purchase,1.0,0 -95647760,"Smashball",purchase,1.0,0 -95647760,"Smashball",play,0.1,0 -149009099,"Dota 2",purchase,1.0,0 -149009099,"Dota 2",play,2.7,0 -135966512,"Dota 2",purchase,1.0,0 -135966512,"Dota 2",play,1.2,0 -249056919,"Dota 2",purchase,1.0,0 -249056919,"Dota 2",play,46.0,0 -279223318,"Dota 2",purchase,1.0,0 -279223318,"Dota 2",play,16.7,0 -63810706,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -63810706,"Call of Duty Black Ops II - Multiplayer",play,86.0,0 -63810706,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -63810706,"Call of Duty Black Ops II - Zombies",play,2.8,0 -63810706,"Call of Duty Black Ops II",purchase,1.0,0 -208879416,"Counter-Strike Global Offensive",purchase,1.0,0 -208879416,"Counter-Strike Global Offensive",play,298.0,0 -208879416,"Dota 2",purchase,1.0,0 -208879416,"Dota 2",play,279.0,0 -208879416,"Bloody Trapland",purchase,1.0,0 -208879416,"Bloody Trapland",play,0.7,0 -208879416,"DiggerOnline",purchase,1.0,0 -208879416,"DiggerOnline",play,0.4,0 -208879416,"Kung Fury",purchase,1.0,0 -208879416,"Kung Fury",play,0.2,0 -208879416,"ComaMortuary",purchase,1.0,0 -208879416,"ComaMortuary",play,0.2,0 -208879416,"Counter-Strike Source",purchase,1.0,0 -208879416,"Magicka Wizard Wars",purchase,1.0,0 -208879416,"Archeblade",purchase,1.0,0 -208879416,"Counter-Strike",purchase,1.0,0 -208879416,"Dethroned!",purchase,1.0,0 -208879416,"Heroes & Generals",purchase,1.0,0 -208879416,"All Is Dust",purchase,1.0,0 -208879416,"Card Hunter",purchase,1.0,0 -208879416,"Counter-Strike Condition Zero",purchase,1.0,0 -208879416,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -208879416,"Magic Barrage - Bitferno",purchase,1.0,0 -208879416,"Quake Live",purchase,1.0,0 -208879416,"Robocraft",purchase,1.0,0 -241725931,"Trove",purchase,1.0,0 -241725931,"Trove",play,8.1,0 -241725931,"Unturned",purchase,1.0,0 -241725931,"Unturned",play,7.3,0 -241725931,"Team Fortress 2",purchase,1.0,0 -241725931,"Team Fortress 2",play,0.6,0 -241725931,"Forsaken World ",purchase,1.0,0 -241725931,"Forsaken World ",play,0.3,0 -241725931,"Cry of Fear",purchase,1.0,0 -241725931,"Destination Sol",purchase,1.0,0 -241725931,"Eldevin",purchase,1.0,0 -241725931,"Everlasting Summer",purchase,1.0,0 -241725931,"Path of Exile",purchase,1.0,0 -58551955,"Half-Life 2 Episode One",purchase,1.0,0 -58551955,"Half-Life 2 Episode One",play,8.1,0 -58551955,"Half-Life 2",purchase,1.0,0 -58551955,"Half-Life 2 Episode Two",purchase,1.0,0 -58551955,"Half-Life 2 Lost Coast",purchase,1.0,0 -58551955,"Portal",purchase,1.0,0 -125718224,"Dota 2",purchase,1.0,0 -125718224,"Dota 2",play,68.0,0 -125718224,"Serious Sam HD The Second Encounter",purchase,1.0,0 -125718224,"Serious Sam HD The Second Encounter",play,48.0,0 -125718224,"PAYDAY The Heist",purchase,1.0,0 -125718224,"The Expendabros",purchase,1.0,0 -125718224,"Warface",purchase,1.0,0 -163294758,"Dota 2",purchase,1.0,0 -163294758,"Dota 2",play,33.0,0 -163294758,"Team Fortress 2",purchase,1.0,0 -163294758,"Team Fortress 2",play,1.4,0 -99244433,"Call of Duty Modern Warfare 3",purchase,1.0,0 -99244433,"Call of Duty Modern Warfare 3",play,466.0,0 -99244433,"Spec Ops The Line",purchase,1.0,0 -99244433,"Spec Ops The Line",play,408.0,0 -99244433,"Sniper Elite 3",purchase,1.0,0 -99244433,"Sniper Elite 3",play,315.0,0 -99244433,"Sniper Elite V2",purchase,1.0,0 -99244433,"Sniper Elite V2",play,143.0,0 -99244433,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -99244433,"Call of Duty Modern Warfare 3 - Multiplayer",play,0.2,0 -138200512,"Dota 2",purchase,1.0,0 -138200512,"Dota 2",play,2152.0,0 -229979974,"Dota 2",purchase,1.0,0 -229979974,"Dota 2",play,1.4,0 -223858723,"Pillars of Eternity",purchase,1.0,0 -223858723,"Pillars of Eternity",play,86.0,0 -223858723,"Terraria",purchase,1.0,0 -223858723,"Terraria",play,44.0,0 -223858723,"Trine",purchase,1.0,0 -223858723,"Trine",play,9.5,0 -223858723,"Carmageddon 2 Carpocalypse Now",purchase,1.0,0 -223858723,"Carmageddon 2 Carpocalypse Now",play,7.5,0 -223858723,"Divinity Original Sin",purchase,1.0,0 -223858723,"Divinity Original Sin",play,6.6,0 -223858723,"Torchlight II",purchase,1.0,0 -223858723,"Torchlight II",play,3.0,0 -223858723,"Trine 2",purchase,1.0,0 -223858723,"Trine 2",play,1.4,0 -223858723,"Endless Legend",purchase,1.0,0 -223858723,"Endless Legend",play,0.8,0 -223858723,"Banished",purchase,1.0,0 -223858723,"Banished",play,0.6,0 -223858723,"Let the Cat In",purchase,1.0,0 -223858723,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -223858723,"Frozen Synapse",purchase,1.0,0 -223858723,"LYNE",purchase,1.0,0 -223858723,"Portal",purchase,1.0,0 -223858723,"Portal 2",purchase,1.0,0 -223858723,"Shadowrun Dragonfall",purchase,1.0,0 -223858723,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -223858723,"Shadowrun Hong Kong",purchase,1.0,0 -223858723,"Shadowrun Returns",purchase,1.0,0 -223858723,"Splice",purchase,1.0,0 -223858723,"Torchlight",purchase,1.0,0 -223858723,"To the Moon",purchase,1.0,0 -223858723,"Transistor",purchase,1.0,0 -223858723,"Trine 3 The Artifacts of Power",purchase,1.0,0 -223858723,"XCOM Enemy Unknown",purchase,1.0,0 -119410678,"Metro 2033",purchase,1.0,0 -217276487,"Archeblade",purchase,1.0,0 -217276487,"Archeblade",play,0.4,0 -217276487,"Counter-Strike Nexon Zombies",purchase,1.0,0 -179077731,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -179077731,"Fallout 3 - Game of the Year Edition",play,109.0,0 -179077731,"Counter-Strike Global Offensive",purchase,1.0,0 -179077731,"Counter-Strike Global Offensive",play,85.0,0 -179077731,"Arma 2 Operation Arrowhead",purchase,1.0,0 -179077731,"Arma 2 Operation Arrowhead",play,49.0,0 -179077731,"Arma 2",purchase,1.0,0 -179077731,"Arma 2",play,49.0,0 -179077731,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -179077731,"Half-Life",purchase,1.0,0 -179077731,"Half-Life 2",purchase,1.0,0 -179077731,"Half-Life 2 Deathmatch",purchase,1.0,0 -179077731,"Half-Life 2 Episode One",purchase,1.0,0 -179077731,"Half-Life 2 Episode Two",purchase,1.0,0 -179077731,"Half-Life 2 Lost Coast",purchase,1.0,0 -179077731,"Half-Life Blue Shift",purchase,1.0,0 -179077731,"Half-Life Opposing Force",purchase,1.0,0 -179077731,"Half-Life Source",purchase,1.0,0 -179077731,"Half-Life Deathmatch Source",purchase,1.0,0 -179077731,"Team Fortress Classic",purchase,1.0,0 -307232663,"Dota 2",purchase,1.0,0 -307232663,"Dota 2",play,36.0,0 -290416542,"Dota 2",purchase,1.0,0 -290416542,"Dota 2",play,138.0,0 -217913875,"Dota 2",purchase,1.0,0 -217913875,"Dota 2",play,7.7,0 -247858756,"Dota 2",purchase,1.0,0 -247858756,"Dota 2",play,1.3,0 -247858756,"Nosgoth",purchase,1.0,0 -247858756,"Path of Exile",purchase,1.0,0 -247858756,"TOME Immortal Arena",purchase,1.0,0 -247858756,"War Thunder",purchase,1.0,0 -213720494,"H1Z1",purchase,1.0,0 -213720494,"H1Z1",play,103.0,0 -213720494,"AdVenture Capitalist",purchase,1.0,0 -213720494,"AdVenture Capitalist",play,99.0,0 -213720494,"Counter-Strike Global Offensive",purchase,1.0,0 -213720494,"Counter-Strike Global Offensive",play,52.0,0 -213720494,"Fallout 4",purchase,1.0,0 -213720494,"Fallout 4",play,31.0,0 -213720494,"Sid Meier's Civilization V",purchase,1.0,0 -213720494,"Sid Meier's Civilization V",play,27.0,0 -213720494,"Fallout 3",purchase,1.0,0 -213720494,"Fallout 3",play,6.0,0 -213720494,"Left 4 Dead 2",purchase,1.0,0 -213720494,"Left 4 Dead 2",play,5.8,0 -213720494,"Trove",purchase,1.0,0 -213720494,"Trove",play,0.9,0 -213720494,"Disney Infinity 3.0 Play Without Limits",purchase,1.0,0 -213720494,"Disney Infinity 3.0 Play Without Limits",play,0.6,0 -213720494,"MapleStory",purchase,1.0,0 -213720494,"MapleStory",play,0.6,0 -213720494,"H1Z1 Test Server",purchase,1.0,0 -213720494,"H1Z1 Test Server",play,0.1,0 -213720494,"Block N Load",purchase,1.0,0 -213720494,"Robocraft",purchase,1.0,0 -213720494,"Gear Up",purchase,1.0,0 -213720494,"Unturned",purchase,1.0,0 -213720494,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -213720494,"Counter-Strike Nexon Zombies",purchase,1.0,0 -213720494,"Cry of Fear",purchase,1.0,0 -213720494,"Dirty Bomb",purchase,1.0,0 -213720494,"Echoes+",purchase,1.0,0 -213720494,"Fishing Planet",purchase,1.0,0 -213720494,"Heroes & Generals",purchase,1.0,0 -213720494,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -213720494,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -213720494,"TERA",purchase,1.0,0 -213720494,"theHunter",purchase,1.0,0 -213720494,"The Lord of the Rings Online",purchase,1.0,0 -213720494,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -213720494,"Warface",purchase,1.0,0 -213720494,"Zombies Monsters Robots",purchase,1.0,0 -128285073,"Dota 2",purchase,1.0,0 -128285073,"Dota 2",play,6.2,0 -307038639,"Dota 2",purchase,1.0,0 -307038639,"Dota 2",play,2.5,0 -112584028,"Counter-Strike Global Offensive",purchase,1.0,0 -112584028,"Counter-Strike Global Offensive",play,1.2,0 -52731290,"Baldur's Gate II Enhanced Edition",purchase,1.0,0 -52731290,"Baldur's Gate II Enhanced Edition",play,3898.0,0 -52731290,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -52731290,"Baldur's Gate Enhanced Edition",play,2630.0,0 -52731290,"The Witcher Enhanced Edition",purchase,1.0,0 -52731290,"The Witcher Enhanced Edition",play,1231.0,0 -52731290,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -52731290,"Vampire The Masquerade - Bloodlines",play,556.0,0 -52731290,"XCOM Enemy Unknown",purchase,1.0,0 -52731290,"XCOM Enemy Unknown",play,255.0,0 -52731290,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -52731290,"The Witcher 2 Assassins of Kings Enhanced Edition",play,163.0,0 -52731290,"Medal of Honor Airborne",purchase,1.0,0 -52731290,"Medal of Honor Airborne",play,148.0,0 -52731290,"L.A. Noire",purchase,1.0,0 -52731290,"L.A. Noire",play,98.0,0 -52731290,"Left 4 Dead 2",purchase,1.0,0 -52731290,"Left 4 Dead 2",play,97.0,0 -52731290,"Legend of Grimrock",purchase,1.0,0 -52731290,"Legend of Grimrock",play,73.0,0 -52731290,"Left 4 Dead",purchase,1.0,0 -52731290,"Left 4 Dead",play,44.0,0 -52731290,"Counter-Strike Source",purchase,1.0,0 -52731290,"Counter-Strike Source",play,41.0,0 -52731290,"Dead Space",purchase,1.0,0 -52731290,"Dead Space",play,40.0,0 -52731290,"Killing Floor",purchase,1.0,0 -52731290,"Killing Floor",play,29.0,0 -52731290,"Dead Space 2",purchase,1.0,0 -52731290,"Dead Space 2",play,29.0,0 -52731290,"The Walking Dead",purchase,1.0,0 -52731290,"The Walking Dead",play,18.7,0 -52731290,"Portal 2",purchase,1.0,0 -52731290,"Portal 2",play,14.6,0 -52731290,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -52731290,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,13.0,0 -52731290,"Counter-Strike Global Offensive",purchase,1.0,0 -52731290,"Counter-Strike Global Offensive",play,12.6,0 -52731290,"Portal",purchase,1.0,0 -52731290,"Portal",play,10.4,0 -52731290,"Sniper Elite",purchase,1.0,0 -52731290,"Sniper Elite",play,5.7,0 -52731290,"The Walking Dead Season Two",purchase,1.0,0 -52731290,"The Walking Dead Season Two",play,4.0,0 -52731290,"7 Days to Die",purchase,1.0,0 -52731290,"7 Days to Die",play,3.3,0 -52731290,"No More Room in Hell",purchase,1.0,0 -52731290,"No More Room in Hell",play,1.8,0 -52731290,"Alien Swarm",purchase,1.0,0 -52731290,"Alien Swarm",play,1.5,0 -52731290,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -52731290,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -88612445,"Team Fortress 2",purchase,1.0,0 -88612445,"Team Fortress 2",play,114.0,0 -86898348,"Counter-Strike Source",purchase,1.0,0 -86898348,"Counter-Strike Source",play,2.8,0 -86898348,"Day of Defeat Source",purchase,1.0,0 -86898348,"Half-Life 2 Deathmatch",purchase,1.0,0 -86898348,"Half-Life 2 Lost Coast",purchase,1.0,0 -90962335,"Mafia II",purchase,1.0,0 -90962335,"Mafia II",play,19.7,0 -220680498,"Sid Meier's Civilization V",purchase,1.0,0 -220680498,"Sid Meier's Civilization V",play,31.0,0 -220680498,"Endless Sky",purchase,1.0,0 -220680498,"Endless Sky",play,13.2,0 -220680498,"Time Clickers",purchase,1.0,0 -220680498,"Time Clickers",play,9.0,0 -220680498,"Trove",purchase,1.0,0 -220680498,"Trove",play,8.3,0 -220680498,"Unturned",purchase,1.0,0 -220680498,"Unturned",play,4.5,0 -220680498,"Tap Tap Infinity",purchase,1.0,0 -220680498,"Tap Tap Infinity",play,3.8,0 -220680498,"Path of Exile",purchase,1.0,0 -220680498,"Path of Exile",play,0.9,0 -220680498,"Warframe",purchase,1.0,0 -220680498,"Warframe",play,0.8,0 -220680498,"AdVenture Capitalist",purchase,1.0,0 -220680498,"AdVenture Capitalist",play,0.8,0 -220680498,"Emily is Away",purchase,1.0,0 -220680498,"Emily is Away",play,0.8,0 -220680498,"Card Hunter",purchase,1.0,0 -220680498,"Card Hunter",play,0.8,0 -220680498,"Counter-Strike Global Offensive",purchase,1.0,0 -220680498,"Counter-Strike Global Offensive",play,0.6,0 -220680498,"SMITE",purchase,1.0,0 -220680498,"SMITE",play,0.4,0 -220680498,"Dirty Bomb",purchase,1.0,0 -220680498,"Dirty Bomb",play,0.4,0 -220680498,"Robocraft",purchase,1.0,0 -220680498,"Robocraft",play,0.3,0 -220680498,"Clicker Heroes",purchase,1.0,0 -220680498,"Clicker Heroes",play,0.3,0 -220680498,"Dota 2",purchase,1.0,0 -220680498,"Dota 2",play,0.3,0 -220680498,"Destination Sol",purchase,1.0,0 -220680498,"Destination Sol",play,0.2,0 -220680498,"The Four Kings Casino and Slots",purchase,1.0,0 -220680498,"The Four Kings Casino and Slots",play,0.2,0 -220680498,"Dungeon Defenders II",purchase,1.0,0 -220680498,"Dungeon Defenders II",play,0.1,0 -220680498,"Among Ripples",purchase,1.0,0 -220680498,"Soccer Manager 2015",purchase,1.0,0 -220680498,"Relic Hunters Zero",purchase,1.0,0 -220680498,"Viridi",purchase,1.0,0 -220680498,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -220680498,"Fishing Planet",purchase,1.0,0 -220680498,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -220680498,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -181722972,"Dota 2",purchase,1.0,0 -181722972,"Dota 2",play,1719.0,0 -159549486,"Left 4 Dead 2",purchase,1.0,0 -165584237,"Dota 2",purchase,1.0,0 -165584237,"Dota 2",play,1.6,0 -94962660,"Team Fortress 2",purchase,1.0,0 -94962660,"Team Fortress 2",play,1.7,0 -71809133,"Counter-Strike",purchase,1.0,0 -71809133,"Counter-Strike",play,9.5,0 -71809133,"Day of Defeat",purchase,1.0,0 -71809133,"Counter-Strike Condition Zero",purchase,1.0,0 -71809133,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -71809133,"Deathmatch Classic",purchase,1.0,0 -71809133,"Ricochet",purchase,1.0,0 -288600692,"Dota 2",purchase,1.0,0 -288600692,"Dota 2",play,240.0,0 -297771026,"Dota 2",purchase,1.0,0 -297771026,"Dota 2",play,1.1,0 -201800994,"Unturned",purchase,1.0,0 -201800994,"Unturned",play,7.1,0 -201800994,"Karos",purchase,1.0,0 -201800994,"BLOCKADE 3D",purchase,1.0,0 -293541342,"Dota 2",purchase,1.0,0 -293541342,"Dota 2",play,0.2,0 -143859315,"Dota 2",purchase,1.0,0 -143859315,"Dota 2",play,1.4,0 -257759331,"Counter-Strike",purchase,1.0,0 -257759331,"Counter-Strike",play,12.8,0 -257759331,"Counter-Strike Condition Zero",purchase,1.0,0 -257759331,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -164035963,"Dota 2",purchase,1.0,0 -164035963,"Dota 2",play,1.6,0 -65152385,"Football Manager 2012",purchase,1.0,0 -65152385,"Football Manager 2012",play,2088.0,0 -65152385,"Football Manager 2010",purchase,1.0,0 -65152385,"Football Manager 2010",play,1238.0,0 -65152385,"Batman Arkham City GOTY",purchase,1.0,0 -65152385,"Batman Arkham City GOTY",play,118.0,0 -65152385,"Football Manager 2015",purchase,1.0,0 -65152385,"Football Manager 2015",play,103.0,0 -65152385,"Sid Meier's Civilization IV",purchase,1.0,0 -65152385,"Sid Meier's Civilization IV",play,98.0,0 -65152385,"Grand Theft Auto San Andreas",purchase,1.0,0 -65152385,"Grand Theft Auto San Andreas",play,74.0,0 -65152385,"Counter-Strike Global Offensive",purchase,1.0,0 -65152385,"Counter-Strike Global Offensive",play,43.0,0 -65152385,"Amnesia The Dark Descent",purchase,1.0,0 -65152385,"Amnesia The Dark Descent",play,29.0,0 -65152385,"Portal 2",purchase,1.0,0 -65152385,"Portal 2",play,17.9,0 -65152385,"Left 4 Dead 2",purchase,1.0,0 -65152385,"Left 4 Dead 2",play,17.3,0 -65152385,"Grand Theft Auto San Andreas",purchase,1.0,0 -65152385,"Sid Meier's Civilization IV",purchase,1.0,0 -11940338,"Elite Dangerous",purchase,1.0,0 -11940338,"Elite Dangerous",play,131.0,0 -11940338,"Don't Starve",purchase,1.0,0 -11940338,"Don't Starve",play,52.0,0 -11940338,"Grand Theft Auto V",purchase,1.0,0 -11940338,"Grand Theft Auto V",play,46.0,0 -11940338,"The Witcher 3 Wild Hunt",purchase,1.0,0 -11940338,"The Witcher 3 Wild Hunt",play,45.0,0 -11940338,"Counter-Strike Global Offensive",purchase,1.0,0 -11940338,"Counter-Strike Global Offensive",play,44.0,0 -11940338,"Fallout 4",purchase,1.0,0 -11940338,"Fallout 4",play,39.0,0 -11940338,"Watch_Dogs",purchase,1.0,0 -11940338,"Watch_Dogs",play,37.0,0 -11940338,"H1Z1",purchase,1.0,0 -11940338,"H1Z1",play,35.0,0 -11940338,"Far Cry 4",purchase,1.0,0 -11940338,"Far Cry 4",play,32.0,0 -11940338,"Batman Arkham Knight",purchase,1.0,0 -11940338,"Batman Arkham Knight",play,31.0,0 -11940338,"Terraria",purchase,1.0,0 -11940338,"Terraria",play,30.0,0 -11940338,"Dying Light",purchase,1.0,0 -11940338,"Dying Light",play,26.0,0 -11940338,"Borderlands The Pre-Sequel",purchase,1.0,0 -11940338,"Borderlands The Pre-Sequel",play,23.0,0 -11940338,"DayZ",purchase,1.0,0 -11940338,"DayZ",play,22.0,0 -11940338,"Alien Isolation",purchase,1.0,0 -11940338,"Alien Isolation",play,19.8,0 -11940338,"Evolve",purchase,1.0,0 -11940338,"Evolve",play,15.6,0 -11940338,"Dishonored",purchase,1.0,0 -11940338,"Dishonored",play,15.5,0 -11940338,"Batman Arkham Origins",purchase,1.0,0 -11940338,"Batman Arkham Origins",play,13.6,0 -11940338,"Metro Last Light",purchase,1.0,0 -11940338,"Metro Last Light",play,12.6,0 -11940338,"Dead Island",purchase,1.0,0 -11940338,"Dead Island",play,11.9,0 -11940338,"SOMA",purchase,1.0,0 -11940338,"SOMA",play,11.1,0 -11940338,"ARK Survival Evolved",purchase,1.0,0 -11940338,"ARK Survival Evolved",play,10.5,0 -11940338,"Tomb Raider",purchase,1.0,0 -11940338,"Tomb Raider",play,10.4,0 -11940338,"Alan Wake",purchase,1.0,0 -11940338,"Alan Wake",play,9.6,0 -11940338,"Thief",purchase,1.0,0 -11940338,"Thief",play,9.4,0 -11940338,"Half-Life 2",purchase,1.0,0 -11940338,"Half-Life 2",play,7.5,0 -11940338,"The Stanley Parable",purchase,1.0,0 -11940338,"The Stanley Parable",play,6.6,0 -11940338,"Dirty Bomb",purchase,1.0,0 -11940338,"Dirty Bomb",play,6.1,0 -11940338,"Grow Home",purchase,1.0,0 -11940338,"Grow Home",play,5.2,0 -11940338,"FEZ",purchase,1.0,0 -11940338,"FEZ",play,5.0,0 -11940338,"Natural Selection 2",purchase,1.0,0 -11940338,"Natural Selection 2",play,4.6,0 -11940338,"The Vanishing of Ethan Carter",purchase,1.0,0 -11940338,"The Vanishing of Ethan Carter",play,4.3,0 -11940338,"The Showdown Effect",purchase,1.0,0 -11940338,"The Showdown Effect",play,3.6,0 -11940338,"Absolute Drift",purchase,1.0,0 -11940338,"Absolute Drift",play,3.0,0 -11940338,"Hotline Miami",purchase,1.0,0 -11940338,"Hotline Miami",play,2.6,0 -11940338,"Layers of Fear",purchase,1.0,0 -11940338,"Layers of Fear",play,2.2,0 -11940338,"Among the Sleep",purchase,1.0,0 -11940338,"Among the Sleep",play,2.2,0 -11940338,"Don't Starve Together Beta",purchase,1.0,0 -11940338,"Don't Starve Together Beta",play,2.1,0 -11940338,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -11940338,"Dark Souls Prepare to Die Edition",play,2.1,0 -11940338,"LUFTRAUSERS",purchase,1.0,0 -11940338,"LUFTRAUSERS",play,1.6,0 -11940338,"PlanetSide 2",purchase,1.0,0 -11940338,"PlanetSide 2",play,1.5,0 -11940338,"The Jackbox Party Pack",purchase,1.0,0 -11940338,"The Jackbox Party Pack",play,1.4,0 -11940338,"The Long Dark",purchase,1.0,0 -11940338,"The Long Dark",play,1.3,0 -11940338,"DOOM 3 BFG Edition",purchase,1.0,0 -11940338,"DOOM 3 BFG Edition",play,1.2,0 -11940338,"Left 4 Dead",purchase,1.0,0 -11940338,"Left 4 Dead",play,0.9,0 -11940338,"Titan Souls",purchase,1.0,0 -11940338,"Titan Souls",play,0.9,0 -11940338,"Teleglitch Die More Edition",purchase,1.0,0 -11940338,"Teleglitch Die More Edition",play,0.9,0 -11940338,"Arma 3",purchase,1.0,0 -11940338,"Arma 3",play,0.9,0 -11940338,"Amnesia The Dark Descent",purchase,1.0,0 -11940338,"Amnesia The Dark Descent",play,0.9,0 -11940338,"Thomas Was Alone",purchase,1.0,0 -11940338,"Thomas Was Alone",play,0.8,0 -11940338,"The Expendabros",purchase,1.0,0 -11940338,"The Expendabros",play,0.8,0 -11940338,"Life Is Strange",purchase,1.0,0 -11940338,"Life Is Strange",play,0.6,0 -11940338,"0RBITALIS",purchase,1.0,0 -11940338,"0RBITALIS",play,0.6,0 -11940338,"10 Second Ninja",purchase,1.0,0 -11940338,"10 Second Ninja",play,0.5,0 -11940338,"Saints Row The Third",purchase,1.0,0 -11940338,"Saints Row The Third",play,0.5,0 -11940338,"Botanicula",purchase,1.0,0 -11940338,"Botanicula",play,0.4,0 -11940338,"Montague's Mount",purchase,1.0,0 -11940338,"Montague's Mount",play,0.4,0 -11940338,"Counter-Strike Source",purchase,1.0,0 -11940338,"Counter-Strike Source",play,0.4,0 -11940338,"Left 4 Dead 2",purchase,1.0,0 -11940338,"Left 4 Dead 2",play,0.3,0 -11940338,"Speedball 2 HD",purchase,1.0,0 -11940338,"Speedball 2 HD",play,0.3,0 -11940338,"McPixel",purchase,1.0,0 -11940338,"McPixel",play,0.2,0 -11940338,"Garry's Mod",purchase,1.0,0 -11940338,"Garry's Mod",play,0.2,0 -11940338,"Over 9000 Zombies!",purchase,1.0,0 -11940338,"Over 9000 Zombies!",play,0.2,0 -11940338,"Audiosurf",purchase,1.0,0 -11940338,"Audiosurf",play,0.1,0 -11940338,"Blast Em!",purchase,1.0,0 -11940338,"The Shopkeeper",purchase,1.0,0 -11940338,"Half-Life 2 Episode One",purchase,1.0,0 -11940338,"Half-Life 2 Episode Two",purchase,1.0,0 -11940338,"AI War Fleet Command",purchase,1.0,0 -11940338,"Arma 3 Zeus",purchase,1.0,0 -11940338,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -11940338,"Batman Arkham City GOTY",purchase,1.0,0 -11940338,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -11940338,"Batman Arkham Origins - Initiation",purchase,1.0,0 -11940338,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -11940338,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -11940338,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -11940338,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -11940338,"Blast Em! Source Code",purchase,1.0,0 -11940338,"Concursion",purchase,1.0,0 -11940338,"Dead Island Riptide",purchase,1.0,0 -11940338,"Dungeons of Dredmor",purchase,1.0,0 -11940338,"Five Nights at Freddy's 2",purchase,1.0,0 -11940338,"H1Z1 Test Server",purchase,1.0,0 -11940338,"Half-Life",purchase,1.0,0 -11940338,"Half-Life 2 Deathmatch",purchase,1.0,0 -11940338,"Half-Life 2 Lost Coast",purchase,1.0,0 -11940338,"Half-Life Deathmatch Source",purchase,1.0,0 -11940338,"Killing Floor Uncovered",purchase,1.0,0 -11940338,"Mays Mysteries The Secret of Dragonville",purchase,1.0,0 -11940338,"Richard & Alice",purchase,1.0,0 -11940338,"Risen 2 - Dark Waters",purchase,1.0,0 -11940338,"Sacred 2 Gold",purchase,1.0,0 -11940338,"Saints Row 2",purchase,1.0,0 -11940338,"Shovel Knight",purchase,1.0,0 -11940338,"The Chaos Engine",purchase,1.0,0 -11940338,"The Vanishing of Ethan Carter Redux",purchase,1.0,0 -11940338,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -11940338,"Thief - The Bank Heist",purchase,1.0,0 -11940338,"World of Goo",purchase,1.0,0 -170150668,"F1 2012",purchase,1.0,0 -170150668,"F1 2012",play,14.7,0 -125475916,"Dota 2",purchase,1.0,0 -125475916,"Dota 2",play,148.0,0 -93054621,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -93054621,"Call of Duty Modern Warfare 3 - Multiplayer",play,109.0,0 -93054621,"Homeworld Remastered Collection",purchase,1.0,0 -93054621,"Homeworld Remastered Collection",play,84.0,0 -93054621,"Call of Duty Modern Warfare 3",purchase,1.0,0 -205278025,"Dota 2",purchase,1.0,0 -205278025,"Dota 2",play,1.4,0 -84095423,"Team Fortress 2",purchase,1.0,0 -84095423,"Team Fortress 2",play,1.0,0 -31260378,"Lost Planet Extreme Condition",purchase,1.0,0 -31260378,"Lost Planet Extreme Condition",play,0.5,0 -85210874,"Terraria",purchase,1.0,0 -85210874,"Terraria",play,567.0,0 -85210874,"Sid Meier's Civilization V",purchase,1.0,0 -85210874,"Sid Meier's Civilization V",play,203.0,0 -85210874,"PlanetSide 2",purchase,1.0,0 -85210874,"PlanetSide 2",play,45.0,0 -85210874,"Garry's Mod",purchase,1.0,0 -85210874,"Garry's Mod",play,20.0,0 -85210874,"Supreme Commander 2",purchase,1.0,0 -85210874,"Supreme Commander 2",play,15.1,0 -85210874,"Command and Conquer 3 Tiberium Wars",purchase,1.0,0 -85210874,"Command and Conquer 3 Tiberium Wars",play,14.0,0 -85210874,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -85210874,"Dragon Age Origins - Ultimate Edition",play,13.6,0 -85210874,"Hammerwatch",purchase,1.0,0 -85210874,"Hammerwatch",play,13.3,0 -85210874,"Team Fortress 2",purchase,1.0,0 -85210874,"Team Fortress 2",play,7.0,0 -85210874,"Command and Conquer 4 Tiberian Twilight",purchase,1.0,0 -85210874,"Command and Conquer 4 Tiberian Twilight",play,4.8,0 -85210874,"Magicka",purchase,1.0,0 -85210874,"Magicka",play,4.3,0 -85210874,"Unturned",purchase,1.0,0 -85210874,"Unturned",play,3.6,0 -85210874,"Rock of Ages",purchase,1.0,0 -85210874,"Rock of Ages",play,2.4,0 -85210874,"FINAL FANTASY VII",purchase,1.0,0 -85210874,"FINAL FANTASY VII",play,2.0,0 -85210874,"Planetary Annihilation",purchase,1.0,0 -85210874,"Planetary Annihilation",play,1.3,0 -85210874,"Robot Roller-Derby Disco Dodgeball",purchase,1.0,0 -85210874,"Robot Roller-Derby Disco Dodgeball",play,1.1,0 -85210874,"ORION Prelude",purchase,1.0,0 -85210874,"ORION Prelude",play,0.7,0 -85210874,"Goat Simulator",purchase,1.0,0 -85210874,"Goat Simulator",play,0.5,0 -85210874,"Trine 2",purchase,1.0,0 -85210874,"Trine 2",play,0.4,0 -85210874,"Sid Meier's Pirates!",purchase,1.0,0 -85210874,"Counter-Strike Source",purchase,1.0,0 -85210874,"Sid Meier's Railroads!",purchase,1.0,0 -85210874,"Magicka Final Frontier",purchase,1.0,0 -85210874,"Magicka Frozen Lake",purchase,1.0,0 -85210874,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -85210874,"Magicka Nippon",purchase,1.0,0 -85210874,"Magicka Party Robes",purchase,1.0,0 -85210874,"Magicka The Watchtower",purchase,1.0,0 -85210874,"Magicka Vietnam",purchase,1.0,0 -85210874,"Magicka Wizard's Survival Kit",purchase,1.0,0 -85210874,"Metro 2033",purchase,1.0,0 -85210874,"Sid Meier's Ace Patrol",purchase,1.0,0 -85210874,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -85210874,"Sid Meier's Civilization III Complete",purchase,1.0,0 -85210874,"Sid Meier's Civilization IV",purchase,1.0,0 -85210874,"Sid Meier's Civilization IV",purchase,1.0,0 -85210874,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -85210874,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -85210874,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -85210874,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -85210874,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -85210874,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -85210874,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -85210874,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -85210874,"Supreme Commander 2 - Infinite War Battle Pack One",purchase,1.0,0 -85210874,"TUG",purchase,1.0,0 -85210874,"Worms Revolution",purchase,1.0,0 -182004925,"Dota 2",purchase,1.0,0 -182004925,"Dota 2",play,5.3,0 -222689962,"HIS (Heroes In the Sky)",purchase,1.0,0 -222689962,"HIS (Heroes In the Sky)",play,0.1,0 -185843291,"Team Fortress 2",purchase,1.0,0 -185843291,"Team Fortress 2",play,3.9,0 -114297316,"Team Fortress 2",purchase,1.0,0 -114297316,"Team Fortress 2",play,1.7,0 -241134815,"Counter-Strike Global Offensive",purchase,1.0,0 -241134815,"Counter-Strike Global Offensive",play,290.0,0 -241134815,"Unturned",purchase,1.0,0 -241134815,"Unturned",play,0.6,0 -166689541,"Dota 2",purchase,1.0,0 -166689541,"Dota 2",play,347.0,0 -166689541,"War Thunder",purchase,1.0,0 -270660732,"Unturned",purchase,1.0,0 -270660732,"Unturned",play,26.0,0 -61935579,"Call of Duty Modern Warfare 2",purchase,1.0,0 -61935579,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -258430515,"Dota 2",purchase,1.0,0 -258430515,"Dota 2",play,4.0,0 -60113114,"Counter-Strike Source",purchase,1.0,0 -60113114,"Counter-Strike Source",play,498.0,0 -60113114,"Half-Life 2 Deathmatch",purchase,1.0,0 -60113114,"Half-Life 2 Deathmatch",play,0.2,0 -60113114,"Day of Defeat Source",purchase,1.0,0 -60113114,"Day of Defeat Source",play,0.1,0 -60113114,"Half-Life 2 Lost Coast",purchase,1.0,0 -306358885,"Might & Magic Heroes Online",purchase,1.0,0 -306358885,"Might & Magic Heroes Online",play,0.3,0 -71331890,"Half-Life 2 Deathmatch",purchase,1.0,0 -71331890,"Half-Life 2 Lost Coast",purchase,1.0,0 -184800550,"Dota 2",purchase,1.0,0 -184800550,"Dota 2",play,28.0,0 -184800550,"Team Fortress 2",purchase,1.0,0 -184800550,"Team Fortress 2",play,0.8,0 -188611416,"Unturned",purchase,1.0,0 -188611416,"Unturned",play,25.0,0 -188611416,"Heroes & Generals",purchase,1.0,0 -95181268,"Team Fortress 2",purchase,1.0,0 -95181268,"Team Fortress 2",play,55.0,0 -95181268,"Supreme Commander 2",purchase,1.0,0 -95181268,"Supreme Commander 2",play,47.0,0 -95181268,"War Thunder",purchase,1.0,0 -95181268,"War Thunder",play,36.0,0 -95181268,"Heroes & Generals",purchase,1.0,0 -95181268,"Heroes & Generals",play,35.0,0 -95181268,"Unturned",purchase,1.0,0 -95181268,"Unturned",play,35.0,0 -95181268,"Clicker Heroes",purchase,1.0,0 -95181268,"Clicker Heroes",play,33.0,0 -95181268,"Prison Architect",purchase,1.0,0 -95181268,"Prison Architect",play,32.0,0 -95181268,"Company of Heroes 2",purchase,1.0,0 -95181268,"Company of Heroes 2",play,32.0,0 -95181268,"The Mighty Quest For Epic Loot",purchase,1.0,0 -95181268,"The Mighty Quest For Epic Loot",play,26.0,0 -95181268,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -95181268,"Tom Clancy's Ghost Recon Phantoms - NA",play,21.0,0 -95181268,"Warface",purchase,1.0,0 -95181268,"Warface",play,14.8,0 -95181268,"Counter-Strike Global Offensive",purchase,1.0,0 -95181268,"Counter-Strike Global Offensive",play,6.2,0 -95181268,"March of War",purchase,1.0,0 -95181268,"March of War",play,5.8,0 -95181268,"Tactical Intervention",purchase,1.0,0 -95181268,"Tactical Intervention",play,4.6,0 -95181268,"Insurgency",purchase,1.0,0 -95181268,"Insurgency",play,4.2,0 -95181268,"Villagers and Heroes",purchase,1.0,0 -95181268,"Villagers and Heroes",play,4.2,0 -95181268,"Dota 2",purchase,1.0,0 -95181268,"Dota 2",play,3.9,0 -95181268,"Trove",purchase,1.0,0 -95181268,"Trove",play,3.4,0 -95181268,"Robocraft",purchase,1.0,0 -95181268,"Robocraft",play,2.6,0 -95181268,"Mitos.is The Game",purchase,1.0,0 -95181268,"Mitos.is The Game",play,2.3,0 -95181268,"WARMODE",purchase,1.0,0 -95181268,"WARMODE",play,1.2,0 -95181268,"Dungeon Defenders II",purchase,1.0,0 -95181268,"Dungeon Defenders II",play,1.1,0 -95181268,"Total War Battles KINGDOM",purchase,1.0,0 -95181268,"Total War Battles KINGDOM",play,0.9,0 -95181268,"Red Crucible Firestorm",purchase,1.0,0 -95181268,"Red Crucible Firestorm",play,0.7,0 -95181268,"HAWKEN",purchase,1.0,0 -95181268,"HAWKEN",play,0.4,0 -95181268,"Neverwinter",purchase,1.0,0 -95181268,"Neverwinter",play,0.4,0 -95181268,"Transformice",purchase,1.0,0 -95181268,"Transformice",play,0.3,0 -95181268,"AdVenture Capitalist",purchase,1.0,0 -95181268,"AdVenture Capitalist",play,0.2,0 -95181268,"America's Army Proving Grounds",purchase,1.0,0 -95181268,"America's Army Proving Grounds",play,0.2,0 -95181268,"America's Army 3",purchase,1.0,0 -95181268,"America's Army 3",play,0.2,0 -95181268,"Time Clickers",purchase,1.0,0 -95181268,"Time Clickers",play,0.2,0 -95181268,"Victory Command",purchase,1.0,0 -95181268,"Victory Command",play,0.2,0 -95181268,"AirMech",purchase,1.0,0 -95181268,"AirMech",play,0.1,0 -95181268,"Soldier Front 2",purchase,1.0,0 -95181268,"Battle Battalions",purchase,1.0,0 -95181268,"APB Reloaded",purchase,1.0,0 -95181268,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -95181268,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -95181268,"Company of Heroes 2 - Ardennes Assault",purchase,1.0,0 -95181268,"Counter-Strike",purchase,1.0,0 -95181268,"Counter-Strike Condition Zero",purchase,1.0,0 -95181268,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -95181268,"Counter-Strike Source",purchase,1.0,0 -95181268,"Kingdom Wars",purchase,1.0,0 -95181268,"Lambda Wars Beta",purchase,1.0,0 -95181268,"SAGA",purchase,1.0,0 -95181268,"Stronghold Kingdoms",purchase,1.0,0 -95181268,"Viridi",purchase,1.0,0 -95181268,"War Inc. Battlezone",purchase,1.0,0 -25185866,"Half-Life 2",purchase,1.0,0 -25185866,"Half-Life 2",play,0.2,0 -25185866,"Counter-Strike Source",purchase,1.0,0 -25185866,"Half-Life 2 Deathmatch",purchase,1.0,0 -25185866,"Half-Life 2 Lost Coast",purchase,1.0,0 -223253799,"Toribash",purchase,1.0,0 -223253799,"Toribash",play,2.0,0 -223253799,"Team Fortress 2",purchase,1.0,0 -223253799,"Team Fortress 2",play,1.0,0 -190305564,"Dota 2",purchase,1.0,0 -190305564,"Dota 2",play,23.0,0 -278415486,"Dota 2",purchase,1.0,0 -278415486,"Dota 2",play,109.0,0 -282974048,"Dota 2",purchase,1.0,0 -282974048,"Dota 2",play,19.7,0 -277921358,"Team Fortress 2",purchase,1.0,0 -277921358,"Team Fortress 2",play,86.0,0 -277921358,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -277921358,"S.K.I.L.L. - Special Force 2",play,0.5,0 -141124987,"Dota 2",purchase,1.0,0 -141124987,"Dota 2",play,264.0,0 -101399037,"NBA 2K9",purchase,1.0,0 -259477553,"Aftermath",purchase,1.0,0 -259477553,"Aftermath",play,14.9,0 -259477553,"Outlast",purchase,1.0,0 -259477553,"Outlast",play,1.4,0 -259477553,"War Inc. Battlezone",purchase,1.0,0 -259477553,"War Inc. Battlezone",play,1.1,0 -259477553,"WARMODE",purchase,1.0,0 -259477553,"WARMODE",play,0.6,0 -259477553,"Team Fortress 2",purchase,1.0,0 -259477553,"Team Fortress 2",play,0.3,0 -259477553,"DCS World",purchase,1.0,0 -259477553,"War Thunder",purchase,1.0,0 -259477553,"Outlast Whistleblower DLC",purchase,1.0,0 -155964819,"Dota 2",purchase,1.0,0 -155964819,"Dota 2",play,2.3,0 -155964819,"Mortal Kombat Komplete Edition",purchase,1.0,0 -155964819,"Mortal Kombat Komplete Edition",play,2.2,0 -30855460,"Half-Life 2",purchase,1.0,0 -30855460,"Half-Life 2",play,6.6,0 -30855460,"Half-Life 2 Deathmatch",purchase,1.0,0 -30855460,"Half-Life 2 Lost Coast",purchase,1.0,0 -83135348,"Forsaken World ",purchase,1.0,0 -83135348,"Forsaken World ",play,97.0,0 -83135348,"Fallout 4",purchase,1.0,0 -83135348,"Fallout 4",play,46.0,0 -83135348,"AdVenture Capitalist",purchase,1.0,0 -83135348,"AdVenture Capitalist",play,26.0,0 -83135348,"The Elder Scrolls V Skyrim",purchase,1.0,0 -83135348,"The Elder Scrolls V Skyrim",play,15.3,0 -83135348,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",purchase,1.0,0 -83135348,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",play,3.5,0 -83135348,"Evoland",purchase,1.0,0 -83135348,"Evoland",play,3.4,0 -83135348,"Team Fortress 2",purchase,1.0,0 -83135348,"Team Fortress 2",play,2.7,0 -83135348,"Fable - The Lost Chapters",purchase,1.0,0 -83135348,"Fable - The Lost Chapters",play,2.0,0 -83135348,"Aveyond 3-1 Lord of Twilight",purchase,1.0,0 -83135348,"Aveyond 3-1 Lord of Twilight",play,1.2,0 -83135348,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -83135348,"RollerCoaster Tycoon 3 Platinum!",play,0.9,0 -83135348,"SanctuaryRPG Black Edition",purchase,1.0,0 -83135348,"SanctuaryRPG Black Edition",play,0.9,0 -83135348,"Portal 2",purchase,1.0,0 -83135348,"Portal 2",play,0.4,0 -83135348,"Let the Cat In",purchase,1.0,0 -83135348,"Let the Cat In",play,0.3,0 -83135348,"Deus Ex Human Revolution",purchase,1.0,0 -83135348,"Deus Ex Human Revolution",play,0.3,0 -83135348,"The Cat and the Coup",purchase,1.0,0 -83135348,"The Cat and the Coup",play,0.3,0 -83135348,"Age of Empires II HD Edition",purchase,1.0,0 -83135348,"Age of Empires II HD The Forgotten",purchase,1.0,0 -83135348,"Amnesia The Dark Descent",purchase,1.0,0 -83135348,"Chroma Squad",purchase,1.0,0 -83135348,"Cube & Star An Arbitrary Love",purchase,1.0,0 -83135348,"Dead Island Epidemic",purchase,1.0,0 -83135348,"Detective Case and Clown Bot in Murder in the Hotel Lisbon",purchase,1.0,0 -83135348,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -83135348,"Gas Guzzlers Extreme",purchase,1.0,0 -83135348,"Goats on a Bridge",purchase,1.0,0 -83135348,"ibb & obb",purchase,1.0,0 -83135348,"Knights of Pen and Paper +1",purchase,1.0,0 -83135348,"Labyrinthine Dreams",purchase,1.0,0 -83135348,"Last Word",purchase,1.0,0 -83135348,"Mafia II",purchase,1.0,0 -83135348,"NEON STRUCT",purchase,1.0,0 -83135348,"NEON STRUCT Soundtrack & Artbook",purchase,1.0,0 -83135348,"Nuclear Dawn",purchase,1.0,0 -83135348,"Oddworld Abe's Oddysee",purchase,1.0,0 -83135348,"Penny Arcade's On the Rain-Slick Precipice of Darkness 4",purchase,1.0,0 -83135348,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -83135348,"Proteus",purchase,1.0,0 -83135348,"Savant - Ascent",purchase,1.0,0 -83135348,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -83135348,"The Bureau XCOM Declassified",purchase,1.0,0 -83135348,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -83135348,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -83135348,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -83135348,"TowerFall Ascension",purchase,1.0,0 -83135348,"Whisper of a Rose",purchase,1.0,0 -83135348,"X-COM Apocalypse",purchase,1.0,0 -83135348,"X-COM Enforcer",purchase,1.0,0 -83135348,"X-COM Interceptor",purchase,1.0,0 -83135348,"X-COM Terror from the Deep",purchase,1.0,0 -83135348,"X-COM UFO Defense",purchase,1.0,0 -225028163,"Loadout",purchase,1.0,0 -225028163,"The Mighty Quest For Epic Loot",purchase,1.0,0 -225028163,"Transformice",purchase,1.0,0 -121674532,"Fistful of Frags",purchase,1.0,0 -121674532,"HAWKEN",purchase,1.0,0 -121674532,"Neverwinter",purchase,1.0,0 -121674532,"Tactical Intervention",purchase,1.0,0 -121674532,"Unturned",purchase,1.0,0 -121674532,"Warframe",purchase,1.0,0 -42493197,"Arma Cold War Assault",purchase,1.0,0 -142060022,"Dota 2",purchase,1.0,0 -142060022,"Dota 2",play,1.2,0 -85802472,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -85802472,"Call of Duty Modern Warfare 3 - Multiplayer",play,312.0,0 -85802472,"Call of Duty Modern Warfare 3",purchase,1.0,0 -85802472,"Call of Duty Modern Warfare 3",play,11.7,0 -186948698,"Dizzel",purchase,1.0,0 -186948698,"Dizzel",play,0.7,0 -186948698,"theHunter",purchase,1.0,0 -138558097,"Dota 2",purchase,1.0,0 -138558097,"Dota 2",play,3.1,0 -256739669,"Unturned",purchase,1.0,0 -256739669,"Trove",purchase,1.0,0 -89226643,"Total War SHOGUN 2",purchase,1.0,0 -89226643,"Total War SHOGUN 2",play,78.0,0 -89226643,"Empire Total War",purchase,1.0,0 -89226643,"Empire Total War",play,66.0,0 -89226643,"Napoleon Total War",purchase,1.0,0 -89226643,"Napoleon Total War",play,29.0,0 -89226643,"Total War Battles SHOGUN",purchase,1.0,0 -89226643,"Men of War",purchase,1.0,0 -89226643,"Men of War Assault Squad",purchase,1.0,0 -89226643,"Men of War Condemned Heroes",purchase,1.0,0 -89226643,"Men of War Red Tide",purchase,1.0,0 -89226643,"Men of War Vietnam",purchase,1.0,0 -89226643,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -92024359,"King Arthur - The Role-playing Wargame",purchase,1.0,0 -92024359,"King Arthur - The Role-playing Wargame",play,12.6,0 -33121288,"Deus Ex Human Revolution",purchase,1.0,0 -33121288,"Deus Ex Human Revolution",play,41.0,0 -33121288,"F.E.A.R. 3",purchase,1.0,0 -33121288,"F.E.A.R. 3",play,1.8,0 -33121288,"Half-Life 2 Episode Two",purchase,1.0,0 -33121288,"Half-Life 2 Episode Two",play,0.3,0 -29302014,"Path of Exile",purchase,1.0,0 -29302014,"Path of Exile",play,539.0,0 -29302014,"Counter-Strike Global Offensive",purchase,1.0,0 -29302014,"Counter-Strike Global Offensive",play,16.6,0 -29302014,"Dead Island Epidemic",purchase,1.0,0 -29302014,"Dead Island Epidemic",play,13.1,0 -29302014,"FINAL FANTASY VIII",purchase,1.0,0 -29302014,"FINAL FANTASY VIII",play,10.9,0 -29302014,"Left 4 Dead 2",purchase,1.0,0 -29302014,"Left 4 Dead 2",play,10.2,0 -29302014,"Infestation Survivor Stories",purchase,1.0,0 -29302014,"Infestation Survivor Stories",play,9.7,0 -29302014,"Contagion",purchase,1.0,0 -29302014,"Contagion",play,3.9,0 -29302014,"Garry's Mod",purchase,1.0,0 -29302014,"Garry's Mod",play,3.5,0 -29302014,"PAYDAY 2",purchase,1.0,0 -29302014,"PAYDAY 2",play,3.0,0 -29302014,"Alien Swarm",purchase,1.0,0 -29302014,"Alien Swarm",play,2.1,0 -29302014,"Grand Theft Auto IV",purchase,1.0,0 -29302014,"Grand Theft Auto IV",play,1.3,0 -29302014,"La Tale",purchase,1.0,0 -29302014,"La Tale",play,0.9,0 -29302014,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -29302014,"Grand Theft Auto Episodes from Liberty City",play,0.4,0 -29302014,"Counter-Strike Source",purchase,1.0,0 -29302014,"Depth",purchase,1.0,0 -29302014,"Grand Theft Auto San Andreas",purchase,1.0,0 -29302014,"Grand Theft Auto San Andreas",purchase,1.0,0 -29302014,"Grand Theft Auto Vice City",purchase,1.0,0 -29302014,"Grand Theft Auto Vice City",purchase,1.0,0 -29302014,"Grand Theft Auto III",purchase,1.0,0 -29302014,"Grand Theft Auto III",purchase,1.0,0 -118585913,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -118585913,"Call of Duty Black Ops II - Multiplayer",play,18.8,0 -118585913,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -118585913,"Call of Duty Modern Warfare 3 - Multiplayer",play,2.0,0 -118585913,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -118585913,"Call of Duty Black Ops II - Zombies",play,0.9,0 -118585913,"Call of Duty Black Ops II",purchase,1.0,0 -118585913,"Call of Duty Black Ops II",play,0.2,0 -118585913,"Counter-Strike Source",purchase,1.0,0 -118585913,"Counter-Strike Source",play,0.2,0 -118585913,"Call of Duty Modern Warfare 3",purchase,1.0,0 -118585913,"Day of Defeat Source",purchase,1.0,0 -118585913,"Half-Life 2 Deathmatch",purchase,1.0,0 -118585913,"Half-Life 2 Lost Coast",purchase,1.0,0 -215079073,"FEZ",purchase,1.0,0 -208020634,"Counter-Strike Nexon Zombies",purchase,1.0,0 -208020634,"Robocraft",purchase,1.0,0 -208020634,"War Thunder",purchase,1.0,0 -100630947,"Dota 2",purchase,1.0,0 -100630947,"Dota 2",play,10442.0,0 -100630947,"Counter-Strike Global Offensive",purchase,1.0,0 -100630947,"Counter-Strike Global Offensive",play,405.0,0 -100630947,"Rust",purchase,1.0,0 -100630947,"Rust",play,3.4,0 -100630947,"FreeStyle2 Street Basketball",purchase,1.0,0 -100630947,"FreeStyle2 Street Basketball",play,2.5,0 -100630947,"Aura Kingdom",purchase,1.0,0 -100630947,"Aura Kingdom",play,0.2,0 -100630947,"Left 4 Dead 2",purchase,1.0,0 -100630947,"Left 4 Dead 2",play,0.1,0 -100630947,"Free to Play",purchase,1.0,0 -100630947,"No More Room in Hell",purchase,1.0,0 -100630947,"The Lord of the Rings Online",purchase,1.0,0 -100630947,"War Thunder",purchase,1.0,0 -150632096,"Dota 2",purchase,1.0,0 -150632096,"Dota 2",play,3.0,0 -296138964,"Don't Starve Together Beta",purchase,1.0,0 -296138964,"Don't Starve Together Beta",play,0.8,0 -296138964,"Unturned",purchase,1.0,0 -143560279,"Dota 2",purchase,1.0,0 -143560279,"Dota 2",play,1155.0,0 -186074387,"Unturned",purchase,1.0,0 -186074387,"Unturned",play,21.0,0 -93290614,"Dota 2",purchase,1.0,0 -93290614,"Dota 2",play,1760.0,0 -93290614,"Super Monday Night Combat",purchase,1.0,0 -165101762,"Arma 3",purchase,1.0,0 -165101762,"Arma 3",play,910.0,0 -165101762,"DayZ",purchase,1.0,0 -165101762,"DayZ",play,439.0,0 -165101762,"Counter-Strike Global Offensive",purchase,1.0,0 -165101762,"Counter-Strike Global Offensive",play,95.0,0 -165101762,"Garry's Mod",purchase,1.0,0 -165101762,"Garry's Mod",play,90.0,0 -165101762,"Rust",purchase,1.0,0 -165101762,"Rust",play,47.0,0 -165101762,"Arma 2 Operation Arrowhead",purchase,1.0,0 -165101762,"Arma 2 Operation Arrowhead",play,21.0,0 -165101762,"Euro Truck Simulator 2",purchase,1.0,0 -165101762,"Euro Truck Simulator 2",play,18.2,0 -165101762,"Dota 2",purchase,1.0,0 -165101762,"Dota 2",play,14.6,0 -165101762,"Warface",purchase,1.0,0 -165101762,"Warface",play,7.8,0 -165101762,"Hitman Absolution",purchase,1.0,0 -165101762,"Hitman Absolution",play,7.4,0 -165101762,"Nether",purchase,1.0,0 -165101762,"Nether",play,5.8,0 -165101762,"Goat Simulator",purchase,1.0,0 -165101762,"Goat Simulator",play,5.5,0 -165101762,"Heroes & Generals",purchase,1.0,0 -165101762,"Heroes & Generals",play,5.3,0 -165101762,"Aftermath",purchase,1.0,0 -165101762,"Aftermath",play,5.0,0 -165101762,"Terraria",purchase,1.0,0 -165101762,"Terraria",play,4.6,0 -165101762,"Toribash",purchase,1.0,0 -165101762,"Toribash",play,4.1,0 -165101762,"Unturned",purchase,1.0,0 -165101762,"Unturned",play,3.3,0 -165101762,"Arma 2",purchase,1.0,0 -165101762,"Arma 2",play,2.7,0 -165101762,"RaceRoom Racing Experience ",purchase,1.0,0 -165101762,"RaceRoom Racing Experience ",play,2.4,0 -165101762,"theHunter",purchase,1.0,0 -165101762,"theHunter",play,2.0,0 -165101762,"Battlefield Bad Company 2",purchase,1.0,0 -165101762,"Battlefield Bad Company 2",play,1.8,0 -165101762,"F.E.A.R. Online",purchase,1.0,0 -165101762,"F.E.A.R. Online",play,1.8,0 -165101762,"SMITE",purchase,1.0,0 -165101762,"SMITE",play,1.8,0 -165101762,"Soccer Manager 2016",purchase,1.0,0 -165101762,"Soccer Manager 2016",play,1.7,0 -165101762,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -165101762,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,1.5,0 -165101762,"Thief",purchase,1.0,0 -165101762,"Thief",play,1.4,0 -165101762,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -165101762,"Rising Storm/Red Orchestra 2 Multiplayer",play,1.3,0 -165101762,"Emily is Away",purchase,1.0,0 -165101762,"Emily is Away",play,1.1,0 -165101762,"Sakura Clicker",purchase,1.0,0 -165101762,"Sakura Clicker",play,1.1,0 -165101762,"No More Room in Hell",purchase,1.0,0 -165101762,"No More Room in Hell",play,1.0,0 -165101762,"Arma 2 DayZ Mod",purchase,1.0,0 -165101762,"Arma 2 DayZ Mod",play,0.8,0 -165101762,"Copa Petrobras de Marcas",purchase,1.0,0 -165101762,"Copa Petrobras de Marcas",play,0.5,0 -165101762,"Space Farmers",purchase,1.0,0 -165101762,"Space Farmers",play,0.4,0 -165101762,"Survarium",purchase,1.0,0 -165101762,"Survarium",play,0.4,0 -165101762,"Brick-Force",purchase,1.0,0 -165101762,"Brick-Force",play,0.3,0 -165101762,"America's Army Proving Grounds",purchase,1.0,0 -165101762,"America's Army Proving Grounds",play,0.3,0 -165101762,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -165101762,"F.E.A.R. 2 Project Origin",play,0.2,0 -165101762,"Let the Cat In",purchase,1.0,0 -165101762,"Let the Cat In",play,0.2,0 -165101762,"Real Horror Stories Ultimate Edition",purchase,1.0,0 -165101762,"Real Horror Stories Ultimate Edition",play,0.1,0 -165101762,"AdVenture Capitalist",purchase,1.0,0 -165101762,"AdVenture Capitalist",play,0.1,0 -165101762,"Clown House (Palyao Evi)",purchase,1.0,0 -165101762,"Clown House (Palyao Evi)",play,0.1,0 -165101762,"Spooky's House of Jump Scares",purchase,1.0,0 -165101762,"Spooky's House of Jump Scares",play,0.1,0 -165101762,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -165101762,"The Secret of Tremendous Corporation",purchase,1.0,0 -165101762,"Narcissu 1st & 2nd",purchase,1.0,0 -165101762,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -165101762,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -165101762,"Arma 2 Private Military Company",purchase,1.0,0 -165101762,"Arma 2 British Armed Forces",purchase,1.0,0 -165101762,"Arma 3 Zeus",purchase,1.0,0 -165101762,"Audition Online",purchase,1.0,0 -165101762,"Counter-Strike Nexon Zombies",purchase,1.0,0 -165101762,"Dead Island Epidemic",purchase,1.0,0 -165101762,"Dirty Bomb",purchase,1.0,0 -165101762,"Dungeon Defenders II",purchase,1.0,0 -165101762,"Fishing Planet",purchase,1.0,0 -165101762,"Loadout Campaign Beta",purchase,1.0,0 -165101762,"Marvel Puzzle Quest",purchase,1.0,0 -165101762,"Path of Exile",purchase,1.0,0 -165101762,"TERA",purchase,1.0,0 -165101762,"The Expendabros",purchase,1.0,0 -165101762,"War Thunder",purchase,1.0,0 -208906317,"GEARCRACK Arena",purchase,1.0,0 -60706503,"Wolfenstein The New Order",purchase,1.0,0 -60706503,"Wolfenstein The New Order",play,61.0,0 -60706503,"Middle-earth Shadow of Mordor",purchase,1.0,0 -60706503,"Middle-earth Shadow of Mordor",play,51.0,0 -60706503,"Sniper Elite 3",purchase,1.0,0 -60706503,"Sniper Elite 3",play,28.0,0 -60706503,"Call of Duty World at War",purchase,1.0,0 -60706503,"Call of Duty World at War",play,24.0,0 -60706503,"Call of Duty Modern Warfare 2",purchase,1.0,0 -60706503,"Call of Duty Modern Warfare 2",play,23.0,0 -60706503,"Call of Duty Black Ops",purchase,1.0,0 -60706503,"Call of Duty Black Ops",play,19.7,0 -60706503,"Wolfenstein The Old Blood ",purchase,1.0,0 -60706503,"Wolfenstein The Old Blood ",play,18.2,0 -60706503,"Metro Last Light Redux",purchase,1.0,0 -60706503,"Metro Last Light Redux",play,17.8,0 -60706503,"Call of Duty Black Ops II",purchase,1.0,0 -60706503,"Call of Duty Black Ops II",play,17.3,0 -60706503,"Call of Duty Advanced Warfare",purchase,1.0,0 -60706503,"Call of Duty Advanced Warfare",play,16.6,0 -60706503,"RAGE",purchase,1.0,0 -60706503,"RAGE",play,16.3,0 -60706503,"Call of Duty Ghosts",purchase,1.0,0 -60706503,"Call of Duty Ghosts",play,11.7,0 -60706503,"Duke Nukem Forever",purchase,1.0,0 -60706503,"Duke Nukem Forever",play,4.9,0 -60706503,"The Evil Within",purchase,1.0,0 -60706503,"The Evil Within",play,4.1,0 -60706503,"Left 4 Dead",purchase,1.0,0 -60706503,"Left 4 Dead",play,2.3,0 -60706503,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -60706503,"Batman Arkham Asylum GOTY Edition",play,1.9,0 -60706503,"Ryse Son of Rome",purchase,1.0,0 -60706503,"Ryse Son of Rome",play,1.6,0 -60706503,"Far Cry",purchase,1.0,0 -60706503,"Far Cry",play,0.8,0 -60706503,"Half-Life",purchase,1.0,0 -60706503,"Half-Life",play,0.7,0 -60706503,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -60706503,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -60706503,"America's Army 3",purchase,1.0,0 -60706503,"Battlefield Bad Company 2",purchase,1.0,0 -60706503,"Borderlands 2",purchase,1.0,0 -60706503,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -60706503,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -60706503,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -60706503,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -60706503,"Far Cry 2",purchase,1.0,0 -60706503,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -60706503,"Far Cry 4",purchase,1.0,0 -60706503,"Far Cry 3",purchase,1.0,0 -60706503,"Far Cry 3 Blood Dragon",purchase,1.0,0 -60706503,"Grim Fandango Remastered",purchase,1.0,0 -60706503,"Half-Life 2",purchase,1.0,0 -60706503,"Half-Life 2 Deathmatch",purchase,1.0,0 -60706503,"Half-Life 2 Episode One",purchase,1.0,0 -60706503,"Half-Life 2 Episode Two",purchase,1.0,0 -60706503,"Half-Life 2 Lost Coast",purchase,1.0,0 -60706503,"Half-Life Blue Shift",purchase,1.0,0 -60706503,"Half-Life Opposing Force",purchase,1.0,0 -60706503,"Half-Life Source",purchase,1.0,0 -60706503,"Half-Life Deathmatch Source",purchase,1.0,0 -60706503,"Left 4 Dead 2",purchase,1.0,0 -60706503,"Metro 2033 Redux",purchase,1.0,0 -60706503,"PAYDAY 2",purchase,1.0,0 -60706503,"Resident Evil / biohazard HD REMASTER",purchase,1.0,0 -60706503,"Team Fortress Classic",purchase,1.0,0 -201978799,"Total War ROME II - Emperor Edition",purchase,1.0,0 -201978799,"Total War ROME II - Emperor Edition",play,178.0,0 -201978799,"Total War SHOGUN 2",purchase,1.0,0 -201978799,"Total War SHOGUN 2",play,4.1,0 -201978799,"TERA",purchase,1.0,0 -201978799,"TERA",play,3.8,0 -201978799,"Mount & Blade Warband",purchase,1.0,0 -201978799,"Mount & Blade Warband",play,3.0,0 -201978799,"Left 4 Dead 2",purchase,1.0,0 -201978799,"Left 4 Dead 2",play,3.0,0 -201978799,"Empire Total War",purchase,1.0,0 -201978799,"Empire Total War",play,0.6,0 -201978799,"Survarium",purchase,1.0,0 -201978799,"Survarium",play,0.2,0 -201978799,"Medieval II Total War",purchase,1.0,0 -201978799,"Medieval II Total War",play,0.2,0 -201978799,"Medieval II Total War Kingdoms",purchase,1.0,0 -159386087,"Dota 2",purchase,1.0,0 -159386087,"Dota 2",play,4.5,0 -139986442,"Dota 2",purchase,1.0,0 -139986442,"Dota 2",play,1.3,0 -252044076,"Mortal Kombat X",purchase,1.0,0 -252044076,"Mortal Kombat X",play,1363.0,0 -252044076,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -252044076,"METAL GEAR SOLID V THE PHANTOM PAIN",play,1050.0,0 -252044076,"PAYDAY 2",purchase,1.0,0 -252044076,"PAYDAY 2",play,409.0,0 -252044076,"NBA 2K15",purchase,1.0,0 -252044076,"NBA 2K15",play,308.0,0 -252044076,"Batman Arkham Origins",purchase,1.0,0 -252044076,"Batman Arkham Origins",play,287.0,0 -252044076,"Magicka",purchase,1.0,0 -252044076,"Magicka",play,73.0,0 -252044076,"Metro Last Light",purchase,1.0,0 -252044076,"Metro Last Light",play,54.0,0 -252044076,"Awesomenauts",purchase,1.0,0 -252044076,"Awesomenauts",play,46.0,0 -252044076,"Infinite Crisis",purchase,1.0,0 -252044076,"Infinite Crisis",play,41.0,0 -252044076,"Happy Wars",purchase,1.0,0 -252044076,"Happy Wars",play,1.9,0 -252044076,"Rustbucket Rumble",purchase,1.0,0 -252044076,"Rustbucket Rumble",play,1.3,0 -252044076,"Magicka Wizard Wars",purchase,1.0,0 -252044076,"Magicka Wizard Wars",play,1.0,0 -252044076,"Strike Suit Zero",purchase,1.0,0 -252044076,"Strike Suit Zero",play,0.9,0 -252044076,"Anomaly Warzone Earth",purchase,1.0,0 -252044076,"Anomaly Warzone Earth",play,0.7,0 -252044076,"Defiance",purchase,1.0,0 -252044076,"Piercing Blow",purchase,1.0,0 -170388829,"Dota 2",purchase,1.0,0 -170388829,"Dota 2",play,0.9,0 -236370333,"Unturned",purchase,1.0,0 -236370333,"Unturned",play,6.7,0 -285509578,"Unturned",purchase,1.0,0 -13669241,"Counter-Strike Source",purchase,1.0,0 -13669241,"Half-Life 2",purchase,1.0,0 -13669241,"Half-Life 2 Deathmatch",purchase,1.0,0 -13669241,"Half-Life 2 Lost Coast",purchase,1.0,0 -243520161,"Dota 2",purchase,1.0,0 -243520161,"Dota 2",play,8.3,0 -107708102,"Team Fortress 2",purchase,1.0,0 -107708102,"Team Fortress 2",play,9.8,0 -230104818,"Firefall",purchase,1.0,0 -230104818,"Firefall",play,0.3,0 -77194239,"The Elder Scrolls V Skyrim",purchase,1.0,0 -77194239,"The Elder Scrolls V Skyrim",play,111.0,0 -77194239,"TERA",purchase,1.0,0 -77194239,"TERA",play,74.0,0 -77194239,"EVE Online",purchase,1.0,0 -77194239,"EVE Online",play,58.0,0 -77194239,"Sid Meier's Civilization V",purchase,1.0,0 -77194239,"Sid Meier's Civilization V",play,45.0,0 -77194239,"Grand Theft Auto V",purchase,1.0,0 -77194239,"Grand Theft Auto V",play,43.0,0 -77194239,"Team Fortress 2",purchase,1.0,0 -77194239,"Team Fortress 2",play,43.0,0 -77194239,"DayZ",purchase,1.0,0 -77194239,"DayZ",play,19.8,0 -77194239,"XCOM Enemy Unknown",purchase,1.0,0 -77194239,"XCOM Enemy Unknown",play,19.4,0 -77194239,"Starbound",purchase,1.0,0 -77194239,"Starbound",play,18.4,0 -77194239,"Left 4 Dead 2",purchase,1.0,0 -77194239,"Left 4 Dead 2",play,17.6,0 -77194239,"Max Payne 3",purchase,1.0,0 -77194239,"Max Payne 3",play,15.3,0 -77194239,"Garry's Mod",purchase,1.0,0 -77194239,"Garry's Mod",play,14.5,0 -77194239,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -77194239,"Call of Duty Advanced Warfare - Multiplayer",play,13.7,0 -77194239,"Dota 2",purchase,1.0,0 -77194239,"Dota 2",play,12.8,0 -77194239,"Lords Of The Fallen",purchase,1.0,0 -77194239,"Lords Of The Fallen",play,10.0,0 -77194239,"BioShock Infinite",purchase,1.0,0 -77194239,"BioShock Infinite",play,10.0,0 -77194239,"The Binding of Isaac",purchase,1.0,0 -77194239,"The Binding of Isaac",play,9.2,0 -77194239,"Call of Duty Advanced Warfare",purchase,1.0,0 -77194239,"Call of Duty Advanced Warfare",play,8.3,0 -77194239,"Borderlands 2",purchase,1.0,0 -77194239,"Borderlands 2",play,7.8,0 -77194239,"Magicka",purchase,1.0,0 -77194239,"Magicka",play,7.7,0 -77194239,"Grand Theft Auto IV",purchase,1.0,0 -77194239,"Grand Theft Auto IV",play,6.6,0 -77194239,"F.E.A.R. 3",purchase,1.0,0 -77194239,"F.E.A.R. 3",play,6.1,0 -77194239,"BioShock",purchase,1.0,0 -77194239,"BioShock",play,5.9,0 -77194239,"Star Wars Knights of the Old Republic",purchase,1.0,0 -77194239,"Star Wars Knights of the Old Republic",play,5.8,0 -77194239,"Dishonored",purchase,1.0,0 -77194239,"Dishonored",play,5.7,0 -77194239,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -77194239,"Unreal Tournament 3 Black Edition",play,5.4,0 -77194239,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -77194239,"METAL GEAR SOLID V THE PHANTOM PAIN",play,4.9,0 -77194239,"bit Dungeon II",purchase,1.0,0 -77194239,"bit Dungeon II",play,4.6,0 -77194239,"Middle-earth Shadow of Mordor",purchase,1.0,0 -77194239,"Middle-earth Shadow of Mordor",play,4.2,0 -77194239,"The Binding of Isaac Rebirth",purchase,1.0,0 -77194239,"The Binding of Isaac Rebirth",play,4.1,0 -77194239,"Torchlight II",purchase,1.0,0 -77194239,"Torchlight II",play,4.1,0 -77194239,"Warhammer End Times - Vermintide",purchase,1.0,0 -77194239,"Warhammer End Times - Vermintide",play,3.6,0 -77194239,"Orcs Must Die! 2",purchase,1.0,0 -77194239,"Orcs Must Die! 2",play,3.2,0 -77194239,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -77194239,"Red Faction Guerrilla Steam Edition",play,3.0,0 -77194239,"Game Dev Tycoon",purchase,1.0,0 -77194239,"Game Dev Tycoon",play,2.9,0 -77194239,"Counter-Strike Global Offensive",purchase,1.0,0 -77194239,"Counter-Strike Global Offensive",play,2.7,0 -77194239,"Serious Sam 3 BFE",purchase,1.0,0 -77194239,"Serious Sam 3 BFE",play,2.6,0 -77194239,"Dead Island",purchase,1.0,0 -77194239,"Dead Island",play,2.1,0 -77194239,"Magic 2014 ",purchase,1.0,0 -77194239,"Magic 2014 ",play,2.1,0 -77194239,"Dungeon Defenders",purchase,1.0,0 -77194239,"Dungeon Defenders",play,2.0,0 -77194239,"The Void",purchase,1.0,0 -77194239,"The Void",play,1.9,0 -77194239,"RAGE",purchase,1.0,0 -77194239,"RAGE",play,1.6,0 -77194239,"Besiege",purchase,1.0,0 -77194239,"Besiege",play,1.6,0 -77194239,"Red Faction Armageddon",purchase,1.0,0 -77194239,"Red Faction Armageddon",play,1.2,0 -77194239,"Alien Swarm",purchase,1.0,0 -77194239,"Alien Swarm",play,1.1,0 -77194239,"Terraria",purchase,1.0,0 -77194239,"Terraria",play,1.0,0 -77194239,"Sang-Froid - Tales of Werewolves",purchase,1.0,0 -77194239,"Sang-Froid - Tales of Werewolves",play,1.0,0 -77194239,"Saints Row The Third",purchase,1.0,0 -77194239,"Saints Row The Third",play,0.9,0 -77194239,"Grotesque Tactics Evil Heroes",purchase,1.0,0 -77194239,"Grotesque Tactics Evil Heroes",play,0.9,0 -77194239,"Anna - Extended Edition",purchase,1.0,0 -77194239,"Anna - Extended Edition",play,0.8,0 -77194239,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -77194239,"Warhammer 40,000 Dawn of War II Retribution",play,0.8,0 -77194239,"Numen Contest of Heroes",purchase,1.0,0 -77194239,"Numen Contest of Heroes",play,0.7,0 -77194239,"Brtal Legend",purchase,1.0,0 -77194239,"Brtal Legend",play,0.6,0 -77194239,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -77194239,"Baldur's Gate Enhanced Edition",play,0.6,0 -77194239,"Warhammer 40,000 Space Marine",purchase,1.0,0 -77194239,"Warhammer 40,000 Space Marine",play,0.6,0 -77194239,"Natural Selection 2",purchase,1.0,0 -77194239,"Natural Selection 2",play,0.6,0 -77194239,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -77194239,"Star Wars The Force Unleashed Ultimate Sith Edition",play,0.5,0 -77194239,"Fallout New Vegas",purchase,1.0,0 -77194239,"Fallout New Vegas",play,0.5,0 -77194239,"Dead Island Riptide",purchase,1.0,0 -77194239,"Dead Island Riptide",play,0.5,0 -77194239,"Unreal Gold",purchase,1.0,0 -77194239,"Unreal Gold",play,0.5,0 -77194239,"Savant - Ascent",purchase,1.0,0 -77194239,"Savant - Ascent",play,0.4,0 -77194239,"Kerbal Space Program",purchase,1.0,0 -77194239,"Kerbal Space Program",play,0.4,0 -77194239,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -77194239,"Warhammer 40,000 Dawn of War II",play,0.4,0 -77194239,"Just Cause 2",purchase,1.0,0 -77194239,"Just Cause 2",play,0.3,0 -77194239,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -77194239,"Serious Sam Classic The Second Encounter",play,0.3,0 -77194239,"Borderlands",purchase,1.0,0 -77194239,"Borderlands",play,0.3,0 -77194239,"Yet Another Zombie Defense",purchase,1.0,0 -77194239,"Yet Another Zombie Defense",play,0.2,0 -77194239,"Chivalry Medieval Warfare",purchase,1.0,0 -77194239,"Chivalry Medieval Warfare",play,0.2,0 -77194239,"Tower Wars",purchase,1.0,0 -77194239,"Tower Wars",play,0.2,0 -77194239,"Serious Sam Classic The First Encounter",purchase,1.0,0 -77194239,"Serious Sam Classic The First Encounter",play,0.2,0 -77194239,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -77194239,"Grand Theft Auto Episodes from Liberty City",play,0.2,0 -77194239,"Dungeon Siege III",purchase,1.0,0 -77194239,"Dungeon Siege III",play,0.1,0 -77194239,"Trine 2",purchase,1.0,0 -77194239,"Trine 2",play,0.1,0 -77194239,"Super Hexagon",purchase,1.0,0 -77194239,"Sanctum",purchase,1.0,0 -77194239,"Unreal II The Awakening",purchase,1.0,0 -77194239,"Shattered Haven",purchase,1.0,0 -77194239,"BioShock 2",purchase,1.0,0 -77194239,"Star Wars The Force Unleashed II",purchase,1.0,0 -77194239,"8BitMMO",purchase,1.0,0 -77194239,"Agarest Generations of War",purchase,1.0,0 -77194239,"Archeblade",purchase,1.0,0 -77194239,"BioShock Infinite - Season Pass",purchase,1.0,0 -77194239,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -77194239,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -77194239,"Blood Omen 2 Legacy of Kain",purchase,1.0,0 -77194239,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -77194239,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -77194239,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -77194239,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -77194239,"Cities in Motion 2",purchase,1.0,0 -77194239,"Dead Island Epidemic",purchase,1.0,0 -77194239,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -77194239,"Dungeon Siege",purchase,1.0,0 -77194239,"Dungeon Siege 2",purchase,1.0,0 -77194239,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -77194239,"Fallout New Vegas Dead Money",purchase,1.0,0 -77194239,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -77194239,"Floating Point",purchase,1.0,0 -77194239,"FTL Faster Than Light",purchase,1.0,0 -77194239,"Grotesque Tactics 2 - Dungeons and Donuts",purchase,1.0,0 -77194239,"Holy Avatar vs. Maidens of the Dead",purchase,1.0,0 -77194239,"Left 4 Dead",purchase,1.0,0 -77194239,"Legacy of Kain Defiance",purchase,1.0,0 -77194239,"Legacy of Kain Soul Reaver",purchase,1.0,0 -77194239,"Legacy of Kain Soul Reaver 2",purchase,1.0,0 -77194239,"Lego Star Wars Saga",purchase,1.0,0 -77194239,"Magic Duels",purchase,1.0,0 -77194239,"Magicka Final Frontier",purchase,1.0,0 -77194239,"Magicka Frozen Lake",purchase,1.0,0 -77194239,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -77194239,"Magicka Nippon",purchase,1.0,0 -77194239,"Magicka Party Robes",purchase,1.0,0 -77194239,"Magicka The Watchtower",purchase,1.0,0 -77194239,"Magicka Vietnam",purchase,1.0,0 -77194239,"Magicka Wizard's Survival Kit",purchase,1.0,0 -77194239,"Magicka Wizard Wars",purchase,1.0,0 -77194239,"Metro 2033",purchase,1.0,0 -77194239,"Moonbase Alpha",purchase,1.0,0 -77194239,"Narcissu 1st & 2nd",purchase,1.0,0 -77194239,"Nosgoth",purchase,1.0,0 -77194239,"Orcs Must Die!",purchase,1.0,0 -77194239,"Outlast",purchase,1.0,0 -77194239,"Outlast Whistleblower DLC",purchase,1.0,0 -77194239,"Patch testing for Chivalry",purchase,1.0,0 -77194239,"POSTAL 2",purchase,1.0,0 -77194239,"Sanctum 2",purchase,1.0,0 -77194239,"Serious Sam Classics Revolution",purchase,1.0,0 -77194239,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -77194239,"Sid Meier's Pirates!",purchase,1.0,0 -77194239,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -77194239,"Slender The Arrival",purchase,1.0,0 -77194239,"Space Empires IV Deluxe",purchase,1.0,0 -77194239,"Space Empires V",purchase,1.0,0 -77194239,"Starbound - Unstable",purchase,1.0,0 -77194239,"Star Wars - Battlefront II",purchase,1.0,0 -77194239,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -77194239,"Star Wars Dark Forces",purchase,1.0,0 -77194239,"Star Wars Empire at War Gold",purchase,1.0,0 -77194239,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -77194239,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -77194239,"Star Wars Republic Commando",purchase,1.0,0 -77194239,"Star Wars Starfighter",purchase,1.0,0 -77194239,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -77194239,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -77194239,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -77194239,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -77194239,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -77194239,"The Witcher Enhanced Edition",purchase,1.0,0 -77194239,"Trine",purchase,1.0,0 -77194239,"Unreal Tournament 2004",purchase,1.0,0 -77194239,"Unreal Tournament Game of the Year Edition",purchase,1.0,0 -77194239,"Warhammer End Times - Vermintide Sigmar's Blessing",purchase,1.0,0 -77194239,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -77194239,"World War III Black Gold",purchase,1.0,0 -77194239,"XCOM Enemy Within",purchase,1.0,0 -77194239,"X Rebirth",purchase,1.0,0 -196059860,"Sid Meier's Civilization V",purchase,1.0,0 -196059860,"Sid Meier's Civilization V",play,1.8,0 -196059860,"Grand Theft Auto IV",purchase,1.0,0 -196059860,"Grand Theft Auto IV",play,1.1,0 -196059860,"The Elder Scrolls V Skyrim",purchase,1.0,0 -196059860,"The Elder Scrolls V Skyrim",play,0.9,0 -196059860,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -196059860,"S.T.A.L.K.E.R. Clear Sky",play,0.7,0 -196059860,"Tropico 4",purchase,1.0,0 -196059860,"Tropico 4",play,0.3,0 -196059860,"Among Ripples",purchase,1.0,0 -196059860,"Anarchy Arcade",purchase,1.0,0 -196059860,"Deponia",purchase,1.0,0 -196059860,"Dethroned!",purchase,1.0,0 -196059860,"Double Action Boogaloo",purchase,1.0,0 -196059860,"Fistful of Frags",purchase,1.0,0 -196059860,"Gear Up",purchase,1.0,0 -196059860,"Heroes & Generals",purchase,1.0,0 -196059860,"Lambda Wars Beta",purchase,1.0,0 -196059860,"Magic Barrage - Bitferno",purchase,1.0,0 -196059860,"Magicka",purchase,1.0,0 -196059860,"Magicka Wizard Wars",purchase,1.0,0 -196059860,"Moonbase Alpha",purchase,1.0,0 -196059860,"Mount & Blade With Fire and Sword",purchase,1.0,0 -196059860,"Nosgoth",purchase,1.0,0 -196059860,"Prime World Defenders",purchase,1.0,0 -196059860,"RaceRoom Racing Experience ",purchase,1.0,0 -196059860,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -196059860,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -196059860,"Star Trek Online",purchase,1.0,0 -196059860,"System Shock 2",purchase,1.0,0 -196059860,"Thinking with Time Machine",purchase,1.0,0 -196059860,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -196059860,"Toribash",purchase,1.0,0 -196059860,"To the Moon",purchase,1.0,0 -196059860,"Unturned",purchase,1.0,0 -196059860,"Warframe",purchase,1.0,0 -196059860,"World of Guns Gun Disassembly",purchase,1.0,0 -12583476,"Counter-Strike Source",purchase,1.0,0 -12583476,"Counter-Strike Source",play,0.3,0 -12583476,"Half-Life 2",purchase,1.0,0 -12583476,"Half-Life 2 Deathmatch",purchase,1.0,0 -12583476,"Half-Life 2 Lost Coast",purchase,1.0,0 -59713285,"Insurgency",purchase,1.0,0 -59713285,"Insurgency",play,145.0,0 -59713285,"Empire Total War",purchase,1.0,0 -59713285,"Empire Total War",play,63.0,0 -59713285,"Counter-Strike Global Offensive",purchase,1.0,0 -59713285,"Counter-Strike Global Offensive",play,13.3,0 -59713285,"Quake Live",purchase,1.0,0 -59713285,"Quake Live",play,0.2,0 -70398582,"Sid Meier's Civilization V",purchase,1.0,0 -70398582,"Sid Meier's Civilization V",play,362.0,0 -70398582,"Tomb Raider",purchase,1.0,0 -70398582,"Tomb Raider",play,81.0,0 -70398582,"Endless Space",purchase,1.0,0 -70398582,"Endless Space",play,55.0,0 -70398582,"Outcast 1.1",purchase,1.0,0 -70398582,"Outcast 1.1",play,49.0,0 -70398582,"Tesla Effect",purchase,1.0,0 -70398582,"Tesla Effect",play,36.0,0 -70398582,"Mafia II",purchase,1.0,0 -70398582,"Mafia II",play,32.0,0 -70398582,"Alan Wake",purchase,1.0,0 -70398582,"Alan Wake",play,29.0,0 -70398582,"Memento Mori 2",purchase,1.0,0 -70398582,"Memento Mori 2",play,25.0,0 -70398582,"Secret Files Puritas Cordis",purchase,1.0,0 -70398582,"Secret Files Puritas Cordis",play,24.0,0 -70398582,"Gray Matter",purchase,1.0,0 -70398582,"Gray Matter",play,24.0,0 -70398582,"Broken Sword 5 - the Serpent's Curse",purchase,1.0,0 -70398582,"Broken Sword 5 - the Serpent's Curse",play,22.0,0 -70398582,"Grim Fandango Remastered",purchase,1.0,0 -70398582,"Grim Fandango Remastered",play,18.1,0 -70398582,"The Book of Unwritten Tales 2",purchase,1.0,0 -70398582,"The Book of Unwritten Tales 2",play,14.5,0 -70398582,"realMyst Masterpiece Edition",purchase,1.0,0 -70398582,"realMyst Masterpiece Edition",play,13.0,0 -70398582,"Sherlock Holmes Crimes and Punishments",purchase,1.0,0 -70398582,"Sherlock Holmes Crimes and Punishments",play,7.5,0 -70398582,"Secret Files Sam Peters",purchase,1.0,0 -70398582,"Secret Files Sam Peters",play,4.5,0 -70398582,"The Ship Single Player",purchase,1.0,0 -70398582,"The Ship Single Player",play,2.8,0 -70398582,"Dreamfall Chapters",purchase,1.0,0 -70398582,"Dreamfall Chapters",play,0.6,0 -70398582,"The Ship Tutorial",purchase,1.0,0 -70398582,"The Ship Tutorial",play,0.3,0 -70398582,"Haunted",purchase,1.0,0 -70398582,"Haunted",play,0.2,0 -70398582,"The Ship",purchase,1.0,0 -70398582,"Deponia",purchase,1.0,0 -70398582,"Half-Life 2 Deathmatch",purchase,1.0,0 -70398582,"Half-Life 2 Lost Coast",purchase,1.0,0 -70398582,"Secret Files Tunguska",purchase,1.0,0 -255458903,"Dota 2",purchase,1.0,0 -255458903,"Dota 2",play,1.1,0 -141118871,"Warframe",purchase,1.0,0 -141118871,"Warframe",play,1031.0,0 -141118871,"Warface",purchase,1.0,0 -141118871,"Warface",play,137.0,0 -141118871,"Dirty Bomb",purchase,1.0,0 -141118871,"Dirty Bomb",play,44.0,0 -141118871,"Path of Exile",purchase,1.0,0 -141118871,"Path of Exile",play,8.7,0 -141118871,"Serious Sam HD The Second Encounter",purchase,1.0,0 -141118871,"Serious Sam HD The Second Encounter",play,7.5,0 -141118871,"Tribes Ascend",purchase,1.0,0 -141118871,"PlanetSide 2",purchase,1.0,0 -237044358,"Team Fortress 2",purchase,1.0,0 -237044358,"Team Fortress 2",play,40.0,0 -237044358,"Besiege",purchase,1.0,0 -237044358,"Besiege",play,5.3,0 -237044358,"Goat Simulator",purchase,1.0,0 -237044358,"Goat Simulator",play,5.2,0 -237044358,"Robocraft",purchase,1.0,0 -237044358,"Robocraft",play,1.6,0 -237044358,"Five Nights at Freddy's",purchase,1.0,0 -237044358,"Five Nights at Freddy's",play,0.9,0 -237044358,"Five Nights at Freddy's 3",purchase,1.0,0 -237044358,"Five Nights at Freddy's 3",play,0.6,0 -237044358,"Five Nights at Freddy's 2",purchase,1.0,0 -237044358,"Five Nights at Freddy's 2",play,0.5,0 -237044358,"They Breathe",purchase,1.0,0 -282565204,"The Forest",purchase,1.0,0 -282565204,"The Forest",play,34.0,0 -27116257,"Half-Life",purchase,1.0,0 -27116257,"Half-Life Blue Shift",purchase,1.0,0 -27116257,"Half-Life Opposing Force",purchase,1.0,0 -27116257,"Team Fortress Classic",purchase,1.0,0 -216514851,"Dota 2",purchase,1.0,0 -216514851,"Dota 2",play,144.0,0 -119211507,"Football Manager 2013",purchase,1.0,0 -119211507,"Football Manager 2013",play,63.0,0 -123670509,"Team Fortress 2",purchase,1.0,0 -123670509,"Team Fortress 2",play,1309.0,0 -190369653,"Unturned",purchase,1.0,0 -190369653,"Unturned",play,0.6,0 -138429058,"Dota 2",purchase,1.0,0 -138429058,"Dota 2",play,20.0,0 -173616173,"Dota 2",purchase,1.0,0 -173616173,"Dota 2",play,0.8,0 -202620479,"Football Manager 2015",purchase,1.0,0 -202620479,"Football Manager 2015",play,302.0,0 -202620479,"Football Manager 2016",purchase,1.0,0 -202620479,"Football Manager 2016",play,179.0,0 -95817961,"Team Fortress 2",purchase,1.0,0 -95817961,"Team Fortress 2",play,1.2,0 -235856211,"Sins of a Dark Age",purchase,1.0,0 -235856211,"Sins of a Dark Age",play,2.8,0 -273437868,"FEZ",purchase,1.0,0 -273437868,"FEZ",play,24.0,0 -273437868,"Child of Light",purchase,1.0,0 -273437868,"Child of Light",play,17.1,0 -273437868,"Portal 2",purchase,1.0,0 -273437868,"Portal 2",play,7.4,0 -273437868,"Super Meat Boy",purchase,1.0,0 -273437868,"Super Meat Boy",play,3.2,0 -273437868,"Outland",purchase,1.0,0 -273437868,"Outland",play,2.5,0 -273437868,"Hook",purchase,1.0,0 -273437868,"Hook",play,2.0,0 -273437868,"Another World",purchase,1.0,0 -273437868,"Another World",play,2.0,0 -273437868,"Mercenary Kings",purchase,1.0,0 -273437868,"Mercenary Kings",play,1.9,0 -273437868,"Angry Video Game Nerd Adventures",purchase,1.0,0 -273437868,"Angry Video Game Nerd Adventures",play,1.7,0 -273437868,"You Have to Win the Game",purchase,1.0,0 -273437868,"You Have to Win the Game",play,1.7,0 -273437868,"The Floor is Jelly",purchase,1.0,0 -273437868,"The Floor is Jelly",play,0.8,0 -273437868,"Half-Life Blue Shift",purchase,1.0,0 -273437868,"Half-Life Blue Shift",play,0.6,0 -273437868,"Fallen Enchantress Legendary Heroes",purchase,1.0,0 -273437868,"Fallen Enchantress Legendary Heroes",play,0.6,0 -273437868,"Portal Stories Mel",purchase,1.0,0 -273437868,"Portal Stories Mel",play,0.3,0 -273437868,"POSTAL 2",purchase,1.0,0 -273437868,"POSTAL 2",play,0.3,0 -273437868,"The Dream Machine",purchase,1.0,0 -273437868,"The Dream Machine",play,0.1,0 -273437868,"BEEP",purchase,1.0,0 -273437868,"Half-Life",purchase,1.0,0 -273437868,"Half-Life Opposing Force",purchase,1.0,0 -273437868,"Psychonauts",purchase,1.0,0 -273437868,"Psychonauts Demo",purchase,1.0,0 -273437868,"Team Fortress Classic",purchase,1.0,0 -273437868,"The Binding of Isaac",purchase,1.0,0 -137797636,"Team Fortress 2",purchase,1.0,0 -137797636,"Team Fortress 2",play,2.1,0 -238733215,"Counter-Strike Global Offensive",purchase,1.0,0 -238733215,"Counter-Strike Global Offensive",play,37.0,0 -238733215,"War Thunder",purchase,1.0,0 -239260834,"Team Fortress 2",purchase,1.0,0 -239260834,"Team Fortress 2",play,13.0,0 -127851637,"Dota 2",purchase,1.0,0 -127851637,"Dota 2",play,974.0,0 -268562040,"Dota 2",purchase,1.0,0 -268562040,"Dota 2",play,473.0,0 -268562040,"Aura Kingdom",purchase,1.0,0 -268562040,"C9",purchase,1.0,0 -268562040,"City of Steam Arkadia",purchase,1.0,0 -268562040,"Dirty Bomb",purchase,1.0,0 -268562040,"Fiesta Online NA",purchase,1.0,0 -268562040,"FreeStyle2 Street Basketball",purchase,1.0,0 -268562040,"GunZ 2 The Second Duel",purchase,1.0,0 -268562040,"Heroes & Generals",purchase,1.0,0 -268562040,"Neverwinter",purchase,1.0,0 -268562040,"Ragnarok Online 2",purchase,1.0,0 -268562040,"Running Shadow",purchase,1.0,0 -268562040,"Solstice Arena",purchase,1.0,0 -268562040,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -268562040,"Unturned",purchase,1.0,0 -268562040,"Warframe",purchase,1.0,0 -35433662,"Grand Theft Auto V",purchase,1.0,0 -35433662,"Grand Theft Auto V",play,67.0,0 -35433662,"APB Reloaded",purchase,1.0,0 -35433662,"APB Reloaded",play,2.0,0 -35433662,"Warframe",purchase,1.0,0 -35433662,"Warframe",play,1.3,0 -35433662,"Serious Sam HD The Second Encounter",purchase,1.0,0 -35433662,"Serious Sam HD The Second Encounter",play,0.7,0 -35433662,"Team Fortress 2",purchase,1.0,0 -35433662,"Team Fortress 2",play,0.2,0 -93341815,"Borderlands 2",purchase,1.0,0 -93341815,"Borderlands 2",play,60.0,0 -93341815,"Age of Empires III Complete Collection",purchase,1.0,0 -93341815,"Age of Empires III Complete Collection",play,23.0,0 -93341815,"Half-Life 2",purchase,1.0,0 -93341815,"Half-Life 2",play,14.6,0 -93341815,"Left 4 Dead 2",purchase,1.0,0 -93341815,"Left 4 Dead 2",play,13.8,0 -93341815,"FATE",purchase,1.0,0 -93341815,"FATE",play,13.6,0 -93341815,"Robocraft",purchase,1.0,0 -93341815,"Robocraft",play,12.5,0 -93341815,"Borderlands The Pre-Sequel",purchase,1.0,0 -93341815,"Borderlands The Pre-Sequel",play,10.0,0 -93341815,"Grand Theft Auto San Andreas",purchase,1.0,0 -93341815,"Grand Theft Auto San Andreas",play,5.8,0 -93341815,"Portal",purchase,1.0,0 -93341815,"Portal",play,5.1,0 -93341815,"Warframe",purchase,1.0,0 -93341815,"Warframe",play,4.6,0 -93341815,"RollerCoaster Tycoon 2 Triple Thrill Pack",purchase,1.0,0 -93341815,"RollerCoaster Tycoon 2 Triple Thrill Pack",play,4.4,0 -93341815,"Fallout New Vegas",purchase,1.0,0 -93341815,"Fallout New Vegas",play,3.3,0 -93341815,"Team Fortress 2",purchase,1.0,0 -93341815,"Team Fortress 2",play,3.2,0 -93341815,"Left 4 Dead",purchase,1.0,0 -93341815,"Left 4 Dead",play,3.1,0 -93341815,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -93341815,"Injustice Gods Among Us Ultimate Edition",play,2.9,0 -93341815,"Borderlands",purchase,1.0,0 -93341815,"Borderlands",play,2.5,0 -93341815,"Audiosurf",purchase,1.0,0 -93341815,"Audiosurf",play,2.5,0 -93341815,"DisplayFusion",purchase,1.0,0 -93341815,"DCS World",purchase,1.0,0 -93341815,"Portal 2",purchase,1.0,0 -93341815,"And Yet It Moves",purchase,1.0,0 -93341815,"BIT.TRIP RUNNER",purchase,1.0,0 -93341815,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -93341815,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -93341815,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -93341815,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -93341815,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -93341815,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -93341815,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -93341815,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -93341815,"Cogs",purchase,1.0,0 -93341815,"Crayon Physics Deluxe",purchase,1.0,0 -93341815,"Grand Theft Auto San Andreas",purchase,1.0,0 -93341815,"Guacamelee! Gold Edition",purchase,1.0,0 -93341815,"Half-Life 2 Episode One",purchase,1.0,0 -93341815,"Half-Life 2 Episode Two",purchase,1.0,0 -93341815,"Half-Life 2 Lost Coast",purchase,1.0,0 -93341815,"Hammerfight",purchase,1.0,0 -93341815,"Jamestown",purchase,1.0,0 -93341815,"Kerbal Space Program",purchase,1.0,0 -93341815,"NightSky",purchase,1.0,0 -93341815,"Shank",purchase,1.0,0 -93341815,"Super Meat Boy",purchase,1.0,0 -93341815,"VVVVVV",purchase,1.0,0 -210152510,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -210152510,"Call of Duty Modern Warfare 3 - Multiplayer",play,21.0,0 -210152510,"Aura Kingdom",purchase,1.0,0 -210152510,"Call of Duty Modern Warfare 3",purchase,1.0,0 -210152510,"Dead Island Epidemic",purchase,1.0,0 -210152510,"Defiance",purchase,1.0,0 -210152510,"Nosgoth",purchase,1.0,0 -210152510,"Royal Quest",purchase,1.0,0 -136836233,"Team Fortress 2",purchase,1.0,0 -136836233,"Team Fortress 2",play,0.2,0 -86256882,"Dota 2",purchase,1.0,0 -86256882,"Dota 2",play,6015.0,0 -86256882,"Team Fortress 2",purchase,1.0,0 -86256882,"Team Fortress 2",play,68.0,0 -86256882,"Borderlands 2",purchase,1.0,0 -86256882,"Borderlands 2",play,52.0,0 -86256882,"Deus Ex Human Revolution",purchase,1.0,0 -86256882,"Deus Ex Human Revolution",play,51.0,0 -86256882,"The Binding of Isaac",purchase,1.0,0 -86256882,"The Binding of Isaac",play,27.0,0 -86256882,"Half-Life 2",purchase,1.0,0 -86256882,"Half-Life 2",play,16.5,0 -86256882,"BioShock Infinite",purchase,1.0,0 -86256882,"BioShock Infinite",play,15.6,0 -86256882,"Bastion",purchase,1.0,0 -86256882,"Bastion",play,10.1,0 -86256882,"Antichamber",purchase,1.0,0 -86256882,"Antichamber",play,9.6,0 -86256882,"Road Not Taken",purchase,1.0,0 -86256882,"Road Not Taken",play,8.2,0 -86256882,"Portal 2",purchase,1.0,0 -86256882,"Portal 2",play,7.7,0 -86256882,"Portal",purchase,1.0,0 -86256882,"Portal",play,6.1,0 -86256882,"Half-Life 2 Episode Two",purchase,1.0,0 -86256882,"Half-Life 2 Episode Two",play,5.9,0 -86256882,"Trine",purchase,1.0,0 -86256882,"Trine",play,5.6,0 -86256882,"Gunpoint",purchase,1.0,0 -86256882,"Gunpoint",play,3.9,0 -86256882,"Half-Life 2 Episode One",purchase,1.0,0 -86256882,"Half-Life 2 Episode One",play,3.7,0 -86256882,"Capsized",purchase,1.0,0 -86256882,"Capsized",play,1.9,0 -86256882,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -86256882,"Tiny and Big Grandpa's Leftovers",play,1.7,0 -86256882,"3DMark",purchase,1.0,0 -86256882,"3DMark",play,1.6,0 -86256882,"Hotline Miami",purchase,1.0,0 -86256882,"Hotline Miami",play,1.1,0 -86256882,"Hard Reset",purchase,1.0,0 -86256882,"Hard Reset",play,0.5,0 -86256882,"Arma 2 Operation Arrowhead",purchase,1.0,0 -86256882,"Arma 2",purchase,1.0,0 -86256882,"3DMark API Overhead feature test",purchase,1.0,0 -86256882,"3DMark Cloud Gate benchmark",purchase,1.0,0 -86256882,"3DMark Fire Strike benchmark",purchase,1.0,0 -86256882,"3DMark Ice Storm benchmark",purchase,1.0,0 -86256882,"3DMark Sky Diver benchmark",purchase,1.0,0 -86256882,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -86256882,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -86256882,"Batman Arkham City GOTY",purchase,1.0,0 -86256882,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -86256882,"Batman Arkham Origins - Initiation",purchase,1.0,0 -86256882,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -86256882,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -86256882,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -86256882,"Batman Arkham Knight",purchase,1.0,0 -86256882,"Batman Arkham Origins",purchase,1.0,0 -86256882,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -86256882,"Cave Story+",purchase,1.0,0 -86256882,"Dead Space 2",purchase,1.0,0 -86256882,"Dragon Age Origins",purchase,1.0,0 -86256882,"Half-Life 2 Lost Coast",purchase,1.0,0 -86256882,"Hard Reset Exile DLC",purchase,1.0,0 -86256882,"Metro 2033",purchase,1.0,0 -86256882,"Metro 2033 Redux",purchase,1.0,0 -86256882,"Metro Last Light Redux",purchase,1.0,0 -86256882,"Pillars of Eternity",purchase,1.0,0 -86256882,"Rocket League",purchase,1.0,0 -86256882,"System Shock 2",purchase,1.0,0 -86256882,"Trine 2",purchase,1.0,0 -137531238,"Counter-Strike",purchase,1.0,0 -137531238,"Counter-Strike",play,0.5,0 -137531238,"Counter-Strike Global Offensive",purchase,1.0,0 -137531238,"Counter-Strike Global Offensive",play,0.2,0 -137531238,"Counter-Strike Condition Zero",purchase,1.0,0 -137531238,"Counter-Strike Condition Zero",play,0.2,0 -137531238,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -137531238,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -137531238,"Counter-Strike Source",purchase,1.0,0 -137531238,"Crysis 2 Maximum Edition",purchase,1.0,0 -137531238,"Dead Space",purchase,1.0,0 -137531238,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -137531238,"Medal of Honor(TM) Single Player",purchase,1.0,0 -137531238,"Medal of Honor Pre-Order",purchase,1.0,0 -137531238,"Mirror's Edge",purchase,1.0,0 -250177364,"Cobi Treasure Deluxe",purchase,1.0,0 -259611075,"BLOCKADE 3D",purchase,1.0,0 -259611075,"BLOCKADE 3D",play,7.3,0 -259611075,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -259611075,"Tom Clancy's Ghost Recon Phantoms - EU",play,1.3,0 -259611075,"Team Fortress 2",purchase,1.0,0 -259611075,"Team Fortress 2",play,1.1,0 -259611075,"Robocraft",purchase,1.0,0 -259611075,"Robocraft",play,1.0,0 -259611075,"APB Reloaded",purchase,1.0,0 -259611075,"APB Reloaded",play,0.8,0 -259611075,"Gear Up",purchase,1.0,0 -259611075,"Double Action Boogaloo",purchase,1.0,0 -259611075,"CrimeCraft GangWars",purchase,1.0,0 -259611075,"Heroes & Generals",purchase,1.0,0 -259611075,"Star Conflict",purchase,1.0,0 -118263812,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -118263812,"Kane & Lynch 2 Dog Days",play,4.0,0 -287147708,"Dota 2",purchase,1.0,0 -287147708,"Dota 2",play,1.3,0 -302980730,"The Binding of Isaac Rebirth",purchase,1.0,0 -302980730,"The Binding of Isaac Rebirth",play,26.0,0 -302980730,"Terraria",purchase,1.0,0 -302980730,"Terraria",play,4.6,0 -302980730,"Abducted",purchase,1.0,0 -302980730,"Abducted",play,0.2,0 -275982472,"Dota 2",purchase,1.0,0 -275982472,"Dota 2",play,4.2,0 -105120044,"Football Manager 2012",purchase,1.0,0 -105120044,"Football Manager 2012",play,551.0,0 -228477426,"Caster",purchase,1.0,0 -228477426,"Unturned",purchase,1.0,0 -98882747,"Fallout New Vegas",purchase,1.0,0 -98882747,"Fallout New Vegas",play,99.0,0 -98882747,"The Elder Scrolls V Skyrim",purchase,1.0,0 -98882747,"The Elder Scrolls V Skyrim",play,78.0,0 -98882747,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -98882747,"Fallout New Vegas Dead Money",purchase,1.0,0 -98882747,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -273741196,"Counter-Strike Global Offensive",purchase,1.0,0 -273741196,"Counter-Strike Global Offensive",play,8.5,0 -103729596,"Train Simulator",purchase,1.0,0 -103729596,"Train Simulator",play,240.0,0 -98435340,"Heroes of Hellas 3 Athens",purchase,1.0,0 -98435340,"Heroes of Hellas 3 Athens",play,35.0,0 -98435340,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -98435340,"Plants vs. Zombies Game of the Year",play,5.9,0 -150395329,"Team Fortress 2",purchase,1.0,0 -150395329,"Team Fortress 2",play,607.0,0 -201383036,"Dota 2",purchase,1.0,0 -201383036,"Dota 2",play,2.3,0 -201383036,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -144132703,"Dota 2",purchase,1.0,0 -144132703,"Dota 2",play,7.5,0 -257820973,"AdVenture Capitalist",purchase,1.0,0 -257820973,"AdVenture Capitalist",play,0.3,0 -257820973,"Frozen Free Fall Snowball Fight",purchase,1.0,0 -257820973,"War Thunder",purchase,1.0,0 -195202264,"Dota 2",purchase,1.0,0 -195202264,"Dota 2",play,212.0,0 -32965833,"Half-Life 2",purchase,1.0,0 -32965833,"Half-Life 2",play,0.3,0 -32965833,"Counter-Strike Source",purchase,1.0,0 -32965833,"Half-Life 2 Deathmatch",purchase,1.0,0 -32965833,"Half-Life 2 Episode One",purchase,1.0,0 -32965833,"Half-Life 2 Episode Two",purchase,1.0,0 -32965833,"Half-Life 2 Lost Coast",purchase,1.0,0 -32965833,"Half-Life Source",purchase,1.0,0 -32965833,"Half-Life Deathmatch Source",purchase,1.0,0 -201352784,"Dota 2",purchase,1.0,0 -201352784,"Dota 2",play,0.8,0 -150697950,"Dota 2",purchase,1.0,0 -150697950,"Dota 2",play,0.6,0 -4677023,"Counter-Strike",purchase,1.0,0 -4677023,"Counter-Strike",play,2.8,0 -4677023,"Day of Defeat",purchase,1.0,0 -4677023,"Deathmatch Classic",purchase,1.0,0 -4677023,"Half-Life",purchase,1.0,0 -4677023,"Half-Life Blue Shift",purchase,1.0,0 -4677023,"Half-Life Opposing Force",purchase,1.0,0 -4677023,"Ricochet",purchase,1.0,0 -4677023,"Team Fortress Classic",purchase,1.0,0 -39334748,"Counter-Strike",purchase,1.0,0 -39334748,"Counter-Strike",play,165.0,0 -39334748,"Counter-Strike Global Offensive",purchase,1.0,0 -39334748,"Counter-Strike Global Offensive",play,17.3,0 -39334748,"Counter-Strike Condition Zero",purchase,1.0,0 -39334748,"Counter-Strike Condition Zero",play,14.8,0 -39334748,"Team Fortress 2",purchase,1.0,0 -39334748,"Team Fortress 2",play,10.5,0 -39334748,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -39334748,"Day of Defeat",purchase,1.0,0 -39334748,"Deathmatch Classic",purchase,1.0,0 -39334748,"Escape",purchase,1.0,0 -39334748,"Left 4 Dead 2",purchase,1.0,0 -39334748,"Ricochet",purchase,1.0,0 -39334748,"TERA",purchase,1.0,0 -161085944,"Dota 2",purchase,1.0,0 -161085944,"Dota 2",play,0.2,0 -214291946,"Team Fortress 2",purchase,1.0,0 -214291946,"Team Fortress 2",play,10.1,0 -203092936,"The Elder Scrolls V Skyrim",purchase,1.0,0 -203092936,"The Elder Scrolls V Skyrim",play,84.0,0 -203092936,"Grand Theft Auto V",purchase,1.0,0 -203092936,"Grand Theft Auto V",play,50.0,0 -203092936,"Far Cry 3",purchase,1.0,0 -203092936,"Far Cry 3",play,25.0,0 -203092936,"Team Fortress 2",purchase,1.0,0 -203092936,"Team Fortress 2",play,3.1,0 -203092936,"Far Cry 3 Blood Dragon",purchase,1.0,0 -203092936,"Far Cry 3 Blood Dragon",play,0.8,0 -203092936,"Far Cry",purchase,1.0,0 -203092936,"Far Cry",play,0.3,0 -203092936,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -203092936,"Counter-Strike Nexon Zombies",purchase,1.0,0 -203092936,"Far Cry 2",purchase,1.0,0 -203092936,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -203092936,"Marvel Heroes 2015",purchase,1.0,0 -203092936,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -203092936,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -203092936,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -203092936,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -159683231,"Left 4 Dead 2",purchase,1.0,0 -159683231,"Left 4 Dead 2",play,1.4,0 -189750611,"Dota 2",purchase,1.0,0 -189750611,"Dota 2",play,2.3,0 -167511712,"Orcs Must Die! 2",purchase,1.0,0 -167511712,"Orcs Must Die! 2",play,11.3,0 -167511712,"Sniper Elite V2",purchase,1.0,0 -167511712,"Sniper Elite V2",play,1.5,0 -167511712,"Dota 2",purchase,1.0,0 -167511712,"Dota 2",play,0.6,0 -303986455,"Dota 2",purchase,1.0,0 -303986455,"Dota 2",play,1.5,0 -287973020,"Dirty Bomb",purchase,1.0,0 -287973020,"PlanetSide 2",purchase,1.0,0 -287973020,"Quake Live",purchase,1.0,0 -287973020,"Trove",purchase,1.0,0 -287973020,"Warframe",purchase,1.0,0 -287973020,"War Thunder",purchase,1.0,0 -59219245,"Counter-Strike",purchase,1.0,0 -59219245,"Counter-Strike Condition Zero",purchase,1.0,0 -59219245,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -302465464,"Dota 2",purchase,1.0,0 -302465464,"Dota 2",play,62.0,0 -188198849,"Dota 2",purchase,1.0,0 -188198849,"Dota 2",play,0.6,0 -201052506,"Counter-Strike Nexon Zombies",purchase,1.0,0 -201052506,"Counter-Strike Nexon Zombies",play,0.2,0 -96904911,"Orcs Must Die!",purchase,1.0,0 -96904911,"Orcs Must Die!",play,13.0,0 -254055320,"Running Shadow",purchase,1.0,0 -254055320,"Running Shadow",play,0.1,0 -139166190,"Dota 2",purchase,1.0,0 -139166190,"Dota 2",play,143.0,0 -97818502,"Company of Heroes (New Steam Version)",purchase,1.0,0 -97818502,"Company of Heroes (New Steam Version)",play,28.0,0 -97818502,"The Elder Scrolls V Skyrim",purchase,1.0,0 -97818502,"The Elder Scrolls V Skyrim",play,21.0,0 -97818502,"Serious Sam HD The Second Encounter",purchase,1.0,0 -97818502,"Serious Sam HD The Second Encounter",play,12.4,0 -97818502,"Age of Empires II HD Edition",purchase,1.0,0 -97818502,"Age of Empires II HD Edition",play,12.1,0 -97818502,"Warframe",purchase,1.0,0 -97818502,"Warframe",play,9.5,0 -97818502,"Dota 2",purchase,1.0,0 -97818502,"Dota 2",play,2.3,0 -97818502,"Far Cry 3",purchase,1.0,0 -97818502,"Far Cry 3",play,2.3,0 -97818502,"Dirty Bomb",purchase,1.0,0 -97818502,"Dirty Bomb",play,2.0,0 -97818502,"Trove",purchase,1.0,0 -97818502,"Age of Empires II HD The Forgotten",purchase,1.0,0 -97818502,"Company of Heroes",purchase,1.0,0 -97818502,"Far Cry",purchase,1.0,0 -97818502,"Far Cry 2",purchase,1.0,0 -97818502,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -97818502,"Far Cry 3 Blood Dragon",purchase,1.0,0 -229173482,"Dota 2",purchase,1.0,0 -229173482,"Dota 2",play,9.4,0 -229173482,"BLOCKADE 3D",purchase,1.0,0 -229173482,"BLOCKADE 3D",play,0.1,0 -229173482,"Heroes & Generals",purchase,1.0,0 -281549566,"Team Fortress 2",purchase,1.0,0 -281549566,"Team Fortress 2",play,6.6,0 -241568417,"GunZ 2 The Second Duel",purchase,1.0,0 -241568417,"GunZ 2 The Second Duel",play,1.0,0 -206567289,"Dota 2",purchase,1.0,0 -206567289,"Dota 2",play,48.0,0 -38736263,"Team Fortress 2",purchase,1.0,0 -38736263,"Team Fortress 2",play,0.3,0 -86732465,"Dota 2",purchase,1.0,0 -86732465,"Dota 2",play,2141.0,0 -86732465,"Counter-Strike",purchase,1.0,0 -86732465,"Counter-Strike",play,1115.0,0 -86732465,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -86732465,"Call of Duty Black Ops II - Multiplayer",play,81.0,0 -86732465,"Counter-Strike Global Offensive",purchase,1.0,0 -86732465,"Counter-Strike Global Offensive",play,5.3,0 -86732465,"Need for Speed Hot Pursuit",purchase,1.0,0 -86732465,"Need for Speed Hot Pursuit",play,1.3,0 -86732465,"Age of Empires III Complete Collection",purchase,1.0,0 -86732465,"Age of Empires III Complete Collection",play,1.0,0 -86732465,"Call of Duty Black Ops II",purchase,1.0,0 -86732465,"Call of Duty Black Ops II",play,0.7,0 -86732465,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -86732465,"Counter-Strike Condition Zero Deleted Scenes",play,0.6,0 -86732465,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -86732465,"Counter-Strike Condition Zero",purchase,1.0,0 -86732465,"Crash Time II",purchase,1.0,0 -86732465,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -86732465,"Grand Theft Auto IV",purchase,1.0,0 -86732465,"Left 4 Dead 2",purchase,1.0,0 -86732465,"Robocraft",purchase,1.0,0 -86732465,"Sleeping Dogs",purchase,1.0,0 -86732465,"The Expendabros",purchase,1.0,0 -207805383,"Dota 2",purchase,1.0,0 -207805383,"Dota 2",play,1.6,0 -275798890,"Trove",purchase,1.0,0 -275798890,"Trove",play,43.0,0 -275798890,"Team Fortress 2",purchase,1.0,0 -275798890,"Team Fortress 2",play,5.4,0 -248549548,"The Elder Scrolls V Skyrim",purchase,1.0,0 -248549548,"The Elder Scrolls V Skyrim",play,215.0,0 -248549548,"Fallout New Vegas",purchase,1.0,0 -248549548,"Fallout New Vegas",play,196.0,0 -248549548,"Torchlight II",purchase,1.0,0 -248549548,"Torchlight II",play,43.0,0 -248549548,"Borderlands 2",purchase,1.0,0 -248549548,"Borderlands 2",play,33.0,0 -248549548,"The Legend of Heroes Trails in the Sky",purchase,1.0,0 -248549548,"The Legend of Heroes Trails in the Sky",play,19.9,0 -248549548,"Borderlands",purchase,1.0,0 -248549548,"Borderlands",play,17.5,0 -248549548,"Pillars of Eternity",purchase,1.0,0 -248549548,"Pillars of Eternity",play,8.3,0 -248549548,"Torchlight",purchase,1.0,0 -248549548,"Torchlight",play,7.3,0 -248549548,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -248549548,"Fallout 3 - Game of the Year Edition",play,3.1,0 -248549548,"XCOM Enemy Unknown",purchase,1.0,0 -248549548,"XCOM Enemy Unknown",play,3.0,0 -248549548,"Terraria",purchase,1.0,0 -248549548,"Terraria",play,2.7,0 -248549548,"Valkyria Chronicles",purchase,1.0,0 -248549548,"Valkyria Chronicles",play,1.0,0 -248549548,"Bastion",purchase,1.0,0 -248549548,"Bastion",play,0.5,0 -248549548,"Legend of Grimrock",purchase,1.0,0 -248549548,"Legend of Grimrock",play,0.4,0 -248549548,"The Witcher Enhanced Edition",purchase,1.0,0 -248549548,"The Witcher Enhanced Edition",play,0.4,0 -248549548,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -248549548,"The Elder Scrolls IV Oblivion ",play,0.4,0 -248549548,"The Binding of Isaac",purchase,1.0,0 -248549548,"The Binding of Isaac",play,0.3,0 -248549548,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -248549548,"Dark Souls Prepare to Die Edition",play,0.3,0 -248549548,"Rogue Legacy",purchase,1.0,0 -248549548,"Rogue Legacy",play,0.2,0 -248549548,"Amnesia The Dark Descent",purchase,1.0,0 -248549548,"BioShock",purchase,1.0,0 -248549548,"BioShock 2",purchase,1.0,0 -248549548,"BioShock Infinite",purchase,1.0,0 -248549548,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -248549548,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -248549548,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -248549548,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -248549548,"Child of Light",purchase,1.0,0 -248549548,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -248549548,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -248549548,"Dust An Elysian Tail",purchase,1.0,0 -248549548,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -248549548,"Fallout New Vegas Dead Money",purchase,1.0,0 -248549548,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -248549548,"Saints Row 2",purchase,1.0,0 -248549548,"Saints Row The Third",purchase,1.0,0 -248549548,"Saints Row IV",purchase,1.0,0 -248549548,"South Park The Stick of Truth",purchase,1.0,0 -248549548,"The Bureau XCOM Declassified",purchase,1.0,0 -248549548,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -248549548,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -248549548,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -248549548,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -248549548,"Transistor",purchase,1.0,0 -248549548,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -248549548,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -248549548,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -248549548,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -257724052,"Counter-Strike Global Offensive",purchase,1.0,0 -257724052,"Counter-Strike Global Offensive",play,213.0,0 -257724052,"Dota 2",purchase,1.0,0 -257724052,"Dota 2",play,177.0,0 -257724052,"Counter-Strike",purchase,1.0,0 -257724052,"Counter-Strike",play,2.0,0 -257724052,"Castle Crashers",purchase,1.0,0 -257724052,"Castle Crashers",play,0.5,0 -257724052,"War Thunder",purchase,1.0,0 -257724052,"War Thunder",play,0.2,0 -257724052,"Counter-Strike Condition Zero",purchase,1.0,0 -257724052,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -257724052,"Counter-Strike Source",purchase,1.0,0 -89803146,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -89803146,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,1.9,0 -89803146,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -89803146,"Warhammer 40,000 Dawn of War II Retribution",play,0.2,0 -89803146,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -207869089,"Unturned",purchase,1.0,0 -207869089,"Unturned",play,49.0,0 -207869089,"Dota 2",purchase,1.0,0 -207869089,"Dota 2",play,46.0,0 -207869089,"TERA",purchase,1.0,0 -207869089,"TERA",play,35.0,0 -207869089,"Counter-Strike Global Offensive",purchase,1.0,0 -207869089,"Counter-Strike Global Offensive",play,29.0,0 -207869089,"No More Room in Hell",purchase,1.0,0 -207869089,"No More Room in Hell",play,14.2,0 -207869089,"FreeStyle2 Street Basketball",purchase,1.0,0 -207869089,"FreeStyle2 Street Basketball",play,6.7,0 -207869089,"H1Z1",purchase,1.0,0 -207869089,"H1Z1",play,4.5,0 -207869089,"The Ship",purchase,1.0,0 -207869089,"The Ship",play,3.3,0 -207869089,"Team Fortress 2",purchase,1.0,0 -207869089,"Team Fortress 2",play,1.4,0 -207869089,"Robocraft",purchase,1.0,0 -207869089,"Robocraft",play,1.0,0 -207869089,"Trove",purchase,1.0,0 -207869089,"Trove",play,0.4,0 -207869089,"APB Reloaded",purchase,1.0,0 -207869089,"APB Reloaded",play,0.3,0 -207869089,"Brick-Force",purchase,1.0,0 -207869089,"Dirty Bomb",purchase,1.0,0 -207869089,"Escape Machines",purchase,1.0,0 -207869089,"H1Z1 Test Server",purchase,1.0,0 -207869089,"Soldier Front 2",purchase,1.0,0 -207869089,"Spiral Knights",purchase,1.0,0 -207869089,"The Ship Single Player",purchase,1.0,0 -207869089,"The Ship Tutorial",purchase,1.0,0 -207869089,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -72538505,"Serious Sam HD The Second Encounter",purchase,1.0,0 -72538505,"Serious Sam HD The Second Encounter",play,0.6,0 -278801828,"Dota 2",purchase,1.0,0 -278801828,"Dota 2",play,50.0,0 -128207897,"Dota 2",purchase,1.0,0 -128207897,"Dota 2",play,695.0,0 -128207897,"Counter-Strike Source",purchase,1.0,0 -128207897,"Counter-Strike Source",play,54.0,0 -128207897,"Unturned",purchase,1.0,0 -128207897,"Unturned",play,45.0,0 -128207897,"Counter-Strike Global Offensive",purchase,1.0,0 -128207897,"Counter-Strike Global Offensive",play,41.0,0 -128207897,"PROTOTYPE 2",purchase,1.0,0 -128207897,"PROTOTYPE 2",play,16.8,0 -128207897,"Warface",purchase,1.0,0 -128207897,"Warface",play,15.8,0 -128207897,"Garry's Mod",purchase,1.0,0 -128207897,"Garry's Mod",play,14.9,0 -128207897,"Grand Theft Auto IV",purchase,1.0,0 -128207897,"Grand Theft Auto IV",play,14.0,0 -128207897,"POSTAL 2",purchase,1.0,0 -128207897,"POSTAL 2",play,13.6,0 -128207897,"DiRT 3 Complete Edition",purchase,1.0,0 -128207897,"DiRT 3 Complete Edition",play,13.4,0 -128207897,"Team Fortress 2",purchase,1.0,0 -128207897,"Team Fortress 2",play,10.6,0 -128207897,"Battlefield Bad Company 2",purchase,1.0,0 -128207897,"Battlefield Bad Company 2",play,7.5,0 -128207897,"BattleBlock Theater",purchase,1.0,0 -128207897,"BattleBlock Theater",play,7.1,0 -128207897,"Dirty Bomb",purchase,1.0,0 -128207897,"Dirty Bomb",play,6.8,0 -128207897,"Left 4 Dead 2",purchase,1.0,0 -128207897,"Left 4 Dead 2",play,6.6,0 -128207897,"PAYDAY The Heist",purchase,1.0,0 -128207897,"PAYDAY The Heist",play,5.8,0 -128207897,"Saints Row The Third",purchase,1.0,0 -128207897,"Saints Row The Third",play,5.5,0 -128207897,"Urban Trial Freestyle",purchase,1.0,0 -128207897,"Urban Trial Freestyle",play,4.1,0 -128207897,"APB Reloaded",purchase,1.0,0 -128207897,"APB Reloaded",play,3.3,0 -128207897,"ACE - Arena Cyber Evolution",purchase,1.0,0 -128207897,"ACE - Arena Cyber Evolution",play,3.1,0 -128207897,"Sniper Ghost Warrior 2",purchase,1.0,0 -128207897,"Sniper Ghost Warrior 2",play,2.7,0 -128207897,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -128207897,"Tom Clancy's Ghost Recon Phantoms - EU",play,1.6,0 -128207897,"Dead Island Epidemic",purchase,1.0,0 -128207897,"Dead Island Epidemic",play,1.3,0 -128207897,"RaceRoom Racing Experience ",purchase,1.0,0 -128207897,"RaceRoom Racing Experience ",play,1.2,0 -128207897,"Solstice Arena",purchase,1.0,0 -128207897,"Solstice Arena",play,1.0,0 -128207897,"Nosgoth",purchase,1.0,0 -128207897,"Nosgoth",play,0.8,0 -128207897,"F.E.A.R. Online",purchase,1.0,0 -128207897,"F.E.A.R. Online",play,0.7,0 -128207897,"Crash Time II",purchase,1.0,0 -128207897,"Crash Time II",play,0.6,0 -128207897,"Block N Load",purchase,1.0,0 -128207897,"Block N Load",play,0.5,0 -128207897,"Pool Nation",purchase,1.0,0 -128207897,"Pool Nation",play,0.4,0 -128207897,"Heroes & Generals",purchase,1.0,0 -128207897,"Heroes & Generals",play,0.3,0 -128207897,"RACE 07",purchase,1.0,0 -128207897,"RACE 07",play,0.3,0 -128207897,"Last Knight Rogue Rider Edition",purchase,1.0,0 -128207897,"Last Knight Rogue Rider Edition",play,0.2,0 -128207897,"GRID",purchase,1.0,0 -128207897,"GRID",play,0.2,0 -128207897,"Huntsman - The Orphanage Halloween Edition",purchase,1.0,0 -128207897,"Huntsman - The Orphanage Halloween Edition",play,0.1,0 -128207897,"Synergy",purchase,1.0,0 -128207897,"Synergy",play,0.1,0 -128207897,"America's Army Proving Grounds",purchase,1.0,0 -128207897,"America's Army Proving Grounds",play,0.1,0 -128207897,"Robocraft",purchase,1.0,0 -128207897,"Blacklight Retribution",purchase,1.0,0 -128207897,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -128207897,"GTR Evolution",purchase,1.0,0 -128207897,"Bloop",purchase,1.0,0 -128207897,"Dark Matter",purchase,1.0,0 -128207897,"Hacker Evolution Duality",purchase,1.0,0 -128207897,"La Tale",purchase,1.0,0 -128207897,"NEOTOKYO",purchase,1.0,0 -128207897,"Nikopol Secrets of the Immortals",purchase,1.0,0 -128207897,"Pitiri 1977",purchase,1.0,0 -128207897,"Reversion - The Escape",purchase,1.0,0 -128207897,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -128207897,"Starion Tactics",purchase,1.0,0 -128207897,"Storm in a Teacup",purchase,1.0,0 -128207897,"Streets of Chaos",purchase,1.0,0 -128207897,"The 39 Steps",purchase,1.0,0 -128207897,"Uriel's Chasm",purchase,1.0,0 -128207897,"WARMODE",purchase,1.0,0 -148499580,"Dota 2",purchase,1.0,0 -148499580,"Dota 2",play,2.7,0 -246620676,"InMind VR",purchase,1.0,0 -246620676,"Marvel Heroes 2015",purchase,1.0,0 -246620676,"RIFT",purchase,1.0,0 -64582313,"Supreme Commander 2",purchase,1.0,0 -64582313,"Supreme Commander 2",play,392.0,0 -100431715,"Half-Life 2",purchase,1.0,0 -100431715,"Half-Life 2",play,11.6,0 -100431715,"Cities Skylines",purchase,1.0,0 -100431715,"Cities Skylines",play,11.1,0 -100431715,"Fallout New Vegas",purchase,1.0,0 -100431715,"Fallout New Vegas",play,1.8,0 -100431715,"Max Payne 3",purchase,1.0,0 -100431715,"Max Payne 3",play,1.3,0 -100431715,"BioShock Infinite",purchase,1.0,0 -100431715,"BioShock Infinite",play,1.0,0 -100431715,"Portal",purchase,1.0,0 -100431715,"Portal",play,0.9,0 -100431715,"Half-Life 2 Lost Coast",purchase,1.0,0 -100431715,"Half-Life 2 Lost Coast",play,0.5,0 -100431715,"Portal 2",purchase,1.0,0 -100431715,"Portal 2",play,0.2,0 -100431715,"Mafia II",purchase,1.0,0 -100431715,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -100431715,"Fallout New Vegas Dead Money",purchase,1.0,0 -100431715,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -100431715,"Half-Life 2 Episode One",purchase,1.0,0 -100431715,"Half-Life 2 Episode Two",purchase,1.0,0 -8415723,"Counter-Strike",purchase,1.0,0 -8415723,"Day of Defeat",purchase,1.0,0 -8415723,"Deathmatch Classic",purchase,1.0,0 -8415723,"Half-Life",purchase,1.0,0 -8415723,"Half-Life Blue Shift",purchase,1.0,0 -8415723,"Half-Life Opposing Force",purchase,1.0,0 -8415723,"Ricochet",purchase,1.0,0 -8415723,"Team Fortress Classic",purchase,1.0,0 -51132884,"The Elder Scrolls V Skyrim",purchase,1.0,0 -51132884,"The Elder Scrolls V Skyrim",play,110.0,0 -51132884,"Saints Row The Third",purchase,1.0,0 -51132884,"Saints Row The Third",play,88.0,0 -51132884,"PAYDAY 2",purchase,1.0,0 -51132884,"PAYDAY 2",play,78.0,0 -51132884,"Saints Row IV",purchase,1.0,0 -51132884,"Saints Row IV",play,37.0,0 -51132884,"MapleStory",purchase,1.0,0 -51132884,"MapleStory",play,26.0,0 -51132884,"Need for Speed Hot Pursuit",purchase,1.0,0 -51132884,"Need for Speed Hot Pursuit",play,15.6,0 -51132884,"Spore",purchase,1.0,0 -51132884,"Spore",play,7.6,0 -51132884,"Grand Theft Auto IV",purchase,1.0,0 -51132884,"Grand Theft Auto IV",play,6.4,0 -51132884,"Borderlands 2",purchase,1.0,0 -51132884,"Borderlands 2",play,4.1,0 -51132884,"DYNASTY WARRIORS 8 Xtreme Legends Complete Edition",purchase,1.0,0 -51132884,"DYNASTY WARRIORS 8 Xtreme Legends Complete Edition",play,2.7,0 -51132884,"Counter-Strike Global Offensive",purchase,1.0,0 -51132884,"Counter-Strike Global Offensive",play,2.1,0 -51132884,"The Sims(TM) 3",purchase,1.0,0 -51132884,"The Sims(TM) 3",play,1.3,0 -51132884,"LEGO MARVEL Super Heroes",purchase,1.0,0 -51132884,"LEGO MARVEL Super Heroes",play,0.4,0 -51132884,"Sid Meier's Civilization V",purchase,1.0,0 -51132884,"Sid Meier's Civilization V",play,0.2,0 -51132884,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -51132884,"Batman Arkham City GOTY",purchase,1.0,0 -51132884,"Left 4 Dead 2",purchase,1.0,0 -51132884,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -51132884,"Spore Galactic Adventures",purchase,1.0,0 -51132884,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -298548515,"Dota 2",purchase,1.0,0 -298548515,"Dota 2",play,3.8,0 -242749386,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -242749386,"S.K.I.L.L. - Special Force 2",play,12.4,0 -242749386,"Soccer Manager 2015",purchase,1.0,0 -242749386,"Soccer Manager 2015",play,2.2,0 -242749386,"Team Fortress 2",purchase,1.0,0 -242749386,"Team Fortress 2",play,0.2,0 -301745727,"Unturned",purchase,1.0,0 -301745727,"Unturned",play,4.3,0 -189758309,"Dota 2",purchase,1.0,0 -189758309,"Dota 2",play,3.1,0 -263860732,"Dota 2",purchase,1.0,0 -263860732,"Dota 2",play,0.4,0 -263860732,"Counter-Strike Nexon Zombies",purchase,1.0,0 -263860732,"Nosgoth",purchase,1.0,0 -263860732,"Survarium",purchase,1.0,0 -263860732,"Unturned",purchase,1.0,0 -208050447,"Blacklight Retribution",purchase,1.0,0 -208050447,"LISA",purchase,1.0,0 -208050447,"National Zombie Park",purchase,1.0,0 -208050447,"This War of Mine",purchase,1.0,0 -208050447,"Train Simulator",purchase,1.0,0 -115122875,"Dota 2",purchase,1.0,0 -115122875,"Dota 2",play,0.1,0 -48668697,"Empire Total War",purchase,1.0,0 -48668697,"Empire Total War",play,67.0,0 -48668697,"Saints Row 2",purchase,1.0,0 -48668697,"Saints Row 2",play,12.0,0 -48668697,"Portal",purchase,1.0,0 -5759284,"Counter-Strike",purchase,1.0,0 -5759284,"Counter-Strike",play,10.1,0 -5759284,"Day of Defeat",purchase,1.0,0 -5759284,"Deathmatch Classic",purchase,1.0,0 -5759284,"Half-Life",purchase,1.0,0 -5759284,"Half-Life Blue Shift",purchase,1.0,0 -5759284,"Half-Life Opposing Force",purchase,1.0,0 -5759284,"Ricochet",purchase,1.0,0 -5759284,"Team Fortress Classic",purchase,1.0,0 -293305383,"Undertale",purchase,1.0,0 -293305383,"Undertale",play,11.5,0 -61707834,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -205606245,"Garry's Mod",purchase,1.0,0 -205606245,"Garry's Mod",play,0.8,0 -170848836,"Counter-Strike",purchase,1.0,0 -170848836,"Counter-Strike",play,209.0,0 -170848836,"Counter-Strike Condition Zero",purchase,1.0,0 -170848836,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -106925576,"Team Fortress 2",purchase,1.0,0 -106925576,"Team Fortress 2",play,0.2,0 -106925576,"Zombie Panic Source",purchase,1.0,0 -106925576,"Zombie Panic Source",play,0.1,0 -125153273,"Team Fortress 2",purchase,1.0,0 -125153273,"Team Fortress 2",play,18.9,0 -125153273,"Garry's Mod",purchase,1.0,0 -125153273,"Garry's Mod",play,14.7,0 -125153273,"The Binding of Isaac Rebirth",purchase,1.0,0 -125153273,"The Binding of Isaac Rebirth",play,9.0,0 -125153273,"Unturned",purchase,1.0,0 -125153273,"Unturned",play,9.0,0 -125153273,"Robocraft",purchase,1.0,0 -155042139,"Counter-Strike Global Offensive",purchase,1.0,0 -155042139,"Counter-Strike Global Offensive",play,887.0,0 -155042139,"Garry's Mod",purchase,1.0,0 -155042139,"Garry's Mod",play,134.0,0 -155042139,"Grand Theft Auto V",purchase,1.0,0 -155042139,"Grand Theft Auto V",play,107.0,0 -155042139,"Unturned",purchase,1.0,0 -155042139,"Unturned",play,56.0,0 -155042139,"Terraria",purchase,1.0,0 -155042139,"Terraria",play,39.0,0 -155042139,"Rust",purchase,1.0,0 -155042139,"Rust",play,31.0,0 -155042139,"Warframe",purchase,1.0,0 -155042139,"Warframe",play,24.0,0 -155042139,"Starbound",purchase,1.0,0 -155042139,"Starbound",play,22.0,0 -155042139,"PAYDAY 2",purchase,1.0,0 -155042139,"PAYDAY 2",play,13.2,0 -155042139,"Team Fortress 2",purchase,1.0,0 -155042139,"Team Fortress 2",play,13.2,0 -155042139,"Arma 2 Operation Arrowhead",purchase,1.0,0 -155042139,"Arma 2 Operation Arrowhead",play,8.9,0 -155042139,"Archeblade",purchase,1.0,0 -155042139,"Archeblade",play,8.0,0 -155042139,"Saints Row IV",purchase,1.0,0 -155042139,"Saints Row IV",play,6.7,0 -155042139,"Sleeping Dogs Definitive Edition",purchase,1.0,0 -155042139,"Sleeping Dogs Definitive Edition",play,3.4,0 -155042139,"DiRT 3 Complete Edition",purchase,1.0,0 -155042139,"DiRT 3 Complete Edition",play,3.2,0 -155042139,"Euro Truck Simulator 2",purchase,1.0,0 -155042139,"Euro Truck Simulator 2",play,3.0,0 -155042139,"Dota 2",purchase,1.0,0 -155042139,"Dota 2",play,2.4,0 -155042139,"Sniper Elite 3",purchase,1.0,0 -155042139,"Sniper Elite 3",play,1.6,0 -155042139,"Toribash",purchase,1.0,0 -155042139,"Toribash",play,1.5,0 -155042139,"Arma 2",purchase,1.0,0 -155042139,"Arma 2",play,1.4,0 -155042139,"Castle Crashers",purchase,1.0,0 -155042139,"Castle Crashers",play,1.0,0 -155042139,"Quake Live",purchase,1.0,0 -155042139,"Quake Live",play,0.9,0 -155042139,"Dead Island Epidemic",purchase,1.0,0 -155042139,"Dead Island Epidemic",play,0.9,0 -155042139,"Nuclear Throne",purchase,1.0,0 -155042139,"Nuclear Throne",play,0.6,0 -155042139,"Loadout",purchase,1.0,0 -155042139,"Loadout",play,0.6,0 -155042139,"ORION Prelude",purchase,1.0,0 -155042139,"ORION Prelude",play,0.5,0 -155042139,"Arma 2 DayZ Mod",purchase,1.0,0 -155042139,"Arma 2 DayZ Mod",play,0.5,0 -155042139,"Brick-Force",purchase,1.0,0 -155042139,"Brick-Force",play,0.4,0 -155042139,"Starbound - Unstable",purchase,1.0,0 -155042139,"Two Worlds Epic Edition",purchase,1.0,0 -155042139,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -155042139,"BLOCKADE 3D",purchase,1.0,0 -155042139,"Fiesta Online",purchase,1.0,0 -155042139,"Magicka Wizard Wars",purchase,1.0,0 -155042139,"No More Room in Hell",purchase,1.0,0 -155042139,"Only If",purchase,1.0,0 -155042139,"PAYDAY The Web Series - Episode 1",purchase,1.0,0 -155042139,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -174923254,"Dota 2",purchase,1.0,0 -174923254,"Dota 2",play,494.0,0 -174923254,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -174923254,"Tom Clancy's Ghost Recon Phantoms - NA",play,13.6,0 -174923254,"Blacklight Retribution",purchase,1.0,0 -174923254,"Blacklight Retribution",play,11.8,0 -174923254,"Team Fortress 2",purchase,1.0,0 -174923254,"Team Fortress 2",play,11.7,0 -174923254,"Unturned",purchase,1.0,0 -174923254,"Unturned",play,8.8,0 -174923254,"Defiance",purchase,1.0,0 -174923254,"Defiance",play,6.8,0 -174923254,"Dizzel",purchase,1.0,0 -174923254,"Dizzel",play,5.7,0 -174923254,"Robocraft",purchase,1.0,0 -174923254,"Robocraft",play,5.5,0 -174923254,"Warframe",purchase,1.0,0 -174923254,"Warframe",play,5.4,0 -174923254,"Spiral Knights",purchase,1.0,0 -174923254,"Spiral Knights",play,4.5,0 -174923254,"AirMech",purchase,1.0,0 -174923254,"AirMech",play,4.5,0 -174923254,"Divine Souls",purchase,1.0,0 -174923254,"Divine Souls",play,2.6,0 -174923254,"RIFT",purchase,1.0,0 -174923254,"RIFT",play,2.4,0 -174923254,"Aura Kingdom",purchase,1.0,0 -174923254,"Aura Kingdom",play,2.2,0 -174923254,"Heroes & Generals",purchase,1.0,0 -174923254,"Heroes & Generals",play,2.1,0 -174923254,"The Expendabros",purchase,1.0,0 -174923254,"The Expendabros",play,2.0,0 -174923254,"GunZ 2 The Second Duel",purchase,1.0,0 -174923254,"GunZ 2 The Second Duel",play,1.9,0 -174923254,"APB Reloaded",purchase,1.0,0 -174923254,"APB Reloaded",play,1.9,0 -174923254,"Quake Live",purchase,1.0,0 -174923254,"Quake Live",play,1.8,0 -174923254,"Survarium",purchase,1.0,0 -174923254,"Survarium",play,1.3,0 -174923254,"404Sight",purchase,1.0,0 -174923254,"404Sight",play,1.3,0 -174923254,"sZone-Online",purchase,1.0,0 -174923254,"sZone-Online",play,1.2,0 -174923254,"Echoes+",purchase,1.0,0 -174923254,"Echoes+",play,1.2,0 -174923254,"Dirty Bomb",purchase,1.0,0 -174923254,"Dirty Bomb",play,0.9,0 -174923254,"One Manga Day",purchase,1.0,0 -174923254,"One Manga Day",play,0.8,0 -174923254,"Dev Guy",purchase,1.0,0 -174923254,"Dev Guy",play,0.8,0 -174923254,"NEOTOKYO",purchase,1.0,0 -174923254,"NEOTOKYO",play,0.7,0 -174923254,"Double Action Boogaloo",purchase,1.0,0 -174923254,"Double Action Boogaloo",play,0.7,0 -174923254,"Royal Quest",purchase,1.0,0 -174923254,"Royal Quest",play,0.7,0 -174923254,"Nosgoth",purchase,1.0,0 -174923254,"Nosgoth",play,0.6,0 -174923254,"FreeStyle2 Street Basketball",purchase,1.0,0 -174923254,"FreeStyle2 Street Basketball",play,0.6,0 -174923254,"War Inc. Battlezone",purchase,1.0,0 -174923254,"War Inc. Battlezone",play,0.5,0 -174923254,"Guns and Robots",purchase,1.0,0 -174923254,"Guns and Robots",play,0.5,0 -174923254,"Eldevin",purchase,1.0,0 -174923254,"Eldevin",play,0.4,0 -174923254,"GameMaker Studio",purchase,1.0,0 -174923254,"GameMaker Studio",play,0.3,0 -174923254,"ACE - Arena Cyber Evolution",purchase,1.0,0 -174923254,"ACE - Arena Cyber Evolution",play,0.3,0 -174923254,"Color Symphony",purchase,1.0,0 -174923254,"Color Symphony",play,0.3,0 -174923254,"Dead Island Epidemic",purchase,1.0,0 -174923254,"Dead Island Epidemic",play,0.2,0 -174923254,"BLOCKADE 3D",purchase,1.0,0 -174923254,"BLOCKADE 3D",play,0.2,0 -174923254,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -174923254,"Boring Man - Online Tactical Stickman Combat",play,0.1,0 -174923254,"CroNix",purchase,1.0,0 -174923254,"America's Army Proving Grounds",purchase,1.0,0 -174923254,"Anarchy Arcade",purchase,1.0,0 -174923254,"Archeblade",purchase,1.0,0 -174923254,"Brick-Force",purchase,1.0,0 -174923254,"Deadbreed",purchase,1.0,0 -174923254,"Elsword",purchase,1.0,0 -174923254,"Face of Mankind",purchase,1.0,0 -174923254,"Fallen Earth",purchase,1.0,0 -174923254,"Firefall",purchase,1.0,0 -174923254,"Gear Up",purchase,1.0,0 -174923254,"Gotham City Impostors Free To Play",purchase,1.0,0 -174923254,"Infinite Crisis",purchase,1.0,0 -174923254,"Karos",purchase,1.0,0 -174923254,"Loadout Campaign Beta",purchase,1.0,0 -174923254,"Marvel Heroes 2015",purchase,1.0,0 -174923254,"Modular Combat",purchase,1.0,0 -174923254,"Neverwinter",purchase,1.0,0 -174923254,"No More Room in Hell",purchase,1.0,0 -174923254,"PlanetSide 2",purchase,1.0,0 -174923254,"Prime World",purchase,1.0,0 -174923254,"Ragnarok Online 2",purchase,1.0,0 -174923254,"Rise of Incarnates",purchase,1.0,0 -174923254,"Tactical Intervention",purchase,1.0,0 -174923254,"TOME Immortal Arena",purchase,1.0,0 -174923254,"Uncharted Waters Online Gran Atlas",purchase,1.0,0 -174923254,"WAKFU",purchase,1.0,0 -174923254,"War Thunder",purchase,1.0,0 -95758079,"Dota 2",purchase,1.0,0 -95758079,"Dota 2",play,5866.0,0 -95758079,"Left 4 Dead 2",purchase,1.0,0 -162797154,"Counter-Strike Global Offensive",purchase,1.0,0 -162797154,"Counter-Strike Global Offensive",play,2.1,0 -37226272,"Half-Life 2 Deathmatch",purchase,1.0,0 -37226272,"Half-Life 2 Lost Coast",purchase,1.0,0 -212494115,"Funk of Titans",purchase,1.0,0 -63833595,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -63833595,"Call of Duty Modern Warfare 2 - Multiplayer",play,126.0,0 -63833595,"Call of Duty Modern Warfare 2",purchase,1.0,0 -63833595,"Call of Duty Modern Warfare 2",play,29.0,0 -159158411,"Left 4 Dead 2",purchase,1.0,0 -159158411,"Left 4 Dead 2",play,52.0,0 -159158411,"Alien Swarm",purchase,1.0,0 -159158411,"Alien Swarm",play,0.9,0 -245560908,"Sid Meier's Civilization V",purchase,1.0,0 -245560908,"Sid Meier's Civilization V",play,38.0,0 -99162218,"Metro 2033",purchase,1.0,0 -134959420,"Dota 2",purchase,1.0,0 -134959420,"Dota 2",play,10.9,0 -27500674,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -27500674,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -141497944,"GRID 2",purchase,1.0,0 -141497944,"GRID 2",play,19.9,0 -141497944,"Goat Simulator",purchase,1.0,0 -141497944,"Goat Simulator",play,8.0,0 -141497944,"Portal Stories Mel",purchase,1.0,0 -258550100,"Dota 2",purchase,1.0,0 -258550100,"Dota 2",play,0.5,0 -258550100,"GunZ 2 The Second Duel",purchase,1.0,0 -35140004,"Counter-Strike Source",purchase,1.0,0 -35140004,"Counter-Strike Source",play,330.0,0 -35140004,"Counter-Strike Condition Zero",purchase,1.0,0 -35140004,"Counter-Strike Condition Zero",play,128.0,0 -35140004,"Counter-Strike",purchase,1.0,0 -35140004,"Counter-Strike",play,73.0,0 -35140004,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -35140004,"Day of Defeat",purchase,1.0,0 -35140004,"Day of Defeat Source",purchase,1.0,0 -35140004,"Deathmatch Classic",purchase,1.0,0 -35140004,"Half-Life 2 Deathmatch",purchase,1.0,0 -35140004,"Half-Life 2 Lost Coast",purchase,1.0,0 -35140004,"Ricochet",purchase,1.0,0 -122332010,"Don't Starve",purchase,1.0,0 -122332010,"Don't Starve",play,25.0,0 -122332010,"Clicker Heroes",purchase,1.0,0 -122332010,"Clicker Heroes",play,23.0,0 -122332010,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -122332010,"RollerCoaster Tycoon 3 Platinum!",play,11.5,0 -122332010,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -122332010,"Injustice Gods Among Us Ultimate Edition",play,2.7,0 -122332010,"Besiege",purchase,1.0,0 -122332010,"Besiege",play,2.7,0 -122332010,"Marvel Heroes 2015",purchase,1.0,0 -122332010,"Marvel Heroes 2015",play,0.5,0 -122332010,"Team Fortress 2",purchase,1.0,0 -122332010,"Team Fortress 2",play,0.2,0 -122332010,"Don't Starve Together Beta",purchase,1.0,0 -122332010,"Kung Fury",purchase,1.0,0 -165240612,"Banished",purchase,1.0,0 -165240612,"Banished",play,410.0,0 -165240612,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -165240612,"RollerCoaster Tycoon 3 Platinum!",play,227.0,0 -165240612,"Cultures - Northland",purchase,1.0,0 -165240612,"Cultures - Northland",play,194.0,0 -165240612,"Chocolatier Decadence by Design",purchase,1.0,0 -165240612,"Chocolatier Decadence by Design",play,90.0,0 -165240612,"Among Ripples",purchase,1.0,0 -165240612,"Among Ripples",play,1.3,0 -194269839,"Dota 2",purchase,1.0,0 -194269839,"Dota 2",play,8.0,0 -141402600,"Counter-Strike Global Offensive",purchase,1.0,0 -141402600,"Counter-Strike Global Offensive",play,847.0,0 -141402600,"Dota 2",purchase,1.0,0 -141402600,"Dota 2",play,22.0,0 -141402600,"Borderlands The Pre-Sequel",purchase,1.0,0 -141402600,"Borderlands The Pre-Sequel",play,18.4,0 -141402600,"Rocket League",purchase,1.0,0 -141402600,"Rocket League",play,18.3,0 -141402600,"South Park The Stick of Truth",purchase,1.0,0 -141402600,"South Park The Stick of Truth",play,15.0,0 -141402600,"Left 4 Dead 2",purchase,1.0,0 -141402600,"Left 4 Dead 2",play,14.3,0 -141402600,"Garry's Mod",purchase,1.0,0 -141402600,"Garry's Mod",play,12.4,0 -141402600,"SpeedRunners",purchase,1.0,0 -141402600,"SpeedRunners",play,12.4,0 -141402600,"Don't Starve Together Beta",purchase,1.0,0 -141402600,"Don't Starve Together Beta",play,10.6,0 -141402600,"Trove",purchase,1.0,0 -141402600,"Trove",play,9.0,0 -141402600,"Neverwinter",purchase,1.0,0 -141402600,"Neverwinter",play,8.1,0 -141402600,"Castle Crashers",purchase,1.0,0 -141402600,"Castle Crashers",play,7.3,0 -141402600,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -141402600,"Tom Clancy's Ghost Recon Phantoms - EU",play,6.5,0 -141402600,"Worms Clan Wars",purchase,1.0,0 -141402600,"Worms Clan Wars",play,2.5,0 -141402600,"Super Meat Boy",purchase,1.0,0 -141402600,"Super Meat Boy",play,1.9,0 -141402600,"Mirror's Edge",purchase,1.0,0 -141402600,"Mirror's Edge",play,1.8,0 -141402600,"Chivalry Medieval Warfare",purchase,1.0,0 -141402600,"Chivalry Medieval Warfare",play,1.2,0 -141402600,"FEZ",purchase,1.0,0 -141402600,"FEZ",play,1.1,0 -141402600,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -141402600,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.8,0 -141402600,"Counter-Strike Source",purchase,1.0,0 -141402600,"Counter-Strike Source",play,0.7,0 -141402600,"Evoland",purchase,1.0,0 -141402600,"Evoland",play,0.3,0 -141402600,"Patch testing for Chivalry",purchase,1.0,0 -141402600,"Patch testing for Chivalry",play,0.1,0 -141402600,"Unturned",purchase,1.0,0 -141402600,"Unturned",play,0.1,0 -141402600,"BattleBlock Theater",purchase,1.0,0 -141402600,"Counter-Strike",purchase,1.0,0 -141402600,"Counter-Strike Condition Zero",purchase,1.0,0 -141402600,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -141402600,"Counter-Strike Nexon Zombies",purchase,1.0,0 -141402600,"Dead Island Epidemic",purchase,1.0,0 -301190190,"Unturned",purchase,1.0,0 -301190190,"Unturned",play,16.7,0 -192282418,"Robocraft",purchase,1.0,0 -192282418,"Robocraft",play,9.2,0 -255010251,"Batman Arkham Origins",purchase,1.0,0 -255010251,"Batman Arkham Origins",play,26.0,0 -255010251,"Warframe",purchase,1.0,0 -255010251,"Warframe",play,18.5,0 -255010251,"Batman Arkham City GOTY",purchase,1.0,0 -255010251,"Batman Arkham City GOTY",play,18.3,0 -255010251,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -255010251,"Batman Arkham Asylum GOTY Edition",play,5.5,0 -255010251,"Amnesia The Dark Descent",purchase,1.0,0 -255010251,"Amnesia The Dark Descent",play,4.8,0 -255010251,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -255010251,"Injustice Gods Among Us Ultimate Edition",play,4.2,0 -255010251,"Gotham City Impostors Free To Play",purchase,1.0,0 -255010251,"Gotham City Impostors Free To Play",play,2.7,0 -255010251,"Trove",purchase,1.0,0 -255010251,"Trove",play,2.7,0 -255010251,"Warface",purchase,1.0,0 -255010251,"Warface",play,1.3,0 -255010251,"Team Fortress 2",purchase,1.0,0 -255010251,"Team Fortress 2",play,1.3,0 -255010251,"The Expendabros",purchase,1.0,0 -255010251,"The Expendabros",play,1.1,0 -255010251,"Counter-Strike Nexon Zombies",purchase,1.0,0 -255010251,"Counter-Strike Nexon Zombies",play,1.0,0 -255010251,"Piercing Blow",purchase,1.0,0 -255010251,"Piercing Blow",play,0.9,0 -255010251,"Disney Infinity 3.0 Play Without Limits",purchase,1.0,0 -255010251,"Disney Infinity 3.0 Play Without Limits",play,0.5,0 -255010251,"The Way of Life Free Edition",purchase,1.0,0 -255010251,"The Way of Life Free Edition",play,0.4,0 -255010251,"Heroes & Generals",purchase,1.0,0 -255010251,"Heroes & Generals",play,0.4,0 -255010251,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -255010251,"S.K.I.L.L. - Special Force 2",play,0.4,0 -255010251,"Clown House (Palyao Evi)",purchase,1.0,0 -255010251,"Clown House (Palyao Evi)",play,0.2,0 -255010251,"Missing Translation",purchase,1.0,0 -255010251,"Leadwerks Game Launcher",purchase,1.0,0 -255010251,"Cry of Fear",purchase,1.0,0 -255010251,"No More Room in Hell",purchase,1.0,0 -255010251,"Brawlhalla",purchase,1.0,0 -255010251,"Defiance",purchase,1.0,0 -255010251,"Marvel Heroes 2015",purchase,1.0,0 -23643789,"Counter-Strike Global Offensive",purchase,1.0,0 -23643789,"Counter-Strike Global Offensive",play,163.0,0 -23643789,"Anno 2070",purchase,1.0,0 -23643789,"Anno 2070",play,10.8,0 -23643789,"Counter-Strike Source",purchase,1.0,0 -23643789,"Counter-Strike Source",play,7.0,0 -23643789,"Day of Defeat Source",purchase,1.0,0 -23643789,"Half-Life 2 Deathmatch",purchase,1.0,0 -23643789,"Half-Life 2 Lost Coast",purchase,1.0,0 -207112591,"Dota 2",purchase,1.0,0 -207112591,"Dota 2",play,33.0,0 -105445346,"Fallout New Vegas",purchase,1.0,0 -105445346,"Fallout New Vegas",play,102.0,0 -105445346,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -105445346,"Tom Clancy's Ghost Recon Phantoms - EU",play,55.0,0 -105445346,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -105445346,"Fallout 3 - Game of the Year Edition",play,27.0,0 -105445346,"Half-Life 2",purchase,1.0,0 -105445346,"Half-Life 2",play,12.2,0 -105445346,"Quake Live",purchase,1.0,0 -105445346,"Quake Live",play,8.7,0 -105445346,"The Elder Scrolls V Skyrim",purchase,1.0,0 -105445346,"The Elder Scrolls V Skyrim",play,3.7,0 -105445346,"Borderlands",purchase,1.0,0 -105445346,"Borderlands",play,1.0,0 -105445346,"Planetary Annihilation",purchase,1.0,0 -105445346,"Planetary Annihilation",play,0.8,0 -105445346,"Unturned",purchase,1.0,0 -105445346,"Unturned",play,0.7,0 -105445346,"Castle Crashers",purchase,1.0,0 -105445346,"Castle Crashers",play,0.6,0 -105445346,"Dirty Bomb",purchase,1.0,0 -105445346,"Dirty Bomb",play,0.6,0 -105445346,"Half-Life 2 Lost Coast",purchase,1.0,0 -105445346,"Half-Life 2 Lost Coast",play,0.3,0 -105445346,"Team Fortress 2",purchase,1.0,0 -105445346,"Team Fortress 2",play,0.3,0 -105445346,"Fallen Earth",purchase,1.0,0 -105445346,"Fallen Earth",play,0.1,0 -105445346,"sZone-Online",purchase,1.0,0 -105445346,"sZone-Online",play,0.1,0 -105445346,"Borderlands 2",purchase,1.0,0 -105445346,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -105445346,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -105445346,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -105445346,"Eternal Fate",purchase,1.0,0 -105445346,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -105445346,"Fallout New Vegas Dead Money",purchase,1.0,0 -105445346,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -105445346,"Oddworld Abe's Oddysee",purchase,1.0,0 -105445346,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -105445346,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -105445346,"Tactical Intervention",purchase,1.0,0 -105445346,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -105445346,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -105445346,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -105445346,"Tom Clancy's Ghost Recon Phantoms - EU WAR Madness pack (Support)",purchase,1.0,0 -183068343,"Dota 2",purchase,1.0,0 -183068343,"Dota 2",play,15.3,0 -183068343,"Aura Kingdom",purchase,1.0,0 -183068343,"Aura Kingdom",play,0.3,0 -191779282,"Dota 2",purchase,1.0,0 -191779282,"Dota 2",play,1505.0,0 -82686146,"Train Simulator",purchase,1.0,0 -82686146,"Train Simulator",play,217.0,0 -82686146,"Portal 2",purchase,1.0,0 -82686146,"Portal 2",play,154.0,0 -82686146,"Sniper Ghost Warrior",purchase,1.0,0 -82686146,"Sniper Ghost Warrior",play,113.0,0 -82686146,"Cities in Motion",purchase,1.0,0 -82686146,"Cities in Motion",play,89.0,0 -82686146,"Hydrophobia Prophecy",purchase,1.0,0 -82686146,"Hydrophobia Prophecy",play,84.0,0 -82686146,"Sniper Elite V2",purchase,1.0,0 -82686146,"Sniper Elite V2",play,50.0,0 -82686146,"The Ball",purchase,1.0,0 -82686146,"The Ball",play,30.0,0 -82686146,"Alien Breed Impact",purchase,1.0,0 -82686146,"Alien Breed Impact",play,29.0,0 -82686146,"Machinarium",purchase,1.0,0 -82686146,"Machinarium",play,20.0,0 -82686146,"Alien Breed 3 Descent",purchase,1.0,0 -82686146,"Alien Breed 3 Descent",play,19.6,0 -82686146,"Alien Breed 2 Assault",purchase,1.0,0 -82686146,"Alien Breed 2 Assault",play,16.1,0 -82686146,"Mishap An Accidental Haunting",purchase,1.0,0 -82686146,"Mishap An Accidental Haunting",play,9.2,0 -82686146,"Q.U.B.E.",purchase,1.0,0 -82686146,"Q.U.B.E.",play,8.3,0 -82686146,"Monopoly",purchase,1.0,0 -82686146,"Monopoly",play,8.0,0 -82686146,"Oddworld Abe's Exoddus",purchase,1.0,0 -82686146,"Oddworld Abe's Exoddus",play,4.1,0 -82686146,"Clive Barker's Jericho",purchase,1.0,0 -82686146,"Clive Barker's Jericho",play,3.8,0 -82686146,"LIMBO",purchase,1.0,0 -82686146,"LIMBO",play,3.2,0 -82686146,"Portal",purchase,1.0,0 -82686146,"Portal",play,2.7,0 -82686146,"Oddworld Stranger's Wrath HD",purchase,1.0,0 -82686146,"Oddworld Stranger's Wrath HD",play,2.5,0 -82686146,"Fallen Earth",purchase,1.0,0 -82686146,"Fallen Earth",play,2.5,0 -82686146,"Microsoft Flight",purchase,1.0,0 -82686146,"Microsoft Flight",play,2.1,0 -82686146,"Post Mortem",purchase,1.0,0 -82686146,"Post Mortem",play,2.1,0 -82686146,"Wallace & Gromit Ep 1 Fright of the Bumblebees",purchase,1.0,0 -82686146,"Wallace & Gromit Ep 1 Fright of the Bumblebees",play,1.8,0 -82686146,"Anno 2070",purchase,1.0,0 -82686146,"Anno 2070",play,1.2,0 -82686146,"Farming Simulator 2013",purchase,1.0,0 -82686146,"Farming Simulator 2013",play,0.8,0 -82686146,"Source Filmmaker",purchase,1.0,0 -82686146,"Source Filmmaker",play,0.8,0 -82686146,"Dead Island",purchase,1.0,0 -82686146,"Dead Island",play,0.6,0 -82686146,"Oddworld Abe's Oddysee",purchase,1.0,0 -82686146,"Oddworld Abe's Oddysee",play,0.6,0 -82686146,"Primordia",purchase,1.0,0 -82686146,"Primordia",play,0.4,0 -82686146,"Tropico 4",purchase,1.0,0 -82686146,"Farming Simulator 2013 - Modding Tutorials",purchase,1.0,0 -82686146,"Oddworld Munch's Oddysee",purchase,1.0,0 -82686146,"Q.U.B.E Director's Cut",purchase,1.0,0 -82686146,"Wallace & Gromit Ep 2 The Last Resort",purchase,1.0,0 -82686146,"Wallace & Gromit Ep 3 Muzzled!",purchase,1.0,0 -82686146,"Wallace & Gromit Ep 4 The Bogey Man",purchase,1.0,0 -97614578,"Counter-Strike Global Offensive",purchase,1.0,0 -97614578,"Counter-Strike Global Offensive",play,715.0,0 -97614578,"Dota 2",purchase,1.0,0 -97614578,"Dota 2",play,652.0,0 -97614578,"PAYDAY 2",purchase,1.0,0 -97614578,"PAYDAY 2",play,217.0,0 -97614578,"Garry's Mod",purchase,1.0,0 -97614578,"Garry's Mod",play,163.0,0 -97614578,"Team Fortress 2",purchase,1.0,0 -97614578,"Team Fortress 2",play,73.0,0 -97614578,"Unturned",purchase,1.0,0 -97614578,"Unturned",play,43.0,0 -97614578,"Borderlands 2 RU",purchase,1.0,0 -97614578,"Borderlands 2 RU",play,32.0,0 -97614578,"Don't Starve Together Beta",purchase,1.0,0 -97614578,"Don't Starve Together Beta",play,31.0,0 -97614578,"World of Guns Gun Disassembly",purchase,1.0,0 -97614578,"World of Guns Gun Disassembly",play,30.0,0 -97614578,"Starbound",purchase,1.0,0 -97614578,"Starbound",play,27.0,0 -97614578,"Insurgency",purchase,1.0,0 -97614578,"Insurgency",play,24.0,0 -97614578,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -97614578,"Tom Clancy's Splinter Cell Blacklist",play,22.0,0 -97614578,"Survarium",purchase,1.0,0 -97614578,"Survarium",play,22.0,0 -97614578,"Left 4 Dead 2",purchase,1.0,0 -97614578,"Left 4 Dead 2",play,20.0,0 -97614578,"Dino D-Day",purchase,1.0,0 -97614578,"Dino D-Day",play,16.5,0 -97614578,"Killing Floor 2",purchase,1.0,0 -97614578,"Killing Floor 2",play,14.5,0 -97614578,"Nosgoth",purchase,1.0,0 -97614578,"Nosgoth",play,8.6,0 -97614578,"Heroes & Generals",purchase,1.0,0 -97614578,"Heroes & Generals",play,7.4,0 -97614578,"Don't Starve",purchase,1.0,0 -97614578,"Don't Starve",play,7.2,0 -97614578,"How to Survive",purchase,1.0,0 -97614578,"How to Survive",play,5.9,0 -97614578,"Euro Truck Simulator 2",purchase,1.0,0 -97614578,"Euro Truck Simulator 2",play,5.7,0 -97614578,"Robocraft",purchase,1.0,0 -97614578,"Robocraft",play,5.0,0 -97614578,"Borderlands 2",purchase,1.0,0 -97614578,"Borderlands 2",play,5.0,0 -97614578,"BattleBlock Theater",purchase,1.0,0 -97614578,"BattleBlock Theater",play,4.5,0 -97614578,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -97614578,"Viscera Cleanup Detail Santa's Rampage",play,4.1,0 -97614578,"Dirty Bomb",purchase,1.0,0 -97614578,"Dirty Bomb",play,2.5,0 -97614578,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -97614578,"Tom Clancy's Ghost Recon Phantoms - EU",play,1.7,0 -97614578,"Castle Crashers",purchase,1.0,0 -97614578,"Castle Crashers",play,1.6,0 -97614578,"Mortal Kombat X",purchase,1.0,0 -97614578,"Mortal Kombat X",play,1.2,0 -97614578,"Moonbase Alpha",purchase,1.0,0 -97614578,"Moonbase Alpha",play,0.7,0 -97614578,"Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald A Whirlwind Heist",purchase,1.0,0 -97614578,"Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald A Whirlwind Heist",play,0.3,0 -97614578,"Sakura Clicker",purchase,1.0,0 -97614578,"Sakura Clicker",play,0.2,0 -97614578,"Cry of Fear",purchase,1.0,0 -97614578,"Don't Starve Shipwrecked",purchase,1.0,0 -97614578,"Don't Starve Reign of Giants",purchase,1.0,0 -97614578,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -97614578,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -97614578,"PAYDAY The Web Series - Episode 1",purchase,1.0,0 -97614578,"Starbound - Unstable",purchase,1.0,0 -97614578,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -97614578,"War Thunder",purchase,1.0,0 -278385104,"Unturned",purchase,1.0,0 -278385104,"Cry of Fear",purchase,1.0,0 -188394070,"Terraria",purchase,1.0,0 -188394070,"Terraria",play,12.8,0 -188394070,"Unturned",purchase,1.0,0 -188394070,"Unturned",play,6.3,0 -188394070,"The Forest",purchase,1.0,0 -188394070,"The Forest",play,6.0,0 -188394070,"DayZ",purchase,1.0,0 -188394070,"DayZ",play,1.0,0 -188394070,"Robocraft",purchase,1.0,0 -188394070,"Robocraft",play,0.2,0 -188394070,"State of Decay",purchase,1.0,0 -188394070,"State of Decay",play,0.2,0 -29764828,"Counter-Strike",purchase,1.0,0 -29764828,"Counter-Strike",play,1263.0,0 -29764828,"DC Universe Online",purchase,1.0,0 -29764828,"DC Universe Online",play,22.0,0 -29764828,"Team Fortress 2",purchase,1.0,0 -29764828,"Team Fortress 2",play,0.9,0 -29764828,"Counter-Strike Condition Zero",purchase,1.0,0 -29764828,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -29764828,"Day of Defeat",purchase,1.0,0 -29764828,"Deathmatch Classic",purchase,1.0,0 -29764828,"Ricochet",purchase,1.0,0 -142696524,"Dota 2",purchase,1.0,0 -142696524,"Dota 2",play,258.0,0 -185401083,"Warface",purchase,1.0,0 -185401083,"Warface",play,16.5,0 -88661387,"Left 4 Dead 2",purchase,1.0,0 -88661387,"Left 4 Dead 2",play,88.0,0 -84853093,"Team Fortress 2",purchase,1.0,0 -84853093,"Team Fortress 2",play,10.4,0 -114231279,"Team Fortress 2",purchase,1.0,0 -114231279,"Team Fortress 2",play,92.0,0 -150140786,"Dota 2",purchase,1.0,0 -150140786,"Dota 2",play,1.4,0 -188838705,"Unturned",purchase,1.0,0 -188838705,"Unturned",play,5.6,0 -188838705,"Brick-Force",purchase,1.0,0 -188838705,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -168881981,"Counter-Strike Global Offensive",purchase,1.0,0 -168881981,"Counter-Strike Global Offensive",play,1515.0,0 -168881981,"Rust",purchase,1.0,0 -168881981,"Rust",play,394.0,0 -168881981,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -168881981,"Tom Clancy's Ghost Recon Phantoms - EU",play,226.0,0 -168881981,"Unturned",purchase,1.0,0 -168881981,"Unturned",play,49.0,0 -168881981,"Team Fortress 2",purchase,1.0,0 -168881981,"Team Fortress 2",play,12.4,0 -168881981,"Left 4 Dead 2",purchase,1.0,0 -168881981,"Left 4 Dead 2",play,5.4,0 -168881981,"How to Survive",purchase,1.0,0 -168881981,"How to Survive",play,5.3,0 -168881981,"Grand Theft Auto San Andreas",purchase,1.0,0 -168881981,"Grand Theft Auto San Andreas",play,2.0,0 -168881981,"Dota 2",purchase,1.0,0 -168881981,"Dota 2",play,0.3,0 -168881981,"Counter-Strike Nexon Zombies",purchase,1.0,0 -168881981,"Grand Theft Auto San Andreas",purchase,1.0,0 -168881981,"Kings Bounty Legions",purchase,1.0,0 -168881981,"Magicka Wizard Wars",purchase,1.0,0 -168881981,"My Lands",purchase,1.0,0 -168881981,"Nosgoth",purchase,1.0,0 -168881981,"Super Crate Box",purchase,1.0,0 -168881981,"The Expendabros",purchase,1.0,0 -168881981,"Tom Clancy's Ghost Recon Phantoms - EU The Thrill of the Surprise",purchase,1.0,0 -168881981,"War Thunder",purchase,1.0,0 -241078577,"Dota 2",purchase,1.0,0 -241078577,"Dota 2",play,18.3,0 -211465973,"No More Room in Hell",purchase,1.0,0 -176284441,"Counter-Strike Source",purchase,1.0,0 -176284441,"Counter-Strike Source",play,388.0,0 -176284441,"Counter-Strike Global Offensive",purchase,1.0,0 -176284441,"Counter-Strike Global Offensive",play,2.2,0 -176284441,"F.E.A.R. Online",purchase,1.0,0 -176284441,"F.E.A.R. Online",play,0.4,0 -176284441,"Dizzel",purchase,1.0,0 -176284441,"Unturned",purchase,1.0,0 -59234901,"Dota 2",purchase,1.0,0 -59234901,"Dota 2",play,860.0,0 -59234901,"Counter-Strike Global Offensive",purchase,1.0,0 -59234901,"Counter-Strike Global Offensive",play,18.8,0 -59234901,"Call of Duty Modern Warfare 2",purchase,1.0,0 -59234901,"Call of Duty Modern Warfare 2",play,16.4,0 -59234901,"How to Survive",purchase,1.0,0 -59234901,"How to Survive",play,9.0,0 -59234901,"Warframe",purchase,1.0,0 -59234901,"Warframe",play,1.2,0 -59234901,"Dead Island Epidemic",purchase,1.0,0 -59234901,"Dead Island Epidemic",play,0.9,0 -59234901,"RIFT",purchase,1.0,0 -59234901,"RIFT",play,0.8,0 -59234901,"Robocraft",purchase,1.0,0 -59234901,"Robocraft",play,0.7,0 -59234901,"theHunter",purchase,1.0,0 -59234901,"theHunter",play,0.3,0 -59234901,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -59234901,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.2,0 -59234901,"Unturned",purchase,1.0,0 -59234901,"Unturned",play,0.2,0 -59234901,"Chaser",purchase,1.0,0 -164275046,"Dota 2",purchase,1.0,0 -164275046,"Dota 2",play,0.6,0 -221683659,"Dota 2",purchase,1.0,0 -221683659,"Dota 2",play,18.5,0 -301814040,"Dota 2",purchase,1.0,0 -301814040,"Dota 2",play,7.4,0 -117370965,"Farming Simulator 2013",purchase,1.0,0 -117370965,"Farming Simulator 2013",play,218.0,0 -117370965,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -117370965,"Microsoft Flight Simulator X Steam Edition",play,142.0,0 -117370965,"Agricultural Simulator 2013 Steam Edition",purchase,1.0,0 -117370965,"Agricultural Simulator 2013 Steam Edition",play,53.0,0 -117370965,"Sid Meier's Civilization V",purchase,1.0,0 -117370965,"Sid Meier's Civilization V",play,26.0,0 -117370965,"Cities Skylines",purchase,1.0,0 -117370965,"Cities Skylines",play,26.0,0 -117370965,"Train Simulator",purchase,1.0,0 -117370965,"Train Simulator",play,26.0,0 -117370965,"Empire Total War",purchase,1.0,0 -117370965,"Empire Total War",play,21.0,0 -117370965,"Kerbal Space Program",purchase,1.0,0 -117370965,"Kerbal Space Program",play,19.3,0 -117370965,"Professional Farmer 2014",purchase,1.0,0 -117370965,"Professional Farmer 2014",play,12.6,0 -117370965,"BeamNG.drive",purchase,1.0,0 -117370965,"BeamNG.drive",play,10.6,0 -117370965,"Total War ROME II - Emperor Edition",purchase,1.0,0 -117370965,"Total War ROME II - Emperor Edition",play,9.8,0 -117370965,"Total War ATTILA",purchase,1.0,0 -117370965,"Total War ATTILA",play,3.9,0 -117370965,"Bus-Simulator 2012",purchase,1.0,0 -117370965,"Bus-Simulator 2012",play,3.2,0 -117370965,"Hospital Tycoon",purchase,1.0,0 -117370965,"Hospital Tycoon",play,2.5,0 -117370965,"Firefighters 2014",purchase,1.0,0 -117370965,"Firefighters 2014",play,1.3,0 -117370965,"Cities in Motion 2",purchase,1.0,0 -117370965,"Cities in Motion 2",play,1.1,0 -117370965,"Skyscraper Simulator",purchase,1.0,0 -117370965,"Skyscraper Simulator",play,0.2,0 -117370965,"Construction-Simulator 2015",purchase,1.0,0 -117370965,"Construction Simulator 2015 Vertical Skyline",purchase,1.0,0 -117370965,"Good Ol Times",purchase,1.0,0 -117370965,"Left 4 Dead 2",purchase,1.0,0 -117370965,"Professional Farmer 2014 - America DLC",purchase,1.0,0 -117370965,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -113015223,"Dota 2",purchase,1.0,0 -113015223,"Dota 2",play,182.0,0 -243443919,"Counter-Strike Nexon Zombies",purchase,1.0,0 -243443919,"Counter-Strike Nexon Zombies",play,13.9,0 -236854541,"Dota 2",purchase,1.0,0 -236854541,"Dota 2",play,16.2,0 -236854541,"GunZ 2 The Second Duel",purchase,1.0,0 -103445207,"Total War ROME II - Emperor Edition",purchase,1.0,0 -103445207,"Total War ROME II - Emperor Edition",play,707.0,0 -103445207,"Total War SHOGUN 2",purchase,1.0,0 -103445207,"Total War SHOGUN 2",play,637.0,0 -103445207,"Arma 3",purchase,1.0,0 -103445207,"Arma 3",play,593.0,0 -103445207,"DRAGON BALL XENOVERSE",purchase,1.0,0 -103445207,"DRAGON BALL XENOVERSE",play,355.0,0 -103445207,"Empire Total War",purchase,1.0,0 -103445207,"Empire Total War",play,216.0,0 -103445207,"Mount & Blade Warband",purchase,1.0,0 -103445207,"Mount & Blade Warband",play,166.0,0 -103445207,"Age of Empires III Complete Collection",purchase,1.0,0 -103445207,"Age of Empires III Complete Collection",play,108.0,0 -103445207,"Mount & Blade With Fire and Sword",purchase,1.0,0 -103445207,"Mount & Blade With Fire and Sword",play,100.0,0 -103445207,"Arma Combat Operations",purchase,1.0,0 -103445207,"Arma Combat Operations",play,98.0,0 -103445207,"Mount & Blade",purchase,1.0,0 -103445207,"Mount & Blade",play,96.0,0 -103445207,"Dying Light",purchase,1.0,0 -103445207,"Dying Light",play,58.0,0 -103445207,"Medieval II Total War",purchase,1.0,0 -103445207,"Medieval II Total War",play,51.0,0 -103445207,"Call of Duty World at War",purchase,1.0,0 -103445207,"Call of Duty World at War",play,51.0,0 -103445207,"Arma 2 Operation Arrowhead",purchase,1.0,0 -103445207,"Arma 2 Operation Arrowhead",play,41.0,0 -103445207,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",purchase,1.0,0 -103445207,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",play,36.0,0 -103445207,"Rocket League",purchase,1.0,0 -103445207,"Rocket League",play,30.0,0 -103445207,"Arma Cold War Assault",purchase,1.0,0 -103445207,"Arma Cold War Assault",play,23.0,0 -103445207,"Assassin's Creed III",purchase,1.0,0 -103445207,"Assassin's Creed III",play,20.0,0 -103445207,"Arma 2",purchase,1.0,0 -103445207,"Arma 2",play,14.4,0 -103445207,"Unturned",purchase,1.0,0 -103445207,"Unturned",play,9.5,0 -103445207,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -103445207,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,8.6,0 -103445207,"Warframe",purchase,1.0,0 -103445207,"Warframe",play,6.7,0 -103445207,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -103445207,"Operation Flashpoint Dragon Rising",play,6.7,0 -103445207,"The Elder Scrolls V Skyrim",purchase,1.0,0 -103445207,"The Elder Scrolls V Skyrim",play,4.7,0 -103445207,"Battlestations Pacific",purchase,1.0,0 -103445207,"Battlestations Pacific",play,4.6,0 -103445207,"Verdun",purchase,1.0,0 -103445207,"Verdun",play,3.7,0 -103445207,"Chivalry Medieval Warfare",purchase,1.0,0 -103445207,"Chivalry Medieval Warfare",play,3.7,0 -103445207,"Rome Total War",purchase,1.0,0 -103445207,"Rome Total War",play,3.1,0 -103445207,"Rome Total War - Alexander",purchase,1.0,0 -103445207,"Rome Total War - Alexander",play,2.8,0 -103445207,"War of the Roses",purchase,1.0,0 -103445207,"War of the Roses",play,1.9,0 -103445207,"Toribash",purchase,1.0,0 -103445207,"Toribash",play,1.5,0 -103445207,"Medieval II Total War Kingdoms",purchase,1.0,0 -103445207,"Medieval II Total War Kingdoms",play,1.1,0 -103445207,"Warface",purchase,1.0,0 -103445207,"Warface",play,0.7,0 -103445207,"SimCity 4 Deluxe",purchase,1.0,0 -103445207,"SimCity 4 Deluxe",play,0.5,0 -103445207,"ARK Survival Evolved",purchase,1.0,0 -103445207,"ARK Survival Evolved",play,0.3,0 -103445207,"Battle of Empires 1914-1918",purchase,1.0,0 -103445207,"Battle of Empires 1914-1918",play,0.2,0 -103445207,"Heroes & Generals",purchase,1.0,0 -103445207,"Arma 2 DayZ Mod",purchase,1.0,0 -103445207,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -103445207,"Arma 3 Zeus",purchase,1.0,0 -103445207,"Iron Front D-Day DLC",purchase,1.0,0 -103445207,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -103445207,"Patch testing for Chivalry",purchase,1.0,0 -103445207,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -103445207,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -103445207,"War of the Roses Kingmaker",purchase,1.0,0 -103445207,"War of the Roses Balance Beta",purchase,1.0,0 -163789845,"Dota 2",purchase,1.0,0 -163789845,"Dota 2",play,0.2,0 -124365369,"Dota 2",purchase,1.0,0 -124365369,"Dota 2",play,75.0,0 -111442295,"Dota 2",purchase,1.0,0 -111442295,"Dota 2",play,1537.0,0 -111442295,"Counter-Strike",purchase,1.0,0 -111442295,"Counter-Strike",play,443.0,0 -111442295,"Half-Life 2",purchase,1.0,0 -111442295,"Half-Life 2",play,32.0,0 -111442295,"Dino D-Day",purchase,1.0,0 -111442295,"Dino D-Day",play,15.3,0 -111442295,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -111442295,"Counter-Strike Condition Zero Deleted Scenes",play,4.6,0 -111442295,"Yet Another Zombie Defense",purchase,1.0,0 -111442295,"Yet Another Zombie Defense",play,3.8,0 -111442295,"Counter-Strike Condition Zero",purchase,1.0,0 -111442295,"Counter-Strike Condition Zero",play,2.9,0 -111442295,"PAYDAY The Heist",purchase,1.0,0 -111442295,"PAYDAY The Heist",play,2.2,0 -111442295,"Grand Theft Auto Vice City",purchase,1.0,0 -111442295,"Grand Theft Auto Vice City",play,1.9,0 -111442295,"Half-Life 2 Lost Coast",purchase,1.0,0 -111442295,"Half-Life 2 Lost Coast",play,1.0,0 -111442295,"Woodle Tree Adventures",purchase,1.0,0 -111442295,"Woodle Tree Adventures",play,1.0,0 -111442295,"The Culling Of The Cows",purchase,1.0,0 -111442295,"The Culling Of The Cows",play,0.6,0 -111442295,"WAKFU",purchase,1.0,0 -111442295,"WAKFU",play,0.5,0 -111442295,"Gun Monkeys",purchase,1.0,0 -111442295,"Gun Monkeys",play,0.5,0 -111442295,"RACE 07",purchase,1.0,0 -111442295,"RACE 07",play,0.4,0 -111442295,"Grimm",purchase,1.0,0 -111442295,"Grimm",play,0.3,0 -111442295,"Anomaly Warzone Earth",purchase,1.0,0 -111442295,"Anomaly Warzone Earth",play,0.2,0 -111442295,"Unturned",purchase,1.0,0 -111442295,"Unturned",play,0.1,0 -111442295,"Really Big Sky",purchase,1.0,0 -111442295,"GTR Evolution",purchase,1.0,0 -111442295,"Dethroned!",purchase,1.0,0 -111442295,"Quake Live",purchase,1.0,0 -111442295,"Famaze",purchase,1.0,0 -111442295,"ACE - Arena Cyber Evolution",purchase,1.0,0 -111442295,"Adventures of Shuggy",purchase,1.0,0 -111442295,"Brilliant Bob",purchase,1.0,0 -111442295,"Crash Time II",purchase,1.0,0 -111442295,"Dead Island Epidemic",purchase,1.0,0 -111442295,"Dungeonland",purchase,1.0,0 -111442295,"Enclave",purchase,1.0,0 -111442295,"Fistful of Frags",purchase,1.0,0 -111442295,"Gotham City Impostors Free To Play",purchase,1.0,0 -111442295,"Grand Theft Auto Vice City",purchase,1.0,0 -111442295,"Grimoire Manastorm",purchase,1.0,0 -111442295,"Heroine's Quest The Herald of Ragnarok",purchase,1.0,0 -111442295,"Hitman 2 Silent Assassin",purchase,1.0,0 -111442295,"Magicka Wizard Wars",purchase,1.0,0 -111442295,"Marvel Heroes 2015",purchase,1.0,0 -111442295,"Metro 2033",purchase,1.0,0 -111442295,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -111442295,"Organic Panic",purchase,1.0,0 -111442295,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -111442295,"Prime World",purchase,1.0,0 -111442295,"RaceRoom Racing Experience ",purchase,1.0,0 -111442295,"Saira",purchase,1.0,0 -111442295,"Sniper Elite V2",purchase,1.0,0 -111442295,"SpaceChem",purchase,1.0,0 -111442295,"Space Hack",purchase,1.0,0 -111442295,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -111442295,"Uriel's Chasm",purchase,1.0,0 -111442295,"Victory Command",purchase,1.0,0 -111442295,"Warlock - Master of the Arcane",purchase,1.0,0 -111442295,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -300655945,"Dragons and Titans",purchase,1.0,0 -300655945,"Dragons and Titans",play,0.1,0 -167943113,"Plague Inc Evolved",purchase,1.0,0 -167943113,"Plague Inc Evolved",play,28.0,0 -170141925,"Dota 2",purchase,1.0,0 -170141925,"Dota 2",play,9.2,0 -136783755,"Dota 2",purchase,1.0,0 -136783755,"Dota 2",play,2682.0,0 -136783755,"Free to Play",purchase,1.0,0 -136783755,"Free to Play",play,1.8,0 -136783755,"Earth 2150 Trilogy",purchase,1.0,0 -136783755,"Earth 2150 Lost Souls",purchase,1.0,0 -136783755,"Earth 2150 The Moon Project",purchase,1.0,0 -61098124,"Football Manager 2009",purchase,1.0,0 -243808569,"Sid Meier's Civilization V",purchase,1.0,0 -243808569,"Sid Meier's Civilization V",play,25.0,0 -243808569,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -243808569,"Warhammer 40,000 Dawn of War II",play,2.3,0 -243808569,"Darkwind War on Wheels",purchase,1.0,0 -243808569,"Darkwind War on Wheels",play,0.1,0 -243808569,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -243808569,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -243808569,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -243808569,"Torchlight II",purchase,1.0,0 -243808569,"Tower Wars",purchase,1.0,0 -243808569,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -243808569,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -243808569,"Worms Revolution",purchase,1.0,0 -254992432,"Dota 2",purchase,1.0,0 -254992432,"Dota 2",play,0.5,0 -101803777,"Dota 2",purchase,1.0,0 -101803777,"Dota 2",play,1224.0,0 -101803777,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -101803777,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.3,0 -101803777,"RIFT",purchase,1.0,0 -101803777,"Blacklight Retribution",purchase,1.0,0 -101803777,"City of Steam Arkadia",purchase,1.0,0 -101803777,"Dogs of War Online - Beta",purchase,1.0,0 -101803777,"Firefall",purchase,1.0,0 -101803777,"FreeStyle2 Street Basketball",purchase,1.0,0 -101803777,"Free to Play",purchase,1.0,0 -101803777,"Gotham City Impostors Free To Play",purchase,1.0,0 -101803777,"GunZ 2 The Second Duel",purchase,1.0,0 -101803777,"HAWKEN",purchase,1.0,0 -101803777,"Heroes & Generals",purchase,1.0,0 -101803777,"Loadout",purchase,1.0,0 -101803777,"Nosgoth",purchase,1.0,0 -101803777,"PlanetSide 2",purchase,1.0,0 -101803777,"Ragnarok",purchase,1.0,0 -101803777,"Stronghold Kingdoms",purchase,1.0,0 -101803777,"TERA",purchase,1.0,0 -101803777,"Unturned",purchase,1.0,0 -68719896,"FINAL FANTASY XIV A Realm Reborn",purchase,1.0,0 -68719896,"FINAL FANTASY XIV A Realm Reborn",play,854.0,0 -68719896,"Call of Duty Black Ops III",purchase,1.0,0 -68719896,"Call of Duty Black Ops III",play,69.0,0 -68719896,"Sanctum 2",purchase,1.0,0 -68719896,"Sanctum 2",play,64.0,0 -68719896,"Left 4 Dead 2",purchase,1.0,0 -68719896,"Left 4 Dead 2",play,49.0,0 -68719896,"Dungeon Defenders II",purchase,1.0,0 -68719896,"Dungeon Defenders II",play,41.0,0 -68719896,"Rocket League",purchase,1.0,0 -68719896,"Rocket League",play,40.0,0 -68719896,"The Elder Scrolls V Skyrim",purchase,1.0,0 -68719896,"The Elder Scrolls V Skyrim",play,32.0,0 -68719896,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -68719896,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,31.0,0 -68719896,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -68719896,"Resident Evil Revelations 2 / Biohazard Revelations 2",play,28.0,0 -68719896,"Awesomenauts",purchase,1.0,0 -68719896,"Awesomenauts",play,14.8,0 -68719896,"Age of Empires II HD Edition",purchase,1.0,0 -68719896,"Age of Empires II HD Edition",play,13.4,0 -68719896,"Alien Swarm",purchase,1.0,0 -68719896,"Alien Swarm",play,9.2,0 -68719896,"Double Dragon Neon",purchase,1.0,0 -68719896,"Double Dragon Neon",play,6.3,0 -68719896,"Castle Crashers",purchase,1.0,0 -68719896,"Castle Crashers",play,6.1,0 -68719896,"Cities Skylines",purchase,1.0,0 -68719896,"Cities Skylines",play,5.8,0 -68719896,"99 Levels To Hell",purchase,1.0,0 -68719896,"99 Levels To Hell",play,5.4,0 -68719896,"Starbound",purchase,1.0,0 -68719896,"Starbound",play,5.0,0 -68719896,"Terraria",purchase,1.0,0 -68719896,"Terraria",play,3.8,0 -68719896,"Counter-Strike Global Offensive",purchase,1.0,0 -68719896,"Counter-Strike Global Offensive",play,1.9,0 -68719896,"DayZ",purchase,1.0,0 -68719896,"DayZ",play,1.8,0 -68719896,"Resident Evil / biohazard HD REMASTER",purchase,1.0,0 -68719896,"Resident Evil / biohazard HD REMASTER",play,1.6,0 -68719896,"The Legend of Korra",purchase,1.0,0 -68719896,"The Legend of Korra",play,1.5,0 -68719896,"TrackMania United",purchase,1.0,0 -68719896,"TrackMania United",play,0.4,0 -68719896,"FlatOut 2",purchase,1.0,0 -68719896,"FlatOut 2",play,0.3,0 -68719896,"Unturned",purchase,1.0,0 -68719896,"Unturned",play,0.2,0 -68719896,"Revolution Ace",purchase,1.0,0 -68719896,"Cry of Fear",purchase,1.0,0 -68719896,"FINAL FANTASY XIV A Realm Reborn (NA version)",purchase,1.0,0 -68719896,"Guns'N'Zombies",purchase,1.0,0 -68719896,"SMITE",purchase,1.0,0 -68719896,"Starbound - Unstable",purchase,1.0,0 -68719896,"Street Racing Syndicate",purchase,1.0,0 -87646732,"Counter-Strike Source",purchase,1.0,0 -87646732,"Counter-Strike Source",play,29.0,0 -118086742,"Don't Starve",purchase,1.0,0 -118086742,"Don't Starve",play,13.7,0 -118086742,"Farming Simulator 2013",purchase,1.0,0 -118086742,"Farming Simulator 2013",play,8.8,0 -118086742,"Scribblenauts Unlimited",purchase,1.0,0 -118086742,"Scribblenauts Unlimited",play,6.8,0 -118086742,"BattleBlock Theater",purchase,1.0,0 -118086742,"BattleBlock Theater",play,3.0,0 -118086742,"Spiral Knights",purchase,1.0,0 -118086742,"Spiral Knights",play,1.2,0 -118086742,"Papo & Yo",purchase,1.0,0 -118086742,"Papo & Yo",play,1.0,0 -118086742,"Dust An Elysian Tail",purchase,1.0,0 -118086742,"Dust An Elysian Tail",play,0.5,0 -118086742,"Ace of Spades",purchase,1.0,0 -118086742,"Ace of Spades",play,0.4,0 -118086742,"Don't Starve Together Beta",purchase,1.0,0 -118086742,"Papo & Yo Soundtrack",purchase,1.0,0 -182654153,"Mortal Kombat Komplete Edition",purchase,1.0,0 -66229356,"7 Days to Die",purchase,1.0,0 -66229356,"7 Days to Die",play,7.4,0 -66229356,"Garry's Mod",purchase,1.0,0 -66229356,"Garry's Mod",play,0.8,0 -66229356,"Counter-Strike Source",purchase,1.0,0 -66229356,"Half-Life 2",purchase,1.0,0 -66229356,"Half-Life 2 Deathmatch",purchase,1.0,0 -66229356,"Half-Life 2 Lost Coast",purchase,1.0,0 -66229356,"Half-Life Source",purchase,1.0,0 -66229356,"Half-Life Deathmatch Source",purchase,1.0,0 -246210997,"Marvel Heroes 2015",purchase,1.0,0 -246210997,"Rise of Incarnates",purchase,1.0,0 -246210997,"Star Conflict",purchase,1.0,0 -246210997,"Trove",purchase,1.0,0 -185680404,"Sniper Elite 3",purchase,1.0,0 -185680404,"Sniper Elite 3",play,28.0,0 -185680404,"Wolfenstein The New Order German Edition",purchase,1.0,0 -185680404,"Wolfenstein The New Order German Edition",play,16.9,0 -185680404,"Metro 2033 Redux",purchase,1.0,0 -185680404,"Metro 2033 Redux",play,12.8,0 -185680404,"Metro Last Light Redux",purchase,1.0,0 -185680404,"Metro Last Light Redux",play,7.2,0 -27139623,"Counter-Strike Condition Zero",purchase,1.0,0 -27139623,"Counter-Strike Condition Zero",play,75.0,0 -27139623,"Worms Reloaded",purchase,1.0,0 -27139623,"Worms Reloaded",play,23.0,0 -27139623,"Mafia II",purchase,1.0,0 -27139623,"Mafia II",play,17.4,0 -27139623,"Counter-Strike",purchase,1.0,0 -27139623,"Counter-Strike",play,5.8,0 -27139623,"DOOM 3 BFG Edition",purchase,1.0,0 -27139623,"DOOM 3 BFG Edition",play,4.9,0 -27139623,"Day of Defeat",purchase,1.0,0 -27139623,"Day of Defeat",play,4.4,0 -27139623,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -27139623,"Deathmatch Classic",purchase,1.0,0 -27139623,"Ricochet",purchase,1.0,0 -148939255,"Dota 2",purchase,1.0,0 -148939255,"Dota 2",play,77.0,0 -224737765,"Dota 2",purchase,1.0,0 -224737765,"Dota 2",play,820.0,0 -114447625,"Team Fortress 2",purchase,1.0,0 -114447625,"Team Fortress 2",play,31.0,0 -114447625,"Alien Swarm",purchase,1.0,0 -114447625,"Alien Swarm",play,8.7,0 -114447625,"Dota 2",purchase,1.0,0 -114447625,"Dota 2",play,2.6,0 -114447625,"Serious Sam HD The Second Encounter",purchase,1.0,0 -114447625,"Serious Sam HD The Second Encounter",play,1.5,0 -47296055,"Empire Total War",purchase,1.0,0 -47296055,"Empire Total War",play,49.0,0 -47296055,"Napoleon Total War",purchase,1.0,0 -47296055,"Napoleon Total War",play,1.0,0 -47296055,"Sid Meier's Civilization V",purchase,1.0,0 -47296055,"Sid Meier's Civilization V",play,0.1,0 -33029093,"Counter-Strike Condition Zero",purchase,1.0,0 -33029093,"Counter-Strike Condition Zero",play,106.0,0 -33029093,"Counter-Strike",purchase,1.0,0 -33029093,"Counter-Strike",play,101.0,0 -33029093,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -33029093,"Counter-Strike Condition Zero Deleted Scenes",play,39.0,0 -33029093,"Day of Defeat",purchase,1.0,0 -33029093,"Deathmatch Classic",purchase,1.0,0 -33029093,"Ricochet",purchase,1.0,0 -86287245,"Awesomenauts",purchase,1.0,0 -86287245,"Awesomenauts",play,93.0,0 -86287245,"Terraria",purchase,1.0,0 -86287245,"Terraria",play,76.0,0 -86287245,"Torchlight",purchase,1.0,0 -86287245,"Torchlight",play,10.6,0 -86287245,"Sid Meier's Civilization V",purchase,1.0,0 -86287245,"Sid Meier's Civilization V",play,4.7,0 -86287245,"Dota 2",purchase,1.0,0 -86287245,"Dota 2",play,2.6,0 -86287245,"Conquest of Champions",purchase,1.0,0 -86287245,"Conquest of Champions",play,2.4,0 -86287245,"Spiral Knights",purchase,1.0,0 -86287245,"Spiral Knights",play,2.0,0 -86287245,"Torchlight II",purchase,1.0,0 -86287245,"Torchlight II",play,1.4,0 -86287245,"Dungeon Hearts",purchase,1.0,0 -86287245,"Dungeon Hearts",play,0.6,0 -86287245,"Starbound",purchase,1.0,0 -86287245,"Starbound",play,0.5,0 -86287245,"Swords and Soldiers HD",purchase,1.0,0 -86287245,"Swords and Soldiers HD",play,0.5,0 -86287245,"Warmachine Tactics",purchase,1.0,0 -86287245,"Warmachine Tactics",play,0.1,0 -86287245,"Kingdom Rush",purchase,1.0,0 -86287245,"Dead Island Epidemic",purchase,1.0,0 -86287245,"Sid Meier's Civilization III Complete",purchase,1.0,0 -86287245,"Sid Meier's Civilization IV",purchase,1.0,0 -86287245,"Sid Meier's Civilization IV",purchase,1.0,0 -86287245,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -86287245,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -86287245,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -86287245,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -86287245,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -86287245,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -86287245,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -86287245,"Starbound - Unstable",purchase,1.0,0 -68672269,"Dota 2",purchase,1.0,0 -68672269,"Dota 2",play,1015.0,0 -68672269,"GRID Autosport",purchase,1.0,0 -68672269,"GRID Autosport",play,11.9,0 -68672269,"TOME Immortal Arena",purchase,1.0,0 -68672269,"TOME Immortal Arena",play,1.5,0 -96144791,"Team Fortress 2",purchase,1.0,0 -96144791,"Team Fortress 2",play,5.1,0 -96144791,"DC Universe Online",purchase,1.0,0 -96144791,"DC Universe Online",play,0.3,0 -173713735,"Sid Meier's Civilization V",purchase,1.0,0 -173713735,"Sid Meier's Civilization V",play,150.0,0 -143062096,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -143062096,"Beatbuddy Tale of the Guardians",play,3.6,0 -143062096,"Portal 2",purchase,1.0,0 -143062096,"Portal 2",play,2.6,0 -143062096,"To the Moon",purchase,1.0,0 -143062096,"To the Moon",play,1.0,0 -143062096,"Left 4 Dead 2",purchase,1.0,0 -143062096,"Left 4 Dead 2",play,0.4,0 -14551726,"Loadout Campaign Beta",purchase,1.0,0 -14551726,"Loadout Campaign Beta",play,16.7,0 -14551726,"Marvel Heroes 2015",purchase,1.0,0 -14551726,"Marvel Heroes 2015",play,4.8,0 -14551726,"Dota 2",purchase,1.0,0 -14551726,"Dota 2",play,2.3,0 -14551726,"Team Fortress 2",purchase,1.0,0 -14551726,"Team Fortress 2",play,1.7,0 -14551726,"Counter-Strike Source",purchase,1.0,0 -14551726,"Counter-Strike Source",play,0.5,0 -14551726,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -14551726,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.4,0 -14551726,"Half-Life 2",purchase,1.0,0 -14551726,"Half-Life 2 Deathmatch",purchase,1.0,0 -14551726,"Half-Life 2 Lost Coast",purchase,1.0,0 -14551726,"Warface",purchase,1.0,0 -14551726,"Warframe",purchase,1.0,0 -268551184,"APB Reloaded",purchase,1.0,0 -268551184,"APB Reloaded",play,22.0,0 -268551184,"Team Fortress 2",purchase,1.0,0 -268551184,"Team Fortress 2",play,12.7,0 -268551184,"Dota 2",purchase,1.0,0 -268551184,"Dota 2",play,2.4,0 -268551184,"War Thunder",purchase,1.0,0 -268551184,"War Thunder",play,0.2,0 -165645559,"RACE 07",purchase,1.0,0 -165645559,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -165645559,"RACE On",purchase,1.0,0 -165645559,"STCC The Game",purchase,1.0,0 -9548378,"Counter-Strike",purchase,1.0,0 -9548378,"Counter-Strike Condition Zero",purchase,1.0,0 -9548378,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -17567828,"Counter-Strike Global Offensive",purchase,1.0,0 -17567828,"Counter-Strike Global Offensive",play,680.0,0 -17567828,"Arma 3",purchase,1.0,0 -17567828,"Arma 3",play,436.0,0 -17567828,"War Thunder",purchase,1.0,0 -17567828,"War Thunder",play,264.0,0 -17567828,"Total War SHOGUN 2",purchase,1.0,0 -17567828,"Total War SHOGUN 2",play,209.0,0 -17567828,"Grand Theft Auto V",purchase,1.0,0 -17567828,"Grand Theft Auto V",play,209.0,0 -17567828,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -17567828,"Rising Storm/Red Orchestra 2 Multiplayer",play,145.0,0 -17567828,"PAYDAY 2",purchase,1.0,0 -17567828,"PAYDAY 2",play,129.0,0 -17567828,"Elite Dangerous",purchase,1.0,0 -17567828,"Elite Dangerous",play,124.0,0 -17567828,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -17567828,"METAL GEAR SOLID V THE PHANTOM PAIN",play,88.0,0 -17567828,"Men of War Assault Squad 2",purchase,1.0,0 -17567828,"Men of War Assault Squad 2",play,79.0,0 -17567828,"ARK Survival Evolved",purchase,1.0,0 -17567828,"ARK Survival Evolved",play,71.0,0 -17567828,"Insurgency",purchase,1.0,0 -17567828,"Insurgency",play,59.0,0 -17567828,"EVGA PrecisionX 16",purchase,1.0,0 -17567828,"EVGA PrecisionX 16",play,51.0,0 -17567828,"Hitman Absolution",purchase,1.0,0 -17567828,"Hitman Absolution",play,49.0,0 -17567828,"Team Fortress 2",purchase,1.0,0 -17567828,"Team Fortress 2",play,35.0,0 -17567828,"Chivalry Medieval Warfare",purchase,1.0,0 -17567828,"Chivalry Medieval Warfare",play,35.0,0 -17567828,"Starpoint Gemini 2",purchase,1.0,0 -17567828,"Starpoint Gemini 2",play,29.0,0 -17567828,"Company of Heroes Tales of Valor",purchase,1.0,0 -17567828,"Company of Heroes Tales of Valor",play,27.0,0 -17567828,"Natural Selection 2",purchase,1.0,0 -17567828,"Natural Selection 2",play,25.0,0 -17567828,"Project Zomboid",purchase,1.0,0 -17567828,"Project Zomboid",play,23.0,0 -17567828,"Warframe",purchase,1.0,0 -17567828,"Warframe",play,22.0,0 -17567828,"Company of Heroes",purchase,1.0,0 -17567828,"Company of Heroes",play,22.0,0 -17567828,"Squad",purchase,1.0,0 -17567828,"Squad",play,20.0,0 -17567828,"DayZ",purchase,1.0,0 -17567828,"DayZ",play,19.9,0 -17567828,"Company of Heroes 2",purchase,1.0,0 -17567828,"Company of Heroes 2",play,19.8,0 -17567828,"Mad Max",purchase,1.0,0 -17567828,"Mad Max",play,19.4,0 -17567828,"The Stomping Land",purchase,1.0,0 -17567828,"The Stomping Land",play,16.7,0 -17567828,"Dirty Bomb",purchase,1.0,0 -17567828,"Dirty Bomb",play,15.2,0 -17567828,"Company of Heroes (New Steam Version)",purchase,1.0,0 -17567828,"Company of Heroes (New Steam Version)",play,15.1,0 -17567828,"Counter-Strike Source",purchase,1.0,0 -17567828,"Counter-Strike Source",play,14.9,0 -17567828,"Plague Inc Evolved",purchase,1.0,0 -17567828,"Plague Inc Evolved",play,14.1,0 -17567828,"Alien Swarm",purchase,1.0,0 -17567828,"Alien Swarm",play,12.8,0 -17567828,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -17567828,"Sins of a Solar Empire Rebellion",play,12.8,0 -17567828,"Spintires",purchase,1.0,0 -17567828,"Spintires",play,12.7,0 -17567828,"Nosgoth",purchase,1.0,0 -17567828,"Nosgoth",play,12.0,0 -17567828,"The Forest",purchase,1.0,0 -17567828,"The Forest",play,11.5,0 -17567828,"Day of Defeat Source",purchase,1.0,0 -17567828,"Day of Defeat Source",play,11.4,0 -17567828,"PlanetSide 2",purchase,1.0,0 -17567828,"PlanetSide 2",play,11.3,0 -17567828,"Euro Truck Simulator 2",purchase,1.0,0 -17567828,"Euro Truck Simulator 2",play,10.3,0 -17567828,"Metro 2033",purchase,1.0,0 -17567828,"Metro 2033",play,9.8,0 -17567828,"Left 4 Dead 2",purchase,1.0,0 -17567828,"Left 4 Dead 2",play,9.8,0 -17567828,"Dying Light",purchase,1.0,0 -17567828,"Dying Light",play,8.2,0 -17567828,"Grand Theft Auto IV",purchase,1.0,0 -17567828,"Grand Theft Auto IV",play,7.6,0 -17567828,"Insanely Twisted Shadow Planet",purchase,1.0,0 -17567828,"Insanely Twisted Shadow Planet",play,6.8,0 -17567828,"Dead Island",purchase,1.0,0 -17567828,"Dead Island",play,6.6,0 -17567828,"PAYDAY The Heist",purchase,1.0,0 -17567828,"PAYDAY The Heist",play,6.0,0 -17567828,"GRID Autosport",purchase,1.0,0 -17567828,"GRID Autosport",play,5.9,0 -17567828,"Heroes & Generals",purchase,1.0,0 -17567828,"Heroes & Generals",play,5.7,0 -17567828,"Star Conflict",purchase,1.0,0 -17567828,"Star Conflict",play,5.4,0 -17567828,"Hazard Ops",purchase,1.0,0 -17567828,"Hazard Ops",play,5.3,0 -17567828,"Empire Total War",purchase,1.0,0 -17567828,"Empire Total War",play,4.8,0 -17567828,"Saints Row The Third",purchase,1.0,0 -17567828,"Saints Row The Third",play,4.7,0 -17567828,"Napoleon Total War",purchase,1.0,0 -17567828,"Napoleon Total War",play,4.3,0 -17567828,"Verdun",purchase,1.0,0 -17567828,"Verdun",play,4.1,0 -17567828,"Angels Fall First",purchase,1.0,0 -17567828,"Angels Fall First",play,3.8,0 -17567828,"Next Car Game Wreckfest",purchase,1.0,0 -17567828,"Next Car Game Wreckfest",play,3.6,0 -17567828,"GRID 2",purchase,1.0,0 -17567828,"GRID 2",play,3.5,0 -17567828,"No More Room in Hell",purchase,1.0,0 -17567828,"No More Room in Hell",play,3.4,0 -17567828,"Garry's Mod",purchase,1.0,0 -17567828,"Garry's Mod",play,3.3,0 -17567828,"Company of Heroes Opposing Fronts",purchase,1.0,0 -17567828,"Company of Heroes Opposing Fronts",play,3.0,0 -17567828,"State of Decay",purchase,1.0,0 -17567828,"State of Decay",play,2.4,0 -17567828,"Fractured Space",purchase,1.0,0 -17567828,"Fractured Space",play,2.3,0 -17567828,"Sniper Elite V2",purchase,1.0,0 -17567828,"Sniper Elite V2",play,2.1,0 -17567828,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -17567828,"The Witcher 2 Assassins of Kings Enhanced Edition",play,1.8,0 -17567828,"Left 4 Dead",purchase,1.0,0 -17567828,"Left 4 Dead",play,1.8,0 -17567828,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -17567828,"Burnout Paradise The Ultimate Box",play,1.5,0 -17567828,"Firefall",purchase,1.0,0 -17567828,"Firefall",play,1.3,0 -17567828,"Moonbase Alpha",purchase,1.0,0 -17567828,"Moonbase Alpha",play,1.2,0 -17567828,"HAWKEN",purchase,1.0,0 -17567828,"HAWKEN",play,1.1,0 -17567828,"theHunter",purchase,1.0,0 -17567828,"theHunter",play,0.9,0 -17567828,"DCS World",purchase,1.0,0 -17567828,"DCS World",play,0.9,0 -17567828,"Patch testing for Chivalry",purchase,1.0,0 -17567828,"Patch testing for Chivalry",play,0.7,0 -17567828,"Outlast",purchase,1.0,0 -17567828,"Outlast",play,0.7,0 -17567828,"The Showdown Effect",purchase,1.0,0 -17567828,"The Showdown Effect",play,0.6,0 -17567828,"GRID",purchase,1.0,0 -17567828,"GRID",play,0.6,0 -17567828,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -17567828,"Warhammer 40,000 Dawn of War Soulstorm",play,0.5,0 -17567828,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -17567828,"Medal of Honor(TM) Multiplayer",play,0.5,0 -17567828,"Half-Life Blue Shift",purchase,1.0,0 -17567828,"Half-Life Blue Shift",play,0.5,0 -17567828,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -17567828,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.4,0 -17567828,"Counter-Strike",purchase,1.0,0 -17567828,"Counter-Strike",play,0.3,0 -17567828,"World of Guns Gun Disassembly",purchase,1.0,0 -17567828,"World of Guns Gun Disassembly",play,0.3,0 -17567828,"Hitman Blood Money",purchase,1.0,0 -17567828,"Hitman Blood Money",play,0.3,0 -17567828,"How to Survive",purchase,1.0,0 -17567828,"How to Survive",play,0.3,0 -17567828,"X3 Terran Conflict",purchase,1.0,0 -17567828,"X3 Terran Conflict",play,0.3,0 -17567828,"Zombie Panic Source",purchase,1.0,0 -17567828,"Zombie Panic Source",play,0.2,0 -17567828,"ACE - Arena Cyber Evolution",purchase,1.0,0 -17567828,"ACE - Arena Cyber Evolution",play,0.2,0 -17567828,"Don't Starve Together Beta",purchase,1.0,0 -17567828,"Don't Starve Together Beta",play,0.2,0 -17567828,"Risk of Rain",purchase,1.0,0 -17567828,"Risk of Rain",play,0.2,0 -17567828,"Half-Life 2",purchase,1.0,0 -17567828,"Half-Life 2",play,0.2,0 -17567828,"Half-Life",purchase,1.0,0 -17567828,"Half-Life",play,0.1,0 -17567828,"Medal of Honor(TM) Single Player",purchase,1.0,0 -17567828,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -17567828,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -17567828,"The Expendabros",purchase,1.0,0 -17567828,"Arma 2 Operation Arrowhead",purchase,1.0,0 -17567828,"3SwitcheD",purchase,1.0,0 -17567828,"Always Sometimes Monsters",purchase,1.0,0 -17567828,"Arma 2",purchase,1.0,0 -17567828,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -17567828,"Arma 3 Helicopters",purchase,1.0,0 -17567828,"Arma 3 Karts",purchase,1.0,0 -17567828,"Arma 3 Zeus",purchase,1.0,0 -17567828,"Arma Cold War Assault",purchase,1.0,0 -17567828,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -17567828,"Battle vs Chess",purchase,1.0,0 -17567828,"Blackguards",purchase,1.0,0 -17567828,"Chicken Shoot 2",purchase,1.0,0 -17567828,"Chicken Shoot Gold",purchase,1.0,0 -17567828,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -17567828,"Commander Conquest of the Americas Gold",purchase,1.0,0 -17567828,"Crysis 2 Maximum Edition",purchase,1.0,0 -17567828,"Darksiders",purchase,1.0,0 -17567828,"Day of Defeat",purchase,1.0,0 -17567828,"Dead Space",purchase,1.0,0 -17567828,"Deathmatch Classic",purchase,1.0,0 -17567828,"Dino D-Day",purchase,1.0,0 -17567828,"Double Action Boogaloo",purchase,1.0,0 -17567828,"Earth 2140 HD",purchase,1.0,0 -17567828,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -17567828,"Full Mojo Rampage",purchase,1.0,0 -17567828,"Gorky 17",purchase,1.0,0 -17567828,"Half-Life 2 Deathmatch",purchase,1.0,0 -17567828,"Half-Life 2 Lost Coast",purchase,1.0,0 -17567828,"Half-Life Opposing Force",purchase,1.0,0 -17567828,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",purchase,1.0,0 -17567828,"Heli Heroes",purchase,1.0,0 -17567828,"Iron Front D-Day DLC",purchase,1.0,0 -17567828,"Jack Orlando Director's Cut",purchase,1.0,0 -17567828,"KickBeat Steam Edition",purchase,1.0,0 -17567828,"Medal of Honor Pre-Order",purchase,1.0,0 -17567828,"Mirror's Edge",purchase,1.0,0 -17567828,"Pitiri 1977",purchase,1.0,0 -17567828,"Pressure",purchase,1.0,0 -17567828,"Red Faction Armageddon",purchase,1.0,0 -17567828,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -17567828,"Ricochet",purchase,1.0,0 -17567828,"State of Decay - Breakdown",purchase,1.0,0 -17567828,"State of Decay - Lifeline",purchase,1.0,0 -17567828,"Team Fortress Classic",purchase,1.0,0 -17567828,"Tesla Effect",purchase,1.0,0 -17567828,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -17567828,"Two Worlds II",purchase,1.0,0 -17567828,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -17567828,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -88775181,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -88775181,"Call of Duty Modern Warfare 3 - Multiplayer",play,363.0,0 -88775181,"APB Reloaded",purchase,1.0,0 -88775181,"APB Reloaded",play,174.0,0 -88775181,"Grand Theft Auto V",purchase,1.0,0 -88775181,"Grand Theft Auto V",play,151.0,0 -88775181,"Team Fortress 2",purchase,1.0,0 -88775181,"Team Fortress 2",play,115.0,0 -88775181,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -88775181,"Call of Duty Modern Warfare 2 - Multiplayer",play,87.0,0 -88775181,"Rocket League",purchase,1.0,0 -88775181,"Rocket League",play,69.0,0 -88775181,"Robocraft",purchase,1.0,0 -88775181,"Robocraft",play,65.0,0 -88775181,"Terraria",purchase,1.0,0 -88775181,"Terraria",play,57.0,0 -88775181,"Trove",purchase,1.0,0 -88775181,"Trove",play,46.0,0 -88775181,"Euro Truck Simulator 2",purchase,1.0,0 -88775181,"Euro Truck Simulator 2",play,36.0,0 -88775181,"Shift 2 Unleashed",purchase,1.0,0 -88775181,"Shift 2 Unleashed",play,31.0,0 -88775181,"Neverwinter",purchase,1.0,0 -88775181,"Neverwinter",play,31.0,0 -88775181,"Call of Duty Modern Warfare 3",purchase,1.0,0 -88775181,"Call of Duty Modern Warfare 3",play,28.0,0 -88775181,"Unturned",purchase,1.0,0 -88775181,"Unturned",play,25.0,0 -88775181,"Counter-Strike Global Offensive",purchase,1.0,0 -88775181,"Counter-Strike Global Offensive",play,25.0,0 -88775181,"Spintires",purchase,1.0,0 -88775181,"Spintires",play,22.0,0 -88775181,"Garry's Mod",purchase,1.0,0 -88775181,"Garry's Mod",play,15.1,0 -88775181,"Left 4 Dead 2",purchase,1.0,0 -88775181,"Left 4 Dead 2",play,12.1,0 -88775181,"Dota 2",purchase,1.0,0 -88775181,"Dota 2",play,11.9,0 -88775181,"AdVenture Capitalist",purchase,1.0,0 -88775181,"AdVenture Capitalist",play,8.1,0 -88775181,"PlanetSide 2",purchase,1.0,0 -88775181,"PlanetSide 2",play,8.0,0 -88775181,"RaceRoom Racing Experience ",purchase,1.0,0 -88775181,"RaceRoom Racing Experience ",play,7.5,0 -88775181,"Call of Duty Modern Warfare 2",purchase,1.0,0 -88775181,"Call of Duty Modern Warfare 2",play,6.5,0 -88775181,"ArcheAge",purchase,1.0,0 -88775181,"ArcheAge",play,6.4,0 -88775181,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -88775181,"Call of Duty Advanced Warfare - Multiplayer",play,5.6,0 -88775181,"Car Mechanic Simulator 2015",purchase,1.0,0 -88775181,"Car Mechanic Simulator 2015",play,3.6,0 -88775181,"Portal",purchase,1.0,0 -88775181,"Portal",play,3.4,0 -88775181,"BattleBlock Theater",purchase,1.0,0 -88775181,"BattleBlock Theater",play,2.9,0 -88775181,"theHunter",purchase,1.0,0 -88775181,"theHunter",play,2.2,0 -88775181,"Warframe",purchase,1.0,0 -88775181,"Warframe",play,2.1,0 -88775181,"Sanctum 2",purchase,1.0,0 -88775181,"Sanctum 2",play,2.0,0 -88775181,"Banished",purchase,1.0,0 -88775181,"Banished",play,1.8,0 -88775181,"AirMech",purchase,1.0,0 -88775181,"AirMech",play,1.0,0 -88775181,"Fractured Space",purchase,1.0,0 -88775181,"Fractured Space",play,0.8,0 -88775181,"Nosgoth",purchase,1.0,0 -88775181,"Nosgoth",play,0.7,0 -88775181,"Cubic Castles",purchase,1.0,0 -88775181,"Cubic Castles",play,0.7,0 -88775181,"Guns and Robots",purchase,1.0,0 -88775181,"Guns and Robots",play,0.6,0 -88775181,"Escape",purchase,1.0,0 -88775181,"Escape",play,0.5,0 -88775181,"Pinball Arcade",purchase,1.0,0 -88775181,"Pinball Arcade",play,0.4,0 -88775181,"Sniper Elite V2",purchase,1.0,0 -88775181,"Sniper Elite V2",play,0.2,0 -88775181,"Source Filmmaker",purchase,1.0,0 -88775181,"Source Filmmaker",play,0.1,0 -88775181,"SMITE",purchase,1.0,0 -88775181,"SMITE",play,0.1,0 -88775181,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -88775181,"Bus Driver",purchase,1.0,0 -88775181,"Call of Duty Advanced Warfare",purchase,1.0,0 -88775181,"Car Mechanic Simulator 2015 - PickUp & SUV DLC",purchase,1.0,0 -88775181,"Car Mechanic Simulator 2015 - TraderPack",purchase,1.0,0 -88775181,"Car Mechanic Simulator 2015 - Visual Tuning",purchase,1.0,0 -88775181,"Car Mechanic Simulator 2015 - Youngtimer",purchase,1.0,0 -88775181,"Euro Truck Simulator",purchase,1.0,0 -88775181,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -88775181,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -88775181,"Scania Truck Driving Simulator",purchase,1.0,0 -88775181,"Trucks & Trailers",purchase,1.0,0 -104380136,"Killing Floor",purchase,1.0,0 -104380136,"Killing Floor",play,0.2,0 -104380136,"Fable III",purchase,1.0,0 -104380136,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -41088397,"Team Fortress 2",purchase,1.0,0 -41088397,"Team Fortress 2",play,2.2,0 -305303802,"Emily is Away",purchase,1.0,0 -305303802,"Emily is Away",play,0.6,0 -305303802,"Steel Ocean",purchase,1.0,0 -305303802,"Lineage II",purchase,1.0,0 -63990035,"Counter-Strike Global Offensive",purchase,1.0,0 -63990035,"Counter-Strike Global Offensive",play,792.0,0 -63990035,"Counter-Strike Source",purchase,1.0,0 -63990035,"Counter-Strike Source",play,370.0,0 -63990035,"Rocket League",purchase,1.0,0 -63990035,"Rocket League",play,81.0,0 -63990035,"Garry's Mod",purchase,1.0,0 -63990035,"Garry's Mod",play,41.0,0 -63990035,"Brawlhalla",purchase,1.0,0 -63990035,"Brawlhalla",play,15.6,0 -63990035,"Team Fortress 2",purchase,1.0,0 -63990035,"Team Fortress 2",play,12.4,0 -63990035,"Warface",purchase,1.0,0 -63990035,"Warface",play,7.8,0 -63990035,"Dota 2",purchase,1.0,0 -63990035,"Dota 2",play,2.5,0 -63990035,"Alien Swarm",purchase,1.0,0 -63990035,"Alien Swarm",play,1.6,0 -63990035,"Counter-Strike Nexon Zombies",purchase,1.0,0 -63990035,"Dead Island Epidemic",purchase,1.0,0 -63990035,"Double Action Boogaloo",purchase,1.0,0 -63990035,"Fistful of Frags",purchase,1.0,0 -63990035,"Warframe",purchase,1.0,0 -61806811,"Darksiders",purchase,1.0,0 -61806811,"Darksiders",play,65.0,0 -61806811,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -61806811,"The Witcher 2 Assassins of Kings Enhanced Edition",play,54.0,0 -61806811,"Company of Heroes 2",purchase,1.0,0 -61806811,"Company of Heroes 2",play,25.0,0 -61806811,"Call of Duty Modern Warfare 2",purchase,1.0,0 -61806811,"Call of Duty Modern Warfare 2",play,6.9,0 -61806811,"Dota 2",purchase,1.0,0 -61806811,"Dota 2",play,1.0,0 -61806811,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -61806811,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.2,0 -229375507,"Team Fortress 2",purchase,1.0,0 -229375507,"Team Fortress 2",play,0.2,0 -57415686,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -57415686,"Call of Duty Black Ops - Multiplayer",play,78.0,0 -57415686,"Call of Duty Modern Warfare 2",purchase,1.0,0 -57415686,"Call of Duty Modern Warfare 2",play,54.0,0 -57415686,"Call of Duty Black Ops",purchase,1.0,0 -57415686,"Call of Duty Black Ops",play,22.0,0 -57415686,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -215562325,"Grand Theft Auto IV",purchase,1.0,0 -215562325,"Grand Theft Auto IV",play,20.0,0 -30067217,"Half-Life 2 Episode One",purchase,1.0,0 -30067217,"Half-Life 2 Episode One",play,4.2,0 -30067217,"Half-Life 2 Deathmatch",purchase,1.0,0 -30067217,"Half-Life 2 Lost Coast",purchase,1.0,0 -30067217,"Half-Life Deathmatch Source",purchase,1.0,0 -129356429,"Sid Meier's Civilization V",purchase,1.0,0 -129356429,"Sid Meier's Civilization V",play,1.8,0 -298517436,"Dota 2",purchase,1.0,0 -298517436,"Dota 2",play,1.9,0 -181564172,"Robocraft",purchase,1.0,0 -181564172,"Robocraft",play,92.0,0 -181564172,"Magicka Wizard Wars",purchase,1.0,0 -181564172,"Magicka Wizard Wars",play,19.5,0 -181564172,"DC Universe Online",purchase,1.0,0 -181564172,"DC Universe Online",play,7.1,0 -181564172,"Magicite",purchase,1.0,0 -181564172,"Magicite",play,6.2,0 -181564172,"Path of Exile",purchase,1.0,0 -181564172,"Path of Exile",play,5.8,0 -181564172,"Trove",purchase,1.0,0 -181564172,"Trove",play,4.4,0 -181564172,"Sins of a Dark Age",purchase,1.0,0 -181564172,"Sins of a Dark Age",play,4.3,0 -181564172,"Gems of War",purchase,1.0,0 -181564172,"Gems of War",play,3.3,0 -181564172,"Team Fortress 2",purchase,1.0,0 -181564172,"Team Fortress 2",play,3.1,0 -181564172,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -181564172,"Infinity Wars - Animated Trading Card Game",play,2.3,0 -181564172,"Might & Magic Duel of Champions",purchase,1.0,0 -181564172,"Might & Magic Duel of Champions",play,2.2,0 -181564172,"Golden Rush",purchase,1.0,0 -181564172,"Golden Rush",play,2.1,0 -181564172,"Block N Load",purchase,1.0,0 -181564172,"Block N Load",play,2.1,0 -181564172,"Dota 2",purchase,1.0,0 -181564172,"Dota 2",play,2.0,0 -181564172,"Infinite Crisis",purchase,1.0,0 -181564172,"Infinite Crisis",play,1.5,0 -181564172,"Star Conflict",purchase,1.0,0 -181564172,"Star Conflict",play,1.5,0 -181564172,"HAWKEN",purchase,1.0,0 -181564172,"HAWKEN",play,1.3,0 -181564172,"Bloodline Champions",purchase,1.0,0 -181564172,"Bloodline Champions",play,1.2,0 -181564172,"Strife",purchase,1.0,0 -181564172,"Strife",play,1.0,0 -181564172,"Brawlhalla",purchase,1.0,0 -181564172,"Brawlhalla",play,1.0,0 -181564172,"SolForge",purchase,1.0,0 -181564172,"SolForge",play,0.9,0 -181564172,"Transformice",purchase,1.0,0 -181564172,"Transformice",play,0.7,0 -181564172,"AirMech",purchase,1.0,0 -181564172,"AirMech",play,0.5,0 -181564172,"CubeGun",purchase,1.0,0 -181564172,"CubeGun",play,0.5,0 -181564172,"Pox Nora",purchase,1.0,0 -181564172,"Pox Nora",play,0.5,0 -181564172,"Nosgoth",purchase,1.0,0 -181564172,"Nosgoth",play,0.3,0 -181564172,"Apotheon Arena",purchase,1.0,0 -181564172,"Apotheon Arena",play,0.1,0 -181564172,"Battle Battalions",purchase,1.0,0 -181564172,"Tactical Genius",purchase,1.0,0 -197700401,"Dota 2",purchase,1.0,0 -197700401,"Dota 2",play,0.7,0 -197700401,"Quake Live",purchase,1.0,0 -197700401,"Unturned",purchase,1.0,0 -55948496,"Half-Life 2 Deathmatch",purchase,1.0,0 -55948496,"Half-Life 2 Lost Coast",purchase,1.0,0 -33788990,"Half-Life 2",purchase,1.0,0 -33788990,"Half-Life 2",play,20.0,0 -33788990,"Half-Life 2 Deathmatch",purchase,1.0,0 -33788990,"Half-Life 2 Lost Coast",purchase,1.0,0 -297637533,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -297637533,"School of Dragons How to Train Your Dragon",play,5.7,0 -83160060,"Dungeon Siege III",purchase,1.0,0 -83160060,"Dungeon Siege III",play,18.1,0 -75995878,"Mafia II",purchase,1.0,0 -75995878,"Mafia II",play,24.0,0 -273163848,"Brick-Force",purchase,1.0,0 -273163848,"Brick-Force",play,0.4,0 -59050554,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -59050554,"Call of Duty Modern Warfare 2 - Multiplayer",play,22.0,0 -59050554,"Call of Duty Modern Warfare 2",purchase,1.0,0 -59050554,"Call of Duty Modern Warfare 2",play,8.2,0 -59050554,"Battlefield Bad Company 2",purchase,1.0,0 -59050554,"Battlefield Bad Company 2",play,1.4,0 -59050554,"Saints Row 2",purchase,1.0,0 -304213220,"Garry's Mod",purchase,1.0,0 -304213220,"Garry's Mod",play,55.0,0 -304213220,"Robocraft",purchase,1.0,0 -183619586,"Dota 2",purchase,1.0,0 -183619586,"Dota 2",play,0.4,0 -101022115,"Grand Theft Auto San Andreas",purchase,1.0,0 -101022115,"Grand Theft Auto San Andreas",play,53.0,0 -101022115,"Grand Theft Auto San Andreas",purchase,1.0,0 -102268574,"Robocraft",purchase,1.0,0 -102268574,"Robocraft",play,206.0,0 -102268574,"Counter-Strike Global Offensive",purchase,1.0,0 -102268574,"Counter-Strike Global Offensive",play,149.0,0 -102268574,"Unturned",purchase,1.0,0 -102268574,"Unturned",play,45.0,0 -102268574,"Team Fortress 2",purchase,1.0,0 -102268574,"Team Fortress 2",play,33.0,0 -102268574,"Jagged Alliance - Back in Action",purchase,1.0,0 -102268574,"Jagged Alliance - Back in Action",play,32.0,0 -102268574,"Trove",purchase,1.0,0 -102268574,"Trove",play,9.9,0 -102268574,"Survarium",purchase,1.0,0 -102268574,"Survarium",play,3.7,0 -102268574,"Cry of Fear",purchase,1.0,0 -102268574,"Cry of Fear",play,1.0,0 -102268574,"Eldevin",purchase,1.0,0 -102268574,"Eldevin",play,0.3,0 -102268574,"BLOCKADE 3D",purchase,1.0,0 -102268574,"BLOCKADE 3D",play,0.2,0 -102268574,"Neverwinter",purchase,1.0,0 -102268574,"Neverwinter",play,0.2,0 -102268574,"Magicka Wizard Wars",purchase,1.0,0 -102268574,"Commando Jack",purchase,1.0,0 -102268574,"Counter-Strike Nexon Zombies",purchase,1.0,0 -102268574,"Dark Matter",purchase,1.0,0 -102268574,"Elsword",purchase,1.0,0 -102268574,"Global Ops Commando Libya",purchase,1.0,0 -102268574,"Jet Racing Extreme",purchase,1.0,0 -102268574,"No More Room in Hell",purchase,1.0,0 -102268574,"Particula",purchase,1.0,0 -102268574,"Starion Tactics",purchase,1.0,0 -102268574,"Temper Tantrum",purchase,1.0,0 -102268574,"Uncharted Waters Online Gran Atlas",purchase,1.0,0 -102268574,"ZombieRun",purchase,1.0,0 -100833937,"Grand Theft Auto IV",purchase,1.0,0 -100833937,"Grand Theft Auto IV",play,65.0,0 -100833937,"Cities XL 2012",purchase,1.0,0 -100833937,"Cities XL 2012",play,57.0,0 -100833937,"Portal 2",purchase,1.0,0 -100833937,"Portal 2",play,15.1,0 -100833937,"Portal",purchase,1.0,0 -100833937,"Portal",play,5.9,0 -100833937,"Puddle",purchase,1.0,0 -100833937,"Puddle",play,0.4,0 -103840115,"Team Fortress 2",purchase,1.0,0 -103840115,"Team Fortress 2",play,0.2,0 -250562791,"Trove",purchase,1.0,0 -250562791,"Trove",play,1.3,0 -250562791,"SMITE",purchase,1.0,0 -158121917,"Dota 2",purchase,1.0,0 -158121917,"Dota 2",play,1231.0,0 -158121917,"No More Room in Hell",purchase,1.0,0 -158121917,"No More Room in Hell",play,13.8,0 -158121917,"Dead Island Epidemic",purchase,1.0,0 -158121917,"Dead Island Epidemic",play,2.0,0 -197518122,"Warframe",purchase,1.0,0 -197518122,"Warframe",play,66.0,0 -197518122,"War Thunder",purchase,1.0,0 -197518122,"War Thunder",play,46.0,0 -197518122,"Might & Magic Duel of Champions",purchase,1.0,0 -197518122,"Might & Magic Duel of Champions",play,2.3,0 -197518122,"Loadout",purchase,1.0,0 -197518122,"Loadout",play,0.6,0 -197518122,"Galcon 2",purchase,1.0,0 -197518122,"Galcon 2",play,0.2,0 -197518122,"Dizzel",purchase,1.0,0 -165945338,"Dota 2",purchase,1.0,0 -165945338,"Dota 2",play,0.7,0 -28425181,"Half-Life 2 Episode One",purchase,1.0,0 -28425181,"Half-Life 2 Episode One",play,20.0,0 -28425181,"Half-Life 2 Deathmatch",purchase,1.0,0 -28425181,"Half-Life 2 Lost Coast",purchase,1.0,0 -28425181,"Half-Life Deathmatch Source",purchase,1.0,0 -113868035,"Dota 2",purchase,1.0,0 -113868035,"Dota 2",play,375.0,0 -196403090,"Counter-Strike Global Offensive",purchase,1.0,0 -196403090,"Counter-Strike Global Offensive",play,249.0,0 -196403090,"The Four Kings Casino and Slots",purchase,1.0,0 -196403090,"The Four Kings Casino and Slots",play,7.4,0 -196403090,"War Thunder",purchase,1.0,0 -196403090,"War Thunder",play,2.0,0 -196403090,"Dota 2",purchase,1.0,0 -196403090,"Dota 2",play,1.0,0 -196403090,"HAWKEN",purchase,1.0,0 -196403090,"HAWKEN",play,0.5,0 -196403090,"Dirty Bomb",purchase,1.0,0 -196403090,"Dirty Bomb",play,0.4,0 -196403090,"Fallen Earth",purchase,1.0,0 -196403090,"Heroes & Generals",purchase,1.0,0 -71926373,"Team Fortress 2",purchase,1.0,0 -71926373,"Team Fortress 2",play,19.9,0 -71926373,"Portal 2",purchase,1.0,0 -71926373,"Magicka",purchase,1.0,0 -71926373,"Magicka Vietnam",purchase,1.0,0 -71926373,"Magicka Wizard's Survival Kit",purchase,1.0,0 -83411030,"Team Fortress 2",purchase,1.0,0 -83411030,"Team Fortress 2",play,7.7,0 -188949150,"Garry's Mod",purchase,1.0,0 -188949150,"Garry's Mod",play,86.0,0 -188949150,"Trials Fusion",purchase,1.0,0 -188949150,"Trials Fusion",play,81.0,0 -188949150,"Counter-Strike Global Offensive",purchase,1.0,0 -188949150,"Counter-Strike Global Offensive",play,37.0,0 -188949150,"Geometry Dash",purchase,1.0,0 -188949150,"Geometry Dash",play,37.0,0 -188949150,"Realm of the Mad God",purchase,1.0,0 -188949150,"Realm of the Mad God",play,34.0,0 -188949150,"Clicker Heroes",purchase,1.0,0 -188949150,"Clicker Heroes",play,34.0,0 -188949150,"Team Fortress 2",purchase,1.0,0 -188949150,"Team Fortress 2",play,30.0,0 -188949150,"Warface",purchase,1.0,0 -188949150,"Warface",play,26.0,0 -188949150,"AdVenture Capitalist",purchase,1.0,0 -188949150,"AdVenture Capitalist",play,20.0,0 -188949150,"War Thunder",purchase,1.0,0 -188949150,"War Thunder",play,18.2,0 -188949150,"Tomb Raider",purchase,1.0,0 -188949150,"Tomb Raider",play,13.4,0 -188949150,"One Finger Death Punch",purchase,1.0,0 -188949150,"One Finger Death Punch",play,11.0,0 -188949150,"Turbo Dismount",purchase,1.0,0 -188949150,"Turbo Dismount",play,9.9,0 -188949150,"BioShock Infinite",purchase,1.0,0 -188949150,"BioShock Infinite",play,9.8,0 -188949150,"Dirty Bomb",purchase,1.0,0 -188949150,"Dirty Bomb",play,8.4,0 -188949150,"Call of Duty World at War",purchase,1.0,0 -188949150,"Call of Duty World at War",play,7.5,0 -188949150,"Dishonored",purchase,1.0,0 -188949150,"Dishonored",play,5.5,0 -188949150,"Half-Life 2 Episode Two",purchase,1.0,0 -188949150,"Half-Life 2 Episode Two",play,5.2,0 -188949150,"Loadout",purchase,1.0,0 -188949150,"Loadout",play,3.9,0 -188949150,"Goat Simulator",purchase,1.0,0 -188949150,"Goat Simulator",play,3.6,0 -188949150,"Portal",purchase,1.0,0 -188949150,"Portal",play,3.6,0 -188949150,"Super Meat Boy",purchase,1.0,0 -188949150,"Super Meat Boy",play,2.8,0 -188949150,"Unturned",purchase,1.0,0 -188949150,"Unturned",play,2.7,0 -188949150,"PAC-MAN Championship Edition DX+",purchase,1.0,0 -188949150,"PAC-MAN Championship Edition DX+",play,2.0,0 -188949150,"Castle Crashers",purchase,1.0,0 -188949150,"Castle Crashers",play,2.0,0 -188949150,"BioShock 2",purchase,1.0,0 -188949150,"BioShock 2",play,1.9,0 -188949150,"Toribash",purchase,1.0,0 -188949150,"Toribash",play,1.7,0 -188949150,"BioShock",purchase,1.0,0 -188949150,"BioShock",play,0.9,0 -188949150,"DLC Quest",purchase,1.0,0 -188949150,"DLC Quest",play,0.9,0 -188949150,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -188949150,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.7,0 -188949150,"Dota 2",purchase,1.0,0 -188949150,"Dota 2",play,0.6,0 -188949150,"Heroes & Generals",purchase,1.0,0 -188949150,"Heroes & Generals",play,0.5,0 -188949150,"FINAL FANTASY XIV A Realm Reborn",purchase,1.0,0 -188949150,"FINAL FANTASY XIV A Realm Reborn",play,0.5,0 -188949150,"Cards and Castles",purchase,1.0,0 -188949150,"Cards and Castles",play,0.5,0 -188949150,"Trove",purchase,1.0,0 -188949150,"Trove",play,0.3,0 -188949150,"HAWKEN",purchase,1.0,0 -188949150,"HAWKEN",play,0.3,0 -188949150,"Far Cry 3",purchase,1.0,0 -188949150,"Far Cry 3",play,0.1,0 -188949150,"Waveform",purchase,1.0,0 -188949150,"Waveform",play,0.1,0 -188949150,"Run and Fire",purchase,1.0,0 -188949150,"Elsword",purchase,1.0,0 -188949150,"FINAL FANTASY XIV A Realm Reborn (NA version)",purchase,1.0,0 -188949150,"FreeStyle2 Street Basketball",purchase,1.0,0 -188949150,"Gotham City Impostors Free To Play",purchase,1.0,0 -188949150,"Kung Fury",purchase,1.0,0 -188949150,"PlanetSide 2",purchase,1.0,0 -188949150,"Robocraft",purchase,1.0,0 -128651888,"Prison Architect",purchase,1.0,0 -128651888,"Prison Architect",play,70.0,0 -128651888,"Warface",purchase,1.0,0 -128651888,"Warface",play,63.0,0 -128651888,"PAYDAY 2",purchase,1.0,0 -128651888,"PAYDAY 2",play,41.0,0 -128651888,"Terraria",purchase,1.0,0 -128651888,"Terraria",play,40.0,0 -128651888,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -128651888,"Tom Clancy's Ghost Recon Phantoms - EU",play,25.0,0 -128651888,"Euro Truck Simulator 2",purchase,1.0,0 -128651888,"Euro Truck Simulator 2",play,19.9,0 -128651888,"Hitman Absolution",purchase,1.0,0 -128651888,"Hitman Absolution",play,16.5,0 -128651888,"Train Simulator",purchase,1.0,0 -128651888,"Train Simulator",play,14.6,0 -128651888,"Don't Starve Together Beta",purchase,1.0,0 -128651888,"Don't Starve Together Beta",play,8.0,0 -128651888,"Papers, Please",purchase,1.0,0 -128651888,"Papers, Please",play,7.6,0 -128651888,"Heroes & Generals",purchase,1.0,0 -128651888,"Heroes & Generals",play,5.8,0 -128651888,"Dota 2",purchase,1.0,0 -128651888,"Dota 2",play,5.3,0 -128651888,"Game Dev Tycoon",purchase,1.0,0 -128651888,"Game Dev Tycoon",play,2.9,0 -128651888,"Gas Guzzlers Extreme",purchase,1.0,0 -128651888,"Gas Guzzlers Extreme",play,2.4,0 -128651888,"Fractured Space",purchase,1.0,0 -128651888,"Fractured Space",play,1.8,0 -128651888,"Quake Live",purchase,1.0,0 -128651888,"Quake Live",play,1.7,0 -128651888,"Don't Starve",purchase,1.0,0 -128651888,"Don't Starve",play,1.2,0 -128651888,"Realm of the Mad God",purchase,1.0,0 -128651888,"Realm of the Mad God",play,1.2,0 -128651888,"Little Inferno",purchase,1.0,0 -128651888,"Little Inferno",play,1.1,0 -128651888,"Team Fortress 2",purchase,1.0,0 -128651888,"Team Fortress 2",play,0.9,0 -128651888,"Moonbase Alpha",purchase,1.0,0 -128651888,"Moonbase Alpha",play,0.3,0 -128651888,"Infinite Crisis",purchase,1.0,0 -128651888,"Infinite Crisis",play,0.2,0 -128651888,"8BitBoy",purchase,1.0,0 -128651888,"8BitBoy",play,0.2,0 -128651888,"Unturned",purchase,1.0,0 -128651888,"Unturned",play,0.2,0 -128651888,"Stronghold Crusader Extreme HD",purchase,1.0,0 -128651888,"Stronghold Crusader Extreme HD",play,0.1,0 -128651888,"Running Shadow",purchase,1.0,0 -128651888,"Running Shadow",play,0.1,0 -128651888,"Project Explore",purchase,1.0,0 -128651888,"Darkwind War on Wheels",purchase,1.0,0 -128651888,"Robocraft",purchase,1.0,0 -128651888,"Doorways The Underworld",purchase,1.0,0 -128651888,"Crystals of Time",purchase,1.0,0 -128651888,"Hitman Sniper Challenge",purchase,1.0,0 -128651888,"Stronghold Crusader HD",purchase,1.0,0 -128651888,"sZone-Online",purchase,1.0,0 -128651888,"War Thunder",purchase,1.0,0 -271133576,"Wrath of Athena",purchase,1.0,0 -271133576,"Wrath of Athena",play,0.4,0 -271133576,"UberStrike",purchase,1.0,0 -271133576,"UberStrike",play,0.3,0 -271133576,"Run and Fire",purchase,1.0,0 -117657402,"Rome Total War",purchase,1.0,0 -117657402,"Rome Total War",play,108.0,0 -117657402,"Sid Meier's Civilization V",purchase,1.0,0 -117657402,"Sid Meier's Civilization V",play,55.0,0 -117657402,"Mafia II",purchase,1.0,0 -117657402,"Mafia II",play,42.0,0 -117657402,"Napoleon Total War",purchase,1.0,0 -117657402,"Napoleon Total War",play,15.6,0 -117657402,"Rome Total War - Alexander",purchase,1.0,0 -117657402,"Rome Total War - Alexander",play,3.7,0 -117657402,"Counter-Strike",purchase,1.0,0 -117657402,"Counter-Strike",play,3.2,0 -117657402,"The Elder Scrolls V Skyrim",purchase,1.0,0 -117657402,"The Elder Scrolls V Skyrim",play,2.3,0 -117657402,"Counter-Strike Condition Zero",purchase,1.0,0 -117657402,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -117657402,"Counter-Strike Global Offensive",purchase,1.0,0 -117657402,"Counter-Strike Source",purchase,1.0,0 -283569430,"Counter-Strike Global Offensive",purchase,1.0,0 -283569430,"Counter-Strike Global Offensive",play,154.0,0 -156145362,"Team Fortress 2",purchase,1.0,0 -156145362,"Team Fortress 2",play,0.2,0 -82352462,"Counter-Strike Global Offensive",purchase,1.0,0 -82352462,"Counter-Strike Global Offensive",play,815.0,0 -82352462,"Dota 2",purchase,1.0,0 -82352462,"Dota 2",play,500.0,0 -82352462,"Counter-Strike",purchase,1.0,0 -82352462,"Counter-Strike",play,238.0,0 -82352462,"Rocket League",purchase,1.0,0 -82352462,"Rocket League",play,162.0,0 -82352462,"Left 4 Dead 2",purchase,1.0,0 -82352462,"Left 4 Dead 2",play,137.0,0 -82352462,"DayZ",purchase,1.0,0 -82352462,"DayZ",play,99.0,0 -82352462,"Rocksmith 2014",purchase,1.0,0 -82352462,"Rocksmith 2014",play,66.0,0 -82352462,"Lords Of The Fallen",purchase,1.0,0 -82352462,"Lords Of The Fallen",play,57.0,0 -82352462,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -82352462,"Call of Duty Modern Warfare 2 - Multiplayer",play,56.0,0 -82352462,"Counter-Strike Source",purchase,1.0,0 -82352462,"Counter-Strike Source",play,56.0,0 -82352462,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -82352462,"Call of Duty Black Ops - Multiplayer",play,53.0,0 -82352462,"Killing Floor",purchase,1.0,0 -82352462,"Killing Floor",play,48.0,0 -82352462,"Dying Light",purchase,1.0,0 -82352462,"Dying Light",play,42.0,0 -82352462,"Dirty Bomb",purchase,1.0,0 -82352462,"Dirty Bomb",play,35.0,0 -82352462,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -82352462,"The Elder Scrolls IV Oblivion ",play,29.0,0 -82352462,"Tom Clancy's Rainbow Six Siege",purchase,1.0,0 -82352462,"Tom Clancy's Rainbow Six Siege",play,22.0,0 -82352462,"Fable Anniversary",purchase,1.0,0 -82352462,"Fable Anniversary",play,21.0,0 -82352462,"Grand Theft Auto San Andreas",purchase,1.0,0 -82352462,"Grand Theft Auto San Andreas",play,20.0,0 -82352462,"Synergy",purchase,1.0,0 -82352462,"Synergy",play,18.6,0 -82352462,"The Forest",purchase,1.0,0 -82352462,"The Forest",play,15.1,0 -82352462,"Killing Floor 2",purchase,1.0,0 -82352462,"Killing Floor 2",play,15.0,0 -82352462,"Worms Revolution",purchase,1.0,0 -82352462,"Worms Revolution",play,13.5,0 -82352462,"Cry of Fear",purchase,1.0,0 -82352462,"Cry of Fear",play,12.8,0 -82352462,"Evolve",purchase,1.0,0 -82352462,"Evolve",play,11.5,0 -82352462,"Age of Empires II HD Edition",purchase,1.0,0 -82352462,"Age of Empires II HD Edition",play,10.1,0 -82352462,"Grand Theft Auto V",purchase,1.0,0 -82352462,"Grand Theft Auto V",play,10.0,0 -82352462,"Dungeon Defenders II",purchase,1.0,0 -82352462,"Dungeon Defenders II",play,10.0,0 -82352462,"Grand Theft Auto III",purchase,1.0,0 -82352462,"Grand Theft Auto III",play,9.3,0 -82352462,"Age of Mythology Extended Edition",purchase,1.0,0 -82352462,"Age of Mythology Extended Edition",play,7.2,0 -82352462,"Bulletstorm",purchase,1.0,0 -82352462,"Bulletstorm",play,6.7,0 -82352462,"Alien Swarm",purchase,1.0,0 -82352462,"Alien Swarm",play,5.9,0 -82352462,"Team Fortress 2",purchase,1.0,0 -82352462,"Team Fortress 2",play,5.9,0 -82352462,"Nether",purchase,1.0,0 -82352462,"Nether",play,5.9,0 -82352462,"Banished",purchase,1.0,0 -82352462,"Banished",play,5.6,0 -82352462,"The Incredible Adventures of Van Helsing II",purchase,1.0,0 -82352462,"The Incredible Adventures of Van Helsing II",play,5.3,0 -82352462,"Garry's Mod",purchase,1.0,0 -82352462,"Garry's Mod",play,4.6,0 -82352462,"Team Fortress Classic",purchase,1.0,0 -82352462,"Team Fortress Classic",play,4.1,0 -82352462,"Borderlands 2",purchase,1.0,0 -82352462,"Borderlands 2",play,3.8,0 -82352462,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -82352462,"Tom Clancy's Ghost Recon Phantoms - EU",play,3.7,0 -82352462,"Ryse Son of Rome",purchase,1.0,0 -82352462,"Ryse Son of Rome",play,3.6,0 -82352462,"Call of Duty Black Ops",purchase,1.0,0 -82352462,"Call of Duty Black Ops",play,3.3,0 -82352462,"Rise of Nations Extended Edition",purchase,1.0,0 -82352462,"Rise of Nations Extended Edition",play,2.8,0 -82352462,"Depth",purchase,1.0,0 -82352462,"Depth",play,2.7,0 -82352462,"DYNASTY WARRIORS 8 Xtreme Legends Complete Edition",purchase,1.0,0 -82352462,"DYNASTY WARRIORS 8 Xtreme Legends Complete Edition",play,2.5,0 -82352462,"Chivalry Medieval Warfare",purchase,1.0,0 -82352462,"Chivalry Medieval Warfare",play,2.3,0 -82352462,"Alien Isolation",purchase,1.0,0 -82352462,"Alien Isolation",play,2.0,0 -82352462,"TrackMania Stadium",purchase,1.0,0 -82352462,"TrackMania Stadium",play,2.0,0 -82352462,"Serious Sam 3 BFE",purchase,1.0,0 -82352462,"Serious Sam 3 BFE",play,1.9,0 -82352462,"SMITE",purchase,1.0,0 -82352462,"SMITE",play,1.9,0 -82352462,"The Mighty Quest For Epic Loot",purchase,1.0,0 -82352462,"The Mighty Quest For Epic Loot",play,1.7,0 -82352462,"Volgarr the Viking",purchase,1.0,0 -82352462,"Volgarr the Viking",play,1.7,0 -82352462,"Age of Conan Unchained - EU version",purchase,1.0,0 -82352462,"Age of Conan Unchained - EU version",play,1.6,0 -82352462,"Half-Life Opposing Force",purchase,1.0,0 -82352462,"Half-Life Opposing Force",play,1.6,0 -82352462,"Dungeon Siege 2",purchase,1.0,0 -82352462,"Dungeon Siege 2",play,1.5,0 -82352462,"Unturned",purchase,1.0,0 -82352462,"Unturned",play,1.2,0 -82352462,"Warframe",purchase,1.0,0 -82352462,"Warframe",play,1.2,0 -82352462,"Besiege",purchase,1.0,0 -82352462,"Besiege",play,1.0,0 -82352462,"Left 4 Dead",purchase,1.0,0 -82352462,"Left 4 Dead",play,1.0,0 -82352462,"Half-Life 2 Deathmatch",purchase,1.0,0 -82352462,"Half-Life 2 Deathmatch",play,0.8,0 -82352462,"Dungeon Siege",purchase,1.0,0 -82352462,"Dungeon Siege",play,0.8,0 -82352462,"Forge",purchase,1.0,0 -82352462,"Forge",play,0.8,0 -82352462,"Zombie Panic Source",purchase,1.0,0 -82352462,"Zombie Panic Source",play,0.6,0 -82352462,"Heroes & Generals",purchase,1.0,0 -82352462,"Heroes & Generals",play,0.5,0 -82352462,"Super Meat Boy",purchase,1.0,0 -82352462,"Super Meat Boy",play,0.5,0 -82352462,"Mortal Online",purchase,1.0,0 -82352462,"Mortal Online",play,0.5,0 -82352462,"Bionic Commando Rearmed",purchase,1.0,0 -82352462,"Bionic Commando Rearmed",play,0.5,0 -82352462,"Brick-Force",purchase,1.0,0 -82352462,"Brick-Force",play,0.5,0 -82352462,"Dungeon Siege III",purchase,1.0,0 -82352462,"Dungeon Siege III",play,0.4,0 -82352462,"Counter-Strike Condition Zero",purchase,1.0,0 -82352462,"Counter-Strike Condition Zero",play,0.4,0 -82352462,"Half-Life",purchase,1.0,0 -82352462,"Half-Life",play,0.3,0 -82352462,"Mount & Blade Warband",purchase,1.0,0 -82352462,"Mount & Blade Warband",play,0.3,0 -82352462,"The Collider",purchase,1.0,0 -82352462,"The Collider",play,0.3,0 -82352462,"Gas Guzzlers Extreme",purchase,1.0,0 -82352462,"Gas Guzzlers Extreme",play,0.3,0 -82352462,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -82352462,"Counter-Strike Condition Zero Deleted Scenes",play,0.2,0 -82352462,"SpeedRunners",purchase,1.0,0 -82352462,"SpeedRunners",play,0.2,0 -82352462,"PlanetSide 2",purchase,1.0,0 -82352462,"PlanetSide 2",play,0.1,0 -82352462,"Counter-Strike Nexon Zombies",purchase,1.0,0 -82352462,"Amnesia The Dark Descent",purchase,1.0,0 -82352462,"DisplayFusion",purchase,1.0,0 -82352462,"Half-Life 2",purchase,1.0,0 -82352462,"Battle Islands",purchase,1.0,0 -82352462,"Call of Duty Modern Warfare 2",purchase,1.0,0 -82352462,"AirMech",purchase,1.0,0 -82352462,"ARK Survival Evolved",purchase,1.0,0 -82352462,"Crow - Hunter (Trapper Class)",purchase,1.0,0 -82352462,"Evolve - Behemoth",purchase,1.0,0 -82352462,"Evolve - Gorgon",purchase,1.0,0 -82352462,"Grand Theft Auto San Andreas",purchase,1.0,0 -82352462,"Grand Theft Auto III",purchase,1.0,0 -82352462,"Half-Life 2 Lost Coast",purchase,1.0,0 -82352462,"Half-Life Blue Shift",purchase,1.0,0 -82352462,"Jack - Hunter (Trapper Class)",purchase,1.0,0 -82352462,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -82352462,"Lennox - Hunter (Assault Class)",purchase,1.0,0 -82352462,"MechWarrior Online",purchase,1.0,0 -82352462,"Patch testing for Chivalry",purchase,1.0,0 -82352462,"Path of Exile",purchase,1.0,0 -82352462,"Slim - Hunter (Medic Class)",purchase,1.0,0 -82352462,"Sunny - Hunter (Support Class)",purchase,1.0,0 -82352462,"The Evil Within",purchase,1.0,0 -82352462,"Tom Clancy's Rainbow Six Vegas",purchase,1.0,0 -82352462,"Torvald - Hunter (Assault Class)",purchase,1.0,0 -82352462,"Transformice",purchase,1.0,0 -90963310,"Dota 2",purchase,1.0,0 -90963310,"Dota 2",play,2.0,0 -86738111,"Dota 2",purchase,1.0,0 -86738111,"Dota 2",play,1.9,0 -86738111,"Warframe",purchase,1.0,0 -165907900,"Dota 2",purchase,1.0,0 -165907900,"Dota 2",play,1.2,0 -192526458,"Dota 2",purchase,1.0,0 -192526458,"Dota 2",play,75.0,0 -192526458,"FreeStyle2 Street Basketball",purchase,1.0,0 -192526458,"FreeStyle2 Street Basketball",play,35.0,0 -192526458,"Archeblade",purchase,1.0,0 -192526458,"Blacklight Retribution",purchase,1.0,0 -192526458,"Firefall",purchase,1.0,0 -192526458,"Gotham City Impostors Free To Play",purchase,1.0,0 -192526458,"GunZ 2 The Second Duel",purchase,1.0,0 -192526458,"HAWKEN",purchase,1.0,0 -192526458,"Marvel Puzzle Quest",purchase,1.0,0 -192526458,"PlanetSide 2",purchase,1.0,0 -192526458,"Ragnarok Online 2",purchase,1.0,0 -192526458,"ROSE Online",purchase,1.0,0 -192526458,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -192526458,"Warframe",purchase,1.0,0 -192526458,"War Thunder",purchase,1.0,0 -80630217,"The Elder Scrolls V Skyrim",purchase,1.0,0 -80630217,"The Elder Scrolls V Skyrim",play,112.0,0 -80630217,"Terraria",purchase,1.0,0 -80630217,"Terraria",play,105.0,0 -80630217,"Team Fortress 2",purchase,1.0,0 -80630217,"Team Fortress 2",play,100.0,0 -80630217,"Guns of Icarus Online",purchase,1.0,0 -80630217,"Guns of Icarus Online",play,75.0,0 -80630217,"Unturned",purchase,1.0,0 -80630217,"Unturned",play,37.0,0 -80630217,"Dungeon Defenders",purchase,1.0,0 -80630217,"Dungeon Defenders",play,29.0,0 -80630217,"FTL Faster Than Light",purchase,1.0,0 -80630217,"FTL Faster Than Light",play,27.0,0 -80630217,"The Lord of the Rings Online",purchase,1.0,0 -80630217,"The Lord of the Rings Online",play,27.0,0 -80630217,"ORION Prelude",purchase,1.0,0 -80630217,"ORION Prelude",play,25.0,0 -80630217,"AdVenture Capitalist",purchase,1.0,0 -80630217,"AdVenture Capitalist",play,23.0,0 -80630217,"Depth",purchase,1.0,0 -80630217,"Depth",play,18.2,0 -80630217,"Portal 2",purchase,1.0,0 -80630217,"Portal 2",play,15.2,0 -80630217,"Clicker Heroes",purchase,1.0,0 -80630217,"Clicker Heroes",play,11.4,0 -80630217,"Audiosurf",purchase,1.0,0 -80630217,"Audiosurf",play,6.6,0 -80630217,"Ace of Spades",purchase,1.0,0 -80630217,"Ace of Spades",play,5.9,0 -80630217,"Castle Crashers",purchase,1.0,0 -80630217,"Castle Crashers",play,3.5,0 -80630217,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -80630217,"Superbrothers Sword & Sworcery EP",play,3.1,0 -80630217,"Portal",purchase,1.0,0 -80630217,"Portal",play,2.9,0 -80630217,"Galcon 2",purchase,1.0,0 -80630217,"Galcon 2",play,2.2,0 -80630217,"FEZ",purchase,1.0,0 -80630217,"FEZ",play,1.9,0 -80630217,"Of Guards And Thieves",purchase,1.0,0 -80630217,"Of Guards And Thieves",play,1.7,0 -80630217,"Machinarium",purchase,1.0,0 -80630217,"Machinarium",play,1.5,0 -80630217,"RPG Maker VX Ace",purchase,1.0,0 -80630217,"RPG Maker VX Ace",play,1.1,0 -80630217,"LEGO The Lord of the Rings",purchase,1.0,0 -80630217,"LEGO The Lord of the Rings",play,0.9,0 -80630217,"Monaco",purchase,1.0,0 -80630217,"Monaco",play,0.9,0 -80630217,"Mirror's Edge",purchase,1.0,0 -80630217,"Mirror's Edge",play,0.9,0 -80630217,"You Have to Win the Game",purchase,1.0,0 -80630217,"You Have to Win the Game",play,0.9,0 -80630217,"Bastion",purchase,1.0,0 -80630217,"Bastion",play,0.8,0 -80630217,"Defense Grid The Awakening",purchase,1.0,0 -80630217,"Defense Grid The Awakening",play,0.6,0 -80630217,"Uplink",purchase,1.0,0 -80630217,"Uplink",play,0.5,0 -80630217,"Darwinia",purchase,1.0,0 -80630217,"Darwinia",play,0.3,0 -80630217,"Botanicula",purchase,1.0,0 -80630217,"Botanicula",play,0.3,0 -80630217,"Relic Hunters Zero",purchase,1.0,0 -80630217,"Relic Hunters Zero",play,0.3,0 -80630217,"Universe Sandbox",purchase,1.0,0 -80630217,"Universe Sandbox",play,0.3,0 -80630217,"The Way of Life Free Edition",purchase,1.0,0 -80630217,"The Way of Life Free Edition",play,0.1,0 -80630217,"HAWKEN",purchase,1.0,0 -80630217,"DEFCON",purchase,1.0,0 -80630217,"Gun Monkeys",purchase,1.0,0 -80630217,"Multiwinia",purchase,1.0,0 -80630217,"Super Hexagon",purchase,1.0,0 -80630217,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -80630217,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -80630217,"Time Clickers",purchase,1.0,0 -80630217,"Toki Tori",purchase,1.0,0 -80630217,"Trine 2",purchase,1.0,0 -80630217,"World of Goo",purchase,1.0,0 -80630217,"XCOM Enemy Unknown",purchase,1.0,0 -304224083,"Warface",purchase,1.0,0 -304224083,"Warface",play,15.6,0 -304224083,"Unturned",purchase,1.0,0 -304224083,"Unturned",play,0.2,0 -304224083,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -120766003,"Metro 2033",purchase,1.0,0 -120766003,"Metro 2033",play,37.0,0 -120766003,"Dota 2",purchase,1.0,0 -120766003,"Dota 2",play,2.7,0 -120766003,"Magicka Wizard Wars",purchase,1.0,0 -142967660,"Dota 2",purchase,1.0,0 -142967660,"Dota 2",play,4.0,0 -142967660,"Left 4 Dead 2",purchase,1.0,0 -98479901,"Football Manager 2012",purchase,1.0,0 -98479901,"Football Manager 2012",play,332.0,0 -98479901,"Trainz Simulator 12",purchase,1.0,0 -98479901,"Trainz Simulator 12",play,5.9,0 -108771556,"Left 4 Dead 2",purchase,1.0,0 -108771556,"Left 4 Dead 2",play,69.0,0 -9563573,"Borderlands 2",purchase,1.0,0 -9563573,"Borderlands 2",play,132.0,0 -9563573,"Team Fortress 2",purchase,1.0,0 -9563573,"Team Fortress 2",play,102.0,0 -9563573,"Torchlight II",purchase,1.0,0 -9563573,"Torchlight II",play,50.0,0 -9563573,"Dota 2",purchase,1.0,0 -9563573,"Dota 2",play,25.0,0 -9563573,"Path of Exile",purchase,1.0,0 -9563573,"Path of Exile",play,19.0,0 -9563573,"Torchlight",purchase,1.0,0 -9563573,"Torchlight",play,10.6,0 -9563573,"Left 4 Dead 2",purchase,1.0,0 -9563573,"Left 4 Dead 2",play,10.3,0 -9563573,"Counter-Strike",purchase,1.0,0 -9563573,"Counter-Strike",play,9.9,0 -9563573,"Counter-Strike Global Offensive",purchase,1.0,0 -9563573,"Counter-Strike Global Offensive",play,9.2,0 -9563573,"Defiance",purchase,1.0,0 -9563573,"Defiance",play,6.4,0 -9563573,"Firefall",purchase,1.0,0 -9563573,"Firefall",play,3.5,0 -9563573,"DC Universe Online",purchase,1.0,0 -9563573,"DC Universe Online",play,3.4,0 -9563573,"Marvel Heroes 2015",purchase,1.0,0 -9563573,"Marvel Heroes 2015",play,3.1,0 -9563573,"Dirty Bomb",purchase,1.0,0 -9563573,"Dirty Bomb",play,1.2,0 -9563573,"AdVenture Capitalist",purchase,1.0,0 -9563573,"AdVenture Capitalist",play,1.1,0 -9563573,"Counter-Strike Source",purchase,1.0,0 -9563573,"Counter-Strike Source",play,0.9,0 -9563573,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -9563573,"Command and Conquer Red Alert 3 - Uprising",play,0.8,0 -9563573,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -9563573,"Medal of Honor(TM) Multiplayer",play,0.7,0 -9563573,"The Mighty Quest For Epic Loot",purchase,1.0,0 -9563573,"The Mighty Quest For Epic Loot",play,0.6,0 -9563573,"Day of Defeat Source",purchase,1.0,0 -9563573,"Day of Defeat Source",play,0.5,0 -9563573,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -9563573,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.5,0 -9563573,"The Ship Single Player",purchase,1.0,0 -9563573,"The Ship Single Player",play,0.3,0 -9563573,"WARMODE",purchase,1.0,0 -9563573,"WARMODE",play,0.3,0 -9563573,"Trove",purchase,1.0,0 -9563573,"Trove",play,0.2,0 -9563573,"Curse of Mermos",purchase,1.0,0 -9563573,"The Ship",purchase,1.0,0 -9563573,"Portal 2",purchase,1.0,0 -9563573,"Borderlands 2 RU",purchase,1.0,0 -9563573,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -9563573,"Counter-Strike Condition Zero",purchase,1.0,0 -9563573,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -9563573,"Crysis 2 Maximum Edition",purchase,1.0,0 -9563573,"Day of Defeat",purchase,1.0,0 -9563573,"Dead Space",purchase,1.0,0 -9563573,"Deathmatch Classic",purchase,1.0,0 -9563573,"Half-Life",purchase,1.0,0 -9563573,"Half-Life 2",purchase,1.0,0 -9563573,"Half-Life 2 Deathmatch",purchase,1.0,0 -9563573,"Half-Life 2 Lost Coast",purchase,1.0,0 -9563573,"Half-Life Blue Shift",purchase,1.0,0 -9563573,"Half-Life Opposing Force",purchase,1.0,0 -9563573,"Half-Life Source",purchase,1.0,0 -9563573,"Half-Life Deathmatch Source",purchase,1.0,0 -9563573,"Medal of Honor(TM) Single Player",purchase,1.0,0 -9563573,"Medal of Honor Pre-Order",purchase,1.0,0 -9563573,"Mirror's Edge",purchase,1.0,0 -9563573,"No More Room in Hell",purchase,1.0,0 -9563573,"Ricochet",purchase,1.0,0 -9563573,"Team Fortress Classic",purchase,1.0,0 -9563573,"The Ship Tutorial",purchase,1.0,0 -73981322,"Call of Duty Black Ops",purchase,1.0,0 -73981322,"Call of Duty Black Ops",play,23.0,0 -73981322,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -73981322,"Call of Duty Black Ops - Multiplayer",play,0.2,0 -196113123,"Far Cry 2",purchase,1.0,0 -196113123,"Far Cry 2",play,39.0,0 -196113123,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -86310154,"Team Fortress 2",purchase,1.0,0 -86310154,"Team Fortress 2",play,51.0,0 -189441775,"Team Fortress 2",purchase,1.0,0 -189441775,"Team Fortress 2",play,444.0,0 -189441775,"Counter-Strike Global Offensive",purchase,1.0,0 -189441775,"Counter-Strike Global Offensive",play,157.0,0 -189441775,"Super Monday Night Combat",purchase,1.0,0 -189441775,"Super Monday Night Combat",play,117.0,0 -189441775,"PAYDAY The Heist",purchase,1.0,0 -189441775,"PAYDAY The Heist",play,25.0,0 -189441775,"Warface",purchase,1.0,0 -189441775,"Warface",play,11.5,0 -189441775,"Unturned",purchase,1.0,0 -189441775,"Unturned",play,9.0,0 -189441775,"Robocraft",purchase,1.0,0 -189441775,"Robocraft",play,7.1,0 -189441775,"Loadout",purchase,1.0,0 -189441775,"Loadout",play,6.5,0 -189441775,"BLOCKADE 3D",purchase,1.0,0 -189441775,"BLOCKADE 3D",play,6.2,0 -189441775,"Fistful of Frags",purchase,1.0,0 -189441775,"Fistful of Frags",play,4.1,0 -189441775,"Warframe",purchase,1.0,0 -189441775,"Warframe",play,3.1,0 -189441775,"Neverwinter",purchase,1.0,0 -189441775,"Neverwinter",play,1.7,0 -189441775,"Garry's Mod",purchase,1.0,0 -189441775,"Garry's Mod",play,1.1,0 -189441775,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -189441775,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.8,0 -189441775,"APB Reloaded",purchase,1.0,0 -189441775,"APB Reloaded",play,0.8,0 -189441775,"Spiral Knights",purchase,1.0,0 -189441775,"Spiral Knights",play,0.7,0 -189441775,"Dizzel",purchase,1.0,0 -189441775,"Dizzel",play,0.6,0 -189441775,"Brick-Force",purchase,1.0,0 -189441775,"Brick-Force",play,0.6,0 -189441775,"theHunter",purchase,1.0,0 -189441775,"theHunter",play,0.5,0 -189441775,"Dota 2",purchase,1.0,0 -189441775,"Dota 2",play,0.4,0 -189441775,"SMITE",purchase,1.0,0 -189441775,"SMITE",play,0.3,0 -189441775,"City of Steam Arkadia",purchase,1.0,0 -189441775,"City of Steam Arkadia",play,0.2,0 -189441775,"Toribash",purchase,1.0,0 -189441775,"Toribash",play,0.2,0 -189441775,"Ascend Hand of Kul",purchase,1.0,0 -189441775,"Fishing Planet",purchase,1.0,0 -189441775,"RaceRoom Racing Experience ",purchase,1.0,0 -28886158,"Counter-Strike Source",purchase,1.0,0 -28886158,"Counter-Strike Source",play,28.0,0 -28886158,"Day of Defeat Source",purchase,1.0,0 -28886158,"Garry's Mod",purchase,1.0,0 -28886158,"Half-Life 2 Deathmatch",purchase,1.0,0 -28886158,"Half-Life 2 Lost Coast",purchase,1.0,0 -257110911,"Dota 2",purchase,1.0,0 -257110911,"Dota 2",play,4.5,0 -203414979,"Dota 2",purchase,1.0,0 -203414979,"Dota 2",play,2.2,0 -54124359,"Team Fortress 2",purchase,1.0,0 -54124359,"Team Fortress 2",play,0.7,0 -54124359,"Portal",purchase,1.0,0 -54124359,"Portal",play,0.1,0 -54124359,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -54124359,"Gotham City Impostors Free To Play",purchase,1.0,0 -54124359,"No More Room in Hell",purchase,1.0,0 -54124359,"PlanetSide 2",purchase,1.0,0 -54124359,"Warface",purchase,1.0,0 -64849879,"Portal",purchase,1.0,0 -279464634,"Dota 2",purchase,1.0,0 -279464634,"Dota 2",play,32.0,0 -53245953,"The Elder Scrolls V Skyrim",purchase,1.0,0 -53245953,"The Elder Scrolls V Skyrim",play,495.0,0 -53245953,"Audiosurf",purchase,1.0,0 -53245953,"Audiosurf",play,71.0,0 -53245953,"Fallout New Vegas",purchase,1.0,0 -53245953,"Fallout New Vegas",play,12.6,0 -53245953,"Undertale",purchase,1.0,0 -53245953,"Undertale",play,6.3,0 -53245953,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -53245953,"The Elder Scrolls IV Oblivion ",play,4.1,0 -53245953,"Zoombinis",purchase,1.0,0 -53245953,"Zoombinis",play,3.6,0 -53245953,"Lego Harry Potter",purchase,1.0,0 -53245953,"Lego Harry Potter",play,1.4,0 -53245953,"Bastion",purchase,1.0,0 -53245953,"Bastion",play,1.3,0 -53245953,"Psychonauts",purchase,1.0,0 -53245953,"Psychonauts",play,1.3,0 -53245953,"Portal",purchase,1.0,0 -53245953,"Portal",play,0.6,0 -53245953,"SimCity 4 Deluxe",purchase,1.0,0 -53245953,"SimCity 4 Deluxe",play,0.6,0 -53245953,"Half-Life 2",purchase,1.0,0 -53245953,"Half-Life 2",play,0.3,0 -53245953,"Lone Survivor The Director's Cut",purchase,1.0,0 -53245953,"Lone Survivor The Director's Cut",play,0.2,0 -53245953,"Amnesia The Dark Descent",purchase,1.0,0 -53245953,"Ben There, Dan That!",purchase,1.0,0 -53245953,"Braid",purchase,1.0,0 -53245953,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -53245953,"Fallout New Vegas Dead Money",purchase,1.0,0 -53245953,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -53245953,"Half-Life 2 Episode One",purchase,1.0,0 -53245953,"Half-Life 2 Episode Two",purchase,1.0,0 -53245953,"Half-Life 2 Lost Coast",purchase,1.0,0 -53245953,"Left 4 Dead",purchase,1.0,0 -53245953,"LIMBO",purchase,1.0,0 -53245953,"Portal 2",purchase,1.0,0 -53245953,"Psychonauts Demo",purchase,1.0,0 -53245953,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -53245953,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -53245953,"Super Meat Boy",purchase,1.0,0 -53245953,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -53245953,"Time Gentlemen, Please!",purchase,1.0,0 -136053642,"Dota 2",purchase,1.0,0 -136053642,"Dota 2",play,560.0,0 -46252394,"Empire Total War",purchase,1.0,0 -46252394,"Empire Total War",play,421.0,0 -46252394,"Football Manager 2012",purchase,1.0,0 -46252394,"Football Manager 2012",play,416.0,0 -46252394,"Football Manager 2011",purchase,1.0,0 -46252394,"Football Manager 2011",play,332.0,0 -46252394,"Football Manager 2013",purchase,1.0,0 -46252394,"Football Manager 2013",play,149.0,0 -46252394,"Football Manager 2010",purchase,1.0,0 -46252394,"Football Manager 2010",play,93.0,0 -46252394,"Total War SHOGUN 2",purchase,1.0,0 -46252394,"Total War SHOGUN 2",play,68.0,0 -46252394,"Total War ROME II - Emperor Edition",purchase,1.0,0 -46252394,"Total War ROME II - Emperor Edition",play,58.0,0 -46252394,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -177286649,"Dota 2",purchase,1.0,0 -177286649,"Dota 2",play,141.0,0 -253709317,"Unturned",purchase,1.0,0 -231852874,"Unturned",purchase,1.0,0 -231852874,"Unturned",play,5.4,0 -241903800,"Counter-Strike Global Offensive",purchase,1.0,0 -241903800,"Counter-Strike Global Offensive",play,386.0,0 -241903800,"Infinite Crisis",purchase,1.0,0 -241903800,"Infinite Crisis",play,10.1,0 -241903800,"Team Fortress 2",purchase,1.0,0 -241903800,"Team Fortress 2",play,1.2,0 -241903800,"Loadout",purchase,1.0,0 -241903800,"Loadout",play,1.0,0 -241903800,"UberStrike",purchase,1.0,0 -241903800,"UberStrike",play,0.6,0 -241903800,"Serious Sam 3 BFE",purchase,1.0,0 -241903800,"Serious Sam 3 BFE",play,0.6,0 -241903800,"The Hat Man Shadow Ward",purchase,1.0,0 -241903800,"The Hat Man Shadow Ward",play,0.2,0 -241903800,"Dead Island Epidemic",purchase,1.0,0 -241903800,"FreeStyle2 Street Basketball",purchase,1.0,0 -241903800,"Path of Exile",purchase,1.0,0 -160036273,"Football Manager 2014",purchase,1.0,0 -160036273,"Football Manager 2014",play,14.2,0 -287778652,"Grand Theft Auto V",purchase,1.0,0 -287778652,"Grand Theft Auto V",play,7.7,0 -132286953,"Dota 2",purchase,1.0,0 -132286953,"Dota 2",play,743.0,0 -121593653,"Napoleon Total War",purchase,1.0,0 -121593653,"Napoleon Total War",play,1.0,0 -299592766,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -299592766,"Tom Clancy's Ghost Recon Phantoms - NA",play,3.6,0 -234017477,"Dota 2",purchase,1.0,0 -234017477,"Dota 2",play,5.2,0 -164370352,"Dota 2",purchase,1.0,0 -164370352,"Dota 2",play,11.3,0 -164370352,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -210362059,"Total War ROME II - Emperor Edition",purchase,1.0,0 -210362059,"Total War ROME II - Emperor Edition",play,0.8,0 -69180564,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -69180564,"Call of Duty Modern Warfare 3 - Multiplayer",play,44.0,0 -69180564,"Darksiders",purchase,1.0,0 -69180564,"Darksiders",play,24.0,0 -69180564,"RAGE",purchase,1.0,0 -69180564,"RAGE",play,22.0,0 -69180564,"Call of Duty Modern Warfare 3",purchase,1.0,0 -69180564,"Call of Duty Modern Warfare 3",play,9.3,0 -69180564,"Dungeon Siege III",purchase,1.0,0 -69180564,"Dungeon Siege III",play,2.5,0 -69180564,"Call of Juarez The Cartel",purchase,1.0,0 -69180564,"Call of Juarez The Cartel",play,1.0,0 -69180564,"Nosgoth",purchase,1.0,0 -69180564,"Nosgoth",play,0.5,0 -69180564,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -69180564,"Kane & Lynch 2 Dog Days",play,0.1,0 -168069262,"Dota 2",purchase,1.0,0 -168069262,"Dota 2",play,514.0,0 -168069262,"GunZ 2 The Second Duel",purchase,1.0,0 -26861985,"F1 2010",purchase,1.0,0 -26861985,"F1 2010",play,25.0,0 -26861985,"Just Cause 2",purchase,1.0,0 -26861985,"Just Cause 2",play,11.3,0 -26861985,"Counter-Strike Global Offensive",purchase,1.0,0 -26861985,"Counter-Strike Global Offensive",play,8.3,0 -26861985,"Jagged Alliance Online - Steam Edition",purchase,1.0,0 -26861985,"Jagged Alliance Online - Steam Edition",play,2.2,0 -26861985,"Morphopolis",purchase,1.0,0 -26861985,"Morphopolis",play,2.2,0 -26861985,"F1 2014",purchase,1.0,0 -26861985,"F1 2014",play,1.9,0 -26861985,"Race The WTCC Game",purchase,1.0,0 -26861985,"Race The WTCC Game",play,0.3,0 -26861985,"Firefall",purchase,1.0,0 -26861985,"Heroes & Generals",purchase,1.0,0 -26861985,"Jagged Alliance Online Raven Pack",purchase,1.0,0 -212422375,"Dota 2",purchase,1.0,0 -212422375,"Dota 2",play,0.7,0 -93345965,"Team Fortress 2",purchase,1.0,0 -93345965,"Team Fortress 2",play,124.0,0 -93345965,"Sid Meier's Civilization V",purchase,1.0,0 -93345965,"Sid Meier's Civilization V",play,115.0,0 -229022162,"Dota 2",purchase,1.0,0 -229022162,"Dota 2",play,5.3,0 -229022162,"RaiderZ",purchase,1.0,0 -203401879,"Dota 2",purchase,1.0,0 -203401879,"Dota 2",play,1.1,0 -182737466,"Dota 2",purchase,1.0,0 -182737466,"Dota 2",play,0.3,0 -99384490,"Fallout New Vegas",purchase,1.0,0 -99384490,"Fallout New Vegas",play,5.2,0 -99384490,"Team Fortress 2",purchase,1.0,0 -99384490,"Team Fortress 2",play,0.8,0 -205822046,"Insurgency",purchase,1.0,0 -205822046,"Terraria",purchase,1.0,0 -121240872,"YOU DON'T KNOW JACK",purchase,1.0,0 -266056948,"War Thunder",purchase,1.0,0 -266056948,"War Thunder",play,0.6,0 -266056948,"Heroes & Generals",purchase,1.0,0 -266056948,"Heroes & Generals",play,0.1,0 -266056948,"Spooky's House of Jump Scares",purchase,1.0,0 -266056948,"Survarium",purchase,1.0,0 -199298990,"The Elder Scrolls V Skyrim",purchase,1.0,0 -199298990,"The Elder Scrolls V Skyrim",play,4.0,0 -199298990,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -199298990,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -199298990,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -185079540,"The Elder Scrolls V Skyrim",purchase,1.0,0 -185079540,"The Elder Scrolls V Skyrim",play,157.0,0 -185079540,"Dying Light",purchase,1.0,0 -185079540,"Dying Light",play,61.0,0 -185079540,"The Binding of Isaac Rebirth",purchase,1.0,0 -185079540,"The Binding of Isaac Rebirth",play,58.0,0 -185079540,"Fallout 4",purchase,1.0,0 -185079540,"Fallout 4",play,49.0,0 -185079540,"Borderlands 2",purchase,1.0,0 -185079540,"Borderlands 2",play,24.0,0 -185079540,"The Walking Dead",purchase,1.0,0 -185079540,"The Walking Dead",play,19.3,0 -185079540,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -185079540,"Game of Thrones - A Telltale Games Series",play,15.1,0 -185079540,"Dead Island",purchase,1.0,0 -185079540,"Dead Island",play,14.4,0 -185079540,"The Wolf Among Us",purchase,1.0,0 -185079540,"The Wolf Among Us",play,13.9,0 -185079540,"BioShock Infinite",purchase,1.0,0 -185079540,"BioShock Infinite",play,10.1,0 -185079540,"POSTAL 2",purchase,1.0,0 -185079540,"POSTAL 2",play,8.9,0 -185079540,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -185079540,"Fallout 3 - Game of the Year Edition",play,8.7,0 -185079540,"Thief",purchase,1.0,0 -185079540,"Thief",play,7.3,0 -185079540,"Portal 2",purchase,1.0,0 -185079540,"Portal 2",play,5.3,0 -185079540,"Fallout New Vegas",purchase,1.0,0 -185079540,"Fallout New Vegas",play,4.8,0 -185079540,"Counter-Strike Global Offensive",purchase,1.0,0 -185079540,"Counter-Strike Global Offensive",play,4.7,0 -185079540,"Sherlock Holmes Crimes and Punishments",purchase,1.0,0 -185079540,"Sherlock Holmes Crimes and Punishments",play,4.4,0 -185079540,"Saints Row IV",purchase,1.0,0 -185079540,"Saints Row IV",play,4.1,0 -185079540,"ARK Survival Evolved",purchase,1.0,0 -185079540,"ARK Survival Evolved",play,3.4,0 -185079540,"BioShock",purchase,1.0,0 -185079540,"BioShock",play,3.3,0 -185079540,"Tales from the Borderlands",purchase,1.0,0 -185079540,"Tales from the Borderlands",play,2.6,0 -185079540,"Saints Row The Third",purchase,1.0,0 -185079540,"Saints Row The Third",play,2.4,0 -185079540,"Surgeon Simulator",purchase,1.0,0 -185079540,"Surgeon Simulator",play,2.2,0 -185079540,"Mars War Logs",purchase,1.0,0 -185079540,"Mars War Logs",play,1.9,0 -185079540,"Please, Dont Touch Anything",purchase,1.0,0 -185079540,"Please, Dont Touch Anything",play,1.6,0 -185079540,"Castle Crashers",purchase,1.0,0 -185079540,"Castle Crashers",play,1.0,0 -185079540,"The Walking Dead Season Two",purchase,1.0,0 -185079540,"The Walking Dead Season Two",play,0.9,0 -185079540,"Dishonored",purchase,1.0,0 -185079540,"Dishonored",play,0.6,0 -185079540,"The Witcher Enhanced Edition",purchase,1.0,0 -185079540,"The Witcher Enhanced Edition",play,0.6,0 -185079540,"BattleBlock Theater",purchase,1.0,0 -185079540,"BattleBlock Theater",play,0.5,0 -185079540,"Thief 2",purchase,1.0,0 -185079540,"BioShock 2",purchase,1.0,0 -185079540,"Amnesia The Dark Descent",purchase,1.0,0 -185079540,"BioShock Infinite - Season Pass",purchase,1.0,0 -185079540,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -185079540,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -185079540,"Borderlands",purchase,1.0,0 -185079540,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -185079540,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -185079540,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -185079540,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -185079540,"Dead Island Riptide",purchase,1.0,0 -185079540,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -185079540,"Fallout New Vegas Dead Money",purchase,1.0,0 -185079540,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -185079540,"Garry's Mod",purchase,1.0,0 -185079540,"Gauntlet ",purchase,1.0,0 -185079540,"Life Is Strange",purchase,1.0,0 -185079540,"Robocraft",purchase,1.0,0 -185079540,"Saints Row 2",purchase,1.0,0 -185079540,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -185079540,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -185079540,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -185079540,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -185079540,"The Evil Within",purchase,1.0,0 -185079540,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -185079540,"Thief - Ghost",purchase,1.0,0 -185079540,"Thief - Opportunist",purchase,1.0,0 -185079540,"Thief - Predator",purchase,1.0,0 -185079540,"Thief - The Bank Heist",purchase,1.0,0 -185079540,"Thief Deadly Shadows",purchase,1.0,0 -185079540,"Thief Gold",purchase,1.0,0 -259665776,"The Sims(TM) 3",purchase,1.0,0 -259665776,"The Sims(TM) 3",play,22.0,0 -8949216,"Counter-Strike Source",purchase,1.0,0 -8949216,"Counter-Strike Source",play,115.0,0 -8949216,"Kerbal Space Program",purchase,1.0,0 -8949216,"Kerbal Space Program",play,68.0,0 -8949216,"Half-Life 2 Lost Coast",purchase,1.0,0 -8949216,"Half-Life 2 Lost Coast",play,12.2,0 -8949216,"Counter-Strike",purchase,1.0,0 -8949216,"Counter-Strike",play,11.1,0 -8949216,"Counter-Strike Condition Zero",purchase,1.0,0 -8949216,"Counter-Strike Condition Zero",play,10.8,0 -8949216,"Team Fortress 2",purchase,1.0,0 -8949216,"Team Fortress 2",play,8.2,0 -8949216,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -8949216,"Counter-Strike Condition Zero Deleted Scenes",play,0.7,0 -8949216,"Day of Defeat",purchase,1.0,0 -8949216,"Deathmatch Classic",purchase,1.0,0 -8949216,"Half-Life",purchase,1.0,0 -8949216,"Half-Life 2",purchase,1.0,0 -8949216,"Half-Life 2 Deathmatch",purchase,1.0,0 -8949216,"Half-Life Blue Shift",purchase,1.0,0 -8949216,"Half-Life Opposing Force",purchase,1.0,0 -8949216,"Ricochet",purchase,1.0,0 -8949216,"Team Fortress Classic",purchase,1.0,0 -105277989,"Age of Empires III Complete Collection",purchase,1.0,0 -105277989,"Age of Empires III Complete Collection",play,17.2,0 -105277989,"Total War SHOGUN 2",purchase,1.0,0 -105277989,"Total War SHOGUN 2",play,14.8,0 -105277989,"The Elder Scrolls V Skyrim",purchase,1.0,0 -105277989,"The Elder Scrolls V Skyrim",play,11.5,0 -105277989,"RAGE",purchase,1.0,0 -105277989,"Batman Arkham City GOTY",purchase,1.0,0 -105277989,"Batman Arkham City",purchase,1.0,0 -105277989,"Call of Duty Black Ops",purchase,1.0,0 -105277989,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -105277989,"Call of Duty Modern Warfare 2",purchase,1.0,0 -105277989,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -105277989,"Call of Duty Modern Warfare 3",purchase,1.0,0 -105277989,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -105277989,"Crysis 2 Maximum Edition",purchase,1.0,0 -105277989,"Fallout New Vegas",purchase,1.0,0 -105277989,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -105277989,"Fallout New Vegas Dead Money",purchase,1.0,0 -105277989,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -105277989,"Nexuiz",purchase,1.0,0 -105277989,"Nexuiz Beta",purchase,1.0,0 -105277989,"Nexuiz STUPID Mode",purchase,1.0,0 -105277989,"Rome Total War",purchase,1.0,0 -105277989,"Rome Total War - Alexander",purchase,1.0,0 -105277989,"Sid Meier's Civilization V",purchase,1.0,0 -105277989,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -105277989,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -241357186,"The Sims(TM) 3",purchase,1.0,0 -241357186,"The Sims(TM) 3",play,49.0,0 -241357186,"Audiosurf 2",purchase,1.0,0 -241357186,"Audiosurf 2",play,12.0,0 -301087793,"Dota 2",purchase,1.0,0 -301087793,"Dota 2",play,61.0,0 -254497372,"Team Fortress 2",purchase,1.0,0 -254497372,"Team Fortress 2",play,0.4,0 -254497372,"Clown House (Palyao Evi)",purchase,1.0,0 -254497372,"Clown House (Palyao Evi)",play,0.1,0 -254497372,"Teeworlds",purchase,1.0,0 -254497372,"Haunted Memories",purchase,1.0,0 -254497372,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -254497372,"Passing Pineview Forest",purchase,1.0,0 -124595910,"Team Fortress 2",purchase,1.0,0 -124595910,"Team Fortress 2",play,1.0,0 -251973400,"Dota 2",purchase,1.0,0 -251973400,"Dota 2",play,3.4,0 -251973400,"Dizzel",purchase,1.0,0 -251973400,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -249112299,"Dota 2",purchase,1.0,0 -249112299,"Dota 2",play,1.0,0 -249112299,"FreeStyle2 Street Basketball",purchase,1.0,0 -175001491,"Team Fortress 2",purchase,1.0,0 -175001491,"Team Fortress 2",play,1106.0,0 -175001491,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -175001491,"Call of Duty Black Ops II - Multiplayer",play,560.0,0 -175001491,"Counter-Strike Global Offensive",purchase,1.0,0 -175001491,"Counter-Strike Global Offensive",play,559.0,0 -175001491,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -175001491,"Call of Duty Black Ops II - Zombies",play,420.0,0 -175001491,"Call of Duty Black Ops II",purchase,1.0,0 -175001491,"Call of Duty Black Ops II",play,409.0,0 -175001491,"AdVenture Capitalist",purchase,1.0,0 -175001491,"AdVenture Capitalist",play,256.0,0 -175001491,"Rocket League",purchase,1.0,0 -175001491,"Rocket League",play,230.0,0 -175001491,"Trove",purchase,1.0,0 -175001491,"Trove",play,222.0,0 -175001491,"Garry's Mod",purchase,1.0,0 -175001491,"Garry's Mod",play,170.0,0 -175001491,"BLOCKADE 3D",purchase,1.0,0 -175001491,"BLOCKADE 3D",play,144.0,0 -175001491,"Double Action Boogaloo",purchase,1.0,0 -175001491,"Double Action Boogaloo",play,126.0,0 -175001491,"APB Reloaded",purchase,1.0,0 -175001491,"APB Reloaded",play,100.0,0 -175001491,"Blacklight Retribution",purchase,1.0,0 -175001491,"Blacklight Retribution",play,97.0,0 -175001491,"Clicker Heroes",purchase,1.0,0 -175001491,"Clicker Heroes",play,52.0,0 -175001491,"Polarity",purchase,1.0,0 -175001491,"Polarity",play,43.0,0 -175001491,"War Thunder",purchase,1.0,0 -175001491,"War Thunder",play,38.0,0 -175001491,"Unturned",purchase,1.0,0 -175001491,"Unturned",play,38.0,0 -175001491,"Warface",purchase,1.0,0 -175001491,"Warface",play,36.0,0 -175001491,"Loadout",purchase,1.0,0 -175001491,"Loadout",play,20.0,0 -175001491,"Waveform",purchase,1.0,0 -175001491,"Waveform",play,19.0,0 -175001491,"Boson X",purchase,1.0,0 -175001491,"Boson X",play,18.9,0 -175001491,"Alien Swarm",purchase,1.0,0 -175001491,"Alien Swarm",play,17.9,0 -175001491,"Empires",purchase,1.0,0 -175001491,"Empires",play,17.9,0 -175001491,"DC Universe Online",purchase,1.0,0 -175001491,"DC Universe Online",play,17.9,0 -175001491,"Mitos.is The Game",purchase,1.0,0 -175001491,"Mitos.is The Game",play,3.5,0 -175001491,"Gear Up",purchase,1.0,0 -175001491,"Gear Up",play,3.3,0 -175001491,"Robocraft",purchase,1.0,0 -175001491,"Robocraft",play,1.9,0 -175001491,"Dota 2",purchase,1.0,0 -175001491,"Dota 2",play,0.9,0 -175001491,"Sakura Clicker",purchase,1.0,0 -175001491,"Sakura Clicker",play,0.7,0 -175001491,"Codename CURE",purchase,1.0,0 -175001491,"Codename CURE",play,0.6,0 -175001491,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -175001491,"A.V.A - Alliance of Valiant Arms",play,0.4,0 -175001491,"Fistful of Frags",purchase,1.0,0 -175001491,"Fistful of Frags",play,0.2,0 -175001491,"Toribash",purchase,1.0,0 -175001491,"Toribash",play,0.2,0 -175001491,"Infinite Crisis",purchase,1.0,0 -175001491,"Infinite Crisis",play,0.2,0 -175001491,"Time Clickers",purchase,1.0,0 -175001491,"Time Clickers",play,0.1,0 -175001491,"Brawlhalla",purchase,1.0,0 -175001491,"Warframe",purchase,1.0,0 -175001491,"Block N Load",purchase,1.0,0 -175001491,"12 Labours of Hercules",purchase,1.0,0 -175001491,"Amazing World",purchase,1.0,0 -175001491,"Counter-Strike Nexon Zombies",purchase,1.0,0 -175001491,"Defiance",purchase,1.0,0 -175001491,"Dirty Bomb",purchase,1.0,0 -175001491,"Gotham City Impostors Free To Play",purchase,1.0,0 -175001491,"Heroes & Generals",purchase,1.0,0 -175001491,"PARTICLE MACE",purchase,1.0,0 -175001491,"Primal Carnage",purchase,1.0,0 -175001491,"ShareX",purchase,1.0,0 -175001491,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -167291533,"Sid Meier's Civilization V",purchase,1.0,0 -167291533,"Sid Meier's Civilization V",play,21.0,0 -67244867,"Borderlands 2",purchase,1.0,0 -67244867,"Borderlands 2",play,307.0,0 -67244867,"Torchlight II",purchase,1.0,0 -67244867,"Torchlight II",play,47.0,0 -67244867,"Planet Explorers",purchase,1.0,0 -67244867,"Planet Explorers",play,15.2,0 -67244867,"Dishonored",purchase,1.0,0 -67244867,"Dishonored",play,11.5,0 -67244867,"The Elder Scrolls V Skyrim",purchase,1.0,0 -67244867,"The Elder Scrolls V Skyrim",play,10.7,0 -67244867,"H1Z1",purchase,1.0,0 -67244867,"H1Z1",play,9.0,0 -67244867,"Left 4 Dead 2",purchase,1.0,0 -67244867,"Left 4 Dead 2",play,1.4,0 -67244867,"H1Z1 Test Server",purchase,1.0,0 -301610122,"Dota 2",purchase,1.0,0 -301610122,"Dota 2",play,1.9,0 -199931468,"Moonbase Alpha",purchase,1.0,0 -199931468,"Unturned",purchase,1.0,0 -199931468,"Robocraft",purchase,1.0,0 -166926880,"Dota 2",purchase,1.0,0 -166926880,"Dota 2",play,1.5,0 -178716199,"Team Fortress 2",purchase,1.0,0 -178716199,"Team Fortress 2",play,1328.0,0 -178716199,"Star Conflict",purchase,1.0,0 -178716199,"Mirror's Edge",purchase,1.0,0 -129371925,"Dota 2",purchase,1.0,0 -129371925,"Dota 2",play,355.0,0 -129371925,"Counter-Strike",purchase,1.0,0 -129371925,"Counter-Strike",play,86.0,0 -129371925,"Counter-Strike Global Offensive",purchase,1.0,0 -129371925,"Counter-Strike Global Offensive",play,48.0,0 -129371925,"Team Fortress 2",purchase,1.0,0 -129371925,"Team Fortress 2",play,0.2,0 -129371925,"Counter-Strike Condition Zero",purchase,1.0,0 -129371925,"Counter-Strike Condition Zero",play,0.2,0 -129371925,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -164820245,"Goat Simulator",purchase,1.0,0 -164820245,"Goat Simulator",play,68.0,0 -164820245,"Saints Row The Third",purchase,1.0,0 -164820245,"Saints Row The Third",play,45.0,0 -164820245,"The Witcher Enhanced Edition",purchase,1.0,0 -164820245,"The Witcher Enhanced Edition",play,25.0,0 -164820245,"Age of Empires III Complete Collection",purchase,1.0,0 -164820245,"Age of Empires III Complete Collection",play,5.3,0 -164820245,"Dungeon Siege III",purchase,1.0,0 -164820245,"Dungeon Siege III",play,3.4,0 -164820245,"Life Is Strange",purchase,1.0,0 -164820245,"Life Is Strange",play,3.0,0 -164820245,"Unturned",purchase,1.0,0 -164820245,"Unturned",play,2.6,0 -164820245,"FINAL FANTASY VII",purchase,1.0,0 -164820245,"FINAL FANTASY VII",play,1.9,0 -164820245,"Godus",purchase,1.0,0 -164820245,"Godus",play,1.7,0 -164820245,"Emily is Away",purchase,1.0,0 -164820245,"Emily is Away",play,1.5,0 -164820245,"Garry's Mod",purchase,1.0,0 -164820245,"Garry's Mod",play,1.0,0 -164820245,"Only If",purchase,1.0,0 -164820245,"Only If",play,0.8,0 -164820245,"Five Nights at Freddy's",purchase,1.0,0 -164820245,"Five Nights at Freddy's",play,0.6,0 -164820245,"The Forest",purchase,1.0,0 -164820245,"The Forest",play,0.5,0 -164820245,"Amazing World",purchase,1.0,0 -164820245,"Amazing World",play,0.3,0 -164820245,"The Last Remnant",purchase,1.0,0 -164820245,"The Last Remnant",play,0.2,0 -164820245,"how do you Do It?",purchase,1.0,0 -164820245,"8BitMMO",purchase,1.0,0 -164820245,"All Is Dust",purchase,1.0,0 -164820245,"Among Ripples",purchase,1.0,0 -164820245,"Back to Dinosaur Island ",purchase,1.0,0 -164820245,"BLOCKADE 3D",purchase,1.0,0 -164820245,"Bloodwood Reload",purchase,1.0,0 -164820245,"Close Your Eyes",purchase,1.0,0 -164820245,"Clown House (Palyao Evi)",purchase,1.0,0 -164820245,"Counter-Strike Nexon Zombies",purchase,1.0,0 -164820245,"Dev Guy",purchase,1.0,0 -164820245,"Echoes+",purchase,1.0,0 -164820245,"Fallen Earth",purchase,1.0,0 -164820245,"Fingerbones",purchase,1.0,0 -164820245,"Get Off My Lawn!",purchase,1.0,0 -164820245,"Haunted Memories",purchase,1.0,0 -164820245,"Heroes of Scene",purchase,1.0,0 -164820245,"HIT",purchase,1.0,0 -164820245,"Let the Cat In",purchase,1.0,0 -164820245,"Missing Translation",purchase,1.0,0 -164820245,"NEOTOKYO",purchase,1.0,0 -164820245,"No More Room in Hell",purchase,1.0,0 -164820245,"Nosgoth",purchase,1.0,0 -164820245,"Pink Heaven",purchase,1.0,0 -164820245,"Quintet",purchase,1.0,0 -164820245,"Relive",purchase,1.0,0 -164820245,"Spooky's House of Jump Scares",purchase,1.0,0 -164820245,"Survarium",purchase,1.0,0 -164820245,"Teeworlds",purchase,1.0,0 -164820245,"The Old Tree",purchase,1.0,0 -164820245,"The Way of Life Free Edition",purchase,1.0,0 -164820245,"Toribash",purchase,1.0,0 -240497102,"The Elder Scrolls V Skyrim",purchase,1.0,0 -240497102,"The Elder Scrolls V Skyrim",play,55.0,0 -240497102,"Papers, Please",purchase,1.0,0 -240497102,"Papers, Please",play,6.1,0 -240497102,"Robocraft",purchase,1.0,0 -240497102,"Robocraft",play,1.0,0 -240497102,"how do you Do It?",purchase,1.0,0 -240497102,"Clicker Heroes",purchase,1.0,0 -157939385,"Team Fortress 2",purchase,1.0,0 -157939385,"Team Fortress 2",play,0.2,0 -143671754,"Dota 2",purchase,1.0,0 -143671754,"Dota 2",play,21.0,0 -144412676,"Dota 2",purchase,1.0,0 -144412676,"Dota 2",play,548.0,0 -144412676,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -144412676,"Tom Clancy's Ghost Recon Phantoms - NA",play,25.0,0 -144412676,"Left 4 Dead 2",purchase,1.0,0 -144412676,"Left 4 Dead 2",play,22.0,0 -144412676,"Saints Row IV",purchase,1.0,0 -144412676,"Saints Row IV",play,21.0,0 -144412676,"Blacklight Retribution",purchase,1.0,0 -144412676,"Blacklight Retribution",play,12.3,0 -144412676,"Team Fortress 2",purchase,1.0,0 -144412676,"Team Fortress 2",play,10.6,0 -144412676,"Alien Swarm",purchase,1.0,0 -144412676,"Alien Swarm",play,3.5,0 -144412676,"Emily is Away",purchase,1.0,0 -144412676,"Emily is Away",play,3.0,0 -144412676,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -144412676,"Navy Field 2 Conqueror of the Ocean",play,0.4,0 -144412676,"Warframe",purchase,1.0,0 -144412676,"Warframe",play,0.4,0 -144412676,"Haunted Memories",purchase,1.0,0 -144412676,"Haunted Memories",play,0.2,0 -277253312,"Team Fortress 2",purchase,1.0,0 -277253312,"Team Fortress 2",play,1.7,0 -277253312,"Super Monday Night Combat",purchase,1.0,0 -277253312,"Super Monday Night Combat",play,0.3,0 -308760273,"Toribash",purchase,1.0,0 -308760273,"Toribash",play,0.9,0 -308760273,"Unturned",purchase,1.0,0 -308760273,"Unturned",play,0.6,0 -308760273,"Team Fortress 2",purchase,1.0,0 -308760273,"Team Fortress 2",play,0.6,0 -254739929,"the static speaks my name",purchase,1.0,0 -254739929,"the static speaks my name",play,0.5,0 -254739929,"Unturned",purchase,1.0,0 -254739929,"Unturned",play,0.1,0 -254739929,"Clown House (Palyao Evi)",purchase,1.0,0 -254739929,"8BitMMO",purchase,1.0,0 -254739929,"Blender 2.76b",purchase,1.0,0 -254739929,"Codename CURE",purchase,1.0,0 -254739929,"Fork Parker's Holiday Profit Hike",purchase,1.0,0 -254739929,"Robocraft",purchase,1.0,0 -284999400,"Dota 2",purchase,1.0,0 -284999400,"Dota 2",play,88.0,0 -284999400,"Survarium",purchase,1.0,0 -221127319,"Team Fortress 2",purchase,1.0,0 -221127319,"Team Fortress 2",play,0.8,0 -221127319,"Fallen Earth",purchase,1.0,0 -221127319,"Killing Floor - Toy Master",purchase,1.0,0 -89360306,"Portal",purchase,1.0,0 -296141368,"Dota 2",purchase,1.0,0 -296141368,"Dota 2",play,4.5,0 -259420989,"Warframe",purchase,1.0,0 -259420989,"Warframe",play,1.7,0 -259420989,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -259420989,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.7,0 -254952543,"War Thunder",purchase,1.0,0 -200817099,"Counter-Strike Global Offensive",purchase,1.0,0 -200817099,"Counter-Strike Global Offensive",play,674.0,0 -200817099,"Dota 2",purchase,1.0,0 -200817099,"Dota 2",play,463.0,0 -200817099,"AdVenture Capitalist",purchase,1.0,0 -200817099,"Audition Online",purchase,1.0,0 -200817099,"BloodRealm Battlegrounds",purchase,1.0,0 -200817099,"Breath of Death VII ",purchase,1.0,0 -200817099,"Cthulhu Saves the World ",purchase,1.0,0 -200817099,"Elsword",purchase,1.0,0 -200817099,"Epic Arena",purchase,1.0,0 -200817099,"FreeStyle2 Street Basketball",purchase,1.0,0 -200817099,"Grand Chase",purchase,1.0,0 -200817099,"Heroes & Generals",purchase,1.0,0 -200817099,"La Tale",purchase,1.0,0 -200817099,"NEOTOKYO",purchase,1.0,0 -200817099,"No More Room in Hell",purchase,1.0,0 -200817099,"PlanetSide 2",purchase,1.0,0 -200817099,"Puzzle Pirates",purchase,1.0,0 -200817099,"RIFT",purchase,1.0,0 -200817099,"Soldier Front 2",purchase,1.0,0 -200817099,"Spiral Knights",purchase,1.0,0 -200817099,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -200817099,"Warframe",purchase,1.0,0 -200817099,"War Thunder",purchase,1.0,0 -253044003,"Magic Duels",purchase,1.0,0 -253044003,"Magic Duels",play,7.6,0 -253044003,"Worms Armageddon",purchase,1.0,0 -253044003,"Worms Armageddon",play,4.5,0 -253044003,"Serious Sam 3 BFE",purchase,1.0,0 -253044003,"Serious Sam 3 BFE",play,0.6,0 -253044003,"Worms",purchase,1.0,0 -253044003,"Alien Breed 2 Assault",purchase,1.0,0 -253044003,"Alien Breed 3 Descent",purchase,1.0,0 -253044003,"Alien Breed Impact",purchase,1.0,0 -253044003,"Light",purchase,1.0,0 -253044003,"Worms Crazy Golf",purchase,1.0,0 -214299751,"Dota 2",purchase,1.0,0 -214299751,"Dota 2",play,989.0,0 -214299751,"Warface",purchase,1.0,0 -214299751,"Warface",play,0.1,0 -214299751,"16 Bit Arena",purchase,1.0,0 -214299751,"Dead Island Epidemic",purchase,1.0,0 -214299751,"Eldevin",purchase,1.0,0 -214299751,"Heroes & Generals",purchase,1.0,0 -214299751,"Relic Hunters Zero",purchase,1.0,0 -214299751,"Wind of Luck Arena",purchase,1.0,0 -145620149,"Dota 2",purchase,1.0,0 -145620149,"Dota 2",play,12.4,0 -80342096,"Sid Meier's Civilization V",purchase,1.0,0 -80342096,"Sid Meier's Civilization V",play,0.5,0 -94936385,"Dota 2",purchase,1.0,0 -94936385,"Dota 2",play,1411.0,0 -94936385,"Counter-Strike Global Offensive",purchase,1.0,0 -94936385,"Counter-Strike Global Offensive",play,537.0,0 -94936385,"Counter-Strike",purchase,1.0,0 -94936385,"Counter-Strike",play,391.0,0 -94936385,"Garry's Mod",purchase,1.0,0 -94936385,"Garry's Mod",play,168.0,0 -94936385,"PAYDAY 2",purchase,1.0,0 -94936385,"PAYDAY 2",play,93.0,0 -94936385,"Counter-Strike Source",purchase,1.0,0 -94936385,"Counter-Strike Source",play,74.0,0 -94936385,"Grand Theft Auto IV",purchase,1.0,0 -94936385,"Grand Theft Auto IV",play,67.0,0 -94936385,"Team Fortress 2",purchase,1.0,0 -94936385,"Team Fortress 2",play,66.0,0 -94936385,"Grand Theft Auto V",purchase,1.0,0 -94936385,"Grand Theft Auto V",play,54.0,0 -94936385,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -94936385,"Grand Theft Auto Episodes from Liberty City",play,40.0,0 -94936385,"Mortal Kombat Komplete Edition",purchase,1.0,0 -94936385,"Mortal Kombat Komplete Edition",play,39.0,0 -94936385,"Rust",purchase,1.0,0 -94936385,"Rust",play,37.0,0 -94936385,"Max Payne 3",purchase,1.0,0 -94936385,"Max Payne 3",play,36.0,0 -94936385,"Life Is Strange",purchase,1.0,0 -94936385,"Life Is Strange",play,34.0,0 -94936385,"Saints Row The Third",purchase,1.0,0 -94936385,"Saints Row The Third",play,32.0,0 -94936385,"Dead Island",purchase,1.0,0 -94936385,"Dead Island",play,31.0,0 -94936385,"Counter-Strike Condition Zero",purchase,1.0,0 -94936385,"Counter-Strike Condition Zero",play,23.0,0 -94936385,"Portal 2",purchase,1.0,0 -94936385,"Portal 2",play,21.0,0 -94936385,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -94936385,"Tom Clancy's Splinter Cell Blacklist",play,21.0,0 -94936385,"Neverwinter",purchase,1.0,0 -94936385,"Neverwinter",play,20.0,0 -94936385,"Left 4 Dead",purchase,1.0,0 -94936385,"Left 4 Dead",play,20.0,0 -94936385,"Saints Row IV",purchase,1.0,0 -94936385,"Saints Row IV",play,18.7,0 -94936385,"Borderlands 2 RU",purchase,1.0,0 -94936385,"Borderlands 2 RU",play,16.3,0 -94936385,"Left 4 Dead 2",purchase,1.0,0 -94936385,"Left 4 Dead 2",play,15.2,0 -94936385,"F.E.A.R. 3",purchase,1.0,0 -94936385,"F.E.A.R. 3",play,14.1,0 -94936385,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -94936385,"Injustice Gods Among Us Ultimate Edition",play,13.0,0 -94936385,"PAYDAY The Heist",purchase,1.0,0 -94936385,"PAYDAY The Heist",play,12.9,0 -94936385,"Cry of Fear",purchase,1.0,0 -94936385,"Cry of Fear",play,12.6,0 -94936385,"Metro 2033",purchase,1.0,0 -94936385,"Metro 2033",play,11.5,0 -94936385,"Dead Island Epidemic",purchase,1.0,0 -94936385,"Dead Island Epidemic",play,10.9,0 -94936385,"Serious Sam 3 BFE",purchase,1.0,0 -94936385,"Serious Sam 3 BFE",play,10.3,0 -94936385,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -94936385,"Burnout Paradise The Ultimate Box",play,8.3,0 -94936385,"War Thunder",purchase,1.0,0 -94936385,"War Thunder",play,7.5,0 -94936385,"No More Room in Hell",purchase,1.0,0 -94936385,"No More Room in Hell",play,7.5,0 -94936385,"Heroes & Generals",purchase,1.0,0 -94936385,"Heroes & Generals",play,7.4,0 -94936385,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -94936385,"Tom Clancy's Splinter Cell Conviction",play,7.3,0 -94936385,"Nation Red",purchase,1.0,0 -94936385,"Nation Red",play,5.5,0 -94936385,"Sniper Ghost Warrior 2",purchase,1.0,0 -94936385,"Sniper Ghost Warrior 2",play,4.5,0 -94936385,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -94936385,"Kane & Lynch 2 Dog Days",play,4.4,0 -94936385,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -94936385,"Rising Storm/Red Orchestra 2 Multiplayer",play,4.1,0 -94936385,"Orcs Must Die!",purchase,1.0,0 -94936385,"Orcs Must Die!",play,4.0,0 -94936385,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -94936385,"Counter-Strike Condition Zero Deleted Scenes",play,3.9,0 -94936385,"Sniper Elite Nazi Zombie Army 2",purchase,1.0,0 -94936385,"Sniper Elite Nazi Zombie Army 2",play,3.9,0 -94936385,"Killing Floor",purchase,1.0,0 -94936385,"Killing Floor",play,3.8,0 -94936385,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -94936385,"Command and Conquer Red Alert 3 - Uprising",play,3.7,0 -94936385,"Nosgoth",purchase,1.0,0 -94936385,"Nosgoth",play,3.0,0 -94936385,"Fistful of Frags",purchase,1.0,0 -94936385,"Fistful of Frags",play,2.7,0 -94936385,"Magicka Wizard Wars",purchase,1.0,0 -94936385,"Magicka Wizard Wars",play,2.4,0 -94936385,"HAWKEN",purchase,1.0,0 -94936385,"HAWKEN",play,1.4,0 -94936385,"Age of Chivalry",purchase,1.0,0 -94936385,"Age of Chivalry",play,1.3,0 -94936385,"GRID 2",purchase,1.0,0 -94936385,"GRID 2",play,1.2,0 -94936385,"TERA",purchase,1.0,0 -94936385,"TERA",play,1.1,0 -94936385,"Guns of Icarus Online",purchase,1.0,0 -94936385,"Guns of Icarus Online",play,0.9,0 -94936385,"Hitman Absolution",purchase,1.0,0 -94936385,"Hitman Absolution",play,0.8,0 -94936385,"Chivalry Medieval Warfare",purchase,1.0,0 -94936385,"Chivalry Medieval Warfare",play,0.8,0 -94936385,"Warframe",purchase,1.0,0 -94936385,"Warframe",play,0.7,0 -94936385,"FreeStyle2 Street Basketball",purchase,1.0,0 -94936385,"FreeStyle2 Street Basketball",play,0.5,0 -94936385,"D.I.P.R.I.P. Warm Up",purchase,1.0,0 -94936385,"D.I.P.R.I.P. Warm Up",play,0.3,0 -94936385,"RaceRoom Racing Experience ",purchase,1.0,0 -94936385,"RaceRoom Racing Experience ",play,0.2,0 -94936385,"Enclave",purchase,1.0,0 -94936385,"Enclave",play,0.2,0 -94936385,"Hitman Codename 47",purchase,1.0,0 -94936385,"Hitman Codename 47",play,0.1,0 -94936385,"Aquaria",purchase,1.0,0 -94936385,"Borderlands 2",purchase,1.0,0 -94936385,"Commando Jack",purchase,1.0,0 -94936385,"Crayon Physics Deluxe",purchase,1.0,0 -94936385,"Darwinia",purchase,1.0,0 -94936385,"DEFCON",purchase,1.0,0 -94936385,"Dota 2 - The International 2015 - Player Profiles",purchase,1.0,0 -94936385,"Dungeons of Dredmor",purchase,1.0,0 -94936385,"GRID 2 GTR Racing Pack",purchase,1.0,0 -94936385,"Hitman 2 Silent Assassin",purchase,1.0,0 -94936385,"Hitman Blood Money",purchase,1.0,0 -94936385,"Hitman Contracts",purchase,1.0,0 -94936385,"Hitman Sniper Challenge",purchase,1.0,0 -94936385,"Infinite Crisis",purchase,1.0,0 -94936385,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -94936385,"KnightShift",purchase,1.0,0 -94936385,"Multiwinia",purchase,1.0,0 -94936385,"Patch testing for Chivalry",purchase,1.0,0 -94936385,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -94936385,"Rise of Incarnates",purchase,1.0,0 -94936385,"Shadowgrounds",purchase,1.0,0 -94936385,"Shadowgrounds Survivor",purchase,1.0,0 -94936385,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -94936385,"sZone-Online",purchase,1.0,0 -94936385,"theHunter",purchase,1.0,0 -94936385,"TI5 - CDEC's Journey to The Majors",purchase,1.0,0 -94936385,"TI5 - EG Champions of TI5",purchase,1.0,0 -94936385,"TI5 - Player Profiles Cloud9 - NoTail",purchase,1.0,0 -94936385,"TI5 - Player Profiles Complexity - zfreek",purchase,1.0,0 -94936385,"TI5 - Player Profiles EG - Suma1L",purchase,1.0,0 -94936385,"TI5 - Player Profiles EHOME - ROTK",purchase,1.0,0 -94936385,"TI5 - Player Profiles Empire - Alohadance",purchase,1.0,0 -94936385,"TI5 - Player Profiles Fnatic - Kecik-Imba",purchase,1.0,0 -94936385,"TI5 - Player Profiles Invictus Gaming - Ferrari",purchase,1.0,0 -94936385,"TI5 - Player Profiles LGD - Xiao8",purchase,1.0,0 -94936385,"TI5 - Player Profiles MVPHot6 - HEEN",purchase,1.0,0 -94936385,"TI5 - Player Profiles NAVI - XBOCT",purchase,1.0,0 -94936385,"TI5 - Player Profiles Newbee - Mu",purchase,1.0,0 -94936385,"TI5 - Player Profiles TeamSecret - S4",purchase,1.0,0 -94936385,"TI5 - Player Profiles Vici - fy",purchase,1.0,0 -94936385,"TI5 - Player Profiles VirtusPro - FNG",purchase,1.0,0 -94936385,"Trine",purchase,1.0,0 -94936385,"Uplink",purchase,1.0,0 -131061056,"Team Fortress 2",purchase,1.0,0 -131061056,"Team Fortress 2",play,100.0,0 -131061056,"Dota 2",purchase,1.0,0 -131061056,"Dota 2",play,1.5,0 -35355224,"Portal",purchase,1.0,0 -35355224,"Portal",play,7.1,0 -35355224,"Half-Life 2",purchase,1.0,0 -35355224,"Half-Life 2 Episode One",purchase,1.0,0 -35355224,"Half-Life 2 Episode Two",purchase,1.0,0 -35355224,"Half-Life 2 Lost Coast",purchase,1.0,0 -203211230,"Heroes & Generals",purchase,1.0,0 -203211230,"Heroes & Generals",play,0.6,0 -130553575,"Dota 2",purchase,1.0,0 -130553575,"Dota 2",play,1103.0,0 -184524944,"Reversion - The Escape",purchase,1.0,0 -184524944,"Tom Clancy's Ghost Recon Phantoms - EU Assault Starter Pack",purchase,1.0,0 -184524944,"Tom Clancy's Ghost Recon Phantoms - EU Recon Starter Pack",purchase,1.0,0 -184524944,"Tom Clancy's Ghost Recon Phantoms - EU Support Starter Pack",purchase,1.0,0 -197467350,"Dota 2",purchase,1.0,0 -197467350,"Dota 2",play,2.7,0 -304539641,"Counter-Strike Global Offensive",purchase,1.0,0 -304539641,"Counter-Strike Global Offensive",play,30.0,0 -206086186,"Dota 2",purchase,1.0,0 -206086186,"Dota 2",play,1.7,0 -206086186,"Unturned",purchase,1.0,0 -54761333,"Team Fortress 2",purchase,1.0,0 -54761333,"Team Fortress 2",play,261.0,0 -54761333,"The Binding of Isaac",purchase,1.0,0 -54761333,"The Binding of Isaac",play,208.0,0 -54761333,"Terraria",purchase,1.0,0 -54761333,"Terraria",play,131.0,0 -54761333,"The Binding of Isaac Rebirth",purchase,1.0,0 -54761333,"The Binding of Isaac Rebirth",play,112.0,0 -54761333,"Mass Effect",purchase,1.0,0 -54761333,"Mass Effect",play,74.0,0 -54761333,"Blood Bowl Chaos Edition",purchase,1.0,0 -54761333,"Blood Bowl Chaos Edition",play,67.0,0 -54761333,"Mass Effect 2",purchase,1.0,0 -54761333,"Mass Effect 2",play,62.0,0 -54761333,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -54761333,"Sid Meier's Civilization IV Beyond the Sword",play,58.0,0 -54761333,"Dungeons of Dredmor",purchase,1.0,0 -54761333,"Dungeons of Dredmor",play,54.0,0 -54761333,"Path of Exile",purchase,1.0,0 -54761333,"Path of Exile",play,52.0,0 -54761333,"Rogue Legacy",purchase,1.0,0 -54761333,"Rogue Legacy",play,39.0,0 -54761333,"Cook, Serve, Delicious!",purchase,1.0,0 -54761333,"Cook, Serve, Delicious!",play,32.0,0 -54761333,"Borderlands",purchase,1.0,0 -54761333,"Borderlands",play,31.0,0 -54761333,"Undertale",purchase,1.0,0 -54761333,"Undertale",play,30.0,0 -54761333,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -54761333,"Plants vs. Zombies Game of the Year",play,26.0,0 -54761333,"Alien Swarm",purchase,1.0,0 -54761333,"Alien Swarm",play,26.0,0 -54761333,"Spelunky",purchase,1.0,0 -54761333,"Spelunky",play,25.0,0 -54761333,"Scribblenauts Unlimited",purchase,1.0,0 -54761333,"Scribblenauts Unlimited",play,24.0,0 -54761333,"FTL Faster Than Light",purchase,1.0,0 -54761333,"FTL Faster Than Light",play,22.0,0 -54761333,"Sid Meier's Civilization IV",purchase,1.0,0 -54761333,"Sid Meier's Civilization IV",play,21.0,0 -54761333,"LISA",purchase,1.0,0 -54761333,"LISA",play,18.7,0 -54761333,"Sid Meier's Civilization V",purchase,1.0,0 -54761333,"Sid Meier's Civilization V",play,17.6,0 -54761333,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -54761333,"Dragon Age Origins - Ultimate Edition",play,15.8,0 -54761333,"Organ Trail Director's Cut",purchase,1.0,0 -54761333,"Organ Trail Director's Cut",play,12.6,0 -54761333,"Before the Echo",purchase,1.0,0 -54761333,"Before the Echo",play,12.5,0 -54761333,"Don't Starve",purchase,1.0,0 -54761333,"Don't Starve",play,12.4,0 -54761333,"Borderlands 2",purchase,1.0,0 -54761333,"Borderlands 2",play,11.3,0 -54761333,"Beat Hazard",purchase,1.0,0 -54761333,"Beat Hazard",play,9.9,0 -54761333,"Nuclear Throne",purchase,1.0,0 -54761333,"Nuclear Throne",play,9.5,0 -54761333,"Super Meat Boy",purchase,1.0,0 -54761333,"Super Meat Boy",play,9.1,0 -54761333,"Papers, Please",purchase,1.0,0 -54761333,"Papers, Please",play,8.2,0 -54761333,"Fate of the World",purchase,1.0,0 -54761333,"Fate of the World",play,7.1,0 -54761333,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",purchase,1.0,0 -54761333,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",play,7.0,0 -54761333,"UFO Aftermath",purchase,1.0,0 -54761333,"UFO Aftermath",play,6.6,0 -54761333,"Risk of Rain",purchase,1.0,0 -54761333,"Risk of Rain",play,5.2,0 -54761333,"Bastion",purchase,1.0,0 -54761333,"Bastion",play,4.8,0 -54761333,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -54761333,"Sid Meier's Civilization IV Warlords",play,3.0,0 -54761333,"Portal",purchase,1.0,0 -54761333,"Portal",play,2.8,0 -54761333,"Legend of Grimrock",purchase,1.0,0 -54761333,"Legend of Grimrock",play,2.5,0 -54761333,"Left 4 Dead 2",purchase,1.0,0 -54761333,"Left 4 Dead 2",play,2.5,0 -54761333,"Aliens vs. Predator",purchase,1.0,0 -54761333,"Aliens vs. Predator",play,2.3,0 -54761333,"X-COM UFO Defense",purchase,1.0,0 -54761333,"X-COM UFO Defense",play,2.0,0 -54761333,"Arma 2",purchase,1.0,0 -54761333,"Arma 2",play,1.5,0 -54761333,"The Ultimate DOOM",purchase,1.0,0 -54761333,"The Ultimate DOOM",play,1.2,0 -54761333,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -54761333,"Sid Meier's Civilization IV Colonization",play,1.0,0 -54761333,"Downwell",purchase,1.0,0 -54761333,"Downwell",play,0.8,0 -54761333,"The Elder Scrolls V Skyrim",purchase,1.0,0 -54761333,"The Elder Scrolls V Skyrim",play,0.5,0 -54761333,"Source Filmmaker",purchase,1.0,0 -54761333,"Source Filmmaker",play,0.3,0 -54761333,"X-COM Apocalypse",purchase,1.0,0 -54761333,"X-COM Apocalypse",play,0.3,0 -54761333,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -54761333,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -54761333,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -54761333,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -54761333,"DiRT 3",purchase,1.0,0 -54761333,"DiRT 3 Complete Edition",purchase,1.0,0 -54761333,"DiRT Showdown",purchase,1.0,0 -54761333,"Don't Starve Reign of Giants",purchase,1.0,0 -54761333,"Don't Starve Together Beta",purchase,1.0,0 -54761333,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -54761333,"Fallout",purchase,1.0,0 -54761333,"Half-Life",purchase,1.0,0 -54761333,"LISA the Joyful",purchase,1.0,0 -54761333,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -54761333,"Operation Flashpoint Red River",purchase,1.0,0 -54761333,"Overlord",purchase,1.0,0 -54761333,"Overlord Raising Hell",purchase,1.0,0 -54761333,"Overlord II",purchase,1.0,0 -54761333,"Rise of the Argonauts",purchase,1.0,0 -54761333,"Sid Meier's Ace Patrol",purchase,1.0,0 -54761333,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -54761333,"Sid Meier's Civilization III Complete",purchase,1.0,0 -54761333,"Sid Meier's Civilization IV",purchase,1.0,0 -54761333,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -54761333,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -54761333,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -54761333,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -54761333,"Sid Meier's Railroads!",purchase,1.0,0 -54761333,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -54761333,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -54761333,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -54761333,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -54761333,"World of Guns Gun Disassembly",purchase,1.0,0 -54761333,"X-COM Enforcer",purchase,1.0,0 -54761333,"X-COM Interceptor",purchase,1.0,0 -54761333,"X-COM Terror from the Deep",purchase,1.0,0 -122212108,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -122212108,"F.E.A.R. 2 Project Origin",play,3.5,0 -152948396,"Farming Simulator 2013",purchase,1.0,0 -152948396,"Farming Simulator 2013",play,16.3,0 -133547462,"Dota 2",purchase,1.0,0 -133547462,"Dota 2",play,732.0,0 -248930355,"BRINK",purchase,1.0,0 -248930355,"BRINK",play,0.5,0 -102257546,"Wizorb",purchase,1.0,0 -209238287,"Left 4 Dead 2",purchase,1.0,0 -209238287,"Left 4 Dead 2",play,97.0,0 -209238287,"The Walking Dead Season Two",purchase,1.0,0 -209238287,"The Walking Dead Season Two",play,9.2,0 -139763487,"Dota 2",purchase,1.0,0 -139763487,"Dota 2",play,5.0,0 -154316707,"Dota 2",purchase,1.0,0 -154316707,"Dota 2",play,1534.0,0 -154316707,"GunZ 2 The Second Duel",purchase,1.0,0 -154316707,"Sniper Elite V2",purchase,1.0,0 -86245871,"Worms Reloaded",purchase,1.0,0 -86245871,"Worms Reloaded",play,18.2,0 -12195913,"Left 4 Dead 2",purchase,1.0,0 -12195913,"Left 4 Dead 2",play,2710.0,0 -12195913,"Call of Duty Black Ops",purchase,1.0,0 -12195913,"Call of Duty Black Ops",play,25.0,0 -12195913,"Duke Nukem Forever",purchase,1.0,0 -12195913,"Duke Nukem Forever",play,19.5,0 -12195913,"Half-Life 2",purchase,1.0,0 -12195913,"Half-Life 2",play,17.5,0 -12195913,"Sniper Ghost Warrior",purchase,1.0,0 -12195913,"Sniper Ghost Warrior",play,15.3,0 -12195913,"Half-Life 2 Episode One",purchase,1.0,0 -12195913,"Half-Life 2 Episode One",play,14.4,0 -12195913,"Lost Planet Extreme Condition",purchase,1.0,0 -12195913,"Lost Planet Extreme Condition",play,9.0,0 -12195913,"F.E.A.R. 3",purchase,1.0,0 -12195913,"F.E.A.R. 3",play,8.5,0 -12195913,"Red Faction Armageddon",purchase,1.0,0 -12195913,"Red Faction Armageddon",play,5.2,0 -12195913,"Insurgency Modern Infantry Combat",purchase,1.0,0 -12195913,"Insurgency Modern Infantry Combat",play,3.4,0 -12195913,"Counter-Strike Source",purchase,1.0,0 -12195913,"Counter-Strike Source",play,2.4,0 -12195913,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -12195913,"Red Orchestra Ostfront 41-45",play,2.1,0 -12195913,"Synergy",purchase,1.0,0 -12195913,"Synergy",play,1.9,0 -12195913,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -12195913,"Darkest Hour Europe '44-'45",purchase,1.0,0 -12195913,"Half-Life 2 Deathmatch",purchase,1.0,0 -12195913,"Half-Life 2 Lost Coast",purchase,1.0,0 -12195913,"Half-Life Deathmatch Source",purchase,1.0,0 -12195913,"Mare Nostrum",purchase,1.0,0 -12195913,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -12195913,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -181586458,"Dota 2",purchase,1.0,0 -181586458,"Dota 2",play,13.9,0 -192218605,"Warframe",purchase,1.0,0 -101529420,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -101529420,"Call of Duty Modern Warfare 3 - Multiplayer",play,184.0,0 -101529420,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -101529420,"Call of Duty Modern Warfare 2 - Multiplayer",play,45.0,0 -101529420,"Borderlands 2",purchase,1.0,0 -101529420,"Borderlands 2",play,24.0,0 -101529420,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -101529420,"Call of Duty Black Ops II - Multiplayer",play,10.0,0 -101529420,"Call of Duty Black Ops II",purchase,1.0,0 -101529420,"Call of Duty Black Ops II",play,8.6,0 -101529420,"Call of Duty Modern Warfare 2",purchase,1.0,0 -101529420,"Call of Duty Modern Warfare 2",play,3.7,0 -101529420,"Call of Duty Modern Warfare 3",purchase,1.0,0 -101529420,"Call of Duty Modern Warfare 3",play,1.6,0 -101529420,"Metro 2033",purchase,1.0,0 -101529420,"Metro 2033",play,1.1,0 -101529420,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -101529420,"Call of Duty Black Ops II - Zombies",play,0.4,0 -101529420,"Arma 2 Operation Arrowhead",purchase,1.0,0 -101529420,"Arma 2 Operation Arrowhead",play,0.2,0 -101529420,"Arma 2",purchase,1.0,0 -101529420,"Arma 2",play,0.2,0 -101529420,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -45807245,"Insurgency Modern Infantry Combat",purchase,1.0,0 -45807245,"Insurgency Modern Infantry Combat",play,6.9,0 -45807245,"Left 4 Dead 2",purchase,1.0,0 -45807245,"Left 4 Dead 2",play,4.7,0 -246660193,"Dota 2",purchase,1.0,0 -246660193,"Dota 2",play,0.2,0 -235946178,"Dota 2",purchase,1.0,0 -235946178,"Dota 2",play,7.3,0 -232534914,"Unturned",purchase,1.0,0 -232534914,"Unturned",play,0.6,0 -55763270,"Call of Duty Modern Warfare 2",purchase,1.0,0 -55763270,"Call of Duty Modern Warfare 2",play,4.3,0 -55763270,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -55763270,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.4,0 -309255941,"Mitos.is The Game",purchase,1.0,0 -309255941,"Mitos.is The Game",play,5.7,0 -161062314,"Dota 2",purchase,1.0,0 -161062314,"Dota 2",play,224.0,0 -161062314,"Aura Kingdom",purchase,1.0,0 -161062314,"Fallen Earth",purchase,1.0,0 -161062314,"FreeStyle2 Street Basketball",purchase,1.0,0 -161062314,"Free to Play",purchase,1.0,0 -161062314,"GunZ 2 The Second Duel",purchase,1.0,0 -161062314,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -161062314,"PlanetSide 2",purchase,1.0,0 -161062314,"Realm of the Mad God",purchase,1.0,0 -161062314,"The Mighty Quest For Epic Loot",purchase,1.0,0 -161062314,"Wizardry Online",purchase,1.0,0 -88493668,"Warframe",purchase,1.0,0 -88493668,"Warframe",play,71.0,0 -88493668,"Sleeping Dogs",purchase,1.0,0 -88493668,"Sleeping Dogs",play,41.0,0 -88493668,"Tales of Zestiria",purchase,1.0,0 -88493668,"Tales of Zestiria",play,24.0,0 -88493668,"Hitman Absolution",purchase,1.0,0 -88493668,"Hitman Absolution",play,3.0,0 -282567672,"Dota 2",purchase,1.0,0 -282567672,"Dota 2",play,61.0,0 -114846707,"Empire Total War",purchase,1.0,0 -114846707,"Empire Total War",play,17.4,0 -114846707,"Sid Meier's Civilization V",purchase,1.0,0 -114846707,"Sid Meier's Civilization V",play,7.7,0 -114846707,"Napoleon Total War",purchase,1.0,0 -301935887,"Dota 2",purchase,1.0,0 -301935887,"Dota 2",play,30.0,0 -95369808,"The Elder Scrolls V Skyrim",purchase,1.0,0 -95369808,"The Elder Scrolls V Skyrim",play,56.0,0 -44147409,"Total War SHOGUN 2",purchase,1.0,0 -44147409,"Total War SHOGUN 2",play,112.0,0 -44147409,"Total War ROME II - Emperor Edition",purchase,1.0,0 -44147409,"Total War ROME II - Emperor Edition",play,76.0,0 -44147409,"Football Manager 2009",purchase,1.0,0 -44147409,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -69033837,"The Ship",purchase,1.0,0 -69033837,"The Ship",play,1.5,0 -69033837,"The Ship Single Player",purchase,1.0,0 -69033837,"The Ship Single Player",play,0.8,0 -69033837,"The Ship Tutorial",purchase,1.0,0 -69033837,"The Ship Tutorial",play,0.2,0 -139393793,"Dota 2",purchase,1.0,0 -139393793,"Dota 2",play,15.9,0 -203800963,"Arma 3",purchase,1.0,0 -203800963,"Arma 3",play,744.0,0 -203800963,"Counter-Strike Global Offensive",purchase,1.0,0 -203800963,"Counter-Strike Global Offensive",play,266.0,0 -203800963,"Euro Truck Simulator 2",purchase,1.0,0 -203800963,"Euro Truck Simulator 2",play,70.0,0 -203800963,"H1Z1",purchase,1.0,0 -203800963,"H1Z1",play,31.0,0 -203800963,"Arma 2 Operation Arrowhead",purchase,1.0,0 -203800963,"Arma 2 Operation Arrowhead",play,29.0,0 -203800963,"Hitman Absolution",purchase,1.0,0 -203800963,"Hitman Absolution",play,10.1,0 -203800963,"DayZ",purchase,1.0,0 -203800963,"DayZ",play,8.3,0 -203800963,"War Thunder",purchase,1.0,0 -203800963,"War Thunder",play,6.0,0 -203800963,"PAYDAY 2",purchase,1.0,0 -203800963,"PAYDAY 2",play,6.0,0 -203800963,"Grand Theft Auto IV",purchase,1.0,0 -203800963,"Grand Theft Auto IV",play,5.6,0 -203800963,"Counter-Strike",purchase,1.0,0 -203800963,"Counter-Strike",play,4.3,0 -203800963,"Total War ROME II - Emperor Edition",purchase,1.0,0 -203800963,"Total War ROME II - Emperor Edition",play,2.1,0 -203800963,"Unturned",purchase,1.0,0 -203800963,"Unturned",play,1.0,0 -203800963,"Left 4 Dead 2",purchase,1.0,0 -203800963,"Left 4 Dead 2",play,0.9,0 -203800963,"Half-Life",purchase,1.0,0 -203800963,"Half-Life",play,0.7,0 -203800963,"Transformice",purchase,1.0,0 -203800963,"Transformice",play,0.5,0 -203800963,"Arma 2",purchase,1.0,0 -203800963,"Arma 2",play,0.2,0 -203800963,"Bus Driver",purchase,1.0,0 -203800963,"Bus Driver",play,0.1,0 -203800963,"Heroes & Generals",purchase,1.0,0 -203800963,"AdVenture Capitalist",purchase,1.0,0 -203800963,"AirMech",purchase,1.0,0 -203800963,"America's Army 3",purchase,1.0,0 -203800963,"Arma 2 DayZ Mod",purchase,1.0,0 -203800963,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -203800963,"Arma 3 Zeus",purchase,1.0,0 -203800963,"Clicker Heroes",purchase,1.0,0 -203800963,"Counter-Strike Condition Zero",purchase,1.0,0 -203800963,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -203800963,"Counter-Strike Source",purchase,1.0,0 -203800963,"Day of Defeat",purchase,1.0,0 -203800963,"Day of Defeat Source",purchase,1.0,0 -203800963,"Deathmatch Classic",purchase,1.0,0 -203800963,"Dev Guy",purchase,1.0,0 -203800963,"Euro Truck Simulator",purchase,1.0,0 -203800963,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -203800963,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -203800963,"H1Z1 Test Server",purchase,1.0,0 -203800963,"Half-Life 2",purchase,1.0,0 -203800963,"Half-Life 2 Deathmatch",purchase,1.0,0 -203800963,"Half-Life 2 Episode One",purchase,1.0,0 -203800963,"Half-Life 2 Episode Two",purchase,1.0,0 -203800963,"Half-Life 2 Lost Coast",purchase,1.0,0 -203800963,"Half-Life Blue Shift",purchase,1.0,0 -203800963,"Half-Life Opposing Force",purchase,1.0,0 -203800963,"Half-Life Source",purchase,1.0,0 -203800963,"Half-Life Deathmatch Source",purchase,1.0,0 -203800963,"Hitman Sniper Challenge",purchase,1.0,0 -203800963,"Left 4 Dead",purchase,1.0,0 -203800963,"PlanetSide 2",purchase,1.0,0 -203800963,"Portal",purchase,1.0,0 -203800963,"Portal 2",purchase,1.0,0 -203800963,"Relic Hunters Zero",purchase,1.0,0 -203800963,"Ricochet",purchase,1.0,0 -203800963,"Robocraft",purchase,1.0,0 -203800963,"Scania Truck Driving Simulator",purchase,1.0,0 -203800963,"Star Conflict",purchase,1.0,0 -203800963,"Team Fortress Classic",purchase,1.0,0 -203800963,"TERA",purchase,1.0,0 -203800963,"Trove",purchase,1.0,0 -203800963,"Trucks & Trailers",purchase,1.0,0 -203800963,"Warface",purchase,1.0,0 -171879643,"Team Fortress 2",purchase,1.0,0 -171879643,"Team Fortress 2",play,2.5,0 -171879643,"Dota 2",purchase,1.0,0 -171879643,"Dota 2",play,0.9,0 -118852041,"Counter-Strike Global Offensive",purchase,1.0,0 -118852041,"Counter-Strike Global Offensive",play,720.0,0 -118852041,"Arma 2 Operation Arrowhead",purchase,1.0,0 -118852041,"Arma 2 Operation Arrowhead",play,466.0,0 -118852041,"Grand Theft Auto IV",purchase,1.0,0 -118852041,"Grand Theft Auto IV",play,124.0,0 -118852041,"Rocket League",purchase,1.0,0 -118852041,"Rocket League",play,121.0,0 -118852041,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -118852041,"Grand Theft Auto Episodes from Liberty City",play,118.0,0 -118852041,"Call of Duty World at War",purchase,1.0,0 -118852041,"Call of Duty World at War",play,109.0,0 -118852041,"Garry's Mod",purchase,1.0,0 -118852041,"Garry's Mod",play,99.0,0 -118852041,"Defiance",purchase,1.0,0 -118852041,"Defiance",play,88.0,0 -118852041,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -118852041,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,87.0,0 -118852041,"PAYDAY 2",purchase,1.0,0 -118852041,"PAYDAY 2",play,75.0,0 -118852041,"ARK Survival Evolved",purchase,1.0,0 -118852041,"ARK Survival Evolved",play,71.0,0 -118852041,"Arma 3",purchase,1.0,0 -118852041,"Arma 3",play,63.0,0 -118852041,"Rust",purchase,1.0,0 -118852041,"Rust",play,39.0,0 -118852041,"DayZ",purchase,1.0,0 -118852041,"DayZ",play,39.0,0 -118852041,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -118852041,"Call of Duty Ghosts - Multiplayer",play,36.0,0 -118852041,"Left 4 Dead 2",purchase,1.0,0 -118852041,"Left 4 Dead 2",play,33.0,0 -118852041,"Need for Speed Undercover",purchase,1.0,0 -118852041,"Need for Speed Undercover",play,28.0,0 -118852041,"D.I.P.R.I.P. Warm Up",purchase,1.0,0 -118852041,"D.I.P.R.I.P. Warm Up",play,27.0,0 -118852041,"Dead Island",purchase,1.0,0 -118852041,"Dead Island",play,27.0,0 -118852041,"Arma 2",purchase,1.0,0 -118852041,"Arma 2",play,26.0,0 -118852041,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -118852041,"Tom Clancy's Ghost Recon Phantoms - NA",play,24.0,0 -118852041,"The Elder Scrolls V Skyrim",purchase,1.0,0 -118852041,"The Elder Scrolls V Skyrim",play,22.0,0 -118852041,"Test Drive Unlimited 2",purchase,1.0,0 -118852041,"Test Drive Unlimited 2",play,21.0,0 -118852041,"Infestation Survivor Stories",purchase,1.0,0 -118852041,"Infestation Survivor Stories",play,20.0,0 -118852041,"Zombies Monsters Robots",purchase,1.0,0 -118852041,"Zombies Monsters Robots",play,19.0,0 -118852041,"Dead Island Riptide",purchase,1.0,0 -118852041,"Dead Island Riptide",play,17.9,0 -118852041,"PlanetSide 2",purchase,1.0,0 -118852041,"PlanetSide 2",play,17.3,0 -118852041,"Max Payne 3",purchase,1.0,0 -118852041,"Max Payne 3",play,17.2,0 -118852041,"Borderlands 2",purchase,1.0,0 -118852041,"Borderlands 2",play,16.0,0 -118852041,"Space Engineers",purchase,1.0,0 -118852041,"Space Engineers",play,15.6,0 -118852041,"Borderlands",purchase,1.0,0 -118852041,"Borderlands",play,15.6,0 -118852041,"H1Z1",purchase,1.0,0 -118852041,"H1Z1",play,14.3,0 -118852041,"Reign Of Kings",purchase,1.0,0 -118852041,"Reign Of Kings",play,10.8,0 -118852041,"Fallout 4",purchase,1.0,0 -118852041,"Fallout 4",play,10.4,0 -118852041,"Saints Row IV",purchase,1.0,0 -118852041,"Saints Row IV",play,9.7,0 -118852041,"Killing Floor",purchase,1.0,0 -118852041,"Killing Floor",play,9.2,0 -118852041,"Mafia II",purchase,1.0,0 -118852041,"Mafia II",play,9.2,0 -118852041,"Blacklight Retribution",purchase,1.0,0 -118852041,"Blacklight Retribution",play,8.8,0 -118852041,"Dead Rising 2",purchase,1.0,0 -118852041,"Dead Rising 2",play,8.5,0 -118852041,"Sniper Elite Nazi Zombie Army 2",purchase,1.0,0 -118852041,"Sniper Elite Nazi Zombie Army 2",play,7.5,0 -118852041,"Loadout",purchase,1.0,0 -118852041,"Loadout",play,7.4,0 -118852041,"Unturned",purchase,1.0,0 -118852041,"Unturned",play,6.9,0 -118852041,"Deadpool",purchase,1.0,0 -118852041,"Deadpool",play,6.7,0 -118852041,"Far Cry 3",purchase,1.0,0 -118852041,"Far Cry 3",play,6.5,0 -118852041,"Fallout New Vegas",purchase,1.0,0 -118852041,"Fallout New Vegas",play,6.3,0 -118852041,"GRID 2",purchase,1.0,0 -118852041,"GRID 2",play,6.1,0 -118852041,"Driver San Francisco",purchase,1.0,0 -118852041,"Driver San Francisco",play,5.9,0 -118852041,"APB Reloaded",purchase,1.0,0 -118852041,"APB Reloaded",play,5.3,0 -118852041,"Insurgency",purchase,1.0,0 -118852041,"Insurgency",play,4.9,0 -118852041,"Sniper Ghost Warrior 2",purchase,1.0,0 -118852041,"Sniper Ghost Warrior 2",play,4.8,0 -118852041,"Tactical Intervention",purchase,1.0,0 -118852041,"Tactical Intervention",play,4.6,0 -118852041,"Warface",purchase,1.0,0 -118852041,"Warface",play,4.6,0 -118852041,"Grand Theft Auto San Andreas",purchase,1.0,0 -118852041,"Grand Theft Auto San Andreas",play,4.5,0 -118852041,"Team Fortress 2",purchase,1.0,0 -118852041,"Team Fortress 2",play,4.2,0 -118852041,"BioShock Infinite",purchase,1.0,0 -118852041,"BioShock Infinite",play,4.1,0 -118852041,"Sid Meier's Civilization V",purchase,1.0,0 -118852041,"Sid Meier's Civilization V",play,4.1,0 -118852041,"The Ship",purchase,1.0,0 -118852041,"The Ship",play,3.7,0 -118852041,"Counter-Strike Source",purchase,1.0,0 -118852041,"Counter-Strike Source",play,3.7,0 -118852041,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -118852041,"Just Cause 2 Multiplayer Mod",play,3.7,0 -118852041,"Sleeping Dogs",purchase,1.0,0 -118852041,"Sleeping Dogs",play,3.6,0 -118852041,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -118852041,"Injustice Gods Among Us Ultimate Edition",play,3.6,0 -118852041,"Surgeon Simulator",purchase,1.0,0 -118852041,"Surgeon Simulator",play,3.6,0 -118852041,"King Arthur's Gold",purchase,1.0,0 -118852041,"King Arthur's Gold",play,3.5,0 -118852041,"Euro Truck Simulator 2",purchase,1.0,0 -118852041,"Euro Truck Simulator 2",play,3.5,0 -118852041,"Ace of Spades",purchase,1.0,0 -118852041,"Ace of Spades",play,3.3,0 -118852041,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -118852041,"Viscera Cleanup Detail Santa's Rampage",play,3.2,0 -118852041,"Heroes & Generals",purchase,1.0,0 -118852041,"Heroes & Generals",play,3.2,0 -118852041,"Mortal Kombat Komplete Edition",purchase,1.0,0 -118852041,"Mortal Kombat Komplete Edition",play,3.0,0 -118852041,"Just Cause 2",purchase,1.0,0 -118852041,"Just Cause 2",play,3.0,0 -118852041,"Guns of Icarus Online",purchase,1.0,0 -118852041,"Guns of Icarus Online",play,2.9,0 -118852041,"Hitman Absolution",purchase,1.0,0 -118852041,"Hitman Absolution",play,2.7,0 -118852041,"Car Mechanic Simulator 2014",purchase,1.0,0 -118852041,"Car Mechanic Simulator 2014",play,2.5,0 -118852041,"Nosgoth",purchase,1.0,0 -118852041,"Nosgoth",play,2.3,0 -118852041,"FlatOut 2",purchase,1.0,0 -118852041,"FlatOut 2",play,2.3,0 -118852041,"Depth",purchase,1.0,0 -118852041,"Depth",play,2.3,0 -118852041,"Call of Duty Ghosts",purchase,1.0,0 -118852041,"Call of Duty Ghosts",play,2.1,0 -118852041,"PAYDAY The Heist",purchase,1.0,0 -118852041,"PAYDAY The Heist",play,2.0,0 -118852041,"Portal 2",purchase,1.0,0 -118852041,"Portal 2",play,1.9,0 -118852041,"Dead Island Epidemic",purchase,1.0,0 -118852041,"Dead Island Epidemic",play,1.8,0 -118852041,"theHunter",purchase,1.0,0 -118852041,"theHunter",play,1.8,0 -118852041,"Primal Carnage",purchase,1.0,0 -118852041,"Primal Carnage",play,1.6,0 -118852041,"Wolfenstein The New Order",purchase,1.0,0 -118852041,"Wolfenstein The New Order",play,1.5,0 -118852041,"GRID",purchase,1.0,0 -118852041,"GRID",play,1.4,0 -118852041,"No More Room in Hell",purchase,1.0,0 -118852041,"No More Room in Hell",play,1.4,0 -118852041,"L.A. Noire",purchase,1.0,0 -118852041,"L.A. Noire",play,1.4,0 -118852041,"Contagion",purchase,1.0,0 -118852041,"Contagion",play,1.3,0 -118852041,"Next Car Game Wreckfest",purchase,1.0,0 -118852041,"Next Car Game Wreckfest",play,1.2,0 -118852041,"Hammerwatch",purchase,1.0,0 -118852041,"Hammerwatch",play,1.2,0 -118852041,"Broforce",purchase,1.0,0 -118852041,"Broforce",play,1.2,0 -118852041,"Chivalry Medieval Warfare",purchase,1.0,0 -118852041,"Chivalry Medieval Warfare",play,1.2,0 -118852041,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -118852041,"Call of Duty Black Ops II - Multiplayer",play,1.1,0 -118852041,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -118852041,"Call of Duty Black Ops II - Zombies",play,1.1,0 -118852041,"Dead Pixels",purchase,1.0,0 -118852041,"Dead Pixels",play,1.1,0 -118852041,"Age of Chivalry",purchase,1.0,0 -118852041,"Age of Chivalry",play,1.0,0 -118852041,"Dirty Bomb",purchase,1.0,0 -118852041,"Dirty Bomb",play,1.0,0 -118852041,"Saints Row The Third",purchase,1.0,0 -118852041,"Saints Row The Third",play,1.0,0 -118852041,"Nether",purchase,1.0,0 -118852041,"Nether",play,0.9,0 -118852041,"Terraria",purchase,1.0,0 -118852041,"Terraria",play,0.8,0 -118852041,"Fistful of Frags",purchase,1.0,0 -118852041,"Fistful of Frags",play,0.8,0 -118852041,"Super Crate Box",purchase,1.0,0 -118852041,"Super Crate Box",play,0.8,0 -118852041,"Saints Row 2",purchase,1.0,0 -118852041,"Saints Row 2",play,0.7,0 -118852041,"The Expendabros",purchase,1.0,0 -118852041,"The Expendabros",play,0.7,0 -118852041,"America's Army Proving Grounds",purchase,1.0,0 -118852041,"America's Army Proving Grounds",play,0.6,0 -118852041,"POSTAL 2",purchase,1.0,0 -118852041,"POSTAL 2",play,0.6,0 -118852041,"Far Cry 2",purchase,1.0,0 -118852041,"Far Cry 2",play,0.6,0 -118852041,"World of Guns Gun Disassembly",purchase,1.0,0 -118852041,"World of Guns Gun Disassembly",play,0.5,0 -118852041,"Street Racing Syndicate",purchase,1.0,0 -118852041,"Street Racing Syndicate",play,0.5,0 -118852041,"Far Cry 3 Blood Dragon",purchase,1.0,0 -118852041,"Far Cry 3 Blood Dragon",play,0.5,0 -118852041,"Ford Racing 3",purchase,1.0,0 -118852041,"Ford Racing 3",play,0.5,0 -118852041,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -118852041,"Next Car Game Sneak Peek 2.0",play,0.4,0 -118852041,"Primal Carnage Extinction",purchase,1.0,0 -118852041,"Primal Carnage Extinction",play,0.3,0 -118852041,"H1Z1 Test Server",purchase,1.0,0 -118852041,"H1Z1 Test Server",play,0.3,0 -118852041,"The Stomping Land",purchase,1.0,0 -118852041,"The Stomping Land",play,0.3,0 -118852041,"Arma 2 DayZ Mod",purchase,1.0,0 -118852041,"Arma 2 DayZ Mod",play,0.3,0 -118852041,"Arma 2 British Armed Forces",purchase,1.0,0 -118852041,"Arma 2 British Armed Forces",play,0.2,0 -118852041,"The Ship Single Player",purchase,1.0,0 -118852041,"The Ship Single Player",play,0.2,0 -118852041,"Arma Cold War Assault",purchase,1.0,0 -118852041,"Arma Cold War Assault",play,0.2,0 -118852041,"oO",purchase,1.0,0 -118852041,"oO",play,0.2,0 -118852041,"Counter-Strike Nexon Zombies",purchase,1.0,0 -118852041,"Counter-Strike Nexon Zombies",play,0.2,0 -118852041,"Don't Starve",purchase,1.0,0 -118852041,"Don't Starve",play,0.1,0 -118852041,"NotGTAV",purchase,1.0,0 -118852041,"NotGTAV",play,0.1,0 -118852041,"Metro 2033",purchase,1.0,0 -118852041,"ORION Prelude",purchase,1.0,0 -118852041,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -118852041,"Arma 2 Private Military Company",purchase,1.0,0 -118852041,"Magicka Wizard Wars",purchase,1.0,0 -118852041,"Dystopia",purchase,1.0,0 -118852041,"Moonbase Alpha",purchase,1.0,0 -118852041,"Arma 3 Karts",purchase,1.0,0 -118852041,"Arma 3 Zeus",purchase,1.0,0 -118852041,"Call of Duty Black Ops II",purchase,1.0,0 -118852041,"Codename CURE",purchase,1.0,0 -118852041,"Don't Starve Reign of Giants",purchase,1.0,0 -118852041,"Don't Starve Together Beta",purchase,1.0,0 -118852041,"Dragon's Prophet",purchase,1.0,0 -118852041,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -118852041,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -118852041,"Far Cry",purchase,1.0,0 -118852041,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -118852041,"Grand Theft Auto San Andreas",purchase,1.0,0 -118852041,"GunZ 2 The Second Duel",purchase,1.0,0 -118852041,"Hitman Sniper Challenge",purchase,1.0,0 -118852041,"How to Survive",purchase,1.0,0 -118852041,"Killing Floor - Toy Master",purchase,1.0,0 -118852041,"Patch testing for Chivalry",purchase,1.0,0 -118852041,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -118852041,"Star Trek Online",purchase,1.0,0 -118852041,"TERA",purchase,1.0,0 -118852041,"The Ship Tutorial",purchase,1.0,0 -118852041,"The Way of Life Free Edition",purchase,1.0,0 -118852041,"Warframe",purchase,1.0,0 -118852041,"War Thunder",purchase,1.0,0 -165096054,"Serious Sam HD The Second Encounter",purchase,1.0,0 -165096054,"Serious Sam HD The Second Encounter",play,0.7,0 -216442661,"Fallen Earth",purchase,1.0,0 -216442661,"Fallen Earth",play,0.1,0 -216442661,"Unturned",purchase,1.0,0 -216442661,"Unturned",play,0.1,0 -216442661,"Heroes & Generals",purchase,1.0,0 -216442661,"Counter-Strike Nexon Zombies",purchase,1.0,0 -216442661,"No More Room in Hell",purchase,1.0,0 -88352678,"Command and Conquer Red Alert 3",purchase,1.0,0 -88352678,"Command and Conquer Red Alert 3",play,6.6,0 -88352678,"Saints Row 2",purchase,1.0,0 -88352678,"Saints Row 2",play,2.3,0 -88352678,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -88352678,"RollerCoaster Tycoon 3 Platinum!",play,1.3,0 -88352678,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -88352678,"Just Cause 2 Multiplayer Mod",play,1.3,0 -88352678,"Magicka",purchase,1.0,0 -88352678,"Magicka",play,0.5,0 -88352678,"Saints Row The Third",purchase,1.0,0 -88352678,"Saints Row The Third",play,0.4,0 -88352678,"Sid Meier's Civilization V",purchase,1.0,0 -88352678,"Garry's Mod",purchase,1.0,0 -88352678,"Just Cause 2",purchase,1.0,0 -88352678,"Risen 2 - Dark Waters",purchase,1.0,0 -88352678,"Sacred 2 Gold",purchase,1.0,0 -16084897,"Star Trek Online",purchase,1.0,0 -16084897,"Star Trek Online",play,676.0,0 -16084897,"The Elder Scrolls V Skyrim",purchase,1.0,0 -16084897,"The Elder Scrolls V Skyrim",play,449.0,0 -16084897,"Fallout 4",purchase,1.0,0 -16084897,"Fallout 4",play,236.0,0 -16084897,"Overlord",purchase,1.0,0 -16084897,"Overlord",play,119.0,0 -16084897,"Shattered Union",purchase,1.0,0 -16084897,"Shattered Union",play,116.0,0 -16084897,"Dying Light",purchase,1.0,0 -16084897,"Dying Light",play,99.0,0 -16084897,"Overlord II",purchase,1.0,0 -16084897,"Overlord II",play,57.0,0 -16084897,"Dishonored",purchase,1.0,0 -16084897,"Dishonored",play,54.0,0 -16084897,"BioShock Infinite",purchase,1.0,0 -16084897,"BioShock Infinite",play,53.0,0 -16084897,"RAGE",purchase,1.0,0 -16084897,"RAGE",play,45.0,0 -16084897,"Just Cause 2",purchase,1.0,0 -16084897,"Just Cause 2",play,40.0,0 -16084897,"Wolfenstein The New Order",purchase,1.0,0 -16084897,"Wolfenstein The New Order",play,37.0,0 -16084897,"Black Mesa",purchase,1.0,0 -16084897,"Black Mesa",play,36.0,0 -16084897,"South Park The Stick of Truth",purchase,1.0,0 -16084897,"South Park The Stick of Truth",play,23.0,0 -16084897,"Mafia II",purchase,1.0,0 -16084897,"Mafia II",play,21.0,0 -16084897,"Half-Life 2 Episode Two",purchase,1.0,0 -16084897,"Half-Life 2 Episode Two",play,19.3,0 -16084897,"The Walking Dead",purchase,1.0,0 -16084897,"The Walking Dead",play,19.0,0 -16084897,"State of Decay",purchase,1.0,0 -16084897,"State of Decay",play,17.6,0 -16084897,"Singularity",purchase,1.0,0 -16084897,"Singularity",play,15.4,0 -16084897,"Dead Rising 2",purchase,1.0,0 -16084897,"Dead Rising 2",play,14.8,0 -16084897,"Portal",purchase,1.0,0 -16084897,"Portal",play,10.3,0 -16084897,"Portal 2",purchase,1.0,0 -16084897,"Portal 2",play,10.3,0 -16084897,"Homefront",purchase,1.0,0 -16084897,"Homefront",play,9.6,0 -16084897,"Call of Juarez Bound in Blood",purchase,1.0,0 -16084897,"Call of Juarez Bound in Blood",play,7.2,0 -16084897,"Demigod",purchase,1.0,0 -16084897,"Demigod",play,6.0,0 -16084897,"Betrayer",purchase,1.0,0 -16084897,"Betrayer",play,4.6,0 -16084897,"BRINK",purchase,1.0,0 -16084897,"BRINK",play,3.6,0 -16084897,"Ticket to Ride",purchase,1.0,0 -16084897,"Ticket to Ride",play,2.4,0 -16084897,"Nether",purchase,1.0,0 -16084897,"Nether",play,2.3,0 -16084897,"Duke Nukem Forever",purchase,1.0,0 -16084897,"Duke Nukem Forever",play,2.0,0 -16084897,"Sanctum",purchase,1.0,0 -16084897,"Sanctum",play,2.0,0 -16084897,"Prototype",purchase,1.0,0 -16084897,"Prototype",play,1.1,0 -16084897,"DUNGEONS - Steam Special Edition",purchase,1.0,0 -16084897,"DUNGEONS - Steam Special Edition",play,1.0,0 -16084897,"Silent Hill Homecoming",purchase,1.0,0 -16084897,"Silent Hill Homecoming",play,0.8,0 -16084897,"Aliens vs. Predator",purchase,1.0,0 -16084897,"Aliens vs. Predator",play,0.8,0 -16084897,"Metro 2033",purchase,1.0,0 -16084897,"Metro 2033",play,0.8,0 -16084897,"Dementium II HD",purchase,1.0,0 -16084897,"Dementium II HD",play,0.7,0 -16084897,"Antichamber",purchase,1.0,0 -16084897,"Antichamber",play,0.4,0 -16084897,"Killing Floor",purchase,1.0,0 -16084897,"Killing Floor",play,0.4,0 -16084897,"No More Room in Hell",purchase,1.0,0 -16084897,"No More Room in Hell",play,0.4,0 -16084897,"Bulletstorm",purchase,1.0,0 -16084897,"Bulletstorm",play,0.4,0 -16084897,"Sir, You Are Being Hunted",purchase,1.0,0 -16084897,"Sir, You Are Being Hunted",play,0.3,0 -16084897,"Legend of Grimrock",purchase,1.0,0 -16084897,"Legend of Grimrock",play,0.2,0 -16084897,"Slender The Arrival",purchase,1.0,0 -16084897,"Slender The Arrival",play,0.2,0 -16084897,"Kane & Lynch Dead Men",purchase,1.0,0 -16084897,"Kane & Lynch Dead Men",play,0.2,0 -16084897,"Half-Life 2",purchase,1.0,0 -16084897,"Half-Life 2",play,0.1,0 -16084897,"Arma 2 Operation Arrowhead",purchase,1.0,0 -16084897,"Arma 2 Operation Arrowhead",play,0.1,0 -16084897,"Clive Barker's Jericho",purchase,1.0,0 -16084897,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -16084897,"RIFT",purchase,1.0,0 -16084897,"Arma 2",purchase,1.0,0 -16084897,"Arma 2 DayZ Mod",purchase,1.0,0 -16084897,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -16084897,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -16084897,"BioShock",purchase,1.0,0 -16084897,"BioShock Infinite - Season Pass",purchase,1.0,0 -16084897,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -16084897,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -16084897,"Borderlands",purchase,1.0,0 -16084897,"Call of Duty Black Ops",purchase,1.0,0 -16084897,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -16084897,"Call of Juarez Gunslinger",purchase,1.0,0 -16084897,"Company of Heroes",purchase,1.0,0 -16084897,"Company of Heroes (New Steam Version)",purchase,1.0,0 -16084897,"Company of Heroes Opposing Fronts",purchase,1.0,0 -16084897,"Company of Heroes Tales of Valor",purchase,1.0,0 -16084897,"Contagion",purchase,1.0,0 -16084897,"Counter-Strike Source",purchase,1.0,0 -16084897,"Darkest Hour Europe '44-'45",purchase,1.0,0 -16084897,"Dead Space",purchase,1.0,0 -16084897,"Dead Space 2",purchase,1.0,0 -16084897,"Deus Ex Human Revolution",purchase,1.0,0 -16084897,"DUNGEONS - The Dark Lord (Steam Special Edition)",purchase,1.0,0 -16084897,"F.E.A.R.",purchase,1.0,0 -16084897,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -16084897,"F.E.A.R. 3",purchase,1.0,0 -16084897,"F.E.A.R. Extraction Point",purchase,1.0,0 -16084897,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -16084897,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -16084897,"Grand Theft Auto IV",purchase,1.0,0 -16084897,"Half-Life 2 Deathmatch",purchase,1.0,0 -16084897,"Half-Life 2 Episode One",purchase,1.0,0 -16084897,"Half-Life 2 Lost Coast",purchase,1.0,0 -16084897,"Half-Life Deathmatch Source",purchase,1.0,0 -16084897,"Hard Reset",purchase,1.0,0 -16084897,"Hard Reset Exile DLC",purchase,1.0,0 -16084897,"How to Survive",purchase,1.0,0 -16084897,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -16084897,"Left 4 Dead 2",purchase,1.0,0 -16084897,"LIMBO",purchase,1.0,0 -16084897,"Machinarium",purchase,1.0,0 -16084897,"Mare Nostrum",purchase,1.0,0 -16084897,"Mass Effect",purchase,1.0,0 -16084897,"Mass Effect 2",purchase,1.0,0 -16084897,"Metro 2033 Redux",purchase,1.0,0 -16084897,"Metro Last Light",purchase,1.0,0 -16084897,"Metro Last Light Redux",purchase,1.0,0 -16084897,"Natural Selection 2",purchase,1.0,0 -16084897,"Nether - Chosen",purchase,1.0,0 -16084897,"Nether Arena",purchase,1.0,0 -16084897,"Outlast",purchase,1.0,0 -16084897,"Overlord Raising Hell",purchase,1.0,0 -16084897,"Painkiller Black Edition",purchase,1.0,0 -16084897,"Painkiller Recurring Evil",purchase,1.0,0 -16084897,"Painkiller Redemption",purchase,1.0,0 -16084897,"Painkiller Resurrection",purchase,1.0,0 -16084897,"Painkiller Hell & Damnation",purchase,1.0,0 -16084897,"Painkiller Hell & Damnation - The Clock Strikes Meat Night",purchase,1.0,0 -16084897,"Painkiller Overdose",purchase,1.0,0 -16084897,"PAYDAY The Heist",purchase,1.0,0 -16084897,"PAYDAY Wolf Pack",purchase,1.0,0 -16084897,"Penumbra Black Plague",purchase,1.0,0 -16084897,"Penumbra Overture",purchase,1.0,0 -16084897,"Penumbra Requiem",purchase,1.0,0 -16084897,"PROTOTYPE 2",purchase,1.0,0 -16084897,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -16084897,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -16084897,"Rise of the Triad",purchase,1.0,0 -16084897,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -16084897,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -16084897,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -16084897,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -16084897,"Sniper Elite Nazi Zombie Army",purchase,1.0,0 -16084897,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -16084897,"Spelunky",purchase,1.0,0 -16084897,"sZone-Online",purchase,1.0,0 -16084897,"The Darkness II",purchase,1.0,0 -16084897,"The Dead Linger",purchase,1.0,0 -16084897,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -16084897,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -16084897,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -16084897,"The Secret World",purchase,1.0,0 -16084897,"The Swapper",purchase,1.0,0 -16084897,"The Walking Dead Season Two",purchase,1.0,0 -16084897,"Ticket to Ride - Europe",purchase,1.0,0 -16084897,"Ticket to Ride - Legendary Asia",purchase,1.0,0 -16084897,"Ticket to Ride - Switzerland",purchase,1.0,0 -16084897,"Ticket to Ride - USA 1910",purchase,1.0,0 -16084897,"Tom Clancy's Rainbow Six Vegas",purchase,1.0,0 -16084897,"Tom Clancy's Rainbow Six Vegas 2",purchase,1.0,0 -16084897,"Tom Clancy's Splinter Cell Chaos Theory",purchase,1.0,0 -16084897,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -16084897,"Wolfenstein The Old Blood ",purchase,1.0,0 -16084897,"XCOM Enemy Unknown",purchase,1.0,0 -298306205,"Undertale",purchase,1.0,0 -298306205,"Undertale",play,50.0,0 -298306205,"RPG Maker VX Ace",purchase,1.0,0 -298306205,"RPG Maker VX Ace",play,32.0,0 -298306205,"RPG Maker DS+ Expansion - Retro SciFi",purchase,1.0,0 -196427977,"East India Company Gold",purchase,1.0,0 -161063960,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -161063960,"Call of Duty Ghosts - Multiplayer",play,415.0,0 -161063960,"Call of Duty Ghosts",purchase,1.0,0 -161063960,"Call of Duty Ghosts",play,21.0,0 -23609845,"Counter-Strike",purchase,1.0,0 -23609845,"Counter-Strike Condition Zero",purchase,1.0,0 -23609845,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -199717061,"The Binding of Isaac Rebirth",purchase,1.0,0 -199717061,"The Binding of Isaac Rebirth",play,124.0,0 -199717061,"The Binding of Isaac",purchase,1.0,0 -199717061,"The Binding of Isaac",play,2.9,0 -26789885,"Counter-Strike Source",purchase,1.0,0 -26789885,"Counter-Strike Source",play,83.0,0 -26789885,"Counter-Strike",purchase,1.0,0 -26789885,"Counter-Strike",play,3.1,0 -26789885,"Counter-Strike Condition Zero",purchase,1.0,0 -26789885,"Counter-Strike Condition Zero",play,0.2,0 -26789885,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -26789885,"Day of Defeat",purchase,1.0,0 -26789885,"Day of Defeat Source",purchase,1.0,0 -26789885,"Deathmatch Classic",purchase,1.0,0 -26789885,"Half-Life 2 Deathmatch",purchase,1.0,0 -26789885,"Half-Life 2 Lost Coast",purchase,1.0,0 -26789885,"Ricochet",purchase,1.0,0 -75738431,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -75738431,"Plants vs. Zombies Game of the Year",play,127.0,0 -75738431,"SpaceChem",purchase,1.0,0 -75738431,"SpaceChem",play,117.0,0 -75738431,"The Tiny Bang Story",purchase,1.0,0 -75738431,"The Tiny Bang Story",play,53.0,0 -75738431,"Left 4 Dead 2",purchase,1.0,0 -75738431,"Left 4 Dead 2",play,35.0,0 -75738431,"Machinarium",purchase,1.0,0 -75738431,"Machinarium",play,12.2,0 -75738431,"iBomber Defense",purchase,1.0,0 -75738431,"iBomber Defense",play,6.7,0 -75738431,"Titan Attacks",purchase,1.0,0 -75738431,"Titan Attacks",play,1.8,0 -75738431,"Amnesia The Dark Descent",purchase,1.0,0 -75738431,"Amnesia The Dark Descent",play,0.5,0 -218089327,"Dota 2",purchase,1.0,0 -218089327,"Dota 2",play,22.0,0 -259301403,"FINAL FANTASY XIV A Realm Reborn",purchase,1.0,0 -259301403,"FINAL FANTASY XIV A Realm Reborn",play,52.0,0 -259301403,"The Elder Scrolls V Skyrim",purchase,1.0,0 -259301403,"The Elder Scrolls V Skyrim",play,1.2,0 -259301403,"FINAL FANTASY XIV A Realm Reborn (NA version)",purchase,1.0,0 -259301403,"FINAL FANTASY XIV Heavensward",purchase,1.0,0 -259301403,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -259301403,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -259301403,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -248354453,"The Elder Scrolls V Skyrim",purchase,1.0,0 -248354453,"The Elder Scrolls V Skyrim",play,0.7,0 -248354453,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -248354453,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -248354453,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -218914514,"Missing Translation",purchase,1.0,0 -218914514,"Missing Translation",play,0.4,0 -200933731,"Team Fortress 2",purchase,1.0,0 -200933731,"Team Fortress 2",play,0.7,0 -18697313,"Counter-Strike Source",purchase,1.0,0 -18697313,"Counter-Strike Source",play,1.2,0 -18697313,"Day of Defeat Source",purchase,1.0,0 -18697313,"Half-Life 2",purchase,1.0,0 -18697313,"Half-Life 2 Deathmatch",purchase,1.0,0 -18697313,"Half-Life 2 Episode One",purchase,1.0,0 -18697313,"Half-Life 2 Lost Coast",purchase,1.0,0 -18697313,"Half-Life Source",purchase,1.0,0 -18697313,"Half-Life Deathmatch Source",purchase,1.0,0 -3783783,"Counter-Strike Global Offensive",purchase,1.0,0 -3783783,"Counter-Strike Global Offensive",play,882.0,0 -3783783,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -3783783,"Call of Duty Black Ops - Multiplayer",play,154.0,0 -3783783,"H1Z1",purchase,1.0,0 -3783783,"H1Z1",play,142.0,0 -3783783,"Counter-Strike",purchase,1.0,0 -3783783,"Counter-Strike",play,123.0,0 -3783783,"Counter-Strike Condition Zero",purchase,1.0,0 -3783783,"Counter-Strike Condition Zero",play,97.0,0 -3783783,"Call of Duty Black Ops",purchase,1.0,0 -3783783,"Call of Duty Black Ops",play,33.0,0 -3783783,"Team Fortress 2",purchase,1.0,0 -3783783,"Team Fortress 2",play,10.5,0 -3783783,"Ski Region Simulator",purchase,1.0,0 -3783783,"Ski Region Simulator",play,6.3,0 -3783783,"Day of Defeat",purchase,1.0,0 -3783783,"Day of Defeat",play,2.7,0 -3783783,"RaceRoom Racing Experience ",purchase,1.0,0 -3783783,"RaceRoom Racing Experience ",play,2.6,0 -3783783,"Rocket League",purchase,1.0,0 -3783783,"Rocket League",play,2.5,0 -3783783,"Copa Petrobras de Marcas",purchase,1.0,0 -3783783,"Copa Petrobras de Marcas",play,1.7,0 -3783783,"Alien Swarm",purchase,1.0,0 -3783783,"Alien Swarm",play,1.0,0 -3783783,"Half-Life Blue Shift",purchase,1.0,0 -3783783,"Half-Life Blue Shift",play,0.7,0 -3783783,"Car Mechanic Simulator 2014",purchase,1.0,0 -3783783,"Car Mechanic Simulator 2014",play,0.6,0 -3783783,"Half-Life",purchase,1.0,0 -3783783,"Half-Life",play,0.4,0 -3783783,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -3783783,"Counter-Strike Condition Zero Deleted Scenes",play,0.4,0 -3783783,"Team Fortress Classic",purchase,1.0,0 -3783783,"Team Fortress Classic",play,0.3,0 -3783783,"Codename Gordon",purchase,1.0,0 -3783783,"Codename Gordon",play,0.2,0 -3783783,"Construction Machines 2014",purchase,1.0,0 -3783783,"Deathmatch Classic",purchase,1.0,0 -3783783,"Dirty Bomb",purchase,1.0,0 -3783783,"Farm Machines Championships 2014",purchase,1.0,0 -3783783,"H1Z1 Test Server",purchase,1.0,0 -3783783,"Half-Life Opposing Force",purchase,1.0,0 -3783783,"Helicopter Simulator 2014 Search and Rescue",purchase,1.0,0 -3783783,"Ricochet",purchase,1.0,0 -70967454,"Gems of War",purchase,1.0,0 -70967454,"Gems of War",play,132.0,0 -70967454,"Sid Meier's Civilization V",purchase,1.0,0 -70967454,"Sid Meier's Civilization V",play,55.0,0 -70967454,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -70967454,"STAR WARS Knights of the Old Republic II The Sith Lords",play,37.0,0 -70967454,"Pillars of Eternity",purchase,1.0,0 -70967454,"Pillars of Eternity",play,0.6,0 -70967454,"Deus Ex Human Revolution",purchase,1.0,0 -124003951,"Dota 2",purchase,1.0,0 -124003951,"Dota 2",play,1747.0,0 -124003951,"Echoes+",purchase,1.0,0 -124003951,"FreeStyle2 Street Basketball",purchase,1.0,0 -124003951,"Unturned",purchase,1.0,0 -262014680,"Dota 2",purchase,1.0,0 -262014680,"Dota 2",play,0.7,0 -45457930,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -45457930,"Warhammer 40,000 Dawn of War II",play,18.5,0 -45457930,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -45457930,"Unreal Tournament 3 Black Edition",play,0.5,0 -131348564,"Arma 3",purchase,1.0,0 -131348564,"Arma 3",play,369.0,0 -131348564,"Terraria",purchase,1.0,0 -131348564,"Terraria",play,200.0,0 -131348564,"Age of Empires II HD Edition",purchase,1.0,0 -131348564,"Age of Empires II HD Edition",play,167.0,0 -131348564,"Sid Meier's Civilization V",purchase,1.0,0 -131348564,"Sid Meier's Civilization V",play,162.0,0 -131348564,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -131348564,"Sins of a Solar Empire Rebellion",play,130.0,0 -131348564,"The Elder Scrolls V Skyrim",purchase,1.0,0 -131348564,"The Elder Scrolls V Skyrim",play,130.0,0 -131348564,"Kerbal Space Program",purchase,1.0,0 -131348564,"Kerbal Space Program",play,112.0,0 -131348564,"Men of War Assault Squad 2",purchase,1.0,0 -131348564,"Men of War Assault Squad 2",play,99.0,0 -131348564,"Port Royale 2",purchase,1.0,0 -131348564,"Port Royale 2",play,84.0,0 -131348564,"Banished",purchase,1.0,0 -131348564,"Banished",play,70.0,0 -131348564,"Garry's Mod",purchase,1.0,0 -131348564,"Garry's Mod",play,46.0,0 -131348564,"Homeworld Remastered Collection",purchase,1.0,0 -131348564,"Homeworld Remastered Collection",play,40.0,0 -131348564,"Men of War Assault Squad",purchase,1.0,0 -131348564,"Men of War Assault Squad",play,35.0,0 -131348564,"Unturned",purchase,1.0,0 -131348564,"Unturned",play,33.0,0 -131348564,"From The Depths",purchase,1.0,0 -131348564,"From The Depths",play,31.0,0 -131348564,"Counter-Strike Global Offensive",purchase,1.0,0 -131348564,"Counter-Strike Global Offensive",play,29.0,0 -131348564,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -131348564,"The Witcher 2 Assassins of Kings Enhanced Edition",play,26.0,0 -131348564,"Cities Skylines",purchase,1.0,0 -131348564,"Cities Skylines",play,25.0,0 -131348564,"Robocraft",purchase,1.0,0 -131348564,"Robocraft",play,21.0,0 -131348564,"Besiege",purchase,1.0,0 -131348564,"Besiege",play,18.0,0 -131348564,"This War of Mine",purchase,1.0,0 -131348564,"This War of Mine",play,17.6,0 -131348564,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -131348564,"Fallout 3 - Game of the Year Edition",play,17.4,0 -131348564,"Team Fortress 2",purchase,1.0,0 -131348564,"Team Fortress 2",play,15.2,0 -131348564,"Space Engineers",purchase,1.0,0 -131348564,"Space Engineers",play,12.6,0 -131348564,"The Long Dark",purchase,1.0,0 -131348564,"The Long Dark",play,11.3,0 -131348564,"BattleBlock Theater",purchase,1.0,0 -131348564,"BattleBlock Theater",play,9.3,0 -131348564,"Portal 2",purchase,1.0,0 -131348564,"Portal 2",play,8.9,0 -131348564,"Borderlands 2",purchase,1.0,0 -131348564,"Borderlands 2",play,7.9,0 -131348564,"Chivalry Medieval Warfare",purchase,1.0,0 -131348564,"Chivalry Medieval Warfare",play,6.5,0 -131348564,"Fallout New Vegas",purchase,1.0,0 -131348564,"Fallout New Vegas",play,5.9,0 -131348564,"ORION Prelude",purchase,1.0,0 -131348564,"ORION Prelude",play,5.8,0 -131348564,"Call to Arms",purchase,1.0,0 -131348564,"Call to Arms",play,5.2,0 -131348564,"War Thunder",purchase,1.0,0 -131348564,"War Thunder",play,4.9,0 -131348564,"Lifeless Planet",purchase,1.0,0 -131348564,"Lifeless Planet",play,4.7,0 -131348564,"Metro 2033 Redux",purchase,1.0,0 -131348564,"Metro 2033 Redux",play,4.5,0 -131348564,"Lucius",purchase,1.0,0 -131348564,"Lucius",play,4.4,0 -131348564,"Metro Last Light Redux",purchase,1.0,0 -131348564,"Metro Last Light Redux",play,4.0,0 -131348564,"The Binding of Isaac",purchase,1.0,0 -131348564,"The Binding of Isaac",play,3.5,0 -131348564,"Risk of Rain",purchase,1.0,0 -131348564,"Risk of Rain",play,3.2,0 -131348564,"Rock of Ages",purchase,1.0,0 -131348564,"Rock of Ages",play,3.0,0 -131348564,"Takedown Red Sabre",purchase,1.0,0 -131348564,"Takedown Red Sabre",play,2.9,0 -131348564,"Bloody Trapland",purchase,1.0,0 -131348564,"Bloody Trapland",play,2.4,0 -131348564,"Submerged",purchase,1.0,0 -131348564,"Submerged",play,2.3,0 -131348564,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -131348564,"Rising Storm/Red Orchestra 2 Multiplayer",play,2.3,0 -131348564,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -131348564,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,2.0,0 -131348564,"Terrorhedron",purchase,1.0,0 -131348564,"Terrorhedron",play,1.8,0 -131348564,"Cry of Fear",purchase,1.0,0 -131348564,"Cry of Fear",play,1.7,0 -131348564,"Guns of Icarus Online",purchase,1.0,0 -131348564,"Guns of Icarus Online",play,1.6,0 -131348564,"To the Moon",purchase,1.0,0 -131348564,"To the Moon",play,1.1,0 -131348564,"Contagion",purchase,1.0,0 -131348564,"Contagion",play,1.1,0 -131348564,"Nidhogg",purchase,1.0,0 -131348564,"Nidhogg",play,1.0,0 -131348564,"Mountain",purchase,1.0,0 -131348564,"Mountain",play,1.0,0 -131348564,"Dead Island",purchase,1.0,0 -131348564,"Dead Island",play,0.9,0 -131348564,"Yet Another Zombie Defense",purchase,1.0,0 -131348564,"Yet Another Zombie Defense",play,0.9,0 -131348564,"Euro Truck Simulator 2",purchase,1.0,0 -131348564,"Euro Truck Simulator 2",play,0.8,0 -131348564,"The Cat Lady",purchase,1.0,0 -131348564,"The Cat Lady",play,0.8,0 -131348564,"PAYDAY The Heist",purchase,1.0,0 -131348564,"PAYDAY The Heist",play,0.8,0 -131348564,"Moonbase Alpha",purchase,1.0,0 -131348564,"Moonbase Alpha",play,0.5,0 -131348564,"Arma Cold War Assault",purchase,1.0,0 -131348564,"Arma Cold War Assault",play,0.5,0 -131348564,"Heroes & Generals",purchase,1.0,0 -131348564,"Heroes & Generals",play,0.5,0 -131348564,"Only If",purchase,1.0,0 -131348564,"Only If",play,0.5,0 -131348564,"Total War Battles KINGDOM",purchase,1.0,0 -131348564,"Total War Battles KINGDOM",play,0.5,0 -131348564,"Insurgency",purchase,1.0,0 -131348564,"Insurgency",play,0.5,0 -131348564,"TDP5 Arena 3D",purchase,1.0,0 -131348564,"TDP5 Arena 3D",play,0.4,0 -131348564,"Grand Theft Auto IV",purchase,1.0,0 -131348564,"Grand Theft Auto IV",play,0.4,0 -131348564,"DETOUR",purchase,1.0,0 -131348564,"DETOUR",play,0.4,0 -131348564,"Steel Ocean",purchase,1.0,0 -131348564,"Steel Ocean",play,0.3,0 -131348564,"The Hat Man Shadow Ward",purchase,1.0,0 -131348564,"The Hat Man Shadow Ward",play,0.3,0 -131348564,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -131348564,"Navy Field 2 Conqueror of the Ocean",play,0.3,0 -131348564,"Hacker Evolution",purchase,1.0,0 -131348564,"Hacker Evolution",play,0.3,0 -131348564,"Fistful of Frags",purchase,1.0,0 -131348564,"Fistful of Frags",play,0.1,0 -131348564,"Super Crate Box",purchase,1.0,0 -131348564,"Super Crate Box",play,0.1,0 -131348564,"Gear Up",purchase,1.0,0 -131348564,"Spelunky",purchase,1.0,0 -131348564,"GEARCRACK Arena",purchase,1.0,0 -131348564,"Toribash",purchase,1.0,0 -131348564,"DCS World",purchase,1.0,0 -131348564,"Half-Life 2",purchase,1.0,0 -131348564,"Age of Empires II HD The Forgotten",purchase,1.0,0 -131348564,"Arma 3 Helicopters",purchase,1.0,0 -131348564,"Arma 3 Karts",purchase,1.0,0 -131348564,"Arma 3 Marksmen",purchase,1.0,0 -131348564,"Arma 3 Zeus",purchase,1.0,0 -131348564,"Counter-Strike Source",purchase,1.0,0 -131348564,"Dead Island Epidemic",purchase,1.0,0 -131348564,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -131348564,"Hacker Evolution - Untold",purchase,1.0,0 -131348564,"Hacker Evolution Duality",purchase,1.0,0 -131348564,"Half-Life 2 Lost Coast",purchase,1.0,0 -131348564,"Patch testing for Chivalry",purchase,1.0,0 -131348564,"PAYDAY 2",purchase,1.0,0 -131348564,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -131348564,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -131348564,"Sins of a Solar Empire Rebellion - Stellar Phenomena DLC",purchase,1.0,0 -131348564,"Sins of a Solar Empire Rebellion Forbidden Worlds",purchase,1.0,0 -131348564,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -131348564,"Tactical Intervention",purchase,1.0,0 -131348564,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -131348564,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -131348564,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -131348564,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -131348564,"Warface",purchase,1.0,0 -116515230,"Path of Exile",purchase,1.0,0 -116515230,"Path of Exile",play,543.0,0 -116515230,"Wargame AirLand Battle",purchase,1.0,0 -116515230,"Wargame AirLand Battle",play,128.0,0 -116515230,"Men of War Assault Squad 2",purchase,1.0,0 -116515230,"Men of War Assault Squad 2",play,69.0,0 -116515230,"Company of Heroes 2",purchase,1.0,0 -116515230,"Company of Heroes 2",play,27.0,0 -116515230,"Earth 2160",purchase,1.0,0 -116515230,"Earth 2160",play,26.0,0 -116515230,"Blitzkrieg 2 Anthology",purchase,1.0,0 -116515230,"Blitzkrieg 2 Anthology",play,19.9,0 -116515230,"Men of War",purchase,1.0,0 -116515230,"Men of War",play,15.5,0 -116515230,"Men of War Assault Squad",purchase,1.0,0 -116515230,"Men of War Assault Squad",play,15.0,0 -116515230,"Torchlight II",purchase,1.0,0 -116515230,"Torchlight II",play,14.7,0 -116515230,"Men of War Vietnam",purchase,1.0,0 -116515230,"Men of War Vietnam",play,8.3,0 -116515230,"Trine 2",purchase,1.0,0 -116515230,"Trine 2",play,7.5,0 -116515230,"SpellForce Platinum Edition",purchase,1.0,0 -116515230,"SpellForce Platinum Edition",play,4.7,0 -116515230,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -116515230,"Warhammer 40,000 Dawn of War II",play,3.6,0 -116515230,"Star Wars Empire at War Gold",purchase,1.0,0 -116515230,"Star Wars Empire at War Gold",play,2.7,0 -116515230,"SpellForce 2 Gold Edition",purchase,1.0,0 -116515230,"SpellForce 2 Gold Edition",play,2.6,0 -116515230,"The Elder Scrolls V Skyrim",purchase,1.0,0 -116515230,"The Elder Scrolls V Skyrim",play,2.0,0 -116515230,"Supreme Commander 2",purchase,1.0,0 -116515230,"Supreme Commander 2",play,1.8,0 -116515230,"Men of War Red Tide",purchase,1.0,0 -116515230,"Men of War Red Tide",play,1.6,0 -116515230,"Beyond Divinity",purchase,1.0,0 -116515230,"Beyond Divinity",play,1.1,0 -116515230,"War Thunder",purchase,1.0,0 -116515230,"War Thunder",play,0.9,0 -116515230,"Evolution RTS",purchase,1.0,0 -116515230,"Evolution RTS",play,0.8,0 -116515230,"Men of War Condemned Heroes",purchase,1.0,0 -116515230,"Men of War Condemned Heroes",play,0.7,0 -116515230,"Star Wars - Battlefront II",purchase,1.0,0 -116515230,"Star Wars - Battlefront II",play,0.2,0 -116515230,"American Conquest",purchase,1.0,0 -116515230,"American Conquest - Fight Back",purchase,1.0,0 -116515230,"Bejeweled 3",purchase,1.0,0 -116515230,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -116515230,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -116515230,"Company of Heroes",purchase,1.0,0 -116515230,"Company of Heroes (New Steam Version)",purchase,1.0,0 -116515230,"Company of Heroes Opposing Fronts",purchase,1.0,0 -116515230,"Company of Heroes Tales of Valor",purchase,1.0,0 -116515230,"Cossacks Art of War",purchase,1.0,0 -116515230,"Cossacks Back to War",purchase,1.0,0 -116515230,"Cossacks European Wars",purchase,1.0,0 -116515230,"Cossacks II Battle for Europe",purchase,1.0,0 -116515230,"Cossacks II Napoleonic Wars",purchase,1.0,0 -116515230,"Crusader Kings II",purchase,1.0,0 -116515230,"Deadlight",purchase,1.0,0 -116515230,"Deadlight Original Soundtrack",purchase,1.0,0 -116515230,"Dead Space 2",purchase,1.0,0 -116515230,"Dragon Age Origins",purchase,1.0,0 -116515230,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -116515230,"Hitman Absolution",purchase,1.0,0 -116515230,"Mass Effect 2",purchase,1.0,0 -116515230,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -116515230,"Operation Flashpoint Red River",purchase,1.0,0 -116515230,"Overlord",purchase,1.0,0 -116515230,"Overlord Raising Hell",purchase,1.0,0 -116515230,"Rise of the Argonauts",purchase,1.0,0 -116515230,"SpellForce 2 - Demons of the Past",purchase,1.0,0 -116515230,"SpellForce 2 - Demons of the Past - Soundtrack",purchase,1.0,0 -116515230,"SpellForce 2 - Faith in Destiny",purchase,1.0,0 -116515230,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -116515230,"Star Wars Dark Forces",purchase,1.0,0 -116515230,"Star Wars Knights of the Old Republic",purchase,1.0,0 -116515230,"Star Wars The Force Unleashed II",purchase,1.0,0 -116515230,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -116515230,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -116515230,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -116515230,"Star Wars Republic Commando",purchase,1.0,0 -116515230,"Star Wars Starfighter",purchase,1.0,0 -116515230,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -116515230,"Terraria",purchase,1.0,0 -116515230,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -116515230,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -116515230,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -116515230,"Warframe",purchase,1.0,0 -116515230,"Warhammer 40,000 Space Marine",purchase,1.0,0 -116515230,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -116515230,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -82864983,"Duke Nukem Forever ",purchase,1.0,0 -82864983,"Duke Nukem Forever ",play,12.6,0 -118888110,"Dota 2",purchase,1.0,0 -118888110,"Dota 2",play,0.2,0 -155131347,"Farming Simulator 2013",purchase,1.0,0 -155131347,"Farming Simulator 2013",play,3.6,0 -159852613,"Unturned",purchase,1.0,0 -159852613,"Unturned",play,105.0,0 -159852613,"Left 4 Dead 2",purchase,1.0,0 -159852613,"Left 4 Dead 2",play,63.0,0 -159852613,"Robocraft",purchase,1.0,0 -159852613,"Robocraft",play,42.0,0 -159852613,"Serious Sam HD The Second Encounter",purchase,1.0,0 -159852613,"Serious Sam HD The Second Encounter",play,7.3,0 -159852613,"War Thunder",purchase,1.0,0 -159852613,"War Thunder",play,4.5,0 -159852613,"Warface",purchase,1.0,0 -159852613,"Warface",play,1.2,0 -159852613,"APB Reloaded",purchase,1.0,0 -159852613,"APB Reloaded",play,0.2,0 -215832158,"Dota 2",purchase,1.0,0 -215832158,"Dota 2",play,155.0,0 -215832158,"FreeStyle2 Street Basketball",purchase,1.0,0 -215832158,"FreeStyle2 Street Basketball",play,35.0,0 -215832158,"Team Fortress 2",purchase,1.0,0 -215832158,"Team Fortress 2",play,0.2,0 -215832158,"GunZ 2 The Second Duel",purchase,1.0,0 -30572170,"Counter-Strike Source",purchase,1.0,0 -30572170,"Counter-Strike Source",play,1082.0,0 -30572170,"Left 4 Dead",purchase,1.0,0 -30572170,"Left 4 Dead",play,24.0,0 -30572170,"Amnesia The Dark Descent",purchase,1.0,0 -30572170,"Amnesia The Dark Descent",play,11.2,0 -30572170,"Left 4 Dead 2",purchase,1.0,0 -30572170,"Left 4 Dead 2",play,6.6,0 -30572170,"Half-Life 2 Episode Two",purchase,1.0,0 -30572170,"Half-Life 2 Episode Two",play,4.6,0 -30572170,"Aliens vs. Predator",purchase,1.0,0 -30572170,"Aliens vs. Predator",play,2.8,0 -30572170,"Path of Exile",purchase,1.0,0 -30572170,"Tribes Ascend",purchase,1.0,0 -30572170,"Warframe",purchase,1.0,0 -298768275,"Dota 2",purchase,1.0,0 -298768275,"Dota 2",play,1.2,0 -110268154,"Team Fortress 2",purchase,1.0,0 -110268154,"Team Fortress 2",play,50.0,0 -110268154,"DC Universe Online",purchase,1.0,0 -110268154,"DC Universe Online",play,30.0,0 -246332545,"Dota 2",purchase,1.0,0 -246332545,"Dota 2",play,1.3,0 -154555730,"Team Fortress 2",purchase,1.0,0 -154555730,"Team Fortress 2",play,2.1,0 -199955973,"Dota 2",purchase,1.0,0 -199955973,"Dota 2",play,513.0,0 -199955973,"Firefall",purchase,1.0,0 -199955973,"FreeStyle2 Street Basketball",purchase,1.0,0 -199955973,"GunZ 2 The Second Duel",purchase,1.0,0 -199955973,"Nosgoth",purchase,1.0,0 -183099723,"Dota 2",purchase,1.0,0 -183099723,"Dota 2",play,25.0,0 -190420357,"Team Fortress 2",purchase,1.0,0 -190420357,"Team Fortress 2",play,0.6,0 -190420357,"Unturned",purchase,1.0,0 -190420357,"Unturned",play,0.5,0 -190420357,"Anarchy Arcade",purchase,1.0,0 -190420357,"Darkwind War on Wheels",purchase,1.0,0 -190420357,"Firefall",purchase,1.0,0 -190420357,"APB Reloaded",purchase,1.0,0 -190420357,"Elsword",purchase,1.0,0 -167903990,"Dota 2",purchase,1.0,0 -167903990,"Dota 2",play,2.8,0 -190517373,"Dizzel",purchase,1.0,0 -190517373,"Dizzel",play,0.9,0 -190517373,"Dota 2",purchase,1.0,0 -190517373,"Dota 2",play,0.1,0 -190517373,"Path of Exile",purchase,1.0,0 -67633077,"Sid Meier's Civilization V",purchase,1.0,0 -67633077,"Sid Meier's Civilization V",play,471.0,0 -67633077,"Empire Total War",purchase,1.0,0 -67633077,"Empire Total War",play,145.0,0 -67633077,"RACE 07",purchase,1.0,0 -67633077,"RACE 07",play,0.5,0 -67633077,"GTR Evolution",purchase,1.0,0 -67633077,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -96439660,"Sid Meier's Civilization V",purchase,1.0,0 -96439660,"Sid Meier's Civilization V",play,38.0,0 -44169472,"Dota 2",purchase,1.0,0 -44169472,"Dota 2",play,77.0,0 -44169472,"War Thunder",purchase,1.0,0 -44169472,"War Thunder",play,40.0,0 -44169472,"Total War ROME II - Emperor Edition",purchase,1.0,0 -44169472,"Total War ROME II - Emperor Edition",play,40.0,0 -44169472,"Counter-Strike Global Offensive",purchase,1.0,0 -44169472,"Counter-Strike Global Offensive",play,18.4,0 -44169472,"Counter-Strike Source",purchase,1.0,0 -44169472,"Counter-Strike Source",play,15.2,0 -44169472,"Empire Total War",purchase,1.0,0 -44169472,"Empire Total War",play,14.8,0 -44169472,"Left 4 Dead 2",purchase,1.0,0 -44169472,"Left 4 Dead 2",play,7.8,0 -44169472,"Call of Duty Black Ops II",purchase,1.0,0 -44169472,"Call of Duty Black Ops II",play,5.6,0 -44169472,"Company of Heroes (New Steam Version)",purchase,1.0,0 -44169472,"Company of Heroes (New Steam Version)",play,2.4,0 -44169472,"Day of Defeat Source",purchase,1.0,0 -44169472,"Day of Defeat Source",play,1.2,0 -44169472,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -44169472,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -44169472,"Company of Heroes",purchase,1.0,0 -44169472,"Half-Life 2 Deathmatch",purchase,1.0,0 -277779002,"Dota 2",purchase,1.0,0 -277779002,"Dota 2",play,0.4,0 -90154893,"Portal 2",purchase,1.0,0 -90154893,"Portal 2",play,12.3,0 -90154893,"Left 4 Dead 2",purchase,1.0,0 -90154893,"Left 4 Dead 2",play,6.8,0 -141566597,"Dota 2",purchase,1.0,0 -141566597,"Dota 2",play,0.2,0 -297703228,"Stranded Deep",purchase,1.0,0 -297703228,"Stranded Deep",play,8.3,0 -69652738,"Counter-Strike Source",purchase,1.0,0 -69652738,"Counter-Strike Source",play,43.0,0 -69652738,"Half-Life 2 Deathmatch",purchase,1.0,0 -69652738,"Half-Life 2 Deathmatch",play,0.4,0 -69652738,"Day of Defeat Source",purchase,1.0,0 -69652738,"Day of Defeat Source",play,0.2,0 -69652738,"Half-Life 2 Lost Coast",purchase,1.0,0 -69652738,"Half-Life 2 Lost Coast",play,0.2,0 -303951866,"Piercing Blow",purchase,1.0,0 -303951866,"Piercing Blow",play,0.6,0 -303951866,"Gotham City Impostors Free To Play",purchase,1.0,0 -303951866,"Gotham City Impostors Free To Play",play,0.1,0 -117529891,"Dota 2",purchase,1.0,0 -117529891,"Dota 2",play,383.0,0 -189158075,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -220307007,"Dota 2",purchase,1.0,0 -220307007,"Dota 2",play,5.7,0 -55751308,"Arma 2 Operation Arrowhead",purchase,1.0,0 -55751308,"Arma 2 Operation Arrowhead",play,198.0,0 -55751308,"Call of Duty Modern Warfare 2",purchase,1.0,0 -55751308,"Call of Duty Modern Warfare 2",play,83.0,0 -55751308,"Half-Life 2 Episode Two",purchase,1.0,0 -55751308,"Half-Life 2 Episode Two",play,38.0,0 -55751308,"War Thunder",purchase,1.0,0 -55751308,"War Thunder",play,37.0,0 -55751308,"Insurgency",purchase,1.0,0 -55751308,"Insurgency",play,35.0,0 -55751308,"Sid Meier's Civilization V",purchase,1.0,0 -55751308,"Sid Meier's Civilization V",play,29.0,0 -55751308,"Half-Life 2",purchase,1.0,0 -55751308,"Half-Life 2",play,29.0,0 -55751308,"Team Fortress 2",purchase,1.0,0 -55751308,"Team Fortress 2",play,24.0,0 -55751308,"Half-Life 2 Episode One",purchase,1.0,0 -55751308,"Half-Life 2 Episode One",play,19.4,0 -55751308,"Garry's Mod",purchase,1.0,0 -55751308,"Garry's Mod",play,16.1,0 -55751308,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -55751308,"Call of Duty Modern Warfare 2 - Multiplayer",play,15.5,0 -55751308,"PAYDAY 2",purchase,1.0,0 -55751308,"PAYDAY 2",play,13.6,0 -55751308,"Arma 2",purchase,1.0,0 -55751308,"Arma 2",play,13.0,0 -55751308,"Chivalry Medieval Warfare",purchase,1.0,0 -55751308,"Chivalry Medieval Warfare",play,12.6,0 -55751308,"Codename CURE",purchase,1.0,0 -55751308,"Codename CURE",play,11.1,0 -55751308,"Robocraft",purchase,1.0,0 -55751308,"Robocraft",play,10.6,0 -55751308,"Call of Duty Black Ops",purchase,1.0,0 -55751308,"Call of Duty Black Ops",play,2.8,0 -55751308,"Cossacks II Battle for Europe",purchase,1.0,0 -55751308,"Cossacks II Battle for Europe",play,1.9,0 -55751308,"Survarium",purchase,1.0,0 -55751308,"Survarium",play,1.6,0 -55751308,"Portal",purchase,1.0,0 -55751308,"Portal",play,1.1,0 -55751308,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -55751308,"Call of Duty Black Ops - Multiplayer",play,0.8,0 -55751308,"Unturned",purchase,1.0,0 -55751308,"Unturned",play,0.7,0 -55751308,"Nosgoth",purchase,1.0,0 -55751308,"Nosgoth",play,0.5,0 -55751308,"No More Room in Hell",purchase,1.0,0 -55751308,"No More Room in Hell",play,0.5,0 -55751308,"Stronghold Kingdoms",purchase,1.0,0 -55751308,"Stronghold Kingdoms",play,0.3,0 -55751308,"Cry of Fear",purchase,1.0,0 -55751308,"Cry of Fear",play,0.2,0 -55751308,"Arma 2 DayZ Mod",purchase,1.0,0 -55751308,"Arma 2 DayZ Mod",play,0.2,0 -55751308,"sZone-Online",purchase,1.0,0 -55751308,"sZone-Online",play,0.1,0 -55751308,"Insurgency Modern Infantry Combat",purchase,1.0,0 -55751308,"Insurgency Modern Infantry Combat",play,0.1,0 -55751308,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -55751308,"Half-Life 2 Lost Coast",purchase,1.0,0 -55751308,"Patch testing for Chivalry",purchase,1.0,0 -176096951,"Dota 2",purchase,1.0,0 -176096951,"Dota 2",play,24.0,0 -297246490,"Dota 2",purchase,1.0,0 -297246490,"Dota 2",play,1.7,0 -124330988,"Team Fortress 2",purchase,1.0,0 -124330988,"Team Fortress 2",play,1.8,0 -208372342,"Mountain",purchase,1.0,0 -230016618,"Dota 2",purchase,1.0,0 -230016618,"Dota 2",play,28.0,0 -230016618,"Unturned",purchase,1.0,0 -210046841,"Team Fortress 2",purchase,1.0,0 -210046841,"Team Fortress 2",play,7.9,0 -210046841,"Unturned",purchase,1.0,0 -210046841,"Unturned",play,0.5,0 -210046841,"Dota 2",purchase,1.0,0 -210046841,"Dota 2",play,0.1,0 -210046841,"Fistful of Frags",purchase,1.0,0 -210046841,"Cry of Fear",purchase,1.0,0 -210046841,"Half-Life 2 Update",purchase,1.0,0 -210046841,"No More Room in Hell",purchase,1.0,0 -210046841,"Strife",purchase,1.0,0 -210046841,"The Expendabros",purchase,1.0,0 -210046841,"War of the Roses",purchase,1.0,0 -160058529,"Team Fortress 2",purchase,1.0,0 -160058529,"Team Fortress 2",play,7.2,0 -157362930,"Dota 2",purchase,1.0,0 -157362930,"Dota 2",play,2.0,0 -76027799,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -76027799,"Call of Duty Modern Warfare 3 - Multiplayer",play,83.0,0 -76027799,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -76027799,"Call of Duty Modern Warfare 2 - Multiplayer",play,62.0,0 -76027799,"Call of Duty Modern Warfare 2",purchase,1.0,0 -76027799,"Call of Duty Modern Warfare 2",play,38.0,0 -76027799,"Call of Duty Modern Warfare 3",purchase,1.0,0 -76027799,"Call of Duty Modern Warfare 3",play,22.0,0 -76027799,"FlatOut 2",purchase,1.0,0 -76027799,"FlatOut 2",play,10.5,0 -76027799,"Company of Heroes (New Steam Version)",purchase,1.0,0 -76027799,"Company of Heroes (New Steam Version)",play,10.1,0 -76027799,"Sanctum 2",purchase,1.0,0 -76027799,"Sanctum 2",play,0.8,0 -76027799,"Company of Heroes",purchase,1.0,0 -76027799,"Company of Heroes Opposing Fronts",purchase,1.0,0 -76027799,"Company of Heroes Tales of Valor",purchase,1.0,0 -113820072,"Dota 2",purchase,1.0,0 -113820072,"Dota 2",play,1.1,0 -194678830,"Warface",purchase,1.0,0 -216924034,"Dota 2",purchase,1.0,0 -216924034,"Dota 2",play,1.8,0 -141012357,"Dota 2",purchase,1.0,0 -141012357,"Dota 2",play,1.0,0 -192341303,"Dota 2",purchase,1.0,0 -192341303,"Dota 2",play,332.0,0 -192341303,"Dizzel",purchase,1.0,0 -192341303,"GunZ 2 The Second Duel",purchase,1.0,0 -192341303,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -192341303,"Warframe",purchase,1.0,0 -192341303,"War Thunder",purchase,1.0,0 -20704366,"Half-Life 2",purchase,1.0,0 -20704366,"Half-Life 2",play,57.0,0 -20704366,"Fallout 4",purchase,1.0,0 -20704366,"Fallout 4",play,35.0,0 -20704366,"Cities Skylines",purchase,1.0,0 -20704366,"Cities Skylines",play,28.0,0 -20704366,"Tomb Raider",purchase,1.0,0 -20704366,"Tomb Raider",play,24.0,0 -20704366,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -20704366,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,23.0,0 -20704366,"RAGE",purchase,1.0,0 -20704366,"RAGE",play,22.0,0 -20704366,"Wolfenstein The New Order",purchase,1.0,0 -20704366,"Wolfenstein The New Order",play,19.2,0 -20704366,"Half-Life 2 Episode Two",purchase,1.0,0 -20704366,"Half-Life 2 Episode Two",play,18.7,0 -20704366,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -20704366,"Deus Ex Human Revolution - Director's Cut",play,18.3,0 -20704366,"Mass Effect",purchase,1.0,0 -20704366,"Mass Effect",play,18.1,0 -20704366,"Metro Last Light Redux",purchase,1.0,0 -20704366,"Metro Last Light Redux",play,16.2,0 -20704366,"Metro 2033 Redux",purchase,1.0,0 -20704366,"Metro 2033 Redux",play,14.5,0 -20704366,"Half-Life 2 Episode One",purchase,1.0,0 -20704366,"Half-Life 2 Episode One",play,14.1,0 -20704366,"Portal 2",purchase,1.0,0 -20704366,"Portal 2",play,13.3,0 -20704366,"Portal",purchase,1.0,0 -20704366,"Portal",play,6.5,0 -20704366,"TrackMania United",purchase,1.0,0 -20704366,"TrackMania United",play,4.3,0 -20704366,"Half-Life 2 Lost Coast",purchase,1.0,0 -20704366,"Half-Life 2 Lost Coast",play,3.0,0 -20704366,"Master Levels for DOOM II",purchase,1.0,0 -20704366,"Master Levels for DOOM II",play,0.8,0 -20704366,"Gish",purchase,1.0,0 -20704366,"Gish",play,0.3,0 -20704366,"Counter-Strike Source",purchase,1.0,0 -20704366,"Counter-Strike Source",play,0.2,0 -20704366,"DOOM II Hell on Earth",purchase,1.0,0 -20704366,"DOOM II Hell on Earth",play,0.2,0 -20704366,"Half-Life Source",purchase,1.0,0 -20704366,"Fallout New Vegas",purchase,1.0,0 -20704366,"BioShock Infinite",purchase,1.0,0 -20704366,"Half-Life 2 Deathmatch",purchase,1.0,0 -20704366,"Half-Life Deathmatch Source",purchase,1.0,0 -20704366,"Mass Effect 2",purchase,1.0,0 -20704366,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -20704366,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -20704366,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -60227446,"Counter-Strike Source",purchase,1.0,0 -60227446,"Counter-Strike Source",play,69.0,0 -60227446,"Portal",purchase,1.0,0 -60227446,"Portal",play,2.5,0 -60227446,"Half-Life 2 Lost Coast",purchase,1.0,0 -60227446,"Half-Life 2 Lost Coast",play,1.7,0 -60227446,"Day of Defeat Source",purchase,1.0,0 -60227446,"Day of Defeat Source",play,1.2,0 -60227446,"Half-Life 2 Deathmatch",purchase,1.0,0 -299025375,"Unturned",purchase,1.0,0 -299025375,"Unturned",play,0.3,0 -299025375,"WARMODE",purchase,1.0,0 -25822628,"Counter-Strike Source",purchase,1.0,0 -25822628,"Half-Life 2",purchase,1.0,0 -25822628,"Half-Life 2 Deathmatch",purchase,1.0,0 -25822628,"Half-Life 2 Lost Coast",purchase,1.0,0 -25822628,"Half-Life Source",purchase,1.0,0 -25822628,"Half-Life Deathmatch Source",purchase,1.0,0 -105517470,"Stronghold 3",purchase,1.0,0 -105517470,"Stronghold 3",play,3.3,0 -105517470,"Stronghold HD",purchase,1.0,0 -181262663,"Dota 2",purchase,1.0,0 -181262663,"Dota 2",play,19.8,0 -101695880,"Dota 2",purchase,1.0,0 -101695880,"Dota 2",play,1736.0,0 -101695880,"Counter-Strike Global Offensive",purchase,1.0,0 -101695880,"Counter-Strike Global Offensive",play,125.0,0 -101695880,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -101695880,"Call of Duty Black Ops II - Multiplayer",play,87.0,0 -101695880,"The Elder Scrolls V Skyrim",purchase,1.0,0 -101695880,"The Elder Scrolls V Skyrim",play,87.0,0 -101695880,"Titan Quest Immortal Throne",purchase,1.0,0 -101695880,"Titan Quest Immortal Throne",play,83.0,0 -101695880,"Unturned",purchase,1.0,0 -101695880,"Unturned",play,39.0,0 -101695880,"Grim Dawn",purchase,1.0,0 -101695880,"Grim Dawn",play,39.0,0 -101695880,"Space Rangers HD A War Apart",purchase,1.0,0 -101695880,"Space Rangers HD A War Apart",play,36.0,0 -101695880,"Sid Meier's Civilization V",purchase,1.0,0 -101695880,"Sid Meier's Civilization V",play,35.0,0 -101695880,"Borderlands 2 RU",purchase,1.0,0 -101695880,"Borderlands 2 RU",play,31.0,0 -101695880,"Torchlight II",purchase,1.0,0 -101695880,"Torchlight II",play,29.0,0 -101695880,"Disciples II Gallean's Return",purchase,1.0,0 -101695880,"Disciples II Gallean's Return",play,14.6,0 -101695880,"Game Dev Tycoon",purchase,1.0,0 -101695880,"Game Dev Tycoon",play,14.3,0 -101695880,"Grand Theft Auto San Andreas",purchase,1.0,0 -101695880,"Grand Theft Auto San Andreas",play,8.3,0 -101695880,"Disciples Sacred Lands Gold",purchase,1.0,0 -101695880,"Disciples Sacred Lands Gold",play,6.7,0 -101695880,"Gorky 17",purchase,1.0,0 -101695880,"Gorky 17",play,6.7,0 -101695880,"Hard Truck Apocalypse / Ex Machina",purchase,1.0,0 -101695880,"Hard Truck Apocalypse / Ex Machina",play,6.6,0 -101695880,"Star Wars - Battlefront II",purchase,1.0,0 -101695880,"Star Wars - Battlefront II",play,6.5,0 -101695880,"Hard Truck Apocalypse Rise Of Clans / Ex Machina Meridian 113",purchase,1.0,0 -101695880,"Hard Truck Apocalypse Rise Of Clans / Ex Machina Meridian 113",play,5.7,0 -101695880,"Everlasting Summer",purchase,1.0,0 -101695880,"Everlasting Summer",play,5.7,0 -101695880,"Don't Starve Together Beta",purchase,1.0,0 -101695880,"Don't Starve Together Beta",play,5.7,0 -101695880,"Minimum",purchase,1.0,0 -101695880,"Minimum",play,5.5,0 -101695880,"Fallout 3",purchase,1.0,0 -101695880,"Fallout 3",play,4.4,0 -101695880,"PAYDAY 2",purchase,1.0,0 -101695880,"PAYDAY 2",play,4.3,0 -101695880,"Car Mechanic Simulator 2014",purchase,1.0,0 -101695880,"Car Mechanic Simulator 2014",play,4.2,0 -101695880,"Damned",purchase,1.0,0 -101695880,"Damned",play,3.6,0 -101695880,"The Long Dark",purchase,1.0,0 -101695880,"The Long Dark",play,3.2,0 -101695880,"Command and Conquer Red Alert 3",purchase,1.0,0 -101695880,"Command and Conquer Red Alert 3",play,2.7,0 -101695880,"Sanctum 2",purchase,1.0,0 -101695880,"Sanctum 2",play,2.4,0 -101695880,"FlatOut 2",purchase,1.0,0 -101695880,"FlatOut 2",play,2.3,0 -101695880,"How to Survive",purchase,1.0,0 -101695880,"How to Survive",play,2.2,0 -101695880,"Star Wars Republic Commando",purchase,1.0,0 -101695880,"Star Wars Republic Commando",play,1.9,0 -101695880,"Spore",purchase,1.0,0 -101695880,"Spore",play,1.6,0 -101695880,"Magicka Wizard Wars",purchase,1.0,0 -101695880,"Magicka Wizard Wars",play,1.6,0 -101695880,"Dead Space",purchase,1.0,0 -101695880,"Dead Space",play,1.2,0 -101695880,"War Thunder",purchase,1.0,0 -101695880,"War Thunder",play,1.2,0 -101695880,"Grim Fandango Remastered",purchase,1.0,0 -101695880,"Grim Fandango Remastered",play,1.1,0 -101695880,"Borderlands 2",purchase,1.0,0 -101695880,"Borderlands 2",play,1.1,0 -101695880,"CastleMiner Z",purchase,1.0,0 -101695880,"CastleMiner Z",play,1.0,0 -101695880,"Serious Sam HD The First Encounter",purchase,1.0,0 -101695880,"Serious Sam HD The First Encounter",play,1.0,0 -101695880,"Titan Quest",purchase,1.0,0 -101695880,"Titan Quest",play,1.0,0 -101695880,"FORCED",purchase,1.0,0 -101695880,"FORCED",play,0.9,0 -101695880,"The Forest",purchase,1.0,0 -101695880,"The Forest",play,0.9,0 -101695880,"Hotline Miami",purchase,1.0,0 -101695880,"Hotline Miami",play,0.8,0 -101695880,"Mortal Kombat Komplete Edition",purchase,1.0,0 -101695880,"Mortal Kombat Komplete Edition",play,0.6,0 -101695880,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -101695880,"Call of Duty Black Ops II - Zombies",play,0.6,0 -101695880,"Europa Universalis IV",purchase,1.0,0 -101695880,"Europa Universalis IV",play,0.6,0 -101695880,"Don't Starve",purchase,1.0,0 -101695880,"Don't Starve",play,0.6,0 -101695880,"Aeon Command",purchase,1.0,0 -101695880,"Aeon Command",play,0.5,0 -101695880,"Defy Gravity",purchase,1.0,0 -101695880,"Defy Gravity",play,0.5,0 -101695880,"VVVVVV",purchase,1.0,0 -101695880,"VVVVVV",play,0.4,0 -101695880,"Helicopter Simulator 2014 Search and Rescue",purchase,1.0,0 -101695880,"Helicopter Simulator 2014 Search and Rescue",play,0.4,0 -101695880,"The Collider",purchase,1.0,0 -101695880,"The Collider",play,0.3,0 -101695880,"Watch_Dogs",purchase,1.0,0 -101695880,"Watch_Dogs",play,0.3,0 -101695880,"Sniper Elite V2",purchase,1.0,0 -101695880,"Sniper Elite V2",play,0.3,0 -101695880,"How To Survive Third Person",purchase,1.0,0 -101695880,"How To Survive Third Person",play,0.2,0 -101695880,"Super Meat Boy",purchase,1.0,0 -101695880,"Super Meat Boy",play,0.2,0 -101695880,"Farm Machines Championships 2014",purchase,1.0,0 -101695880,"Farm Machines Championships 2014",play,0.1,0 -101695880,"Sandmason",purchase,1.0,0 -101695880,"Sandmason",play,0.1,0 -101695880,"Robocraft",purchase,1.0,0 -101695880,"Robocraft",play,0.1,0 -101695880,"Revelations 2012",purchase,1.0,0 -101695880,"Revelations 2012",play,0.1,0 -101695880,"DiRT Showdown",purchase,1.0,0 -101695880,"Return to Castle Wolfenstein",purchase,1.0,0 -101695880,"Construction Machines 2014",purchase,1.0,0 -101695880,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -101695880,"Amnesia The Dark Descent",purchase,1.0,0 -101695880,"Bad Rats",purchase,1.0,0 -101695880,"Call of Duty Black Ops II",purchase,1.0,0 -101695880,"Dead Island Epidemic",purchase,1.0,0 -101695880,"Dirty Bomb",purchase,1.0,0 -101695880,"Firefall",purchase,1.0,0 -101695880,"Garry's Mod",purchase,1.0,0 -101695880,"Grand Theft Auto San Andreas",purchase,1.0,0 -101695880,"Grand Theft Auto Vice City",purchase,1.0,0 -101695880,"Grand Theft Auto Vice City",purchase,1.0,0 -101695880,"Grand Theft Auto III",purchase,1.0,0 -101695880,"Grand Theft Auto III",purchase,1.0,0 -101695880,"Hare In The Hat",purchase,1.0,0 -101695880,"Heroes & Generals",purchase,1.0,0 -101695880,"Hotline Miami 2 Wrong Number",purchase,1.0,0 -101695880,"Lilly and Sasha Curse of the Immortals",purchase,1.0,0 -101695880,"Neverwinter",purchase,1.0,0 -101695880,"POSTAL 2",purchase,1.0,0 -101695880,"SMITE",purchase,1.0,0 -101695880,"Star Conflict",purchase,1.0,0 -101695880,"Super Killer Hornet Resurrection",purchase,1.0,0 -101695880,"The Binding of Isaac",purchase,1.0,0 -101695880,"The Vanishing of Ethan Carter",purchase,1.0,0 -101695880,"The Vanishing of Ethan Carter Redux",purchase,1.0,0 -101695880,"Tribes Ascend",purchase,1.0,0 -101695880,"Villagers and Heroes",purchase,1.0,0 -99110207,"The Elder Scrolls V Skyrim",purchase,1.0,0 -99110207,"The Elder Scrolls V Skyrim",play,41.0,0 -99110207,"Call of Duty World at War",purchase,1.0,0 -99110207,"Call of Duty World at War",play,8.1,0 -99110207,"The Elder Scrolls Online Tamriel Unlimited",purchase,1.0,0 -99110207,"The Elder Scrolls Online Tamriel Unlimited",play,7.2,0 -99110207,"TERA",purchase,1.0,0 -99110207,"TERA",play,4.1,0 -99110207,"H1Z1",purchase,1.0,0 -99110207,"H1Z1",play,2.3,0 -99110207,"Worms Armageddon",purchase,1.0,0 -99110207,"H1Z1 Test Server",purchase,1.0,0 -99110207,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -99110207,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -99110207,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -48798067,"Mount & Blade Warband",purchase,1.0,0 -48798067,"Mount & Blade Warband",play,3178.0,0 -48798067,"Counter-Strike Global Offensive",purchase,1.0,0 -48798067,"Counter-Strike Global Offensive",play,1302.0,0 -48798067,"Counter-Strike Source",purchase,1.0,0 -48798067,"Counter-Strike Source",play,795.0,0 -48798067,"War Thunder",purchase,1.0,0 -48798067,"War Thunder",play,249.0,0 -48798067,"Napoleon Total War",purchase,1.0,0 -48798067,"Napoleon Total War",play,174.0,0 -48798067,"Europa Universalis IV",purchase,1.0,0 -48798067,"Europa Universalis IV",play,136.0,0 -48798067,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -48798067,"Call of Duty Modern Warfare 2 - Multiplayer",play,123.0,0 -48798067,"The Elder Scrolls V Skyrim",purchase,1.0,0 -48798067,"The Elder Scrolls V Skyrim",play,118.0,0 -48798067,"Total War ROME II - Emperor Edition",purchase,1.0,0 -48798067,"Total War ROME II - Emperor Edition",play,115.0,0 -48798067,"Empire Total War",purchase,1.0,0 -48798067,"Empire Total War",play,104.0,0 -48798067,"Mount & Blade",purchase,1.0,0 -48798067,"Mount & Blade",play,101.0,0 -48798067,"Garry's Mod",purchase,1.0,0 -48798067,"Garry's Mod",play,88.0,0 -48798067,"The Binding of Isaac Rebirth",purchase,1.0,0 -48798067,"The Binding of Isaac Rebirth",play,78.0,0 -48798067,"Total War SHOGUN 2",purchase,1.0,0 -48798067,"Total War SHOGUN 2",play,78.0,0 -48798067,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -48798067,"Call of Duty Black Ops - Multiplayer",play,78.0,0 -48798067,"Rust",purchase,1.0,0 -48798067,"Rust",play,72.0,0 -48798067,"Terraria",purchase,1.0,0 -48798067,"Terraria",play,64.0,0 -48798067,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -48798067,"Grand Theft Auto Episodes from Liberty City",play,64.0,0 -48798067,"Borderlands The Pre-Sequel",purchase,1.0,0 -48798067,"Borderlands The Pre-Sequel",play,60.0,0 -48798067,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -48798067,"The Elder Scrolls IV Oblivion ",play,59.0,0 -48798067,"Dragon Age Origins",purchase,1.0,0 -48798067,"Dragon Age Origins",play,57.0,0 -48798067,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -48798067,"METAL GEAR SOLID V THE PHANTOM PAIN",play,57.0,0 -48798067,"Call of Duty Modern Warfare 2",purchase,1.0,0 -48798067,"Call of Duty Modern Warfare 2",play,55.0,0 -48798067,"Arma 3",purchase,1.0,0 -48798067,"Arma 3",play,55.0,0 -48798067,"Rome Total War",purchase,1.0,0 -48798067,"Rome Total War",play,51.0,0 -48798067,"Borderlands 2",purchase,1.0,0 -48798067,"Borderlands 2",play,48.0,0 -48798067,"Left 4 Dead 2",purchase,1.0,0 -48798067,"Left 4 Dead 2",play,47.0,0 -48798067,"Divinity II Developer's Cut",purchase,1.0,0 -48798067,"Divinity II Developer's Cut",play,44.0,0 -48798067,"Fallout 4",purchase,1.0,0 -48798067,"Fallout 4",play,44.0,0 -48798067,"Medieval II Total War",purchase,1.0,0 -48798067,"Medieval II Total War",play,43.0,0 -48798067,"Deus Ex Human Revolution",purchase,1.0,0 -48798067,"Deus Ex Human Revolution",play,41.0,0 -48798067,"Borderlands",purchase,1.0,0 -48798067,"Borderlands",play,40.0,0 -48798067,"Chivalry Medieval Warfare",purchase,1.0,0 -48798067,"Chivalry Medieval Warfare",play,37.0,0 -48798067,"Fallout New Vegas",purchase,1.0,0 -48798067,"Fallout New Vegas",play,36.0,0 -48798067,"Risen 3 - Titan Lords",purchase,1.0,0 -48798067,"Risen 3 - Titan Lords",play,36.0,0 -48798067,"Call of Duty Black Ops",purchase,1.0,0 -48798067,"Call of Duty Black Ops",play,34.0,0 -48798067,"Starbound",purchase,1.0,0 -48798067,"Starbound",play,33.0,0 -48798067,"Magicite",purchase,1.0,0 -48798067,"Magicite",play,31.0,0 -48798067,"Arma 2 Operation Arrowhead",purchase,1.0,0 -48798067,"Arma 2 Operation Arrowhead",play,31.0,0 -48798067,"PAYDAY 2",purchase,1.0,0 -48798067,"PAYDAY 2",play,30.0,0 -48798067,"Dying Light",purchase,1.0,0 -48798067,"Dying Light",play,30.0,0 -48798067,"Just Cause 2",purchase,1.0,0 -48798067,"Just Cause 2",play,30.0,0 -48798067,"Aura Kingdom",purchase,1.0,0 -48798067,"Aura Kingdom",play,28.0,0 -48798067,"Company of Heroes",purchase,1.0,0 -48798067,"Company of Heroes",play,26.0,0 -48798067,"Hitman Absolution",purchase,1.0,0 -48798067,"Hitman Absolution",play,25.0,0 -48798067,"The Binding of Isaac",purchase,1.0,0 -48798067,"The Binding of Isaac",play,24.0,0 -48798067,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -48798067,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,24.0,0 -48798067,"Assassin's Creed IV Black Flag",purchase,1.0,0 -48798067,"Assassin's Creed IV Black Flag",play,24.0,0 -48798067,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -48798067,"S.T.A.L.K.E.R. Call of Pripyat",play,23.0,0 -48798067,"Sniper Elite V2",purchase,1.0,0 -48798067,"Sniper Elite V2",play,23.0,0 -48798067,"Age of Chivalry",purchase,1.0,0 -48798067,"Age of Chivalry",play,23.0,0 -48798067,"Deus Ex Game of the Year Edition",purchase,1.0,0 -48798067,"Deus Ex Game of the Year Edition",play,22.0,0 -48798067,"Mass Effect",purchase,1.0,0 -48798067,"Mass Effect",play,22.0,0 -48798067,"Game of Thrones ",purchase,1.0,0 -48798067,"Game of Thrones ",play,22.0,0 -48798067,"Tom Clancy's Rainbow Six Vegas 2",purchase,1.0,0 -48798067,"Tom Clancy's Rainbow Six Vegas 2",play,22.0,0 -48798067,"Amnesia The Dark Descent",purchase,1.0,0 -48798067,"Amnesia The Dark Descent",play,22.0,0 -48798067,"Heroes & Generals",purchase,1.0,0 -48798067,"Heroes & Generals",play,21.0,0 -48798067,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -48798067,"Rising Storm/Red Orchestra 2 Multiplayer",play,21.0,0 -48798067,"Mafia II",purchase,1.0,0 -48798067,"Mafia II",play,21.0,0 -48798067,"Ys Origin",purchase,1.0,0 -48798067,"Ys Origin",play,21.0,0 -48798067,"Company of Heroes Opposing Fronts",purchase,1.0,0 -48798067,"Company of Heroes Opposing Fronts",play,19.9,0 -48798067,"Ys The Oath in Felghana",purchase,1.0,0 -48798067,"Ys The Oath in Felghana",play,18.9,0 -48798067,"Alien Swarm",purchase,1.0,0 -48798067,"Alien Swarm",play,17.2,0 -48798067,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -48798067,"Red Faction Guerrilla Steam Edition",play,16.9,0 -48798067,"Mortal Kombat Komplete Edition",purchase,1.0,0 -48798067,"Mortal Kombat Komplete Edition",play,16.9,0 -48798067,"Risen 2 - Dark Waters",purchase,1.0,0 -48798067,"Risen 2 - Dark Waters",play,16.8,0 -48798067,"Life Is Strange",purchase,1.0,0 -48798067,"Life Is Strange",play,16.8,0 -48798067,"Dishonored",purchase,1.0,0 -48798067,"Dishonored",play,16.5,0 -48798067,"Battlefield 2",purchase,1.0,0 -48798067,"Battlefield 2",play,16.3,0 -48798067,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -48798067,"Resident Evil 6 / Biohazard 6",play,16.1,0 -48798067,"The Chronicles of Riddick Assault on Dark Athena",purchase,1.0,0 -48798067,"The Chronicles of Riddick Assault on Dark Athena",play,15.6,0 -48798067,"Far Cry 2",purchase,1.0,0 -48798067,"Far Cry 2",play,15.6,0 -48798067,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -48798067,"Star Wars Jedi Knight Jedi Academy",play,15.6,0 -48798067,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -48798067,"Resident Evil 5 / Biohazard 5",play,15.4,0 -48798067,"The Forest",purchase,1.0,0 -48798067,"The Forest",play,15.1,0 -48798067,"Killing Floor",purchase,1.0,0 -48798067,"Killing Floor",play,14.9,0 -48798067,"Joe Dever's Lone Wolf HD Remastered",purchase,1.0,0 -48798067,"Joe Dever's Lone Wolf HD Remastered",play,14.3,0 -48798067,"BioShock Infinite",purchase,1.0,0 -48798067,"BioShock Infinite",play,14.1,0 -48798067,"Metro 2033",purchase,1.0,0 -48798067,"Metro 2033",play,13.9,0 -48798067,"Always Sometimes Monsters",purchase,1.0,0 -48798067,"Always Sometimes Monsters",play,13.8,0 -48798067,"Dead Space",purchase,1.0,0 -48798067,"Dead Space",play,13.5,0 -48798067,"Guns of Icarus Online",purchase,1.0,0 -48798067,"Guns of Icarus Online",play,13.2,0 -48798067,"FINAL FANTASY XIV A Realm Reborn",purchase,1.0,0 -48798067,"FINAL FANTASY XIV A Realm Reborn",play,12.6,0 -48798067,"Crusader Kings II",purchase,1.0,0 -48798067,"Crusader Kings II",play,12.5,0 -48798067,"Tales from the Borderlands",purchase,1.0,0 -48798067,"Tales from the Borderlands",play,12.2,0 -48798067,"Alpha Protocol",purchase,1.0,0 -48798067,"Alpha Protocol",play,12.2,0 -48798067,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -48798067,"Batman Arkham Asylum GOTY Edition",play,11.9,0 -48798067,"Magicka",purchase,1.0,0 -48798067,"Magicka",play,11.5,0 -48798067,"Assassin's Creed Revelations",purchase,1.0,0 -48798067,"Assassin's Creed Revelations",play,11.5,0 -48798067,"Child of Light",purchase,1.0,0 -48798067,"Child of Light",play,11.3,0 -48798067,"Verdun",purchase,1.0,0 -48798067,"Verdun",play,10.9,0 -48798067,"Evolve",purchase,1.0,0 -48798067,"Evolve",play,10.9,0 -48798067,"The Elder Scrolls III Morrowind",purchase,1.0,0 -48798067,"The Elder Scrolls III Morrowind",play,10.8,0 -48798067,"Half-Life 2",purchase,1.0,0 -48798067,"Half-Life 2",play,10.8,0 -48798067,"Call of Juarez Bound in Blood",purchase,1.0,0 -48798067,"Call of Juarez Bound in Blood",play,10.4,0 -48798067,"Half-Life 2 Update",purchase,1.0,0 -48798067,"Half-Life 2 Update",play,10.4,0 -48798067,"Trine 2",purchase,1.0,0 -48798067,"Trine 2",play,10.3,0 -48798067,"BioShock",purchase,1.0,0 -48798067,"BioShock",play,10.2,0 -48798067,"Crysis 2 Maximum Edition",purchase,1.0,0 -48798067,"Crysis 2 Maximum Edition",play,10.0,0 -48798067,"Dead Space 2",purchase,1.0,0 -48798067,"Dead Space 2",play,9.8,0 -48798067,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -48798067,"Red Orchestra Ostfront 41-45",play,9.7,0 -48798067,"Contagion",purchase,1.0,0 -48798067,"Contagion",play,9.7,0 -48798067,"Alan Wake",purchase,1.0,0 -48798067,"Alan Wake",play,9.6,0 -48798067,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -48798067,"Dark Souls Prepare to Die Edition",play,9.6,0 -48798067,"Day of Defeat Source",purchase,1.0,0 -48798067,"Day of Defeat Source",play,9.2,0 -48798067,"Devil May Cry 4",purchase,1.0,0 -48798067,"Devil May Cry 4",play,9.0,0 -48798067,"Team Fortress 2",purchase,1.0,0 -48798067,"Team Fortress 2",play,9.0,0 -48798067,"Dead Island Epidemic",purchase,1.0,0 -48798067,"Dead Island Epidemic",play,9.0,0 -48798067,"Mark of the Ninja",purchase,1.0,0 -48798067,"Mark of the Ninja",play,9.0,0 -48798067,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -48798067,"F.E.A.R. 2 Project Origin",play,8.9,0 -48798067,"DmC Devil May Cry",purchase,1.0,0 -48798067,"DmC Devil May Cry",play,8.8,0 -48798067,"War of the Roses",purchase,1.0,0 -48798067,"War of the Roses",play,8.8,0 -48798067,"Savage Lands",purchase,1.0,0 -48798067,"Savage Lands",play,8.7,0 -48798067,"F.E.A.R.",purchase,1.0,0 -48798067,"F.E.A.R.",play,8.6,0 -48798067,"Nether",purchase,1.0,0 -48798067,"Nether",play,8.5,0 -48798067,"Alien Breed 2 Assault",purchase,1.0,0 -48798067,"Alien Breed 2 Assault",play,8.4,0 -48798067,"DOOM 3",purchase,1.0,0 -48798067,"DOOM 3",play,8.3,0 -48798067,"Valkyria Chronicles",purchase,1.0,0 -48798067,"Valkyria Chronicles",play,8.2,0 -48798067,"Hero Siege",purchase,1.0,0 -48798067,"Hero Siege",play,8.1,0 -48798067,"Crysis Warhead",purchase,1.0,0 -48798067,"Crysis Warhead",play,8.1,0 -48798067,"Insurgency Modern Infantry Combat",purchase,1.0,0 -48798067,"Insurgency Modern Infantry Combat",play,7.8,0 -48798067,"Tomb Raider",purchase,1.0,0 -48798067,"Tomb Raider",play,7.8,0 -48798067,"Cryostasis",purchase,1.0,0 -48798067,"Cryostasis",play,7.7,0 -48798067,"The Last Remnant",purchase,1.0,0 -48798067,"The Last Remnant",play,6.8,0 -48798067,"Saints Row The Third",purchase,1.0,0 -48798067,"Saints Row The Third",play,6.6,0 -48798067,"Recettear An Item Shop's Tale",purchase,1.0,0 -48798067,"Recettear An Item Shop's Tale",play,6.4,0 -48798067,"Star Wars - Battlefront II",purchase,1.0,0 -48798067,"Star Wars - Battlefront II",play,6.3,0 -48798067,"Narcissu 1st & 2nd",purchase,1.0,0 -48798067,"Narcissu 1st & 2nd",play,6.3,0 -48798067,"Shadow Warrior",purchase,1.0,0 -48798067,"Shadow Warrior",play,6.2,0 -48798067,"Metro Last Light",purchase,1.0,0 -48798067,"Metro Last Light",play,6.2,0 -48798067,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -48798067,"Star Wars The Force Unleashed Ultimate Sith Edition",play,6.0,0 -48798067,"Enclave",purchase,1.0,0 -48798067,"Enclave",play,5.9,0 -48798067,"Battlestations Pacific",purchase,1.0,0 -48798067,"Battlestations Pacific",play,5.8,0 -48798067,"Conflict Denied Ops",purchase,1.0,0 -48798067,"Conflict Denied Ops",play,5.7,0 -48798067,"The Darkness II",purchase,1.0,0 -48798067,"The Darkness II",play,5.5,0 -48798067,"Half-Life 2 Deathmatch",purchase,1.0,0 -48798067,"Half-Life 2 Deathmatch",play,5.4,0 -48798067,"Rogue Trooper",purchase,1.0,0 -48798067,"Rogue Trooper",play,5.3,0 -48798067,"I Am Alive",purchase,1.0,0 -48798067,"I Am Alive",play,5.2,0 -48798067,"Mirror's Edge",purchase,1.0,0 -48798067,"Mirror's Edge",play,5.1,0 -48798067,"Ys VI The Ark of Napishtim",purchase,1.0,0 -48798067,"Ys VI The Ark of Napishtim",play,5.1,0 -48798067,"Gothic II Gold Edition",purchase,1.0,0 -48798067,"Gothic II Gold Edition",play,5.1,0 -48798067,"Star Wars Republic Commando",purchase,1.0,0 -48798067,"Star Wars Republic Commando",play,5.0,0 -48798067,"Shellshock 2 Blood Trails",purchase,1.0,0 -48798067,"Shellshock 2 Blood Trails",play,4.9,0 -48798067,"Lucius",purchase,1.0,0 -48798067,"Lucius",play,4.7,0 -48798067,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -48798067,"Medal of Honor(TM) Multiplayer",play,4.6,0 -48798067,"Life is Feudal Your Own",purchase,1.0,0 -48798067,"Life is Feudal Your Own",play,4.6,0 -48798067,"Serious Sam HD The First Encounter",purchase,1.0,0 -48798067,"Serious Sam HD The First Encounter",play,4.5,0 -48798067,"E.Y.E Divine Cybermancy",purchase,1.0,0 -48798067,"E.Y.E Divine Cybermancy",play,4.4,0 -48798067,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -48798067,"Kane & Lynch 2 Dog Days",play,4.3,0 -48798067,"War of the Roses Balance Beta",purchase,1.0,0 -48798067,"War of the Roses Balance Beta",play,4.3,0 -48798067,"Dead Island",purchase,1.0,0 -48798067,"Dead Island",play,4.3,0 -48798067,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -48798067,"The Incredible Adventures of Van Helsing",play,4.3,0 -48798067,"Unturned",purchase,1.0,0 -48798067,"Unturned",play,4.3,0 -48798067,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -48798067,"Kingdoms of Amalur Reckoning",play,4.3,0 -48798067,"Shipwreck",purchase,1.0,0 -48798067,"Shipwreck",play,4.2,0 -48798067,"Far Cry 3 Blood Dragon",purchase,1.0,0 -48798067,"Far Cry 3 Blood Dragon",play,4.2,0 -48798067,"Zombie Panic Source",purchase,1.0,0 -48798067,"Zombie Panic Source",play,4.2,0 -48798067,"F.E.A.R. Extraction Point",purchase,1.0,0 -48798067,"F.E.A.R. Extraction Point",play,4.2,0 -48798067,"Deadlight",purchase,1.0,0 -48798067,"Deadlight",play,4.1,0 -48798067,"Half-Life 2 Episode Two",purchase,1.0,0 -48798067,"Half-Life 2 Episode Two",play,4.0,0 -48798067,"Portal",purchase,1.0,0 -48798067,"Portal",play,3.8,0 -48798067,"Dungeon Defenders",purchase,1.0,0 -48798067,"Dungeon Defenders",play,3.8,0 -48798067,"Wasteland 2",purchase,1.0,0 -48798067,"Wasteland 2",play,3.8,0 -48798067,"Darkest Hour Europe '44-'45",purchase,1.0,0 -48798067,"Darkest Hour Europe '44-'45",play,3.8,0 -48798067,"Brtal Legend",purchase,1.0,0 -48798067,"Brtal Legend",play,3.7,0 -48798067,"Two Worlds II",purchase,1.0,0 -48798067,"Two Worlds II",play,3.6,0 -48798067,"Pixel Piracy",purchase,1.0,0 -48798067,"Pixel Piracy",play,3.5,0 -48798067,"Star Wars Dark Forces",purchase,1.0,0 -48798067,"Star Wars Dark Forces",play,3.5,0 -48798067,"Betrayer",purchase,1.0,0 -48798067,"Betrayer",play,3.4,0 -48798067,"Eldritch",purchase,1.0,0 -48798067,"Eldritch",play,3.3,0 -48798067,"Kane & Lynch Dead Men",purchase,1.0,0 -48798067,"Kane & Lynch Dead Men",play,3.2,0 -48798067,"King Arthur - The Role-playing Wargame",purchase,1.0,0 -48798067,"King Arthur - The Role-playing Wargame",play,3.2,0 -48798067,"Hotline Miami 2 Wrong Number",purchase,1.0,0 -48798067,"Hotline Miami 2 Wrong Number",play,3.2,0 -48798067,"Abyss Odyssey",purchase,1.0,0 -48798067,"Abyss Odyssey",play,3.2,0 -48798067,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -48798067,"METAL GEAR SOLID V GROUND ZEROES",play,3.1,0 -48798067,"Star Wars Knights of the Old Republic",purchase,1.0,0 -48798067,"Star Wars Knights of the Old Republic",play,3.1,0 -48798067,"Brothers - A Tale of Two Sons",purchase,1.0,0 -48798067,"Brothers - A Tale of Two Sons",play,3.0,0 -48798067,"Long Live The Queen",purchase,1.0,0 -48798067,"Long Live The Queen",play,2.8,0 -48798067,"Half-Life 2 Episode One",purchase,1.0,0 -48798067,"Half-Life 2 Episode One",play,2.8,0 -48798067,"Warface",purchase,1.0,0 -48798067,"Warface",play,2.7,0 -48798067,"The Guild II Renaissance",purchase,1.0,0 -48798067,"The Guild II Renaissance",play,2.7,0 -48798067,"Dota 2",purchase,1.0,0 -48798067,"Dota 2",play,2.4,0 -48798067,"Fallen Enchantress Legendary Heroes",purchase,1.0,0 -48798067,"Fallen Enchantress Legendary Heroes",play,2.3,0 -48798067,"Another World",purchase,1.0,0 -48798067,"Another World",play,2.2,0 -48798067,"Two Worlds Epic Edition",purchase,1.0,0 -48798067,"Two Worlds Epic Edition",play,2.1,0 -48798067,"Demonicon",purchase,1.0,0 -48798067,"Demonicon",play,2.0,0 -48798067,"FORCED",purchase,1.0,0 -48798067,"FORCED",play,1.9,0 -48798067,"Serious Sam HD The Second Encounter",purchase,1.0,0 -48798067,"Serious Sam HD The Second Encounter",play,1.9,0 -48798067,"Star Wars Starfighter",purchase,1.0,0 -48798067,"Star Wars Starfighter",play,1.9,0 -48798067,"Eternal Silence",purchase,1.0,0 -48798067,"Eternal Silence",play,1.8,0 -48798067,"Risk of Rain",purchase,1.0,0 -48798067,"Risk of Rain",play,1.8,0 -48798067,"Source Filmmaker",purchase,1.0,0 -48798067,"Source Filmmaker",play,1.7,0 -48798067,"How to Survive",purchase,1.0,0 -48798067,"How to Survive",play,1.7,0 -48798067,"Batman Arkham Knight",purchase,1.0,0 -48798067,"Batman Arkham Knight",play,1.5,0 -48798067,"Call of Juarez Gunslinger",purchase,1.0,0 -48798067,"Call of Juarez Gunslinger",play,1.5,0 -48798067,"Insurgency",purchase,1.0,0 -48798067,"Insurgency",play,1.4,0 -48798067,"Order of War",purchase,1.0,0 -48798067,"Order of War",play,1.3,0 -48798067,"METAL SLUG 3",purchase,1.0,0 -48798067,"METAL SLUG 3",play,1.3,0 -48798067,"3DMark",purchase,1.0,0 -48798067,"3DMark",play,1.3,0 -48798067,"Hitman Blood Money",purchase,1.0,0 -48798067,"Hitman Blood Money",play,1.2,0 -48798067,"Wolfenstein The New Order",purchase,1.0,0 -48798067,"Wolfenstein The New Order",play,1.2,0 -48798067,"Papers, Please",purchase,1.0,0 -48798067,"Papers, Please",play,1.2,0 -48798067,"The Expendabros",purchase,1.0,0 -48798067,"The Expendabros",play,1.2,0 -48798067,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -48798067,"Star Wars - Jedi Knight II Jedi Outcast",play,1.2,0 -48798067,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -48798067,"F.E.A.R. Perseus Mandate",play,1.2,0 -48798067,"Crysis Wars",purchase,1.0,0 -48798067,"Crysis Wars",play,1.0,0 -48798067,"The Bridge",purchase,1.0,0 -48798067,"The Bridge",play,0.9,0 -48798067,"Thief Gold",purchase,1.0,0 -48798067,"Thief Gold",play,0.9,0 -48798067,"Emily is Away",purchase,1.0,0 -48798067,"Emily is Away",play,0.9,0 -48798067,"Project Snowblind",purchase,1.0,0 -48798067,"Project Snowblind",play,0.8,0 -48798067,"Penumbra Overture",purchase,1.0,0 -48798067,"Penumbra Overture",play,0.8,0 -48798067,"Half-Life 2 Lost Coast",purchase,1.0,0 -48798067,"Half-Life 2 Lost Coast",play,0.8,0 -48798067,"F.E.A.R. 3",purchase,1.0,0 -48798067,"F.E.A.R. 3",play,0.8,0 -48798067,"Stranded Deep",purchase,1.0,0 -48798067,"Stranded Deep",play,0.7,0 -48798067,"Medal of Honor(TM) Single Player",purchase,1.0,0 -48798067,"Medal of Honor(TM) Single Player",play,0.7,0 -48798067,"Daikatana",purchase,1.0,0 -48798067,"Daikatana",play,0.7,0 -48798067,"KnightShift",purchase,1.0,0 -48798067,"KnightShift",play,0.7,0 -48798067,"Crimsonland",purchase,1.0,0 -48798067,"Crimsonland",play,0.7,0 -48798067,"Sacred 2 Gold",purchase,1.0,0 -48798067,"Sacred 2 Gold",play,0.7,0 -48798067,"Outland",purchase,1.0,0 -48798067,"Outland",play,0.7,0 -48798067,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -48798067,"Operation Flashpoint Dragon Rising",play,0.6,0 -48798067,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -48798067,"Resident Evil Revelations 2 / Biohazard Revelations 2",play,0.6,0 -48798067,"Neverwinter",purchase,1.0,0 -48798067,"Neverwinter",play,0.6,0 -48798067,"RIFT",purchase,1.0,0 -48798067,"RIFT",play,0.6,0 -48798067,"Kung Fury",purchase,1.0,0 -48798067,"Kung Fury",play,0.5,0 -48798067,"Yosumin!",purchase,1.0,0 -48798067,"Yosumin!",play,0.4,0 -48798067,"Hitman Codename 47",purchase,1.0,0 -48798067,"Hitman Codename 47",play,0.4,0 -48798067,"Star Wars Empire at War Gold",purchase,1.0,0 -48798067,"Star Wars Empire at War Gold",play,0.4,0 -48798067,"Shadow Warrior Classic Redux",purchase,1.0,0 -48798067,"Shadow Warrior Classic Redux",play,0.4,0 -48798067,"Cry of Fear",purchase,1.0,0 -48798067,"Cry of Fear",play,0.4,0 -48798067,"Analogue A Hate Story",purchase,1.0,0 -48798067,"Analogue A Hate Story",play,0.4,0 -48798067,"StarMade",purchase,1.0,0 -48798067,"StarMade",play,0.4,0 -48798067,"Lara Croft and the Guardian of Light",purchase,1.0,0 -48798067,"Lara Croft and the Guardian of Light",play,0.3,0 -48798067,"Lost Planet 3",purchase,1.0,0 -48798067,"Lost Planet 3",play,0.3,0 -48798067,"Strider",purchase,1.0,0 -48798067,"Strider",play,0.3,0 -48798067,"Steam Marines",purchase,1.0,0 -48798067,"Steam Marines",play,0.3,0 -48798067,"Neverending Nightmares",purchase,1.0,0 -48798067,"Neverending Nightmares",play,0.3,0 -48798067,"Sengoku",purchase,1.0,0 -48798067,"Sengoku",play,0.3,0 -48798067,"Sir, You Are Being Hunted",purchase,1.0,0 -48798067,"Sir, You Are Being Hunted",play,0.3,0 -48798067,"Arma 2",purchase,1.0,0 -48798067,"Arma 2",play,0.3,0 -48798067,"Devilian",purchase,1.0,0 -48798067,"Devilian",play,0.3,0 -48798067,"Deus Ex Revision",purchase,1.0,0 -48798067,"Deus Ex Revision",play,0.3,0 -48798067,"Men of War Assault Squad",purchase,1.0,0 -48798067,"Men of War Assault Squad",play,0.2,0 -48798067,"Gothic",purchase,1.0,0 -48798067,"Gothic",play,0.2,0 -48798067,"Flora's Fruit Farm",purchase,1.0,0 -48798067,"Flora's Fruit Farm",play,0.2,0 -48798067,"FOTONICA",purchase,1.0,0 -48798067,"FOTONICA",play,0.2,0 -48798067,"Hacker Evolution - Untold",purchase,1.0,0 -48798067,"Hacker Evolution - Untold",play,0.2,0 -48798067,"The Guild II - Pirates of the European Seas",purchase,1.0,0 -48798067,"The Guild II - Pirates of the European Seas",play,0.2,0 -48798067,"WORLD END ECONOMiCA episode.01",purchase,1.0,0 -48798067,"WORLD END ECONOMiCA episode.01",play,0.2,0 -48798067,"Remnants Of Isolation",purchase,1.0,0 -48798067,"Remnants Of Isolation",play,0.2,0 -48798067,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -48798067,"Star Wars Jedi Knight Dark Forces II",play,0.1,0 -48798067,"Metal Gear Solid Legacy",purchase,1.0,0 -48798067,"Metal Gear Solid Legacy",play,0.1,0 -48798067,"The Plan",purchase,1.0,0 -48798067,"The Plan",play,0.1,0 -48798067,"Arx Fatalis",purchase,1.0,0 -48798067,"Arx Fatalis",play,0.1,0 -48798067,"Mare Nostrum",purchase,1.0,0 -48798067,"Teleglitch Die More Edition",purchase,1.0,0 -48798067,"Gorky 17",purchase,1.0,0 -48798067,"Infernal",purchase,1.0,0 -48798067,"Tom Clancy's Rainbow Six Vegas",purchase,1.0,0 -48798067,"Hitman 2 Silent Assassin",purchase,1.0,0 -48798067,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -48798067,"Age of Conan - Hyborian Adventures",purchase,1.0,0 -48798067,"Age of Wonders",purchase,1.0,0 -48798067,"Age of Wonders Shadow Magic",purchase,1.0,0 -48798067,"Alpha Prime",purchase,1.0,0 -48798067,"Anachronox",purchase,1.0,0 -48798067,"AR-K",purchase,1.0,0 -48798067,"Arma 3 Zeus",purchase,1.0,0 -48798067,"Arma Gold Edition",purchase,1.0,0 -48798067,"Arma Tactics",purchase,1.0,0 -48798067,"Assassin's Creed",purchase,1.0,0 -48798067,"Awesomenauts",purchase,1.0,0 -48798067,"Axis Game Factory's AGFPRO 3.0",purchase,1.0,0 -48798067,"Batman Arkham City GOTY",purchase,1.0,0 -48798067,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -48798067,"Batman Arkham Origins - Initiation",purchase,1.0,0 -48798067,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -48798067,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -48798067,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -48798067,"Batman Arkham Origins",purchase,1.0,0 -48798067,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -48798067,"Battlestations Midway",purchase,1.0,0 -48798067,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -48798067,"Beyond Divinity",purchase,1.0,0 -48798067,"Bionic Commando Rearmed",purchase,1.0,0 -48798067,"BioShock Infinite - Season Pass",purchase,1.0,0 -48798067,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -48798067,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -48798067,"Blood Bowl Legendary Edition",purchase,1.0,0 -48798067,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -48798067,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -48798067,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -48798067,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -48798067,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -48798067,"Call of Duty Modern Warfare 2 - Resurgence Pack",purchase,1.0,0 -48798067,"Cities XL Platinum",purchase,1.0,0 -48798067,"Command and Conquer Red Alert 3",purchase,1.0,0 -48798067,"Company of Heroes (New Steam Version)",purchase,1.0,0 -48798067,"Confrontation",purchase,1.0,0 -48798067,"Crusader Kings II Sons of Abraham",purchase,1.0,0 -48798067,"Deadlight Original Soundtrack",purchase,1.0,0 -48798067,"Deus Ex Invisible War",purchase,1.0,0 -48798067,"Devil May Cry 3 Special Edition",purchase,1.0,0 -48798067,"Divine Divinity",purchase,1.0,0 -48798067,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -48798067,"Dungeonland",purchase,1.0,0 -48798067,"Dungeonland - All access pass",purchase,1.0,0 -48798067,"Eternal Senia",purchase,1.0,0 -48798067,"Europa Universalis III",purchase,1.0,0 -48798067,"Evolve - Behemoth",purchase,1.0,0 -48798067,"Fallout New Vegas Dead Money",purchase,1.0,0 -48798067,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -48798067,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -48798067,"FINAL FANTASY XI",purchase,1.0,0 -48798067,"FINAL FANTASY XIII",purchase,1.0,0 -48798067,"FINAL FANTASY XIV A Realm Reborn (PAL version)",purchase,1.0,0 -48798067,"Front Mission Evolved",purchase,1.0,0 -48798067,"Full Bore",purchase,1.0,0 -48798067,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -48798067,"GameGuru",purchase,1.0,0 -48798067,"Go! Go! Nippon! ~My First Trip to Japan~",purchase,1.0,0 -48798067,"Goodbye Deponia",purchase,1.0,0 -48798067,"Gothic 3",purchase,1.0,0 -48798067,"Gyromancer",purchase,1.0,0 -48798067,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",purchase,1.0,0 -48798067,"Hate Plus",purchase,1.0,0 -48798067,"Hearts of Iron III",purchase,1.0,0 -48798067,"Hell Yeah!",purchase,1.0,0 -48798067,"Hotline Miami 2 Wrong Number Digital Comic",purchase,1.0,0 -48798067,"Impire",purchase,1.0,0 -48798067,"Just Cause",purchase,1.0,0 -48798067,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -48798067,"King Arthur The Saxons",purchase,1.0,0 -48798067,"Labyrinthine Dreams",purchase,1.0,0 -48798067,"Lara Croft and the Temple of Osiris",purchase,1.0,0 -48798067,"Last Word",purchase,1.0,0 -48798067,"Leviathan Warships",purchase,1.0,0 -48798067,"Magicka Vietnam",purchase,1.0,0 -48798067,"Medal of Honor Pre-Order",purchase,1.0,0 -48798067,"Mercenary Kings",purchase,1.0,0 -48798067,"Mini Ninjas",purchase,1.0,0 -48798067,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -48798067,"Mount & Blade Warband - Viking Conquest Reforged Edition",purchase,1.0,0 -48798067,"Natural Selection 2",purchase,1.0,0 -48798067,"Oddworld Abe's Oddysee",purchase,1.0,0 -48798067,"Operation Flashpoint Red River",purchase,1.0,0 -48798067,"Overlord",purchase,1.0,0 -48798067,"Overlord Raising Hell",purchase,1.0,0 -48798067,"Patch testing for Chivalry",purchase,1.0,0 -48798067,"Penumbra Black Plague",purchase,1.0,0 -48798067,"Penumbra Requiem",purchase,1.0,0 -48798067,"Port of Call",purchase,1.0,0 -48798067,"Q.U.B.E Director's Cut",purchase,1.0,0 -48798067,"RAW - Realms of Ancient War",purchase,1.0,0 -48798067,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -48798067,"Resident Evil 6 Mercenaries No Mercy",purchase,1.0,0 -48798067,"Rise of the Argonauts",purchase,1.0,0 -48798067,"ROCKETSROCKETSROCKETS",purchase,1.0,0 -48798067,"Roommates",purchase,1.0,0 -48798067,"SAGA",purchase,1.0,0 -48798067,"Saints Row 2",purchase,1.0,0 -48798067,"Sanctum 2",purchase,1.0,0 -48798067,"Season of Mystery The Cherry Blossom Murders",purchase,1.0,0 -48798067,"Septerra Core",purchase,1.0,0 -48798067,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -48798067,"Starbound - Unstable",purchase,1.0,0 -48798067,"Star Wars The Force Unleashed II",purchase,1.0,0 -48798067,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -48798067,"Supreme Commander 2",purchase,1.0,0 -48798067,"Supreme Commander 2 - Infinite War Battle Pack One",purchase,1.0,0 -48798067,"Take On Helicopters",purchase,1.0,0 -48798067,"The Bureau XCOM Declassified",purchase,1.0,0 -48798067,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -48798067,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -48798067,"The Guild Gold Edition",purchase,1.0,0 -48798067,"The Guild II",purchase,1.0,0 -48798067,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -48798067,"The Lord of the Rings War in the North",purchase,1.0,0 -48798067,"The Showdown Effect",purchase,1.0,0 -48798067,"Thief",purchase,1.0,0 -48798067,"Thief Deadly Shadows",purchase,1.0,0 -48798067,"Tomb Raider Anniversary",purchase,1.0,0 -48798067,"Tomb Raider Legend",purchase,1.0,0 -48798067,"Tomb Raider Underworld",purchase,1.0,0 -48798067,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -48798067,"Two Worlds 2 - Pirates of the Flying Fortress ",purchase,1.0,0 -48798067,"UFO Afterlight",purchase,1.0,0 -48798067,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -48798067,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -48798067,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -48798067,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -48798067,"Victoria II",purchase,1.0,0 -48798067,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -48798067,"Warlock - Master of the Arcane",purchase,1.0,0 -48798067,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -48798067,"War of the Roses Kingmaker",purchase,1.0,0 -48798067,"Wasteland 1 - The Original Classic",purchase,1.0,0 -48798067,"Wasteland 2 Director's Cut",purchase,1.0,0 -48798067,"World of Goo",purchase,1.0,0 -122471552,"Dota 2",purchase,1.0,0 -122471552,"Dota 2",play,41.0,0 -122471552,"Left 4 Dead 2",purchase,1.0,0 -304788598,"Dota 2",purchase,1.0,0 -304788598,"Dota 2",play,0.7,0 -126063949,"Sniper Ghost Warrior",purchase,1.0,0 -126063949,"Sniper Ghost Warrior",play,1.2,0 -276073724,"Counter-Strike Global Offensive",purchase,1.0,0 -276073724,"Counter-Strike Global Offensive",play,27.0,0 -276073724,"Marvel Heroes 2015",purchase,1.0,0 -276073724,"Marvel Heroes 2015",play,1.2,0 -276073724,"Insurgency",purchase,1.0,0 -276073724,"Insurgency",play,0.2,0 -74270476,"Global Agenda",purchase,1.0,0 -74270476,"Global Agenda",play,0.4,0 -91567150,"Deus Ex Human Revolution",purchase,1.0,0 -91567150,"Deus Ex Human Revolution",play,37.0,0 -79626460,"Team Fortress 2",purchase,1.0,0 -79626460,"Team Fortress 2",play,8.4,0 -298367684,"Dota 2",purchase,1.0,0 -298367684,"Dota 2",play,2.9,0 -205253661,"Team Fortress 2",purchase,1.0,0 -205253661,"Team Fortress 2",play,0.5,0 -115375178,"Empire Total War",purchase,1.0,0 -300729671,"Dota 2",purchase,1.0,0 -300729671,"Dota 2",play,4.7,0 -21683270,"Counter-Strike Source",purchase,1.0,0 -21683270,"Counter-Strike Source",play,0.8,0 -21683270,"Day of Defeat Source",purchase,1.0,0 -21683270,"Half-Life 2 Deathmatch",purchase,1.0,0 -21683270,"Half-Life 2 Lost Coast",purchase,1.0,0 -48492052,"Unturned",purchase,1.0,0 -48492052,"Unturned",play,16.2,0 -48492052,"Robocraft",purchase,1.0,0 -48492052,"Robocraft",play,10.6,0 -48492052,"Team Fortress 2",purchase,1.0,0 -48492052,"Team Fortress 2",play,2.6,0 -48492052,"Cubic Castles",purchase,1.0,0 -48492052,"Cubic Castles",play,0.7,0 -48492052,"Defiance",purchase,1.0,0 -48492052,"Defiance",play,0.4,0 -48492052,"Fistful of Frags",purchase,1.0,0 -48492052,"Fistful of Frags",play,0.3,0 -48492052,"The Expendabros",purchase,1.0,0 -48492052,"The Expendabros",play,0.3,0 -48492052,"NEOTOKYO",purchase,1.0,0 -48492052,"NEOTOKYO",play,0.3,0 -48492052,"Sakura Clicker",purchase,1.0,0 -48492052,"Sakura Clicker",play,0.2,0 -48492052,"Toribash",purchase,1.0,0 -48492052,"Sunrider Mask of Arcadius",purchase,1.0,0 -48492052,"Grand Chase",purchase,1.0,0 -273082868,"Counter-Strike Global Offensive",purchase,1.0,0 -273082868,"Counter-Strike Global Offensive",play,265.0,0 -273082868,"Infestation Survivor Stories",purchase,1.0,0 -273082868,"Infestation Survivor Stories",play,23.0,0 -273082868,"H1Z1",purchase,1.0,0 -273082868,"H1Z1",play,15.4,0 -273082868,"GRID 2",purchase,1.0,0 -273082868,"GRID 2",play,12.7,0 -273082868,"Insurgency",purchase,1.0,0 -273082868,"Insurgency",play,12.6,0 -273082868,"Euro Truck Simulator 2",purchase,1.0,0 -273082868,"Euro Truck Simulator 2",play,10.6,0 -273082868,"Battlefield Bad Company 2",purchase,1.0,0 -273082868,"Battlefield Bad Company 2",play,3.7,0 -273082868,"Grand Theft Auto IV",purchase,1.0,0 -273082868,"Grand Theft Auto IV",play,3.0,0 -273082868,"Left 4 Dead 2",purchase,1.0,0 -273082868,"Left 4 Dead 2",play,2.6,0 -273082868,"Aftermath",purchase,1.0,0 -273082868,"Aftermath",play,1.9,0 -273082868,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -273082868,"Just Cause 2 Multiplayer Mod",play,1.9,0 -273082868,"Just Cause 2",purchase,1.0,0 -273082868,"Just Cause 2",play,1.7,0 -273082868,"Counter-Strike",purchase,1.0,0 -273082868,"Counter-Strike",play,1.2,0 -273082868,"EasyAntiCheat eSports",purchase,1.0,0 -273082868,"EasyAntiCheat eSports",play,1.0,0 -273082868,"Arma 2",purchase,1.0,0 -273082868,"Counter-Strike Condition Zero",purchase,1.0,0 -273082868,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -273082868,"Counter-Strike Source",purchase,1.0,0 -273082868,"Euro Truck Simulator",purchase,1.0,0 -273082868,"GRID",purchase,1.0,0 -273082868,"H1Z1 Test Server",purchase,1.0,0 -273082868,"Just Cause",purchase,1.0,0 -273082868,"Left 4 Dead",purchase,1.0,0 -273082868,"Max Payne 3",purchase,1.0,0 -215334587,"Team Fortress 2",purchase,1.0,0 -215334587,"Team Fortress 2",play,63.0,0 -215334587,"Gear Up",purchase,1.0,0 -161139120,"Garry's Mod",purchase,1.0,0 -161139120,"Garry's Mod",play,174.0,0 -161139120,"7 Days to Die",purchase,1.0,0 -161139120,"7 Days to Die",play,87.0,0 -161139120,"Half-Life 2",purchase,1.0,0 -161139120,"Half-Life 2",play,71.0,0 -161139120,"Robocraft",purchase,1.0,0 -161139120,"Robocraft",play,30.0,0 -161139120,"Counter-Strike Source",purchase,1.0,0 -161139120,"Counter-Strike Source",play,29.0,0 -161139120,"Half-Life 2 Episode One",purchase,1.0,0 -161139120,"Half-Life 2 Episode One",play,22.0,0 -161139120,"Half-Life 2 Deathmatch",purchase,1.0,0 -161139120,"Half-Life 2 Deathmatch",play,15.2,0 -161139120,"Half-Life Source",purchase,1.0,0 -161139120,"Half-Life Source",play,14.3,0 -161139120,"Half-Life Deathmatch Source",purchase,1.0,0 -161139120,"Half-Life Deathmatch Source",play,0.8,0 -161139120,"Half-Life 2 Lost Coast",purchase,1.0,0 -161139120,"Half-Life 2 Lost Coast",play,0.6,0 -161139120,"Defiance",purchase,1.0,0 -193196975,"AdVenture Capitalist",purchase,1.0,0 -193196975,"AdVenture Capitalist",play,29.0,0 -193196975,"Unturned",purchase,1.0,0 -193196975,"Unturned",play,28.0,0 -193196975,"Garry's Mod",purchase,1.0,0 -193196975,"Garry's Mod",play,22.0,0 -193196975,"Grand Theft Auto V",purchase,1.0,0 -193196975,"Grand Theft Auto V",play,18.8,0 -193196975,"Team Fortress 2",purchase,1.0,0 -193196975,"Team Fortress 2",play,13.5,0 -193196975,"Evolve",purchase,1.0,0 -193196975,"Evolve",play,9.2,0 -193196975,"Warframe",purchase,1.0,0 -193196975,"Warframe",play,8.2,0 -193196975,"Project Zomboid",purchase,1.0,0 -193196975,"Project Zomboid",play,6.2,0 -193196975,"Mitos.is The Game",purchase,1.0,0 -193196975,"Mitos.is The Game",play,3.4,0 -193196975,"DC Universe Online",purchase,1.0,0 -193196975,"DC Universe Online",play,2.8,0 -193196975,"Super Crate Box",purchase,1.0,0 -193196975,"Super Crate Box",play,2.3,0 -193196975,"Spooky's House of Jump Scares",purchase,1.0,0 -193196975,"Spooky's House of Jump Scares",play,2.2,0 -193196975,"Time Clickers",purchase,1.0,0 -193196975,"Time Clickers",play,1.4,0 -193196975,"Heroes & Generals",purchase,1.0,0 -193196975,"Heroes & Generals",play,0.2,0 -193196975,"theHunter",purchase,1.0,0 -193196975,"theHunter",play,0.1,0 -193196975,"Defiance",purchase,1.0,0 -193196975,"Dungeonland",purchase,1.0,0 -193196975,"Loadout",purchase,1.0,0 -193196975,"No More Room in Hell",purchase,1.0,0 -193196975,"Survarium",purchase,1.0,0 -90857581,"Counter-Strike",purchase,1.0,0 -90857581,"Counter-Strike",play,1134.0,0 -90857581,"Counter-Strike Condition Zero",purchase,1.0,0 -90857581,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -90857581,"Dead Island",purchase,1.0,0 -187115070,"Unturned",purchase,1.0,0 -187115070,"Unturned",play,1.4,0 -200321746,"Dota 2",purchase,1.0,0 -200321746,"Dota 2",play,167.0,0 -200321746,"Free to Play",purchase,1.0,0 -148413660,"Dota 2",purchase,1.0,0 -148413660,"Dota 2",play,0.4,0 -77261379,"Alien Swarm",purchase,1.0,0 -77261379,"Alien Swarm",play,0.3,0 -63831340,"Team Fortress 2",purchase,1.0,0 -63831340,"Team Fortress 2",play,1.0,0 -205829374,"Age of Empires II HD Edition",purchase,1.0,0 -205829374,"Age of Empires II HD Edition",play,141.0,0 -205829374,"Cities Skylines",purchase,1.0,0 -205829374,"Cities Skylines",play,56.0,0 -205829374,"Tomb Raider",purchase,1.0,0 -205829374,"Tomb Raider",play,6.0,0 -205829374,"FINAL FANTASY VII",purchase,1.0,0 -205829374,"FINAL FANTASY VII",play,0.2,0 -205829374,"Age of Empires II HD The Forgotten",purchase,1.0,0 -82203951,"Garry's Mod",purchase,1.0,0 -82203951,"Garry's Mod",play,49.0,0 -82203951,"DayZ",purchase,1.0,0 -82203951,"DayZ",play,29.0,0 -82203951,"Sid Meier's Civilization V",purchase,1.0,0 -82203951,"Sid Meier's Civilization V",play,22.0,0 -82203951,"Left 4 Dead 2",purchase,1.0,0 -82203951,"Left 4 Dead 2",play,15.7,0 -82203951,"Team Fortress 2",purchase,1.0,0 -82203951,"Team Fortress 2",play,6.0,0 -82203951,"Unturned",purchase,1.0,0 -82203951,"Unturned",play,3.2,0 -82203951,"Blacklight Retribution",purchase,1.0,0 -82203951,"Blacklight Retribution",play,0.7,0 -82203951,"Ace of Spades",purchase,1.0,0 -82203951,"Ace of Spades",play,0.3,0 -82203951,"Just Cause 2",purchase,1.0,0 -82203951,"Just Cause 2",play,0.3,0 -82203951,"Dirty Bomb",purchase,1.0,0 -82203951,"Dirty Bomb",play,0.2,0 -82203951,"Dota 2",purchase,1.0,0 -82203951,"Dota 2",play,0.1,0 -82203951,"Trove",purchase,1.0,0 -82203951,"Dev Guy",purchase,1.0,0 -82203951,"Heroes & Generals",purchase,1.0,0 -277782286,"Dota 2",purchase,1.0,0 -277782286,"Dota 2",play,268.0,0 -3450426,"Half-Life",purchase,1.0,0 -3450426,"Half-Life",play,2.0,0 -3450426,"Half-Life Blue Shift",purchase,1.0,0 -3450426,"Half-Life Blue Shift",play,0.2,0 -3450426,"Deathmatch Classic",purchase,1.0,0 -3450426,"Deathmatch Classic",play,0.2,0 -3450426,"Counter-Strike",purchase,1.0,0 -3450426,"Counter-Strike",play,0.2,0 -3450426,"Day of Defeat",purchase,1.0,0 -3450426,"Day of Defeat",play,0.1,0 -3450426,"Half-Life Opposing Force",purchase,1.0,0 -3450426,"Ricochet",purchase,1.0,0 -3450426,"Team Fortress Classic",purchase,1.0,0 -105511340,"Dota 2",purchase,1.0,0 -105511340,"Dota 2",play,13.9,0 -184385867,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -184385867,"Tom Clancy's Ghost Recon Phantoms - NA",play,3.0,0 -184385867,"HAWKEN",purchase,1.0,0 -184385867,"HAWKEN",play,0.6,0 -184385867,"Warframe",purchase,1.0,0 -184385867,"Warframe",play,0.6,0 -184385867,"Nosgoth",purchase,1.0,0 -184385867,"Nosgoth",play,0.5,0 -184385867,"Dota 2",purchase,1.0,0 -184385867,"Dota 2",play,0.2,0 -184385867,"Counter-Strike Nexon Zombies",purchase,1.0,0 -257518188,"Dota 2",purchase,1.0,0 -257518188,"Dota 2",play,0.2,0 -69729762,"Left 4 Dead 2",purchase,1.0,0 -62990992,"Counter-Strike Global Offensive",purchase,1.0,0 -62990992,"Counter-Strike Global Offensive",play,663.0,0 -62990992,"Sid Meier's Civilization V",purchase,1.0,0 -62990992,"Sid Meier's Civilization V",play,550.0,0 -62990992,"Total War SHOGUN 2",purchase,1.0,0 -62990992,"Total War SHOGUN 2",play,212.0,0 -62990992,"Total War ROME II - Emperor Edition",purchase,1.0,0 -62990992,"Total War ROME II - Emperor Edition",play,198.0,0 -62990992,"Dungeon Defenders",purchase,1.0,0 -62990992,"Dungeon Defenders",play,195.0,0 -62990992,"Age of Empires Online",purchase,1.0,0 -62990992,"Age of Empires Online",play,168.0,0 -62990992,"XCOM Enemy Unknown",purchase,1.0,0 -62990992,"XCOM Enemy Unknown",play,126.0,0 -62990992,"Empire Total War",purchase,1.0,0 -62990992,"Empire Total War",play,125.0,0 -62990992,"Might & Magic Heroes VI",purchase,1.0,0 -62990992,"Might & Magic Heroes VI",play,118.0,0 -62990992,"Assassin's Creed IV Black Flag",purchase,1.0,0 -62990992,"Assassin's Creed IV Black Flag",play,94.0,0 -62990992,"Alien Swarm",purchase,1.0,0 -62990992,"Alien Swarm",play,83.0,0 -62990992,"Assassin's Creed II",purchase,1.0,0 -62990992,"Assassin's Creed II",play,79.0,0 -62990992,"Assassin's Creed Brotherhood",purchase,1.0,0 -62990992,"Assassin's Creed Brotherhood",play,73.0,0 -62990992,"Terra Incognita ~ Chapter One The Descendant",purchase,1.0,0 -62990992,"Terra Incognita ~ Chapter One The Descendant",play,61.0,0 -62990992,"Warlock - Master of the Arcane",purchase,1.0,0 -62990992,"Warlock - Master of the Arcane",play,55.0,0 -62990992,"Phantom Breaker Battle Grounds",purchase,1.0,0 -62990992,"Phantom Breaker Battle Grounds",play,53.0,0 -62990992,"Soul Gambler",purchase,1.0,0 -62990992,"Soul Gambler",play,48.0,0 -62990992,"Supreme Commander",purchase,1.0,0 -62990992,"Supreme Commander",play,47.0,0 -62990992,"The Incredible Adventures of Van Helsing II",purchase,1.0,0 -62990992,"The Incredible Adventures of Van Helsing II",play,43.0,0 -62990992,"Titan Quest Immortal Throne",purchase,1.0,0 -62990992,"Titan Quest Immortal Throne",play,40.0,0 -62990992,"Orcs Must Die! 2",purchase,1.0,0 -62990992,"Orcs Must Die! 2",play,39.0,0 -62990992,"Assassin's Creed Revelations",purchase,1.0,0 -62990992,"Assassin's Creed Revelations",play,38.0,0 -62990992,"Relic Hunters Zero",purchase,1.0,0 -62990992,"Relic Hunters Zero",play,38.0,0 -62990992,"Tom Clancy's Ghost Recon Advanced Warfighter",purchase,1.0,0 -62990992,"Tom Clancy's Ghost Recon Advanced Warfighter",play,37.0,0 -62990992,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -62990992,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,35.0,0 -62990992,"Napoleon Total War",purchase,1.0,0 -62990992,"Napoleon Total War",play,34.0,0 -62990992,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -62990992,"Warhammer 40,000 Dawn of War II Retribution",play,33.0,0 -62990992,"Uncrowded",purchase,1.0,0 -62990992,"Uncrowded",play,30.0,0 -62990992,"Alan Wake",purchase,1.0,0 -62990992,"Alan Wake",play,28.0,0 -62990992,"Ancient Space",purchase,1.0,0 -62990992,"Ancient Space",play,27.0,0 -62990992,"R.U.S.E",purchase,1.0,0 -62990992,"R.U.S.E",play,26.0,0 -62990992,"Sometimes Success Requires Sacrifice",purchase,1.0,0 -62990992,"Sometimes Success Requires Sacrifice",play,24.0,0 -62990992,"Dead Island",purchase,1.0,0 -62990992,"Dead Island",play,24.0,0 -62990992,"Terraria",purchase,1.0,0 -62990992,"Terraria",play,24.0,0 -62990992,"Why So Evil",purchase,1.0,0 -62990992,"Why So Evil",play,23.0,0 -62990992,"Fearless Fantasy",purchase,1.0,0 -62990992,"Fearless Fantasy",play,22.0,0 -62990992,"Hitman Absolution",purchase,1.0,0 -62990992,"Hitman Absolution",play,22.0,0 -62990992,"Sacred Citadel",purchase,1.0,0 -62990992,"Sacred Citadel",play,22.0,0 -62990992,"Supreme Commander Forged Alliance",purchase,1.0,0 -62990992,"Supreme Commander Forged Alliance",play,21.0,0 -62990992,"Killing Floor",purchase,1.0,0 -62990992,"Killing Floor",play,21.0,0 -62990992,"Port Royale 3",purchase,1.0,0 -62990992,"Port Royale 3",play,21.0,0 -62990992,"Sweet Lily Dreams",purchase,1.0,0 -62990992,"Sweet Lily Dreams",play,21.0,0 -62990992,"Left 4 Dead 2",purchase,1.0,0 -62990992,"Left 4 Dead 2",play,20.0,0 -62990992,"Stardust Vanguards",purchase,1.0,0 -62990992,"Stardust Vanguards",play,19.9,0 -62990992,"Squirreltopia",purchase,1.0,0 -62990992,"Squirreltopia",play,19.7,0 -62990992,"Viking Battle for Asgard",purchase,1.0,0 -62990992,"Viking Battle for Asgard",play,19.7,0 -62990992,"Greyfox",purchase,1.0,0 -62990992,"Greyfox",play,19.6,0 -62990992,"Batman Arkham City GOTY",purchase,1.0,0 -62990992,"Batman Arkham City GOTY",play,19.2,0 -62990992,"Secret Of Magia",purchase,1.0,0 -62990992,"Secret Of Magia",play,19.2,0 -62990992,"Borderlands",purchase,1.0,0 -62990992,"Borderlands",play,18.5,0 -62990992,"The Bureau XCOM Declassified",purchase,1.0,0 -62990992,"The Bureau XCOM Declassified",play,18.3,0 -62990992,"The Lord of the Rings War in the North",purchase,1.0,0 -62990992,"The Lord of the Rings War in the North",play,17.9,0 -62990992,"Woodle Tree Adventures",purchase,1.0,0 -62990992,"Woodle Tree Adventures",play,17.8,0 -62990992,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -62990992,"The Incredible Adventures of Van Helsing",play,17.8,0 -62990992,"Endless Legend",purchase,1.0,0 -62990992,"Endless Legend",play,17.8,0 -62990992,"Defense Grid The Awakening",purchase,1.0,0 -62990992,"Defense Grid The Awakening",play,17.2,0 -62990992,"Fable III",purchase,1.0,0 -62990992,"Fable III",play,17.1,0 -62990992,"Torchlight II",purchase,1.0,0 -62990992,"Torchlight II",play,17.1,0 -62990992,"Batman Arkham Origins",purchase,1.0,0 -62990992,"Batman Arkham Origins",play,16.5,0 -62990992,"Anno 2070",purchase,1.0,0 -62990992,"Anno 2070",play,15.6,0 -62990992,"Cities XL Platinum",purchase,1.0,0 -62990992,"Cities XL Platinum",play,15.2,0 -62990992,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -62990992,"Batman Arkham Asylum GOTY Edition",play,15.2,0 -62990992,"Portal 2",purchase,1.0,0 -62990992,"Portal 2",play,15.1,0 -62990992,"E.Y.E Divine Cybermancy",purchase,1.0,0 -62990992,"E.Y.E Divine Cybermancy",play,15.0,0 -62990992,"Tom Clancy's Ghost Recon Future Soldier",purchase,1.0,0 -62990992,"Tom Clancy's Ghost Recon Future Soldier",play,15.0,0 -62990992,"Magicka",purchase,1.0,0 -62990992,"Magicka",play,14.9,0 -62990992,"Minimon",purchase,1.0,0 -62990992,"Minimon",play,14.8,0 -62990992,"Pongo",purchase,1.0,0 -62990992,"Pongo",play,14.8,0 -62990992,"AirMech",purchase,1.0,0 -62990992,"AirMech",play,14.6,0 -62990992,"Supreme Commander 2",purchase,1.0,0 -62990992,"Supreme Commander 2",play,14.4,0 -62990992,"Absconding Zatwor",purchase,1.0,0 -62990992,"Absconding Zatwor",play,14.0,0 -62990992,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -62990992,"Burnout Paradise The Ultimate Box",play,13.8,0 -62990992,"Prime World Defenders",purchase,1.0,0 -62990992,"Prime World Defenders",play,13.6,0 -62990992,"Warhammer 40,000 Space Marine",purchase,1.0,0 -62990992,"Warhammer 40,000 Space Marine",play,13.5,0 -62990992,"Assassin's Creed",purchase,1.0,0 -62990992,"Assassin's Creed",play,13.5,0 -62990992,"Mercenary Kings",purchase,1.0,0 -62990992,"Mercenary Kings",play,13.3,0 -62990992,"Brilliant Bob",purchase,1.0,0 -62990992,"Brilliant Bob",play,13.3,0 -62990992,"Tea Party Simulator 2015",purchase,1.0,0 -62990992,"Tea Party Simulator 2015",play,13.3,0 -62990992,"No Time To Explain Remastered",purchase,1.0,0 -62990992,"No Time To Explain Remastered",play,13.0,0 -62990992,"GemCraft - Chasing Shadows",purchase,1.0,0 -62990992,"GemCraft - Chasing Shadows",play,12.9,0 -62990992,"Metal Planet",purchase,1.0,0 -62990992,"Metal Planet",play,12.7,0 -62990992,"Age of Empires II HD Edition",purchase,1.0,0 -62990992,"Age of Empires II HD Edition",play,12.7,0 -62990992,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -62990992,"Resident Evil 5 / Biohazard 5",play,12.6,0 -62990992,"Team Fortress 2",purchase,1.0,0 -62990992,"Team Fortress 2",play,12.5,0 -62990992,"DmC Devil May Cry",purchase,1.0,0 -62990992,"DmC Devil May Cry",play,12.1,0 -62990992,"Oniken",purchase,1.0,0 -62990992,"Oniken",play,12.1,0 -62990992,"12 Labours of Hercules III Girl Power",purchase,1.0,0 -62990992,"12 Labours of Hercules III Girl Power",play,11.9,0 -62990992,"Saints Row IV",purchase,1.0,0 -62990992,"Saints Row IV",play,11.7,0 -62990992,"Gravilon",purchase,1.0,0 -62990992,"Gravilon",play,11.6,0 -62990992,"Spec Ops The Line",purchase,1.0,0 -62990992,"Spec Ops The Line",play,11.5,0 -62990992,"Keen Dreams",purchase,1.0,0 -62990992,"Keen Dreams",play,11.5,0 -62990992,"The Campaign Series Fall Weiss",purchase,1.0,0 -62990992,"The Campaign Series Fall Weiss",play,11.3,0 -62990992,"Fortix 2",purchase,1.0,0 -62990992,"Fortix 2",play,11.2,0 -62990992,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -62990992,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,11.0,0 -62990992,"Despair",purchase,1.0,0 -62990992,"Despair",play,10.9,0 -62990992,"Borderlands 2",purchase,1.0,0 -62990992,"Borderlands 2",play,10.8,0 -62990992,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -62990992,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,10.8,0 -62990992,"Tiny Bridge Ratventure",purchase,1.0,0 -62990992,"Tiny Bridge Ratventure",play,10.7,0 -62990992,"Robot Roller-Derby Disco Dodgeball",purchase,1.0,0 -62990992,"Robot Roller-Derby Disco Dodgeball",play,10.5,0 -62990992,"Warframe",purchase,1.0,0 -62990992,"Warframe",play,10.5,0 -62990992,"Knights of Pen and Paper +1",purchase,1.0,0 -62990992,"Knights of Pen and Paper +1",play,10.5,0 -62990992,"The Hat Man Shadow Ward",purchase,1.0,0 -62990992,"The Hat Man Shadow Ward",play,10.4,0 -62990992,"Depth Hunter 2 Deep Dive",purchase,1.0,0 -62990992,"Depth Hunter 2 Deep Dive",play,10.4,0 -62990992,"Serious Sam 3 BFE",purchase,1.0,0 -62990992,"Serious Sam 3 BFE",play,10.2,0 -62990992,"Merchants of Kaidan",purchase,1.0,0 -62990992,"Merchants of Kaidan",play,10.2,0 -62990992,"Anoxemia",purchase,1.0,0 -62990992,"Anoxemia",play,9.9,0 -62990992,"12 Labours of Hercules II The Cretan Bull",purchase,1.0,0 -62990992,"12 Labours of Hercules II The Cretan Bull",play,9.9,0 -62990992,"Oddworld Abe's Oddysee",purchase,1.0,0 -62990992,"Oddworld Abe's Oddysee",play,9.8,0 -62990992,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -62990992,"Red Faction Guerrilla Steam Edition",play,9.8,0 -62990992,"12 Labours of Hercules",purchase,1.0,0 -62990992,"12 Labours of Hercules",play,9.8,0 -62990992,"Half-Life 2",purchase,1.0,0 -62990992,"Half-Life 2",play,9.7,0 -62990992,"Shadowgate",purchase,1.0,0 -62990992,"Shadowgate",play,9.7,0 -62990992,"Endless Space",purchase,1.0,0 -62990992,"Endless Space",play,9.7,0 -62990992,"Sniper Elite V2",purchase,1.0,0 -62990992,"Sniper Elite V2",play,9.7,0 -62990992,"Letter Quest Grimm's Journey",purchase,1.0,0 -62990992,"Letter Quest Grimm's Journey",play,9.5,0 -62990992,"Risen",purchase,1.0,0 -62990992,"Risen",play,9.5,0 -62990992,"Sid Meier's Ace Patrol",purchase,1.0,0 -62990992,"Sid Meier's Ace Patrol",play,9.4,0 -62990992,"Frankenstein Master of Death",purchase,1.0,0 -62990992,"Frankenstein Master of Death",play,9.4,0 -62990992,"Sengoku",purchase,1.0,0 -62990992,"Sengoku",play,9.4,0 -62990992,"Jack Lumber",purchase,1.0,0 -62990992,"Jack Lumber",play,9.3,0 -62990992,"Starlaxis Supernova Edition",purchase,1.0,0 -62990992,"Starlaxis Supernova Edition",play,9.3,0 -62990992,"Super 3-D Noah's Ark",purchase,1.0,0 -62990992,"Super 3-D Noah's Ark",play,9.2,0 -62990992,"Robotex",purchase,1.0,0 -62990992,"Robotex",play,9.1,0 -62990992,"Company of Heroes 2",purchase,1.0,0 -62990992,"Company of Heroes 2",play,8.9,0 -62990992,"Overcast - Walden and the Werewolf",purchase,1.0,0 -62990992,"Overcast - Walden and the Werewolf",play,8.8,0 -62990992,"Gun Metal",purchase,1.0,0 -62990992,"Gun Metal",play,8.8,0 -62990992,"Dota 2",purchase,1.0,0 -62990992,"Dota 2",play,8.7,0 -62990992,"Letter Quest Grimm's Journey Remastered",purchase,1.0,0 -62990992,"Letter Quest Grimm's Journey Remastered",play,8.6,0 -62990992,"Spirits",purchase,1.0,0 -62990992,"Spirits",play,8.6,0 -62990992,"Tropico 4",purchase,1.0,0 -62990992,"Tropico 4",play,8.4,0 -62990992,"SUPER DISTRO",purchase,1.0,0 -62990992,"SUPER DISTRO",play,8.3,0 -62990992,"Hearts of Iron III",purchase,1.0,0 -62990992,"Hearts of Iron III",play,8.2,0 -62990992,"Voxelized",purchase,1.0,0 -62990992,"Voxelized",play,8.0,0 -62990992,"Incoming Forces",purchase,1.0,0 -62990992,"Incoming Forces",play,7.8,0 -62990992,"Fallen Enchantress Legendary Heroes",purchase,1.0,0 -62990992,"Fallen Enchantress Legendary Heroes",play,7.7,0 -62990992,"Command and Conquer 3 Tiberium Wars",purchase,1.0,0 -62990992,"Command and Conquer 3 Tiberium Wars",play,7.7,0 -62990992,"Rochard",purchase,1.0,0 -62990992,"Rochard",play,7.7,0 -62990992,"Cast of the Seven Godsends",purchase,1.0,0 -62990992,"Cast of the Seven Godsends",play,7.4,0 -62990992,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -62990992,"Resident Evil Revelations / Biohazard Revelations",play,7.4,0 -62990992,"Lichdom Battlemage",purchase,1.0,0 -62990992,"Lichdom Battlemage",play,7.1,0 -62990992,"Awesomenauts",purchase,1.0,0 -62990992,"Awesomenauts",play,7.0,0 -62990992,"Lilly and Sasha Curse of the Immortals",purchase,1.0,0 -62990992,"Lilly and Sasha Curse of the Immortals",play,7.0,0 -62990992,"Temper Tantrum",purchase,1.0,0 -62990992,"Temper Tantrum",play,7.0,0 -62990992,"RAW - Realms of Ancient War",purchase,1.0,0 -62990992,"RAW - Realms of Ancient War",play,7.0,0 -62990992,"PAYDAY The Heist",purchase,1.0,0 -62990992,"PAYDAY The Heist",play,6.9,0 -62990992,"Screencheat",purchase,1.0,0 -62990992,"Screencheat",play,6.8,0 -62990992,"Lost Planet 3",purchase,1.0,0 -62990992,"Lost Planet 3",play,6.8,0 -62990992,"Coin Crypt",purchase,1.0,0 -62990992,"Coin Crypt",play,6.7,0 -62990992,"Warlock 2 the Exiled",purchase,1.0,0 -62990992,"Warlock 2 the Exiled",play,6.6,0 -62990992,"War, the Game",purchase,1.0,0 -62990992,"War, the Game",play,6.5,0 -62990992,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -62990992,"Sid Meier's Ace Patrol Pacific Skies",play,6.4,0 -62990992,"Doorways The Underworld",purchase,1.0,0 -62990992,"Doorways The Underworld",play,6.4,0 -62990992,"Polarity",purchase,1.0,0 -62990992,"Polarity",play,6.4,0 -62990992,"Labyronia RPG",purchase,1.0,0 -62990992,"Labyronia RPG",play,6.2,0 -62990992,"Colin McRae Rally",purchase,1.0,0 -62990992,"Colin McRae Rally",play,6.2,0 -62990992,"Trine",purchase,1.0,0 -62990992,"Trine",play,6.1,0 -62990992,"Squishy the Suicidal Pig",purchase,1.0,0 -62990992,"Squishy the Suicidal Pig",play,6.1,0 -62990992,"Outland",purchase,1.0,0 -62990992,"Outland",play,6.0,0 -62990992,"Monaco",purchase,1.0,0 -62990992,"Monaco",play,6.0,0 -62990992,"Strategic War in Europe",purchase,1.0,0 -62990992,"Strategic War in Europe",play,5.9,0 -62990992,"1953 NATO vs Warsaw Pact",purchase,1.0,0 -62990992,"1953 NATO vs Warsaw Pact",play,5.9,0 -62990992,"BIT.TRIP RUNNER",purchase,1.0,0 -62990992,"BIT.TRIP RUNNER",play,5.8,0 -62990992,"Journey Of The Light",purchase,1.0,0 -62990992,"Journey Of The Light",play,5.8,0 -62990992,"The Slaughtering Grounds",purchase,1.0,0 -62990992,"The Slaughtering Grounds",play,5.8,0 -62990992,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -62990992,"Warhammer 40,000 Dawn of War II",play,5.7,0 -62990992,"Into the Dark",purchase,1.0,0 -62990992,"Into the Dark",play,5.7,0 -62990992,"Planetary Annihilation",purchase,1.0,0 -62990992,"Planetary Annihilation",play,5.7,0 -62990992,"Pressured",purchase,1.0,0 -62990992,"Pressured",play,5.6,0 -62990992,"Guacamelee! Gold Edition",purchase,1.0,0 -62990992,"Guacamelee! Gold Edition",play,5.6,0 -62990992,"Antichamber",purchase,1.0,0 -62990992,"Antichamber",play,5.6,0 -62990992,"Battlepaths",purchase,1.0,0 -62990992,"Battlepaths",play,5.5,0 -62990992,"Penguins Arena Sedna's World",purchase,1.0,0 -62990992,"Penguins Arena Sedna's World",play,5.5,0 -62990992,"Star Wars Empire at War Gold",purchase,1.0,0 -62990992,"Star Wars Empire at War Gold",play,5.4,0 -62990992,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -62990992,"Rising Storm/Red Orchestra 2 Multiplayer",play,5.3,0 -62990992,"Painkiller Hell & Damnation",purchase,1.0,0 -62990992,"Painkiller Hell & Damnation",play,5.3,0 -62990992,"Chainsaw Warrior",purchase,1.0,0 -62990992,"Chainsaw Warrior",play,5.1,0 -62990992,"Nuclear Dawn",purchase,1.0,0 -62990992,"Nuclear Dawn",play,5.1,0 -62990992,"Speed Kills",purchase,1.0,0 -62990992,"Speed Kills",play,5.1,0 -62990992,"Rise of Nations Extended Edition",purchase,1.0,0 -62990992,"Rise of Nations Extended Edition",play,5.0,0 -62990992,"Battle vs Chess",purchase,1.0,0 -62990992,"Battle vs Chess",play,5.0,0 -62990992,"Bloodbath Kavkaz",purchase,1.0,0 -62990992,"Bloodbath Kavkaz",play,4.9,0 -62990992,"Homefront",purchase,1.0,0 -62990992,"Homefront",play,4.8,0 -62990992,"Marble Mayhem Fragile Ball",purchase,1.0,0 -62990992,"Marble Mayhem Fragile Ball",play,4.8,0 -62990992,"Project Explore",purchase,1.0,0 -62990992,"Project Explore",play,4.8,0 -62990992,"The Few",purchase,1.0,0 -62990992,"The Few",play,4.7,0 -62990992,"Chip",purchase,1.0,0 -62990992,"Chip",play,4.7,0 -62990992,"16bit Trader",purchase,1.0,0 -62990992,"16bit Trader",play,4.7,0 -62990992,"Dustforce",purchase,1.0,0 -62990992,"Dustforce",play,4.7,0 -62990992,"Orcs Must Die!",purchase,1.0,0 -62990992,"Orcs Must Die!",play,4.6,0 -62990992,"Remember Me",purchase,1.0,0 -62990992,"Remember Me",play,4.6,0 -62990992,"Pool Nation",purchase,1.0,0 -62990992,"Pool Nation",play,4.6,0 -62990992,"Hostile Waters Antaeus Rising",purchase,1.0,0 -62990992,"Hostile Waters Antaeus Rising",play,4.6,0 -62990992,"Strider",purchase,1.0,0 -62990992,"Strider",play,4.6,0 -62990992,"F1 Race Stars",purchase,1.0,0 -62990992,"F1 Race Stars",play,4.5,0 -62990992,"It came from space, and ate our brains",purchase,1.0,0 -62990992,"It came from space, and ate our brains",play,4.5,0 -62990992,"Starion Tactics",purchase,1.0,0 -62990992,"Starion Tactics",play,4.5,0 -62990992,"Scourge Outbreak",purchase,1.0,0 -62990992,"Scourge Outbreak",play,4.4,0 -62990992,"Terrorhedron",purchase,1.0,0 -62990992,"Terrorhedron",play,4.3,0 -62990992,"Primordia",purchase,1.0,0 -62990992,"Primordia",play,4.3,0 -62990992,"3DMark",purchase,1.0,0 -62990992,"3DMark",play,4.2,0 -62990992,"resident evil 4 / biohazard 4",purchase,1.0,0 -62990992,"resident evil 4 / biohazard 4",play,4.2,0 -62990992,"The Howler",purchase,1.0,0 -62990992,"The Howler",play,4.2,0 -62990992,"Chainsaw Warrior Lords of the Night",purchase,1.0,0 -62990992,"Chainsaw Warrior Lords of the Night",play,4.2,0 -62990992,"Two Worlds Epic Edition",purchase,1.0,0 -62990992,"Two Worlds Epic Edition",play,4.1,0 -62990992,"Risen 2 - Dark Waters",purchase,1.0,0 -62990992,"Risen 2 - Dark Waters",play,4.0,0 -62990992,"Talisman Digital Edition",purchase,1.0,0 -62990992,"Talisman Digital Edition",play,4.0,0 -62990992,"DiRT 3 Complete Edition",purchase,1.0,0 -62990992,"DiRT 3 Complete Edition",play,3.9,0 -62990992,"Deadbreed",purchase,1.0,0 -62990992,"Deadbreed",play,3.9,0 -62990992,"War of the Human Tanks",purchase,1.0,0 -62990992,"War of the Human Tanks",play,3.9,0 -62990992,"Costume Quest",purchase,1.0,0 -62990992,"Costume Quest",play,3.7,0 -62990992,"Dungeon Defenders Eternity",purchase,1.0,0 -62990992,"Dungeon Defenders Eternity",play,3.7,0 -62990992,"GoD Factory Wingmen",purchase,1.0,0 -62990992,"GoD Factory Wingmen",play,3.7,0 -62990992,"GunWorld",purchase,1.0,0 -62990992,"GunWorld",play,3.6,0 -62990992,"Stacking",purchase,1.0,0 -62990992,"Stacking",play,3.6,0 -62990992,"Skyborn",purchase,1.0,0 -62990992,"Skyborn",play,3.6,0 -62990992,"The Samaritan Paradox",purchase,1.0,0 -62990992,"The Samaritan Paradox",play,3.6,0 -62990992,"Sleeping Dogs",purchase,1.0,0 -62990992,"Sleeping Dogs",play,3.5,0 -62990992,"Freedom Planet",purchase,1.0,0 -62990992,"Freedom Planet",play,3.5,0 -62990992,"GooCubelets",purchase,1.0,0 -62990992,"GooCubelets",play,3.5,0 -62990992,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -62990992,"THE KING OF FIGHTERS XIII STEAM EDITION",play,3.5,0 -62990992,"Shank 2",purchase,1.0,0 -62990992,"Shank 2",play,3.5,0 -62990992,"Call of Juarez",purchase,1.0,0 -62990992,"Call of Juarez",play,3.4,0 -62990992,"Cyto",purchase,1.0,0 -62990992,"Cyto",play,3.4,0 -62990992,"Alan Wake's American Nightmare",purchase,1.0,0 -62990992,"Alan Wake's American Nightmare",play,3.4,0 -62990992,"Alpha Kimori Episode One ",purchase,1.0,0 -62990992,"Alpha Kimori Episode One ",play,3.4,0 -62990992,"Deadly Profits",purchase,1.0,0 -62990992,"Deadly Profits",play,3.4,0 -62990992,"Age of Empires III Complete Collection",purchase,1.0,0 -62990992,"Age of Empires III Complete Collection",play,3.3,0 -62990992,"Thief",purchase,1.0,0 -62990992,"Thief",play,3.3,0 -62990992,"Little Racers STREET",purchase,1.0,0 -62990992,"Little Racers STREET",play,3.3,0 -62990992,"MURDERED SOUL SUSPECT",purchase,1.0,0 -62990992,"MURDERED SOUL SUSPECT",play,3.3,0 -62990992,"Narco Terror",purchase,1.0,0 -62990992,"Narco Terror",play,3.3,0 -62990992,"Echelon",purchase,1.0,0 -62990992,"Echelon",play,3.3,0 -62990992,"Hero of the Kingdom",purchase,1.0,0 -62990992,"Hero of the Kingdom",play,3.2,0 -62990992,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -62990992,"Injustice Gods Among Us Ultimate Edition",play,3.2,0 -62990992,"The Elder Scrolls V Skyrim",purchase,1.0,0 -62990992,"The Elder Scrolls V Skyrim",play,3.2,0 -62990992,"Revolution Ace",purchase,1.0,0 -62990992,"Revolution Ace",play,3.2,0 -62990992,"Worms Revolution",purchase,1.0,0 -62990992,"Worms Revolution",play,3.2,0 -62990992,"Zombie Driver HD",purchase,1.0,0 -62990992,"Zombie Driver HD",play,3.2,0 -62990992,"How To Survive Third Person",purchase,1.0,0 -62990992,"How To Survive Third Person",play,3.1,0 -62990992,"Call of Juarez Gunslinger",purchase,1.0,0 -62990992,"Call of Juarez Gunslinger",play,3.1,0 -62990992,"Cargo Commander",purchase,1.0,0 -62990992,"Cargo Commander",play,3.1,0 -62990992,"Hacker Evolution - Untold",purchase,1.0,0 -62990992,"Hacker Evolution - Untold",play,3.1,0 -62990992,"Dead Bits",purchase,1.0,0 -62990992,"Dead Bits",play,3.1,0 -62990992,"Sun Blast",purchase,1.0,0 -62990992,"Sun Blast",play,3.1,0 -62990992,"BloodRayne Betrayal",purchase,1.0,0 -62990992,"BloodRayne Betrayal",play,3.1,0 -62990992,"Ionball 2 Ionstorm",purchase,1.0,0 -62990992,"Ionball 2 Ionstorm",play,3.0,0 -62990992,"The Darkness II",purchase,1.0,0 -62990992,"The Darkness II",play,3.0,0 -62990992,"The Ship",purchase,1.0,0 -62990992,"The Ship",play,3.0,0 -62990992,"Anomaly Warzone Earth",purchase,1.0,0 -62990992,"Anomaly Warzone Earth",play,2.9,0 -62990992,"Flower Shop Winter In Fairbrook",purchase,1.0,0 -62990992,"Flower Shop Winter In Fairbrook",play,2.9,0 -62990992,"Cities in Motion 2",purchase,1.0,0 -62990992,"Cities in Motion 2",play,2.9,0 -62990992,"METAL SLUG 3",purchase,1.0,0 -62990992,"METAL SLUG 3",play,2.9,0 -62990992,"Shadow Warrior",purchase,1.0,0 -62990992,"Shadow Warrior",play,2.9,0 -62990992,"Racer 8",purchase,1.0,0 -62990992,"Racer 8",play,2.9,0 -62990992,"Gratuitous Space Battles",purchase,1.0,0 -62990992,"Gratuitous Space Battles",play,2.9,0 -62990992,"HOARD",purchase,1.0,0 -62990992,"HOARD",play,2.8,0 -62990992,"Sinister City",purchase,1.0,0 -62990992,"Sinister City",play,2.8,0 -62990992,"Saints Row The Third",purchase,1.0,0 -62990992,"Saints Row The Third",play,2.8,0 -62990992,"Residue Final Cut",purchase,1.0,0 -62990992,"Residue Final Cut",play,2.8,0 -62990992,"Blob From Space",purchase,1.0,0 -62990992,"Blob From Space",play,2.8,0 -62990992,"Orbital Gear",purchase,1.0,0 -62990992,"Orbital Gear",play,2.8,0 -62990992,"Garry's Mod",purchase,1.0,0 -62990992,"Garry's Mod",play,2.7,0 -62990992,"Total War Battles SHOGUN",purchase,1.0,0 -62990992,"Total War Battles SHOGUN",play,2.7,0 -62990992,"Natural Selection 2",purchase,1.0,0 -62990992,"Natural Selection 2",play,2.7,0 -62990992,"Space Pirates and Zombies",purchase,1.0,0 -62990992,"Space Pirates and Zombies",play,2.7,0 -62990992,"Intergalactic Bubbles",purchase,1.0,0 -62990992,"Intergalactic Bubbles",play,2.7,0 -62990992,"Pixel Piracy",purchase,1.0,0 -62990992,"Pixel Piracy",play,2.7,0 -62990992,"Medieval II Total War",purchase,1.0,0 -62990992,"Medieval II Total War",play,2.7,0 -62990992,"1Quest",purchase,1.0,0 -62990992,"1Quest",play,2.7,0 -62990992,"Counter-Strike Source",purchase,1.0,0 -62990992,"Counter-Strike Source",play,2.7,0 -62990992,"F1 2013",purchase,1.0,0 -62990992,"F1 2013",play,2.6,0 -62990992,"Wickland",purchase,1.0,0 -62990992,"Wickland",play,2.6,0 -62990992,"Power-Up",purchase,1.0,0 -62990992,"Power-Up",play,2.6,0 -62990992,"StarDrive",purchase,1.0,0 -62990992,"StarDrive",play,2.6,0 -62990992,"The Albino Hunter",purchase,1.0,0 -62990992,"The Albino Hunter",play,2.6,0 -62990992,"Trine 2",purchase,1.0,0 -62990992,"Trine 2",play,2.6,0 -62990992,"Boson X",purchase,1.0,0 -62990992,"Boson X",play,2.5,0 -62990992,"AI War Fleet Command",purchase,1.0,0 -62990992,"AI War Fleet Command",play,2.5,0 -62990992,"BlazBlue Calamity Trigger",purchase,1.0,0 -62990992,"BlazBlue Calamity Trigger",play,2.5,0 -62990992,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -62990992,"Deus Ex Human Revolution - Director's Cut",play,2.5,0 -62990992,"Rise of Venice",purchase,1.0,0 -62990992,"Rise of Venice",play,2.5,0 -62990992,"Smooth Operators",purchase,1.0,0 -62990992,"Smooth Operators",play,2.5,0 -62990992,"Vox",purchase,1.0,0 -62990992,"Vox",play,2.4,0 -62990992,"Enclave",purchase,1.0,0 -62990992,"Enclave",play,2.4,0 -62990992,"BioShock",purchase,1.0,0 -62990992,"BioShock",play,2.4,0 -62990992,"Why So Evil 2 Dystopia",purchase,1.0,0 -62990992,"Why So Evil 2 Dystopia",play,2.4,0 -62990992,"Farming World",purchase,1.0,0 -62990992,"Farming World",play,2.4,0 -62990992,"Tomb Raider",purchase,1.0,0 -62990992,"Tomb Raider",play,2.4,0 -62990992,"Breach & Clear",purchase,1.0,0 -62990992,"Breach & Clear",play,2.4,0 -62990992,"FX Football - The Manager for Every Football Fan",purchase,1.0,0 -62990992,"FX Football - The Manager for Every Football Fan",play,2.4,0 -62990992,"Heavy Fire Afghanistan",purchase,1.0,0 -62990992,"Heavy Fire Afghanistan",play,2.4,0 -62990992,"Dust An Elysian Tail",purchase,1.0,0 -62990992,"Dust An Elysian Tail",play,2.4,0 -62990992,"Nation Red",purchase,1.0,0 -62990992,"Nation Red",play,2.3,0 -62990992,"The Culling Of The Cows",purchase,1.0,0 -62990992,"The Culling Of The Cows",play,2.3,0 -62990992,"KickBeat Steam Edition",purchase,1.0,0 -62990992,"KickBeat Steam Edition",play,2.3,0 -62990992,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -62990992,"The Witcher 2 Assassins of Kings Enhanced Edition",play,2.3,0 -62990992,"Ichi",purchase,1.0,0 -62990992,"Ichi",play,2.3,0 -62990992,"The Journey Down Chapter One",purchase,1.0,0 -62990992,"The Journey Down Chapter One",play,2.2,0 -62990992,"Contraption Maker",purchase,1.0,0 -62990992,"Contraption Maker",play,2.2,0 -62990992,"Skulls of the Shogun",purchase,1.0,0 -62990992,"Skulls of the Shogun",play,2.2,0 -62990992,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -62990992,"Batman Arkham Origins Blackgate - Deluxe Edition",play,2.2,0 -62990992,"SpellForce 2 - Demons of the Past",purchase,1.0,0 -62990992,"SpellForce 2 - Demons of the Past",play,2.2,0 -62990992,"Tinboy",purchase,1.0,0 -62990992,"Tinboy",play,2.2,0 -62990992,"Always Sometimes Monsters",purchase,1.0,0 -62990992,"Always Sometimes Monsters",play,2.2,0 -62990992,"Star Wolves 3 Civil War",purchase,1.0,0 -62990992,"Star Wolves 3 Civil War",play,2.2,0 -62990992,"BioShock Infinite",purchase,1.0,0 -62990992,"BioShock Infinite",play,2.2,0 -62990992,"Urban Trial Freestyle",purchase,1.0,0 -62990992,"Urban Trial Freestyle",play,2.2,0 -62990992,"Circuits",purchase,1.0,0 -62990992,"Circuits",play,2.1,0 -62990992,"Euro Truck Simulator 2",purchase,1.0,0 -62990992,"Euro Truck Simulator 2",play,2.1,0 -62990992,"Section 8",purchase,1.0,0 -62990992,"Section 8",play,2.1,0 -62990992,"Stealth Bastard Deluxe",purchase,1.0,0 -62990992,"Stealth Bastard Deluxe",play,2.0,0 -62990992,"Cortex Command",purchase,1.0,0 -62990992,"Cortex Command",play,2.0,0 -62990992,"Franchise Hockey Manager 2014",purchase,1.0,0 -62990992,"Franchise Hockey Manager 2014",play,2.0,0 -62990992,"Lunar Flight",purchase,1.0,0 -62990992,"Lunar Flight",play,2.0,0 -62990992,"GRID 2",purchase,1.0,0 -62990992,"GRID 2",play,2.0,0 -62990992,"Galcon Legends",purchase,1.0,0 -62990992,"Galcon Legends",play,2.0,0 -62990992,"Morphopolis",purchase,1.0,0 -62990992,"Morphopolis",play,2.0,0 -62990992,"Shadowgrounds Survivor",purchase,1.0,0 -62990992,"Shadowgrounds Survivor",play,2.0,0 -62990992,"Break Into Zatwor",purchase,1.0,0 -62990992,"Break Into Zatwor",play,2.0,0 -62990992,"Crazy Machines 2",purchase,1.0,0 -62990992,"Crazy Machines 2",play,2.0,0 -62990992,"Cthulhu Saves the World ",purchase,1.0,0 -62990992,"Cthulhu Saves the World ",play,2.0,0 -62990992,"Jazzpunk",purchase,1.0,0 -62990992,"Jazzpunk",play,1.9,0 -62990992,"Giana Sisters Twisted Dreams",purchase,1.0,0 -62990992,"Giana Sisters Twisted Dreams",play,1.9,0 -62990992,"Not The Robots",purchase,1.0,0 -62990992,"Not The Robots",play,1.9,0 -62990992,"Full Mojo Rampage",purchase,1.0,0 -62990992,"Full Mojo Rampage",play,1.9,0 -62990992,"Afterfall InSanity Extended Edition",purchase,1.0,0 -62990992,"Afterfall InSanity Extended Edition",play,1.9,0 -62990992,"Draconian Wars",purchase,1.0,0 -62990992,"Draconian Wars",play,1.9,0 -62990992,"ORION Prelude",purchase,1.0,0 -62990992,"ORION Prelude",play,1.9,0 -62990992,"SCHAR Blue Shield Alliance",purchase,1.0,0 -62990992,"SCHAR Blue Shield Alliance",play,1.9,0 -62990992,"Ballpoint Universe Infinite",purchase,1.0,0 -62990992,"Ballpoint Universe Infinite",play,1.9,0 -62990992,"The Sun at Night",purchase,1.0,0 -62990992,"The Sun at Night",play,1.8,0 -62990992,"Pacific Storm",purchase,1.0,0 -62990992,"Pacific Storm",play,1.8,0 -62990992,"Crusader Kings II",purchase,1.0,0 -62990992,"Crusader Kings II",play,1.8,0 -62990992,"Hotline Miami",purchase,1.0,0 -62990992,"Hotline Miami",play,1.8,0 -62990992,"Talisman Prologue",purchase,1.0,0 -62990992,"Talisman Prologue",play,1.7,0 -62990992,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -62990992,"Resident Evil Revelations 2 / Biohazard Revelations 2",play,1.7,0 -62990992,"A Game of Thrones - Genesis",purchase,1.0,0 -62990992,"A Game of Thrones - Genesis",play,1.7,0 -62990992,"Sanctum 2",purchase,1.0,0 -62990992,"Sanctum 2",play,1.7,0 -62990992,"T.E.C. 3001",purchase,1.0,0 -62990992,"T.E.C. 3001",play,1.7,0 -62990992,"A Bird Story",purchase,1.0,0 -62990992,"A Bird Story",play,1.7,0 -62990992,"Dino D-Day",purchase,1.0,0 -62990992,"Dino D-Day",play,1.7,0 -62990992,"Retro/Grade",purchase,1.0,0 -62990992,"Retro/Grade",play,1.7,0 -62990992,"Paranormal State Poison Spring Collector's Edition",purchase,1.0,0 -62990992,"Paranormal State Poison Spring Collector's Edition",play,1.7,0 -62990992,"Arma Tactics",purchase,1.0,0 -62990992,"Arma Tactics",play,1.7,0 -62990992,"Skara - The Blade Remains",purchase,1.0,0 -62990992,"Skara - The Blade Remains",play,1.7,0 -62990992,"Vanguard Princess",purchase,1.0,0 -62990992,"Vanguard Princess",play,1.7,0 -62990992,"Double Dragon Neon",purchase,1.0,0 -62990992,"Double Dragon Neon",play,1.7,0 -62990992,"Anna - Extended Edition",purchase,1.0,0 -62990992,"Anna - Extended Edition",play,1.6,0 -62990992,"Commander Conquest of the Americas",purchase,1.0,0 -62990992,"Commander Conquest of the Americas",play,1.6,0 -62990992,"Grimm",purchase,1.0,0 -62990992,"Grimm",play,1.6,0 -62990992,"Paper Sorcerer",purchase,1.0,0 -62990992,"Paper Sorcerer",play,1.6,0 -62990992,"Horizon Shift",purchase,1.0,0 -62990992,"Horizon Shift",play,1.6,0 -62990992,"Alchemy Mysteries Prague Legends",purchase,1.0,0 -62990992,"Alchemy Mysteries Prague Legends",play,1.6,0 -62990992,"Zombie Zoeds",purchase,1.0,0 -62990992,"Zombie Zoeds",play,1.6,0 -62990992,"Day of Defeat Source",purchase,1.0,0 -62990992,"Day of Defeat Source",play,1.6,0 -62990992,"Frozen Hearth",purchase,1.0,0 -62990992,"Frozen Hearth",play,1.6,0 -62990992,"Guilty Gear Isuka",purchase,1.0,0 -62990992,"Guilty Gear Isuka",play,1.6,0 -62990992,"Magicka Wizard Wars",purchase,1.0,0 -62990992,"Magicka Wizard Wars",play,1.6,0 -62990992,"Major Mayhem",purchase,1.0,0 -62990992,"Major Mayhem",play,1.6,0 -62990992,"Legend of Mysteria",purchase,1.0,0 -62990992,"Legend of Mysteria",play,1.6,0 -62990992,"Psychonauts",purchase,1.0,0 -62990992,"Psychonauts",play,1.6,0 -62990992,"RADical ROACH Deluxe Edition",purchase,1.0,0 -62990992,"RADical ROACH Deluxe Edition",play,1.5,0 -62990992,"Super Killer Hornet Resurrection",purchase,1.0,0 -62990992,"Super Killer Hornet Resurrection",play,1.5,0 -62990992,"Tower Wars",purchase,1.0,0 -62990992,"Tower Wars",play,1.5,0 -62990992,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -62990992,"Sonic & All-Stars Racing Transformed",play,1.5,0 -62990992,"Demise of Nations Rome",purchase,1.0,0 -62990992,"Demise of Nations Rome",play,1.5,0 -62990992,"Guardians of Middle-earth",purchase,1.0,0 -62990992,"Guardians of Middle-earth",play,1.5,0 -62990992,"Gas Guzzlers Extreme",purchase,1.0,0 -62990992,"Gas Guzzlers Extreme",play,1.5,0 -62990992,"Wizorb",purchase,1.0,0 -62990992,"Wizorb",play,1.5,0 -62990992,"Escape Goat",purchase,1.0,0 -62990992,"Escape Goat",play,1.5,0 -62990992,"SpaceChem",purchase,1.0,0 -62990992,"SpaceChem",play,1.5,0 -62990992,"Jamestown",purchase,1.0,0 -62990992,"Jamestown",play,1.5,0 -62990992,"Deadly 30",purchase,1.0,0 -62990992,"Deadly 30",play,1.5,0 -62990992,"Guncraft",purchase,1.0,0 -62990992,"Guncraft",play,1.5,0 -62990992,"Far Cry 3 Blood Dragon",purchase,1.0,0 -62990992,"Far Cry 3 Blood Dragon",play,1.5,0 -62990992,"Blackguards",purchase,1.0,0 -62990992,"Blackguards",play,1.5,0 -62990992,"Hacker Evolution",purchase,1.0,0 -62990992,"Hacker Evolution",play,1.5,0 -62990992,"BEEP",purchase,1.0,0 -62990992,"BEEP",play,1.5,0 -62990992,"Counter-Strike",purchase,1.0,0 -62990992,"Counter-Strike",play,1.4,0 -62990992,"Europa Universalis III",purchase,1.0,0 -62990992,"Europa Universalis III",play,1.4,0 -62990992,"Dysan the Shapeshifter",purchase,1.0,0 -62990992,"Dysan the Shapeshifter",play,1.4,0 -62990992,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -62990992,"Counter-Strike Condition Zero Deleted Scenes",play,1.4,0 -62990992,"Magnetic By Nature",purchase,1.0,0 -62990992,"Magnetic By Nature",play,1.4,0 -62990992,"Lucius",purchase,1.0,0 -62990992,"Lucius",play,1.4,0 -62990992,"Frozen Synapse",purchase,1.0,0 -62990992,"Frozen Synapse",play,1.4,0 -62990992,"Skyward Collapse",purchase,1.0,0 -62990992,"Skyward Collapse",play,1.4,0 -62990992,"Gunpoint",purchase,1.0,0 -62990992,"Gunpoint",play,1.4,0 -62990992,"Zeno Clash",purchase,1.0,0 -62990992,"Zeno Clash",play,1.4,0 -62990992,"Deadlight",purchase,1.0,0 -62990992,"Deadlight",play,1.4,0 -62990992,"Rhythm Destruction",purchase,1.0,0 -62990992,"Rhythm Destruction",play,1.4,0 -62990992,"Blaster Shooter GunGuy!",purchase,1.0,0 -62990992,"Blaster Shooter GunGuy!",play,1.4,0 -62990992,"Party of Sin",purchase,1.0,0 -62990992,"Party of Sin",play,1.3,0 -62990992,"Loadout",purchase,1.0,0 -62990992,"Loadout",play,1.3,0 -62990992,"Ittle Dew",purchase,1.0,0 -62990992,"Ittle Dew",play,1.3,0 -62990992,"Uriel's Chasm",purchase,1.0,0 -62990992,"Uriel's Chasm",play,1.3,0 -62990992,"Castle Crashers",purchase,1.0,0 -62990992,"Castle Crashers",play,1.3,0 -62990992,"Post Master ",purchase,1.0,0 -62990992,"Post Master ",play,1.3,0 -62990992,"Strife Veteran Edition",purchase,1.0,0 -62990992,"Strife Veteran Edition",play,1.3,0 -62990992,"System Shock 2",purchase,1.0,0 -62990992,"System Shock 2",play,1.3,0 -62990992,"SteamWorld Dig",purchase,1.0,0 -62990992,"SteamWorld Dig",play,1.3,0 -62990992,"Sakura Clicker",purchase,1.0,0 -62990992,"Sakura Clicker",play,1.3,0 -62990992,"Dracula's Legacy",purchase,1.0,0 -62990992,"Dracula's Legacy",play,1.3,0 -62990992,"Deponia",purchase,1.0,0 -62990992,"Deponia",play,1.3,0 -62990992,"Nightmares from the Deep The Cursed Heart",purchase,1.0,0 -62990992,"Nightmares from the Deep The Cursed Heart",play,1.3,0 -62990992,"Epigenesis",purchase,1.0,0 -62990992,"Epigenesis",play,1.3,0 -62990992,"March of the Eagles",purchase,1.0,0 -62990992,"March of the Eagles",play,1.3,0 -62990992,"Shadows of War",purchase,1.0,0 -62990992,"Shadows of War",play,1.3,0 -62990992,"Gun Monkeys",purchase,1.0,0 -62990992,"Gun Monkeys",play,1.3,0 -62990992,"How to Survive",purchase,1.0,0 -62990992,"How to Survive",play,1.3,0 -62990992,"Survivor Squad",purchase,1.0,0 -62990992,"Survivor Squad",play,1.2,0 -62990992,"Hammerwatch",purchase,1.0,0 -62990992,"Hammerwatch",play,1.2,0 -62990992,"Shadowgrounds",purchase,1.0,0 -62990992,"Shadowgrounds",play,1.2,0 -62990992,"Shadowgate MacVenture Series",purchase,1.0,0 -62990992,"Shadowgate MacVenture Series",play,1.2,0 -62990992,"Particula",purchase,1.0,0 -62990992,"Particula",play,1.2,0 -62990992,"Gray Matter",purchase,1.0,0 -62990992,"Gray Matter",play,1.2,0 -62990992,"Constant C",purchase,1.0,0 -62990992,"Constant C",play,1.2,0 -62990992,"Horizon",purchase,1.0,0 -62990992,"Horizon",play,1.2,0 -62990992,"Fairy Bloom Freesia",purchase,1.0,0 -62990992,"Fairy Bloom Freesia",play,1.2,0 -62990992,"Superfrog HD",purchase,1.0,0 -62990992,"Superfrog HD",play,1.2,0 -62990992,"Freedom Fall",purchase,1.0,0 -62990992,"Freedom Fall",play,1.2,0 -62990992,"DiRT 3",purchase,1.0,0 -62990992,"DiRT 3",play,1.2,0 -62990992,"AirBuccaneers",purchase,1.0,0 -62990992,"AirBuccaneers",play,1.2,0 -62990992,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -62990992,"Beatbuddy Tale of the Guardians",play,1.2,0 -62990992,"Bloody Trapland",purchase,1.0,0 -62990992,"Bloody Trapland",play,1.1,0 -62990992,"Street Racing Syndicate",purchase,1.0,0 -62990992,"Street Racing Syndicate",play,1.1,0 -62990992,"Deus Ex Human Revolution",purchase,1.0,0 -62990992,"Deus Ex Human Revolution",play,1.1,0 -62990992,"Gunslugs 2",purchase,1.0,0 -62990992,"Gunslugs 2",play,1.1,0 -62990992,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -62990992,"Nosferatu The Wrath of Malachi",play,1.1,0 -62990992,"Teleglitch Die More Edition",purchase,1.0,0 -62990992,"Teleglitch Die More Edition",play,1.1,0 -62990992,"Super Sanctum TD",purchase,1.0,0 -62990992,"Super Sanctum TD",play,1.1,0 -62990992,"The Lost Crown",purchase,1.0,0 -62990992,"The Lost Crown",play,1.1,0 -62990992,"Ring Runner Flight of the Sages",purchase,1.0,0 -62990992,"Ring Runner Flight of the Sages",play,1.1,0 -62990992,"Insurgency",purchase,1.0,0 -62990992,"Insurgency",play,1.1,0 -62990992,"Sparkle 2 Evo",purchase,1.0,0 -62990992,"Sparkle 2 Evo",play,1.1,0 -62990992,"Bunch Of Heroes",purchase,1.0,0 -62990992,"Bunch Of Heroes",play,1.0,0 -62990992,"Rome Total War",purchase,1.0,0 -62990992,"Rome Total War",play,1.0,0 -62990992,"Final Dusk",purchase,1.0,0 -62990992,"Final Dusk",play,1.0,0 -62990992,"STORM Frontline Nation",purchase,1.0,0 -62990992,"STORM Frontline Nation",play,1.0,0 -62990992,"Borealis",purchase,1.0,0 -62990992,"Borealis",play,1.0,0 -62990992,"Caster",purchase,1.0,0 -62990992,"Caster",play,1.0,0 -62990992,"Slam Bolt Scrappers",purchase,1.0,0 -62990992,"Slam Bolt Scrappers",play,1.0,0 -62990992,"The Swapper",purchase,1.0,0 -62990992,"The Swapper",play,1.0,0 -62990992,"Super Motherload",purchase,1.0,0 -62990992,"Super Motherload",play,1.0,0 -62990992,"Bermuda",purchase,1.0,0 -62990992,"Bermuda",play,1.0,0 -62990992,"DETOUR",purchase,1.0,0 -62990992,"DETOUR",play,1.0,0 -62990992,"Mortal Kombat Komplete Edition",purchase,1.0,0 -62990992,"Mortal Kombat Komplete Edition",play,1.0,0 -62990992,"Knights and Merchants",purchase,1.0,0 -62990992,"Knights and Merchants",play,1.0,0 -62990992,"Draw a Stickman EPIC",purchase,1.0,0 -62990992,"Draw a Stickman EPIC",play,1.0,0 -62990992,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -62990992,"Tiny and Big Grandpa's Leftovers",play,0.9,0 -62990992,"Jet Gunner",purchase,1.0,0 -62990992,"Jet Gunner",play,0.9,0 -62990992,"RPG Maker VX Ace",purchase,1.0,0 -62990992,"RPG Maker VX Ace",play,0.9,0 -62990992,"Day One Garry's Incident",purchase,1.0,0 -62990992,"Day One Garry's Incident",play,0.9,0 -62990992,"Kairo",purchase,1.0,0 -62990992,"Kairo",play,0.9,0 -62990992,"Platypus",purchase,1.0,0 -62990992,"Platypus",play,0.9,0 -62990992,"Wargame AirLand Battle",purchase,1.0,0 -62990992,"Wargame AirLand Battle",play,0.9,0 -62990992,"To the Moon",purchase,1.0,0 -62990992,"To the Moon",play,0.9,0 -62990992,"Volt",purchase,1.0,0 -62990992,"Volt",play,0.9,0 -62990992,"Dungeons The Eye of Draconus",purchase,1.0,0 -62990992,"Dungeons The Eye of Draconus",play,0.9,0 -62990992,"99 Levels To Hell",purchase,1.0,0 -62990992,"99 Levels To Hell",play,0.9,0 -62990992,"Enemy Mind",purchase,1.0,0 -62990992,"Enemy Mind",play,0.9,0 -62990992,"Camera Obscura",purchase,1.0,0 -62990992,"Camera Obscura",play,0.8,0 -62990992,"Waveform",purchase,1.0,0 -62990992,"Waveform",play,0.8,0 -62990992,"Snuggle Truck",purchase,1.0,0 -62990992,"Snuggle Truck",play,0.7,0 -62990992,"Yet Another Zombie Defense",purchase,1.0,0 -62990992,"Yet Another Zombie Defense",play,0.7,0 -62990992,"Eleusis",purchase,1.0,0 -62990992,"Eleusis",play,0.7,0 -62990992,"Grimind",purchase,1.0,0 -62990992,"Grimind",play,0.7,0 -62990992,"Defy Gravity",purchase,1.0,0 -62990992,"Defy Gravity",play,0.6,0 -62990992,"Dead Horde",purchase,1.0,0 -62990992,"Dead Horde",play,0.6,0 -62990992,"I, Zombie",purchase,1.0,0 -62990992,"I, Zombie",play,0.6,0 -62990992,"Dreaming Sarah",purchase,1.0,0 -62990992,"Dreaming Sarah",play,0.6,0 -62990992,"Command and Conquer 3 Kane's Wrath",purchase,1.0,0 -62990992,"Command and Conquer 3 Kane's Wrath",play,0.5,0 -62990992,"Out There Somewhere",purchase,1.0,0 -62990992,"Out There Somewhere",play,0.5,0 -62990992,"Mirror's Edge",purchase,1.0,0 -62990992,"Mirror's Edge",play,0.5,0 -62990992,"Torchlight",purchase,1.0,0 -62990992,"Torchlight",play,0.5,0 -62990992,"Far Cry 3",purchase,1.0,0 -62990992,"Far Cry 3",play,0.5,0 -62990992,"Wargame European Escalation",purchase,1.0,0 -62990992,"Wargame European Escalation",play,0.5,0 -62990992,"Alien Breed 3 Descent",purchase,1.0,0 -62990992,"Alien Breed 3 Descent",play,0.4,0 -62990992,"Total War Battles KINGDOM",purchase,1.0,0 -62990992,"Total War Battles KINGDOM",play,0.4,0 -62990992,"Assassin's Creed III",purchase,1.0,0 -62990992,"Assassin's Creed III",play,0.4,0 -62990992,"Hitman Sniper Challenge",purchase,1.0,0 -62990992,"Hitman Sniper Challenge",play,0.3,0 -62990992,"Just Cause 2",purchase,1.0,0 -62990992,"Just Cause 2",play,0.3,0 -62990992,"Death Rally",purchase,1.0,0 -62990992,"Death Rally",play,0.3,0 -62990992,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -62990992,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.3,0 -62990992,"Max Payne 3",purchase,1.0,0 -62990992,"Max Payne 3",play,0.2,0 -62990992,"Operation Flashpoint Red River",purchase,1.0,0 -62990992,"Operation Flashpoint Red River",play,0.2,0 -62990992,"Sanctum",purchase,1.0,0 -62990992,"Sanctum",play,0.2,0 -62990992,"DiRT 2",purchase,1.0,0 -62990992,"DiRT 2",play,0.2,0 -62990992,"Europa Universalis Rome - Gold Edition",purchase,1.0,0 -62990992,"Europa Universalis Rome - Gold Edition",play,0.2,0 -62990992,"Elven Legacy",purchase,1.0,0 -62990992,"Elven Legacy",play,0.2,0 -62990992,"Sunrider Mask of Arcadius",purchase,1.0,0 -62990992,"Sunrider Mask of Arcadius",play,0.2,0 -62990992,"Fractured Space",purchase,1.0,0 -62990992,"Fractured Space",play,0.1,0 -62990992,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -62990992,"Warhammer 40,000 Dawn of War Winter Assault",play,0.1,0 -62990992,"King Arthur II - The Role-playing Wargame",purchase,1.0,0 -62990992,"King Arthur II - The Role-playing Wargame",play,0.1,0 -62990992,"Crysis Wars",purchase,1.0,0 -62990992,"Crysis Wars",play,0.1,0 -62990992,"Crysis 2 Maximum Edition",purchase,1.0,0 -62990992,"Crysis 2 Maximum Edition",play,0.1,0 -62990992,"Crysis",purchase,1.0,0 -62990992,"Crysis",play,0.1,0 -62990992,"Company of Heroes (New Steam Version)",purchase,1.0,0 -62990992,"Company of Heroes (New Steam Version)",play,0.1,0 -62990992,"Blades of Time",purchase,1.0,0 -62990992,"Blades of Time",play,0.1,0 -62990992,"Medieval II Total War Kingdoms",purchase,1.0,0 -62990992,"Grand Theft Auto IV",purchase,1.0,0 -62990992,"FlatOut Ultimate Carnage",purchase,1.0,0 -62990992,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -62990992,"Hearts of Iron II Complete",purchase,1.0,0 -62990992,"BioShock 2",purchase,1.0,0 -62990992,"Command and Conquer Red Alert 3",purchase,1.0,0 -62990992,"Crysis Warhead",purchase,1.0,0 -62990992,"The Kings' Crusade",purchase,1.0,0 -62990992,"Knights of Honor",purchase,1.0,0 -62990992,"Company of Heroes",purchase,1.0,0 -62990992,"Titan Quest",purchase,1.0,0 -62990992,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -62990992,"Vessel",purchase,1.0,0 -62990992,"Dungeon Siege III",purchase,1.0,0 -62990992,"King Arthur Collection",purchase,1.0,0 -62990992,"DiRT Showdown",purchase,1.0,0 -62990992,"Hocus Pocus",purchase,1.0,0 -62990992,"East India Company",purchase,1.0,0 -62990992,"DarkStar One",purchase,1.0,0 -62990992,"Thunder Wolves",purchase,1.0,0 -62990992,"Company of Heroes Tales of Valor",purchase,1.0,0 -62990992,"Wacky Wheels",purchase,1.0,0 -62990992,"Kung Fury",purchase,1.0,0 -62990992,"Planets Under Attack",purchase,1.0,0 -62990992,"METAL SLUG DEFENSE",purchase,1.0,0 -62990992,"Sacred 2 Gold",purchase,1.0,0 -62990992,"The Witcher Enhanced Edition",purchase,1.0,0 -62990992,"Captain Morgane and the Golden Turtle",purchase,1.0,0 -62990992,"Worms Crazy Golf",purchase,1.0,0 -62990992,"TERA",purchase,1.0,0 -62990992,"Metro 2033",purchase,1.0,0 -62990992,"Rome Total War - Alexander",purchase,1.0,0 -62990992,"Lead and Gold - Gangs of the Wild West",purchase,1.0,0 -62990992,"Majesty 2",purchase,1.0,0 -62990992,"Grand Theft Auto San Andreas",purchase,1.0,0 -62990992,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -62990992,"1000 Amps",purchase,1.0,0 -62990992,"Blood Bowl Legendary Edition",purchase,1.0,0 -62990992,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -62990992,"3DMark API Overhead feature test",purchase,1.0,0 -62990992,"3DMark Cloud Gate benchmark",purchase,1.0,0 -62990992,"3DMark Fire Strike benchmark",purchase,1.0,0 -62990992,"3DMark Ice Storm benchmark",purchase,1.0,0 -62990992,"3DMark Sky Diver benchmark",purchase,1.0,0 -62990992,"8BitBoy",purchase,1.0,0 -62990992,"8BitMMO",purchase,1.0,0 -62990992,"A.I.M.2 Clan Wars",purchase,1.0,0 -62990992,"AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome",purchase,1.0,0 -62990992,"ACE - Arena Cyber Evolution",purchase,1.0,0 -62990992,"Adventures of Shuggy",purchase,1.0,0 -62990992,"Age of Empires II HD The Forgotten",purchase,1.0,0 -62990992,"Air Conflicts Pacific Carriers",purchase,1.0,0 -62990992,"Alien Breed 2 Assault",purchase,1.0,0 -62990992,"Alien Breed Impact",purchase,1.0,0 -62990992,"Alien Carnage / Halloween Harry",purchase,1.0,0 -62990992,"Alien Rage - Unlimited",purchase,1.0,0 -62990992,"Aliens Colonial Marines",purchase,1.0,0 -62990992,"Aliens vs. Predator",purchase,1.0,0 -62990992,"Alpha Prime",purchase,1.0,0 -62990992,"American Conquest",purchase,1.0,0 -62990992,"Amnesia The Dark Descent",purchase,1.0,0 -62990992,"And Yet It Moves",purchase,1.0,0 -62990992,"AquaNox",purchase,1.0,0 -62990992,"AquaNox 2 Revelation",purchase,1.0,0 -62990992,"ArcaniA",purchase,1.0,0 -62990992,"Archeblade",purchase,1.0,0 -62990992,"Arctic Adventure",purchase,1.0,0 -62990992,"Arma 2",purchase,1.0,0 -62990992,"Arma Cold War Assault",purchase,1.0,0 -62990992,"Arma Gold Edition",purchase,1.0,0 -62990992,"Arms Dealer",purchase,1.0,0 -62990992,"Arsenal of Democracy",purchase,1.0,0 -62990992,"Avadon 2 The Corruption",purchase,1.0,0 -62990992,"Avencast",purchase,1.0,0 -62990992,"Aveyond 3-2 Gates of Night",purchase,1.0,0 -62990992,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -62990992,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -62990992,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -62990992,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -62990992,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -62990992,"Ballads of Reemus When the Bed Bites",purchase,1.0,0 -62990992,"Balls of Steel",purchase,1.0,0 -62990992,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -62990992,"Batman Arkham Origins - Initiation",purchase,1.0,0 -62990992,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -62990992,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -62990992,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -62990992,"Bio Menace",purchase,1.0,0 -62990992,"Bionic Commando Rearmed",purchase,1.0,0 -62990992,"Bird Assassin",purchase,1.0,0 -62990992,"Black Mirror",purchase,1.0,0 -62990992,"Blake Stone Aliens of Gold",purchase,1.0,0 -62990992,"Blake Stone Planet Strike",purchase,1.0,0 -62990992,"Bloop",purchase,1.0,0 -62990992,"Blue Toad Murder Files - The Mysteries of Little Riddle",purchase,1.0,0 -62990992,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -62990992,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -62990992,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -62990992,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -62990992,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -62990992,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -62990992,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -62990992,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -62990992,"Brawlhalla",purchase,1.0,0 -62990992,"Breath of Death VII ",purchase,1.0,0 -62990992,"Bumbledore",purchase,1.0,0 -62990992,"C-RUSH",purchase,1.0,0 -62990992,"Capsized",purchase,1.0,0 -62990992,"Car Mechanic Simulator 2014",purchase,1.0,0 -62990992,"Castlevania Lords of Shadow Mirror of Fate HD",purchase,1.0,0 -62990992,"Cast of the Seven Godsends - Soundtrack",purchase,1.0,0 -62990992,"Chains",purchase,1.0,0 -62990992,"Chaos Domain",purchase,1.0,0 -62990992,"Clicker Heroes",purchase,1.0,0 -62990992,"Clive Barker's Jericho",purchase,1.0,0 -62990992,"Cogs",purchase,1.0,0 -62990992,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -62990992,"Coldfire Keep",purchase,1.0,0 -62990992,"Color Symphony",purchase,1.0,0 -62990992,"Command and Conquer 4 Tiberian Twilight",purchase,1.0,0 -62990992,"Commandos 2 Men of Courage",purchase,1.0,0 -62990992,"Commandos 3 Destination Berlin",purchase,1.0,0 -62990992,"Commandos Behind Enemy Lines",purchase,1.0,0 -62990992,"Commandos Beyond the Call of Duty",purchase,1.0,0 -62990992,"Company of Heroes Opposing Fronts",purchase,1.0,0 -62990992,"Confrontation",purchase,1.0,0 -62990992,"Construction Machines 2014",purchase,1.0,0 -62990992,"Corona MotorSport",purchase,1.0,0 -62990992,"Cosmo's Cosmic Adventure",purchase,1.0,0 -62990992,"Cossacks European Wars",purchase,1.0,0 -62990992,"Cossacks II Napoleonic Wars",purchase,1.0,0 -62990992,"Counter-Strike Condition Zero",purchase,1.0,0 -62990992,"Counter-Strike Nexon Zombies",purchase,1.0,0 -62990992,"Crash Time II",purchase,1.0,0 -62990992,"Crayon Physics Deluxe",purchase,1.0,0 -62990992,"Crazy Taxi",purchase,1.0,0 -62990992,"CrossCode",purchase,1.0,0 -62990992,"Crystal Caves",purchase,1.0,0 -62990992,"Cube & Star An Arbitrary Love",purchase,1.0,0 -62990992,"Cubesis",purchase,1.0,0 -62990992,"Damnation",purchase,1.0,0 -62990992,"Dark Ages",purchase,1.0,0 -62990992,"Darkest Hour A Hearts of Iron Game",purchase,1.0,0 -62990992,"Darkest Hour Europe '44-'45",purchase,1.0,0 -62990992,"Darwinia",purchase,1.0,0 -62990992,"Day of Defeat",purchase,1.0,0 -62990992,"Dead Island Epidemic",purchase,1.0,0 -62990992,"Deadlight Original Soundtrack",purchase,1.0,0 -62990992,"Dead Space",purchase,1.0,0 -62990992,"Dear Esther",purchase,1.0,0 -62990992,"Deathmatch Classic",purchase,1.0,0 -62990992,"Death Rally (Classic)",purchase,1.0,0 -62990992,"DEFCON",purchase,1.0,0 -62990992,"Defenders of Ardania",purchase,1.0,0 -62990992,"Demigod",purchase,1.0,0 -62990992,"Demolition, Inc.",purchase,1.0,0 -62990992,"Depth Hunter 2 Ocean Mysteries",purchase,1.0,0 -62990992,"Disciples III Reincarnation",purchase,1.0,0 -62990992,"Dismal Swamp DLC",purchase,1.0,0 -62990992,"Divinity II Developer's Cut",purchase,1.0,0 -62990992,"Dogs of War Online - Beta",purchase,1.0,0 -62990992,"Dracula 2 The Last Sanctuary",purchase,1.0,0 -62990992,"Dracula 3 The Path of the Dragon",purchase,1.0,0 -62990992,"Dracula The Resurrection",purchase,1.0,0 -62990992,"Dragon's Prophet (EU)",purchase,1.0,0 -62990992,"Dragon Age Origins",purchase,1.0,0 -62990992,"Drakensang",purchase,1.0,0 -62990992,"Dreaming Sarah OST",purchase,1.0,0 -62990992,"Duke Nukem",purchase,1.0,0 -62990992,"Duke Nukem 2",purchase,1.0,0 -62990992,"Duke Nukem 3D",purchase,1.0,0 -62990992,"Duke Nukem Manhattan Project",purchase,1.0,0 -62990992,"Dungeon Siege",purchase,1.0,0 -62990992,"Dungeon Siege 2",purchase,1.0,0 -62990992,"Dwarfs!?",purchase,1.0,0 -62990992,"Earth 2150 The Moon Project",purchase,1.0,0 -62990992,"East India Company Gold",purchase,1.0,0 -62990992,"English Country Tune",purchase,1.0,0 -62990992,"Etherlords",purchase,1.0,0 -62990992,"Etherlords II",purchase,1.0,0 -62990992,"Europa Universalis Rome - Vae Victis",purchase,1.0,0 -62990992,"Europa Universalis III Divine Wind",purchase,1.0,0 -62990992,"Europa Universalis III Heir to the Throne",purchase,1.0,0 -62990992,"F.E.A.R.",purchase,1.0,0 -62990992,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -62990992,"F.E.A.R. 3",purchase,1.0,0 -62990992,"F.E.A.R. Extraction Point",purchase,1.0,0 -62990992,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -62990992,"Fable - The Lost Chapters",purchase,1.0,0 -62990992,"Far Cry",purchase,1.0,0 -62990992,"Far Cry 2",purchase,1.0,0 -62990992,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -62990992,"Farm Machines Championships 2014",purchase,1.0,0 -62990992,"FEZ",purchase,1.0,0 -62990992,"Fieldrunners",purchase,1.0,0 -62990992,"Fieldrunners 2",purchase,1.0,0 -62990992,"Firefall",purchase,1.0,0 -62990992,"FlatOut",purchase,1.0,0 -62990992,"FlatOut 2",purchase,1.0,0 -62990992,"Flatout 3",purchase,1.0,0 -62990992,"FLYING TIGERS SHADOWS OVER CHINA",purchase,1.0,0 -62990992,"FreeStyle2 Street Basketball",purchase,1.0,0 -62990992,"Free to Play",purchase,1.0,0 -62990992,"Future Wars",purchase,1.0,0 -62990992,"FX Football 3D Match",purchase,1.0,0 -62990992,"Galactic Civilizations I Ultimate Edition",purchase,1.0,0 -62990992,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -62990992,"Galaxy on Fire 2 Full HD",purchase,1.0,0 -62990992,"Galcon Fusion",purchase,1.0,0 -62990992,"Game of Thrones ",purchase,1.0,0 -62990992,"Garshasp The Monster Slayer",purchase,1.0,0 -62990992,"Gettysburg Armored Warfare",purchase,1.0,0 -62990992,"Grand Theft Auto San Andreas",purchase,1.0,0 -62990992,"Grand Theft Auto Vice City",purchase,1.0,0 -62990992,"Grand Theft Auto Vice City",purchase,1.0,0 -62990992,"Grand Theft Auto III",purchase,1.0,0 -62990992,"Grand Theft Auto III",purchase,1.0,0 -62990992,"Gratuitous Tank Battles",purchase,1.0,0 -62990992,"GRID",purchase,1.0,0 -62990992,"GT Legends",purchase,1.0,0 -62990992,"GT Power Expansion",purchase,1.0,0 -62990992,"GTR 2 - FIA GT Racing Game",purchase,1.0,0 -62990992,"GTR Evolution",purchase,1.0,0 -62990992,"Hacker Evolution Duality",purchase,1.0,0 -62990992,"Half-Life",purchase,1.0,0 -62990992,"Half-Life 2 Deathmatch",purchase,1.0,0 -62990992,"Half-Life 2 Episode One",purchase,1.0,0 -62990992,"Half-Life 2 Episode Two",purchase,1.0,0 -62990992,"Half-Life 2 Lost Coast",purchase,1.0,0 -62990992,"Half-Life Blue Shift",purchase,1.0,0 -62990992,"Half-Life Opposing Force",purchase,1.0,0 -62990992,"Half-Life Source",purchase,1.0,0 -62990992,"Half-Life Deathmatch Source",purchase,1.0,0 -62990992,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",purchase,1.0,0 -62990992,"Hammerfight",purchase,1.0,0 -62990992,"HAWKEN",purchase,1.0,0 -62990992,"Hazard Ops",purchase,1.0,0 -62990992,"Hector Ep 1",purchase,1.0,0 -62990992,"Hector Ep 2",purchase,1.0,0 -62990992,"Hector Ep 3",purchase,1.0,0 -62990992,"Helicopter Simulator 2014 Search and Rescue",purchase,1.0,0 -62990992,"Heroes of Annihilated Empires",purchase,1.0,0 -62990992,"Huntsman - The Orphanage Halloween Edition",purchase,1.0,0 -62990992,"Hyper Fighters",purchase,1.0,0 -62990992,"I Am Vegend",purchase,1.0,0 -62990992,"iBomber Defense Pacific",purchase,1.0,0 -62990992,"Iesabel",purchase,1.0,0 -62990992,"Ignite",purchase,1.0,0 -62990992,"Impire",purchase,1.0,0 -62990992,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -62990992,"International Snooker",purchase,1.0,0 -62990992,"Into The War",purchase,1.0,0 -62990992,"Intrusion 2",purchase,1.0,0 -62990992,"Iron Grip Warlord",purchase,1.0,0 -62990992,"Isaac the Adventurer",purchase,1.0,0 -62990992,"Jagged Alliance Gold",purchase,1.0,0 -62990992,"Jagged Alliance Online Raven Pack",purchase,1.0,0 -62990992,"Jet Car Stunts",purchase,1.0,0 -62990992,"Judge Dredd Dredd vs Death",purchase,1.0,0 -62990992,"Just Cause",purchase,1.0,0 -62990992,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -62990992,"Kane & Lynch Dead Men",purchase,1.0,0 -62990992,"Karateka ",purchase,1.0,0 -62990992,"Karmaflow The Rock Opera Videogame",purchase,1.0,0 -62990992,"Killing Floor - Toy Master",purchase,1.0,0 -62990992,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -62990992,"King Arthur's Gold",purchase,1.0,0 -62990992,"Kingdom Elemental",purchase,1.0,0 -62990992,"Kingdom Wars",purchase,1.0,0 -62990992,"KnightShift",purchase,1.0,0 -62990992,"Koya Rift",purchase,1.0,0 -62990992,"Lara Croft and the Guardian of Light",purchase,1.0,0 -62990992,"Left 4 Dead",purchase,1.0,0 -62990992,"Legends of Aethereus",purchase,1.0,0 -62990992,"Legions of Ashworld",purchase,1.0,0 -62990992,"Leviathan Warships",purchase,1.0,0 -62990992,"Limited Edition",purchase,1.0,0 -62990992,"Litil Divil",purchase,1.0,0 -62990992,"Little Inferno",purchase,1.0,0 -62990992,"Lucid",purchase,1.0,0 -62990992,"Mafia II",purchase,1.0,0 -62990992,"Magicka Vietnam",purchase,1.0,0 -62990992,"Majesty Gold Edition",purchase,1.0,0 -62990992,"Majesty Gold HD",purchase,1.0,0 -62990992,"Major Stryker",purchase,1.0,0 -62990992,"Mare Nostrum",purchase,1.0,0 -62990992,"Math Rescue",purchase,1.0,0 -62990992,"Max Payne",purchase,1.0,0 -62990992,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -62990992,"Max Payne 3 Season Pass",purchase,1.0,0 -62990992,"Mayhem Intergalactic",purchase,1.0,0 -62990992,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -62990992,"Medal of Honor(TM) Single Player",purchase,1.0,0 -62990992,"Medal of Honor Pre-Order",purchase,1.0,0 -62990992,"Men of War",purchase,1.0,0 -62990992,"Might & Magic Duel of Champions",purchase,1.0,0 -62990992,"Miner Wars Arena ",purchase,1.0,0 -62990992,"Monster Bash",purchase,1.0,0 -62990992,"Monstrum ",purchase,1.0,0 -62990992,"Monuments of Mars",purchase,1.0,0 -62990992,"Motte Island",purchase,1.0,0 -62990992,"Mount & Blade With Fire and Sword",purchase,1.0,0 -62990992,"Muffin Knight",purchase,1.0,0 -62990992,"Multiwinia",purchase,1.0,0 -62990992,"Mutant Storm Reloaded",purchase,1.0,0 -62990992,"Mystic Towers",purchase,1.0,0 -62990992,"Naval War Arctic Circle",purchase,1.0,0 -62990992,"Naval Warfare",purchase,1.0,0 -62990992,"NBA 2K13",purchase,1.0,0 -62990992,"NBA 2K14",purchase,1.0,0 -62990992,"NecroVisioN Lost Company",purchase,1.0,0 -62990992,"NiGHTS into Dreams...",purchase,1.0,0 -62990992,"Ninja Guy",purchase,1.0,0 -62990992,"No More Room in Hell",purchase,1.0,0 -62990992,"Of Orcs And Men",purchase,1.0,0 -62990992,"Oil Rush",purchase,1.0,0 -62990992,"OlliOlli",purchase,1.0,0 -62990992,"Omegalodon",purchase,1.0,0 -62990992,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -62990992,"Osmos",purchase,1.0,0 -62990992,"Out of the Park Baseball 14",purchase,1.0,0 -62990992,"Overcast - Walden and the Werewolf - Soundtrack",purchase,1.0,0 -62990992,"Overlord",purchase,1.0,0 -62990992,"Overlord II",purchase,1.0,0 -62990992,"Paganitzu",purchase,1.0,0 -62990992,"Patrician III",purchase,1.0,0 -62990992,"Patrician IV Rise of a Dynasty",purchase,1.0,0 -62990992,"Patrician IV Steam Special Edition",purchase,1.0,0 -62990992,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",purchase,1.0,0 -62990992,"Pharaoh's Tomb",purchase,1.0,0 -62990992,"Pid ",purchase,1.0,0 -62990992,"Pilot Crusader",purchase,1.0,0 -62990992,"Pirates of Black Cove Gold",purchase,1.0,0 -62990992,"Pirates vs Corsairs Davy Jones's Gold",purchase,1.0,0 -62990992,"Pixel Hunter",purchase,1.0,0 -62990992,"Poker Night 2",purchase,1.0,0 -62990992,"Poker Night at the Inventory",purchase,1.0,0 -62990992,"Portal",purchase,1.0,0 -62990992,"Port Royale 2",purchase,1.0,0 -62990992,"Praetorians",purchase,1.0,0 -62990992,"Proteus",purchase,1.0,0 -62990992,"Protocol",purchase,1.0,0 -62990992,"Psychonauts Demo",purchase,1.0,0 -62990992,"Puzzle Agent",purchase,1.0,0 -62990992,"Puzzle Agent 2",purchase,1.0,0 -62990992,"Quake Live",purchase,1.0,0 -62990992,"Qvadriga",purchase,1.0,0 -62990992,"R.U.S.E.",purchase,1.0,0 -62990992,"RACE 07",purchase,1.0,0 -62990992,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -62990992,"RACE Caterham Expansion",purchase,1.0,0 -62990992,"Race The WTCC Game",purchase,1.0,0 -62990992,"RACE On",purchase,1.0,0 -62990992,"Ragnarok Online 2",purchase,1.0,0 -62990992,"Raptor Call of the Shadows (1994 Classic Edition)",purchase,1.0,0 -62990992,"Realms of Chaos",purchase,1.0,0 -62990992,"Realms of the Haunting",purchase,1.0,0 -62990992,"Real Warfare",purchase,1.0,0 -62990992,"Receiver",purchase,1.0,0 -62990992,"Red Faction",purchase,1.0,0 -62990992,"Red Faction Armageddon",purchase,1.0,0 -62990992,"Red Faction II",purchase,1.0,0 -62990992,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -62990992,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -62990992,"Rescue Everyday Heroes",purchase,1.0,0 -62990992,"Ricochet",purchase,1.0,0 -62990992,"RIP",purchase,1.0,0 -62990992,"RIP 2 Strike Back",purchase,1.0,0 -62990992,"RIP 3 The Last Hero",purchase,1.0,0 -62990992,"Rise of the Triad Dark War",purchase,1.0,0 -62990992,"Robocraft",purchase,1.0,0 -62990992,"Robowars",purchase,1.0,0 -62990992,"Rochard - Hard Times",purchase,1.0,0 -62990992,"Roogoo",purchase,1.0,0 -62990992,"Rotieer",purchase,1.0,0 -62990992,"Royal Quest",purchase,1.0,0 -62990992,"RPG Maker Royal Tiles Resource Pack",purchase,1.0,0 -62990992,"RPG Maker Tyler Warren First 50 Battler Pack",purchase,1.0,0 -62990992,"Ruzh Delta Z",purchase,1.0,0 -62990992,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -62990992,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -62990992,"Sacraboar",purchase,1.0,0 -62990992,"Sacred Gold",purchase,1.0,0 -62990992,"Saints Row 2",purchase,1.0,0 -62990992,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -62990992,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -62990992,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -62990992,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -62990992,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -62990992,"Scourge Outbreak - Blindside",purchase,1.0,0 -62990992,"Scourge Outbreak Fan Pack",purchase,1.0,0 -62990992,"Secret Agent",purchase,1.0,0 -62990992,"SEGA Bass Fishing",purchase,1.0,0 -62990992,"Serious Sam 2",purchase,1.0,0 -62990992,"Serious Sam The Random Encounter",purchase,1.0,0 -62990992,"Serious Sam Classic The First Encounter",purchase,1.0,0 -62990992,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -62990992,"Serious Sam Classics Revolution",purchase,1.0,0 -62990992,"Serious Sam Double D XXL",purchase,1.0,0 -62990992,"Serious Sam HD The First Encounter",purchase,1.0,0 -62990992,"Shadow Warrior (Classic)",purchase,1.0,0 -62990992,"Shatter",purchase,1.0,0 -62990992,"Shattered Haven",purchase,1.0,0 -62990992,"SHOGUN Total War - Gold Edition",purchase,1.0,0 -62990992,"Sid Meier's Civilization III Complete",purchase,1.0,0 -62990992,"Sid Meier's Civilization IV",purchase,1.0,0 -62990992,"Sid Meier's Civilization IV",purchase,1.0,0 -62990992,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -62990992,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -62990992,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -62990992,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -62990992,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -62990992,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -62990992,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -62990992,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -62990992,"Sid Meier's Railroads!",purchase,1.0,0 -62990992,"Siege of Turtle Enclave",purchase,1.0,0 -62990992,"Silence of the Sleep",purchase,1.0,0 -62990992,"Sine Mora",purchase,1.0,0 -62990992,"Sins of a Dark Age",purchase,1.0,0 -62990992,"Sky Battles",purchase,1.0,0 -62990992,"SkyDrift",purchase,1.0,0 -62990992,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -62990992,"Sniper Ghost Warrior",purchase,1.0,0 -62990992,"Sniper Ghost Warrior 2",purchase,1.0,0 -62990992,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -62990992,"SOL Exodus",purchase,1.0,0 -62990992,"Sonic Adventure DX",purchase,1.0,0 -62990992,"Sonic Generations",purchase,1.0,0 -62990992,"Space Channel 5 Part 2",purchase,1.0,0 -62990992,"Space Giraffe",purchase,1.0,0 -62990992,"Space Hack",purchase,1.0,0 -62990992,"Space Station Alpha",purchase,1.0,0 -62990992,"Spark Rising",purchase,1.0,0 -62990992,"SpellForce 2 - Demons of the Past - Soundtrack",purchase,1.0,0 -62990992,"SpellForce 2 - Faith in Destiny",purchase,1.0,0 -62990992,"SpellForce 2 Gold Edition",purchase,1.0,0 -62990992,"SpellForce Platinum Edition",purchase,1.0,0 -62990992,"Sportsfriends",purchase,1.0,0 -62990992,"Stargunner",purchase,1.0,0 -62990992,"StarMade",purchase,1.0,0 -62990992,"Star Ruler",purchase,1.0,0 -62990992,"Starseed Pilgrim",purchase,1.0,0 -62990992,"Startopia",purchase,1.0,0 -62990992,"Star Wars - Battlefront II",purchase,1.0,0 -62990992,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -62990992,"Star Wars Dark Forces",purchase,1.0,0 -62990992,"Star Wars Knights of the Old Republic",purchase,1.0,0 -62990992,"Star Wars The Force Unleashed II",purchase,1.0,0 -62990992,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -62990992,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -62990992,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -62990992,"Star Wars Republic Commando",purchase,1.0,0 -62990992,"Star Wars Starfighter",purchase,1.0,0 -62990992,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -62990992,"STCC The Game",purchase,1.0,0 -62990992,"STCC II",purchase,1.0,0 -62990992,"Steam Bandits Outpost",purchase,1.0,0 -62990992,"Steel & Steam Episode 1",purchase,1.0,0 -62990992,"Storm over the Pacific",purchase,1.0,0 -62990992,"Subject 9",purchase,1.0,0 -62990992,"Summoner",purchase,1.0,0 -62990992,"Super Hexagon",purchase,1.0,0 -62990992,"Supreme Commander 2 - Infinite War Battle Pack One",purchase,1.0,0 -62990992,"Supreme Ruler Cold War",purchase,1.0,0 -62990992,"Survivalist",purchase,1.0,0 -62990992,"Sword of the Stars Complete Collection",purchase,1.0,0 -62990992,"Symphony",purchase,1.0,0 -62990992,"Take On Helicopters",purchase,1.0,0 -62990992,"Team Fortress Classic",purchase,1.0,0 -62990992,"Terminal Velocity",purchase,1.0,0 -62990992,"Tesla Effect",purchase,1.0,0 -62990992,"Thank You The Game",purchase,1.0,0 -62990992,"The Bard's Tale",purchase,1.0,0 -62990992,"The Basement Collection",purchase,1.0,0 -62990992,"The Book of Unwritten Tales",purchase,1.0,0 -62990992,"The Book of Unwritten Tales Extras",purchase,1.0,0 -62990992,"The Bureau XCOM Declassified - Code Breakers",purchase,1.0,0 -62990992,"The Bureau XCOM Declassified - Light Plasma Pistol",purchase,1.0,0 -62990992,"The Bureau XCOM Hangar 6 R&D",purchase,1.0,0 -62990992,"The Cameron Files The Secret at Loch Ness",purchase,1.0,0 -62990992,"The Chronicles of Narnia - Prince Caspian",purchase,1.0,0 -62990992,"The Elder Scrolls III Morrowind",purchase,1.0,0 -62990992,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -62990992,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -62990992,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -62990992,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -62990992,"The Great Art Race",purchase,1.0,0 -62990992,"The Great Jitters Pudding Panic",purchase,1.0,0 -62990992,"The Guild Gold Edition",purchase,1.0,0 -62990992,"The Guild II",purchase,1.0,0 -62990992,"The Guild II - Pirates of the European Seas",purchase,1.0,0 -62990992,"The Guild II Renaissance",purchase,1.0,0 -62990992,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -62990992,"The Mighty Quest For Epic Loot",purchase,1.0,0 -62990992,"The Retro Expansion",purchase,1.0,0 -62990992,"The Scourge Project Episode 1 and 2",purchase,1.0,0 -62990992,"The Ship Single Player",purchase,1.0,0 -62990992,"The Ship Tutorial",purchase,1.0,0 -62990992,"The Stanley Parable",purchase,1.0,0 -62990992,"The UnderGarden",purchase,1.0,0 -62990992,"The WTCC 2010 Pack",purchase,1.0,0 -62990992,"Thief Gold",purchase,1.0,0 -62990992,"Third Eye Crime",purchase,1.0,0 -62990992,"Thomas Was Alone",purchase,1.0,0 -62990992,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -62990992,"Tomb Raider Anniversary",purchase,1.0,0 -62990992,"Tomb Raider Chronicles",purchase,1.0,0 -62990992,"Tomb Raider Legend",purchase,1.0,0 -62990992,"Tomb Raider The Last Revelation",purchase,1.0,0 -62990992,"Tomb Raider Underworld",purchase,1.0,0 -62990992,"Tomb Raider I",purchase,1.0,0 -62990992,"Tomb Raider II",purchase,1.0,0 -62990992,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -62990992,"Tom Clancy's Ghost Recon",purchase,1.0,0 -62990992,"Tom Clancy's Ghost Recon Advanced Warfighter 2",purchase,1.0,0 -62990992,"Tom Clancy's Ghost Recon Desert Siege",purchase,1.0,0 -62990992,"Tom Clancy's Ghost Recon Island Thunder",purchase,1.0,0 -62990992,"Tom Clancy's Ghost Recon Phantoms - EU Looks and Power (Assault)",purchase,1.0,0 -62990992,"Tom Clancy's Ghost Recon Phantoms - EU Looks and Power (Recon)",purchase,1.0,0 -62990992,"Tom Clancy's Ghost Recon Phantoms - EU Looks and Power (Support)",purchase,1.0,0 -62990992,"Tom Clancy's Ghost Recon Phantoms - EU Substance with Style pack (Assault)",purchase,1.0,0 -62990992,"Tom Clancy's Ghost Recon Phantoms - EU Substance with Style pack (Recon)",purchase,1.0,0 -62990992,"Tom Clancy's Ghost Recon Phantoms - EU Substance with Style pack (Support)",purchase,1.0,0 -62990992,"Tom Clancy's Ghost Recon Phantoms - EU Support Starter Pack",purchase,1.0,0 -62990992,"Tom Clancy's Ghost Recon Phantoms - EU The Thrill of the Surprise",purchase,1.0,0 -62990992,"Tom Clancy's Ghost Recon Phantoms - EU WAR Madness pack (Assault)",purchase,1.0,0 -62990992,"Tom Clancy's Ghost Recon Phantoms - EU WAR Madness pack (Recon)",purchase,1.0,0 -62990992,"Tom Clancy's Ghost Recon Phantoms - EU WAR Madness pack (Support)",purchase,1.0,0 -62990992,"Total Pro Golf 3",purchase,1.0,0 -62990992,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -62990992,"Tropico",purchase,1.0,0 -62990992,"Tropico 2 Pirate Cove",purchase,1.0,0 -62990992,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -62990992,"Trove",purchase,1.0,0 -62990992,"UFO Afterlight",purchase,1.0,0 -62990992,"Uplink",purchase,1.0,0 -62990992,"Vanguard Princess Director's Cut",purchase,1.0,0 -62990992,"Vertiginous Golf",purchase,1.0,0 -62990992,"Victory Command",purchase,1.0,0 -62990992,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -62990992,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -62990992,"VVVVVV",purchase,1.0,0 -62990992,"Wallace & Gromit Ep 1 Fright of the Bumblebees",purchase,1.0,0 -62990992,"Wallace & Gromit Ep 2 The Last Resort",purchase,1.0,0 -62990992,"Wallace & Gromit Ep 3 Muzzled!",purchase,1.0,0 -62990992,"Wallace & Gromit Ep 4 The Bogey Man",purchase,1.0,0 -62990992,"Warface",purchase,1.0,0 -62990992,"Warhammer 40,000 Kill Team",purchase,1.0,0 -62990992,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -62990992,"War on Folvos",purchase,1.0,0 -62990992,"War Thunder",purchase,1.0,0 -62990992,"Weird Worlds Return to Infinite Space",purchase,1.0,0 -62990992,"Witch's Pranks Frog's Fortune Collector's Edition",purchase,1.0,0 -62990992,"Woody Two-Legs Attack of the Zombie Pirates",purchase,1.0,0 -62990992,"Word Rescue",purchase,1.0,0 -62990992,"World Basketball Tycoon",purchase,1.0,0 -62990992,"World War 2 Time of Wrath",purchase,1.0,0 -62990992,"World War II Panzer Claws",purchase,1.0,0 -62990992,"World War III Black Gold",purchase,1.0,0 -62990992,"Worms Armageddon",purchase,1.0,0 -62990992,"Worms Blast",purchase,1.0,0 -62990992,"Worms Pinball",purchase,1.0,0 -62990992,"Worms Ultimate Mayhem",purchase,1.0,0 -62990992,"WRC 4 FIA WORLD RALLY CHAMPIONSHIP",purchase,1.0,0 -62990992,"X-COM Apocalypse",purchase,1.0,0 -62990992,"X-COM Enforcer",purchase,1.0,0 -62990992,"X-COM Interceptor",purchase,1.0,0 -62990992,"X-COM Terror from the Deep",purchase,1.0,0 -62990992,"X-COM UFO Defense",purchase,1.0,0 -62990992,"XCOM Enemy Within",purchase,1.0,0 -62990992,"Xenophage",purchase,1.0,0 -62990992,"Xpand Rally Xtreme",purchase,1.0,0 -62990992,"Zen Bound 2",purchase,1.0,0 -62990992,"Zombie Driver HD Apocalypse Pack",purchase,1.0,0 -62990992,"Zoo Park",purchase,1.0,0 -106054679,"FTL Faster Than Light",purchase,1.0,0 -106054679,"FTL Faster Than Light",play,0.2,0 -106054679,"Breath of Death VII ",purchase,1.0,0 -106054679,"Cthulhu Saves the World ",purchase,1.0,0 -106054679,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",purchase,1.0,0 -31944667,"Counter-Strike Condition Zero",purchase,1.0,0 -31944667,"Counter-Strike Condition Zero",play,13.3,0 -31944667,"Counter-Strike",purchase,1.0,0 -31944667,"Counter-Strike",play,4.3,0 -31944667,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -31944667,"Day of Defeat",purchase,1.0,0 -31944667,"Deathmatch Classic",purchase,1.0,0 -31944667,"Ricochet",purchase,1.0,0 -65962952,"Aliens vs. Predator",purchase,1.0,0 -65962952,"Aliens vs. Predator",play,1.0,0 -65962952,"Serious Sam 3 BFE",purchase,1.0,0 -109780632,"Portal 2",purchase,1.0,0 -109780632,"Portal 2",play,20.0,0 -109780632,"Team Fortress 2",purchase,1.0,0 -109780632,"Team Fortress 2",play,10.8,0 -109780632,"Garry's Mod",purchase,1.0,0 -109780632,"Garry's Mod",play,8.2,0 -109780632,"Source Filmmaker",purchase,1.0,0 -109780632,"Source Filmmaker",play,2.9,0 -109780632,"Choice of Robots",purchase,1.0,0 -109780632,"Choice of Robots",play,2.1,0 -109780632,"Terraria",purchase,1.0,0 -109780632,"Terraria",play,1.6,0 -109780632,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -109780632,"Microsoft Flight Simulator X Steam Edition",play,1.5,0 -109780632,"FaceRig",purchase,1.0,0 -109780632,"FaceRig",play,1.3,0 -109780632,"Space Engineers",purchase,1.0,0 -109780632,"Space Engineers",play,0.6,0 -109780632,"Universe Sandbox",purchase,1.0,0 -109780632,"Universe Sandbox",play,0.4,0 -109780632,"FaceRig Team Fortress 2 Avatars DLC",purchase,1.0,0 -109780632,"Octodad Free Avatar",purchase,1.0,0 -173447731,"Dota 2",purchase,1.0,0 -173447731,"Dota 2",play,0.6,0 -250955812,"Dota 2",purchase,1.0,0 -250955812,"Dota 2",play,339.0,0 -56157984,"Left 4 Dead",purchase,1.0,0 -56157984,"Left 4 Dead",play,10.7,0 -218478781,"Dota 2",purchase,1.0,0 -218478781,"Dota 2",play,4.0,0 -279316312,"Dota 2",purchase,1.0,0 -279316312,"Dota 2",play,2.4,0 -279316312,"One Manga Day",purchase,1.0,0 -279316312,"Survarium",purchase,1.0,0 -279316312,"Unturned",purchase,1.0,0 -133228469,"South Park The Stick of Truth",purchase,1.0,0 -133228469,"South Park The Stick of Truth",play,18.1,0 -133228469,"Arma 3",purchase,1.0,0 -133228469,"Arma 3",play,6.5,0 -133228469,"Castlevania Lords of Shadow 2",purchase,1.0,0 -133228469,"Castlevania Lords of Shadow 2",play,6.1,0 -133228469,"Thief",purchase,1.0,0 -133228469,"Thief",play,5.1,0 -133228469,"Plague Inc Evolved",purchase,1.0,0 -133228469,"Plague Inc Evolved",play,3.7,0 -133228469,"Garry's Mod",purchase,1.0,0 -133228469,"Garry's Mod",play,2.1,0 -133228469,"Euro Truck Simulator 2",purchase,1.0,0 -133228469,"Euro Truck Simulator 2",play,1.3,0 -133228469,"Arma 3 Zeus",purchase,1.0,0 -133228469,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -133228469,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -179279152,"Dota 2",purchase,1.0,0 -179279152,"Dota 2",play,8.7,0 -57782416,"Counter-Strike Source",purchase,1.0,0 -57782416,"Counter-Strike Source",play,33.0,0 -57782416,"Day of Defeat Source",purchase,1.0,0 -57782416,"Half-Life 2 Deathmatch",purchase,1.0,0 -57782416,"Half-Life 2 Lost Coast",purchase,1.0,0 -290542222,"Borderlands The Pre-Sequel",purchase,1.0,0 -290542222,"Borderlands The Pre-Sequel",play,14.4,0 -290542222,"Anno 1404",purchase,1.0,0 -290542222,"Anno 1404",play,13.4,0 -290542222,"FINAL FANTASY VIII",purchase,1.0,0 -290542222,"FINAL FANTASY VIII",play,3.4,0 -290542222,"Sacred 3",purchase,1.0,0 -290542222,"Sacred 3",play,1.5,0 -290542222,"Fallout New Vegas",purchase,1.0,0 -290542222,"Fallout New Vegas",play,1.1,0 -290542222,"Anno 1404 Venice",purchase,1.0,0 -290542222,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -290542222,"Fallout New Vegas Dead Money",purchase,1.0,0 -290542222,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -290542222,"Sacred 3 Underworld Story",purchase,1.0,0 -290542222,"X-Blades",purchase,1.0,0 -251920440,"Unturned",purchase,1.0,0 -251920440,"Unturned",play,17.4,0 -251920440,"Happy Wars",purchase,1.0,0 -204702638,"Dota 2",purchase,1.0,0 -204702638,"Dota 2",play,1.7,0 -204702638,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -207186541,"Dota 2",purchase,1.0,0 -207186541,"Dota 2",play,48.0,0 -207186541,"Unturned",purchase,1.0,0 -207186541,"Unturned",play,1.1,0 -207186541,"War of the Roses",purchase,1.0,0 -207186541,"RaceRoom Racing Experience ",purchase,1.0,0 -207186541,"Saints Row Gat out of Hell",purchase,1.0,0 -207186541,"Battlegrounds of Eldhelm",purchase,1.0,0 -207186541,"BLOCKADE 3D",purchase,1.0,0 -207186541,"Devil's Workshop pack",purchase,1.0,0 -207186541,"Heroes & Generals",purchase,1.0,0 -207186541,"No More Room in Hell",purchase,1.0,0 -207186541,"Panzar",purchase,1.0,0 -207186541,"Tactical Intervention",purchase,1.0,0 -207186541,"theHunter",purchase,1.0,0 -207186541,"TOME Immortal Arena",purchase,1.0,0 -207186541,"War Thunder",purchase,1.0,0 -239138885,"Dota 2",purchase,1.0,0 -239138885,"Dota 2",play,7.4,0 -245046657,"Zombie Panic Source",purchase,1.0,0 -245046657,"Zombie Panic Source",play,1.4,0 -260057593,"Unturned",purchase,1.0,0 -151817681,"Team Fortress 2",purchase,1.0,0 -151817681,"Team Fortress 2",play,5.0,0 -96648859,"Napoleon Total War",purchase,1.0,0 -96648859,"Napoleon Total War",play,28.0,0 -104235320,"Team Fortress 2",purchase,1.0,0 -104235320,"Team Fortress 2",play,4.7,0 -254924405,"Magic Duels",purchase,1.0,0 -254924405,"Magic Duels",play,8.0,0 -205424925,"Infestation Survivor Stories",purchase,1.0,0 -205424925,"Infestation Survivor Stories",play,0.6,0 -205424925,"GunZ 2 The Second Duel",purchase,1.0,0 -205424925,"Robocraft",purchase,1.0,0 -205424925,"Toribash",purchase,1.0,0 -205424925,"Unturned",purchase,1.0,0 -89564754,"R.U.S.E",purchase,1.0,0 -89564754,"R.U.S.E",play,31.0,0 -89564754,"Homefront",purchase,1.0,0 -89564754,"Homefront",play,23.0,0 -89564754,"R.U.S.E.",purchase,1.0,0 -53122638,"Team Fortress 2",purchase,1.0,0 -53122638,"Team Fortress 2",play,28.0,0 -21316693,"Half-Life 2",purchase,1.0,0 -21316693,"Half-Life 2",play,33.0,0 -21316693,"DC Universe Online",purchase,1.0,0 -21316693,"DC Universe Online",play,30.0,0 -21316693,"Portal 2",purchase,1.0,0 -21316693,"Portal 2",play,26.0,0 -21316693,"Half-Life 2 Episode One",purchase,1.0,0 -21316693,"Half-Life 2 Episode One",play,14.4,0 -21316693,"Half-Life 2 Episode Two",purchase,1.0,0 -21316693,"Half-Life 2 Episode Two",play,13.9,0 -21316693,"Team Fortress 2",purchase,1.0,0 -21316693,"Team Fortress 2",play,8.2,0 -21316693,"Portal",purchase,1.0,0 -21316693,"Portal",play,4.3,0 -21316693,"Left 4 Dead",purchase,1.0,0 -21316693,"Left 4 Dead",play,2.7,0 -21316693,"POSTAL 2",purchase,1.0,0 -21316693,"POSTAL 2",play,2.3,0 -21316693,"Half-Life Source",purchase,1.0,0 -21316693,"Half-Life Source",play,0.4,0 -21316693,"Counter-Strike Source",purchase,1.0,0 -21316693,"Half-Life 2 Deathmatch",purchase,1.0,0 -21316693,"Half-Life 2 Lost Coast",purchase,1.0,0 -21316693,"Half-Life Deathmatch Source",purchase,1.0,0 -21316693,"SiN",purchase,1.0,0 -21316693,"SiN Episodes Emergence",purchase,1.0,0 -21316693,"SiN Multiplayer",purchase,1.0,0 -286657812,"Dota 2",purchase,1.0,0 -286657812,"Dota 2",play,1.2,0 -102540721,"Insurgency Modern Infantry Combat",purchase,1.0,0 -102540721,"Insurgency Modern Infantry Combat",play,4.2,0 -307639284,"Dota 2",purchase,1.0,0 -307639284,"Dota 2",play,16.2,0 -186213909,"Unturned",purchase,1.0,0 -186213909,"Unturned",play,1.4,0 -153390095,"Dota 2",purchase,1.0,0 -153390095,"Dota 2",play,1.6,0 -235290543,"Dota 2",purchase,1.0,0 -235290543,"Dota 2",play,205.0,0 -235290543,"FreeStyle2 Street Basketball",purchase,1.0,0 -235290543,"FreeStyle2 Street Basketball",play,14.8,0 -298516674,"Cities Skylines",purchase,1.0,0 -298516674,"Cities Skylines",play,0.7,0 -176103650,"DOOM 3 BFG Edition",purchase,1.0,0 -176103650,"DOOM 3 BFG Edition",play,7.0,0 -176103650,"Brick-Force",purchase,1.0,0 -176103650,"Mortal Kombat Legacy - Ep. 3 Johnny Cage",purchase,1.0,0 -176103650,"Mortal Kombat Legacy - Ep. 4 Kitana & Mileena (Part 1)",purchase,1.0,0 -176103650,"Mortal Kombat Legacy - Ep. 5 Kitana & Mileena (Part 2)",purchase,1.0,0 -176103650,"Mortal Kombat Legacy - Ep. 6 Raiden",purchase,1.0,0 -176103650,"Mortal Kombat Legacy - Ep. 7 Scorpion and Sub-Zero (Part 1)",purchase,1.0,0 -176103650,"Mortal Kombat Legacy - Ep. 8 Scorpion and Sub-Zero (Part 2)",purchase,1.0,0 -176103650,"Mortal Kombat Legacy - Ep. 9 Cyrax & Sektor",purchase,1.0,0 -176103650,"Unturned",purchase,1.0,0 -176103650,"Warframe",purchase,1.0,0 -199466958,"Dota 2",purchase,1.0,0 -199466958,"Dota 2",play,2.9,0 -136291039,"Dota 2",purchase,1.0,0 -136291039,"Dota 2",play,0.6,0 -297108494,"Unturned",purchase,1.0,0 -167184744,"The Secret World",purchase,1.0,0 -68828361,"Alien Swarm",purchase,1.0,0 -68828361,"Alien Swarm",play,3.7,0 -298236235,"Counter-Strike Global Offensive",purchase,1.0,0 -298236235,"Counter-Strike Global Offensive",play,18.3,0 -116338192,"Football Manager 2013",purchase,1.0,0 -116338192,"Football Manager 2013",play,3.5,0 -266799152,"Unturned",purchase,1.0,0 -266799152,"Unturned",play,1.3,0 -266799152,"Dota 2",purchase,1.0,0 -266799152,"Dota 2",play,0.8,0 -266799152,"Rustbucket Rumble",purchase,1.0,0 -266799152,"Rustbucket Rumble",play,0.2,0 -266799152,"Spooky's House of Jump Scares",purchase,1.0,0 -266799152,"Counter-Strike Nexon Zombies",purchase,1.0,0 -194506370,"Dota 2",purchase,1.0,0 -194506370,"Dota 2",play,0.3,0 -259403281,"Counter-Strike Nexon Zombies",purchase,1.0,0 -259403281,"Counter-Strike Nexon Zombies",play,11.6,0 -259403281,"Metal Reaper Online",purchase,1.0,0 -259403281,"Metal Reaper Online",play,1.4,0 -259403281,"Heroes & Generals",purchase,1.0,0 -259403281,"Heroes & Generals",play,1.0,0 -259403281,"Pool Nation FX",purchase,1.0,0 -39322716,"Batman Arkham Origins",purchase,1.0,0 -39322716,"Batman Arkham Origins",play,33.0,0 -39322716,"Batman Arkham City GOTY",purchase,1.0,0 -39322716,"Batman Arkham City GOTY",play,17.3,0 -39322716,"Half-Life 2",purchase,1.0,0 -39322716,"Half-Life 2",play,15.1,0 -39322716,"Aliens vs. Predator",purchase,1.0,0 -39322716,"Aliens vs. Predator",play,11.6,0 -39322716,"Portal 2",purchase,1.0,0 -39322716,"Portal 2",play,11.5,0 -39322716,"Dead Island",purchase,1.0,0 -39322716,"Dead Island",play,7.2,0 -39322716,"Half-Life 2 Episode Two",purchase,1.0,0 -39322716,"Half-Life 2 Episode Two",play,5.8,0 -39322716,"Portal",purchase,1.0,0 -39322716,"Portal",play,1.7,0 -39322716,"Half-Life 2 Episode One",purchase,1.0,0 -39322716,"Half-Life 2 Episode One",play,0.7,0 -39322716,"BioShock Infinite",purchase,1.0,0 -39322716,"BioShock Infinite",play,0.5,0 -39322716,"Half-Life 2 Lost Coast",purchase,1.0,0 -39322716,"Half-Life 2 Lost Coast",play,0.4,0 -39322716,"Homeworld Remastered Collection",purchase,1.0,0 -39322716,"Homeworld Remastered Collection",play,0.3,0 -39322716,"Fallout New Vegas",purchase,1.0,0 -28113724,"Counter-Strike",purchase,1.0,0 -28113724,"Counter-Strike",play,26.0,0 -28113724,"Call of Duty Black Ops",purchase,1.0,0 -28113724,"Call of Duty Black Ops",play,23.0,0 -28113724,"Day of Defeat",purchase,1.0,0 -28113724,"Day of Defeat",play,18.9,0 -28113724,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -28113724,"Call of Duty Black Ops - Multiplayer",play,15.7,0 -28113724,"Counter-Strike Condition Zero",purchase,1.0,0 -28113724,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -286511722,"UberStrike",purchase,1.0,0 -286511722,"UberStrike",play,9.4,0 -118991581,"Football Manager 2015",purchase,1.0,0 -118991581,"Football Manager 2015",play,718.0,0 -118991581,"Football Manager 2013",purchase,1.0,0 -118991581,"Football Manager 2013",play,582.0,0 -118991581,"Football Manager 2016 Demo",purchase,1.0,0 -127218796,"Dota 2",purchase,1.0,0 -127218796,"Dota 2",play,1.1,0 -148264060,"Dota 2",purchase,1.0,0 -148264060,"Dota 2",play,820.0,0 -148264060,"Team Fortress 2",purchase,1.0,0 -148264060,"Team Fortress 2",play,246.0,0 -148264060,"War Thunder",purchase,1.0,0 -148264060,"War Thunder",play,49.0,0 -148264060,"Garry's Mod",purchase,1.0,0 -148264060,"Garry's Mod",play,36.0,0 -148264060,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -148264060,"Injustice Gods Among Us Ultimate Edition",play,25.0,0 -148264060,"SpeedRunners",purchase,1.0,0 -148264060,"SpeedRunners",play,25.0,0 -148264060,"Loadout",purchase,1.0,0 -148264060,"Loadout",play,13.7,0 -148264060,"Geometry Dash",purchase,1.0,0 -148264060,"Geometry Dash",play,12.3,0 -148264060,"Counter-Strike Global Offensive",purchase,1.0,0 -148264060,"Counter-Strike Global Offensive",play,6.5,0 -148264060,"Transformice",purchase,1.0,0 -148264060,"Transformice",play,2.7,0 -148264060,"Dead Island Epidemic",purchase,1.0,0 -148264060,"Dead Island Epidemic",play,1.2,0 -148264060,"Free to Play",purchase,1.0,0 -148264060,"Free to Play",play,0.7,0 -148264060,"Ace of Spades",purchase,1.0,0 -148264060,"Ace of Spades",play,0.4,0 -148264060,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -195436818,"Dota 2",purchase,1.0,0 -195436818,"Dota 2",play,0.7,0 -43551909,"Football Manager 2009",purchase,1.0,0 -202921867,"Archeblade",purchase,1.0,0 -202921867,"Aura Kingdom",purchase,1.0,0 -202921867,"GunZ 2 The Second Duel",purchase,1.0,0 -202921867,"Loadout",purchase,1.0,0 -202921867,"Marvel Heroes 2015",purchase,1.0,0 -169937489,"Dead Island Riptide",purchase,1.0,0 -169937489,"Dead Island Riptide",play,6.3,0 -169937489,"BioShock Infinite",purchase,1.0,0 -169937489,"BioShock Infinite",play,1.4,0 -169937489,"The Elder Scrolls V Skyrim",purchase,1.0,0 -169937489,"The Elder Scrolls V Skyrim",play,0.7,0 -169937489,"Borderlands 2",purchase,1.0,0 -169937489,"Borderlands 2",play,0.6,0 -169937489,"Batman Arkham Origins",purchase,1.0,0 -169937489,"Batman Arkham Origins",play,0.5,0 -169937489,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -169937489,"Batman Arkham Asylum GOTY Edition",play,0.4,0 -169937489,"Batman Arkham City GOTY",purchase,1.0,0 -169937489,"Batman Arkham City GOTY",play,0.2,0 -169937489,"The Elder Scrolls III Morrowind",purchase,1.0,0 -169937489,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -169937489,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -169937489,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -169937489,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -239021889,"Unturned",purchase,1.0,0 -284165884,"Dota 2",purchase,1.0,0 -284165884,"Dota 2",play,5.7,0 -250429853,"Bloodline Champions",purchase,1.0,0 -250429853,"Sins of a Dark Age",purchase,1.0,0 -250429853,"Strife",purchase,1.0,0 -40280688,"Counter-Strike Source",purchase,1.0,0 -40280688,"Counter-Strike Source",play,609.0,0 -40280688,"Counter-Strike Global Offensive",purchase,1.0,0 -40280688,"Counter-Strike Global Offensive",play,320.0,0 -40280688,"Left 4 Dead 2",purchase,1.0,0 -40280688,"Left 4 Dead 2",play,145.0,0 -40280688,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -40280688,"Call of Duty Modern Warfare 3 - Multiplayer",play,91.0,0 -40280688,"Max Payne 3",purchase,1.0,0 -40280688,"Max Payne 3",play,20.0,0 -40280688,"Call of Duty Modern Warfare 3",purchase,1.0,0 -40280688,"Call of Duty Modern Warfare 3",play,12.1,0 -40280688,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -40280688,"Tom Clancy's Ghost Recon Phantoms - EU",play,4.5,0 -40280688,"Team Fortress 2",purchase,1.0,0 -40280688,"Team Fortress 2",play,4.3,0 -40280688,"Half-Life 2 Deathmatch",purchase,1.0,0 -40280688,"Half-Life 2 Deathmatch",play,3.0,0 -40280688,"Half-Life 2 Episode One",purchase,1.0,0 -40280688,"Half-Life 2 Episode One",play,2.2,0 -40280688,"Half-Life 2 Lost Coast",purchase,1.0,0 -40280688,"Half-Life 2 Lost Coast",play,1.5,0 -40280688,"The Club",purchase,1.0,0 -40280688,"The Club",play,1.3,0 -40280688,"Cities in Motion",purchase,1.0,0 -40280688,"Cities in Motion",play,1.1,0 -40280688,"Sniper Elite V2",purchase,1.0,0 -40280688,"Sniper Elite V2",play,1.0,0 -40280688,"Counter-Strike Nexon Zombies",purchase,1.0,0 -40280688,"Day of Defeat Source",purchase,1.0,0 -40280688,"Far Cry 3",purchase,1.0,0 -40280688,"Half-Life 2",purchase,1.0,0 -40280688,"Half-Life 2 Episode Two",purchase,1.0,0 -40280688,"Portal",purchase,1.0,0 -40280688,"Warface",purchase,1.0,0 -245078207,"City of Steam Arkadia",purchase,1.0,0 -245078207,"City of Steam Arkadia",play,1.4,0 -245078207,"Neverwinter",purchase,1.0,0 -245078207,"Neverwinter",play,1.3,0 -245078207,"Dragons and Titans",purchase,1.0,0 -245078207,"America's Army Proving Grounds",purchase,1.0,0 -245078207,"ArcheAge",purchase,1.0,0 -245078207,"Dragon's Prophet",purchase,1.0,0 -245078207,"Dragon Nest Europe",purchase,1.0,0 -245078207,"Dungeons & Dragons Online",purchase,1.0,0 -245078207,"EverQuest II",purchase,1.0,0 -245078207,"Karos",purchase,1.0,0 -245078207,"Pirates, Vikings, & Knights II",purchase,1.0,0 -245078207,"Pox Nora",purchase,1.0,0 -245078207,"RaiderZ",purchase,1.0,0 -245078207,"Requiem",purchase,1.0,0 -245078207,"Royal Quest",purchase,1.0,0 -245078207,"Run and Fire",purchase,1.0,0 -245078207,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -245078207,"Soldier Front 2",purchase,1.0,0 -245078207,"Star Conflict",purchase,1.0,0 -245078207,"TERA",purchase,1.0,0 -245078207,"The Lord of the Rings Online",purchase,1.0,0 -245078207,"War Thunder",purchase,1.0,0 -302742986,"Dota 2",purchase,1.0,0 -302742986,"Dota 2",play,13.9,0 -10302000,"Football Manager 2015",purchase,1.0,0 -10302000,"Football Manager 2015",play,2503.0,0 -10302000,"Football Manager 2014",purchase,1.0,0 -10302000,"Football Manager 2014",play,1096.0,0 -10302000,"Football Manager 2013",purchase,1.0,0 -10302000,"Football Manager 2013",play,433.0,0 -10302000,"Football Manager 2016",purchase,1.0,0 -10302000,"Football Manager 2016",play,339.0,0 -10302000,"XCOM Enemy Unknown",purchase,1.0,0 -10302000,"XCOM Enemy Unknown",play,112.0,0 -10302000,"Sid Meier's Civilization V",purchase,1.0,0 -10302000,"Sid Meier's Civilization V",play,104.0,0 -10302000,"Wasteland 2",purchase,1.0,0 -10302000,"Wasteland 2",play,58.0,0 -10302000,"Dead State",purchase,1.0,0 -10302000,"Dead State",play,34.0,0 -10302000,"The Elder Scrolls V Skyrim",purchase,1.0,0 -10302000,"The Elder Scrolls V Skyrim",play,31.0,0 -10302000,"This War of Mine",purchase,1.0,0 -10302000,"This War of Mine",play,24.0,0 -10302000,"Company of Heroes",purchase,1.0,0 -10302000,"Company of Heroes",play,17.9,0 -10302000,"Football Manager 2009",purchase,1.0,0 -10302000,"Football Manager 2009",play,17.7,0 -10302000,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -10302000,"Dragon Age Origins - Ultimate Edition",play,12.8,0 -10302000,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -10302000,"RollerCoaster Tycoon 3 Platinum!",play,12.3,0 -10302000,"SimCity 4 Deluxe",purchase,1.0,0 -10302000,"SimCity 4 Deluxe",play,11.2,0 -10302000,"Fallout Tactics",purchase,1.0,0 -10302000,"Fallout Tactics",play,10.0,0 -10302000,"Blackguards",purchase,1.0,0 -10302000,"Blackguards",play,9.5,0 -10302000,"Company of Heroes 2",purchase,1.0,0 -10302000,"Company of Heroes 2",play,7.9,0 -10302000,"Silent Storm Sentinels",purchase,1.0,0 -10302000,"Silent Storm Sentinels",play,7.6,0 -10302000,"Arma 2",purchase,1.0,0 -10302000,"Arma 2",play,3.5,0 -10302000,"Counter-Strike Source",purchase,1.0,0 -10302000,"Counter-Strike Source",play,2.5,0 -10302000,"Company of Heroes (New Steam Version)",purchase,1.0,0 -10302000,"Company of Heroes (New Steam Version)",play,1.8,0 -10302000,"Garry's Mod",purchase,1.0,0 -10302000,"Garry's Mod",play,0.6,0 -10302000,"Company of Heroes Opposing Fronts",purchase,1.0,0 -10302000,"Company of Heroes Opposing Fronts",play,0.2,0 -10302000,"Warmachine Tactics",purchase,1.0,0 -10302000,"Half-Life 2",purchase,1.0,0 -10302000,"Darkest Hour Europe '44-'45",purchase,1.0,0 -10302000,"Half-Life 2 Deathmatch",purchase,1.0,0 -10302000,"Half-Life 2 Lost Coast",purchase,1.0,0 -10302000,"Mare Nostrum",purchase,1.0,0 -10302000,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -10302000,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -10302000,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -10302000,"Silent Storm",purchase,1.0,0 -10302000,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -10302000,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -10302000,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -10302000,"The Ship",purchase,1.0,0 -10302000,"The Ship Tutorial",purchase,1.0,0 -10302000,"Wasteland 1 - The Original Classic",purchase,1.0,0 -10302000,"Wasteland 2 Director's Cut",purchase,1.0,0 -10302000,"XCOM Enemy Within",purchase,1.0,0 -248235621,"Unturned",purchase,1.0,0 -293349681,"Dota 2",purchase,1.0,0 -293349681,"Dota 2",play,10.4,0 -198309472,"Cry of Fear",purchase,1.0,0 -198309472,"Cry of Fear",play,0.5,0 -68952161,"Portal",purchase,1.0,0 -68952161,"Portal",play,0.3,0 -111498455,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -111498455,"Fallout 3 - Game of the Year Edition",play,70.0,0 -111498455,"Crysis 2 Maximum Edition",purchase,1.0,0 -111498455,"Crysis 2 Maximum Edition",play,27.0,0 -111498455,"Metro 2033",purchase,1.0,0 -111498455,"Metro 2033",play,22.0,0 -111498455,"Crysis",purchase,1.0,0 -111498455,"Crysis",play,19.2,0 -111498455,"Crysis Warhead",purchase,1.0,0 -111498455,"Crysis Warhead",play,10.7,0 -111498455,"Alien Breed Impact",purchase,1.0,0 -111498455,"Alien Breed Impact",play,10.5,0 -111498455,"Aliens vs. Predator",purchase,1.0,0 -111498455,"Aliens vs. Predator",play,9.6,0 -111498455,"Half-Life 2",purchase,1.0,0 -111498455,"Half-Life 2",play,9.4,0 -111498455,"Alien Breed 2 Assault",purchase,1.0,0 -111498455,"Alien Breed 2 Assault",play,7.3,0 -111498455,"Alien Breed 3 Descent",purchase,1.0,0 -111498455,"Alien Breed 3 Descent",play,7.2,0 -111498455,"Deus Ex Human Revolution",purchase,1.0,0 -111498455,"Deus Ex Human Revolution",play,0.5,0 -111498455,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -111498455,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.4,0 -111498455,"Crysis Wars",purchase,1.0,0 -111498455,"Half-Life 2 Lost Coast",purchase,1.0,0 -111498455,"The Elder Scrolls V Skyrim",purchase,1.0,0 -111498455,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -111498455,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -111498455,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -152929009,"Dota 2",purchase,1.0,0 -152929009,"Dota 2",play,21.0,0 -116437770,"Dota 2",purchase,1.0,0 -116437770,"Dota 2",play,2132.0,0 -116437770,"Counter-Strike Global Offensive",purchase,1.0,0 -116437770,"Counter-Strike Global Offensive",play,11.8,0 -116437770,"Left 4 Dead 2",purchase,1.0,0 -116437770,"Left 4 Dead 2",play,0.9,0 -167749301,"Team Fortress 2",purchase,1.0,0 -167749301,"Team Fortress 2",play,2.3,0 -167749301,"Super Crate Box",purchase,1.0,0 -167749301,"Super Crate Box",play,1.6,0 -159077305,"Counter-Strike Global Offensive",purchase,1.0,0 -159077305,"Counter-Strike Global Offensive",play,1030.0,0 -159077305,"Assassin's Creed III",purchase,1.0,0 -159077305,"Assassin's Creed III",play,145.0,0 -159077305,"Dota 2",purchase,1.0,0 -159077305,"Dota 2",play,51.0,0 -159077305,"DayZ",purchase,1.0,0 -159077305,"DayZ",play,19.5,0 -159077305,"Grand Theft Auto San Andreas",purchase,1.0,0 -159077305,"Grand Theft Auto San Andreas",play,14.5,0 -159077305,"Left 4 Dead 2",purchase,1.0,0 -159077305,"Left 4 Dead 2",play,11.6,0 -159077305,"Sakura Spirit",purchase,1.0,0 -159077305,"Sakura Spirit",play,8.2,0 -159077305,"Grand Theft Auto V",purchase,1.0,0 -159077305,"Grand Theft Auto V",play,3.2,0 -159077305,"PAYDAY 2",purchase,1.0,0 -159077305,"PAYDAY 2",play,2.9,0 -159077305,"Counter-Strike Condition Zero",purchase,1.0,0 -159077305,"Counter-Strike Condition Zero",play,2.0,0 -159077305,"Counter-Strike",purchase,1.0,0 -159077305,"Counter-Strike",play,1.4,0 -159077305,"Transformers Fall of Cybertron",purchase,1.0,0 -159077305,"Transformers Fall of Cybertron",play,1.4,0 -159077305,"Arma 2",purchase,1.0,0 -159077305,"Arma 2",play,1.1,0 -159077305,"Watch_Dogs",purchase,1.0,0 -159077305,"Watch_Dogs",play,0.4,0 -159077305,"Shan Gui",purchase,1.0,0 -159077305,"Shan Gui",play,0.1,0 -159077305,"Arma 2 Operation Arrowhead",purchase,1.0,0 -159077305,"Arma 2 Operation Arrowhead",play,0.1,0 -159077305,"BLOCKADE 3D",purchase,1.0,0 -159077305,"Arma 2 DayZ Mod",purchase,1.0,0 -159077305,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -159077305,"Arma Cold War Assault",purchase,1.0,0 -159077305,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -159077305,"Day of Defeat",purchase,1.0,0 -159077305,"Deathmatch Classic",purchase,1.0,0 -159077305,"Fistful of Frags",purchase,1.0,0 -159077305,"Grand Theft Auto San Andreas",purchase,1.0,0 -159077305,"HAWKEN",purchase,1.0,0 -159077305,"PAYDAY The Heist",purchase,1.0,0 -159077305,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -159077305,"Ricochet",purchase,1.0,0 -159077305,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -159077305,"Shan Gui OST",purchase,1.0,0 -159077305,"The Binding of Isaac",purchase,1.0,0 -159077305,"The Plan",purchase,1.0,0 -159077305,"Unturned",purchase,1.0,0 -285085570,"Team Fortress 2",purchase,1.0,0 -285085570,"Team Fortress 2",play,104.0,0 -242694628,"Heroes & Generals",purchase,1.0,0 -242694628,"Heroes & Generals",play,15.2,0 -242694628,"Robocraft",purchase,1.0,0 -242694628,"Robocraft",play,2.6,0 -242694628,"Unturned",purchase,1.0,0 -242694628,"Unturned",play,0.8,0 -242694628,"Moon Breakers",purchase,1.0,0 -242694628,"Moon Breakers",play,0.3,0 -242694628,"Blacklight Retribution",purchase,1.0,0 -242694628,"Magicka Wizard Wars",purchase,1.0,0 -242694628,"No More Room in Hell",purchase,1.0,0 -242694628,"Path of Exile",purchase,1.0,0 -242694628,"Warface",purchase,1.0,0 -242694628,"War Thunder",purchase,1.0,0 -198744602,"Dota 2",purchase,1.0,0 -198744602,"Dota 2",play,0.2,0 -184250682,"Dota 2",purchase,1.0,0 -184250682,"Dota 2",play,2.0,0 -293244157,"America's Army Proving Grounds",purchase,1.0,0 -293244157,"America's Army Proving Grounds",play,0.2,0 -293244157,"Marvel Heroes 2015",purchase,1.0,0 -298182105,"Counter-Strike Global Offensive",purchase,1.0,0 -298182105,"Counter-Strike Global Offensive",play,17.7,0 -192645567,"Unturned",purchase,1.0,0 -192645567,"Unturned",play,17.2,0 -192645567,"Robocraft",purchase,1.0,0 -192645567,"Robocraft",play,1.9,0 -192645567,"Emily is Away",purchase,1.0,0 -192645567,"Emily is Away",play,0.8,0 -192645567,"Counter-Strike Nexon Zombies",purchase,1.0,0 -192645567,"Counter-Strike Nexon Zombies",play,0.5,0 -230944154,"Garry's Mod",purchase,1.0,0 -230944154,"Garry's Mod",play,116.0,0 -230944154,"Counter-Strike Global Offensive",purchase,1.0,0 -230944154,"Counter-Strike Global Offensive",play,112.0,0 -230944154,"Grand Theft Auto V",purchase,1.0,0 -230944154,"Grand Theft Auto V",play,7.0,0 -230944154,"No More Room in Hell",purchase,1.0,0 -230944154,"No More Room in Hell",play,2.0,0 -230944154,"Warface",purchase,1.0,0 -230944154,"Warface",play,1.1,0 -230944154,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -230944154,"Injustice Gods Among Us Ultimate Edition",play,0.8,0 -230944154,"Blacklight Retribution",purchase,1.0,0 -230944154,"Blacklight Retribution",play,0.7,0 -230944154,"Fuse",purchase,1.0,0 -230944154,"Fuse",play,0.4,0 -230944154,"Moonbase Alpha",purchase,1.0,0 -230944154,"Moonbase Alpha",play,0.4,0 -230944154,"Warframe",purchase,1.0,0 -230944154,"Warframe",play,0.3,0 -230944154,"Heroes & Generals",purchase,1.0,0 -230944154,"Heroes & Generals",play,0.2,0 -230944154,"Ultimate Tic-Tac-Toe",purchase,1.0,0 -230944154,"Ultimate Tic-Tac-Toe",play,0.2,0 -230944154,"Dead Island Epidemic",purchase,1.0,0 -230944154,"Dead Island Epidemic",play,0.2,0 -230944154,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -230944154,"APB Reloaded",purchase,1.0,0 -230944154,"Unturned",purchase,1.0,0 -230944154,"Gumboy Tournament",purchase,1.0,0 -230944154,"PlanetSide 2",purchase,1.0,0 -230944154,"Double Action Boogaloo",purchase,1.0,0 -230944154,"Dungeons & Dragons Online",purchase,1.0,0 -230944154,"Fallen Earth",purchase,1.0,0 -230944154,"Firefall",purchase,1.0,0 -230944154,"Firefly Online Cortex",purchase,1.0,0 -230944154,"Fishing Planet",purchase,1.0,0 -230944154,"Gotham City Impostors Free To Play",purchase,1.0,0 -230944154,"HAWKEN",purchase,1.0,0 -230944154,"Hazard Ops",purchase,1.0,0 -230944154,"Neverwinter",purchase,1.0,0 -230944154,"Pirates, Vikings, & Knights II",purchase,1.0,0 -230944154,"Quintet",purchase,1.0,0 -230944154,"Robocraft",purchase,1.0,0 -230944154,"Star Conflict",purchase,1.0,0 -230944154,"Survarium",purchase,1.0,0 -230944154,"sZone-Online",purchase,1.0,0 -230944154,"War Thunder",purchase,1.0,0 -80799336,"Call of Duty Black Ops",purchase,1.0,0 -80799336,"Call of Duty Black Ops",play,5.7,0 -80799336,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -80799336,"Call of Duty Modern Warfare 2",purchase,1.0,0 -80799336,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -31124692,"Half-Life 2 Deathmatch",purchase,1.0,0 -31124692,"Half-Life 2 Lost Coast",purchase,1.0,0 -222050169,"Team Fortress 2",purchase,1.0,0 -222050169,"Team Fortress 2",play,485.0,0 -222050169,"Counter-Strike Global Offensive",purchase,1.0,0 -222050169,"Counter-Strike Global Offensive",play,154.0,0 -222050169,"Garry's Mod",purchase,1.0,0 -222050169,"Garry's Mod",play,67.0,0 -222050169,"Terraria",purchase,1.0,0 -222050169,"Terraria",play,38.0,0 -222050169,"Left 4 Dead 2",purchase,1.0,0 -222050169,"Left 4 Dead 2",play,18.9,0 -222050169,"Unturned",purchase,1.0,0 -222050169,"Unturned",play,15.6,0 -222050169,"ARK Survival Evolved",purchase,1.0,0 -222050169,"ARK Survival Evolved",play,4.2,0 -222050169,"Ace of Spades",purchase,1.0,0 -222050169,"Ace of Spades",play,2.0,0 -222050169,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -222050169,"Tom Clancy's Ghost Recon Phantoms - NA",play,1.4,0 -222050169,"Goat Simulator",purchase,1.0,0 -222050169,"Goat Simulator",play,0.7,0 -222050169,"Survarium",purchase,1.0,0 -222050169,"Survarium",play,0.4,0 -222050169,"Lakeview Cabin Collection",purchase,1.0,0 -222050169,"Lakeview Cabin Collection",play,0.2,0 -222050169,"Disney Infinity 3.0 Play Without Limits",purchase,1.0,0 -222050169,"Disney Infinity 3.0 Play Without Limits",play,0.2,0 -222050169,"Five Nights at Freddy's 4",purchase,1.0,0 -222050169,"Five Nights at Freddy's 4",play,0.2,0 -222050169,"Loadout",purchase,1.0,0 -222050169,"Marvel Heroes 2015",purchase,1.0,0 -222050169,"No More Room in Hell",purchase,1.0,0 -113196318,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -113196318,"Tom Clancy's Ghost Recon Phantoms - NA",play,574.0,0 -113196318,"Napoleon Total War",purchase,1.0,0 -113196318,"Napoleon Total War",play,305.0,0 -113196318,"Men of War Assault Squad 2",purchase,1.0,0 -113196318,"Men of War Assault Squad 2",play,266.0,0 -113196318,"Starbound",purchase,1.0,0 -113196318,"Starbound",play,224.0,0 -113196318,"Company of Heroes 2",purchase,1.0,0 -113196318,"Company of Heroes 2",play,111.0,0 -113196318,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -113196318,"Warhammer 40,000 Dawn of War II Retribution",play,100.0,0 -113196318,"Natural Selection 2",purchase,1.0,0 -113196318,"Natural Selection 2",play,98.0,0 -113196318,"Star Wars Empire at War Gold",purchase,1.0,0 -113196318,"Star Wars Empire at War Gold",play,92.0,0 -113196318,"PlanetSide 2",purchase,1.0,0 -113196318,"PlanetSide 2",play,92.0,0 -113196318,"Team Fortress 2",purchase,1.0,0 -113196318,"Team Fortress 2",play,86.0,0 -113196318,"DRAGON BALL XENOVERSE",purchase,1.0,0 -113196318,"DRAGON BALL XENOVERSE",play,51.0,0 -113196318,"Cities Skylines",purchase,1.0,0 -113196318,"Cities Skylines",play,48.0,0 -113196318,"Saints Row IV",purchase,1.0,0 -113196318,"Saints Row IV",play,45.0,0 -113196318,"Tribes Ascend",purchase,1.0,0 -113196318,"Tribes Ascend",play,43.0,0 -113196318,"Unturned",purchase,1.0,0 -113196318,"Unturned",play,41.0,0 -113196318,"Heroes & Generals",purchase,1.0,0 -113196318,"Heroes & Generals",play,37.0,0 -113196318,"Wargame Red Dragon",purchase,1.0,0 -113196318,"Wargame Red Dragon",play,33.0,0 -113196318,"Dragon's Prophet",purchase,1.0,0 -113196318,"Dragon's Prophet",play,33.0,0 -113196318,"Homeworld Remastered Collection",purchase,1.0,0 -113196318,"Homeworld Remastered Collection",play,31.0,0 -113196318,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -113196318,"Call of Duty Advanced Warfare - Multiplayer",play,31.0,0 -113196318,"Warface",purchase,1.0,0 -113196318,"Warface",play,29.0,0 -113196318,"Stronghold Kingdoms",purchase,1.0,0 -113196318,"Stronghold Kingdoms",play,29.0,0 -113196318,"RIFT",purchase,1.0,0 -113196318,"RIFT",play,20.0,0 -113196318,"Prison Architect",purchase,1.0,0 -113196318,"Prison Architect",play,18.4,0 -113196318,"Planetary Annihilation",purchase,1.0,0 -113196318,"Planetary Annihilation",play,12.5,0 -113196318,"HAWKEN",purchase,1.0,0 -113196318,"HAWKEN",play,11.9,0 -113196318,"Planetary Annihilation TITANS",purchase,1.0,0 -113196318,"Planetary Annihilation TITANS",play,11.7,0 -113196318,"March of War",purchase,1.0,0 -113196318,"March of War",play,7.3,0 -113196318,"AirMech",purchase,1.0,0 -113196318,"AirMech",play,5.8,0 -113196318,"Star Conflict",purchase,1.0,0 -113196318,"Star Conflict",play,2.8,0 -113196318,"WAKFU",purchase,1.0,0 -113196318,"WAKFU",play,2.5,0 -113196318,"Call of Duty Advanced Warfare",purchase,1.0,0 -113196318,"Call of Duty Advanced Warfare",play,1.6,0 -113196318,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -113196318,"A.V.A - Alliance of Valiant Arms",play,1.6,0 -113196318,"Kingdom Wars",purchase,1.0,0 -113196318,"Kingdom Wars",play,1.5,0 -113196318,"RaiderZ",purchase,1.0,0 -113196318,"RaiderZ",play,1.5,0 -113196318,"Starbound - Unstable",purchase,1.0,0 -113196318,"Starbound - Unstable",play,1.1,0 -113196318,"Arma 2 Operation Arrowhead",purchase,1.0,0 -113196318,"Arma 2 Operation Arrowhead",play,0.6,0 -113196318,"Arma 2 DayZ Mod",purchase,1.0,0 -113196318,"Arma 2 DayZ Mod",play,0.1,0 -113196318,"Arma 2",purchase,1.0,0 -113196318,"Arma 2",play,0.1,0 -113196318,"Toribash",purchase,1.0,0 -113196318,"Toribash",play,0.1,0 -113196318,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -113196318,"Robocraft",purchase,1.0,0 -113196318,"Pandora Saga Weapons of Balance",purchase,1.0,0 -113196318,"DCS World",purchase,1.0,0 -113196318,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -113196318,"The Lord of the Rings Online",purchase,1.0,0 -113196318,"Warframe",purchase,1.0,0 -156343742,"Dota 2",purchase,1.0,0 -156343742,"Dota 2",play,1052.0,0 -156343742,"Warframe",purchase,1.0,0 -156343742,"Warframe",play,9.2,0 -156343742,"Left 4 Dead 2",purchase,1.0,0 -146841726,"Dota 2",purchase,1.0,0 -146841726,"Dota 2",play,1386.0,0 -146841726,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -146762928,"Counter-Strike Global Offensive",purchase,1.0,0 -146762928,"Counter-Strike Global Offensive",play,106.0,0 -146762928,"Farming Simulator 15",purchase,1.0,0 -146762928,"Farming Simulator 15",play,72.0,0 -146762928,"Euro Truck Simulator 2",purchase,1.0,0 -146762928,"Euro Truck Simulator 2",play,20.0,0 -146762928,"Dota 2",purchase,1.0,0 -146762928,"Dota 2",play,0.4,0 -146762928,"Knights and Merchants",purchase,1.0,0 -146762928,"Quake Live",purchase,1.0,0 -226428439,"Counter-Strike Nexon Zombies",purchase,1.0,0 -226428439,"Counter-Strike Nexon Zombies",play,1.0,0 -179518925,"Dota 2",purchase,1.0,0 -179518925,"Dota 2",play,0.3,0 -99484728,"Team Fortress 2",purchase,1.0,0 -99484728,"Team Fortress 2",play,58.0,0 -99484728,"Killing Floor",purchase,1.0,0 -99484728,"Killing Floor",play,29.0,0 -99484728,"Counter-Strike Source",purchase,1.0,0 -99484728,"Counter-Strike Source",play,2.2,0 -99484728,"Aliens versus Predator Classic 2000",purchase,1.0,0 -99484728,"Aliens versus Predator Classic 2000",play,1.8,0 -99484728,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -273069628,"TERA",purchase,1.0,0 -273069628,"TERA",play,6.0,0 -273069628,"Neverwinter",purchase,1.0,0 -273069628,"Archeblade",purchase,1.0,0 -273069628,"Magicka Wizard Wars",purchase,1.0,0 -273069628,"Warframe",purchase,1.0,0 -210114509,"Unturned",purchase,1.0,0 -140223606,"Dota 2",purchase,1.0,0 -140223606,"Dota 2",play,89.0,0 -204742217,"Team Fortress 2",purchase,1.0,0 -204742217,"Team Fortress 2",play,1.3,0 -204742217,"APB Reloaded",purchase,1.0,0 -204742217,"Combat Arms",purchase,1.0,0 -204742217,"Heroes & Generals",purchase,1.0,0 -204742217,"Quake Live",purchase,1.0,0 -204742217,"RaceRoom Racing Experience ",purchase,1.0,0 -204742217,"Realm of the Mad God",purchase,1.0,0 -204742217,"Robocraft",purchase,1.0,0 -204742217,"Unturned",purchase,1.0,0 -204742217,"You Have to Win the Game",purchase,1.0,0 -222986054,"Dota 2",purchase,1.0,0 -222986054,"Dota 2",play,0.9,0 -52181854,"Counter-Strike Source",purchase,1.0,0 -52181854,"Counter-Strike Source",play,65.0,0 -52181854,"Day of Defeat Source",purchase,1.0,0 -52181854,"Day of Defeat Source",play,0.1,0 -52181854,"Half-Life 2 Deathmatch",purchase,1.0,0 -52181854,"Half-Life 2 Lost Coast",purchase,1.0,0 -296449198,"Dota 2",purchase,1.0,0 -296449198,"Dota 2",play,63.0,0 -155858528,"Dota 2",purchase,1.0,0 -155858528,"Dota 2",play,148.0,0 -267235316,"TERA",purchase,1.0,0 -267235316,"TERA",play,48.0,0 -267235316,"Echo of Soul",purchase,1.0,0 -267235316,"Echo of Soul",play,1.5,0 -267235316,"Rise of Incarnates",purchase,1.0,0 -267235316,"Rise of Incarnates",play,0.6,0 -267235316,"Dirty Bomb",purchase,1.0,0 -267235316,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -267235316,"Neverwinter",purchase,1.0,0 -267235316,"Uncharted Waters Online Gran Atlas",purchase,1.0,0 -267235316,"Warframe",purchase,1.0,0 -267235316,"War Thunder",purchase,1.0,0 -192201048,"Unturned",purchase,1.0,0 -192201048,"Unturned",play,0.4,0 -190074593,"Dying Light",purchase,1.0,0 -190074593,"Dying Light",play,112.0,0 -190074593,"Rust",purchase,1.0,0 -190074593,"Rust",play,87.0,0 -190074593,"Sid Meier's Civilization V",purchase,1.0,0 -190074593,"Sid Meier's Civilization V",play,22.0,0 -190074593,"Age of Empires II HD Edition",purchase,1.0,0 -190074593,"Age of Empires II HD Edition",play,5.5,0 -190074593,"Battle Islands",purchase,1.0,0 -190074593,"Battle Islands",play,0.3,0 -190074593,"Age of Empires II HD The Forgotten",purchase,1.0,0 -190074593,"No More Room in Hell",purchase,1.0,0 -190074593,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -190074593,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -152078939,"Garry's Mod",purchase,1.0,0 -152078939,"Garry's Mod",play,245.0,0 -152078939,"Counter-Strike Global Offensive",purchase,1.0,0 -152078939,"Counter-Strike Global Offensive",play,116.0,0 -152078939,"PAYDAY 2",purchase,1.0,0 -152078939,"PAYDAY 2",play,63.0,0 -152078939,"HuniePop",purchase,1.0,0 -152078939,"HuniePop",play,45.0,0 -152078939,"100% Orange Juice",purchase,1.0,0 -152078939,"100% Orange Juice",play,31.0,0 -152078939,"Trove",purchase,1.0,0 -152078939,"Trove",play,14.0,0 -152078939,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -152078939,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,12.8,0 -152078939,"Left 4 Dead 2",purchase,1.0,0 -152078939,"Left 4 Dead 2",play,10.8,0 -152078939,"PAYDAY The Heist",purchase,1.0,0 -152078939,"PAYDAY The Heist",play,8.6,0 -152078939,"Don't Starve Together Beta",purchase,1.0,0 -152078939,"Don't Starve Together Beta",play,8.2,0 -152078939,"FreeStyle2 Street Basketball",purchase,1.0,0 -152078939,"FreeStyle2 Street Basketball",play,7.1,0 -152078939,"Saints Row The Third",purchase,1.0,0 -152078939,"Saints Row The Third",play,6.7,0 -152078939,"Sakura Clicker",purchase,1.0,0 -152078939,"Sakura Clicker",play,6.4,0 -152078939,"Sakura Spirit",purchase,1.0,0 -152078939,"Sakura Spirit",play,6.0,0 -152078939,"No More Room in Hell",purchase,1.0,0 -152078939,"No More Room in Hell",play,5.6,0 -152078939,"Unturned",purchase,1.0,0 -152078939,"Unturned",play,4.4,0 -152078939,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -152078939,"Injustice Gods Among Us Ultimate Edition",play,4.1,0 -152078939,"NEKOPARA Vol. 0",purchase,1.0,0 -152078939,"NEKOPARA Vol. 0",play,4.0,0 -152078939,"Team Fortress 2",purchase,1.0,0 -152078939,"Team Fortress 2",play,3.9,0 -152078939,"The Elder Scrolls V Skyrim",purchase,1.0,0 -152078939,"The Elder Scrolls V Skyrim",play,3.7,0 -152078939,"Outlast",purchase,1.0,0 -152078939,"Outlast",play,3.2,0 -152078939,"BattleBlock Theater",purchase,1.0,0 -152078939,"BattleBlock Theater",play,2.9,0 -152078939,"ORION Prelude",purchase,1.0,0 -152078939,"ORION Prelude",play,2.8,0 -152078939,"NEKOPARA Vol. 1",purchase,1.0,0 -152078939,"NEKOPARA Vol. 1",play,2.8,0 -152078939,"H1Z1",purchase,1.0,0 -152078939,"H1Z1",play,2.8,0 -152078939,"Hyperdimension Neptunia Re;Birth1",purchase,1.0,0 -152078939,"Hyperdimension Neptunia Re;Birth1",play,2.7,0 -152078939,"Realm of the Mad God",purchase,1.0,0 -152078939,"Realm of the Mad God",play,2.6,0 -152078939,"Dota 2",purchase,1.0,0 -152078939,"Dota 2",play,2.2,0 -152078939,"Dead Island Epidemic",purchase,1.0,0 -152078939,"Dead Island Epidemic",play,2.0,0 -152078939,"Fallout New Vegas",purchase,1.0,0 -152078939,"Fallout New Vegas",play,1.8,0 -152078939,"Portal",purchase,1.0,0 -152078939,"Portal",play,1.3,0 -152078939,"Guns of Icarus Online",purchase,1.0,0 -152078939,"Guns of Icarus Online",play,0.9,0 -152078939,"Borderlands 2",purchase,1.0,0 -152078939,"Borderlands 2",play,0.9,0 -152078939,"Castle Crashers",purchase,1.0,0 -152078939,"Castle Crashers",play,0.6,0 -152078939,"Sakura Angels",purchase,1.0,0 -152078939,"Sakura Angels",play,0.5,0 -152078939,"Brawlhalla",purchase,1.0,0 -152078939,"Brawlhalla",play,0.5,0 -152078939,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -152078939,"METAL GEAR RISING REVENGEANCE",play,0.4,0 -152078939,"Sonic CD",purchase,1.0,0 -152078939,"Sonic CD",play,0.3,0 -152078939,"Super Meat Boy",purchase,1.0,0 -152078939,"Super Meat Boy",play,0.1,0 -152078939,"Cry of Fear",purchase,1.0,0 -152078939,"Cry of Fear",play,0.1,0 -152078939,"Mabinogi",purchase,1.0,0 -152078939,"Amnesia The Dark Descent",purchase,1.0,0 -152078939,"Archeblade",purchase,1.0,0 -152078939,"Audition Online",purchase,1.0,0 -152078939,"Batman Arkham Origins",purchase,1.0,0 -152078939,"BioShock Infinite",purchase,1.0,0 -152078939,"Blacklight Retribution",purchase,1.0,0 -152078939,"Elsword",purchase,1.0,0 -152078939,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -152078939,"Fallout New Vegas Dead Money",purchase,1.0,0 -152078939,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -152078939,"FINAL FANTASY VII",purchase,1.0,0 -152078939,"Gotham City Impostors Free To Play",purchase,1.0,0 -152078939,"GunZ 2 The Second Duel",purchase,1.0,0 -152078939,"H1Z1 Test Server",purchase,1.0,0 -152078939,"Marvel Heroes 2015",purchase,1.0,0 -152078939,"Might & Magic Duel of Champions",purchase,1.0,0 -152078939,"Neverwinter",purchase,1.0,0 -152078939,"Nosgoth",purchase,1.0,0 -152078939,"Portal 2",purchase,1.0,0 -152078939,"Sakura Clicker - Hairstyle Pack",purchase,1.0,0 -152078939,"Sakura Clicker - Present Outfit",purchase,1.0,0 -152078939,"Sakura Clicker - School Outfit",purchase,1.0,0 -152078939,"The Mighty Quest For Epic Loot",purchase,1.0,0 -152078939,"Tomb Raider",purchase,1.0,0 -152078939,"Warframe",purchase,1.0,0 -217734723,"Farming Simulator 15",purchase,1.0,0 -258648395,"Dota 2",purchase,1.0,0 -258648395,"Dota 2",play,1.7,0 -68173628,"SimCity 4 Deluxe",purchase,1.0,0 -68173628,"SimCity 4 Deluxe",play,268.0,0 -28229872,"Counter-Strike",purchase,1.0,0 -28229872,"Counter-Strike",play,119.0,0 -28229872,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -28229872,"Counter-Strike Condition Zero Deleted Scenes",play,19.1,0 -28229872,"Counter-Strike Condition Zero",purchase,1.0,0 -28229872,"Counter-Strike Condition Zero",play,15.4,0 -28229872,"Deathmatch Classic",purchase,1.0,0 -28229872,"Deathmatch Classic",play,0.2,0 -28229872,"Ricochet",purchase,1.0,0 -28229872,"Ricochet",play,0.1,0 -28229872,"Day of Defeat",purchase,1.0,0 -218844731,"PlanetSide 2",purchase,1.0,0 -218844731,"PlanetSide 2",play,13.2,0 -218844731,"Dota 2",purchase,1.0,0 -218844731,"Dota 2",play,0.3,0 -295693261,"Pyramid Raid",purchase,1.0,0 -295693261,"Pyramid Raid",play,0.3,0 -295693261,"Lost Lands A Hidden Object Adventure",purchase,1.0,0 -295693261,"Dungeon Defenders II",purchase,1.0,0 -5307960,"Counter-Strike",purchase,1.0,0 -5307960,"Counter-Strike",play,4.3,0 -5307960,"Day of Defeat",purchase,1.0,0 -5307960,"Deathmatch Classic",purchase,1.0,0 -5307960,"Half-Life",purchase,1.0,0 -5307960,"Half-Life Blue Shift",purchase,1.0,0 -5307960,"Half-Life Opposing Force",purchase,1.0,0 -5307960,"Ricochet",purchase,1.0,0 -5307960,"Team Fortress Classic",purchase,1.0,0 -115637271,"Rocksmith",purchase,1.0,0 -115637271,"Rocksmith",play,11.3,0 -115637271,"Rocksmith 2014",purchase,1.0,0 -115637271,"Rocksmith 2014",play,4.1,0 -74126541,"Empire Total War",purchase,1.0,0 -74126541,"Empire Total War",play,28.0,0 -74126541,"Team Fortress 2",purchase,1.0,0 -74126541,"Team Fortress 2",play,23.0,0 -74126541,"Sid Meier's Civilization V",purchase,1.0,0 -74126541,"Sid Meier's Civilization V",play,15.7,0 -74126541,"Dungeon Defenders",purchase,1.0,0 -74126541,"Dungeon Defenders",play,12.2,0 -74126541,"Dungeons & Dragons Online",purchase,1.0,0 -74126541,"Dungeons & Dragons Online",play,10.7,0 -74126541,"XCOM Enemy Unknown",purchase,1.0,0 -74126541,"XCOM Enemy Unknown",play,3.8,0 -74126541,"Left 4 Dead 2",purchase,1.0,0 -74126541,"Left 4 Dead 2",play,2.2,0 -127058155,"Dota 2",purchase,1.0,0 -127058155,"Dota 2",play,2.2,0 -287613958,"Spooky's House of Jump Scares",purchase,1.0,0 -287613958,"Spooky's House of Jump Scares",play,0.2,0 -76892907,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -76892907,"Warhammer 40,000 Dawn of War II Retribution",play,561.0,0 -76892907,"Path of Exile",purchase,1.0,0 -76892907,"Path of Exile",play,321.0,0 -76892907,"Torchlight II",purchase,1.0,0 -76892907,"Torchlight II",play,253.0,0 -76892907,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -76892907,"Sins of a Solar Empire Rebellion",play,194.0,0 -76892907,"Supreme Commander 2",purchase,1.0,0 -76892907,"Supreme Commander 2",play,171.0,0 -76892907,"Dungeons of Dredmor",purchase,1.0,0 -76892907,"Dungeons of Dredmor",play,139.0,0 -76892907,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -76892907,"Warhammer 40,000 Dawn of War II",play,94.0,0 -76892907,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -76892907,"The Incredible Adventures of Van Helsing",play,88.0,0 -76892907,"Age of Wonders III",purchase,1.0,0 -76892907,"Age of Wonders III",play,84.0,0 -76892907,"Endless Space",purchase,1.0,0 -76892907,"Endless Space",play,79.0,0 -76892907,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -76892907,"Kingdoms of Amalur Reckoning",play,75.0,0 -76892907,"Dungeon Defenders",purchase,1.0,0 -76892907,"Dungeon Defenders",play,70.0,0 -76892907,"Demigod",purchase,1.0,0 -76892907,"Demigod",play,62.0,0 -76892907,"The Incredible Adventures of Van Helsing Final Cut",purchase,1.0,0 -76892907,"The Incredible Adventures of Van Helsing Final Cut",play,58.0,0 -76892907,"Impire",purchase,1.0,0 -76892907,"Impire",play,48.0,0 -76892907,"Torchlight",purchase,1.0,0 -76892907,"Torchlight",play,40.0,0 -76892907,"Krater",purchase,1.0,0 -76892907,"Krater",play,40.0,0 -76892907,"Planetary Annihilation",purchase,1.0,0 -76892907,"Planetary Annihilation",play,35.0,0 -76892907,"Age of Wonders",purchase,1.0,0 -76892907,"Age of Wonders",play,31.0,0 -76892907,"Dungeon of the Endless",purchase,1.0,0 -76892907,"Dungeon of the Endless",play,28.0,0 -76892907,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -76892907,"Warhammer 40,000 Dawn of War Soulstorm",play,25.0,0 -76892907,"Wizardry 7 Crusaders of the Dark Savant",purchase,1.0,0 -76892907,"Wizardry 7 Crusaders of the Dark Savant",play,23.0,0 -76892907,"Tryst",purchase,1.0,0 -76892907,"Tryst",play,21.0,0 -76892907,"Grey Goo",purchase,1.0,0 -76892907,"Grey Goo",play,20.0,0 -76892907,"Darkspore",purchase,1.0,0 -76892907,"Darkspore",play,19.8,0 -76892907,"Age of Mythology Extended Edition",purchase,1.0,0 -76892907,"Age of Mythology Extended Edition",play,15.5,0 -76892907,"DUNGEONS - Steam Special Edition",purchase,1.0,0 -76892907,"DUNGEONS - Steam Special Edition",play,15.5,0 -76892907,"South Park The Stick of Truth",purchase,1.0,0 -76892907,"South Park The Stick of Truth",play,14.0,0 -76892907,"HOARD",purchase,1.0,0 -76892907,"HOARD",play,10.5,0 -76892907,"Defense Grid The Awakening",purchase,1.0,0 -76892907,"Defense Grid The Awakening",play,8.2,0 -76892907,"Command and Conquer 3 Tiberium Wars",purchase,1.0,0 -76892907,"Command and Conquer 3 Tiberium Wars",play,6.7,0 -76892907,"Age of Empires III Complete Collection",purchase,1.0,0 -76892907,"Age of Empires III Complete Collection",play,5.9,0 -76892907,"Command and Conquer 3 Kane's Wrath",purchase,1.0,0 -76892907,"Command and Conquer 3 Kane's Wrath",play,5.6,0 -76892907,"Icewind Dale Enhanced Edition",purchase,1.0,0 -76892907,"Icewind Dale Enhanced Edition",play,4.9,0 -76892907,"Legend of Grimrock",purchase,1.0,0 -76892907,"Legend of Grimrock",play,4.5,0 -76892907,"Ultra Street Fighter IV",purchase,1.0,0 -76892907,"Ultra Street Fighter IV",play,3.7,0 -76892907,"Planetary Annihilation TITANS",purchase,1.0,0 -76892907,"Planetary Annihilation TITANS",play,3.6,0 -76892907,"Age of Empires II HD Edition",purchase,1.0,0 -76892907,"Age of Empires II HD Edition",play,3.0,0 -76892907,"Sid Meier's Pirates!",purchase,1.0,0 -76892907,"Sid Meier's Pirates!",play,3.0,0 -76892907,"Zombie Tycoon 2 Brainhov's Revenge",purchase,1.0,0 -76892907,"Zombie Tycoon 2 Brainhov's Revenge",play,2.8,0 -76892907,"The Incredible Adventures of Van Helsing II",purchase,1.0,0 -76892907,"The Incredible Adventures of Van Helsing II",play,2.7,0 -76892907,"Long Live The Queen",purchase,1.0,0 -76892907,"Long Live The Queen",play,2.6,0 -76892907,"Demolition, Inc.",purchase,1.0,0 -76892907,"Demolition, Inc.",play,2.5,0 -76892907,"Tkl Online",purchase,1.0,0 -76892907,"Tkl Online",play,2.4,0 -76892907,"Command and Conquer 4 Tiberian Twilight",purchase,1.0,0 -76892907,"Command and Conquer 4 Tiberian Twilight",play,2.4,0 -76892907,"Sacred 2 Gold",purchase,1.0,0 -76892907,"Sacred 2 Gold",play,1.8,0 -76892907,"Toy Soldiers",purchase,1.0,0 -76892907,"Toy Soldiers",play,1.7,0 -76892907,"Agarest Generations of War",purchase,1.0,0 -76892907,"Agarest Generations of War",play,1.6,0 -76892907,"Might & Magic Heroes VI",purchase,1.0,0 -76892907,"Might & Magic Heroes VI",play,1.4,0 -76892907,"Magicka",purchase,1.0,0 -76892907,"Magicka",play,1.4,0 -76892907,"Anno 2070",purchase,1.0,0 -76892907,"Anno 2070",play,1.2,0 -76892907,"DUNGEONS - The Dark Lord (Steam Special Edition)",purchase,1.0,0 -76892907,"DUNGEONS - The Dark Lord (Steam Special Edition)",play,1.2,0 -76892907,"Hyperdimension Neptunia Re;Birth1",purchase,1.0,0 -76892907,"Hyperdimension Neptunia Re;Birth1",play,1.1,0 -76892907,"Warhammer 40,000 Kill Team",purchase,1.0,0 -76892907,"Warhammer 40,000 Kill Team",play,1.1,0 -76892907,"Sins of a Solar Empire Trinity",purchase,1.0,0 -76892907,"Sins of a Solar Empire Trinity",play,1.0,0 -76892907,"Transformers War for Cybertron",purchase,1.0,0 -76892907,"Transformers War for Cybertron",play,1.0,0 -76892907,"Warhammer 40,000 Space Marine",purchase,1.0,0 -76892907,"Warhammer 40,000 Space Marine",play,0.9,0 -76892907,"A Game of Thrones - Genesis",purchase,1.0,0 -76892907,"A Game of Thrones - Genesis",play,0.9,0 -76892907,"Divinity Original Sin",purchase,1.0,0 -76892907,"Divinity Original Sin",play,0.9,0 -76892907,"Disciples II Rise of the Elves",purchase,1.0,0 -76892907,"Disciples II Rise of the Elves",play,0.7,0 -76892907,"The Settlers 7 Paths to a Kingdom - Gold Edition",purchase,1.0,0 -76892907,"The Settlers 7 Paths to a Kingdom - Gold Edition",play,0.7,0 -76892907,"Earth Defense Force Insect Armageddon",purchase,1.0,0 -76892907,"Earth Defense Force Insect Armageddon",play,0.6,0 -76892907,"Sword of the Stars II Enhanced Edition",purchase,1.0,0 -76892907,"Sword of the Stars II Enhanced Edition",play,0.6,0 -76892907,"Treasure Planet Battle at Procyon",purchase,1.0,0 -76892907,"Treasure Planet Battle at Procyon",play,0.6,0 -76892907,"Space Pirates and Zombies",purchase,1.0,0 -76892907,"Space Pirates and Zombies",play,0.6,0 -76892907,"Ys The Oath in Felghana",purchase,1.0,0 -76892907,"Ys The Oath in Felghana",play,0.6,0 -76892907,"Transformers Fall of Cybertron",purchase,1.0,0 -76892907,"Transformers Fall of Cybertron",play,0.6,0 -76892907,"Sid Meier's Civilization V",purchase,1.0,0 -76892907,"Sid Meier's Civilization V",play,0.5,0 -76892907,"Company of Heroes 2",purchase,1.0,0 -76892907,"Company of Heroes 2",play,0.5,0 -76892907,"Worms Reloaded",purchase,1.0,0 -76892907,"Worms Reloaded",play,0.5,0 -76892907,"Kung Fury",purchase,1.0,0 -76892907,"Kung Fury",play,0.5,0 -76892907,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -76892907,"Command and Conquer Red Alert 3 - Uprising",play,0.5,0 -76892907,"Space Hulk Ascension",purchase,1.0,0 -76892907,"Space Hulk Ascension",play,0.5,0 -76892907,"Total Annihilation",purchase,1.0,0 -76892907,"Total Annihilation",play,0.5,0 -76892907,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -76892907,"Plants vs. Zombies Game of the Year",play,0.4,0 -76892907,"Seven Kingdoms 2 HD",purchase,1.0,0 -76892907,"Seven Kingdoms 2 HD",play,0.4,0 -76892907,"Street Fighter X Tekken",purchase,1.0,0 -76892907,"Street Fighter X Tekken",play,0.4,0 -76892907,"Gauntlet ",purchase,1.0,0 -76892907,"Gauntlet ",play,0.4,0 -76892907,"Spore",purchase,1.0,0 -76892907,"Spore",play,0.4,0 -76892907,"Ghostbusters Sanctum of Slime",purchase,1.0,0 -76892907,"Ghostbusters Sanctum of Slime",play,0.3,0 -76892907,"Dungeons & Dragons Chronicles of Mystara",purchase,1.0,0 -76892907,"Dungeons & Dragons Chronicles of Mystara",play,0.3,0 -76892907,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -76892907,"SEGA Genesis & Mega Drive Classics",play,0.3,0 -76892907,"Genesis Rising",purchase,1.0,0 -76892907,"Genesis Rising",play,0.3,0 -76892907,"FINAL FANTASY VII",purchase,1.0,0 -76892907,"FINAL FANTASY VII",play,0.3,0 -76892907,"BloodLust Shadowhunter",purchase,1.0,0 -76892907,"BloodLust Shadowhunter",play,0.3,0 -76892907,"Madballs in...Babo Invasion",purchase,1.0,0 -76892907,"Madballs in...Babo Invasion",play,0.3,0 -76892907,"The Incredible Adventures of Van Helsing III",purchase,1.0,0 -76892907,"The Incredible Adventures of Van Helsing III",play,0.2,0 -76892907,"Dungeons & Dragons Daggerdale",purchase,1.0,0 -76892907,"Dungeons & Dragons Daggerdale",play,0.2,0 -76892907,"Goat Simulator",purchase,1.0,0 -76892907,"Goat Simulator",play,0.2,0 -76892907,"God Mode",purchase,1.0,0 -76892907,"God Mode",play,0.2,0 -76892907,"LEGO MARVEL Super Heroes",purchase,1.0,0 -76892907,"LEGO MARVEL Super Heroes",play,0.2,0 -76892907,"Recettear An Item Shop's Tale",purchase,1.0,0 -76892907,"Recettear An Item Shop's Tale",play,0.1,0 -76892907,"Tropico 4",purchase,1.0,0 -76892907,"Tropico 4",play,0.1,0 -76892907,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -76892907,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,0.1,0 -76892907,"Shadowrun Returns",purchase,1.0,0 -76892907,"Shadowrun Returns",play,0.1,0 -76892907,"Disciples II Gallean's Return",purchase,1.0,0 -76892907,"Disciples II Gallean's Return",play,0.1,0 -76892907,"Sanctum",purchase,1.0,0 -76892907,"Sanctum",play,0.1,0 -76892907,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -76892907,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,0.1,0 -76892907,"Warmachine Tactics",purchase,1.0,0 -76892907,"Wizardry 8",purchase,1.0,0 -76892907,"Haegemonia The Solon Heritage",purchase,1.0,0 -76892907,"Blood Bowl Legendary Edition",purchase,1.0,0 -76892907,"AI War Fleet Command",purchase,1.0,0 -76892907,"Endless Legend",purchase,1.0,0 -76892907,"Anomaly Warzone Earth",purchase,1.0,0 -76892907,"Spore Galactic Adventures",purchase,1.0,0 -76892907,"Dungeon Siege",purchase,1.0,0 -76892907,"Sacred Gold",purchase,1.0,0 -76892907,"Age of Wonders Trilogy Soundtrack",purchase,1.0,0 -76892907,"iBomber Defense",purchase,1.0,0 -76892907,"King Arthur Collection",purchase,1.0,0 -76892907,"Ghostbusters The Video Game",purchase,1.0,0 -76892907,"Delve Deeper",purchase,1.0,0 -76892907,"Wizardry 6 Bane of the Cosmic Forge",purchase,1.0,0 -76892907,"A.I.M. Racing",purchase,1.0,0 -76892907,"Advent Rising",purchase,1.0,0 -76892907,"A Farewell to Dragons",purchase,1.0,0 -76892907,"Agarest - Additional-Points Pack 2 DLC",purchase,1.0,0 -76892907,"Agarest - Additional-Points Pack 3 DLC",purchase,1.0,0 -76892907,"Agarest - Additional-Points Pack 4 DLC",purchase,1.0,0 -76892907,"Agarest - Additional-PP Pack 1 DLC",purchase,1.0,0 -76892907,"Agarest - Additional-PP Pack 2 DLC",purchase,1.0,0 -76892907,"Agarest - Additional-TP Pack DLC",purchase,1.0,0 -76892907,"Agarest - Basic Adventure Pack DLC",purchase,1.0,0 -76892907,"Agarest - Carrot-and-Stick Pack DLC",purchase,1.0,0 -76892907,"Agarest - Dull-Things Pack DLC",purchase,1.0,0 -76892907,"Agarest - Fallen Angel Pack DLC",purchase,1.0,0 -76892907,"Agarest - Fishy Pack 1 DLC",purchase,1.0,0 -76892907,"Agarest - Fishy Pack 2 DLC",purchase,1.0,0 -76892907,"Agarest - Jack Pack DLC",purchase,1.0,0 -76892907,"Agarest - Legendary-Monster Pack DLC",purchase,1.0,0 -76892907,"Agarest - Legendary Adventure Pack DLC",purchase,1.0,0 -76892907,"Agarest - Magic Fight Pack DLC",purchase,1.0,0 -76892907,"Agarest - Playful Cat Pack DLC",purchase,1.0,0 -76892907,"Agarest - Rebellious Pack DLC",purchase,1.0,0 -76892907,"Agarest - Rumored Adventure Pack DLC",purchase,1.0,0 -76892907,"Agarest - Seasoned-Breeder Pack DLC",purchase,1.0,0 -76892907,"Agarest - Secret-Society Pack DLC",purchase,1.0,0 -76892907,"Agarest - Tonight's Dinner DLC",purchase,1.0,0 -76892907,"Agarest - Top-Breeder Pack DLC",purchase,1.0,0 -76892907,"Agarest - Ultimate Equipment Pack DLC",purchase,1.0,0 -76892907,"Agarest - Unlock Gallery DLC",purchase,1.0,0 -76892907,"Agarest - Unlock Voices DLC",purchase,1.0,0 -76892907,"Agarest - Upgrade Pack 1 DLC",purchase,1.0,0 -76892907,"Agarest Generations of War Premium Edition Upgrade",purchase,1.0,0 -76892907,"Age of Empires II HD The Forgotten",purchase,1.0,0 -76892907,"Age of Wonders 2",purchase,1.0,0 -76892907,"Age of Wonders Shadow Magic",purchase,1.0,0 -76892907,"Alien Breed 2 Assault",purchase,1.0,0 -76892907,"Alien Breed 3 Descent",purchase,1.0,0 -76892907,"Alien Breed Impact",purchase,1.0,0 -76892907,"Analogue A Hate Story",purchase,1.0,0 -76892907,"ArcaniA",purchase,1.0,0 -76892907,"ArcaniA Fall of Setarrif",purchase,1.0,0 -76892907,"Arx Fatalis",purchase,1.0,0 -76892907,"Avadon 2 The Corruption",purchase,1.0,0 -76892907,"Avadon The Black Fortress",purchase,1.0,0 -76892907,"Avernum 2 Crystal Souls",purchase,1.0,0 -76892907,"Avernum 4",purchase,1.0,0 -76892907,"Avernum 5",purchase,1.0,0 -76892907,"Avernum 6",purchase,1.0,0 -76892907,"Avernum Escape From the Pit",purchase,1.0,0 -76892907,"Awesomenauts",purchase,1.0,0 -76892907,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -76892907,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -76892907,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -76892907,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -76892907,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -76892907,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -76892907,"Bastion",purchase,1.0,0 -76892907,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -76892907,"Batman Arkham City GOTY",purchase,1.0,0 -76892907,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -76892907,"Batman Arkham Origins - Initiation",purchase,1.0,0 -76892907,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -76892907,"Batman Arkham Origins",purchase,1.0,0 -76892907,"Battlestations Midway",purchase,1.0,0 -76892907,"Battlestations Pacific",purchase,1.0,0 -76892907,"Beyond Divinity",purchase,1.0,0 -76892907,"Bierzerkers",purchase,1.0,0 -76892907,"BioShock",purchase,1.0,0 -76892907,"BioShock 2",purchase,1.0,0 -76892907,"BioShock Infinite",purchase,1.0,0 -76892907,"BioShock Infinite - Season Pass",purchase,1.0,0 -76892907,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -76892907,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -76892907,"Blood Bowl Dark Elves Edition",purchase,1.0,0 -76892907,"Blood Omen 2 Legacy of Kain",purchase,1.0,0 -76892907,"BloodRayne Betrayal",purchase,1.0,0 -76892907,"Bone Out from Boneville",purchase,1.0,0 -76892907,"Bone The Great Cow Race",purchase,1.0,0 -76892907,"Borderlands",purchase,1.0,0 -76892907,"Borderlands 2",purchase,1.0,0 -76892907,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -76892907,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -76892907,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -76892907,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -76892907,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -76892907,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -76892907,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -76892907,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -76892907,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -76892907,"Breath of Death VII ",purchase,1.0,0 -76892907,"Brtal Legend",purchase,1.0,0 -76892907,"Bully Scholarship Edition",purchase,1.0,0 -76892907,"Chantelise",purchase,1.0,0 -76892907,"Cities XL - Limited Edition",purchase,1.0,0 -76892907,"Cities XL 2011",purchase,1.0,0 -76892907,"Cities XL 2012",purchase,1.0,0 -76892907,"City Life 2008",purchase,1.0,0 -76892907,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -76892907,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -76892907,"Command and Conquer Red Alert 3",purchase,1.0,0 -76892907,"Commandos 2 Men of Courage",purchase,1.0,0 -76892907,"Commandos 3 Destination Berlin",purchase,1.0,0 -76892907,"Commandos Behind Enemy Lines",purchase,1.0,0 -76892907,"Commandos Beyond the Call of Duty",purchase,1.0,0 -76892907,"Company of Heroes",purchase,1.0,0 -76892907,"Company of Heroes (New Steam Version)",purchase,1.0,0 -76892907,"Company of Heroes Opposing Fronts",purchase,1.0,0 -76892907,"Company of Heroes Tales of Valor",purchase,1.0,0 -76892907,"Conflict Denied Ops",purchase,1.0,0 -76892907,"Confrontation",purchase,1.0,0 -76892907,"Cryostasis",purchase,1.0,0 -76892907,"Cthulhu Saves the World ",purchase,1.0,0 -76892907,"Darksiders",purchase,1.0,0 -76892907,"Darksiders II",purchase,1.0,0 -76892907,"Darksiders II Deathinitive Edition",purchase,1.0,0 -76892907,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -76892907,"DARK SOULS II",purchase,1.0,0 -76892907,"Deadly Profits",purchase,1.0,0 -76892907,"Deadpool",purchase,1.0,0 -76892907,"Death to Spies",purchase,1.0,0 -76892907,"Death to Spies Moment of Truth",purchase,1.0,0 -76892907,"Death Track Resurrection",purchase,1.0,0 -76892907,"Defenders of Ardania",purchase,1.0,0 -76892907,"Defense Grid Resurgence Map Pack 1",purchase,1.0,0 -76892907,"Defense Grid Resurgence Map Pack 2 ",purchase,1.0,0 -76892907,"Defense Grid Resurgence Map Pack 3",purchase,1.0,0 -76892907,"Defense Grid Resurgence Map Pack 4",purchase,1.0,0 -76892907,"Deus Ex Game of the Year Edition",purchase,1.0,0 -76892907,"Deus Ex Invisible War",purchase,1.0,0 -76892907,"Devil's Workshop pack",purchase,1.0,0 -76892907,"Disciples III Renaissance",purchase,1.0,0 -76892907,"Disciples III Resurrection",purchase,1.0,0 -76892907,"Dishonored",purchase,1.0,0 -76892907,"Divine Divinity",purchase,1.0,0 -76892907,"Divinity Dragon Commander",purchase,1.0,0 -76892907,"Divinity Dragon Commander Beta",purchase,1.0,0 -76892907,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -76892907,"Divinity II - The Dragon Knight Saga",purchase,1.0,0 -76892907,"Divinity II Developer's Cut",purchase,1.0,0 -76892907,"DOOM 3 BFG Edition",purchase,1.0,0 -76892907,"Double Dragon Trilogy",purchase,1.0,0 -76892907,"Dracula Origin",purchase,1.0,0 -76892907,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -76892907,"Dungeon Defenders Eternity",purchase,1.0,0 -76892907,"Dungeonland",purchase,1.0,0 -76892907,"Dungeonland - All access pass",purchase,1.0,0 -76892907,"Dungeon Siege 2",purchase,1.0,0 -76892907,"Dungeon Siege III",purchase,1.0,0 -76892907,"Earth 2150 Trilogy",purchase,1.0,0 -76892907,"Earth 2150 Lost Souls",purchase,1.0,0 -76892907,"Earth 2150 The Moon Project",purchase,1.0,0 -76892907,"Elven Legacy",purchase,1.0,0 -76892907,"Elven Legacy Magic",purchase,1.0,0 -76892907,"Elven Legacy Ranger",purchase,1.0,0 -76892907,"Elven Legacy Siege",purchase,1.0,0 -76892907,"Enclave",purchase,1.0,0 -76892907,"Eternal Senia",purchase,1.0,0 -76892907,"EvilQuest",purchase,1.0,0 -76892907,"Fable - The Lost Chapters",purchase,1.0,0 -76892907,"Fable Anniversary",purchase,1.0,0 -76892907,"Fable III",purchase,1.0,0 -76892907,"Fallout",purchase,1.0,0 -76892907,"Fallout 2",purchase,1.0,0 -76892907,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -76892907,"Fallout Tactics",purchase,1.0,0 -76892907,"Fantasy Wars",purchase,1.0,0 -76892907,"FINAL FANTASY XI",purchase,1.0,0 -76892907,"FINAL FANTASY XI Ultimate Collection - Abyssea Edition",purchase,1.0,0 -76892907,"Flight of the Icarus",purchase,1.0,0 -76892907,"Flora's Fruit Farm",purchase,1.0,0 -76892907,"Fortune Summoners Secret of the Elemental Stone",purchase,1.0,0 -76892907,"Front Mission Evolved",purchase,1.0,0 -76892907,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -76892907,"Galactic Civilizations III",purchase,1.0,0 -76892907,"Game of Thrones ",purchase,1.0,0 -76892907,"Gear Up",purchase,1.0,0 -76892907,"Geneforge 1",purchase,1.0,0 -76892907,"Geneforge 2",purchase,1.0,0 -76892907,"Geneforge 3",purchase,1.0,0 -76892907,"Geneforge 4",purchase,1.0,0 -76892907,"Geneforge 5",purchase,1.0,0 -76892907,"Gothic",purchase,1.0,0 -76892907,"Gothic 3",purchase,1.0,0 -76892907,"Gothic 3 Forsaken Gods Enhanced Edition",purchase,1.0,0 -76892907,"Gothic II Gold Edition",purchase,1.0,0 -76892907,"Gratuitous Space Battles",purchase,1.0,0 -76892907,"Gratuitous Tank Battles",purchase,1.0,0 -76892907,"Grey Goo - Emergence Campaign",purchase,1.0,0 -76892907,"Grey Goo - Soundtrack",purchase,1.0,0 -76892907,"Grotesque Tactics 2 - Dungeons and Donuts",purchase,1.0,0 -76892907,"Grotesque Tactics Evil Heroes",purchase,1.0,0 -76892907,"Guardians of Graxia",purchase,1.0,0 -76892907,"Guilty Gear X2 #Reload",purchase,1.0,0 -76892907,"GUILTY GEAR Xrd -SIGN-",purchase,1.0,0 -76892907,"Gyromancer",purchase,1.0,0 -76892907,"Haegemonia Legions of Iron",purchase,1.0,0 -76892907,"Halo Spartan Assault",purchase,1.0,0 -76892907,"Hard Reset",purchase,1.0,0 -76892907,"Hard Reset Exile DLC",purchase,1.0,0 -76892907,"Hector Ep 1",purchase,1.0,0 -76892907,"Heretic Shadow of the Serpent Riders",purchase,1.0,0 -76892907,"Heroes of Annihilated Empires",purchase,1.0,0 -76892907,"HeXen Beyond Heretic",purchase,1.0,0 -76892907,"HeXen Deathkings of the Dark Citadel",purchase,1.0,0 -76892907,"HeXen II",purchase,1.0,0 -76892907,"Hitman 2 Silent Assassin",purchase,1.0,0 -76892907,"Hitman Blood Money",purchase,1.0,0 -76892907,"Hitman Codename 47",purchase,1.0,0 -76892907,"Holy Avatar vs. Maidens of the Dead",purchase,1.0,0 -76892907,"Hunters Of The Dead",purchase,1.0,0 -76892907,"Hyperdimension Neptunia Re;Birth2 Sisters Generation",purchase,1.0,0 -76892907,"Hyperdimension Neptunia Re;Birth3 V Generation",purchase,1.0,0 -76892907,"iBomber Defense Pacific",purchase,1.0,0 -76892907,"Impossible Creatures",purchase,1.0,0 -76892907,"Infernal",purchase,1.0,0 -76892907,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -76892907,"Inquisitor",purchase,1.0,0 -76892907,"Just Cause",purchase,1.0,0 -76892907,"Just Cause 2",purchase,1.0,0 -76892907,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -76892907,"Kane & Lynch Dead Men",purchase,1.0,0 -76892907,"Karateka ",purchase,1.0,0 -76892907,"Killing Floor",purchase,1.0,0 -76892907,"Killing Floor Uncovered",purchase,1.0,0 -76892907,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -76892907,"King's Bounty Armored Princess",purchase,1.0,0 -76892907,"King's Bounty Crossworlds",purchase,1.0,0 -76892907,"King's Bounty The Legend",purchase,1.0,0 -76892907,"King Arthur II - The Role-playing Wargame",purchase,1.0,0 -76892907,"Knights and Merchants",purchase,1.0,0 -76892907,"Kung Fury Street Rage",purchase,1.0,0 -76892907,"Lara Croft and the Guardian of Light",purchase,1.0,0 -76892907,"Legacy of Kain Defiance",purchase,1.0,0 -76892907,"Legacy of Kain Soul Reaver",purchase,1.0,0 -76892907,"Legacy of Kain Soul Reaver 2",purchase,1.0,0 -76892907,"LEGO The Hobbit",purchase,1.0,0 -76892907,"LEGO The Lord of the Rings",purchase,1.0,0 -76892907,"LIGHTNING RETURNS FINAL FANTASY XIII",purchase,1.0,0 -76892907,"Loki",purchase,1.0,0 -76892907,"Magical Diary",purchase,1.0,0 -76892907,"Magicka Final Frontier",purchase,1.0,0 -76892907,"Magicka Frozen Lake",purchase,1.0,0 -76892907,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -76892907,"Magicka Nippon",purchase,1.0,0 -76892907,"Magicka Party Robes",purchase,1.0,0 -76892907,"Magicka The Watchtower",purchase,1.0,0 -76892907,"Magicka Vietnam",purchase,1.0,0 -76892907,"Magicka Wizard's Survival Kit",purchase,1.0,0 -76892907,"Majesty 2 Collection",purchase,1.0,0 -76892907,"Men of War",purchase,1.0,0 -76892907,"Men of War Assault Squad",purchase,1.0,0 -76892907,"Men of War Red Tide",purchase,1.0,0 -76892907,"Men of War Vietnam",purchase,1.0,0 -76892907,"Meridian New World",purchase,1.0,0 -76892907,"Meridian Video and Soundtrack",purchase,1.0,0 -76892907,"Might & Magic Clash of Heroes",purchase,1.0,0 -76892907,"Minimum",purchase,1.0,0 -76892907,"Mini Ninjas",purchase,1.0,0 -76892907,"Mitsurugi Kamui Hikae",purchase,1.0,0 -76892907,"Mount & Blade",purchase,1.0,0 -76892907,"Mount & Blade Warband",purchase,1.0,0 -76892907,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -76892907,"Mount & Blade With Fire and Sword",purchase,1.0,0 -76892907,"NecroVisioN",purchase,1.0,0 -76892907,"NecroVisioN Lost Company",purchase,1.0,0 -76892907,"Nethergate Resurrection",purchase,1.0,0 -76892907,"Oddworld Abe's Oddysee",purchase,1.0,0 -76892907,"Off-Road Drive",purchase,1.0,0 -76892907,"Of Orcs And Men",purchase,1.0,0 -76892907,"OH! RPG!",purchase,1.0,0 -76892907,"ONE PIECE PIRATE WARRIORS 3",purchase,1.0,0 -76892907,"Orcs Must Die!",purchase,1.0,0 -76892907,"Overlord",purchase,1.0,0 -76892907,"Overlord Raising Hell",purchase,1.0,0 -76892907,"Overlord II",purchase,1.0,0 -76892907,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",purchase,1.0,0 -76892907,"Penny Arcade's On the Rain-Slick Precipice of Darkness 4",purchase,1.0,0 -76892907,"Pillars of Eternity",purchase,1.0,0 -76892907,"Pirates of Black Cove",purchase,1.0,0 -76892907,"Poker Night at the Inventory",purchase,1.0,0 -76892907,"POSTAL 2",purchase,1.0,0 -76892907,"POSTAL 2 Paradise Lost",purchase,1.0,0 -76892907,"Postal 3",purchase,1.0,0 -76892907,"Pro Cycling Manager Season 2008",purchase,1.0,0 -76892907,"Pro Cycling Manager Season 2009",purchase,1.0,0 -76892907,"Project Snowblind",purchase,1.0,0 -76892907,"Prototype",purchase,1.0,0 -76892907,"PROTOTYPE 2",purchase,1.0,0 -76892907,"Prototype 2 RADNET Access Pack",purchase,1.0,0 -76892907,"Puzzle Agent",purchase,1.0,0 -76892907,"Puzzle Agent 2",purchase,1.0,0 -76892907,"RAW - Realms of Ancient War",purchase,1.0,0 -76892907,"Realms of Arkania 1 - Blade of Destiny Classic",purchase,1.0,0 -76892907,"Realms of Arkania 2 - Star Trail Classic",purchase,1.0,0 -76892907,"Realms of Arkania 3 - Shadows over Riva Classic",purchase,1.0,0 -76892907,"Real Warfare",purchase,1.0,0 -76892907,"Real Warfare 2 Northern Crusades",purchase,1.0,0 -76892907,"Reign Conflict of Nations",purchase,1.0,0 -76892907,"Remember Me",purchase,1.0,0 -76892907,"Rig 'n' Roll",purchase,1.0,0 -76892907,"Risen 2 - Dark Waters",purchase,1.0,0 -76892907,"Risen 3 - Titan Lords",purchase,1.0,0 -76892907,"Rogue Trooper",purchase,1.0,0 -76892907,"RPG Maker DS Resource Pack",purchase,1.0,0 -76892907,"RPG Maker Futuristic Tiles Resource Pack",purchase,1.0,0 -76892907,"RPG Maker High Fantasy 2 Resource Pack",purchase,1.0,0 -76892907,"RPG Maker Samurai Resource Pack",purchase,1.0,0 -76892907,"RPG Maker VX Ace",purchase,1.0,0 -76892907,"Runaway A Road Adventure",purchase,1.0,0 -76892907,"Runaway A Twist of Fate",purchase,1.0,0 -76892907,"Runaway The Dream of the Turtle",purchase,1.0,0 -76892907,"Sacred 3",purchase,1.0,0 -76892907,"Sacred 3 Underworld Story",purchase,1.0,0 -76892907,"Saints Row 2",purchase,1.0,0 -76892907,"Saints Row Gat out of Hell",purchase,1.0,0 -76892907,"Saints Row The Third",purchase,1.0,0 -76892907,"Saints Row IV",purchase,1.0,0 -76892907,"Sam & Max 101 Culture Shock",purchase,1.0,0 -76892907,"Sam & Max 102 Situation Comedy",purchase,1.0,0 -76892907,"Sam & Max 103 The Mole, the Mob and the Meatball",purchase,1.0,0 -76892907,"Sam & Max 105 Reality 2.0",purchase,1.0,0 -76892907,"Sam & Max 106 Bright Side of the Moon",purchase,1.0,0 -76892907,"Sam & Max 201 Ice Station Santa",purchase,1.0,0 -76892907,"Sam & Max 202 Moai Better Blues",purchase,1.0,0 -76892907,"Sam & Max 203 Night of the Raving Dead",purchase,1.0,0 -76892907,"Sam & Max 204 Chariots of the Dogs",purchase,1.0,0 -76892907,"Sam & Max 205 What's New Beelzebub?",purchase,1.0,0 -76892907,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -76892907,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -76892907,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -76892907,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -76892907,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -76892907,"Sang-Froid - Tales of Werewolves",purchase,1.0,0 -76892907,"Savage Lands",purchase,1.0,0 -76892907,"Season of Mystery The Cherry Blossom Murders",purchase,1.0,0 -76892907,"Secret Of Magia",purchase,1.0,0 -76892907,"Septerra Core",purchase,1.0,0 -76892907,"Shadowgate",purchase,1.0,0 -76892907,"Shadowgrounds",purchase,1.0,0 -76892907,"Shadowgrounds Survivor",purchase,1.0,0 -76892907,"Shadowrun Dragonfall",purchase,1.0,0 -76892907,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -76892907,"Shadowrun Hong Kong",purchase,1.0,0 -76892907,"Shattered Planet",purchase,1.0,0 -76892907,"Shellshock 2 Blood Trails",purchase,1.0,0 -76892907,"Sherlock Holmes Nemesis",purchase,1.0,0 -76892907,"Sherlock Holmes versus Jack the Ripper",purchase,1.0,0 -76892907,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -76892907,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -76892907,"Silverfall",purchase,1.0,0 -76892907,"Silverfall Earth Awakening",purchase,1.0,0 -76892907,"Sins of a Solar Empire Rebellion - Stellar Phenomena DLC",purchase,1.0,0 -76892907,"Sins of a Solar Empire Rebellion Forbidden Worlds",purchase,1.0,0 -76892907,"Sins of a Solar Empire Rebellion Soundtrack",purchase,1.0,0 -76892907,"Skullgirls",purchase,1.0,0 -76892907,"Skullgirls Endless Beta",purchase,1.0,0 -76892907,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -76892907,"Sleeping Dogs",purchase,1.0,0 -76892907,"Smugglers 5 Invasion",purchase,1.0,0 -76892907,"Soulbringer",purchase,1.0,0 -76892907,"South Park The Stick of Truth - Super Samurai Spaceman Pack",purchase,1.0,0 -76892907,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -76892907,"Space Empires IV Deluxe",purchase,1.0,0 -76892907,"Space Empires V",purchase,1.0,0 -76892907,"Space Rangers",purchase,1.0,0 -76892907,"Space Rangers 2 Reboot",purchase,1.0,0 -76892907,"Spore Creepy & Cute Parts Pack",purchase,1.0,0 -76892907,"Star Ruler",purchase,1.0,0 -76892907,"Star Wars - Battlefront II",purchase,1.0,0 -76892907,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -76892907,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -76892907,"Star Wars Dark Forces",purchase,1.0,0 -76892907,"Star Wars Empire at War Gold",purchase,1.0,0 -76892907,"Star Wars Knights of the Old Republic",purchase,1.0,0 -76892907,"Star Wars The Force Unleashed II",purchase,1.0,0 -76892907,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -76892907,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -76892907,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -76892907,"Star Wars Republic Commando",purchase,1.0,0 -76892907,"Star Wars Starfighter",purchase,1.0,0 -76892907,"Star Wars The Clone Wars Republic Heroes",purchase,1.0,0 -76892907,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -76892907,"Star Wolves",purchase,1.0,0 -76892907,"Star Wolves 2",purchase,1.0,0 -76892907,"Star Wolves 3 Civil War",purchase,1.0,0 -76892907,"Streets of Moscow",purchase,1.0,0 -76892907,"Strong Bad Episode 1 Homestar Ruiner",purchase,1.0,0 -76892907,"Strong Bad Episode 2 Strong Badia the Free",purchase,1.0,0 -76892907,"Strong Bad Episode 3 Baddest of the Bands",purchase,1.0,0 -76892907,"Strong Bad Episode 4 Dangeresque 3",purchase,1.0,0 -76892907,"Strong Bad Episode 5 8-Bit Is Enough",purchase,1.0,0 -76892907,"Stronghold 2",purchase,1.0,0 -76892907,"Stronghold 3",purchase,1.0,0 -76892907,"Stronghold Crusader Extreme HD",purchase,1.0,0 -76892907,"Stronghold Crusader HD",purchase,1.0,0 -76892907,"Stronghold HD",purchase,1.0,0 -76892907,"Stronghold Legends",purchase,1.0,0 -76892907,"Styx Master of Shadows",purchase,1.0,0 -76892907,"Summoner",purchase,1.0,0 -76892907,"SunAge Battle for Elysium",purchase,1.0,0 -76892907,"Supreme Commander",purchase,1.0,0 -76892907,"Supreme Commander 2 - Infinite War Battle Pack One",purchase,1.0,0 -76892907,"Supreme Commander Forged Alliance",purchase,1.0,0 -76892907,"Tales of Monkey Island Chapter 1 - Launch of the Screaming Narwhal",purchase,1.0,0 -76892907,"Tales of Monkey Island Chapter 2 - The Siege of Spinner Cay ",purchase,1.0,0 -76892907,"Tales of Monkey Island Chapter 3 - Lair of the Leviathan ",purchase,1.0,0 -76892907,"Tales of Monkey Island Chapter 4 - The Trial and Execution of Guybrush Threepwood ",purchase,1.0,0 -76892907,"Tales of Monkey Island Chapter 5 - Rise of the Pirate God",purchase,1.0,0 -76892907,"Telltale Texas Hold'Em",purchase,1.0,0 -76892907,"Theatre of War",purchase,1.0,0 -76892907,"Theatre of War 2 Africa 1943",purchase,1.0,0 -76892907,"Theatre of War 2 Kursk 1943 ",purchase,1.0,0 -76892907,"Theatre of War 3 Korea",purchase,1.0,0 -76892907,"The Book of Legends",purchase,1.0,0 -76892907,"The Elder Scrolls III Morrowind",purchase,1.0,0 -76892907,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -76892907,"The Elder Scrolls V Skyrim",purchase,1.0,0 -76892907,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -76892907,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -76892907,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -76892907,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -76892907,"THE KING OF FIGHTERS 2002 UNLIMITED MATCH",purchase,1.0,0 -76892907,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -76892907,"The Last Remnant",purchase,1.0,0 -76892907,"The LEGO Movie - Videogame",purchase,1.0,0 -76892907,"The Next BIG Thing",purchase,1.0,0 -76892907,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -76892907,"The Witcher Enhanced Edition",purchase,1.0,0 -76892907,"Thief",purchase,1.0,0 -76892907,"Thief - Ghost",purchase,1.0,0 -76892907,"Thief - Opportunist",purchase,1.0,0 -76892907,"Thief - Predator",purchase,1.0,0 -76892907,"Thief - The Bank Heist",purchase,1.0,0 -76892907,"Thief Deadly Shadows",purchase,1.0,0 -76892907,"Titan Quest",purchase,1.0,0 -76892907,"Titan Quest Immortal Throne",purchase,1.0,0 -76892907,"Tomb Raider Anniversary",purchase,1.0,0 -76892907,"Tomb Raider Legend",purchase,1.0,0 -76892907,"Tomb Raider Underworld",purchase,1.0,0 -76892907,"TRANSFORMERS Rise of the Dark Spark",purchase,1.0,0 -76892907,"Trapped Dead",purchase,1.0,0 -76892907,"Trine",purchase,1.0,0 -76892907,"Trine 2",purchase,1.0,0 -76892907,"Tryst Survival DLC",purchase,1.0,0 -76892907,"UFO Afterlight",purchase,1.0,0 -76892907,"UFO Afterlight - Old Version",purchase,1.0,0 -76892907,"Undefeated",purchase,1.0,0 -76892907,"Undefeated - Deluxe Contents",purchase,1.0,0 -76892907,"Undefeated - Official Guide",purchase,1.0,0 -76892907,"Universe at War Earth Assault",purchase,1.0,0 -76892907,"Unreal Gold",purchase,1.0,0 -76892907,"Unreal II The Awakening",purchase,1.0,0 -76892907,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -76892907,"Unreal Tournament 2004",purchase,1.0,0 -76892907,"Unreal Tournament Game of the Year Edition",purchase,1.0,0 -76892907,"Vagrant Hearts",purchase,1.0,0 -76892907,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -76892907,"Van Helsing II Ink Hunt",purchase,1.0,0 -76892907,"Van Helsing II Pigasus",purchase,1.0,0 -76892907,"Wallace & Gromit Ep 1 Fright of the Bumblebees",purchase,1.0,0 -76892907,"Wallace & Gromit Ep 2 The Last Resort",purchase,1.0,0 -76892907,"Wallace & Gromit Ep 3 Muzzled!",purchase,1.0,0 -76892907,"Wallace & Gromit Ep 4 The Bogey Man",purchase,1.0,0 -76892907,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -76892907,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -76892907,"Warhammer 40,000 Storm of Vengeance",purchase,1.0,0 -76892907,"Warhammer 40,000 Storm of Vengeance Bad Moon Clan",purchase,1.0,0 -76892907,"Warhammer 40,000 Storm of Vengeance Death Skulls Clan",purchase,1.0,0 -76892907,"Warhammer 40,000 Storm of Vengeance Deathwing Terminator",purchase,1.0,0 -76892907,"Warhammer 40,000 Storm of Vengeance Imperial Guard Faction",purchase,1.0,0 -76892907,"Warlock - Master of the Arcane",purchase,1.0,0 -76892907,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -76892907,"Warlock 2 the Exiled",purchase,1.0,0 -76892907,"War of the Roses",purchase,1.0,0 -76892907,"War of the Roses Kingmaker",purchase,1.0,0 -76892907,"War of the Roses Balance Beta",purchase,1.0,0 -76892907,"Winter Voices",purchase,1.0,0 -76892907,"Wizorb",purchase,1.0,0 -76892907,"Written in the Sky",purchase,1.0,0 -76892907,"XIII Century",purchase,1.0,0 -76892907,"Yosumin!",purchase,1.0,0 -76892907,"Ys I",purchase,1.0,0 -76892907,"Ys II",purchase,1.0,0 -76892907,"Zeno Clash",purchase,1.0,0 -300449823,"Counter-Strike Global Offensive",purchase,1.0,0 -300449823,"Counter-Strike Global Offensive",play,3.4,0 -106333903,"Dota 2",purchase,1.0,0 -106333903,"Dota 2",play,81.0,0 -106333903,"Team Fortress 2",purchase,1.0,0 -106333903,"Team Fortress 2",play,21.0,0 -106333903,"Don't Starve Together Beta",purchase,1.0,0 -106333903,"Don't Starve Together Beta",play,19.6,0 -106333903,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -106333903,"Tom Clancy's Splinter Cell Conviction",play,11.1,0 -106333903,"Counter-Strike Global Offensive",purchase,1.0,0 -106333903,"Counter-Strike Global Offensive",play,4.2,0 -106333903,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -106333903,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,1.0,0 -106333903,"The Witcher Enhanced Edition",purchase,1.0,0 -106333903,"The Witcher Enhanced Edition",play,0.9,0 -106333903,"Path of Exile",purchase,1.0,0 -106333903,"Path of Exile",play,0.4,0 -106333903,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -106333903,"Warhammer 40,000 Dawn of War II",play,0.3,0 -106333903,"Toribash",purchase,1.0,0 -106333903,"Toribash",play,0.3,0 -106333903,"Roogoo",purchase,1.0,0 -106333903,"Roogoo",play,0.2,0 -106333903,"Left 4 Dead 2",purchase,1.0,0 -106333903,"Blacklight Retribution",purchase,1.0,0 -106333903,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -106333903,"Company of Heroes",purchase,1.0,0 -106333903,"Company of Heroes (New Steam Version)",purchase,1.0,0 -106333903,"Company of Heroes 2",purchase,1.0,0 -106333903,"Company of Heroes Opposing Fronts",purchase,1.0,0 -106333903,"Company of Heroes Tales of Valor",purchase,1.0,0 -106333903,"Dead Island Epidemic",purchase,1.0,0 -106333903,"Defy Gravity",purchase,1.0,0 -106333903,"Nosgoth",purchase,1.0,0 -106333903,"Sniper Elite V2",purchase,1.0,0 -106333903,"Spiral Knights",purchase,1.0,0 -106333903,"Thinking with Time Machine",purchase,1.0,0 -106333903,"Trove",purchase,1.0,0 -106333903,"Unturned",purchase,1.0,0 -276820640,"Dota 2",purchase,1.0,0 -276820640,"Dota 2",play,1.8,0 -112566632,"Synergy",purchase,1.0,0 -112566632,"Synergy",play,1.9,0 -124975432,"Dota 2",purchase,1.0,0 -124975432,"Dota 2",play,1614.0,0 -214805425,"Unturned",purchase,1.0,0 -214805425,"Unturned",play,0.3,0 -214805425,"AdVenture Capitalist",purchase,1.0,0 -214805425,"No More Room in Hell",purchase,1.0,0 -214805425,"Warframe",purchase,1.0,0 -118433250,"Football Manager 2013",purchase,1.0,0 -118433250,"Football Manager 2013",play,56.0,0 -282599048,"Dota 2",purchase,1.0,0 -282599048,"Dota 2",play,11.5,0 -115487966,"Counter-Strike Global Offensive",purchase,1.0,0 -115487966,"Counter-Strike Global Offensive",play,473.0,0 -115487966,"Garry's Mod",purchase,1.0,0 -115487966,"Garry's Mod",play,199.0,0 -115487966,"RIFT",purchase,1.0,0 -115487966,"RIFT",play,160.0,0 -115487966,"Path of Exile",purchase,1.0,0 -115487966,"Path of Exile",play,112.0,0 -115487966,"Team Fortress 2",purchase,1.0,0 -115487966,"Team Fortress 2",play,79.0,0 -115487966,"The Sims(TM) 3",purchase,1.0,0 -115487966,"The Sims(TM) 3",play,70.0,0 -115487966,"AdVenture Capitalist",purchase,1.0,0 -115487966,"AdVenture Capitalist",play,68.0,0 -115487966,"The Elder Scrolls V Skyrim",purchase,1.0,0 -115487966,"The Elder Scrolls V Skyrim",play,54.0,0 -115487966,"Borderlands 2",purchase,1.0,0 -115487966,"Borderlands 2",play,27.0,0 -115487966,"ARK Survival Evolved",purchase,1.0,0 -115487966,"ARK Survival Evolved",play,14.6,0 -115487966,"Left 4 Dead 2",purchase,1.0,0 -115487966,"Left 4 Dead 2",play,10.5,0 -115487966,"PlanetSide 2",purchase,1.0,0 -115487966,"PlanetSide 2",play,9.8,0 -115487966,"Stronghold Kingdoms",purchase,1.0,0 -115487966,"Stronghold Kingdoms",play,6.3,0 -115487966,"Yet Another Zombie Defense",purchase,1.0,0 -115487966,"Yet Another Zombie Defense",play,5.8,0 -115487966,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -115487966,"RollerCoaster Tycoon 3 Platinum!",play,3.6,0 -115487966,"Trine 2",purchase,1.0,0 -115487966,"Trine 2",play,3.5,0 -115487966,"Eternal Fate",purchase,1.0,0 -115487966,"Eternal Fate",play,3.2,0 -115487966,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -115487966,"The Elder Scrolls IV Oblivion ",play,2.8,0 -115487966,"No More Room in Hell",purchase,1.0,0 -115487966,"No More Room in Hell",play,2.7,0 -115487966,"Geometry Dash",purchase,1.0,0 -115487966,"Geometry Dash",play,2.0,0 -115487966,"Neverwinter",purchase,1.0,0 -115487966,"Neverwinter",play,1.3,0 -115487966,"The Mighty Quest For Epic Loot",purchase,1.0,0 -115487966,"The Mighty Quest For Epic Loot",play,1.2,0 -115487966,"Rise of the Triad",purchase,1.0,0 -115487966,"Rise of the Triad",play,1.1,0 -115487966,"Echo of Soul",purchase,1.0,0 -115487966,"Echo of Soul",play,1.0,0 -115487966,"The Lord of the Rings Online",purchase,1.0,0 -115487966,"The Lord of the Rings Online",play,0.9,0 -115487966,"Five Nights at Freddy's 4",purchase,1.0,0 -115487966,"Five Nights at Freddy's 4",play,0.9,0 -115487966,"Grand Theft Auto IV",purchase,1.0,0 -115487966,"Grand Theft Auto IV",play,0.6,0 -115487966,"Surgeon Simulator",purchase,1.0,0 -115487966,"Surgeon Simulator",play,0.6,0 -115487966,"Day of Defeat",purchase,1.0,0 -115487966,"Day of Defeat",play,0.5,0 -115487966,"Dota 2",purchase,1.0,0 -115487966,"Dota 2",play,0.5,0 -115487966,"Emily is Away",purchase,1.0,0 -115487966,"Emily is Away",play,0.5,0 -115487966,"Survarium",purchase,1.0,0 -115487966,"Survarium",play,0.4,0 -115487966,"Draw a Stickman EPIC",purchase,1.0,0 -115487966,"Draw a Stickman EPIC",play,0.4,0 -115487966,"Dungeon Defenders II",purchase,1.0,0 -115487966,"Dungeon Defenders II",play,0.3,0 -115487966,"Brick-Force",purchase,1.0,0 -115487966,"Brick-Force",play,0.3,0 -115487966,"8BitMMO",purchase,1.0,0 -115487966,"8BitMMO",play,0.2,0 -115487966,"World of Guns Gun Disassembly",purchase,1.0,0 -115487966,"World of Guns Gun Disassembly",play,0.1,0 -115487966,"GooCubelets",purchase,1.0,0 -115487966,"GooCubelets",play,0.1,0 -115487966,"Counter-Strike Nexon Zombies",purchase,1.0,0 -115487966,"Counter-Strike Nexon Zombies",play,0.1,0 -115487966,"Codename CURE",purchase,1.0,0 -115487966,"Escape",purchase,1.0,0 -115487966,"Forsaken Uprising",purchase,1.0,0 -115487966,"Heroes & Generals",purchase,1.0,0 -115487966,"APB Reloaded",purchase,1.0,0 -115487966,"ArcheAge",purchase,1.0,0 -115487966,"GooCubelets 2",purchase,1.0,0 -115487966,"Guns and Robots",purchase,1.0,0 -115487966,"theHunter",purchase,1.0,0 -115487966,"Villagers and Heroes",purchase,1.0,0 -188425099,"Dota 2",purchase,1.0,0 -188425099,"Dota 2",play,2.8,0 -137951076,"Omerta - City of Gangsters",purchase,1.0,0 -137951076,"Omerta - City of Gangsters",play,6.8,0 -137951076,"Spintires",purchase,1.0,0 -137951076,"Spintires",play,3.8,0 -295981434,"Undertale",purchase,1.0,0 -295981434,"Undertale",play,20.0,0 -295981434,"HuniePop",purchase,1.0,0 -295981434,"HuniePop",play,13.2,0 -295981434,"DC Universe Online",purchase,1.0,0 -295981434,"DC Universe Online",play,2.1,0 -295981434,"Firefall",purchase,1.0,0 -295981434,"Firefall",play,0.9,0 -295981434,"Archeblade",purchase,1.0,0 -295981434,"Archeblade",play,0.5,0 -295981434,"Warface",purchase,1.0,0 -295981434,"Aion",purchase,1.0,0 -295981434,"PlanetSide 2",purchase,1.0,0 -295981434,"TERA",purchase,1.0,0 -94862562,"Terraria",purchase,1.0,0 -94862562,"Terraria",play,7.0,0 -249550615,"Unturned",purchase,1.0,0 -249550615,"Unturned",play,0.2,0 -249550615,"Codename CURE",purchase,1.0,0 -276520060,"Dirty Bomb",purchase,1.0,0 -276520060,"Dirty Bomb",play,0.4,0 -276520060,"Team Fortress 2",purchase,1.0,0 -276520060,"Team Fortress 2",play,0.1,0 -23072560,"Half-Life 2 Episode One",purchase,1.0,0 -23072560,"Half-Life 2 Episode One",play,10.3,0 -23072560,"Half-Life 2 Lost Coast",purchase,1.0,0 -23072560,"Half-Life 2 Lost Coast",play,1.2,0 -23072560,"Half-Life Deathmatch Source",purchase,1.0,0 -23072560,"Half-Life Deathmatch Source",play,0.2,0 -23072560,"Half-Life 2 Deathmatch",purchase,1.0,0 -218600642,"Team Fortress 2",purchase,1.0,0 -218600642,"Team Fortress 2",play,3.9,0 -125875677,"RACE 07",purchase,1.0,0 -125875677,"GT Power Expansion",purchase,1.0,0 -125875677,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -125875677,"STCC II",purchase,1.0,0 -125875677,"The Retro Expansion",purchase,1.0,0 -125875677,"The WTCC 2010 Pack",purchase,1.0,0 -227901139,"War Thunder",purchase,1.0,0 -29268335,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -29268335,"Warhammer 40,000 Dawn of War II",play,33.0,0 -29268335,"Team Fortress 2",purchase,1.0,0 -29268335,"Team Fortress 2",play,1.0,0 -29268335,"Awesomenauts",purchase,1.0,0 -29268335,"Awesomenauts",play,0.5,0 -29268335,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -29268335,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -307998745,"Back to Dinosaur Island ",purchase,1.0,0 -307998745,"Back to Dinosaur Island ",play,0.3,0 -199236587,"Euro Truck Simulator 2",purchase,1.0,0 -199236587,"Euro Truck Simulator 2",play,71.0,0 -199236587,"APB Reloaded",purchase,1.0,0 -199236587,"BLOCKADE 3D",purchase,1.0,0 -199236587,"Heroes & Generals",purchase,1.0,0 -199236587,"Unturned",purchase,1.0,0 -199236587,"Warframe",purchase,1.0,0 -52583581,"Portal",purchase,1.0,0 -52583581,"Portal",play,1.5,0 -144731554,"Dota 2",purchase,1.0,0 -144731554,"Dota 2",play,1151.0,0 -65754991,"The Elder Scrolls V Skyrim",purchase,1.0,0 -65754991,"The Elder Scrolls V Skyrim",play,68.0,0 -65754991,"LEGO MARVEL Super Heroes",purchase,1.0,0 -65754991,"LEGO MARVEL Super Heroes",play,53.0,0 -65754991,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -65754991,"Injustice Gods Among Us Ultimate Edition",play,52.0,0 -65754991,"Batman Arkham City GOTY",purchase,1.0,0 -65754991,"Batman Arkham City GOTY",play,41.0,0 -65754991,"Borderlands 2 RU",purchase,1.0,0 -65754991,"Borderlands 2 RU",play,39.0,0 -65754991,"Batman Arkham Origins",purchase,1.0,0 -65754991,"Batman Arkham Origins",play,37.0,0 -65754991,"Star Wars Knights of the Old Republic",purchase,1.0,0 -65754991,"Star Wars Knights of the Old Republic",play,36.0,0 -65754991,"Mortal Kombat X",purchase,1.0,0 -65754991,"Mortal Kombat X",play,33.0,0 -65754991,"Darksiders II",purchase,1.0,0 -65754991,"Darksiders II",play,26.0,0 -65754991,"Darksiders",purchase,1.0,0 -65754991,"Darksiders",play,26.0,0 -65754991,"Saints Row IV",purchase,1.0,0 -65754991,"Saints Row IV",play,24.0,0 -65754991,"The Witcher Enhanced Edition",purchase,1.0,0 -65754991,"The Witcher Enhanced Edition",play,23.0,0 -65754991,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -65754991,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,19.7,0 -65754991,"South Park The Stick of Truth",purchase,1.0,0 -65754991,"South Park The Stick of Truth",play,19.4,0 -65754991,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -65754991,"Batman Arkham Asylum GOTY Edition",play,18.4,0 -65754991,"Half-Life 2",purchase,1.0,0 -65754991,"Half-Life 2",play,13.4,0 -65754991,"Mortal Kombat Komplete Edition",purchase,1.0,0 -65754991,"Mortal Kombat Komplete Edition",play,13.3,0 -65754991,"LEGO Batman 2",purchase,1.0,0 -65754991,"LEGO Batman 2",play,12.1,0 -65754991,"Spore",purchase,1.0,0 -65754991,"Spore",play,10.4,0 -65754991,"Thief",purchase,1.0,0 -65754991,"Thief",play,10.1,0 -65754991,"Mafia II",purchase,1.0,0 -65754991,"Mafia II",play,8.7,0 -65754991,"Deadpool",purchase,1.0,0 -65754991,"Deadpool",play,8.2,0 -65754991,"BioShock Infinite",purchase,1.0,0 -65754991,"BioShock Infinite",play,7.3,0 -65754991,"Watch_Dogs",purchase,1.0,0 -65754991,"Watch_Dogs",play,6.5,0 -65754991,"The Elder Scrolls Online Tamriel Unlimited",purchase,1.0,0 -65754991,"The Elder Scrolls Online Tamriel Unlimited",play,6.2,0 -65754991,"Portal 2",purchase,1.0,0 -65754991,"Portal 2",play,5.5,0 -65754991,"Alan Wake",purchase,1.0,0 -65754991,"Alan Wake",play,4.9,0 -65754991,"Half-Life 2 Episode One",purchase,1.0,0 -65754991,"Half-Life 2 Episode One",play,3.8,0 -65754991,"Dishonored (RU)",purchase,1.0,0 -65754991,"Dishonored (RU)",play,3.4,0 -65754991,"Portal",purchase,1.0,0 -65754991,"Portal",play,3.3,0 -65754991,"Remember Me",purchase,1.0,0 -65754991,"Remember Me",play,3.0,0 -65754991,"Dead Rising 3",purchase,1.0,0 -65754991,"Dead Rising 3",play,2.9,0 -65754991,"Saints Row Gat out of Hell",purchase,1.0,0 -65754991,"Saints Row Gat out of Hell",play,2.8,0 -65754991,"Goat Simulator",purchase,1.0,0 -65754991,"Goat Simulator",play,2.3,0 -65754991,"Fable Anniversary",purchase,1.0,0 -65754991,"Fable Anniversary",play,1.9,0 -65754991,"Neighbours from Hell",purchase,1.0,0 -65754991,"Neighbours from Hell",play,1.5,0 -65754991,"LEGO Batman The Videogame",purchase,1.0,0 -65754991,"LEGO Batman The Videogame",play,1.3,0 -65754991,"The Stanley Parable",purchase,1.0,0 -65754991,"The Stanley Parable",play,1.3,0 -65754991,"DuckTales Remastered",purchase,1.0,0 -65754991,"DuckTales Remastered",play,0.8,0 -65754991,"Star Wars - Battlefront II",purchase,1.0,0 -65754991,"Star Wars - Battlefront II",play,0.6,0 -65754991,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -65754991,"SEGA Genesis & Mega Drive Classics",play,0.5,0 -65754991,"POSTAL 2",purchase,1.0,0 -65754991,"POSTAL 2",play,0.5,0 -65754991,"Angry Video Game Nerd Adventures",purchase,1.0,0 -65754991,"Angry Video Game Nerd Adventures",play,0.4,0 -65754991,"Half-Life Source",purchase,1.0,0 -65754991,"Half-Life Source",play,0.4,0 -65754991,"Neighbours from Hell 2",purchase,1.0,0 -65754991,"Neighbours from Hell 2",play,0.3,0 -65754991,"Terraria",purchase,1.0,0 -65754991,"Terraria",play,0.2,0 -65754991,"LIMBO",purchase,1.0,0 -65754991,"LIMBO",play,0.2,0 -65754991,"Half-Life 2 Deathmatch",purchase,1.0,0 -65754991,"Half-Life 2 Deathmatch",play,0.2,0 -65754991,"Sacred 2 Gold",purchase,1.0,0 -65754991,"Sacred 2 Gold",play,0.2,0 -65754991,"Spore Galactic Adventures",purchase,1.0,0 -65754991,"Alan Wake's American Nightmare",purchase,1.0,0 -65754991,"ArcaniA",purchase,1.0,0 -65754991,"ArcaniA Fall of Setarrif",purchase,1.0,0 -65754991,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -65754991,"Batman Arkham Origins - Initiation",purchase,1.0,0 -65754991,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -65754991,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -65754991,"Borderlands 2",purchase,1.0,0 -65754991,"Borderlands The Pre-Sequel",purchase,1.0,0 -65754991,"Brtal Legend",purchase,1.0,0 -65754991,"Costume Quest",purchase,1.0,0 -65754991,"Counter-Strike",purchase,1.0,0 -65754991,"Counter-Strike Condition Zero",purchase,1.0,0 -65754991,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -65754991,"Counter-Strike Global Offensive",purchase,1.0,0 -65754991,"Counter-Strike Source",purchase,1.0,0 -65754991,"Darksiders II Deathinitive Edition",purchase,1.0,0 -65754991,"Darksiders II Soundtrack",purchase,1.0,0 -65754991,"Darksiders Soundtrack",purchase,1.0,0 -65754991,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -65754991,"Day of Defeat",purchase,1.0,0 -65754991,"Day of Defeat Source",purchase,1.0,0 -65754991,"Dead Island",purchase,1.0,0 -65754991,"Dead Island Epidemic",purchase,1.0,0 -65754991,"Dead Island Riptide",purchase,1.0,0 -65754991,"Dead Rising 3 DLC1",purchase,1.0,0 -65754991,"Dead Rising 3 DLC2",purchase,1.0,0 -65754991,"Dead Rising 3 DLC3",purchase,1.0,0 -65754991,"Dead Rising 3 DLC4",purchase,1.0,0 -65754991,"Deathmatch Classic",purchase,1.0,0 -65754991,"Devil's Workshop pack",purchase,1.0,0 -65754991,"DOOM 3 BFG Edition",purchase,1.0,0 -65754991,"DOOM II Hell on Earth",purchase,1.0,0 -65754991,"Fable - The Lost Chapters",purchase,1.0,0 -65754991,"Fallout",purchase,1.0,0 -65754991,"Fallout 2",purchase,1.0,0 -65754991,"Fallout New Vegas",purchase,1.0,0 -65754991,"Fallout Tactics",purchase,1.0,0 -65754991,"Final DOOM",purchase,1.0,0 -65754991,"Gothic",purchase,1.0,0 -65754991,"Gothic 3",purchase,1.0,0 -65754991,"Gothic 3 Forsaken Gods Enhanced Edition",purchase,1.0,0 -65754991,"Gothic II Gold Edition",purchase,1.0,0 -65754991,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -65754991,"Grand Theft Auto San Andreas",purchase,1.0,0 -65754991,"Grand Theft Auto San Andreas",purchase,1.0,0 -65754991,"Grand Theft Auto Vice City",purchase,1.0,0 -65754991,"Grand Theft Auto Vice City",purchase,1.0,0 -65754991,"Grand Theft Auto III",purchase,1.0,0 -65754991,"Grand Theft Auto III",purchase,1.0,0 -65754991,"Grand Theft Auto IV",purchase,1.0,0 -65754991,"Half-Life",purchase,1.0,0 -65754991,"Half-Life 2 Episode Two",purchase,1.0,0 -65754991,"Half-Life 2 Lost Coast",purchase,1.0,0 -65754991,"Half-Life Blue Shift",purchase,1.0,0 -65754991,"Half-Life Opposing Force",purchase,1.0,0 -65754991,"Half-Life Deathmatch Source",purchase,1.0,0 -65754991,"Iron Brigade",purchase,1.0,0 -65754991,"Left 4 Dead",purchase,1.0,0 -65754991,"Left 4 Dead 2",purchase,1.0,0 -65754991,"LEGO Batman 3 Beyond Gotham",purchase,1.0,0 -65754991,"LEGO The Hobbit",purchase,1.0,0 -65754991,"Mass Effect",purchase,1.0,0 -65754991,"Mass Effect 2",purchase,1.0,0 -65754991,"Master Levels for DOOM II",purchase,1.0,0 -65754991,"Psychonauts",purchase,1.0,0 -65754991,"Psychonauts Demo",purchase,1.0,0 -65754991,"Ricochet",purchase,1.0,0 -65754991,"Risen 2 - Dark Waters",purchase,1.0,0 -65754991,"Saints Row 2",purchase,1.0,0 -65754991,"Saints Row The Third",purchase,1.0,0 -65754991,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -65754991,"Spore Creepy & Cute Parts Pack",purchase,1.0,0 -65754991,"Stacking",purchase,1.0,0 -65754991,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -65754991,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -65754991,"Star Wars Dark Forces",purchase,1.0,0 -65754991,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -65754991,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -65754991,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -65754991,"System Shock 2",purchase,1.0,0 -65754991,"Team Fortress Classic",purchase,1.0,0 -65754991,"The Darkness II",purchase,1.0,0 -65754991,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -65754991,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -65754991,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -65754991,"The Ultimate DOOM",purchase,1.0,0 -65754991,"Thief - Opportunist",purchase,1.0,0 -65754991,"Tomb Raider",purchase,1.0,0 -65754991,"Trine 2",purchase,1.0,0 -65754991,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",purchase,1.0,0 -65754991,"Wolfenstein The New Order",purchase,1.0,0 -113546110,"The Elder Scrolls V Skyrim",purchase,1.0,0 -113546110,"The Elder Scrolls V Skyrim",play,524.0,0 -113546110,"Total War SHOGUN 2",purchase,1.0,0 -113546110,"Total War SHOGUN 2",play,236.0,0 -113546110,"The Sims(TM) 3",purchase,1.0,0 -113546110,"The Sims(TM) 3",play,214.0,0 -113546110,"Far Cry 3",purchase,1.0,0 -113546110,"Far Cry 3",play,85.0,0 -113546110,"Left 4 Dead 2",purchase,1.0,0 -113546110,"Left 4 Dead 2",play,85.0,0 -113546110,"Audiosurf 2",purchase,1.0,0 -113546110,"Audiosurf 2",play,51.0,0 -113546110,"Portal 2",purchase,1.0,0 -113546110,"Portal 2",play,33.0,0 -113546110,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -113546110,"Tom Clancy's Ghost Recon Phantoms - NA",play,25.0,0 -113546110,"Trove",purchase,1.0,0 -113546110,"Trove",play,17.1,0 -113546110,"Counter-Strike Global Offensive",purchase,1.0,0 -113546110,"Counter-Strike Global Offensive",play,15.7,0 -113546110,"Tropico 4",purchase,1.0,0 -113546110,"Tropico 4",play,14.3,0 -113546110,"Sid Meier's Civilization V",purchase,1.0,0 -113546110,"Sid Meier's Civilization V",play,10.2,0 -113546110,"Skullgirls",purchase,1.0,0 -113546110,"Skullgirls",play,9.8,0 -113546110,"Team Fortress 2",purchase,1.0,0 -113546110,"Team Fortress 2",play,8.1,0 -113546110,"Call of Juarez Gunslinger",purchase,1.0,0 -113546110,"Call of Juarez Gunslinger",play,7.7,0 -113546110,"Guns of Icarus Online",purchase,1.0,0 -113546110,"Guns of Icarus Online",play,6.7,0 -113546110,"Loadout",purchase,1.0,0 -113546110,"Loadout",play,5.1,0 -113546110,"ArcheAge",purchase,1.0,0 -113546110,"ArcheAge",play,4.5,0 -113546110,"Portal",purchase,1.0,0 -113546110,"Portal",play,4.2,0 -113546110,"Far Cry 3 Blood Dragon",purchase,1.0,0 -113546110,"Far Cry 3 Blood Dragon",play,4.0,0 -113546110,"Rust",purchase,1.0,0 -113546110,"Rust",play,3.8,0 -113546110,"Amnesia The Dark Descent",purchase,1.0,0 -113546110,"Amnesia The Dark Descent",play,3.6,0 -113546110,"Infestation Survivor Stories",purchase,1.0,0 -113546110,"Infestation Survivor Stories",play,3.1,0 -113546110,"The Four Kings Casino and Slots",purchase,1.0,0 -113546110,"The Four Kings Casino and Slots",play,1.5,0 -113546110,"Car Mechanic Simulator 2015",purchase,1.0,0 -113546110,"Car Mechanic Simulator 2015",play,1.1,0 -113546110,"Garry's Mod",purchase,1.0,0 -113546110,"Garry's Mod",play,1.0,0 -113546110,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -113546110,"Call of Duty Black Ops II - Multiplayer",play,0.6,0 -113546110,"Terraria",purchase,1.0,0 -113546110,"Terraria",play,0.6,0 -113546110,"Echo of Soul",purchase,1.0,0 -113546110,"Echo of Soul",play,0.6,0 -113546110,"Dead Island Riptide",purchase,1.0,0 -113546110,"Dead Island Riptide",play,0.6,0 -113546110,"Deathmatch Classic",purchase,1.0,0 -113546110,"Deathmatch Classic",play,0.2,0 -113546110,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -113546110,"SEGA Genesis & Mega Drive Classics",play,0.2,0 -113546110,"Half-Life 2",purchase,1.0,0 -113546110,"Half-Life 2",play,0.1,0 -113546110,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -113546110,"A.V.A - Alliance of Valiant Arms",play,0.1,0 -113546110,"Counter-Strike Condition Zero",purchase,1.0,0 -113546110,"Subnautica",purchase,1.0,0 -113546110,"Our Love Will Grow",purchase,1.0,0 -113546110,"Call of Duty Black Ops II",purchase,1.0,0 -113546110,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -113546110,"Car Mechanic Simulator 2015 - PickUp & SUV DLC",purchase,1.0,0 -113546110,"Car Mechanic Simulator 2015 - TraderPack",purchase,1.0,0 -113546110,"Car Mechanic Simulator 2015 - Visual Tuning",purchase,1.0,0 -113546110,"Car Mechanic Simulator 2015 - Youngtimer",purchase,1.0,0 -113546110,"Counter-Strike",purchase,1.0,0 -113546110,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -113546110,"Counter-Strike Source",purchase,1.0,0 -113546110,"Day of Defeat",purchase,1.0,0 -113546110,"Day of Defeat Source",purchase,1.0,0 -113546110,"Half-Life",purchase,1.0,0 -113546110,"Half-Life 2 Deathmatch",purchase,1.0,0 -113546110,"Half-Life 2 Episode One",purchase,1.0,0 -113546110,"Half-Life 2 Episode Two",purchase,1.0,0 -113546110,"Half-Life 2 Lost Coast",purchase,1.0,0 -113546110,"Half-Life Blue Shift",purchase,1.0,0 -113546110,"Half-Life Opposing Force",purchase,1.0,0 -113546110,"Half-Life Source",purchase,1.0,0 -113546110,"Half-Life Deathmatch Source",purchase,1.0,0 -113546110,"Left 4 Dead",purchase,1.0,0 -113546110,"Ricochet",purchase,1.0,0 -113546110,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -113546110,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -113546110,"Skullgirls Endless Beta",purchase,1.0,0 -113546110,"Team Fortress Classic",purchase,1.0,0 -113546110,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -113546110,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -113546110,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -286394356,"Dota 2",purchase,1.0,0 -286394356,"Dota 2",play,0.7,0 -176811312,"Team Fortress 2",purchase,1.0,0 -176811312,"Team Fortress 2",play,383.0,0 -79865632,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -79865632,"Warhammer 40,000 Dawn of War II Retribution",play,29.0,0 -79865632,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -79865632,"Warhammer 40,000 Dawn of War II",play,17.3,0 -79865632,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -79865632,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,3.1,0 -79865632,"Total War SHOGUN 2",purchase,1.0,0 -79865632,"Total War SHOGUN 2",play,0.3,0 -79865632,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -76047408,"Napoleon Total War",purchase,1.0,0 -76047408,"Napoleon Total War",play,3.1,0 -86779877,"Runestone Keeper",purchase,1.0,0 -86779877,"Runestone Keeper",play,18.4,0 -86779877,"Gems of War",purchase,1.0,0 -86779877,"Gems of War",play,0.3,0 -197656011,"Dota 2",purchase,1.0,0 -197656011,"Dota 2",play,0.5,0 -109486584,"Team Fortress 2",purchase,1.0,0 -109486584,"Team Fortress 2",play,10.0,0 -109486584,"Dota 2",purchase,1.0,0 -109486584,"Dota 2",play,0.1,0 -219095735,"Dota 2",purchase,1.0,0 -219095735,"Dota 2",play,4.9,0 -192609869,"Dota 2",purchase,1.0,0 -192609869,"Dota 2",play,2.5,0 -73017395,"Sid Meier's Civilization V",purchase,1.0,0 -73017395,"Sid Meier's Civilization V",play,11754.0,0 -280363186,"Trove",purchase,1.0,0 -280363186,"Trove",play,1.3,0 -280363186,"Curse of Mermos",purchase,1.0,0 -280363186,"Curse of Mermos",play,0.2,0 -280363186,"The Settlers Online",purchase,1.0,0 -280363186,"The Settlers Online",play,0.1,0 -280363186,"Teeworlds",purchase,1.0,0 -280363186,"Marvel Heroes 2015",purchase,1.0,0 -280363186,"Rise of Incarnates",purchase,1.0,0 -108454875,"Dota 2",purchase,1.0,0 -108454875,"Dota 2",play,327.0,0 -108454875,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -108454875,"The Elder Scrolls IV Oblivion ",play,53.0,0 -108454875,"RPG Maker VX Ace",purchase,1.0,0 -108454875,"RPG Maker VX Ace",play,20.0,0 -108454875,"Starbound",purchase,1.0,0 -108454875,"Starbound",play,12.3,0 -108454875,"The Elder Scrolls III Morrowind",purchase,1.0,0 -108454875,"The Elder Scrolls III Morrowind",play,8.5,0 -108454875,"Counter-Strike Source",purchase,1.0,0 -108454875,"Counter-Strike Source",play,2.7,0 -108454875,"Banished",purchase,1.0,0 -108454875,"Banished",play,2.4,0 -108454875,"Mount & Blade Warband",purchase,1.0,0 -108454875,"Mount & Blade Warband",play,1.0,0 -108454875,"The Witcher Enhanced Edition",purchase,1.0,0 -108454875,"The Witcher Enhanced Edition",play,0.6,0 -108454875,"Darksiders",purchase,1.0,0 -108454875,"Darksiders",play,0.4,0 -108454875,"Starbound - Unstable",purchase,1.0,0 -108454875,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -192052864,"Dota 2",purchase,1.0,0 -192052864,"Dota 2",play,3.8,0 -236182162,"Runestone Keeper",purchase,1.0,0 -236182162,"Runestone Keeper",play,16.8,0 -31425362,"Counter-Strike Global Offensive",purchase,1.0,0 -31425362,"Counter-Strike Global Offensive",play,0.3,0 -31425362,"Counter-Strike Source",purchase,1.0,0 -31425362,"Counter-Strike Source",play,0.3,0 -31425362,"Day of Defeat Source",purchase,1.0,0 -31425362,"Half-Life 2 Deathmatch",purchase,1.0,0 -31425362,"Half-Life 2 Lost Coast",purchase,1.0,0 -297136903,"Dota 2",purchase,1.0,0 -297136903,"Dota 2",play,1.4,0 -248754096,"Valdis Story Abyssal City",purchase,1.0,0 -248754096,"Valdis Story Abyssal City",play,114.0,0 -248754096,"The Banner Saga",purchase,1.0,0 -248754096,"The Banner Saga",play,102.0,0 -248754096,"Ori and the Blind Forest",purchase,1.0,0 -248754096,"Ori and the Blind Forest",play,0.6,0 -248754096,"The Banner Saga Factions",purchase,1.0,0 -248754096,"The Banner Saga Factions",play,0.1,0 -248754096,"The Banner Saga - Mod Content",purchase,1.0,0 -44321815,"Dota 2",purchase,1.0,0 -44321815,"Dota 2",play,1054.0,0 -44321815,"Borderlands 2",purchase,1.0,0 -44321815,"Borderlands 2",play,103.0,0 -44321815,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -44321815,"STAR WARS Knights of the Old Republic II The Sith Lords",play,43.0,0 -44321815,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -44321815,"Fallout 3 - Game of the Year Edition",play,38.0,0 -44321815,"The Elder Scrolls V Skyrim",purchase,1.0,0 -44321815,"The Elder Scrolls V Skyrim",play,30.0,0 -44321815,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -44321815,"The Elder Scrolls IV Oblivion ",play,27.0,0 -44321815,"How to Survive",purchase,1.0,0 -44321815,"How to Survive",play,27.0,0 -44321815,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -44321815,"Star Wars Jedi Knight Jedi Academy",play,22.0,0 -44321815,"Torchlight II",purchase,1.0,0 -44321815,"Torchlight II",play,18.5,0 -44321815,"The Legend of Korra",purchase,1.0,0 -44321815,"The Legend of Korra",play,17.4,0 -44321815,"Devil May Cry 4",purchase,1.0,0 -44321815,"Devil May Cry 4",play,15.6,0 -44321815,"Dragon Quest Heroes",purchase,1.0,0 -44321815,"Dragon Quest Heroes",play,11.7,0 -44321815,"Star Wars - Battlefront II",purchase,1.0,0 -44321815,"Star Wars - Battlefront II",play,10.6,0 -44321815,"Titan Quest",purchase,1.0,0 -44321815,"Titan Quest",play,7.4,0 -44321815,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -44321815,"Kingdoms of Amalur Reckoning",play,7.1,0 -44321815,"Azure Striker Gunvolt",purchase,1.0,0 -44321815,"Azure Striker Gunvolt",play,5.5,0 -44321815,"Grand Theft Auto San Andreas",purchase,1.0,0 -44321815,"Grand Theft Auto San Andreas",play,4.4,0 -44321815,"DC Universe Online",purchase,1.0,0 -44321815,"DC Universe Online",play,4.0,0 -44321815,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -44321815,"Star Wars The Force Unleashed Ultimate Sith Edition",play,3.7,0 -44321815,"BioShock",purchase,1.0,0 -44321815,"BioShock",play,3.5,0 -44321815,"Star Wars Republic Commando",purchase,1.0,0 -44321815,"Star Wars Republic Commando",play,2.9,0 -44321815,"Disney Infinity 3.0 Play Without Limits",purchase,1.0,0 -44321815,"Disney Infinity 3.0 Play Without Limits",play,1.4,0 -44321815,"DmC Devil May Cry",purchase,1.0,0 -44321815,"DmC Devil May Cry",play,1.4,0 -44321815,"Fallout New Vegas",purchase,1.0,0 -44321815,"Fallout New Vegas",play,0.7,0 -44321815,"How To Survive Third Person",purchase,1.0,0 -44321815,"How To Survive Third Person",play,0.5,0 -44321815,"Mighty Gunvolt",purchase,1.0,0 -44321815,"Mighty Gunvolt",play,0.4,0 -44321815,"Divinity II Developer's Cut",purchase,1.0,0 -44321815,"Divinity II Developer's Cut",play,0.4,0 -44321815,"Fishing Planet",purchase,1.0,0 -44321815,"Fishing Planet",play,0.4,0 -44321815,"Devil May Cry 3 Special Edition",purchase,1.0,0 -44321815,"Devil May Cry 3 Special Edition",play,0.3,0 -44321815,"Titan Quest Immortal Throne",purchase,1.0,0 -44321815,"Titan Quest Immortal Throne",play,0.3,0 -44321815,"theHunter",purchase,1.0,0 -44321815,"theHunter",play,0.2,0 -44321815,"BioShock 2",purchase,1.0,0 -44321815,"BioShock Infinite",purchase,1.0,0 -44321815,"DRAGON QUEST HEROES Slime Weapons and Two Bonus Maps",purchase,1.0,0 -44321815,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -44321815,"Fallout New Vegas Dead Money",purchase,1.0,0 -44321815,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -44321815,"Grand Theft Auto San Andreas",purchase,1.0,0 -44321815,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -44321815,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -44321815,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -44321815,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -108714391,"Counter-Strike",purchase,1.0,0 -108714391,"Counter-Strike",play,8.8,0 -108714391,"Counter-Strike Global Offensive",purchase,1.0,0 -108714391,"Counter-Strike Global Offensive",play,3.6,0 -108714391,"Counter-Strike Condition Zero",purchase,1.0,0 -108714391,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -208680317,"Unturned",purchase,1.0,0 -208680317,"Unturned",play,20.0,0 -156639838,"Rocksmith 2014",purchase,1.0,0 -156639838,"Rocksmith 2014",play,10.0,0 -156639838,"Dota 2",purchase,1.0,0 -156639838,"Dota 2",play,0.1,0 -156639838,"Vertiginous Golf",purchase,1.0,0 -293693492,"Terraria",purchase,1.0,0 -293693492,"Terraria",play,36.0,0 -158693714,"Dota 2",purchase,1.0,0 -158693714,"Dota 2",play,2741.0,0 -87753149,"Counter-Strike Condition Zero",purchase,1.0,0 -87753149,"Counter-Strike Condition Zero",play,50.0,0 -87753149,"Day of Defeat",purchase,1.0,0 -87753149,"Day of Defeat",play,0.3,0 -87753149,"Counter-Strike",purchase,1.0,0 -87753149,"Counter-Strike",play,0.3,0 -87753149,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -87753149,"Counter-Strike Condition Zero Deleted Scenes",play,0.1,0 -87753149,"Deathmatch Classic",purchase,1.0,0 -87753149,"Ricochet",purchase,1.0,0 -188699277,"Team Fortress 2",purchase,1.0,0 -188699277,"Team Fortress 2",play,1.1,0 -188699277,"Unturned",purchase,1.0,0 -220157121,"Dota 2",purchase,1.0,0 -220157121,"Dota 2",play,0.1,0 -10450544,"Left 4 Dead",purchase,1.0,0 -10450544,"Left 4 Dead",play,817.0,0 -10450544,"Spintires",purchase,1.0,0 -10450544,"Spintires",play,99.0,0 -10450544,"Grand Theft Auto IV",purchase,1.0,0 -10450544,"Grand Theft Auto IV",play,84.0,0 -10450544,"Left 4 Dead 2",purchase,1.0,0 -10450544,"Left 4 Dead 2",play,61.0,0 -10450544,"Assetto Corsa",purchase,1.0,0 -10450544,"Assetto Corsa",play,48.0,0 -10450544,"Train Simulator",purchase,1.0,0 -10450544,"Train Simulator",play,43.0,0 -10450544,"Need for Speed Hot Pursuit",purchase,1.0,0 -10450544,"Need for Speed Hot Pursuit",play,34.0,0 -10450544,"Chivalry Medieval Warfare",purchase,1.0,0 -10450544,"Chivalry Medieval Warfare",play,33.0,0 -10450544,"Battlefield Bad Company 2",purchase,1.0,0 -10450544,"Battlefield Bad Company 2",play,31.0,0 -10450544,"Far Cry 3",purchase,1.0,0 -10450544,"Far Cry 3",play,18.5,0 -10450544,"FlatOut Ultimate Carnage",purchase,1.0,0 -10450544,"FlatOut Ultimate Carnage",play,17.2,0 -10450544,"South Park The Stick of Truth",purchase,1.0,0 -10450544,"South Park The Stick of Truth",play,16.7,0 -10450544,"Batman Arkham Origins",purchase,1.0,0 -10450544,"Batman Arkham Origins",play,12.2,0 -10450544,"DmC Devil May Cry",purchase,1.0,0 -10450544,"DmC Devil May Cry",play,11.8,0 -10450544,"Max Payne 3",purchase,1.0,0 -10450544,"Max Payne 3",play,11.4,0 -10450544,"Portal 2",purchase,1.0,0 -10450544,"Portal 2",play,11.4,0 -10450544,"BioShock Infinite",purchase,1.0,0 -10450544,"BioShock Infinite",play,10.3,0 -10450544,"Half-Life 2 Episode Two",purchase,1.0,0 -10450544,"Half-Life 2 Episode Two",play,9.9,0 -10450544,"Mortal Kombat Komplete Edition",purchase,1.0,0 -10450544,"Mortal Kombat Komplete Edition",play,9.4,0 -10450544,"Duke Nukem Forever",purchase,1.0,0 -10450544,"Duke Nukem Forever",play,8.5,0 -10450544,"H1Z1",purchase,1.0,0 -10450544,"H1Z1",play,8.3,0 -10450544,"Crysis 2 Maximum Edition",purchase,1.0,0 -10450544,"Crysis 2 Maximum Edition",play,8.1,0 -10450544,"Half-Life 2 Update",purchase,1.0,0 -10450544,"Half-Life 2 Update",play,7.2,0 -10450544,"Dead Rising 2",purchase,1.0,0 -10450544,"Dead Rising 2",play,7.1,0 -10450544,"Hotline Miami",purchase,1.0,0 -10450544,"Hotline Miami",play,6.3,0 -10450544,"Orcs Must Die! 2",purchase,1.0,0 -10450544,"Orcs Must Die! 2",play,5.8,0 -10450544,"PAYDAY 2",purchase,1.0,0 -10450544,"PAYDAY 2",play,5.6,0 -10450544,"Rocket League",purchase,1.0,0 -10450544,"Rocket League",play,5.5,0 -10450544,"Trials 2 Second Edition",purchase,1.0,0 -10450544,"Trials 2 Second Edition",play,4.9,0 -10450544,"Wolfenstein The New Order",purchase,1.0,0 -10450544,"Wolfenstein The New Order",play,4.8,0 -10450544,"Castle Crashers",purchase,1.0,0 -10450544,"Castle Crashers",play,3.8,0 -10450544,"Hotline Miami 2 Wrong Number",purchase,1.0,0 -10450544,"Hotline Miami 2 Wrong Number",play,3.5,0 -10450544,"Tomb Raider",purchase,1.0,0 -10450544,"Tomb Raider",play,3.4,0 -10450544,"One Finger Death Punch",purchase,1.0,0 -10450544,"One Finger Death Punch",play,3.3,0 -10450544,"Dead Space",purchase,1.0,0 -10450544,"Dead Space",play,3.2,0 -10450544,"Trine 2",purchase,1.0,0 -10450544,"Trine 2",play,2.8,0 -10450544,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -10450544,"Back to the Future Ep 1 - It's About Time",play,2.7,0 -10450544,"Resident Evil Operation Raccoon City",purchase,1.0,0 -10450544,"Resident Evil Operation Raccoon City",play,2.5,0 -10450544,"GRID Autosport",purchase,1.0,0 -10450544,"GRID Autosport",play,2.5,0 -10450544,"Double Dragon Neon",purchase,1.0,0 -10450544,"Double Dragon Neon",play,2.4,0 -10450544,"Darksiders",purchase,1.0,0 -10450544,"Darksiders",play,2.1,0 -10450544,"Half-Life Blue Shift",purchase,1.0,0 -10450544,"Half-Life Blue Shift",play,2.0,0 -10450544,"Devil May Cry 4 Special Edition",purchase,1.0,0 -10450544,"Devil May Cry 4 Special Edition",play,1.9,0 -10450544,"Shadow Warrior",purchase,1.0,0 -10450544,"Shadow Warrior",play,1.9,0 -10450544,"Amnesia The Dark Descent",purchase,1.0,0 -10450544,"Amnesia The Dark Descent",play,1.7,0 -10450544,"Goat Simulator",purchase,1.0,0 -10450544,"Goat Simulator",play,1.7,0 -10450544,"Team Fortress 2",purchase,1.0,0 -10450544,"Team Fortress 2",play,1.5,0 -10450544,"Deus Ex Human Revolution",purchase,1.0,0 -10450544,"Deus Ex Human Revolution",play,1.5,0 -10450544,"Return to Castle Wolfenstein",purchase,1.0,0 -10450544,"Return to Castle Wolfenstein",play,1.4,0 -10450544,"SONIC THE HEDGEHOG 4 Episode I",purchase,1.0,0 -10450544,"SONIC THE HEDGEHOG 4 Episode I",play,1.2,0 -10450544,"Super Meat Boy",purchase,1.0,0 -10450544,"Super Meat Boy",play,1.2,0 -10450544,"BIT.TRIP RUNNER",purchase,1.0,0 -10450544,"BIT.TRIP RUNNER",play,1.1,0 -10450544,"Aliens Colonial Marines",purchase,1.0,0 -10450544,"Aliens Colonial Marines",play,1.0,0 -10450544,"Clutch",purchase,1.0,0 -10450544,"Clutch",play,1.0,0 -10450544,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -10450544,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",play,1.0,0 -10450544,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -10450544,"Back to the Future Ep 2 - Get Tannen!",play,0.9,0 -10450544,"EVGA PrecisionX 16",purchase,1.0,0 -10450544,"EVGA PrecisionX 16",play,0.9,0 -10450544,"RaceRoom Racing Experience ",purchase,1.0,0 -10450544,"RaceRoom Racing Experience ",play,0.8,0 -10450544,"Surgeon Simulator",purchase,1.0,0 -10450544,"Surgeon Simulator",play,0.8,0 -10450544,"Alien Swarm",purchase,1.0,0 -10450544,"Alien Swarm",play,0.7,0 -10450544,"ORION Prelude",purchase,1.0,0 -10450544,"ORION Prelude",play,0.7,0 -10450544,"The Ultimate DOOM",purchase,1.0,0 -10450544,"The Ultimate DOOM",play,0.5,0 -10450544,"Crysis",purchase,1.0,0 -10450544,"Crysis",play,0.5,0 -10450544,"Half-Life 2",purchase,1.0,0 -10450544,"Half-Life 2",play,0.4,0 -10450544,"Angry Video Game Nerd Adventures",purchase,1.0,0 -10450544,"Angry Video Game Nerd Adventures",play,0.3,0 -10450544,"Insurgency",purchase,1.0,0 -10450544,"Insurgency",play,0.3,0 -10450544,"PAYDAY The Heist",purchase,1.0,0 -10450544,"PAYDAY The Heist",play,0.3,0 -10450544,"Thinking with Time Machine",purchase,1.0,0 -10450544,"Thinking with Time Machine",play,0.2,0 -10450544,"BIT.TRIP FATE",purchase,1.0,0 -10450544,"BIT.TRIP FATE",play,0.2,0 -10450544,"Portal",purchase,1.0,0 -10450544,"Portal",play,0.2,0 -10450544,"Mortal Kombat Kollection",purchase,1.0,0 -10450544,"Mortal Kombat Kollection",play,0.2,0 -10450544,"METAL SLUG 3",purchase,1.0,0 -10450544,"METAL SLUG 3",play,0.2,0 -10450544,"Loadout",purchase,1.0,0 -10450544,"Loadout",play,0.1,0 -10450544,"Carnage Racing",purchase,1.0,0 -10450544,"Carnage Racing",play,0.1,0 -10450544,"Half-Life 2 Episode One",purchase,1.0,0 -10450544,"Patch testing for Chivalry",purchase,1.0,0 -10450544,"Final DOOM",purchase,1.0,0 -10450544,"Warface",purchase,1.0,0 -10450544,"Half-Life",purchase,1.0,0 -10450544,"America's Army Proving Grounds",purchase,1.0,0 -10450544,"Arena Wars 2",purchase,1.0,0 -10450544,"Assetto Corsa - Dream Pack 1",purchase,1.0,0 -10450544,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -10450544,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -10450544,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -10450544,"BIT.TRIP BEAT",purchase,1.0,0 -10450544,"BIT.TRIP CORE",purchase,1.0,0 -10450544,"BIT.TRIP FATE Original Soundtrack",purchase,1.0,0 -10450544,"BIT.TRIP FLUX",purchase,1.0,0 -10450544,"BIT.TRIP FLUX Soundtrack",purchase,1.0,0 -10450544,"BIT.TRIP VOID",purchase,1.0,0 -10450544,"Counter-Strike",purchase,1.0,0 -10450544,"Counter-Strike Source",purchase,1.0,0 -10450544,"Crysis Warhead",purchase,1.0,0 -10450544,"Crysis Wars",purchase,1.0,0 -10450544,"Day of Defeat",purchase,1.0,0 -10450544,"Deathmatch Classic",purchase,1.0,0 -10450544,"Dino D-Day",purchase,1.0,0 -10450544,"DOOM II Hell on Earth",purchase,1.0,0 -10450544,"Far Cry",purchase,1.0,0 -10450544,"Far Cry 2",purchase,1.0,0 -10450544,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -10450544,"Far Cry 3 Blood Dragon",purchase,1.0,0 -10450544,"Good Friends Character Pack",purchase,1.0,0 -10450544,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -10450544,"H1Z1 Test Server",purchase,1.0,0 -10450544,"Half-Life 2 Deathmatch",purchase,1.0,0 -10450544,"Half-Life 2 Lost Coast",purchase,1.0,0 -10450544,"Half-Life Opposing Force",purchase,1.0,0 -10450544,"Half-Life Deathmatch Source",purchase,1.0,0 -10450544,"Kung Fury",purchase,1.0,0 -10450544,"Master Levels for DOOM II",purchase,1.0,0 -10450544,"PlanetSide 2",purchase,1.0,0 -10450544,"Ricochet",purchase,1.0,0 -10450544,"Team Fortress Classic",purchase,1.0,0 -10450544,"Train Simulator Sheerness Branch Extension Route",purchase,1.0,0 -10450544,"Train Simulator Southern Pacific SD70M Loco",purchase,1.0,0 -10450544,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -178098476,"Blacklight Retribution",purchase,1.0,0 -178098476,"Blacklight Retribution",play,0.5,0 -113835971,"Dota 2",purchase,1.0,0 -113835971,"Dota 2",play,0.2,0 -113835971,"Nosgoth",purchase,1.0,0 -290864164,"Dota 2",purchase,1.0,0 -290864164,"Dota 2",play,22.0,0 -187807630,"Unturned",purchase,1.0,0 -187807630,"Unturned",play,0.4,0 -235105105,"Dota 2",purchase,1.0,0 -235105105,"Dota 2",play,0.6,0 -65173746,"theHunter",purchase,1.0,0 -65173746,"theHunter",play,2.2,0 -65173746,"RaceRoom Racing Experience ",purchase,1.0,0 -65173746,"RaceRoom Racing Experience ",play,1.5,0 -65173746,"Team Fortress 2",purchase,1.0,0 -65173746,"Team Fortress 2",play,1.0,0 -65173746,"DCS World",purchase,1.0,0 -65173746,"DCS World",play,0.6,0 -65173746,"Arma 3",purchase,1.0,0 -65173746,"Arma 3",play,0.5,0 -65173746,"World of Guns Gun Disassembly",purchase,1.0,0 -65173746,"World of Guns Gun Disassembly",play,0.3,0 -65173746,"Heroes & Generals",purchase,1.0,0 -65173746,"Heroes & Generals",play,0.2,0 -65173746,"Frozen Free Fall Snowball Fight",purchase,1.0,0 -65173746,"Arma 3 Zeus",purchase,1.0,0 -65173746,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -65173746,"Warface",purchase,1.0,0 -122452753,"Team Fortress 2",purchase,1.0,0 -122452753,"Team Fortress 2",play,36.0,0 -135690828,"Team Fortress 2",purchase,1.0,0 -135690828,"Team Fortress 2",play,14.6,0 -129862640,"Dota 2",purchase,1.0,0 -129862640,"Dota 2",play,50.0,0 -108327674,"Team Fortress 2",purchase,1.0,0 -108327674,"Team Fortress 2",play,18.5,0 -79211079,"Arma 3",purchase,1.0,0 -79211079,"Arma 3",play,262.0,0 -79211079,"Warframe",purchase,1.0,0 -79211079,"Warframe",play,163.0,0 -79211079,"DayZ",purchase,1.0,0 -79211079,"DayZ",play,127.0,0 -79211079,"H1Z1",purchase,1.0,0 -79211079,"H1Z1",play,93.0,0 -79211079,"Unturned",purchase,1.0,0 -79211079,"Unturned",play,42.0,0 -79211079,"TERA",purchase,1.0,0 -79211079,"TERA",play,35.0,0 -79211079,"Garry's Mod",purchase,1.0,0 -79211079,"Garry's Mod",play,33.0,0 -79211079,"Team Fortress 2",purchase,1.0,0 -79211079,"Team Fortress 2",play,29.0,0 -79211079,"Sid Meier's Civilization V",purchase,1.0,0 -79211079,"Sid Meier's Civilization V",play,26.0,0 -79211079,"Counter-Strike Global Offensive",purchase,1.0,0 -79211079,"Counter-Strike Global Offensive",play,24.0,0 -79211079,"Star Trek Online",purchase,1.0,0 -79211079,"Star Trek Online",play,22.0,0 -79211079,"The Walking Dead",purchase,1.0,0 -79211079,"The Walking Dead",play,16.0,0 -79211079,"PlanetSide 2",purchase,1.0,0 -79211079,"PlanetSide 2",play,14.1,0 -79211079,"The Walking Dead Season Two",purchase,1.0,0 -79211079,"The Walking Dead Season Two",play,11.3,0 -79211079,"Dungeon Defenders II",purchase,1.0,0 -79211079,"Dungeon Defenders II",play,9.7,0 -79211079,"Guns of Icarus Online",purchase,1.0,0 -79211079,"Guns of Icarus Online",play,9.7,0 -79211079,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -79211079,"Tom Clancy's Ghost Recon Phantoms - NA",play,9.7,0 -79211079,"Trine 2",purchase,1.0,0 -79211079,"Trine 2",play,9.6,0 -79211079,"Zombies Monsters Robots",purchase,1.0,0 -79211079,"Zombies Monsters Robots",play,7.7,0 -79211079,"F.E.A.R. Online",purchase,1.0,0 -79211079,"F.E.A.R. Online",play,5.2,0 -79211079,"Trine",purchase,1.0,0 -79211079,"Trine",play,4.9,0 -79211079,"Marvel Heroes 2015",purchase,1.0,0 -79211079,"Marvel Heroes 2015",play,3.1,0 -79211079,"Double Action Boogaloo",purchase,1.0,0 -79211079,"Double Action Boogaloo",play,2.7,0 -79211079,"Defiance",purchase,1.0,0 -79211079,"Defiance",play,1.6,0 -79211079,"Castle Crashers",purchase,1.0,0 -79211079,"Castle Crashers",play,1.5,0 -79211079,"Velvet Sundown",purchase,1.0,0 -79211079,"Velvet Sundown",play,1.4,0 -79211079,"Dino D-Day",purchase,1.0,0 -79211079,"Dino D-Day",play,1.0,0 -79211079,"War Thunder",purchase,1.0,0 -79211079,"War Thunder",play,1.0,0 -79211079,"Dota 2",purchase,1.0,0 -79211079,"Dota 2",play,0.8,0 -79211079,"sZone-Online",purchase,1.0,0 -79211079,"sZone-Online",play,0.6,0 -79211079,"Dirty Bomb",purchase,1.0,0 -79211079,"Dirty Bomb",play,0.4,0 -79211079,"Face of Mankind",purchase,1.0,0 -79211079,"Face of Mankind",play,0.1,0 -79211079,"Arma 3 Zeus",purchase,1.0,0 -79211079,"H1Z1 Test Server",purchase,1.0,0 -79211079,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -79211079,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -66215101,"Quake Live",purchase,1.0,0 -66215101,"Unturned",purchase,1.0,0 -199709157,"Loadout",purchase,1.0,0 -199709157,"Get Off My Lawn!",purchase,1.0,0 -100916842,"Call of Duty Modern Warfare 2",purchase,1.0,0 -100916842,"Call of Duty Modern Warfare 2",play,63.0,0 -100916842,"Call of Duty Modern Warfare 3",purchase,1.0,0 -100916842,"Call of Duty Modern Warfare 3",play,38.0,0 -100916842,"Call of Duty Black Ops",purchase,1.0,0 -100916842,"Call of Duty Black Ops",play,30.0,0 -100916842,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -100916842,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -100916842,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -36557643,"Team Fortress 2",purchase,1.0,0 -36557643,"Team Fortress 2",play,333.0,0 -36557643,"Dota 2",purchase,1.0,0 -36557643,"Dota 2",play,160.0,0 -36557643,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -36557643,"Dark Souls Prepare to Die Edition",play,145.0,0 -36557643,"Dishonored",purchase,1.0,0 -36557643,"Dishonored",play,91.0,0 -36557643,"SpaceChem",purchase,1.0,0 -36557643,"SpaceChem",play,54.0,0 -36557643,"Fallout 4",purchase,1.0,0 -36557643,"Fallout 4",play,54.0,0 -36557643,"Left 4 Dead 2",purchase,1.0,0 -36557643,"Left 4 Dead 2",play,51.0,0 -36557643,"Fallout New Vegas",purchase,1.0,0 -36557643,"Fallout New Vegas",play,49.0,0 -36557643,"Kerbal Space Program",purchase,1.0,0 -36557643,"Kerbal Space Program",play,38.0,0 -36557643,"Borderlands The Pre-Sequel",purchase,1.0,0 -36557643,"Borderlands The Pre-Sequel",play,36.0,0 -36557643,"Torchlight II",purchase,1.0,0 -36557643,"Torchlight II",play,32.0,0 -36557643,"Portal 2",purchase,1.0,0 -36557643,"Portal 2",play,29.0,0 -36557643,"Garry's Mod",purchase,1.0,0 -36557643,"Garry's Mod",play,28.0,0 -36557643,"Divinity Original Sin",purchase,1.0,0 -36557643,"Divinity Original Sin",play,23.0,0 -36557643,"Portal",purchase,1.0,0 -36557643,"Portal",play,22.0,0 -36557643,"XCOM Enemy Unknown",purchase,1.0,0 -36557643,"XCOM Enemy Unknown",play,22.0,0 -36557643,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -36557643,"DARK SOULS II Scholar of the First Sin",play,19.5,0 -36557643,"Arma 2 Operation Arrowhead",purchase,1.0,0 -36557643,"Arma 2 Operation Arrowhead",play,18.1,0 -36557643,"Bastion",purchase,1.0,0 -36557643,"Bastion",play,16.6,0 -36557643,"Hotline Miami",purchase,1.0,0 -36557643,"Hotline Miami",play,15.8,0 -36557643,"Crypt of the NecroDancer",purchase,1.0,0 -36557643,"Crypt of the NecroDancer",play,14.9,0 -36557643,"FTL Faster Than Light",purchase,1.0,0 -36557643,"FTL Faster Than Light",play,14.7,0 -36557643,"Axiom Verge",purchase,1.0,0 -36557643,"Axiom Verge",play,14.3,0 -36557643,"BioShock Infinite",purchase,1.0,0 -36557643,"BioShock Infinite",play,14.3,0 -36557643,"The Witcher 3 Wild Hunt",purchase,1.0,0 -36557643,"The Witcher 3 Wild Hunt",play,14.3,0 -36557643,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -36557643,"Game of Thrones - A Telltale Games Series",play,13.4,0 -36557643,"Torchlight",purchase,1.0,0 -36557643,"Torchlight",play,12.9,0 -36557643,"Awesomenauts",purchase,1.0,0 -36557643,"Awesomenauts",play,12.8,0 -36557643,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -36557643,"Batman Arkham Asylum GOTY Edition",play,12.1,0 -36557643,"Undertale",purchase,1.0,0 -36557643,"Undertale",play,12.0,0 -36557643,"The Walking Dead",purchase,1.0,0 -36557643,"The Walking Dead",play,11.1,0 -36557643,"Saints Row IV",purchase,1.0,0 -36557643,"Saints Row IV",play,10.7,0 -36557643,"Borderlands 2",purchase,1.0,0 -36557643,"Borderlands 2",play,9.7,0 -36557643,"Batman Arkham City",purchase,1.0,0 -36557643,"Batman Arkham City",play,9.6,0 -36557643,"Papers, Please",purchase,1.0,0 -36557643,"Papers, Please",play,8.9,0 -36557643,"Spec Ops The Line",purchase,1.0,0 -36557643,"Spec Ops The Line",play,8.3,0 -36557643,"Myst Masterpiece Edition",purchase,1.0,0 -36557643,"Myst Masterpiece Edition",play,8.1,0 -36557643,"TIS-100",purchase,1.0,0 -36557643,"TIS-100",play,8.0,0 -36557643,"Saints Row The Third",purchase,1.0,0 -36557643,"Saints Row The Third",play,7.1,0 -36557643,"Magicka",purchase,1.0,0 -36557643,"Magicka",play,6.5,0 -36557643,"Spelunky",purchase,1.0,0 -36557643,"Spelunky",play,6.1,0 -36557643,"Braid",purchase,1.0,0 -36557643,"Braid",play,5.8,0 -36557643,"LIMBO",purchase,1.0,0 -36557643,"LIMBO",play,5.7,0 -36557643,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -36557643,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,5.3,0 -36557643,"Machinarium",purchase,1.0,0 -36557643,"Machinarium",play,5.1,0 -36557643,"Octodad Dadliest Catch",purchase,1.0,0 -36557643,"Octodad Dadliest Catch",play,5.0,0 -36557643,"Super Meat Boy",purchase,1.0,0 -36557643,"Super Meat Boy",play,4.9,0 -36557643,"Natural Selection 2",purchase,1.0,0 -36557643,"Natural Selection 2",play,4.3,0 -36557643,"Cave Story+",purchase,1.0,0 -36557643,"Cave Story+",play,3.8,0 -36557643,"Assassin's Creed II",purchase,1.0,0 -36557643,"Assassin's Creed II",play,3.8,0 -36557643,"Keep Talking and Nobody Explodes",purchase,1.0,0 -36557643,"Keep Talking and Nobody Explodes",play,3.6,0 -36557643,"Lone Survivor The Director's Cut",purchase,1.0,0 -36557643,"Lone Survivor The Director's Cut",play,3.4,0 -36557643,"Solar 2",purchase,1.0,0 -36557643,"Solar 2",play,3.4,0 -36557643,"Rochard",purchase,1.0,0 -36557643,"Rochard",play,3.4,0 -36557643,"Rocket League",purchase,1.0,0 -36557643,"Rocket League",play,3.4,0 -36557643,"Invisible, Inc.",purchase,1.0,0 -36557643,"Invisible, Inc.",play,3.4,0 -36557643,"Grand Theft Auto V",purchase,1.0,0 -36557643,"Grand Theft Auto V",play,3.1,0 -36557643,"Dungeon Defenders",purchase,1.0,0 -36557643,"Dungeon Defenders",play,2.8,0 -36557643,"Age of Empires III Complete Collection",purchase,1.0,0 -36557643,"Age of Empires III Complete Collection",play,2.8,0 -36557643,"MapleStory",purchase,1.0,0 -36557643,"MapleStory",play,2.7,0 -36557643,"The Binding of Isaac",purchase,1.0,0 -36557643,"The Binding of Isaac",play,2.7,0 -36557643,"Space Pirates and Zombies",purchase,1.0,0 -36557643,"Space Pirates and Zombies",play,2.6,0 -36557643,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -36557643,"Fallout 3 - Game of the Year Edition",play,2.6,0 -36557643,"Star Wars Knights of the Old Republic",purchase,1.0,0 -36557643,"Star Wars Knights of the Old Republic",play,2.5,0 -36557643,"Dino D-Day",purchase,1.0,0 -36557643,"Dino D-Day",play,2.2,0 -36557643,"BRINK",purchase,1.0,0 -36557643,"BRINK",play,2.0,0 -36557643,"Alien Swarm",purchase,1.0,0 -36557643,"Alien Swarm",play,2.0,0 -36557643,"Killing Floor",purchase,1.0,0 -36557643,"Killing Floor",play,1.8,0 -36557643,"Sid Meier's Civilization V",purchase,1.0,0 -36557643,"Sid Meier's Civilization V",play,1.7,0 -36557643,"Psychonauts",purchase,1.0,0 -36557643,"Psychonauts",play,1.7,0 -36557643,"Audiosurf",purchase,1.0,0 -36557643,"Audiosurf",play,1.6,0 -36557643,"Hotline Miami 2 Wrong Number",purchase,1.0,0 -36557643,"Hotline Miami 2 Wrong Number",play,1.6,0 -36557643,"Atom Zombie Smasher ",purchase,1.0,0 -36557643,"Atom Zombie Smasher ",play,1.3,0 -36557643,"Poker Night 2",purchase,1.0,0 -36557643,"Poker Night 2",play,1.3,0 -36557643,"Counter-Strike Source",purchase,1.0,0 -36557643,"Counter-Strike Source",play,1.3,0 -36557643,"Stealth Bastard Deluxe",purchase,1.0,0 -36557643,"Stealth Bastard Deluxe",play,1.2,0 -36557643,"Metro Last Light Redux",purchase,1.0,0 -36557643,"Metro Last Light Redux",play,1.2,0 -36557643,"Before the Echo",purchase,1.0,0 -36557643,"Before the Echo",play,1.1,0 -36557643,"Mass Effect",purchase,1.0,0 -36557643,"Mass Effect",play,1.1,0 -36557643,"Town of Salem",purchase,1.0,0 -36557643,"Town of Salem",play,1.1,0 -36557643,"Infinifactory",purchase,1.0,0 -36557643,"Infinifactory",play,1.1,0 -36557643,"The Wolf Among Us",purchase,1.0,0 -36557643,"The Wolf Among Us",play,1.0,0 -36557643,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -36557643,"The Elder Scrolls IV Oblivion ",play,1.0,0 -36557643,"And Yet It Moves",purchase,1.0,0 -36557643,"And Yet It Moves",play,1.0,0 -36557643,"BioShock",purchase,1.0,0 -36557643,"BioShock",play,0.9,0 -36557643,"Q.U.B.E.",purchase,1.0,0 -36557643,"Q.U.B.E.",play,0.8,0 -36557643,"Leviathan Warships",purchase,1.0,0 -36557643,"Leviathan Warships",play,0.8,0 -36557643,"Assassin's Creed Brotherhood",purchase,1.0,0 -36557643,"Assassin's Creed Brotherhood",play,0.8,0 -36557643,"FEZ",purchase,1.0,0 -36557643,"FEZ",play,0.8,0 -36557643,"Frozen Synapse",purchase,1.0,0 -36557643,"Frozen Synapse",play,0.8,0 -36557643,"Contagion",purchase,1.0,0 -36557643,"Contagion",play,0.7,0 -36557643,"Mirror's Edge",purchase,1.0,0 -36557643,"Mirror's Edge",play,0.7,0 -36557643,"Please, Dont Touch Anything",purchase,1.0,0 -36557643,"Please, Dont Touch Anything",play,0.7,0 -36557643,"Ben There, Dan That!",purchase,1.0,0 -36557643,"Ben There, Dan That!",play,0.6,0 -36557643,"Crayon Physics Deluxe",purchase,1.0,0 -36557643,"Crayon Physics Deluxe",play,0.6,0 -36557643,"Darksiders II",purchase,1.0,0 -36557643,"Darksiders II",play,0.6,0 -36557643,"Hitman Blood Money",purchase,1.0,0 -36557643,"Hitman Blood Money",play,0.6,0 -36557643,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -36557643,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.5,0 -36557643,"Penumbra Overture",purchase,1.0,0 -36557643,"Penumbra Overture",play,0.5,0 -36557643,"Nuclear Dawn",purchase,1.0,0 -36557643,"Nuclear Dawn",play,0.5,0 -36557643,"Nexuiz",purchase,1.0,0 -36557643,"Nexuiz",play,0.5,0 -36557643,"Besiege",purchase,1.0,0 -36557643,"Besiege",play,0.4,0 -36557643,"Castle Story",purchase,1.0,0 -36557643,"Castle Story",play,0.4,0 -36557643,"Cortex Command",purchase,1.0,0 -36557643,"Cortex Command",play,0.4,0 -36557643,"Vessel",purchase,1.0,0 -36557643,"Vessel",play,0.4,0 -36557643,"Beat Hazard",purchase,1.0,0 -36557643,"Beat Hazard",play,0.4,0 -36557643,"Splice",purchase,1.0,0 -36557643,"Splice",play,0.4,0 -36557643,"NightSky",purchase,1.0,0 -36557643,"NightSky",play,0.4,0 -36557643,"Democracy 2",purchase,1.0,0 -36557643,"Democracy 2",play,0.4,0 -36557643,"Capsized",purchase,1.0,0 -36557643,"Capsized",play,0.4,0 -36557643,"Cogs",purchase,1.0,0 -36557643,"Cogs",play,0.4,0 -36557643,"Darksiders",purchase,1.0,0 -36557643,"Darksiders",play,0.4,0 -36557643,"I am Bread",purchase,1.0,0 -36557643,"I am Bread",play,0.4,0 -36557643,"A Valley Without Wind",purchase,1.0,0 -36557643,"A Valley Without Wind",play,0.4,0 -36557643,"Achron",purchase,1.0,0 -36557643,"Achron",play,0.3,0 -36557643,"Terraria",purchase,1.0,0 -36557643,"Terraria",play,0.3,0 -36557643,"Monaco",purchase,1.0,0 -36557643,"Monaco",play,0.3,0 -36557643,"Universe Sandbox",purchase,1.0,0 -36557643,"Universe Sandbox",play,0.3,0 -36557643,"Jamestown",purchase,1.0,0 -36557643,"Jamestown",play,0.3,0 -36557643,"Source Filmmaker",purchase,1.0,0 -36557643,"Source Filmmaker",play,0.3,0 -36557643,"Gunpoint",purchase,1.0,0 -36557643,"Gunpoint",play,0.3,0 -36557643,"Snuggle Truck",purchase,1.0,0 -36557643,"Snuggle Truck",play,0.3,0 -36557643,"Transistor",purchase,1.0,0 -36557643,"Transistor",play,0.2,0 -36557643,"EDGE",purchase,1.0,0 -36557643,"EDGE",play,0.2,0 -36557643,"Miasmata",purchase,1.0,0 -36557643,"Miasmata",play,0.2,0 -36557643,"Damned",purchase,1.0,0 -36557643,"Damned",play,0.2,0 -36557643,"Anomaly Warzone Earth",purchase,1.0,0 -36557643,"Anomaly Warzone Earth",play,0.2,0 -36557643,"World Basketball Manager 2010",purchase,1.0,0 -36557643,"World Basketball Manager 2010",play,0.2,0 -36557643,"Rock of Ages",purchase,1.0,0 -36557643,"Rock of Ages",play,0.1,0 -36557643,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -36557643,"Dragon Age Origins - Ultimate Edition",play,0.1,0 -36557643,"Medieval Engineers",purchase,1.0,0 -36557643,"Medieval Engineers",play,0.1,0 -36557643,"Star Wars - Battlefront II",purchase,1.0,0 -36557643,"AVSEQ",purchase,1.0,0 -36557643,"Blocks That Matter",purchase,1.0,0 -36557643,"Grand Theft Auto IV",purchase,1.0,0 -36557643,"The Polynomial",purchase,1.0,0 -36557643,"Bad Rats",purchase,1.0,0 -36557643,"Snapshot",purchase,1.0,0 -36557643,"BIT.TRIP BEAT",purchase,1.0,0 -36557643,"Space Engineers",purchase,1.0,0 -36557643,"From Dust",purchase,1.0,0 -36557643,"Ravaged Zombie Apocalypse",purchase,1.0,0 -36557643,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -36557643,"TowerFall Ascension",purchase,1.0,0 -36557643,"Patrician III",purchase,1.0,0 -36557643,"Five Nights at Freddy's",purchase,1.0,0 -36557643,"Half-Life 2",purchase,1.0,0 -36557643,"Crusader Kings II",purchase,1.0,0 -36557643,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -36557643,"To the Moon",purchase,1.0,0 -36557643,"Portal 2 - The Final Hours",purchase,1.0,0 -36557643,"The Jackbox Party Pack",purchase,1.0,0 -36557643,"Half-Life",purchase,1.0,0 -36557643,"Gratuitous Space Battles",purchase,1.0,0 -36557643,"realMyst",purchase,1.0,0 -36557643,"Air Forte ",purchase,1.0,0 -36557643,"Alan Wake",purchase,1.0,0 -36557643,"Alan Wake's American Nightmare",purchase,1.0,0 -36557643,"All Zombies Must Die!",purchase,1.0,0 -36557643,"Amnesia A Machine for Pigs",purchase,1.0,0 -36557643,"Amnesia The Dark Descent",purchase,1.0,0 -36557643,"Anna - Extended Edition",purchase,1.0,0 -36557643,"Antichamber",purchase,1.0,0 -36557643,"Arma 2",purchase,1.0,0 -36557643,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -36557643,"Avadon The Black Fortress",purchase,1.0,0 -36557643,"A Valley Without Wind 2",purchase,1.0,0 -36557643,"Avernum 4",purchase,1.0,0 -36557643,"Avernum 5",purchase,1.0,0 -36557643,"Avernum 6",purchase,1.0,0 -36557643,"Avernum Escape From the Pit",purchase,1.0,0 -36557643,"A Virus Named TOM",purchase,1.0,0 -36557643,"Batman Arkham City GOTY",purchase,1.0,0 -36557643,"Beyond Divinity",purchase,1.0,0 -36557643,"Beyond Good & Evil",purchase,1.0,0 -36557643,"BioShock 2",purchase,1.0,0 -36557643,"BIT.TRIP RUNNER",purchase,1.0,0 -36557643,"Blood Bowl Legendary Edition",purchase,1.0,0 -36557643,"Borderlands",purchase,1.0,0 -36557643,"Botanicula",purchase,1.0,0 -36557643,"Breath of Death VII ",purchase,1.0,0 -36557643,"Brtal Legend",purchase,1.0,0 -36557643,"Bunch Of Heroes",purchase,1.0,0 -36557643,"Chivalry Medieval Warfare",purchase,1.0,0 -36557643,"Cities XL Platinum",purchase,1.0,0 -36557643,"Closure",purchase,1.0,0 -36557643,"Company of Heroes",purchase,1.0,0 -36557643,"Company of Heroes (New Steam Version)",purchase,1.0,0 -36557643,"Company of Heroes Opposing Fronts",purchase,1.0,0 -36557643,"Company of Heroes Tales of Valor",purchase,1.0,0 -36557643,"Confrontation",purchase,1.0,0 -36557643,"Cosmic Osmo",purchase,1.0,0 -36557643,"Costume Quest",purchase,1.0,0 -36557643,"Counter-Strike",purchase,1.0,0 -36557643,"Counter-Strike Condition Zero",purchase,1.0,0 -36557643,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -36557643,"Counter-Strike Global Offensive",purchase,1.0,0 -36557643,"Cthulhu Saves the World ",purchase,1.0,0 -36557643,"Cubemen",purchase,1.0,0 -36557643,"DarkStar One",purchase,1.0,0 -36557643,"Darwinia",purchase,1.0,0 -36557643,"Day of Defeat",purchase,1.0,0 -36557643,"Day of Defeat Source",purchase,1.0,0 -36557643,"Dear Esther",purchase,1.0,0 -36557643,"Deathmatch Classic",purchase,1.0,0 -36557643,"DEFCON",purchase,1.0,0 -36557643,"Defy Gravity",purchase,1.0,0 -36557643,"Deus Ex Human Revolution",purchase,1.0,0 -36557643,"Divine Divinity",purchase,1.0,0 -36557643,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -36557643,"Divinity II Developer's Cut",purchase,1.0,0 -36557643,"Dreamfall The Longest Journey",purchase,1.0,0 -36557643,"Ducati World Championship",purchase,1.0,0 -36557643,"Dungeonland",purchase,1.0,0 -36557643,"Dungeonland - All access pass",purchase,1.0,0 -36557643,"Dungeons of Dredmor",purchase,1.0,0 -36557643,"E.Y.E Divine Cybermancy",purchase,1.0,0 -36557643,"Eets Munchies",purchase,1.0,0 -36557643,"English Country Tune",purchase,1.0,0 -36557643,"Eufloria",purchase,1.0,0 -36557643,"Eufloria HD",purchase,1.0,0 -36557643,"Eufloria HD Original Soundtrack",purchase,1.0,0 -36557643,"Europa Universalis III",purchase,1.0,0 -36557643,"F.E.A.R.",purchase,1.0,0 -36557643,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -36557643,"F.E.A.R. 3",purchase,1.0,0 -36557643,"F.E.A.R. Extraction Point",purchase,1.0,0 -36557643,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -36557643,"Fallout",purchase,1.0,0 -36557643,"Fallout 2",purchase,1.0,0 -36557643,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -36557643,"Fallout New Vegas Dead Money",purchase,1.0,0 -36557643,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -36557643,"Fallout Tactics",purchase,1.0,0 -36557643,"Far Cry",purchase,1.0,0 -36557643,"Far Cry 2",purchase,1.0,0 -36557643,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -36557643,"Flotilla",purchase,1.0,0 -36557643,"Forge",purchase,1.0,0 -36557643,"Game of Thrones ",purchase,1.0,0 -36557643,"Geneforge 1",purchase,1.0,0 -36557643,"Geneforge 2",purchase,1.0,0 -36557643,"Geneforge 3",purchase,1.0,0 -36557643,"Geneforge 4",purchase,1.0,0 -36557643,"Geneforge 5",purchase,1.0,0 -36557643,"Geometry Wars Retro Evolved",purchase,1.0,0 -36557643,"Ghost Master",purchase,1.0,0 -36557643,"Gotham City Impostors",purchase,1.0,0 -36557643,"Gotham City Impostors Free To Play",purchase,1.0,0 -36557643,"Grand Theft Auto",purchase,1.0,0 -36557643,"Grand Theft Auto 2",purchase,1.0,0 -36557643,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -36557643,"Grand Theft Auto San Andreas",purchase,1.0,0 -36557643,"Grand Theft Auto San Andreas",purchase,1.0,0 -36557643,"Grand Theft Auto Vice City",purchase,1.0,0 -36557643,"Grand Theft Auto Vice City",purchase,1.0,0 -36557643,"Grand Theft Auto III",purchase,1.0,0 -36557643,"Grand Theft Auto III",purchase,1.0,0 -36557643,"Gratuitous Tank Battles",purchase,1.0,0 -36557643,"Greed Corp",purchase,1.0,0 -36557643,"Half-Life 2 Deathmatch",purchase,1.0,0 -36557643,"Half-Life 2 Episode One",purchase,1.0,0 -36557643,"Half-Life 2 Episode Two",purchase,1.0,0 -36557643,"Half-Life 2 Lost Coast",purchase,1.0,0 -36557643,"Half-Life Blue Shift",purchase,1.0,0 -36557643,"Half-Life Opposing Force",purchase,1.0,0 -36557643,"Half-Life Source",purchase,1.0,0 -36557643,"Half-Life Deathmatch Source",purchase,1.0,0 -36557643,"Hammerfight",purchase,1.0,0 -36557643,"Hitman 2 Silent Assassin",purchase,1.0,0 -36557643,"Hitman Codename 47",purchase,1.0,0 -36557643,"Home",purchase,1.0,0 -36557643,"ibb & obb",purchase,1.0,0 -36557643,"Indie Game The Movie",purchase,1.0,0 -36557643,"Infestation Survivor Stories",purchase,1.0,0 -36557643,"Insanely Twisted Shadow Planet",purchase,1.0,0 -36557643,"Insecticide Part 1",purchase,1.0,0 -36557643,"Intrusion 2",purchase,1.0,0 -36557643,"Jagged Alliance - Back in Action",purchase,1.0,0 -36557643,"Just Cause 2",purchase,1.0,0 -36557643,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -36557643,"L.A. Noire",purchase,1.0,0 -36557643,"Left 4 Dead",purchase,1.0,0 -36557643,"Legend of Grimrock",purchase,1.0,0 -36557643,"Little Inferno",purchase,1.0,0 -36557643,"Mafia",purchase,1.0,0 -36557643,"Magicka Final Frontier",purchase,1.0,0 -36557643,"Magicka Frozen Lake",purchase,1.0,0 -36557643,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -36557643,"Magicka Nippon",purchase,1.0,0 -36557643,"Magicka Party Robes",purchase,1.0,0 -36557643,"Magicka The Watchtower",purchase,1.0,0 -36557643,"Magicka Vietnam",purchase,1.0,0 -36557643,"Magicka Wizard's Survival Kit",purchase,1.0,0 -36557643,"Manhole",purchase,1.0,0 -36557643,"Mark of the Ninja",purchase,1.0,0 -36557643,"Mass Effect 2",purchase,1.0,0 -36557643,"McPixel",purchase,1.0,0 -36557643,"Metro 2033",purchase,1.0,0 -36557643,"Monkey Island 2 Special Edition",purchase,1.0,0 -36557643,"Multiwinia",purchase,1.0,0 -36557643,"Myst V",purchase,1.0,0 -36557643,"Nethergate Resurrection",purchase,1.0,0 -36557643,"Nexuiz Beta",purchase,1.0,0 -36557643,"Nexuiz STUPID Mode",purchase,1.0,0 -36557643,"No Time to Explain",purchase,1.0,0 -36557643,"No Time To Explain Remastered",purchase,1.0,0 -36557643,"Offspring Fling!",purchase,1.0,0 -36557643,"Oil Rush",purchase,1.0,0 -36557643,"Orcs Must Die!",purchase,1.0,0 -36557643,"Osmos",purchase,1.0,0 -36557643,"Painkiller Black Edition",purchase,1.0,0 -36557643,"Painkiller Recurring Evil",purchase,1.0,0 -36557643,"Painkiller Redemption",purchase,1.0,0 -36557643,"Painkiller Resurrection",purchase,1.0,0 -36557643,"Painkiller Overdose",purchase,1.0,0 -36557643,"Patch testing for Chivalry",purchase,1.0,0 -36557643,"PAYDAY The Heist",purchase,1.0,0 -36557643,"Penumbra Black Plague",purchase,1.0,0 -36557643,"Penumbra Requiem",purchase,1.0,0 -36557643,"Pillars of Eternity",purchase,1.0,0 -36557643,"PixelJunk Eden",purchase,1.0,0 -36557643,"Plain Sight",purchase,1.0,0 -36557643,"Portal Stories Mel",purchase,1.0,0 -36557643,"Prince of Persia",purchase,1.0,0 -36557643,"Prince of Persia The Forgotten Sands",purchase,1.0,0 -36557643,"Prince of Persia The Sands of Time",purchase,1.0,0 -36557643,"Prince of Persia The Two Thrones",purchase,1.0,0 -36557643,"Prince of Persia Warrior Within",purchase,1.0,0 -36557643,"Prison Architect",purchase,1.0,0 -36557643,"Proteus",purchase,1.0,0 -36557643,"Prototype",purchase,1.0,0 -36557643,"Psychonauts Demo",purchase,1.0,0 -36557643,"Puzzle Agent",purchase,1.0,0 -36557643,"Puzzle Agent 2",purchase,1.0,0 -36557643,"Q.U.B.E Director's Cut",purchase,1.0,0 -36557643,"Quantum Conundrum",purchase,1.0,0 -36557643,"RAGE",purchase,1.0,0 -36557643,"RAW - Realms of Ancient War",purchase,1.0,0 -36557643,"Red Faction Armageddon",purchase,1.0,0 -36557643,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -36557643,"Revenge of the Titans",purchase,1.0,0 -36557643,"Rhythm Zone",purchase,1.0,0 -36557643,"Ricochet",purchase,1.0,0 -36557643,"Riven",purchase,1.0,0 -36557643,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -36557643,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -36557643,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -36557643,"Saints Row 2",purchase,1.0,0 -36557643,"Samorost 2",purchase,1.0,0 -36557643,"Sanctum",purchase,1.0,0 -36557643,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -36557643,"Serious Sam Classic The First Encounter",purchase,1.0,0 -36557643,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -36557643,"Serious Sam Classics Revolution",purchase,1.0,0 -36557643,"Serious Sam HD The First Encounter",purchase,1.0,0 -36557643,"Shank",purchase,1.0,0 -36557643,"Shank 2",purchase,1.0,0 -36557643,"Shoot Many Robots",purchase,1.0,0 -36557643,"Shower With Your Dad Simulator 2015 Do You Still Shower With Your Dad",purchase,1.0,0 -36557643,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -36557643,"Sine Mora",purchase,1.0,0 -36557643,"SkyDrift",purchase,1.0,0 -36557643,"Sleeping Dogs",purchase,1.0,0 -36557643,"South Park The Stick of Truth",purchase,1.0,0 -36557643,"South Park The Stick of Truth - Super Samurai Spaceman Pack",purchase,1.0,0 -36557643,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -36557643,"SpeedRunners",purchase,1.0,0 -36557643,"Spelunx",purchase,1.0,0 -36557643,"Stacking",purchase,1.0,0 -36557643,"STASIS",purchase,1.0,0 -36557643,"Surgeon Simulator",purchase,1.0,0 -36557643,"System Shock 2",purchase,1.0,0 -36557643,"Tales from the Borderlands",purchase,1.0,0 -36557643,"Team Fortress Classic",purchase,1.0,0 -36557643,"The Banner Saga",purchase,1.0,0 -36557643,"The Banner Saga - Mod Content",purchase,1.0,0 -36557643,"The Basement Collection",purchase,1.0,0 -36557643,"The Elder Scrolls III Morrowind",purchase,1.0,0 -36557643,"The Great Art Race",purchase,1.0,0 -36557643,"The Longest Journey",purchase,1.0,0 -36557643,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -36557643,"The Showdown Effect",purchase,1.0,0 -36557643,"The Testament of Sherlock Holmes",purchase,1.0,0 -36557643,"The Tiny Bang Story",purchase,1.0,0 -36557643,"The Walking Dead Season Two",purchase,1.0,0 -36557643,"The Witcher Enhanced Edition",purchase,1.0,0 -36557643,"Thief 2",purchase,1.0,0 -36557643,"Thief Deadly Shadows",purchase,1.0,0 -36557643,"Thief Gold",purchase,1.0,0 -36557643,"Thirty Flights of Loving",purchase,1.0,0 -36557643,"Thomas Was Alone",purchase,1.0,0 -36557643,"Time Gentlemen, Please!",purchase,1.0,0 -36557643,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -36557643,"Titan Quest",purchase,1.0,0 -36557643,"Toki Tori",purchase,1.0,0 -36557643,"Transcripted",purchase,1.0,0 -36557643,"TRAUMA",purchase,1.0,0 -36557643,"Trine",purchase,1.0,0 -36557643,"Trine 2",purchase,1.0,0 -36557643,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -36557643,"Tropico 4",purchase,1.0,0 -36557643,"Under the Ocean",purchase,1.0,0 -36557643,"Uplink",purchase,1.0,0 -36557643,"Uru Complete Chronicles",purchase,1.0,0 -36557643,"VVVVVV",purchase,1.0,0 -36557643,"Wargame European Escalation",purchase,1.0,0 -36557643,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -36557643,"Warlock - Master of the Arcane",purchase,1.0,0 -36557643,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -36557643,"War of the Roses",purchase,1.0,0 -36557643,"War of the Roses Kingmaker",purchase,1.0,0 -36557643,"War of the Roses Balance Beta",purchase,1.0,0 -36557643,"World of Goo",purchase,1.0,0 -36557643,"Zombie Driver",purchase,1.0,0 -36557643,"Zombie Driver Summer of Slaughter DLC",purchase,1.0,0 -176021276,"Sid Meier's Civilization V",purchase,1.0,0 -176021276,"Sid Meier's Civilization V",play,0.7,0 -293364588,"Unturned",purchase,1.0,0 -293364588,"Unturned",play,0.7,0 -197385611,"Euro Truck Simulator 2",purchase,1.0,0 -197385611,"Euro Truck Simulator 2",play,296.0,0 -197385611,"Farming Simulator 15",purchase,1.0,0 -197385611,"Farming Simulator 15",play,3.0,0 -197385611,"Dirty Bomb",purchase,1.0,0 -197385611,"Dirty Bomb",play,1.0,0 -197385611,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -197385611,"Rise of Incarnates",purchase,1.0,0 -153828204,"Dota 2",purchase,1.0,0 -153828204,"Dota 2",play,1762.0,0 -4603800,"Counter-Strike",purchase,1.0,0 -4603800,"Counter-Strike",play,1.6,0 -4603800,"Counter-Strike Condition Zero",purchase,1.0,0 -4603800,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -4603800,"Day of Defeat",purchase,1.0,0 -4603800,"Deathmatch Classic",purchase,1.0,0 -4603800,"Half-Life",purchase,1.0,0 -4603800,"Half-Life Blue Shift",purchase,1.0,0 -4603800,"Half-Life Opposing Force",purchase,1.0,0 -4603800,"Ricochet",purchase,1.0,0 -4603800,"Team Fortress Classic",purchase,1.0,0 -126231245,"RAGE",purchase,1.0,0 -126231245,"RAGE",play,0.8,0 -46028967,"Team Fortress 2",purchase,1.0,0 -46028967,"Team Fortress 2",play,227.0,0 -46028967,"Battlefield Bad Company 2",purchase,1.0,0 -46028967,"Battlefield Bad Company 2",play,202.0,0 -46028967,"Heroes & Generals",purchase,1.0,0 -46028967,"Heroes & Generals",play,140.0,0 -46028967,"Mount & Blade Warband",purchase,1.0,0 -46028967,"Mount & Blade Warband",play,111.0,0 -46028967,"PAYDAY 2",purchase,1.0,0 -46028967,"PAYDAY 2",play,41.0,0 -46028967,"Wings of Prey",purchase,1.0,0 -46028967,"Wings of Prey",play,40.0,0 -46028967,"War of the Roses",purchase,1.0,0 -46028967,"War of the Roses",play,27.0,0 -46028967,"Verdun",purchase,1.0,0 -46028967,"Verdun",play,23.0,0 -46028967,"Infestation Survivor Stories",purchase,1.0,0 -46028967,"Infestation Survivor Stories",play,20.0,0 -46028967,"Terraria",purchase,1.0,0 -46028967,"Terraria",play,16.7,0 -46028967,"Grand Theft Auto V",purchase,1.0,0 -46028967,"Grand Theft Auto V",play,16.1,0 -46028967,"Arma 3",purchase,1.0,0 -46028967,"Arma 3",play,16.0,0 -46028967,"Marvel Heroes 2015",purchase,1.0,0 -46028967,"Marvel Heroes 2015",play,15.3,0 -46028967,"Champions Online",purchase,1.0,0 -46028967,"Champions Online",play,14.2,0 -46028967,"Cities Skylines",purchase,1.0,0 -46028967,"Cities Skylines",play,13.9,0 -46028967,"Rocket League",purchase,1.0,0 -46028967,"Rocket League",play,13.9,0 -46028967,"Star Conflict",purchase,1.0,0 -46028967,"Star Conflict",play,11.8,0 -46028967,"Bully Scholarship Edition",purchase,1.0,0 -46028967,"Bully Scholarship Edition",play,11.0,0 -46028967,"Left 4 Dead 2",purchase,1.0,0 -46028967,"Left 4 Dead 2",play,8.7,0 -46028967,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -46028967,"The Elder Scrolls IV Oblivion ",play,6.7,0 -46028967,"Prison Architect",purchase,1.0,0 -46028967,"Prison Architect",play,6.6,0 -46028967,"Portal",purchase,1.0,0 -46028967,"Portal",play,6.1,0 -46028967,"Alien Swarm",purchase,1.0,0 -46028967,"Alien Swarm",play,6.1,0 -46028967,"F1 2013",purchase,1.0,0 -46028967,"F1 2013",play,5.0,0 -46028967,"Godus",purchase,1.0,0 -46028967,"Godus",play,4.9,0 -46028967,"Awesomenauts",purchase,1.0,0 -46028967,"Awesomenauts",play,4.7,0 -46028967,"Just Cause 2",purchase,1.0,0 -46028967,"Just Cause 2",play,4.5,0 -46028967,"Mortal Online",purchase,1.0,0 -46028967,"Mortal Online",play,3.9,0 -46028967,"Tomb Raider Anniversary",purchase,1.0,0 -46028967,"Tomb Raider Anniversary",play,3.2,0 -46028967,"EVE Online",purchase,1.0,0 -46028967,"EVE Online",play,3.1,0 -46028967,"The Lord of the Rings War in the North",purchase,1.0,0 -46028967,"The Lord of the Rings War in the North",play,3.1,0 -46028967,"DRAGON BALL XENOVERSE",purchase,1.0,0 -46028967,"DRAGON BALL XENOVERSE",play,3.1,0 -46028967,"Left 4 Dead",purchase,1.0,0 -46028967,"Left 4 Dead",play,3.0,0 -46028967,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -46028967,"Vampire The Masquerade - Bloodlines",play,3.0,0 -46028967,"SpeedRunners",purchase,1.0,0 -46028967,"SpeedRunners",play,2.7,0 -46028967,"Star Wars - Battlefront II",purchase,1.0,0 -46028967,"Star Wars - Battlefront II",play,2.6,0 -46028967,"Planet Explorers",purchase,1.0,0 -46028967,"Planet Explorers",play,2.3,0 -46028967,"Arma 2 Operation Arrowhead",purchase,1.0,0 -46028967,"Arma 2 Operation Arrowhead",play,2.3,0 -46028967,"Fallen Earth",purchase,1.0,0 -46028967,"Fallen Earth",play,2.2,0 -46028967,"H1Z1",purchase,1.0,0 -46028967,"H1Z1",play,2.1,0 -46028967,"Guns of Icarus Online",purchase,1.0,0 -46028967,"Guns of Icarus Online",play,2.1,0 -46028967,"Trine",purchase,1.0,0 -46028967,"Trine",play,2.0,0 -46028967,"Grand Theft Auto IV",purchase,1.0,0 -46028967,"Grand Theft Auto IV",play,1.9,0 -46028967,"SimCity 4 Deluxe",purchase,1.0,0 -46028967,"SimCity 4 Deluxe",play,1.8,0 -46028967,"Borderlands 2",purchase,1.0,0 -46028967,"Borderlands 2",play,1.7,0 -46028967,"Space Engineers",purchase,1.0,0 -46028967,"Space Engineers",play,1.6,0 -46028967,"Lead and Gold - Gangs of the Wild West",purchase,1.0,0 -46028967,"Lead and Gold - Gangs of the Wild West",play,1.6,0 -46028967,"Commandos Behind Enemy Lines",purchase,1.0,0 -46028967,"Commandos Behind Enemy Lines",play,1.6,0 -46028967,"GRID 2",purchase,1.0,0 -46028967,"GRID 2",play,1.5,0 -46028967,"Operation Flashpoint Red River",purchase,1.0,0 -46028967,"Operation Flashpoint Red River",play,1.5,0 -46028967,"Mount & Blade With Fire and Sword",purchase,1.0,0 -46028967,"Mount & Blade With Fire and Sword",play,1.4,0 -46028967,"Magic The Gathering Duels of the Planeswalkers 2012",purchase,1.0,0 -46028967,"Magic The Gathering Duels of the Planeswalkers 2012",play,1.2,0 -46028967,"Star Wars Knights of the Old Republic",purchase,1.0,0 -46028967,"Star Wars Knights of the Old Republic",play,1.2,0 -46028967,"Medal of Honor(TM) Single Player",purchase,1.0,0 -46028967,"Medal of Honor(TM) Single Player",play,1.0,0 -46028967,"Just Cause 3",purchase,1.0,0 -46028967,"Just Cause 3",play,1.0,0 -46028967,"Battle of Empires 1914-1918",purchase,1.0,0 -46028967,"Battle of Empires 1914-1918",play,1.0,0 -46028967,"Nosgoth",purchase,1.0,0 -46028967,"Nosgoth",play,0.9,0 -46028967,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -46028967,"Red Orchestra Ostfront 41-45",play,0.9,0 -46028967,"Lethal League",purchase,1.0,0 -46028967,"Lethal League",play,0.8,0 -46028967,"Crusader Kings II",purchase,1.0,0 -46028967,"Crusader Kings II",play,0.8,0 -46028967,"CastleMiner Z",purchase,1.0,0 -46028967,"CastleMiner Z",play,0.8,0 -46028967,"Rust",purchase,1.0,0 -46028967,"Rust",play,0.8,0 -46028967,"Section 8 Prejudice",purchase,1.0,0 -46028967,"Section 8 Prejudice",play,0.7,0 -46028967,"Dead Island",purchase,1.0,0 -46028967,"Dead Island",play,0.7,0 -46028967,"Saints Row The Third",purchase,1.0,0 -46028967,"Saints Row The Third",play,0.7,0 -46028967,"Company of Heroes",purchase,1.0,0 -46028967,"Company of Heroes",play,0.7,0 -46028967,"Don't Starve Together Beta",purchase,1.0,0 -46028967,"Don't Starve Together Beta",play,0.7,0 -46028967,"Air Conflicts - Secret Wars",purchase,1.0,0 -46028967,"Air Conflicts - Secret Wars",play,0.7,0 -46028967,"Euro Truck Simulator 2",purchase,1.0,0 -46028967,"Euro Truck Simulator 2",play,0.7,0 -46028967,"LEGO The Hobbit",purchase,1.0,0 -46028967,"LEGO The Hobbit",play,0.6,0 -46028967,"The Forest",purchase,1.0,0 -46028967,"The Forest",play,0.6,0 -46028967,"Arma 2",purchase,1.0,0 -46028967,"Arma 2",play,0.6,0 -46028967,"Trove",purchase,1.0,0 -46028967,"Trove",play,0.5,0 -46028967,"Sid Meier's Civilization V",purchase,1.0,0 -46028967,"Sid Meier's Civilization V",play,0.5,0 -46028967,"Edge of Space",purchase,1.0,0 -46028967,"Edge of Space",play,0.5,0 -46028967,"DayZ",purchase,1.0,0 -46028967,"DayZ",play,0.5,0 -46028967,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -46028967,"STAR WARS Knights of the Old Republic II The Sith Lords",play,0.5,0 -46028967,"Portal 2",purchase,1.0,0 -46028967,"Portal 2",play,0.5,0 -46028967,"Aquaria",purchase,1.0,0 -46028967,"Aquaria",play,0.5,0 -46028967,"Sniper Elite",purchase,1.0,0 -46028967,"Sniper Elite",play,0.5,0 -46028967,"FINAL FANTASY TYPE-0 HD",purchase,1.0,0 -46028967,"FINAL FANTASY TYPE-0 HD",play,0.5,0 -46028967,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -46028967,"Batman Arkham Asylum GOTY Edition",play,0.4,0 -46028967,"Plain Sight",purchase,1.0,0 -46028967,"Plain Sight",play,0.4,0 -46028967,"Sniper Elite V2",purchase,1.0,0 -46028967,"Sniper Elite V2",play,0.4,0 -46028967,"Transformice",purchase,1.0,0 -46028967,"Transformice",play,0.4,0 -46028967,"Magicka",purchase,1.0,0 -46028967,"Magicka",play,0.4,0 -46028967,"Ace of Spades",purchase,1.0,0 -46028967,"Ace of Spades",play,0.4,0 -46028967,"Darksiders",purchase,1.0,0 -46028967,"Darksiders",play,0.3,0 -46028967,"Mount Your Friends",purchase,1.0,0 -46028967,"Mount Your Friends",play,0.3,0 -46028967,"Day of Defeat Source",purchase,1.0,0 -46028967,"Day of Defeat Source",play,0.3,0 -46028967,"Madballs in...Babo Invasion",purchase,1.0,0 -46028967,"Madballs in...Babo Invasion",play,0.3,0 -46028967,"Cities XL 2011",purchase,1.0,0 -46028967,"Cities XL 2011",play,0.3,0 -46028967,"Dota 2",purchase,1.0,0 -46028967,"Dota 2",play,0.3,0 -46028967,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -46028967,"Medal of Honor(TM) Multiplayer",play,0.2,0 -46028967,"Commandos Beyond the Call of Duty",purchase,1.0,0 -46028967,"Commandos Beyond the Call of Duty",play,0.2,0 -46028967,"Risk of Rain",purchase,1.0,0 -46028967,"Risk of Rain",play,0.1,0 -46028967,"Axis Game Factory's AGFPRO 3.0",purchase,1.0,0 -46028967,"Axis Game Factory's AGFPRO 3.0",play,0.1,0 -46028967,"Inside a Star-filled Sky ",purchase,1.0,0 -46028967,"Inside a Star-filled Sky ",play,0.1,0 -46028967,"Mount & Blade",purchase,1.0,0 -46028967,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -46028967,"Age of Empires III Complete Collection",purchase,1.0,0 -46028967,"Age of Mythology Extended Edition",purchase,1.0,0 -46028967,"AGFPRO Fantasy Side-Scroller Player",purchase,1.0,0 -46028967,"Another World",purchase,1.0,0 -46028967,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -46028967,"Arma 3 Zeus",purchase,1.0,0 -46028967,"Assassin's Creed IV Black Flag",purchase,1.0,0 -46028967,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -46028967,"Baldur's Gate II Enhanced Edition",purchase,1.0,0 -46028967,"Bastion",purchase,1.0,0 -46028967,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -46028967,"Castle Crashers",purchase,1.0,0 -46028967,"Chivalry Medieval Warfare",purchase,1.0,0 -46028967,"Commandos 2 Men of Courage",purchase,1.0,0 -46028967,"Commandos 3 Destination Berlin",purchase,1.0,0 -46028967,"Company of Heroes (New Steam Version)",purchase,1.0,0 -46028967,"Company of Heroes Opposing Fronts",purchase,1.0,0 -46028967,"Company of Heroes Tales of Valor",purchase,1.0,0 -46028967,"Contagion",purchase,1.0,0 -46028967,"Counter-Strike Global Offensive",purchase,1.0,0 -46028967,"Crysis 2 Maximum Edition",purchase,1.0,0 -46028967,"Darkest Hour Europe '44-'45",purchase,1.0,0 -46028967,"Defy Gravity",purchase,1.0,0 -46028967,"Dino D-Day",purchase,1.0,0 -46028967,"Divinity Original Sin",purchase,1.0,0 -46028967,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -46028967,"Don't Starve",purchase,1.0,0 -46028967,"Dragon Quest Heroes",purchase,1.0,0 -46028967,"DRAGON QUEST HEROES Slime Weapons and Two Bonus Maps",purchase,1.0,0 -46028967,"Endless Space",purchase,1.0,0 -46028967,"Fallout New Vegas",purchase,1.0,0 -46028967,"FINAL FANTASY III",purchase,1.0,0 -46028967,"FINAL FANTASY VII",purchase,1.0,0 -46028967,"FINAL FANTASY VIII",purchase,1.0,0 -46028967,"Game Character Hub",purchase,1.0,0 -46028967,"GameGuru",purchase,1.0,0 -46028967,"GameGuru - Buildings Pack",purchase,1.0,0 -46028967,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -46028967,"Grand Theft Auto San Andreas",purchase,1.0,0 -46028967,"Grand Theft Auto San Andreas",purchase,1.0,0 -46028967,"Grand Theft Auto Vice City",purchase,1.0,0 -46028967,"Grand Theft Auto Vice City",purchase,1.0,0 -46028967,"Grand Theft Auto III",purchase,1.0,0 -46028967,"Grand Theft Auto III",purchase,1.0,0 -46028967,"Greed Corp",purchase,1.0,0 -46028967,"GTR Evolution",purchase,1.0,0 -46028967,"H1Z1 Test Server",purchase,1.0,0 -46028967,"Hammerwatch",purchase,1.0,0 -46028967,"LEGO Harry Potter Years 5-7",purchase,1.0,0 -46028967,"LEGO The Lord of the Rings",purchase,1.0,0 -46028967,"Mafia",purchase,1.0,0 -46028967,"Mafia II",purchase,1.0,0 -46028967,"Mare Nostrum",purchase,1.0,0 -46028967,"Medal of Honor Pre-Order",purchase,1.0,0 -46028967,"Medieval II Total War",purchase,1.0,0 -46028967,"Medieval II Total War Kingdoms",purchase,1.0,0 -46028967,"Metro 2033",purchase,1.0,0 -46028967,"Mirror's Edge",purchase,1.0,0 -46028967,"Monaco",purchase,1.0,0 -46028967,"Mount & Blade Warband - Viking Conquest Reforged Edition",purchase,1.0,0 -46028967,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -46028967,"Natural Selection 2",purchase,1.0,0 -46028967,"Need for Speed Hot Pursuit",purchase,1.0,0 -46028967,"NEOTOKYO",purchase,1.0,0 -46028967,"Nether",purchase,1.0,0 -46028967,"Orbital Gear",purchase,1.0,0 -46028967,"Orcs Must Die! 2",purchase,1.0,0 -46028967,"Patch testing for Chivalry",purchase,1.0,0 -46028967,"Planetary Annihilation",purchase,1.0,0 -46028967,"POSTAL 2",purchase,1.0,0 -46028967,"RACE 07",purchase,1.0,0 -46028967,"RaceRoom Racing Experience ",purchase,1.0,0 -46028967,"Race The Sun",purchase,1.0,0 -46028967,"Really Big Sky",purchase,1.0,0 -46028967,"Red Faction Armageddon",purchase,1.0,0 -46028967,"Robocraft",purchase,1.0,0 -46028967,"RPG Maker Arabian Nights",purchase,1.0,0 -46028967,"RPG Maker Classic Fantasy Music Pack",purchase,1.0,0 -46028967,"RPG Maker DS+ Resource Pack",purchase,1.0,0 -46028967,"RPG Maker DS Resource Pack",purchase,1.0,0 -46028967,"RPG Maker Luna Engine",purchase,1.0,0 -46028967,"RPG Maker Old School Modern Resource Pack",purchase,1.0,0 -46028967,"RPG Maker Rural Farm Tiles Resource Pack",purchase,1.0,0 -46028967,"RPG Maker Time Fantasy",purchase,1.0,0 -46028967,"RPG Maker VX Ace",purchase,1.0,0 -46028967,"Sanctum",purchase,1.0,0 -46028967,"Savage Lands",purchase,1.0,0 -46028967,"Shadowgrounds",purchase,1.0,0 -46028967,"Shadowgrounds Survivor",purchase,1.0,0 -46028967,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -46028967,"Sid Meier's Ace Patrol",purchase,1.0,0 -46028967,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -46028967,"Sid Meier's Civilization III Complete",purchase,1.0,0 -46028967,"Sid Meier's Civilization IV",purchase,1.0,0 -46028967,"Sid Meier's Civilization IV",purchase,1.0,0 -46028967,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -46028967,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -46028967,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -46028967,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -46028967,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -46028967,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -46028967,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -46028967,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -46028967,"Sid Meier's Pirates!",purchase,1.0,0 -46028967,"Sid Meier's Railroads!",purchase,1.0,0 -46028967,"SNOW",purchase,1.0,0 -46028967,"SpaceChem",purchase,1.0,0 -46028967,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -46028967,"Star Wars Dark Forces",purchase,1.0,0 -46028967,"Star Wars Empire at War Gold",purchase,1.0,0 -46028967,"Star Wars The Force Unleashed II",purchase,1.0,0 -46028967,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -46028967,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -46028967,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -46028967,"Star Wars Republic Commando",purchase,1.0,0 -46028967,"Star Wars Starfighter",purchase,1.0,0 -46028967,"Stronghold 2",purchase,1.0,0 -46028967,"Stronghold 3",purchase,1.0,0 -46028967,"Stronghold Crusader Extreme HD",purchase,1.0,0 -46028967,"Stronghold Crusader HD",purchase,1.0,0 -46028967,"Stronghold HD",purchase,1.0,0 -46028967,"Stronghold Legends",purchase,1.0,0 -46028967,"The Elder Scrolls V Skyrim",purchase,1.0,0 -46028967,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -46028967,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -46028967,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -46028967,"The Legend of Korra",purchase,1.0,0 -46028967,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -46028967,"Titan Quest",purchase,1.0,0 -46028967,"Tomb Raider",purchase,1.0,0 -46028967,"Tomb Raider Legend",purchase,1.0,0 -46028967,"Tomb Raider Underworld",purchase,1.0,0 -46028967,"TrackMania Stadium",purchase,1.0,0 -46028967,"Unepic",purchase,1.0,0 -46028967,"War of the Roses Kingmaker",purchase,1.0,0 -46028967,"War of the Roses Balance Beta",purchase,1.0,0 -46028967,"Ys Origin",purchase,1.0,0 -89618826,"Team Fortress 2",purchase,1.0,0 -89618826,"Team Fortress 2",play,0.9,0 -303615424,"Garry's Mod",purchase,1.0,0 -303615424,"Garry's Mod",play,2.0,0 -303615424,"Unturned",purchase,1.0,0 -303615424,"Unturned",play,0.4,0 -158866144,"Dota 2",purchase,1.0,0 -158866144,"Dota 2",play,10.9,0 -206510641,"Dota 2",purchase,1.0,0 -206510641,"Dota 2",play,10.3,0 -206510641,"Loadout",purchase,1.0,0 -206510641,"Reversion - The Escape",purchase,1.0,0 -206510641,"Toribash",purchase,1.0,0 -206510641,"Unturned",purchase,1.0,0 -206510641,"World of Guns Gun Disassembly",purchase,1.0,0 -102539470,"War Thunder",purchase,1.0,0 -102539470,"War Thunder",play,50.0,0 -102539470,"Dota 2",purchase,1.0,0 -102539470,"Dota 2",play,7.9,0 -102539470,"Steel Ocean",purchase,1.0,0 -102539470,"Steel Ocean",play,1.3,0 -121481890,"Team Fortress 2",purchase,1.0,0 -121481890,"Team Fortress 2",play,6.0,0 -103705957,"Team Fortress 2",purchase,1.0,0 -103705957,"Team Fortress 2",play,3.2,0 -58431944,"Farming Simulator 2011",purchase,1.0,0 -58431944,"Farming Simulator 2011",play,123.0,0 -58431944,"X3 Albion Prelude",purchase,1.0,0 -58431944,"X3 Albion Prelude",play,101.0,0 -58431944,"War Thunder",purchase,1.0,0 -58431944,"War Thunder",play,67.0,0 -58431944,"Farming Simulator 15",purchase,1.0,0 -58431944,"Farming Simulator 15",play,63.0,0 -58431944,"Port Royale 3",purchase,1.0,0 -58431944,"Port Royale 3",play,60.0,0 -58431944,"R.U.S.E",purchase,1.0,0 -58431944,"R.U.S.E",play,58.0,0 -58431944,"XCOM Enemy Unknown",purchase,1.0,0 -58431944,"XCOM Enemy Unknown",play,40.0,0 -58431944,"Stronghold Crusader 2",purchase,1.0,0 -58431944,"Stronghold Crusader 2",play,37.0,0 -58431944,"Farming Giant",purchase,1.0,0 -58431944,"Farming Giant",play,31.0,0 -58431944,"Anno 2070",purchase,1.0,0 -58431944,"Anno 2070",play,24.0,0 -58431944,"Imperium Romanum Gold Edition",purchase,1.0,0 -58431944,"Imperium Romanum Gold Edition",play,22.0,0 -58431944,"Tropico 3 Absolute Power",purchase,1.0,0 -58431944,"Tropico 3 Absolute Power",play,17.4,0 -58431944,"Patrician IV Rise of a Dynasty",purchase,1.0,0 -58431944,"Patrician IV Rise of a Dynasty",play,17.4,0 -58431944,"Age of Wonders III",purchase,1.0,0 -58431944,"Age of Wonders III",play,16.8,0 -58431944,"Path of Exile",purchase,1.0,0 -58431944,"Path of Exile",play,15.7,0 -58431944,"Wargame European Escalation",purchase,1.0,0 -58431944,"Wargame European Escalation",play,8.9,0 -58431944,"TransOcean The Shipping Company",purchase,1.0,0 -58431944,"TransOcean The Shipping Company",play,5.9,0 -58431944,"Rise of Venice",purchase,1.0,0 -58431944,"Rise of Venice",play,5.6,0 -58431944,"Europa Universalis IV",purchase,1.0,0 -58431944,"Europa Universalis IV",play,3.7,0 -58431944,"Children of the Nile Alexandria",purchase,1.0,0 -58431944,"Children of the Nile Alexandria",play,2.9,0 -58431944,"Medieval II Total War",purchase,1.0,0 -58431944,"Medieval II Total War",play,2.8,0 -58431944,"Lords of the Black Sun",purchase,1.0,0 -58431944,"Lords of the Black Sun",play,2.7,0 -58431944,"Rise of Nations Extended Edition",purchase,1.0,0 -58431944,"Rise of Nations Extended Edition",play,1.9,0 -58431944,"Patrician IV Steam Special Edition",purchase,1.0,0 -58431944,"Patrician IV Steam Special Edition",play,1.8,0 -58431944,"Hospital Tycoon",purchase,1.0,0 -58431944,"Hospital Tycoon",play,1.4,0 -58431944,"Star Wars - Battlefront II",purchase,1.0,0 -58431944,"Star Wars - Battlefront II",play,1.4,0 -58431944,"Medieval II Total War Kingdoms",purchase,1.0,0 -58431944,"Medieval II Total War Kingdoms",play,1.3,0 -58431944,"Commander Conquest of the Americas",purchase,1.0,0 -58431944,"Commander Conquest of the Americas",play,1.0,0 -58431944,"Airline Tycoon Deluxe",purchase,1.0,0 -58431944,"Airline Tycoon Deluxe",play,0.6,0 -58431944,"Universal Combat CE",purchase,1.0,0 -58431944,"Universal Combat CE",play,0.2,0 -58431944,"Team Fortress 2",purchase,1.0,0 -58431944,"Team Fortress 2",play,0.1,0 -58431944,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -58431944,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -58431944,"Children of the Nile",purchase,1.0,0 -58431944,"R.U.S.E.",purchase,1.0,0 -58431944,"Wargame AirLand Battle",purchase,1.0,0 -58431944,"Wargame Red Dragon",purchase,1.0,0 -58431944,"X3 Reunion",purchase,1.0,0 -58431944,"X3 Terran Conflict",purchase,1.0,0 -47332601,"Dota 2",purchase,1.0,0 -47332601,"Dota 2",play,3.1,0 -47332601,"Magicka Wizard Wars",purchase,1.0,0 -47332601,"Quake Live",purchase,1.0,0 -149386510,"Dota 2",purchase,1.0,0 -149386510,"Dota 2",play,30.0,0 -208464394,"Don't Starve",purchase,1.0,0 -208464394,"Don't Starve",play,4.6,0 -208464394,"Don't Starve Together Beta",purchase,1.0,0 -208464394,"Don't Starve Together Beta",play,1.2,0 -208464394,"MicroVolts Surge",purchase,1.0,0 -208464394,"MicroVolts Surge",play,0.4,0 -208464394,"Brick-Force",purchase,1.0,0 -208464394,"Hazard Ops",purchase,1.0,0 -208464394,"PlanetSide 2",purchase,1.0,0 -64023574,"Team Fortress 2",purchase,1.0,0 -64023574,"Team Fortress 2",play,225.0,0 -64023574,"Mount & Blade Warband",purchase,1.0,0 -64023574,"Mount & Blade Warband",play,219.0,0 -64023574,"Aliens vs. Predator",purchase,1.0,0 -64023574,"Aliens vs. Predator",play,138.0,0 -64023574,"Total War SHOGUN 2",purchase,1.0,0 -64023574,"Total War SHOGUN 2",play,114.0,0 -64023574,"DARK SOULS II",purchase,1.0,0 -64023574,"DARK SOULS II",play,106.0,0 -64023574,"Bully Scholarship Edition",purchase,1.0,0 -64023574,"Bully Scholarship Edition",play,94.0,0 -64023574,"Chivalry Medieval Warfare",purchase,1.0,0 -64023574,"Chivalry Medieval Warfare",play,92.0,0 -64023574,"The Elder Scrolls V Skyrim",purchase,1.0,0 -64023574,"The Elder Scrolls V Skyrim",play,78.0,0 -64023574,"L.A. Noire",purchase,1.0,0 -64023574,"L.A. Noire",play,77.0,0 -64023574,"Aliens Colonial Marines",purchase,1.0,0 -64023574,"Aliens Colonial Marines",play,56.0,0 -64023574,"Grand Theft Auto IV",purchase,1.0,0 -64023574,"Grand Theft Auto IV",play,55.0,0 -64023574,"Left 4 Dead 2",purchase,1.0,0 -64023574,"Left 4 Dead 2",play,53.0,0 -64023574,"Counter-Strike Global Offensive",purchase,1.0,0 -64023574,"Counter-Strike Global Offensive",play,51.0,0 -64023574,"Prototype",purchase,1.0,0 -64023574,"Prototype",play,40.0,0 -64023574,"Magicka",purchase,1.0,0 -64023574,"Magicka",play,35.0,0 -64023574,"Dota 2",purchase,1.0,0 -64023574,"Dota 2",play,35.0,0 -64023574,"Sleeping Dogs",purchase,1.0,0 -64023574,"Sleeping Dogs",play,28.0,0 -64023574,"Star Wars - Battlefront II",purchase,1.0,0 -64023574,"Star Wars - Battlefront II",play,23.0,0 -64023574,"Garry's Mod",purchase,1.0,0 -64023574,"Garry's Mod",play,22.0,0 -64023574,"PAYDAY 2",purchase,1.0,0 -64023574,"PAYDAY 2",play,21.0,0 -64023574,"Batman Arkham City GOTY",purchase,1.0,0 -64023574,"Batman Arkham City GOTY",play,18.9,0 -64023574,"Football Manager 2014",purchase,1.0,0 -64023574,"Football Manager 2014",play,13.8,0 -64023574,"Tomb Raider",purchase,1.0,0 -64023574,"Tomb Raider",play,12.2,0 -64023574,"Nosgoth",purchase,1.0,0 -64023574,"Nosgoth",play,11.4,0 -64023574,"Fallout 3",purchase,1.0,0 -64023574,"Fallout 3",play,11.0,0 -64023574,"Company of Heroes 2",purchase,1.0,0 -64023574,"Company of Heroes 2",play,10.7,0 -64023574,"Empire Total War",purchase,1.0,0 -64023574,"Empire Total War",play,10.5,0 -64023574,"Plague Inc Evolved",purchase,1.0,0 -64023574,"Plague Inc Evolved",play,9.2,0 -64023574,"BioShock Infinite",purchase,1.0,0 -64023574,"BioShock Infinite",play,8.5,0 -64023574,"Left 4 Dead",purchase,1.0,0 -64023574,"Left 4 Dead",play,7.3,0 -64023574,"BioShock",purchase,1.0,0 -64023574,"BioShock",play,6.4,0 -64023574,"Trine 2",purchase,1.0,0 -64023574,"Trine 2",play,6.2,0 -64023574,"Half-Life Opposing Force",purchase,1.0,0 -64023574,"Half-Life Opposing Force",play,5.8,0 -64023574,"Terraria",purchase,1.0,0 -64023574,"Terraria",play,5.3,0 -64023574,"Zombie Driver",purchase,1.0,0 -64023574,"Zombie Driver",play,4.4,0 -64023574,"Arma 2",purchase,1.0,0 -64023574,"Arma 2",play,3.4,0 -64023574,"Magicka Wizard Wars",purchase,1.0,0 -64023574,"Magicka Wizard Wars",play,3.3,0 -64023574,"Ace of Spades",purchase,1.0,0 -64023574,"Ace of Spades",play,3.0,0 -64023574,"Alien Swarm",purchase,1.0,0 -64023574,"Alien Swarm",play,2.9,0 -64023574,"PlanetSide 2",purchase,1.0,0 -64023574,"PlanetSide 2",play,2.8,0 -64023574,"Rust",purchase,1.0,0 -64023574,"Rust",play,2.8,0 -64023574,"Killing Floor",purchase,1.0,0 -64023574,"Killing Floor",play,2.7,0 -64023574,"Portal",purchase,1.0,0 -64023574,"Portal",play,2.0,0 -64023574,"Section 8 Prejudice",purchase,1.0,0 -64023574,"Section 8 Prejudice",play,2.0,0 -64023574,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -64023574,"Grand Theft Auto Episodes from Liberty City",play,1.6,0 -64023574,"Unturned",purchase,1.0,0 -64023574,"Unturned",play,1.6,0 -64023574,"Metro 2033",purchase,1.0,0 -64023574,"Metro 2033",play,1.6,0 -64023574,"IL-2 Sturmovik 1946",purchase,1.0,0 -64023574,"IL-2 Sturmovik 1946",play,1.4,0 -64023574,"Audiosurf",purchase,1.0,0 -64023574,"Audiosurf",play,1.3,0 -64023574,"Reus",purchase,1.0,0 -64023574,"Reus",play,1.1,0 -64023574,"Natural Selection 2",purchase,1.0,0 -64023574,"Natural Selection 2",play,1.1,0 -64023574,"F.E.A.R. Online",purchase,1.0,0 -64023574,"F.E.A.R. Online",play,0.8,0 -64023574,"Bob Came in Pieces",purchase,1.0,0 -64023574,"Bob Came in Pieces",play,0.6,0 -64023574,"Zombie Panic Source",purchase,1.0,0 -64023574,"Zombie Panic Source",play,0.6,0 -64023574,"Smashball",purchase,1.0,0 -64023574,"Smashball",play,0.6,0 -64023574,"Arma 2 DayZ Mod",purchase,1.0,0 -64023574,"Arma 2 DayZ Mod",play,0.5,0 -64023574,"Arma 2 Operation Arrowhead",purchase,1.0,0 -64023574,"Arma 2 Operation Arrowhead",play,0.4,0 -64023574,"State of Decay",purchase,1.0,0 -64023574,"State of Decay",play,0.3,0 -64023574,"Planetary Annihilation",purchase,1.0,0 -64023574,"Planetary Annihilation",play,0.3,0 -64023574,"Warface",purchase,1.0,0 -64023574,"Warface",play,0.3,0 -64023574,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -64023574,"Red Faction Guerrilla Steam Edition",play,0.2,0 -64023574,"Patch testing for Chivalry",purchase,1.0,0 -64023574,"Arma 2 Private Military Company",purchase,1.0,0 -64023574,"Arma 2 British Armed Forces",purchase,1.0,0 -64023574,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -64023574,"BioShock 2",purchase,1.0,0 -64023574,"Dishonored",purchase,1.0,0 -64023574,"Insurgency",purchase,1.0,0 -64023574,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -64023574,"Magicka Final Frontier",purchase,1.0,0 -64023574,"Magicka Frozen Lake",purchase,1.0,0 -64023574,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -64023574,"Magicka Nippon",purchase,1.0,0 -64023574,"Magicka Party Robes",purchase,1.0,0 -64023574,"Magicka The Watchtower",purchase,1.0,0 -64023574,"Magicka Vietnam",purchase,1.0,0 -64023574,"Magicka Wizard's Survival Kit",purchase,1.0,0 -64023574,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -64023574,"Neverwinter",purchase,1.0,0 -64023574,"Only If",purchase,1.0,0 -64023574,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -64023574,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -64023574,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -64023574,"Tribes Ascend - Steam Starter Pack",purchase,1.0,0 -64023574,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -68532738,"Borderlands 2",purchase,1.0,0 -68532738,"Borderlands 2",play,229.0,0 -68532738,"Borderlands",purchase,1.0,0 -68532738,"Borderlands",play,27.0,0 -68532738,"Dragon Nest",purchase,1.0,0 -68532738,"Dragon Nest",play,23.0,0 -68532738,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -68532738,"Tom Clancy's Ghost Recon Phantoms - NA",play,15.1,0 -68532738,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -68532738,"Burnout Paradise The Ultimate Box",play,14.0,0 -68532738,"Dead Space",purchase,1.0,0 -68532738,"Dead Space",play,4.8,0 -68532738,"Devil May Cry 3 Special Edition",purchase,1.0,0 -68532738,"Devil May Cry 3 Special Edition",play,3.5,0 -68532738,"Spec Ops The Line",purchase,1.0,0 -68532738,"Spec Ops The Line",play,2.1,0 -68532738,"Devil May Cry 4",purchase,1.0,0 -68532738,"Devil May Cry 4",play,2.1,0 -68532738,"FINAL FANTASY VIII",purchase,1.0,0 -68532738,"FINAL FANTASY VIII",play,2.0,0 -68532738,"Septerra Core",purchase,1.0,0 -68532738,"Septerra Core",play,1.6,0 -68532738,"Warface",purchase,1.0,0 -68532738,"Warface",play,1.5,0 -68532738,"Mirror's Edge",purchase,1.0,0 -68532738,"Mirror's Edge",play,1.0,0 -68532738,"Audiosurf",purchase,1.0,0 -68532738,"Audiosurf",play,0.9,0 -68532738,"Crysis 2 Maximum Edition",purchase,1.0,0 -68532738,"Crysis 2 Maximum Edition",play,0.6,0 -68532738,"BioShock",purchase,1.0,0 -68532738,"BioShock",play,0.4,0 -68532738,"Sniper Ghost Warrior",purchase,1.0,0 -68532738,"Sniper Ghost Warrior",play,0.3,0 -68532738,"Dota 2",purchase,1.0,0 -68532738,"Dota 2",play,0.2,0 -68532738,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -68532738,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -68532738,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -68532738,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -259325175,"SMITE",purchase,1.0,0 -259325175,"Teeworlds",purchase,1.0,0 -89856899,"Team Fortress 2",purchase,1.0,0 -89856899,"Team Fortress 2",play,14.2,0 -204412693,"Dota 2",purchase,1.0,0 -204412693,"Dota 2",play,1.1,0 -180063157,"Dota 2",purchase,1.0,0 -180063157,"Dota 2",play,0.8,0 -280609756,"Dota 2",purchase,1.0,0 -280609756,"Dota 2",play,6.0,0 -36288200,"Portal",purchase,1.0,0 -36288200,"Portal",play,0.1,0 -206494852,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -206494852,"METAL GEAR SOLID V THE PHANTOM PAIN",play,93.0,0 -206494852,"Garry's Mod",purchase,1.0,0 -206494852,"Garry's Mod",play,46.0,0 -206494852,"Metal Gear Solid Legacy",purchase,1.0,0 -206494852,"Metal Gear Solid Legacy",play,0.7,0 -206494852,"Clicker Heroes",purchase,1.0,0 -241929529,"Dota 2",purchase,1.0,0 -241929529,"Dota 2",play,284.0,0 -255027745,"Dota 2",purchase,1.0,0 -255027745,"Dota 2",play,7.2,0 -70591968,"Sid Meier's Civilization V",purchase,1.0,0 -70591968,"Sid Meier's Civilization V",play,1154.0,0 -70591968,"Grand Theft Auto IV",purchase,1.0,0 -70591968,"Grand Theft Auto IV",play,97.0,0 -70591968,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -70591968,"Grand Theft Auto Episodes from Liberty City",play,97.0,0 -70591968,"Cricket Revolution",purchase,1.0,0 -70591968,"Cricket Revolution",play,38.0,0 -70591968,"Mafia II",purchase,1.0,0 -70591968,"Mafia II",play,34.0,0 -70591968,"Bully Scholarship Edition",purchase,1.0,0 -70591968,"Bully Scholarship Edition",play,21.0,0 -70591968,"Hitman Absolution",purchase,1.0,0 -70591968,"Hitman Absolution",play,20.0,0 -70591968,"Hitman Sniper Challenge",purchase,1.0,0 -70591968,"Hitman Sniper Challenge",play,6.7,0 -70591968,"Tom Clancy's H.A.W.X. 2",purchase,1.0,0 -70591968,"Tom Clancy's H.A.W.X. 2",play,1.1,0 -70591968,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -234348805,"Counter-Strike Global Offensive",purchase,1.0,0 -234348805,"Counter-Strike Global Offensive",play,61.0,0 -234348805,"Rocket League",purchase,1.0,0 -234348805,"Rocket League",play,58.0,0 -234348805,"Garry's Mod",purchase,1.0,0 -234348805,"Garry's Mod",play,6.6,0 -234348805,"Team Fortress 2",purchase,1.0,0 -234348805,"Team Fortress 2",play,0.5,0 -234348805,"Trove",purchase,1.0,0 -234348805,"Trove",play,0.4,0 -234348805,"Brick-Force",purchase,1.0,0 -156748261,"NBA 2K16",purchase,1.0,0 -156748261,"NBA 2K16",play,22.0,0 -156748261,"Euro Truck Simulator 2",purchase,1.0,0 -156748261,"Euro Truck Simulator 2",play,6.0,0 -156748261,"Tropico 4",purchase,1.0,0 -156748261,"Tropico 4",play,5.4,0 -156748261,"Farming Simulator 2013",purchase,1.0,0 -156748261,"Farming Simulator 2013",play,5.1,0 -156748261,"Arma Cold War Assault",purchase,1.0,0 -156748261,"Arma Cold War Assault",play,0.5,0 -156748261,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -187966424,"Alan Wake's American Nightmare",purchase,1.0,0 -50572608,"Counter-Strike Source",purchase,1.0,0 -50572608,"Counter-Strike Source",play,315.0,0 -50572608,"Day of Defeat Source",purchase,1.0,0 -50572608,"Day of Defeat Source",play,0.3,0 -50572608,"Half-Life 2 Deathmatch",purchase,1.0,0 -50572608,"Half-Life 2 Lost Coast",purchase,1.0,0 -80239919,"Counter-Strike Global Offensive",purchase,1.0,0 -80239919,"Counter-Strike Global Offensive",play,709.0,0 -80239919,"Counter-Strike",purchase,1.0,0 -80239919,"Counter-Strike",play,406.0,0 -80239919,"Euro Truck Simulator 2",purchase,1.0,0 -80239919,"Euro Truck Simulator 2",play,66.0,0 -80239919,"Max Payne 3",purchase,1.0,0 -80239919,"Max Payne 3",play,3.2,0 -80239919,"Besiege",purchase,1.0,0 -80239919,"Besiege",play,1.1,0 -80239919,"Grand Theft Auto IV",purchase,1.0,0 -80239919,"Grand Theft Auto IV",play,0.5,0 -80239919,"Counter-Strike Condition Zero",purchase,1.0,0 -80239919,"Ricochet",purchase,1.0,0 -80239919,"Amnesia The Dark Descent",purchase,1.0,0 -80239919,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -80239919,"Day of Defeat",purchase,1.0,0 -80239919,"Dead Island Epidemic",purchase,1.0,0 -80239919,"Deathmatch Classic",purchase,1.0,0 -80239919,"Disciples III Renaissance",purchase,1.0,0 -80239919,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -80239919,"Left 4 Dead 2",purchase,1.0,0 -80239919,"LIMBO",purchase,1.0,0 -80239919,"Psychonauts",purchase,1.0,0 -80239919,"Psychonauts Demo",purchase,1.0,0 -80239919,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -161504500,"Dota 2",purchase,1.0,0 -161504500,"Dota 2",play,0.3,0 -199647568,"Counter-Strike Global Offensive",purchase,1.0,0 -199647568,"Counter-Strike Global Offensive",play,17.2,0 -186762233,"Dota 2",purchase,1.0,0 -186762233,"Dota 2",play,24.0,0 -168082750,"Counter-Strike Global Offensive",purchase,1.0,0 -168082750,"Counter-Strike Global Offensive",play,104.0,0 -168082750,"Dota 2",purchase,1.0,0 -168082750,"Dota 2",play,14.0,0 -168082750,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -168082750,"S.K.I.L.L. - Special Force 2",play,1.3,0 -168082750,"ACE - Arena Cyber Evolution",purchase,1.0,0 -308165484,"Dota 2",purchase,1.0,0 -308165484,"Dota 2",play,0.5,0 -182280948,"Sniper Ghost Warrior 2",purchase,1.0,0 -182280948,"Sniper Ghost Warrior 2",play,3.6,0 -182280948,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -207515194,"Dota 2",purchase,1.0,0 -207515194,"Dota 2",play,0.2,0 -90711776,"Rust",purchase,1.0,0 -90711776,"Rust",play,43.0,0 -90711776,"Dota 2",purchase,1.0,0 -90711776,"Dota 2",play,38.0,0 -90711776,"Left 4 Dead 2",purchase,1.0,0 -90711776,"Left 4 Dead 2",play,33.0,0 -90711776,"Garry's Mod",purchase,1.0,0 -90711776,"Garry's Mod",play,28.0,0 -90711776,"Counter-Strike Global Offensive",purchase,1.0,0 -90711776,"Counter-Strike Global Offensive",play,13.4,0 -90711776,"Company of Heroes 2",purchase,1.0,0 -90711776,"Company of Heroes 2",play,12.8,0 -90711776,"BioShock Infinite",purchase,1.0,0 -90711776,"BioShock Infinite",play,3.3,0 -90711776,"Grand Theft Auto IV",purchase,1.0,0 -90711776,"Grand Theft Auto IV",play,2.9,0 -90711776,"Age of Empires II HD Edition",purchase,1.0,0 -90711776,"Age of Empires II HD Edition",play,2.0,0 -90711776,"WAKFU",purchase,1.0,0 -90711776,"WAKFU",play,1.5,0 -90711776,"Alien Swarm",purchase,1.0,0 -90711776,"Alien Swarm",play,1.0,0 -90711776,"Fallout New Vegas",purchase,1.0,0 -90711776,"Fallout New Vegas",play,0.9,0 -90711776,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -90711776,"Grand Theft Auto Episodes from Liberty City",play,0.2,0 -90711776,"Metro 2033",purchase,1.0,0 -90711776,"BRINK",purchase,1.0,0 -90711776,"Neverwinter",purchase,1.0,0 -90711776,"Fractured Space",purchase,1.0,0 -90711776,"Grand Theft Auto",purchase,1.0,0 -90711776,"Grand Theft Auto 2",purchase,1.0,0 -90711776,"Grand Theft Auto San Andreas",purchase,1.0,0 -90711776,"Grand Theft Auto San Andreas",purchase,1.0,0 -90711776,"Grand Theft Auto Vice City",purchase,1.0,0 -90711776,"Grand Theft Auto Vice City",purchase,1.0,0 -90711776,"Grand Theft Auto III",purchase,1.0,0 -90711776,"Grand Theft Auto III",purchase,1.0,0 -90711776,"Magicka",purchase,1.0,0 -90711776,"Robocraft",purchase,1.0,0 -90711776,"Sniper Elite V2",purchase,1.0,0 -90711776,"Tomb Raider",purchase,1.0,0 -90711776,"Train Simulator",purchase,1.0,0 -130941814,"Team Fortress 2",purchase,1.0,0 -130941814,"Team Fortress 2",play,0.7,0 -3614782,"Counter-Strike",purchase,1.0,0 -3614782,"Counter-Strike Source",purchase,1.0,0 -3614782,"Day of Defeat",purchase,1.0,0 -3614782,"Deathmatch Classic",purchase,1.0,0 -3614782,"Half-Life",purchase,1.0,0 -3614782,"Half-Life 2",purchase,1.0,0 -3614782,"Half-Life 2 Deathmatch",purchase,1.0,0 -3614782,"Half-Life 2 Lost Coast",purchase,1.0,0 -3614782,"Half-Life Blue Shift",purchase,1.0,0 -3614782,"Half-Life Opposing Force",purchase,1.0,0 -3614782,"Half-Life Source",purchase,1.0,0 -3614782,"Half-Life Deathmatch Source",purchase,1.0,0 -3614782,"Ricochet",purchase,1.0,0 -3614782,"Team Fortress Classic",purchase,1.0,0 -29537499,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -29537499,"Call of Duty Modern Warfare 2 - Multiplayer",play,74.0,0 -29537499,"Call of Duty Modern Warfare 2",purchase,1.0,0 -29537499,"Call of Duty Modern Warfare 2",play,3.8,0 -34863766,"Counter-Strike Source",purchase,1.0,0 -34863766,"Day of Defeat Source",purchase,1.0,0 -34863766,"Half-Life 2 Deathmatch",purchase,1.0,0 -34863766,"Half-Life 2 Lost Coast",purchase,1.0,0 -173469318,"Dota 2",purchase,1.0,0 -173469318,"Dota 2",play,116.0,0 -129762577,"Dota 2",purchase,1.0,0 -129762577,"Dota 2",play,10.7,0 -114736887,"Homefront",purchase,1.0,0 -114736887,"Homefront",play,18.5,0 -114736887,"IL-2 Sturmovik Cliffs of Dover",purchase,1.0,0 -114736887,"IL-2 Sturmovik Cliffs of Dover",play,10.6,0 -220640317,"Tomb Raider I",purchase,1.0,0 -220640317,"Tomb Raider I",play,27.0,0 -220640317,"Tomb Raider II",purchase,1.0,0 -220640317,"Tomb Raider II",play,2.3,0 -295885446,"Fishing Planet",purchase,1.0,0 -295885446,"Fishing Planet",play,1.3,0 -205633955,"Counter-Strike Global Offensive",purchase,1.0,0 -205633955,"Counter-Strike Global Offensive",play,694.0,0 -59818635,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -59818635,"Call of Duty Modern Warfare 2 - Multiplayer",play,93.0,0 -59818635,"Call of Duty Modern Warfare 2",purchase,1.0,0 -59818635,"Call of Duty Modern Warfare 2",play,0.6,0 -232947963,"Marvel Heroes 2015",purchase,1.0,0 -59159042,"Empire Total War",purchase,1.0,0 -59159042,"Empire Total War",play,0.4,0 -203133963,"ComaMortuary",purchase,1.0,0 -101719689,"Team Fortress 2",purchase,1.0,0 -101719689,"Team Fortress 2",play,49.0,0 -101719689,"Midnight Club II",purchase,1.0,0 -101719689,"Serious Sam Classic The First Encounter",purchase,1.0,0 -101719689,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -101719689,"Serious Sam Classics Revolution",purchase,1.0,0 -101719689,"Windosill",purchase,1.0,0 -49718752,"NBA 2K9",purchase,1.0,0 -49718752,"NBA 2K9",play,2.9,0 -64158475,"Napoleon Total War",purchase,1.0,0 -101212067,"ARK Survival Evolved",purchase,1.0,0 -101212067,"ARK Survival Evolved",play,394.0,0 -101212067,"The Elder Scrolls V Skyrim",purchase,1.0,0 -101212067,"The Elder Scrolls V Skyrim",play,319.0,0 -101212067,"The Sims(TM) 3",purchase,1.0,0 -101212067,"The Sims(TM) 3",play,153.0,0 -101212067,"Killing Floor",purchase,1.0,0 -101212067,"Killing Floor",play,130.0,0 -101212067,"RollerCoaster Tycoon Deluxe",purchase,1.0,0 -101212067,"RollerCoaster Tycoon Deluxe",play,71.0,0 -101212067,"Sid Meier's Civilization V",purchase,1.0,0 -101212067,"Sid Meier's Civilization V",play,55.0,0 -101212067,"Portal 2",purchase,1.0,0 -101212067,"Portal 2",play,40.0,0 -101212067,"Grand Theft Auto V",purchase,1.0,0 -101212067,"Grand Theft Auto V",play,35.0,0 -101212067,"Tomb Raider",purchase,1.0,0 -101212067,"Tomb Raider",play,21.0,0 -101212067,"PAYDAY 2",purchase,1.0,0 -101212067,"PAYDAY 2",play,20.0,0 -101212067,"Banished",purchase,1.0,0 -101212067,"Banished",play,20.0,0 -101212067,"Rocket League",purchase,1.0,0 -101212067,"Rocket League",play,15.3,0 -101212067,"FINAL FANTASY XI Ultimate Collection - Abyssea Edition",purchase,1.0,0 -101212067,"Grand Theft Auto IV",purchase,1.0,0 -101212067,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -101212067,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -101212067,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -101212067,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -101212067,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -125508547,"Football Manager 2013",purchase,1.0,0 -125508547,"Football Manager 2013",play,162.0,0 -129724065,"Serious Sam HD The Second Encounter",purchase,1.0,0 -129724065,"Serious Sam HD The Second Encounter",play,107.0,0 -253121356,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -253121356,"Call of Duty Black Ops II - Multiplayer",play,62.0,0 -253121356,"PAYDAY 2",purchase,1.0,0 -253121356,"PAYDAY 2",play,12.9,0 -253121356,"Call of Duty Modern Warfare 3",purchase,1.0,0 -253121356,"Call of Duty Modern Warfare 3",play,7.6,0 -253121356,"Call of Duty Black Ops II",purchase,1.0,0 -253121356,"Call of Duty Black Ops II",play,5.4,0 -253121356,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -253121356,"Call of Duty Modern Warfare 3 - Multiplayer",play,2.5,0 -253121356,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -253121356,"Call of Duty Black Ops II - Zombies",play,1.5,0 -253121356,"theHunter",purchase,1.0,0 -253121356,"theHunter",play,1.0,0 -253121356,"PAYDAY The Web Series - Episode 1",purchase,1.0,0 -64261708,"DmC Devil May Cry",purchase,1.0,0 -64261708,"DmC Devil May Cry",play,11.3,0 -64261708,"Portal 2",purchase,1.0,0 -64261708,"Portal 2",play,6.8,0 -64261708,"Assassin's Creed II",purchase,1.0,0 -64261708,"Assassin's Creed II",play,6.1,0 -64261708,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -64261708,"Sonic & All-Stars Racing Transformed",play,4.1,0 -64261708,"BioShock Infinite",purchase,1.0,0 -64261708,"BioShock Infinite",play,2.4,0 -64261708,"Bastion",purchase,1.0,0 -64261708,"Bastion",play,2.3,0 -64261708,"Tomb Raider",purchase,1.0,0 -64261708,"Tomb Raider",play,2.2,0 -64261708,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -64261708,"Resident Evil 6 / Biohazard 6",play,0.5,0 -64261708,"Metro 2033",purchase,1.0,0 -64261708,"Metro 2033",play,0.3,0 -64261708,"Assassin's Creed III",purchase,1.0,0 -64261708,"Left 4 Dead 2",purchase,1.0,0 -64261708,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -64261708,"Rayman Legends",purchase,1.0,0 -36775354,"Counter-Strike",purchase,1.0,0 -36775354,"Counter-Strike",play,10.2,0 -36775354,"Day of Defeat",purchase,1.0,0 -36775354,"Day of Defeat",play,0.4,0 -36775354,"Ricochet",purchase,1.0,0 -36775354,"Counter-Strike Condition Zero",purchase,1.0,0 -36775354,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -36775354,"Deathmatch Classic",purchase,1.0,0 -85395339,"Team Fortress 2",purchase,1.0,0 -85395339,"Team Fortress 2",play,0.1,0 -85395339,"Portal",purchase,1.0,0 -209340839,"The Elder Scrolls V Skyrim",purchase,1.0,0 -209340839,"The Elder Scrolls V Skyrim",play,109.0,0 -209340839,"Warframe",purchase,1.0,0 -209340839,"Warframe",play,1.0,0 -209340839,"Fallen Earth",purchase,1.0,0 -209340839,"Fallen Earth",play,0.3,0 -209340839,"theHunter",purchase,1.0,0 -209340839,"theHunter",play,0.2,0 -209340839,"Vindictus",purchase,1.0,0 -209340839,"Ascend Hand of Kul",purchase,1.0,0 -209340839,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -108484523,"Dota 2",purchase,1.0,0 -108484523,"Dota 2",play,226.0,0 -108484523,"HAWKEN",purchase,1.0,0 -108484523,"HAWKEN",play,10.5,0 -108484523,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -248757796,"Stronghold Kingdoms",purchase,1.0,0 -248757796,"Stronghold Kingdoms",play,19.5,0 -248757796,"Dota 2",purchase,1.0,0 -248757796,"Dota 2",play,16.8,0 -248757796,"Magicka Wizard Wars",purchase,1.0,0 -35227774,"Counter-Strike Condition Zero",purchase,1.0,0 -35227774,"Counter-Strike Condition Zero",play,0.7,0 -35227774,"Counter-Strike",purchase,1.0,0 -35227774,"Counter-Strike",play,0.3,0 -35227774,"Day of Defeat Source",purchase,1.0,0 -35227774,"Day of Defeat Source",play,0.1,0 -35227774,"Deathmatch Classic",purchase,1.0,0 -35227774,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -35227774,"Counter-Strike Source",purchase,1.0,0 -35227774,"Day of Defeat",purchase,1.0,0 -35227774,"Half-Life 2 Deathmatch",purchase,1.0,0 -35227774,"Half-Life 2 Lost Coast",purchase,1.0,0 -35227774,"Ricochet",purchase,1.0,0 -167118460,"Terraria",purchase,1.0,0 -167118460,"Terraria",play,202.0,0 -167118460,"AdVenture Capitalist",purchase,1.0,0 -167118460,"AdVenture Capitalist",play,122.0,0 -167118460,"Clicker Heroes",purchase,1.0,0 -167118460,"Clicker Heroes",play,10.4,0 -167118460,"The Mighty Quest For Epic Loot",purchase,1.0,0 -167118460,"The Mighty Quest For Epic Loot",play,9.9,0 -167118460,"ORION Prelude",purchase,1.0,0 -167118460,"ORION Prelude",play,8.7,0 -167118460,"Time Clickers",purchase,1.0,0 -167118460,"Time Clickers",play,8.6,0 -167118460,"Unturned",purchase,1.0,0 -167118460,"Unturned",play,6.7,0 -167118460,"Timberman",purchase,1.0,0 -167118460,"Timberman",play,4.6,0 -167118460,"Garry's Mod",purchase,1.0,0 -167118460,"Garry's Mod",play,3.8,0 -167118460,"Castle Crashers",purchase,1.0,0 -167118460,"Castle Crashers",play,3.6,0 -167118460,"Robocraft",purchase,1.0,0 -167118460,"Robocraft",play,2.2,0 -167118460,"Fistful of Frags",purchase,1.0,0 -167118460,"Fistful of Frags",play,2.2,0 -167118460,"Loadout",purchase,1.0,0 -167118460,"Loadout",play,1.9,0 -167118460,"Strife",purchase,1.0,0 -167118460,"Strife",play,1.3,0 -167118460,"Team Fortress 2",purchase,1.0,0 -167118460,"Team Fortress 2",play,1.3,0 -167118460,"Left 4 Dead 2",purchase,1.0,0 -167118460,"Left 4 Dead 2",play,1.2,0 -167118460,"Enclave",purchase,1.0,0 -167118460,"Enclave",play,1.0,0 -167118460,"Warframe",purchase,1.0,0 -167118460,"Warframe",play,0.7,0 -167118460,"Crusaders of the Lost Idols",purchase,1.0,0 -167118460,"Crusaders of the Lost Idols",play,0.6,0 -167118460,"RACE 07",purchase,1.0,0 -167118460,"RACE 07",play,0.3,0 -167118460,"Tap Tap Infinity",purchase,1.0,0 -167118460,"Tap Tap Infinity",play,0.2,0 -167118460,"AirMech",purchase,1.0,0 -167118460,"AirMech",play,0.2,0 -167118460,"8BitMMO",purchase,1.0,0 -167118460,"8BitMMO",play,0.2,0 -167118460,"Urban Trial Freestyle",purchase,1.0,0 -167118460,"Urban Trial Freestyle",play,0.1,0 -167118460,"Hotline Miami",purchase,1.0,0 -167118460,"Toribash",purchase,1.0,0 -167118460,"Dungeonland",purchase,1.0,0 -167118460,"Devil's Workshop pack",purchase,1.0,0 -167118460,"GT Power Expansion",purchase,1.0,0 -167118460,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -167118460,"Saints Row 2",purchase,1.0,0 -167118460,"Saints Row Gat out of Hell",purchase,1.0,0 -167118460,"Saints Row The Third",purchase,1.0,0 -167118460,"Saints Row IV",purchase,1.0,0 -167118460,"STCC II",purchase,1.0,0 -167118460,"The Binding of Isaac",purchase,1.0,0 -167118460,"The Retro Expansion",purchase,1.0,0 -167118460,"The WTCC 2010 Pack",purchase,1.0,0 -167118460,"Vertiginous Golf",purchase,1.0,0 -80154824,"Medal of Honor Airborne",purchase,1.0,0 -80154824,"Medal of Honor Airborne",play,46.0,0 -80154824,"Portal",purchase,1.0,0 -80154824,"Portal",play,6.4,0 -80154824,"Cities Skylines",purchase,1.0,0 -80154824,"Cities Skylines",play,4.4,0 -112677705,"DiRT 3",purchase,1.0,0 -112677705,"DiRT 3",play,0.2,0 -112677705,"DiRT 3 Complete Edition",purchase,1.0,0 -9740704,"Counter-Strike",purchase,1.0,0 -9740704,"Counter-Strike",play,23.0,0 -9740704,"Team Fortress 2",purchase,1.0,0 -9740704,"Team Fortress 2",play,3.6,0 -9740704,"Counter-Strike Nexon Zombies",purchase,1.0,0 -9740704,"Counter-Strike Nexon Zombies",play,0.5,0 -9740704,"Dizzel",purchase,1.0,0 -9740704,"Day of Defeat",purchase,1.0,0 -9740704,"Deathmatch Classic",purchase,1.0,0 -9740704,"Half-Life",purchase,1.0,0 -9740704,"Half-Life Blue Shift",purchase,1.0,0 -9740704,"Half-Life Opposing Force",purchase,1.0,0 -9740704,"Ricochet",purchase,1.0,0 -9740704,"Team Fortress Classic",purchase,1.0,0 -207365563,"Alien Swarm",purchase,1.0,0 -207365563,"Alien Swarm",play,1.4,0 -207365563,"Dota 2",purchase,1.0,0 -207365563,"Dota 2",play,0.2,0 -207365563,"GunZ 2 The Second Duel",purchase,1.0,0 -207365563,"Warframe",purchase,1.0,0 -264496864,"Warframe",purchase,1.0,0 -264496864,"Warframe",play,2.3,0 -242112520,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -242112520,"Counter-Strike Nexon Zombies",purchase,1.0,0 -242112520,"Fallen Earth",purchase,1.0,0 -242112520,"Football Superstars",purchase,1.0,0 -242112520,"Gotham City Impostors Free To Play",purchase,1.0,0 -242112520,"No More Room in Hell",purchase,1.0,0 -242112520,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -242112520,"World of Guns Gun Disassembly",purchase,1.0,0 -165877735,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -165877735,"Warhammer 40,000 Dawn of War II",play,10.5,0 -165877735,"Deus Ex Human Revolution",purchase,1.0,0 -165877735,"Deus Ex Human Revolution",play,3.1,0 -165877735,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -240278903,"Dota 2",purchase,1.0,0 -240278903,"Dota 2",play,0.7,0 -209120214,"Dota 2",purchase,1.0,0 -209120214,"Dota 2",play,9.8,0 -121137382,"To the Moon",purchase,1.0,0 -121137382,"To the Moon",play,4.0,0 -159377740,"Left 4 Dead 2",purchase,1.0,0 -159377740,"Left 4 Dead 2",play,46.0,0 -200059104,"Counter-Strike Global Offensive",purchase,1.0,0 -200059104,"Counter-Strike Global Offensive",play,144.0,0 -200059104,"Trove",purchase,1.0,0 -200059104,"Trove",play,77.0,0 -200059104,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -200059104,"Dark Souls Prepare to Die Edition",play,58.0,0 -200059104,"Left 4 Dead 2",purchase,1.0,0 -200059104,"Left 4 Dead 2",play,21.0,0 -200059104,"Aura Kingdom",purchase,1.0,0 -200059104,"Aura Kingdom",play,11.7,0 -200059104,"Starbound",purchase,1.0,0 -200059104,"Starbound",play,11.1,0 -200059104,"Portal 2",purchase,1.0,0 -200059104,"Portal 2",play,9.7,0 -200059104,"Echo of Soul",purchase,1.0,0 -200059104,"Echo of Soul",play,9.0,0 -200059104,"Team Fortress 2",purchase,1.0,0 -200059104,"Team Fortress 2",play,8.2,0 -200059104,"Spiral Knights",purchase,1.0,0 -200059104,"Spiral Knights",play,4.5,0 -200059104,"Portal",purchase,1.0,0 -200059104,"Portal",play,3.2,0 -200059104,"Tomb Raider",purchase,1.0,0 -200059104,"Tomb Raider",play,2.1,0 -200059104,"Warframe",purchase,1.0,0 -200059104,"Warframe",play,2.0,0 -200059104,"Chivalry Medieval Warfare",purchase,1.0,0 -200059104,"Chivalry Medieval Warfare",play,1.5,0 -200059104,"WAKFU",purchase,1.0,0 -200059104,"WAKFU",play,1.5,0 -200059104,"Metro Conflict",purchase,1.0,0 -200059104,"Metro Conflict",play,1.4,0 -200059104,"ArcheAge",purchase,1.0,0 -200059104,"ArcheAge",play,1.0,0 -200059104,"Dragon Nest Europe",purchase,1.0,0 -200059104,"Dragon Nest Europe",play,0.9,0 -200059104,"Nosgoth",purchase,1.0,0 -200059104,"Nosgoth",play,0.6,0 -200059104,"Warface",purchase,1.0,0 -200059104,"Warface",play,0.5,0 -200059104,"Block N Load",purchase,1.0,0 -200059104,"Block N Load",play,0.4,0 -200059104,"PlanetSide 2",purchase,1.0,0 -200059104,"PlanetSide 2",play,0.2,0 -200059104,"Unturned",purchase,1.0,0 -200059104,"Unturned",play,0.1,0 -200059104,"Orbital Gear",purchase,1.0,0 -200059104,"Patch testing for Chivalry",purchase,1.0,0 -200059104,"RIFT",purchase,1.0,0 -200059104,"Starbound - Unstable",purchase,1.0,0 -307729778,"Color Symphony",purchase,1.0,0 -307729778,"Robocraft",purchase,1.0,0 -250492644,"BLOCKADE 3D",purchase,1.0,0 -250492644,"BLOCKADE 3D",play,1.4,0 -250492644,"Unturned",purchase,1.0,0 -250492644,"Unturned",play,0.7,0 -156733822,"Garry's Mod",purchase,1.0,0 -156733822,"Garry's Mod",play,59.0,0 -156733822,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -156733822,"Call of Duty Ghosts - Multiplayer",play,48.0,0 -156733822,"Team Fortress 2",purchase,1.0,0 -156733822,"Team Fortress 2",play,13.5,0 -156733822,"Dota 2",purchase,1.0,0 -156733822,"Dota 2",play,3.3,0 -156733822,"Call of Duty Ghosts",purchase,1.0,0 -156733822,"Call of Duty Ghosts",play,1.0,0 -278757028,"Loadout",purchase,1.0,0 -278757028,"Loadout",play,0.1,0 -165210999,"Dota 2",purchase,1.0,0 -165210999,"Dota 2",play,1.0,0 -165210999,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -246386712,"Five Nights at Freddy's",purchase,1.0,0 -52203520,"Mass Effect 2",purchase,1.0,0 -52203520,"Mass Effect 2",play,75.0,0 -52203520,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -52203520,"Plants vs. Zombies Game of the Year",play,9.3,0 -52203520,"Counter-Strike Source",purchase,1.0,0 -52203520,"Counter-Strike Source",play,9.3,0 -52203520,"Trine",purchase,1.0,0 -52203520,"Trine",play,8.5,0 -52203520,"Counter-Strike Condition Zero",purchase,1.0,0 -52203520,"Counter-Strike Condition Zero",play,4.0,0 -52203520,"Left 4 Dead 2",purchase,1.0,0 -52203520,"Left 4 Dead 2",play,0.9,0 -52203520,"Deathmatch Classic",purchase,1.0,0 -52203520,"Counter-Strike",purchase,1.0,0 -52203520,"Ricochet",purchase,1.0,0 -52203520,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -52203520,"Day of Defeat",purchase,1.0,0 -116515529,"Call of Duty Black Ops",purchase,1.0,0 -116515529,"Call of Duty Black Ops",play,1.7,0 -116515529,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -116515529,"Call of Duty Black Ops - Multiplayer",play,0.1,0 -129128224,"Serious Sam HD The Second Encounter",purchase,1.0,0 -129128224,"Serious Sam HD The Second Encounter",play,0.1,0 -129743598,"Team Fortress 2",purchase,1.0,0 -129743598,"Team Fortress 2",play,10.1,0 -276555062,"FINAL FANTASY VII",purchase,1.0,0 -276555062,"FINAL FANTASY VII",play,141.0,0 -276555062,"FINAL FANTASY VIII",purchase,1.0,0 -276555062,"FINAL FANTASY VIII",play,130.0,0 -68017342,"Alien Swarm",purchase,1.0,0 -68017342,"Alien Swarm",play,1.6,0 -151724188,"Dota 2",purchase,1.0,0 -151724188,"Dota 2",play,20.0,0 -19696244,"The Elder Scrolls V Skyrim",purchase,1.0,0 -19696244,"The Elder Scrolls V Skyrim",play,579.0,0 -19696244,"PAYDAY 2",purchase,1.0,0 -19696244,"PAYDAY 2",play,263.0,0 -19696244,"Team Fortress 2",purchase,1.0,0 -19696244,"Team Fortress 2",play,241.0,0 -19696244,"Counter-Strike Source",purchase,1.0,0 -19696244,"Counter-Strike Source",play,160.0,0 -19696244,"Killing Floor",purchase,1.0,0 -19696244,"Killing Floor",play,141.0,0 -19696244,"Grand Theft Auto V",purchase,1.0,0 -19696244,"Grand Theft Auto V",play,136.0,0 -19696244,"Chivalry Medieval Warfare",purchase,1.0,0 -19696244,"Chivalry Medieval Warfare",play,120.0,0 -19696244,"Rogue Legacy",purchase,1.0,0 -19696244,"Rogue Legacy",play,92.0,0 -19696244,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -19696244,"Call of Duty Black Ops - Multiplayer",play,91.0,0 -19696244,"Fallout New Vegas",purchase,1.0,0 -19696244,"Fallout New Vegas",play,91.0,0 -19696244,"Killing Floor 2",purchase,1.0,0 -19696244,"Killing Floor 2",play,78.0,0 -19696244,"Counter-Strike Global Offensive",purchase,1.0,0 -19696244,"Counter-Strike Global Offensive",play,75.0,0 -19696244,"Just Cause 2",purchase,1.0,0 -19696244,"Just Cause 2",play,59.0,0 -19696244,"Borderlands 2",purchase,1.0,0 -19696244,"Borderlands 2",play,50.0,0 -19696244,"HAWKEN",purchase,1.0,0 -19696244,"HAWKEN",play,46.0,0 -19696244,"Tom Clancy's Rainbow Six Vegas 2",purchase,1.0,0 -19696244,"Tom Clancy's Rainbow Six Vegas 2",play,39.0,0 -19696244,"7 Days to Die",purchase,1.0,0 -19696244,"7 Days to Die",play,34.0,0 -19696244,"Fallout 4",purchase,1.0,0 -19696244,"Fallout 4",play,33.0,0 -19696244,"Portal 2",purchase,1.0,0 -19696244,"Portal 2",play,32.0,0 -19696244,"Hotline Miami",purchase,1.0,0 -19696244,"Hotline Miami",play,28.0,0 -19696244,"Evolve",purchase,1.0,0 -19696244,"Evolve",play,27.0,0 -19696244,"Magic Duels",purchase,1.0,0 -19696244,"Magic Duels",play,25.0,0 -19696244,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -19696244,"F.E.A.R. 2 Project Origin",play,24.0,0 -19696244,"PAYDAY The Heist",purchase,1.0,0 -19696244,"PAYDAY The Heist",play,22.0,0 -19696244,"Magicka",purchase,1.0,0 -19696244,"Magicka",play,22.0,0 -19696244,"Rust",purchase,1.0,0 -19696244,"Rust",play,22.0,0 -19696244,"Shadowrun Returns",purchase,1.0,0 -19696244,"Shadowrun Returns",play,16.8,0 -19696244,"Mafia II",purchase,1.0,0 -19696244,"Mafia II",play,16.2,0 -19696244,"DayZ",purchase,1.0,0 -19696244,"DayZ",play,15.7,0 -19696244,"Left 4 Dead",purchase,1.0,0 -19696244,"Left 4 Dead",play,15.4,0 -19696244,"Magic 2014 ",purchase,1.0,0 -19696244,"Magic 2014 ",play,14.7,0 -19696244,"BioShock Infinite",purchase,1.0,0 -19696244,"BioShock Infinite",play,14.5,0 -19696244,"Alan Wake",purchase,1.0,0 -19696244,"Alan Wake",play,13.1,0 -19696244,"Bastion",purchase,1.0,0 -19696244,"Bastion",play,13.1,0 -19696244,"Hotline Miami 2 Wrong Number",purchase,1.0,0 -19696244,"Hotline Miami 2 Wrong Number",play,13.0,0 -19696244,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -19696244,"Deus Ex Human Revolution - Director's Cut",play,12.5,0 -19696244,"Metro 2033",purchase,1.0,0 -19696244,"Metro 2033",play,12.2,0 -19696244,"Sniper Elite 3",purchase,1.0,0 -19696244,"Sniper Elite 3",play,12.2,0 -19696244,"Garry's Mod",purchase,1.0,0 -19696244,"Garry's Mod",play,12.0,0 -19696244,"SOMA",purchase,1.0,0 -19696244,"SOMA",play,11.2,0 -19696244,"Half-Life 2 Episode Two",purchase,1.0,0 -19696244,"Half-Life 2 Episode Two",play,11.0,0 -19696244,"Half-Life 2",purchase,1.0,0 -19696244,"Half-Life 2",play,11.0,0 -19696244,"Half-Life Source",purchase,1.0,0 -19696244,"Half-Life Source",play,10.8,0 -19696244,"Dead Space 2",purchase,1.0,0 -19696244,"Dead Space 2",play,10.5,0 -19696244,"Call of Duty Black Ops",purchase,1.0,0 -19696244,"Call of Duty Black Ops",play,9.2,0 -19696244,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -19696244,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,8.8,0 -19696244,"Amnesia The Dark Descent",purchase,1.0,0 -19696244,"Amnesia The Dark Descent",play,8.5,0 -19696244,"Divinity Original Sin",purchase,1.0,0 -19696244,"Divinity Original Sin",play,8.3,0 -19696244,"The Stanley Parable",purchase,1.0,0 -19696244,"The Stanley Parable",play,7.7,0 -19696244,"Outlast",purchase,1.0,0 -19696244,"Outlast",play,7.1,0 -19696244,"Insurgency Modern Infantry Combat",purchase,1.0,0 -19696244,"Insurgency Modern Infantry Combat",play,4.6,0 -19696244,"Half-Life 2 Episode One",purchase,1.0,0 -19696244,"Half-Life 2 Episode One",play,4.1,0 -19696244,"Prison Architect",purchase,1.0,0 -19696244,"Prison Architect",play,4.0,0 -19696244,"Oil Rush",purchase,1.0,0 -19696244,"Oil Rush",play,4.0,0 -19696244,"Torchlight II",purchase,1.0,0 -19696244,"Torchlight II",play,4.0,0 -19696244,"Alan Wake's American Nightmare",purchase,1.0,0 -19696244,"Alan Wake's American Nightmare",play,3.6,0 -19696244,"Arma 2 Operation Arrowhead",purchase,1.0,0 -19696244,"Arma 2 Operation Arrowhead",play,3.4,0 -19696244,"Thief 2",purchase,1.0,0 -19696244,"Thief 2",play,3.1,0 -19696244,"Capsized",purchase,1.0,0 -19696244,"Capsized",play,2.5,0 -19696244,"Orcs Must Die! 2",purchase,1.0,0 -19696244,"Orcs Must Die! 2",play,2.3,0 -19696244,"Thief",purchase,1.0,0 -19696244,"Thief",play,2.3,0 -19696244,"Amnesia A Machine for Pigs",purchase,1.0,0 -19696244,"Amnesia A Machine for Pigs",play,2.2,0 -19696244,"Alien Swarm",purchase,1.0,0 -19696244,"Alien Swarm",play,2.1,0 -19696244,"Goat Simulator",purchase,1.0,0 -19696244,"Goat Simulator",play,2.0,0 -19696244,"Besiege",purchase,1.0,0 -19696244,"Besiege",play,2.0,0 -19696244,"Papers, Please",purchase,1.0,0 -19696244,"Papers, Please",play,2.0,0 -19696244,"Surgeon Simulator",purchase,1.0,0 -19696244,"Surgeon Simulator",play,1.9,0 -19696244,"The Bridge",purchase,1.0,0 -19696244,"The Bridge",play,1.9,0 -19696244,"Dear Esther",purchase,1.0,0 -19696244,"Dear Esther",play,1.7,0 -19696244,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -19696244,"Rising Storm/Red Orchestra 2 Multiplayer",play,1.6,0 -19696244,"Hammerwatch",purchase,1.0,0 -19696244,"Hammerwatch",play,1.4,0 -19696244,"Estranged Act I",purchase,1.0,0 -19696244,"Estranged Act I",play,1.3,0 -19696244,"Little Inferno",purchase,1.0,0 -19696244,"Little Inferno",play,1.3,0 -19696244,"Thomas Was Alone",purchase,1.0,0 -19696244,"Thomas Was Alone",play,1.3,0 -19696244,"System Shock 2",purchase,1.0,0 -19696244,"System Shock 2",play,1.2,0 -19696244,"Portal",purchase,1.0,0 -19696244,"Portal",play,1.1,0 -19696244,"Left 4 Dead 2",purchase,1.0,0 -19696244,"Left 4 Dead 2",play,0.9,0 -19696244,"Zombie Army Trilogy",purchase,1.0,0 -19696244,"Zombie Army Trilogy",play,0.7,0 -19696244,"Zombie Panic Source",purchase,1.0,0 -19696244,"Zombie Panic Source",play,0.7,0 -19696244,"Tower Wars",purchase,1.0,0 -19696244,"Tower Wars",play,0.6,0 -19696244,"Super Hexagon",purchase,1.0,0 -19696244,"Super Hexagon",play,0.5,0 -19696244,"SteamWorld Dig",purchase,1.0,0 -19696244,"SteamWorld Dig",play,0.4,0 -19696244,"Gone Home",purchase,1.0,0 -19696244,"Gone Home",play,0.3,0 -19696244,"Day of Defeat Source",purchase,1.0,0 -19696244,"Day of Defeat Source",play,0.2,0 -19696244,"Proteus",purchase,1.0,0 -19696244,"Proteus",play,0.2,0 -19696244,"Thief Gold",purchase,1.0,0 -19696244,"Thief Gold",play,0.1,0 -19696244,"Half-Life 2 Deathmatch",purchase,1.0,0 -19696244,"Half-Life 2 Deathmatch",play,0.1,0 -19696244,"Oddworld Abe's Oddysee",purchase,1.0,0 -19696244,"Gunpoint",purchase,1.0,0 -19696244,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -19696244,"Arma 2",purchase,1.0,0 -19696244,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -19696244,"Awesomenauts",purchase,1.0,0 -19696244,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -19696244,"English Country Tune",purchase,1.0,0 -19696244,"Evolve - Behemoth",purchase,1.0,0 -19696244,"Half-Life 2 Lost Coast",purchase,1.0,0 -19696244,"Half-Life Deathmatch Source",purchase,1.0,0 -19696244,"Intrusion 2",purchase,1.0,0 -19696244,"LUFTRAUSERS",purchase,1.0,0 -19696244,"Magicka Wizard's Survival Kit",purchase,1.0,0 -19696244,"Monaco",purchase,1.0,0 -19696244,"Outlast Whistleblower DLC",purchase,1.0,0 -19696244,"Patch testing for Chivalry",purchase,1.0,0 -19696244,"Race The Sun",purchase,1.0,0 -19696244,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -19696244,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -19696244,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -19696244,"Thief Deadly Shadows",purchase,1.0,0 -19696244,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -207424334,"Fistful of Frags",purchase,1.0,0 -207424334,"Fistful of Frags",play,6.8,0 -207424334,"BLOCKADE 3D",purchase,1.0,0 -207424334,"BLOCKADE 3D",play,6.4,0 -207424334,"Papers, Please",purchase,1.0,0 -207424334,"Papers, Please",play,6.1,0 -207424334,"theHunter Primal",purchase,1.0,0 -207424334,"theHunter Primal",play,4.6,0 -207424334,"Unturned",purchase,1.0,0 -207424334,"Unturned",play,2.6,0 -207424334,"Rocket League",purchase,1.0,0 -207424334,"Rocket League",play,2.6,0 -207424334,"Garry's Mod",purchase,1.0,0 -207424334,"Garry's Mod",play,1.5,0 -207424334,"Remember Me",purchase,1.0,0 -207424334,"Remember Me",play,1.4,0 -207424334,"Brick-Force",purchase,1.0,0 -207424334,"Brick-Force",play,0.7,0 -207424334,"Team Fortress 2",purchase,1.0,0 -207424334,"Team Fortress 2",play,0.4,0 -207424334,"ORION Prelude",purchase,1.0,0 -207424334,"ORION Prelude",play,0.3,0 -112999066,"Dota 2",purchase,1.0,0 -112999066,"Dota 2",play,32.0,0 -223614273,"Warface",purchase,1.0,0 -223614273,"Warface",play,0.4,0 -223614273,"America's Army Proving Grounds",purchase,1.0,0 -223614273,"Warframe",purchase,1.0,0 -186126772,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -186126772,"Call of Duty Black Ops II - Multiplayer",play,13.1,0 -186126772,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -186126772,"Call of Duty Modern Warfare 3 - Multiplayer",play,2.8,0 -186126772,"Team Fortress 2",purchase,1.0,0 -186126772,"Team Fortress 2",play,1.9,0 -186126772,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -186126772,"Call of Duty Black Ops II - Zombies",play,0.8,0 -186126772,"Call of Duty Black Ops II",purchase,1.0,0 -186126772,"Call of Duty Black Ops II",play,0.6,0 -186126772,"Darkwind War on Wheels",purchase,1.0,0 -186126772,"Darkwind War on Wheels",play,0.1,0 -186126772,"Call of Duty Modern Warfare 3",purchase,1.0,0 -177446373,"Dota 2",purchase,1.0,0 -177446373,"Dota 2",play,0.5,0 -48395915,"Left 4 Dead",purchase,1.0,0 -48395915,"Left 4 Dead",play,36.0,0 -188615226,"Unturned",purchase,1.0,0 -188615226,"Unturned",play,14.0,0 -188615226,"Happy Wars",purchase,1.0,0 -188615226,"Happy Wars",play,2.1,0 -188615226,"No More Room in Hell",purchase,1.0,0 -188615226,"No More Room in Hell",play,0.8,0 -188615226,"theHunter",purchase,1.0,0 -188615226,"Dirty Bomb",purchase,1.0,0 -160461131,"Loadout",purchase,1.0,0 -160461131,"Loadout",play,2.8,0 -160461131,"Fistful of Frags",purchase,1.0,0 -160461131,"Fistful of Frags",play,2.7,0 -160461131,"Team Fortress 2",purchase,1.0,0 -160461131,"Team Fortress 2",play,2.3,0 -160461131,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -160461131,"Tom Clancy's Ghost Recon Phantoms - NA",play,1.1,0 -160461131,"Defiance",purchase,1.0,0 -160461131,"Defiance",play,0.7,0 -160461131,"Loadout Campaign Beta",purchase,1.0,0 -160461131,"Loadout Campaign Beta",play,0.2,0 -160461131,"Blacklight Retribution",purchase,1.0,0 -161964288,"Dota 2",purchase,1.0,0 -161964288,"Dota 2",play,4.0,0 -280567820,"Dota 2",purchase,1.0,0 -280567820,"Dota 2",play,0.2,0 -270228556,"Dota 2",purchase,1.0,0 -270228556,"Dota 2",play,1.2,0 -270341392,"Dota 2",purchase,1.0,0 -270341392,"Dota 2",play,17.6,0 -250375228,"Dota 2",purchase,1.0,0 -250375228,"Dota 2",play,5.1,0 -250375228,"samurai_jazz",purchase,1.0,0 -250375228,"Free to Play",purchase,1.0,0 -250375228,"Heroes & Generals",purchase,1.0,0 -250375228,"Robocraft",purchase,1.0,0 -250375228,"Transformice",purchase,1.0,0 -27770064,"Counter-Strike Source",purchase,1.0,0 -27770064,"Counter-Strike Source",play,7.9,0 -27770064,"Day of Defeat Source",purchase,1.0,0 -27770064,"Half-Life 2 Deathmatch",purchase,1.0,0 -27770064,"Half-Life 2 Lost Coast",purchase,1.0,0 -306636026,"East India Company Gold",purchase,1.0,0 -25827559,"Counter-Strike Source",purchase,1.0,0 -25827559,"Half-Life 2",purchase,1.0,0 -25827559,"Half-Life 2 Deathmatch",purchase,1.0,0 -25827559,"Half-Life 2 Lost Coast",purchase,1.0,0 -25827559,"Half-Life Source",purchase,1.0,0 -25827559,"Half-Life Deathmatch Source",purchase,1.0,0 -198398830,"Dota 2",purchase,1.0,0 -198398830,"Dota 2",play,23.0,0 -198398830,"Counter-Strike Global Offensive",purchase,1.0,0 -198398830,"Counter-Strike Global Offensive",play,1.0,0 -198398830,"Counter-Strike",purchase,1.0,0 -198398830,"Counter-Strike",play,0.4,0 -198398830,"Counter-Strike Condition Zero",purchase,1.0,0 -198398830,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -198398830,"Counter-Strike Source",purchase,1.0,0 -198398830,"Loadout",purchase,1.0,0 -198398830,"Warface",purchase,1.0,0 -281041560,"Dota 2",purchase,1.0,0 -281041560,"Dota 2",play,1.8,0 -186273988,"Unturned",purchase,1.0,0 -86612326,"Counter-Strike Global Offensive",purchase,1.0,0 -86612326,"Counter-Strike Global Offensive",play,405.0,0 -86612326,"Team Fortress 2",purchase,1.0,0 -86612326,"Team Fortress 2",play,164.0,0 -86612326,"Enclave",purchase,1.0,0 -86612326,"The Culling Of The Cows",purchase,1.0,0 -86612326,"Unturned",purchase,1.0,0 -46405162,"Total War ROME II - Emperor Edition",purchase,1.0,0 -46405162,"Total War ROME II - Emperor Edition",play,558.0,0 -46405162,"Empire Total War",purchase,1.0,0 -46405162,"Empire Total War",play,270.0,0 -46405162,"Napoleon Total War",purchase,1.0,0 -46405162,"Napoleon Total War",play,171.0,0 -46405162,"Total War SHOGUN 2",purchase,1.0,0 -46405162,"Total War SHOGUN 2",play,120.0,0 -46405162,"The Lord of the Rings War in the North",purchase,1.0,0 -46405162,"The Lord of the Rings War in the North",play,22.0,0 -46405162,"Total War ATTILA",purchase,1.0,0 -46405162,"Total War ATTILA",play,4.6,0 -46405162,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -79163006,"Total War SHOGUN 2",purchase,1.0,0 -79163006,"Total War SHOGUN 2",play,11.6,0 -174716026,"Total War ROME II - Emperor Edition",purchase,1.0,0 -174716026,"Total War ROME II - Emperor Edition",play,35.0,0 -122319388,"Dota 2",purchase,1.0,0 -122319388,"Dota 2",play,513.0,0 -122319388,"Quake Live",purchase,1.0,0 -122319388,"Quake Live",play,0.3,0 -122319388,"Archeblade",purchase,1.0,0 -122319388,"FreeStyle2 Street Basketball",purchase,1.0,0 -135338821,"Rocksmith",purchase,1.0,0 -135338821,"Rocksmith",play,1.6,0 -135338821,"Rocksmith 2014",purchase,1.0,0 -135338821,"Rocksmith 2014",play,1.1,0 -258381465,"Fishing Planet",purchase,1.0,0 -258381465,"Knights and Merchants",purchase,1.0,0 -189344955,"Unturned",purchase,1.0,0 -189344955,"Unturned",play,5.1,0 -169815221,"Dota 2",purchase,1.0,0 -169815221,"Dota 2",play,1.1,0 -165382705,"Dota 2",purchase,1.0,0 -165382705,"Dota 2",play,0.2,0 -226354893,"sZone-Online",purchase,1.0,0 -82385352,"Sid Meier's Civilization V",purchase,1.0,0 -82385352,"Sid Meier's Civilization V",play,185.0,0 -82385352,"The Talos Principle",purchase,1.0,0 -82385352,"The Talos Principle",play,70.0,0 -82385352,"Star Wars - Battlefront II",purchase,1.0,0 -82385352,"Star Wars - Battlefront II",play,48.0,0 -82385352,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -82385352,"Star Wars Jedi Knight Dark Forces II",play,29.0,0 -82385352,"Portal",purchase,1.0,0 -82385352,"Portal",play,25.0,0 -82385352,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -82385352,"Star Wars - Jedi Knight II Jedi Outcast",play,24.0,0 -82385352,"Star Wars Dark Forces",purchase,1.0,0 -82385352,"Star Wars Dark Forces",play,23.0,0 -82385352,"Portal 2",purchase,1.0,0 -82385352,"Portal 2",play,23.0,0 -82385352,"Need for Speed Hot Pursuit",purchase,1.0,0 -82385352,"Need for Speed Hot Pursuit",play,18.6,0 -82385352,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -82385352,"Star Wars Jedi Knight Jedi Academy",play,18.3,0 -82385352,"Half-Life",purchase,1.0,0 -82385352,"Half-Life",play,16.1,0 -82385352,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -82385352,"Star Wars - Jedi Knight Mysteries of the Sith",play,14.8,0 -82385352,"Grim Fandango Remastered",purchase,1.0,0 -82385352,"Grim Fandango Remastered",play,13.2,0 -82385352,"Batman Arkham Origins",purchase,1.0,0 -82385352,"Batman Arkham Origins",play,12.7,0 -82385352,"Star Wars Republic Commando",purchase,1.0,0 -82385352,"Star Wars Republic Commando",play,12.3,0 -82385352,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -82385352,"Batman Arkham Origins Blackgate - Deluxe Edition",play,12.0,0 -82385352,"To the Moon",purchase,1.0,0 -82385352,"To the Moon",play,11.1,0 -82385352,"Star Wars Starfighter",purchase,1.0,0 -82385352,"Star Wars Starfighter",play,7.9,0 -82385352,"Half-Life Opposing Force",purchase,1.0,0 -82385352,"Half-Life Opposing Force",play,6.6,0 -82385352,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -82385352,"Burnout Paradise The Ultimate Box",play,6.3,0 -82385352,"FEZ",purchase,1.0,0 -82385352,"FEZ",play,5.5,0 -82385352,"The Stanley Parable",purchase,1.0,0 -82385352,"The Stanley Parable",play,4.8,0 -82385352,"Valkyria Chronicles",purchase,1.0,0 -82385352,"Valkyria Chronicles",play,3.0,0 -82385352,"Half-Life Blue Shift",purchase,1.0,0 -82385352,"Half-Life Blue Shift",play,2.9,0 -82385352,"Braid",purchase,1.0,0 -82385352,"Braid",play,2.6,0 -82385352,"Terraria",purchase,1.0,0 -82385352,"Terraria",play,1.5,0 -82385352,"A Bird Story",purchase,1.0,0 -82385352,"A Bird Story",play,1.2,0 -82385352,"Tomb Raider Legend",purchase,1.0,0 -82385352,"Tomb Raider Legend",play,0.8,0 -82385352,"Toki Tori",purchase,1.0,0 -82385352,"Toki Tori",play,0.4,0 -82385352,"Batman Arkham Origins - Initiation",purchase,1.0,0 -82385352,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -82385352,"Team Fortress Classic",purchase,1.0,0 -82385352,"The Talos Principle Road To Gehenna",purchase,1.0,0 -82385352,"Tomb Raider Anniversary",purchase,1.0,0 -82385352,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -82385352,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -82385352,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -82385352,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -282502466,"Dota 2",purchase,1.0,0 -282502466,"Dota 2",play,10.0,0 -186452037,"Planetary Annihilation",purchase,1.0,0 -186452037,"Planetary Annihilation",play,114.0,0 -186452037,"Planetary Annihilation TITANS",purchase,1.0,0 -186452037,"Planetary Annihilation TITANS",play,7.6,0 -181638799,"Dota 2",purchase,1.0,0 -181638799,"Dota 2",play,839.0,0 -181638799,"Warframe",purchase,1.0,0 -181638799,"Warframe",play,17.0,0 -181638799,"PAYDAY The Heist",purchase,1.0,0 -181638799,"PAYDAY The Heist",play,2.1,0 -181638799,"Team Fortress 2",purchase,1.0,0 -181638799,"Team Fortress 2",play,0.4,0 -181638799,"GunZ 2 The Second Duel",purchase,1.0,0 -181638799,"GunZ 2 The Second Duel",play,0.3,0 -181638799,"Crash Time II",purchase,1.0,0 -181638799,"Loadout",purchase,1.0,0 -181638799,"RaiderZ",purchase,1.0,0 -181638799,"Aura Kingdom",purchase,1.0,0 -181638799,"Dead Island Epidemic",purchase,1.0,0 -181638799,"FreeStyle2 Street Basketball",purchase,1.0,0 -181638799,"Ragnarok Online 2",purchase,1.0,0 -181638799,"Spiral Knights",purchase,1.0,0 -181638799,"TERA",purchase,1.0,0 -181638799,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -181638799,"Unturned",purchase,1.0,0 -181638799,"WTFast Gamers Private Network (GPN)",purchase,1.0,0 -247741393,"Dota 2",purchase,1.0,0 -247741393,"Dota 2",play,67.0,0 -32415191,"Counter-Strike Condition Zero",purchase,1.0,0 -32415191,"Counter-Strike Condition Zero",play,0.4,0 -32415191,"Counter-Strike",purchase,1.0,0 -32415191,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -32415191,"Day of Defeat",purchase,1.0,0 -32415191,"Deathmatch Classic",purchase,1.0,0 -32415191,"Ricochet",purchase,1.0,0 -92250668,"Sid Meier's Civilization V",purchase,1.0,0 -92250668,"Sid Meier's Civilization V",play,16.3,0 -92250668,"The Elder Scrolls V Skyrim",purchase,1.0,0 -92250668,"The Elder Scrolls V Skyrim",play,12.6,0 -92250668,"Age of Empires III Complete Collection",purchase,1.0,0 -92250668,"Age of Empires III Complete Collection",play,0.1,0 -251285557,"Counter-Strike Nexon Zombies",purchase,1.0,0 -251285557,"Counter-Strike Nexon Zombies",play,0.7,0 -251285557,"Cry of Fear",purchase,1.0,0 -143669519,"Dota 2",purchase,1.0,0 -143669519,"Dota 2",play,0.4,0 -124400480,"Counter-Strike Global Offensive",purchase,1.0,0 -124400480,"Counter-Strike Global Offensive",play,606.0,0 -124400480,"Rust",purchase,1.0,0 -124400480,"Rust",play,144.0,0 -124400480,"Garry's Mod",purchase,1.0,0 -124400480,"Garry's Mod",play,126.0,0 -124400480,"The Elder Scrolls V Skyrim",purchase,1.0,0 -124400480,"The Elder Scrolls V Skyrim",play,81.0,0 -124400480,"DayZ",purchase,1.0,0 -124400480,"DayZ",play,18.0,0 -124400480,"DARK SOULS II",purchase,1.0,0 -124400480,"DARK SOULS II",play,16.0,0 -124400480,"Outlast",purchase,1.0,0 -124400480,"Outlast",play,10.9,0 -124400480,"The Forest",purchase,1.0,0 -124400480,"The Forest",play,10.7,0 -124400480,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -124400480,"Call of Duty Black Ops II - Multiplayer",play,9.6,0 -124400480,"The Elder Scrolls III Morrowind",purchase,1.0,0 -124400480,"The Elder Scrolls III Morrowind",play,5.0,0 -124400480,"Killing Floor",purchase,1.0,0 -124400480,"Killing Floor",play,4.4,0 -124400480,"SMITE",purchase,1.0,0 -124400480,"SMITE",play,2.7,0 -124400480,"Counter-Strike Source",purchase,1.0,0 -124400480,"Counter-Strike Source",play,2.2,0 -124400480,"Team Fortress 2",purchase,1.0,0 -124400480,"Team Fortress 2",play,1.1,0 -124400480,"Star Wars - Battlefront II",purchase,1.0,0 -124400480,"Star Wars - Battlefront II",play,1.0,0 -124400480,"GameMaker Studio",purchase,1.0,0 -124400480,"GameMaker Studio",play,0.4,0 -124400480,"Call of Duty Black Ops II",purchase,1.0,0 -124400480,"Call of Duty Black Ops II",play,0.2,0 -124400480,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -124400480,"Call of Duty Black Ops II - Zombies",play,0.2,0 -124400480,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -124400480,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -124400480,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -124400480,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -278136010,"Dota 2",purchase,1.0,0 -278136010,"Dota 2",play,0.4,0 -278136010,"8BitMMO",purchase,1.0,0 -278136010,"AirMech",purchase,1.0,0 -278136010,"Magicka Wizard Wars",purchase,1.0,0 -278136010,"Warframe",purchase,1.0,0 -145890520,"Teenage Mutant Ninja Turtles Out of the Shadows",purchase,1.0,0 -145890520,"Teenage Mutant Ninja Turtles Out of the Shadows",play,5.1,0 -239511574,"Farming Simulator 15",purchase,1.0,0 -239511574,"Farming Simulator 15",play,33.0,0 -239511574,"Enforcer Police Crime Action",purchase,1.0,0 -239511574,"Enforcer Police Crime Action",play,15.0,0 -239511574,"Broforce",purchase,1.0,0 -239511574,"Broforce",play,8.8,0 -239511574,"Garry's Mod",purchase,1.0,0 -239511574,"Garry's Mod",play,2.3,0 -239511574,"60 Seconds!",purchase,1.0,0 -239511574,"60 Seconds!",play,1.9,0 -239511574,"Elite Dangerous",purchase,1.0,0 -239511574,"Elite Dangerous",play,0.5,0 -239511574,"Robocraft",purchase,1.0,0 -239511574,"Robocraft",play,0.2,0 -239511574,"Basement",purchase,1.0,0 -239511574,"UberStrike",purchase,1.0,0 -75515543,"Football Manager 2011",purchase,1.0,0 -115249917,"Age of Chivalry",purchase,1.0,0 -115249917,"Age of Chivalry",play,0.5,0 -185435886,"8BitMMO",purchase,1.0,0 -185435886,"8BitMMO",play,0.4,0 -185435886,"Floating Point",purchase,1.0,0 -185435886,"Floating Point",play,0.3,0 -185435886,"Unturned",purchase,1.0,0 -305037794,"Dota 2",purchase,1.0,0 -305037794,"Dota 2",play,11.2,0 -188266554,"Garry's Mod",purchase,1.0,0 -188266554,"Garry's Mod",play,15.3,0 -188266554,"Fistful of Frags",purchase,1.0,0 -188266554,"Fistful of Frags",play,14.9,0 -188266554,"No More Room in Hell",purchase,1.0,0 -188266554,"No More Room in Hell",play,10.7,0 -188266554,"Spiral Knights",purchase,1.0,0 -188266554,"Spiral Knights",play,2.3,0 -188266554,"Ascend Hand of Kul",purchase,1.0,0 -188266554,"Ascend Hand of Kul",play,0.3,0 -188266554,"Toribash",purchase,1.0,0 -188266554,"Toribash",play,0.3,0 -188266554,"Cry of Fear",purchase,1.0,0 -188266554,"Cry of Fear",play,0.2,0 -188266554,"Unturned",purchase,1.0,0 -188266554,"Dungeons & Dragons Online",purchase,1.0,0 -188266554,"America's Army 3",purchase,1.0,0 -188266554,"Defiance",purchase,1.0,0 -188266554,"Haunted Memories",purchase,1.0,0 -188266554,"sZone-Online",purchase,1.0,0 -125249652,"Football Manager 2013",purchase,1.0,0 -125249652,"Football Manager 2013",play,0.6,0 -20557028,"Counter-Strike Condition Zero",purchase,1.0,0 -20557028,"Counter-Strike Condition Zero",play,0.3,0 -20557028,"Portal",purchase,1.0,0 -20557028,"Portal",play,0.1,0 -20557028,"Counter-Strike",purchase,1.0,0 -20557028,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -105934631,"Team Fortress 2",purchase,1.0,0 -105934631,"Team Fortress 2",play,10.3,0 -303467308,"Assetto Corsa",purchase,1.0,0 -303467308,"Assetto Corsa",play,2.5,0 -303467308,"Car Mechanic Simulator 2015",purchase,1.0,0 -303467308,"Car Mechanic Simulator 2015",play,1.7,0 -303467308,"Assetto Corsa - Dream Pack 1",purchase,1.0,0 -303467308,"Car Mechanic Simulator 2015 - PickUp & SUV DLC",purchase,1.0,0 -303467308,"Car Mechanic Simulator 2015 - TraderPack",purchase,1.0,0 -303467308,"Car Mechanic Simulator 2015 - Visual Tuning",purchase,1.0,0 -303467308,"Car Mechanic Simulator 2015 - Youngtimer",purchase,1.0,0 -201275304,"Outland",purchase,1.0,0 -201275304,"Outland",play,1.5,0 -64778733,"Sid Meier's Civilization V",purchase,1.0,0 -64778733,"Sid Meier's Civilization V",play,327.0,0 -308851621,"Team Fortress 2",purchase,1.0,0 -308851621,"Team Fortress 2",play,36.0,0 -218448119,"Dota 2",purchase,1.0,0 -218448119,"Dota 2",play,2.9,0 -114912926,"Dota 2",purchase,1.0,0 -114912926,"Dota 2",play,1525.0,0 -114912926,"Free to Play",purchase,1.0,0 -114912926,"Free to Play",play,1.2,0 -114912926,"Team Fortress 2",purchase,1.0,0 -114912926,"Team Fortress 2",play,0.3,0 -114912926,"Sniper Elite V2",purchase,1.0,0 -114912926,"Sniper Elite V2",play,0.2,0 -114912926,"Neverwinter",purchase,1.0,0 -114912926,"Unturned",purchase,1.0,0 -114912926,"Warframe",purchase,1.0,0 -298071662,"Back to Dinosaur Island ",purchase,1.0,0 -298071662,"Back to Dinosaur Island ",play,0.2,0 -161408431,"Dota 2",purchase,1.0,0 -161408431,"Dota 2",play,4.6,0 -94751685,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -274624060,"Robocraft",purchase,1.0,0 -274624060,"Robocraft",play,1.8,0 -274624060,"UberStrike",purchase,1.0,0 -274624060,"UberStrike",play,0.4,0 -179560117,"Dota 2",purchase,1.0,0 -179560117,"Dota 2",play,0.4,0 -140492549,"Dota 2",purchase,1.0,0 -140492549,"Dota 2",play,147.0,0 -254565281,"Unturned",purchase,1.0,0 -254565281,"Unturned",play,0.2,0 -254565281,"Soccer Manager 2016",purchase,1.0,0 -115996656,"Counter-Strike Global Offensive",purchase,1.0,0 -115996656,"Counter-Strike Global Offensive",play,1073.0,0 -115996656,"Garry's Mod",purchase,1.0,0 -115996656,"Garry's Mod",play,181.0,0 -115996656,"Rust",purchase,1.0,0 -115996656,"Rust",play,161.0,0 -115996656,"Arma 3",purchase,1.0,0 -115996656,"Arma 3",play,150.0,0 -115996656,"DayZ",purchase,1.0,0 -115996656,"DayZ",play,112.0,0 -115996656,"H1Z1",purchase,1.0,0 -115996656,"H1Z1",play,44.0,0 -115996656,"Arma 2 Operation Arrowhead",purchase,1.0,0 -115996656,"Arma 2 Operation Arrowhead",play,39.0,0 -115996656,"PAYDAY 2",purchase,1.0,0 -115996656,"PAYDAY 2",play,28.0,0 -115996656,"Sid Meier's Civilization V",purchase,1.0,0 -115996656,"Sid Meier's Civilization V",play,27.0,0 -115996656,"Borderlands 2",purchase,1.0,0 -115996656,"Borderlands 2",play,23.0,0 -115996656,"The Elder Scrolls V Skyrim",purchase,1.0,0 -115996656,"The Elder Scrolls V Skyrim",play,19.8,0 -115996656,"SpeedRunners",purchase,1.0,0 -115996656,"SpeedRunners",play,18.9,0 -115996656,"Terraria",purchase,1.0,0 -115996656,"Terraria",play,18.6,0 -115996656,"Left 4 Dead 2",purchase,1.0,0 -115996656,"Left 4 Dead 2",play,16.2,0 -115996656,"Portal 2",purchase,1.0,0 -115996656,"Portal 2",play,16.1,0 -115996656,"The Walking Dead",purchase,1.0,0 -115996656,"The Walking Dead",play,11.4,0 -115996656,"Fallout New Vegas",purchase,1.0,0 -115996656,"Fallout New Vegas",play,10.8,0 -115996656,"Rocket League",purchase,1.0,0 -115996656,"Rocket League",play,8.6,0 -115996656,"Killing Floor",purchase,1.0,0 -115996656,"Killing Floor",play,7.3,0 -115996656,"Dirty Bomb",purchase,1.0,0 -115996656,"Dirty Bomb",play,6.2,0 -115996656,"PAC-MAN Championship Edition DX+",purchase,1.0,0 -115996656,"PAC-MAN Championship Edition DX+",play,4.7,0 -115996656,"Skullgirls",purchase,1.0,0 -115996656,"Skullgirls",play,4.3,0 -115996656,"Cannon Brawl",purchase,1.0,0 -115996656,"Cannon Brawl",play,3.5,0 -115996656,"Primal Carnage",purchase,1.0,0 -115996656,"Primal Carnage",play,3.4,0 -115996656,"BattleBlock Theater",purchase,1.0,0 -115996656,"BattleBlock Theater",play,3.1,0 -115996656,"PAYDAY The Heist",purchase,1.0,0 -115996656,"PAYDAY The Heist",play,3.0,0 -115996656,"The Walking Dead Season Two",purchase,1.0,0 -115996656,"The Walking Dead Season Two",play,2.7,0 -115996656,"Natural Selection 2",purchase,1.0,0 -115996656,"Natural Selection 2",play,2.5,0 -115996656,"100% Orange Juice",purchase,1.0,0 -115996656,"100% Orange Juice",play,2.5,0 -115996656,"Sniper Ghost Warrior 2",purchase,1.0,0 -115996656,"Sniper Ghost Warrior 2",play,2.5,0 -115996656,"Don't Starve Together Beta",purchase,1.0,0 -115996656,"Don't Starve Together Beta",play,2.4,0 -115996656,"The Ship",purchase,1.0,0 -115996656,"The Ship",play,2.3,0 -115996656,"No More Room in Hell",purchase,1.0,0 -115996656,"No More Room in Hell",play,2.1,0 -115996656,"Contagion",purchase,1.0,0 -115996656,"Contagion",play,2.0,0 -115996656,"Starbound",purchase,1.0,0 -115996656,"Starbound",play,1.9,0 -115996656,"DRAGON BALL XENOVERSE",purchase,1.0,0 -115996656,"DRAGON BALL XENOVERSE",play,1.8,0 -115996656,"Team Fortress 2",purchase,1.0,0 -115996656,"Team Fortress 2",play,1.7,0 -115996656,"Lethal League",purchase,1.0,0 -115996656,"Lethal League",play,1.4,0 -115996656,"Ravaged Zombie Apocalypse",purchase,1.0,0 -115996656,"Ravaged Zombie Apocalypse",play,1.4,0 -115996656,"Guns of Icarus Online",purchase,1.0,0 -115996656,"Guns of Icarus Online",play,1.3,0 -115996656,"Worms Revolution",purchase,1.0,0 -115996656,"Worms Revolution",play,1.3,0 -115996656,"Tabletop Simulator",purchase,1.0,0 -115996656,"Tabletop Simulator",play,1.3,0 -115996656,"Divekick",purchase,1.0,0 -115996656,"Divekick",play,1.2,0 -115996656,"The Forest",purchase,1.0,0 -115996656,"The Forest",play,1.2,0 -115996656,"Rock of Ages",purchase,1.0,0 -115996656,"Rock of Ages",play,1.0,0 -115996656,"Orcs Must Die! 2",purchase,1.0,0 -115996656,"Orcs Must Die! 2",play,1.0,0 -115996656,"Cry of Fear",purchase,1.0,0 -115996656,"Cry of Fear",play,0.9,0 -115996656,"Elsword",purchase,1.0,0 -115996656,"Elsword",play,0.8,0 -115996656,"Arma 2 DayZ Mod",purchase,1.0,0 -115996656,"Arma 2 DayZ Mod",play,0.8,0 -115996656,"Call of Duty Black Ops",purchase,1.0,0 -115996656,"Call of Duty Black Ops",play,0.7,0 -115996656,"Awesomenauts",purchase,1.0,0 -115996656,"Awesomenauts",play,0.5,0 -115996656,"Arma 2",purchase,1.0,0 -115996656,"Arma 2",play,0.3,0 -115996656,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -115996656,"Call of Duty Black Ops - Multiplayer",play,0.3,0 -115996656,"Dungeonland",purchase,1.0,0 -115996656,"Dungeonland",play,0.2,0 -115996656,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -115996656,"THE KING OF FIGHTERS XIII STEAM EDITION",play,0.1,0 -115996656,"Dead Island",purchase,1.0,0 -115996656,"Counter-Strike Nexon Zombies",purchase,1.0,0 -115996656,"Stronghold Kingdoms",purchase,1.0,0 -115996656,"Borderlands The Pre-Sequel",purchase,1.0,0 -115996656,"America's Army Proving Grounds",purchase,1.0,0 -115996656,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -115996656,"Arma 3 Helicopters",purchase,1.0,0 -115996656,"Arma 3 Karts",purchase,1.0,0 -115996656,"Arma 3 Zeus",purchase,1.0,0 -115996656,"Castle Crashers",purchase,1.0,0 -115996656,"Dead Island Epidemic",purchase,1.0,0 -115996656,"Don't Starve",purchase,1.0,0 -115996656,"Don't Starve Reign of Giants",purchase,1.0,0 -115996656,"Dungeonland - All access pass",purchase,1.0,0 -115996656,"God Mode",purchase,1.0,0 -115996656,"H1Z1 Test Server",purchase,1.0,0 -115996656,"Half-Life 2",purchase,1.0,0 -115996656,"Half-Life 2 Lost Coast",purchase,1.0,0 -115996656,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -115996656,"La Tale",purchase,1.0,0 -115996656,"Mass Effect",purchase,1.0,0 -115996656,"Mass Effect 2",purchase,1.0,0 -115996656,"Nidhogg",purchase,1.0,0 -115996656,"Papers, Please",purchase,1.0,0 -115996656,"PlanetSide 2",purchase,1.0,0 -115996656,"Realm of the Mad God",purchase,1.0,0 -115996656,"Skullgirls Endless Beta",purchase,1.0,0 -115996656,"Sniper Elite V2",purchase,1.0,0 -115996656,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -115996656,"Starbound - Unstable",purchase,1.0,0 -115996656,"The Ship Single Player",purchase,1.0,0 -115996656,"The Ship Tutorial",purchase,1.0,0 -115996656,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -115996656,"Unturned",purchase,1.0,0 -115996656,"Warframe",purchase,1.0,0 -115996656,"War Thunder",purchase,1.0,0 -190861612,"Dota 2",purchase,1.0,0 -190861612,"Dota 2",play,452.0,0 -36757524,"Half-Life 2",purchase,1.0,0 -36757524,"Half-Life 2",play,25.0,0 -36757524,"Half-Life 2 Deathmatch",purchase,1.0,0 -36757524,"Half-Life 2 Lost Coast",purchase,1.0,0 -224586627,"Dota 2",purchase,1.0,0 -224586627,"Dota 2",play,18.4,0 -176810372,"War Thunder",purchase,1.0,0 -176810372,"War Thunder",play,138.0,0 -176810372,"Team Fortress 2",purchase,1.0,0 -176810372,"Team Fortress 2",play,3.1,0 -176810372,"Arma Cold War Assault",purchase,1.0,0 -176810372,"Arma Cold War Assault",play,0.4,0 -251656719,"Echo of Soul",purchase,1.0,0 -251656719,"Karos Returns",purchase,1.0,0 -63895034,"Mount & Blade Warband",purchase,1.0,0 -63895034,"Mount & Blade Warband",play,1813.0,0 -63895034,"Aliens vs. Predator",purchase,1.0,0 -63895034,"Aliens vs. Predator",play,24.0,0 -63895034,"Left 4 Dead 2",purchase,1.0,0 -63895034,"Left 4 Dead 2",play,4.9,0 -63895034,"Team Fortress 2",purchase,1.0,0 -63895034,"Team Fortress 2",play,2.9,0 -63895034,"Dota 2",purchase,1.0,0 -63895034,"Dota 2",play,1.7,0 -63895034,"Deus Ex Human Revolution",purchase,1.0,0 -63895034,"Deus Ex Human Revolution",play,1.4,0 -63895034,"Chivalry Medieval Warfare",purchase,1.0,0 -63895034,"Chivalry Medieval Warfare",play,1.3,0 -63895034,"Robocraft",purchase,1.0,0 -63895034,"Robocraft",play,0.9,0 -63895034,"Mount & Blade With Fire and Sword",purchase,1.0,0 -63895034,"Mount & Blade With Fire and Sword",play,0.5,0 -63895034,"DogFighter",purchase,1.0,0 -63895034,"DogFighter",play,0.5,0 -63895034,"Garry's Mod",purchase,1.0,0 -63895034,"Garry's Mod",play,0.3,0 -63895034,"Patch testing for Chivalry",purchase,1.0,0 -88152309,"Sid Meier's Civilization V",purchase,1.0,0 -88152309,"Sid Meier's Civilization V",play,467.0,0 -88152309,"Fallout New Vegas",purchase,1.0,0 -88152309,"Fallout New Vegas",play,413.0,0 -88152309,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -88152309,"Call of Duty Black Ops - Multiplayer",play,35.0,0 -88152309,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -88152309,"Call of Duty Black Ops II - Multiplayer",play,7.6,0 -88152309,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -88152309,"Call of Duty Modern Warfare 3 - Multiplayer",play,1.4,0 -88152309,"Counter-Strike Global Offensive",purchase,1.0,0 -88152309,"Counter-Strike Global Offensive",play,1.2,0 -88152309,"Call of Duty Modern Warfare 3",purchase,1.0,0 -88152309,"Call of Duty Modern Warfare 3",play,0.9,0 -88152309,"The Walking Dead",purchase,1.0,0 -88152309,"The Walking Dead",play,0.4,0 -88152309,"Call of Duty Black Ops II",purchase,1.0,0 -88152309,"Call of Duty Black Ops",purchase,1.0,0 -88152309,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -88152309,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -88152309,"Fallout New Vegas Dead Money",purchase,1.0,0 -164663996,"Football Manager 2014",purchase,1.0,0 -164663996,"Football Manager 2014",play,993.0,0 -164663996,"Football Manager 2016 Demo",purchase,1.0,0 -164663996,"Football Manager 2016 Demo",play,13.8,0 -164663996,"Pro Rugby Manager 2015",purchase,1.0,0 -164663996,"Pro Rugby Manager 2015",play,3.8,0 -78765966,"Terraria",purchase,1.0,0 -78765966,"Terraria",play,6.7,0 -78765966,"Super Meat Boy",purchase,1.0,0 -78765966,"Super Meat Boy",play,0.6,0 -23241240,"Counter-Strike Source",purchase,1.0,0 -23241240,"Counter-Strike Source",play,167.0,0 -23241240,"ToCA Race Driver 3",purchase,1.0,0 -23241240,"ToCA Race Driver 3",play,4.7,0 -23241240,"Day of Defeat Source",purchase,1.0,0 -23241240,"Half-Life 2 Deathmatch",purchase,1.0,0 -23241240,"Half-Life 2 Lost Coast",purchase,1.0,0 -300305800,"Dirty Bomb",purchase,1.0,0 -300305800,"Dirty Bomb",play,0.2,0 -298507313,"Team Fortress 2",purchase,1.0,0 -298507313,"Team Fortress 2",play,0.4,0 -166048025,"Sid Meier's Civilization IV",purchase,1.0,0 -166048025,"Sid Meier's Civilization IV",play,3.0,0 -166048025,"Sid Meier's Railroads!",purchase,1.0,0 -166048025,"Sid Meier's Railroads!",play,2.8,0 -166048025,"Sid Meier's Civilization III Complete",purchase,1.0,0 -166048025,"Sid Meier's Civilization III Complete",play,0.2,0 -166048025,"Sid Meier's Civilization IV",purchase,1.0,0 -166048025,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -166048025,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -166048025,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -166048025,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -166048025,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -166048025,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -208140106,"World of Guns Gun Disassembly",purchase,1.0,0 -208140106,"World of Guns Gun Disassembly",play,0.8,0 -249643192,"Garry's Mod",purchase,1.0,0 -249643192,"Garry's Mod",play,234.0,0 -249643192,"Counter-Strike Global Offensive",purchase,1.0,0 -249643192,"Counter-Strike Global Offensive",play,14.5,0 -249643192,"War Thunder",purchase,1.0,0 -249643192,"War Thunder",play,1.5,0 -249643192,"Time Clickers",purchase,1.0,0 -249643192,"Block N Load",purchase,1.0,0 -293714386,"Dota 2",purchase,1.0,0 -293714386,"Dota 2",play,4.4,0 -92010366,"The Elder Scrolls V Skyrim",purchase,1.0,0 -92010366,"The Elder Scrolls V Skyrim",play,52.0,0 -92010366,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -92010366,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -92010366,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -250414887,"Counter-Strike Global Offensive",purchase,1.0,0 -250414887,"Counter-Strike Global Offensive",play,46.0,0 -250414887,"PAYDAY 2",purchase,1.0,0 -250414887,"PAYDAY 2",play,1.7,0 -250414887,"Dota 2",purchase,1.0,0 -250414887,"Dota 2",play,0.6,0 -176453461,"Dota 2",purchase,1.0,0 -176453461,"Dota 2",play,170.0,0 -197057442,"Unturned",purchase,1.0,0 -197057442,"Unturned",play,0.2,0 -197057442,"Path of Exile",purchase,1.0,0 -205549354,"Dota 2",purchase,1.0,0 -205549354,"Dota 2",play,10.7,0 -205549354,"how do you Do It?",purchase,1.0,0 -205549354,"how do you Do It?",play,0.4,0 -263454788,"Dota 2",purchase,1.0,0 -263454788,"Dota 2",play,2.1,0 -282896672,"The Sims(TM) 3",purchase,1.0,0 -282896672,"The Sims(TM) 3",play,478.0,0 -255892249,"Source Filmmaker",purchase,1.0,0 -255892249,"Source Filmmaker",play,2.4,0 -53324742,"Empire Total War",purchase,1.0,0 -53324742,"Empire Total War",play,5.2,0 -218608613,"Team Fortress 2",purchase,1.0,0 -218608613,"Team Fortress 2",play,3.5,0 -218608613,"Neverwinter",purchase,1.0,0 -218608613,"The Mighty Quest For Epic Loot",purchase,1.0,0 -153772705,"Dota 2",purchase,1.0,0 -153772705,"Dota 2",play,0.9,0 -97250159,"Empire Total War",purchase,1.0,0 -97250159,"Empire Total War",play,316.0,0 -204679729,"Counter-Strike Global Offensive",purchase,1.0,0 -204679729,"Counter-Strike Global Offensive",play,784.0,0 -204679729,"Rivals of Aether",purchase,1.0,0 -204679729,"Rivals of Aether",play,17.6,0 -204679729,"VVVVVV",purchase,1.0,0 -204679729,"VVVVVV",play,9.3,0 -204679729,"Heroes & Generals",purchase,1.0,0 -204679729,"Heroes & Generals",play,1.8,0 -204679729,"Unturned",purchase,1.0,0 -204679729,"Unturned",play,1.5,0 -204679729,"Robocraft",purchase,1.0,0 -204679729,"Robocraft",play,0.1,0 -83746733,"Sid Meier's Civilization V",purchase,1.0,0 -83746733,"Sid Meier's Civilization V",play,378.0,0 -83746733,"Team Fortress 2",purchase,1.0,0 -83746733,"Team Fortress 2",play,148.0,0 -83746733,"Universe Sandbox",purchase,1.0,0 -83746733,"Universe Sandbox",play,20.0,0 -83746733,"Battlefield Bad Company 2",purchase,1.0,0 -83746733,"Battlefield Bad Company 2",play,18.4,0 -83746733,"Star Wars - Battlefront II",purchase,1.0,0 -83746733,"Star Wars - Battlefront II",play,11.3,0 -83746733,"Portal",purchase,1.0,0 -83746733,"Portal",play,9.3,0 -83746733,"Portal 2",purchase,1.0,0 -83746733,"Portal 2",play,7.1,0 -83746733,"Fallout New Vegas",purchase,1.0,0 -83746733,"Fallout New Vegas",play,6.2,0 -83746733,"Hitman Blood Money",purchase,1.0,0 -83746733,"Hitman Blood Money",play,3.8,0 -83746733,"L.A. Noire",purchase,1.0,0 -83746733,"L.A. Noire",play,3.4,0 -83746733,"The Witcher Enhanced Edition",purchase,1.0,0 -83746733,"The Witcher Enhanced Edition",play,2.7,0 -83746733,"Star Wars Republic Commando",purchase,1.0,0 -83746733,"Star Wars Republic Commando",play,1.9,0 -83746733,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -83746733,"Batman Arkham Asylum GOTY Edition",play,1.4,0 -83746733,"Medieval II Total War Kingdoms",purchase,1.0,0 -83746733,"Medieval II Total War Kingdoms",play,0.5,0 -83746733,"Train Simulator",purchase,1.0,0 -83746733,"Train Simulator",play,0.4,0 -83746733,"AdVenture Capitalist",purchase,1.0,0 -83746733,"Alien Breed 2 Assault",purchase,1.0,0 -83746733,"Batman Arkham City GOTY",purchase,1.0,0 -83746733,"Batman Arkham City",purchase,1.0,0 -83746733,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -83746733,"Counter-Strike Global Offensive",purchase,1.0,0 -83746733,"Gotham City Impostors",purchase,1.0,0 -83746733,"Gotham City Impostors Free To Play",purchase,1.0,0 -83746733,"Medieval II Total War",purchase,1.0,0 -83746733,"Serious Sam 3 BFE",purchase,1.0,0 -48921893,"Empire Total War",purchase,1.0,0 -48921893,"Empire Total War",play,37.0,0 -48921893,"Napoleon Total War",purchase,1.0,0 -48921893,"Napoleon Total War",play,20.0,0 -26593066,"Counter-Strike Source",purchase,1.0,0 -26593066,"Day of Defeat Source",purchase,1.0,0 -26593066,"Half-Life 2 Deathmatch",purchase,1.0,0 -26593066,"Half-Life 2 Lost Coast",purchase,1.0,0 -40837142,"Portal 2",purchase,1.0,0 -40837142,"Portal 2",play,16.4,0 -40837142,"Worms Reloaded",purchase,1.0,0 -40837142,"Worms Reloaded",play,1.0,0 -40837142,"Bejeweled 3",purchase,1.0,0 -40837142,"Half-Life 2 Deathmatch",purchase,1.0,0 -40837142,"Half-Life 2 Lost Coast",purchase,1.0,0 -157047851,"Dota 2",purchase,1.0,0 -157047851,"Dota 2",play,9.9,0 -72471210,"Age of Conan Rise of the Godslayer",purchase,1.0,0 -72471210,"Warhammer Online Age of Reckoning",purchase,1.0,0 -107488920,"Team Fortress 2",purchase,1.0,0 -107488920,"Team Fortress 2",play,4.8,0 -139873696,"Grand Theft Auto V",purchase,1.0,0 -139873696,"Grand Theft Auto V",play,47.0,0 -139873696,"Dota 2",purchase,1.0,0 -139873696,"Dota 2",play,2.1,0 -139873696,"Race The Sun",purchase,1.0,0 -159865370,"Left 4 Dead 2",purchase,1.0,0 -159865370,"Left 4 Dead 2",play,18.1,0 -159865370,"Unturned",purchase,1.0,0 -159865370,"Unturned",play,0.6,0 -57424113,"Counter-Strike",purchase,1.0,0 -57424113,"Counter-Strike",play,372.0,0 -57424113,"Counter-Strike Source",purchase,1.0,0 -57424113,"Counter-Strike Source",play,111.0,0 -57424113,"Terraria",purchase,1.0,0 -57424113,"Terraria",play,91.0,0 -57424113,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -57424113,"Call of Duty Black Ops - Multiplayer",play,45.0,0 -57424113,"Call of Duty Black Ops",purchase,1.0,0 -57424113,"Call of Duty Black Ops",play,10.2,0 -57424113,"Counter-Strike Condition Zero",purchase,1.0,0 -57424113,"Counter-Strike Condition Zero",play,4.8,0 -57424113,"Team Fortress 2",purchase,1.0,0 -57424113,"Team Fortress 2",play,1.3,0 -57424113,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -57424113,"Loadout",purchase,1.0,0 -57424113,"PlanetSide 2",purchase,1.0,0 -186323628,"Dota 2",purchase,1.0,0 -186323628,"Dota 2",play,3.0,0 -186323628,"Team Fortress 2",purchase,1.0,0 -186323628,"Team Fortress 2",play,1.2,0 -186323628,"Robocraft",purchase,1.0,0 -186323628,"Robocraft",play,0.9,0 -186323628,"Unturned",purchase,1.0,0 -186323628,"Unturned",play,0.8,0 -186323628,"Heroes & Generals",purchase,1.0,0 -186323628,"Heroes & Generals",play,0.6,0 -186323628,"Warframe",purchase,1.0,0 -132748085,"Counter-Strike Global Offensive",purchase,1.0,0 -132748085,"Counter-Strike Global Offensive",play,509.0,0 -132748085,"Team Fortress 2",purchase,1.0,0 -132748085,"Team Fortress 2",play,89.0,0 -132748085,"War Thunder",purchase,1.0,0 -132748085,"War Thunder",play,54.0,0 -132748085,"The Elder Scrolls V Skyrim",purchase,1.0,0 -132748085,"The Elder Scrolls V Skyrim",play,51.0,0 -132748085,"Euro Truck Simulator 2",purchase,1.0,0 -132748085,"Euro Truck Simulator 2",play,41.0,0 -132748085,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -132748085,"Call of Duty Black Ops II - Multiplayer",play,34.0,0 -132748085,"Loadout",purchase,1.0,0 -132748085,"Loadout",play,32.0,0 -132748085,"Left 4 Dead 2",purchase,1.0,0 -132748085,"Left 4 Dead 2",play,21.0,0 -132748085,"The Binding of Isaac",purchase,1.0,0 -132748085,"The Binding of Isaac",play,10.2,0 -132748085,"Gotham City Impostors Free To Play",purchase,1.0,0 -132748085,"Gotham City Impostors Free To Play",play,10.0,0 -132748085,"Garry's Mod",purchase,1.0,0 -132748085,"Garry's Mod",play,9.8,0 -132748085,"DiRT Showdown",purchase,1.0,0 -132748085,"DiRT Showdown",play,9.2,0 -132748085,"Dota 2",purchase,1.0,0 -132748085,"Dota 2",play,9.2,0 -132748085,"Brawlhalla",purchase,1.0,0 -132748085,"Brawlhalla",play,8.8,0 -132748085,"The Ship",purchase,1.0,0 -132748085,"The Ship",play,8.7,0 -132748085,"Dungeon Defenders",purchase,1.0,0 -132748085,"Dungeon Defenders",play,7.9,0 -132748085,"Call of Duty Black Ops II",purchase,1.0,0 -132748085,"Call of Duty Black Ops II",play,7.7,0 -132748085,"Arma 2 Operation Arrowhead",purchase,1.0,0 -132748085,"Arma 2 Operation Arrowhead",play,7.3,0 -132748085,"No More Room in Hell",purchase,1.0,0 -132748085,"No More Room in Hell",play,5.8,0 -132748085,"Transformice",purchase,1.0,0 -132748085,"Transformice",play,5.7,0 -132748085,"Clicker Heroes",purchase,1.0,0 -132748085,"Clicker Heroes",play,5.4,0 -132748085,"SMITE",purchase,1.0,0 -132748085,"SMITE",play,4.5,0 -132748085,"Fistful of Frags",purchase,1.0,0 -132748085,"Fistful of Frags",play,4.3,0 -132748085,"Borderlands 2",purchase,1.0,0 -132748085,"Borderlands 2",play,3.1,0 -132748085,"F.E.A.R. Online",purchase,1.0,0 -132748085,"F.E.A.R. Online",play,3.1,0 -132748085,"Red Crucible Firestorm",purchase,1.0,0 -132748085,"Red Crucible Firestorm",play,3.0,0 -132748085,"Dino D-Day",purchase,1.0,0 -132748085,"Dino D-Day",play,2.5,0 -132748085,"Frankenstein Master of Death",purchase,1.0,0 -132748085,"Frankenstein Master of Death",play,2.4,0 -132748085,"Star Conflict",purchase,1.0,0 -132748085,"Star Conflict",play,2.2,0 -132748085,"Orcs Must Die!",purchase,1.0,0 -132748085,"Orcs Must Die!",play,2.2,0 -132748085,"Pid ",purchase,1.0,0 -132748085,"Pid ",play,1.7,0 -132748085,"Metro 2033",purchase,1.0,0 -132748085,"Metro 2033",play,1.6,0 -132748085,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -132748085,"Rising Storm/Red Orchestra 2 Multiplayer",play,1.5,0 -132748085,"Robocraft",purchase,1.0,0 -132748085,"Robocraft",play,1.5,0 -132748085,"Dead Island Epidemic",purchase,1.0,0 -132748085,"Dead Island Epidemic",play,1.1,0 -132748085,"RADical ROACH Deluxe Edition",purchase,1.0,0 -132748085,"RADical ROACH Deluxe Edition",play,1.1,0 -132748085,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -132748085,"Call of Duty Black Ops II - Zombies",play,1.0,0 -132748085,"Magicka Wizard Wars",purchase,1.0,0 -132748085,"Magicka Wizard Wars",play,0.9,0 -132748085,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -132748085,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.8,0 -132748085,"Trove",purchase,1.0,0 -132748085,"Trove",play,0.8,0 -132748085,"RACE 07",purchase,1.0,0 -132748085,"RACE 07",play,0.8,0 -132748085,"Rock of Ages",purchase,1.0,0 -132748085,"Rock of Ages",play,0.7,0 -132748085,"Nosgoth",purchase,1.0,0 -132748085,"Nosgoth",play,0.7,0 -132748085,"Loadout Campaign Beta",purchase,1.0,0 -132748085,"Loadout Campaign Beta",play,0.6,0 -132748085,"FreeStyle2 Street Basketball",purchase,1.0,0 -132748085,"FreeStyle2 Street Basketball",play,0.6,0 -132748085,"East India Company Gold",purchase,1.0,0 -132748085,"East India Company Gold",play,0.5,0 -132748085,"PAYDAY The Heist",purchase,1.0,0 -132748085,"PAYDAY The Heist",play,0.5,0 -132748085,"Amnesia The Dark Descent",purchase,1.0,0 -132748085,"Amnesia The Dark Descent",play,0.5,0 -132748085,"UberStrike",purchase,1.0,0 -132748085,"UberStrike",play,0.4,0 -132748085,"Mount & Blade",purchase,1.0,0 -132748085,"Mount & Blade",play,0.4,0 -132748085,"theHunter",purchase,1.0,0 -132748085,"theHunter",play,0.4,0 -132748085,"Warface",purchase,1.0,0 -132748085,"Warface",play,0.3,0 -132748085,"Really Big Sky",purchase,1.0,0 -132748085,"Really Big Sky",play,0.3,0 -132748085,"R.O.O.T.S",purchase,1.0,0 -132748085,"R.O.O.T.S",play,0.3,0 -132748085,"Gun Monkeys",purchase,1.0,0 -132748085,"Gun Monkeys",play,0.3,0 -132748085,"Chains",purchase,1.0,0 -132748085,"Chains",play,0.3,0 -132748085,"Sniper Elite V2",purchase,1.0,0 -132748085,"Sniper Elite V2",play,0.3,0 -132748085,"Unturned",purchase,1.0,0 -132748085,"Unturned",play,0.3,0 -132748085,"Hacker Evolution",purchase,1.0,0 -132748085,"Hacker Evolution",play,0.3,0 -132748085,"Lucius",purchase,1.0,0 -132748085,"Lucius",play,0.2,0 -132748085,"Fishing Planet",purchase,1.0,0 -132748085,"Fishing Planet",play,0.2,0 -132748085,"Polarity",purchase,1.0,0 -132748085,"Polarity",play,0.2,0 -132748085,"The Ship Tutorial",purchase,1.0,0 -132748085,"The Ship Tutorial",play,0.2,0 -132748085,"Axis Game Factory's AGFPRO 3.0",purchase,1.0,0 -132748085,"Axis Game Factory's AGFPRO 3.0",play,0.1,0 -132748085,"Nether",purchase,1.0,0 -132748085,"Nether",play,0.1,0 -132748085,"WARMODE",purchase,1.0,0 -132748085,"The Way of Life Free Edition",purchase,1.0,0 -132748085,"Quake Live",purchase,1.0,0 -132748085,"SpaceChem",purchase,1.0,0 -132748085,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -132748085,"Heroes & Generals",purchase,1.0,0 -132748085,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -132748085,"Storm in a Teacup",purchase,1.0,0 -132748085,"Uncrowded",purchase,1.0,0 -132748085,"GTR Evolution",purchase,1.0,0 -132748085,"8BitBoy",purchase,1.0,0 -132748085,"Afterfall InSanity Extended Edition",purchase,1.0,0 -132748085,"Arma 2 Free",purchase,1.0,0 -132748085,"Biology Battle",purchase,1.0,0 -132748085,"Blacklight Retribution",purchase,1.0,0 -132748085,"Blood of Old",purchase,1.0,0 -132748085,"Bloop",purchase,1.0,0 -132748085,"DCS World",purchase,1.0,0 -132748085,"Dirty Bomb",purchase,1.0,0 -132748085,"Final Dusk",purchase,1.0,0 -132748085,"Pool Nation FX",purchase,1.0,0 -132748085,"RaceRoom Racing Experience ",purchase,1.0,0 -132748085,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -132748085,"RIFT",purchase,1.0,0 -132748085,"Streets of Chaos",purchase,1.0,0 -132748085,"The Ship Single Player",purchase,1.0,0 -132748085,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -132748085,"Uriel's Chasm",purchase,1.0,0 -192170147,"Reign Of Kings",purchase,1.0,0 -192170147,"Reign Of Kings",play,303.0,0 -192170147,"Counter-Strike Source",purchase,1.0,0 -192170147,"Counter-Strike Source",play,96.0,0 -192170147,"L.A. Noire",purchase,1.0,0 -192170147,"L.A. Noire",play,61.0,0 -192170147,"Counter-Strike Global Offensive",purchase,1.0,0 -192170147,"Counter-Strike Global Offensive",play,57.0,0 -192170147,"Rust",purchase,1.0,0 -192170147,"Rust",play,41.0,0 -192170147,"Chivalry Medieval Warfare",purchase,1.0,0 -192170147,"Chivalry Medieval Warfare",play,22.0,0 -192170147,"Grand Theft Auto V",purchase,1.0,0 -192170147,"Grand Theft Auto V",play,21.0,0 -192170147,"Prison Architect",purchase,1.0,0 -192170147,"Prison Architect",play,15.7,0 -192170147,"Assassins Creed Unity",purchase,1.0,0 -192170147,"Assassins Creed Unity",play,14.5,0 -192170147,"The Forest",purchase,1.0,0 -192170147,"The Forest",play,13.9,0 -192170147,"Unturned",purchase,1.0,0 -192170147,"Unturned",play,1.2,0 -192170147,"ARK Survival Evolved",purchase,1.0,0 -192170147,"ARK Survival Evolved",play,0.8,0 -192170147,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -192170147,"Kane & Lynch 2 Dog Days",play,0.6,0 -192170147,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -192170147,"Unreal Tournament 3 Black Edition",play,0.5,0 -192170147,"DayZ",purchase,1.0,0 -192170147,"DayZ",play,0.5,0 -192170147,"Viking Battle for Asgard",purchase,1.0,0 -192170147,"Patch testing for Chivalry",purchase,1.0,0 -192170147,"Brick-Force",purchase,1.0,0 -192170147,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -192170147,"Company of Heroes 2",purchase,1.0,0 -192170147,"Counter-Strike",purchase,1.0,0 -192170147,"Counter-Strike Condition Zero",purchase,1.0,0 -192170147,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -192170147,"Counter-Strike Nexon Zombies",purchase,1.0,0 -192170147,"Crazy Taxi",purchase,1.0,0 -192170147,"Darwinia",purchase,1.0,0 -192170147,"Day of Defeat",purchase,1.0,0 -192170147,"Day of Defeat Source",purchase,1.0,0 -192170147,"Deathmatch Classic",purchase,1.0,0 -192170147,"DEFCON",purchase,1.0,0 -192170147,"E.Y.E Divine Cybermancy",purchase,1.0,0 -192170147,"Empire Total War",purchase,1.0,0 -192170147,"GEARCRACK Arena",purchase,1.0,0 -192170147,"Half-Life",purchase,1.0,0 -192170147,"Half-Life 2",purchase,1.0,0 -192170147,"Half-Life 2 Deathmatch",purchase,1.0,0 -192170147,"Half-Life 2 Episode One",purchase,1.0,0 -192170147,"Half-Life 2 Episode Two",purchase,1.0,0 -192170147,"Half-Life 2 Lost Coast",purchase,1.0,0 -192170147,"Half-Life Blue Shift",purchase,1.0,0 -192170147,"Half-Life Opposing Force",purchase,1.0,0 -192170147,"Half-Life Source",purchase,1.0,0 -192170147,"Half-Life Deathmatch Source",purchase,1.0,0 -192170147,"Kane & Lynch Dead Men",purchase,1.0,0 -192170147,"Left 4 Dead",purchase,1.0,0 -192170147,"Left 4 Dead 2",purchase,1.0,0 -192170147,"Multiwinia",purchase,1.0,0 -192170147,"NiGHTS into Dreams...",purchase,1.0,0 -192170147,"ORION Prelude",purchase,1.0,0 -192170147,"Overcast - Walden and the Werewolf",purchase,1.0,0 -192170147,"Portal",purchase,1.0,0 -192170147,"Portal 2",purchase,1.0,0 -192170147,"Ricochet",purchase,1.0,0 -192170147,"SEGA Bass Fishing",purchase,1.0,0 -192170147,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -192170147,"Sonic Adventure DX",purchase,1.0,0 -192170147,"Sonic Generations",purchase,1.0,0 -192170147,"Space Channel 5 Part 2",purchase,1.0,0 -192170147,"Team Fortress Classic",purchase,1.0,0 -192170147,"Uplink",purchase,1.0,0 -192170147,"YOU DON'T KNOW JACK HEADRUSH",purchase,1.0,0 -192170147,"YOU DON'T KNOW JACK MOVIES",purchase,1.0,0 -192170147,"YOU DON'T KNOW JACK SPORTS",purchase,1.0,0 -192170147,"YOU DON'T KNOW JACK TELEVISION",purchase,1.0,0 -192170147,"YOU DON'T KNOW JACK Vol. 1 XL",purchase,1.0,0 -192170147,"YOU DON'T KNOW JACK Vol. 2",purchase,1.0,0 -192170147,"YOU DON'T KNOW JACK Vol. 3",purchase,1.0,0 -192170147,"YOU DON'T KNOW JACK Vol. 4 The Ride",purchase,1.0,0 -146704328,"Dota 2",purchase,1.0,0 -146704328,"Dota 2",play,266.0,0 -86620865,"Sid Meier's Civilization V",purchase,1.0,0 -86620865,"Sid Meier's Civilization V",play,63.0,0 -113580708,"Torchlight II",purchase,1.0,0 -113580708,"Torchlight II",play,48.0,0 -113580708,"Brawlhalla",purchase,1.0,0 -113580708,"Brawlhalla",play,34.0,0 -113580708,"Borderlands",purchase,1.0,0 -113580708,"Borderlands",play,31.0,0 -113580708,"Garry's Mod",purchase,1.0,0 -113580708,"Garry's Mod",play,26.0,0 -113580708,"Borderlands 2",purchase,1.0,0 -113580708,"Borderlands 2",play,20.0,0 -113580708,"The Binding of Isaac",purchase,1.0,0 -113580708,"The Binding of Isaac",play,8.3,0 -113580708,"Super Meat Boy",purchase,1.0,0 -113580708,"Super Meat Boy",play,7.8,0 -113580708,"Unturned",purchase,1.0,0 -113580708,"Unturned",play,6.5,0 -113580708,"LIMBO",purchase,1.0,0 -113580708,"LIMBO",play,4.6,0 -113580708,"Counter-Strike Global Offensive",purchase,1.0,0 -113580708,"Counter-Strike Global Offensive",play,3.8,0 -113580708,"Archeblade",purchase,1.0,0 -113580708,"Archeblade",play,2.9,0 -113580708,"One Finger Death Punch",purchase,1.0,0 -113580708,"One Finger Death Punch",play,2.8,0 -113580708,"The Binding of Isaac Rebirth",purchase,1.0,0 -113580708,"The Binding of Isaac Rebirth",play,2.5,0 -113580708,"Tabletop Simulator",purchase,1.0,0 -113580708,"Tabletop Simulator",play,2.3,0 -113580708,"Spiral Knights",purchase,1.0,0 -113580708,"Spiral Knights",play,2.2,0 -113580708,"Banished",purchase,1.0,0 -113580708,"Banished",play,1.6,0 -113580708,"Guns of Icarus Online",purchase,1.0,0 -113580708,"Guns of Icarus Online",play,1.1,0 -113580708,"Rocket League",purchase,1.0,0 -113580708,"Rocket League",play,0.9,0 -113580708,"Left 4 Dead 2",purchase,1.0,0 -113580708,"Left 4 Dead 2",play,0.8,0 -113580708,"The Witcher Enhanced Edition",purchase,1.0,0 -113580708,"The Witcher Enhanced Edition",play,0.7,0 -113580708,"Besiege",purchase,1.0,0 -113580708,"Besiege",play,0.6,0 -113580708,"Dungeonland",purchase,1.0,0 -113580708,"Dungeonland",play,0.6,0 -113580708,"Deponia",purchase,1.0,0 -113580708,"Deponia",play,0.5,0 -113580708,"Trove",purchase,1.0,0 -113580708,"Trove",play,0.5,0 -113580708,"MapleStory",purchase,1.0,0 -113580708,"MapleStory",play,0.4,0 -113580708,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -113580708,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,0.3,0 -113580708,"PAYDAY 2",purchase,1.0,0 -113580708,"PAYDAY 2",play,0.3,0 -113580708,"Team Fortress 2",purchase,1.0,0 -113580708,"Team Fortress 2",play,0.2,0 -113580708,"Dota 2",purchase,1.0,0 -113580708,"Dota 2",play,0.1,0 -113580708,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -113580708,"Rising Storm/Red Orchestra 2 Multiplayer",play,0.1,0 -113580708,"Watch_Dogs",purchase,1.0,0 -113580708,"Marvel Heroes 2015",purchase,1.0,0 -113580708,"Pixel Survivors",purchase,1.0,0 -113580708,"Dwarfs F2P",purchase,1.0,0 -113580708,"Counter-Strike Source",purchase,1.0,0 -113580708,"Caster",purchase,1.0,0 -113580708,"Saints Row 2",purchase,1.0,0 -113580708,"Saints Row The Third",purchase,1.0,0 -113580708,"Saints Row IV",purchase,1.0,0 -113580708,"Terra Incognita ~ Chapter One The Descendant",purchase,1.0,0 -113580708,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -249779815,"Sid Meier's Civilization V",purchase,1.0,0 -249779815,"Sid Meier's Civilization V",play,10.9,0 -249779815,"Angvik",purchase,1.0,0 -249779815,"Angvik",play,0.3,0 -249779815,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -249779815,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -108435168,"DiRT 3",purchase,1.0,0 -108435168,"DiRT 3 Complete Edition",purchase,1.0,0 -108435168,"DiRT Showdown",purchase,1.0,0 -308406683,"Dota 2",purchase,1.0,0 -308406683,"Dota 2",play,3.6,0 -93350571,"Train Simulator",purchase,1.0,0 -93350571,"Train Simulator",play,28.0,0 -131912265,"Cubic Castles",purchase,1.0,0 -131912265,"Cubic Castles",play,4.6,0 -131912265,"Unturned",purchase,1.0,0 -131912265,"Unturned",play,0.5,0 -131912265,"Royal Quest",purchase,1.0,0 -131912265,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -120448027,"DiRT Showdown",purchase,1.0,0 -120448027,"DiRT Showdown",play,3.1,0 -281552962,"Team Fortress 2",purchase,1.0,0 -281552962,"Team Fortress 2",play,28.0,0 -21580713,"Counter-Strike",purchase,1.0,0 -21580713,"Counter-Strike",play,0.1,0 -21580713,"Counter-Strike Condition Zero",purchase,1.0,0 -21580713,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -21580713,"Day of Defeat",purchase,1.0,0 -21580713,"Deathmatch Classic",purchase,1.0,0 -21580713,"Ricochet",purchase,1.0,0 -256297825,"Dota 2",purchase,1.0,0 -256297825,"Dota 2",play,5.7,0 -31063925,"Breath of Death VII ",purchase,1.0,0 -31063925,"Cthulhu Saves the World ",purchase,1.0,0 -207510132,"Dota 2",purchase,1.0,0 -207510132,"Dota 2",play,14.6,0 -193029586,"Anarchy Arcade",purchase,1.0,0 -193029586,"Dizzel",purchase,1.0,0 -193029586,"Firefall",purchase,1.0,0 -193029586,"Realm of the Mad God",purchase,1.0,0 -99374297,"Dota 2",purchase,1.0,0 -99374297,"Dota 2",play,210.0,0 -99374297,"Team Fortress 2",purchase,1.0,0 -99374297,"Team Fortress 2",play,87.0,0 -99374297,"Robocraft",purchase,1.0,0 -99374297,"Robocraft",play,86.0,0 -99374297,"Loadout",purchase,1.0,0 -99374297,"Loadout",play,18.8,0 -99374297,"Clicker Heroes",purchase,1.0,0 -99374297,"Clicker Heroes",play,6.1,0 -99374297,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -99374297,"S.K.I.L.L. - Special Force 2",play,5.6,0 -99374297,"AirMech",purchase,1.0,0 -99374297,"AirMech",play,3.6,0 -99374297,"AdVenture Capitalist",purchase,1.0,0 -99374297,"AdVenture Capitalist",play,3.2,0 -99374297,"RIFT",purchase,1.0,0 -99374297,"RIFT",play,2.5,0 -99374297,"Magicka Wizard Wars",purchase,1.0,0 -99374297,"Magicka Wizard Wars",play,2.2,0 -99374297,"Galcon 2",purchase,1.0,0 -99374297,"Galcon 2",play,1.5,0 -99374297,"theHunter",purchase,1.0,0 -99374297,"theHunter",play,1.3,0 -99374297,"Stronghold Kingdoms",purchase,1.0,0 -99374297,"Stronghold Kingdoms",play,1.3,0 -99374297,"Path of Exile",purchase,1.0,0 -99374297,"Path of Exile",play,1.0,0 -99374297,"Trove",purchase,1.0,0 -99374297,"Trove",play,1.0,0 -99374297,"Neverwinter",purchase,1.0,0 -99374297,"Neverwinter",play,0.4,0 -99374297,"Knights and Merchants",purchase,1.0,0 -99374297,"Knights and Merchants",play,0.3,0 -99374297,"The Mighty Quest For Epic Loot",purchase,1.0,0 -99374297,"The Mighty Quest For Epic Loot",play,0.3,0 -99374297,"Survarium",purchase,1.0,0 -99374297,"Survarium",play,0.2,0 -99374297,"Unturned",purchase,1.0,0 -99374297,"Unturned",play,0.1,0 -99374297,"Gear Up",purchase,1.0,0 -99374297,"Gear Up",play,0.1,0 -99374297,"Guns and Robots",purchase,1.0,0 -99374297,"Realm of the Mad God",purchase,1.0,0 -99374297,"PlanetSide 2",purchase,1.0,0 -99374297,"Batla",purchase,1.0,0 -99374297,"Commander Conquest of the Americas Gold",purchase,1.0,0 -99374297,"Counter-Strike Nexon Zombies",purchase,1.0,0 -99374297,"Crossfire Europe",purchase,1.0,0 -99374297,"DCS World",purchase,1.0,0 -99374297,"Defiance",purchase,1.0,0 -99374297,"Dirty Bomb",purchase,1.0,0 -99374297,"East India Company Gold",purchase,1.0,0 -99374297,"Enclave",purchase,1.0,0 -99374297,"Firefall",purchase,1.0,0 -99374297,"Heroes & Generals",purchase,1.0,0 -99374297,"KnightShift",purchase,1.0,0 -99374297,"No More Room in Hell",purchase,1.0,0 -99374297,"Pirates of Black Cove Gold",purchase,1.0,0 -99374297,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -99374297,"SMITE",purchase,1.0,0 -99374297,"Star Conflict",purchase,1.0,0 -99374297,"The Lord of the Rings Online",purchase,1.0,0 -99374297,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -99374297,"Two Worlds Epic Edition",purchase,1.0,0 -99374297,"Velvet Sundown",purchase,1.0,0 -99374297,"Warface",purchase,1.0,0 -61779218,"Arma 3",purchase,1.0,0 -61779218,"Arma 3",play,498.0,0 -61779218,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -61779218,"Call of Duty Black Ops II - Multiplayer",play,164.0,0 -61779218,"Delta Force Black Hawk Down - Team Sabre",purchase,1.0,0 -61779218,"Delta Force Black Hawk Down - Team Sabre",play,69.0,0 -61779218,"Battlefield Bad Company 2",purchase,1.0,0 -61779218,"Battlefield Bad Company 2",play,40.0,0 -61779218,"Path of Exile",purchase,1.0,0 -61779218,"Path of Exile",play,39.0,0 -61779218,"War Thunder",purchase,1.0,0 -61779218,"War Thunder",play,37.0,0 -61779218,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -61779218,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,34.0,0 -61779218,"Arma 2 DayZ Mod",purchase,1.0,0 -61779218,"Arma 2 DayZ Mod",play,27.0,0 -61779218,"DayZ",purchase,1.0,0 -61779218,"DayZ",play,14.6,0 -61779218,"Champions Online",purchase,1.0,0 -61779218,"Champions Online",play,12.7,0 -61779218,"Zombies Monsters Robots",purchase,1.0,0 -61779218,"Zombies Monsters Robots",play,9.2,0 -61779218,"Call of Duty Black Ops II",purchase,1.0,0 -61779218,"Call of Duty Black Ops II",play,7.7,0 -61779218,"Arma 2 Operation Arrowhead",purchase,1.0,0 -61779218,"Arma 2 Operation Arrowhead",play,5.4,0 -61779218,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -61779218,"Call of Duty Black Ops II - Zombies",play,4.6,0 -61779218,"EverQuest II",purchase,1.0,0 -61779218,"EverQuest II",play,4.5,0 -61779218,"Arma 2",purchase,1.0,0 -61779218,"Arma 2",play,1.3,0 -61779218,"PlanetSide 2",purchase,1.0,0 -61779218,"PlanetSide 2",play,1.1,0 -61779218,"Fishing Planet",purchase,1.0,0 -61779218,"Fishing Planet",play,0.4,0 -61779218,"AdVenture Capitalist",purchase,1.0,0 -61779218,"Arma 3 Zeus",purchase,1.0,0 -61779218,"DCS World",purchase,1.0,0 -61779218,"Delta Force Black Hawk Down",purchase,1.0,0 -61779218,"Dungeons & Dragons Online",purchase,1.0,0 -109592594,"Counter-Strike Global Offensive",purchase,1.0,0 -109592594,"Counter-Strike Global Offensive",play,637.0,0 -109592594,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -109592594,"Call of Duty Modern Warfare 2 - Multiplayer",play,74.0,0 -109592594,"Team Fortress 2",purchase,1.0,0 -109592594,"Team Fortress 2",play,57.0,0 -109592594,"Goat Simulator",purchase,1.0,0 -109592594,"Goat Simulator",play,1.7,0 -109592594,"Assassin's Creed Brotherhood",purchase,1.0,0 -109592594,"Call of Duty Modern Warfare 2",purchase,1.0,0 -109592594,"Half-Life 2",purchase,1.0,0 -109592594,"Half-Life 2 Episode One",purchase,1.0,0 -109592594,"Half-Life 2 Episode Two",purchase,1.0,0 -109592594,"Half-Life 2 Lost Coast",purchase,1.0,0 -109592594,"Portal",purchase,1.0,0 -234064650,"Football Manager 2015",purchase,1.0,0 -234064650,"Warface",purchase,1.0,0 -74989665,"Call of Duty Black Ops",purchase,1.0,0 -74989665,"Call of Duty Black Ops",play,1.1,0 -74989665,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -128792215,"HIS (Heroes In the Sky)",purchase,1.0,0 -302437973,"Counter-Strike Global Offensive",purchase,1.0,0 -302437973,"Counter-Strike Global Offensive",play,43.0,0 -302437973,"Dota 2",purchase,1.0,0 -302437973,"Dota 2",play,0.8,0 -302437973,"Portal 2",purchase,1.0,0 -58967365,"Diaper Dash",purchase,1.0,0 -58967365,"Diaper Dash",play,0.3,0 -293231906,"Unturned",purchase,1.0,0 -293231906,"Unturned",play,20.0,0 -197070285,"Team Fortress 2",purchase,1.0,0 -197070285,"Team Fortress 2",play,0.5,0 -195946569,"Warframe",purchase,1.0,0 -195946569,"Warframe",play,22.0,0 -195946569,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -195946569,"Tom Clancy's Ghost Recon Phantoms - NA",play,15.7,0 -195946569,"ORION Prelude",purchase,1.0,0 -195946569,"ORION Prelude",play,11.9,0 -195946569,"Garry's Mod",purchase,1.0,0 -195946569,"Garry's Mod",play,8.5,0 -195946569,"Counter-Strike Global Offensive",purchase,1.0,0 -195946569,"Counter-Strike Global Offensive",play,6.5,0 -195946569,"Town of Salem",purchase,1.0,0 -195946569,"Town of Salem",play,3.9,0 -195946569,"PlanetSide 2",purchase,1.0,0 -195946569,"PlanetSide 2",play,0.6,0 -195946569,"Chaos Heroes Online",purchase,1.0,0 -195946569,"Chaos Heroes Online",play,0.2,0 -195946569,"Karos",purchase,1.0,0 -195946569,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -195946569,"Aion",purchase,1.0,0 -195946569,"Brick-Force",purchase,1.0,0 -195946569,"Firefall",purchase,1.0,0 -195946569,"TERA",purchase,1.0,0 -195946569,"Warface",purchase,1.0,0 -49228258,"Counter-Strike Source",purchase,1.0,0 -49228258,"Counter-Strike Source",play,361.0,0 -49228258,"Counter-Strike Global Offensive",purchase,1.0,0 -49228258,"Counter-Strike Global Offensive",play,331.0,0 -49228258,"Dota 2",purchase,1.0,0 -49228258,"Dota 2",play,264.0,0 -49228258,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -49228258,"Dark Souls Prepare to Die Edition",play,106.0,0 -49228258,"Terraria",purchase,1.0,0 -49228258,"Terraria",play,98.0,0 -49228258,"Rocket League",purchase,1.0,0 -49228258,"Rocket League",play,92.0,0 -49228258,"Killing Floor",purchase,1.0,0 -49228258,"Killing Floor",play,57.0,0 -49228258,"DayZ",purchase,1.0,0 -49228258,"DayZ",play,56.0,0 -49228258,"The Elder Scrolls V Skyrim",purchase,1.0,0 -49228258,"The Elder Scrolls V Skyrim",play,53.0,0 -49228258,"Borderlands 2",purchase,1.0,0 -49228258,"Borderlands 2",play,45.0,0 -49228258,"Killing Floor 2",purchase,1.0,0 -49228258,"Killing Floor 2",play,44.0,0 -49228258,"Garry's Mod",purchase,1.0,0 -49228258,"Garry's Mod",play,44.0,0 -49228258,"Grand Theft Auto IV",purchase,1.0,0 -49228258,"Grand Theft Auto IV",play,43.0,0 -49228258,"Left 4 Dead 2",purchase,1.0,0 -49228258,"Left 4 Dead 2",play,41.0,0 -49228258,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -49228258,"Call of Duty Black Ops II - Zombies",play,38.0,0 -49228258,"Dying Light",purchase,1.0,0 -49228258,"Dying Light",play,32.0,0 -49228258,"Insurgency",purchase,1.0,0 -49228258,"Insurgency",play,30.0,0 -49228258,"PAYDAY 2",purchase,1.0,0 -49228258,"PAYDAY 2",play,29.0,0 -49228258,"The Binding of Isaac",purchase,1.0,0 -49228258,"The Binding of Isaac",play,27.0,0 -49228258,"Starbound",purchase,1.0,0 -49228258,"Starbound",play,27.0,0 -49228258,"Dungeons of Dredmor",purchase,1.0,0 -49228258,"Dungeons of Dredmor",play,23.0,0 -49228258,"Unreal Tournament Game of the Year Edition",purchase,1.0,0 -49228258,"Unreal Tournament Game of the Year Edition",play,22.0,0 -49228258,"PAYDAY The Heist",purchase,1.0,0 -49228258,"PAYDAY The Heist",play,21.0,0 -49228258,"Middle-earth Shadow of Mordor",purchase,1.0,0 -49228258,"Middle-earth Shadow of Mordor",play,20.0,0 -49228258,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -49228258,"Fallout 3 - Game of the Year Edition",play,18.0,0 -49228258,"Star Wars Knights of the Old Republic",purchase,1.0,0 -49228258,"Star Wars Knights of the Old Republic",play,17.9,0 -49228258,"Portal 2",purchase,1.0,0 -49228258,"Portal 2",play,17.8,0 -49228258,"Darksiders",purchase,1.0,0 -49228258,"Darksiders",play,17.2,0 -49228258,"7 Days to Die",purchase,1.0,0 -49228258,"7 Days to Die",play,15.1,0 -49228258,"Metro 2033",purchase,1.0,0 -49228258,"Metro 2033",play,13.5,0 -49228258,"SOMA",purchase,1.0,0 -49228258,"SOMA",play,13.1,0 -49228258,"Borderlands",purchase,1.0,0 -49228258,"Borderlands",play,12.7,0 -49228258,"The Walking Dead",purchase,1.0,0 -49228258,"The Walking Dead",play,12.0,0 -49228258,"ARK Survival Evolved",purchase,1.0,0 -49228258,"ARK Survival Evolved",play,11.8,0 -49228258,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -49228258,"Batman Arkham Asylum GOTY Edition",play,11.8,0 -49228258,"Rayman Origins",purchase,1.0,0 -49228258,"Rayman Origins",play,11.6,0 -49228258,"DiRT 3",purchase,1.0,0 -49228258,"DiRT 3",play,11.5,0 -49228258,"Amnesia The Dark Descent",purchase,1.0,0 -49228258,"Amnesia The Dark Descent",play,11.2,0 -49228258,"BioShock Infinite",purchase,1.0,0 -49228258,"BioShock Infinite",play,11.1,0 -49228258,"Half-Life 2",purchase,1.0,0 -49228258,"Half-Life 2",play,10.8,0 -49228258,"Farming Simulator 2011",purchase,1.0,0 -49228258,"Farming Simulator 2011",play,10.7,0 -49228258,"DeathSpank Thongs Of Virtue",purchase,1.0,0 -49228258,"DeathSpank Thongs Of Virtue",play,9.6,0 -49228258,"Bastion",purchase,1.0,0 -49228258,"Bastion",play,9.1,0 -49228258,"Magic 2014 ",purchase,1.0,0 -49228258,"Magic 2014 ",play,8.8,0 -49228258,"Path of Exile",purchase,1.0,0 -49228258,"Path of Exile",play,8.8,0 -49228258,"Serious Sam 3 BFE",purchase,1.0,0 -49228258,"Serious Sam 3 BFE",play,8.2,0 -49228258,"Half-Life",purchase,1.0,0 -49228258,"Half-Life",play,8.2,0 -49228258,"Just Cause 2",purchase,1.0,0 -49228258,"Just Cause 2",play,8.2,0 -49228258,"DeathSpank",purchase,1.0,0 -49228258,"DeathSpank",play,8.0,0 -49228258,"Dead Space",purchase,1.0,0 -49228258,"Dead Space",play,7.9,0 -49228258,"Dead Space 2",purchase,1.0,0 -49228258,"Dead Space 2",play,7.7,0 -49228258,"This War of Mine",purchase,1.0,0 -49228258,"This War of Mine",play,7.6,0 -49228258,"Castle Crashers",purchase,1.0,0 -49228258,"Castle Crashers",play,7.4,0 -49228258,"Darkest Dungeon",purchase,1.0,0 -49228258,"Darkest Dungeon",play,7.2,0 -49228258,"Half-Life Source",purchase,1.0,0 -49228258,"Half-Life Source",play,7.1,0 -49228258,"Fallout New Vegas",purchase,1.0,0 -49228258,"Fallout New Vegas",play,6.9,0 -49228258,"Red Faction Armageddon",purchase,1.0,0 -49228258,"Red Faction Armageddon",play,6.6,0 -49228258,"Sid Meier's Civilization V",purchase,1.0,0 -49228258,"Sid Meier's Civilization V",play,6.3,0 -49228258,"XCOM Enemy Unknown",purchase,1.0,0 -49228258,"XCOM Enemy Unknown",play,6.1,0 -49228258,"Spelunky",purchase,1.0,0 -49228258,"Spelunky",play,5.8,0 -49228258,"Serious Sam HD The Second Encounter",purchase,1.0,0 -49228258,"Serious Sam HD The Second Encounter",play,5.4,0 -49228258,"Half-Life 2 Episode Two",purchase,1.0,0 -49228258,"Half-Life 2 Episode Two",play,4.8,0 -49228258,"Blur",purchase,1.0,0 -49228258,"Blur",play,4.8,0 -49228258,"SMITE",purchase,1.0,0 -49228258,"SMITE",play,4.5,0 -49228258,"Torchlight",purchase,1.0,0 -49228258,"Torchlight",play,4.4,0 -49228258,"Mirror's Edge",purchase,1.0,0 -49228258,"Mirror's Edge",play,4.4,0 -49228258,"Lone Survivor The Director's Cut",purchase,1.0,0 -49228258,"Lone Survivor The Director's Cut",play,4.3,0 -49228258,"Delve Deeper",purchase,1.0,0 -49228258,"Delve Deeper",play,4.2,0 -49228258,"Serious Sam HD The First Encounter",purchase,1.0,0 -49228258,"Serious Sam HD The First Encounter",play,4.0,0 -49228258,"Port Royale 2",purchase,1.0,0 -49228258,"Port Royale 2",play,3.9,0 -49228258,"Trine 2",purchase,1.0,0 -49228258,"Trine 2",play,3.8,0 -49228258,"Solar 2",purchase,1.0,0 -49228258,"Solar 2",play,3.7,0 -49228258,"Sanctum",purchase,1.0,0 -49228258,"Sanctum",play,3.6,0 -49228258,"Super Hexagon",purchase,1.0,0 -49228258,"Super Hexagon",play,3.5,0 -49228258,"Far Cry",purchase,1.0,0 -49228258,"Far Cry",play,3.4,0 -49228258,"Half-Life 2 Episode One",purchase,1.0,0 -49228258,"Half-Life 2 Episode One",play,3.3,0 -49228258,"BattleBlock Theater",purchase,1.0,0 -49228258,"BattleBlock Theater",play,3.2,0 -49228258,"Audiosurf",purchase,1.0,0 -49228258,"Audiosurf",play,3.0,0 -49228258,"Batman Arkham City GOTY",purchase,1.0,0 -49228258,"Batman Arkham City GOTY",play,3.0,0 -49228258,"Space Pirates and Zombies",purchase,1.0,0 -49228258,"Space Pirates and Zombies",play,2.9,0 -49228258,"The Fall",purchase,1.0,0 -49228258,"The Fall",play,2.8,0 -49228258,"Magicka",purchase,1.0,0 -49228258,"Magicka",play,2.8,0 -49228258,"Deus Ex Game of the Year Edition",purchase,1.0,0 -49228258,"Deus Ex Game of the Year Edition",play,2.8,0 -49228258,"Brtal Legend",purchase,1.0,0 -49228258,"Brtal Legend",play,2.8,0 -49228258,"LIMBO",purchase,1.0,0 -49228258,"LIMBO",play,2.7,0 -49228258,"Planetary Annihilation",purchase,1.0,0 -49228258,"Planetary Annihilation",play,2.6,0 -49228258,"Ragnarok",purchase,1.0,0 -49228258,"Ragnarok",play,2.4,0 -49228258,"Hacker Evolution",purchase,1.0,0 -49228258,"Hacker Evolution",play,2.3,0 -49228258,"Serious Sam 2",purchase,1.0,0 -49228258,"Serious Sam 2",play,2.1,0 -49228258,"Dead Island",purchase,1.0,0 -49228258,"Dead Island",play,1.9,0 -49228258,"Sniper Elite V2",purchase,1.0,0 -49228258,"Sniper Elite V2",play,1.9,0 -49228258,"Left 4 Dead",purchase,1.0,0 -49228258,"Left 4 Dead",play,1.8,0 -49228258,"Gemini Rue",purchase,1.0,0 -49228258,"Gemini Rue",play,1.7,0 -49228258,"The Baconing",purchase,1.0,0 -49228258,"The Baconing",play,1.7,0 -49228258,"A Valley Without Wind",purchase,1.0,0 -49228258,"A Valley Without Wind",play,1.7,0 -49228258,"Cave Story+",purchase,1.0,0 -49228258,"Cave Story+",play,1.6,0 -49228258,"Cities Skylines",purchase,1.0,0 -49228258,"Cities Skylines",play,1.5,0 -49228258,"Shank",purchase,1.0,0 -49228258,"Shank",play,1.5,0 -49228258,"Dustforce",purchase,1.0,0 -49228258,"Dustforce",play,1.5,0 -49228258,"Dungeon Defenders",purchase,1.0,0 -49228258,"Dungeon Defenders",play,1.4,0 -49228258,"Oddworld Abe's Oddysee",purchase,1.0,0 -49228258,"Oddworld Abe's Oddysee",play,1.4,0 -49228258,"Saints Row The Third",purchase,1.0,0 -49228258,"Saints Row The Third",play,1.4,0 -49228258,"Team Fortress 2",purchase,1.0,0 -49228258,"Team Fortress 2",play,1.3,0 -49228258,"WARP",purchase,1.0,0 -49228258,"WARP",play,1.3,0 -49228258,"Lightfish",purchase,1.0,0 -49228258,"Lightfish",play,1.2,0 -49228258,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -49228258,"Call of Duty Black Ops II - Multiplayer",play,1.1,0 -49228258,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -49228258,"Unreal Tournament 3 Black Edition",play,1.0,0 -49228258,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -49228258,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,1.0,0 -49228258,"Unreal II The Awakening",purchase,1.0,0 -49228258,"Unreal II The Awakening",play,1.0,0 -49228258,"Revenge of the Titans",purchase,1.0,0 -49228258,"Revenge of the Titans",play,1.0,0 -49228258,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -49228258,"Grand Theft Auto Episodes from Liberty City",play,1.0,0 -49228258,"Psychonauts",purchase,1.0,0 -49228258,"Psychonauts",play,0.9,0 -49228258,"EDGE",purchase,1.0,0 -49228258,"EDGE",play,0.9,0 -49228258,"Alien Swarm",purchase,1.0,0 -49228258,"Alien Swarm",play,0.8,0 -49228258,"Unreal Tournament 2004",purchase,1.0,0 -49228258,"Unreal Tournament 2004",play,0.8,0 -49228258,"Half-Life Blue Shift",purchase,1.0,0 -49228258,"Half-Life Blue Shift",play,0.8,0 -49228258,"BIT.TRIP RUNNER",purchase,1.0,0 -49228258,"BIT.TRIP RUNNER",play,0.8,0 -49228258,"Unreal Gold",purchase,1.0,0 -49228258,"Unreal Gold",play,0.7,0 -49228258,"Beat Hazard",purchase,1.0,0 -49228258,"Beat Hazard",play,0.7,0 -49228258,"Shatter",purchase,1.0,0 -49228258,"Shatter",play,0.7,0 -49228258,"Risen 2 - Dark Waters",purchase,1.0,0 -49228258,"Risen 2 - Dark Waters",play,0.7,0 -49228258,"Batman Arkham City",purchase,1.0,0 -49228258,"Batman Arkham City",play,0.7,0 -49228258,"Battlefield Bad Company 2",purchase,1.0,0 -49228258,"Battlefield Bad Company 2",play,0.6,0 -49228258,"Titan Quest",purchase,1.0,0 -49228258,"Titan Quest",play,0.5,0 -49228258,"Fractal Make Blooms Not War",purchase,1.0,0 -49228258,"Fractal Make Blooms Not War",play,0.5,0 -49228258,"NightSky",purchase,1.0,0 -49228258,"NightSky",play,0.4,0 -49228258,"Bunch Of Heroes",purchase,1.0,0 -49228258,"Bunch Of Heroes",play,0.4,0 -49228258,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -49228258,"Superbrothers Sword & Sworcery EP",play,0.4,0 -49228258,"Vessel",purchase,1.0,0 -49228258,"Vessel",play,0.4,0 -49228258,"Team Fortress Classic",purchase,1.0,0 -49228258,"Team Fortress Classic",play,0.3,0 -49228258,"Half-Life Opposing Force",purchase,1.0,0 -49228258,"Half-Life Opposing Force",play,0.3,0 -49228258,"Jamestown",purchase,1.0,0 -49228258,"Jamestown",play,0.3,0 -49228258,"Zombie Panic Source",purchase,1.0,0 -49228258,"Zombie Panic Source",play,0.3,0 -49228258,"Sacred 2 Gold",purchase,1.0,0 -49228258,"Sacred 2 Gold",play,0.2,0 -49228258,"Crayon Physics Deluxe",purchase,1.0,0 -49228258,"Crayon Physics Deluxe",play,0.2,0 -49228258,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -49228258,"Killing Floor Mod Defence Alliance 2",play,0.1,0 -49228258,"Frozen Synapse",purchase,1.0,0 -49228258,"BioShock",purchase,1.0,0 -49228258,"Anomaly Warzone Earth",purchase,1.0,0 -49228258,"A Valley Without Wind 2",purchase,1.0,0 -49228258,"BioShock 2",purchase,1.0,0 -49228258,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -49228258,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -49228258,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -49228258,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -49228258,"Call of Duty Black Ops II",purchase,1.0,0 -49228258,"Company of Heroes",purchase,1.0,0 -49228258,"Company of Heroes (New Steam Version)",purchase,1.0,0 -49228258,"Company of Heroes Opposing Fronts",purchase,1.0,0 -49228258,"Company of Heroes Tales of Valor",purchase,1.0,0 -49228258,"Costume Quest",purchase,1.0,0 -49228258,"Deus Ex Human Revolution",purchase,1.0,0 -49228258,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -49228258,"Deus Ex Invisible War",purchase,1.0,0 -49228258,"DiRT 3 Complete Edition",purchase,1.0,0 -49228258,"Dirty Bomb",purchase,1.0,0 -49228258,"Dynamite Jack",purchase,1.0,0 -49228258,"Far Cry 2",purchase,1.0,0 -49228258,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -49228258,"Gratuitous Space Battles",purchase,1.0,0 -49228258,"Half-Life 2 Deathmatch",purchase,1.0,0 -49228258,"Half-Life 2 Lost Coast",purchase,1.0,0 -49228258,"Half-Life Deathmatch Source",purchase,1.0,0 -49228258,"It came from space, and ate our brains",purchase,1.0,0 -49228258,"Killing Floor - Toy Master",purchase,1.0,0 -49228258,"Letter Quest Grimm's Journey",purchase,1.0,0 -49228258,"Letter Quest Grimm's Journey Remastered",purchase,1.0,0 -49228258,"Magicka Final Frontier",purchase,1.0,0 -49228258,"Magicka Frozen Lake",purchase,1.0,0 -49228258,"Magicka Nippon",purchase,1.0,0 -49228258,"Magicka Party Robes",purchase,1.0,0 -49228258,"Magicka The Watchtower",purchase,1.0,0 -49228258,"Magicka Vietnam",purchase,1.0,0 -49228258,"Magicka Wizard's Survival Kit",purchase,1.0,0 -49228258,"Merchants of Kaidan",purchase,1.0,0 -49228258,"Of Orcs And Men",purchase,1.0,0 -49228258,"Psychonauts Demo",purchase,1.0,0 -49228258,"Rochard",purchase,1.0,0 -49228258,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -49228258,"Saints Row 2",purchase,1.0,0 -49228258,"Serious Sam Classic The First Encounter",purchase,1.0,0 -49228258,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -49228258,"Serious Sam Classics Revolution",purchase,1.0,0 -49228258,"Shank 2",purchase,1.0,0 -49228258,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -49228258,"Spark Rising",purchase,1.0,0 -49228258,"Splice",purchase,1.0,0 -49228258,"Stacking",purchase,1.0,0 -49228258,"Starbound - Unstable",purchase,1.0,0 -49228258,"Strife Veteran Edition",purchase,1.0,0 -49228258,"Super Motherload",purchase,1.0,0 -49228258,"Survivalist",purchase,1.0,0 -49228258,"Wizorb",purchase,1.0,0 -12423315,"Half-Life 2",purchase,1.0,0 -12423315,"Half-Life 2",play,16.6,0 -12423315,"Half-Life 2 Episode One",purchase,1.0,0 -12423315,"Half-Life 2 Episode One",play,5.0,0 -12423315,"Half-Life 2 Lost Coast",purchase,1.0,0 -12423315,"Half-Life 2 Lost Coast",play,0.6,0 -12423315,"Alien Swarm",purchase,1.0,0 -12423315,"Alien Swarm",play,0.5,0 -12423315,"Counter-Strike Source",purchase,1.0,0 -12423315,"Half-Life 2 Deathmatch",purchase,1.0,0 -12423315,"Half-Life Deathmatch Source",purchase,1.0,0 -138279635,"Defense Grid The Awakening",purchase,1.0,0 -138279635,"Defense Grid The Awakening",play,50.0,0 -138279635,"The Secret World",purchase,1.0,0 -138279635,"The Secret World",play,16.9,0 -138279635,"Defense Grid 2",purchase,1.0,0 -138279635,"Defense Grid 2",play,16.4,0 -138279635,"Magic 2014 ",purchase,1.0,0 -138279635,"Magic 2014 ",play,2.4,0 -138279635,"Defense Grid Containment DLC",purchase,1.0,0 -138279635,"Defense Grid Resurgence Map Pack 1",purchase,1.0,0 -138279635,"Defense Grid Resurgence Map Pack 2 ",purchase,1.0,0 -138279635,"Defense Grid Resurgence Map Pack 3",purchase,1.0,0 -138279635,"Defense Grid Resurgence Map Pack 4",purchase,1.0,0 -90033155,"Terraria",purchase,1.0,0 -90033155,"Terraria",play,286.0,0 -90033155,"Rogue Legacy",purchase,1.0,0 -90033155,"Rogue Legacy",play,118.0,0 -90033155,"Starbound",purchase,1.0,0 -90033155,"Starbound",play,51.0,0 -90033155,"Middle-earth Shadow of Mordor",purchase,1.0,0 -90033155,"Middle-earth Shadow of Mordor",play,45.0,0 -90033155,"Evolve",purchase,1.0,0 -90033155,"Evolve",play,23.0,0 -90033155,"Supreme Commander Forged Alliance",purchase,1.0,0 -90033155,"Supreme Commander Forged Alliance",play,21.0,0 -90033155,"Magicka",purchase,1.0,0 -90033155,"Magicka",play,20.0,0 -90033155,"DC Universe Online",purchase,1.0,0 -90033155,"DC Universe Online",play,20.0,0 -90033155,"Risk of Rain",purchase,1.0,0 -90033155,"Risk of Rain",play,17.7,0 -90033155,"FTL Faster Than Light",purchase,1.0,0 -90033155,"FTL Faster Than Light",play,16.5,0 -90033155,"Don't Starve Together Beta",purchase,1.0,0 -90033155,"Don't Starve Together Beta",play,13.8,0 -90033155,"Left 4 Dead 2",purchase,1.0,0 -90033155,"Left 4 Dead 2",play,10.3,0 -90033155,"Shovel Knight",purchase,1.0,0 -90033155,"Shovel Knight",play,9.7,0 -90033155,"ARK Survival Evolved",purchase,1.0,0 -90033155,"ARK Survival Evolved",play,9.6,0 -90033155,"Tomb Raider",purchase,1.0,0 -90033155,"Tomb Raider",play,9.5,0 -90033155,"Team Fortress 2",purchase,1.0,0 -90033155,"Team Fortress 2",play,9.2,0 -90033155,"Guns of Icarus Online",purchase,1.0,0 -90033155,"Guns of Icarus Online",play,8.9,0 -90033155,"PlanetSide 2",purchase,1.0,0 -90033155,"PlanetSide 2",play,8.7,0 -90033155,"ORION Prelude",purchase,1.0,0 -90033155,"ORION Prelude",play,6.5,0 -90033155,"Sanctum",purchase,1.0,0 -90033155,"Sanctum",play,6.5,0 -90033155,"TERA",purchase,1.0,0 -90033155,"TERA",play,6.0,0 -90033155,"The Elder Scrolls V Skyrim",purchase,1.0,0 -90033155,"The Elder Scrolls V Skyrim",play,5.2,0 -90033155,"Magic Duels",purchase,1.0,0 -90033155,"Magic Duels",play,3.2,0 -90033155,"Trine 2",purchase,1.0,0 -90033155,"Trine 2",play,2.4,0 -90033155,"Dota 2",purchase,1.0,0 -90033155,"Dota 2",play,1.0,0 -90033155,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -90033155,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,0.3,0 -90033155,"Evolve - Behemoth",purchase,1.0,0 -90033155,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -90033155,"Robocraft",purchase,1.0,0 -90033155,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -90033155,"Starbound - Unstable",purchase,1.0,0 -90033155,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -90033155,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -90033155,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -161540905,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -214019307,"Sid Meier's Civilization V",purchase,1.0,0 -214019307,"Sid Meier's Civilization V",play,7.1,0 -94690173,"Sid Meier's Civilization V",purchase,1.0,0 -94690173,"Sid Meier's Civilization V",play,3.5,0 -94690173,"Space Engineers",purchase,1.0,0 -94690173,"Space Engineers",play,0.1,0 -94690173,"Cities in Motion",purchase,1.0,0 -94690173,"Empire Total War",purchase,1.0,0 -94690173,"Miner Wars 2081",purchase,1.0,0 -140337149,"Dota 2",purchase,1.0,0 -140337149,"Dota 2",play,236.0,0 -197190654,"War Thunder",purchase,1.0,0 -197190654,"War Thunder",play,206.0,0 -197190654,"Grand Theft Auto V",purchase,1.0,0 -197190654,"Grand Theft Auto V",play,49.0,0 -197190654,"Farming Simulator 15",purchase,1.0,0 -197190654,"Farming Simulator 15",play,42.0,0 -197190654,"Far Cry 3",purchase,1.0,0 -197190654,"Far Cry 3",play,32.0,0 -197190654,"Heroes & Generals",purchase,1.0,0 -197190654,"Heroes & Generals",play,22.0,0 -197190654,"Euro Truck Simulator 2",purchase,1.0,0 -197190654,"Euro Truck Simulator 2",play,19.2,0 -197190654,"The Crew",purchase,1.0,0 -197190654,"The Crew",play,18.1,0 -197190654,"Besiege",purchase,1.0,0 -197190654,"Besiege",play,15.5,0 -197190654,"Total War SHOGUN 2",purchase,1.0,0 -197190654,"Total War SHOGUN 2",play,13.7,0 -197190654,"Spintires",purchase,1.0,0 -197190654,"Spintires",play,9.1,0 -197190654,"Need for Speed Hot Pursuit",purchase,1.0,0 -197190654,"Need for Speed Hot Pursuit",play,7.1,0 -197190654,"FINAL FANTASY XIII",purchase,1.0,0 -197190654,"FINAL FANTASY XIII",play,6.7,0 -197190654,"Team Fortress 2",purchase,1.0,0 -197190654,"Team Fortress 2",play,6.6,0 -197190654,"Bloons TD5",purchase,1.0,0 -197190654,"Bloons TD5",play,5.1,0 -197190654,"Dirty Bomb",purchase,1.0,0 -197190654,"Dirty Bomb",play,4.8,0 -197190654,"Elite Dangerous",purchase,1.0,0 -197190654,"Elite Dangerous",play,4.2,0 -197190654,"Software Inc.",purchase,1.0,0 -197190654,"Software Inc.",play,3.0,0 -197190654,"Warframe",purchase,1.0,0 -197190654,"Warframe",play,2.0,0 -197190654,"Vindictus",purchase,1.0,0 -197190654,"Vindictus",play,1.1,0 -197190654,"Dota 2",purchase,1.0,0 -197190654,"Dota 2",play,0.4,0 -197190654,"RaceRoom Racing Experience ",purchase,1.0,0 -197190654,"RaceRoom Racing Experience ",play,0.4,0 -197190654,"Star Conflict",purchase,1.0,0 -197190654,"Star Conflict",play,0.2,0 -197190654,"theHunter",purchase,1.0,0 -197190654,"theHunter",play,0.1,0 -197190654,"Gear Up",purchase,1.0,0 -197190654,"Gear Up",play,0.1,0 -197190654,"World of Guns Gun Disassembly",purchase,1.0,0 -197190654,"DCS World",purchase,1.0,0 -197190654,"HIS (Heroes In the Sky)",purchase,1.0,0 -197190654,"Path of Exile",purchase,1.0,0 -197190654,"The Lord of the Rings Online",purchase,1.0,0 -36349097,"Team Fortress 2",purchase,1.0,0 -36349097,"Team Fortress 2",play,67.0,0 -36349097,"Half-Life 2",purchase,1.0,0 -36349097,"Half-Life 2",play,10.1,0 -36349097,"Portal",purchase,1.0,0 -36349097,"Portal",play,0.8,0 -36349097,"Half-Life 2 Episode One",purchase,1.0,0 -36349097,"Half-Life 2 Episode Two",purchase,1.0,0 -36349097,"Half-Life 2 Lost Coast",purchase,1.0,0 -199423036,"RIFT",purchase,1.0,0 -199423036,"RIFT",play,1.0,0 -199423036,"You Have to Win the Game",purchase,1.0,0 -199423036,"Happy Wars",purchase,1.0,0 -44755776,"Counter-Strike Global Offensive",purchase,1.0,0 -44755776,"Counter-Strike Global Offensive",play,292.0,0 -44755776,"Counter-Strike",purchase,1.0,0 -44755776,"Counter-Strike",play,200.0,0 -44755776,"Team Fortress 2",purchase,1.0,0 -44755776,"Team Fortress 2",play,141.0,0 -44755776,"Left 4 Dead 2",purchase,1.0,0 -44755776,"Left 4 Dead 2",play,73.0,0 -44755776,"The Binding of Isaac",purchase,1.0,0 -44755776,"The Binding of Isaac",play,47.0,0 -44755776,"Borderlands 2",purchase,1.0,0 -44755776,"Borderlands 2",play,20.0,0 -44755776,"Killing Floor",purchase,1.0,0 -44755776,"Killing Floor",play,16.6,0 -44755776,"Serious Sam HD The First Encounter",purchase,1.0,0 -44755776,"Serious Sam HD The First Encounter",play,9.0,0 -44755776,"Mortal Kombat Komplete Edition",purchase,1.0,0 -44755776,"Mortal Kombat Komplete Edition",play,7.2,0 -44755776,"Serious Sam 3 BFE",purchase,1.0,0 -44755776,"Serious Sam 3 BFE",play,6.8,0 -44755776,"Archeblade",purchase,1.0,0 -44755776,"Archeblade",play,5.9,0 -44755776,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -44755776,"Call of Duty Black Ops - Multiplayer",play,5.6,0 -44755776,"Insurgency Modern Infantry Combat",purchase,1.0,0 -44755776,"Insurgency Modern Infantry Combat",play,1.2,0 -44755776,"Dota 2",purchase,1.0,0 -44755776,"Dota 2",play,0.4,0 -44755776,"Deathmatch Classic",purchase,1.0,0 -44755776,"Deathmatch Classic",play,0.2,0 -44755776,"Call of Duty Black Ops",purchase,1.0,0 -44755776,"Counter-Strike Condition Zero",purchase,1.0,0 -44755776,"Day of Defeat",purchase,1.0,0 -44755776,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -44755776,"Dead Island",purchase,1.0,0 -44755776,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -44755776,"Ricochet",purchase,1.0,0 -160055758,"Left 4 Dead 2",purchase,1.0,0 -160055758,"Left 4 Dead 2",play,8.4,0 -160055758,"Dota 2",purchase,1.0,0 -160055758,"Dota 2",play,2.5,0 -11504910,"Counter-Strike Source",purchase,1.0,0 -11504910,"Half-Life 2",purchase,1.0,0 -11504910,"Half-Life 2 Deathmatch",purchase,1.0,0 -11504910,"Half-Life 2 Lost Coast",purchase,1.0,0 -232027326,"Marvel Heroes 2015",purchase,1.0,0 -225178605,"Invisible Apartment",purchase,1.0,0 -225178605,"Invisible Apartment",play,0.4,0 -72555195,"Fallout New Vegas",purchase,1.0,0 -72555195,"Fallout New Vegas",play,6.7,0 -157104680,"Dota 2",purchase,1.0,0 -157104680,"Dota 2",play,1559.0,0 -247828143,"Dota 2",purchase,1.0,0 -247828143,"Dota 2",play,2.7,0 -183490713,"Team Fortress 2",purchase,1.0,0 -183490713,"Team Fortress 2",play,24.0,0 -183490713,"Unturned",purchase,1.0,0 -183490713,"Unturned",play,22.0,0 -183490713,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -183490713,"Tom Clancy's Ghost Recon Phantoms - NA",play,2.6,0 -183490713,"No More Room in Hell",purchase,1.0,0 -183490713,"No More Room in Hell",play,1.2,0 -183490713,"Cry of Fear",purchase,1.0,0 -183490713,"Cry of Fear",play,1.1,0 -183490713,"Warframe",purchase,1.0,0 -183490713,"Warframe",play,0.9,0 -183490713,"Loadout",purchase,1.0,0 -183490713,"Loadout",play,0.8,0 -183490713,"APB Reloaded",purchase,1.0,0 -183490713,"APB Reloaded",play,0.6,0 -183490713,"BLOCKADE 3D",purchase,1.0,0 -183490713,"BLOCKADE 3D",play,0.3,0 -183490713,"Dead Island Epidemic",purchase,1.0,0 -183490713,"Dead Island Epidemic",play,0.1,0 -183490713,"Only If",purchase,1.0,0 -183490713,"NEOTOKYO",purchase,1.0,0 -183490713,"Heroes & Generals",purchase,1.0,0 -155752052,"Dota 2",purchase,1.0,0 -155752052,"Dota 2",play,0.6,0 -108011380,"Team Fortress 2",purchase,1.0,0 -108011380,"Team Fortress 2",play,13.5,0 -254196196,"Fable - The Lost Chapters",purchase,1.0,0 -254196196,"Fable - The Lost Chapters",play,9.0,0 -254196196,"Warframe",purchase,1.0,0 -92612763,"The Elder Scrolls V Skyrim",purchase,1.0,0 -92612763,"The Elder Scrolls V Skyrim",play,946.0,0 -92612763,"Rome Total War",purchase,1.0,0 -92612763,"Rome Total War",play,315.0,0 -92612763,"Empire Total War",purchase,1.0,0 -92612763,"Empire Total War",play,280.0,0 -92612763,"Total War ROME II - Emperor Edition",purchase,1.0,0 -92612763,"Total War ROME II - Emperor Edition",play,117.0,0 -92612763,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -92612763,"Tom Clancy's Splinter Cell Blacklist",play,97.0,0 -92612763,"Star Wars Empire at War Gold",purchase,1.0,0 -92612763,"Star Wars Empire at War Gold",play,89.0,0 -92612763,"Saints Row The Third",purchase,1.0,0 -92612763,"Saints Row The Third",play,85.0,0 -92612763,"Medieval II Total War",purchase,1.0,0 -92612763,"Medieval II Total War",play,80.0,0 -92612763,"Prison Architect",purchase,1.0,0 -92612763,"Prison Architect",play,79.0,0 -92612763,"Banished",purchase,1.0,0 -92612763,"Banished",play,78.0,0 -92612763,"Space Engineers",purchase,1.0,0 -92612763,"Space Engineers",play,74.0,0 -92612763,"Patrician IV Steam Special Edition",purchase,1.0,0 -92612763,"Patrician IV Steam Special Edition",play,61.0,0 -92612763,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -92612763,"The Elder Scrolls IV Oblivion ",play,52.0,0 -92612763,"Endless Space",purchase,1.0,0 -92612763,"Endless Space",play,51.0,0 -92612763,"A Game of Thrones - Genesis",purchase,1.0,0 -92612763,"A Game of Thrones - Genesis",play,46.0,0 -92612763,"Endless Legend",purchase,1.0,0 -92612763,"Endless Legend",play,34.0,0 -92612763,"Age of Mythology Extended Edition",purchase,1.0,0 -92612763,"Age of Mythology Extended Edition",play,29.0,0 -92612763,"Napoleon Total War",purchase,1.0,0 -92612763,"Napoleon Total War",play,27.0,0 -92612763,"DUNGEONS - Steam Special Edition",purchase,1.0,0 -92612763,"DUNGEONS - Steam Special Edition",play,27.0,0 -92612763,"Patrician IV Rise of a Dynasty",purchase,1.0,0 -92612763,"Patrician IV Rise of a Dynasty",play,27.0,0 -92612763,"Dungeons 2",purchase,1.0,0 -92612763,"Dungeons 2",play,21.0,0 -92612763,"Team Fortress 2",purchase,1.0,0 -92612763,"Team Fortress 2",play,13.6,0 -92612763,"The Elder Scrolls III Morrowind",purchase,1.0,0 -92612763,"The Elder Scrolls III Morrowind",play,12.1,0 -92612763,"Warframe",purchase,1.0,0 -92612763,"Warframe",play,11.7,0 -92612763,"Watch_Dogs",purchase,1.0,0 -92612763,"Watch_Dogs",play,10.2,0 -92612763,"Papers, Please",purchase,1.0,0 -92612763,"Papers, Please",play,8.7,0 -92612763,"Talisman Digital Edition",purchase,1.0,0 -92612763,"Talisman Digital Edition",play,5.8,0 -92612763,"Magicka",purchase,1.0,0 -92612763,"Magicka",play,5.6,0 -92612763,"Age of Empires II HD Edition",purchase,1.0,0 -92612763,"Age of Empires II HD Edition",play,4.6,0 -92612763,"Hacknet",purchase,1.0,0 -92612763,"Hacknet",play,4.6,0 -92612763,"Tom Clancy's Splinter Cell",purchase,1.0,0 -92612763,"Tom Clancy's Splinter Cell",play,4.4,0 -92612763,"Godus",purchase,1.0,0 -92612763,"Godus",play,2.0,0 -92612763,"Warlock - Master of the Arcane",purchase,1.0,0 -92612763,"Warlock - Master of the Arcane",play,1.7,0 -92612763,"Grey Goo",purchase,1.0,0 -92612763,"Grey Goo",play,1.4,0 -92612763,"Medieval Engineers",purchase,1.0,0 -92612763,"Medieval Engineers",play,0.6,0 -92612763,"Supreme Commander 2",purchase,1.0,0 -92612763,"Supreme Commander 2",play,0.2,0 -92612763,"DUNGEONS - The Dark Lord (Steam Special Edition)",purchase,1.0,0 -92612763,"DUNGEONS - The Dark Lord (Steam Special Edition)",play,0.2,0 -92612763,"Port Royale 3",purchase,1.0,0 -92612763,"Port Royale 3",play,0.1,0 -92612763,"Sid Meier's Civilization V",purchase,1.0,0 -92612763,"Sid Meier's Civilization V",play,0.1,0 -92612763,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -92612763,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -92612763,"The Elder Scrolls Online Tamriel Unlimited",purchase,1.0,0 -92612763,"PAYDAY The Heist",purchase,1.0,0 -92612763,"The Guild II Renaissance",purchase,1.0,0 -92612763,"PAYDAY 2",purchase,1.0,0 -92612763,"Age of Empires II HD The Forgotten",purchase,1.0,0 -92612763,"Ascend Hand of Kul",purchase,1.0,0 -92612763,"Chivalry Medieval Warfare",purchase,1.0,0 -92612763,"Counter-Strike",purchase,1.0,0 -92612763,"Counter-Strike Condition Zero",purchase,1.0,0 -92612763,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -92612763,"Counter-Strike Global Offensive",purchase,1.0,0 -92612763,"Counter-Strike Source",purchase,1.0,0 -92612763,"Day of Defeat",purchase,1.0,0 -92612763,"Day of Defeat Source",purchase,1.0,0 -92612763,"Deathmatch Classic",purchase,1.0,0 -92612763,"Grey Goo - Emergence Campaign",purchase,1.0,0 -92612763,"Grey Goo - Soundtrack",purchase,1.0,0 -92612763,"Half-Life",purchase,1.0,0 -92612763,"Half-Life 2",purchase,1.0,0 -92612763,"Half-Life 2 Deathmatch",purchase,1.0,0 -92612763,"Half-Life 2 Episode One",purchase,1.0,0 -92612763,"Half-Life 2 Episode Two",purchase,1.0,0 -92612763,"Half-Life 2 Lost Coast",purchase,1.0,0 -92612763,"Half-Life Blue Shift",purchase,1.0,0 -92612763,"Half-Life Opposing Force",purchase,1.0,0 -92612763,"Half-Life Source",purchase,1.0,0 -92612763,"Half-Life Deathmatch Source",purchase,1.0,0 -92612763,"Left 4 Dead",purchase,1.0,0 -92612763,"Left 4 Dead 2",purchase,1.0,0 -92612763,"Medieval II Total War Kingdoms",purchase,1.0,0 -92612763,"Patch testing for Chivalry",purchase,1.0,0 -92612763,"PAYDAY Wolf Pack",purchase,1.0,0 -92612763,"Portal",purchase,1.0,0 -92612763,"Portal 2",purchase,1.0,0 -92612763,"Ricochet",purchase,1.0,0 -92612763,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -92612763,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -92612763,"Supreme Commander",purchase,1.0,0 -92612763,"Team Fortress Classic",purchase,1.0,0 -92612763,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -92612763,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -92612763,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -92612763,"The Guild Gold Edition",purchase,1.0,0 -92612763,"The Guild II",purchase,1.0,0 -92612763,"The Guild II - Pirates of the European Seas",purchase,1.0,0 -92612763,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -92612763,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -210018093,"Team Fortress 2",purchase,1.0,0 -210018093,"Team Fortress 2",play,81.0,0 -210018093,"The Mighty Quest For Epic Loot",purchase,1.0,0 -210018093,"The Mighty Quest For Epic Loot",play,37.0,0 -210018093,"Dota 2",purchase,1.0,0 -210018093,"Dota 2",play,1.0,0 -210018093,"Counter-Strike Nexon Zombies",purchase,1.0,0 -210018093,"Counter-Strike Nexon Zombies",play,0.9,0 -210018093,"Marvel Heroes 2015",purchase,1.0,0 -210018093,"Marvel Heroes 2015",play,0.3,0 -210018093,"Dead Island Epidemic",purchase,1.0,0 -210018093,"Dead Island Epidemic",play,0.3,0 -210018093,"Unturned",purchase,1.0,0 -210018093,"Unturned",play,0.3,0 -210018093,"Robocraft",purchase,1.0,0 -210018093,"Robocraft",play,0.3,0 -210018093,"Galcon 2",purchase,1.0,0 -210018093,"Galcon 2",play,0.2,0 -160649706,"Dota 2",purchase,1.0,0 -160649706,"Dota 2",play,2.0,0 -230321601,"FreeStyle2 Street Basketball",purchase,1.0,0 -230321601,"FreeStyle2 Street Basketball",play,3.8,0 -194800299,"Dota 2",purchase,1.0,0 -194800299,"Dota 2",play,0.9,0 -115167911,"The Witcher 3 Wild Hunt",purchase,1.0,0 -115167911,"The Witcher 3 Wild Hunt",play,278.0,0 -115167911,"Grand Theft Auto V",purchase,1.0,0 -115167911,"Grand Theft Auto V",play,248.0,0 -115167911,"Wargame Red Dragon",purchase,1.0,0 -115167911,"Wargame Red Dragon",play,186.0,0 -115167911,"The Elder Scrolls V Skyrim",purchase,1.0,0 -115167911,"The Elder Scrolls V Skyrim",play,171.0,0 -115167911,"Fallout 4",purchase,1.0,0 -115167911,"Fallout 4",play,114.0,0 -115167911,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -115167911,"METAL GEAR SOLID V THE PHANTOM PAIN",play,111.0,0 -115167911,"Middle-earth Shadow of Mordor",purchase,1.0,0 -115167911,"Middle-earth Shadow of Mordor",play,53.0,0 -115167911,"Far Cry 4",purchase,1.0,0 -115167911,"Far Cry 4",play,51.0,0 -115167911,"DARK SOULS II",purchase,1.0,0 -115167911,"DARK SOULS II",play,48.0,0 -115167911,"Unturned",purchase,1.0,0 -115167911,"Unturned",play,48.0,0 -115167911,"Just Cause 3",purchase,1.0,0 -115167911,"Just Cause 3",play,47.0,0 -115167911,"Wolfenstein The New Order",purchase,1.0,0 -115167911,"Wolfenstein The New Order",play,35.0,0 -115167911,"Assassin's Creed III",purchase,1.0,0 -115167911,"Assassin's Creed III",play,32.0,0 -115167911,"Tom Clancy's Rainbow Six Siege",purchase,1.0,0 -115167911,"Tom Clancy's Rainbow Six Siege",play,26.0,0 -115167911,"Just Cause 2",purchase,1.0,0 -115167911,"Just Cause 2",play,25.0,0 -115167911,"Saints Row IV",purchase,1.0,0 -115167911,"Saints Row IV",play,21.0,0 -115167911,"LEGO The Lord of the Rings",purchase,1.0,0 -115167911,"LEGO The Lord of the Rings",play,21.0,0 -115167911,"Company of Heroes 2",purchase,1.0,0 -115167911,"Company of Heroes 2",play,14.9,0 -115167911,"Counter-Strike Global Offensive",purchase,1.0,0 -115167911,"Counter-Strike Global Offensive",play,13.6,0 -115167911,"Assassins Creed Unity",purchase,1.0,0 -115167911,"Assassins Creed Unity",play,9.4,0 -115167911,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -115167911,"Divinity Original Sin Enhanced Edition",play,9.2,0 -115167911,"Portal 2",purchase,1.0,0 -115167911,"Portal 2",play,8.0,0 -115167911,"Dying Light",purchase,1.0,0 -115167911,"Dying Light",play,7.8,0 -115167911,"Insurgency",purchase,1.0,0 -115167911,"Insurgency",play,7.2,0 -115167911,"Divinity Original Sin",purchase,1.0,0 -115167911,"Divinity Original Sin",play,6.1,0 -115167911,"Wolfenstein The Old Blood ",purchase,1.0,0 -115167911,"Wolfenstein The Old Blood ",play,6.1,0 -115167911,"Assassin's Creed Revelations",purchase,1.0,0 -115167911,"Assassin's Creed Revelations",play,5.7,0 -115167911,"Half-Life 2",purchase,1.0,0 -115167911,"Half-Life 2",play,4.8,0 -115167911,"Team Fortress 2",purchase,1.0,0 -115167911,"Team Fortress 2",play,4.5,0 -115167911,"Endless Space",purchase,1.0,0 -115167911,"Endless Space",play,4.3,0 -115167911,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -115167911,"Tom Clancy's Ghost Recon Phantoms - EU",play,4.1,0 -115167911,"Besiege",purchase,1.0,0 -115167911,"Besiege",play,3.1,0 -115167911,"Heroes & Generals",purchase,1.0,0 -115167911,"Heroes & Generals",play,2.9,0 -115167911,"Total War ROME II - Emperor Edition",purchase,1.0,0 -115167911,"Total War ROME II - Emperor Edition",play,2.2,0 -115167911,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -115167911,"METAL GEAR SOLID V GROUND ZEROES",play,1.9,0 -115167911,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -115167911,"Just Cause 2 Multiplayer Mod",play,1.5,0 -115167911,"War Thunder",purchase,1.0,0 -115167911,"War Thunder",play,1.2,0 -115167911,"HAWKEN",purchase,1.0,0 -115167911,"HAWKEN",play,1.2,0 -115167911,"Saints Row Gat out of Hell",purchase,1.0,0 -115167911,"Saints Row Gat out of Hell",play,1.0,0 -115167911,"Grand Theft Auto San Andreas",purchase,1.0,0 -115167911,"Grand Theft Auto San Andreas",play,0.8,0 -115167911,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -115167911,"Rising Storm/Red Orchestra 2 Multiplayer",play,0.5,0 -115167911,"Hylics",purchase,1.0,0 -115167911,"Hylics",play,0.4,0 -115167911,"The Stalin Subway",purchase,1.0,0 -115167911,"The Stalin Subway",play,0.2,0 -115167911,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -115167911,"Fallout 3 - Game of the Year Edition",play,0.2,0 -115167911,"Grand Theft Auto San Andreas",purchase,1.0,0 -115167911,"Half-Life 2 Lost Coast",purchase,1.0,0 -115167911,"Iron Front D-Day DLC",purchase,1.0,0 -115167911,"Stronghold Kingdoms",purchase,1.0,0 -115167911,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -115167911,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -115167911,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -115167911,"The Witcher 3 Wild Hunt - Expansion Pass",purchase,1.0,0 -115167911,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -115167911,"Tom Clancy's Rainbow Six Vegas",purchase,1.0,0 -115167911,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -17556127,"Counter-Strike",purchase,1.0,0 -17556127,"Counter-Strike",play,0.4,0 -17556127,"Counter-Strike Condition Zero",purchase,1.0,0 -17556127,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -244936819,"Counter-Strike Global Offensive",purchase,1.0,0 -244936819,"Counter-Strike Global Offensive",play,2.0,0 -288385496,"Dota 2",purchase,1.0,0 -288385496,"Dota 2",play,0.6,0 -194432540,"Unturned",purchase,1.0,0 -194432540,"Unturned",play,7.2,0 -194432540,"Team Fortress 2",purchase,1.0,0 -194432540,"Team Fortress 2",play,4.1,0 -194432540,"Robocraft",purchase,1.0,0 -194432540,"Robocraft",play,3.9,0 -194432540,"APB Reloaded",purchase,1.0,0 -194432540,"APB Reloaded",play,2.0,0 -194432540,"BLOCKADE 3D",purchase,1.0,0 -194432540,"BLOCKADE 3D",play,1.9,0 -194432540,"WARMODE",purchase,1.0,0 -194432540,"WARMODE",play,1.8,0 -194432540,"Trove",purchase,1.0,0 -194432540,"Trove",play,1.3,0 -194432540,"Aura Kingdom",purchase,1.0,0 -194432540,"Aura Kingdom",play,1.1,0 -194432540,"Guns and Robots",purchase,1.0,0 -194432540,"Guns and Robots",play,0.9,0 -194432540,"Gotham City Impostors Free To Play",purchase,1.0,0 -194432540,"Gotham City Impostors Free To Play",play,0.5,0 -194432540,"Audition Online",purchase,1.0,0 -194432540,"Audition Online",play,0.4,0 -194432540,"Fiesta Online NA",purchase,1.0,0 -194432540,"Fiesta Online NA",play,0.3,0 -194432540,"Survarium",purchase,1.0,0 -194432540,"Survarium",play,0.3,0 -194432540,"Battle Nations",purchase,1.0,0 -194432540,"Elsword",purchase,1.0,0 -194432540,"The Lord of the Rings Online",purchase,1.0,0 -190721470,"The Walking Dead",purchase,1.0,0 -190721470,"The Walking Dead",play,0.3,0 -217968557,"Transformice",purchase,1.0,0 -217968557,"Unturned",purchase,1.0,0 -217539381,"Dota 2",purchase,1.0,0 -217539381,"Dota 2",play,0.5,0 -260813316,"Dota 2",purchase,1.0,0 -260813316,"Dota 2",play,10.4,0 -73754563,"Sid Meier's Civilization V",purchase,1.0,0 -73754563,"Sid Meier's Civilization V",play,5.2,0 -198584696,"Dota 2",purchase,1.0,0 -198584696,"Dota 2",play,1.9,0 -111182405,"Dota 2",purchase,1.0,0 -111182405,"Dota 2",play,1143.0,0 -111182405,"Counter-Strike Global Offensive",purchase,1.0,0 -111182405,"Counter-Strike Global Offensive",play,53.0,0 -111182405,"Killing Floor",purchase,1.0,0 -111182405,"Killing Floor",play,34.0,0 -111182405,"XCOM Enemy Unknown",purchase,1.0,0 -111182405,"XCOM Enemy Unknown",play,32.0,0 -111182405,"Terraria",purchase,1.0,0 -111182405,"Terraria",play,25.0,0 -111182405,"Dust An Elysian Tail",purchase,1.0,0 -111182405,"Dust An Elysian Tail",play,11.4,0 -111182405,"Serious Sam HD The First Encounter",purchase,1.0,0 -111182405,"Serious Sam HD The First Encounter",play,2.2,0 -111182405,"Serious Sam HD The Second Encounter",purchase,1.0,0 -111182405,"Serious Sam HD The Second Encounter",play,1.9,0 -111182405,"Trine",purchase,1.0,0 -111182405,"Trine",play,1.3,0 -111182405,"Audiosurf",purchase,1.0,0 -111182405,"Audiosurf",play,1.3,0 -111182405,"Bastion",purchase,1.0,0 -111182405,"Bastion",play,1.1,0 -111182405,"Garry's Mod",purchase,1.0,0 -111182405,"Garry's Mod",play,0.9,0 -111182405,"Alien Swarm",purchase,1.0,0 -111182405,"Alien Swarm",play,0.7,0 -111182405,"Team Fortress 2",purchase,1.0,0 -111182405,"Team Fortress 2",play,0.4,0 -111182405,"Portal",purchase,1.0,0 -111182405,"Portal",play,0.4,0 -111182405,"Serious Sam 3 BFE",purchase,1.0,0 -111182405,"Serious Sam 3 BFE",play,0.2,0 -111182405,"Defy Gravity",purchase,1.0,0 -111182405,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -111182405,"Portal 2",purchase,1.0,0 -111182405,"Serious Sam 2",purchase,1.0,0 -111182405,"Serious Sam The Random Encounter",purchase,1.0,0 -111182405,"Serious Sam Classic The First Encounter",purchase,1.0,0 -111182405,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -111182405,"Serious Sam Classics Revolution",purchase,1.0,0 -111182405,"Serious Sam Double D XXL",purchase,1.0,0 -111182405,"Tomb Raider",purchase,1.0,0 -111182405,"Trine 2",purchase,1.0,0 -111182405,"XCOM Enemy Within",purchase,1.0,0 -23432272,"Half-Life 2 Deathmatch",purchase,1.0,0 -23432272,"Half-Life 2 Episode One",purchase,1.0,0 -23432272,"Half-Life 2 Lost Coast",purchase,1.0,0 -23432272,"Half-Life Deathmatch Source",purchase,1.0,0 -289759310,"Life Is Strange",purchase,1.0,0 -289759310,"Life Is Strange",play,26.0,0 -289759310,"Brawlhalla",purchase,1.0,0 -186344581,"War Thunder",purchase,1.0,0 -186344581,"War Thunder",play,99.0,0 -186344581,"Terraria",purchase,1.0,0 -186344581,"Terraria",play,22.0,0 -186344581,"Project Zomboid",purchase,1.0,0 -186344581,"Project Zomboid",play,10.3,0 -186344581,"Face of Mankind",purchase,1.0,0 -186344581,"Face of Mankind",play,1.6,0 -186344581,"Unturned",purchase,1.0,0 -186344581,"Unturned",play,1.4,0 -186344581,"RPG MO",purchase,1.0,0 -186344581,"RPG MO",play,0.3,0 -186344581,"Pirates, Vikings, & Knights II",purchase,1.0,0 -186344581,"Robocraft",purchase,1.0,0 -168754318,"Neverwinter",purchase,1.0,0 -168754318,"Neverwinter",play,7.4,0 -168754318,"Path of Exile",purchase,1.0,0 -168754318,"Path of Exile",play,0.3,0 -168754318,"Blacklight Retribution",purchase,1.0,0 -146979551,"Cabela's Hunting Expeditions",purchase,1.0,0 -146979551,"Cabela's Hunting Expeditions",play,3.5,0 -146979551,"Dota 2",purchase,1.0,0 -146979551,"Dota 2",play,1.5,0 -284934852,"Team Fortress 2",purchase,1.0,0 -284934852,"Team Fortress 2",play,34.0,0 -284934852,"Mitos.is The Game",purchase,1.0,0 -284934852,"Mitos.is The Game",play,12.9,0 -284934852,"Rustbucket Rumble",purchase,1.0,0 -284934852,"Modular Combat",purchase,1.0,0 -284934852,"Transformice",purchase,1.0,0 -256216485,"ArcheAge",purchase,1.0,0 -256216485,"Mortal Online",purchase,1.0,0 -121199670,"Dota 2",purchase,1.0,0 -121199670,"Dota 2",play,6753.0,0 -121199670,"Counter-Strike Global Offensive",purchase,1.0,0 -121199670,"Counter-Strike Global Offensive",play,72.0,0 -121199670,"Left 4 Dead 2",purchase,1.0,0 -121199670,"Left 4 Dead 2",play,2.2,0 -94865453,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -94865453,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -39028341,"Counter-Strike",purchase,1.0,0 -39028341,"Counter-Strike",play,1497.0,0 -39028341,"Dota 2",purchase,1.0,0 -39028341,"Dota 2",play,1.3,0 -39028341,"Counter-Strike Condition Zero",purchase,1.0,0 -39028341,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -300757930,"Dota 2",purchase,1.0,0 -300757930,"Dota 2",play,0.4,0 -147795278,"Dota 2",purchase,1.0,0 -147795278,"Dota 2",play,0.3,0 -94231294,"The Elder Scrolls V Skyrim",purchase,1.0,0 -94231294,"The Elder Scrolls V Skyrim",play,91.0,0 -94231294,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -94231294,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -94231294,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -199013605,"Wolfenstein The New Order",purchase,1.0,0 -199013605,"Wolfenstein The New Order",play,4.3,0 -199013605,"Fallout 4",purchase,1.0,0 -199013605,"Fallout 4",play,3.3,0 -123423051,"Team Fortress 2",purchase,1.0,0 -123423051,"Team Fortress 2",play,0.3,0 -158447093,"Dota 2",purchase,1.0,0 -158447093,"Dota 2",play,6.3,0 -38523044,"RACE 07",purchase,1.0,0 -38523044,"RACE 07",play,1.3,0 -38523044,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -166899607,"Dota 2",purchase,1.0,0 -166899607,"Dota 2",play,3.8,0 -192031349,"Men of War Assault Squad 2",purchase,1.0,0 -192031349,"Men of War Assault Squad 2",play,120.0,0 -192031349,"Age of Empires II HD Edition",purchase,1.0,0 -192031349,"Age of Empires II HD Edition",play,38.0,0 -192031349,"Age of Empires II HD The Forgotten",purchase,1.0,0 -308327488,"Mitos.is The Game",purchase,1.0,0 -215022297,"Dota 2",purchase,1.0,0 -215022297,"Dota 2",play,3.2,0 -171846037,"Car Mechanic Simulator 2014",purchase,1.0,0 -171846037,"Car Mechanic Simulator 2014",play,2.3,0 -298666122,"Team Fortress 2",purchase,1.0,0 -298666122,"Team Fortress 2",play,19.0,0 -238169854,"Counter-Strike Global Offensive",purchase,1.0,0 -238169854,"Counter-Strike Global Offensive",play,396.0,0 -238169854,"Rocket League",purchase,1.0,0 -238169854,"Rocket League",play,33.0,0 -238169854,"Fallout 4",purchase,1.0,0 -238169854,"Fallout 4",play,29.0,0 -238169854,"Just Cause 3",purchase,1.0,0 -238169854,"Just Cause 3",play,12.7,0 -70737757,"Star Trek Online",purchase,1.0,0 -70737757,"Star Trek Online",play,105.0,0 -70737757,"Sid Meier's Civilization V",purchase,1.0,0 -70737757,"Sid Meier's Civilization V",play,74.0,0 -70737757,"Endless Space",purchase,1.0,0 -70737757,"Endless Space",play,4.9,0 -70737757,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -45532207,"Counter-Strike Source",purchase,1.0,0 -45532207,"Counter-Strike Source",play,897.0,0 -45532207,"Garry's Mod",purchase,1.0,0 -45532207,"Garry's Mod",play,173.0,0 -45532207,"Day of Defeat Source",purchase,1.0,0 -45532207,"Day of Defeat Source",play,22.0,0 -45532207,"Half-Life 2 Deathmatch",purchase,1.0,0 -45532207,"Half-Life 2 Deathmatch",play,6.5,0 -45532207,"Hunting Unlimited 2010",purchase,1.0,0 -45532207,"Hunting Unlimited 2010",play,4.1,0 -45532207,"Half-Life 2 Lost Coast",purchase,1.0,0 -45532207,"Half-Life 2 Lost Coast",play,3.5,0 -45532207,"Team Fortress 2",purchase,1.0,0 -45532207,"Team Fortress 2",play,3.3,0 -45532207,"Sniper Elite Nazi Zombie Army",purchase,1.0,0 -45532207,"Sniper Elite Nazi Zombie Army",play,0.3,0 -45532207,"Alien Swarm",purchase,1.0,0 -45532207,"Alien Swarm",play,0.2,0 -137075650,"Dota 2",purchase,1.0,0 -137075650,"Dota 2",play,7.6,0 -239318205,"Dota 2",purchase,1.0,0 -239318205,"Dota 2",play,0.2,0 -184493955,"Counter-Strike Global Offensive",purchase,1.0,0 -184493955,"Counter-Strike Global Offensive",play,103.0,0 -184493955,"Dota 2",purchase,1.0,0 -184493955,"Dota 2",play,3.1,0 -184493955,"Warframe",purchase,1.0,0 -262814808,"Dota 2",purchase,1.0,0 -262814808,"Dota 2",play,7.9,0 -262814808,"Warside",purchase,1.0,0 -262814808,"Warside",play,0.9,0 -262814808,"Deepworld",purchase,1.0,0 -262814808,"Deepworld",play,0.2,0 -262814808,"AdVenture Capitalist",purchase,1.0,0 -262814808,"Marvel Heroes 2015",purchase,1.0,0 -214281367,"Team Fortress 2",purchase,1.0,0 -214281367,"Team Fortress 2",play,1.1,0 -214281367,"Robocraft",purchase,1.0,0 -191979928,"Counter-Strike Global Offensive",purchase,1.0,0 -191979928,"Counter-Strike Global Offensive",play,263.0,0 -191979928,"The Crew",purchase,1.0,0 -191979928,"The Crew",play,238.0,0 -191979928,"Grand Theft Auto V",purchase,1.0,0 -191979928,"Grand Theft Auto V",play,150.0,0 -191979928,"Arma 3",purchase,1.0,0 -191979928,"Arma 3",play,138.0,0 -191979928,"Total War ROME II - Emperor Edition",purchase,1.0,0 -191979928,"Total War ROME II - Emperor Edition",play,122.0,0 -191979928,"MotoGP14",purchase,1.0,0 -191979928,"MotoGP14",play,82.0,0 -191979928,"Action! - Gameplay Recording and Streaming",purchase,1.0,0 -191979928,"Action! - Gameplay Recording and Streaming",play,57.0,0 -191979928,"DayZ",purchase,1.0,0 -191979928,"DayZ",play,50.0,0 -191979928,"ARK Survival Evolved",purchase,1.0,0 -191979928,"ARK Survival Evolved",play,47.0,0 -191979928,"PAYDAY 2",purchase,1.0,0 -191979928,"PAYDAY 2",play,24.0,0 -191979928,"H1Z1",purchase,1.0,0 -191979928,"H1Z1",play,13.9,0 -191979928,"GRID 2",purchase,1.0,0 -191979928,"GRID 2",play,10.3,0 -191979928,"Wargame Red Dragon",purchase,1.0,0 -191979928,"Wargame Red Dragon",play,7.9,0 -191979928,"Wargame AirLand Battle",purchase,1.0,0 -191979928,"Wargame AirLand Battle",play,7.5,0 -191979928,"Rise of Nations Extended Edition",purchase,1.0,0 -191979928,"Rise of Nations Extended Edition",play,6.4,0 -191979928,"Darksiders II",purchase,1.0,0 -191979928,"Darksiders II",play,5.9,0 -191979928,"Car Mechanic Simulator 2014",purchase,1.0,0 -191979928,"Car Mechanic Simulator 2014",play,3.0,0 -191979928,"Plague Inc Evolved",purchase,1.0,0 -191979928,"Plague Inc Evolved",play,2.7,0 -191979928,"RaceRoom Racing Experience ",purchase,1.0,0 -191979928,"RaceRoom Racing Experience ",play,2.3,0 -191979928,"Marvel Heroes 2015",purchase,1.0,0 -191979928,"Marvel Heroes 2015",play,2.2,0 -191979928,"Euro Truck Simulator 2",purchase,1.0,0 -191979928,"Euro Truck Simulator 2",play,1.4,0 -191979928,"Company of Heroes 2",purchase,1.0,0 -191979928,"Company of Heroes 2",play,1.3,0 -191979928,"Empire Total War",purchase,1.0,0 -191979928,"Empire Total War",play,0.8,0 -191979928,"Dota 2",purchase,1.0,0 -191979928,"Dota 2",play,0.8,0 -191979928,"Wargame European Escalation",purchase,1.0,0 -191979928,"Wargame European Escalation",play,0.8,0 -191979928,"Viking Battle for Asgard",purchase,1.0,0 -191979928,"Viking Battle for Asgard",play,0.7,0 -191979928,"Rome Total War",purchase,1.0,0 -191979928,"Rome Total War",play,0.6,0 -191979928,"Midnight Club II",purchase,1.0,0 -191979928,"Midnight Club II",play,0.5,0 -191979928,"Napoleon Total War",purchase,1.0,0 -191979928,"Napoleon Total War",play,0.4,0 -191979928,"Helicopter Simulator 2014 Search and Rescue",purchase,1.0,0 -191979928,"Helicopter Simulator 2014 Search and Rescue",play,0.4,0 -191979928,"Arma 2",purchase,1.0,0 -191979928,"Arma 2",play,0.3,0 -191979928,"Medieval II Total War",purchase,1.0,0 -191979928,"Medieval II Total War",play,0.3,0 -191979928,"Bus Driver",purchase,1.0,0 -191979928,"Bus Driver",play,0.2,0 -191979928,"AirBuccaneers",purchase,1.0,0 -191979928,"AirBuccaneers",play,0.2,0 -191979928,"H1Z1 Test Server",purchase,1.0,0 -191979928,"Tales Runner",purchase,1.0,0 -191979928,"Company of Heroes Opposing Fronts",purchase,1.0,0 -191979928,"War Thunder",purchase,1.0,0 -191979928,"Afterfall InSanity Extended Edition",purchase,1.0,0 -191979928,"America's Army 3",purchase,1.0,0 -191979928,"APB Reloaded",purchase,1.0,0 -191979928,"Archeblade",purchase,1.0,0 -191979928,"Arma 2 Operation Arrowhead",purchase,1.0,0 -191979928,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -191979928,"Arma 3 Zeus",purchase,1.0,0 -191979928,"BLOCKADE 3D",purchase,1.0,0 -191979928,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -191979928,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -191979928,"Company of Heroes",purchase,1.0,0 -191979928,"Company of Heroes (New Steam Version)",purchase,1.0,0 -191979928,"Company of Heroes Tales of Valor",purchase,1.0,0 -191979928,"Construction Machines 2014",purchase,1.0,0 -191979928,"Darksiders",purchase,1.0,0 -191979928,"Darksiders II Deathinitive Edition",purchase,1.0,0 -191979928,"Darksiders II Soundtrack",purchase,1.0,0 -191979928,"Darksiders Soundtrack",purchase,1.0,0 -191979928,"DCS World",purchase,1.0,0 -191979928,"Dizzel",purchase,1.0,0 -191979928,"Euro Truck Simulator",purchase,1.0,0 -191979928,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -191979928,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -191979928,"Farm Machines Championships 2014",purchase,1.0,0 -191979928,"FreeStyle2 Street Basketball",purchase,1.0,0 -191979928,"GRID 2 GTR Racing Pack",purchase,1.0,0 -191979928,"GunZ 2 The Second Duel",purchase,1.0,0 -191979928,"HAWKEN",purchase,1.0,0 -191979928,"Loadout",purchase,1.0,0 -191979928,"Path of Exile",purchase,1.0,0 -191979928,"Rise of Incarnates",purchase,1.0,0 -191979928,"Robocraft",purchase,1.0,0 -191979928,"Scania Truck Driving Simulator",purchase,1.0,0 -191979928,"Strife",purchase,1.0,0 -191979928,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -191979928,"Total War SHOGUN 2",purchase,1.0,0 -191979928,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -191979928,"Total War Battles SHOGUN",purchase,1.0,0 -191979928,"Trucks & Trailers",purchase,1.0,0 -191979928,"Unturned",purchase,1.0,0 -191979928,"Warframe",purchase,1.0,0 -191979928,"WTFast Gamers Private Network (GPN)",purchase,1.0,0 -299037840,"Dota 2",purchase,1.0,0 -299037840,"Dota 2",play,1.9,0 -299037840,"FreeStyle2 Street Basketball",purchase,1.0,0 -299037840,"FreeStyle2 Street Basketball",play,0.5,0 -299037840,"theHunter",purchase,1.0,0 -49624770,"Total War SHOGUN 2",purchase,1.0,0 -49624770,"Total War SHOGUN 2",play,109.0,0 -49624770,"Total War ROME II - Emperor Edition",purchase,1.0,0 -49624770,"Total War ROME II - Emperor Edition",play,86.0,0 -49624770,"The Elder Scrolls V Skyrim",purchase,1.0,0 -49624770,"The Elder Scrolls V Skyrim",play,83.0,0 -49624770,"Rocksmith 2014",purchase,1.0,0 -49624770,"Rocksmith 2014",play,74.0,0 -49624770,"Sleeping Dogs",purchase,1.0,0 -49624770,"Sleeping Dogs",play,34.0,0 -49624770,"Napoleon Total War",purchase,1.0,0 -49624770,"Napoleon Total War",play,13.4,0 -49624770,"Marvel Heroes 2015",purchase,1.0,0 -49624770,"Marvel Heroes 2015",play,3.9,0 -49624770,"Dragon Age Origins",purchase,1.0,0 -49624770,"Dragon Age Origins",play,0.6,0 -49624770,"Fractured Space",purchase,1.0,0 -49624770,"Fractured Space",play,0.3,0 -49624770,"Spoiler Alert",purchase,1.0,0 -49624770,"Spoiler Alert",play,0.3,0 -49624770,"Sonic Adventure DX",purchase,1.0,0 -49624770,"Sonic Adventure DX",play,0.2,0 -49624770,"Rise of Incarnates",purchase,1.0,0 -49624770,"Rise of Incarnates",play,0.1,0 -49624770,"Marvel Puzzle Quest",purchase,1.0,0 -49624770,"Marvel Puzzle Quest",play,0.1,0 -49624770,"Age of Empires II HD Edition",purchase,1.0,0 -49624770,"Bejeweled 3",purchase,1.0,0 -49624770,"Blackguards",purchase,1.0,0 -49624770,"Blackguards 2",purchase,1.0,0 -49624770,"Blackguards Untold Legends",purchase,1.0,0 -49624770,"Blades of Time",purchase,1.0,0 -49624770,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -49624770,"Company of Heroes 2",purchase,1.0,0 -49624770,"Crazy Taxi",purchase,1.0,0 -49624770,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -49624770,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -49624770,"Dead Space 2",purchase,1.0,0 -49624770,"Dismal Swamp DLC",purchase,1.0,0 -49624770,"Empire Total War",purchase,1.0,0 -49624770,"Gas Guzzlers Extreme",purchase,1.0,0 -49624770,"Heroes of Might & Magic III - HD Edition",purchase,1.0,0 -49624770,"Horizon",purchase,1.0,0 -49624770,"Limited Edition",purchase,1.0,0 -49624770,"Mass Effect 2",purchase,1.0,0 -49624770,"MEDIEVAL Total War - Gold Edition",purchase,1.0,0 -49624770,"Medieval II Total War",purchase,1.0,0 -49624770,"Medieval II Total War Kingdoms",purchase,1.0,0 -49624770,"Might & Magic Clash of Heroes",purchase,1.0,0 -49624770,"Might & Magic Heroes VI",purchase,1.0,0 -49624770,"NiGHTS into Dreams...",purchase,1.0,0 -49624770,"Nosgoth",purchase,1.0,0 -49624770,"Nuclear Dawn",purchase,1.0,0 -49624770,"Oddworld Abe's Oddysee",purchase,1.0,0 -49624770,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -49624770,"SEGA Bass Fishing",purchase,1.0,0 -49624770,"SHOGUN Total War - Gold Edition",purchase,1.0,0 -49624770,"Sid Meier's Civilization III Complete",purchase,1.0,0 -49624770,"Sid Meier's Civilization V",purchase,1.0,0 -49624770,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -49624770,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -49624770,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -49624770,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -49624770,"Sonic Generations",purchase,1.0,0 -49624770,"Space Channel 5 Part 2",purchase,1.0,0 -49624770,"StarDrive",purchase,1.0,0 -49624770,"Star Ruler",purchase,1.0,0 -49624770,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -49624770,"The Lost Crown",purchase,1.0,0 -49624770,"Thief",purchase,1.0,0 -49624770,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -49624770,"Viking Battle for Asgard",purchase,1.0,0 -49629862,"Counter-Strike",purchase,1.0,0 -49629862,"Counter-Strike",play,140.0,0 -49629862,"Day of Defeat",purchase,1.0,0 -49629862,"Day of Defeat",play,8.3,0 -49629862,"Counter-Strike Condition Zero",purchase,1.0,0 -49629862,"Counter-Strike Condition Zero",play,0.3,0 -49629862,"Deathmatch Classic",purchase,1.0,0 -49629862,"Deathmatch Classic",play,0.2,0 -49629862,"Ricochet",purchase,1.0,0 -49629862,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -159371621,"Euro Truck Simulator 2",purchase,1.0,0 -159371621,"Euro Truck Simulator 2",play,32.0,0 -159371621,"Farming Simulator 15",purchase,1.0,0 -159371621,"Farming Simulator 15",play,26.0,0 -159371621,"Counter-Strike Global Offensive",purchase,1.0,0 -159371621,"Counter-Strike Global Offensive",play,23.0,0 -159371621,"Left 4 Dead 2",purchase,1.0,0 -159371621,"Left 4 Dead 2",play,19.5,0 -159371621,"Saints Row The Third",purchase,1.0,0 -159371621,"Saints Row The Third",play,18.1,0 -159371621,"Car Mechanic Simulator 2014",purchase,1.0,0 -159371621,"Car Mechanic Simulator 2014",play,15.1,0 -159371621,"Bridge Constructor",purchase,1.0,0 -159371621,"Bridge Constructor",play,13.1,0 -159371621,"Saints Row IV",purchase,1.0,0 -159371621,"Saints Row IV",play,12.2,0 -159371621,"Plague Inc Evolved",purchase,1.0,0 -159371621,"Plague Inc Evolved",play,12.1,0 -159371621,"Far Cry 3",purchase,1.0,0 -159371621,"Far Cry 3",play,11.3,0 -159371621,"Borderlands 2",purchase,1.0,0 -159371621,"Borderlands 2",play,11.0,0 -159371621,"FlatOut Ultimate Carnage",purchase,1.0,0 -159371621,"FlatOut Ultimate Carnage",play,9.3,0 -159371621,"Dead Island",purchase,1.0,0 -159371621,"Dead Island",play,7.7,0 -159371621,"The Elder Scrolls V Skyrim",purchase,1.0,0 -159371621,"The Elder Scrolls V Skyrim",play,7.7,0 -159371621,"Mafia II",purchase,1.0,0 -159371621,"Mafia II",play,7.7,0 -159371621,"Need for Speed Hot Pursuit",purchase,1.0,0 -159371621,"Need for Speed Hot Pursuit",play,5.9,0 -159371621,"War Thunder",purchase,1.0,0 -159371621,"War Thunder",play,5.6,0 -159371621,"Terraria",purchase,1.0,0 -159371621,"Terraria",play,5.4,0 -159371621,"Dota 2",purchase,1.0,0 -159371621,"Dota 2",play,4.4,0 -159371621,"Banished",purchase,1.0,0 -159371621,"Banished",play,4.1,0 -159371621,"Outlast",purchase,1.0,0 -159371621,"Outlast",play,3.5,0 -159371621,"McPixel",purchase,1.0,0 -159371621,"McPixel",play,2.7,0 -159371621,"I am Bread",purchase,1.0,0 -159371621,"I am Bread",play,2.7,0 -159371621,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -159371621,"Microsoft Flight Simulator X Steam Edition",play,2.5,0 -159371621,"RACE 07",purchase,1.0,0 -159371621,"RACE 07",play,2.3,0 -159371621,"Pid ",purchase,1.0,0 -159371621,"Pid ",play,2.0,0 -159371621,"Starbound",purchase,1.0,0 -159371621,"Starbound",play,1.7,0 -159371621,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -159371621,"Burnout Paradise The Ultimate Box",play,1.2,0 -159371621,"Trainz Simulator 12",purchase,1.0,0 -159371621,"Trainz Simulator 12",play,1.0,0 -159371621,"Arma Cold War Assault",purchase,1.0,0 -159371621,"Arma Cold War Assault",play,0.8,0 -159371621,"Farming Simulator 2013",purchase,1.0,0 -159371621,"Farming Simulator 2013",play,0.5,0 -159371621,"Crash Time II",purchase,1.0,0 -159371621,"Crash Time II",play,0.5,0 -159371621,"Space Engineers",purchase,1.0,0 -159371621,"Space Engineers",play,0.3,0 -159371621,"Warehouse and Logistics Simulator",purchase,1.0,0 -159371621,"Warehouse and Logistics Simulator",play,0.2,0 -159371621,"Survarium",purchase,1.0,0 -159371621,"Survarium",play,0.2,0 -159371621,"Counter-Strike Nexon Zombies",purchase,1.0,0 -159371621,"Counter-Strike Nexon Zombies",play,0.1,0 -159371621,"Dead Horde",purchase,1.0,0 -159371621,"Dead Horde",play,0.1,0 -159371621,"EVGA PrecisionX 16",purchase,1.0,0 -159371621,"EVGA PrecisionX 16",play,0.1,0 -159371621,"Dino D-Day",purchase,1.0,0 -159371621,"Dino D-Day",play,0.1,0 -159371621,"Trapped Dead",purchase,1.0,0 -159371621,"Trapped Dead",play,0.1,0 -159371621,"Just Cause 2",purchase,1.0,0 -159371621,"Just Cause 2",play,0.1,0 -159371621,"GTR Evolution",purchase,1.0,0 -159371621,"1953 - KGB Unleashed",purchase,1.0,0 -159371621,"Afterfall InSanity Extended Edition",purchase,1.0,0 -159371621,"Amnesia The Dark Descent",purchase,1.0,0 -159371621,"Canyon Capers",purchase,1.0,0 -159371621,"Chip",purchase,1.0,0 -159371621,"Clutch",purchase,1.0,0 -159371621,"DCS World",purchase,1.0,0 -159371621,"East India Company Gold",purchase,1.0,0 -159371621,"Enclave",purchase,1.0,0 -159371621,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -159371621,"Far Cry",purchase,1.0,0 -159371621,"Far Cry 2",purchase,1.0,0 -159371621,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -159371621,"Far Cry 3 Blood Dragon",purchase,1.0,0 -159371621,"Greed Black Border",purchase,1.0,0 -159371621,"Holy Avatar vs. Maidens of the Dead",purchase,1.0,0 -159371621,"KnightShift",purchase,1.0,0 -159371621,"Metro 2033",purchase,1.0,0 -159371621,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -159371621,"Outlast Whistleblower DLC",purchase,1.0,0 -159371621,"PAYDAY The Heist",purchase,1.0,0 -159371621,"Pirates of Black Cove Gold",purchase,1.0,0 -159371621,"RaceRoom Racing Experience ",purchase,1.0,0 -159371621,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -159371621,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -159371621,"Shattered Haven",purchase,1.0,0 -159371621,"Starbound - Unstable",purchase,1.0,0 -159371621,"Stealth Inc 2",purchase,1.0,0 -159371621,"Teleglitch Die More Edition",purchase,1.0,0 -159371621,"The Cat Lady",purchase,1.0,0 -159371621,"Two Worlds Epic Edition",purchase,1.0,0 -159371621,"Unturned",purchase,1.0,0 -159371621,"Warehouse and Logistics Simulator DLC Hell's Warehouse",purchase,1.0,0 -159371621,"Weird Worlds Return to Infinite Space",purchase,1.0,0 -159371621,"Zombie Bowl-O-Rama",purchase,1.0,0 -308468736,"Magic Duels",purchase,1.0,0 -308468736,"Magic Duels",play,0.7,0 -308468736,"War Thunder",purchase,1.0,0 -308468736,"War Thunder",play,0.6,0 -308468736,"Metal War Online Retribution",purchase,1.0,0 -37468189,"Counter-Strike Source",purchase,1.0,0 -37468189,"Counter-Strike Source",play,41.0,0 -37468189,"Counter-Strike Global Offensive",purchase,1.0,0 -37468189,"Counter-Strike Global Offensive",play,1.5,0 -37468189,"Portal",purchase,1.0,0 -37468189,"Portal",play,0.2,0 -152956403,"Team Fortress 2",purchase,1.0,0 -152956403,"Team Fortress 2",play,91.0,0 -152956403,"No More Room in Hell",purchase,1.0,0 -152956403,"No More Room in Hell",play,45.0,0 -152956403,"Unturned",purchase,1.0,0 -152956403,"Unturned",play,16.0,0 -152956403,"Warframe",purchase,1.0,0 -152956403,"Warframe",play,15.7,0 -152956403,"Archeblade",purchase,1.0,0 -152956403,"Archeblade",play,14.9,0 -152956403,"GunZ 2 The Second Duel",purchase,1.0,0 -152956403,"GunZ 2 The Second Duel",play,6.8,0 -152956403,"APB Reloaded",purchase,1.0,0 -152956403,"APB Reloaded",play,6.2,0 -152956403,"Run and Fire",purchase,1.0,0 -152956403,"Run and Fire",play,2.6,0 -152956403,"Fistful of Frags",purchase,1.0,0 -152956403,"Fistful of Frags",play,1.8,0 -152956403,"Sakura Clicker",purchase,1.0,0 -152956403,"Sakura Clicker",play,1.8,0 -152956403,"BLOCKADE 3D",purchase,1.0,0 -152956403,"BLOCKADE 3D",play,1.2,0 -152956403,"Brick-Force",purchase,1.0,0 -152956403,"Brick-Force",play,1.0,0 -152956403,"Cry of Fear",purchase,1.0,0 -152956403,"Cry of Fear",play,0.9,0 -152956403,"Uncrowded",purchase,1.0,0 -152956403,"Uncrowded",play,0.8,0 -152956403,"Eternal Senia",purchase,1.0,0 -152956403,"Eternal Senia",play,0.6,0 -152956403,"Aftermath",purchase,1.0,0 -152956403,"Aftermath",play,0.5,0 -152956403,"theHunter",purchase,1.0,0 -152956403,"theHunter",play,0.5,0 -152956403,"La Tale",purchase,1.0,0 -152956403,"La Tale",play,0.4,0 -152956403,"sZone-Online",purchase,1.0,0 -152956403,"sZone-Online",play,0.4,0 -152956403,"Sunrider Mask of Arcadius",purchase,1.0,0 -152956403,"Sunrider Mask of Arcadius",play,0.4,0 -152956403,"Warface",purchase,1.0,0 -152956403,"Warface",play,0.3,0 -152956403,"Saints Row IV Inauguration Station",purchase,1.0,0 -152956403,"Saints Row IV Inauguration Station",play,0.1,0 -152956403,"Dirty Bomb",purchase,1.0,0 -152956403,"Robocraft",purchase,1.0,0 -152956403,"Trove",purchase,1.0,0 -152956403,"Rise of Incarnates",purchase,1.0,0 -152956403,"Aura Kingdom",purchase,1.0,0 -152956403,"NEOTOKYO",purchase,1.0,0 -152956403,"Heroes & Generals",purchase,1.0,0 -152956403,"Dungeon Defenders II",purchase,1.0,0 -152956403,"Ascend Hand of Kul",purchase,1.0,0 -152956403,"Elsword",purchase,1.0,0 -152956403,"Gotham City Impostors Free To Play",purchase,1.0,0 -152956403,"Killing Floor - Toy Master",purchase,1.0,0 -89524281,"Team Fortress 2",purchase,1.0,0 -89524281,"Team Fortress 2",play,17.3,0 -211899679,"Dota 2",purchase,1.0,0 -211899679,"Dota 2",play,79.0,0 -29753085,"Counter-Strike Source",purchase,1.0,0 -29753085,"Counter-Strike Source",play,460.0,0 -29753085,"Left 4 Dead 2",purchase,1.0,0 -29753085,"Left 4 Dead 2",play,166.0,0 -29753085,"Dragon Age Origins",purchase,1.0,0 -29753085,"Dragon Age Origins",play,165.0,0 -29753085,"Darksiders II",purchase,1.0,0 -29753085,"Darksiders II",play,110.0,0 -29753085,"Left 4 Dead",purchase,1.0,0 -29753085,"Left 4 Dead",play,88.0,0 -29753085,"Magicka",purchase,1.0,0 -29753085,"Magicka",play,79.0,0 -29753085,"Darksiders",purchase,1.0,0 -29753085,"Darksiders",play,72.0,0 -29753085,"Transformers War for Cybertron",purchase,1.0,0 -29753085,"Transformers War for Cybertron",play,25.0,0 -29753085,"Assassin's Creed II",purchase,1.0,0 -29753085,"Assassin's Creed II",play,23.0,0 -29753085,"Call of Duty Modern Warfare 3",purchase,1.0,0 -29753085,"Call of Duty Modern Warfare 3",play,13.9,0 -29753085,"Worms Reloaded",purchase,1.0,0 -29753085,"Worms Reloaded",play,12.1,0 -29753085,"Solar 2",purchase,1.0,0 -29753085,"Solar 2",play,6.6,0 -29753085,"BioShock 2",purchase,1.0,0 -29753085,"BioShock 2",play,4.6,0 -29753085,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -29753085,"The Witcher 2 Assassins of Kings Enhanced Edition",play,4.3,0 -29753085,"Hydrophobia Prophecy",purchase,1.0,0 -29753085,"Hydrophobia Prophecy",play,1.0,0 -29753085,"Counter-Strike",purchase,1.0,0 -29753085,"Counter-Strike",play,0.9,0 -29753085,"Mortal Kombat Kollection",purchase,1.0,0 -29753085,"Mortal Kombat Kollection",play,0.3,0 -29753085,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -29753085,"Call of Duty Modern Warfare 3 - Multiplayer",play,0.1,0 -29753085,"Aliens vs. Predator",purchase,1.0,0 -29753085,"Alpha Protocol",purchase,1.0,0 -29753085,"Amnesia The Dark Descent",purchase,1.0,0 -29753085,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -29753085,"BioShock",purchase,1.0,0 -29753085,"Borderlands",purchase,1.0,0 -29753085,"Call of Juarez Bound in Blood",purchase,1.0,0 -29753085,"Clive Barker's Jericho",purchase,1.0,0 -29753085,"Company of Heroes",purchase,1.0,0 -29753085,"Company of Heroes (New Steam Version)",purchase,1.0,0 -29753085,"Company of Heroes Opposing Fronts",purchase,1.0,0 -29753085,"Company of Heroes Tales of Valor",purchase,1.0,0 -29753085,"Counter-Strike Condition Zero",purchase,1.0,0 -29753085,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -29753085,"Crysis",purchase,1.0,0 -29753085,"Day of Defeat Source",purchase,1.0,0 -29753085,"Dead Space",purchase,1.0,0 -29753085,"Dead Space 2",purchase,1.0,0 -29753085,"DiRT",purchase,1.0,0 -29753085,"DiRT 2",purchase,1.0,0 -29753085,"Dragon Age Origins - Awakening",purchase,1.0,0 -29753085,"Enclave",purchase,1.0,0 -29753085,"F.E.A.R.",purchase,1.0,0 -29753085,"F.E.A.R. Extraction Point",purchase,1.0,0 -29753085,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -29753085,"Far Cry",purchase,1.0,0 -29753085,"Far Cry 2",purchase,1.0,0 -29753085,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -29753085,"Garry's Mod",purchase,1.0,0 -29753085,"Grand Theft Auto",purchase,1.0,0 -29753085,"Grand Theft Auto 2",purchase,1.0,0 -29753085,"Grand Theft Auto San Andreas",purchase,1.0,0 -29753085,"Grand Theft Auto San Andreas",purchase,1.0,0 -29753085,"Grand Theft Auto Vice City",purchase,1.0,0 -29753085,"Grand Theft Auto Vice City",purchase,1.0,0 -29753085,"Grand Theft Auto III",purchase,1.0,0 -29753085,"Grand Theft Auto III",purchase,1.0,0 -29753085,"GRID",purchase,1.0,0 -29753085,"Half-Life 2 Deathmatch",purchase,1.0,0 -29753085,"Half-Life 2 Episode One",purchase,1.0,0 -29753085,"Half-Life 2 Lost Coast",purchase,1.0,0 -29753085,"Half-Life Deathmatch Source",purchase,1.0,0 -29753085,"Killing Floor",purchase,1.0,0 -29753085,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -29753085,"King Arthur Collection",purchase,1.0,0 -29753085,"Magicka Final Frontier",purchase,1.0,0 -29753085,"Magicka Nippon",purchase,1.0,0 -29753085,"Magicka Party Robes",purchase,1.0,0 -29753085,"Magicka Vietnam",purchase,1.0,0 -29753085,"Magicka Wizard's Survival Kit",purchase,1.0,0 -29753085,"Metro 2033",purchase,1.0,0 -29753085,"Mirror's Edge",purchase,1.0,0 -29753085,"Need for Speed SHIFT",purchase,1.0,0 -29753085,"Need for Speed Undercover",purchase,1.0,0 -29753085,"Overlord",purchase,1.0,0 -29753085,"Overlord Raising Hell",purchase,1.0,0 -29753085,"Overlord II",purchase,1.0,0 -29753085,"Painkiller Black Edition",purchase,1.0,0 -29753085,"Painkiller Redemption",purchase,1.0,0 -29753085,"Painkiller Resurrection",purchase,1.0,0 -29753085,"Painkiller Overdose",purchase,1.0,0 -29753085,"Portal",purchase,1.0,0 -29753085,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -29753085,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -29753085,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -29753085,"Section 8 Prejudice",purchase,1.0,0 -29753085,"SpellForce 2 Gold Edition",purchase,1.0,0 -29753085,"SpellForce Platinum Edition",purchase,1.0,0 -29753085,"Star Ruler",purchase,1.0,0 -29753085,"The Club",purchase,1.0,0 -101240143,"Dota 2",purchase,1.0,0 -101240143,"Dota 2",play,0.6,0 -184568310,"Heroes & Generals",purchase,1.0,0 -119937035,"Garry's Mod",purchase,1.0,0 -119937035,"Garry's Mod",play,3667.0,0 -119937035,"Team Fortress 2",purchase,1.0,0 -119937035,"Team Fortress 2",play,184.0,0 -119937035,"Counter-Strike Global Offensive",purchase,1.0,0 -119937035,"Counter-Strike Global Offensive",play,72.0,0 -119937035,"Robocraft",purchase,1.0,0 -119937035,"Robocraft",play,49.0,0 -119937035,"Warframe",purchase,1.0,0 -119937035,"Warframe",play,32.0,0 -119937035,"Left 4 Dead 2",purchase,1.0,0 -119937035,"Left 4 Dead 2",play,24.0,0 -119937035,"MicroVolts Surge",purchase,1.0,0 -119937035,"MicroVolts Surge",play,8.1,0 -119937035,"Space Engineers",purchase,1.0,0 -119937035,"Space Engineers",play,7.7,0 -119937035,"Tactical Intervention",purchase,1.0,0 -119937035,"Tactical Intervention",play,6.3,0 -119937035,"Crash Time II",purchase,1.0,0 -119937035,"Crash Time II",play,1.1,0 -119937035,"HAWKEN",purchase,1.0,0 -119937035,"HAWKEN",play,0.9,0 -119937035,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -119937035,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.7,0 -119937035,"No More Room in Hell",purchase,1.0,0 -119937035,"No More Room in Hell",play,0.4,0 -119937035,"Arma 2 DayZ Mod",purchase,1.0,0 -119937035,"Arma 2 DayZ Mod",play,0.2,0 -119937035,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -119937035,"A.V.A - Alliance of Valiant Arms",play,0.1,0 -119937035,"Dead Island Epidemic",purchase,1.0,0 -119937035,"Dead Island Epidemic",play,0.1,0 -119937035,"Arma 2 Operation Arrowhead",purchase,1.0,0 -119937035,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -119937035,"Arma 2",purchase,1.0,0 -119937035,"Afterfall InSanity Extended Edition",purchase,1.0,0 -119937035,"Warface",purchase,1.0,0 -53296539,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -53296539,"Warhammer 40,000 Dawn of War II",play,73.0,0 -63454504,"Alien Swarm",purchase,1.0,0 -63454504,"Alien Swarm",play,3.0,0 -63454504,"Serious Sam HD The Second Encounter",purchase,1.0,0 -63454504,"Serious Sam HD The Second Encounter",play,0.9,0 -63454504,"Portal",purchase,1.0,0 -63454504,"Portal",play,0.1,0 -309903146,"Dota 2",purchase,1.0,0 -309903146,"Dota 2",play,0.2,0 -243077634,"BLOCKADE 3D",purchase,1.0,0 -243077634,"BLOCKADE 3D",play,10.3,0 -243077634,"WARMODE",purchase,1.0,0 -243077634,"WARMODE",play,6.5,0 -243077634,"Magicka Wizard Wars",purchase,1.0,0 -243077634,"Magicka Wizard Wars",play,2.0,0 -124725852,"Fallout New Vegas",purchase,1.0,0 -124725852,"Fallout New Vegas",play,284.0,0 -124725852,"Fallout 4",purchase,1.0,0 -124725852,"Fallout 4",play,134.0,0 -124725852,"Mount & Blade Warband",purchase,1.0,0 -124725852,"Mount & Blade Warband",play,98.0,0 -124725852,"Sid Meier's Civilization V",purchase,1.0,0 -124725852,"Sid Meier's Civilization V",play,94.0,0 -124725852,"Garry's Mod",purchase,1.0,0 -124725852,"Garry's Mod",play,75.0,0 -124725852,"Bejeweled 3",purchase,1.0,0 -124725852,"Bejeweled 3",play,45.0,0 -124725852,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -124725852,"RollerCoaster Tycoon 3 Platinum!",play,40.0,0 -124725852,"Kingdom Rush",purchase,1.0,0 -124725852,"Kingdom Rush",play,32.0,0 -124725852,"Arma 2 Operation Arrowhead",purchase,1.0,0 -124725852,"Arma 2 Operation Arrowhead",play,27.0,0 -124725852,"Don't Starve",purchase,1.0,0 -124725852,"Don't Starve",play,26.0,0 -124725852,"Cities Skylines",purchase,1.0,0 -124725852,"Cities Skylines",play,24.0,0 -124725852,"Insurgency",purchase,1.0,0 -124725852,"Insurgency",play,19.8,0 -124725852,"Terraria",purchase,1.0,0 -124725852,"Terraria",play,16.7,0 -124725852,"Counter-Strike Global Offensive",purchase,1.0,0 -124725852,"Counter-Strike Global Offensive",play,16.7,0 -124725852,"Far Cry 3 Blood Dragon",purchase,1.0,0 -124725852,"Far Cry 3 Blood Dragon",play,16.0,0 -124725852,"No More Room in Hell",purchase,1.0,0 -124725852,"No More Room in Hell",play,12.8,0 -124725852,"Euro Truck Simulator 2",purchase,1.0,0 -124725852,"Euro Truck Simulator 2",play,11.4,0 -124725852,"Star Wars - Battlefront II",purchase,1.0,0 -124725852,"Star Wars - Battlefront II",play,10.7,0 -124725852,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -124725852,"METAL GEAR SOLID V THE PHANTOM PAIN",play,10.0,0 -124725852,"RPG Maker 2000",purchase,1.0,0 -124725852,"RPG Maker 2000",play,9.8,0 -124725852,"Unturned",purchase,1.0,0 -124725852,"Unturned",play,9.5,0 -124725852,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -124725852,"Fallout 3 - Game of the Year Edition",play,8.8,0 -124725852,"GameGuru",purchase,1.0,0 -124725852,"GameGuru",play,8.8,0 -124725852,"Far Cry 2",purchase,1.0,0 -124725852,"Far Cry 2",play,7.9,0 -124725852,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -124725852,"Rising Storm/Red Orchestra 2 Multiplayer",play,7.4,0 -124725852,"Rogue Shooter The FPS Roguelike",purchase,1.0,0 -124725852,"Rogue Shooter The FPS Roguelike",play,7.4,0 -124725852,"Last Word",purchase,1.0,0 -124725852,"Last Word",play,6.9,0 -124725852,"RPG Maker 2003",purchase,1.0,0 -124725852,"RPG Maker 2003",play,6.6,0 -124725852,"War in a Box Paper Tanks",purchase,1.0,0 -124725852,"War in a Box Paper Tanks",play,6.3,0 -124725852,"Grow Home",purchase,1.0,0 -124725852,"Grow Home",play,6.1,0 -124725852,"PAYDAY 2",purchase,1.0,0 -124725852,"PAYDAY 2",play,6.0,0 -124725852,"Killing Floor",purchase,1.0,0 -124725852,"Killing Floor",play,5.5,0 -124725852,"Far Cry 3",purchase,1.0,0 -124725852,"Far Cry 3",play,5.4,0 -124725852,"10 Second Ninja",purchase,1.0,0 -124725852,"10 Second Ninja",play,5.4,0 -124725852,"Grand Theft Auto IV",purchase,1.0,0 -124725852,"Grand Theft Auto IV",play,4.9,0 -124725852,"Portal 2",purchase,1.0,0 -124725852,"Portal 2",play,4.6,0 -124725852,"Left 4 Dead 2",purchase,1.0,0 -124725852,"Left 4 Dead 2",play,4.4,0 -124725852,"Remnants Of Isolation",purchase,1.0,0 -124725852,"Remnants Of Isolation",play,3.9,0 -124725852,"ORION Prelude",purchase,1.0,0 -124725852,"ORION Prelude",play,3.9,0 -124725852,"RPG Maker XP",purchase,1.0,0 -124725852,"RPG Maker XP",play,3.4,0 -124725852,"Survivalist",purchase,1.0,0 -124725852,"Survivalist",play,3.2,0 -124725852,"Day of Defeat Source",purchase,1.0,0 -124725852,"Day of Defeat Source",play,2.8,0 -124725852,"Half-Life 2 Deathmatch",purchase,1.0,0 -124725852,"Half-Life 2 Deathmatch",play,2.6,0 -124725852,"Commando Jack",purchase,1.0,0 -124725852,"Commando Jack",play,2.4,0 -124725852,"Savage Lands",purchase,1.0,0 -124725852,"Savage Lands",play,2.3,0 -124725852,"Worms Armageddon",purchase,1.0,0 -124725852,"Worms Armageddon",play,2.3,0 -124725852,"Portal",purchase,1.0,0 -124725852,"Portal",play,2.3,0 -124725852,"Arma 2",purchase,1.0,0 -124725852,"Arma 2",play,2.2,0 -124725852,"Counter-Strike Source",purchase,1.0,0 -124725852,"Counter-Strike Source",play,2.2,0 -124725852,"Shark Attack Deathmatch 2",purchase,1.0,0 -124725852,"Shark Attack Deathmatch 2",play,2.2,0 -124725852,"Goat Simulator",purchase,1.0,0 -124725852,"Goat Simulator",play,2.2,0 -124725852,"Race The Sun",purchase,1.0,0 -124725852,"Race The Sun",play,1.9,0 -124725852,"Spoiler Alert",purchase,1.0,0 -124725852,"Spoiler Alert",play,1.9,0 -124725852,"Dragon Age Origins",purchase,1.0,0 -124725852,"Dragon Age Origins",play,1.8,0 -124725852,"GRID 2",purchase,1.0,0 -124725852,"GRID 2",play,1.8,0 -124725852,"GRAV",purchase,1.0,0 -124725852,"GRAV",play,1.7,0 -124725852,"Zeno Clash",purchase,1.0,0 -124725852,"Zeno Clash",play,1.4,0 -124725852,"Far Cry",purchase,1.0,0 -124725852,"Far Cry",play,1.3,0 -124725852,"DiRT Showdown",purchase,1.0,0 -124725852,"DiRT Showdown",play,1.0,0 -124725852,"Yury",purchase,1.0,0 -124725852,"Yury",play,1.0,0 -124725852,"Dead Effect",purchase,1.0,0 -124725852,"Dead Effect",play,0.9,0 -124725852,"Team Fortress Classic",purchase,1.0,0 -124725852,"Team Fortress Classic",play,0.8,0 -124725852,"Stealth Bastard Deluxe",purchase,1.0,0 -124725852,"Stealth Bastard Deluxe",play,0.8,0 -124725852,"Half-Life 2",purchase,1.0,0 -124725852,"Half-Life 2",play,0.8,0 -124725852,"Heroes & Generals",purchase,1.0,0 -124725852,"Heroes & Generals",play,0.7,0 -124725852,"Jagged Alliance Crossfire",purchase,1.0,0 -124725852,"Jagged Alliance Crossfire",play,0.7,0 -124725852,"Axis Game Factory's AGFPRO 3.0",purchase,1.0,0 -124725852,"Axis Game Factory's AGFPRO 3.0",play,0.7,0 -124725852,"Worms Clan Wars",purchase,1.0,0 -124725852,"Worms Clan Wars",play,0.7,0 -124725852,"Half-Life",purchase,1.0,0 -124725852,"Half-Life",play,0.6,0 -124725852,"Fancy Skulls",purchase,1.0,0 -124725852,"Fancy Skulls",play,0.6,0 -124725852,"Team Fortress 2",purchase,1.0,0 -124725852,"Team Fortress 2",play,0.5,0 -124725852,"Half-Life Source",purchase,1.0,0 -124725852,"Half-Life Source",play,0.5,0 -124725852,"Gun Monkeys",purchase,1.0,0 -124725852,"Gun Monkeys",play,0.5,0 -124725852,"Hacker Evolution",purchase,1.0,0 -124725852,"Hacker Evolution",play,0.5,0 -124725852,"Survarium",purchase,1.0,0 -124725852,"Survarium",play,0.4,0 -124725852,"Wild Warfare",purchase,1.0,0 -124725852,"Wild Warfare",play,0.4,0 -124725852,"Galaxy on Fire 2 Full HD",purchase,1.0,0 -124725852,"Galaxy on Fire 2 Full HD",play,0.4,0 -124725852,"Colin McRae Rally",purchase,1.0,0 -124725852,"Colin McRae Rally",play,0.4,0 -124725852,"System Shock 2",purchase,1.0,0 -124725852,"System Shock 2",play,0.4,0 -124725852,"Another Perspective",purchase,1.0,0 -124725852,"Another Perspective",play,0.3,0 -124725852,"Ben There, Dan That!",purchase,1.0,0 -124725852,"Ben There, Dan That!",play,0.3,0 -124725852,"Savant - Ascent",purchase,1.0,0 -124725852,"Savant - Ascent",play,0.3,0 -124725852,"Organic Panic",purchase,1.0,0 -124725852,"Organic Panic",play,0.3,0 -124725852,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -124725852,"Counter-Strike Condition Zero Deleted Scenes",play,0.3,0 -124725852,"Trove",purchase,1.0,0 -124725852,"Trove",play,0.3,0 -124725852,"LA Cops",purchase,1.0,0 -124725852,"LA Cops",play,0.2,0 -124725852,"Counter-Strike",purchase,1.0,0 -124725852,"Counter-Strike",play,0.2,0 -124725852,"Combat Wings Battle of Britain",purchase,1.0,0 -124725852,"Combat Wings Battle of Britain",play,0.2,0 -124725852,"Counter-Strike Condition Zero",purchase,1.0,0 -124725852,"Counter-Strike Condition Zero",play,0.2,0 -124725852,"8BitMMO",purchase,1.0,0 -124725852,"8BitMMO",play,0.2,0 -124725852,"Realm of the Mad God",purchase,1.0,0 -124725852,"Realm of the Mad God",play,0.1,0 -124725852,"Death Ray Manta",purchase,1.0,0 -124725852,"Time Gentlemen, Please!",purchase,1.0,0 -124725852,"Half-Life Deathmatch Source",purchase,1.0,0 -124725852,"Zeno Clash 2",purchase,1.0,0 -124725852,"Ricochet",purchase,1.0,0 -124725852,"Left 4 Dead",purchase,1.0,0 -124725852,"Deathmatch Classic",purchase,1.0,0 -124725852,"Arma 2 DayZ Mod",purchase,1.0,0 -124725852,"Afterfall InSanity Extended Edition",purchase,1.0,0 -124725852,"Alien Breed 2 Assault",purchase,1.0,0 -124725852,"Alien Breed 3 Descent",purchase,1.0,0 -124725852,"Alien Breed Impact",purchase,1.0,0 -124725852,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -124725852,"Betrayer",purchase,1.0,0 -124725852,"Day of Defeat",purchase,1.0,0 -124725852,"Dead Space 2",purchase,1.0,0 -124725852,"Dino D-Day",purchase,1.0,0 -124725852,"Disciples III Renaissance",purchase,1.0,0 -124725852,"Don't Starve Reign of Giants",purchase,1.0,0 -124725852,"Don't Starve Together Beta",purchase,1.0,0 -124725852,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -124725852,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -124725852,"Fallout New Vegas Dead Money",purchase,1.0,0 -124725852,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -124725852,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -124725852,"Football Superstars",purchase,1.0,0 -124725852,"Frozen Synapse Prime",purchase,1.0,0 -124725852,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -124725852,"Half-Life 2 Episode One",purchase,1.0,0 -124725852,"Half-Life 2 Episode Two",purchase,1.0,0 -124725852,"Half-Life 2 Lost Coast",purchase,1.0,0 -124725852,"Half-Life Blue Shift",purchase,1.0,0 -124725852,"Half-Life Opposing Force",purchase,1.0,0 -124725852,"Hard Reset",purchase,1.0,0 -124725852,"Hard Reset Exile DLC",purchase,1.0,0 -124725852,"Hospital Tycoon",purchase,1.0,0 -124725852,"Iron Grip Warlord",purchase,1.0,0 -124725852,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -124725852,"Labyrinthine Dreams",purchase,1.0,0 -124725852,"Light",purchase,1.0,0 -124725852,"Mass Effect 2",purchase,1.0,0 -124725852,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -124725852,"Operation Flashpoint Red River",purchase,1.0,0 -124725852,"Overlord",purchase,1.0,0 -124725852,"Pressure",purchase,1.0,0 -124725852,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -124725852,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -124725852,"Sniper Ghost Warrior",purchase,1.0,0 -124725852,"Stealth Inc 2",purchase,1.0,0 -124725852,"The First Templar",purchase,1.0,0 -124725852,"Tower Wars",purchase,1.0,0 -124725852,"Tropico",purchase,1.0,0 -124725852,"Tropico 2 Pirate Cove",purchase,1.0,0 -124725852,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -124725852,"Tropico 3 Absolute Power",purchase,1.0,0 -124725852,"Weird Worlds Return to Infinite Space",purchase,1.0,0 -124725852,"Worms",purchase,1.0,0 -124725852,"Worms Crazy Golf",purchase,1.0,0 -124725852,"Xotic",purchase,1.0,0 -154940949,"Counter-Strike Global Offensive",purchase,1.0,0 -154940949,"Counter-Strike Global Offensive",play,319.0,0 -154940949,"Borderlands The Pre-Sequel",purchase,1.0,0 -154940949,"Borderlands The Pre-Sequel",play,41.0,0 -154940949,"War Thunder",purchase,1.0,0 -154940949,"War Thunder",play,25.0,0 -154940949,"Rocket League",purchase,1.0,0 -154940949,"Rocket League",play,18.7,0 -154940949,"PlanetSide 2",purchase,1.0,0 -154940949,"PlanetSide 2",play,12.8,0 -154940949,"Warframe",purchase,1.0,0 -154940949,"Warframe",play,12.2,0 -154940949,"PAYDAY 2",purchase,1.0,0 -154940949,"PAYDAY 2",play,7.5,0 -154940949,"Borderlands 2",purchase,1.0,0 -154940949,"Borderlands 2",play,7.5,0 -154940949,"H1Z1",purchase,1.0,0 -154940949,"H1Z1",play,5.6,0 -154940949,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -154940949,"Tom Clancy's Ghost Recon Phantoms - NA",play,4.7,0 -154940949,"Counter-Strike Source",purchase,1.0,0 -154940949,"Counter-Strike Source",play,3.8,0 -154940949,"Unturned",purchase,1.0,0 -154940949,"Unturned",play,2.7,0 -154940949,"The Lord of the Rings Online",purchase,1.0,0 -154940949,"The Lord of the Rings Online",play,2.5,0 -154940949,"Hitman Absolution",purchase,1.0,0 -154940949,"Hitman Absolution",play,2.3,0 -154940949,"Sniper Elite 3",purchase,1.0,0 -154940949,"Sniper Elite 3",play,2.1,0 -154940949,"Star Trek Online",purchase,1.0,0 -154940949,"Star Trek Online",play,1.8,0 -154940949,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -154940949,"Sid Meier's Civilization Beyond Earth",play,1.3,0 -154940949,"Ascend Hand of Kul",purchase,1.0,0 -154940949,"Ascend Hand of Kul",play,0.8,0 -154940949,"Cry of Fear",purchase,1.0,0 -154940949,"Cry of Fear",play,0.4,0 -154940949,"F.E.A.R. Online",purchase,1.0,0 -154940949,"F.E.A.R. Online",play,0.3,0 -154940949,"Team Fortress 2",purchase,1.0,0 -154940949,"Team Fortress 2",play,0.2,0 -154940949,"Happy Wars",purchase,1.0,0 -154940949,"Happy Wars",play,0.2,0 -154940949,"Neverwinter",purchase,1.0,0 -154940949,"Dead Space",purchase,1.0,0 -154940949,"The Elder Scrolls Online Tamriel Unlimited",purchase,1.0,0 -154940949,"Dead Space 2",purchase,1.0,0 -154940949,"H1Z1 Test Server",purchase,1.0,0 -154940949,"Soldier Front 2",purchase,1.0,0 -231026651,"Counter-Strike Global Offensive",purchase,1.0,0 -231026651,"Counter-Strike Global Offensive",play,511.0,0 -231026651,"ARK Survival Evolved",purchase,1.0,0 -231026651,"ARK Survival Evolved",play,510.0,0 -231026651,"PAYDAY 2",purchase,1.0,0 -231026651,"PAYDAY 2",play,91.0,0 -231026651,"Dota 2",purchase,1.0,0 -231026651,"Dota 2",play,73.0,0 -231026651,"Robocraft",purchase,1.0,0 -231026651,"Robocraft",play,51.0,0 -231026651,"GRAV",purchase,1.0,0 -231026651,"GRAV",play,36.0,0 -231026651,"Survarium",purchase,1.0,0 -231026651,"Survarium",play,16.5,0 -231026651,"Loadout",purchase,1.0,0 -231026651,"Loadout",play,6.0,0 -231026651,"No More Room in Hell",purchase,1.0,0 -231026651,"No More Room in Hell",play,5.4,0 -231026651,"Euro Truck Simulator 2",purchase,1.0,0 -231026651,"Euro Truck Simulator 2",play,5.2,0 -231026651,"Besiege",purchase,1.0,0 -231026651,"Besiege",play,4.3,0 -231026651,"Dying Light",purchase,1.0,0 -231026651,"Dying Light",play,3.8,0 -231026651,"Team Fortress 2",purchase,1.0,0 -231026651,"Team Fortress 2",play,3.6,0 -231026651,"Dragons and Titans",purchase,1.0,0 -231026651,"Dragons and Titans",play,2.5,0 -231026651,"Dirty Bomb",purchase,1.0,0 -231026651,"Dirty Bomb",play,2.4,0 -231026651,"Gear Up",purchase,1.0,0 -231026651,"Gear Up",play,2.1,0 -231026651,"Nosgoth",purchase,1.0,0 -231026651,"Nosgoth",play,1.3,0 -231026651,"Toribash",purchase,1.0,0 -231026651,"Toribash",play,0.8,0 -231026651,"Fishing Planet",purchase,1.0,0 -231026651,"Fishing Planet",play,0.3,0 -231026651,"Everlasting Summer",purchase,1.0,0 -231026651,"Everlasting Summer",play,0.2,0 -231026651,"HAWKEN",purchase,1.0,0 -231026651,"HAWKEN",play,0.1,0 -231026651,"Trove",purchase,1.0,0 -231026651,"RIFT",purchase,1.0,0 -216217925,"Strife",purchase,1.0,0 -216217925,"Strife",play,181.0,0 -216217925,"Bloodline Champions",purchase,1.0,0 -216217925,"Bloodline Champions",play,35.0,0 -216217925,"Unturned",purchase,1.0,0 -216217925,"Unturned",play,14.5,0 -216217925,"Team Fortress 2",purchase,1.0,0 -216217925,"Team Fortress 2",play,13.2,0 -216217925,"Prime World",purchase,1.0,0 -216217925,"Prime World",play,3.3,0 -216217925,"Serious Sam HD The Second Encounter",purchase,1.0,0 -216217925,"Serious Sam HD The Second Encounter",play,2.7,0 -216217925,"AirMech",purchase,1.0,0 -216217925,"AirMech",play,1.2,0 -216217925,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -216217925,"Tom Clancy's Ghost Recon Phantoms - NA",play,1.1,0 -216217925,"Smashmuck Champions",purchase,1.0,0 -216217925,"Smashmuck Champions",play,0.2,0 -216217925,"Global Agenda",purchase,1.0,0 -155071993,"Football Manager 2014",purchase,1.0,0 -155071993,"Football Manager 2014",play,23.0,0 -155071993,"Pro Evolution Soccer 2014",purchase,1.0,0 -155071993,"Pro Evolution Soccer 2014",play,4.9,0 -155071993,"Arma 3",purchase,1.0,0 -155071993,"Arma 3",play,3.8,0 -155071993,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -155071993,"Microsoft Flight Simulator X Steam Edition",play,0.8,0 -155071993,"Call of Duty Ghosts",purchase,1.0,0 -155071993,"Call of Duty Ghosts",play,0.7,0 -155071993,"Assetto Corsa",purchase,1.0,0 -155071993,"Assetto Corsa",play,0.4,0 -155071993,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -155071993,"Call of Duty Ghosts - Multiplayer",play,0.3,0 -155071993,"Arma 3 Zeus",purchase,1.0,0 -155071993,"Pro Evolution Soccer 2014 Online Pass",purchase,1.0,0 -155071993,"Pro Evolution Soccer 2014 World Challenge DLC",purchase,1.0,0 -73521885,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -73521885,"Call of Duty Black Ops - Multiplayer",play,25.0,0 -73521885,"Call of Duty Black Ops",purchase,1.0,0 -73521885,"Call of Duty Black Ops",play,3.7,0 -73521885,"Team Fortress 2",purchase,1.0,0 -73521885,"Team Fortress 2",play,0.5,0 -182592900,"Dota 2",purchase,1.0,0 -182592900,"Dota 2",play,8.7,0 -69821151,"Counter-Strike Source",purchase,1.0,0 -69821151,"Counter-Strike Source",play,3.7,0 -69821151,"Day of Defeat Source",purchase,1.0,0 -69821151,"Half-Life 2 Deathmatch",purchase,1.0,0 -69821151,"Half-Life 2 Lost Coast",purchase,1.0,0 -148528469,"Sid Meier's Civilization V",purchase,1.0,0 -148528469,"Sid Meier's Civilization V",play,0.3,0 -104900462,"Sniper Elite V2",purchase,1.0,0 -104900462,"Sniper Elite V2",play,110.0,0 -201023624,"The Elder Scrolls V Skyrim",purchase,1.0,0 -201023624,"The Elder Scrolls V Skyrim",play,41.0,0 -201023624,"Middle-earth Shadow of Mordor",purchase,1.0,0 -201023624,"Middle-earth Shadow of Mordor",play,11.6,0 -290225336,"Dota 2",purchase,1.0,0 -290225336,"Dota 2",play,9.5,0 -150903970,"Dota 2",purchase,1.0,0 -150903970,"Dota 2",play,0.9,0 -204147089,"Sacred 3",purchase,1.0,0 -204147089,"Sacred 3",play,133.0,0 -204147089,"Sacred 3 Underworld Story",purchase,1.0,0 -190628198,"Red Crucible Firestorm",purchase,1.0,0 -190628198,"Red Crucible Firestorm",play,9.7,0 -190628198,"Marvel Heroes 2015",purchase,1.0,0 -190628198,"Marvel Heroes 2015",play,0.1,0 -26808868,"Counter-Strike Global Offensive",purchase,1.0,0 -26808868,"Counter-Strike Global Offensive",play,153.0,0 -26808868,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -26808868,"Call of Duty Modern Warfare 2 - Multiplayer",play,35.0,0 -26808868,"Middle-earth Shadow of Mordor",purchase,1.0,0 -26808868,"Middle-earth Shadow of Mordor",play,28.0,0 -26808868,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -26808868,"Warhammer 40,000 Dawn of War II",play,26.0,0 -26808868,"Anno 2070",purchase,1.0,0 -26808868,"Anno 2070",play,20.0,0 -26808868,"Far Cry 4",purchase,1.0,0 -26808868,"Far Cry 4",play,16.6,0 -26808868,"Dead Space",purchase,1.0,0 -26808868,"Dead Space",play,15.1,0 -26808868,"Arma 2 Operation Arrowhead",purchase,1.0,0 -26808868,"Arma 2 Operation Arrowhead",play,13.4,0 -26808868,"The Walking Dead",purchase,1.0,0 -26808868,"The Walking Dead",play,12.9,0 -26808868,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -26808868,"METAL GEAR SOLID V THE PHANTOM PAIN",play,9.5,0 -26808868,"Counter-Strike",purchase,1.0,0 -26808868,"Counter-Strike",play,9.5,0 -26808868,"Sid Meier's Civilization V",purchase,1.0,0 -26808868,"Sid Meier's Civilization V",play,9.0,0 -26808868,"Alien Isolation",purchase,1.0,0 -26808868,"Alien Isolation",play,8.5,0 -26808868,"Command and Conquer 3 Tiberium Wars",purchase,1.0,0 -26808868,"Command and Conquer 3 Tiberium Wars",play,6.9,0 -26808868,"South Park The Stick of Truth",purchase,1.0,0 -26808868,"South Park The Stick of Truth",play,4.5,0 -26808868,"Tomb Raider",purchase,1.0,0 -26808868,"Tomb Raider",play,4.2,0 -26808868,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -26808868,"The Witcher 2 Assassins of Kings Enhanced Edition",play,4.0,0 -26808868,"Metro Last Light",purchase,1.0,0 -26808868,"Metro Last Light",play,3.4,0 -26808868,"Chivalry Medieval Warfare",purchase,1.0,0 -26808868,"Chivalry Medieval Warfare",play,3.2,0 -26808868,"Arma 2",purchase,1.0,0 -26808868,"Arma 2",play,3.2,0 -26808868,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -26808868,"Tom Clancy's Splinter Cell Blacklist",play,3.1,0 -26808868,"Brothers - A Tale of Two Sons",purchase,1.0,0 -26808868,"Brothers - A Tale of Two Sons",play,3.0,0 -26808868,"Natural Selection 2",purchase,1.0,0 -26808868,"Natural Selection 2",play,3.0,0 -26808868,"Dishonored",purchase,1.0,0 -26808868,"Dishonored",play,2.7,0 -26808868,"The Elder Scrolls V Skyrim",purchase,1.0,0 -26808868,"The Elder Scrolls V Skyrim",play,2.4,0 -26808868,"Star Trek Online",purchase,1.0,0 -26808868,"Star Trek Online",play,2.3,0 -26808868,"Counter-Strike Source",purchase,1.0,0 -26808868,"Counter-Strike Source",play,2.1,0 -26808868,"Battlefield 2",purchase,1.0,0 -26808868,"Battlefield 2",play,2.1,0 -26808868,"Half-Life 2 Episode Two",purchase,1.0,0 -26808868,"Half-Life 2 Episode Two",play,1.8,0 -26808868,"Insurgency",purchase,1.0,0 -26808868,"Insurgency",play,1.7,0 -26808868,"Aliens Colonial Marines",purchase,1.0,0 -26808868,"Aliens Colonial Marines",play,1.5,0 -26808868,"Batman Arkham City GOTY",purchase,1.0,0 -26808868,"Batman Arkham City GOTY",play,1.5,0 -26808868,"Kerbal Space Program",purchase,1.0,0 -26808868,"Kerbal Space Program",play,1.3,0 -26808868,"Call of Duty Modern Warfare 2",purchase,1.0,0 -26808868,"Call of Duty Modern Warfare 2",play,1.3,0 -26808868,"Altitude",purchase,1.0,0 -26808868,"Altitude",play,1.3,0 -26808868,"Deadlight",purchase,1.0,0 -26808868,"Deadlight",play,1.2,0 -26808868,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -26808868,"Warhammer 40,000 Dawn of War II Retribution",play,1.2,0 -26808868,"Europa Universalis III",purchase,1.0,0 -26808868,"Europa Universalis III",play,1.0,0 -26808868,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -26808868,"Call of Duty 4 Modern Warfare",play,1.0,0 -26808868,"Thief",purchase,1.0,0 -26808868,"Thief",play,0.9,0 -26808868,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -26808868,"Resident Evil 5 / Biohazard 5",play,0.7,0 -26808868,"Portal 2",purchase,1.0,0 -26808868,"Portal 2",play,0.7,0 -26808868,"Napoleon Total War",purchase,1.0,0 -26808868,"Napoleon Total War",play,0.3,0 -26808868,"Fallout 3",purchase,1.0,0 -26808868,"Fallout 3",play,0.2,0 -26808868,"Left 4 Dead 2",purchase,1.0,0 -26808868,"Left 4 Dead 2",play,0.2,0 -26808868,"The Witcher Enhanced Edition",purchase,1.0,0 -26808868,"The Witcher Enhanced Edition",play,0.2,0 -26808868,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -26808868,"Burnout Paradise The Ultimate Box",play,0.1,0 -26808868,"Democracy 3",purchase,1.0,0 -26808868,"Democracy 3",play,0.1,0 -26808868,"Planetary Annihilation",purchase,1.0,0 -26808868,"SimCity 4 Deluxe",purchase,1.0,0 -26808868,"Half-Life 2",purchase,1.0,0 -26808868,"ORION Prelude",purchase,1.0,0 -26808868,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -26808868,"Assassin's Creed IV Black Flag",purchase,1.0,0 -26808868,"Counter-Strike Condition Zero",purchase,1.0,0 -26808868,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -26808868,"Day of Defeat Source",purchase,1.0,0 -26808868,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -26808868,"Grand Theft Auto IV",purchase,1.0,0 -26808868,"Half-Life 2 Deathmatch",purchase,1.0,0 -26808868,"Half-Life 2 Episode One",purchase,1.0,0 -26808868,"Half-Life 2 Lost Coast",purchase,1.0,0 -26808868,"Half-Life Source",purchase,1.0,0 -26808868,"Half-Life Deathmatch Source",purchase,1.0,0 -26808868,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -26808868,"Medal of Honor(TM) Single Player",purchase,1.0,0 -26808868,"Medal of Honor Pre-Order",purchase,1.0,0 -26808868,"Patch testing for Chivalry",purchase,1.0,0 -26808868,"Pressure",purchase,1.0,0 -26808868,"Quake Live",purchase,1.0,0 -26808868,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -26808868,"Wolfenstein The New Order",purchase,1.0,0 -242351732,"Dota 2",purchase,1.0,0 -242351732,"Dota 2",play,0.4,0 -149150848,"Dota 2",purchase,1.0,0 -149150848,"Dota 2",play,43.0,0 -110209964,"Team Fortress 2",purchase,1.0,0 -110209964,"Team Fortress 2",play,0.5,0 -65341706,"Counter-Strike",purchase,1.0,0 -65341706,"Counter-Strike",play,26.0,0 -65341706,"Counter-Strike Condition Zero",purchase,1.0,0 -65341706,"Counter-Strike Condition Zero",play,9.2,0 -65341706,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -174342589,"Team Fortress 2",purchase,1.0,0 -174342589,"Team Fortress 2",play,691.0,0 -174342589,"Robocraft",purchase,1.0,0 -230028994,"Unturned",purchase,1.0,0 -41846650,"Counter-Strike",purchase,1.0,0 -41846650,"Counter-Strike",play,98.0,0 -41846650,"Alien Swarm",purchase,1.0,0 -41846650,"Alien Swarm",play,7.6,0 -41846650,"Half-Life",purchase,1.0,0 -41846650,"Half-Life",play,0.2,0 -41846650,"Day of Defeat",purchase,1.0,0 -41846650,"Deathmatch Classic",purchase,1.0,0 -41846650,"Half-Life Blue Shift",purchase,1.0,0 -41846650,"Half-Life Opposing Force",purchase,1.0,0 -41846650,"Ricochet",purchase,1.0,0 -41846650,"Team Fortress Classic",purchase,1.0,0 -42198457,"Sid Meier's Civilization V",purchase,1.0,0 -42198457,"Sid Meier's Civilization V",play,87.0,0 -42198457,"La Tale",purchase,1.0,0 -42198457,"La Tale",play,34.0,0 -42198457,"FTL Faster Than Light",purchase,1.0,0 -42198457,"FTL Faster Than Light",play,14.1,0 -42198457,"Pixel Piracy",purchase,1.0,0 -42198457,"Pixel Piracy",play,7.9,0 -42198457,"Fallout New Vegas",purchase,1.0,0 -42198457,"Fallout New Vegas",play,3.3,0 -42198457,"Half-Life 2",purchase,1.0,0 -42198457,"Half-Life 2",play,2.2,0 -42198457,"Team Fortress 2",purchase,1.0,0 -42198457,"Team Fortress 2",play,1.7,0 -42198457,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -42198457,"Fallout 3 - Game of the Year Edition",play,0.7,0 -42198457,"King Arthur's Gold",purchase,1.0,0 -42198457,"King Arthur's Gold",play,0.3,0 -42198457,"Command and Conquer 4 Tiberian Twilight",purchase,1.0,0 -42198457,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -42198457,"Fallout New Vegas Dead Money",purchase,1.0,0 -42198457,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -42198457,"Magicka",purchase,1.0,0 -42198457,"Super Time Force Ultra",purchase,1.0,0 -42198457,"TowerFall Ascension",purchase,1.0,0 -42198457,"Transistor",purchase,1.0,0 -42198457,"Warframe",purchase,1.0,0 -130758906,"Dota 2",purchase,1.0,0 -130758906,"Dota 2",play,163.0,0 -130758906,"GunZ 2 The Second Duel",purchase,1.0,0 -130758906,"Super Killer Hornet Resurrection",purchase,1.0,0 -244480793,"Team Fortress 2",purchase,1.0,0 -244480793,"Team Fortress 2",play,2.6,0 -18500119,"Counter-Strike",purchase,1.0,0 -18500119,"Counter-Strike",play,488.0,0 -18500119,"Day of Defeat",purchase,1.0,0 -18500119,"Day of Defeat",play,235.0,0 -18500119,"NBA 2K15",purchase,1.0,0 -18500119,"NBA 2K15",play,110.0,0 -18500119,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -18500119,"Call of Duty Black Ops - Multiplayer",play,15.1,0 -18500119,"Call of Duty Black Ops",purchase,1.0,0 -18500119,"Call of Duty Black Ops",play,10.3,0 -18500119,"Robocraft",purchase,1.0,0 -18500119,"Robocraft",play,9.6,0 -18500119,"Left 4 Dead 2",purchase,1.0,0 -18500119,"Left 4 Dead 2",play,1.6,0 -18500119,"Dino D-Day",purchase,1.0,0 -18500119,"Dino D-Day",play,0.6,0 -18500119,"Half-Life",purchase,1.0,0 -18500119,"Half-Life",play,0.4,0 -18500119,"Ricochet",purchase,1.0,0 -18500119,"Counter-Strike Nexon Zombies",purchase,1.0,0 -18500119,"Deathmatch Classic",purchase,1.0,0 -18500119,"Half-Life 2 Deathmatch",purchase,1.0,0 -18500119,"Half-Life 2 Lost Coast",purchase,1.0,0 -18500119,"Half-Life Blue Shift",purchase,1.0,0 -18500119,"Half-Life Opposing Force",purchase,1.0,0 -18500119,"Team Fortress Classic",purchase,1.0,0 -10599862,"Total War ROME II - Emperor Edition",purchase,1.0,0 -10599862,"Total War ROME II - Emperor Edition",play,1061.0,0 -10599862,"Mount & Blade Warband",purchase,1.0,0 -10599862,"Mount & Blade Warband",play,880.0,0 -10599862,"Path of Exile",purchase,1.0,0 -10599862,"Path of Exile",play,785.0,0 -10599862,"Elite Dangerous",purchase,1.0,0 -10599862,"Elite Dangerous",play,746.0,0 -10599862,"Crusader Kings II",purchase,1.0,0 -10599862,"Crusader Kings II",play,672.0,0 -10599862,"Football Manager 2014",purchase,1.0,0 -10599862,"Football Manager 2014",play,581.0,0 -10599862,"Total War ATTILA",purchase,1.0,0 -10599862,"Total War ATTILA",play,418.0,0 -10599862,"Galactic Civilizations III",purchase,1.0,0 -10599862,"Galactic Civilizations III",play,338.0,0 -10599862,"Football Manager 2013",purchase,1.0,0 -10599862,"Football Manager 2013",play,322.0,0 -10599862,"Total War SHOGUN 2",purchase,1.0,0 -10599862,"Total War SHOGUN 2",play,261.0,0 -10599862,"The Elder Scrolls V Skyrim",purchase,1.0,0 -10599862,"The Elder Scrolls V Skyrim",play,211.0,0 -10599862,"XCOM Enemy Unknown",purchase,1.0,0 -10599862,"XCOM Enemy Unknown",play,208.0,0 -10599862,"DARK SOULS II",purchase,1.0,0 -10599862,"DARK SOULS II",play,205.0,0 -10599862,"The Witcher 3 Wild Hunt",purchase,1.0,0 -10599862,"The Witcher 3 Wild Hunt",play,202.0,0 -10599862,"Empire Total War",purchase,1.0,0 -10599862,"Empire Total War",play,187.0,0 -10599862,"Pro Evolution Soccer 2015",purchase,1.0,0 -10599862,"Pro Evolution Soccer 2015",play,172.0,0 -10599862,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -10599862,"Dark Souls Prepare to Die Edition",play,169.0,0 -10599862,"ARK Survival Evolved",purchase,1.0,0 -10599862,"ARK Survival Evolved",play,167.0,0 -10599862,"NBA 2K14",purchase,1.0,0 -10599862,"NBA 2K14",play,162.0,0 -10599862,"NBA 2K15",purchase,1.0,0 -10599862,"NBA 2K15",play,162.0,0 -10599862,"Football Manager 2015",purchase,1.0,0 -10599862,"Football Manager 2015",play,144.0,0 -10599862,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -10599862,"The Witcher 2 Assassins of Kings Enhanced Edition",play,116.0,0 -10599862,"Europa Universalis IV",purchase,1.0,0 -10599862,"Europa Universalis IV",play,104.0,0 -10599862,"DayZ",purchase,1.0,0 -10599862,"DayZ",play,99.0,0 -10599862,"Fallout 4",purchase,1.0,0 -10599862,"Fallout 4",play,99.0,0 -10599862,"Dota 2",purchase,1.0,0 -10599862,"Dota 2",play,96.0,0 -10599862,"Divinity Original Sin",purchase,1.0,0 -10599862,"Divinity Original Sin",play,87.0,0 -10599862,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -10599862,"METAL GEAR SOLID V THE PHANTOM PAIN",play,79.0,0 -10599862,"Far Cry 3",purchase,1.0,0 -10599862,"Far Cry 3",play,78.0,0 -10599862,"Pillars of Eternity",purchase,1.0,0 -10599862,"Pillars of Eternity",play,78.0,0 -10599862,"Sid Meier's Civilization V",purchase,1.0,0 -10599862,"Sid Meier's Civilization V",play,76.0,0 -10599862,"Medieval II Total War",purchase,1.0,0 -10599862,"Medieval II Total War",play,75.0,0 -10599862,"Baldur's Gate II Enhanced Edition",purchase,1.0,0 -10599862,"Baldur's Gate II Enhanced Edition",play,72.0,0 -10599862,"Arma 3",purchase,1.0,0 -10599862,"Arma 3",play,71.0,0 -10599862,"Bound By Flame",purchase,1.0,0 -10599862,"Bound By Flame",play,70.0,0 -10599862,"Middle-earth Shadow of Mordor",purchase,1.0,0 -10599862,"Middle-earth Shadow of Mordor",play,68.0,0 -10599862,"Banished",purchase,1.0,0 -10599862,"Banished",play,67.0,0 -10599862,"Might & Magic Heroes VI",purchase,1.0,0 -10599862,"Might & Magic Heroes VI",play,64.0,0 -10599862,"Hitman Absolution",purchase,1.0,0 -10599862,"Hitman Absolution",play,64.0,0 -10599862,"Dragon Age II",purchase,1.0,0 -10599862,"Dragon Age II",play,60.0,0 -10599862,"H1Z1",purchase,1.0,0 -10599862,"H1Z1",play,57.0,0 -10599862,"Deus Ex Human Revolution",purchase,1.0,0 -10599862,"Deus Ex Human Revolution",play,56.0,0 -10599862,"Medieval II Total War Kingdoms",purchase,1.0,0 -10599862,"Medieval II Total War Kingdoms",play,56.0,0 -10599862,"Tom Clancy's Ghost Recon Future Soldier",purchase,1.0,0 -10599862,"Tom Clancy's Ghost Recon Future Soldier",play,55.0,0 -10599862,"NOBUNAGA'S AMBITION Sphere of Influence",purchase,1.0,0 -10599862,"NOBUNAGA'S AMBITION Sphere of Influence",play,53.0,0 -10599862,"Europa Universalis III",purchase,1.0,0 -10599862,"Europa Universalis III",play,50.0,0 -10599862,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -10599862,"Tom Clancy's Splinter Cell Blacklist",play,49.0,0 -10599862,"NBA 2K16",purchase,1.0,0 -10599862,"NBA 2K16",play,49.0,0 -10599862,"Anno 2070",purchase,1.0,0 -10599862,"Anno 2070",play,45.0,0 -10599862,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -10599862,"DARK SOULS II Scholar of the First Sin",play,44.0,0 -10599862,"The Walking Dead Season Two",purchase,1.0,0 -10599862,"The Walking Dead Season Two",play,44.0,0 -10599862,"Napoleon Total War",purchase,1.0,0 -10599862,"Napoleon Total War",play,43.0,0 -10599862,"The Walking Dead",purchase,1.0,0 -10599862,"The Walking Dead",play,42.0,0 -10599862,"Global Agenda",purchase,1.0,0 -10599862,"Global Agenda",play,42.0,0 -10599862,"Company of Heroes 2",purchase,1.0,0 -10599862,"Company of Heroes 2",play,40.0,0 -10599862,"State of Decay",purchase,1.0,0 -10599862,"State of Decay",play,35.0,0 -10599862,"FTL Faster Than Light",purchase,1.0,0 -10599862,"FTL Faster Than Light",play,34.0,0 -10599862,"Company of Heroes Opposing Fronts",purchase,1.0,0 -10599862,"Company of Heroes Opposing Fronts",play,33.0,0 -10599862,"Assassin's Creed III",purchase,1.0,0 -10599862,"Assassin's Creed III",play,32.0,0 -10599862,"The Wolf Among Us",purchase,1.0,0 -10599862,"The Wolf Among Us",play,32.0,0 -10599862,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -10599862,"Call of Duty Black Ops - Multiplayer",play,32.0,0 -10599862,"Might & Magic X - Legacy ",purchase,1.0,0 -10599862,"Might & Magic X - Legacy ",play,31.0,0 -10599862,"Dead Island",purchase,1.0,0 -10599862,"Dead Island",play,31.0,0 -10599862,"Darksiders II",purchase,1.0,0 -10599862,"Darksiders II",play,30.0,0 -10599862,"L.A. Noire",purchase,1.0,0 -10599862,"L.A. Noire",play,30.0,0 -10599862,"Tropico 4",purchase,1.0,0 -10599862,"Tropico 4",play,29.0,0 -10599862,"Wasteland 2",purchase,1.0,0 -10599862,"Wasteland 2",play,29.0,0 -10599862,"X3 Terran Conflict",purchase,1.0,0 -10599862,"X3 Terran Conflict",play,29.0,0 -10599862,"Fallout New Vegas",purchase,1.0,0 -10599862,"Fallout New Vegas",play,28.0,0 -10599862,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -10599862,"Game of Thrones - A Telltale Games Series",play,27.0,0 -10599862,"King's Bounty The Legend",purchase,1.0,0 -10599862,"King's Bounty The Legend",play,27.0,0 -10599862,"Knights of Honor",purchase,1.0,0 -10599862,"Knights of Honor",play,26.0,0 -10599862,"Endless Space",purchase,1.0,0 -10599862,"Endless Space",play,24.0,0 -10599862,"Sleeping Dogs",purchase,1.0,0 -10599862,"Sleeping Dogs",play,23.0,0 -10599862,"Wings of Prey",purchase,1.0,0 -10599862,"Wings of Prey",play,23.0,0 -10599862,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -10599862,"Warhammer 40,000 Dawn of War II",play,23.0,0 -10599862,"Counter-Strike Global Offensive",purchase,1.0,0 -10599862,"Counter-Strike Global Offensive",play,23.0,0 -10599862,"Divinity II - Ego Draconis",purchase,1.0,0 -10599862,"Divinity II - Ego Draconis",play,21.0,0 -10599862,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -10599862,"Star Wars The Force Unleashed Ultimate Sith Edition",play,21.0,0 -10599862,"Counter-Strike Source",purchase,1.0,0 -10599862,"Counter-Strike Source",play,20.0,0 -10599862,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -10599862,"Rising Storm/Red Orchestra 2 Multiplayer",play,19.8,0 -10599862,"BioShock Infinite",purchase,1.0,0 -10599862,"BioShock Infinite",play,19.4,0 -10599862,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -10599862,"Kingdoms of Amalur Reckoning",play,19.3,0 -10599862,"Watch_Dogs",purchase,1.0,0 -10599862,"Watch_Dogs",play,19.2,0 -10599862,"Left 4 Dead 2",purchase,1.0,0 -10599862,"Left 4 Dead 2",play,17.9,0 -10599862,"Tropico 5",purchase,1.0,0 -10599862,"Tropico 5",play,17.9,0 -10599862,"Shadowrun Returns",purchase,1.0,0 -10599862,"Shadowrun Returns",play,17.6,0 -10599862,"Dawn of Discovery",purchase,1.0,0 -10599862,"Dawn of Discovery",play,17.1,0 -10599862,"Assassin's Creed Brotherhood",purchase,1.0,0 -10599862,"Assassin's Creed Brotherhood",play,15.6,0 -10599862,"Left 4 Dead",purchase,1.0,0 -10599862,"Left 4 Dead",play,15.5,0 -10599862,"Hitman Blood Money",purchase,1.0,0 -10599862,"Hitman Blood Money",play,15.4,0 -10599862,"Battlefield Bad Company 2",purchase,1.0,0 -10599862,"Battlefield Bad Company 2",play,15.3,0 -10599862,"The Last Remnant",purchase,1.0,0 -10599862,"The Last Remnant",play,15.2,0 -10599862,"Rebel Galaxy",purchase,1.0,0 -10599862,"Rebel Galaxy",play,14.9,0 -10599862,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -10599862,"Call of Duty Modern Warfare 2 - Multiplayer",play,14.6,0 -10599862,"The Settlers 7 Paths to a Kingdom - Gold Edition",purchase,1.0,0 -10599862,"The Settlers 7 Paths to a Kingdom - Gold Edition",play,14.4,0 -10599862,"BRINK",purchase,1.0,0 -10599862,"BRINK",play,13.9,0 -10599862,"Natural Selection 2",purchase,1.0,0 -10599862,"Natural Selection 2",play,13.3,0 -10599862,"Metro 2033",purchase,1.0,0 -10599862,"Metro 2033",play,12.7,0 -10599862,"Lords Of The Fallen",purchase,1.0,0 -10599862,"Lords Of The Fallen",play,12.4,0 -10599862,"FINAL FANTASY XIII",purchase,1.0,0 -10599862,"FINAL FANTASY XIII",play,12.2,0 -10599862,"Starpoint Gemini 2",purchase,1.0,0 -10599862,"Starpoint Gemini 2",play,11.8,0 -10599862,"Saints Row The Third",purchase,1.0,0 -10599862,"Saints Row The Third",play,11.7,0 -10599862,"Call of Duty Modern Warfare 2",purchase,1.0,0 -10599862,"Call of Duty Modern Warfare 2",play,11.7,0 -10599862,"Xenonauts",purchase,1.0,0 -10599862,"Xenonauts",play,11.6,0 -10599862,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -10599862,"Tom Clancy's Splinter Cell Conviction",play,11.4,0 -10599862,"Dungeon Defenders",purchase,1.0,0 -10599862,"Dungeon Defenders",play,11.3,0 -10599862,"Dead Space 2",purchase,1.0,0 -10599862,"Dead Space 2",play,11.2,0 -10599862,"Max Payne 3",purchase,1.0,0 -10599862,"Max Payne 3",play,10.8,0 -10599862,"Call of Duty Ghosts",purchase,1.0,0 -10599862,"Call of Duty Ghosts",play,10.5,0 -10599862,"Tomb Raider",purchase,1.0,0 -10599862,"Tomb Raider",play,9.1,0 -10599862,"Men of War Assault Squad",purchase,1.0,0 -10599862,"Men of War Assault Squad",play,8.7,0 -10599862,"Remember Me",purchase,1.0,0 -10599862,"Remember Me",play,8.6,0 -10599862,"Fable Anniversary",purchase,1.0,0 -10599862,"Fable Anniversary",play,8.3,0 -10599862,"Darksiders",purchase,1.0,0 -10599862,"Darksiders",play,8.1,0 -10599862,"Call of Duty Black Ops",purchase,1.0,0 -10599862,"Call of Duty Black Ops",play,8.0,0 -10599862,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -10599862,"Batman Arkham Asylum GOTY Edition",play,7.9,0 -10599862,"Fallen Enchantress",purchase,1.0,0 -10599862,"Fallen Enchantress",play,7.5,0 -10599862,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -10599862,"METAL GEAR RISING REVENGEANCE",play,7.4,0 -10599862,"Call of Duty Black Ops II",purchase,1.0,0 -10599862,"Call of Duty Black Ops II",play,7.3,0 -10599862,"Dishonored",purchase,1.0,0 -10599862,"Dishonored",play,7.1,0 -10599862,"Dead Island Riptide",purchase,1.0,0 -10599862,"Dead Island Riptide",play,7.1,0 -10599862,"The Banner Saga",purchase,1.0,0 -10599862,"The Banner Saga",play,6.8,0 -10599862,"DmC Devil May Cry",purchase,1.0,0 -10599862,"DmC Devil May Cry",play,6.6,0 -10599862,"The Guild II Renaissance",purchase,1.0,0 -10599862,"The Guild II Renaissance",play,6.6,0 -10599862,"Mount & Blade With Fire and Sword",purchase,1.0,0 -10599862,"Mount & Blade With Fire and Sword",play,6.5,0 -10599862,"Amnesia The Dark Descent",purchase,1.0,0 -10599862,"Amnesia The Dark Descent",play,6.1,0 -10599862,"Metro Last Light",purchase,1.0,0 -10599862,"Metro Last Light",play,5.7,0 -10599862,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -10599862,"Call of Duty Black Ops II - Multiplayer",play,5.2,0 -10599862,"King Arthur - The Role-playing Wargame",purchase,1.0,0 -10599862,"King Arthur - The Role-playing Wargame",play,4.9,0 -10599862,"Deus Ex Game of the Year Edition",purchase,1.0,0 -10599862,"Deus Ex Game of the Year Edition",play,4.9,0 -10599862,"X3 Albion Prelude",purchase,1.0,0 -10599862,"X3 Albion Prelude",play,4.3,0 -10599862,"Grand Ages Rome",purchase,1.0,0 -10599862,"Grand Ages Rome",play,4.0,0 -10599862,"Age of Wonders III",purchase,1.0,0 -10599862,"Age of Wonders III",play,3.7,0 -10599862,"PlanetSide 2",purchase,1.0,0 -10599862,"PlanetSide 2",play,3.6,0 -10599862,"South Park The Stick of Truth",purchase,1.0,0 -10599862,"South Park The Stick of Truth",play,3.5,0 -10599862,"Two Worlds Epic Edition",purchase,1.0,0 -10599862,"Two Worlds Epic Edition",play,3.4,0 -10599862,"Mark of the Ninja",purchase,1.0,0 -10599862,"Mark of the Ninja",play,3.3,0 -10599862,"Grand Theft Auto V",purchase,1.0,0 -10599862,"Grand Theft Auto V",play,3.1,0 -10599862,"Company of Heroes",purchase,1.0,0 -10599862,"Company of Heroes",play,3.0,0 -10599862,"Borderlands",purchase,1.0,0 -10599862,"Borderlands",play,2.7,0 -10599862,"Mirror's Edge",purchase,1.0,0 -10599862,"Mirror's Edge",play,2.7,0 -10599862,"Team Fortress 2",purchase,1.0,0 -10599862,"Team Fortress 2",play,2.5,0 -10599862,"RAGE",purchase,1.0,0 -10599862,"RAGE",play,2.4,0 -10599862,"Dungeon Siege III",purchase,1.0,0 -10599862,"Dungeon Siege III",play,2.3,0 -10599862,"Disciples III Renaissance",purchase,1.0,0 -10599862,"Disciples III Renaissance",play,2.1,0 -10599862,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -10599862,"Resident Evil 6 / Biohazard 6",play,1.9,0 -10599862,"X Rebirth",purchase,1.0,0 -10599862,"X Rebirth",play,1.8,0 -10599862,"Chivalry Medieval Warfare",purchase,1.0,0 -10599862,"Chivalry Medieval Warfare",play,1.7,0 -10599862,"Age of Empires III Complete Collection",purchase,1.0,0 -10599862,"Age of Empires III Complete Collection",play,1.7,0 -10599862,"Nether",purchase,1.0,0 -10599862,"Nether",play,1.6,0 -10599862,"Titan Quest",purchase,1.0,0 -10599862,"Titan Quest",play,1.5,0 -10599862,"Men of War",purchase,1.0,0 -10599862,"Men of War",play,1.5,0 -10599862,"Hunted The Demon's Forge",purchase,1.0,0 -10599862,"Hunted The Demon's Forge",play,1.3,0 -10599862,"Alan Wake",purchase,1.0,0 -10599862,"Alan Wake",play,1.2,0 -10599862,"Castlevania Lords of Shadow - Ultimate Edition",purchase,1.0,0 -10599862,"Castlevania Lords of Shadow - Ultimate Edition",play,1.1,0 -10599862,"Contagion",purchase,1.0,0 -10599862,"Contagion",play,1.1,0 -10599862,"Deadlight",purchase,1.0,0 -10599862,"Deadlight",play,1.0,0 -10599862,"Borderlands 2",purchase,1.0,0 -10599862,"Borderlands 2",play,1.0,0 -10599862,"Bastion",purchase,1.0,0 -10599862,"Bastion",play,0.9,0 -10599862,"Half-Life 2",purchase,1.0,0 -10599862,"Half-Life 2",play,0.9,0 -10599862,"Men of War Red Tide",purchase,1.0,0 -10599862,"Men of War Red Tide",play,0.8,0 -10599862,"Titan Quest Immortal Throne",purchase,1.0,0 -10599862,"Titan Quest Immortal Throne",play,0.6,0 -10599862,"Armada 2526",purchase,1.0,0 -10599862,"Armada 2526",play,0.6,0 -10599862,"Zeno Clash",purchase,1.0,0 -10599862,"Zeno Clash",play,0.6,0 -10599862,"Arma 2 Operation Arrowhead",purchase,1.0,0 -10599862,"Arma 2 Operation Arrowhead",play,0.5,0 -10599862,"Project Zomboid",purchase,1.0,0 -10599862,"Project Zomboid",play,0.5,0 -10599862,"The Last Federation",purchase,1.0,0 -10599862,"The Last Federation",play,0.4,0 -10599862,"DOOM 3",purchase,1.0,0 -10599862,"DOOM 3",play,0.4,0 -10599862,"Arma 2",purchase,1.0,0 -10599862,"Arma 2",play,0.4,0 -10599862,"Evochron Mercenary",purchase,1.0,0 -10599862,"Evochron Mercenary",play,0.4,0 -10599862,"Rodina",purchase,1.0,0 -10599862,"Rodina",play,0.3,0 -10599862,"Grim Dawn",purchase,1.0,0 -10599862,"Grim Dawn",play,0.3,0 -10599862,"Terraria",purchase,1.0,0 -10599862,"Terraria",play,0.3,0 -10599862,"7 Days to Die",purchase,1.0,0 -10599862,"7 Days to Die",play,0.3,0 -10599862,"The Guild II",purchase,1.0,0 -10599862,"The Guild II",play,0.2,0 -10599862,"Dominions 4",purchase,1.0,0 -10599862,"Dominions 4",play,0.2,0 -10599862,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -10599862,"Warhammer 40,000 Dawn of War II Retribution",play,0.1,0 -10599862,"Divine Divinity",purchase,1.0,0 -10599862,"Star Ruler",purchase,1.0,0 -10599862,"DOOM 3 Resurrection of Evil",purchase,1.0,0 -10599862,"The Guild II - Pirates of the European Seas",purchase,1.0,0 -10599862,"King's Bounty Armored Princess",purchase,1.0,0 -10599862,"Heroes & Generals",purchase,1.0,0 -10599862,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -10599862,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -10599862,"Alan Wake's American Nightmare",purchase,1.0,0 -10599862,"Arma 2 DayZ Mod",purchase,1.0,0 -10599862,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -10599862,"Arma 3 Zeus",purchase,1.0,0 -10599862,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -10599862,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -10599862,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -10599862,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -10599862,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -10599862,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -10599862,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -10599862,"Company of Heroes (New Steam Version)",purchase,1.0,0 -10599862,"Company of Heroes 2 - Ardennes Assault",purchase,1.0,0 -10599862,"Company of Heroes Tales of Valor",purchase,1.0,0 -10599862,"Crusader Kings II Sons of Abraham",purchase,1.0,0 -10599862,"DARK SOULS II - Season Pass",purchase,1.0,0 -10599862,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -10599862,"Dead Space",purchase,1.0,0 -10599862,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -10599862,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -10599862,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -10599862,"Divinity II Developer's Cut",purchase,1.0,0 -10599862,"Dracula Origin",purchase,1.0,0 -10599862,"Europa Universalis III Divine Wind",purchase,1.0,0 -10599862,"Europa Universalis III Heir to the Throne",purchase,1.0,0 -10599862,"Europa Universalis IV American Dream DLC",purchase,1.0,0 -10599862,"Europa Universalis IV Conquest of Paradise",purchase,1.0,0 -10599862,"Europa Universalis IV Conquistadors Unit pack ",purchase,1.0,0 -10599862,"Europa Universalis IV National Monuments II",purchase,1.0,0 -10599862,"Europa Universalis IVNative Americans Unit Pack",purchase,1.0,0 -10599862,"Europa Universalis IV Songs of the New World",purchase,1.0,0 -10599862,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -10599862,"Fallout New Vegas Dead Money",purchase,1.0,0 -10599862,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -10599862,"H1Z1 Test Server",purchase,1.0,0 -10599862,"Half-Life 2 Deathmatch",purchase,1.0,0 -10599862,"Half-Life 2 Lost Coast",purchase,1.0,0 -10599862,"Hitman 2 Silent Assassin",purchase,1.0,0 -10599862,"Hitman Codename 47",purchase,1.0,0 -10599862,"Hitman Sniper Challenge",purchase,1.0,0 -10599862,"Lara Croft and the Guardian of Light",purchase,1.0,0 -10599862,"Lineage II The Chaotic Throne",purchase,1.0,0 -10599862,"Mount & Blade",purchase,1.0,0 -10599862,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -10599862,"Mount & Blade Warband - Viking Conquest Reforged Edition",purchase,1.0,0 -10599862,"Overlord",purchase,1.0,0 -10599862,"Patch testing for Chivalry",purchase,1.0,0 -10599862,"Shadowrun Dragonfall",purchase,1.0,0 -10599862,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -10599862,"Sins of a Solar Empire Rebellion - Stellar Phenomena DLC",purchase,1.0,0 -10599862,"Sins of a Solar Empire Rebellion Forbidden Worlds",purchase,1.0,0 -10599862,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -10599862,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -10599862,"SpellForce 2 Shadow Wars",purchase,1.0,0 -10599862,"Star Conflict",purchase,1.0,0 -10599862,"StarDrive",purchase,1.0,0 -10599862,"State of Decay - Breakdown",purchase,1.0,0 -10599862,"The Banner Saga - Mod Content",purchase,1.0,0 -10599862,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -10599862,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -10599862,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -10599862,"Thief Deadly Shadows",purchase,1.0,0 -10599862,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -10599862,"Total War ATTILA - Age of Charlemagne Campaign Pack",purchase,1.0,0 -10599862,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -10599862,"UFO Afterlight",purchase,1.0,0 -10599862,"UFO Afterlight - Old Version",purchase,1.0,0 -10599862,"War of the Vikings",purchase,1.0,0 -10599862,"Wasteland 1 - The Original Classic",purchase,1.0,0 -10599862,"Wasteland 2 Director's Cut",purchase,1.0,0 -10599862,"XCOM Enemy Within",purchase,1.0,0 -231805700,"Counter-Strike Global Offensive",purchase,1.0,0 -231805700,"Counter-Strike Global Offensive",play,75.0,0 -231805700,"Crossfire Europe",purchase,1.0,0 -231805700,"Quake Live",purchase,1.0,0 -231805700,"theHunter",purchase,1.0,0 -231805700,"Unturned",purchase,1.0,0 -260376156,"Craft The World",purchase,1.0,0 -260376156,"Craft The World",play,286.0,0 -260376156,"Don't Starve",purchase,1.0,0 -260376156,"Don't Starve",play,99.0,0 -260376156,"Gone Home",purchase,1.0,0 -260376156,"Gone Home",play,2.8,0 -260376156,"Guacamelee! Gold Edition",purchase,1.0,0 -260376156,"Guacamelee! Gold Edition",play,0.2,0 -260376156,"Antichamber",purchase,1.0,0 -260376156,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -260376156,"Cherry Tree High Comedy Club",purchase,1.0,0 -260376156,"Cherry Tree High I! My! Girls!",purchase,1.0,0 -260376156,"Crusader Kings II",purchase,1.0,0 -260376156,"Don't Starve Reign of Giants",purchase,1.0,0 -260376156,"Don't Starve Together Beta",purchase,1.0,0 -260376156,"Fairy Bloom Freesia",purchase,1.0,0 -260376156,"Fairy Bloom Freesia - Original Soundtrack",purchase,1.0,0 -260376156,"FEZ",purchase,1.0,0 -260376156,"Magicka",purchase,1.0,0 -260376156,"Psychonauts",purchase,1.0,0 -260376156,"Psychonauts Demo",purchase,1.0,0 -260376156,"SpaceChem",purchase,1.0,0 -260376156,"Starbound",purchase,1.0,0 -260376156,"Starbound - Unstable",purchase,1.0,0 -260376156,"Starseed Pilgrim",purchase,1.0,0 -260376156,"Terraria",purchase,1.0,0 -260376156,"The Swapper",purchase,1.0,0 -250238131,"Terraria",purchase,1.0,0 -250238131,"Terraria",play,43.0,0 -250238131,"Unturned",purchase,1.0,0 -250238131,"Unturned",play,19.0,0 -250238131,"Mitos.is The Game",purchase,1.0,0 -250238131,"Mitos.is The Game",play,5.0,0 -250238131,"Counter-Strike Global Offensive",purchase,1.0,0 -250238131,"Counter-Strike Global Offensive",play,3.6,0 -250238131,"Trove",purchase,1.0,0 -250238131,"Trove",play,1.9,0 -250238131,"Counter-Strike Nexon Zombies",purchase,1.0,0 -250238131,"Counter-Strike Nexon Zombies",play,1.2,0 -250238131,"Left 4 Dead 2",purchase,1.0,0 -250238131,"Left 4 Dead 2",play,1.0,0 -250238131,"Dota 2",purchase,1.0,0 -250238131,"Dota 2",play,0.5,0 -250238131,"Emily is Away",purchase,1.0,0 -250238131,"Emily is Away",play,0.5,0 -250238131,"Fingered",purchase,1.0,0 -250238131,"Fingered",play,0.3,0 -250238131,"Dead Island Epidemic",purchase,1.0,0 -250238131,"Dead Island Epidemic",play,0.1,0 -250238131,"SMITE",purchase,1.0,0 -250238131,"Survarium",purchase,1.0,0 -229405602,"Dota 2",purchase,1.0,0 -229405602,"Dota 2",play,0.2,0 -146796532,"Team Fortress 2",purchase,1.0,0 -146796532,"Team Fortress 2",play,74.0,0 -149711127,"Dota 2",purchase,1.0,0 -149711127,"Dota 2",play,6.3,0 -120725512,"Team Fortress 2",purchase,1.0,0 -120725512,"Team Fortress 2",play,3.8,0 -162735255,"Dota 2",purchase,1.0,0 -162735255,"Dota 2",play,16.8,0 -244992231,"Team Fortress 2",purchase,1.0,0 -244992231,"Team Fortress 2",play,128.0,0 -30588978,"Half-Life 2 Deathmatch",purchase,1.0,0 -30588978,"Half-Life 2 Deathmatch",play,1366.0,0 -30588978,"Half-Life 2 Lost Coast",purchase,1.0,0 -30588978,"Half-Life 2 Lost Coast",play,10.5,0 -30588978,"World of Guns Gun Disassembly",purchase,1.0,0 -30588978,"World of Guns Gun Disassembly",play,1.1,0 -30588978,"Day of Defeat Source",purchase,1.0,0 -30588978,"Day of Defeat Source",play,0.6,0 -30588978,"Counter-Strike Source",purchase,1.0,0 -30588978,"Counter-Strike Source",play,0.1,0 -119556235,"Dota 2",purchase,1.0,0 -119556235,"Dota 2",play,2.9,0 -119556235,"Loadout",purchase,1.0,0 -304395604,"Dota 2",purchase,1.0,0 -304395604,"Dota 2",play,6.3,0 -170275839,"Dota 2",purchase,1.0,0 -170275839,"Dota 2",play,22.0,0 -170275839,"Team Fortress 2",purchase,1.0,0 -170275839,"Team Fortress 2",play,0.4,0 -152567497,"Dota 2",purchase,1.0,0 -152567497,"Dota 2",play,1.2,0 -84371132,"Team Fortress 2",purchase,1.0,0 -84371132,"Team Fortress 2",play,652.0,0 -84371132,"Duke Nukem Forever",purchase,1.0,0 -84371132,"Duke Nukem Forever",play,19.0,0 -220306050,"Dota 2",purchase,1.0,0 -220306050,"Dota 2",play,1.3,0 -64027842,"Counter-Strike Source",purchase,1.0,0 -64027842,"Counter-Strike Source",play,404.0,0 -64027842,"Counter-Strike Global Offensive",purchase,1.0,0 -64027842,"Counter-Strike Global Offensive",play,54.0,0 -64027842,"Left 4 Dead 2",purchase,1.0,0 -64027842,"Left 4 Dead 2",play,47.0,0 -64027842,"Half-Life 2 Deathmatch",purchase,1.0,0 -64027842,"Half-Life 2 Deathmatch",play,4.3,0 -64027842,"Dead Island",purchase,1.0,0 -64027842,"Dead Island",play,3.7,0 -64027842,"Half-Life 2 Lost Coast",purchase,1.0,0 -64027842,"Half-Life 2 Lost Coast",play,0.8,0 -64027842,"Team Fortress 2",purchase,1.0,0 -64027842,"Team Fortress 2",play,0.6,0 -64027842,"Dota 2",purchase,1.0,0 -64027842,"Dota 2",play,0.2,0 -64027842,"Day of Defeat Source",purchase,1.0,0 -64027842,"Day of Defeat Source",play,0.2,0 -64027842,"Killing Floor Uncovered",purchase,1.0,0 -78969820,"Age of Chivalry",purchase,1.0,0 -78969820,"Age of Chivalry",play,9.7,0 -239348249,"Unturned",purchase,1.0,0 -188713427,"Team Fortress 2",purchase,1.0,0 -188713427,"Team Fortress 2",play,10.0,0 -188713427,"PlanetSide 2",purchase,1.0,0 -188713427,"Stronghold Kingdoms",purchase,1.0,0 -179001573,"Dota 2",purchase,1.0,0 -179001573,"Dota 2",play,1.8,0 -128335681,"Kingdom Wars",purchase,1.0,0 -128335681,"Kingdom Wars",play,0.5,0 -243808511,"Dota 2",purchase,1.0,0 -243808511,"Dota 2",play,50.0,0 -243808511,"War Thunder",purchase,1.0,0 -243808511,"War Thunder",play,4.0,0 -243808511,"UberStrike",purchase,1.0,0 -243808511,"UberStrike",play,0.6,0 -243808511,"Counter-Strike Nexon Zombies",purchase,1.0,0 -154330480,"Dota 2",purchase,1.0,0 -154330480,"Dota 2",play,36.0,0 -88579585,"ARK Survival Evolved",purchase,1.0,0 -88579585,"ARK Survival Evolved",play,656.0,0 -88579585,"TrackMania Stadium",purchase,1.0,0 -88579585,"TrackMania Stadium",play,164.0,0 -88579585,"Warframe",purchase,1.0,0 -88579585,"Warframe",play,74.0,0 -88579585,"GRID Autosport",purchase,1.0,0 -88579585,"GRID Autosport",play,64.0,0 -88579585,"GameMaker Studio",purchase,1.0,0 -88579585,"GameMaker Studio",play,57.0,0 -88579585,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -88579585,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,23.0,0 -88579585,"Assetto Corsa",purchase,1.0,0 -88579585,"Assetto Corsa",play,22.0,0 -88579585,"FEZ",purchase,1.0,0 -88579585,"FEZ",play,11.1,0 -88579585,"Ori and the Blind Forest",purchase,1.0,0 -88579585,"Ori and the Blind Forest",play,4.2,0 -88579585,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -88579585,"Star Wars The Force Unleashed Ultimate Sith Edition",play,2.7,0 -88579585,"Dino D-Day",purchase,1.0,0 -88579585,"Dino D-Day",play,2.3,0 -88579585,"GRID",purchase,1.0,0 -88579585,"GRID",play,2.0,0 -88579585,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -88579585,"Star Wars - Jedi Knight II Jedi Outcast",play,1.7,0 -88579585,"Defiance",purchase,1.0,0 -88579585,"Defiance",play,1.6,0 -88579585,"Trove",purchase,1.0,0 -88579585,"Trove",play,1.3,0 -88579585,"Portal",purchase,1.0,0 -88579585,"Portal",play,1.2,0 -88579585,"Creativerse",purchase,1.0,0 -88579585,"Creativerse",play,1.2,0 -88579585,"Halo Spartan Assault",purchase,1.0,0 -88579585,"Halo Spartan Assault",play,0.8,0 -88579585,"Moonbase Alpha",purchase,1.0,0 -88579585,"Moonbase Alpha",play,0.8,0 -88579585,"Divinity II Developer's Cut",purchase,1.0,0 -88579585,"Divinity II Developer's Cut",play,0.6,0 -88579585,"Strike Suit Zero",purchase,1.0,0 -88579585,"Strike Suit Zero",play,0.5,0 -88579585,"Left 4 Dead 2",purchase,1.0,0 -88579585,"Left 4 Dead 2",play,0.4,0 -88579585,"Super Meat Boy",purchase,1.0,0 -88579585,"Super Meat Boy",play,0.3,0 -88579585,"LEGO Worlds",purchase,1.0,0 -88579585,"LEGO Worlds",play,0.2,0 -88579585,"Star Wars Dark Forces",purchase,1.0,0 -88579585,"Star Wars Dark Forces",play,0.2,0 -88579585,"Realm of the Mad God",purchase,1.0,0 -88579585,"The Testament of Sherlock Holmes",purchase,1.0,0 -88579585,"AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome",purchase,1.0,0 -88579585,"Alpha Protocol",purchase,1.0,0 -88579585,"Amnesia The Dark Descent",purchase,1.0,0 -88579585,"Anachronox",purchase,1.0,0 -88579585,"Anodyne",purchase,1.0,0 -88579585,"Anomaly 2",purchase,1.0,0 -88579585,"Anomaly Korea",purchase,1.0,0 -88579585,"Antichamber",purchase,1.0,0 -88579585,"App Game Kit",purchase,1.0,0 -88579585,"Aveyond 3-1 Lord of Twilight",purchase,1.0,0 -88579585,"Axis Game Factory's AGFPRO - Drone Kombat FPS Multi-Player DLC",purchase,1.0,0 -88579585,"Axis Game Factory's AGFPRO - Zombie Survival Pack DLC",purchase,1.0,0 -88579585,"Axis Game Factory's AGFPRO 3.0",purchase,1.0,0 -88579585,"Bad Hotel",purchase,1.0,0 -88579585,"Battlestations Midway",purchase,1.0,0 -88579585,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -88579585,"Binary Domain",purchase,1.0,0 -88579585,"BioShock",purchase,1.0,0 -88579585,"BioShock 2",purchase,1.0,0 -88579585,"BioShock Infinite",purchase,1.0,0 -88579585,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -88579585,"Blood Bowl Legendary Edition",purchase,1.0,0 -88579585,"Braid",purchase,1.0,0 -88579585,"Bridge Constructor",purchase,1.0,0 -88579585,"Broken Sword 1 - Shadow of the Templars Director's Cut",purchase,1.0,0 -88579585,"Broken Sword 2 - the Smoking Mirror Remastered",purchase,1.0,0 -88579585,"Cities XL Platinum",purchase,1.0,0 -88579585,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -88579585,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -88579585,"Company of Heroes",purchase,1.0,0 -88579585,"Company of Heroes (New Steam Version)",purchase,1.0,0 -88579585,"Company of Heroes 2",purchase,1.0,0 -88579585,"Company of Heroes Opposing Fronts",purchase,1.0,0 -88579585,"Company of Heroes Tales of Valor",purchase,1.0,0 -88579585,"Confrontation",purchase,1.0,0 -88579585,"Crimzon Clover WORLD IGNITION",purchase,1.0,0 -88579585,"Daikatana",purchase,1.0,0 -88579585,"Dead Island",purchase,1.0,0 -88579585,"Dead Island Riptide",purchase,1.0,0 -88579585,"Deus Ex Game of the Year Edition",purchase,1.0,0 -88579585,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -88579585,"Deus Ex Invisible War",purchase,1.0,0 -88579585,"Deus Ex The Fall",purchase,1.0,0 -88579585,"DiRT 2",purchase,1.0,0 -88579585,"DiRT 3",purchase,1.0,0 -88579585,"DiRT 3 Complete Edition",purchase,1.0,0 -88579585,"DiRT Showdown",purchase,1.0,0 -88579585,"Drive Any Track",purchase,1.0,0 -88579585,"Dungeon Defenders",purchase,1.0,0 -88579585,"Dust An Elysian Tail",purchase,1.0,0 -88579585,"Dustforce",purchase,1.0,0 -88579585,"F1 2013",purchase,1.0,0 -88579585,"Game Character Hub",purchase,1.0,0 -88579585,"GameGuru",purchase,1.0,0 -88579585,"GameGuru - Buildings Pack",purchase,1.0,0 -88579585,"GameMaker Studio Android",purchase,1.0,0 -88579585,"GameMaker Studio HTML5",purchase,1.0,0 -88579585,"GameMaker Studio iOS",purchase,1.0,0 -88579585,"GameMaker Studio Professional",purchase,1.0,0 -88579585,"GameMaker Studio Ubuntu Export",purchase,1.0,0 -88579585,"GameMaker Studio Windows Phone 8",purchase,1.0,0 -88579585,"GameMaker Studio YoYo Compiler",purchase,1.0,0 -88579585,"Game of Thrones ",purchase,1.0,0 -88579585,"Gemini Rue",purchase,1.0,0 -88579585,"Goats on a Bridge",purchase,1.0,0 -88579585,"Gone Home",purchase,1.0,0 -88579585,"Greed Corp",purchase,1.0,0 -88579585,"GRID 2",purchase,1.0,0 -88579585,"GRID 2 GTR Racing Pack",purchase,1.0,0 -88579585,"GT Legends",purchase,1.0,0 -88579585,"GT Power Expansion",purchase,1.0,0 -88579585,"GTR 2 - FIA GT Racing Game",purchase,1.0,0 -88579585,"GTR Evolution",purchase,1.0,0 -88579585,"Guacamelee! Gold Edition",purchase,1.0,0 -88579585,"Gun Metal",purchase,1.0,0 -88579585,"Gun Monkeys",purchase,1.0,0 -88579585,"Gunpoint",purchase,1.0,0 -88579585,"Hammerwatch",purchase,1.0,0 -88579585,"Hell Yeah!",purchase,1.0,0 -88579585,"Hero Academy",purchase,1.0,0 -88579585,"Hitman 2 Silent Assassin",purchase,1.0,0 -88579585,"Hitman Absolution",purchase,1.0,0 -88579585,"Hitman Blood Money",purchase,1.0,0 -88579585,"Hitman Codename 47",purchase,1.0,0 -88579585,"Hitman Contracts",purchase,1.0,0 -88579585,"HOARD",purchase,1.0,0 -88579585,"Incredipede",purchase,1.0,0 -88579585,"Jack Lumber",purchase,1.0,0 -88579585,"Joe Danger 2 The Movie",purchase,1.0,0 -88579585,"Just Cause",purchase,1.0,0 -88579585,"Just Cause 2",purchase,1.0,0 -88579585,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -88579585,"Kingdom Rush",purchase,1.0,0 -88579585,"Knights of Pen and Paper +1",purchase,1.0,0 -88579585,"Labyrinthine Dreams",purchase,1.0,0 -88579585,"Lara Croft and the Guardian of Light",purchase,1.0,0 -88579585,"Last Word",purchase,1.0,0 -88579585,"LIMBO",purchase,1.0,0 -88579585,"Little Inferno",purchase,1.0,0 -88579585,"LUFTRAUSERS",purchase,1.0,0 -88579585,"Mafia II",purchase,1.0,0 -88579585,"Medieval II Total War",purchase,1.0,0 -88579585,"Metro 2033",purchase,1.0,0 -88579585,"Mini Ninjas",purchase,1.0,0 -88579585,"Monaco",purchase,1.0,0 -88579585,"Next Car Game Wreckfest",purchase,1.0,0 -88579585,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -88579585,"Nosgoth",purchase,1.0,0 -88579585,"Oddworld Abe's Oddysee",purchase,1.0,0 -88579585,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -88579585,"Operation Flashpoint Red River",purchase,1.0,0 -88579585,"Organ Trail Director's Cut",purchase,1.0,0 -88579585,"Overlord",purchase,1.0,0 -88579585,"Overlord Raising Hell",purchase,1.0,0 -88579585,"Overlord II",purchase,1.0,0 -88579585,"Papers, Please",purchase,1.0,0 -88579585,"Papo & Yo",purchase,1.0,0 -88579585,"Pinball FX2",purchase,1.0,0 -88579585,"Pinball FX2 - Core pack",purchase,1.0,0 -88579585,"Pinball FX2 - Earth Defense Table",purchase,1.0,0 -88579585,"Pinball FX2 - Epic Quest Table",purchase,1.0,0 -88579585,"Pinball FX2 - Marvel Pinball Avengers Chronicles pack",purchase,1.0,0 -88579585,"Pinball FX2 - Marvel Pinball Original Pack",purchase,1.0,0 -88579585,"Pinball FX2 - Paranormal Table",purchase,1.0,0 -88579585,"Pinball FX2 - Star Wars Pack",purchase,1.0,0 -88579585,"Pinball FX2 - Zen Classics Pack",purchase,1.0,0 -88579585,"Prison Architect",purchase,1.0,0 -88579585,"Project CARS",purchase,1.0,0 -88579585,"Project CARS - Modified Car Pack ",purchase,1.0,0 -88579585,"RACE 07",purchase,1.0,0 -88579585,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -88579585,"RACE Caterham Expansion",purchase,1.0,0 -88579585,"Race The WTCC Game",purchase,1.0,0 -88579585,"RACE On",purchase,1.0,0 -88579585,"Race The Sun",purchase,1.0,0 -88579585,"Ravensword Shadowlands",purchase,1.0,0 -88579585,"RAW - Realms of Ancient War",purchase,1.0,0 -88579585,"Really Big Sky",purchase,1.0,0 -88579585,"Receiver",purchase,1.0,0 -88579585,"Remnants Of Isolation",purchase,1.0,0 -88579585,"Renegade Ops",purchase,1.0,0 -88579585,"Reus",purchase,1.0,0 -88579585,"Risen",purchase,1.0,0 -88579585,"Risen 2 - Dark Waters",purchase,1.0,0 -88579585,"Rise of the Argonauts",purchase,1.0,0 -88579585,"Risk of Rain",purchase,1.0,0 -88579585,"Rome Total War",purchase,1.0,0 -88579585,"RPG Maker Luna Engine",purchase,1.0,0 -88579585,"RPG Maker VX Ace",purchase,1.0,0 -88579585,"Sacred 2 Gold",purchase,1.0,0 -88579585,"Sacred Citadel",purchase,1.0,0 -88579585,"Saints Row 2",purchase,1.0,0 -88579585,"Saints Row The Third",purchase,1.0,0 -88579585,"Savant - Ascent",purchase,1.0,0 -88579585,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -88579585,"Sid Meier's Ace Patrol",purchase,1.0,0 -88579585,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -88579585,"Sid Meier's Civilization III Complete",purchase,1.0,0 -88579585,"Sid Meier's Civilization IV",purchase,1.0,0 -88579585,"Sid Meier's Civilization IV",purchase,1.0,0 -88579585,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -88579585,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -88579585,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -88579585,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -88579585,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -88579585,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -88579585,"Sid Meier's Civilization V",purchase,1.0,0 -88579585,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -88579585,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -88579585,"Sid Meier's Pirates!",purchase,1.0,0 -88579585,"Sid Meier's Railroads!",purchase,1.0,0 -88579585,"Solar 2",purchase,1.0,0 -88579585,"SpaceChem",purchase,1.0,0 -88579585,"Spec Ops The Line",purchase,1.0,0 -88579585,"Sprite Lamp",purchase,1.0,0 -88579585,"Spriter Pro",purchase,1.0,0 -88579585,"Starseed Pilgrim",purchase,1.0,0 -88579585,"Star Wars - Battlefront II",purchase,1.0,0 -88579585,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -88579585,"Star Wars Empire at War Gold",purchase,1.0,0 -88579585,"Star Wars Knights of the Old Republic",purchase,1.0,0 -88579585,"Star Wars The Force Unleashed II",purchase,1.0,0 -88579585,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -88579585,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -88579585,"Star Wars Republic Commando",purchase,1.0,0 -88579585,"Star Wars Starfighter",purchase,1.0,0 -88579585,"Star Wars The Clone Wars Republic Heroes",purchase,1.0,0 -88579585,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -88579585,"STCC The Game",purchase,1.0,0 -88579585,"STCC II",purchase,1.0,0 -88579585,"SteamWorld Dig",purchase,1.0,0 -88579585,"Surgeon Simulator",purchase,1.0,0 -88579585,"Syder Arcade",purchase,1.0,0 -88579585,"The Bard's Tale",purchase,1.0,0 -88579585,"The Bridge",purchase,1.0,0 -88579585,"The Bureau XCOM Declassified",purchase,1.0,0 -88579585,"The Darkness II",purchase,1.0,0 -88579585,"The Elder Scrolls V Skyrim",purchase,1.0,0 -88579585,"The Last Remnant",purchase,1.0,0 -88579585,"The Retro Expansion",purchase,1.0,0 -88579585,"The Shivah",purchase,1.0,0 -88579585,"The Swapper",purchase,1.0,0 -88579585,"The Typing of The Dead Overkill",purchase,1.0,0 -88579585,"The WTCC 2010 Pack",purchase,1.0,0 -88579585,"Thief Gold",purchase,1.0,0 -88579585,"Ticket to Ride",purchase,1.0,0 -88579585,"Ticket to Ride - Europe",purchase,1.0,0 -88579585,"Ticket to Ride - USA 1910",purchase,1.0,0 -88579585,"Toki Tori 2+",purchase,1.0,0 -88579585,"To the Moon",purchase,1.0,0 -88579585,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -88579585,"TypeRider",purchase,1.0,0 -88579585,"Wargame European Escalation",purchase,1.0,0 -88579585,"Warhammer 40,000 Space Marine",purchase,1.0,0 -88579585,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -88579585,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -88579585,"Warlock - Master of the Arcane",purchase,1.0,0 -88579585,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -88579585,"Whisper of a Rose",purchase,1.0,0 -88579585,"World of Goo",purchase,1.0,0 -88579585,"Worms Reloaded",purchase,1.0,0 -88579585,"X-COM Apocalypse",purchase,1.0,0 -88579585,"X-COM Enforcer",purchase,1.0,0 -88579585,"X-COM Interceptor",purchase,1.0,0 -88579585,"X-COM Terror from the Deep",purchase,1.0,0 -88579585,"X-COM UFO Defense",purchase,1.0,0 -88579585,"XCOM Enemy Unknown",purchase,1.0,0 -110226344,"H1Z1",purchase,1.0,0 -110226344,"H1Z1",play,289.0,0 -110226344,"H1Z1 Test Server",purchase,1.0,0 -110226344,"H1Z1 Test Server",play,191.0,0 -110226344,"Blacklight Retribution",purchase,1.0,0 -110226344,"Blacklight Retribution",play,3.7,0 -110226344,"Counter-Strike Global Offensive",purchase,1.0,0 -110226344,"Counter-Strike Global Offensive",play,2.2,0 -110226344,"Warframe",purchase,1.0,0 -145027235,"Dota 2",purchase,1.0,0 -145027235,"Dota 2",play,13.8,0 -73435399,"Counter-Strike Source",purchase,1.0,0 -73435399,"Counter-Strike Source",play,6.1,0 -96536935,"The Elder Scrolls V Skyrim",purchase,1.0,0 -96536935,"The Elder Scrolls V Skyrim",play,1.6,0 -96536935,"Team Fortress 2",purchase,1.0,0 -96536935,"Team Fortress 2",play,0.9,0 -70915652,"Dota 2",purchase,1.0,0 -70915652,"Dota 2",play,106.0,0 -70915652,"Fallout New Vegas",purchase,1.0,0 -70915652,"Fallout New Vegas",play,55.0,0 -70915652,"Team Fortress 2",purchase,1.0,0 -70915652,"Team Fortress 2",play,51.0,0 -70915652,"Bastion",purchase,1.0,0 -70915652,"Bastion",play,9.2,0 -70915652,"Psychonauts",purchase,1.0,0 -70915652,"Psychonauts",play,7.1,0 -70915652,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -70915652,"The Elder Scrolls IV Oblivion ",play,7.1,0 -70915652,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -70915652,"Warhammer 40,000 Dawn of War II",play,6.5,0 -70915652,"Overlord",purchase,1.0,0 -70915652,"Overlord",play,5.1,0 -70915652,"Audiosurf",purchase,1.0,0 -70915652,"Audiosurf",play,4.4,0 -70915652,"Half-Life 2",purchase,1.0,0 -70915652,"Half-Life 2",play,3.3,0 -70915652,"Puzzle Quest",purchase,1.0,0 -70915652,"Puzzle Quest",play,2.9,0 -70915652,"Torchlight",purchase,1.0,0 -70915652,"Torchlight",play,2.0,0 -70915652,"Half-Life 2 Episode One",purchase,1.0,0 -70915652,"Half-Life 2 Episode One",play,2.0,0 -70915652,"Portal",purchase,1.0,0 -70915652,"Portal",play,1.9,0 -70915652,"Command and Conquer 4 Tiberian Twilight",purchase,1.0,0 -70915652,"Command and Conquer 4 Tiberian Twilight",play,1.7,0 -70915652,"Titan Quest",purchase,1.0,0 -70915652,"Titan Quest",play,1.3,0 -70915652,"Saints Row The Third",purchase,1.0,0 -70915652,"Saints Row The Third",play,1.0,0 -70915652,"BioShock",purchase,1.0,0 -70915652,"BioShock",play,0.9,0 -70915652,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -70915652,"Plants vs. Zombies Game of the Year",play,0.4,0 -70915652,"Shank",purchase,1.0,0 -70915652,"Shank",play,0.4,0 -70915652,"Neverwinter Nights 2 Platinum",purchase,1.0,0 -70915652,"Neverwinter Nights 2 Platinum",play,0.3,0 -70915652,"Super Meat Boy",purchase,1.0,0 -70915652,"Super Meat Boy",play,0.3,0 -70915652,"BIT.TRIP RUNNER",purchase,1.0,0 -70915652,"BIT.TRIP RUNNER",play,0.3,0 -70915652,"Jamestown",purchase,1.0,0 -70915652,"Jamestown",play,0.3,0 -70915652,"Amnesia The Dark Descent",purchase,1.0,0 -70915652,"Amnesia The Dark Descent",play,0.2,0 -70915652,"PC Gamer",purchase,1.0,0 -70915652,"PC Gamer",play,0.2,0 -70915652,"Cave Story+",purchase,1.0,0 -70915652,"Cave Story+",play,0.2,0 -70915652,"Alien Swarm",purchase,1.0,0 -70915652,"Alien Swarm",play,0.2,0 -70915652,"Red Faction Armageddon",purchase,1.0,0 -70915652,"Red Faction Armageddon",play,0.1,0 -70915652,"VVVVVV",purchase,1.0,0 -70915652,"VVVVVV",play,0.1,0 -70915652,"Hammerfight",purchase,1.0,0 -70915652,"Cogs",purchase,1.0,0 -70915652,"And Yet It Moves",purchase,1.0,0 -70915652,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -70915652,"Gratuitous Space Battles",purchase,1.0,0 -70915652,"Braid",purchase,1.0,0 -70915652,"Company of Heroes",purchase,1.0,0 -70915652,"Company of Heroes (New Steam Version)",purchase,1.0,0 -70915652,"Company of Heroes Opposing Fronts",purchase,1.0,0 -70915652,"Company of Heroes Tales of Valor",purchase,1.0,0 -70915652,"Crayon Physics Deluxe",purchase,1.0,0 -70915652,"Darksiders",purchase,1.0,0 -70915652,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -70915652,"Fallout New Vegas Dead Money",purchase,1.0,0 -70915652,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -70915652,"Half-Life 2 Episode Two",purchase,1.0,0 -70915652,"Half-Life 2 Lost Coast",purchase,1.0,0 -70915652,"LIMBO",purchase,1.0,0 -70915652,"Lone Survivor The Director's Cut",purchase,1.0,0 -70915652,"Metro 2033",purchase,1.0,0 -70915652,"NightSky",purchase,1.0,0 -70915652,"Overlord Raising Hell",purchase,1.0,0 -70915652,"Overlord II",purchase,1.0,0 -70915652,"Psychonauts Demo",purchase,1.0,0 -70915652,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -38436635,"Team Fortress 2",purchase,1.0,0 -38436635,"Team Fortress 2",play,147.0,0 -38436635,"Robocraft",purchase,1.0,0 -38436635,"Robocraft",play,52.0,0 -38436635,"DC Universe Online",purchase,1.0,0 -38436635,"DC Universe Online",play,6.4,0 -38436635,"Half-Life 2 Deathmatch",purchase,1.0,0 -38436635,"Half-Life 2 Deathmatch",play,3.8,0 -38436635,"Half-Life 2 Lost Coast",purchase,1.0,0 -38436635,"Half-Life 2 Lost Coast",play,1.1,0 -38436635,"Speedball 2 Tournament",purchase,1.0,0 -210190607,"Wildlife Park 2 - Fantasy",purchase,1.0,0 -239937501,"Team Fortress 2",purchase,1.0,0 -239937501,"Team Fortress 2",play,0.5,0 -88100014,"Football Manager 2012",purchase,1.0,0 -88100014,"Football Manager 2012",play,17.2,0 -137732181,"Team Fortress 2",purchase,1.0,0 -137732181,"Team Fortress 2",play,1.2,0 -28236623,"Team Fortress Classic",purchase,1.0,0 -28236623,"Team Fortress Classic",play,0.8,0 -28236623,"Half-Life",purchase,1.0,0 -28236623,"Half-Life Blue Shift",purchase,1.0,0 -28236623,"Half-Life Opposing Force",purchase,1.0,0 -264047092,"Sniper Ghost Warrior 2",purchase,1.0,0 -264047092,"Sniper Ghost Warrior 2",play,2.3,0 -264047092,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -159812802,"H1Z1",purchase,1.0,0 -159812802,"H1Z1",play,25.0,0 -159812802,"Left 4 Dead 2",purchase,1.0,0 -159812802,"Left 4 Dead 2",play,14.5,0 -159812802,"Terraria",purchase,1.0,0 -159812802,"Terraria",play,0.4,0 -159812802,"Garry's Mod",purchase,1.0,0 -159812802,"Garry's Mod",play,0.2,0 -159812802,"H1Z1 Test Server",purchase,1.0,0 -300759788,"Dota 2",purchase,1.0,0 -300759788,"Dota 2",play,3.5,0 -192109670,"Dota 2",purchase,1.0,0 -192109670,"Dota 2",play,1.9,0 -184576164,"Europa Universalis IV",purchase,1.0,0 -184576164,"Europa Universalis IV",play,327.0,0 -184576164,"Victoria II",purchase,1.0,0 -184576164,"Victoria II",play,56.0,0 -235358002,"Dota 2",purchase,1.0,0 -235358002,"Dota 2",play,91.0,0 -63539914,"Call of Duty Modern Warfare 2",purchase,1.0,0 -63539914,"Call of Duty Modern Warfare 2",play,4.4,0 -63539914,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -63539914,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.9,0 -8817922,"Counter-Strike",purchase,1.0,0 -8817922,"Counter-Strike Condition Zero",purchase,1.0,0 -8817922,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -8817922,"Counter-Strike Source",purchase,1.0,0 -8817922,"Half-Life 2",purchase,1.0,0 -8817922,"Half-Life 2 Deathmatch",purchase,1.0,0 -8817922,"Half-Life 2 Lost Coast",purchase,1.0,0 -224352019,"Dota 2",purchase,1.0,0 -224352019,"Dota 2",play,4.6,0 -126718281,"The Lord of the Rings War in the North",purchase,1.0,0 -126718281,"The Lord of the Rings War in the North",play,8.1,0 -126718281,"Omerta - City of Gangsters",purchase,1.0,0 -55691331,"Bad Rats",purchase,1.0,0 -122620165,"Dota 2",purchase,1.0,0 -122620165,"Dota 2",play,1337.0,0 -122620165,"Counter-Strike Global Offensive",purchase,1.0,0 -122620165,"Counter-Strike Global Offensive",play,202.0,0 -122620165,"Counter-Strike",purchase,1.0,0 -122620165,"Counter-Strike",play,17.7,0 -122620165,"Saints Row IV",purchase,1.0,0 -122620165,"Saints Row IV",play,5.5,0 -122620165,"Sir, You Are Being Hunted",purchase,1.0,0 -122620165,"Sir, You Are Being Hunted",play,3.0,0 -122620165,"PAYDAY 2",purchase,1.0,0 -122620165,"PAYDAY 2",play,1.6,0 -122620165,"Counter-Strike Source",purchase,1.0,0 -122620165,"Counter-Strike Source",play,1.2,0 -122620165,"DiggerOnline",purchase,1.0,0 -122620165,"DiggerOnline",play,0.9,0 -122620165,"Garry's Mod",purchase,1.0,0 -122620165,"Garry's Mod",play,0.3,0 -122620165,"Archeblade",purchase,1.0,0 -122620165,"Counter-Strike Condition Zero",purchase,1.0,0 -122620165,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -122620165,"Dead Island",purchase,1.0,0 -122620165,"Dead Island Epidemic",purchase,1.0,0 -122620165,"Dead Island Riptide",purchase,1.0,0 -122620165,"F.E.A.R. Online",purchase,1.0,0 -122620165,"Insurgency",purchase,1.0,0 -122620165,"Sanctum 2",purchase,1.0,0 -122620165,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -122620165,"Unturned",purchase,1.0,0 -80988171,"Counter-Strike Source",purchase,1.0,0 -80988171,"Counter-Strike Source",play,183.0,0 -80988171,"Portal 2",purchase,1.0,0 -80988171,"Portal 2",play,47.0,0 -80988171,"Broken Sword 1 - Shadow of the Templars Director's Cut",purchase,1.0,0 -80988171,"Broken Sword 1 - Shadow of the Templars Director's Cut",play,15.2,0 -80988171,"Peggle Deluxe",purchase,1.0,0 -80988171,"Peggle Deluxe",play,12.4,0 -80988171,"VVVVVV",purchase,1.0,0 -80988171,"VVVVVV",play,11.8,0 -80988171,"Portal",purchase,1.0,0 -80988171,"Portal",play,6.2,0 -80988171,"Peggle Nights",purchase,1.0,0 -80988171,"Peggle Nights",play,3.9,0 -80988171,"Oddworld Munch's Oddysee",purchase,1.0,0 -80988171,"Oddworld Munch's Oddysee",play,0.3,0 -80988171,"Oddworld Stranger's Wrath HD",purchase,1.0,0 -80988171,"Oddworld Stranger's Wrath HD",play,0.1,0 -80988171,"Oddworld Abe's Oddysee",purchase,1.0,0 -80988171,"Broken Sword 2 - the Smoking Mirror Remastered",purchase,1.0,0 -80988171,"Broken Sword 3 - the Sleeping Dragon",purchase,1.0,0 -80988171,"Oddworld Abe's Exoddus",purchase,1.0,0 -166547657,"Dota 2",purchase,1.0,0 -166547657,"Dota 2",play,1.3,0 -60236480,"Counter-Strike",purchase,1.0,0 -60236480,"Day of Defeat",purchase,1.0,0 -60236480,"Deathmatch Classic",purchase,1.0,0 -60236480,"Half-Life",purchase,1.0,0 -60236480,"Half-Life Blue Shift",purchase,1.0,0 -60236480,"Half-Life Opposing Force",purchase,1.0,0 -60236480,"Ricochet",purchase,1.0,0 -60236480,"Team Fortress Classic",purchase,1.0,0 -227844450,"TyranoBuilder Visual Novel Studio",purchase,1.0,0 -227844450,"TyranoBuilder Visual Novel Studio",play,10.5,0 -149233338,"Dota 2",purchase,1.0,0 -149233338,"Dota 2",play,5.5,0 -197987776,"Dota 2",purchase,1.0,0 -197987776,"Dota 2",play,14.7,0 -189020294,"Dota 2",purchase,1.0,0 -189020294,"Dota 2",play,10.1,0 -39911920,"Counter-Strike",purchase,1.0,0 -39911920,"Counter-Strike",play,2258.0,0 -39911920,"Counter-Strike Condition Zero",purchase,1.0,0 -39911920,"Counter-Strike Condition Zero",play,32.0,0 -39911920,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -39911920,"Day of Defeat",purchase,1.0,0 -39911920,"Deathmatch Classic",purchase,1.0,0 -39911920,"Ricochet",purchase,1.0,0 -67341526,"Football Manager 2010",purchase,1.0,0 -67341526,"Football Manager 2010",play,19.7,0 -157906181,"Dota 2",purchase,1.0,0 -157906181,"Dota 2",play,0.1,0 -176967288,"Toribash",purchase,1.0,0 -176967288,"Toribash",play,3.0,0 -176967288,"Realm of the Mad God",purchase,1.0,0 -176967288,"Realm of the Mad God",play,0.6,0 -176967288,"World of Guns Gun Disassembly",purchase,1.0,0 -176967288,"World of Guns Gun Disassembly",play,0.4,0 -176967288,"Spiral Knights",purchase,1.0,0 -176967288,"Spiral Knights",play,0.1,0 -40051659,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -40051659,"Call of Duty Modern Warfare 2 - Multiplayer",play,124.0,0 -40051659,"Counter-Strike Source",purchase,1.0,0 -40051659,"Counter-Strike Source",play,75.0,0 -40051659,"Call of Duty Modern Warfare 2",purchase,1.0,0 -40051659,"Call of Duty Modern Warfare 2",play,46.0,0 -40051659,"Left 4 Dead",purchase,1.0,0 -40051659,"Left 4 Dead",play,26.0,0 -40051659,"Left 4 Dead 2",purchase,1.0,0 -40051659,"Left 4 Dead 2",play,19.2,0 -40051659,"Counter-Strike",purchase,1.0,0 -40051659,"Counter-Strike",play,9.0,0 -40051659,"Counter-Strike Condition Zero",purchase,1.0,0 -40051659,"Counter-Strike Condition Zero",play,3.9,0 -40051659,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -40051659,"Counter-Strike Condition Zero Deleted Scenes",play,1.8,0 -40051659,"Portal",purchase,1.0,0 -40051659,"Portal",play,0.2,0 -29052354,"Counter-Strike Source",purchase,1.0,0 -29052354,"Counter-Strike Source",play,65.0,0 -29052354,"Counter-Strike",purchase,1.0,0 -29052354,"Counter-Strike",play,47.0,0 -29052354,"Team Fortress 2",purchase,1.0,0 -29052354,"Team Fortress 2",play,12.2,0 -29052354,"Counter-Strike Global Offensive",purchase,1.0,0 -29052354,"Counter-Strike Global Offensive",play,4.4,0 -29052354,"Counter-Strike Condition Zero",purchase,1.0,0 -29052354,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -29052354,"Day of Defeat",purchase,1.0,0 -29052354,"Day of Defeat Source",purchase,1.0,0 -29052354,"Deathmatch Classic",purchase,1.0,0 -29052354,"Half-Life",purchase,1.0,0 -29052354,"Half-Life 2 Deathmatch",purchase,1.0,0 -29052354,"Half-Life 2 Lost Coast",purchase,1.0,0 -29052354,"Half-Life Blue Shift",purchase,1.0,0 -29052354,"Half-Life Opposing Force",purchase,1.0,0 -29052354,"Ricochet",purchase,1.0,0 -29052354,"Team Fortress Classic",purchase,1.0,0 -98848653,"Warframe",purchase,1.0,0 -98848653,"Warframe",play,334.0,0 -98848653,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -98848653,"Red Orchestra Ostfront 41-45",play,174.0,0 -98848653,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -98848653,"METAL GEAR SOLID V THE PHANTOM PAIN",play,104.0,0 -98848653,"Killing Floor",purchase,1.0,0 -98848653,"Killing Floor",play,81.0,0 -98848653,"Terraria",purchase,1.0,0 -98848653,"Terraria",play,79.0,0 -98848653,"Starbound",purchase,1.0,0 -98848653,"Starbound",play,48.0,0 -98848653,"State of Decay",purchase,1.0,0 -98848653,"State of Decay",play,47.0,0 -98848653,"The Elder Scrolls V Skyrim",purchase,1.0,0 -98848653,"The Elder Scrolls V Skyrim",play,40.0,0 -98848653,"The Witcher 3 Wild Hunt",purchase,1.0,0 -98848653,"The Witcher 3 Wild Hunt",play,40.0,0 -98848653,"Project Zomboid",purchase,1.0,0 -98848653,"Project Zomboid",play,27.0,0 -98848653,"Metro 2033",purchase,1.0,0 -98848653,"Metro 2033",play,25.0,0 -98848653,"Wolfenstein The New Order",purchase,1.0,0 -98848653,"Wolfenstein The New Order",play,22.0,0 -98848653,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -98848653,"DARK SOULS II Scholar of the First Sin",play,21.0,0 -98848653,"Endless Space",purchase,1.0,0 -98848653,"Endless Space",play,21.0,0 -98848653,"BioShock Infinite",purchase,1.0,0 -98848653,"BioShock Infinite",play,19.5,0 -98848653,"Saints Row IV",purchase,1.0,0 -98848653,"Saints Row IV",play,17.9,0 -98848653,"The Long Dark",purchase,1.0,0 -98848653,"The Long Dark",play,17.1,0 -98848653,"Dishonored (RU)",purchase,1.0,0 -98848653,"Dishonored (RU)",play,16.1,0 -98848653,"Shadowrun Hong Kong",purchase,1.0,0 -98848653,"Shadowrun Hong Kong",play,15.0,0 -98848653,"Transistor",purchase,1.0,0 -98848653,"Transistor",play,14.5,0 -98848653,"Metro Last Light Redux",purchase,1.0,0 -98848653,"Metro Last Light Redux",play,14.0,0 -98848653,"Sniper Elite V2",purchase,1.0,0 -98848653,"Sniper Elite V2",play,13.8,0 -98848653,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -98848653,"METAL GEAR RISING REVENGEANCE",play,13.2,0 -98848653,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -98848653,"METAL GEAR SOLID V GROUND ZEROES",play,12.6,0 -98848653,"Prince of Persia Warrior Within",purchase,1.0,0 -98848653,"Prince of Persia Warrior Within",play,12.2,0 -98848653,"The Lord of the Rings War in the North",purchase,1.0,0 -98848653,"The Lord of the Rings War in the North",play,11.9,0 -98848653,"Natural Selection 2",purchase,1.0,0 -98848653,"Natural Selection 2",play,11.7,0 -98848653,"HAWKEN",purchase,1.0,0 -98848653,"HAWKEN",play,11.2,0 -98848653,"Dex",purchase,1.0,0 -98848653,"Dex",play,10.8,0 -98848653,"Metro 2033 Redux",purchase,1.0,0 -98848653,"Metro 2033 Redux",play,10.1,0 -98848653,"Assassin's Creed IV Black Flag",purchase,1.0,0 -98848653,"Assassin's Creed IV Black Flag",play,9.9,0 -98848653,"Mad Max",purchase,1.0,0 -98848653,"Mad Max",play,9.8,0 -98848653,"Team Fortress 2",purchase,1.0,0 -98848653,"Team Fortress 2",play,8.9,0 -98848653,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -98848653,"Rising Storm/Red Orchestra 2 Multiplayer",play,8.4,0 -98848653,"Fractured Space",purchase,1.0,0 -98848653,"Fractured Space",play,7.0,0 -98848653,"DiRT 3 Complete Edition",purchase,1.0,0 -98848653,"DiRT 3 Complete Edition",play,6.5,0 -98848653,"Darkest Dungeon",purchase,1.0,0 -98848653,"Darkest Dungeon",play,6.3,0 -98848653,"PAYDAY 2",purchase,1.0,0 -98848653,"PAYDAY 2",play,5.8,0 -98848653,"Risk of Rain",purchase,1.0,0 -98848653,"Risk of Rain",play,5.2,0 -98848653,"Dungeon Defenders",purchase,1.0,0 -98848653,"Dungeon Defenders",play,3.3,0 -98848653,"Rodina",purchase,1.0,0 -98848653,"Rodina",play,3.1,0 -98848653,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",purchase,1.0,0 -98848653,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",play,2.8,0 -98848653,"Dungeon of the Endless",purchase,1.0,0 -98848653,"Dungeon of the Endless",play,2.3,0 -98848653,"Dota 2",purchase,1.0,0 -98848653,"Dota 2",play,2.2,0 -98848653,"Red Faction Armageddon",purchase,1.0,0 -98848653,"Red Faction Armageddon",play,2.2,0 -98848653,"Star Conflict",purchase,1.0,0 -98848653,"Star Conflict",play,2.1,0 -98848653,"Super Monday Night Combat",purchase,1.0,0 -98848653,"Super Monday Night Combat",play,2.0,0 -98848653,"Ori and the Blind Forest",purchase,1.0,0 -98848653,"Ori and the Blind Forest",play,1.2,0 -98848653,"Mare Nostrum",purchase,1.0,0 -98848653,"Mare Nostrum",play,1.1,0 -98848653,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -98848653,"Killing Floor Mod Defence Alliance 2",play,0.7,0 -98848653,"Wolfenstein The Old Blood ",purchase,1.0,0 -98848653,"Wolfenstein The Old Blood ",play,0.7,0 -98848653,"Planetary Annihilation",purchase,1.0,0 -98848653,"Planetary Annihilation",play,0.6,0 -98848653,"Westerado Double Barreled",purchase,1.0,0 -98848653,"Westerado Double Barreled",play,0.6,0 -98848653,"Satellite Reign",purchase,1.0,0 -98848653,"Satellite Reign",play,0.3,0 -98848653,"Xenonauts",purchase,1.0,0 -98848653,"Xenonauts",play,0.2,0 -98848653,"Nosgoth",purchase,1.0,0 -98848653,"Nosgoth",play,0.1,0 -98848653,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -98848653,"Unturned",purchase,1.0,0 -98848653,"DCS World",purchase,1.0,0 -98848653,"Bastion",purchase,1.0,0 -98848653,"Darkest Hour Europe '44-'45",purchase,1.0,0 -98848653,"Left 4 Dead 2",purchase,1.0,0 -98848653,"Oddworld Abe's Exoddus",purchase,1.0,0 -98848653,"Oddworld Abe's Oddysee",purchase,1.0,0 -98848653,"PAYDAY The Heist",purchase,1.0,0 -98848653,"Planetary Annihilation - Digital Deluxe Bundle",purchase,1.0,0 -98848653,"Planetary Annihilation - Original Soundtrack",purchase,1.0,0 -98848653,"Red Faction",purchase,1.0,0 -98848653,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -98848653,"Red Faction Armageddon Soundtrack",purchase,1.0,0 -98848653,"Red Faction II",purchase,1.0,0 -98848653,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -98848653,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -98848653,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -98848653,"Starbound - Unstable",purchase,1.0,0 -98848653,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -98848653,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -98848653,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -98848653,"theHunter",purchase,1.0,0 -98848653,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -98848653,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",purchase,1.0,0 -208467850,"Alien Swarm",purchase,1.0,0 -208467850,"Alien Swarm",play,22.0,0 -230031062,"Counter-Strike Global Offensive",purchase,1.0,0 -230031062,"Counter-Strike Global Offensive",play,518.0,0 -230031062,"Counter-Strike Nexon Zombies",purchase,1.0,0 -230031062,"Counter-Strike Nexon Zombies",play,29.0,0 -230031062,"Saints Row The Third",purchase,1.0,0 -230031062,"Saints Row The Third",play,20.0,0 -230031062,"Brick-Force",purchase,1.0,0 -230031062,"Brick-Force",play,4.3,0 -230031062,"Serious Sam 3 BFE",purchase,1.0,0 -230031062,"Serious Sam 3 BFE",play,2.7,0 -230031062,"Left 4 Dead 2",purchase,1.0,0 -230031062,"Left 4 Dead 2",play,2.4,0 -230031062,"Team Fortress 2",purchase,1.0,0 -230031062,"Team Fortress 2",play,2.0,0 -230031062,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -230031062,"S.K.I.L.L. - Special Force 2",play,0.8,0 -230031062,"Unturned",purchase,1.0,0 -55672384,"Call of Duty Modern Warfare 2",purchase,1.0,0 -55672384,"Call of Duty Modern Warfare 2",play,7.0,0 -55672384,"Left 4 Dead 2",purchase,1.0,0 -55672384,"Left 4 Dead 2",play,4.9,0 -55672384,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -55672384,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.8,0 -55672384,"Empire Total War",purchase,1.0,0 -55672384,"Empire Total War",play,0.2,0 -126992940,"Team Fortress 2",purchase,1.0,0 -126992940,"Team Fortress 2",play,239.0,0 -126992940,"Nuclear Throne",purchase,1.0,0 -126992940,"Nuclear Throne",play,23.0,0 -126992940,"Garry's Mod",purchase,1.0,0 -126992940,"Garry's Mod",play,22.0,0 -126992940,"Dota 2",purchase,1.0,0 -126992940,"Dota 2",play,11.1,0 -126992940,"FTL Faster Than Light",purchase,1.0,0 -126992940,"FTL Faster Than Light",play,10.9,0 -126992940,"Don't Starve Together Beta",purchase,1.0,0 -126992940,"Don't Starve Together Beta",play,8.9,0 -126992940,"Relic Hunters Zero",purchase,1.0,0 -126992940,"Relic Hunters Zero",play,8.7,0 -126992940,"Heavy Bullets",purchase,1.0,0 -126992940,"Heavy Bullets",play,6.6,0 -126992940,"Super Crate Box",purchase,1.0,0 -126992940,"Super Crate Box",play,5.2,0 -126992940,"Toribash",purchase,1.0,0 -126992940,"Toribash",play,3.1,0 -126992940,"Don't Starve",purchase,1.0,0 -126992940,"Don't Starve",play,3.0,0 -126992940,"Crypt of the NecroDancer",purchase,1.0,0 -126992940,"Crypt of the NecroDancer",play,1.7,0 -126992940,"The Expendabros",purchase,1.0,0 -126992940,"The Expendabros",play,1.7,0 -126992940,"Kung Fury",purchase,1.0,0 -126992940,"Kung Fury",play,1.6,0 -126992940,"Gear Up",purchase,1.0,0 -126992940,"Gear Up",play,0.5,0 -126992940,"Famaze",purchase,1.0,0 -126992940,"Famaze",play,0.4,0 -112376397,"Dota 2",purchase,1.0,0 -112376397,"Dota 2",play,408.0,0 -112376397,"The Witcher 3 Wild Hunt",purchase,1.0,0 -112376397,"The Witcher 3 Wild Hunt",play,79.0,0 -112376397,"Assassin's Creed III",purchase,1.0,0 -112376397,"Assassin's Creed III",play,48.0,0 -112376397,"Darksiders II",purchase,1.0,0 -112376397,"Darksiders II",play,35.0,0 -112376397,"PAYDAY 2",purchase,1.0,0 -112376397,"PAYDAY 2",play,28.0,0 -112376397,"Borderlands 2",purchase,1.0,0 -112376397,"Borderlands 2",play,13.9,0 -112376397,"Might & Magic Heroes VI",purchase,1.0,0 -112376397,"Might & Magic Heroes VI",play,7.7,0 -112376397,"Solstice Arena",purchase,1.0,0 -112376397,"Solstice Arena",play,2.5,0 -112376397,"Magicka Wizard Wars",purchase,1.0,0 -112376397,"Magicka Wizard Wars",play,0.8,0 -112376397,"Borderlands 2 RU",purchase,1.0,0 -112376397,"Darksiders",purchase,1.0,0 -112376397,"Darksiders II Deathinitive Edition",purchase,1.0,0 -112376397,"Darksiders II Soundtrack",purchase,1.0,0 -112376397,"Darksiders Soundtrack",purchase,1.0,0 -112376397,"Loadout",purchase,1.0,0 -172386568,"Dota 2",purchase,1.0,0 -172386568,"Dota 2",play,21.0,0 -144652370,"Team Fortress 2",purchase,1.0,0 -144652370,"Team Fortress 2",play,3.6,0 -109446190,"Team Fortress 2",purchase,1.0,0 -109446190,"Team Fortress 2",play,0.4,0 -137623071,"Dota 2",purchase,1.0,0 -137623071,"Dota 2",play,63.0,0 -157003504,"Team Fortress 2",purchase,1.0,0 -157003504,"Team Fortress 2",play,1.0,0 -122956129,"Robocraft",purchase,1.0,0 -122956129,"Robocraft",play,700.0,0 -122956129,"PlanetSide 2",purchase,1.0,0 -122956129,"PlanetSide 2",play,480.0,0 -122956129,"Trove",purchase,1.0,0 -122956129,"Trove",play,382.0,0 -122956129,"Warframe",purchase,1.0,0 -122956129,"Warframe",play,326.0,0 -122956129,"Marvel Heroes 2015",purchase,1.0,0 -122956129,"Marvel Heroes 2015",play,116.0,0 -122956129,"Fallout 4",purchase,1.0,0 -122956129,"Fallout 4",play,64.0,0 -122956129,"Alien Swarm",purchase,1.0,0 -122956129,"Alien Swarm",play,3.4,0 -122956129,"War Thunder",purchase,1.0,0 -122956129,"War Thunder",play,2.1,0 -122956129,"HAWKEN",purchase,1.0,0 -122956129,"HAWKEN",play,0.6,0 -197876733,"Metro 2033",purchase,1.0,0 -197876733,"Alien Breed Impact",purchase,1.0,0 -197876733,"Amnesia The Dark Descent",purchase,1.0,0 -234785523,"Dota 2",purchase,1.0,0 -234785523,"Dota 2",play,7.4,0 -212790797,"Dota 2",purchase,1.0,0 -212790797,"Dota 2",play,5.9,0 -212790797,"Free to Play",purchase,1.0,0 -37727952,"Company of Heroes 2",purchase,1.0,0 -37727952,"Company of Heroes 2",play,43.0,0 -37727952,"Company of Heroes",purchase,1.0,0 -37727952,"Company of Heroes",play,0.5,0 -37727952,"Company of Heroes (New Steam Version)",purchase,1.0,0 -37727952,"Company of Heroes Opposing Fronts",purchase,1.0,0 -37727952,"Company of Heroes Tales of Valor",purchase,1.0,0 -37727952,"Day of Defeat Source",purchase,1.0,0 -257200017,"Unturned",purchase,1.0,0 -257200017,"WARMODE",purchase,1.0,0 -257200017,"War Thunder",purchase,1.0,0 -242985754,"Dota 2",purchase,1.0,0 -242985754,"Dota 2",play,2.6,0 -242985754,"F.E.A.R. Online",purchase,1.0,0 -242985754,"Firefall",purchase,1.0,0 -242985754,"GunZ 2 The Second Duel",purchase,1.0,0 -242985754,"HAWKEN",purchase,1.0,0 -62885387,"Napoleon Total War",purchase,1.0,0 -62885387,"Napoleon Total War",play,1.1,0 -93203004,"Team Fortress 2",purchase,1.0,0 -93203004,"Team Fortress 2",play,8.3,0 -135244036,"Starbound",purchase,1.0,0 -135244036,"Starbound",play,194.0,0 -135244036,"RPG Maker 2003",purchase,1.0,0 -135244036,"RPG Maker 2003",play,150.0,0 -135244036,"Terraria",purchase,1.0,0 -135244036,"Terraria",play,133.0,0 -135244036,"Garry's Mod",purchase,1.0,0 -135244036,"Garry's Mod",play,101.0,0 -135244036,"ORION Prelude",purchase,1.0,0 -135244036,"ORION Prelude",play,52.0,0 -135244036,"Space Engineers",purchase,1.0,0 -135244036,"Space Engineers",play,39.0,0 -135244036,"Reassembly",purchase,1.0,0 -135244036,"Reassembly",play,36.0,0 -135244036,"Besiege",purchase,1.0,0 -135244036,"Besiege",play,29.0,0 -135244036,"Duck Game",purchase,1.0,0 -135244036,"Duck Game",play,23.0,0 -135244036,"Robocraft",purchase,1.0,0 -135244036,"Robocraft",play,23.0,0 -135244036,"Unturned",purchase,1.0,0 -135244036,"Unturned",play,23.0,0 -135244036,"AirMech",purchase,1.0,0 -135244036,"AirMech",play,16.5,0 -135244036,"Sky Nations",purchase,1.0,0 -135244036,"Sky Nations",play,14.6,0 -135244036,"Evolve",purchase,1.0,0 -135244036,"Evolve",play,8.9,0 -135244036,"Manyland",purchase,1.0,0 -135244036,"Manyland",play,8.1,0 -135244036,"Risk of Rain",purchase,1.0,0 -135244036,"Risk of Rain",play,6.3,0 -135244036,"Universe Sandbox",purchase,1.0,0 -135244036,"Universe Sandbox",play,6.1,0 -135244036,"Secrets of Grindea",purchase,1.0,0 -135244036,"Secrets of Grindea",play,5.5,0 -135244036,"Nidhogg",purchase,1.0,0 -135244036,"Nidhogg",play,5.5,0 -135244036,"FEZ",purchase,1.0,0 -135244036,"FEZ",play,4.8,0 -135244036,"HAWKEN",purchase,1.0,0 -135244036,"HAWKEN",play,4.4,0 -135244036,"Sparkle 2 Evo",purchase,1.0,0 -135244036,"Sparkle 2 Evo",play,4.1,0 -135244036,"Team Fortress 2",purchase,1.0,0 -135244036,"Team Fortress 2",play,4.0,0 -135244036,"Natural Selection 2",purchase,1.0,0 -135244036,"Natural Selection 2",play,3.1,0 -135244036,"Elsword",purchase,1.0,0 -135244036,"Elsword",play,3.0,0 -135244036,"Kill Fun Yeah",purchase,1.0,0 -135244036,"Kill Fun Yeah",play,2.7,0 -135244036,"Blockland",purchase,1.0,0 -135244036,"Blockland",play,2.6,0 -135244036,"Don't Starve Together Beta",purchase,1.0,0 -135244036,"Don't Starve Together Beta",play,2.3,0 -135244036,"GameMaker Studio",purchase,1.0,0 -135244036,"GameMaker Studio",play,2.2,0 -135244036,"Loadout",purchase,1.0,0 -135244036,"Loadout",play,1.9,0 -135244036,"Spooky's House of Jump Scares",purchase,1.0,0 -135244036,"Spooky's House of Jump Scares",play,1.8,0 -135244036,"The Mighty Quest For Epic Loot",purchase,1.0,0 -135244036,"The Mighty Quest For Epic Loot",play,1.6,0 -135244036,"Dino D-Day",purchase,1.0,0 -135244036,"Dino D-Day",play,1.6,0 -135244036,"Moonbase Alpha",purchase,1.0,0 -135244036,"Moonbase Alpha",play,1.5,0 -135244036,"KWAAN",purchase,1.0,0 -135244036,"KWAAN",play,1.4,0 -135244036,"Cubic Castles",purchase,1.0,0 -135244036,"Cubic Castles",play,1.2,0 -135244036,"Guncraft",purchase,1.0,0 -135244036,"Guncraft",play,1.1,0 -135244036,"Trouble In The Manor",purchase,1.0,0 -135244036,"Trouble In The Manor",play,0.9,0 -135244036,"Orbital Gear",purchase,1.0,0 -135244036,"Orbital Gear",play,0.8,0 -135244036,"Toribash",purchase,1.0,0 -135244036,"Toribash",play,0.8,0 -135244036,"Zero Gear",purchase,1.0,0 -135244036,"Zero Gear",play,0.6,0 -135244036,"Perpetuum",purchase,1.0,0 -135244036,"Perpetuum",play,0.5,0 -135244036,"Planet Explorers",purchase,1.0,0 -135244036,"Planet Explorers",play,0.4,0 -135244036,"Just Cause 2",purchase,1.0,0 -135244036,"Just Cause 2",play,0.3,0 -135244036,"Source Filmmaker",purchase,1.0,0 -135244036,"Source Filmmaker",play,0.1,0 -135244036,"Yet Another Zombie Defense",purchase,1.0,0 -135244036,"Deepworld",purchase,1.0,0 -135244036,"Left 4 Dead",purchase,1.0,0 -135244036,"GRAV",purchase,1.0,0 -135244036,"Counter-Strike Nexon Zombies",purchase,1.0,0 -135244036,"Crow - Hunter (Trapper Class)",purchase,1.0,0 -135244036,"Evolve - Behemoth",purchase,1.0,0 -135244036,"No More Room in Hell",purchase,1.0,0 -135244036,"Slim - Hunter (Medic Class)",purchase,1.0,0 -135244036,"Starbound - Unstable",purchase,1.0,0 -135244036,"Sunny - Hunter (Support Class)",purchase,1.0,0 -135244036,"Torvald - Hunter (Assault Class)",purchase,1.0,0 -135244036,"War Thunder",purchase,1.0,0 -166234554,"Dota 2",purchase,1.0,0 -166234554,"Dota 2",play,0.2,0 -115109218,"Football Manager 2013",purchase,1.0,0 -115109218,"Football Manager 2013",play,217.0,0 -115109218,"Football Manager 2015",purchase,1.0,0 -115109218,"Football Manager 2015",play,135.0,0 -222042345,"Dota 2",purchase,1.0,0 -222042345,"Dota 2",play,1.4,0 -222042345,"Counter-Strike Nexon Zombies",purchase,1.0,0 -222042345,"No More Room in Hell",purchase,1.0,0 -222042345,"Prime World",purchase,1.0,0 -50888871,"Counter-Strike Source",purchase,1.0,0 -50888871,"Counter-Strike Source",play,150.0,0 -50888871,"Half-Life 2 Deathmatch",purchase,1.0,0 -50888871,"Half-Life 2 Deathmatch",play,0.5,0 -50888871,"Day of Defeat Source",purchase,1.0,0 -50888871,"Half-Life 2 Lost Coast",purchase,1.0,0 -270356700,"Counter-Strike Global Offensive",purchase,1.0,0 -270356700,"Counter-Strike Global Offensive",play,369.0,0 -270356700,"Saints Row The Third",purchase,1.0,0 -270356700,"Saints Row The Third",play,15.4,0 -270356700,"Metro 2033",purchase,1.0,0 -270356700,"Metro 2033",play,14.0,0 -270356700,"Mount & Blade With Fire and Sword",purchase,1.0,0 -270356700,"Mount & Blade With Fire and Sword",play,13.2,0 -270356700,"Clicker Heroes",purchase,1.0,0 -270356700,"Clicker Heroes",play,8.8,0 -270356700,"Garry's Mod",purchase,1.0,0 -270356700,"Garry's Mod",play,6.0,0 -270356700,"SMITE",purchase,1.0,0 -270356700,"SMITE",play,4.6,0 -270356700,"Orcs Must Die!",purchase,1.0,0 -270356700,"Orcs Must Die!",play,3.6,0 -270356700,"NotGTAV",purchase,1.0,0 -270356700,"NotGTAV",play,3.1,0 -270356700,"Max Payne",purchase,1.0,0 -270356700,"Max Payne",play,3.0,0 -270356700,"One Finger Death Punch",purchase,1.0,0 -270356700,"One Finger Death Punch",play,2.6,0 -270356700,"POSTAL 2",purchase,1.0,0 -270356700,"POSTAL 2",play,2.3,0 -270356700,"GRID",purchase,1.0,0 -270356700,"GRID",play,2.2,0 -270356700,"Sid Meier's Civilization V",purchase,1.0,0 -270356700,"Sid Meier's Civilization V",play,2.1,0 -270356700,"Dead Bits",purchase,1.0,0 -270356700,"Dead Bits",play,2.0,0 -270356700,"Jet Gunner",purchase,1.0,0 -270356700,"Jet Gunner",play,1.8,0 -270356700,"The Expendabros",purchase,1.0,0 -270356700,"The Expendabros",play,1.7,0 -270356700,"ORION Prelude",purchase,1.0,0 -270356700,"ORION Prelude",play,1.0,0 -270356700,"Dino D-Day",purchase,1.0,0 -270356700,"Dino D-Day",play,0.9,0 -270356700,"Enclave",purchase,1.0,0 -270356700,"Enclave",play,0.7,0 -270356700,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -270356700,"Nosferatu The Wrath of Malachi",play,0.6,0 -270356700,"Spirits",purchase,1.0,0 -270356700,"Spirits",play,0.6,0 -270356700,"Cry of Fear",purchase,1.0,0 -270356700,"Cry of Fear",play,0.6,0 -270356700,"Unturned",purchase,1.0,0 -270356700,"Unturned",play,0.6,0 -270356700,"The Ship",purchase,1.0,0 -270356700,"The Ship",play,0.5,0 -270356700,"Dota 2",purchase,1.0,0 -270356700,"Dota 2",play,0.3,0 -270356700,"No More Room in Hell",purchase,1.0,0 -270356700,"No More Room in Hell",play,0.3,0 -270356700,"Anomaly Warzone Earth",purchase,1.0,0 -270356700,"Anomaly Warzone Earth",play,0.2,0 -270356700,"Path of Exile",purchase,1.0,0 -270356700,"Path of Exile",play,0.2,0 -270356700,"Trove",purchase,1.0,0 -270356700,"Despair",purchase,1.0,0 -270356700,"The Ship Single Player",purchase,1.0,0 -270356700,"Counter-Strike Nexon Zombies",purchase,1.0,0 -270356700,"Cult of the Wind",purchase,1.0,0 -270356700,"Dead Island",purchase,1.0,0 -270356700,"KnightShift",purchase,1.0,0 -270356700,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -270356700,"Saviors",purchase,1.0,0 -270356700,"Strike Suit Infinity",purchase,1.0,0 -270356700,"Supreme Commander Forged Alliance",purchase,1.0,0 -270356700,"The Ship Tutorial",purchase,1.0,0 -270356700,"Two Worlds Epic Edition",purchase,1.0,0 -51941260,"Fallout New Vegas",purchase,1.0,0 -51941260,"Fallout New Vegas",play,85.0,0 -51941260,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -51941260,"Tom Clancy's Ghost Recon Phantoms - EU",play,28.0,0 -51941260,"Aliens vs. Predator",purchase,1.0,0 -51941260,"Aliens vs. Predator",play,13.4,0 -51941260,"Deus Ex Human Revolution",purchase,1.0,0 -51941260,"Deus Ex Human Revolution",play,11.7,0 -51941260,"Nosgoth",purchase,1.0,0 -51941260,"Nosgoth",play,9.7,0 -51941260,"Two Worlds II",purchase,1.0,0 -51941260,"Two Worlds II",play,3.6,0 -51941260,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -51941260,"Warhammer 40,000 Dawn of War II",play,0.9,0 -51941260,"Tom Clancy's Ghost Recon Phantoms - EU Looks and Power (Support)",purchase,1.0,0 -14962163,"Counter-Strike Global Offensive",purchase,1.0,0 -14962163,"Counter-Strike Global Offensive",play,389.0,0 -14962163,"Robocraft",purchase,1.0,0 -14962163,"Robocraft",play,228.0,0 -14962163,"Counter-Strike Source",purchase,1.0,0 -14962163,"Counter-Strike Source",play,187.0,0 -14962163,"AdVenture Capitalist",purchase,1.0,0 -14962163,"AdVenture Capitalist",play,144.0,0 -14962163,"Euro Truck Simulator 2",purchase,1.0,0 -14962163,"Euro Truck Simulator 2",play,111.0,0 -14962163,"Clicker Heroes",purchase,1.0,0 -14962163,"Clicker Heroes",play,88.0,0 -14962163,"Killing Floor",purchase,1.0,0 -14962163,"Killing Floor",play,86.0,0 -14962163,"Age of Empires II HD Edition",purchase,1.0,0 -14962163,"Age of Empires II HD Edition",play,82.0,0 -14962163,"Rocket League",purchase,1.0,0 -14962163,"Rocket League",play,51.0,0 -14962163,"Grand Theft Auto IV",purchase,1.0,0 -14962163,"Grand Theft Auto IV",play,40.0,0 -14962163,"DayZ",purchase,1.0,0 -14962163,"DayZ",play,35.0,0 -14962163,"Killing Floor 2",purchase,1.0,0 -14962163,"Killing Floor 2",play,18.1,0 -14962163,"Portal 2",purchase,1.0,0 -14962163,"Portal 2",play,12.6,0 -14962163,"Left 4 Dead",purchase,1.0,0 -14962163,"Left 4 Dead",play,10.6,0 -14962163,"Grand Theft Auto V",purchase,1.0,0 -14962163,"Grand Theft Auto V",play,9.1,0 -14962163,"Torchlight II",purchase,1.0,0 -14962163,"Torchlight II",play,9.0,0 -14962163,"Counter-Strike",purchase,1.0,0 -14962163,"Counter-Strike",play,7.2,0 -14962163,"Kerbal Space Program",purchase,1.0,0 -14962163,"Kerbal Space Program",play,5.4,0 -14962163,"Dota 2",purchase,1.0,0 -14962163,"Dota 2",play,5.3,0 -14962163,"Batman Arkham City GOTY",purchase,1.0,0 -14962163,"Batman Arkham City GOTY",play,5.1,0 -14962163,"Portal",purchase,1.0,0 -14962163,"Portal",play,3.5,0 -14962163,"Stronghold Crusader 2",purchase,1.0,0 -14962163,"Stronghold Crusader 2",play,2.6,0 -14962163,"Hotline Miami",purchase,1.0,0 -14962163,"Hotline Miami",play,2.3,0 -14962163,"H1Z1",purchase,1.0,0 -14962163,"H1Z1",play,2.1,0 -14962163,"Alien Swarm",purchase,1.0,0 -14962163,"Alien Swarm",play,1.9,0 -14962163,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -14962163,"Dark Souls Prepare to Die Edition",play,1.8,0 -14962163,"The Elder Scrolls V Skyrim",purchase,1.0,0 -14962163,"The Elder Scrolls V Skyrim",play,1.7,0 -14962163,"Garry's Mod",purchase,1.0,0 -14962163,"Garry's Mod",play,1.7,0 -14962163,"Battlefield 2",purchase,1.0,0 -14962163,"Battlefield 2",play,1.5,0 -14962163,"Prison Architect",purchase,1.0,0 -14962163,"Prison Architect",play,1.1,0 -14962163,"DiRT 3",purchase,1.0,0 -14962163,"DiRT 3",play,1.0,0 -14962163,"Grand Theft Auto San Andreas",purchase,1.0,0 -14962163,"Grand Theft Auto San Andreas",play,0.5,0 -14962163,"Crysis 2 Maximum Edition",purchase,1.0,0 -14962163,"Crysis 2 Maximum Edition",play,0.5,0 -14962163,"Borderlands 2",purchase,1.0,0 -14962163,"Borderlands 2",play,0.5,0 -14962163,"Team Fortress 2",purchase,1.0,0 -14962163,"Team Fortress 2",play,0.4,0 -14962163,"Terraria",purchase,1.0,0 -14962163,"Terraria",play,0.4,0 -14962163,"Metro 2033",purchase,1.0,0 -14962163,"Metro 2033",play,0.3,0 -14962163,"Space Engineers",purchase,1.0,0 -14962163,"Space Engineers",play,0.3,0 -14962163,"Quake Live",purchase,1.0,0 -14962163,"Quake Live",play,0.2,0 -14962163,"Revolution Ace",purchase,1.0,0 -14962163,"Revolution Ace",play,0.2,0 -14962163,"Path of Exile",purchase,1.0,0 -14962163,"Warlock - Master of the Arcane",purchase,1.0,0 -14962163,"Team Fortress Classic",purchase,1.0,0 -14962163,"Arma Cold War Assault",purchase,1.0,0 -14962163,"Assassin's Creed",purchase,1.0,0 -14962163,"Assassin's Creed Freedom Cry",purchase,1.0,0 -14962163,"Assassin's Creed II",purchase,1.0,0 -14962163,"Assassin's Creed IV Black Flag",purchase,1.0,0 -14962163,"Assassin's Creed Liberation",purchase,1.0,0 -14962163,"Assassin's Creed Revelations",purchase,1.0,0 -14962163,"Batman Arkham Origins",purchase,1.0,0 -14962163,"BioShock",purchase,1.0,0 -14962163,"BioShock 2",purchase,1.0,0 -14962163,"BioShock Infinite",purchase,1.0,0 -14962163,"Darwinia",purchase,1.0,0 -14962163,"Day of Defeat",purchase,1.0,0 -14962163,"Day of Defeat Source",purchase,1.0,0 -14962163,"Deathmatch Classic",purchase,1.0,0 -14962163,"DEFCON",purchase,1.0,0 -14962163,"DiRT 3 Complete Edition",purchase,1.0,0 -14962163,"Dishonored",purchase,1.0,0 -14962163,"Goat Simulator",purchase,1.0,0 -14962163,"Grand Theft Auto San Andreas",purchase,1.0,0 -14962163,"Grand Theft Auto Vice City",purchase,1.0,0 -14962163,"Grand Theft Auto Vice City",purchase,1.0,0 -14962163,"Grand Theft Auto III",purchase,1.0,0 -14962163,"Grand Theft Auto III",purchase,1.0,0 -14962163,"H1Z1 Test Server",purchase,1.0,0 -14962163,"Half-Life",purchase,1.0,0 -14962163,"Half-Life 2 Deathmatch",purchase,1.0,0 -14962163,"Half-Life 2 Lost Coast",purchase,1.0,0 -14962163,"Half-Life Blue Shift",purchase,1.0,0 -14962163,"Half-Life Opposing Force",purchase,1.0,0 -14962163,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -14962163,"Left 4 Dead 2",purchase,1.0,0 -14962163,"Mirror's Edge",purchase,1.0,0 -14962163,"Multiwinia",purchase,1.0,0 -14962163,"Ricochet",purchase,1.0,0 -14962163,"Sanctum 2",purchase,1.0,0 -14962163,"SimCity 4 Deluxe",purchase,1.0,0 -14962163,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -14962163,"Terrorhedron",purchase,1.0,0 -14962163,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -14962163,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -14962163,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -14962163,"The Ship",purchase,1.0,0 -14962163,"The Ship Single Player",purchase,1.0,0 -14962163,"The Ship Tutorial",purchase,1.0,0 -14962163,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -14962163,"The Witcher Enhanced Edition",purchase,1.0,0 -14962163,"Tomb Raider",purchase,1.0,0 -14962163,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -14962163,"Uplink",purchase,1.0,0 -14962163,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -85136214,"Terraria",purchase,1.0,0 -85136214,"Terraria",play,357.0,0 -44153929,"Counter-Strike",purchase,1.0,0 -44153929,"Counter-Strike",play,2092.0,0 -44153929,"Counter-Strike Condition Zero",purchase,1.0,0 -44153929,"Counter-Strike Condition Zero",play,4.1,0 -44153929,"Dota 2",purchase,1.0,0 -44153929,"Dota 2",play,1.8,0 -44153929,"theHunter",purchase,1.0,0 -44153929,"theHunter",play,1.4,0 -44153929,"Modular Combat",purchase,1.0,0 -44153929,"Modular Combat",play,0.6,0 -44153929,"APB Reloaded",purchase,1.0,0 -44153929,"APB Reloaded",play,0.5,0 -44153929,"Deathmatch Classic",purchase,1.0,0 -44153929,"Deathmatch Classic",play,0.4,0 -44153929,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -44153929,"Counter-Strike Condition Zero Deleted Scenes",play,0.4,0 -44153929,"No More Room in Hell",purchase,1.0,0 -44153929,"No More Room in Hell",play,0.2,0 -44153929,"Day of Defeat",purchase,1.0,0 -44153929,"Day of Defeat",play,0.1,0 -44153929,"Arma Cold War Assault",purchase,1.0,0 -44153929,"Ricochet",purchase,1.0,0 -40080833,"Football Manager 2014",purchase,1.0,0 -40080833,"Football Manager 2014",play,928.0,0 -40080833,"Football Manager 2015",purchase,1.0,0 -40080833,"Football Manager 2015",play,862.0,0 -40080833,"Football Manager 2012",purchase,1.0,0 -40080833,"Football Manager 2012",play,855.0,0 -40080833,"Football Manager 2013",purchase,1.0,0 -40080833,"Football Manager 2013",play,640.0,0 -40080833,"Football Manager 2011",purchase,1.0,0 -40080833,"Football Manager 2011",play,305.0,0 -40080833,"Football Manager 2010",purchase,1.0,0 -40080833,"Football Manager 2010",play,282.0,0 -40080833,"Football Manager 2016",purchase,1.0,0 -40080833,"Football Manager 2016",play,153.0,0 -40080833,"New Star Soccer 5",purchase,1.0,0 -40080833,"New Star Soccer 5",play,12.2,0 -40080833,"Death Rally",purchase,1.0,0 -40080833,"Death Rally",play,9.1,0 -40080833,"RollerCoaster Tycoon Deluxe",purchase,1.0,0 -40080833,"RollerCoaster Tycoon Deluxe",play,6.7,0 -40080833,"Counter-Strike",purchase,1.0,0 -40080833,"Counter-Strike",play,3.0,0 -40080833,"The Elder Scrolls V Skyrim",purchase,1.0,0 -40080833,"The Elder Scrolls V Skyrim",play,1.3,0 -40080833,"Half-Life",purchase,1.0,0 -40080833,"Half-Life",play,0.6,0 -40080833,"An Alternative Reality The Football Manager Documentary",purchase,1.0,0 -40080833,"Counter-Strike Condition Zero",purchase,1.0,0 -40080833,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -40080833,"Football Manager 2009",purchase,1.0,0 -40080833,"Sid Meier's Civilization V",purchase,1.0,0 -40080833,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -40080833,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -40080833,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -40080833,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -40080833,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -21539893,"The Binding of Isaac",purchase,1.0,0 -21539893,"The Binding of Isaac",play,70.0,0 -21539893,"The Binding of Isaac Rebirth",purchase,1.0,0 -21539893,"The Binding of Isaac Rebirth",play,66.0,0 -21539893,"Arma 2 Operation Arrowhead",purchase,1.0,0 -21539893,"Arma 2 Operation Arrowhead",play,51.0,0 -21539893,"Counter-Strike Global Offensive",purchase,1.0,0 -21539893,"Counter-Strike Global Offensive",play,50.0,0 -21539893,"Counter-Strike Source",purchase,1.0,0 -21539893,"Counter-Strike Source",play,44.0,0 -21539893,"Sid Meier's Civilization V",purchase,1.0,0 -21539893,"Sid Meier's Civilization V",play,36.0,0 -21539893,"Team Fortress 2",purchase,1.0,0 -21539893,"Team Fortress 2",play,33.0,0 -21539893,"Worms Revolution",purchase,1.0,0 -21539893,"Worms Revolution",play,20.0,0 -21539893,"Dota 2",purchase,1.0,0 -21539893,"Dota 2",play,12.3,0 -21539893,"Insurgency",purchase,1.0,0 -21539893,"Insurgency",play,11.6,0 -21539893,"Batman Arkham City GOTY",purchase,1.0,0 -21539893,"Batman Arkham City GOTY",play,10.3,0 -21539893,"Middle-earth Shadow of Mordor",purchase,1.0,0 -21539893,"Middle-earth Shadow of Mordor",play,9.8,0 -21539893,"LEGO MARVEL Super Heroes",purchase,1.0,0 -21539893,"LEGO MARVEL Super Heroes",play,9.6,0 -21539893,"Saints Row The Third",purchase,1.0,0 -21539893,"Saints Row The Third",play,7.5,0 -21539893,"Garry's Mod",purchase,1.0,0 -21539893,"Garry's Mod",play,6.0,0 -21539893,"Trine 2",purchase,1.0,0 -21539893,"Trine 2",play,5.7,0 -21539893,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -21539893,"Tom Clancy's Splinter Cell Blacklist",play,5.1,0 -21539893,"Wargame AirLand Battle",purchase,1.0,0 -21539893,"Wargame AirLand Battle",play,4.6,0 -21539893,"Terraria",purchase,1.0,0 -21539893,"Terraria",play,3.0,0 -21539893,"Realm of the Mad God",purchase,1.0,0 -21539893,"Realm of the Mad God",play,2.3,0 -21539893,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -21539893,"Burnout Paradise The Ultimate Box",play,1.9,0 -21539893,"War Thunder",purchase,1.0,0 -21539893,"War Thunder",play,1.8,0 -21539893,"No More Room in Hell",purchase,1.0,0 -21539893,"No More Room in Hell",play,0.7,0 -21539893,"Mirror's Edge",purchase,1.0,0 -21539893,"Mirror's Edge",play,0.4,0 -21539893,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -21539893,"Rising Storm/Red Orchestra 2 Multiplayer",play,0.3,0 -21539893,"Unturned",purchase,1.0,0 -21539893,"Unturned",play,0.3,0 -21539893,"Dirty Bomb",purchase,1.0,0 -21539893,"Dirty Bomb",play,0.2,0 -21539893,"McPixel",purchase,1.0,0 -21539893,"Amnesia The Dark Descent",purchase,1.0,0 -21539893,"Arma 2",purchase,1.0,0 -21539893,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -21539893,"Arma Cold War Assault",purchase,1.0,0 -21539893,"Crysis 2 Maximum Edition",purchase,1.0,0 -21539893,"Dead Space",purchase,1.0,0 -21539893,"Half-Life 2",purchase,1.0,0 -21539893,"Half-Life 2 Deathmatch",purchase,1.0,0 -21539893,"Half-Life 2 Lost Coast",purchase,1.0,0 -21539893,"Half-Life Source",purchase,1.0,0 -21539893,"Half-Life Deathmatch Source",purchase,1.0,0 -21539893,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -21539893,"Medal of Honor(TM) Single Player",purchase,1.0,0 -21539893,"Medal of Honor Pre-Order",purchase,1.0,0 -21539893,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -21539893,"Teleglitch Die More Edition",purchase,1.0,0 -21539893,"Tom Clancy's Ghost Recon Phantoms - EU Support Starter Pack",purchase,1.0,0 -211363681,"Dota 2",purchase,1.0,0 -211363681,"Dota 2",play,3.1,0 -122162211,"Team Fortress 2",purchase,1.0,0 -122162211,"Team Fortress 2",play,15.3,0 -143006890,"Dota 2",purchase,1.0,0 -143006890,"Dota 2",play,0.5,0 -308178753,"Dota 2",purchase,1.0,0 -308178753,"Dota 2",play,14.6,0 -100359523,"Call of Duty Modern Warfare 3",purchase,1.0,0 -100359523,"Call of Duty Modern Warfare 3",play,143.0,0 -100359523,"DOOM 3 BFG Edition",purchase,1.0,0 -100359523,"DOOM 3 BFG Edition",play,77.0,0 -100359523,"RIFT",purchase,1.0,0 -100359523,"RIFT",play,55.0,0 -100359523,"Homefront",purchase,1.0,0 -100359523,"Homefront",play,14.7,0 -100359523,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -100359523,"Call of Duty Modern Warfare 3 - Multiplayer",play,4.4,0 -100359523,"Neverwinter",purchase,1.0,0 -100359523,"Neverwinter",play,0.2,0 -100359523,"Panzar",purchase,1.0,0 -157141574,"Path of Exile",purchase,1.0,0 -157141574,"Path of Exile",play,136.0,0 -76170931,"Silent Hill Homecoming",purchase,1.0,0 -76170931,"Silent Hill Homecoming",play,2.8,0 -176024097,"Dota 2",purchase,1.0,0 -176024097,"Dota 2",play,3.4,0 -280317702,"Brawlhalla",purchase,1.0,0 -76451157,"FINAL FANTASY XIV A Realm Reborn",purchase,1.0,0 -76451157,"FINAL FANTASY XIV A Realm Reborn",play,222.0,0 -76451157,"Watch_Dogs",purchase,1.0,0 -76451157,"Watch_Dogs",play,27.0,0 -76451157,"TERA",purchase,1.0,0 -76451157,"TERA",play,23.0,0 -76451157,"Firefall",purchase,1.0,0 -76451157,"Firefall",play,23.0,0 -76451157,"Saints Row 2",purchase,1.0,0 -76451157,"Saints Row 2",play,18.5,0 -76451157,"Saints Row The Third",purchase,1.0,0 -76451157,"Saints Row The Third",play,12.6,0 -76451157,"Game Dev Tycoon",purchase,1.0,0 -76451157,"Game Dev Tycoon",play,12.1,0 -76451157,"Call of Duty Advanced Warfare",purchase,1.0,0 -76451157,"Call of Duty Advanced Warfare",play,11.4,0 -76451157,"Sid Meier's Civilization V",purchase,1.0,0 -76451157,"Sid Meier's Civilization V",play,10.5,0 -76451157,"Assassin's Creed",purchase,1.0,0 -76451157,"Assassin's Creed",play,7.3,0 -76451157,"Dota 2",purchase,1.0,0 -76451157,"Dota 2",play,6.1,0 -76451157,"The Elder Scrolls V Skyrim",purchase,1.0,0 -76451157,"The Elder Scrolls V Skyrim",play,5.3,0 -76451157,"FINAL FANTASY VIII",purchase,1.0,0 -76451157,"FINAL FANTASY VIII",play,4.0,0 -76451157,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -76451157,"Call of Duty Advanced Warfare - Multiplayer",play,4.0,0 -76451157,"The Black Watchmen",purchase,1.0,0 -76451157,"The Black Watchmen",play,3.8,0 -76451157,"Offworld Trading Company",purchase,1.0,0 -76451157,"Offworld Trading Company",play,3.5,0 -76451157,"FINAL FANTASY VII",purchase,1.0,0 -76451157,"FINAL FANTASY VII",play,3.1,0 -76451157,"Left 4 Dead 2",purchase,1.0,0 -76451157,"Left 4 Dead 2",play,2.8,0 -76451157,"Guild Wars",purchase,1.0,0 -76451157,"Guild Wars",play,2.5,0 -76451157,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -76451157,"Fallout 3 - Game of the Year Edition",play,2.3,0 -76451157,"Nether",purchase,1.0,0 -76451157,"Nether",play,2.3,0 -76451157,"Need for Speed Undercover",purchase,1.0,0 -76451157,"Need for Speed Undercover",play,2.3,0 -76451157,"Homeworld Remastered Collection",purchase,1.0,0 -76451157,"Homeworld Remastered Collection",play,2.0,0 -76451157,"TransOcean The Shipping Company",purchase,1.0,0 -76451157,"TransOcean The Shipping Company",play,1.7,0 -76451157,"Hacker Evolution",purchase,1.0,0 -76451157,"Hacker Evolution",play,1.3,0 -76451157,"Warface",purchase,1.0,0 -76451157,"Warface",play,1.3,0 -76451157,"Uplink",purchase,1.0,0 -76451157,"Uplink",play,1.0,0 -76451157,"Zombies Monsters Robots",purchase,1.0,0 -76451157,"Zombies Monsters Robots",play,0.9,0 -76451157,"Counter-Strike Global Offensive",purchase,1.0,0 -76451157,"Counter-Strike Global Offensive",play,0.9,0 -76451157,"Mirror's Edge",purchase,1.0,0 -76451157,"Mirror's Edge",play,0.8,0 -76451157,"Warframe",purchase,1.0,0 -76451157,"Warframe",play,0.6,0 -76451157,"Portal",purchase,1.0,0 -76451157,"Portal",play,0.6,0 -76451157,"Borderlands",purchase,1.0,0 -76451157,"Borderlands",play,0.5,0 -76451157,"Car Mechanic Simulator 2014",purchase,1.0,0 -76451157,"Car Mechanic Simulator 2014",play,0.5,0 -76451157,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -76451157,"Kingdoms of Amalur Reckoning",play,0.4,0 -76451157,"Space Engineers",purchase,1.0,0 -76451157,"Space Engineers",play,0.3,0 -76451157,"Saints Row IV",purchase,1.0,0 -76451157,"Saints Row IV",play,0.3,0 -76451157,"Fiesta Online NA",purchase,1.0,0 -76451157,"Fiesta Online NA",play,0.2,0 -76451157,"Arma 2 DayZ Mod",purchase,1.0,0 -76451157,"Arma 2 DayZ Mod",play,0.2,0 -76451157,"Tiamat X",purchase,1.0,0 -76451157,"Tiamat X",play,0.1,0 -76451157,"Trove",purchase,1.0,0 -76451157,"Hacker Evolution - Untold",purchase,1.0,0 -76451157,"DayZ",purchase,1.0,0 -76451157,"Arma 2 Private Military Company",purchase,1.0,0 -76451157,"Arma 2 Operation Arrowhead",purchase,1.0,0 -76451157,"Arma 2 British Armed Forces",purchase,1.0,0 -76451157,"Hacker Evolution Duality",purchase,1.0,0 -76451157,"Arma 2",purchase,1.0,0 -76451157,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -76451157,"Arma Cold War Assault",purchase,1.0,0 -76451157,"Arma Gold Edition",purchase,1.0,0 -76451157,"Arma X Anniversary Edition",purchase,1.0,0 -76451157,"Assassin's Creed II",purchase,1.0,0 -76451157,"Assassin's Creed III",purchase,1.0,0 -76451157,"Besiege",purchase,1.0,0 -76451157,"Borderlands 2",purchase,1.0,0 -76451157,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -76451157,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -76451157,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -76451157,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -76451157,"Counter-Strike",purchase,1.0,0 -76451157,"Counter-Strike Condition Zero",purchase,1.0,0 -76451157,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -76451157,"Counter-Strike Source",purchase,1.0,0 -76451157,"Darwinia",purchase,1.0,0 -76451157,"Day of Defeat",purchase,1.0,0 -76451157,"Day of Defeat Source",purchase,1.0,0 -76451157,"Deathmatch Classic",purchase,1.0,0 -76451157,"DEFCON",purchase,1.0,0 -76451157,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -76451157,"Fallout",purchase,1.0,0 -76451157,"Fallout 2",purchase,1.0,0 -76451157,"Fallout New Vegas",purchase,1.0,0 -76451157,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -76451157,"Fallout New Vegas Dead Money",purchase,1.0,0 -76451157,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -76451157,"Fallout Tactics",purchase,1.0,0 -76451157,"FINAL FANTASY III",purchase,1.0,0 -76451157,"FINAL FANTASY IV",purchase,1.0,0 -76451157,"FINAL FANTASY XIII",purchase,1.0,0 -76451157,"FINAL FANTASY XIII-2",purchase,1.0,0 -76451157,"FINAL FANTASY XIV A Realm Reborn CE (NA version)",purchase,1.0,0 -76451157,"Guild Wars Trilogy",purchase,1.0,0 -76451157,"Hacknet",purchase,1.0,0 -76451157,"Half-Life",purchase,1.0,0 -76451157,"Half-Life 2",purchase,1.0,0 -76451157,"Half-Life 2 Deathmatch",purchase,1.0,0 -76451157,"Half-Life 2 Episode One",purchase,1.0,0 -76451157,"Half-Life 2 Episode Two",purchase,1.0,0 -76451157,"Half-Life 2 Lost Coast",purchase,1.0,0 -76451157,"Half-Life Blue Shift",purchase,1.0,0 -76451157,"Half-Life Opposing Force",purchase,1.0,0 -76451157,"Half-Life Source",purchase,1.0,0 -76451157,"Half-Life Deathmatch Source",purchase,1.0,0 -76451157,"Left 4 Dead",purchase,1.0,0 -76451157,"MechWarrior Online",purchase,1.0,0 -76451157,"Multiwinia",purchase,1.0,0 -76451157,"Need for Speed Hot Pursuit",purchase,1.0,0 -76451157,"Need for Speed SHIFT",purchase,1.0,0 -76451157,"Nether - Chosen",purchase,1.0,0 -76451157,"Nether Arena",purchase,1.0,0 -76451157,"Portal 2",purchase,1.0,0 -76451157,"Ricochet",purchase,1.0,0 -76451157,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -76451157,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -76451157,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -76451157,"Team Fortress Classic",purchase,1.0,0 -76451157,"TERA Accessorize Pack",purchase,1.0,0 -76451157,"TERA Explorer's Pack",purchase,1.0,0 -76451157,"TERA Starter Pack",purchase,1.0,0 -76451157,"TERA Steam-Powered Pack",purchase,1.0,0 -76451157,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -76451157,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -76451157,"The Witcher Enhanced Edition",purchase,1.0,0 -101777615,"Team Fortress 2",purchase,1.0,0 -101777615,"Team Fortress 2",play,0.7,0 -210961590,"Counter-Strike Global Offensive",purchase,1.0,0 -210961590,"Counter-Strike Global Offensive",play,154.0,0 -112547463,"Just Cause 2",purchase,1.0,0 -112547463,"Just Cause 2",play,78.0,0 -112547463,"The Elder Scrolls V Skyrim",purchase,1.0,0 -112547463,"The Elder Scrolls V Skyrim",play,58.0,0 -112547463,"Hitman Absolution",purchase,1.0,0 -112547463,"Hitman Absolution",play,53.0,0 -112547463,"Tomb Raider",purchase,1.0,0 -112547463,"Tomb Raider",play,25.0,0 -112547463,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -112547463,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -126796140,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -126796140,"Call of Duty Black Ops II - Multiplayer",play,18.8,0 -126796140,"Call of Duty Black Ops II",purchase,1.0,0 -126796140,"Call of Duty Black Ops II",play,8.3,0 -126796140,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -126796140,"Batman Arkham Asylum GOTY Edition",play,5.7,0 -126796140,"Garry's Mod",purchase,1.0,0 -126796140,"Garry's Mod",play,4.1,0 -126796140,"Goat Simulator",purchase,1.0,0 -126796140,"Goat Simulator",play,3.3,0 -126796140,"I am Bread",purchase,1.0,0 -126796140,"I am Bread",play,1.7,0 -126796140,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -126796140,"Call of Duty Black Ops II - Zombies",play,1.7,0 -126796140,"Sid Meier's Civilization V",purchase,1.0,0 -126796140,"Sid Meier's Civilization V",play,1.6,0 -126796140,"Pinball Arcade",purchase,1.0,0 -126796140,"Pinball Arcade",play,0.9,0 -53509003,"Arma 2 Operation Arrowhead",purchase,1.0,0 -53509003,"Arma 2 Operation Arrowhead",play,66.0,0 -53509003,"Arma 3",purchase,1.0,0 -53509003,"Arma 3",play,3.2,0 -53509003,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -53509003,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,1.2,0 -53509003,"Arma 2 DayZ Mod",purchase,1.0,0 -53509003,"Arma 2 DayZ Mod",play,0.5,0 -53509003,"Counter-Strike Condition Zero",purchase,1.0,0 -53509003,"Counter-Strike Condition Zero",play,0.3,0 -53509003,"Arma 3 Zeus",purchase,1.0,0 -53509003,"Counter-Strike",purchase,1.0,0 -53509003,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -53509003,"Day of Defeat",purchase,1.0,0 -53509003,"Deathmatch Classic",purchase,1.0,0 -53509003,"Ricochet",purchase,1.0,0 -4812175,"Counter-Strike",purchase,1.0,0 -4812175,"Counter-Strike",play,4.2,0 -4812175,"Half-Life",purchase,1.0,0 -4812175,"Half-Life",play,0.2,0 -4812175,"Day of Defeat",purchase,1.0,0 -4812175,"Deathmatch Classic",purchase,1.0,0 -4812175,"Half-Life Blue Shift",purchase,1.0,0 -4812175,"Half-Life Opposing Force",purchase,1.0,0 -4812175,"Ricochet",purchase,1.0,0 -4812175,"Team Fortress Classic",purchase,1.0,0 -124810250,"Counter-Strike Global Offensive",purchase,1.0,0 -124810250,"Counter-Strike Global Offensive",play,1657.0,0 -124810250,"Dota 2",purchase,1.0,0 -124810250,"Dota 2",play,1180.0,0 -124810250,"No More Room in Hell",purchase,1.0,0 -124810250,"No More Room in Hell",play,18.1,0 -124810250,"APB Reloaded",purchase,1.0,0 -124810250,"APB Reloaded",play,0.2,0 -124810250,"SMITE",purchase,1.0,0 -198901867,"Dota 2",purchase,1.0,0 -198901867,"Dota 2",play,105.0,0 -198901867,"Counter-Strike Nexon Zombies",purchase,1.0,0 -198901867,"Neverwinter",purchase,1.0,0 -198901867,"No More Room in Hell",purchase,1.0,0 -198901867,"Robocraft",purchase,1.0,0 -84079486,"Terraria",purchase,1.0,0 -84079486,"Terraria",play,3.8,0 -135929781,"Dota 2",purchase,1.0,0 -135929781,"Dota 2",play,2.5,0 -170535102,"Team Fortress 2",purchase,1.0,0 -170535102,"Team Fortress 2",play,9.4,0 -147764275,"Dota 2",purchase,1.0,0 -147764275,"Dota 2",play,766.0,0 -56014527,"Left 4 Dead 2",purchase,1.0,0 -56014527,"Left 4 Dead 2",play,92.0,0 -56014527,"Aliens vs. Predator",purchase,1.0,0 -56014527,"Aliens vs. Predator",play,13.6,0 -116000122,"Dota 2",purchase,1.0,0 -116000122,"Dota 2",play,923.0,0 -66550579,"Mount & Blade Warband",purchase,1.0,0 -66550579,"Mount & Blade Warband",play,4.3,0 -184173132,"Dota 2",purchase,1.0,0 -184173132,"Dota 2",play,8.4,0 -248882404,"Team Fortress 2",purchase,1.0,0 -248882404,"Team Fortress 2",play,21.0,0 -248882404,"Garry's Mod",purchase,1.0,0 -248882404,"Garry's Mod",play,17.7,0 -248882404,"War Thunder",purchase,1.0,0 -248882404,"War Thunder",play,5.7,0 -248882404,"Counter-Strike Global Offensive",purchase,1.0,0 -248882404,"Counter-Strike Global Offensive",play,5.3,0 -248882404,"Depth",purchase,1.0,0 -248882404,"Depth",play,3.3,0 -248882404,"Space Engineers",purchase,1.0,0 -248882404,"Space Engineers",play,1.9,0 -248882404,"Dota 2",purchase,1.0,0 -248882404,"Dota 2",play,1.8,0 -248882404,"Star Wars Empire at War Gold",purchase,1.0,0 -248882404,"Star Wars Empire at War Gold",play,1.5,0 -248882404,"Grand Theft Auto IV",purchase,1.0,0 -248882404,"Grand Theft Auto IV",play,0.6,0 -248882404,"Transformice",purchase,1.0,0 -248882404,"Transformice",play,0.2,0 -248882404,"Robocraft",purchase,1.0,0 -248882404,"Dino D-Day",purchase,1.0,0 -248882404,"Gun Monkeys",purchase,1.0,0 -248882404,"RIFT",purchase,1.0,0 -248882404,"Serious Sam 2",purchase,1.0,0 -298381887,"Dota 2",purchase,1.0,0 -298381887,"Dota 2",play,87.0,0 -263042332,"Counter-Strike Nexon Zombies",purchase,1.0,0 -194993610,"Dota 2",purchase,1.0,0 -194993610,"Dota 2",play,0.2,0 -185494712,"Counter-Strike Global Offensive",purchase,1.0,0 -185494712,"Counter-Strike Global Offensive",play,850.0,0 -185494712,"Garry's Mod",purchase,1.0,0 -185494712,"Garry's Mod",play,407.0,0 -185494712,"Unturned",purchase,1.0,0 -185494712,"Unturned",play,27.0,0 -185494712,"Counter-Strike Source",purchase,1.0,0 -185494712,"Counter-Strike Source",play,2.1,0 -185494712,"FaceRig",purchase,1.0,0 -185494712,"FaceRig",play,0.2,0 -185494712,"Loadout",purchase,1.0,0 -185494712,"Nosgoth",purchase,1.0,0 -185494712,"The Pewdieverse DLC",purchase,1.0,0 -227246783,"War Inc. Battlezone",purchase,1.0,0 -236191066,"Dota 2",purchase,1.0,0 -236191066,"Dota 2",play,0.1,0 -281302904,"Spooky's House of Jump Scares",purchase,1.0,0 -145512685,"Counter-Strike Global Offensive",purchase,1.0,0 -145512685,"Counter-Strike Global Offensive",play,869.0,0 -145512685,"Unturned",purchase,1.0,0 -145512685,"Unturned",play,214.0,0 -145512685,"Euro Truck Simulator 2",purchase,1.0,0 -145512685,"Euro Truck Simulator 2",play,198.0,0 -145512685,"APB Reloaded",purchase,1.0,0 -145512685,"APB Reloaded",play,162.0,0 -145512685,"Farming Simulator 15",purchase,1.0,0 -145512685,"Farming Simulator 15",play,157.0,0 -145512685,"Spintires",purchase,1.0,0 -145512685,"Spintires",play,131.0,0 -145512685,"ORION Prelude",purchase,1.0,0 -145512685,"ORION Prelude",play,34.0,0 -145512685,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -145512685,"Tom Clancy's Ghost Recon Phantoms - EU",play,33.0,0 -145512685,"Left 4 Dead 2",purchase,1.0,0 -145512685,"Left 4 Dead 2",play,15.6,0 -145512685,"Deus Ex Human Revolution",purchase,1.0,0 -145512685,"Deus Ex Human Revolution",play,14.3,0 -145512685,"Portal 2",purchase,1.0,0 -145512685,"Portal 2",play,10.8,0 -145512685,"War Thunder",purchase,1.0,0 -145512685,"War Thunder",play,10.1,0 -145512685,"No More Room in Hell",purchase,1.0,0 -145512685,"No More Room in Hell",play,7.7,0 -145512685,"Heroes & Generals",purchase,1.0,0 -145512685,"Heroes & Generals",play,6.4,0 -145512685,"theHunter",purchase,1.0,0 -145512685,"theHunter",play,6.0,0 -145512685,"Hitman Absolution",purchase,1.0,0 -145512685,"Hitman Absolution",play,2.1,0 -145512685,"HAWKEN",purchase,1.0,0 -145512685,"HAWKEN",play,1.7,0 -145512685,"Warface",purchase,1.0,0 -145512685,"Warface",play,1.0,0 -145512685,"sZone-Online",purchase,1.0,0 -145512685,"sZone-Online",play,0.5,0 -145512685,"Age of Chivalry",purchase,1.0,0 -145512685,"Age of Chivalry",play,0.4,0 -145512685,"Agricultural Simulator 2013 Steam Edition",purchase,1.0,0 -145512685,"Agricultural Simulator 2013 Steam Edition",play,0.4,0 -145512685,"Tactical Intervention",purchase,1.0,0 -145512685,"Tactical Intervention",play,0.3,0 -145512685,"Kingdom Wars",purchase,1.0,0 -145512685,"Kingdom Wars",play,0.3,0 -145512685,"Darkwind War on Wheels",purchase,1.0,0 -145512685,"Darkwind War on Wheels",play,0.2,0 -145512685,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -145512685,"Dead Island Epidemic",purchase,1.0,0 -145512685,"Stronghold Kingdoms",purchase,1.0,0 -130247011,"Dota 2",purchase,1.0,0 -130247011,"Dota 2",play,3.6,0 -159114904,"Arma 2 Operation Arrowhead",purchase,1.0,0 -159114904,"Arma 2 Operation Arrowhead",play,378.0,0 -159114904,"War Thunder",purchase,1.0,0 -159114904,"War Thunder",play,9.7,0 -159114904,"RACE 07",purchase,1.0,0 -159114904,"RACE 07",play,1.7,0 -159114904,"World of Soccer online",purchase,1.0,0 -159114904,"World of Soccer online",play,0.5,0 -159114904,"Only If",purchase,1.0,0 -159114904,"Only If",play,0.1,0 -159114904,"Gun Monkeys",purchase,1.0,0 -159114904,"Arma 2",purchase,1.0,0 -159114904,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -159114904,"GTR Evolution",purchase,1.0,0 -159114904,"Aerena",purchase,1.0,0 -159114904,"APB Reloaded",purchase,1.0,0 -159114904,"City of Steam Arkadia",purchase,1.0,0 -159114904,"Cry of Fear",purchase,1.0,0 -159114904,"Dead Island Epidemic",purchase,1.0,0 -159114904,"Defiance",purchase,1.0,0 -159114904,"Dino D-Day",purchase,1.0,0 -159114904,"Fistful of Frags",purchase,1.0,0 -159114904,"Gear Up",purchase,1.0,0 -159114904,"Heroes & Generals",purchase,1.0,0 -159114904,"InMind VR",purchase,1.0,0 -159114904,"Left 4 Dead 2",purchase,1.0,0 -159114904,"Loadout",purchase,1.0,0 -159114904,"Moonbase Alpha",purchase,1.0,0 -159114904,"No More Room in Hell",purchase,1.0,0 -159114904,"Panzar",purchase,1.0,0 -159114904,"PlanetSide 2",purchase,1.0,0 -159114904,"Quantum Rush Online",purchase,1.0,0 -159114904,"RaceRoom Racing Experience ",purchase,1.0,0 -159114904,"Really Big Sky",purchase,1.0,0 -159114904,"Realm of the Mad God",purchase,1.0,0 -159114904,"RIFT",purchase,1.0,0 -159114904,"Robocraft",purchase,1.0,0 -159114904,"Serena",purchase,1.0,0 -159114904,"SpaceChem",purchase,1.0,0 -159114904,"Star Conflict",purchase,1.0,0 -159114904,"Tactical Intervention",purchase,1.0,0 -159114904,"theHunter",purchase,1.0,0 -159114904,"Toribash",purchase,1.0,0 -159114904,"Warface",purchase,1.0,0 -159114904,"Warframe",purchase,1.0,0 -159114904,"World of Guns Gun Disassembly",purchase,1.0,0 -95347493,"Team Fortress 2",purchase,1.0,0 -95347493,"Team Fortress 2",play,23.0,0 -95347493,"Dota 2",purchase,1.0,0 -95347493,"Dota 2",play,9.4,0 -249871404,"Dota 2",purchase,1.0,0 -249871404,"Dota 2",play,0.5,0 -242287908,"Cities XL Platinum",purchase,1.0,0 -242287908,"Cities XL Platinum",play,1.4,0 -173194267,"Dota 2",purchase,1.0,0 -173194267,"Dota 2",play,27.0,0 -78481493,"Football Manager 2010",purchase,1.0,0 -78481493,"Football Manager 2010",play,31.0,0 -50131557,"Football Manager 2012",purchase,1.0,0 -50131557,"Football Manager 2012",play,366.0,0 -50131557,"Football Manager 2013",purchase,1.0,0 -50131557,"Football Manager 2013",play,177.0,0 -50131557,"Football Manager 2015",purchase,1.0,0 -50131557,"Football Manager 2015",play,164.0,0 -50131557,"Football Manager 2016",purchase,1.0,0 -50131557,"Football Manager 2016",play,3.3,0 -302089220,"Dota 2",purchase,1.0,0 -302089220,"Dota 2",play,20.0,0 -155036762,"Sakura Clicker",purchase,1.0,0 -155036762,"Sakura Clicker",play,4.7,0 -155036762,"Alien Swarm",purchase,1.0,0 -155036762,"Alien Swarm",play,2.7,0 -110470534,"Team Fortress 2",purchase,1.0,0 -110470534,"Team Fortress 2",play,913.0,0 -110470534,"Grand Theft Auto San Andreas",purchase,1.0,0 -110470534,"Grand Theft Auto San Andreas",play,67.0,0 -110470534,"Grand Theft Auto Vice City",purchase,1.0,0 -110470534,"Grand Theft Auto Vice City",play,61.0,0 -110470534,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -110470534,"Max Payne 2 The Fall of Max Payne",play,10.9,0 -110470534,"Combat Arms",purchase,1.0,0 -110470534,"Combat Arms",play,6.6,0 -110470534,"Grand Theft Auto IV",purchase,1.0,0 -110470534,"Grand Theft Auto IV",play,1.2,0 -110470534,"Final DOOM",purchase,1.0,0 -110470534,"Final DOOM",play,0.4,0 -110470534,"Grand Theft Auto San Andreas",purchase,1.0,0 -110470534,"Grand Theft Auto Vice City",purchase,1.0,0 -110470534,"Medal of Honor Airborne",purchase,1.0,0 -247951379,"Dota 2",purchase,1.0,0 -247951379,"Dota 2",play,107.0,0 -155818761,"Dota 2",purchase,1.0,0 -155818761,"Dota 2",play,12.6,0 -175738505,"Dota 2",purchase,1.0,0 -175738505,"Dota 2",play,5.6,0 -304251785,"Dota 2",purchase,1.0,0 -304251785,"Dota 2",play,2.5,0 -192772707,"Counter-Strike Global Offensive",purchase,1.0,0 -192772707,"Counter-Strike Global Offensive",play,857.0,0 -192772707,"Team Fortress 2",purchase,1.0,0 -192772707,"Team Fortress 2",play,55.0,0 -192772707,"Dota 2",purchase,1.0,0 -192772707,"Dota 2",play,19.2,0 -192772707,"PlanetSide 2",purchase,1.0,0 -192772707,"PlanetSide 2",play,5.0,0 -192772707,"PAYDAY 2",purchase,1.0,0 -192772707,"PAYDAY 2",play,4.9,0 -192772707,"Tactical Intervention",purchase,1.0,0 -192772707,"Tactical Intervention",play,3.6,0 -192772707,"Teeworlds",purchase,1.0,0 -192772707,"Teeworlds",play,1.7,0 -192772707,"Unturned",purchase,1.0,0 -192772707,"Unturned",play,1.2,0 -192772707,"Clicker Heroes",purchase,1.0,0 -192772707,"Clicker Heroes",play,1.0,0 -192772707,"Amnesia The Dark Descent",purchase,1.0,0 -192772707,"Blacklight Retribution",purchase,1.0,0 -192772707,"BLOCKADE 3D",purchase,1.0,0 -192772707,"Double Action Boogaloo",purchase,1.0,0 -192772707,"Fistful of Frags",purchase,1.0,0 -192772707,"Loadout",purchase,1.0,0 -192772707,"Oddworld Abe's Oddysee",purchase,1.0,0 -192772707,"Path of Exile",purchase,1.0,0 -192772707,"Quake Live",purchase,1.0,0 -192772707,"Robocraft",purchase,1.0,0 -192772707,"War Thunder",purchase,1.0,0 -191937457,"Dota 2",purchase,1.0,0 -191937457,"Dota 2",play,3.4,0 -295039588,"Magic Duels",purchase,1.0,0 -295039588,"Magic Duels",play,21.0,0 -295039588,"HAWKEN",purchase,1.0,0 -295039588,"HAWKEN",play,0.5,0 -198107903,"Unturned",purchase,1.0,0 -198107903,"Unturned",play,0.1,0 -198107903,"War Thunder",purchase,1.0,0 -221823551,"Counter-Strike Global Offensive",purchase,1.0,0 -221823551,"Counter-Strike Global Offensive",play,135.0,0 -221823551,"Trove",purchase,1.0,0 -221823551,"Trove",play,0.3,0 -221823551,"Dota 2",purchase,1.0,0 -221823551,"Dota 2",play,0.2,0 -8784496,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -8784496,"Plants vs. Zombies Game of the Year",play,33.0,0 -8784496,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -8784496,"Warhammer 40,000 Dawn of War II",play,13.8,0 -8784496,"Titan Quest",purchase,1.0,0 -8784496,"Titan Quest",play,10.2,0 -8784496,"Defense Grid The Awakening",purchase,1.0,0 -8784496,"Defense Grid The Awakening",play,9.3,0 -8784496,"Titan Quest Immortal Throne",purchase,1.0,0 -8784496,"Titan Quest Immortal Throne",play,8.8,0 -8784496,"Counter-Strike",purchase,1.0,0 -8784496,"Counter-Strike",play,6.2,0 -8784496,"Freedom Force",purchase,1.0,0 -8784496,"Freedom Force",play,5.2,0 -8784496,"Tom Clancy's Splinter Cell Double Agent",purchase,1.0,0 -8784496,"Tom Clancy's Splinter Cell Double Agent",play,4.9,0 -8784496,"Zeno Clash",purchase,1.0,0 -8784496,"Zeno Clash",play,2.3,0 -8784496,"Lost Planet Extreme Condition",purchase,1.0,0 -8784496,"Lost Planet Extreme Condition",play,1.7,0 -8784496,"Universe at War Earth Assault",purchase,1.0,0 -8784496,"Universe at War Earth Assault",play,1.5,0 -8784496,"Team Fortress 2",purchase,1.0,0 -8784496,"Team Fortress 2",play,1.5,0 -8784496,"Audiosurf",purchase,1.0,0 -8784496,"Audiosurf",play,0.6,0 -8784496,"Madballs in...Babo Invasion",purchase,1.0,0 -8784496,"Madballs in...Babo Invasion",play,0.6,0 -8784496,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -8784496,"Red Orchestra Ostfront 41-45",play,0.4,0 -8784496,"Half-Life 2 Deathmatch",purchase,1.0,0 -8784496,"Half-Life 2 Deathmatch",play,0.4,0 -8784496,"Mare Nostrum",purchase,1.0,0 -8784496,"Bullet Candy",purchase,1.0,0 -8784496,"Mass Effect",purchase,1.0,0 -8784496,"Darkest Hour Europe '44-'45",purchase,1.0,0 -8784496,"Day of Defeat",purchase,1.0,0 -8784496,"Deathmatch Classic",purchase,1.0,0 -8784496,"Freedom Force vs. the 3rd Reich",purchase,1.0,0 -8784496,"Half-Life",purchase,1.0,0 -8784496,"Half-Life 2",purchase,1.0,0 -8784496,"Half-Life 2 Episode One",purchase,1.0,0 -8784496,"Half-Life 2 Episode Two",purchase,1.0,0 -8784496,"Half-Life 2 Lost Coast",purchase,1.0,0 -8784496,"Half-Life Blue Shift",purchase,1.0,0 -8784496,"Half-Life Opposing Force",purchase,1.0,0 -8784496,"Portal",purchase,1.0,0 -8784496,"Ricochet",purchase,1.0,0 -8784496,"Team Fortress Classic",purchase,1.0,0 -8784496,"World of Goo",purchase,1.0,0 -210921698,"Dota 2",purchase,1.0,0 -210921698,"Dota 2",play,0.6,0 -239211065,"Dota 2",purchase,1.0,0 -239211065,"Dota 2",play,39.0,0 -118723066,"AdVenture Capitalist",purchase,1.0,0 -118723066,"AdVenture Capitalist",play,27.0,0 -118723066,"Scribblenauts Unlimited",purchase,1.0,0 -118723066,"Scribblenauts Unlimited",play,13.0,0 -118723066,"Team Fortress 2",purchase,1.0,0 -118723066,"Team Fortress 2",play,1.0,0 -118723066,"Emily is Away",purchase,1.0,0 -118723066,"Emily is Away",play,0.6,0 -118723066,"Dizzel",purchase,1.0,0 -118723066,"Dizzel",play,0.5,0 -118723066,"Unturned",purchase,1.0,0 -118723066,"Unturned",play,0.4,0 -118723066,"BLOCKADE 3D",purchase,1.0,0 -118723066,"BLOCKADE 3D",play,0.3,0 -118723066,"WARMODE",purchase,1.0,0 -118723066,"WARMODE",play,0.2,0 -118723066,"Relic Hunters Zero",purchase,1.0,0 -118723066,"Relic Hunters Zero",play,0.2,0 -118723066,"Loadout",purchase,1.0,0 -118723066,"Loadout",play,0.1,0 -118723066,"Viridi",purchase,1.0,0 -118723066,"Moonbase Alpha",purchase,1.0,0 -180438232,"Left 4 Dead 2",purchase,1.0,0 -180438232,"Left 4 Dead 2",play,162.0,0 -180438232,"PAYDAY 2",purchase,1.0,0 -180438232,"PAYDAY 2",play,150.0,0 -180438232,"Team Fortress 2",purchase,1.0,0 -180438232,"Team Fortress 2",play,43.0,0 -180438232,"Counter-Strike Global Offensive",purchase,1.0,0 -180438232,"Counter-Strike Global Offensive",play,4.7,0 -219593982,"Dota 2",purchase,1.0,0 -219593982,"Dota 2",play,0.4,0 -75753011,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -75753011,"Call of Duty Modern Warfare 2 - Multiplayer",play,195.0,0 -75753011,"Call of Duty Modern Warfare 2",purchase,1.0,0 -165526290,"Dota 2",purchase,1.0,0 -165526290,"Dota 2",play,0.2,0 -159647844,"Left 4 Dead 2",purchase,1.0,0 -71868890,"Mafia II",purchase,1.0,0 -71868890,"Mafia II",play,12.8,0 -193230408,"Team Fortress 2",purchase,1.0,0 -193230408,"Team Fortress 2",play,1.9,0 -206764959,"Dota 2",purchase,1.0,0 -206764959,"Dota 2",play,162.0,0 -265054404,"ArcheAge",purchase,1.0,0 -132757318,"GRID 2",purchase,1.0,0 -132757318,"GRID 2",play,63.0,0 -193693887,"Dota 2",purchase,1.0,0 -193693887,"Dota 2",play,2.3,0 -84377525,"Team Fortress 2",purchase,1.0,0 -84377525,"Team Fortress 2",play,1.2,0 -300892049,"Dota 2",purchase,1.0,0 -300892049,"Dota 2",play,2.9,0 -71302392,"Supreme Commander 2",purchase,1.0,0 -192482286,"Dota 2",purchase,1.0,0 -192482286,"Dota 2",play,0.2,0 -304674551,"Dota 2",purchase,1.0,0 -304674551,"Dota 2",play,1.2,0 -100353577,"Dota 2",purchase,1.0,0 -100353577,"Dota 2",play,57.0,0 -105159791,"Team Fortress 2",purchase,1.0,0 -105159791,"Team Fortress 2",play,127.0,0 -105159791,"Counter-Strike Global Offensive",purchase,1.0,0 -105159791,"Counter-Strike Global Offensive",play,48.0,0 -105159791,"Unturned",purchase,1.0,0 -105159791,"Unturned",play,27.0,0 -105159791,"Block N Load",purchase,1.0,0 -105159791,"Block N Load",play,16.1,0 -105159791,"Garry's Mod",purchase,1.0,0 -105159791,"Garry's Mod",play,13.9,0 -105159791,"Saints Row The Third",purchase,1.0,0 -105159791,"Saints Row The Third",play,9.6,0 -105159791,"No More Room in Hell",purchase,1.0,0 -105159791,"No More Room in Hell",play,8.5,0 -105159791,"Warframe",purchase,1.0,0 -105159791,"Warframe",play,5.4,0 -105159791,"Sniper Elite V2",purchase,1.0,0 -105159791,"Sniper Elite V2",play,3.0,0 -105159791,"Orcs Must Die!",purchase,1.0,0 -105159791,"Orcs Must Die!",play,2.0,0 -105159791,"Dota 2",purchase,1.0,0 -105159791,"Dota 2",play,1.2,0 -105159791,"Quake Live",purchase,1.0,0 -105159791,"Quake Live",play,1.0,0 -105159791,"H1Z1",purchase,1.0,0 -105159791,"H1Z1",play,1.0,0 -105159791,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -105159791,"Boring Man - Online Tactical Stickman Combat",play,0.2,0 -105159791,"H1Z1 Test Server",purchase,1.0,0 -105159791,"PlanetSide 2",purchase,1.0,0 -204252372,"Dota 2",purchase,1.0,0 -204252372,"Dota 2",play,1.0,0 -178423779,"Counter-Strike Global Offensive",purchase,1.0,0 -178423779,"Counter-Strike Global Offensive",play,559.0,0 -178423779,"Dota 2",purchase,1.0,0 -178423779,"Dota 2",play,1.5,0 -178423779,"Dead Space",purchase,1.0,0 -178423779,"Dead Space",play,0.6,0 -101777863,"Dota 2",purchase,1.0,0 -101777863,"Dota 2",play,37.0,0 -207817208,"GRID Autosport",purchase,1.0,0 -207817208,"GRID Autosport",play,1.8,0 -218405343,"Dota 2",purchase,1.0,0 -218405343,"Dota 2",play,275.0,0 -171107070,"Dota 2",purchase,1.0,0 -171107070,"Dota 2",play,0.5,0 -71318298,"Left 4 Dead 2",purchase,1.0,0 -71318298,"Left 4 Dead 2",play,23.0,0 -73767750,"Sid Meier's Civilization V",purchase,1.0,0 -75064242,"BioShock Infinite",purchase,1.0,0 -75064242,"BioShock Infinite",play,32.0,0 -75064242,"Sid Meier's Civilization V",purchase,1.0,0 -75064242,"Sid Meier's Civilization V",play,21.0,0 -75064242,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -75064242,"Plants vs. Zombies Game of the Year",play,17.2,0 -75064242,"L.A. Noire",purchase,1.0,0 -75064242,"L.A. Noire",play,16.9,0 -75064242,"BioShock 2",purchase,1.0,0 -75064242,"BioShock 2",play,11.5,0 -75064242,"Portal",purchase,1.0,0 -75064242,"Portal",play,2.5,0 -75064242,"Torchlight II",purchase,1.0,0 -177444568,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -177444568,"STAR WARS Knights of the Old Republic II The Sith Lords",play,51.0,0 -177444568,"Star Wars Knights of the Old Republic",purchase,1.0,0 -177444568,"Star Wars Knights of the Old Republic",play,33.0,0 -177444568,"Star Wars - Battlefront II",purchase,1.0,0 -177444568,"Star Wars - Battlefront II",play,16.9,0 -177444568,"Age of Empires II HD Edition",purchase,1.0,0 -177444568,"Age of Empires II HD Edition",play,6.6,0 -177444568,"Lego Star Wars 3 The Clone Wars",purchase,1.0,0 -177444568,"Lego Star Wars 3 The Clone Wars",play,6.4,0 -177444568,"Age of Empires III Complete Collection",purchase,1.0,0 -177444568,"Age of Empires III Complete Collection",play,4.3,0 -177444568,"Tom Clancy's Rainbow Six 3 Gold Edition",purchase,1.0,0 -177444568,"Tom Clancy's Rainbow Six 3 Gold Edition",play,4.3,0 -177444568,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -177444568,"Star Wars Jedi Knight Jedi Academy",play,4.0,0 -177444568,"Star Wars Republic Commando",purchase,1.0,0 -177444568,"Star Wars Republic Commando",play,2.1,0 -177444568,"Star Wars Empire at War Gold",purchase,1.0,0 -177444568,"Star Wars Empire at War Gold",play,1.3,0 -177444568,"Fallout",purchase,1.0,0 -177444568,"Fallout",play,1.0,0 -177444568,"Arma Combat Operations",purchase,1.0,0 -177444568,"Arma Combat Operations",play,1.0,0 -177444568,"Fallout 2",purchase,1.0,0 -177444568,"Fallout 2",play,0.6,0 -177444568,"The Sims(TM) 3",purchase,1.0,0 -177444568,"The Sims(TM) 3",play,0.3,0 -177444568,"Fallout Tactics",purchase,1.0,0 -177444568,"Fallout Tactics",play,0.3,0 -177444568,"Age of Empires II HD The Forgotten",purchase,1.0,0 -177444568,"Tom Clancy's Rainbow Six 3 Athena Sword",purchase,1.0,0 -194196780,"X-Plane 10 Global - 64 Bit",purchase,1.0,0 -194196780,"X-Plane 10 Global - 64 Bit",play,1019.0,0 -194196780,"X-Plane 10 Global - 64 Bit - Africa Scenery",purchase,1.0,0 -194196780,"X-Plane 10 Global - 64 Bit - Asia Scenery",purchase,1.0,0 -194196780,"X-Plane 10 Global - 64 Bit - Australia Scenery",purchase,1.0,0 -194196780,"X-Plane 10 Global - 64 Bit - North America Scenery",purchase,1.0,0 -194196780,"X-Plane 10 Global - 64 Bit - South America Scenery",purchase,1.0,0 -286151784,"Counter-Strike Global Offensive",purchase,1.0,0 -286151784,"Counter-Strike Global Offensive",play,1.8,0 -286151784,"Don't Starve Together Beta",purchase,1.0,0 -286151784,"Don't Starve Together Beta",play,0.7,0 -286151784,"Don't Starve",purchase,1.0,0 -286151784,"Don't Starve Reign of Giants",purchase,1.0,0 -185218619,"Dota 2",purchase,1.0,0 -185218619,"Dota 2",play,0.8,0 -108160472,"Counter-Strike Global Offensive",purchase,1.0,0 -108160472,"Counter-Strike Global Offensive",play,480.0,0 -108160472,"Dota 2",purchase,1.0,0 -108160472,"Dota 2",play,437.0,0 -108160472,"Insurgency Modern Infantry Combat",purchase,1.0,0 -108160472,"Insurgency Modern Infantry Combat",play,23.0,0 -108160472,"Garry's Mod",purchase,1.0,0 -108160472,"Garry's Mod",play,23.0,0 -108160472,"Team Fortress 2",purchase,1.0,0 -108160472,"Team Fortress 2",play,23.0,0 -108160472,"Gotham City Impostors Free To Play",purchase,1.0,0 -108160472,"Gotham City Impostors Free To Play",play,16.2,0 -108160472,"Unturned",purchase,1.0,0 -108160472,"Unturned",play,15.6,0 -108160472,"Half-Life 2",purchase,1.0,0 -108160472,"Half-Life 2",play,14.9,0 -108160472,"The Elder Scrolls V Skyrim",purchase,1.0,0 -108160472,"The Elder Scrolls V Skyrim",play,14.0,0 -108160472,"Serious Sam HD The Second Encounter",purchase,1.0,0 -108160472,"Serious Sam HD The Second Encounter",play,11.9,0 -108160472,"Prison Architect",purchase,1.0,0 -108160472,"Prison Architect",play,10.0,0 -108160472,"ArcheAge",purchase,1.0,0 -108160472,"ArcheAge",play,9.0,0 -108160472,"Neverwinter",purchase,1.0,0 -108160472,"Neverwinter",play,8.5,0 -108160472,"How to Survive",purchase,1.0,0 -108160472,"How to Survive",play,6.4,0 -108160472,"Football Manager 2010",purchase,1.0,0 -108160472,"Football Manager 2010",play,5.0,0 -108160472,"Left 4 Dead 2",purchase,1.0,0 -108160472,"Left 4 Dead 2",play,4.9,0 -108160472,"Warframe",purchase,1.0,0 -108160472,"Warframe",play,4.7,0 -108160472,"Insurgency",purchase,1.0,0 -108160472,"Insurgency",play,4.2,0 -108160472,"PAYDAY 2",purchase,1.0,0 -108160472,"PAYDAY 2",play,3.9,0 -108160472,"Super Meat Boy",purchase,1.0,0 -108160472,"Super Meat Boy",play,3.7,0 -108160472,"ORION Prelude",purchase,1.0,0 -108160472,"ORION Prelude",play,1.7,0 -108160472,"Portal 2",purchase,1.0,0 -108160472,"Portal 2",play,1.7,0 -108160472,"Synergy",purchase,1.0,0 -108160472,"Synergy",play,1.7,0 -108160472,"Grand Theft Auto IV",purchase,1.0,0 -108160472,"Grand Theft Auto IV",play,1.5,0 -108160472,"Torchlight II",purchase,1.0,0 -108160472,"Torchlight II",play,1.1,0 -108160472,"WARMODE",purchase,1.0,0 -108160472,"WARMODE",play,1.0,0 -108160472,"Transistor",purchase,1.0,0 -108160472,"Transistor",play,0.9,0 -108160472,"Just Cause 2",purchase,1.0,0 -108160472,"Just Cause 2",play,0.6,0 -108160472,"Door Kickers",purchase,1.0,0 -108160472,"Door Kickers",play,0.6,0 -108160472,"The Binding of Isaac",purchase,1.0,0 -108160472,"The Binding of Isaac",play,0.6,0 -108160472,"Terraria",purchase,1.0,0 -108160472,"Terraria",play,0.6,0 -108160472,"Banished",purchase,1.0,0 -108160472,"Banished",play,0.6,0 -108160472,"Arma 2",purchase,1.0,0 -108160472,"Arma 2",play,0.6,0 -108160472,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -108160472,"Rising Storm/Red Orchestra 2 Multiplayer",play,0.5,0 -108160472,"Chivalry Medieval Warfare",purchase,1.0,0 -108160472,"Chivalry Medieval Warfare",play,0.3,0 -108160472,"Sniper Elite V2",purchase,1.0,0 -108160472,"Sniper Elite V2",play,0.2,0 -108160472,"Bastion",purchase,1.0,0 -108160472,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -108160472,"Half-Life 2 Episode One",purchase,1.0,0 -108160472,"Half-Life 2 Episode Two",purchase,1.0,0 -108160472,"Half-Life 2 Lost Coast",purchase,1.0,0 -108160472,"Just Cause",purchase,1.0,0 -108160472,"Mountain",purchase,1.0,0 -108160472,"Nosgoth",purchase,1.0,0 -108160472,"Patch testing for Chivalry",purchase,1.0,0 -108160472,"Path of Exile",purchase,1.0,0 -108160472,"PAYDAY The Heist",purchase,1.0,0 -108160472,"Portal",purchase,1.0,0 -108160472,"RaiderZ",purchase,1.0,0 -108160472,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -108160472,"Space Hack",purchase,1.0,0 -239045127,"Rust",purchase,1.0,0 -239045127,"Rust",play,206.0,0 -239045127,"Counter-Strike Global Offensive",purchase,1.0,0 -239045127,"Counter-Strike Global Offensive",play,165.0,0 -239045127,"Hero Siege",purchase,1.0,0 -239045127,"Hero Siege",play,12.5,0 -239045127,"Hero Siege - The Depths of Hell",purchase,1.0,0 -239045127,"Hero Siege - The Karp of Doom",purchase,1.0,0 -205035443,"Euro Truck Simulator 2",purchase,1.0,0 -205035443,"Euro Truck Simulator 2",play,5.6,0 -298884520,"Trine 3 The Artifacts of Power",purchase,1.0,0 -298884520,"Trine 3 The Artifacts of Power",play,0.7,0 -298884520,"Brawlhalla",purchase,1.0,0 -298884520,"Brawlhalla",play,0.5,0 -298884520,"Portal 2",purchase,1.0,0 -298884520,"Portal 2",play,0.2,0 -298884520,"Pink Heaven",purchase,1.0,0 -298884520,"Pink Heaven",play,0.1,0 -298884520,"Trine 2",purchase,1.0,0 -298884520,"Trine 2",play,0.1,0 -298884520,"Shadowgrounds Survivor",purchase,1.0,0 -298884520,"Shadowgrounds",purchase,1.0,0 -298884520,"Trine",purchase,1.0,0 -85853924,"Team Fortress 2",purchase,1.0,0 -85853924,"Team Fortress 2",play,1.4,0 -78814920,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -78814920,"Warhammer 40,000 Dawn of War II Retribution",play,13.2,0 -104721942,"Counter-Strike",purchase,1.0,0 -104721942,"Counter-Strike",play,1578.0,0 -104721942,"Counter-Strike Global Offensive",purchase,1.0,0 -104721942,"Counter-Strike Global Offensive",play,1195.0,0 -104721942,"Counter-Strike Nexon Zombies",purchase,1.0,0 -104721942,"Counter-Strike Nexon Zombies",play,12.6,0 -104721942,"Dota 2",purchase,1.0,0 -104721942,"Dota 2",play,3.3,0 -104721942,"Team Fortress 2",purchase,1.0,0 -104721942,"Team Fortress 2",play,2.0,0 -104721942,"Counter-Strike Condition Zero",purchase,1.0,0 -104721942,"Counter-Strike Condition Zero",play,1.6,0 -104721942,"Hatred",purchase,1.0,0 -104721942,"Hatred",play,0.5,0 -104721942,"Deathmatch Classic",purchase,1.0,0 -104721942,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -104721942,"Day of Defeat",purchase,1.0,0 -104721942,"Defend Your Life",purchase,1.0,0 -104721942,"Ricochet",purchase,1.0,0 -136561410,"Dota 2",purchase,1.0,0 -136561410,"Dota 2",play,22.0,0 -227936170,"Dota 2",purchase,1.0,0 -227936170,"Dota 2",play,1.1,0 -159994178,"Counter-Strike Global Offensive",purchase,1.0,0 -159994178,"Counter-Strike Global Offensive",play,363.0,0 -159994178,"Rust",purchase,1.0,0 -159994178,"Rust",play,188.0,0 -159994178,"DayZ",purchase,1.0,0 -159994178,"DayZ",play,135.0,0 -159994178,"7 Days to Die",purchase,1.0,0 -159994178,"7 Days to Die",play,72.0,0 -159994178,"War Thunder",purchase,1.0,0 -159994178,"War Thunder",play,37.0,0 -159994178,"Team Fortress 2",purchase,1.0,0 -159994178,"Team Fortress 2",play,28.0,0 -159994178,"The Forest",purchase,1.0,0 -159994178,"The Forest",play,16.0,0 -159994178,"Left 4 Dead 2",purchase,1.0,0 -159994178,"Left 4 Dead 2",play,14.2,0 -159994178,"Aftermath",purchase,1.0,0 -159994178,"Aftermath",play,6.1,0 -159994178,"Dirty Bomb",purchase,1.0,0 -159994178,"Dirty Bomb",play,5.4,0 -159994178,"Day One Garry's Incident",purchase,1.0,0 -159994178,"Day One Garry's Incident",play,2.6,0 -159994178,"Heroes & Generals",purchase,1.0,0 -159994178,"Heroes & Generals",play,2.0,0 -159994178,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -159994178,"Tom Clancy's Ghost Recon Phantoms - EU",play,1.4,0 -159994178,"Warface",purchase,1.0,0 -159994178,"Warface",play,1.1,0 -159994178,"World of Guns Gun Disassembly",purchase,1.0,0 -159994178,"World of Guns Gun Disassembly",play,0.9,0 -159994178,"Hitman 2 Silent Assassin",purchase,1.0,0 -159994178,"Hitman 2 Silent Assassin",play,0.6,0 -159994178,"Enclave",purchase,1.0,0 -159994178,"Enclave",play,0.3,0 -159994178,"Block N Load",purchase,1.0,0 -159994178,"Metro 2033",purchase,1.0,0 -16919977,"Counter-Strike Source",purchase,1.0,0 -16919977,"Counter-Strike Source",play,0.3,0 -16919977,"Half-Life 2",purchase,1.0,0 -16919977,"Half-Life 2 Deathmatch",purchase,1.0,0 -16919977,"Half-Life 2 Lost Coast",purchase,1.0,0 -231333981,"Unturned",purchase,1.0,0 -231333981,"Unturned",play,7.3,0 -231333981,"Robocraft",purchase,1.0,0 -231333981,"Robocraft",play,1.5,0 -231333981,"Dota 2",purchase,1.0,0 -231333981,"Dota 2",play,0.5,0 -231333981,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -231333981,"S.K.I.L.L. - Special Force 2",play,0.4,0 -163930591,"Spintires",purchase,1.0,0 -163930591,"Spintires",play,154.0,0 -163930591,"Call of Duty World at War",purchase,1.0,0 -163930591,"Call of Duty World at War",play,115.0,0 -163930591,"Grand Theft Auto V",purchase,1.0,0 -163930591,"Grand Theft Auto V",play,80.0,0 -163930591,"Garry's Mod",purchase,1.0,0 -163930591,"Garry's Mod",play,72.0,0 -163930591,"Insurgency",purchase,1.0,0 -163930591,"Insurgency",play,28.0,0 -163930591,"H1Z1",purchase,1.0,0 -163930591,"H1Z1",play,27.0,0 -163930591,"BeamNG.drive",purchase,1.0,0 -163930591,"BeamNG.drive",play,27.0,0 -163930591,"Next Car Game Wreckfest",purchase,1.0,0 -163930591,"Next Car Game Wreckfest",play,22.0,0 -163930591,"Star Wars - Battlefront II",purchase,1.0,0 -163930591,"Star Wars - Battlefront II",play,18.4,0 -163930591,"Surgeon Simulator",purchase,1.0,0 -163930591,"Surgeon Simulator",play,15.1,0 -163930591,"DayZ",purchase,1.0,0 -163930591,"DayZ",play,14.2,0 -163930591,"Counter-Strike Source",purchase,1.0,0 -163930591,"Counter-Strike Source",play,12.7,0 -163930591,"Bully Scholarship Edition",purchase,1.0,0 -163930591,"Bully Scholarship Edition",play,11.7,0 -163930591,"Construction-Simulator 2015",purchase,1.0,0 -163930591,"Construction-Simulator 2015",play,11.1,0 -163930591,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -163930591,"Just Cause 2 Multiplayer Mod",play,9.9,0 -163930591,"Unturned",purchase,1.0,0 -163930591,"Unturned",play,9.1,0 -163930591,"Grand Theft Auto IV",purchase,1.0,0 -163930591,"Grand Theft Auto IV",play,8.8,0 -163930591,"theHunter",purchase,1.0,0 -163930591,"theHunter",play,8.5,0 -163930591,"Robocraft",purchase,1.0,0 -163930591,"Robocraft",play,7.4,0 -163930591,"Slender The Arrival",purchase,1.0,0 -163930591,"Slender The Arrival",play,5.9,0 -163930591,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -163930591,"Red Faction Guerrilla Steam Edition",play,3.7,0 -163930591,"Cities Skylines",purchase,1.0,0 -163930591,"Cities Skylines",play,3.7,0 -163930591,"Goat Simulator",purchase,1.0,0 -163930591,"Goat Simulator",play,3.6,0 -163930591,"Fishing Planet",purchase,1.0,0 -163930591,"Fishing Planet",play,3.5,0 -163930591,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -163930591,"Next Car Game Sneak Peek 2.0",play,2.8,0 -163930591,"Outlast",purchase,1.0,0 -163930591,"Outlast",play,2.7,0 -163930591,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -163930591,"Call of Duty Advanced Warfare - Multiplayer",play,2.1,0 -163930591,"Copa Petrobras de Marcas",purchase,1.0,0 -163930591,"Copa Petrobras de Marcas",play,1.9,0 -163930591,"FreeStyle2 Street Basketball",purchase,1.0,0 -163930591,"FreeStyle2 Street Basketball",play,1.6,0 -163930591,"Sid Meier's Civilization V",purchase,1.0,0 -163930591,"Sid Meier's Civilization V",play,1.4,0 -163930591,"Heroes & Generals",purchase,1.0,0 -163930591,"Heroes & Generals",play,1.3,0 -163930591,"America's Army Proving Grounds",purchase,1.0,0 -163930591,"America's Army Proving Grounds",play,1.1,0 -163930591,"Killing Floor",purchase,1.0,0 -163930591,"Killing Floor",play,0.7,0 -163930591,"War Thunder",purchase,1.0,0 -163930591,"War Thunder",play,0.7,0 -163930591,"Fallout New Vegas",purchase,1.0,0 -163930591,"Fallout New Vegas",play,0.7,0 -163930591,"Tactical Intervention",purchase,1.0,0 -163930591,"Tactical Intervention",play,0.6,0 -163930591,"State of Decay",purchase,1.0,0 -163930591,"State of Decay",play,0.6,0 -163930591,"The Elder Scrolls V Skyrim",purchase,1.0,0 -163930591,"The Elder Scrolls V Skyrim",play,0.3,0 -163930591,"WARMODE",purchase,1.0,0 -163930591,"WARMODE",play,0.3,0 -163930591,"Floating Point",purchase,1.0,0 -163930591,"Floating Point",play,0.3,0 -163930591,"America's Army 3",purchase,1.0,0 -163930591,"America's Army 3",play,0.1,0 -163930591,"Echoes+",purchase,1.0,0 -163930591,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -163930591,"Just Cause 2",purchase,1.0,0 -163930591,"World of Guns Gun Disassembly",purchase,1.0,0 -163930591,"Pool Nation FX",purchase,1.0,0 -163930591,"Battle Islands",purchase,1.0,0 -163930591,"Call of Duty Advanced Warfare",purchase,1.0,0 -163930591,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -163930591,"Construction Simulator 2015 Vertical Skyline",purchase,1.0,0 -163930591,"Counter-Strike Nexon Zombies",purchase,1.0,0 -163930591,"Cubic Castles",purchase,1.0,0 -163930591,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -163930591,"Fallout New Vegas Dead Money",purchase,1.0,0 -163930591,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -163930591,"H1Z1 Test Server",purchase,1.0,0 -163930591,"RaceRoom Racing Experience ",purchase,1.0,0 -163930591,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -163930591,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -235185786,"Marvel Heroes 2015",purchase,1.0,0 -235185786,"Marvel Heroes 2015",play,1.5,0 -248056920,"Five Nights at Freddy's",purchase,1.0,0 -248056920,"Five Nights at Freddy's",play,2.0,0 -23337959,"Half-Life",purchase,1.0,0 -23337959,"Half-Life",play,0.2,0 -23337959,"Toribash",purchase,1.0,0 -23337959,"Counter-Strike",purchase,1.0,0 -23337959,"Day of Defeat",purchase,1.0,0 -23337959,"Deathmatch Classic",purchase,1.0,0 -23337959,"Half-Life Blue Shift",purchase,1.0,0 -23337959,"Half-Life Opposing Force",purchase,1.0,0 -23337959,"Loadout",purchase,1.0,0 -23337959,"Ricochet",purchase,1.0,0 -23337959,"Team Fortress Classic",purchase,1.0,0 -23337959,"Unturned",purchase,1.0,0 -131311166,"Dota 2",purchase,1.0,0 -131311166,"Dota 2",play,4.6,0 -243306369,"Dota 2",purchase,1.0,0 -243306369,"Dota 2",play,240.0,0 -61276934,"Call of Duty Modern Warfare 2",purchase,1.0,0 -61276934,"Call of Duty Modern Warfare 2",play,8.1,0 -61276934,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -72009123,"Counter-Strike Source",purchase,1.0,0 -72009123,"Counter-Strike Source",play,24.0,0 -118838369,"Scarygirl",purchase,1.0,0 -118838369,"Scarygirl",play,173.0,0 -118838369,"Cave Story+",purchase,1.0,0 -118838369,"Cave Story+",play,157.0,0 -118838369,"Bard's Gold",purchase,1.0,0 -118838369,"Bard's Gold",play,119.0,0 -118838369,"Ori and the Blind Forest",purchase,1.0,0 -118838369,"Ori and the Blind Forest",play,99.0,0 -118838369,"Glare",purchase,1.0,0 -118838369,"Glare",play,95.0,0 -118838369,"Rooms The Unsolvable Puzzle",purchase,1.0,0 -118838369,"Rooms The Unsolvable Puzzle",play,78.0,0 -118838369,"The Cave",purchase,1.0,0 -118838369,"The Cave",play,72.0,0 -118838369,"Freedom Fall",purchase,1.0,0 -118838369,"Freedom Fall",play,59.0,0 -118838369,"Shovel Knight",purchase,1.0,0 -118838369,"Shovel Knight",play,49.0,0 -118838369,"Breezeblox",purchase,1.0,0 -118838369,"Breezeblox",play,48.0,0 -118838369,"Giana Sisters Twisted Dreams",purchase,1.0,0 -118838369,"Giana Sisters Twisted Dreams",play,37.0,0 -118838369,"Escape Goat",purchase,1.0,0 -118838369,"Escape Goat",play,30.0,0 -118838369,"Zack Zero",purchase,1.0,0 -118838369,"Zack Zero",play,20.0,0 -118838369,"Trine 3 The Artifacts of Power",purchase,1.0,0 -118838369,"Trine 3 The Artifacts of Power",play,20.0,0 -118838369,"Super Panda Adventures",purchase,1.0,0 -118838369,"Super Panda Adventures",play,19.2,0 -118838369,"Millie",purchase,1.0,0 -118838369,"Millie",play,15.2,0 -118838369,"Canyon Capers",purchase,1.0,0 -118838369,"Canyon Capers",play,12.5,0 -118838369,"NyxQuest",purchase,1.0,0 -118838369,"NyxQuest",play,7.9,0 -118838369,"Rotieer",purchase,1.0,0 -118838369,"Rotieer",play,7.2,0 -118838369,"Traps N' Gemstones",purchase,1.0,0 -118838369,"Traps N' Gemstones",play,7.0,0 -118838369,"Fatty Maze's Adventures",purchase,1.0,0 -118838369,"Fatty Maze's Adventures",play,6.2,0 -118838369,"Reversi",purchase,1.0,0 -118838369,"Reversi",play,5.1,0 -118838369,"The Four Kings Casino and Slots",purchase,1.0,0 -118838369,"The Four Kings Casino and Slots",play,3.9,0 -118838369,"Shiny The Firefly",purchase,1.0,0 -118838369,"Shiny The Firefly",play,2.5,0 -118838369,"Stonerid",purchase,1.0,0 -118838369,"Stonerid",play,1.7,0 -118838369,"Max The Curse of Brotherhood",purchase,1.0,0 -118838369,"Max The Curse of Brotherhood",play,1.7,0 -118838369,"Mr. Bree+",purchase,1.0,0 -118838369,"Mr. Bree+",play,1.5,0 -118838369,"Super Crate Box",purchase,1.0,0 -118838369,"Super Crate Box",play,1.2,0 -118838369,"Amazing Princess Sarah",purchase,1.0,0 -118838369,"Amazing Princess Sarah",play,0.8,0 -118838369,"Toki Tori 2+",purchase,1.0,0 -118838369,"Toki Tori 2+",play,0.6,0 -118838369,"You Have to Win the Game",purchase,1.0,0 -118838369,"You Have to Win the Game",play,0.2,0 -118838369,"Dwarfs F2P",purchase,1.0,0 -118838369,"Dream Tale",purchase,1.0,0 -118838369,"Loadout",purchase,1.0,0 -118838369,"Moonbase Alpha",purchase,1.0,0 -102066849,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -102066849,"Warhammer 40,000 Dawn of War II",play,48.0,0 -135410112,"Company of Heroes 2",purchase,1.0,0 -135410112,"Company of Heroes 2",play,16.0,0 -292748654,"Clown House (Palyao Evi)",purchase,1.0,0 -292748654,"One Way To Die Steam Edition",purchase,1.0,0 -189123038,"Counter-Strike Global Offensive",purchase,1.0,0 -189123038,"Counter-Strike Global Offensive",play,172.0,0 -189123038,"DayZ",purchase,1.0,0 -189123038,"DayZ",play,30.0,0 -189123038,"The Forest",purchase,1.0,0 -189123038,"The Forest",play,8.3,0 -189123038,"PAYDAY 2",purchase,1.0,0 -189123038,"PAYDAY 2",play,7.5,0 -189123038,"Dota 2",purchase,1.0,0 -189123038,"Dota 2",play,2.5,0 -189123038,"The Elder Scrolls V Skyrim",purchase,1.0,0 -189123038,"The Elder Scrolls V Skyrim",play,1.4,0 -189123038,"Nosgoth",purchase,1.0,0 -189123038,"Nosgoth",play,0.7,0 -189123038,"Ampu-Tea",purchase,1.0,0 -189123038,"Ampu-Tea",play,0.5,0 -189123038,"Team Fortress 2",purchase,1.0,0 -189123038,"Team Fortress 2",play,0.3,0 -189123038,"Arsenal of Democracy",purchase,1.0,0 -191780526,"Serious Sam 3 BFE",purchase,1.0,0 -191780526,"Serious Sam 3 BFE",play,13.3,0 -191780526,"Borderlands 2",purchase,1.0,0 -191780526,"Borderlands 2",play,6.3,0 -251901551,"Endless Legend",purchase,1.0,0 -251901551,"Endless Legend",play,0.4,0 -259878911,"Dota 2",purchase,1.0,0 -259878911,"Dota 2",play,0.9,0 -216261706,"Left 4 Dead 2",purchase,1.0,0 -216261706,"Left 4 Dead 2",play,671.0,0 -216261706,"Counter-Strike Global Offensive",purchase,1.0,0 -216261706,"Counter-Strike Global Offensive",play,5.5,0 -161663718,"Team Fortress 2",purchase,1.0,0 -161663718,"Team Fortress 2",play,577.0,0 -161663718,"Garry's Mod",purchase,1.0,0 -161663718,"Garry's Mod",play,425.0,0 -161663718,"Spore",purchase,1.0,0 -161663718,"Spore",play,40.0,0 -161663718,"POSTAL 2",purchase,1.0,0 -161663718,"POSTAL 2",play,31.0,0 -161663718,"Fallout New Vegas",purchase,1.0,0 -161663718,"Fallout New Vegas",play,8.8,0 -161663718,"The Forest",purchase,1.0,0 -161663718,"The Forest",play,3.1,0 -161663718,"Toribash",purchase,1.0,0 -161663718,"Toribash",play,0.9,0 -161663718,"Robocraft",purchase,1.0,0 -161663718,"Robocraft",play,0.1,0 -37252377,"Left 4 Dead 2",purchase,1.0,0 -145834524,"Dota 2",purchase,1.0,0 -145834524,"Dota 2",play,972.0,0 -34960438,"Counter-Strike Source",purchase,1.0,0 -34960438,"Counter-Strike Source",play,27.0,0 -34960438,"Day of Defeat Source",purchase,1.0,0 -34960438,"Half-Life 2 Deathmatch",purchase,1.0,0 -34960438,"Half-Life 2 Lost Coast",purchase,1.0,0 -280497428,"Dota 2",purchase,1.0,0 -280497428,"Dota 2",play,31.0,0 -280497428,"GunZ 2 The Second Duel",purchase,1.0,0 -280497428,"Robocraft",purchase,1.0,0 -280497428,"Tribes Ascend",purchase,1.0,0 -235758386,"Team Fortress 2",purchase,1.0,0 -235758386,"Team Fortress 2",play,3.9,0 -235758386,"Terraria",purchase,1.0,0 -235758386,"Terraria",play,0.6,0 -235758386,"Portal",purchase,1.0,0 -235758386,"Portal",play,0.5,0 -235758386,"AdVenture Capitalist",purchase,1.0,0 -235758386,"AdVenture Capitalist",play,0.4,0 -235758386,"Driver San Francisco",purchase,1.0,0 -235758386,"Driver San Francisco",play,0.1,0 -235758386,"HAWKEN",purchase,1.0,0 -235758386,"HAWKEN",play,0.1,0 -235758386,"Fallout 3",purchase,1.0,0 -235758386,"Fallout 3",play,0.1,0 -235758386,"Clicker Heroes",purchase,1.0,0 -235758386,"Robocraft",purchase,1.0,0 -80384872,"Counter-Strike Source",purchase,1.0,0 -80384872,"Counter-Strike Source",play,1556.0,0 -80384872,"Dota 2",purchase,1.0,0 -80384872,"Dota 2",play,1195.0,0 -80384872,"Sid Meier's Civilization V",purchase,1.0,0 -80384872,"Sid Meier's Civilization V",play,18.2,0 -80384872,"Hitman Absolution",purchase,1.0,0 -80384872,"Hitman Absolution",play,14.9,0 -80384872,"Counter-Strike Global Offensive",purchase,1.0,0 -80384872,"Counter-Strike Global Offensive",play,9.2,0 -80384872,"Far Cry 3",purchase,1.0,0 -80384872,"Far Cry 3",play,3.0,0 -80384872,"Team Fortress 2",purchase,1.0,0 -80384872,"Team Fortress 2",play,1.4,0 -80384872,"Serious Sam HD The Second Encounter",purchase,1.0,0 -80384872,"Serious Sam HD The Second Encounter",play,0.8,0 -80384872,"Day of Defeat Source",purchase,1.0,0 -80384872,"Day of Defeat Source",play,0.2,0 -80384872,"Half-Life 2 Deathmatch",purchase,1.0,0 -80384872,"Half-Life 2 Lost Coast",purchase,1.0,0 -118274084,"Counter-Strike",purchase,1.0,0 -118274084,"Counter-Strike",play,11.5,0 -118274084,"Counter-Strike Condition Zero",purchase,1.0,0 -118274084,"Counter-Strike Condition Zero",play,0.9,0 -118274084,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -118274084,"Day of Defeat",purchase,1.0,0 -118274084,"Deathmatch Classic",purchase,1.0,0 -118274084,"Ricochet",purchase,1.0,0 -14906179,"Counter-Strike Source",purchase,1.0,0 -14906179,"Counter-Strike Source",play,714.0,0 -14906179,"Half-Life 2 Deathmatch",purchase,1.0,0 -14906179,"Half-Life 2 Deathmatch",play,50.0,0 -14906179,"Counter-Strike Global Offensive",purchase,1.0,0 -14906179,"Counter-Strike Global Offensive",play,21.0,0 -14906179,"Half-Life 2",purchase,1.0,0 -14906179,"Half-Life 2",play,17.8,0 -14906179,"Half-Life",purchase,1.0,0 -14906179,"Half-Life",play,17.5,0 -14906179,"Portal",purchase,1.0,0 -14906179,"Portal",play,13.5,0 -14906179,"Half-Life 2 Episode Two",purchase,1.0,0 -14906179,"Half-Life 2 Episode Two",play,10.0,0 -14906179,"Age of Chivalry",purchase,1.0,0 -14906179,"Age of Chivalry",play,10.0,0 -14906179,"Team Fortress 2",purchase,1.0,0 -14906179,"Team Fortress 2",play,8.4,0 -14906179,"Half-Life Opposing Force",purchase,1.0,0 -14906179,"Half-Life Opposing Force",play,5.0,0 -14906179,"Half-Life 2 Episode One",purchase,1.0,0 -14906179,"Half-Life 2 Episode One",play,4.6,0 -14906179,"Team Fortress Classic",purchase,1.0,0 -14906179,"Team Fortress Classic",play,1.0,0 -14906179,"Eternal Silence",purchase,1.0,0 -14906179,"Eternal Silence",play,0.8,0 -14906179,"Half-Life 2 Lost Coast",purchase,1.0,0 -14906179,"Half-Life 2 Lost Coast",play,0.7,0 -14906179,"Half-Life Blue Shift",purchase,1.0,0 -14906179,"Half-Life Blue Shift",play,0.5,0 -14906179,"Synergy",purchase,1.0,0 -14906179,"Synergy",play,0.4,0 -14906179,"Zombie Panic Source",purchase,1.0,0 -14906179,"Zombie Panic Source",play,0.2,0 -14906179,"Alien Swarm",purchase,1.0,0 -14906179,"Alien Swarm",play,0.2,0 -14906179,"Gang Beasts",purchase,1.0,0 -197458771,"Dota 2",purchase,1.0,0 -197458771,"Dota 2",play,130.0,0 -197458771,"War Inc. Battlezone",purchase,1.0,0 -45592640,"The Elder Scrolls V Skyrim",purchase,1.0,0 -45592640,"The Elder Scrolls V Skyrim",play,630.0,0 -45592640,"Silent Hunter Wolves of the Pacific",purchase,1.0,0 -45592640,"Silent Hunter Wolves of the Pacific",play,339.0,0 -45592640,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -45592640,"The Elder Scrolls IV Oblivion ",play,293.0,0 -45592640,"Silent Hunter Wolves of the Pacific U-Boat Missions",purchase,1.0,0 -45592640,"Silent Hunter Wolves of the Pacific U-Boat Missions",play,185.0,0 -45592640,"X2 The Threat",purchase,1.0,0 -45592640,"X2 The Threat",play,158.0,0 -45592640,"Euro Truck Simulator 2",purchase,1.0,0 -45592640,"Euro Truck Simulator 2",play,120.0,0 -45592640,"Elite Dangerous",purchase,1.0,0 -45592640,"Elite Dangerous",play,119.0,0 -45592640,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -45592640,"S.T.A.L.K.E.R. Clear Sky",play,96.0,0 -45592640,"Railroad Tycoon 2 Platinum",purchase,1.0,0 -45592640,"Railroad Tycoon 2 Platinum",play,67.0,0 -45592640,"Mount & Blade",purchase,1.0,0 -45592640,"Mount & Blade",play,62.0,0 -45592640,"XCOM Enemy Unknown",purchase,1.0,0 -45592640,"XCOM Enemy Unknown",play,59.0,0 -45592640,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -45592640,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,57.0,0 -45592640,"Grand Theft Auto IV",purchase,1.0,0 -45592640,"Grand Theft Auto IV",play,51.0,0 -45592640,"X3 Reunion",purchase,1.0,0 -45592640,"X3 Reunion",play,51.0,0 -45592640,"Mount & Blade With Fire and Sword",purchase,1.0,0 -45592640,"Mount & Blade With Fire and Sword",play,49.0,0 -45592640,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -45592640,"S.T.A.L.K.E.R. Call of Pripyat",play,42.0,0 -45592640,"Farming Simulator 15",purchase,1.0,0 -45592640,"Farming Simulator 15",play,40.0,0 -45592640,"Bully Scholarship Edition",purchase,1.0,0 -45592640,"Bully Scholarship Edition",play,38.0,0 -45592640,"Farming Simulator 2011",purchase,1.0,0 -45592640,"Farming Simulator 2011",play,36.0,0 -45592640,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -45592640,"Star Wars - Jedi Knight II Jedi Outcast",play,27.0,0 -45592640,"Sid Meier's Civilization V",purchase,1.0,0 -45592640,"Sid Meier's Civilization V",play,22.0,0 -45592640,"BioShock",purchase,1.0,0 -45592640,"BioShock",play,21.0,0 -45592640,"Fallout 2",purchase,1.0,0 -45592640,"Fallout 2",play,21.0,0 -45592640,"X3 Terran Conflict",purchase,1.0,0 -45592640,"X3 Terran Conflict",play,17.3,0 -45592640,"System Shock 2",purchase,1.0,0 -45592640,"System Shock 2",play,15.8,0 -45592640,"Thief Deadly Shadows",purchase,1.0,0 -45592640,"Thief Deadly Shadows",play,13.2,0 -45592640,"Men of War",purchase,1.0,0 -45592640,"Men of War",play,7.1,0 -45592640,"Deus Ex Invisible War",purchase,1.0,0 -45592640,"Deus Ex Invisible War",play,6.5,0 -45592640,"Fallout",purchase,1.0,0 -45592640,"Fallout",play,5.0,0 -45592640,"Euro Truck Simulator",purchase,1.0,0 -45592640,"Euro Truck Simulator",play,4.2,0 -45592640,"Mount & Blade Warband",purchase,1.0,0 -45592640,"Mount & Blade Warband",play,3.9,0 -45592640,"Penumbra Black Plague",purchase,1.0,0 -45592640,"Penumbra Black Plague",play,3.5,0 -45592640,"Metro 2033 Redux",purchase,1.0,0 -45592640,"Metro 2033 Redux",play,3.5,0 -45592640,"Men of War Red Tide",purchase,1.0,0 -45592640,"Men of War Red Tide",play,2.3,0 -45592640,"Combat Wings Battle of Britain",purchase,1.0,0 -45592640,"Combat Wings Battle of Britain",play,0.3,0 -45592640,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -45592640,"Star Wars Jedi Knight Dark Forces II",play,0.3,0 -45592640,"Sid Meier's Railroads!",purchase,1.0,0 -45592640,"Sid Meier's Railroads!",play,0.2,0 -45592640,"Commandos 2 Men of Courage",purchase,1.0,0 -45592640,"Commandos 2 Men of Courage",play,0.2,0 -45592640,"BioShock 2",purchase,1.0,0 -45592640,"BioShock Infinite",purchase,1.0,0 -45592640,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -45592640,"Metro Last Light Redux",purchase,1.0,0 -45592640,"Penumbra Overture",purchase,1.0,0 -45592640,"Penumbra Requiem",purchase,1.0,0 -45592640,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -45592640,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -45592640,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -45592640,"X3 Albion Prelude",purchase,1.0,0 -168688983,"Dota 2",purchase,1.0,0 -168688983,"Dota 2",play,140.0,0 -88626156,"Call of Duty Black Ops",purchase,1.0,0 -88626156,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -167002074,"Dota 2",purchase,1.0,0 -167002074,"Dota 2",play,0.4,0 -83955783,"Counter-Strike",purchase,1.0,0 -83955783,"Counter-Strike",play,409.0,0 -83955783,"Counter-Strike Condition Zero",purchase,1.0,0 -83955783,"Counter-Strike Condition Zero",play,5.6,0 -83955783,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -83955783,"Day of Defeat",purchase,1.0,0 -83955783,"Deathmatch Classic",purchase,1.0,0 -83955783,"Half-Life 2",purchase,1.0,0 -83955783,"Half-Life 2 Lost Coast",purchase,1.0,0 -83955783,"Ricochet",purchase,1.0,0 -83955783,"Super Monday Night Combat",purchase,1.0,0 -33096779,"Counter-Strike Condition Zero",purchase,1.0,0 -33096779,"Counter-Strike Condition Zero",play,0.9,0 -33096779,"Counter-Strike",purchase,1.0,0 -33096779,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -33096779,"Day of Defeat",purchase,1.0,0 -33096779,"Deathmatch Classic",purchase,1.0,0 -33096779,"Ricochet",purchase,1.0,0 -144532046,"Dota 2",purchase,1.0,0 -144532046,"Dota 2",play,2758.0,0 -144532046,"Warframe",purchase,1.0,0 -144532046,"Warframe",play,3.5,0 -144532046,"Happy Wars",purchase,1.0,0 -144532046,"Happy Wars",play,2.6,0 -144532046,"Sniper Elite V2",purchase,1.0,0 -144532046,"Sniper Elite V2",play,1.6,0 -144532046,"Magicka Wizard Wars",purchase,1.0,0 -144532046,"Magicka Wizard Wars",play,0.5,0 -144532046,"TI5 - Player Profiles EHOME - ROTK",purchase,1.0,0 -144532046,"Dota 2 - The International 2015 - Player Profiles",purchase,1.0,0 -144532046,"TI5 - CDEC's Journey to The Majors",purchase,1.0,0 -144532046,"TI5 - EG Champions of TI5",purchase,1.0,0 -144532046,"TI5 - Player Profiles Cloud9 - NoTail",purchase,1.0,0 -144532046,"TI5 - Player Profiles Complexity - zfreek",purchase,1.0,0 -144532046,"TI5 - Player Profiles EG - Suma1L",purchase,1.0,0 -144532046,"TI5 - Player Profiles Empire - Alohadance",purchase,1.0,0 -144532046,"TI5 - Player Profiles Fnatic - Kecik-Imba",purchase,1.0,0 -144532046,"TI5 - Player Profiles Invictus Gaming - Ferrari",purchase,1.0,0 -144532046,"TI5 - Player Profiles LGD - Xiao8",purchase,1.0,0 -144532046,"TI5 - Player Profiles MVPHot6 - HEEN",purchase,1.0,0 -144532046,"TI5 - Player Profiles NAVI - XBOCT",purchase,1.0,0 -144532046,"TI5 - Player Profiles Newbee - Mu",purchase,1.0,0 -144532046,"TI5 - Player Profiles TeamSecret - S4",purchase,1.0,0 -144532046,"TI5 - Player Profiles Vici - fy",purchase,1.0,0 -144532046,"TI5 - Player Profiles VirtusPro - FNG",purchase,1.0,0 -67834115,"Euro Truck Simulator 2",purchase,1.0,0 -67834115,"Euro Truck Simulator 2",play,0.5,0 -293578749,"Counter-Strike Nexon Zombies",purchase,1.0,0 -293578749,"Counter-Strike Nexon Zombies",play,3.8,0 -293578749,"Robocraft",purchase,1.0,0 -293578749,"Robocraft",play,0.4,0 -293578749,"APB Reloaded",purchase,1.0,0 -293578749,"Pyramid Raid",purchase,1.0,0 -204401529,"Vindictus",purchase,1.0,0 -204401529,"Vindictus",play,71.0,0 -204401529,"DRAGON BALL XENOVERSE",purchase,1.0,0 -204401529,"DRAGON BALL XENOVERSE",play,70.0,0 -204401529,"Warframe",purchase,1.0,0 -204401529,"Warframe",play,68.0,0 -204401529,"Assassin's Creed Rogue",purchase,1.0,0 -204401529,"Assassin's Creed Rogue",play,62.0,0 -204401529,"The Elder Scrolls Online Tamriel Unlimited",purchase,1.0,0 -204401529,"The Elder Scrolls Online Tamriel Unlimited",play,56.0,0 -204401529,"Dota 2",purchase,1.0,0 -204401529,"Dota 2",play,47.0,0 -204401529,"ArcheAge",purchase,1.0,0 -204401529,"ArcheAge",play,28.0,0 -204401529,"FreeStyle2 Street Basketball",purchase,1.0,0 -204401529,"FreeStyle2 Street Basketball",play,27.0,0 -204401529,"Call of Duty World at War",purchase,1.0,0 -204401529,"Call of Duty World at War",play,16.5,0 -204401529,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",purchase,1.0,0 -204401529,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",play,15.9,0 -204401529,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -204401529,"Call of Duty Advanced Warfare - Multiplayer",play,11.2,0 -204401529,"Borderlands 2",purchase,1.0,0 -204401529,"Borderlands 2",play,5.3,0 -204401529,"Call of Duty Black Ops III",purchase,1.0,0 -204401529,"Call of Duty Black Ops III",play,4.3,0 -204401529,"FINAL FANTASY XIV A Realm Reborn",purchase,1.0,0 -204401529,"FINAL FANTASY XIV A Realm Reborn",play,3.5,0 -204401529,"ONE PIECE PIRATE WARRIORS 3",purchase,1.0,0 -204401529,"ONE PIECE PIRATE WARRIORS 3",play,2.2,0 -204401529,"Borderlands The Pre-Sequel",purchase,1.0,0 -204401529,"Borderlands The Pre-Sequel",play,2.1,0 -204401529,"Neverwinter",purchase,1.0,0 -204401529,"Neverwinter",play,1.7,0 -204401529,"FINAL FANTASY XIII-2",purchase,1.0,0 -204401529,"FINAL FANTASY XIII-2",play,1.2,0 -204401529,"TERA",purchase,1.0,0 -204401529,"TERA",play,1.2,0 -204401529,"South Park The Stick of Truth",purchase,1.0,0 -204401529,"South Park The Stick of Truth",play,0.9,0 -204401529,"Middle-earth Shadow of Mordor",purchase,1.0,0 -204401529,"Middle-earth Shadow of Mordor",play,0.9,0 -204401529,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -204401529,"METAL GEAR RISING REVENGEANCE",play,0.8,0 -204401529,"Fable Anniversary",purchase,1.0,0 -204401529,"Fable Anniversary",play,0.8,0 -204401529,"RIFT",purchase,1.0,0 -204401529,"RIFT",play,0.7,0 -204401529,"FX Football - The Manager for Every Football Fan",purchase,1.0,0 -204401529,"FX Football - The Manager for Every Football Fan",play,0.6,0 -204401529,"Castle Crashers",purchase,1.0,0 -204401529,"Castle Crashers",play,0.5,0 -204401529,"Rise of Incarnates",purchase,1.0,0 -204401529,"Rise of Incarnates",play,0.4,0 -204401529,"MapleStory",purchase,1.0,0 -204401529,"MapleStory",play,0.4,0 -204401529,"Ragnarok Online 2",purchase,1.0,0 -204401529,"Ragnarok Online 2",play,0.4,0 -204401529,"Darksiders II",purchase,1.0,0 -204401529,"Darksiders II",play,0.2,0 -204401529,"GunZ 2 The Second Duel",purchase,1.0,0 -204401529,"GunZ 2 The Second Duel",play,0.2,0 -204401529,"Archeblade",purchase,1.0,0 -204401529,"Archeblade",play,0.1,0 -204401529,"Atlantica Online",purchase,1.0,0 -204401529,"Call of Duty Advanced Warfare",purchase,1.0,0 -204401529,"ArtRage 4",purchase,1.0,0 -204401529,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -204401529,"Chaos Heroes Online",purchase,1.0,0 -204401529,"Contagion",purchase,1.0,0 -204401529,"Darksiders",purchase,1.0,0 -204401529,"Darksiders II Deathinitive Edition",purchase,1.0,0 -204401529,"Darksiders II Soundtrack",purchase,1.0,0 -204401529,"Darksiders Soundtrack",purchase,1.0,0 -204401529,"FINAL FANTASY XIV Heavensward",purchase,1.0,0 -204401529,"FX Football 3D Match",purchase,1.0,0 -204401529,"Nosgoth",purchase,1.0,0 -139181289,"Dota 2",purchase,1.0,0 -139181289,"Dota 2",play,3.7,0 -242515341,"Counter-Strike Global Offensive",purchase,1.0,0 -242515341,"Counter-Strike Global Offensive",play,418.0,0 -242515341,"Team Fortress 2",purchase,1.0,0 -242515341,"Team Fortress 2",play,0.2,0 -242515341,"Clicker Heroes",purchase,1.0,0 -242515341,"Neverwinter",purchase,1.0,0 -242515341,"Robocraft",purchase,1.0,0 -185826453,"Dota 2",purchase,1.0,0 -185826453,"Dota 2",play,45.0,0 -174459790,"Unturned",purchase,1.0,0 -174459790,"Unturned",play,32.0,0 -174459790,"Warframe",purchase,1.0,0 -174459790,"Warframe",play,28.0,0 -174459790,"Team Fortress 2",purchase,1.0,0 -174459790,"Team Fortress 2",play,18.9,0 -174459790,"No More Room in Hell",purchase,1.0,0 -174459790,"No More Room in Hell",play,5.8,0 -174459790,"Defiance",purchase,1.0,0 -174459790,"Defiance",play,1.9,0 -174459790,"Trove",purchase,1.0,0 -174459790,"Trove",play,1.5,0 -174459790,"Dirty Bomb",purchase,1.0,0 -174459790,"Dirty Bomb",play,0.9,0 -174459790,"Survarium",purchase,1.0,0 -174459790,"Survarium",play,0.4,0 -174459790,"APB Reloaded",purchase,1.0,0 -174459790,"APB Reloaded",play,0.3,0 -174459790,"Heroes & Generals",purchase,1.0,0 -174459790,"Blacklight Retribution",purchase,1.0,0 -174459790,"Dizzel",purchase,1.0,0 -140708070,"Team Fortress 2",purchase,1.0,0 -140708070,"Team Fortress 2",play,271.0,0 -140708070,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -232082615,"Dota 2",purchase,1.0,0 -232082615,"Dota 2",play,249.0,0 -232082615,"FreeStyle2 Street Basketball",purchase,1.0,0 -232082615,"Warframe",purchase,1.0,0 -142433607,"Dota 2",purchase,1.0,0 -142433607,"Dota 2",play,1214.0,0 -142433607,"Grand Theft Auto V",purchase,1.0,0 -142433607,"Grand Theft Auto V",play,4.6,0 -202894728,"Get Off My Lawn!",purchase,1.0,0 -202894728,"Get Off My Lawn!",play,5.1,0 -202894728,"Team Fortress 2",purchase,1.0,0 -202894728,"Team Fortress 2",play,1.3,0 -202894728,"The Way of Life Free Edition",purchase,1.0,0 -202894728,"The Way of Life Free Edition",play,0.6,0 -202894728,"The Old Tree",purchase,1.0,0 -202894728,"The Old Tree",play,0.3,0 -202894728,"Haunted Memories",purchase,1.0,0 -202894728,"Haunted Memories",play,0.2,0 -202894728,"Double Action Boogaloo",purchase,1.0,0 -202894728,"Double Action Boogaloo",play,0.1,0 -202894728,"Destination Sol",purchase,1.0,0 -202894728,"F.E.A.R. Online",purchase,1.0,0 -202894728,"Warframe",purchase,1.0,0 -85497862,"Counter-Strike Global Offensive",purchase,1.0,0 -85497862,"Counter-Strike Global Offensive",play,409.0,0 -85497862,"Team Fortress 2",purchase,1.0,0 -85497862,"Team Fortress 2",play,134.0,0 -85497862,"Garry's Mod",purchase,1.0,0 -85497862,"Garry's Mod",play,103.0,0 -85497862,"Borderlands 2",purchase,1.0,0 -85497862,"Borderlands 2",play,63.0,0 -85497862,"Awesomenauts",purchase,1.0,0 -85497862,"Awesomenauts",play,51.0,0 -85497862,"PlanetSide 2",purchase,1.0,0 -85497862,"PlanetSide 2",play,43.0,0 -85497862,"Left 4 Dead 2",purchase,1.0,0 -85497862,"Left 4 Dead 2",play,41.0,0 -85497862,"Dota 2",purchase,1.0,0 -85497862,"Dota 2",play,38.0,0 -85497862,"PAYDAY 2",purchase,1.0,0 -85497862,"PAYDAY 2",play,36.0,0 -85497862,"Starbound",purchase,1.0,0 -85497862,"Starbound",play,29.0,0 -85497862,"Deus Ex Human Revolution",purchase,1.0,0 -85497862,"Deus Ex Human Revolution",play,16.7,0 -85497862,"Blacklight Retribution",purchase,1.0,0 -85497862,"Blacklight Retribution",play,16.5,0 -85497862,"Terraria",purchase,1.0,0 -85497862,"Terraria",play,15.7,0 -85497862,"Gotham City Impostors Free To Play",purchase,1.0,0 -85497862,"Gotham City Impostors Free To Play",play,14.5,0 -85497862,"Binary Domain",purchase,1.0,0 -85497862,"Binary Domain",play,14.3,0 -85497862,"Global Agenda",purchase,1.0,0 -85497862,"Global Agenda",play,14.1,0 -85497862,"Borderlands",purchase,1.0,0 -85497862,"Borderlands",play,13.5,0 -85497862,"Risk of Rain",purchase,1.0,0 -85497862,"Risk of Rain",play,11.1,0 -85497862,"Warframe",purchase,1.0,0 -85497862,"Warframe",play,10.6,0 -85497862,"Guns of Icarus Online",purchase,1.0,0 -85497862,"Guns of Icarus Online",play,9.6,0 -85497862,"Sid Meier's Civilization V",purchase,1.0,0 -85497862,"Sid Meier's Civilization V",play,9.2,0 -85497862,"Counter-Strike Source",purchase,1.0,0 -85497862,"Counter-Strike Source",play,8.6,0 -85497862,"Battlefield Bad Company 2",purchase,1.0,0 -85497862,"Battlefield Bad Company 2",play,6.4,0 -85497862,"Borderlands The Pre-Sequel",purchase,1.0,0 -85497862,"Borderlands The Pre-Sequel",play,6.4,0 -85497862,"Sniper Ghost Warrior",purchase,1.0,0 -85497862,"Sniper Ghost Warrior",play,5.8,0 -85497862,"Nosgoth",purchase,1.0,0 -85497862,"Nosgoth",play,5.7,0 -85497862,"Hotline Miami",purchase,1.0,0 -85497862,"Hotline Miami",play,5.5,0 -85497862,"Dishonored",purchase,1.0,0 -85497862,"Dishonored",play,5.5,0 -85497862,"Robocraft",purchase,1.0,0 -85497862,"Robocraft",play,4.7,0 -85497862,"Mark of the Ninja",purchase,1.0,0 -85497862,"Mark of the Ninja",play,4.5,0 -85497862,"Quantum Conundrum",purchase,1.0,0 -85497862,"Quantum Conundrum",play,4.1,0 -85497862,"The Bureau XCOM Declassified",purchase,1.0,0 -85497862,"The Bureau XCOM Declassified",play,3.8,0 -85497862,"Saints Row IV",purchase,1.0,0 -85497862,"Saints Row IV",play,3.6,0 -85497862,"Supreme Commander 2",purchase,1.0,0 -85497862,"Supreme Commander 2",play,3.6,0 -85497862,"Poker Night 2",purchase,1.0,0 -85497862,"Poker Night 2",play,3.4,0 -85497862,"Insurgency",purchase,1.0,0 -85497862,"Insurgency",play,3.4,0 -85497862,"DC Universe Online",purchase,1.0,0 -85497862,"DC Universe Online",play,3.4,0 -85497862,"Half-Life 2 Deathmatch",purchase,1.0,0 -85497862,"Half-Life 2 Deathmatch",play,3.4,0 -85497862,"Super Meat Boy",purchase,1.0,0 -85497862,"Super Meat Boy",play,3.3,0 -85497862,"Mirror's Edge",purchase,1.0,0 -85497862,"Mirror's Edge",play,2.9,0 -85497862,"Space Engineers",purchase,1.0,0 -85497862,"Space Engineers",play,2.8,0 -85497862,"BattleBlock Theater",purchase,1.0,0 -85497862,"BattleBlock Theater",play,2.8,0 -85497862,"Planetary Annihilation",purchase,1.0,0 -85497862,"Planetary Annihilation",play,2.4,0 -85497862,"Fistful of Frags",purchase,1.0,0 -85497862,"Fistful of Frags",play,2.0,0 -85497862,"Gunpoint",purchase,1.0,0 -85497862,"Gunpoint",play,1.7,0 -85497862,"Prison Architect",purchase,1.0,0 -85497862,"Prison Architect",play,1.6,0 -85497862,"Half-Life 2",purchase,1.0,0 -85497862,"Half-Life 2",play,1.6,0 -85497862,"From Dust",purchase,1.0,0 -85497862,"From Dust",play,1.5,0 -85497862,"Antichamber",purchase,1.0,0 -85497862,"Antichamber",play,1.3,0 -85497862,"Ultra Street Fighter IV",purchase,1.0,0 -85497862,"Ultra Street Fighter IV",play,1.3,0 -85497862,"Waking Mars",purchase,1.0,0 -85497862,"Waking Mars",play,1.2,0 -85497862,"Cubemen",purchase,1.0,0 -85497862,"Cubemen",play,1.2,0 -85497862,"FTL Faster Than Light",purchase,1.0,0 -85497862,"FTL Faster Than Light",play,1.0,0 -85497862,"XCOM Enemy Unknown",purchase,1.0,0 -85497862,"XCOM Enemy Unknown",play,1.0,0 -85497862,"DLC Quest",purchase,1.0,0 -85497862,"DLC Quest",play,1.0,0 -85497862,"Poker Night at the Inventory",purchase,1.0,0 -85497862,"Poker Night at the Inventory",play,1.0,0 -85497862,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -85497862,"STAR WARS Knights of the Old Republic II The Sith Lords",play,0.9,0 -85497862,"Lethal League",purchase,1.0,0 -85497862,"Lethal League",play,0.8,0 -85497862,"The Basement Collection",purchase,1.0,0 -85497862,"The Basement Collection",play,0.8,0 -85497862,"Dino D-Day",purchase,1.0,0 -85497862,"Dino D-Day",play,0.7,0 -85497862,"Mountain",purchase,1.0,0 -85497862,"Mountain",play,0.5,0 -85497862,"A.R.E.S.",purchase,1.0,0 -85497862,"A.R.E.S.",play,0.4,0 -85497862,"APOX",purchase,1.0,0 -85497862,"APOX",play,0.4,0 -85497862,"Blacklight Tango Down",purchase,1.0,0 -85497862,"Blacklight Tango Down",play,0.4,0 -85497862,"Sniper Elite V2",purchase,1.0,0 -85497862,"Sniper Elite V2",play,0.3,0 -85497862,"Counter-Strike",purchase,1.0,0 -85497862,"Counter-Strike",play,0.3,0 -85497862,"Star Wars - Battlefront II",purchase,1.0,0 -85497862,"Star Wars - Battlefront II",play,0.2,0 -85497862,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -85497862,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -85497862,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -85497862,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -85497862,"Counter-Strike Condition Zero",purchase,1.0,0 -85497862,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -85497862,"Half-Life 2 Lost Coast",purchase,1.0,0 -85497862,"Magic Duels",purchase,1.0,0 -85497862,"Moonbase Alpha",purchase,1.0,0 -85497862,"PAYDAY The Heist",purchase,1.0,0 -85497862,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -85497862,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -85497862,"Starbound - Unstable",purchase,1.0,0 -85497862,"Strife",purchase,1.0,0 -85497862,"The Binding of Isaac",purchase,1.0,0 -85497862,"The Bureau XCOM Declassified - Light Plasma Pistol",purchase,1.0,0 -85497862,"Time Clickers",purchase,1.0,0 -85497862,"Trove",purchase,1.0,0 -252074145,"Left 4 Dead",purchase,1.0,0 -252074145,"Left 4 Dead",play,5.4,0 -252074145,"Dota 2",purchase,1.0,0 -252074145,"Dota 2",play,4.1,0 -252074145,"Left 4 Dead 2",purchase,1.0,0 -252074145,"Left 4 Dead 2",play,1.2,0 -252074145,"Serious Sam 2",purchase,1.0,0 -252074145,"Serious Sam 2",play,1.0,0 -252074145,"TERA",purchase,1.0,0 -252074145,"War Thunder",purchase,1.0,0 -185781816,"Football Manager 2014",purchase,1.0,0 -185781816,"Football Manager 2014",play,29.0,0 -211157562,"Dota 2",purchase,1.0,0 -211157562,"Dota 2",play,0.7,0 -185907866,"Dota 2",purchase,1.0,0 -185907866,"Dota 2",play,454.0,0 -183048608,"Grand Theft Auto V",purchase,1.0,0 -183048608,"Grand Theft Auto V",play,118.0,0 -183048608,"Tomb Raider",purchase,1.0,0 -183048608,"Tomb Raider",play,15.7,0 -183048608,"Sniper Elite 3",purchase,1.0,0 -183048608,"Sniper Elite 3",play,11.1,0 -183048608,"Metro 2033",purchase,1.0,0 -183048608,"Metro 2033",play,3.0,0 -183048608,"Counter-Strike Global Offensive",purchase,1.0,0 -183048608,"Counter-Strike Global Offensive",play,1.5,0 -183048608,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -183048608,"Tom Clancy's Ghost Recon Phantoms - NA",play,1.1,0 -183048608,"Dota 2",purchase,1.0,0 -183048608,"Dota 2",play,0.8,0 -183048608,"Team Fortress 2",purchase,1.0,0 -183048608,"Team Fortress 2",play,0.6,0 -183048608,"Race The Sun",purchase,1.0,0 -183048608,"Race The Sun",play,0.5,0 -159844178,"Left 4 Dead 2",purchase,1.0,0 -174607800,"Dota 2",purchase,1.0,0 -174607800,"Dota 2",play,86.0,0 -241206497,"Dota 2",purchase,1.0,0 -241206497,"Dota 2",play,17.3,0 -114431673,"Dota 2",purchase,1.0,0 -114431673,"Dota 2",play,969.0,0 -114431673,"Unturned",purchase,1.0,0 -135522355,"Dota 2",purchase,1.0,0 -135522355,"Dota 2",play,2.2,0 -135522355,"Team Fortress 2",purchase,1.0,0 -135522355,"Team Fortress 2",play,0.6,0 -275120552,"Castlevania Lords of Shadow 2",purchase,1.0,0 -275120552,"Castlevania Lords of Shadow 2",play,0.4,0 -142044216,"Dota 2",purchase,1.0,0 -142044216,"Dota 2",play,699.0,0 -175345951,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -175345951,"Call of Duty Ghosts - Multiplayer",play,100.0,0 -175345951,"Call of Duty Ghosts",purchase,1.0,0 -175345951,"Call of Duty Ghosts",play,8.0,0 -175345951,"Path of Exile",purchase,1.0,0 -300041052,"Unturned",purchase,1.0,0 -300041052,"Unturned",play,1.2,0 -51558260,"Sid Meier's Civilization V",purchase,1.0,0 -51558260,"Sid Meier's Civilization V",play,12.0,0 -51558260,"Stronghold Crusader 2",purchase,1.0,0 -51558260,"Stronghold Crusader 2",play,2.4,0 -51558260,"Stronghold Crusader HD",purchase,1.0,0 -51558260,"Stronghold Crusader HD",play,0.2,0 -51558260,"Empire Total War",purchase,1.0,0 -51558260,"Empire Total War",play,0.1,0 -51558260,"Stronghold Crusader Extreme HD",purchase,1.0,0 -51558260,"Stronghold Kingdoms",purchase,1.0,0 -252675449,"Dota 2",purchase,1.0,0 -252675449,"Dota 2",play,1.3,0 -252675449,"Dirty Bomb",purchase,1.0,0 -295171886,"Dota 2",purchase,1.0,0 -295171886,"Dota 2",play,164.0,0 -187477041,"Dota 2",purchase,1.0,0 -187477041,"Dota 2",play,7.0,0 -307674833,"Warface",purchase,1.0,0 -307674833,"Warface",play,0.9,0 -307674833,"Codename CURE",purchase,1.0,0 -307674833,"Codename CURE",play,0.4,0 -236210195,"Counter-Strike Source",purchase,1.0,0 -236210195,"Counter-Strike Source",play,76.0,0 -236210195,"Marvel Heroes 2015",purchase,1.0,0 -236210195,"Tales Runner",purchase,1.0,0 -246883819,"Dota 2",purchase,1.0,0 -246883819,"Dota 2",play,0.7,0 -246883819,"FreeStyle2 Street Basketball",purchase,1.0,0 -246883819,"Heroes & Generals",purchase,1.0,0 -237525173,"Grimm",purchase,1.0,0 -300806786,"Dota 2",purchase,1.0,0 -300806786,"Dota 2",play,0.3,0 -133169378,"Dota 2",purchase,1.0,0 -133169378,"Dota 2",play,2.0,0 -238410719,"The Elder Scrolls V Skyrim",purchase,1.0,0 -238410719,"The Elder Scrolls V Skyrim",play,2.2,0 -238410719,"AdVenture Capitalist",purchase,1.0,0 -238410719,"AdVenture Capitalist",play,1.8,0 -238410719,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -155283245,"Dota 2",purchase,1.0,0 -155283245,"Dota 2",play,0.5,0 -246650796,"Dota 2",purchase,1.0,0 -246650796,"Dota 2",play,7.9,0 -189640897,"HAWKEN",purchase,1.0,0 -189640897,"Loadout",purchase,1.0,0 -237083653,"Dota 2",purchase,1.0,0 -237083653,"Dota 2",play,0.7,0 -251287156,"Dota 2",purchase,1.0,0 -251287156,"Dota 2",play,2.1,0 -224532667,"Robocraft",purchase,1.0,0 -224532667,"Robocraft",play,0.9,0 -224532667,"Heroes & Generals",purchase,1.0,0 -224532667,"Heroes & Generals",play,0.7,0 -224754050,"Dota 2",purchase,1.0,0 -224754050,"Dota 2",play,367.0,0 -224754050,"Counter-Strike Global Offensive",purchase,1.0,0 -224754050,"Counter-Strike Global Offensive",play,56.0,0 -224754050,"Counter-Strike",purchase,1.0,0 -224754050,"Counter-Strike",play,48.0,0 -224754050,"Panzar",purchase,1.0,0 -224754050,"Panzar",play,12.1,0 -224754050,"Counter-Strike Nexon Zombies",purchase,1.0,0 -224754050,"Counter-Strike Nexon Zombies",play,8.0,0 -224754050,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -224754050,"Tom Clancy's Ghost Recon Phantoms - EU",play,7.3,0 -224754050,"Counter-Strike Source",purchase,1.0,0 -224754050,"Counter-Strike Source",play,5.8,0 -224754050,"Warframe",purchase,1.0,0 -224754050,"Warframe",play,5.1,0 -224754050,"Unturned",purchase,1.0,0 -224754050,"Unturned",play,4.4,0 -224754050,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -224754050,"S.K.I.L.L. - Special Force 2",play,4.4,0 -224754050,"Robocraft",purchase,1.0,0 -224754050,"Robocraft",play,3.0,0 -224754050,"Gotham City Impostors Free To Play",purchase,1.0,0 -224754050,"Gotham City Impostors Free To Play",play,1.7,0 -224754050,"Loadout",purchase,1.0,0 -224754050,"Loadout",play,1.5,0 -224754050,"Team Fortress 2",purchase,1.0,0 -224754050,"Team Fortress 2",play,1.3,0 -224754050,"Block N Load",purchase,1.0,0 -224754050,"Block N Load",play,1.1,0 -224754050,"Magicka Wizard Wars",purchase,1.0,0 -224754050,"Magicka Wizard Wars",play,0.5,0 -224754050,"BLOCKADE 3D",purchase,1.0,0 -224754050,"BLOCKADE 3D",play,0.3,0 -224754050,"Heroes of Scene",purchase,1.0,0 -224754050,"Heroes of Scene",play,0.2,0 -224754050,"Nosgoth",purchase,1.0,0 -224754050,"Nosgoth",play,0.2,0 -224754050,"Brick-Force",purchase,1.0,0 -224754050,"Brick-Force",play,0.1,0 -224754050,"Dirty Bomb",purchase,1.0,0 -224754050,"Dirty Bomb",play,0.1,0 -224754050,"Counter-Strike Condition Zero",purchase,1.0,0 -224754050,"America's Army Proving Grounds",purchase,1.0,0 -224754050,"Clicker Heroes",purchase,1.0,0 -224754050,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -224754050,"Defiance",purchase,1.0,0 -224754050,"Heroes & Generals",purchase,1.0,0 -224754050,"MechWarrior Online",purchase,1.0,0 -224754050,"Modular Combat",purchase,1.0,0 -224754050,"No More Room in Hell",purchase,1.0,0 -224754050,"RaceRoom Racing Experience ",purchase,1.0,0 -224754050,"Rise of Incarnates",purchase,1.0,0 -224754050,"Shadow Warrior Classic (1997)",purchase,1.0,0 -224754050,"Strife",purchase,1.0,0 -224754050,"Survarium",purchase,1.0,0 -224754050,"Tribes Ascend",purchase,1.0,0 -224754050,"Trove",purchase,1.0,0 -224754050,"War Thunder",purchase,1.0,0 -96221495,"Portal 2",purchase,1.0,0 -96221495,"Portal 2",play,10.9,0 -42469578,"Counter-Strike Source",purchase,1.0,0 -42469578,"Counter-Strike Source",play,0.4,0 -42469578,"Day of Defeat Source",purchase,1.0,0 -42469578,"Half-Life 2 Deathmatch",purchase,1.0,0 -42469578,"Half-Life 2 Lost Coast",purchase,1.0,0 -46607365,"Total War SHOGUN 2",purchase,1.0,0 -46607365,"Total War SHOGUN 2",play,495.0,0 -46607365,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -46607365,"Warhammer 40,000 Dawn of War II Retribution",play,382.0,0 -46607365,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -46607365,"Warhammer 40,000 Dawn of War II",play,370.0,0 -46607365,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -46607365,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,267.0,0 -46607365,"The Elder Scrolls V Skyrim",purchase,1.0,0 -46607365,"The Elder Scrolls V Skyrim",play,126.0,0 -46607365,"NOBUNAGA'S AMBITION Sphere of Influence",purchase,1.0,0 -46607365,"NOBUNAGA'S AMBITION Sphere of Influence",play,100.0,0 -46607365,"Endless Space",purchase,1.0,0 -46607365,"Endless Space",play,69.0,0 -46607365,"Shadowrun Hong Kong",purchase,1.0,0 -46607365,"Shadowrun Hong Kong",play,26.0,0 -46607365,"The Dark Eye Chains of Satinav",purchase,1.0,0 -46607365,"The Dark Eye Chains of Satinav",play,19.1,0 -46607365,"Demonicon",purchase,1.0,0 -46607365,"Demonicon",play,1.5,0 -46607365,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -46607365,"Shadowrun Dragonfall - Director's Cut",play,0.2,0 -46607365,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -107698030,"Team Fortress 2",purchase,1.0,0 -107698030,"Team Fortress 2",play,2.2,0 -158712831,"Professional Farmer 2014",purchase,1.0,0 -158712831,"Professional Farmer 2014",play,1.9,0 -154687199,"Counter-Strike Global Offensive",purchase,1.0,0 -154687199,"Counter-Strike Global Offensive",play,348.0,0 -154687199,"Clicker Heroes",purchase,1.0,0 -154687199,"Clicker Heroes",play,309.0,0 -154687199,"Dota 2",purchase,1.0,0 -154687199,"Dota 2",play,39.0,0 -154687199,"Terraria",purchase,1.0,0 -154687199,"Terraria",play,26.0,0 -154687199,"Garry's Mod",purchase,1.0,0 -154687199,"Garry's Mod",play,22.0,0 -154687199,"The Binding of Isaac",purchase,1.0,0 -154687199,"The Binding of Isaac",play,15.4,0 -154687199,"Team Fortress 2",purchase,1.0,0 -154687199,"Team Fortress 2",play,1.8,0 -154687199,"8BitMMO",purchase,1.0,0 -154687199,"8BitMMO",play,0.2,0 -154687199,"Unturned",purchase,1.0,0 -154687199,"SMITE",purchase,1.0,0 -154687199,"Counter-Strike Nexon Zombies",purchase,1.0,0 -154687199,"Cry of Fear",purchase,1.0,0 -154687199,"Dragon's Prophet (EU)",purchase,1.0,0 -154687199,"Gotham City Impostors Free To Play",purchase,1.0,0 -154687199,"Haunted Memories",purchase,1.0,0 -154687199,"HAWKEN",purchase,1.0,0 -154687199,"RaceRoom Racing Experience ",purchase,1.0,0 -154687199,"Robocraft",purchase,1.0,0 -154687199,"theHunter",purchase,1.0,0 -154687199,"Velvet Sundown",purchase,1.0,0 -154687199,"Warface",purchase,1.0,0 -206414060,"Dota 2",purchase,1.0,0 -206414060,"Dota 2",play,1.3,0 -192134691,"Dota 2",purchase,1.0,0 -192134691,"Dota 2",play,1113.0,0 -151133200,"Dota 2",purchase,1.0,0 -151133200,"Dota 2",play,5.5,0 -193599149,"sZone-Online",purchase,1.0,0 -193599149,"sZone-Online",play,0.3,0 -186347003,"Dota 2",purchase,1.0,0 -186347003,"Dota 2",play,4.4,0 -123334228,"Ignite",purchase,1.0,0 -298644721,"Unturned",purchase,1.0,0 -298644721,"Unturned",play,2.8,0 -298644721,"Mitos.is The Game",purchase,1.0,0 -298644721,"Mitos.is The Game",play,1.1,0 -53244117,"Counter-Strike",purchase,1.0,0 -53244117,"Counter-Strike",play,3283.0,0 -53244117,"DC Universe Online",purchase,1.0,0 -53244117,"DC Universe Online",play,1.1,0 -53244117,"Day of Defeat",purchase,1.0,0 -53244117,"Counter-Strike Condition Zero",purchase,1.0,0 -53244117,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -53244117,"Deathmatch Classic",purchase,1.0,0 -53244117,"Ricochet",purchase,1.0,0 -29111100,"Counter-Strike Condition Zero",purchase,1.0,0 -29111100,"Counter-Strike Condition Zero",play,1.1,0 -29111100,"Counter-Strike",purchase,1.0,0 -29111100,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -29111100,"Day of Defeat",purchase,1.0,0 -29111100,"Deathmatch Classic",purchase,1.0,0 -29111100,"Ricochet",purchase,1.0,0 -251732117,"Star Conflict",purchase,1.0,0 -251732117,"Star Conflict",play,48.0,0 -251732117,"Team Fortress 2",purchase,1.0,0 -251732117,"Team Fortress 2",play,2.3,0 -251732117,"Robocraft",purchase,1.0,0 -251732117,"Robocraft",play,0.2,0 -251732117,"War Thunder",purchase,1.0,0 -251732117,"War Thunder",play,0.1,0 -251732117,"Unturned",purchase,1.0,0 -251732117,"Unturned",play,0.1,0 -197652539,"Terraria",purchase,1.0,0 -197652539,"Terraria",play,70.0,0 -197652539,"TERA",purchase,1.0,0 -197652539,"TERA",play,48.0,0 -197652539,"The Elder Scrolls V Skyrim",purchase,1.0,0 -197652539,"The Elder Scrolls V Skyrim",play,33.0,0 -197652539,"Dying Light",purchase,1.0,0 -197652539,"Dying Light",play,23.0,0 -197652539,"BioShock Infinite",purchase,1.0,0 -197652539,"BioShock Infinite",play,22.0,0 -197652539,"Sid Meier's Civilization V",purchase,1.0,0 -197652539,"Sid Meier's Civilization V",play,11.1,0 -197652539,"Portal 2",purchase,1.0,0 -197652539,"Portal 2",play,10.4,0 -197652539,"Chivalry Medieval Warfare",purchase,1.0,0 -197652539,"Chivalry Medieval Warfare",play,2.7,0 -197652539,"HAWKEN",purchase,1.0,0 -197652539,"HAWKEN",play,1.1,0 -197652539,"BioShock",purchase,1.0,0 -197652539,"BioShock",play,1.0,0 -197652539,"Lichdom Battlemage",purchase,1.0,0 -197652539,"Lichdom Battlemage",play,1.0,0 -197652539,"Battlefield Bad Company 2",purchase,1.0,0 -197652539,"Battlefield Bad Company 2",play,0.4,0 -197652539,"Counter-Strike Global Offensive",purchase,1.0,0 -197652539,"Counter-Strike Global Offensive",play,0.1,0 -197652539,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -197652539,"BioShock 2",purchase,1.0,0 -197652539,"Portal",purchase,1.0,0 -197652539,"Ascend Hand of Kul",purchase,1.0,0 -197652539,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -197652539,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -197652539,"Patch testing for Chivalry",purchase,1.0,0 -197652539,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -197652539,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -197652539,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -197652539,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -197652539,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -174991407,"Team Fortress 2",purchase,1.0,0 -174991407,"Team Fortress 2",play,0.4,0 -174991407,"Unturned",purchase,1.0,0 -182426216,"Euro Truck Simulator 2",purchase,1.0,0 -182426216,"Euro Truck Simulator 2",play,48.0,0 -182426216,"Cities XXL",purchase,1.0,0 -182426216,"Cities XXL",play,11.9,0 -182426216,"Euro Truck Simulator",purchase,1.0,0 -182426216,"Scania Truck Driving Simulator",purchase,1.0,0 -182426216,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -210700279,"Dota 2",purchase,1.0,0 -210700279,"Dota 2",play,0.3,0 -222642626,"Five Nights at Freddy's 2",purchase,1.0,0 -222642626,"Five Nights at Freddy's 2",play,2.2,0 -222642626,"Dota 2",purchase,1.0,0 -222642626,"Dota 2",play,0.2,0 -179822216,"Dota 2",purchase,1.0,0 -179822216,"Dota 2",play,2.2,0 -208004844,"Dota 2",purchase,1.0,0 -208004844,"Dota 2",play,50.0,0 -208004844,"Team Fortress 2",purchase,1.0,0 -208004844,"Team Fortress 2",play,2.8,0 -208004844,"Counter-Strike Nexon Zombies",purchase,1.0,0 -208004844,"Counter-Strike Nexon Zombies",play,1.1,0 -208004844,"Unturned",purchase,1.0,0 -208004844,"Unturned",play,0.2,0 -251635136,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -251635136,"Deus Ex Human Revolution - Director's Cut",play,37.0,0 -251635136,"Fallout 4",purchase,1.0,0 -251635136,"Fallout 4",play,26.0,0 -251635136,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -251635136,"F.E.A.R. 2 Project Origin",play,10.9,0 -251635136,"F.E.A.R.",purchase,1.0,0 -251635136,"F.E.A.R.",play,10.9,0 -251635136,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -251635136,"S.T.A.L.K.E.R. Call of Pripyat",play,8.5,0 -251635136,"Portal 2",purchase,1.0,0 -251635136,"Portal 2",play,8.4,0 -251635136,"Octodad Dadliest Catch",purchase,1.0,0 -251635136,"Octodad Dadliest Catch",play,8.4,0 -251635136,"F.E.A.R. Extraction Point",purchase,1.0,0 -251635136,"F.E.A.R. Extraction Point",play,5.6,0 -251635136,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -251635136,"F.E.A.R. Perseus Mandate",play,4.1,0 -251635136,"Hitman Absolution",purchase,1.0,0 -251635136,"Hitman Absolution",play,2.8,0 -251635136,"Dota 2",purchase,1.0,0 -251635136,"Dota 2",play,1.2,0 -251635136,"MURDERED SOUL SUSPECT",purchase,1.0,0 -251635136,"MURDERED SOUL SUSPECT",play,1.1,0 -251635136,"Garry's Mod",purchase,1.0,0 -251635136,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -251635136,"Kane & Lynch Dead Men",purchase,1.0,0 -251635136,"Supreme Commander 2",purchase,1.0,0 -251635136,"Thief",purchase,1.0,0 -161633525,"Team Fortress 2",purchase,1.0,0 -161633525,"Team Fortress 2",play,0.8,0 -236476905,"Team Fortress 2",purchase,1.0,0 -236476905,"Team Fortress 2",play,5.0,0 -213523850,"Dota 2",purchase,1.0,0 -213523850,"Dota 2",play,2.6,0 -213523850,"Battle Nations",purchase,1.0,0 -213523850,"Free to Play",purchase,1.0,0 -213523850,"HAWKEN",purchase,1.0,0 -213523850,"Neverwinter",purchase,1.0,0 -213523850,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -213523850,"Warframe",purchase,1.0,0 -213523850,"War Thunder",purchase,1.0,0 -54739475,"Football Manager 2010",purchase,1.0,0 -54739475,"Football Manager 2010",play,663.0,0 -175460237,"Avernum Escape From the Pit",purchase,1.0,0 -175460237,"Avernum Escape From the Pit",play,70.0,0 -175460237,"The Stanley Parable",purchase,1.0,0 -175460237,"The Stanley Parable",play,2.4,0 -96269099,"Counter-Strike Global Offensive",purchase,1.0,0 -96269099,"Counter-Strike Global Offensive",play,837.0,0 -96269099,"Team Fortress 2",purchase,1.0,0 -96269099,"Team Fortress 2",play,16.7,0 -96269099,"Tom Clancy's Ghost Recon Future Soldier",purchase,1.0,0 -96269099,"Tom Clancy's Ghost Recon Future Soldier",play,1.5,0 -306950369,"Euro Truck Simulator 2",purchase,1.0,0 -306950369,"Euro Truck Simulator 2",play,0.6,0 -307705649,"Dota 2",purchase,1.0,0 -307705649,"Dota 2",play,0.8,0 -112089956,"King Arthur - The Role-playing Wargame",purchase,1.0,0 -112089956,"King Arthur The Saxons",purchase,1.0,0 -127947215,"Dota 2",purchase,1.0,0 -127947215,"Dota 2",play,318.0,0 -127947215,"LIMBO",purchase,1.0,0 -56436338,"Football Manager 2009",purchase,1.0,0 -56436338,"Football Manager 2009",play,1369.0,0 -56436338,"Football Manager 2015",purchase,1.0,0 -56436338,"Football Manager 2015",play,1049.0,0 -56436338,"Football Manager 2013",purchase,1.0,0 -56436338,"Football Manager 2013",play,546.0,0 -56436338,"Football Manager 2011",purchase,1.0,0 -56436338,"Football Manager 2011",play,488.0,0 -56436338,"Football Manager 2012",purchase,1.0,0 -56436338,"Football Manager 2012",play,54.0,0 -183983684,"Team Fortress 2",purchase,1.0,0 -183983684,"Team Fortress 2",play,72.0,0 -183983684,"Transformice",purchase,1.0,0 -183983684,"Transformice",play,17.6,0 -183983684,"Unturned",purchase,1.0,0 -183983684,"Unturned",play,5.0,0 -183983684,"MicroVolts Surge",purchase,1.0,0 -183983684,"MicroVolts Surge",play,1.9,0 -183983684,"APB Reloaded",purchase,1.0,0 -183983684,"APB Reloaded",play,1.3,0 -183983684,"Robocraft",purchase,1.0,0 -183983684,"Robocraft",play,0.9,0 -183983684,"Mitos.is The Game",purchase,1.0,0 -183983684,"Mitos.is The Game",play,0.1,0 -183983684,"Heroes & Generals",purchase,1.0,0 -183983684,"Heroes & Generals",play,0.1,0 -183983684,"Grand Chase",purchase,1.0,0 -183983684,"War Thunder",purchase,1.0,0 -294924069,"Dota 2",purchase,1.0,0 -294924069,"Dota 2",play,0.6,0 -104192353,"Counter-Strike Source",purchase,1.0,0 -104192353,"Counter-Strike Source",play,94.0,0 -104192353,"Homefront",purchase,1.0,0 -104192353,"Homefront",play,6.4,0 -104192353,"Day of Defeat Source",purchase,1.0,0 -104192353,"Half-Life 2 Deathmatch",purchase,1.0,0 -104192353,"Half-Life 2 Lost Coast",purchase,1.0,0 -251634185,"Requiem",purchase,1.0,0 -251634185,"Requiem",play,1.9,0 -251634185,"Divine Souls",purchase,1.0,0 -251634185,"Divine Souls",play,1.2,0 -251634185,"Alganon",purchase,1.0,0 -251634185,"Alganon",play,0.5,0 -251634185,"Dungeons & Dragons Online",purchase,1.0,0 -251634185,"Dungeons & Dragons Online",play,0.5,0 -251634185,"Karos Returns",purchase,1.0,0 -251634185,"Karos Returns",play,0.5,0 -251634185,"Panzar",purchase,1.0,0 -251634185,"Panzar",play,0.3,0 -251634185,"Dragon Nest Europe",purchase,1.0,0 -251634185,"Path of Exile",purchase,1.0,0 -235227013,"Dota 2",purchase,1.0,0 -235227013,"Dota 2",play,6.2,0 -213184657,"The Amazing Spider-Man",purchase,1.0,0 -130431476,"Tomb Raider",purchase,1.0,0 -138906315,"Dota 2",purchase,1.0,0 -138906315,"Dota 2",play,73.0,0 -63605342,"Call of Duty Modern Warfare 2",purchase,1.0,0 -63605342,"Call of Duty Modern Warfare 2",play,20.0,0 -63605342,"Call of Duty Black Ops",purchase,1.0,0 -63605342,"Call of Duty Black Ops",play,19.7,0 -63605342,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -63605342,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -235469862,"Dota 2",purchase,1.0,0 -235469862,"Dota 2",play,0.4,0 -107951494,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -107951494,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,42.0,0 -107951494,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -107951494,"Warhammer 40,000 Dawn of War II",play,0.1,0 -106099216,"Sid Meier's Civilization V",purchase,1.0,0 -106099216,"Sid Meier's Civilization V",play,5483.0,0 -106099216,"Europa Universalis IV",purchase,1.0,0 -106099216,"Europa Universalis IV",play,109.0,0 -106099216,"Cities XL Platinum",purchase,1.0,0 -106099216,"Cities XL Platinum",play,75.0,0 -106099216,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -106099216,"Sid Meier's Civilization Beyond Earth",play,62.0,0 -106099216,"Cities XXL",purchase,1.0,0 -106099216,"Cities XXL",play,9.6,0 -106099216,"The Settlers 7 Paths to a Kingdom - Gold Edition",purchase,1.0,0 -106099216,"The Settlers 7 Paths to a Kingdom - Gold Edition",play,1.2,0 -106099216,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -184938219,"Unturned",purchase,1.0,0 -184938219,"Unturned",play,0.5,0 -76243637,"Dota 2",purchase,1.0,0 -76243637,"Dota 2",play,5.1,0 -133964193,"Dota 2",purchase,1.0,0 -133964193,"Dota 2",play,548.0,0 -133964193,"DARK SOULS II",purchase,1.0,0 -133964193,"DARK SOULS II",play,120.0,0 -133964193,"H1Z1",purchase,1.0,0 -133964193,"H1Z1",play,18.3,0 -133964193,"Counter-Strike Global Offensive",purchase,1.0,0 -133964193,"Counter-Strike Global Offensive",play,1.2,0 -133964193,"Counter-Strike",purchase,1.0,0 -133964193,"Counter-Strike Condition Zero",purchase,1.0,0 -133964193,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -133964193,"Counter-Strike Source",purchase,1.0,0 -133964193,"DARK SOULS II - Season Pass",purchase,1.0,0 -133964193,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -133964193,"H1Z1 Test Server",purchase,1.0,0 -156090224,"DmC Devil May Cry",purchase,1.0,0 -156090224,"DmC Devil May Cry",play,16.6,0 -284701762,"Dota 2",purchase,1.0,0 -284701762,"Dota 2",play,30.0,0 -174002551,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -174002551,"DARK SOULS II Scholar of the First Sin",play,113.0,0 -174002551,"Don't Starve",purchase,1.0,0 -174002551,"Don't Starve",play,94.0,0 -174002551,"Sid Meier's Civilization V",purchase,1.0,0 -174002551,"Sid Meier's Civilization V",play,93.0,0 -174002551,"Grand Theft Auto V",purchase,1.0,0 -174002551,"Grand Theft Auto V",play,86.0,0 -174002551,"Risk of Rain",purchase,1.0,0 -174002551,"Risk of Rain",play,76.0,0 -174002551,"How to Survive",purchase,1.0,0 -174002551,"How to Survive",play,40.0,0 -174002551,"Don't Starve Together Beta",purchase,1.0,0 -174002551,"Don't Starve Together Beta",play,39.0,0 -174002551,"Banished",purchase,1.0,0 -174002551,"Banished",play,23.0,0 -174002551,"Team Fortress 2",purchase,1.0,0 -174002551,"Team Fortress 2",play,15.5,0 -174002551,"FootLOL Epic Fail League",purchase,1.0,0 -174002551,"FootLOL Epic Fail League",play,9.1,0 -174002551,"Age of Empires II HD Edition",purchase,1.0,0 -174002551,"Age of Empires II HD Edition",play,9.1,0 -174002551,"Terraria",purchase,1.0,0 -174002551,"Terraria",play,7.6,0 -174002551,"Grand Theft Auto IV",purchase,1.0,0 -174002551,"Grand Theft Auto IV",play,5.9,0 -174002551,"Assassin's Creed Freedom Cry",purchase,1.0,0 -174002551,"Assassin's Creed Freedom Cry",play,5.7,0 -174002551,"Portal 2",purchase,1.0,0 -174002551,"Portal 2",play,4.8,0 -174002551,"Just Cause 2",purchase,1.0,0 -174002551,"Just Cause 2",play,4.0,0 -174002551,"DEFCON",purchase,1.0,0 -174002551,"DEFCON",play,3.6,0 -174002551,"Hydrophobia Prophecy",purchase,1.0,0 -174002551,"Hydrophobia Prophecy",play,2.4,0 -174002551,"Gauntlet ",purchase,1.0,0 -174002551,"Gauntlet ",play,1.8,0 -174002551,"Hearts of Iron III",purchase,1.0,0 -174002551,"Hearts of Iron III",play,1.8,0 -174002551,"SpaceChem",purchase,1.0,0 -174002551,"SpaceChem",play,1.8,0 -174002551,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -174002551,"Tropico 3 - Steam Special Edition",play,0.7,0 -174002551,"RACE 07",purchase,1.0,0 -174002551,"RACE 07",play,0.4,0 -174002551,"World of Guns Gun Disassembly",purchase,1.0,0 -174002551,"World of Guns Gun Disassembly",play,0.4,0 -174002551,"Really Big Sky",purchase,1.0,0 -174002551,"Really Big Sky",play,0.2,0 -174002551,"ORION Prelude",purchase,1.0,0 -174002551,"Gun Monkeys",purchase,1.0,0 -174002551,"DCS World",purchase,1.0,0 -174002551,"Chaos Domain",purchase,1.0,0 -174002551,"Don't Starve Reign of Giants",purchase,1.0,0 -174002551,"GTR Evolution",purchase,1.0,0 -174002551,"Metro 2033",purchase,1.0,0 -174002551,"Portal",purchase,1.0,0 -174002551,"RaceRoom Racing Experience ",purchase,1.0,0 -174002551,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -174002551,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -174002551,"Space Hack",purchase,1.0,0 -174002551,"Waves",purchase,1.0,0 -7923954,"Counter-Strike",purchase,1.0,0 -7923954,"Counter-Strike",play,0.3,0 -7923954,"Day of Defeat",purchase,1.0,0 -7923954,"Deathmatch Classic",purchase,1.0,0 -7923954,"Half-Life",purchase,1.0,0 -7923954,"Half-Life Blue Shift",purchase,1.0,0 -7923954,"Half-Life Opposing Force",purchase,1.0,0 -7923954,"Ricochet",purchase,1.0,0 -7923954,"Team Fortress Classic",purchase,1.0,0 -167815968,"Sakura Clicker",purchase,1.0,0 -167815968,"Sakura Clicker",play,1256.0,0 -167815968,"Fallout 4",purchase,1.0,0 -167815968,"Fallout 4",play,38.0,0 -167815968,"Dying Light",purchase,1.0,0 -167815968,"Dying Light",play,30.0,0 -167815968,"Insaniquarium! Deluxe",purchase,1.0,0 -167815968,"Insaniquarium! Deluxe",play,20.0,0 -167815968,"Borderlands The Pre-Sequel",purchase,1.0,0 -167815968,"Borderlands The Pre-Sequel",play,9.2,0 -167815968,"Tales of Zestiria",purchase,1.0,0 -167815968,"Tales of Zestiria",play,8.2,0 -167815968,"Alice Madness Returns",purchase,1.0,0 -167815968,"Alice Madness Returns",play,6.2,0 -167815968,"HuniePop",purchase,1.0,0 -167815968,"HuniePop",play,5.6,0 -167815968,"Dota 2",purchase,1.0,0 -167815968,"Dota 2",play,5.6,0 -167815968,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -167815968,"Warhammer 40,000 Dawn of War Soulstorm",play,5.5,0 -167815968,"The Witcher 3 Wild Hunt",purchase,1.0,0 -167815968,"The Witcher 3 Wild Hunt",play,5.2,0 -167815968,"Bloodline Champions",purchase,1.0,0 -167815968,"Bloodline Champions",play,4.8,0 -167815968,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -167815968,"Call of Duty Advanced Warfare - Multiplayer",play,4.5,0 -167815968,"Borderlands",purchase,1.0,0 -167815968,"Borderlands",play,4.0,0 -167815968,"Hyperdimension Neptunia Re;Birth1",purchase,1.0,0 -167815968,"Hyperdimension Neptunia Re;Birth1",play,4.0,0 -167815968,"Antichamber",purchase,1.0,0 -167815968,"Antichamber",play,3.2,0 -167815968,"BioShock",purchase,1.0,0 -167815968,"BioShock",play,3.1,0 -167815968,"The Elder Scrolls V Skyrim",purchase,1.0,0 -167815968,"The Elder Scrolls V Skyrim",play,2.9,0 -167815968,"Gurumin A Monstrous Adventure",purchase,1.0,0 -167815968,"Gurumin A Monstrous Adventure",play,2.4,0 -167815968,"FaceRig",purchase,1.0,0 -167815968,"FaceRig",play,2.3,0 -167815968,"The Last Remnant",purchase,1.0,0 -167815968,"The Last Remnant",play,2.2,0 -167815968,"Stranded Deep",purchase,1.0,0 -167815968,"Stranded Deep",play,2.0,0 -167815968,"NEKOPARA Vol. 1",purchase,1.0,0 -167815968,"NEKOPARA Vol. 1",play,2.0,0 -167815968,"FINAL FANTASY VIII",purchase,1.0,0 -167815968,"FINAL FANTASY VIII",play,1.6,0 -167815968,"RWBY Grimm Eclipse",purchase,1.0,0 -167815968,"RWBY Grimm Eclipse",play,1.5,0 -167815968,"100% Orange Juice",purchase,1.0,0 -167815968,"100% Orange Juice",play,1.4,0 -167815968,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -167815968,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,1.0,0 -167815968,"Thief",purchase,1.0,0 -167815968,"Thief",play,0.6,0 -167815968,"Borderlands 2",purchase,1.0,0 -167815968,"Borderlands 2",play,0.4,0 -167815968,"Team Fortress 2",purchase,1.0,0 -167815968,"Team Fortress 2",play,0.3,0 -167815968,"Jigoku Kisetsukan Sense of the Seasons",purchase,1.0,0 -167815968,"Jigoku Kisetsukan Sense of the Seasons",play,0.2,0 -167815968,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -167815968,"Call of Duty Advanced Warfare",purchase,1.0,0 -167815968,"Survarium",purchase,1.0,0 -167815968,"Amnesia The Dark Descent",purchase,1.0,0 -167815968,"BioShock 2",purchase,1.0,0 -167815968,"BioShock Infinite",purchase,1.0,0 -167815968,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -167815968,"FaceRig Pro Upgrade",purchase,1.0,0 -167815968,"Hyperdimension Neptunia Re;Birth2 Sisters Generation",purchase,1.0,0 -167815968,"Robocraft",purchase,1.0,0 -167815968,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -167815968,"Super Meat Boy",purchase,1.0,0 -167815968,"Tomb Raider",purchase,1.0,0 -63655097,"Aliens vs. Predator",purchase,1.0,0 -63655097,"Aliens vs. Predator",play,0.6,0 -110121805,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -110121805,"Dark Souls Prepare to Die Edition",play,0.6,0 -203631881,"Dota 2",purchase,1.0,0 -203631881,"Dota 2",play,54.0,0 -113411607,"Team Fortress 2",purchase,1.0,0 -113411607,"Team Fortress 2",play,11.0,0 -251884888,"Dota 2",purchase,1.0,0 -251884888,"Dota 2",play,2.9,0 -198286263,"Dota 2",purchase,1.0,0 -198286263,"Dota 2",play,5.9,0 -178236087,"Dota 2",purchase,1.0,0 -178236087,"Dota 2",play,0.8,0 -279619836,"Dirty Bomb",purchase,1.0,0 -196724692,"Team Fortress 2",purchase,1.0,0 -196724692,"Team Fortress 2",play,3.0,0 -6216773,"Counter-Strike",purchase,1.0,0 -6216773,"Counter-Strike Condition Zero",purchase,1.0,0 -6216773,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -253502799,"Dota 2",purchase,1.0,0 -253502799,"Dota 2",play,0.7,0 -165755355,"Sid Meier's Civilization V",purchase,1.0,0 -165755355,"Sid Meier's Civilization V",play,130.0,0 -165755355,"Counter-Strike Global Offensive",purchase,1.0,0 -165755355,"Counter-Strike Global Offensive",play,126.0,0 -165755355,"Team Fortress 2",purchase,1.0,0 -165755355,"Team Fortress 2",play,113.0,0 -165755355,"The Elder Scrolls V Skyrim",purchase,1.0,0 -165755355,"The Elder Scrolls V Skyrim",play,93.0,0 -165755355,"Terraria",purchase,1.0,0 -165755355,"Terraria",play,78.0,0 -165755355,"Garry's Mod",purchase,1.0,0 -165755355,"Garry's Mod",play,68.0,0 -165755355,"Dota 2",purchase,1.0,0 -165755355,"Dota 2",play,62.0,0 -165755355,"DC Universe Online",purchase,1.0,0 -165755355,"DC Universe Online",play,42.0,0 -165755355,"La Tale",purchase,1.0,0 -165755355,"La Tale",play,18.0,0 -165755355,"Tropico 4",purchase,1.0,0 -165755355,"Tropico 4",play,11.3,0 -165755355,"Mount & Blade Warband",purchase,1.0,0 -165755355,"Mount & Blade Warband",play,10.8,0 -165755355,"Insurgency",purchase,1.0,0 -165755355,"Insurgency",play,10.8,0 -165755355,"Awesomenauts",purchase,1.0,0 -165755355,"Awesomenauts",play,10.7,0 -165755355,"Nimble Writer",purchase,1.0,0 -165755355,"Nimble Writer",play,10.6,0 -165755355,"Sid Meier's Civilization IV",purchase,1.0,0 -165755355,"Sid Meier's Civilization IV",play,8.9,0 -165755355,"7 Days to Die",purchase,1.0,0 -165755355,"7 Days to Die",play,8.6,0 -165755355,"Fallout 3",purchase,1.0,0 -165755355,"Fallout 3",play,8.0,0 -165755355,"This War of Mine",purchase,1.0,0 -165755355,"This War of Mine",play,7.8,0 -165755355,"Half-Life 2",purchase,1.0,0 -165755355,"Half-Life 2",play,6.2,0 -165755355,"Rome Total War",purchase,1.0,0 -165755355,"Rome Total War",play,5.9,0 -165755355,"Rocksmith 2014",purchase,1.0,0 -165755355,"Rocksmith 2014",play,5.9,0 -165755355,"TERA",purchase,1.0,0 -165755355,"TERA",play,5.6,0 -165755355,"Marvel Heroes 2015",purchase,1.0,0 -165755355,"Marvel Heroes 2015",play,4.7,0 -165755355,"Don't Starve Together Beta",purchase,1.0,0 -165755355,"Don't Starve Together Beta",play,4.5,0 -165755355,"Path of Exile",purchase,1.0,0 -165755355,"Path of Exile",play,4.0,0 -165755355,"War Thunder",purchase,1.0,0 -165755355,"War Thunder",play,4.0,0 -165755355,"Ultra Street Fighter IV",purchase,1.0,0 -165755355,"Ultra Street Fighter IV",play,3.5,0 -165755355,"Orcs Must Die! 2",purchase,1.0,0 -165755355,"Orcs Must Die! 2",play,3.5,0 -165755355,"PlanetSide 2",purchase,1.0,0 -165755355,"PlanetSide 2",play,3.5,0 -165755355,"MapleStory",purchase,1.0,0 -165755355,"MapleStory",play,3.4,0 -165755355,"PAYDAY The Heist",purchase,1.0,0 -165755355,"PAYDAY The Heist",play,3.0,0 -165755355,"The Stomping Land",purchase,1.0,0 -165755355,"The Stomping Land",play,3.0,0 -165755355,"Left 4 Dead",purchase,1.0,0 -165755355,"Left 4 Dead",play,2.8,0 -165755355,"Goat Simulator",purchase,1.0,0 -165755355,"Goat Simulator",play,2.5,0 -165755355,"Mabinogi",purchase,1.0,0 -165755355,"Mabinogi",play,2.2,0 -165755355,"Portal 2",purchase,1.0,0 -165755355,"Portal 2",play,1.7,0 -165755355,"Don't Starve",purchase,1.0,0 -165755355,"Don't Starve",play,1.6,0 -165755355,"Empire Total War",purchase,1.0,0 -165755355,"Empire Total War",play,1.6,0 -165755355,"Guns of Icarus Online",purchase,1.0,0 -165755355,"Guns of Icarus Online",play,1.2,0 -165755355,"Unturned",purchase,1.0,0 -165755355,"Unturned",play,1.1,0 -165755355,"Trove",purchase,1.0,0 -165755355,"Trove",play,1.1,0 -165755355,"Construct 2 Free",purchase,1.0,0 -165755355,"Construct 2 Free",play,0.8,0 -165755355,"Arma 2",purchase,1.0,0 -165755355,"Arma 2",play,0.7,0 -165755355,"Robocraft",purchase,1.0,0 -165755355,"Robocraft",play,0.7,0 -165755355,"Heroes & Generals",purchase,1.0,0 -165755355,"Heroes & Generals",play,0.6,0 -165755355,"Space Engineers",purchase,1.0,0 -165755355,"Space Engineers",play,0.6,0 -165755355,"Source Filmmaker",purchase,1.0,0 -165755355,"Source Filmmaker",play,0.5,0 -165755355,"RIFT",purchase,1.0,0 -165755355,"RIFT",play,0.5,0 -165755355,"APB Reloaded",purchase,1.0,0 -165755355,"APB Reloaded",play,0.5,0 -165755355,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -165755355,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,0.3,0 -165755355,"Card Hunter",purchase,1.0,0 -165755355,"Card Hunter",play,0.2,0 -165755355,"H1Z1",purchase,1.0,0 -165755355,"H1Z1",play,0.2,0 -165755355,"Strife",purchase,1.0,0 -165755355,"Strife",play,0.2,0 -165755355,"Left 4 Dead 2",purchase,1.0,0 -165755355,"Left 4 Dead 2",play,0.2,0 -165755355,"Moonbase Alpha",purchase,1.0,0 -165755355,"SMITE",purchase,1.0,0 -165755355,"Blender 2.76b",purchase,1.0,0 -165755355,"PAYDAY 2",purchase,1.0,0 -165755355,"Super Meat Boy",purchase,1.0,0 -165755355,"Arma 2 DayZ Mod",purchase,1.0,0 -165755355,"Emily is Away",purchase,1.0,0 -165755355,"AdVenture Capitalist",purchase,1.0,0 -165755355,"Commandos 2 Men of Courage",purchase,1.0,0 -165755355,"Darksiders",purchase,1.0,0 -165755355,"Dungeon Defenders",purchase,1.0,0 -165755355,"Fallen Earth",purchase,1.0,0 -165755355,"H1Z1 Test Server",purchase,1.0,0 -165755355,"Half-Life 2 Lost Coast",purchase,1.0,0 -165755355,"Portal",purchase,1.0,0 -165755355,"Rome Total War - Alexander",purchase,1.0,0 -165755355,"Sanctum 2",purchase,1.0,0 -165755355,"Sid Meier's Civilization IV",purchase,1.0,0 -165755355,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -165755355,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -165755355,"Star Trek Online",purchase,1.0,0 -165755355,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -165755355,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -165755355,"This War of Mine - War Child Charity DLC",purchase,1.0,0 -165755355,"Warface",purchase,1.0,0 -96030847,"Saints Row The Third",purchase,1.0,0 -96030847,"Saints Row The Third",play,33.0,0 -96030847,"Empire Total War",purchase,1.0,0 -96030847,"Empire Total War",play,11.0,0 -150370754,"Dota 2",purchase,1.0,0 -150370754,"Dota 2",play,5.5,0 -125371499,"Serious Sam HD The Second Encounter",purchase,1.0,0 -125371499,"Serious Sam HD The Second Encounter",play,6.3,0 -261281192,"Dota 2",purchase,1.0,0 -261281192,"Dota 2",play,491.0,0 -261281192,"Clicker Heroes",purchase,1.0,0 -261281192,"Clicker Heroes",play,2.6,0 -261281192,"Realm of the Mad God",purchase,1.0,0 -261281192,"Royal Quest",purchase,1.0,0 -304908910,"Stronghold Crusader 2",purchase,1.0,0 -304908910,"Stronghold Crusader 2",play,9.3,0 -298242221,"Arma 3",purchase,1.0,0 -298242221,"Arma 3",play,11.8,0 -298242221,"MicroVolts Surge",purchase,1.0,0 -298242221,"MicroVolts Surge",play,0.2,0 -298242221,"Arma 3 Zeus",purchase,1.0,0 -95699780,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -95699780,"Call of Duty Modern Warfare 3 - Multiplayer",play,242.0,0 -95699780,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -95699780,"Call of Duty Black Ops II - Multiplayer",play,184.0,0 -95699780,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -95699780,"Call of Duty Black Ops II - Zombies",play,80.0,0 -95699780,"Portal 2",purchase,1.0,0 -95699780,"Portal 2",play,57.0,0 -95699780,"Assassin's Creed II",purchase,1.0,0 -95699780,"Assassin's Creed II",play,25.0,0 -95699780,"Call of Duty Modern Warfare 3",purchase,1.0,0 -95699780,"Call of Duty Modern Warfare 3",play,24.0,0 -95699780,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -95699780,"Just Cause 2 Multiplayer Mod",play,22.0,0 -95699780,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -95699780,"Call of Duty Ghosts - Multiplayer",play,16.3,0 -95699780,"Team Fortress 2",purchase,1.0,0 -95699780,"Team Fortress 2",play,14.5,0 -95699780,"Thief",purchase,1.0,0 -95699780,"Thief",play,14.0,0 -95699780,"Tomb Raider",purchase,1.0,0 -95699780,"Tomb Raider",play,13.4,0 -95699780,"Crysis Wars",purchase,1.0,0 -95699780,"Crysis Wars",play,12.2,0 -95699780,"Call of Duty Black Ops III",purchase,1.0,0 -95699780,"Call of Duty Black Ops III",play,12.0,0 -95699780,"Call of Duty Black Ops II",purchase,1.0,0 -95699780,"Call of Duty Black Ops II",play,10.3,0 -95699780,"Unturned",purchase,1.0,0 -95699780,"Unturned",play,9.6,0 -95699780,"Brtal Legend",purchase,1.0,0 -95699780,"Brtal Legend",play,8.9,0 -95699780,"Far Cry 3",purchase,1.0,0 -95699780,"Far Cry 3",play,8.6,0 -95699780,"Call of Duty Ghosts",purchase,1.0,0 -95699780,"Call of Duty Ghosts",play,8.0,0 -95699780,"Sniper Elite V2",purchase,1.0,0 -95699780,"Sniper Elite V2",play,6.4,0 -95699780,"Arma 3",purchase,1.0,0 -95699780,"Arma 3",play,5.4,0 -95699780,"Loadout",purchase,1.0,0 -95699780,"Loadout",play,4.8,0 -95699780,"TrackMania Stadium",purchase,1.0,0 -95699780,"TrackMania Stadium",play,4.4,0 -95699780,"Kerbal Space Program",purchase,1.0,0 -95699780,"Kerbal Space Program",play,4.2,0 -95699780,"Trials Evolution Gold Edition",purchase,1.0,0 -95699780,"Trials Evolution Gold Edition",play,4.1,0 -95699780,"The Talos Principle",purchase,1.0,0 -95699780,"The Talos Principle",play,3.9,0 -95699780,"Next Car Game Wreckfest",purchase,1.0,0 -95699780,"Next Car Game Wreckfest",play,3.6,0 -95699780,"Crysis Warhead",purchase,1.0,0 -95699780,"Crysis Warhead",play,3.5,0 -95699780,"Tom Clancy's H.A.W.X. 2",purchase,1.0,0 -95699780,"Tom Clancy's H.A.W.X. 2",play,3.0,0 -95699780,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -95699780,"Call of Duty Black Ops - Multiplayer",play,2.5,0 -95699780,"Counter-Strike Global Offensive",purchase,1.0,0 -95699780,"Counter-Strike Global Offensive",play,2.4,0 -95699780,"Tomb Raider Underworld",purchase,1.0,0 -95699780,"Tomb Raider Underworld",play,2.3,0 -95699780,"Metro 2033",purchase,1.0,0 -95699780,"Metro 2033",play,2.1,0 -95699780,"Just Cause 2",purchase,1.0,0 -95699780,"Just Cause 2",play,1.8,0 -95699780,"Garry's Mod",purchase,1.0,0 -95699780,"Garry's Mod",play,1.5,0 -95699780,"Deus Ex Human Revolution",purchase,1.0,0 -95699780,"Deus Ex Human Revolution",play,1.4,0 -95699780,"Nether",purchase,1.0,0 -95699780,"Nether",play,1.3,0 -95699780,"Call of Duty Black Ops",purchase,1.0,0 -95699780,"Call of Duty Black Ops",play,1.1,0 -95699780,"Borderlands 2",purchase,1.0,0 -95699780,"Borderlands 2",play,0.9,0 -95699780,"Trine 2",purchase,1.0,0 -95699780,"Trine 2",play,0.8,0 -95699780,"Spore",purchase,1.0,0 -95699780,"Spore",play,0.7,0 -95699780,"Insurgency",purchase,1.0,0 -95699780,"Insurgency",play,0.7,0 -95699780,"Dota 2",purchase,1.0,0 -95699780,"Dota 2",play,0.7,0 -95699780,"Left 4 Dead 2",purchase,1.0,0 -95699780,"Left 4 Dead 2",play,0.6,0 -95699780,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -95699780,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.5,0 -95699780,"Warface",purchase,1.0,0 -95699780,"Warface",play,0.5,0 -95699780,"Mirror's Edge",purchase,1.0,0 -95699780,"Mirror's Edge",play,0.4,0 -95699780,"DisplayFusion",purchase,1.0,0 -95699780,"DisplayFusion",play,0.4,0 -95699780,"Portal 2 - The Final Hours",purchase,1.0,0 -95699780,"Portal 2 - The Final Hours",play,0.4,0 -95699780,"Ace of Spades",purchase,1.0,0 -95699780,"Ace of Spades",play,0.3,0 -95699780,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -95699780,"Next Car Game Sneak Peek 2.0",play,0.2,0 -95699780,"Halo Spartan Assault",purchase,1.0,0 -95699780,"Halo Spartan Assault",play,0.2,0 -95699780,"DiRT 3",purchase,1.0,0 -95699780,"Arma 3 Helicopters",purchase,1.0,0 -95699780,"Arma 3 Karts",purchase,1.0,0 -95699780,"Arma 3 Marksmen",purchase,1.0,0 -95699780,"Arma 3 Zeus",purchase,1.0,0 -95699780,"Borderlands",purchase,1.0,0 -95699780,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -95699780,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -95699780,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -95699780,"Defy Gravity",purchase,1.0,0 -95699780,"DiRT 3 Complete Edition",purchase,1.0,0 -95699780,"Guns of Icarus Online",purchase,1.0,0 -95699780,"Habitat",purchase,1.0,0 -95699780,"Half-Life 2",purchase,1.0,0 -95699780,"Half-Life 2 Lost Coast",purchase,1.0,0 -95699780,"Nether - Believer",purchase,1.0,0 -95699780,"Nether Arena",purchase,1.0,0 -95699780,"Robocraft",purchase,1.0,0 -95699780,"Space Run",purchase,1.0,0 -95699780,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -95699780,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -216417218,"Dota 2",purchase,1.0,0 -216417218,"Dota 2",play,0.9,0 -167417654,"Fallout New Vegas",purchase,1.0,0 -167417654,"Fallout New Vegas",play,36.0,0 -167417654,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -167417654,"Fallout 3 - Game of the Year Edition",play,26.0,0 -167417654,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -167417654,"Dragon Age Origins - Ultimate Edition",play,1.5,0 -167417654,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -167417654,"Fallout New Vegas Dead Money",purchase,1.0,0 -167417654,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -204304907,"Dota 2",purchase,1.0,0 -204304907,"Dota 2",play,1.4,0 -294551734,"Counter-Strike Nexon Zombies",purchase,1.0,0 -294551734,"Counter-Strike Nexon Zombies",play,30.0,0 -168576745,"Team Fortress 2",purchase,1.0,0 -168576745,"Team Fortress 2",play,4.2,0 -173179969,"Dota 2",purchase,1.0,0 -173179969,"Dota 2",play,0.2,0 -300899222,"Dota 2",purchase,1.0,0 -300899222,"Dota 2",play,1.2,0 -165071607,"Dota 2",purchase,1.0,0 -165071607,"Dota 2",play,1.7,0 -145839555,"Team Fortress 2",purchase,1.0,0 -145839555,"Team Fortress 2",play,0.6,0 -138818276,"Dota 2",purchase,1.0,0 -138818276,"Dota 2",play,6.9,0 -43284145,"Napoleon Total War",purchase,1.0,0 -43284145,"Napoleon Total War",play,124.0,0 -43284145,"Total War ROME II - Emperor Edition",purchase,1.0,0 -43284145,"Total War ROME II - Emperor Edition",play,29.0,0 -43284145,"Mount & Blade Warband",purchase,1.0,0 -43284145,"Mount & Blade Warband",play,28.0,0 -43284145,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -43284145,"Rising Storm/Red Orchestra 2 Multiplayer",play,27.0,0 -43284145,"Tomb Raider",purchase,1.0,0 -43284145,"Tomb Raider",play,25.0,0 -43284145,"Left 4 Dead 2",purchase,1.0,0 -43284145,"Left 4 Dead 2",play,14.4,0 -43284145,"Sniper Elite 3",purchase,1.0,0 -43284145,"Sniper Elite 3",play,13.9,0 -43284145,"Empire Total War",purchase,1.0,0 -43284145,"Empire Total War",play,11.8,0 -43284145,"Thief",purchase,1.0,0 -43284145,"Thief",play,5.8,0 -43284145,"Kings of Kung Fu",purchase,1.0,0 -43284145,"Kings of Kung Fu",play,4.6,0 -43284145,"Arma 2 Free",purchase,1.0,0 -43284145,"Arma 2 Free",play,2.2,0 -43284145,"Team Fortress 2",purchase,1.0,0 -43284145,"Team Fortress 2",play,1.2,0 -43284145,"PlanetSide 2",purchase,1.0,0 -43284145,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -43284145,"Heroes & Generals",purchase,1.0,0 -43284145,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -46951849,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -46951849,"Rising Storm/Red Orchestra 2 Multiplayer",play,1657.0,0 -46951849,"Total War ROME II - Emperor Edition",purchase,1.0,0 -46951849,"Total War ROME II - Emperor Edition",play,797.0,0 -46951849,"Total War SHOGUN 2",purchase,1.0,0 -46951849,"Total War SHOGUN 2",play,268.0,0 -46951849,"Left 4 Dead 2",purchase,1.0,0 -46951849,"Left 4 Dead 2",play,233.0,0 -46951849,"Empire Total War",purchase,1.0,0 -46951849,"Empire Total War",play,160.0,0 -46951849,"Star Ruler",purchase,1.0,0 -46951849,"Star Ruler",play,154.0,0 -46951849,"Wargame European Escalation",purchase,1.0,0 -46951849,"Wargame European Escalation",play,135.0,0 -46951849,"Arma 2 Operation Arrowhead",purchase,1.0,0 -46951849,"Arma 2 Operation Arrowhead",play,130.0,0 -46951849,"Star Ruler 2",purchase,1.0,0 -46951849,"Star Ruler 2",play,97.0,0 -46951849,"Darkest Hour Europe '44-'45",purchase,1.0,0 -46951849,"Darkest Hour Europe '44-'45",play,89.0,0 -46951849,"Borderlands",purchase,1.0,0 -46951849,"Borderlands",play,43.0,0 -46951849,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -46951849,"Red Orchestra Ostfront 41-45",play,38.0,0 -46951849,"Napoleon Total War",purchase,1.0,0 -46951849,"Napoleon Total War",play,26.0,0 -46951849,"Day of Defeat",purchase,1.0,0 -46951849,"Day of Defeat",play,14.7,0 -46951849,"Portal",purchase,1.0,0 -46951849,"Portal",play,12.0,0 -46951849,"War Thunder",purchase,1.0,0 -46951849,"War Thunder",play,10.4,0 -46951849,"AI War Fleet Command",purchase,1.0,0 -46951849,"AI War Fleet Command",play,9.5,0 -46951849,"Heroes & Generals",purchase,1.0,0 -46951849,"Heroes & Generals",play,7.6,0 -46951849,"Total War Battles KINGDOM",purchase,1.0,0 -46951849,"Total War Battles KINGDOM",play,0.4,0 -46951849,"Warface",purchase,1.0,0 -46951849,"Warface",play,0.3,0 -46951849,"Soccer Manager 2015",purchase,1.0,0 -46951849,"Soccer Manager 2015",play,0.1,0 -46951849,"Galcon 2",purchase,1.0,0 -46951849,"Blender 2.76b",purchase,1.0,0 -46951849,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -46951849,"Mare Nostrum",purchase,1.0,0 -46951849,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -46951849,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -123148033,"Team Fortress 2",purchase,1.0,0 -123148033,"Team Fortress 2",play,9.1,0 -120589251,"Call of Duty Black Ops",purchase,1.0,0 -120589251,"Call of Duty Black Ops",play,10.0,0 -120589251,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -120589251,"Call of Duty Black Ops - Multiplayer",play,0.5,0 -120589251,"Burstfire",purchase,1.0,0 -120589251,"Commander Conquest of the Americas Gold",purchase,1.0,0 -120589251,"Pirates of Black Cove Gold",purchase,1.0,0 -171160183,"Unturned",purchase,1.0,0 -171160183,"Unturned",play,7.0,0 -171160183,"Team Fortress 2",purchase,1.0,0 -171160183,"Team Fortress 2",play,2.8,0 -171160183,"Sniper Elite V2",purchase,1.0,0 -171160183,"Sniper Elite V2",play,2.8,0 -171160183,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -171160183,"Rising Storm/Red Orchestra 2 Multiplayer",play,0.6,0 -171160183,"Defiance",purchase,1.0,0 -171160183,"Afterfall InSanity Extended Edition",purchase,1.0,0 -171160183,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -216608525,"Garry's Mod",purchase,1.0,0 -302573478,"Counter-Strike Global Offensive",purchase,1.0,0 -302573478,"Counter-Strike Global Offensive",play,28.0,0 -302573478,"Dota 2",purchase,1.0,0 -302573478,"Dota 2",play,0.3,0 -139832829,"Dota 2",purchase,1.0,0 -139832829,"Dota 2",play,882.0,0 -129478920,"Dota 2",purchase,1.0,0 -129478920,"Dota 2",play,1851.0,0 -129478920,"Dungeon Hearts",purchase,1.0,0 -72978546,"Dota 2",purchase,1.0,0 -72978546,"Dota 2",play,2060.0,0 -72978546,"Counter-Strike Condition Zero",purchase,1.0,0 -72978546,"Counter-Strike Condition Zero",play,214.0,0 -72978546,"Left 4 Dead 2",purchase,1.0,0 -72978546,"Left 4 Dead 2",play,111.0,0 -72978546,"Clicker Heroes",purchase,1.0,0 -72978546,"Clicker Heroes",play,102.0,0 -72978546,"Unturned",purchase,1.0,0 -72978546,"Unturned",play,63.0,0 -72978546,"Counter-Strike Global Offensive",purchase,1.0,0 -72978546,"Counter-Strike Global Offensive",play,27.0,0 -72978546,"Path of Exile",purchase,1.0,0 -72978546,"Path of Exile",play,23.0,0 -72978546,"Creativerse",purchase,1.0,0 -72978546,"Creativerse",play,12.1,0 -72978546,"Garry's Mod",purchase,1.0,0 -72978546,"Garry's Mod",play,10.6,0 -72978546,"Age of Empires II HD Edition",purchase,1.0,0 -72978546,"Age of Empires II HD Edition",play,8.2,0 -72978546,"Sang-Froid - Tales of Werewolves",purchase,1.0,0 -72978546,"Sang-Froid - Tales of Werewolves",play,6.9,0 -72978546,"Counter-Strike",purchase,1.0,0 -72978546,"Counter-Strike",play,5.5,0 -72978546,"PAYDAY The Heist",purchase,1.0,0 -72978546,"PAYDAY The Heist",play,4.2,0 -72978546,"Team Fortress 2",purchase,1.0,0 -72978546,"Team Fortress 2",play,4.2,0 -72978546,"The Journey Down Chapter One",purchase,1.0,0 -72978546,"The Journey Down Chapter One",play,4.2,0 -72978546,"Serious Sam 3 BFE",purchase,1.0,0 -72978546,"Serious Sam 3 BFE",play,4.2,0 -72978546,"XCOM Enemy Unknown",purchase,1.0,0 -72978546,"XCOM Enemy Unknown",play,4.2,0 -72978546,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -72978546,"Rising Storm/Red Orchestra 2 Multiplayer",play,4.2,0 -72978546,"Tower Wars",purchase,1.0,0 -72978546,"Tower Wars",play,4.1,0 -72978546,"Warlock - Master of the Arcane",purchase,1.0,0 -72978546,"Warlock - Master of the Arcane",play,3.6,0 -72978546,"Portal 2",purchase,1.0,0 -72978546,"Portal 2",play,3.4,0 -72978546,"Orcs Must Die! 2",purchase,1.0,0 -72978546,"Orcs Must Die! 2",play,3.3,0 -72978546,"Sanctum 2",purchase,1.0,0 -72978546,"Sanctum 2",play,3.1,0 -72978546,"Trine 2",purchase,1.0,0 -72978546,"Trine 2",play,3.1,0 -72978546,"Grimm",purchase,1.0,0 -72978546,"Grimm",play,3.1,0 -72978546,"Nation Red",purchase,1.0,0 -72978546,"Nation Red",play,2.4,0 -72978546,"How to Survive",purchase,1.0,0 -72978546,"How to Survive",play,2.3,0 -72978546,"Orcs Must Die!",purchase,1.0,0 -72978546,"Orcs Must Die!",play,2.2,0 -72978546,"Terraria",purchase,1.0,0 -72978546,"Terraria",play,2.1,0 -72978546,"Canyon Capers",purchase,1.0,0 -72978546,"Canyon Capers",play,2.0,0 -72978546,"Trine",purchase,1.0,0 -72978546,"Trine",play,1.9,0 -72978546,"Brawlhalla",purchase,1.0,0 -72978546,"Brawlhalla",play,1.8,0 -72978546,"Realm of the Mad God",purchase,1.0,0 -72978546,"Realm of the Mad God",play,1.8,0 -72978546,"World of Goo",purchase,1.0,0 -72978546,"World of Goo",play,1.7,0 -72978546,"Magicka",purchase,1.0,0 -72978546,"Magicka",play,1.6,0 -72978546,"Natural Selection 2",purchase,1.0,0 -72978546,"Natural Selection 2",play,1.4,0 -72978546,"Day of Defeat Source",purchase,1.0,0 -72978546,"Day of Defeat Source",play,1.3,0 -72978546,"Cities in Motion 2",purchase,1.0,0 -72978546,"Cities in Motion 2",play,1.3,0 -72978546,"La Tale",purchase,1.0,0 -72978546,"La Tale",play,1.3,0 -72978546,"Loadout",purchase,1.0,0 -72978546,"Loadout",play,1.2,0 -72978546,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -72978546,"Nosferatu The Wrath of Malachi",play,1.0,0 -72978546,"Bastion",purchase,1.0,0 -72978546,"Bastion",play,1.0,0 -72978546,"Gun Monkeys",purchase,1.0,0 -72978546,"Gun Monkeys",play,0.9,0 -72978546,"Knights and Merchants",purchase,1.0,0 -72978546,"Knights and Merchants",play,0.8,0 -72978546,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -72978546,"Command and Conquer Red Alert 3 - Uprising",play,0.8,0 -72978546,"No More Room in Hell",purchase,1.0,0 -72978546,"No More Room in Hell",play,0.7,0 -72978546,"Sins of a Dark Age",purchase,1.0,0 -72978546,"Sins of a Dark Age",play,0.6,0 -72978546,"Quake Live",purchase,1.0,0 -72978546,"Quake Live",play,0.5,0 -72978546,"Infestation Survivor Stories",purchase,1.0,0 -72978546,"Infestation Survivor Stories",play,0.4,0 -72978546,"Heroes & Generals",purchase,1.0,0 -72978546,"Heroes & Generals",play,0.3,0 -72978546,"Portal",purchase,1.0,0 -72978546,"Portal",play,0.3,0 -72978546,"Nosgoth",purchase,1.0,0 -72978546,"Nosgoth",play,0.3,0 -72978546,"Dizzel",purchase,1.0,0 -72978546,"Dizzel",play,0.3,0 -72978546,"Divine Souls",purchase,1.0,0 -72978546,"Divine Souls",play,0.3,0 -72978546,"theHunter",purchase,1.0,0 -72978546,"theHunter",play,0.2,0 -72978546,"Borderlands",purchase,1.0,0 -72978546,"Borderlands",play,0.2,0 -72978546,"Battle Islands",purchase,1.0,0 -72978546,"Battle Islands",play,0.2,0 -72978546,"8BitBoy",purchase,1.0,0 -72978546,"8BitBoy",play,0.2,0 -72978546,"Space Hack",purchase,1.0,0 -72978546,"Space Hack",play,0.2,0 -72978546,"Cubic Castles",purchase,1.0,0 -72978546,"Cubic Castles",play,0.1,0 -72978546,"Happy Wars",purchase,1.0,0 -72978546,"Happy Wars",play,0.1,0 -72978546,"Adventures of Shuggy",purchase,1.0,0 -72978546,"Adventures of Shuggy",play,0.1,0 -72978546,"Sacred 2 Gold",purchase,1.0,0 -72978546,"Battle Nations",purchase,1.0,0 -72978546,"Zombies Monsters Robots",purchase,1.0,0 -72978546,"Age of Empires II HD The Forgotten",purchase,1.0,0 -72978546,"Burgers",purchase,1.0,0 -72978546,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -72978546,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -72978546,"Crash Time II",purchase,1.0,0 -72978546,"Crysis 2 Maximum Edition",purchase,1.0,0 -72978546,"Dead Island Epidemic",purchase,1.0,0 -72978546,"Dead Space",purchase,1.0,0 -72978546,"Dungeons & Dragons Online",purchase,1.0,0 -72978546,"Earth 2150 Lost Souls",purchase,1.0,0 -72978546,"East India Company Gold",purchase,1.0,0 -72978546,"Enclave",purchase,1.0,0 -72978546,"Fistful of Frags",purchase,1.0,0 -72978546,"Glacier 3 The Meltdown",purchase,1.0,0 -72978546,"Kung Fu Strike The Warrior's Rise",purchase,1.0,0 -72978546,"Magicka Vietnam",purchase,1.0,0 -72978546,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -72978546,"Medal of Honor(TM) Single Player",purchase,1.0,0 -72978546,"Medal of Honor Pre-Order",purchase,1.0,0 -72978546,"Metro 2033",purchase,1.0,0 -72978546,"Mirror's Edge",purchase,1.0,0 -72978546,"My Lands",purchase,1.0,0 -72978546,"Pid ",purchase,1.0,0 -72978546,"Pirates of Black Cove Gold",purchase,1.0,0 -72978546,"Realms of the Haunting",purchase,1.0,0 -72978546,"Receiver",purchase,1.0,0 -72978546,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -72978546,"Royal Quest",purchase,1.0,0 -72978546,"Sanctum",purchase,1.0,0 -72978546,"SUPER DISTRO",purchase,1.0,0 -72978546,"The Expendabros",purchase,1.0,0 -72978546,"The Lord of the Rings Online",purchase,1.0,0 -72978546,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -72978546,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -72978546,"Vertical Drop Heroes HD",purchase,1.0,0 -72978546,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -72978546,"Weird Worlds Return to Infinite Space",purchase,1.0,0 -126402145,"Dota 2",purchase,1.0,0 -126402145,"Dota 2",play,16.5,0 -201728484,"Team Fortress 2",purchase,1.0,0 -201728484,"Team Fortress 2",play,8.7,0 -111003194,"Team Fortress 2",purchase,1.0,0 -111003194,"Team Fortress 2",play,2.3,0 -298452474,"Dota 2",purchase,1.0,0 -298452474,"Dota 2",play,5.3,0 -96696864,"The Elder Scrolls V Skyrim",purchase,1.0,0 -96696864,"The Elder Scrolls V Skyrim",play,1042.0,0 -96696864,"Dishonored",purchase,1.0,0 -96696864,"Dishonored",play,19.4,0 -96696864,"Tomb Raider",purchase,1.0,0 -96696864,"Tomb Raider",play,16.5,0 -96696864,"The Darkness II",purchase,1.0,0 -96696864,"The Darkness II",play,8.8,0 -96696864,"ArcaniA",purchase,1.0,0 -96696864,"ArcaniA",play,8.8,0 -96696864,"Half-Life 2 Episode Two",purchase,1.0,0 -96696864,"Half-Life 2 Episode Two",play,6.5,0 -96696864,"Half-Life 2 Episode One",purchase,1.0,0 -96696864,"Half-Life 2 Episode One",play,5.8,0 -96696864,"Fallout New Vegas",purchase,1.0,0 -96696864,"Fallout New Vegas",play,0.8,0 -96696864,"Half-Life 2 Deathmatch",purchase,1.0,0 -96696864,"Half-Life 2 Deathmatch",play,0.1,0 -96696864,"ArcaniA Fall of Setarrif",purchase,1.0,0 -96696864,"Half-Life 2 Lost Coast",purchase,1.0,0 -244156828,"Rust",purchase,1.0,0 -14416572,"Counter-Strike",purchase,1.0,0 -14416572,"Counter-Strike Condition Zero",purchase,1.0,0 -14416572,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -300928439,"Ragnarok Online 2",purchase,1.0,0 -300928439,"Ragnarok Online 2",play,3.0,0 -300928439,"Pink Heaven",purchase,1.0,0 -300928439,"Pink Heaven",play,0.5,0 -212949727,"Dota 2",purchase,1.0,0 -212949727,"Dota 2",play,107.0,0 -154208464,"Dota 2",purchase,1.0,0 -154208464,"Dota 2",play,1050.0,0 -154208464,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -154208464,"Tom Clancy's Ghost Recon Phantoms - NA",play,4.6,0 -154208464,"March of War",purchase,1.0,0 -154208464,"March of War",play,0.4,0 -54402999,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -54402999,"Warhammer 40,000 Dawn of War II",play,30.0,0 -54402999,"Left 4 Dead 2",purchase,1.0,0 -54402999,"Left 4 Dead 2",play,13.8,0 -54402999,"Order of War",purchase,1.0,0 -54402999,"Order of War",play,0.6,0 -197166094,"Football Manager 2014",purchase,1.0,0 -197166094,"Football Manager 2014",play,95.0,0 -261497568,"Quake Live",purchase,1.0,0 -238891457,"Ghost Master",purchase,1.0,0 -238891457,"Ghost Master",play,7.4,0 -251408008,"Aura Kingdom",purchase,1.0,0 -209161162,"Dota 2",purchase,1.0,0 -209161162,"Dota 2",play,1.3,0 -209161162,"ROSE Online",purchase,1.0,0 -230913442,"Team Fortress 2",purchase,1.0,0 -230913442,"Team Fortress 2",play,1.6,0 -230913442,"Survarium",purchase,1.0,0 -181716896,"Dota 2",purchase,1.0,0 -181716896,"Dota 2",play,267.0,0 -181716896,"FreeStyle2 Street Basketball",purchase,1.0,0 -181716896,"FreeStyle2 Street Basketball",play,11.7,0 -181716896,"Archeblade",purchase,1.0,0 -181716896,"Aura Kingdom",purchase,1.0,0 -181716896,"Fiesta Online NA",purchase,1.0,0 -181716896,"GunZ 2 The Second Duel",purchase,1.0,0 -181716896,"Heroes & Generals",purchase,1.0,0 -181716896,"No More Room in Hell",purchase,1.0,0 -181716896,"Odyssey Reborn",purchase,1.0,0 -181716896,"Tales Runner",purchase,1.0,0 -181716896,"TERA",purchase,1.0,0 -181716896,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -181716896,"Unturned",purchase,1.0,0 -181716896,"War Thunder",purchase,1.0,0 -69467127,"Mafia II",purchase,1.0,0 -69467127,"Mafia II",play,12.2,0 -62486194,"Empire Total War",purchase,1.0,0 -62486194,"Empire Total War",play,155.0,0 -62486194,"Total War SHOGUN 2",purchase,1.0,0 -62486194,"Total War SHOGUN 2",play,114.0,0 -62486194,"Medieval II Total War",purchase,1.0,0 -62486194,"Medieval II Total War",play,50.0,0 -62486194,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -62486194,"Call of Duty 4 Modern Warfare",play,20.0,0 -62486194,"Medieval II Total War Kingdoms",purchase,1.0,0 -192182310,"Dota 2",purchase,1.0,0 -192182310,"Dota 2",play,0.9,0 -5860071,"H1Z1",purchase,1.0,0 -5860071,"H1Z1",play,75.0,0 -5860071,"Battlefield Bad Company 2",purchase,1.0,0 -5860071,"Battlefield Bad Company 2",play,24.0,0 -5860071,"South Park The Stick of Truth",purchase,1.0,0 -5860071,"South Park The Stick of Truth",play,10.7,0 -5860071,"Counter-Strike Source",purchase,1.0,0 -5860071,"Counter-Strike Source",play,8.2,0 -5860071,"Counter-Strike",purchase,1.0,0 -5860071,"Counter-Strike",play,4.9,0 -5860071,"Dota 2",purchase,1.0,0 -5860071,"Dota 2",play,3.2,0 -5860071,"Marvel Heroes 2015",purchase,1.0,0 -5860071,"Marvel Heroes 2015",play,0.5,0 -5860071,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -5860071,"Counter-Strike Condition Zero",purchase,1.0,0 -5860071,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -5860071,"Day of Defeat Source",purchase,1.0,0 -5860071,"Grand Theft Auto V",purchase,1.0,0 -5860071,"H1Z1 Test Server",purchase,1.0,0 -5860071,"Half-Life 2 Deathmatch",purchase,1.0,0 -5860071,"Half-Life 2 Lost Coast",purchase,1.0,0 -283212746,"Godus",purchase,1.0,0 -283212746,"Godus",play,3.0,0 -227020953,"Pro Evolution Soccer 2015",purchase,1.0,0 -227020953,"Pro Evolution Soccer 2015",play,1.5,0 -209052347,"Farming Simulator 2013",purchase,1.0,0 -209052347,"Farming Simulator 2013",play,3.7,0 -36910614,"Counter-Strike",purchase,1.0,0 -36910614,"Counter-Strike",play,4.7,0 -36910614,"Counter-Strike Condition Zero",purchase,1.0,0 -36910614,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -127426141,"Test Drive Unlimited 2",purchase,1.0,0 -127426141,"Test Drive Unlimited 2",play,136.0,0 -127426141,"Grand Theft Auto 2",purchase,1.0,0 -127426141,"Grand Theft Auto 2",play,14.6,0 -127426141,"Hitman Absolution",purchase,1.0,0 -127426141,"Hitman Absolution",play,12.6,0 -127426141,"The Mighty Quest For Epic Loot",purchase,1.0,0 -127426141,"The Mighty Quest For Epic Loot",play,2.0,0 -127426141,"Grand Theft Auto III",purchase,1.0,0 -127426141,"Grand Theft Auto III",play,1.7,0 -127426141,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -127426141,"Tomb Raider (VI) The Angel of Darkness",play,1.0,0 -127426141,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -127426141,"Tomb Raider III Adventures of Lara Croft",play,0.8,0 -127426141,"Grand Theft Auto Vice City",purchase,1.0,0 -127426141,"Grand Theft Auto Vice City",play,0.7,0 -127426141,"Grand Theft Auto",purchase,1.0,0 -127426141,"Grand Theft Auto",play,0.6,0 -127426141,"Hitman Codename 47",purchase,1.0,0 -127426141,"Hitman Codename 47",play,0.4,0 -127426141,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -127426141,"Grand Theft Auto San Andreas",purchase,1.0,0 -127426141,"Grand Theft Auto San Andreas",purchase,1.0,0 -127426141,"Grand Theft Auto Vice City",purchase,1.0,0 -127426141,"Grand Theft Auto III",purchase,1.0,0 -127426141,"Grand Theft Auto IV",purchase,1.0,0 -127426141,"Hitman 2 Silent Assassin",purchase,1.0,0 -127426141,"Hitman Blood Money",purchase,1.0,0 -127426141,"Hitman Sniper Challenge",purchase,1.0,0 -127426141,"Tomb Raider",purchase,1.0,0 -127426141,"Tomb Raider Anniversary",purchase,1.0,0 -127426141,"Tomb Raider Chronicles",purchase,1.0,0 -127426141,"Tomb Raider Legend",purchase,1.0,0 -127426141,"Tomb Raider The Last Revelation",purchase,1.0,0 -127426141,"Tomb Raider Underworld",purchase,1.0,0 -127426141,"Tomb Raider I",purchase,1.0,0 -127426141,"Tomb Raider II",purchase,1.0,0 -202376797,"Majesty 2 Collection",purchase,1.0,0 -202376797,"Majesty 2 Collection",play,29.0,0 -202376797,"Majesty Gold Edition",purchase,1.0,0 -202376797,"Majesty Gold Edition",play,16.1,0 -202376797,"Kingdom Rush",purchase,1.0,0 -202376797,"Kingdom Rush",play,12.6,0 -202376797,"Majesty Gold HD",purchase,1.0,0 -81901544,"Portal 2",purchase,1.0,0 -81901544,"Portal 2",play,31.0,0 -81901544,"Team Fortress 2",purchase,1.0,0 -81901544,"Team Fortress 2",play,2.9,0 -92103372,"Dota 2",purchase,1.0,0 -92103372,"Dota 2",play,1060.0,0 -92103372,"Call of Duty Modern Warfare 3",purchase,1.0,0 -92103372,"Call of Duty Modern Warfare 3",play,9.9,0 -92103372,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -170775754,"Dota 2",purchase,1.0,0 -170775754,"Dota 2",play,0.8,0 -24841093,"Football Manager 2014",purchase,1.0,0 -24841093,"Football Manager 2014",play,43.0,0 -24841093,"Killing Floor",purchase,1.0,0 -24841093,"Killing Floor",play,38.0,0 -24841093,"Counter-Strike Source",purchase,1.0,0 -24841093,"Counter-Strike Source",play,25.0,0 -24841093,"Zombie Panic Source",purchase,1.0,0 -24841093,"Zombie Panic Source",play,7.2,0 -24841093,"Medieval II Total War",purchase,1.0,0 -24841093,"Medieval II Total War",play,7.2,0 -24841093,"Left 4 Dead",purchase,1.0,0 -24841093,"Left 4 Dead",play,6.2,0 -24841093,"Team Fortress 2",purchase,1.0,0 -24841093,"Team Fortress 2",play,3.8,0 -24841093,"Synergy",purchase,1.0,0 -24841093,"Synergy",play,2.2,0 -24841093,"Unturned",purchase,1.0,0 -24841093,"Unturned",play,1.4,0 -24841093,"Mount & Blade Warband",purchase,1.0,0 -24841093,"Mount & Blade Warband",play,0.9,0 -24841093,"Path of Exile",purchase,1.0,0 -24841093,"Path of Exile",play,0.3,0 -24841093,"Heroes & Generals",purchase,1.0,0 -24841093,"Heroes & Generals",play,0.2,0 -24841093,"Medieval II Total War Kingdoms",purchase,1.0,0 -24841093,"Medieval II Total War Kingdoms",play,0.2,0 -24841093,"Half-Life 2",purchase,1.0,0 -24841093,"Half-Life 2 Deathmatch",purchase,1.0,0 -24841093,"Half-Life 2 Lost Coast",purchase,1.0,0 -24841093,"Half-Life Source",purchase,1.0,0 -24841093,"Half-Life Deathmatch Source",purchase,1.0,0 -24841093,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -184797043,"Dota 2",purchase,1.0,0 -184797043,"Dota 2",play,32.0,0 -154174570,"Dota 2",purchase,1.0,0 -154174570,"Dota 2",play,0.7,0 -173299790,"LEGO The Lord of the Rings",purchase,1.0,0 -173299790,"LEGO The Lord of the Rings",play,2.7,0 -27168078,"Counter-Strike Condition Zero",purchase,1.0,0 -27168078,"Counter-Strike Condition Zero",play,6.3,0 -27168078,"Counter-Strike",purchase,1.0,0 -27168078,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -27168078,"Day of Defeat",purchase,1.0,0 -27168078,"Deathmatch Classic",purchase,1.0,0 -27168078,"Ricochet",purchase,1.0,0 -137846274,"Company of Heroes",purchase,1.0,0 -137846274,"Company of Heroes",play,17.7,0 -137846274,"DayZ",purchase,1.0,0 -137846274,"DayZ",play,12.6,0 -137846274,"Sid Meier's Civilization V",purchase,1.0,0 -137846274,"Sid Meier's Civilization V",play,12.1,0 -137846274,"The Sims(TM) 3",purchase,1.0,0 -137846274,"The Sims(TM) 3",play,5.6,0 -137846274,"Insurgency",purchase,1.0,0 -137846274,"Insurgency",play,3.5,0 -137846274,"Arma 2 DayZ Mod",purchase,1.0,0 -137846274,"Arma 2 DayZ Mod",play,1.3,0 -137846274,"7 Days to Die",purchase,1.0,0 -137846274,"7 Days to Die",play,0.5,0 -137846274,"America's Army 3",purchase,1.0,0 -137846274,"America's Army 3",play,0.2,0 -137846274,"Arma 2",purchase,1.0,0 -137846274,"Company of Heroes (New Steam Version)",purchase,1.0,0 -137846274,"Arma 2 Operation Arrowhead",purchase,1.0,0 -137846274,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -235587689,"Team Fortress 2",purchase,1.0,0 -235587689,"Team Fortress 2",play,0.2,0 -235587689,"CrimeCraft GangWars",purchase,1.0,0 -235587689,"Spiral Knights",purchase,1.0,0 -259875529,"Unturned",purchase,1.0,0 -129117376,"Warframe",purchase,1.0,0 -129117376,"Warframe",play,259.0,0 -129117376,"Team Fortress 2",purchase,1.0,0 -129117376,"Team Fortress 2",play,175.0,0 -129117376,"Elite Dangerous",purchase,1.0,0 -129117376,"Elite Dangerous",play,169.0,0 -129117376,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -129117376,"METAL GEAR SOLID V THE PHANTOM PAIN",play,112.0,0 -129117376,"PAYDAY 2",purchase,1.0,0 -129117376,"PAYDAY 2",play,104.0,0 -129117376,"Garry's Mod",purchase,1.0,0 -129117376,"Garry's Mod",play,87.0,0 -129117376,"Insurgency",purchase,1.0,0 -129117376,"Insurgency",play,48.0,0 -129117376,"Risk of Rain",purchase,1.0,0 -129117376,"Risk of Rain",play,46.0,0 -129117376,"Fallout 4",purchase,1.0,0 -129117376,"Fallout 4",play,43.0,0 -129117376,"Nosgoth",purchase,1.0,0 -129117376,"Nosgoth",play,33.0,0 -129117376,"Arma 3",purchase,1.0,0 -129117376,"Arma 3",play,23.0,0 -129117376,"Counter-Strike Global Offensive",purchase,1.0,0 -129117376,"Counter-Strike Global Offensive",play,18.7,0 -129117376,"Chivalry Medieval Warfare",purchase,1.0,0 -129117376,"Chivalry Medieval Warfare",play,17.9,0 -129117376,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -129117376,"Just Cause 2 Multiplayer Mod",play,17.1,0 -129117376,"Starbound",purchase,1.0,0 -129117376,"Starbound",play,14.4,0 -129117376,"Space Engineers",purchase,1.0,0 -129117376,"Space Engineers",play,12.2,0 -129117376,"Blacklight Retribution",purchase,1.0,0 -129117376,"Blacklight Retribution",play,12.0,0 -129117376,"Awesomenauts",purchase,1.0,0 -129117376,"Awesomenauts",play,11.2,0 -129117376,"Hotline Miami",purchase,1.0,0 -129117376,"Hotline Miami",play,10.9,0 -129117376,"Killing Floor 2",purchase,1.0,0 -129117376,"Killing Floor 2",play,9.5,0 -129117376,"FTL Faster Than Light",purchase,1.0,0 -129117376,"FTL Faster Than Light",play,9.5,0 -129117376,"HAWKEN",purchase,1.0,0 -129117376,"HAWKEN",play,9.2,0 -129117376,"Tribes Ascend",purchase,1.0,0 -129117376,"Tribes Ascend",play,8.9,0 -129117376,"Star Wars - Battlefront II",purchase,1.0,0 -129117376,"Star Wars - Battlefront II",play,8.6,0 -129117376,"Counter-Strike Source",purchase,1.0,0 -129117376,"Counter-Strike Source",play,8.2,0 -129117376,"Guncraft",purchase,1.0,0 -129117376,"Guncraft",play,8.2,0 -129117376,"They Bleed Pixels",purchase,1.0,0 -129117376,"They Bleed Pixels",play,8.0,0 -129117376,"Hotline Miami 2 Wrong Number",purchase,1.0,0 -129117376,"Hotline Miami 2 Wrong Number",play,7.6,0 -129117376,"Minimum",purchase,1.0,0 -129117376,"Minimum",play,7.1,0 -129117376,"Fistful of Frags",purchase,1.0,0 -129117376,"Fistful of Frags",play,5.9,0 -129117376,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -129117376,"Star Wars Jedi Knight Jedi Academy",play,5.4,0 -129117376,"Blade Symphony",purchase,1.0,0 -129117376,"Blade Symphony",play,4.8,0 -129117376,"Unturned",purchase,1.0,0 -129117376,"Unturned",play,4.7,0 -129117376,"Depth",purchase,1.0,0 -129117376,"Depth",play,4.6,0 -129117376,"Dust An Elysian Tail",purchase,1.0,0 -129117376,"Dust An Elysian Tail",play,4.4,0 -129117376,"Air Brawl",purchase,1.0,0 -129117376,"Air Brawl",play,4.4,0 -129117376,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -129117376,"METAL GEAR SOLID V GROUND ZEROES",play,4.3,0 -129117376,"Rogue Legacy",purchase,1.0,0 -129117376,"Rogue Legacy",play,4.2,0 -129117376,"Gunpoint",purchase,1.0,0 -129117376,"Gunpoint",play,3.8,0 -129117376,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -129117376,"A.V.A - Alliance of Valiant Arms",play,3.6,0 -129117376,"Just Cause 2",purchase,1.0,0 -129117376,"Just Cause 2",play,3.4,0 -129117376,"Dirty Bomb",purchase,1.0,0 -129117376,"Dirty Bomb",play,3.1,0 -129117376,"Jazzpunk",purchase,1.0,0 -129117376,"Jazzpunk",play,3.1,0 -129117376,"Dino D-Day",purchase,1.0,0 -129117376,"Dino D-Day",play,2.8,0 -129117376,"Defiance",purchase,1.0,0 -129117376,"Defiance",play,2.7,0 -129117376,"The Forest",purchase,1.0,0 -129117376,"The Forest",play,2.6,0 -129117376,"Spore",purchase,1.0,0 -129117376,"Spore",play,2.4,0 -129117376,"Bloodline Champions",purchase,1.0,0 -129117376,"Bloodline Champions",play,2.3,0 -129117376,"Spiral Knights",purchase,1.0,0 -129117376,"Spiral Knights",play,2.2,0 -129117376,"Besiege",purchase,1.0,0 -129117376,"Besiege",play,2.1,0 -129117376,"Murder Miners",purchase,1.0,0 -129117376,"Murder Miners",play,2.1,0 -129117376,"APB Reloaded",purchase,1.0,0 -129117376,"APB Reloaded",play,2.1,0 -129117376,"Terraria",purchase,1.0,0 -129117376,"Terraria",play,2.1,0 -129117376,"Fallout New Vegas",purchase,1.0,0 -129117376,"Fallout New Vegas",play,2.1,0 -129117376,"Loadout",purchase,1.0,0 -129117376,"Loadout",play,1.9,0 -129117376,"PlanetSide 2",purchase,1.0,0 -129117376,"PlanetSide 2",play,1.8,0 -129117376,"Tactical Intervention",purchase,1.0,0 -129117376,"Tactical Intervention",play,1.8,0 -129117376,"Dungeon Defenders",purchase,1.0,0 -129117376,"Dungeon Defenders",play,1.8,0 -129117376,"WAKFU",purchase,1.0,0 -129117376,"WAKFU",play,1.7,0 -129117376,"ROCKETSROCKETSROCKETS",purchase,1.0,0 -129117376,"ROCKETSROCKETSROCKETS",play,1.7,0 -129117376,"Realm of the Mad God",purchase,1.0,0 -129117376,"Realm of the Mad God",play,1.6,0 -129117376,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -129117376,"Deus Ex Human Revolution - Director's Cut",play,1.6,0 -129117376,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -129117376,"Tom Clancy's Splinter Cell Blacklist",play,1.5,0 -129117376,"America's Army 3",purchase,1.0,0 -129117376,"America's Army 3",play,1.4,0 -129117376,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -129117376,"Tom Clancy's Ghost Recon Phantoms - NA",play,1.3,0 -129117376,"Firefall",purchase,1.0,0 -129117376,"Firefall",play,1.3,0 -129117376,"To the Moon",purchase,1.0,0 -129117376,"To the Moon",play,1.3,0 -129117376,"The Stanley Parable",purchase,1.0,0 -129117376,"The Stanley Parable",play,1.1,0 -129117376,"Tower of Guns",purchase,1.0,0 -129117376,"Tower of Guns",play,1.1,0 -129117376,"Double Action Boogaloo",purchase,1.0,0 -129117376,"Double Action Boogaloo",play,1.1,0 -129117376,"Super Crate Box",purchase,1.0,0 -129117376,"Super Crate Box",play,1.1,0 -129117376,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -129117376,"Boring Man - Online Tactical Stickman Combat",play,1.0,0 -129117376,"The Novelist",purchase,1.0,0 -129117376,"The Novelist",play,0.9,0 -129117376,"Toribash",purchase,1.0,0 -129117376,"Toribash",play,0.9,0 -129117376,"Goat Simulator",purchase,1.0,0 -129117376,"Goat Simulator",play,0.8,0 -129117376,"Mark of the Ninja",purchase,1.0,0 -129117376,"Mark of the Ninja",play,0.8,0 -129117376,"Warface",purchase,1.0,0 -129117376,"Warface",play,0.8,0 -129117376,"Guns of Icarus Online",purchase,1.0,0 -129117376,"Guns of Icarus Online",play,0.8,0 -129117376,"Savant - Ascent",purchase,1.0,0 -129117376,"Savant - Ascent",play,0.7,0 -129117376,"Eldritch",purchase,1.0,0 -129117376,"Eldritch",play,0.7,0 -129117376,"DEFCON",purchase,1.0,0 -129117376,"DEFCON",play,0.6,0 -129117376,"8BitMMO",purchase,1.0,0 -129117376,"8BitMMO",play,0.6,0 -129117376,"Surgeon Simulator",purchase,1.0,0 -129117376,"Surgeon Simulator",play,0.6,0 -129117376,"Archeblade",purchase,1.0,0 -129117376,"Archeblade",play,0.6,0 -129117376,"WARMODE",purchase,1.0,0 -129117376,"WARMODE",play,0.5,0 -129117376,"Strike Suit Zero",purchase,1.0,0 -129117376,"Strike Suit Zero",play,0.5,0 -129117376,"Pirates, Vikings, & Knights II",purchase,1.0,0 -129117376,"Pirates, Vikings, & Knights II",play,0.5,0 -129117376,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -129117376,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.4,0 -129117376,"Source Filmmaker",purchase,1.0,0 -129117376,"Source Filmmaker",play,0.4,0 -129117376,"Narcissu 1st & 2nd",purchase,1.0,0 -129117376,"Narcissu 1st & 2nd",play,0.4,0 -129117376,"Insanely Twisted Shadow Planet",purchase,1.0,0 -129117376,"Insanely Twisted Shadow Planet",play,0.3,0 -129117376,"Shadowrun Returns",purchase,1.0,0 -129117376,"Shadowrun Returns",play,0.3,0 -129117376,"Rusty Hearts",purchase,1.0,0 -129117376,"Rusty Hearts",play,0.2,0 -129117376,"Reus",purchase,1.0,0 -129117376,"Reus",play,0.2,0 -129117376,"NEOTOKYO",purchase,1.0,0 -129117376,"NEOTOKYO",play,0.2,0 -129117376,"Heavy Bullets",purchase,1.0,0 -129117376,"Heavy Bullets",play,0.2,0 -129117376,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -129117376,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",play,0.2,0 -129117376,"Dethroned!",purchase,1.0,0 -129117376,"Dethroned!",play,0.1,0 -129117376,"Gear Up",purchase,1.0,0 -129117376,"Gear Up",play,0.1,0 -129117376,"War Thunder",purchase,1.0,0 -129117376,"War Thunder",play,0.1,0 -129117376,"Joe Danger 2 The Movie",purchase,1.0,0 -129117376,"Joe Danger 2 The Movie",play,0.1,0 -129117376,"OlliOlli",purchase,1.0,0 -129117376,"Aura Kingdom",purchase,1.0,0 -129117376,"Robocraft",purchase,1.0,0 -129117376,"Star Trek Online",purchase,1.0,0 -129117376,"Amnesia A Machine for Pigs",purchase,1.0,0 -129117376,"Arma 3 Zeus",purchase,1.0,0 -129117376,"BLOCKADE 3D",purchase,1.0,0 -129117376,"Dizzel",purchase,1.0,0 -129117376,"Don't Starve Together Beta",purchase,1.0,0 -129117376,"Gotham City Impostors Free To Play",purchase,1.0,0 -129117376,"HOARD",purchase,1.0,0 -129117376,"La Tale",purchase,1.0,0 -129117376,"Moonbase Alpha",purchase,1.0,0 -129117376,"Papo & Yo",purchase,1.0,0 -129117376,"Patch testing for Chivalry",purchase,1.0,0 -129117376,"Spore Galactic Adventures",purchase,1.0,0 -129117376,"Starbound - Unstable",purchase,1.0,0 -129117376,"Star Conflict",purchase,1.0,0 -129117376,"Tales from Space Mutant Blobs Attack",purchase,1.0,0 -129117376,"Teleglitch Die More Edition",purchase,1.0,0 -129117376,"The Plan",purchase,1.0,0 -129117376,"Toki Tori 2+",purchase,1.0,0 -199727985,"Dota 2",purchase,1.0,0 -199727985,"Dota 2",play,5.4,0 -11080937,"Counter-Strike Source",purchase,1.0,0 -11080937,"Half-Life 2",purchase,1.0,0 -11080937,"Half-Life 2 Deathmatch",purchase,1.0,0 -11080937,"Half-Life 2 Lost Coast",purchase,1.0,0 -99659706,"Team Fortress 2",purchase,1.0,0 -99659706,"Team Fortress 2",play,0.4,0 -266972568,"Dota 2",purchase,1.0,0 -266972568,"Dota 2",play,1.3,0 -99640715,"Sid Meier's Civilization V",purchase,1.0,0 -99640715,"Sid Meier's Civilization V",play,487.0,0 -99640715,"Crusader Kings II",purchase,1.0,0 -99640715,"Crusader Kings II",play,2.3,0 -90866995,"Football Manager 2012",purchase,1.0,0 -90866995,"Football Manager 2012",play,27.0,0 -82029808,"Half-Life 2",purchase,1.0,0 -82029808,"Half-Life 2",play,18.8,0 -82029808,"Half-Life 2 Episode Two",purchase,1.0,0 -82029808,"Half-Life 2 Episode Two",play,4.8,0 -82029808,"Portal",purchase,1.0,0 -82029808,"Portal",play,1.9,0 -82029808,"Team Fortress 2",purchase,1.0,0 -82029808,"Team Fortress 2",play,1.8,0 -82029808,"Half-Life 2 Episode One",purchase,1.0,0 -82029808,"Half-Life 2 Episode One",play,1.7,0 -82029808,"Half-Life 2 Lost Coast",purchase,1.0,0 -82029808,"Half-Life 2 Lost Coast",play,0.9,0 -203712998,"Football Manager 2015",purchase,1.0,0 -203712998,"Football Manager 2015",play,582.0,0 -214004621,"Unturned",purchase,1.0,0 -123734483,"Terraria",purchase,1.0,0 -123734483,"Terraria",play,91.0,0 -123734483,"Warface",purchase,1.0,0 -123734483,"Warface",play,16.1,0 -123734483,"Garry's Mod",purchase,1.0,0 -123734483,"Garry's Mod",play,13.4,0 -123734483,"Magicka Wizard Wars",purchase,1.0,0 -123734483,"Magicka Wizard Wars",play,9.7,0 -123734483,"Counter-Strike Nexon Zombies",purchase,1.0,0 -123734483,"Counter-Strike Nexon Zombies",play,7.6,0 -123734483,"War Thunder",purchase,1.0,0 -123734483,"War Thunder",play,6.9,0 -123734483,"Robocraft",purchase,1.0,0 -123734483,"Robocraft",play,6.7,0 -123734483,"Dota 2",purchase,1.0,0 -123734483,"Dota 2",play,3.4,0 -123734483,"Super Monday Night Combat",purchase,1.0,0 -123734483,"Super Monday Night Combat",play,2.5,0 -123734483,"Left 4 Dead 2",purchase,1.0,0 -123734483,"Left 4 Dead 2",play,1.7,0 -123734483,"Loadout",purchase,1.0,0 -123734483,"Loadout",play,1.6,0 -123734483,"Team Fortress 2",purchase,1.0,0 -123734483,"Team Fortress 2",play,1.4,0 -123734483,"Unturned",purchase,1.0,0 -123734483,"Unturned",play,1.4,0 -123734483,"Warframe",purchase,1.0,0 -123734483,"Warframe",play,0.9,0 -123734483,"Brawlhalla",purchase,1.0,0 -123734483,"Brawlhalla",play,0.8,0 -123734483,"Xam",purchase,1.0,0 -123734483,"Xam",play,0.7,0 -123734483,"Nosgoth",purchase,1.0,0 -123734483,"Nosgoth",play,0.7,0 -123734483,"Tribes Ascend",purchase,1.0,0 -123734483,"Tribes Ascend",play,0.6,0 -123734483,"BLOCKADE 3D",purchase,1.0,0 -123734483,"BLOCKADE 3D",play,0.4,0 -123734483,"RaceRoom Racing Experience ",purchase,1.0,0 -123734483,"RaceRoom Racing Experience ",play,0.4,0 -123734483,"Alien Swarm",purchase,1.0,0 -123734483,"Alien Swarm",play,0.4,0 -123734483,"Dirty Bomb",purchase,1.0,0 -123734483,"Dirty Bomb",play,0.3,0 -123734483,"Firefall",purchase,1.0,0 -123734483,"Firefall",play,0.2,0 -123734483,"Devilian",purchase,1.0,0 -123734483,"Devilian",play,0.2,0 -123734483,"America's Army Proving Grounds",purchase,1.0,0 -123734483,"America's Army Proving Grounds",play,0.1,0 -123734483,"The Expendabros",purchase,1.0,0 -123734483,"The Expendabros",play,0.1,0 -123734483,"Magic Duels",purchase,1.0,0 -123734483,"Dead Bits",purchase,1.0,0 -123734483,"Earth 2150 The Moon Project",purchase,1.0,0 -123734483,"East India Company Gold",purchase,1.0,0 -123734483,"Enclave",purchase,1.0,0 -123734483,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -159814545,"Left 4 Dead 2",purchase,1.0,0 -159814545,"Left 4 Dead 2",play,2.2,0 -108591170,"Team Fortress 2",purchase,1.0,0 -108591170,"Team Fortress 2",play,1.4,0 -170528231,"Dota 2",purchase,1.0,0 -170528231,"Dota 2",play,7.7,0 -182329183,"Dota 2",purchase,1.0,0 -182329183,"Dota 2",play,0.4,0 -186644269,"Dota 2",purchase,1.0,0 -186644269,"Dota 2",play,1.6,0 -225495607,"Insurgency",purchase,1.0,0 -225495607,"Insurgency",play,1.4,0 -76768611,"Mafia II",purchase,1.0,0 -220561138,"Warframe",purchase,1.0,0 -220561138,"Warframe",play,623.0,0 -220561138,"Borderlands 2",purchase,1.0,0 -220561138,"Borderlands 2",play,32.0,0 -220561138,"BattleBlock Theater",purchase,1.0,0 -220561138,"BattleBlock Theater",play,8.0,0 -220561138,"Team Fortress 2",purchase,1.0,0 -220561138,"Team Fortress 2",play,5.1,0 -220561138,"Garry's Mod",purchase,1.0,0 -220561138,"Garry's Mod",play,3.2,0 -220561138,"Counter-Strike Nexon Zombies",purchase,1.0,0 -220561138,"Counter-Strike Nexon Zombies",play,1.6,0 -220561138,"The Ship",purchase,1.0,0 -220561138,"The Ship",play,1.1,0 -220561138,"Dragons and Titans",purchase,1.0,0 -220561138,"Dragons and Titans",play,1.0,0 -220561138,"Besiege",purchase,1.0,0 -220561138,"Besiege",play,0.8,0 -220561138,"Bloody Trapland",purchase,1.0,0 -220561138,"Bloody Trapland",play,0.5,0 -220561138,"Robocraft",purchase,1.0,0 -220561138,"Robocraft",play,0.3,0 -220561138,"Dead Island Epidemic",purchase,1.0,0 -220561138,"Dead Island Epidemic",play,0.2,0 -220561138,"Cry of Fear",purchase,1.0,0 -220561138,"Cry of Fear",play,0.2,0 -220561138,"FLOCK!",purchase,1.0,0 -220561138,"FLOCK!",play,0.1,0 -220561138,"MicroVolts Surge",purchase,1.0,0 -220561138,"Stealth Inc 2",purchase,1.0,0 -220561138,"PlanetSide 2",purchase,1.0,0 -220561138,"Talisman Prologue",purchase,1.0,0 -220561138,"TERA",purchase,1.0,0 -220561138,"The Ship Single Player",purchase,1.0,0 -220561138,"The Ship Tutorial",purchase,1.0,0 -290502496,"Dota 2",purchase,1.0,0 -290502496,"Dota 2",play,0.4,0 -290502496,"FreeStyle2 Street Basketball",purchase,1.0,0 -134224287,"Team Fortress 2",purchase,1.0,0 -134224287,"Team Fortress 2",play,309.0,0 -134224287,"Dota 2",purchase,1.0,0 -134224287,"Dota 2",play,259.0,0 -134224287,"Counter-Strike Global Offensive",purchase,1.0,0 -134224287,"Counter-Strike Global Offensive",play,115.0,0 -134224287,"Unturned",purchase,1.0,0 -134224287,"Unturned",play,67.0,0 -134224287,"Counter-Strike Source",purchase,1.0,0 -134224287,"Counter-Strike Source",play,21.0,0 -134224287,"Dead Island",purchase,1.0,0 -134224287,"Dead Island",play,21.0,0 -134224287,"Left 4 Dead 2",purchase,1.0,0 -134224287,"Left 4 Dead 2",play,18.6,0 -134224287,"Half-Life 2 Deathmatch",purchase,1.0,0 -134224287,"Half-Life 2 Deathmatch",play,12.5,0 -134224287,"SMITE",purchase,1.0,0 -134224287,"SMITE",play,6.5,0 -134224287,"Day of Defeat Source",purchase,1.0,0 -134224287,"Day of Defeat Source",play,3.8,0 -134224287,"Goat Simulator",purchase,1.0,0 -134224287,"Goat Simulator",play,2.4,0 -134224287,"Half-Life 2 Lost Coast",purchase,1.0,0 -134224287,"Half-Life 2 Lost Coast",play,0.5,0 -134224287,"Counter-Strike Nexon Zombies",purchase,1.0,0 -134224287,"Cry of Fear",purchase,1.0,0 -134224287,"War Thunder",purchase,1.0,0 -163754392,"Team Fortress 2",purchase,1.0,0 -163754392,"Team Fortress 2",play,14.6,0 -202018536,"Metro 2033",purchase,1.0,0 -157636450,"Dota 2",purchase,1.0,0 -157636450,"Dota 2",play,1632.0,0 -157636450,"Counter-Strike Global Offensive",purchase,1.0,0 -157636450,"Counter-Strike Global Offensive",play,1024.0,0 -157636450,"APB Reloaded",purchase,1.0,0 -157636450,"APB Reloaded",play,5.4,0 -157636450,"Guns of Icarus Online",purchase,1.0,0 -157636450,"Guns of Icarus Online",play,1.6,0 -157636450,"Realm of the Mad God",purchase,1.0,0 -157636450,"Realm of the Mad God",play,0.3,0 -157636450,"Trove",purchase,1.0,0 -157636450,"Trove",play,0.3,0 -157636450,"No More Room in Hell",purchase,1.0,0 -157636450,"Glacier 3 The Meltdown",purchase,1.0,0 -157636450,"Transformice",purchase,1.0,0 -157636450,"8BitBoy",purchase,1.0,0 -157636450,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -157636450,"Age of Empires Online",purchase,1.0,0 -157636450,"Amazing World",purchase,1.0,0 -157636450,"America's Army 3",purchase,1.0,0 -157636450,"America's Army Proving Grounds",purchase,1.0,0 -157636450,"Anomaly Warzone Earth",purchase,1.0,0 -157636450,"Anomaly Warzone Earth Mobile Campaign",purchase,1.0,0 -157636450,"Arcane Saga Online",purchase,1.0,0 -157636450,"Archeblade",purchase,1.0,0 -157636450,"Arctic Combat",purchase,1.0,0 -157636450,"Atlantica Online",purchase,1.0,0 -157636450,"Attrition Nuclear Domination",purchase,1.0,0 -157636450,"Aura Kingdom",purchase,1.0,0 -157636450,"Ben There, Dan That!",purchase,1.0,0 -157636450,"Bloodline Champions",purchase,1.0,0 -157636450,"Blood of Old",purchase,1.0,0 -157636450,"Bloop",purchase,1.0,0 -157636450,"Brawl Busters",purchase,1.0,0 -157636450,"Bullet Run",purchase,1.0,0 -157636450,"C9",purchase,1.0,0 -157636450,"Cakewalk Loop Manager",purchase,1.0,0 -157636450,"Canyon Capers",purchase,1.0,0 -157636450,"Champions Online",purchase,1.0,0 -157636450,"Combat Arms",purchase,1.0,0 -157636450,"Construct 2 Free",purchase,1.0,0 -157636450,"CrimeCraft GangWars",purchase,1.0,0 -157636450,"Dead Island Epidemic",purchase,1.0,0 -157636450,"Defiance",purchase,1.0,0 -157636450,"Defy Gravity",purchase,1.0,0 -157636450,"Desert Thunder",purchase,1.0,0 -157636450,"DiggerOnline",purchase,1.0,0 -157636450,"District 187",purchase,1.0,0 -157636450,"Don't Starve",purchase,1.0,0 -157636450,"Don't Starve Reign of Giants",purchase,1.0,0 -157636450,"Don't Starve Together Beta",purchase,1.0,0 -157636450,"Dragon Nest",purchase,1.0,0 -157636450,"Dragon Nest Europe",purchase,1.0,0 -157636450,"Dragons and Titans",purchase,1.0,0 -157636450,"Dungeon Fighter Online",purchase,1.0,0 -157636450,"Dungeonland",purchase,1.0,0 -157636450,"Dungeon Party",purchase,1.0,0 -157636450,"Dwarfs F2P",purchase,1.0,0 -157636450,"Earth 2150 The Moon Project",purchase,1.0,0 -157636450,"East India Company Gold",purchase,1.0,0 -157636450,"Enclave",purchase,1.0,0 -157636450,"Epigenesis",purchase,1.0,0 -157636450,"EverQuest Free-to-Play",purchase,1.0,0 -157636450,"EverQuest II",purchase,1.0,0 -157636450,"EVGA PrecisionX 16",purchase,1.0,0 -157636450,"Face of Mankind",purchase,1.0,0 -157636450,"Fallen Earth",purchase,1.0,0 -157636450,"Fiesta Online",purchase,1.0,0 -157636450,"Fiesta Online NA",purchase,1.0,0 -157636450,"Firefall",purchase,1.0,0 -157636450,"Floating Point",purchase,1.0,0 -157636450,"Football Superstars",purchase,1.0,0 -157636450,"Forsaken World ",purchase,1.0,0 -157636450,"Frontline Tactics",purchase,1.0,0 -157636450,"Global Agenda",purchase,1.0,0 -157636450,"Gotham City Impostors Free To Play",purchase,1.0,0 -157636450,"Grand Chase",purchase,1.0,0 -157636450,"Grimoire Manastorm",purchase,1.0,0 -157636450,"Gun Monkeys",purchase,1.0,0 -157636450,"Guns and Robots",purchase,1.0,0 -157636450,"Heroes & Generals",purchase,1.0,0 -157636450,"HOMEFRONT Demo",purchase,1.0,0 -157636450,"Hostile Waters Antaeus Rising",purchase,1.0,0 -157636450,"Humanity Asset",purchase,1.0,0 -157636450,"Hyper Fighters",purchase,1.0,0 -157636450,"Knights and Merchants",purchase,1.0,0 -157636450,"La Tale",purchase,1.0,0 -157636450,"Loadout",purchase,1.0,0 -157636450,"Mabinogi",purchase,1.0,0 -157636450,"Magic The Gathering Tactics",purchase,1.0,0 -157636450,"Magicka Wizard Wars",purchase,1.0,0 -157636450,"March of War",purchase,1.0,0 -157636450,"Marvel Heroes 2015",purchase,1.0,0 -157636450,"Memoir '44 Online",purchase,1.0,0 -157636450,"MicroVolts Surge",purchase,1.0,0 -157636450,"Moon Breakers",purchase,1.0,0 -157636450,"NEOTOKYO",purchase,1.0,0 -157636450,"Neverwinter",purchase,1.0,0 -157636450,"Nosgoth",purchase,1.0,0 -157636450,"Only If",purchase,1.0,0 -157636450,"Orborun",purchase,1.0,0 -157636450,"Overcast - Walden and the Werewolf",purchase,1.0,0 -157636450,"Pandora Saga Weapons of Balance",purchase,1.0,0 -157636450,"Panzar",purchase,1.0,0 -157636450,"Path of Exile",purchase,1.0,0 -157636450,"Pid ",purchase,1.0,0 -157636450,"Pinball Arcade",purchase,1.0,0 -157636450,"PlanetSide 2",purchase,1.0,0 -157636450,"Pox Nora",purchase,1.0,0 -157636450,"Puzzle Pirates",purchase,1.0,0 -157636450,"Quantum Rush Online",purchase,1.0,0 -157636450,"Racer 8",purchase,1.0,0 -157636450,"RaceRoom Racing Experience ",purchase,1.0,0 -157636450,"Ragnarok Online 2",purchase,1.0,0 -157636450,"Realms of the Haunting",purchase,1.0,0 -157636450,"Reversion - The Escape",purchase,1.0,0 -157636450,"Rise of Incarnates",purchase,1.0,0 -157636450,"Robocraft",purchase,1.0,0 -157636450,"ROSE Online",purchase,1.0,0 -157636450,"Royal Quest",purchase,1.0,0 -157636450,"Rush for Glory",purchase,1.0,0 -157636450,"Rusty Hearts",purchase,1.0,0 -157636450,"Saira",purchase,1.0,0 -157636450,"Shadow Warrior Classic (1997)",purchase,1.0,0 -157636450,"Siralim",purchase,1.0,0 -157636450,"Skyborn",purchase,1.0,0 -157636450,"Space Engineers",purchase,1.0,0 -157636450,"Space Hack",purchase,1.0,0 -157636450,"Spiral Knights",purchase,1.0,0 -157636450,"Star Conflict",purchase,1.0,0 -157636450,"Star Trek Online",purchase,1.0,0 -157636450,"Stealth Inc 2",purchase,1.0,0 -157636450,"Steel & Steam Episode 1",purchase,1.0,0 -157636450,"Stronghold Kingdoms",purchase,1.0,0 -157636450,"Sun Blast",purchase,1.0,0 -157636450,"Sunrider Mask of Arcadius",purchase,1.0,0 -157636450,"Super Crate Box",purchase,1.0,0 -157636450,"SUPER DISTRO",purchase,1.0,0 -157636450,"Super Monday Night Combat",purchase,1.0,0 -157636450,"Tactical Intervention",purchase,1.0,0 -157636450,"The 39 Steps",purchase,1.0,0 -157636450,"The Banner Saga Factions",purchase,1.0,0 -157636450,"The Expendabros",purchase,1.0,0 -157636450,"The Forgotten Ones",purchase,1.0,0 -157636450,"The Howler",purchase,1.0,0 -157636450,"The Lord of the Rings Online",purchase,1.0,0 -157636450,"Thinking with Time Machine",purchase,1.0,0 -157636450,"Time Gentlemen, Please!",purchase,1.0,0 -157636450,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -157636450,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -157636450,"Tribes Ascend",purchase,1.0,0 -157636450,"Uncharted Waters Online",purchase,1.0,0 -157636450,"Unturned",purchase,1.0,0 -157636450,"Velvet Sundown",purchase,1.0,0 -157636450,"Vindictus",purchase,1.0,0 -157636450,"Warface",purchase,1.0,0 -157636450,"Warframe",purchase,1.0,0 -157636450,"War Inc. Battlezone",purchase,1.0,0 -157636450,"War Thunder",purchase,1.0,0 -157636450,"Why So Evil",purchase,1.0,0 -157636450,"World of Battles",purchase,1.0,0 -157636450,"World of Guns Gun Disassembly",purchase,1.0,0 -157636450,"Xam",purchase,1.0,0 -259796248,"Grim Fandango Remastered",purchase,1.0,0 -259796248,"Grim Fandango Remastered",play,3.2,0 -234912279,"Dota 2",purchase,1.0,0 -234912279,"Dota 2",play,2.3,0 -61274953,"Train Simulator",purchase,1.0,0 -61274953,"Train Simulator",play,5.5,0 -204986955,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -204986955,"Tom Clancy's Ghost Recon Phantoms - EU",play,83.0,0 -204986955,"Dota 2",purchase,1.0,0 -204986955,"Dota 2",play,0.5,0 -83806417,"Dota 2",purchase,1.0,0 -83806417,"Dota 2",play,1.1,0 -83806417,"Team Fortress 2",purchase,1.0,0 -83806417,"Team Fortress 2",play,0.6,0 -160433170,"Sid Meier's Civilization V",purchase,1.0,0 -160433170,"Sid Meier's Civilization V",play,1.5,0 -160433170,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -160433170,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -291482664,"Team Fortress 2",purchase,1.0,0 -291482664,"Team Fortress 2",play,17.5,0 -291482664,"Soccer Manager 2016",purchase,1.0,0 -291482664,"Soccer Manager 2016",play,2.2,0 -291482664,"World of Soccer online",purchase,1.0,0 -291482664,"Dead Island Epidemic",purchase,1.0,0 -291482664,"Defiance",purchase,1.0,0 -291482664,"Heroes & Generals",purchase,1.0,0 -291482664,"Unturned",purchase,1.0,0 -291482664,"Warframe",purchase,1.0,0 -186523896,"Dota 2",purchase,1.0,0 -186523896,"Dota 2",play,1.0,0 -141315459,"Dota 2",purchase,1.0,0 -141315459,"Dota 2",play,10.8,0 -74855005,"Sid Meier's Civilization V",purchase,1.0,0 -74855005,"Sid Meier's Civilization V",play,418.0,0 -74855005,"Age of Wonders III",purchase,1.0,0 -74855005,"Age of Wonders III",play,182.0,0 -74855005,"Warlock 2 the Exiled",purchase,1.0,0 -74855005,"Warlock 2 the Exiled",play,170.0,0 -74855005,"Endless Legend",purchase,1.0,0 -74855005,"Endless Legend",play,157.0,0 -74855005,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -74855005,"Sid Meier's Civilization Beyond Earth",play,147.0,0 -74855005,"Warlock - Master of the Arcane",purchase,1.0,0 -74855005,"Warlock - Master of the Arcane",play,139.0,0 -74855005,"Grand Ages Medieval",purchase,1.0,0 -74855005,"Grand Ages Medieval",play,94.0,0 -74855005,"Tropico 4",purchase,1.0,0 -74855005,"Tropico 4",play,80.0,0 -74855005,"Cities Skylines",purchase,1.0,0 -74855005,"Cities Skylines",play,54.0,0 -74855005,"Train Fever",purchase,1.0,0 -74855005,"Train Fever",play,47.0,0 -74855005,"Endless Space",purchase,1.0,0 -74855005,"Endless Space",play,44.0,0 -74855005,"XCOM Enemy Unknown",purchase,1.0,0 -74855005,"XCOM Enemy Unknown",play,37.0,0 -74855005,"Galactic Civilizations III",purchase,1.0,0 -74855005,"Galactic Civilizations III",play,32.0,0 -74855005,"Craft The World",purchase,1.0,0 -74855005,"Craft The World",play,30.0,0 -74855005,"Total War SHOGUN 2",purchase,1.0,0 -74855005,"Total War SHOGUN 2",play,26.0,0 -74855005,"Tropico 5",purchase,1.0,0 -74855005,"Tropico 5",play,23.0,0 -74855005,"Cities in Motion 2",purchase,1.0,0 -74855005,"Cities in Motion 2",play,23.0,0 -74855005,"TransOcean The Shipping Company",purchase,1.0,0 -74855005,"TransOcean The Shipping Company",play,20.0,0 -74855005,"Age of Empires II HD Edition",purchase,1.0,0 -74855005,"Age of Empires II HD Edition",play,17.0,0 -74855005,"Might & Magic Heroes VI",purchase,1.0,0 -74855005,"Might & Magic Heroes VI",play,10.6,0 -74855005,"Game Dev Tycoon",purchase,1.0,0 -74855005,"Game Dev Tycoon",play,7.0,0 -74855005,"Age of Conan Unchained - EU version",purchase,1.0,0 -74855005,"Age of Conan Unchained - EU version",play,6.8,0 -74855005,"Legends of Pegasus",purchase,1.0,0 -74855005,"Legends of Pegasus",play,5.0,0 -74855005,"Total War ROME II - Emperor Edition",purchase,1.0,0 -74855005,"Total War ROME II - Emperor Edition",play,5.0,0 -74855005,"Stronghold 3",purchase,1.0,0 -74855005,"Stronghold 3",play,4.2,0 -74855005,"Soccer Manager 2016",purchase,1.0,0 -74855005,"Soccer Manager 2016",play,4.1,0 -74855005,"Age of Mythology Extended Edition",purchase,1.0,0 -74855005,"Age of Mythology Extended Edition",play,3.6,0 -74855005,"Empire Total War",purchase,1.0,0 -74855005,"Empire Total War",play,2.7,0 -74855005,"Stronghold HD",purchase,1.0,0 -74855005,"Stronghold HD",play,2.0,0 -74855005,"Imperium Romanum Gold Edition",purchase,1.0,0 -74855005,"Imperium Romanum Gold Edition",play,1.7,0 -74855005,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -74855005,"Sins of a Solar Empire Rebellion",play,0.7,0 -74855005,"Commander Conquest of the Americas",purchase,1.0,0 -74855005,"Commander Conquest of the Americas",play,0.6,0 -74855005,"Europa Universalis IV",purchase,1.0,0 -74855005,"Europa Universalis IV",play,0.4,0 -74855005,"Dragons and Titans",purchase,1.0,0 -74855005,"Dragons and Titans",play,0.1,0 -74855005,"Crusader Kings II",purchase,1.0,0 -74855005,"Star Trek Online",purchase,1.0,0 -74855005,"AION Free-to-Play",purchase,1.0,0 -74855005,"ArcheAge",purchase,1.0,0 -74855005,"Ascend Hand of Kul",purchase,1.0,0 -74855005,"Cities in Motion 2 Marvellous Monorails",purchase,1.0,0 -74855005,"Company of Heroes 2",purchase,1.0,0 -74855005,"Divine Souls",purchase,1.0,0 -74855005,"Dragon Nest Europe",purchase,1.0,0 -74855005,"Dungeons & Dragons Online",purchase,1.0,0 -74855005,"Echo of Soul",purchase,1.0,0 -74855005,"Galactic Civilizations III - Ship Designer's Toolbox DLC",purchase,1.0,0 -74855005,"Galactic Civilizations III Soundtrack",purchase,1.0,0 -74855005,"Just Cause 2",purchase,1.0,0 -74855005,"Marvel Heroes 2015",purchase,1.0,0 -74855005,"Neverwinter",purchase,1.0,0 -74855005,"Panzar",purchase,1.0,0 -74855005,"Prime World",purchase,1.0,0 -74855005,"RIFT",purchase,1.0,0 -74855005,"Royal Quest",purchase,1.0,0 -74855005,"Saints Row IV",purchase,1.0,0 -74855005,"Sid Meier's Civilization Beyond Earth - Rising Tide",purchase,1.0,0 -74855005,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -74855005,"SMITE",purchase,1.0,0 -74855005,"The Lord of the Rings Online",purchase,1.0,0 -74855005,"Tomb Raider",purchase,1.0,0 -74855005,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -74855005,"Tropico 5 - Generalissimo",purchase,1.0,0 -74855005,"Tropico 5 - Mad World",purchase,1.0,0 -74855005,"Villagers and Heroes",purchase,1.0,0 -74855005,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -70338529,"Portal",purchase,1.0,0 -70338529,"Portal",play,0.5,0 -256645945,"Unturned",purchase,1.0,0 -256645945,"Unturned",play,12.7,0 -256645945,"Borderlands",purchase,1.0,0 -256645945,"Borderlands",play,6.2,0 -256645945,"Dead Island",purchase,1.0,0 -256645945,"Dead Island",play,3.6,0 -256645945,"Killing Floor",purchase,1.0,0 -256645945,"Killing Floor",play,2.1,0 -256645945,"Zombie Panic Source",purchase,1.0,0 -256645945,"Zombie Panic Source",play,0.5,0 -256645945,"Clicker Heroes",purchase,1.0,0 -256645945,"Clicker Heroes",play,0.4,0 -256645945,"Dead Island Riptide",purchase,1.0,0 -256645945,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -26302344,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -26302344,"Shadowrun Dragonfall - Director's Cut",play,86.0,0 -26302344,"Borderlands 2",purchase,1.0,0 -26302344,"Borderlands 2",play,35.0,0 -26302344,"RPG Maker XP",purchase,1.0,0 -26302344,"RPG Maker XP",play,26.0,0 -26302344,"Darkstone",purchase,1.0,0 -26302344,"Darkstone",play,18.6,0 -26302344,"DC Universe Online",purchase,1.0,0 -26302344,"DC Universe Online",play,17.0,0 -26302344,"ORION Prelude",purchase,1.0,0 -26302344,"ORION Prelude",play,14.4,0 -26302344,"Team Fortress 2",purchase,1.0,0 -26302344,"Team Fortress 2",play,9.6,0 -26302344,"Amnesia The Dark Descent",purchase,1.0,0 -26302344,"Amnesia The Dark Descent",play,7.7,0 -26302344,"Spriter Pro",purchase,1.0,0 -26302344,"Spriter Pro",play,2.5,0 -26302344,"Gauntlet ",purchase,1.0,0 -26302344,"Gauntlet ",play,2.0,0 -26302344,"Zombies Monsters Robots",purchase,1.0,0 -26302344,"Zombies Monsters Robots",play,1.8,0 -26302344,"sZone-Online",purchase,1.0,0 -26302344,"sZone-Online",play,1.6,0 -26302344,"Close Your Eyes",purchase,1.0,0 -26302344,"Close Your Eyes",play,1.6,0 -26302344,"Half-Life 2",purchase,1.0,0 -26302344,"Half-Life 2",play,0.8,0 -26302344,"Warframe",purchase,1.0,0 -26302344,"Warframe",play,0.8,0 -26302344,"Saira",purchase,1.0,0 -26302344,"Saira",play,0.5,0 -26302344,"Velvet Sundown",purchase,1.0,0 -26302344,"Velvet Sundown",play,0.5,0 -26302344,"RPG Maker VX Ace",purchase,1.0,0 -26302344,"RPG Maker VX Ace",play,0.4,0 -26302344,"AirBuccaneers",purchase,1.0,0 -26302344,"AirBuccaneers",play,0.3,0 -26302344,"Nosgoth",purchase,1.0,0 -26302344,"Nosgoth",play,0.1,0 -26302344,"Axis Game Factory's AGFPRO 3.0",purchase,1.0,0 -26302344,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -26302344,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -26302344,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -26302344,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -26302344,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -26302344,"Card Hunter",purchase,1.0,0 -26302344,"Cry of Fear",purchase,1.0,0 -26302344,"Dead Island Epidemic",purchase,1.0,0 -26302344,"Defiance",purchase,1.0,0 -26302344,"Double Action Boogaloo",purchase,1.0,0 -26302344,"Dungeon Party",purchase,1.0,0 -26302344,"Echoes+",purchase,1.0,0 -26302344,"F.E.A.R. Online",purchase,1.0,0 -26302344,"Fallen Earth",purchase,1.0,0 -26302344,"Firefall",purchase,1.0,0 -26302344,"Half-Life 2 Episode One",purchase,1.0,0 -26302344,"Haunted Memories",purchase,1.0,0 -26302344,"Kung Fury",purchase,1.0,0 -26302344,"Magic Duels",purchase,1.0,0 -26302344,"MapleStory",purchase,1.0,0 -26302344,"Marvel Heroes 2015",purchase,1.0,0 -26302344,"No More Room in Hell",purchase,1.0,0 -26302344,"Passing Pineview Forest",purchase,1.0,0 -26302344,"Path of Exile",purchase,1.0,0 -26302344,"PAYDAY The Heist",purchase,1.0,0 -26302344,"Penumbra Necrologue",purchase,1.0,0 -26302344,"PlanetSide 2",purchase,1.0,0 -26302344,"Robocraft",purchase,1.0,0 -26302344,"Sprite Lamp",purchase,1.0,0 -26302344,"Star Trek Online",purchase,1.0,0 -26302344,"The Forgotten Ones",purchase,1.0,0 -26302344,"Vindictus",purchase,1.0,0 -89012535,"Team Fortress 2",purchase,1.0,0 -89012535,"Team Fortress 2",play,28.0,0 -89012535,"DC Universe Online",purchase,1.0,0 -89012535,"DC Universe Online",play,10.1,0 -285478986,"Unturned",purchase,1.0,0 -285478986,"Unturned",play,2.9,0 -285478986,"Team Fortress 2",purchase,1.0,0 -285478986,"Team Fortress 2",play,0.5,0 -88813210,"Borderlands 2 RU",purchase,1.0,0 -88813210,"Borderlands 2 RU",play,73.0,0 -88813210,"Borderlands 2",purchase,1.0,0 -88813210,"Borderlands 2",play,0.9,0 -93963263,"Call of Duty Modern Warfare 3",purchase,1.0,0 -93963263,"Call of Duty Modern Warfare 3",play,7.2,0 -93963263,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -231498310,"Fork Parker's Holiday Profit Hike",purchase,1.0,0 -231498310,"Spiral Knights",purchase,1.0,0 -286935538,"Dota 2",purchase,1.0,0 -286935538,"Dota 2",play,3.0,0 -242803837,"Dota 2",purchase,1.0,0 -242803837,"Dota 2",play,1.0,0 -162894140,"Dota 2",purchase,1.0,0 -162894140,"Dota 2",play,1208.0,0 -162894140,"Robocraft",purchase,1.0,0 -162894140,"Robocraft",play,3.5,0 -162894140,"Team Fortress 2",purchase,1.0,0 -162894140,"Team Fortress 2",play,1.3,0 -162894140,"Unturned",purchase,1.0,0 -162894140,"Unturned",play,0.3,0 -74077887,"Fallout New Vegas",purchase,1.0,0 -74077887,"Fallout New Vegas",play,110.0,0 -90304490,"R.U.S.E",purchase,1.0,0 -90304490,"R.U.S.E",play,42.0,0 -90304490,"Achron",purchase,1.0,0 -90304490,"Achron",play,2.0,0 -90304490,"R.U.S.E.",purchase,1.0,0 -83625754,"7 Days to Die",purchase,1.0,0 -83625754,"7 Days to Die",play,417.0,0 -83625754,"Age of Empires Online",purchase,1.0,0 -83625754,"Age of Empires Online",play,147.0,0 -83625754,"Dragon's Prophet (EU)",purchase,1.0,0 -83625754,"Dragon's Prophet (EU)",play,116.0,0 -83625754,"Grand Theft Auto V",purchase,1.0,0 -83625754,"Grand Theft Auto V",play,48.0,0 -83625754,"Left 4 Dead",purchase,1.0,0 -83625754,"Left 4 Dead",play,15.1,0 -83625754,"Left 4 Dead 2",purchase,1.0,0 -83625754,"Left 4 Dead 2",play,8.4,0 -83625754,"Team Fortress 2",purchase,1.0,0 -83625754,"Team Fortress 2",play,5.2,0 -83625754,"Warframe",purchase,1.0,0 -83625754,"Warframe",play,3.0,0 -83625754,"Counter-Strike",purchase,1.0,0 -83625754,"Counter-Strike",play,2.4,0 -83625754,"No More Room in Hell",purchase,1.0,0 -83625754,"No More Room in Hell",play,2.2,0 -83625754,"Counter-Strike Global Offensive",purchase,1.0,0 -83625754,"Counter-Strike Global Offensive",play,0.6,0 -83625754,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -83625754,"Counter-Strike Condition Zero Deleted Scenes",play,0.5,0 -83625754,"Counter-Strike Condition Zero",purchase,1.0,0 -83625754,"Counter-Strike Condition Zero",play,0.4,0 -83625754,"Titan Quest",purchase,1.0,0 -83625754,"Titan Quest",play,0.3,0 -83625754,"Gladiators Online Death Before Dishonor",purchase,1.0,0 -83625754,"Gladiators Online Death Before Dishonor",play,0.1,0 -83625754,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -83625754,"Counter-Strike Source",purchase,1.0,0 -83625754,"Company of Heroes",purchase,1.0,0 -83625754,"Company of Heroes (New Steam Version)",purchase,1.0,0 -83625754,"Company of Heroes Opposing Fronts",purchase,1.0,0 -83625754,"Company of Heroes Tales of Valor",purchase,1.0,0 -83625754,"Darksiders",purchase,1.0,0 -83625754,"Metro 2033",purchase,1.0,0 -83625754,"Red Faction Armageddon",purchase,1.0,0 -83625754,"Saints Row The Third",purchase,1.0,0 -175471735,"Dota 2",purchase,1.0,0 -175471735,"Dota 2",play,0.4,0 -27037996,"Counter-Strike",purchase,1.0,0 -27037996,"Counter-Strike",play,9.2,0 -27037996,"Counter-Strike Condition Zero",purchase,1.0,0 -27037996,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -123029327,"Trine 2",purchase,1.0,0 -123029327,"Trine 2",play,3.1,0 -300199064,"Paint the Town Red",purchase,1.0,0 -300199064,"Paint the Town Red",play,2.1,0 -205753843,"GunZ 2 The Second Duel",purchase,1.0,0 -205753843,"GunZ 2 The Second Duel",play,0.2,0 -188052591,"Dota 2",purchase,1.0,0 -188052591,"Dota 2",play,8.8,0 -188052591,"GunZ 2 The Second Duel",purchase,1.0,0 -237153647,"Dota 2",purchase,1.0,0 -237153647,"Dota 2",play,26.0,0 -229748951,"The Binding of Isaac",purchase,1.0,0 -229748951,"The Binding of Isaac",play,7.5,0 -229748951,"Five Nights at Freddy's 2",purchase,1.0,0 -79658056,"Half-Life 2 Deathmatch",purchase,1.0,0 -79658056,"Half-Life 2 Deathmatch",play,19.0,0 -79658056,"Half-Life 2",purchase,1.0,0 -79658056,"Half-Life 2",play,3.2,0 -79658056,"Counter-Strike",purchase,1.0,0 -79658056,"Counter-Strike",play,0.4,0 -79658056,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -79658056,"Counter-Strike Condition Zero",purchase,1.0,0 -79658056,"Day of Defeat",purchase,1.0,0 -79658056,"Deathmatch Classic",purchase,1.0,0 -79658056,"Half-Life 2 Lost Coast",purchase,1.0,0 -79658056,"Ricochet",purchase,1.0,0 -188421568,"Dota 2",purchase,1.0,0 -188421568,"Dota 2",play,648.0,0 -188421568,"Loadout",purchase,1.0,0 -188421568,"Aura Kingdom",purchase,1.0,0 -188421568,"FreeStyle2 Street Basketball",purchase,1.0,0 -188421568,"GunZ 2 The Second Duel",purchase,1.0,0 -188421568,"Unturned",purchase,1.0,0 -201708562,"Dota 2",purchase,1.0,0 -201708562,"Dota 2",play,3.3,0 -201708562,"theHunter",purchase,1.0,0 -201708562,"theHunter",play,1.0,0 -201708562,"Quake Live",purchase,1.0,0 -201708562,"Quake Live",play,0.4,0 -210728513,"Total War SHOGUN 2",purchase,1.0,0 -210728513,"Total War SHOGUN 2",play,1.9,0 -210728513,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -120520430,"Dota 2",purchase,1.0,0 -120520430,"Dota 2",play,130.0,0 -120520430,"TERA",purchase,1.0,0 -120520430,"GunZ 2 The Second Duel",purchase,1.0,0 -120520430,"Warframe",purchase,1.0,0 -158877899,"Counter-Strike Global Offensive",purchase,1.0,0 -158877899,"Counter-Strike Global Offensive",play,938.0,0 -158877899,"Counter-Strike Source",purchase,1.0,0 -158877899,"Counter-Strike Source",play,234.0,0 -158877899,"Day of Defeat Source",purchase,1.0,0 -158877899,"Day of Defeat Source",play,2.8,0 -158877899,"Half-Life 2 Deathmatch",purchase,1.0,0 -158877899,"Half-Life 2 Deathmatch",play,0.5,0 -158877899,"Epic Arena",purchase,1.0,0 -158877899,"Epic Arena",play,0.3,0 -158877899,"Contagion",purchase,1.0,0 -158877899,"Contagion",play,0.2,0 -158877899,"Half-Life 2 Lost Coast",purchase,1.0,0 -158877899,"Total War Battles KINGDOM",purchase,1.0,0 -158877899,"War Thunder",purchase,1.0,0 -157887709,"Team Fortress 2",purchase,1.0,0 -157887709,"Team Fortress 2",play,13.4,0 -208127198,"The Escapists",purchase,1.0,0 -208127198,"The Escapists",play,99.0,0 -208127198,"Five Nights at Freddy's 3",purchase,1.0,0 -208127198,"Five Nights at Freddy's 3",play,8.2,0 -208127198,"BattleBlock Theater",purchase,1.0,0 -208127198,"BattleBlock Theater",play,1.1,0 -208127198,"Unturned",purchase,1.0,0 -80098179,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -80098179,"Call of Duty Modern Warfare 3 - Multiplayer",play,69.0,0 -80098179,"Call of Duty Modern Warfare 3",purchase,1.0,0 -80098179,"Call of Duty Modern Warfare 3",play,28.0,0 -80098179,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -80098179,"Call of Duty Modern Warfare 2 - Multiplayer",play,9.4,0 -80098179,"WRC 4 FIA WORLD RALLY CHAMPIONSHIP",purchase,1.0,0 -80098179,"WRC 4 FIA WORLD RALLY CHAMPIONSHIP",play,4.7,0 -80098179,"Star Conflict",purchase,1.0,0 -80098179,"Star Conflict",play,2.8,0 -80098179,"Need for Speed Undercover",purchase,1.0,0 -80098179,"Need for Speed Undercover",play,0.8,0 -80098179,"Metro 2033",purchase,1.0,0 -80098179,"Metro 2033",play,0.5,0 -80098179,"Scania Truck Driving Simulator",purchase,1.0,0 -80098179,"Scania Truck Driving Simulator",play,0.5,0 -80098179,"The Forest",purchase,1.0,0 -80098179,"The Forest",play,0.3,0 -80098179,"Heroes & Generals",purchase,1.0,0 -80098179,"Heroes & Generals",play,0.1,0 -80098179,"Call of Duty Modern Warfare 2",purchase,1.0,0 -80098179,"theHunter",purchase,1.0,0 -80098179,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -80098179,"Warface",purchase,1.0,0 -80098179,"World of Guns Gun Disassembly",purchase,1.0,0 -554278,"Counter-Strike Source",purchase,1.0,0 -554278,"Counter-Strike Source",play,216.0,0 -554278,"Counter-Strike Global Offensive",purchase,1.0,0 -554278,"Counter-Strike Global Offensive",play,38.0,0 -554278,"War Thunder",purchase,1.0,0 -554278,"War Thunder",play,7.4,0 -554278,"Call of Duty Modern Warfare 2",purchase,1.0,0 -554278,"Call of Duty Modern Warfare 2",play,6.2,0 -554278,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -554278,"Call of Duty Black Ops II - Multiplayer",play,4.5,0 -554278,"Left 4 Dead 2",purchase,1.0,0 -554278,"Left 4 Dead 2",play,4.2,0 -554278,"Half-Life 2",purchase,1.0,0 -554278,"Half-Life 2",play,4.1,0 -554278,"Call of Duty Black Ops II",purchase,1.0,0 -554278,"Call of Duty Black Ops II",play,0.5,0 -554278,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -554278,"Call of Duty Black Ops II - Zombies",play,0.1,0 -554278,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -554278,"Counter-Strike",purchase,1.0,0 -554278,"Counter-Strike Condition Zero",purchase,1.0,0 -554278,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -554278,"Darkest Hour Europe '44-'45",purchase,1.0,0 -554278,"Day of Defeat",purchase,1.0,0 -554278,"Day of Defeat Source",purchase,1.0,0 -554278,"Deathmatch Classic",purchase,1.0,0 -554278,"Half-Life",purchase,1.0,0 -554278,"Half-Life 2 Deathmatch",purchase,1.0,0 -554278,"Half-Life 2 Episode One",purchase,1.0,0 -554278,"Half-Life 2 Lost Coast",purchase,1.0,0 -554278,"Half-Life Blue Shift",purchase,1.0,0 -554278,"Half-Life Opposing Force",purchase,1.0,0 -554278,"Half-Life Deathmatch Source",purchase,1.0,0 -554278,"Mare Nostrum",purchase,1.0,0 -554278,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -554278,"Ricochet",purchase,1.0,0 -554278,"Team Fortress Classic",purchase,1.0,0 -122536802,"Dota 2",purchase,1.0,0 -122536802,"Dota 2",play,0.9,0 -163671750,"Dota 2",purchase,1.0,0 -163671750,"Dota 2",play,1.7,0 -20362352,"Counter-Strike",purchase,1.0,0 -20362352,"Counter-Strike",play,5.6,0 -20362352,"Alien Swarm",purchase,1.0,0 -20362352,"Alien Swarm",play,1.1,0 -20362352,"Day of Defeat",purchase,1.0,0 -20362352,"Counter-Strike Condition Zero",purchase,1.0,0 -20362352,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -20362352,"Deathmatch Classic",purchase,1.0,0 -20362352,"Half-Life",purchase,1.0,0 -20362352,"Half-Life Blue Shift",purchase,1.0,0 -20362352,"Half-Life Opposing Force",purchase,1.0,0 -20362352,"Ricochet",purchase,1.0,0 -20362352,"Team Fortress Classic",purchase,1.0,0 -714122,"Football Manager 2009",purchase,1.0,0 -714122,"Football Manager 2009",play,1.6,0 -714122,"Counter-Strike Source",purchase,1.0,0 -714122,"Counter-Strike Source",play,1.4,0 -714122,"Counter-Strike",purchase,1.0,0 -714122,"Counter-Strike",play,0.5,0 -714122,"Day of Defeat",purchase,1.0,0 -714122,"Deathmatch Classic",purchase,1.0,0 -714122,"Half-Life",purchase,1.0,0 -714122,"Half-Life Blue Shift",purchase,1.0,0 -714122,"Half-Life Opposing Force",purchase,1.0,0 -714122,"Ricochet",purchase,1.0,0 -714122,"Team Fortress Classic",purchase,1.0,0 -110194091,"Team Fortress 2",purchase,1.0,0 -110194091,"Team Fortress 2",play,680.0,0 -110194091,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -110194091,"SEGA Genesis & Mega Drive Classics",play,52.0,0 -110194091,"Left 4 Dead 2",purchase,1.0,0 -110194091,"Left 4 Dead 2",play,36.0,0 -110194091,"Scribblenauts Unmasked",purchase,1.0,0 -110194091,"Scribblenauts Unmasked",play,31.0,0 -110194091,"Portal 2",purchase,1.0,0 -110194091,"Portal 2",play,26.0,0 -110194091,"Source Filmmaker",purchase,1.0,0 -110194091,"Source Filmmaker",play,6.4,0 -138228336,"Dota 2",purchase,1.0,0 -138228336,"Dota 2",play,2.4,0 -191052911,"Garry's Mod",purchase,1.0,0 -191052911,"Garry's Mod",play,4.2,0 -194641575,"RAGE",purchase,1.0,0 -194641575,"RAGE",play,18.4,0 -194641575,"Euro Truck Simulator 2",purchase,1.0,0 -194641575,"Euro Truck Simulator 2",play,14.9,0 -194641575,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -194641575,"Call of Duty Modern Warfare 2 - Multiplayer",play,10.4,0 -194641575,"Batman Arkham Origins",purchase,1.0,0 -194641575,"Batman Arkham Origins",play,5.1,0 -194641575,"X3 Terran Conflict",purchase,1.0,0 -194641575,"X3 Terran Conflict",play,1.2,0 -194641575,"Sniper Ghost Warrior 2",purchase,1.0,0 -194641575,"Sniper Ghost Warrior 2",play,0.5,0 -194641575,"Call of Duty Modern Warfare 2",purchase,1.0,0 -194641575,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -194641575,"X3 Albion Prelude",purchase,1.0,0 -161657866,"Dota 2",purchase,1.0,0 -161657866,"Dota 2",play,472.0,0 -161657866,"Warframe",purchase,1.0,0 -161657866,"Warframe",play,2.7,0 -161657866,"Bloodline Champions",purchase,1.0,0 -161657866,"Bloodline Champions",play,0.8,0 -162631416,"Dota 2",purchase,1.0,0 -162631416,"Dota 2",play,1.2,0 -105837235,"Trine 2",purchase,1.0,0 -105837235,"Trine 2",play,2.0,0 -36856786,"Counter-Strike",purchase,1.0,0 -36856786,"Counter-Strike",play,1.7,0 -36856786,"Counter-Strike Condition Zero",purchase,1.0,0 -36856786,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -36856786,"Day of Defeat",purchase,1.0,0 -36856786,"Deathmatch Classic",purchase,1.0,0 -36856786,"Ricochet",purchase,1.0,0 -231255153,"Counter-Strike Global Offensive",purchase,1.0,0 -231255153,"Counter-Strike Global Offensive",play,76.0,0 -231255153,"Unturned",purchase,1.0,0 -231255153,"Unturned",play,22.0,0 -231255153,"Garry's Mod",purchase,1.0,0 -231255153,"Garry's Mod",play,7.0,0 -231255153,"Dota 2",purchase,1.0,0 -231255153,"Dota 2",play,5.2,0 -231255153,"theHunter",purchase,1.0,0 -231255153,"theHunter",play,1.3,0 -231255153,"Batman Arkham City GOTY",purchase,1.0,0 -231255153,"Batman Arkham City GOTY",play,1.1,0 -231255153,"Heroes & Generals",purchase,1.0,0 -231255153,"Heroes & Generals",play,0.9,0 -231255153,"PAYDAY The Heist",purchase,1.0,0 -231255153,"PAYDAY The Heist",play,0.6,0 -231255153,"Trove",purchase,1.0,0 -231255153,"Trove",play,0.6,0 -231255153,"Dead Island Epidemic",purchase,1.0,0 -231255153,"Dead Island Epidemic",play,0.5,0 -231255153,"Copa Petrobras de Marcas",purchase,1.0,0 -231255153,"Copa Petrobras de Marcas",play,0.3,0 -231255153,"War Thunder",purchase,1.0,0 -160288335,"Pro Evolution Soccer 2014",purchase,1.0,0 -160288335,"Pro Evolution Soccer 2014",play,146.0,0 -160288335,"NBA 2K13",purchase,1.0,0 -160288335,"NBA 2K13",play,98.0,0 -160288335,"Block N Load",purchase,1.0,0 -160288335,"Block N Load",play,34.0,0 -160288335,"Brothers - A Tale of Two Sons",purchase,1.0,0 -160288335,"Brothers - A Tale of Two Sons",play,3.5,0 -160288335,"LEGO The Lord of the Rings",purchase,1.0,0 -160288335,"LEGO The Lord of the Rings",play,2.9,0 -160288335,"Portal",purchase,1.0,0 -160288335,"Portal",play,2.3,0 -160288335,"Spelunky",purchase,1.0,0 -160288335,"Spelunky",play,2.2,0 -160288335,"LEGO MARVEL Super Heroes",purchase,1.0,0 -160288335,"LEGO MARVEL Super Heroes",play,2.0,0 -160288335,"Scribblenauts Unmasked",purchase,1.0,0 -160288335,"Scribblenauts Unmasked",play,1.5,0 -160288335,"Hitman Absolution",purchase,1.0,0 -160288335,"Hitman Absolution",play,1.5,0 -160288335,"Outlast",purchase,1.0,0 -160288335,"Outlast",play,0.4,0 -160288335,"BioShock",purchase,1.0,0 -160288335,"BioShock",play,0.3,0 -160288335,"Assassin's Creed III",purchase,1.0,0 -160288335,"BioShock 2",purchase,1.0,0 -160288335,"BioShock Infinite",purchase,1.0,0 -160288335,"Don't Starve",purchase,1.0,0 -160288335,"Don't Starve Together Beta",purchase,1.0,0 -160288335,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -160288335,"Grand Theft Auto San Andreas",purchase,1.0,0 -160288335,"Grand Theft Auto San Andreas",purchase,1.0,0 -160288335,"Grand Theft Auto Vice City",purchase,1.0,0 -160288335,"Grand Theft Auto Vice City",purchase,1.0,0 -160288335,"Grand Theft Auto III",purchase,1.0,0 -160288335,"Grand Theft Auto III",purchase,1.0,0 -160288335,"Grand Theft Auto IV",purchase,1.0,0 -160288335,"Hitman Sniper Challenge",purchase,1.0,0 -160288335,"Kerbal Space Program",purchase,1.0,0 -160288335,"Marvel Heroes 2015",purchase,1.0,0 -160288335,"Portal 2",purchase,1.0,0 -160288335,"Pro Evolution Soccer 2014 Online Pass",purchase,1.0,0 -160288335,"The Swapper",purchase,1.0,0 -136222532,"Dota 2",purchase,1.0,0 -136222532,"Dota 2",play,6.5,0 -181666776,"Garry's Mod",purchase,1.0,0 -181666776,"Garry's Mod",play,386.0,0 -181666776,"Unturned",purchase,1.0,0 -181666776,"Unturned",play,24.0,0 -181666776,"Team Fortress 2",purchase,1.0,0 -181666776,"Team Fortress 2",play,15.6,0 -181666776,"Lambda Wars Beta",purchase,1.0,0 -181666776,"Lambda Wars Beta",play,1.3,0 -181666776,"Total War Battles KINGDOM",purchase,1.0,0 -181666776,"Total War Battles KINGDOM",play,1.0,0 -181666776,"Robocraft",purchase,1.0,0 -181666776,"Robocraft",play,0.3,0 -181666776,"8BitMMO",purchase,1.0,0 -181666776,"8BitMMO",play,0.2,0 -181666776,"Heroes & Generals",purchase,1.0,0 -181666776,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -84703874,"Football Manager 2009",purchase,1.0,0 -84703874,"Football Manager 2009",play,120.0,0 -203492188,"Mafia II",purchase,1.0,0 -203492188,"Mafia II",play,26.0,0 -231221037,"Age of Empires II HD Edition",purchase,1.0,0 -231221037,"Age of Empires II HD Edition",play,190.0,0 -231210957,"Dota 2",purchase,1.0,0 -231210957,"Dota 2",play,25.0,0 -183288699,"Dota 2",purchase,1.0,0 -183288699,"Dota 2",play,1.5,0 -228541607,"Dota 2",purchase,1.0,0 -228541607,"Dota 2",play,6.8,0 -35418544,"Lost Planet Extreme Condition",purchase,1.0,0 -58893462,"Counter-Strike Global Offensive",purchase,1.0,0 -58893462,"Counter-Strike Global Offensive",play,54.0,0 -58893462,"Dota 2",purchase,1.0,0 -58893462,"Dota 2",play,0.2,0 -58893462,"Unturned",purchase,1.0,0 -58893462,"Unturned",play,0.1,0 -58893462,"Counter-Strike",purchase,1.0,0 -58893462,"Counter-Strike Condition Zero",purchase,1.0,0 -58893462,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -58893462,"Counter-Strike Source",purchase,1.0,0 -170068207,"PixelJunk Monsters Ultimate",purchase,1.0,0 -170068207,"PixelJunk Monsters Ultimate",play,6.6,0 -170068207,"RADical ROACH Deluxe Edition",purchase,1.0,0 -170068207,"RADical ROACH Deluxe Edition",play,6.6,0 -170068207,"Two Worlds Epic Edition",purchase,1.0,0 -170068207,"Two Worlds Epic Edition",play,5.6,0 -170068207,"Battlepaths",purchase,1.0,0 -170068207,"Battlepaths",play,5.5,0 -170068207,"Pixel Puzzles Japan",purchase,1.0,0 -170068207,"Pixel Puzzles Japan",play,5.1,0 -170068207,"Speedball 2 HD",purchase,1.0,0 -170068207,"Speedball 2 HD",play,5.0,0 -170068207,"Afterfall InSanity Extended Edition",purchase,1.0,0 -170068207,"Afterfall InSanity Extended Edition",play,4.8,0 -170068207,"The Journey Down Chapter One",purchase,1.0,0 -170068207,"The Journey Down Chapter One",play,4.8,0 -170068207,"Victim of Xen",purchase,1.0,0 -170068207,"Victim of Xen",play,4.7,0 -170068207,"Super Killer Hornet Resurrection",purchase,1.0,0 -170068207,"Super Killer Hornet Resurrection",play,4.7,0 -170068207,"Canyon Capers",purchase,1.0,0 -170068207,"Canyon Capers",play,4.7,0 -170068207,"Deadbreed",purchase,1.0,0 -170068207,"Deadbreed",play,4.6,0 -170068207,"Warlock - Master of the Arcane",purchase,1.0,0 -170068207,"Warlock - Master of the Arcane",play,4.2,0 -170068207,"Enclave",purchase,1.0,0 -170068207,"Enclave",play,3.9,0 -170068207,"Knights and Merchants",purchase,1.0,0 -170068207,"Knights and Merchants",play,3.7,0 -170068207,"Racer 8",purchase,1.0,0 -170068207,"Racer 8",play,3.7,0 -170068207,"Shadows on the Vatican - Act I Greed",purchase,1.0,0 -170068207,"Shadows on the Vatican - Act I Greed",play,3.7,0 -170068207,"Gun Monkeys",purchase,1.0,0 -170068207,"Gun Monkeys",play,3.7,0 -170068207,"Ionball 2 Ionstorm",purchase,1.0,0 -170068207,"Ionball 2 Ionstorm",play,3.7,0 -170068207,"Race The Sun",purchase,1.0,0 -170068207,"Race The Sun",play,3.7,0 -170068207,"Phoenix Force",purchase,1.0,0 -170068207,"Phoenix Force",play,3.7,0 -170068207,"Memories of a Vagabond",purchase,1.0,0 -170068207,"Memories of a Vagabond",play,3.6,0 -170068207,"Really Big Sky",purchase,1.0,0 -170068207,"Really Big Sky",play,3.6,0 -170068207,"Teleglitch Die More Edition",purchase,1.0,0 -170068207,"Teleglitch Die More Edition",play,3.6,0 -170068207,"Mechanic Escape",purchase,1.0,0 -170068207,"Mechanic Escape",play,3.6,0 -170068207,"Anomaly Warzone Earth",purchase,1.0,0 -170068207,"Anomaly Warzone Earth",play,3.6,0 -170068207,"PAYDAY The Heist",purchase,1.0,0 -170068207,"PAYDAY The Heist",play,3.4,0 -170068207,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -170068207,"Rising Storm/Red Orchestra 2 Multiplayer",play,2.2,0 -170068207,"Sniper Elite V2",purchase,1.0,0 -170068207,"Sniper Elite V2",play,1.5,0 -170068207,"Rush Bros",purchase,1.0,0 -170068207,"Rush Bros",play,1.4,0 -170068207,"Grimm",purchase,1.0,0 -170068207,"Grimm",play,1.3,0 -170068207,"Super Sanctum TD",purchase,1.0,0 -170068207,"Super Sanctum TD",play,1.0,0 -170068207,"Woodle Tree Adventures",purchase,1.0,0 -170068207,"Woodle Tree Adventures",play,0.6,0 -170068207,"POSTAL",purchase,1.0,0 -170068207,"POSTAL",play,0.5,0 -170068207,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -170068207,"ACE - Arena Cyber Evolution",purchase,1.0,0 -170068207,"Divine Souls",purchase,1.0,0 -170068207,"Altitude",purchase,1.0,0 -170068207,"Chaos Domain",purchase,1.0,0 -170068207,"Deadbreed Undertaker Beta Pack",purchase,1.0,0 -170068207,"Dead Island Epidemic",purchase,1.0,0 -170068207,"Defiance",purchase,1.0,0 -170068207,"Epic Arena",purchase,1.0,0 -170068207,"Famaze",purchase,1.0,0 -170068207,"Heroes & Generals",purchase,1.0,0 -170068207,"Magicka Wizard Wars",purchase,1.0,0 -170068207,"No More Room in Hell",purchase,1.0,0 -170068207,"Prime World",purchase,1.0,0 -170068207,"Realms of the Haunting",purchase,1.0,0 -170068207,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -170068207,"Sanctum",purchase,1.0,0 -170068207,"Sunrider Mask of Arcadius",purchase,1.0,0 -170068207,"Toribash",purchase,1.0,0 -170068207,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -170068207,"War of the Roses",purchase,1.0,0 -117463647,"Dota 2",purchase,1.0,0 -117463647,"Dota 2",play,1.2,0 -292741048,"AdVenture Capitalist",purchase,1.0,0 -292741048,"America's Army Proving Grounds",purchase,1.0,0 -292741048,"Deepworld",purchase,1.0,0 -292741048,"Heroes & Generals",purchase,1.0,0 -292741048,"Robocraft",purchase,1.0,0 -292741048,"Rustbucket Rumble",purchase,1.0,0 -292741048,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -292741048,"UberStrike",purchase,1.0,0 -88492781,"Team Fortress 2",purchase,1.0,0 -88492781,"Team Fortress 2",play,1.7,0 -159283849,"Dota 2",purchase,1.0,0 -159283849,"Dota 2",play,1.0,0 -238700575,"Unturned",purchase,1.0,0 -238700575,"Unturned",play,5.4,0 -238700575,"Loadout",purchase,1.0,0 -238700575,"Loadout",play,5.3,0 -238700575,"APB Reloaded",purchase,1.0,0 -238700575,"APB Reloaded",play,4.3,0 -238700575,"UberStrike",purchase,1.0,0 -238700575,"UberStrike",play,4.2,0 -238700575,"Team Fortress 2",purchase,1.0,0 -238700575,"Team Fortress 2",play,3.4,0 -238700575,"Robocraft",purchase,1.0,0 -238700575,"Robocraft",play,0.4,0 -238700575,"Warside",purchase,1.0,0 -238700575,"Warside",play,0.4,0 -238700575,"Elsword",purchase,1.0,0 -238700575,"Elsword",play,0.2,0 -238700575,"Red Crucible Firestorm",purchase,1.0,0 -238700575,"Red Crucible Firestorm",play,0.2,0 -238700575,"Counter-Strike Nexon Zombies",purchase,1.0,0 -238700575,"Counter-Strike Nexon Zombies",play,0.1,0 -238700575,"Dirty Bomb",purchase,1.0,0 -238700575,"Blender 2.76b",purchase,1.0,0 -238700575,"Esenthel Engine",purchase,1.0,0 -238700575,"Marvel Heroes 2015",purchase,1.0,0 -238700575,"PlanetSide 2",purchase,1.0,0 -238700575,"RaceRoom Racing Experience ",purchase,1.0,0 -238700575,"TERA",purchase,1.0,0 -238700575,"theHunter",purchase,1.0,0 -238700575,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -238700575,"Trove",purchase,1.0,0 -199664148,"The Plan",purchase,1.0,0 -199664148,"The Plan",play,2.7,0 -178242321,"Team Fortress 2",purchase,1.0,0 -178242321,"Team Fortress 2",play,31.0,0 -149810726,"DayZ",purchase,1.0,0 -149810726,"DayZ",play,220.0,0 -149810726,"Evolve",purchase,1.0,0 -149810726,"Evolve",play,120.0,0 -149810726,"Kerbal Space Program",purchase,1.0,0 -149810726,"Kerbal Space Program",play,67.0,0 -149810726,"The Elder Scrolls V Skyrim",purchase,1.0,0 -149810726,"The Elder Scrolls V Skyrim",play,48.0,0 -149810726,"War Thunder",purchase,1.0,0 -149810726,"War Thunder",play,15.3,0 -149810726,"State of Decay",purchase,1.0,0 -149810726,"State of Decay",play,14.3,0 -149810726,"HAWKEN",purchase,1.0,0 -149810726,"HAWKEN",play,12.1,0 -149810726,"Tomb Raider",purchase,1.0,0 -149810726,"Tomb Raider",play,9.7,0 -149810726,"Unturned",purchase,1.0,0 -149810726,"Unturned",play,3.4,0 -149810726,"Insurgency",purchase,1.0,0 -149810726,"Insurgency",play,0.8,0 -149810726,"theHunter",purchase,1.0,0 -149810726,"theHunter",play,0.1,0 -149810726,"DCS World",purchase,1.0,0 -149810726,"State of Decay - Breakdown",purchase,1.0,0 -149810726,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -149810726,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -149810726,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -152597701,"Dota 2",purchase,1.0,0 -152597701,"Dota 2",play,0.5,0 -161339015,"GRID 2",purchase,1.0,0 -161339015,"GRID 2",play,2.5,0 -189675274,"Dota 2",purchase,1.0,0 -189675274,"Dota 2",play,0.3,0 -78142481,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -78142481,"Call of Duty Advanced Warfare - Multiplayer",play,2.1,0 -78142481,"Call of Duty Advanced Warfare",purchase,1.0,0 -78142481,"Call of Duty Advanced Warfare",play,1.5,0 -80173910,"Half-Life 2 Deathmatch",purchase,1.0,0 -80173910,"Half-Life 2 Lost Coast",purchase,1.0,0 -70930091,"Counter-Strike Source",purchase,1.0,0 -70930091,"Counter-Strike Source",play,38.0,0 -70930091,"Day of Defeat Source",purchase,1.0,0 -70930091,"Half-Life 2 Deathmatch",purchase,1.0,0 -70930091,"Half-Life 2 Lost Coast",purchase,1.0,0 -208433656,"Dota 2",purchase,1.0,0 -208433656,"Dota 2",play,178.0,0 -79615216,"Team Fortress 2",purchase,1.0,0 -79615216,"Team Fortress 2",play,9.7,0 -79615216,"Portal",purchase,1.0,0 -79615216,"Portal",play,1.6,0 -119835248,"Unreal Tournament Game of the Year Edition",purchase,1.0,0 -119835248,"Unreal Tournament Game of the Year Edition",play,222.0,0 -119835248,"Return to Castle Wolfenstein",purchase,1.0,0 -119835248,"Return to Castle Wolfenstein",play,204.0,0 -119835248,"Star Wars Knights of the Old Republic",purchase,1.0,0 -119835248,"Star Wars Knights of the Old Republic",play,93.0,0 -97659219,"Sid Meier's Civilization V",purchase,1.0,0 -97659219,"Sid Meier's Civilization V",play,363.0,0 -97659219,"Alan Wake",purchase,1.0,0 -97659219,"Alan Wake",play,1.0,0 -97659219,"Metro 2033",purchase,1.0,0 -97659219,"Metro 2033",play,0.8,0 -97659219,"Dishonored",purchase,1.0,0 -97659219,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -97659219,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -222008249,"Cubic Castles",purchase,1.0,0 -222008249,"Cubic Castles",play,15.2,0 -222008249,"Robocraft",purchase,1.0,0 -222008249,"Robocraft",play,12.6,0 -222008249,"The Expendabros",purchase,1.0,0 -222008249,"The Expendabros",play,4.6,0 -222008249,"Warside",purchase,1.0,0 -222008249,"Warside",play,3.9,0 -222008249,"Magicka Wizard Wars",purchase,1.0,0 -222008249,"Magicka Wizard Wars",play,2.2,0 -222008249,"You Have to Win the Game",purchase,1.0,0 -222008249,"You Have to Win the Game",play,1.1,0 -222008249,"PlanetSide 2",purchase,1.0,0 -222008249,"PlanetSide 2",play,1.0,0 -222008249,"Trove",purchase,1.0,0 -222008249,"Trove",play,0.9,0 -222008249,"8BitMMO",purchase,1.0,0 -222008249,"8BitMMO",play,0.8,0 -222008249,"Echoes+",purchase,1.0,0 -222008249,"Echoes+",play,0.7,0 -222008249,"Curse of Mermos",purchase,1.0,0 -222008249,"Curse of Mermos",play,0.4,0 -222008249,"Card Hunter",purchase,1.0,0 -222008249,"Card Hunter",play,0.3,0 -222008249,"Toribash",purchase,1.0,0 -186167611,"Robocraft",purchase,1.0,0 -186167611,"Robocraft",play,9.3,0 -186167611,"The Elder Scrolls V Skyrim",purchase,1.0,0 -186167611,"The Elder Scrolls V Skyrim",play,2.8,0 -186167611,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -186167611,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -186167611,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -204477246,"Team Fortress 2",purchase,1.0,0 -204477246,"Team Fortress 2",play,9.4,0 -204477246,"World of Guns Gun Disassembly",purchase,1.0,0 -204477246,"World of Guns Gun Disassembly",play,1.1,0 -204477246,"Dirty Bomb",purchase,1.0,0 -204477246,"Dirty Bomb",play,0.9,0 -204477246,"Moonbase Alpha",purchase,1.0,0 -204477246,"Moonbase Alpha",play,0.8,0 -204477246,"theHunter",purchase,1.0,0 -204477246,"theHunter",play,0.8,0 -204477246,"Heroes & Generals",purchase,1.0,0 -204477246,"Heroes & Generals",play,0.5,0 -204477246,"UberStrike",purchase,1.0,0 -204477246,"UberStrike",play,0.4,0 -204477246,"Unturned",purchase,1.0,0 -204477246,"Unturned",play,0.2,0 -204477246,"Wild Warfare",purchase,1.0,0 -204477246,"Wild Warfare",play,0.2,0 -204477246,"Codename CURE",purchase,1.0,0 -204477246,"Double Action Boogaloo",purchase,1.0,0 -204477246,"HAWKEN",purchase,1.0,0 -204477246,"Metro Conflict",purchase,1.0,0 -204477246,"Rise of Incarnates",purchase,1.0,0 -204477246,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -204477246,"Tactical Intervention",purchase,1.0,0 -149579610,"Dota 2",purchase,1.0,0 -149579610,"Dota 2",play,881.0,0 -149579610,"C9",purchase,1.0,0 -149579610,"FreeStyle2 Street Basketball",purchase,1.0,0 -149579610,"GunZ 2 The Second Duel",purchase,1.0,0 -149579610,"Heroes & Generals",purchase,1.0,0 -214914991,"Dota 2",purchase,1.0,0 -214914991,"Dota 2",play,5.0,0 -107107474,"Football Manager 2013",purchase,1.0,0 -107107474,"Football Manager 2013",play,120.0,0 -107107474,"Football Manager 2014",purchase,1.0,0 -107107474,"Football Manager 2014",play,20.0,0 -107107474,"Football Manager 2012",purchase,1.0,0 -107107474,"Football Manager 2012",play,10.1,0 -200657041,"Team Fortress 2",purchase,1.0,0 -200657041,"Team Fortress 2",play,24.0,0 -260017289,"Unturned",purchase,1.0,0 -260017289,"Unturned",play,0.4,0 -260017289,"Run and Fire",purchase,1.0,0 -187499055,"Counter-Strike Global Offensive",purchase,1.0,0 -187499055,"Counter-Strike Global Offensive",play,16.0,0 -204970557,"Dota 2",purchase,1.0,0 -204970557,"Dota 2",play,0.9,0 -10095386,"Counter-Strike Source",purchase,1.0,0 -10095386,"Counter-Strike Source",play,34.0,0 -10095386,"Half-Life 2",purchase,1.0,0 -10095386,"Half-Life 2 Deathmatch",purchase,1.0,0 -10095386,"Half-Life 2 Lost Coast",purchase,1.0,0 -38179194,"Team Fortress 2",purchase,1.0,0 -38179194,"Team Fortress 2",play,116.0,0 -38179194,"Torchlight II",purchase,1.0,0 -38179194,"Torchlight II",play,8.9,0 -38179194,"Starbound",purchase,1.0,0 -38179194,"Starbound",play,2.0,0 -38179194,"Dota 2",purchase,1.0,0 -38179194,"Dota 2",play,1.3,0 -38179194,"Torchlight",purchase,1.0,0 -38179194,"Torchlight",play,0.7,0 -38179194,"Heroes and Titans Online",purchase,1.0,0 -38179194,"Heroes and Titans Online",play,0.2,0 -38179194,"Left 4 Dead",purchase,1.0,0 -38179194,"Half-Life 2",purchase,1.0,0 -38179194,"Half-Life 2 Episode One",purchase,1.0,0 -38179194,"Half-Life 2 Episode Two",purchase,1.0,0 -38179194,"Half-Life 2 Lost Coast",purchase,1.0,0 -38179194,"Left 4 Dead 2",purchase,1.0,0 -38179194,"Loadout",purchase,1.0,0 -38179194,"Portal",purchase,1.0,0 -38179194,"Starbound - Unstable",purchase,1.0,0 -38179194,"Warframe",purchase,1.0,0 -95084569,"Team Fortress 2",purchase,1.0,0 -95084569,"Team Fortress 2",play,27.0,0 -95084569,"Counter-Strike Global Offensive",purchase,1.0,0 -95084569,"Counter-Strike Global Offensive",play,24.0,0 -95084569,"Left 4 Dead 2",purchase,1.0,0 -95084569,"Left 4 Dead 2",play,16.9,0 -95084569,"Outlast",purchase,1.0,0 -95084569,"Outlast",play,13.5,0 -95084569,"Unturned",purchase,1.0,0 -95084569,"Unturned",play,12.9,0 -95084569,"Hitman Absolution",purchase,1.0,0 -95084569,"Hitman Absolution",play,11.2,0 -95084569,"No More Room in Hell",purchase,1.0,0 -95084569,"No More Room in Hell",play,10.0,0 -95084569,"NBA 2K15",purchase,1.0,0 -95084569,"NBA 2K15",play,8.4,0 -95084569,"PAYDAY The Heist",purchase,1.0,0 -95084569,"PAYDAY The Heist",play,7.7,0 -95084569,"Dead Realm",purchase,1.0,0 -95084569,"Dead Realm",play,6.7,0 -95084569,"BattleBlock Theater",purchase,1.0,0 -95084569,"BattleBlock Theater",play,5.8,0 -95084569,"Borderlands 2",purchase,1.0,0 -95084569,"Borderlands 2",play,4.6,0 -95084569,"Garry's Mod",purchase,1.0,0 -95084569,"Garry's Mod",play,3.4,0 -95084569,"Killing Floor",purchase,1.0,0 -95084569,"Killing Floor",play,3.1,0 -95084569,"Castle Crashers",purchase,1.0,0 -95084569,"Castle Crashers",play,1.6,0 -95084569,"7 Days to Die",purchase,1.0,0 -95084569,"7 Days to Die",play,1.3,0 -95084569,"Dino D-Day",purchase,1.0,0 -95084569,"Dino D-Day",play,0.5,0 -95084569,"Dota 2",purchase,1.0,0 -95084569,"Dota 2",play,0.4,0 -95084569,"Left 4 Dead",purchase,1.0,0 -95084569,"Left 4 Dead",play,0.2,0 -95084569,"PAYDAY 2",purchase,1.0,0 -95084569,"PAYDAY 2",play,0.1,0 -95084569,"Chivalry Medieval Warfare",purchase,1.0,0 -95084569,"Hitman Sniper Challenge",purchase,1.0,0 -95084569,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -95084569,"NBA 2K16",purchase,1.0,0 -95084569,"Outlast Whistleblower DLC",purchase,1.0,0 -95084569,"Patch testing for Chivalry",purchase,1.0,0 -95084569,"Takedown Red Sabre",purchase,1.0,0 -246258933,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -246258933,"Call of Duty Modern Warfare 2 - Multiplayer",play,37.0,0 -246258933,"The Sims(TM) 3",purchase,1.0,0 -246258933,"The Sims(TM) 3",play,12.2,0 -246258933,"Team Fortress 2",purchase,1.0,0 -246258933,"Team Fortress 2",play,5.1,0 -246258933,"Unturned",purchase,1.0,0 -246258933,"Unturned",play,2.8,0 -246258933,"Call of Duty Modern Warfare 2",purchase,1.0,0 -246258933,"Call of Duty Modern Warfare 2",play,1.5,0 -246258933,"No More Room in Hell",purchase,1.0,0 -246258933,"No More Room in Hell",play,1.4,0 -246258933,"SMITE",purchase,1.0,0 -246258933,"SMITE",play,0.1,0 -246258933,"Trove",purchase,1.0,0 -246258933,"Trove",play,0.1,0 -246258933,"WARMODE",purchase,1.0,0 -246258933,"Toribash",purchase,1.0,0 -246258933,"Piercing Blow",purchase,1.0,0 -246258933,"Warframe",purchase,1.0,0 -246258933,"Killing Floor - Toy Master",purchase,1.0,0 -246258933,"Metal Reaper Online",purchase,1.0,0 -175450855,"Dota 2",purchase,1.0,0 -175450855,"Dota 2",play,1440.0,0 -175450855,"Praetorians",purchase,1.0,0 -216227311,"Call of Duty Modern Warfare 2",purchase,1.0,0 -216227311,"Call of Duty Modern Warfare 2",play,22.0,0 -216227311,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -216227311,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.4,0 -172203679,"F.E.A.R. 3",purchase,1.0,0 -172203679,"F.E.A.R. 3",play,2.7,0 -172203679,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -172203679,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.5,0 -172203679,"Dota 2",purchase,1.0,0 -172203679,"Dota 2",play,0.3,0 -8567888,"Counter-Strike Source",purchase,1.0,0 -8567888,"Counter-Strike Source",play,1.3,0 -8567888,"Counter-Strike",purchase,1.0,0 -8567888,"Day of Defeat",purchase,1.0,0 -8567888,"Deathmatch Classic",purchase,1.0,0 -8567888,"Half-Life",purchase,1.0,0 -8567888,"Half-Life 2",purchase,1.0,0 -8567888,"Half-Life 2 Deathmatch",purchase,1.0,0 -8567888,"Half-Life 2 Lost Coast",purchase,1.0,0 -8567888,"Half-Life Blue Shift",purchase,1.0,0 -8567888,"Half-Life Opposing Force",purchase,1.0,0 -8567888,"Ricochet",purchase,1.0,0 -8567888,"Team Fortress Classic",purchase,1.0,0 -5990132,"Prison Architect",purchase,1.0,0 -5990132,"Prison Architect",play,185.0,0 -5990132,"Castle Story",purchase,1.0,0 -5990132,"Castle Story",play,83.0,0 -5990132,"RPG Maker VX Ace",purchase,1.0,0 -5990132,"RPG Maker VX Ace",play,63.0,0 -5990132,"Infinifactory",purchase,1.0,0 -5990132,"Infinifactory",play,41.0,0 -5990132,"Craft The World",purchase,1.0,0 -5990132,"Craft The World",play,28.0,0 -5990132,"Anno 2070",purchase,1.0,0 -5990132,"Anno 2070",play,19.1,0 -5990132,"Tropico 5",purchase,1.0,0 -5990132,"Tropico 5",play,14.1,0 -5990132,"Mad Games Tycoon",purchase,1.0,0 -5990132,"Mad Games Tycoon",play,12.4,0 -5990132,"Railroad Pioneer",purchase,1.0,0 -5990132,"Railroad Pioneer",play,11.3,0 -5990132,"Farm for your Life",purchase,1.0,0 -5990132,"Farm for your Life",play,10.5,0 -5990132,"Banished",purchase,1.0,0 -5990132,"Banished",play,8.5,0 -5990132,"Windward",purchase,1.0,0 -5990132,"Windward",play,7.7,0 -5990132,"Port Royale 3",purchase,1.0,0 -5990132,"Port Royale 3",play,6.2,0 -5990132,"Starbound",purchase,1.0,0 -5990132,"Starbound",play,6.1,0 -5990132,"Planetbase",purchase,1.0,0 -5990132,"Planetbase",play,5.8,0 -5990132,"Poly Bridge",purchase,1.0,0 -5990132,"Poly Bridge",play,5.2,0 -5990132,"Godus",purchase,1.0,0 -5990132,"Godus",play,4.6,0 -5990132,"RESCUE 2",purchase,1.0,0 -5990132,"RESCUE 2",play,4.2,0 -5990132,"SteamWorld Dig",purchase,1.0,0 -5990132,"SteamWorld Dig",play,3.6,0 -5990132,"Dwarfs!?",purchase,1.0,0 -5990132,"Dwarfs!?",play,2.6,0 -5990132,"The Escapists",purchase,1.0,0 -5990132,"The Escapists",play,2.6,0 -5990132,"Dota 2",purchase,1.0,0 -5990132,"Dota 2",play,2.0,0 -5990132,"RPG Tycoon",purchase,1.0,0 -5990132,"RPG Tycoon",play,1.7,0 -5990132,"Construction-Simulator 2015",purchase,1.0,0 -5990132,"Construction-Simulator 2015",play,1.5,0 -5990132,"Kerbal Space Program",purchase,1.0,0 -5990132,"Kerbal Space Program",play,1.5,0 -5990132,"SpaceChem",purchase,1.0,0 -5990132,"SpaceChem",play,1.3,0 -5990132,"Kingdom Rush",purchase,1.0,0 -5990132,"Kingdom Rush",play,1.1,0 -5990132,"LEGO Worlds",purchase,1.0,0 -5990132,"LEGO Worlds",play,1.1,0 -5990132,"Patrician IV Steam Special Edition",purchase,1.0,0 -5990132,"Patrician IV Steam Special Edition",play,0.5,0 -5990132,"Imagine Earth",purchase,1.0,0 -5990132,"Imagine Earth",play,0.5,0 -5990132,"Farlight Explorers",purchase,1.0,0 -5990132,"Farlight Explorers",play,0.5,0 -5990132,"Children of the Nile",purchase,1.0,0 -5990132,"Children of the Nile",play,0.5,0 -5990132,"Basement",purchase,1.0,0 -5990132,"Basement",play,0.5,0 -5990132,"Gnomoria",purchase,1.0,0 -5990132,"Gnomoria",play,0.2,0 -5990132,"Cities Skylines",purchase,1.0,0 -5990132,"Cities Skylines",play,0.2,0 -5990132,"Frozen Synapse Prime",purchase,1.0,0 -5990132,"Frozen Synapse Prime",play,0.2,0 -5990132,"Big Pharma",purchase,1.0,0 -5990132,"Big Pharma",play,0.2,0 -5990132,"Planetary Annihilation",purchase,1.0,0 -5990132,"Planetary Annihilation",play,0.2,0 -5990132,"Children of the Nile Alexandria",purchase,1.0,0 -5990132,"FortressCraft Evolved",purchase,1.0,0 -5990132,"Hinterland",purchase,1.0,0 -5990132,"RollerCoaster Tycoon",purchase,1.0,0 -5990132,"Construction Simulator 2015 Vertical Skyline",purchase,1.0,0 -5990132,"Counter-Strike",purchase,1.0,0 -5990132,"Counter-Strike Condition Zero",purchase,1.0,0 -5990132,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -5990132,"FTL Faster Than Light",purchase,1.0,0 -5990132,"Mosby's Confederacy",purchase,1.0,0 -5990132,"Patrician IV Rise of a Dynasty",purchase,1.0,0 -5990132,"Planetary Annihilation - Digital Deluxe Bundle",purchase,1.0,0 -5990132,"Planetary Annihilation - Original Soundtrack",purchase,1.0,0 -5990132,"RPG Maker Old School Modern Resource Pack",purchase,1.0,0 -5990132,"Starbound - Unstable",purchase,1.0,0 -107476377,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -107476377,"Sid Meier's Civilization IV Beyond the Sword",play,1064.0,0 -107476377,"Empire Total War",purchase,1.0,0 -107476377,"Empire Total War",play,224.0,0 -107476377,"XCOM Enemy Unknown",purchase,1.0,0 -107476377,"XCOM Enemy Unknown",play,21.0,0 -107476377,"War Thunder",purchase,1.0,0 -107476377,"War Thunder",play,18.5,0 -107476377,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -107476377,"Sid Meier's Civilization IV Warlords",play,10.0,0 -107476377,"Total War ROME II - Emperor Edition",purchase,1.0,0 -107476377,"Total War ROME II - Emperor Edition",play,2.4,0 -107476377,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -107476377,"Sid Meier's Civilization IV Colonization",play,0.2,0 -107476377,"Sid Meier's Civilization IV",purchase,1.0,0 -107476377,"Sid Meier's Civilization IV",purchase,1.0,0 -107476377,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -107476377,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -107476377,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -107476377,"XCOM Enemy Within",purchase,1.0,0 -183838531,"Sid Meier's Civilization V",purchase,1.0,0 -183838531,"Sid Meier's Civilization V",play,109.0,0 -183838531,"Left 4 Dead 2",purchase,1.0,0 -183838531,"Left 4 Dead 2",play,20.0,0 -183838531,"Team Fortress 2",purchase,1.0,0 -183838531,"Team Fortress 2",play,19.9,0 -183838531,"Portal 2",purchase,1.0,0 -183838531,"Portal 2",play,7.8,0 -183838531,"Devil May Cry 4",purchase,1.0,0 -183838531,"Devil May Cry 4",play,1.9,0 -183838531,"Alice Madness Returns",purchase,1.0,0 -183838531,"Alice Madness Returns",play,1.0,0 -183838531,"Dota 2",purchase,1.0,0 -183838531,"Dota 2",play,0.7,0 -183838531,"Alien Swarm",purchase,1.0,0 -183838531,"Alien Swarm",play,0.4,0 -183838531,"Aura Kingdom",purchase,1.0,0 -183838531,"Aura Kingdom",play,0.2,0 -183838531,"The Elder Scrolls V Skyrim",purchase,1.0,0 -183838531,"Quake Live",purchase,1.0,0 -183838531,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -183838531,"Super Monday Night Combat",purchase,1.0,0 -183838531,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -183838531,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -183838531,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -40044821,"Dragon Nest Europe",purchase,1.0,0 -40044821,"Dragon Nest Europe",play,0.9,0 -207915392,"Age of Mythology Extended Edition",purchase,1.0,0 -207915392,"Age of Mythology Extended Edition",play,4.0,0 -207915392,"Team Fortress 2",purchase,1.0,0 -207915392,"Team Fortress 2",play,0.5,0 -207915392,"Monaco",purchase,1.0,0 -207915392,"Monaco",play,0.5,0 -207915392,"Dungeon Siege",purchase,1.0,0 -207915392,"Dungeon Siege",play,0.3,0 -207915392,"Super Meat Boy",purchase,1.0,0 -207915392,"Super Meat Boy",play,0.1,0 -207915392,"Bully Scholarship Edition",purchase,1.0,0 -207915392,"Euro Truck Simulator 2",purchase,1.0,0 -207915392,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -207915392,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -207915392,"Gunpoint",purchase,1.0,0 -207915392,"Left 4 Dead",purchase,1.0,0 -207915392,"Left 4 Dead 2",purchase,1.0,0 -207915392,"LEGO MARVEL Super Heroes",purchase,1.0,0 -207915392,"Portal",purchase,1.0,0 -207915392,"Portal 2",purchase,1.0,0 -207915392,"Sid Meier's Civilization V",purchase,1.0,0 -207915392,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -207915392,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -207915392,"The Elder Scrolls V Skyrim",purchase,1.0,0 -35047392,"Call of Duty United Offensive",purchase,1.0,0 -35047392,"Call of Duty United Offensive",play,360.0,0 -35047392,"Rocket League",purchase,1.0,0 -35047392,"Rocket League",play,15.8,0 -35047392,"Counter-Strike Global Offensive",purchase,1.0,0 -35047392,"Counter-Strike Global Offensive",play,6.2,0 -35047392,"Call of Duty 2",purchase,1.0,0 -35047392,"Call of Duty 2",play,4.1,0 -35047392,"Call of Duty",purchase,1.0,0 -35047392,"Call of Duty",play,4.0,0 -35047392,"Counter-Strike Source",purchase,1.0,0 -35047392,"Counter-Strike Source",play,2.3,0 -35047392,"Dota 2",purchase,1.0,0 -35047392,"Dota 2",play,2.2,0 -35047392,"Left 4 Dead 2",purchase,1.0,0 -35047392,"Left 4 Dead 2",play,1.2,0 -35047392,"Team Fortress 2",purchase,1.0,0 -35047392,"Team Fortress 2",play,0.2,0 -144736,"Counter-Strike",purchase,1.0,0 -144736,"Counter-Strike",play,0.1,0 -144736,"Day of Defeat",purchase,1.0,0 -144736,"Deathmatch Classic",purchase,1.0,0 -144736,"Half-Life",purchase,1.0,0 -144736,"Half-Life Blue Shift",purchase,1.0,0 -144736,"Half-Life Opposing Force",purchase,1.0,0 -144736,"Ricochet",purchase,1.0,0 -144736,"Team Fortress Classic",purchase,1.0,0 -127261069,"Sheltered",purchase,1.0,0 -127261069,"Sheltered",play,25.0,0 -127261069,"Team Fortress 2",purchase,1.0,0 -127261069,"Team Fortress 2",play,1.7,0 -127261069,"Hatred",purchase,1.0,0 -127261069,"Hatred",play,0.2,0 -262133376,"FreeStyle2 Street Basketball",purchase,1.0,0 -262133376,"FreeStyle2 Street Basketball",play,12.8,0 -262133376,"Smashmuck Champions",purchase,1.0,0 -204453243,"Teleglitch Die More Edition",purchase,1.0,0 -18263482,"Counter-Strike Source",purchase,1.0,0 -18263482,"Counter-Strike Source",play,11.7,0 -18263482,"Counter-Strike",purchase,1.0,0 -18263482,"Counter-Strike",play,5.0,0 -18263482,"Counter-Strike Condition Zero",purchase,1.0,0 -18263482,"Counter-Strike Condition Zero",play,2.1,0 -18263482,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -18263482,"Day of Defeat",purchase,1.0,0 -18263482,"Deathmatch Classic",purchase,1.0,0 -18263482,"Half-Life 2",purchase,1.0,0 -18263482,"Half-Life 2 Deathmatch",purchase,1.0,0 -18263482,"Half-Life 2 Lost Coast",purchase,1.0,0 -18263482,"Ricochet",purchase,1.0,0 -83770731,"Defiance",purchase,1.0,0 -83770731,"Defiance",play,46.0,0 -83770731,"Dota 2",purchase,1.0,0 -83770731,"Dota 2",play,35.0,0 -83770731,"Batman Arkham City GOTY",purchase,1.0,0 -83770731,"Batman Arkham City GOTY",play,29.0,0 -83770731,"Sid Meier's Civilization V",purchase,1.0,0 -83770731,"Sid Meier's Civilization V",play,25.0,0 -83770731,"Team Fortress 2",purchase,1.0,0 -83770731,"Team Fortress 2",play,24.0,0 -83770731,"Left 4 Dead 2",purchase,1.0,0 -83770731,"Left 4 Dead 2",play,19.1,0 -83770731,"Shadowrun Returns",purchase,1.0,0 -83770731,"Shadowrun Returns",play,17.6,0 -83770731,"Saints Row 2",purchase,1.0,0 -83770731,"Saints Row 2",play,16.8,0 -83770731,"Path of Exile",purchase,1.0,0 -83770731,"Path of Exile",play,15.7,0 -83770731,"E.Y.E Divine Cybermancy",purchase,1.0,0 -83770731,"E.Y.E Divine Cybermancy",play,15.4,0 -83770731,"Darksiders",purchase,1.0,0 -83770731,"Darksiders",play,14.0,0 -83770731,"Tomb Raider I",purchase,1.0,0 -83770731,"Tomb Raider I",play,12.5,0 -83770731,"Borderlands",purchase,1.0,0 -83770731,"Borderlands",play,12.0,0 -83770731,"PAYDAY The Heist",purchase,1.0,0 -83770731,"PAYDAY The Heist",play,11.1,0 -83770731,"The Witcher Enhanced Edition",purchase,1.0,0 -83770731,"The Witcher Enhanced Edition",play,10.7,0 -83770731,"Deus Ex Human Revolution",purchase,1.0,0 -83770731,"Deus Ex Human Revolution",play,8.4,0 -83770731,"Borderlands 2",purchase,1.0,0 -83770731,"Borderlands 2",play,8.3,0 -83770731,"Magicka",purchase,1.0,0 -83770731,"Magicka",play,7.9,0 -83770731,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -83770731,"Vampire The Masquerade - Bloodlines",play,7.2,0 -83770731,"Antichamber",purchase,1.0,0 -83770731,"Antichamber",play,6.8,0 -83770731,"Mark of the Ninja",purchase,1.0,0 -83770731,"Mark of the Ninja",play,6.2,0 -83770731,"Rune Classic",purchase,1.0,0 -83770731,"Rune Classic",play,6.2,0 -83770731,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -83770731,"Dark Souls Prepare to Die Edition",play,6.1,0 -83770731,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -83770731,"Baldur's Gate Enhanced Edition",play,5.6,0 -83770731,"Counter-Strike Global Offensive",purchase,1.0,0 -83770731,"Counter-Strike Global Offensive",play,4.6,0 -83770731,"Hotline Miami",purchase,1.0,0 -83770731,"Hotline Miami",play,4.3,0 -83770731,"Hammerwatch",purchase,1.0,0 -83770731,"Hammerwatch",play,4.2,0 -83770731,"Castle Crashers",purchase,1.0,0 -83770731,"Castle Crashers",play,4.2,0 -83770731,"Syberia",purchase,1.0,0 -83770731,"Syberia",play,4.1,0 -83770731,"Endless Space",purchase,1.0,0 -83770731,"Endless Space",play,4.1,0 -83770731,"Transistor",purchase,1.0,0 -83770731,"Transistor",play,4.0,0 -83770731,"Just Cause 2",purchase,1.0,0 -83770731,"Just Cause 2",play,3.8,0 -83770731,"Orcs Must Die! 2",purchase,1.0,0 -83770731,"Orcs Must Die! 2",play,3.8,0 -83770731,"Alien Swarm",purchase,1.0,0 -83770731,"Alien Swarm",play,3.8,0 -83770731,"Bastion",purchase,1.0,0 -83770731,"Bastion",play,3.7,0 -83770731,"Company of Heroes Tales of Valor",purchase,1.0,0 -83770731,"Company of Heroes Tales of Valor",play,3.2,0 -83770731,"Blade Symphony",purchase,1.0,0 -83770731,"Blade Symphony",play,3.2,0 -83770731,"Chivalry Medieval Warfare",purchase,1.0,0 -83770731,"Chivalry Medieval Warfare",play,3.0,0 -83770731,"Brothers - A Tale of Two Sons",purchase,1.0,0 -83770731,"Brothers - A Tale of Two Sons",play,3.0,0 -83770731,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -83770731,"Dark Messiah of Might & Magic Single Player",play,2.8,0 -83770731,"Dungeonland",purchase,1.0,0 -83770731,"Dungeonland",play,2.4,0 -83770731,"FEZ",purchase,1.0,0 -83770731,"FEZ",play,2.3,0 -83770731,"The Elder Scrolls V Skyrim",purchase,1.0,0 -83770731,"The Elder Scrolls V Skyrim",play,2.2,0 -83770731,"BattleBlock Theater",purchase,1.0,0 -83770731,"BattleBlock Theater",play,2.2,0 -83770731,"Company of Heroes (New Steam Version)",purchase,1.0,0 -83770731,"Company of Heroes (New Steam Version)",play,2.1,0 -83770731,"Saints Row The Third",purchase,1.0,0 -83770731,"Saints Row The Third",play,2.1,0 -83770731,"The Swapper",purchase,1.0,0 -83770731,"The Swapper",play,2.0,0 -83770731,"Psychonauts",purchase,1.0,0 -83770731,"Psychonauts",play,1.8,0 -83770731,"FTL Faster Than Light",purchase,1.0,0 -83770731,"FTL Faster Than Light",play,1.4,0 -83770731,"Warlock - Master of the Arcane",purchase,1.0,0 -83770731,"Warlock - Master of the Arcane",play,1.4,0 -83770731,"Batman Arkham Origins",purchase,1.0,0 -83770731,"Batman Arkham Origins",play,1.4,0 -83770731,"XCOM Enemy Unknown",purchase,1.0,0 -83770731,"XCOM Enemy Unknown",play,1.3,0 -83770731,"One Finger Death Punch",purchase,1.0,0 -83770731,"One Finger Death Punch",play,1.3,0 -83770731,"DC Universe Online",purchase,1.0,0 -83770731,"DC Universe Online",play,1.3,0 -83770731,"Terraria",purchase,1.0,0 -83770731,"Terraria",play,1.3,0 -83770731,"Dead Island",purchase,1.0,0 -83770731,"Dead Island",play,1.2,0 -83770731,"Dust An Elysian Tail",purchase,1.0,0 -83770731,"Dust An Elysian Tail",play,1.2,0 -83770731,"Race The Sun",purchase,1.0,0 -83770731,"Race The Sun",play,1.1,0 -83770731,"Legacy of Kain Soul Reaver",purchase,1.0,0 -83770731,"Legacy of Kain Soul Reaver",play,1.1,0 -83770731,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -83770731,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,1.0,0 -83770731,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -83770731,"Shadowrun Dragonfall - Director's Cut",play,0.9,0 -83770731,"Sacred Gold",purchase,1.0,0 -83770731,"Sacred Gold",play,0.8,0 -83770731,"Titan Quest",purchase,1.0,0 -83770731,"Titan Quest",play,0.7,0 -83770731,"Dino D-Day",purchase,1.0,0 -83770731,"Dino D-Day",play,0.7,0 -83770731,"Giana Sisters Twisted Dreams",purchase,1.0,0 -83770731,"Giana Sisters Twisted Dreams",play,0.6,0 -83770731,"Insurgency",purchase,1.0,0 -83770731,"Insurgency",play,0.4,0 -83770731,"Fractured Space",purchase,1.0,0 -83770731,"Fractured Space",play,0.4,0 -83770731,"Magic Duels",purchase,1.0,0 -83770731,"Magic Duels",play,0.3,0 -83770731,"Contagion",purchase,1.0,0 -83770731,"Contagion",play,0.3,0 -83770731,"Guardians of Middle-earth",purchase,1.0,0 -83770731,"Guardians of Middle-earth",play,0.3,0 -83770731,"Eets Munchies",purchase,1.0,0 -83770731,"Eets Munchies",play,0.2,0 -83770731,"War of the Roses",purchase,1.0,0 -83770731,"War of the Roses",play,0.2,0 -83770731,"Mortal Kombat Kollection",purchase,1.0,0 -83770731,"Mortal Kombat Kollection",play,0.2,0 -83770731,"Super Meat Boy",purchase,1.0,0 -83770731,"Super Meat Boy",play,0.2,0 -83770731,"Robocraft",purchase,1.0,0 -83770731,"Robocraft",play,0.2,0 -83770731,"Beyond Good & Evil",purchase,1.0,0 -83770731,"Beyond Good & Evil",play,0.1,0 -83770731,"FlatOut",purchase,1.0,0 -83770731,"FlatOut",play,0.1,0 -83770731,"Company of Heroes",purchase,1.0,0 -83770731,"Legacy of Kain Defiance",purchase,1.0,0 -83770731,"Amnesia The Dark Descent",purchase,1.0,0 -83770731,"A Virus Named TOM",purchase,1.0,0 -83770731,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -83770731,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -83770731,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -83770731,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -83770731,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -83770731,"Brtal Legend",purchase,1.0,0 -83770731,"Colin McRae Rally",purchase,1.0,0 -83770731,"Company of Heroes Opposing Fronts",purchase,1.0,0 -83770731,"Costume Quest",purchase,1.0,0 -83770731,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -83770731,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -83770731,"DiRT Showdown",purchase,1.0,0 -83770731,"Dungeonland - All access pass",purchase,1.0,0 -83770731,"East India Company Gold",purchase,1.0,0 -83770731,"Europa Universalis III",purchase,1.0,0 -83770731,"F.E.A.R.",purchase,1.0,0 -83770731,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -83770731,"F.E.A.R. 3",purchase,1.0,0 -83770731,"F.E.A.R. Extraction Point",purchase,1.0,0 -83770731,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -83770731,"GRID",purchase,1.0,0 -83770731,"GRID 2",purchase,1.0,0 -83770731,"GRID Autosport",purchase,1.0,0 -83770731,"Guacamelee! Gold Edition",purchase,1.0,0 -83770731,"Heroes of Might & Magic III - HD Edition",purchase,1.0,0 -83770731,"Hospital Tycoon",purchase,1.0,0 -83770731,"Knights and Merchants",purchase,1.0,0 -83770731,"KnightShift",purchase,1.0,0 -83770731,"Legacy of Kain Soul Reaver 2",purchase,1.0,0 -83770731,"Leviathan Warships",purchase,1.0,0 -83770731,"LIMBO",purchase,1.0,0 -83770731,"Magicka Final Frontier",purchase,1.0,0 -83770731,"Magicka Frozen Lake",purchase,1.0,0 -83770731,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -83770731,"Magicka Nippon",purchase,1.0,0 -83770731,"Magicka Party Robes",purchase,1.0,0 -83770731,"Magicka The Watchtower",purchase,1.0,0 -83770731,"Magicka Vietnam",purchase,1.0,0 -83770731,"Magicka Wizard's Survival Kit",purchase,1.0,0 -83770731,"Metro 2033",purchase,1.0,0 -83770731,"Might & Magic Clash of Heroes",purchase,1.0,0 -83770731,"Monaco",purchase,1.0,0 -83770731,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -83770731,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -83770731,"Operation Flashpoint Red River",purchase,1.0,0 -83770731,"Overlord",purchase,1.0,0 -83770731,"Overlord Raising Hell",purchase,1.0,0 -83770731,"Overlord II",purchase,1.0,0 -83770731,"Patch testing for Chivalry",purchase,1.0,0 -83770731,"Pirates of Black Cove Gold",purchase,1.0,0 -83770731,"Portal 2",purchase,1.0,0 -83770731,"Psychonauts Demo",purchase,1.0,0 -83770731,"Red Faction Armageddon",purchase,1.0,0 -83770731,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -83770731,"Rise of the Argonauts",purchase,1.0,0 -83770731,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -83770731,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -83770731,"Saints Row IV",purchase,1.0,0 -83770731,"Scribblenauts Unlimited",purchase,1.0,0 -83770731,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -83770731,"Skyborn",purchase,1.0,0 -83770731,"Sniper Elite V2",purchase,1.0,0 -83770731,"Stacking",purchase,1.0,0 -83770731,"Star Wars Knights of the Old Republic",purchase,1.0,0 -83770731,"Syberia 2",purchase,1.0,0 -83770731,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -83770731,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -83770731,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -83770731,"The Expendabros",purchase,1.0,0 -83770731,"The Lord of the Rings War in the North",purchase,1.0,0 -83770731,"The Showdown Effect",purchase,1.0,0 -83770731,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -83770731,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -83770731,"Tomb Raider Anniversary",purchase,1.0,0 -83770731,"Tomb Raider Chronicles",purchase,1.0,0 -83770731,"Tomb Raider Legend",purchase,1.0,0 -83770731,"Tomb Raider The Last Revelation",purchase,1.0,0 -83770731,"Tomb Raider Underworld",purchase,1.0,0 -83770731,"Tomb Raider II",purchase,1.0,0 -83770731,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -83770731,"Toybox Turbos",purchase,1.0,0 -83770731,"Trine 2",purchase,1.0,0 -83770731,"Two Worlds Epic Edition",purchase,1.0,0 -83770731,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -83770731,"War of the Roses Kingmaker",purchase,1.0,0 -83770731,"War of the Roses Balance Beta",purchase,1.0,0 -83770731,"X-Blades",purchase,1.0,0 -83770731,"XCOM Enemy Within",purchase,1.0,0 -98308239,"Dota 2",purchase,1.0,0 -98308239,"Dota 2",play,5142.0,0 -98308239,"Lethal League",purchase,1.0,0 -98308239,"Lethal League",play,2.1,0 -98308239,"Neverwinter",purchase,1.0,0 -171265504,"Counter-Strike Global Offensive",purchase,1.0,0 -171265504,"Counter-Strike Global Offensive",play,39.0,0 -171265504,"Dustforce",purchase,1.0,0 -171265504,"Realm of the Mad God",purchase,1.0,0 -82287546,"Football Manager 2012",purchase,1.0,0 -82287546,"Football Manager 2012",play,672.0,0 -82287546,"Football Manager 2013",purchase,1.0,0 -82287546,"Football Manager 2013",play,569.0,0 -82287546,"Fallout New Vegas",purchase,1.0,0 -82287546,"Fallout New Vegas",play,67.0,0 -82287546,"Grand Theft Auto IV",purchase,1.0,0 -82287546,"Grand Theft Auto IV",play,49.0,0 -82287546,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -82287546,"Grand Theft Auto Episodes from Liberty City",play,39.0,0 -82287546,"DARK SOULS II",purchase,1.0,0 -82287546,"DARK SOULS II",play,36.0,0 -82287546,"Borderlands",purchase,1.0,0 -82287546,"Borderlands",play,27.0,0 -82287546,"PAYDAY 2",purchase,1.0,0 -82287546,"PAYDAY 2",play,23.0,0 -82287546,"Sleeping Dogs",purchase,1.0,0 -82287546,"Sleeping Dogs",play,21.0,0 -82287546,"Counter-Strike Global Offensive",purchase,1.0,0 -82287546,"Counter-Strike Global Offensive",play,18.5,0 -82287546,"Batman Arkham City GOTY",purchase,1.0,0 -82287546,"Batman Arkham City GOTY",play,14.7,0 -82287546,"Fable - The Lost Chapters",purchase,1.0,0 -82287546,"Fable - The Lost Chapters",play,14.4,0 -82287546,"Batman Arkham Origins",purchase,1.0,0 -82287546,"Batman Arkham Origins",play,14.0,0 -82287546,"Half-Life 2",purchase,1.0,0 -82287546,"Half-Life 2",play,13.2,0 -82287546,"Saints Row The Third",purchase,1.0,0 -82287546,"Saints Row The Third",play,12.8,0 -82287546,"Mass Effect",purchase,1.0,0 -82287546,"Mass Effect",play,11.5,0 -82287546,"Left 4 Dead 2",purchase,1.0,0 -82287546,"Left 4 Dead 2",play,11.0,0 -82287546,"The Walking Dead",purchase,1.0,0 -82287546,"The Walking Dead",play,10.7,0 -82287546,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -82287546,"Batman Arkham Asylum GOTY Edition",play,10.5,0 -82287546,"The Elder Scrolls V Skyrim",purchase,1.0,0 -82287546,"The Elder Scrolls V Skyrim",play,10.5,0 -82287546,"Saints Row 2",purchase,1.0,0 -82287546,"Saints Row 2",play,10.0,0 -82287546,"Borderlands 2",purchase,1.0,0 -82287546,"Borderlands 2",play,9.7,0 -82287546,"Far Cry 3",purchase,1.0,0 -82287546,"Far Cry 3",play,8.4,0 -82287546,"PAYDAY The Heist",purchase,1.0,0 -82287546,"PAYDAY The Heist",play,8.0,0 -82287546,"Mass Effect 2",purchase,1.0,0 -82287546,"Mass Effect 2",play,7.6,0 -82287546,"Deus Ex Human Revolution",purchase,1.0,0 -82287546,"Deus Ex Human Revolution",play,5.5,0 -82287546,"Just Cause 2",purchase,1.0,0 -82287546,"Just Cause 2",play,5.5,0 -82287546,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -82287546,"Call of Duty Modern Warfare 3 - Multiplayer",play,4.0,0 -82287546,"Far Cry 2",purchase,1.0,0 -82287546,"Far Cry 2",play,3.7,0 -82287546,"Team Fortress 2",purchase,1.0,0 -82287546,"Team Fortress 2",play,3.1,0 -82287546,"Killing Floor",purchase,1.0,0 -82287546,"Killing Floor",play,2.9,0 -82287546,"Fallout",purchase,1.0,0 -82287546,"Fallout",play,2.8,0 -82287546,"Hitman Absolution",purchase,1.0,0 -82287546,"Hitman Absolution",play,2.7,0 -82287546,"Oddworld Abe's Exoddus",purchase,1.0,0 -82287546,"Oddworld Abe's Exoddus",play,2.3,0 -82287546,"LIMBO",purchase,1.0,0 -82287546,"LIMBO",play,2.0,0 -82287546,"Deus Ex Game of the Year Edition",purchase,1.0,0 -82287546,"Deus Ex Game of the Year Edition",play,1.9,0 -82287546,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -82287546,"Call of Duty Black Ops II - Multiplayer",play,1.8,0 -82287546,"Assassin's Creed II",purchase,1.0,0 -82287546,"Assassin's Creed II",play,1.7,0 -82287546,"F.E.A.R.",purchase,1.0,0 -82287546,"F.E.A.R.",play,1.7,0 -82287546,"BioShock",purchase,1.0,0 -82287546,"BioShock",play,1.6,0 -82287546,"Metro 2033",purchase,1.0,0 -82287546,"Metro 2033",play,1.5,0 -82287546,"Betrayer",purchase,1.0,0 -82287546,"Betrayer",play,1.4,0 -82287546,"Neverwinter",purchase,1.0,0 -82287546,"Neverwinter",play,1.3,0 -82287546,"The Witcher Enhanced Edition",purchase,1.0,0 -82287546,"The Witcher Enhanced Edition",play,1.2,0 -82287546,"Homefront",purchase,1.0,0 -82287546,"Homefront",play,1.2,0 -82287546,"Sniper Elite",purchase,1.0,0 -82287546,"Sniper Elite",play,1.0,0 -82287546,"Arma 2",purchase,1.0,0 -82287546,"Arma 2",play,0.9,0 -82287546,"Oddworld Abe's Oddysee",purchase,1.0,0 -82287546,"Oddworld Abe's Oddysee",play,0.8,0 -82287546,"Crysis 2 Maximum Edition",purchase,1.0,0 -82287546,"Crysis 2 Maximum Edition",play,0.8,0 -82287546,"Hitman Blood Money",purchase,1.0,0 -82287546,"Hitman Blood Money",play,0.7,0 -82287546,"Aliens Colonial Marines",purchase,1.0,0 -82287546,"Aliens Colonial Marines",play,0.7,0 -82287546,"Terraria",purchase,1.0,0 -82287546,"Terraria",play,0.6,0 -82287546,"Need for Speed Hot Pursuit",purchase,1.0,0 -82287546,"Need for Speed Hot Pursuit",play,0.6,0 -82287546,"Call of Duty Black Ops II",purchase,1.0,0 -82287546,"Call of Duty Black Ops II",play,0.5,0 -82287546,"Hitman 2 Silent Assassin",purchase,1.0,0 -82287546,"Hitman 2 Silent Assassin",play,0.5,0 -82287546,"Alien Breed Impact",purchase,1.0,0 -82287546,"Alien Breed Impact",play,0.5,0 -82287546,"Sniper Elite V2",purchase,1.0,0 -82287546,"Sniper Elite V2",play,0.4,0 -82287546,"Garry's Mod",purchase,1.0,0 -82287546,"Garry's Mod",play,0.4,0 -82287546,"Sid Meier's Civilization III Complete",purchase,1.0,0 -82287546,"Sid Meier's Civilization III Complete",play,0.3,0 -82287546,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -82287546,"Call of Duty Black Ops II - Zombies",play,0.3,0 -82287546,"Hitman Codename 47",purchase,1.0,0 -82287546,"Hitman Codename 47",play,0.2,0 -82287546,"Arma 2 Operation Arrowhead",purchase,1.0,0 -82287546,"Arma 2 Operation Arrowhead",play,0.2,0 -82287546,"Bully Scholarship Edition",purchase,1.0,0 -82287546,"Bully Scholarship Edition",play,0.2,0 -82287546,"Crysis",purchase,1.0,0 -82287546,"Crysis",play,0.1,0 -82287546,"Portal 2",purchase,1.0,0 -82287546,"Portal 2",play,0.1,0 -82287546,"Call of Duty Modern Warfare 3",purchase,1.0,0 -82287546,"Call of Duty Modern Warfare 3",play,0.1,0 -82287546,"BioShock 2",purchase,1.0,0 -82287546,"BioShock 2",play,0.1,0 -82287546,"Sonic Adventure DX",purchase,1.0,0 -82287546,"Sonic Adventure DX",play,0.1,0 -82287546,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -82287546,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,0.1,0 -82287546,"Deus Ex Invisible War",purchase,1.0,0 -82287546,"F.E.A.R. Extraction Point",purchase,1.0,0 -82287546,"Assassin's Creed Revelations",purchase,1.0,0 -82287546,"Alien Breed 2 Assault",purchase,1.0,0 -82287546,"Alien Breed 3 Descent",purchase,1.0,0 -82287546,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -82287546,"Batman Arkham Origins - Initiation",purchase,1.0,0 -82287546,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -82287546,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -82287546,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -82287546,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -82287546,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -82287546,"Crysis Warhead",purchase,1.0,0 -82287546,"Crysis Wars",purchase,1.0,0 -82287546,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -82287546,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -82287546,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -82287546,"Fallout New Vegas Dead Money",purchase,1.0,0 -82287546,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -82287546,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -82287546,"Half-Life 2 Lost Coast",purchase,1.0,0 -82287546,"Half-Life 2 Update",purchase,1.0,0 -82287546,"Hitman Sniper Challenge",purchase,1.0,0 -82287546,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -82287546,"PAYDAY Wolf Pack",purchase,1.0,0 -82287546,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",purchase,1.0,0 -82287546,"Penny Arcade's On the Rain-Slick Precipice of Darkness 4",purchase,1.0,0 -82287546,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -82287546,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -114727578,"Team Fortress 2",purchase,1.0,0 -114727578,"Team Fortress 2",play,144.0,0 -114727578,"The Elder Scrolls V Skyrim",purchase,1.0,0 -114727578,"The Elder Scrolls V Skyrim",play,136.0,0 -114727578,"Portal 2",purchase,1.0,0 -114727578,"Portal 2",play,17.4,0 -114727578,"Left 4 Dead 2",purchase,1.0,0 -114727578,"Left 4 Dead 2",play,16.1,0 -114727578,"RPG Maker VX Ace",purchase,1.0,0 -114727578,"RPG Maker VX Ace",play,13.8,0 -114727578,"AdVenture Capitalist",purchase,1.0,0 -114727578,"AdVenture Capitalist",play,6.2,0 -114727578,"Counter-Strike Global Offensive",purchase,1.0,0 -114727578,"Counter-Strike Global Offensive",play,3.7,0 -114727578,"Portal",purchase,1.0,0 -114727578,"Portal",play,3.6,0 -114727578,"Deus Ex Game of the Year Edition",purchase,1.0,0 -114727578,"Deus Ex Game of the Year Edition",play,3.2,0 -114727578,"Besiege",purchase,1.0,0 -114727578,"Besiege",play,2.3,0 -114727578,"7 Days to Die",purchase,1.0,0 -114727578,"7 Days to Die",play,2.0,0 -114727578,"Antichamber",purchase,1.0,0 -114727578,"Antichamber",play,2.0,0 -114727578,"Garry's Mod",purchase,1.0,0 -114727578,"Garry's Mod",play,1.7,0 -114727578,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -114727578,"The Elder Scrolls IV Oblivion ",play,1.5,0 -114727578,"Sakura Clicker",purchase,1.0,0 -114727578,"Sakura Clicker",play,0.5,0 -114727578,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -114727578,"RollerCoaster Tycoon 3 Platinum!",play,0.2,0 -114727578,"Pretty Girls Mahjong Solitaire",purchase,1.0,0 -114727578,"Pretty Girls Mahjong Solitaire",play,0.2,0 -114727578,"Voxelized",purchase,1.0,0 -114727578,"Bastion",purchase,1.0,0 -114727578,"BioShock",purchase,1.0,0 -114727578,"BioShock 2",purchase,1.0,0 -114727578,"BioShock Infinite",purchase,1.0,0 -114727578,"Block N Load",purchase,1.0,0 -114727578,"Counter-Strike",purchase,1.0,0 -114727578,"Counter-Strike Condition Zero",purchase,1.0,0 -114727578,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -114727578,"Counter-Strike Source",purchase,1.0,0 -114727578,"Day of Defeat",purchase,1.0,0 -114727578,"Day of Defeat Source",purchase,1.0,0 -114727578,"Deathmatch Classic",purchase,1.0,0 -114727578,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -114727578,"Dishonored",purchase,1.0,0 -114727578,"Five Nights at Freddy's",purchase,1.0,0 -114727578,"Five Nights at Freddy's 2",purchase,1.0,0 -114727578,"Five Nights at Freddy's 3",purchase,1.0,0 -114727578,"Five Nights at Freddy's 4",purchase,1.0,0 -114727578,"Ghostbusters The Video Game",purchase,1.0,0 -114727578,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -114727578,"Grand Theft Auto San Andreas",purchase,1.0,0 -114727578,"Grand Theft Auto San Andreas",purchase,1.0,0 -114727578,"Grand Theft Auto Vice City",purchase,1.0,0 -114727578,"Grand Theft Auto Vice City",purchase,1.0,0 -114727578,"Grand Theft Auto III",purchase,1.0,0 -114727578,"Grand Theft Auto III",purchase,1.0,0 -114727578,"Grand Theft Auto IV",purchase,1.0,0 -114727578,"Grim Fandango Remastered",purchase,1.0,0 -114727578,"Half-Life",purchase,1.0,0 -114727578,"Half-Life 2",purchase,1.0,0 -114727578,"Half-Life 2 Deathmatch",purchase,1.0,0 -114727578,"Half-Life 2 Episode One",purchase,1.0,0 -114727578,"Half-Life 2 Episode Two",purchase,1.0,0 -114727578,"Half-Life 2 Lost Coast",purchase,1.0,0 -114727578,"Half-Life Blue Shift",purchase,1.0,0 -114727578,"Half-Life Opposing Force",purchase,1.0,0 -114727578,"Half-Life Source",purchase,1.0,0 -114727578,"Half-Life Deathmatch Source",purchase,1.0,0 -114727578,"Hitman 2 Silent Assassin",purchase,1.0,0 -114727578,"Hitman Absolution",purchase,1.0,0 -114727578,"Hitman Blood Money",purchase,1.0,0 -114727578,"Hitman Codename 47",purchase,1.0,0 -114727578,"Hitman Contracts",purchase,1.0,0 -114727578,"Hitman Sniper Challenge",purchase,1.0,0 -114727578,"Hotline Miami",purchase,1.0,0 -114727578,"Hotline Miami 2 Wrong Number",purchase,1.0,0 -114727578,"I Have No Mouth, and I Must Scream",purchase,1.0,0 -114727578,"Indiana Jones and the Fate of Atlantis",purchase,1.0,0 -114727578,"Indiana Jones and the Last Crusade",purchase,1.0,0 -114727578,"Left 4 Dead",purchase,1.0,0 -114727578,"Loom",purchase,1.0,0 -114727578,"Mass Effect",purchase,1.0,0 -114727578,"Mass Effect 2",purchase,1.0,0 -114727578,"Oddworld Abe's Oddysee",purchase,1.0,0 -114727578,"PAYDAY 2",purchase,1.0,0 -114727578,"PAYDAY The Heist",purchase,1.0,0 -114727578,"POSTAL",purchase,1.0,0 -114727578,"POSTAL 2",purchase,1.0,0 -114727578,"Psychonauts",purchase,1.0,0 -114727578,"Psychonauts Demo",purchase,1.0,0 -114727578,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -114727578,"Ricochet",purchase,1.0,0 -114727578,"RPG Maker DS+ Expansion - Retro SciFi",purchase,1.0,0 -114727578,"RPG Maker DS Resource Pack",purchase,1.0,0 -114727578,"RPG Maker Futuristic Tiles Resource Pack",purchase,1.0,0 -114727578,"RPG Maker Mythos Horror Resource Pack",purchase,1.0,0 -114727578,"RPG Maker Old School Modern Resource Pack",purchase,1.0,0 -114727578,"RPG Maker Time Fantasy",purchase,1.0,0 -114727578,"RPG Maker Zombie Survival Graphic Pack",purchase,1.0,0 -114727578,"Ruzh Delta Z",purchase,1.0,0 -114727578,"Saints Row 2",purchase,1.0,0 -114727578,"Saints Row The Third",purchase,1.0,0 -114727578,"Saints Row IV",purchase,1.0,0 -114727578,"Star Wars - Battlefront II",purchase,1.0,0 -114727578,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -114727578,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -114727578,"Star Wars Dark Forces",purchase,1.0,0 -114727578,"Star Wars Empire at War Gold",purchase,1.0,0 -114727578,"Star Wars Knights of the Old Republic",purchase,1.0,0 -114727578,"Star Wars The Force Unleashed II",purchase,1.0,0 -114727578,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -114727578,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -114727578,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -114727578,"Star Wars Republic Commando",purchase,1.0,0 -114727578,"Star Wars Starfighter",purchase,1.0,0 -114727578,"Star Wars The Clone Wars Republic Heroes",purchase,1.0,0 -114727578,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -114727578,"Super Meat Boy",purchase,1.0,0 -114727578,"System Shock 2",purchase,1.0,0 -114727578,"Team Fortress Classic",purchase,1.0,0 -114727578,"The Dig",purchase,1.0,0 -114727578,"The Elder Scrolls III Morrowind",purchase,1.0,0 -114727578,"The Elder Scrolls Online Tamriel Unlimited",purchase,1.0,0 -114727578,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -114727578,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -114727578,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -114727578,"Undertale",purchase,1.0,0 -114727578,"Why So Evil",purchase,1.0,0 -134282559,"Dota 2",purchase,1.0,0 -134282559,"Dota 2",play,0.4,0 -292129258,"Team Fortress 2",purchase,1.0,0 -292129258,"Team Fortress 2",play,74.0,0 -156202123,"Infestation Survivor Stories",purchase,1.0,0 -156202123,"Infestation Survivor Stories",play,0.8,0 -156202123,"Draw a Stickman EPIC",purchase,1.0,0 -156202123,"Draw a Stickman EPIC",play,0.2,0 -130810920,"Dota 2",purchase,1.0,0 -130810920,"Dota 2",play,12.6,0 -49880470,"Speedball 2 Tournament",purchase,1.0,0 -49880470,"Speedball 2 Tournament",play,0.5,0 -84884010,"Sid Meier's Civilization V",purchase,1.0,0 -84884010,"Sid Meier's Civilization V",play,16.5,0 -84884010,"FTL Faster Than Light",purchase,1.0,0 -84884010,"FTL Faster Than Light",play,15.3,0 -61506984,"Stargate Resistance",purchase,1.0,0 -61506984,"Stargate Resistance",play,162.0,0 -166243691,"Dota 2",purchase,1.0,0 -166243691,"Dota 2",play,20.0,0 -292744287,"Team Fortress 2",purchase,1.0,0 -292744287,"Team Fortress 2",play,0.7,0 -292744287,"Blacklight Retribution",purchase,1.0,0 -292744287,"Brick-Force",purchase,1.0,0 -292744287,"Dirty Bomb",purchase,1.0,0 -292744287,"Dogs of War Online - Beta",purchase,1.0,0 -292744287,"Dwarfs F2P",purchase,1.0,0 -292744287,"Gems of War",purchase,1.0,0 -292744287,"Happy Wars",purchase,1.0,0 -292744287,"Heroes & Generals",purchase,1.0,0 -292744287,"Loadout",purchase,1.0,0 -292744287,"Magicka Wizard Wars",purchase,1.0,0 -292744287,"Marvel Heroes 2015",purchase,1.0,0 -292744287,"MicroVolts Surge",purchase,1.0,0 -292744287,"Might & Magic Duel of Champions",purchase,1.0,0 -292744287,"Nosgoth",purchase,1.0,0 -292744287,"Simply Chess",purchase,1.0,0 -292744287,"The Expendabros",purchase,1.0,0 -292744287,"Transformice",purchase,1.0,0 -292744287,"Tribes Ascend",purchase,1.0,0 -292744287,"Trove",purchase,1.0,0 -292744287,"Unturned",purchase,1.0,0 -292744287,"War Thunder",purchase,1.0,0 -178312427,"Dota 2",purchase,1.0,0 -178312427,"Dota 2",play,1.1,0 -170048045,"Dota 2",purchase,1.0,0 -170048045,"Dota 2",play,5.5,0 -39319649,"Dawn of Discovery - Venice",purchase,1.0,0 -39319649,"Dawn of Discovery - Venice",play,104.0,0 -39319649,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -39319649,"RollerCoaster Tycoon 3 Platinum!",play,95.0,0 -39319649,"Stronghold Crusader 2",purchase,1.0,0 -39319649,"Stronghold Crusader 2",play,79.0,0 -39319649,"Total War SHOGUN 2",purchase,1.0,0 -39319649,"Total War SHOGUN 2",play,72.0,0 -39319649,"Total War ROME II - Emperor Edition",purchase,1.0,0 -39319649,"Total War ROME II - Emperor Edition",play,69.0,0 -39319649,"Sid Meier's Civilization V",purchase,1.0,0 -39319649,"Sid Meier's Civilization V",play,67.0,0 -39319649,"Empire Total War",purchase,1.0,0 -39319649,"Empire Total War",play,64.0,0 -39319649,"Napoleon Total War",purchase,1.0,0 -39319649,"Napoleon Total War",play,43.0,0 -39319649,"Tropico 5",purchase,1.0,0 -39319649,"Tropico 5",play,36.0,0 -39319649,"Galactic Civilizations III",purchase,1.0,0 -39319649,"Galactic Civilizations III",play,27.0,0 -39319649,"Stronghold 3",purchase,1.0,0 -39319649,"Stronghold 3",play,14.1,0 -39319649,"Crusader Kings II",purchase,1.0,0 -39319649,"Crusader Kings II",play,9.3,0 -39319649,"Hearts of Iron III",purchase,1.0,0 -39319649,"Hearts of Iron III",play,6.6,0 -39319649,"Cities Skylines",purchase,1.0,0 -39319649,"Cities Skylines",play,1.1,0 -39319649,"Railroad Tycoon 3",purchase,1.0,0 -39319649,"Counter-Strike Source",purchase,1.0,0 -39319649,"Dawn of Discovery",purchase,1.0,0 -39319649,"Dawn of Discovery - Demo",purchase,1.0,0 -39319649,"Half-Life 2",purchase,1.0,0 -39319649,"Half-Life 2 Episode One",purchase,1.0,0 -39319649,"Half-Life 2 Episode Two",purchase,1.0,0 -39319649,"Half-Life 2 Lost Coast",purchase,1.0,0 -39319649,"Portal",purchase,1.0,0 -39319649,"Railroad Tycoon 2 Platinum",purchase,1.0,0 -39319649,"Stronghold HD",purchase,1.0,0 -39319649,"The Settlers 7 Paths to a Kingdom - Gold Edition",purchase,1.0,0 -244648789,"Terraria",purchase,1.0,0 -244648789,"Terraria",play,205.0,0 -244648789,"LEGO Worlds",purchase,1.0,0 -244648789,"LEGO Worlds",play,30.0,0 -101596530,"Team Fortress 2",purchase,1.0,0 -101596530,"Team Fortress 2",play,672.0,0 -101596530,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -101596530,"Call of Duty Modern Warfare 3 - Multiplayer",play,495.0,0 -101596530,"Garry's Mod",purchase,1.0,0 -101596530,"Garry's Mod",play,454.0,0 -101596530,"Broforce",purchase,1.0,0 -101596530,"Broforce",play,435.0,0 -101596530,"Terraria",purchase,1.0,0 -101596530,"Terraria",play,364.0,0 -101596530,"Left 4 Dead 2",purchase,1.0,0 -101596530,"Left 4 Dead 2",play,324.0,0 -101596530,"The Sims(TM) 3",purchase,1.0,0 -101596530,"The Sims(TM) 3",play,288.0,0 -101596530,"The Elder Scrolls V Skyrim",purchase,1.0,0 -101596530,"The Elder Scrolls V Skyrim",play,227.0,0 -101596530,"Goat Simulator",purchase,1.0,0 -101596530,"Goat Simulator",play,193.0,0 -101596530,"Batman Arkham City GOTY",purchase,1.0,0 -101596530,"Batman Arkham City GOTY",play,169.0,0 -101596530,"Scribblenauts Unlimited",purchase,1.0,0 -101596530,"Scribblenauts Unlimited",play,166.0,0 -101596530,"Assassin's Creed III",purchase,1.0,0 -101596530,"Assassin's Creed III",play,144.0,0 -101596530,"Spore",purchase,1.0,0 -101596530,"Spore",play,143.0,0 -101596530,"Little Inferno",purchase,1.0,0 -101596530,"Little Inferno",play,118.0,0 -101596530,"Assassin's Creed II",purchase,1.0,0 -101596530,"Assassin's Creed II",play,101.0,0 -101596530,"Portal",purchase,1.0,0 -101596530,"Portal",play,79.0,0 -101596530,"Assassin's Creed IV Black Flag",purchase,1.0,0 -101596530,"Assassin's Creed IV Black Flag",play,64.0,0 -101596530,"Call of Duty Modern Warfare 3",purchase,1.0,0 -101596530,"Call of Duty Modern Warfare 3",play,64.0,0 -101596530,"Gang Beasts",purchase,1.0,0 -101596530,"Gang Beasts",play,56.0,0 -101596530,"Grow Home",purchase,1.0,0 -101596530,"Grow Home",play,55.0,0 -101596530,"Unturned",purchase,1.0,0 -101596530,"Unturned",play,44.0,0 -101596530,"Castle Crashers",purchase,1.0,0 -101596530,"Castle Crashers",play,38.0,0 -101596530,"Starbound",purchase,1.0,0 -101596530,"Starbound",play,36.0,0 -101596530,"The Stanley Parable",purchase,1.0,0 -101596530,"The Stanley Parable",play,35.0,0 -101596530,"Environmental Station Alpha",purchase,1.0,0 -101596530,"Environmental Station Alpha",play,28.0,0 -101596530,"The Binding of Isaac Rebirth",purchase,1.0,0 -101596530,"The Binding of Isaac Rebirth",play,28.0,0 -101596530,"Dishonored",purchase,1.0,0 -101596530,"Dishonored",play,26.0,0 -101596530,"Counter-Strike Global Offensive",purchase,1.0,0 -101596530,"Counter-Strike Global Offensive",play,25.0,0 -101596530,"Shovel Knight",purchase,1.0,0 -101596530,"Shovel Knight",play,25.0,0 -101596530,"Gunpoint",purchase,1.0,0 -101596530,"Gunpoint",play,22.0,0 -101596530,"Mad Max",purchase,1.0,0 -101596530,"Mad Max",play,22.0,0 -101596530,"Game Dev Tycoon",purchase,1.0,0 -101596530,"Game Dev Tycoon",play,21.0,0 -101596530,"Darkspore",purchase,1.0,0 -101596530,"Darkspore",play,19.9,0 -101596530,"Tribes Ascend",purchase,1.0,0 -101596530,"Tribes Ascend",play,19.4,0 -101596530,"Project Zomboid",purchase,1.0,0 -101596530,"Project Zomboid",play,18.8,0 -101596530,"Dead Realm",purchase,1.0,0 -101596530,"Dead Realm",play,16.5,0 -101596530,"The Escapists",purchase,1.0,0 -101596530,"The Escapists",play,13.9,0 -101596530,"Source Filmmaker",purchase,1.0,0 -101596530,"Source Filmmaker",play,13.4,0 -101596530,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -101596530,"Call of Duty 4 Modern Warfare",play,13.0,0 -101596530,"Grand Theft Auto IV",purchase,1.0,0 -101596530,"Grand Theft Auto IV",play,13.0,0 -101596530,"Element4l",purchase,1.0,0 -101596530,"Element4l",play,12.8,0 -101596530,"Half-Life 2",purchase,1.0,0 -101596530,"Half-Life 2",play,11.6,0 -101596530,"Surgeon Simulator",purchase,1.0,0 -101596530,"Surgeon Simulator",play,11.1,0 -101596530,"Dungeon Defenders",purchase,1.0,0 -101596530,"Dungeon Defenders",play,10.3,0 -101596530,"H1Z1",purchase,1.0,0 -101596530,"H1Z1",play,9.2,0 -101596530,"Blacklight Retribution",purchase,1.0,0 -101596530,"Blacklight Retribution",play,8.2,0 -101596530,"BattleBlock Theater",purchase,1.0,0 -101596530,"BattleBlock Theater",play,7.5,0 -101596530,"I am Bread",purchase,1.0,0 -101596530,"I am Bread",play,6.8,0 -101596530,"Dungeon Defenders II",purchase,1.0,0 -101596530,"Dungeon Defenders II",play,5.0,0 -101596530,"Half-Life 2 Episode Two",purchase,1.0,0 -101596530,"Half-Life 2 Episode Two",play,5.0,0 -101596530,"Stranded Deep",purchase,1.0,0 -101596530,"Stranded Deep",play,4.9,0 -101596530,"The Forest",purchase,1.0,0 -101596530,"The Forest",play,4.3,0 -101596530,"Keep Talking and Nobody Explodes",purchase,1.0,0 -101596530,"Keep Talking and Nobody Explodes",play,4.3,0 -101596530,"Alan Wake",purchase,1.0,0 -101596530,"Alan Wake",play,4.2,0 -101596530,"Half-Life 2 Episode One",purchase,1.0,0 -101596530,"Half-Life 2 Episode One",play,4.2,0 -101596530,"Five Nights at Freddy's",purchase,1.0,0 -101596530,"Five Nights at Freddy's",play,3.9,0 -101596530,"Depth",purchase,1.0,0 -101596530,"Depth",play,3.3,0 -101596530,"Alien Isolation",purchase,1.0,0 -101596530,"Alien Isolation",play,3.1,0 -101596530,"The Expendabros",purchase,1.0,0 -101596530,"The Expendabros",play,2.8,0 -101596530,"Five Nights at Freddy's 2",purchase,1.0,0 -101596530,"Five Nights at Freddy's 2",play,2.6,0 -101596530,"Transformice",purchase,1.0,0 -101596530,"Transformice",play,1.8,0 -101596530,"Stick RPG 2",purchase,1.0,0 -101596530,"Stick RPG 2",play,1.7,0 -101596530,"PlanetSide 2",purchase,1.0,0 -101596530,"PlanetSide 2",play,1.7,0 -101596530,"World of Goo",purchase,1.0,0 -101596530,"World of Goo",play,1.6,0 -101596530,"Day One Garry's Incident",purchase,1.0,0 -101596530,"Day One Garry's Incident",play,1.6,0 -101596530,"Saints Row IV Inauguration Station",purchase,1.0,0 -101596530,"Saints Row IV Inauguration Station",play,1.6,0 -101596530,"Just Get Through",purchase,1.0,0 -101596530,"Just Get Through",play,1.6,0 -101596530,"Plague Inc Evolved",purchase,1.0,0 -101596530,"Plague Inc Evolved",play,1.5,0 -101596530,"Planetbase",purchase,1.0,0 -101596530,"Planetbase",play,1.5,0 -101596530,"Dead Space 2",purchase,1.0,0 -101596530,"Dead Space 2",play,1.0,0 -101596530,"Pixel Piracy",purchase,1.0,0 -101596530,"Pixel Piracy",play,0.8,0 -101596530,"GameGuru",purchase,1.0,0 -101596530,"GameGuru",play,0.7,0 -101596530,"Legend of Dungeon",purchase,1.0,0 -101596530,"Legend of Dungeon",play,0.6,0 -101596530,"Five Nights at Freddy's 3",purchase,1.0,0 -101596530,"Five Nights at Freddy's 3",play,0.5,0 -101596530,"Half-Life 2 Lost Coast",purchase,1.0,0 -101596530,"Half-Life 2 Lost Coast",play,0.3,0 -101596530,"Dirty Bomb",purchase,1.0,0 -101596530,"Dirty Bomb",play,0.2,0 -101596530,"Spooky's House of Jump Scares",purchase,1.0,0 -101596530,"Spooky's House of Jump Scares",play,0.1,0 -101596530,"Half-Life 2 Deathmatch",purchase,1.0,0 -101596530,"Fallen Earth",purchase,1.0,0 -101596530,"Castle Crashers - Blacksmith Pack",purchase,1.0,0 -101596530,"Castle Crashers - Pink Knight Pack",purchase,1.0,0 -101596530,"Counter-Strike Source",purchase,1.0,0 -101596530,"Day of Defeat Source",purchase,1.0,0 -101596530,"H1Z1 Test Server",purchase,1.0,0 -101596530,"Half-Life Deathmatch Source",purchase,1.0,0 -101596530,"Starbound - Unstable",purchase,1.0,0 -101596530,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -231914521,"Survarium",purchase,1.0,0 -182020275,"Team Fortress 2",purchase,1.0,0 -182020275,"Team Fortress 2",play,0.2,0 -241636947,"Unturned",purchase,1.0,0 -241636947,"Unturned",play,1.8,0 -201196839,"Dota 2",purchase,1.0,0 -201196839,"Dota 2",play,0.2,0 -94610298,"Football Manager 2012",purchase,1.0,0 -94610298,"Football Manager 2012",play,247.0,0 -108114779,"Team Fortress 2",purchase,1.0,0 -108114779,"Team Fortress 2",play,1093.0,0 -108114779,"Counter-Strike Global Offensive",purchase,1.0,0 -108114779,"Counter-Strike Global Offensive",play,260.0,0 -108114779,"Garry's Mod",purchase,1.0,0 -108114779,"Garry's Mod",play,158.0,0 -108114779,"Borderlands 2",purchase,1.0,0 -108114779,"Borderlands 2",play,64.0,0 -108114779,"PAYDAY 2",purchase,1.0,0 -108114779,"PAYDAY 2",play,59.0,0 -108114779,"Borderlands The Pre-Sequel",purchase,1.0,0 -108114779,"Borderlands The Pre-Sequel",play,54.0,0 -108114779,"Dota 2",purchase,1.0,0 -108114779,"Dota 2",play,41.0,0 -108114779,"Left 4 Dead 2",purchase,1.0,0 -108114779,"Left 4 Dead 2",play,24.0,0 -108114779,"Ace of Spades",purchase,1.0,0 -108114779,"Ace of Spades",play,13.6,0 -108114779,"Unturned",purchase,1.0,0 -108114779,"Unturned",play,10.6,0 -108114779,"Tales from the Borderlands",purchase,1.0,0 -108114779,"Tales from the Borderlands",play,8.9,0 -108114779,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -108114779,"Tom Clancy's Ghost Recon Phantoms - NA",play,7.9,0 -108114779,"Surgeon Simulator",purchase,1.0,0 -108114779,"Surgeon Simulator",play,4.0,0 -108114779,"Goat Simulator",purchase,1.0,0 -108114779,"Goat Simulator",play,3.7,0 -108114779,"Warframe",purchase,1.0,0 -108114779,"Warframe",play,2.7,0 -108114779,"Zombies Monsters Robots",purchase,1.0,0 -108114779,"Zombies Monsters Robots",play,1.9,0 -108114779,"Robocraft",purchase,1.0,0 -108114779,"Robocraft",play,1.2,0 -108114779,"Mirror's Edge",purchase,1.0,0 -108114779,"Mirror's Edge",play,0.7,0 -108114779,"Marvel Heroes 2015",purchase,1.0,0 -108114779,"Marvel Heroes 2015",play,0.3,0 -108114779,"Tactical Intervention",purchase,1.0,0 -108114779,"Tactical Intervention",play,0.1,0 -108114779,"Gang Beasts",purchase,1.0,0 -108114779,"Quake Live",purchase,1.0,0 -108114779,"Bad Rats",purchase,1.0,0 -108114779,"Elsword",purchase,1.0,0 -30912860,"Black Ink",purchase,1.0,0 -30912860,"Black Ink",play,229.0,0 -30912860,"XCOM Enemy Unknown",purchase,1.0,0 -30912860,"XCOM Enemy Unknown",play,24.0,0 -30912860,"Shadow Warrior",purchase,1.0,0 -30912860,"Shadow Warrior",play,22.0,0 -30912860,"The Elder Scrolls V Skyrim",purchase,1.0,0 -30912860,"The Elder Scrolls V Skyrim",play,20.0,0 -30912860,"Shadowrun Returns",purchase,1.0,0 -30912860,"Shadowrun Returns",play,15.4,0 -30912860,"KickBeat Steam Edition",purchase,1.0,0 -30912860,"KickBeat Steam Edition",play,13.2,0 -30912860,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -30912860,"Shadowrun Dragonfall - Director's Cut",play,12.8,0 -30912860,"HELLDIVERS",purchase,1.0,0 -30912860,"HELLDIVERS",play,10.0,0 -30912860,"Undertale",purchase,1.0,0 -30912860,"Undertale",play,8.6,0 -30912860,"Portal",purchase,1.0,0 -30912860,"Portal",play,7.5,0 -30912860,"Hotline Miami",purchase,1.0,0 -30912860,"Hotline Miami",play,7.1,0 -30912860,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -30912860,"Tiny and Big Grandpa's Leftovers",play,6.6,0 -30912860,"Homeworld Remastered Collection",purchase,1.0,0 -30912860,"Homeworld Remastered Collection",play,6.3,0 -30912860,"Gunpoint",purchase,1.0,0 -30912860,"Gunpoint",play,4.9,0 -30912860,"The Swapper",purchase,1.0,0 -30912860,"The Swapper",play,3.7,0 -30912860,"Magic The Gathering - Duels of the Planeswalkers 2013",purchase,1.0,0 -30912860,"Magic The Gathering - Duels of the Planeswalkers 2013",play,3.3,0 -30912860,"Godus",purchase,1.0,0 -30912860,"Godus",play,3.1,0 -30912860,"The Cave",purchase,1.0,0 -30912860,"The Cave",play,2.0,0 -30912860,"Strike Suit Zero",purchase,1.0,0 -30912860,"Strike Suit Zero",play,1.9,0 -30912860,"Gang Beasts",purchase,1.0,0 -30912860,"Gang Beasts",play,1.8,0 -30912860,"FTL Faster Than Light",purchase,1.0,0 -30912860,"FTL Faster Than Light",play,1.6,0 -30912860,"FaceRig",purchase,1.0,0 -30912860,"FaceRig",play,1.6,0 -30912860,"Shank 2",purchase,1.0,0 -30912860,"Shank 2",play,1.6,0 -30912860,"Antichamber",purchase,1.0,0 -30912860,"Antichamber",play,1.4,0 -30912860,"Mark of the Ninja",purchase,1.0,0 -30912860,"Mark of the Ninja",play,1.2,0 -30912860,"Void Destroyer",purchase,1.0,0 -30912860,"Void Destroyer",play,1.2,0 -30912860,"Nidhogg",purchase,1.0,0 -30912860,"Nidhogg",play,1.1,0 -30912860,"Lost Planet Extreme Condition",purchase,1.0,0 -30912860,"Lost Planet Extreme Condition",play,1.0,0 -30912860,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -30912860,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",play,1.0,0 -30912860,"Eets Munchies",purchase,1.0,0 -30912860,"Eets Munchies",play,0.9,0 -30912860,"Papers, Please",purchase,1.0,0 -30912860,"Papers, Please",play,0.9,0 -30912860,"Reus",purchase,1.0,0 -30912860,"Reus",play,0.7,0 -30912860,"Volume",purchase,1.0,0 -30912860,"Volume",play,0.7,0 -30912860,"Closure",purchase,1.0,0 -30912860,"Closure",play,0.6,0 -30912860,"The Bard's Tale",purchase,1.0,0 -30912860,"The Bard's Tale",play,0.6,0 -30912860,"Crayon Physics Deluxe",purchase,1.0,0 -30912860,"Crayon Physics Deluxe",play,0.6,0 -30912860,"Shallow Space",purchase,1.0,0 -30912860,"Shallow Space",play,0.6,0 -30912860,"Sniper Elite V2",purchase,1.0,0 -30912860,"Sniper Elite V2",play,0.6,0 -30912860,"The Bridge",purchase,1.0,0 -30912860,"The Bridge",play,0.5,0 -30912860,"Magic Duels",purchase,1.0,0 -30912860,"Magic Duels",play,0.5,0 -30912860,"Audiosurf",purchase,1.0,0 -30912860,"Audiosurf",play,0.4,0 -30912860,"Snapshot",purchase,1.0,0 -30912860,"Snapshot",play,0.4,0 -30912860,"Ticket to Ride",purchase,1.0,0 -30912860,"Ticket to Ride",play,0.4,0 -30912860,"Thomas Was Alone",purchase,1.0,0 -30912860,"Thomas Was Alone",play,0.4,0 -30912860,"Worms Reloaded",purchase,1.0,0 -30912860,"Worms Reloaded",play,0.3,0 -30912860,"Oddworld New 'n' Tasty",purchase,1.0,0 -30912860,"Oddworld New 'n' Tasty",play,0.3,0 -30912860,"A Virus Named TOM",purchase,1.0,0 -30912860,"A Virus Named TOM",play,0.3,0 -30912860,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -30912860,"Rocketbirds Hardboiled Chicken",play,0.3,0 -30912860,"Capsized",purchase,1.0,0 -30912860,"Capsized",play,0.3,0 -30912860,"Gish",purchase,1.0,0 -30912860,"Gish",play,0.3,0 -30912860,"HOARD",purchase,1.0,0 -30912860,"HOARD",play,0.2,0 -30912860,"Toki Tori 2+",purchase,1.0,0 -30912860,"Toki Tori 2+",play,0.2,0 -30912860,"Joe Danger 2 The Movie",purchase,1.0,0 -30912860,"Joe Danger 2 The Movie",play,0.2,0 -30912860,"Little Inferno",purchase,1.0,0 -30912860,"Little Inferno",play,0.2,0 -30912860,"Monaco",purchase,1.0,0 -30912860,"Monaco",play,0.2,0 -30912860,"AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome",purchase,1.0,0 -30912860,"AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome",play,0.2,0 -30912860,"Dear Esther",purchase,1.0,0 -30912860,"Dear Esther",play,0.1,0 -30912860,"Super Meat Boy",purchase,1.0,0 -30912860,"Super Meat Boy",play,0.1,0 -30912860,"English Country Tune",purchase,1.0,0 -30912860,"English Country Tune",play,0.1,0 -30912860,"Receiver",purchase,1.0,0 -30912860,"Proteus",purchase,1.0,0 -30912860,"Papo & Yo",purchase,1.0,0 -30912860,"Lugaru HD ",purchase,1.0,0 -30912860,"To the Moon",purchase,1.0,0 -30912860,"Race The Sun",purchase,1.0,0 -30912860,"And Yet It Moves",purchase,1.0,0 -30912860,"Anomaly 2",purchase,1.0,0 -30912860,"Aquaria",purchase,1.0,0 -30912860,"Awesomenauts",purchase,1.0,0 -30912860,"BIT.TRIP RUNNER",purchase,1.0,0 -30912860,"Bridge Constructor",purchase,1.0,0 -30912860,"Broken Sword 2 - the Smoking Mirror Remastered",purchase,1.0,0 -30912860,"Brtal Legend",purchase,1.0,0 -30912860,"Cogs",purchase,1.0,0 -30912860,"FEZ",purchase,1.0,0 -30912860,"Gemini Rue",purchase,1.0,0 -30912860,"Giana Sisters Twisted Dreams",purchase,1.0,0 -30912860,"Gone Home",purchase,1.0,0 -30912860,"Hammerfight",purchase,1.0,0 -30912860,"Hammerwatch",purchase,1.0,0 -30912860,"Hero Academy",purchase,1.0,0 -30912860,"Intrusion 2",purchase,1.0,0 -30912860,"Jack Lumber",purchase,1.0,0 -30912860,"Jamestown",purchase,1.0,0 -30912860,"Keep Talking and Nobody Explodes",purchase,1.0,0 -30912860,"Knights of Pen and Paper +1",purchase,1.0,0 -30912860,"LIMBO",purchase,1.0,0 -30912860,"LUFTRAUSERS",purchase,1.0,0 -30912860,"NightSky",purchase,1.0,0 -30912860,"Oil Rush",purchase,1.0,0 -30912860,"Penumbra Overture",purchase,1.0,0 -30912860,"Portal 2",purchase,1.0,0 -30912860,"Quantum Conundrum",purchase,1.0,0 -30912860,"Samorost 2",purchase,1.0,0 -30912860,"Sang-Froid - Tales of Werewolves",purchase,1.0,0 -30912860,"Shadowrun Dragonfall",purchase,1.0,0 -30912860,"Shadowrun Hong Kong",purchase,1.0,0 -30912860,"Shank",purchase,1.0,0 -30912860,"SteamWorld Dig",purchase,1.0,0 -30912860,"Ticket to Ride - Europe",purchase,1.0,0 -30912860,"Ticket to Ride - Legendary Asia",purchase,1.0,0 -30912860,"Ticket to Ride - USA 1910",purchase,1.0,0 -30912860,"Trine 2",purchase,1.0,0 -30912860,"TypeRider",purchase,1.0,0 -30912860,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -30912860,"VVVVVV",purchase,1.0,0 -30912860,"Warlock - Master of the Arcane",purchase,1.0,0 -30912860,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -30912860,"World of Goo",purchase,1.0,0 -228620097,"Unturned",purchase,1.0,0 -228620097,"Unturned",play,39.0,0 -121891688,"Batman Arkham Origins",purchase,1.0,0 -121891688,"Batman Arkham Origins",play,104.0,0 -121891688,"Batman Arkham City GOTY",purchase,1.0,0 -121891688,"Batman Arkham City GOTY",play,78.0,0 -121891688,"Mass Effect 2",purchase,1.0,0 -121891688,"Mass Effect 2",play,66.0,0 -121891688,"Mass Effect",purchase,1.0,0 -121891688,"Mass Effect",play,21.0,0 -121891688,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -121891688,"Batman Arkham Asylum GOTY Edition",play,9.4,0 -121891688,"Grand Theft Auto IV",purchase,1.0,0 -121891688,"Grand Theft Auto IV",play,5.3,0 -121891688,"Unturned",purchase,1.0,0 -121891688,"Unturned",play,2.3,0 -121891688,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -121891688,"Batman Arkham Origins - Initiation",purchase,1.0,0 -121891688,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -154274745,"Dota 2",purchase,1.0,0 -154274745,"Dota 2",play,0.3,0 -284604128,"Dota 2",purchase,1.0,0 -284604128,"Dota 2",play,0.1,0 -170557064,"Dota 2",purchase,1.0,0 -170557064,"Dota 2",play,20.0,0 -198464515,"Dota 2",purchase,1.0,0 -198464515,"Dota 2",play,0.8,0 -198464515,"Counter-Strike Nexon Zombies",purchase,1.0,0 -198464515,"War Thunder",purchase,1.0,0 -158952821,"Counter-Strike Global Offensive",purchase,1.0,0 -158952821,"Portal",purchase,1.0,0 -155919035,"Counter-Strike Global Offensive",purchase,1.0,0 -155919035,"Counter-Strike Global Offensive",play,205.0,0 -155919035,"Garry's Mod",purchase,1.0,0 -155919035,"Garry's Mod",play,152.0,0 -155919035,"Terraria",purchase,1.0,0 -155919035,"Terraria",play,136.0,0 -155919035,"AdVenture Capitalist",purchase,1.0,0 -155919035,"AdVenture Capitalist",play,48.0,0 -155919035,"Sid Meier's Civilization V",purchase,1.0,0 -155919035,"Sid Meier's Civilization V",play,48.0,0 -155919035,"Sunrider Academy",purchase,1.0,0 -155919035,"Sunrider Academy",play,43.0,0 -155919035,"Mad Games Tycoon",purchase,1.0,0 -155919035,"Mad Games Tycoon",play,26.0,0 -155919035,"GamersGoMakers",purchase,1.0,0 -155919035,"GamersGoMakers",play,26.0,0 -155919035,"Sleeping Dogs",purchase,1.0,0 -155919035,"Sleeping Dogs",play,23.0,0 -155919035,"Mass Effect",purchase,1.0,0 -155919035,"Mass Effect",play,22.0,0 -155919035,"Game Dev Tycoon",purchase,1.0,0 -155919035,"Game Dev Tycoon",play,15.5,0 -155919035,"Cities Skylines",purchase,1.0,0 -155919035,"Cities Skylines",play,15.3,0 -155919035,"Software Inc.",purchase,1.0,0 -155919035,"Software Inc.",play,15.0,0 -155919035,"Grand Theft Auto San Andreas",purchase,1.0,0 -155919035,"Grand Theft Auto San Andreas",play,13.6,0 -155919035,"HuniePop",purchase,1.0,0 -155919035,"HuniePop",play,12.8,0 -155919035,"FTL Faster Than Light",purchase,1.0,0 -155919035,"FTL Faster Than Light",play,10.8,0 -155919035,"NEKOPARA Vol. 1",purchase,1.0,0 -155919035,"NEKOPARA Vol. 1",play,10.8,0 -155919035,"Team Fortress 2",purchase,1.0,0 -155919035,"Team Fortress 2",play,9.8,0 -155919035,"GRID Autosport",purchase,1.0,0 -155919035,"GRID Autosport",play,9.0,0 -155919035,"Saints Row IV",purchase,1.0,0 -155919035,"Saints Row IV",play,9.0,0 -155919035,"Kerbal Space Program",purchase,1.0,0 -155919035,"Kerbal Space Program",play,8.9,0 -155919035,"Brilliant Bob",purchase,1.0,0 -155919035,"Brilliant Bob",play,8.1,0 -155919035,"Grand Theft Auto IV",purchase,1.0,0 -155919035,"Grand Theft Auto IV",play,8.0,0 -155919035,"Robocraft",purchase,1.0,0 -155919035,"Robocraft",play,7.4,0 -155919035,"Portal 2",purchase,1.0,0 -155919035,"Portal 2",play,7.1,0 -155919035,"Unturned",purchase,1.0,0 -155919035,"Unturned",play,7.1,0 -155919035,"LYNE",purchase,1.0,0 -155919035,"LYNE",play,6.9,0 -155919035,"Empire TV Tycoon",purchase,1.0,0 -155919035,"Empire TV Tycoon",play,6.7,0 -155919035,"Half-Life 2",purchase,1.0,0 -155919035,"Half-Life 2",play,6.4,0 -155919035,"SpeedRunners",purchase,1.0,0 -155919035,"SpeedRunners",play,6.0,0 -155919035,"The Lost Crown",purchase,1.0,0 -155919035,"The Lost Crown",play,6.0,0 -155919035,"X-Blades",purchase,1.0,0 -155919035,"X-Blades",play,5.3,0 -155919035,"Game Tycoon 1.5",purchase,1.0,0 -155919035,"Game Tycoon 1.5",play,4.9,0 -155919035,"Epigenesis",purchase,1.0,0 -155919035,"Epigenesis",play,4.8,0 -155919035,"Cities in Motion 2",purchase,1.0,0 -155919035,"Cities in Motion 2",play,4.8,0 -155919035,"Two Worlds Epic Edition",purchase,1.0,0 -155919035,"Two Worlds Epic Edition",play,4.8,0 -155919035,"QuestRun",purchase,1.0,0 -155919035,"QuestRun",play,4.7,0 -155919035,"Mount & Blade Warband",purchase,1.0,0 -155919035,"Mount & Blade Warband",play,4.6,0 -155919035,"XCOM Enemy Unknown",purchase,1.0,0 -155919035,"XCOM Enemy Unknown",play,4.6,0 -155919035,"Buzz Aldrin's Space Program Manager",purchase,1.0,0 -155919035,"Buzz Aldrin's Space Program Manager",play,4.5,0 -155919035,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -155919035,"The Witcher 2 Assassins of Kings Enhanced Edition",play,4.4,0 -155919035,"The Walking Dead",purchase,1.0,0 -155919035,"The Walking Dead",play,4.3,0 -155919035,"Hollywood Visionary",purchase,1.0,0 -155919035,"Hollywood Visionary",play,4.1,0 -155919035,"Euro Truck Simulator 2",purchase,1.0,0 -155919035,"Euro Truck Simulator 2",play,4.1,0 -155919035,"Little Racers STREET",purchase,1.0,0 -155919035,"Little Racers STREET",play,4.0,0 -155919035,"Chivalry Medieval Warfare",purchase,1.0,0 -155919035,"Chivalry Medieval Warfare",play,4.0,0 -155919035,"The Elder Scrolls V Skyrim",purchase,1.0,0 -155919035,"The Elder Scrolls V Skyrim",play,4.0,0 -155919035,"Papers, Please",purchase,1.0,0 -155919035,"Papers, Please",play,4.0,0 -155919035,"Portal",purchase,1.0,0 -155919035,"Portal",play,3.9,0 -155919035,"Why So Evil",purchase,1.0,0 -155919035,"Why So Evil",play,3.8,0 -155919035,"Out of the Park Baseball 15",purchase,1.0,0 -155919035,"Out of the Park Baseball 15",play,3.8,0 -155919035,"Apollo4x",purchase,1.0,0 -155919035,"Apollo4x",play,3.8,0 -155919035,"FootLOL Epic Fail League",purchase,1.0,0 -155919035,"FootLOL Epic Fail League",play,3.8,0 -155919035,"Caster",purchase,1.0,0 -155919035,"Caster",play,3.7,0 -155919035,"Go! Go! Nippon! ~My First Trip to Japan~",purchase,1.0,0 -155919035,"Go! Go! Nippon! ~My First Trip to Japan~",play,3.7,0 -155919035,"Warlock - Master of the Arcane",purchase,1.0,0 -155919035,"Warlock - Master of the Arcane",play,3.7,0 -155919035,"Sakura Clicker",purchase,1.0,0 -155919035,"Sakura Clicker",play,3.7,0 -155919035,"Super Motherload",purchase,1.0,0 -155919035,"Super Motherload",play,3.6,0 -155919035,"The Culling Of The Cows",purchase,1.0,0 -155919035,"The Culling Of The Cows",play,3.6,0 -155919035,"Empyrion - Galactic Survival",purchase,1.0,0 -155919035,"Empyrion - Galactic Survival",play,3.6,0 -155919035,"RPG Tycoon",purchase,1.0,0 -155919035,"RPG Tycoon",play,3.6,0 -155919035,"DLC Quest",purchase,1.0,0 -155919035,"DLC Quest",play,3.6,0 -155919035,"Universe Sandbox",purchase,1.0,0 -155919035,"Universe Sandbox",play,3.5,0 -155919035,"Stealth Inc 2",purchase,1.0,0 -155919035,"Stealth Inc 2",play,3.5,0 -155919035,"Temper Tantrum",purchase,1.0,0 -155919035,"Temper Tantrum",play,3.4,0 -155919035,"Saturday Morning RPG",purchase,1.0,0 -155919035,"Saturday Morning RPG",play,3.4,0 -155919035,"The Ship",purchase,1.0,0 -155919035,"The Ship",play,3.4,0 -155919035,"The Albino Hunter",purchase,1.0,0 -155919035,"The Albino Hunter",play,3.4,0 -155919035,"The Slaughtering Grounds",purchase,1.0,0 -155919035,"The Slaughtering Grounds",play,3.4,0 -155919035,"Prison Architect",purchase,1.0,0 -155919035,"Prison Architect",play,3.4,0 -155919035,"Boson X",purchase,1.0,0 -155919035,"Boson X",play,3.3,0 -155919035,"NEKOPARA Vol. 0",purchase,1.0,0 -155919035,"NEKOPARA Vol. 0",play,3.2,0 -155919035,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -155919035,"Nosferatu The Wrath of Malachi",play,3.2,0 -155919035,"Grimm",purchase,1.0,0 -155919035,"Grimm",play,3.2,0 -155919035,"Democracy 3",purchase,1.0,0 -155919035,"Democracy 3",play,3.1,0 -155919035,"Borderlands",purchase,1.0,0 -155919035,"Borderlands",play,3.1,0 -155919035,"Grimoire Manastorm",purchase,1.0,0 -155919035,"Grimoire Manastorm",play,3.0,0 -155919035,"Race The Sun",purchase,1.0,0 -155919035,"Race The Sun",play,3.0,0 -155919035,"Deadlings - Rotten Edition",purchase,1.0,0 -155919035,"Deadlings - Rotten Edition",play,2.9,0 -155919035,"BLOCKADE 3D",purchase,1.0,0 -155919035,"BLOCKADE 3D",play,2.9,0 -155919035,"Enclave",purchase,1.0,0 -155919035,"Enclave",play,2.9,0 -155919035,"Revolution Ace",purchase,1.0,0 -155919035,"Revolution Ace",play,2.9,0 -155919035,"Racer 8",purchase,1.0,0 -155919035,"Racer 8",play,2.9,0 -155919035,"Skyborn",purchase,1.0,0 -155919035,"Skyborn",play,2.9,0 -155919035,"PAYDAY The Heist",purchase,1.0,0 -155919035,"PAYDAY The Heist",play,2.8,0 -155919035,"Rome Total War",purchase,1.0,0 -155919035,"Rome Total War",play,2.8,0 -155919035,"BattleBlock Theater",purchase,1.0,0 -155919035,"BattleBlock Theater",play,2.8,0 -155919035,"Polarity",purchase,1.0,0 -155919035,"Polarity",play,2.8,0 -155919035,"Dishonored (RU)",purchase,1.0,0 -155919035,"Dishonored (RU)",play,2.8,0 -155919035,"Showtime!",purchase,1.0,0 -155919035,"Showtime!",play,2.8,0 -155919035,"World of Guns Gun Disassembly",purchase,1.0,0 -155919035,"World of Guns Gun Disassembly",play,2.7,0 -155919035,"Escape Machines",purchase,1.0,0 -155919035,"Escape Machines",play,2.7,0 -155919035,"Robotex",purchase,1.0,0 -155919035,"Robotex",play,2.7,0 -155919035,"Waveform",purchase,1.0,0 -155919035,"Waveform",play,2.6,0 -155919035,"Gun Monkeys",purchase,1.0,0 -155919035,"Gun Monkeys",play,2.6,0 -155919035,"Grimind",purchase,1.0,0 -155919035,"Grimind",play,2.6,0 -155919035,"Out There Somewhere",purchase,1.0,0 -155919035,"Out There Somewhere",play,2.6,0 -155919035,"Despair",purchase,1.0,0 -155919035,"Despair",play,2.5,0 -155919035,"Jack Lumber",purchase,1.0,0 -155919035,"Jack Lumber",play,2.4,0 -155919035,"Space Engineers",purchase,1.0,0 -155919035,"Space Engineers",play,2.4,0 -155919035,"Defy Gravity",purchase,1.0,0 -155919035,"Defy Gravity",play,2.4,0 -155919035,"Spooky Cats",purchase,1.0,0 -155919035,"Spooky Cats",play,2.4,0 -155919035,"Chip",purchase,1.0,0 -155919035,"Chip",play,2.2,0 -155919035,"Grand Theft Auto III",purchase,1.0,0 -155919035,"Grand Theft Auto III",play,2.1,0 -155919035,"Anomaly Warzone Earth Mobile Campaign",purchase,1.0,0 -155919035,"Anomaly Warzone Earth Mobile Campaign",play,2.1,0 -155919035,"Hyperdimension Neptunia Re;Birth1",purchase,1.0,0 -155919035,"Hyperdimension Neptunia Re;Birth1",play,2.1,0 -155919035,"Bejeweled 3",purchase,1.0,0 -155919035,"Bejeweled 3",play,2.1,0 -155919035,"Grand Theft Auto Vice City",purchase,1.0,0 -155919035,"Grand Theft Auto Vice City",play,2.1,0 -155919035,"The Ship Single Player",purchase,1.0,0 -155919035,"The Ship Single Player",play,2.0,0 -155919035,"Universe Sandbox ",purchase,1.0,0 -155919035,"Universe Sandbox ",play,1.9,0 -155919035,"Mass Effect 2",purchase,1.0,0 -155919035,"Mass Effect 2",play,1.9,0 -155919035,"Driver San Francisco",purchase,1.0,0 -155919035,"Driver San Francisco",play,1.8,0 -155919035,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -155919035,"Burnout Paradise The Ultimate Box",play,1.8,0 -155919035,"Canyon Capers",purchase,1.0,0 -155919035,"Canyon Capers",play,1.8,0 -155919035,"Intrusion 2",purchase,1.0,0 -155919035,"Intrusion 2",play,1.7,0 -155919035,"Mechanic Escape",purchase,1.0,0 -155919035,"Mechanic Escape",play,1.7,0 -155919035,"Royal Defense",purchase,1.0,0 -155919035,"Royal Defense",play,1.7,0 -155919035,"Magicka",purchase,1.0,0 -155919035,"Magicka",play,1.7,0 -155919035,"Taxi",purchase,1.0,0 -155919035,"Taxi",play,1.5,0 -155919035,"Face of Mankind",purchase,1.0,0 -155919035,"Face of Mankind",play,1.5,0 -155919035,"Overcast - Walden and the Werewolf",purchase,1.0,0 -155919035,"Overcast - Walden and the Werewolf",play,1.5,0 -155919035,"Just Cause 2",purchase,1.0,0 -155919035,"Just Cause 2",play,1.4,0 -155919035,"Besiege",purchase,1.0,0 -155919035,"Besiege",play,1.4,0 -155919035,"Spore",purchase,1.0,0 -155919035,"Spore",play,1.4,0 -155919035,"The Stanley Parable",purchase,1.0,0 -155919035,"The Stanley Parable",play,1.4,0 -155919035,"Far Cry 2",purchase,1.0,0 -155919035,"Far Cry 2",play,1.3,0 -155919035,"Anomaly Warzone Earth",purchase,1.0,0 -155919035,"Anomaly Warzone Earth",play,1.3,0 -155919035,"Space Farmers",purchase,1.0,0 -155919035,"Space Farmers",play,1.2,0 -155919035,"Fallout New Vegas",purchase,1.0,0 -155919035,"Fallout New Vegas",play,1.2,0 -155919035,"Thomas Was Alone",purchase,1.0,0 -155919035,"Thomas Was Alone",play,1.1,0 -155919035,"Hacker Evolution Duality",purchase,1.0,0 -155919035,"Hacker Evolution Duality",play,1.1,0 -155919035,"Commando Jack",purchase,1.0,0 -155919035,"Commando Jack",play,1.0,0 -155919035,"Knights and Merchants",purchase,1.0,0 -155919035,"Knights and Merchants",play,0.9,0 -155919035,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -155919035,"Tropico 3 - Steam Special Edition",play,0.8,0 -155919035,"Brawlhalla",purchase,1.0,0 -155919035,"Brawlhalla",play,0.8,0 -155919035,"Bridge Project",purchase,1.0,0 -155919035,"Bridge Project",play,0.8,0 -155919035,"Into The War",purchase,1.0,0 -155919035,"Into The War",play,0.7,0 -155919035,"Dev Guy",purchase,1.0,0 -155919035,"Dev Guy",play,0.7,0 -155919035,"Crash Time II",purchase,1.0,0 -155919035,"Crash Time II",play,0.6,0 -155919035,"Heroes & Generals",purchase,1.0,0 -155919035,"Heroes & Generals",play,0.6,0 -155919035,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -155919035,"Galactic Civilizations II Ultimate Edition",play,0.6,0 -155919035,"Seduce Me the Otome",purchase,1.0,0 -155919035,"Seduce Me the Otome",play,0.5,0 -155919035,"iBomber Defense Pacific",purchase,1.0,0 -155919035,"iBomber Defense Pacific",play,0.5,0 -155919035,"Oil Rush",purchase,1.0,0 -155919035,"Oil Rush",play,0.5,0 -155919035,"Supreme Ruler Cold War",purchase,1.0,0 -155919035,"Supreme Ruler Cold War",play,0.4,0 -155919035,"KnightShift",purchase,1.0,0 -155919035,"KnightShift",play,0.4,0 -155919035,"Famaze",purchase,1.0,0 -155919035,"Famaze",play,0.3,0 -155919035,"The Ship Tutorial",purchase,1.0,0 -155919035,"The Ship Tutorial",play,0.2,0 -155919035,"Infect and Destroy",purchase,1.0,0 -155919035,"Infect and Destroy",play,0.2,0 -155919035,"The Guild II",purchase,1.0,0 -155919035,"The Guild II",play,0.2,0 -155919035,"Everlasting Summer",purchase,1.0,0 -155919035,"Everlasting Summer",play,0.2,0 -155919035,"World War II Panzer Claws",purchase,1.0,0 -155919035,"World War II Panzer Claws",play,0.2,0 -155919035,"Rome Total War - Alexander",purchase,1.0,0 -155919035,"Rome Total War - Alexander",play,0.1,0 -155919035,"Space Hack",purchase,1.0,0 -155919035,"Space Hack",play,0.1,0 -155919035,"Orborun",purchase,1.0,0 -155919035,"Orborun",play,0.1,0 -155919035,"One Day For Ched",purchase,1.0,0 -155919035,"Cubetractor",purchase,1.0,0 -155919035,"English Country Tune",purchase,1.0,0 -155919035,"Receiver",purchase,1.0,0 -155919035,"Soulbringer",purchase,1.0,0 -155919035,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -155919035,"Patch testing for Chivalry",purchase,1.0,0 -155919035,"Magicka Wizard Wars",purchase,1.0,0 -155919035,"Amnesia The Dark Descent",purchase,1.0,0 -155919035,"Aveyond 3-2 Gates of Night",purchase,1.0,0 -155919035,"Bloop",purchase,1.0,0 -155919035,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -155919035,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -155919035,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -155919035,"Car Mechanic Simulator 2014",purchase,1.0,0 -155919035,"Commander Conquest of the Americas Gold",purchase,1.0,0 -155919035,"Dead Bits",purchase,1.0,0 -155919035,"Democracy 3 Clones and Drones",purchase,1.0,0 -155919035,"Democracy 3 Extremism",purchase,1.0,0 -155919035,"Democracy 3 Extremism Linux",purchase,1.0,0 -155919035,"Democracy 3 Extremism Mac",purchase,1.0,0 -155919035,"Democracy 3 Social Engineering",purchase,1.0,0 -155919035,"Democracy 3 Social Engineering Linux",purchase,1.0,0 -155919035,"Democracy 3 Social Engineering Mac",purchase,1.0,0 -155919035,"Desert Thunder",purchase,1.0,0 -155919035,"Dirty Bomb",purchase,1.0,0 -155919035,"DogFighter",purchase,1.0,0 -155919035,"Earth 2150 Lost Souls",purchase,1.0,0 -155919035,"Earth 2150 The Moon Project",purchase,1.0,0 -155919035,"East India Company Gold",purchase,1.0,0 -155919035,"Enemy Mind",purchase,1.0,0 -155919035,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -155919035,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -155919035,"Gare Sapphire Mechs",purchase,1.0,0 -155919035,"Glacier 3 The Meltdown",purchase,1.0,0 -155919035,"Gorky 17",purchase,1.0,0 -155919035,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -155919035,"Grand Theft Auto San Andreas",purchase,1.0,0 -155919035,"Grand Theft Auto Vice City",purchase,1.0,0 -155919035,"Grand Theft Auto III",purchase,1.0,0 -155919035,"Gun Metal",purchase,1.0,0 -155919035,"Half-Life 2 Episode One",purchase,1.0,0 -155919035,"Half-Life 2 Episode Two",purchase,1.0,0 -155919035,"Half-Life 2 Lost Coast",purchase,1.0,0 -155919035,"Hitman 2 Silent Assassin",purchase,1.0,0 -155919035,"Hostile Waters Antaeus Rising",purchase,1.0,0 -155919035,"Hyper Fighters",purchase,1.0,0 -155919035,"Litil Divil",purchase,1.0,0 -155919035,"Marine Sharpshooter II Jungle Warfare",purchase,1.0,0 -155919035,"Pirates of Black Cove Gold",purchase,1.0,0 -155919035,"Realms of the Haunting",purchase,1.0,0 -155919035,"Serious Sam 2",purchase,1.0,0 -155919035,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -155919035,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -155919035,"Steel & Steam Episode 1",purchase,1.0,0 -155919035,"The Fish Fillets 2",purchase,1.0,0 -155919035,"The Guild Gold Edition",purchase,1.0,0 -155919035,"The Guild II - Pirates of the European Seas",purchase,1.0,0 -155919035,"The Guild II Renaissance",purchase,1.0,0 -155919035,"Victory Command",purchase,1.0,0 -155919035,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -30561172,"Half-Life 2 Lost Coast",purchase,1.0,0 -30561172,"Half-Life 2 Lost Coast",play,0.7,0 -30561172,"Half-Life 2 Deathmatch",purchase,1.0,0 -30561172,"Half-Life 2 Deathmatch",play,0.5,0 -154374262,"Dota 2",purchase,1.0,0 -154374262,"Dota 2",play,1010.0,0 -154374262,"APB Reloaded",purchase,1.0,0 -154374262,"Aura Kingdom",purchase,1.0,0 -154374262,"FreeStyle2 Street Basketball",purchase,1.0,0 -154374262,"Trove",purchase,1.0,0 -154374262,"Unturned",purchase,1.0,0 -206436717,"Dota 2",purchase,1.0,0 -206436717,"Dota 2",play,0.7,0 -206436717,"F.E.A.R. Online",purchase,1.0,0 -173256445,"Dota 2",purchase,1.0,0 -173256445,"Dota 2",play,19.9,0 -217660785,"Dota 2",purchase,1.0,0 -217660785,"Dota 2",play,1.1,0 -217660785,"Galcon 2",purchase,1.0,0 -123449538,"Torchlight II",purchase,1.0,0 -123449538,"Torchlight II",play,27.0,0 -71449134,"Sid Meier's Civilization IV",purchase,1.0,0 -71449134,"Sid Meier's Civilization IV",play,1.5,0 -71449134,"Sid Meier's Civilization IV",purchase,1.0,0 -167460926,"Dota 2",purchase,1.0,0 -167460926,"Dota 2",play,98.0,0 -33659046,"Counter-Strike Source",purchase,1.0,0 -33659046,"Counter-Strike Source",play,837.0,0 -33659046,"Counter-Strike Global Offensive",purchase,1.0,0 -33659046,"Counter-Strike Global Offensive",play,365.0,0 -33659046,"Rust",purchase,1.0,0 -33659046,"Rust",play,130.0,0 -33659046,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -33659046,"Call of Duty Modern Warfare 2 - Multiplayer",play,104.0,0 -33659046,"Garry's Mod",purchase,1.0,0 -33659046,"Garry's Mod",play,101.0,0 -33659046,"Trove",purchase,1.0,0 -33659046,"Trove",play,91.0,0 -33659046,"Arma 3",purchase,1.0,0 -33659046,"Arma 3",play,37.0,0 -33659046,"Rocket League",purchase,1.0,0 -33659046,"Rocket League",play,36.0,0 -33659046,"Left 4 Dead 2",purchase,1.0,0 -33659046,"Left 4 Dead 2",play,34.0,0 -33659046,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -33659046,"Plants vs. Zombies Game of the Year",play,32.0,0 -33659046,"Team Fortress 2",purchase,1.0,0 -33659046,"Team Fortress 2",play,31.0,0 -33659046,"Dungeon Defenders II",purchase,1.0,0 -33659046,"Dungeon Defenders II",play,25.0,0 -33659046,"Football Manager 2013",purchase,1.0,0 -33659046,"Football Manager 2013",play,23.0,0 -33659046,"DayZ",purchase,1.0,0 -33659046,"DayZ",play,23.0,0 -33659046,"Day of Defeat Source",purchase,1.0,0 -33659046,"Day of Defeat Source",play,18.4,0 -33659046,"The Sims(TM) 3",purchase,1.0,0 -33659046,"The Sims(TM) 3",play,18.1,0 -33659046,"Football Manager 2015",purchase,1.0,0 -33659046,"Football Manager 2015",play,16.4,0 -33659046,"Clicker Heroes",purchase,1.0,0 -33659046,"Clicker Heroes",play,13.5,0 -33659046,"Age of Chivalry",purchase,1.0,0 -33659046,"Age of Chivalry",play,10.3,0 -33659046,"PAYDAY 2",purchase,1.0,0 -33659046,"PAYDAY 2",play,9.3,0 -33659046,"Dota 2",purchase,1.0,0 -33659046,"Dota 2",play,3.7,0 -33659046,"Call of Duty Modern Warfare 2",purchase,1.0,0 -33659046,"Call of Duty Modern Warfare 2",play,1.7,0 -33659046,"Arma 2 Operation Arrowhead",purchase,1.0,0 -33659046,"Arma 2 Operation Arrowhead",play,1.4,0 -33659046,"FORCED",purchase,1.0,0 -33659046,"FORCED",play,0.7,0 -33659046,"Dead Realm",purchase,1.0,0 -33659046,"Dead Realm",play,0.6,0 -33659046,"Besiege",purchase,1.0,0 -33659046,"Besiege",play,0.2,0 -33659046,"Arma 2",purchase,1.0,0 -33659046,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -33659046,"Arma 3 Zeus",purchase,1.0,0 -33659046,"Half-Life 2 Deathmatch",purchase,1.0,0 -33659046,"Half-Life 2 Lost Coast",purchase,1.0,0 -33659046,"TOME Immortal Arena",purchase,1.0,0 -156818121,"Garry's Mod",purchase,1.0,0 -156818121,"Garry's Mod",play,372.0,0 -156818121,"Assassin's Creed IV Black Flag",purchase,1.0,0 -156818121,"Assassin's Creed IV Black Flag",play,113.0,0 -156818121,"Left 4 Dead 2",purchase,1.0,0 -156818121,"Left 4 Dead 2",play,87.0,0 -156818121,"The Elder Scrolls V Skyrim",purchase,1.0,0 -156818121,"The Elder Scrolls V Skyrim",play,77.0,0 -156818121,"Star Wars - Battlefront II",purchase,1.0,0 -156818121,"Star Wars - Battlefront II",play,66.0,0 -156818121,"Just Cause 2",purchase,1.0,0 -156818121,"Just Cause 2",play,59.0,0 -156818121,"Team Fortress 2",purchase,1.0,0 -156818121,"Team Fortress 2",play,45.0,0 -156818121,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -156818121,"Viscera Cleanup Detail Santa's Rampage",play,35.0,0 -156818121,"Half-Life 2",purchase,1.0,0 -156818121,"Half-Life 2",play,22.0,0 -156818121,"Grand Theft Auto IV",purchase,1.0,0 -156818121,"Grand Theft Auto IV",play,22.0,0 -156818121,"Borderlands 2",purchase,1.0,0 -156818121,"Borderlands 2",play,21.0,0 -156818121,"BioShock",purchase,1.0,0 -156818121,"BioShock",play,18.8,0 -156818121,"Robocraft",purchase,1.0,0 -156818121,"Robocraft",play,18.7,0 -156818121,"Sid Meier's Civilization IV",purchase,1.0,0 -156818121,"Sid Meier's Civilization IV",play,17.0,0 -156818121,"Alice Madness Returns",purchase,1.0,0 -156818121,"Alice Madness Returns",play,16.1,0 -156818121,"Dead Space 2",purchase,1.0,0 -156818121,"Dead Space 2",play,15.7,0 -156818121,"BioShock Infinite",purchase,1.0,0 -156818121,"BioShock Infinite",play,13.9,0 -156818121,"POSTAL 2",purchase,1.0,0 -156818121,"POSTAL 2",play,12.9,0 -156818121,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -156818121,"Just Cause 2 Multiplayer Mod",play,12.7,0 -156818121,"Wolfenstein The New Order",purchase,1.0,0 -156818121,"Wolfenstein The New Order",play,11.5,0 -156818121,"Half-Life 2 Episode Two",purchase,1.0,0 -156818121,"Half-Life 2 Episode Two",play,11.5,0 -156818121,"Dead Space",purchase,1.0,0 -156818121,"Dead Space",play,10.9,0 -156818121,"Surgeon Simulator",purchase,1.0,0 -156818121,"Surgeon Simulator",play,10.4,0 -156818121,"BioShock 2",purchase,1.0,0 -156818121,"BioShock 2",play,10.2,0 -156818121,"Sid Meier's Pirates!",purchase,1.0,0 -156818121,"Sid Meier's Pirates!",play,9.9,0 -156818121,"Half-Life",purchase,1.0,0 -156818121,"Half-Life",play,9.1,0 -156818121,"Singularity",purchase,1.0,0 -156818121,"Singularity",play,8.1,0 -156818121,"Goat Simulator",purchase,1.0,0 -156818121,"Goat Simulator",play,7.1,0 -156818121,"Half-Life 2 Episode One",purchase,1.0,0 -156818121,"Half-Life 2 Episode One",play,6.0,0 -156818121,"Terraria",purchase,1.0,0 -156818121,"Terraria",play,4.5,0 -156818121,"Lucius",purchase,1.0,0 -156818121,"Lucius",play,3.8,0 -156818121,"Star Wars Republic Commando",purchase,1.0,0 -156818121,"Star Wars Republic Commando",play,3.7,0 -156818121,"Five Nights at Freddy's 2",purchase,1.0,0 -156818121,"Five Nights at Freddy's 2",play,3.1,0 -156818121,"Unturned",purchase,1.0,0 -156818121,"Unturned",play,2.1,0 -156818121,"Defiance",purchase,1.0,0 -156818121,"Defiance",play,2.0,0 -156818121,"Borderlands",purchase,1.0,0 -156818121,"Borderlands",play,1.3,0 -156818121,"Half-Life 2 Deathmatch",purchase,1.0,0 -156818121,"Half-Life 2 Deathmatch",play,0.8,0 -156818121,"Stronghold Kingdoms",purchase,1.0,0 -156818121,"Stronghold Kingdoms",play,0.6,0 -156818121,"Spec Ops The Line",purchase,1.0,0 -156818121,"Spec Ops The Line",play,0.5,0 -156818121,"Half-Life 2 Lost Coast",purchase,1.0,0 -156818121,"Half-Life 2 Lost Coast",play,0.4,0 -156818121,"Five Nights at Freddy's",purchase,1.0,0 -156818121,"Five Nights at Freddy's",play,0.4,0 -156818121,"War Thunder",purchase,1.0,0 -156818121,"War Thunder",play,0.4,0 -156818121,"Empyrion - Galactic Survival",purchase,1.0,0 -156818121,"Empyrion - Galactic Survival",play,0.1,0 -156818121,"PlanetSide 2",purchase,1.0,0 -156818121,"Neverwinter",purchase,1.0,0 -156818121,"No More Room in Hell",purchase,1.0,0 -156818121,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -156818121,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -156818121,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -156818121,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -156818121,"Dragons and Titans",purchase,1.0,0 -156818121,"Duke Nukem Forever",purchase,1.0,0 -156818121,"Dungeons & Dragons Online",purchase,1.0,0 -156818121,"Fallout 3",purchase,1.0,0 -156818121,"Half-Life Blue Shift",purchase,1.0,0 -156818121,"Half-Life Opposing Force",purchase,1.0,0 -156818121,"Half-Life Source",purchase,1.0,0 -156818121,"Half-Life Deathmatch Source",purchase,1.0,0 -156818121,"Lucius II",purchase,1.0,0 -156818121,"Mafia II",purchase,1.0,0 -156818121,"Marvel Heroes 2015",purchase,1.0,0 -156818121,"Sid Meier's Ace Patrol",purchase,1.0,0 -156818121,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -156818121,"Sid Meier's Civilization III Complete",purchase,1.0,0 -156818121,"Sid Meier's Civilization IV",purchase,1.0,0 -156818121,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -156818121,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -156818121,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -156818121,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -156818121,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -156818121,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -156818121,"Sid Meier's Civilization V",purchase,1.0,0 -156818121,"Sid Meier's Railroads!",purchase,1.0,0 -156818121,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -156818121,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -156818121,"Team Fortress Classic",purchase,1.0,0 -156818121,"The Bureau XCOM Declassified",purchase,1.0,0 -156818121,"The Darkness II",purchase,1.0,0 -156818121,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -156818121,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -156818121,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -156818121,"XCOM Enemy Unknown",purchase,1.0,0 -145710414,"Dota 2",purchase,1.0,0 -145710414,"Dota 2",play,2.9,0 -97604502,"Dota 2",purchase,1.0,0 -97604502,"Dota 2",play,526.0,0 -97604502,"Counter-Strike Global Offensive",purchase,1.0,0 -97604502,"Counter-Strike Global Offensive",play,214.0,0 -97604502,"Rocket League",purchase,1.0,0 -97604502,"Rocket League",play,1.8,0 -97604502,"Infinite Crisis",purchase,1.0,0 -97604502,"Modular Combat",purchase,1.0,0 -105632759,"Team Fortress 2",purchase,1.0,0 -105632759,"Team Fortress 2",play,14.2,0 -105632759,"Insurgency Modern Infantry Combat",purchase,1.0,0 -105632759,"Insurgency Modern Infantry Combat",play,1.2,0 -14126086,"Sid Meier's Civilization V",purchase,1.0,0 -14126086,"Sid Meier's Civilization V",play,723.0,0 -14126086,"The Elder Scrolls V Skyrim",purchase,1.0,0 -14126086,"The Elder Scrolls V Skyrim",play,385.0,0 -14126086,"Borderlands 2",purchase,1.0,0 -14126086,"Borderlands 2",play,289.0,0 -14126086,"Fallout New Vegas",purchase,1.0,0 -14126086,"Fallout New Vegas",play,195.0,0 -14126086,"Blood Bowl 2",purchase,1.0,0 -14126086,"Blood Bowl 2",play,191.0,0 -14126086,"Mass Effect 2",purchase,1.0,0 -14126086,"Mass Effect 2",play,165.0,0 -14126086,"Mass Effect",purchase,1.0,0 -14126086,"Mass Effect",play,137.0,0 -14126086,"Deus Ex Human Revolution",purchase,1.0,0 -14126086,"Deus Ex Human Revolution",play,127.0,0 -14126086,"Borderlands",purchase,1.0,0 -14126086,"Borderlands",play,114.0,0 -14126086,"Team Fortress 2",purchase,1.0,0 -14126086,"Team Fortress 2",play,111.0,0 -14126086,"SimCity 4 Deluxe",purchase,1.0,0 -14126086,"SimCity 4 Deluxe",play,94.0,0 -14126086,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -14126086,"Fallout 3 - Game of the Year Edition",play,83.0,0 -14126086,"Puzzle Quest",purchase,1.0,0 -14126086,"Puzzle Quest",play,77.0,0 -14126086,"Middle-earth Shadow of Mordor",purchase,1.0,0 -14126086,"Middle-earth Shadow of Mordor",play,74.0,0 -14126086,"Dying Light",purchase,1.0,0 -14126086,"Dying Light",play,60.0,0 -14126086,"FTL Faster Than Light",purchase,1.0,0 -14126086,"FTL Faster Than Light",play,54.0,0 -14126086,"Far Cry 3",purchase,1.0,0 -14126086,"Far Cry 3",play,48.0,0 -14126086,"HuniePop",purchase,1.0,0 -14126086,"HuniePop",play,41.0,0 -14126086,"Ironcast",purchase,1.0,0 -14126086,"Ironcast",play,37.0,0 -14126086,"Talisman Digital Edition",purchase,1.0,0 -14126086,"Talisman Digital Edition",play,33.0,0 -14126086,"Tomb Raider",purchase,1.0,0 -14126086,"Tomb Raider",play,29.0,0 -14126086,"The Swindle",purchase,1.0,0 -14126086,"The Swindle",play,23.0,0 -14126086,"Half-Life 2",purchase,1.0,0 -14126086,"Half-Life 2",play,19.6,0 -14126086,"Recettear An Item Shop's Tale",purchase,1.0,0 -14126086,"Recettear An Item Shop's Tale",play,17.9,0 -14126086,"Dishonored",purchase,1.0,0 -14126086,"Dishonored",play,16.6,0 -14126086,"The Walking Dead",purchase,1.0,0 -14126086,"The Walking Dead",play,14.2,0 -14126086,"Half-Life 2 Episode Two",purchase,1.0,0 -14126086,"Half-Life 2 Episode Two",play,8.4,0 -14126086,"The Walking Dead Season Two",purchase,1.0,0 -14126086,"The Walking Dead Season Two",play,8.2,0 -14126086,"Tales from the Borderlands",purchase,1.0,0 -14126086,"Tales from the Borderlands",play,8.2,0 -14126086,"Homeworld Remastered Collection",purchase,1.0,0 -14126086,"Homeworld Remastered Collection",play,8.0,0 -14126086,"Half-Life 2 Episode One",purchase,1.0,0 -14126086,"Half-Life 2 Episode One",play,5.4,0 -14126086,"Left 4 Dead",purchase,1.0,0 -14126086,"Left 4 Dead",play,2.5,0 -14126086,"Portal",purchase,1.0,0 -14126086,"Portal",play,2.0,0 -14126086,"Puzzle Quest 2",purchase,1.0,0 -14126086,"Puzzle Quest 2",play,1.4,0 -14126086,"Batman Arkham City GOTY",purchase,1.0,0 -14126086,"Batman Arkham City GOTY",play,0.3,0 -14126086,"Star Wars Knights of the Old Republic",purchase,1.0,0 -14126086,"Alien Isolation",purchase,1.0,0 -14126086,"Bastion",purchase,1.0,0 -14126086,"BioShock",purchase,1.0,0 -14126086,"BioShock 2",purchase,1.0,0 -14126086,"BioShock Infinite",purchase,1.0,0 -14126086,"Blood Bowl 2 - Lizardmen",purchase,1.0,0 -14126086,"Blood Bowl 2 - Wood Elves",purchase,1.0,0 -14126086,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -14126086,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -14126086,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -14126086,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -14126086,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -14126086,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -14126086,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -14126086,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -14126086,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -14126086,"Counter-Strike Source",purchase,1.0,0 -14126086,"Crysis",purchase,1.0,0 -14126086,"Crysis 2 Maximum Edition",purchase,1.0,0 -14126086,"Crysis Warhead",purchase,1.0,0 -14126086,"Crysis Wars",purchase,1.0,0 -14126086,"Darkest Hour Europe '44-'45",purchase,1.0,0 -14126086,"Day of Defeat Source",purchase,1.0,0 -14126086,"Deus Ex Game of the Year Edition",purchase,1.0,0 -14126086,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -14126086,"Deus Ex Invisible War",purchase,1.0,0 -14126086,"Dino D-Day",purchase,1.0,0 -14126086,"Dirty Bomb",purchase,1.0,0 -14126086,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -14126086,"Empire Total War",purchase,1.0,0 -14126086,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -14126086,"Fallout",purchase,1.0,0 -14126086,"Fallout 2",purchase,1.0,0 -14126086,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -14126086,"Fallout New Vegas Dead Money",purchase,1.0,0 -14126086,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -14126086,"Far Cry 2",purchase,1.0,0 -14126086,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -14126086,"FINAL FANTASY VII",purchase,1.0,0 -14126086,"Half-Life 2 Deathmatch",purchase,1.0,0 -14126086,"Half-Life 2 Lost Coast",purchase,1.0,0 -14126086,"Half-Life Deathmatch Source",purchase,1.0,0 -14126086,"L.A. Noire",purchase,1.0,0 -14126086,"Left 4 Dead 2",purchase,1.0,0 -14126086,"Mare Nostrum",purchase,1.0,0 -14126086,"Medieval II Total War",purchase,1.0,0 -14126086,"Medieval II Total War Kingdoms",purchase,1.0,0 -14126086,"Metro 2033",purchase,1.0,0 -14126086,"Metro Last Light",purchase,1.0,0 -14126086,"Napoleon Total War",purchase,1.0,0 -14126086,"Of Orcs And Men",purchase,1.0,0 -14126086,"Overlord",purchase,1.0,0 -14126086,"Overlord Raising Hell",purchase,1.0,0 -14126086,"Overlord II",purchase,1.0,0 -14126086,"Portal 2",purchase,1.0,0 -14126086,"Psychonauts",purchase,1.0,0 -14126086,"Psychonauts Demo",purchase,1.0,0 -14126086,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -14126086,"Rome Total War",purchase,1.0,0 -14126086,"Rome Total War - Alexander",purchase,1.0,0 -14126086,"Saints Row 2",purchase,1.0,0 -14126086,"Saints Row The Third",purchase,1.0,0 -14126086,"Saints Row IV",purchase,1.0,0 -14126086,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -14126086,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -14126086,"Shadowrun Returns",purchase,1.0,0 -14126086,"Shower With Your Dad Simulator 2015 Do You Still Shower With Your Dad",purchase,1.0,0 -14126086,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -14126086,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -14126086,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -14126086,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -14126086,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -14126086,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -14126086,"The Witcher Enhanced Edition",purchase,1.0,0 -14126086,"The Wolf Among Us",purchase,1.0,0 -14126086,"Total War SHOGUN 2",purchase,1.0,0 -14126086,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -14126086,"Transistor",purchase,1.0,0 -14126086,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -14126086,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -14126086,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -14126086,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -14126086,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -14126086,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -14126086,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -14126086,"Wolfenstein The New Order",purchase,1.0,0 -14126086,"XCOM Enemy Unknown",purchase,1.0,0 -14126086,"XCOM Enemy Within",purchase,1.0,0 -194191204,"Battlefield Bad Company 2",purchase,1.0,0 -194191204,"Battlefield Bad Company 2",play,12.9,0 -194191204,"Fishing Planet",purchase,1.0,0 -194191204,"Fishing Planet",play,1.9,0 -194191204,"Wargame AirLand Battle",purchase,1.0,0 -194191204,"Wargame AirLand Battle",play,1.4,0 -194191204,"Heroes & Generals",purchase,1.0,0 -194191204,"Heroes & Generals",play,1.2,0 -194191204,"Total War SHOGUN 2",purchase,1.0,0 -194191204,"Total War SHOGUN 2",play,0.6,0 -194191204,"America's Army 3",purchase,1.0,0 -59662830,"Dota 2",purchase,1.0,0 -59662830,"Dota 2",play,2852.0,0 -59662830,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -59662830,"Warhammer 40,000 Dawn of War II Retribution",play,575.0,0 -59662830,"Warhammer 40,000 Space Marine",purchase,1.0,0 -59662830,"Warhammer 40,000 Space Marine",play,114.0,0 -59662830,"Starbound",purchase,1.0,0 -59662830,"Starbound",play,97.0,0 -59662830,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -59662830,"Call of Duty Modern Warfare 3 - Multiplayer",play,88.0,0 -59662830,"Warhammer End Times - Vermintide",purchase,1.0,0 -59662830,"Warhammer End Times - Vermintide",play,59.0,0 -59662830,"The Elder Scrolls V Skyrim",purchase,1.0,0 -59662830,"The Elder Scrolls V Skyrim",play,53.0,0 -59662830,"Nuclear Dawn",purchase,1.0,0 -59662830,"Nuclear Dawn",play,49.0,0 -59662830,"R.U.S.E",purchase,1.0,0 -59662830,"R.U.S.E",play,43.0,0 -59662830,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -59662830,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,39.0,0 -59662830,"Titan Quest",purchase,1.0,0 -59662830,"Titan Quest",play,38.0,0 -59662830,"Warframe",purchase,1.0,0 -59662830,"Warframe",play,37.0,0 -59662830,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -59662830,"Warhammer 40,000 Dawn of War Soulstorm",play,36.0,0 -59662830,"Call of Duty Modern Warfare 3",purchase,1.0,0 -59662830,"Call of Duty Modern Warfare 3",play,29.0,0 -59662830,"Mass Effect 2",purchase,1.0,0 -59662830,"Mass Effect 2",play,23.0,0 -59662830,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -59662830,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,23.0,0 -59662830,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -59662830,"STAR WARS Knights of the Old Republic II The Sith Lords",play,22.0,0 -59662830,"Endless Space",purchase,1.0,0 -59662830,"Endless Space",play,22.0,0 -59662830,"Middle-earth Shadow of Mordor",purchase,1.0,0 -59662830,"Middle-earth Shadow of Mordor",play,22.0,0 -59662830,"Mount & Blade Warband",purchase,1.0,0 -59662830,"Mount & Blade Warband",play,21.0,0 -59662830,"Stronghold Crusader HD",purchase,1.0,0 -59662830,"Stronghold Crusader HD",play,20.0,0 -59662830,"Space Rangers HD A War Apart",purchase,1.0,0 -59662830,"Space Rangers HD A War Apart",play,18.9,0 -59662830,"Team Fortress 2",purchase,1.0,0 -59662830,"Team Fortress 2",play,18.5,0 -59662830,"Star Wars Empire at War Gold",purchase,1.0,0 -59662830,"Star Wars Empire at War Gold",play,16.3,0 -59662830,"Knights of Honor",purchase,1.0,0 -59662830,"Knights of Honor",play,15.1,0 -59662830,"Supreme Commander Forged Alliance",purchase,1.0,0 -59662830,"Supreme Commander Forged Alliance",play,14.7,0 -59662830,"DayZ",purchase,1.0,0 -59662830,"DayZ",play,13.9,0 -59662830,"Counter-Strike Global Offensive",purchase,1.0,0 -59662830,"Counter-Strike Global Offensive",play,12.7,0 -59662830,"The Guild II Renaissance",purchase,1.0,0 -59662830,"The Guild II Renaissance",play,12.3,0 -59662830,"Terraria",purchase,1.0,0 -59662830,"Terraria",play,11.5,0 -59662830,"Borderlands 2 RU",purchase,1.0,0 -59662830,"Borderlands 2 RU",play,10.1,0 -59662830,"Warhammer 40,000 Armageddon",purchase,1.0,0 -59662830,"Warhammer 40,000 Armageddon",play,10.1,0 -59662830,"TimeShift",purchase,1.0,0 -59662830,"TimeShift",play,9.8,0 -59662830,"Metro Last Light",purchase,1.0,0 -59662830,"Metro Last Light",play,9.8,0 -59662830,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -59662830,"Sins of a Solar Empire Rebellion",play,9.5,0 -59662830,"Borderlands",purchase,1.0,0 -59662830,"Borderlands",play,9.0,0 -59662830,"PAYDAY 2",purchase,1.0,0 -59662830,"PAYDAY 2",play,8.2,0 -59662830,"Star Wars Republic Commando",purchase,1.0,0 -59662830,"Star Wars Republic Commando",play,7.0,0 -59662830,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -59662830,"S.T.A.L.K.E.R. Clear Sky",play,5.8,0 -59662830,"Prototype",purchase,1.0,0 -59662830,"Prototype",play,5.8,0 -59662830,"War Thunder",purchase,1.0,0 -59662830,"War Thunder",play,5.7,0 -59662830,"Divinity Original Sin",purchase,1.0,0 -59662830,"Divinity Original Sin",play,5.5,0 -59662830,"Warhammer 40,000 Kill Team",purchase,1.0,0 -59662830,"Warhammer 40,000 Kill Team",play,5.4,0 -59662830,"Plague Inc Evolved",purchase,1.0,0 -59662830,"Plague Inc Evolved",play,5.2,0 -59662830,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -59662830,"Plants vs. Zombies Game of the Year",play,4.5,0 -59662830,"Deus Ex Human Revolution",purchase,1.0,0 -59662830,"Deus Ex Human Revolution",play,3.9,0 -59662830,"Killing Floor",purchase,1.0,0 -59662830,"Killing Floor",play,3.8,0 -59662830,"Left 4 Dead 2",purchase,1.0,0 -59662830,"Left 4 Dead 2",play,3.7,0 -59662830,"Titan Quest Immortal Throne",purchase,1.0,0 -59662830,"Titan Quest Immortal Throne",play,3.6,0 -59662830,"DARK SOULS II",purchase,1.0,0 -59662830,"DARK SOULS II",play,3.3,0 -59662830,"Counter-Strike",purchase,1.0,0 -59662830,"Counter-Strike",play,3.2,0 -59662830,"Far Cry 3 Blood Dragon",purchase,1.0,0 -59662830,"Far Cry 3 Blood Dragon",play,3.1,0 -59662830,"Counter-Strike Source",purchase,1.0,0 -59662830,"Counter-Strike Source",play,3.1,0 -59662830,"Insurgency",purchase,1.0,0 -59662830,"Insurgency",play,2.2,0 -59662830,"Mount & Blade With Fire and Sword",purchase,1.0,0 -59662830,"Mount & Blade With Fire and Sword",play,2.2,0 -59662830,"POSTAL 2",purchase,1.0,0 -59662830,"POSTAL 2",play,2.1,0 -59662830,"Overlord II",purchase,1.0,0 -59662830,"Overlord II",play,2.0,0 -59662830,"Age of Mythology Extended Edition",purchase,1.0,0 -59662830,"Age of Mythology Extended Edition",play,1.8,0 -59662830,"Dirty Bomb",purchase,1.0,0 -59662830,"Dirty Bomb",play,1.8,0 -59662830,"Company of Heroes 2",purchase,1.0,0 -59662830,"Company of Heroes 2",play,1.5,0 -59662830,"Dead Island",purchase,1.0,0 -59662830,"Dead Island",play,1.5,0 -59662830,"Planetary Annihilation",purchase,1.0,0 -59662830,"Planetary Annihilation",play,1.5,0 -59662830,"Sanctum 2",purchase,1.0,0 -59662830,"Sanctum 2",play,1.2,0 -59662830,"Sacred Gold",purchase,1.0,0 -59662830,"Sacred Gold",play,1.1,0 -59662830,"Sniper Elite V2",purchase,1.0,0 -59662830,"Sniper Elite V2",play,1.0,0 -59662830,"FORCED",purchase,1.0,0 -59662830,"FORCED",play,0.9,0 -59662830,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -59662830,"Warhammer 40,000 Dawn of War Dark Crusade",play,0.9,0 -59662830,"D.I.P.R.I.P. Warm Up",purchase,1.0,0 -59662830,"D.I.P.R.I.P. Warm Up",play,0.8,0 -59662830,"VVVVVV",purchase,1.0,0 -59662830,"VVVVVV",play,0.7,0 -59662830,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -59662830,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.7,0 -59662830,"Crusader Kings II",purchase,1.0,0 -59662830,"Crusader Kings II",play,0.5,0 -59662830,"Star Wars - Battlefront II",purchase,1.0,0 -59662830,"Star Wars - Battlefront II",play,0.5,0 -59662830,"Wargame Red Dragon",purchase,1.0,0 -59662830,"Wargame Red Dragon",play,0.5,0 -59662830,"PROTOTYPE 2",purchase,1.0,0 -59662830,"PROTOTYPE 2",play,0.4,0 -59662830,"Blood Bowl Chaos Edition",purchase,1.0,0 -59662830,"Blood Bowl Chaos Edition",play,0.4,0 -59662830,"Total War SHOGUN 2",purchase,1.0,0 -59662830,"Total War SHOGUN 2",play,0.4,0 -59662830,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -59662830,"Warhammer 40,000 Dawn of War II",play,0.3,0 -59662830,"Tribes Ascend",purchase,1.0,0 -59662830,"Tribes Ascend",play,0.3,0 -59662830,"Etherium",purchase,1.0,0 -59662830,"Etherium",play,0.3,0 -59662830,"Space Hulk",purchase,1.0,0 -59662830,"Space Hulk",play,0.2,0 -59662830,"Frozen Synapse",purchase,1.0,0 -59662830,"Frozen Synapse",play,0.2,0 -59662830,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -59662830,"Dark Souls Prepare to Die Edition",play,0.2,0 -59662830,"War of the Roses",purchase,1.0,0 -59662830,"War of the Roses",play,0.2,0 -59662830,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -59662830,"Rising Storm/Red Orchestra 2 Multiplayer",play,0.2,0 -59662830,"Alien Swarm",purchase,1.0,0 -59662830,"Alien Swarm",play,0.2,0 -59662830,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -59662830,"Warhammer 40,000 Dark Nexus Arena",purchase,1.0,0 -59662830,"Everlasting Summer",purchase,1.0,0 -59662830,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -59662830,"Portal Stories Mel",purchase,1.0,0 -59662830,"The Way of Life Free Edition",purchase,1.0,0 -59662830,"Two Worlds Epic Edition",purchase,1.0,0 -59662830,"Afterfall InSanity Extended Edition",purchase,1.0,0 -59662830,"Amnesia The Dark Descent",purchase,1.0,0 -59662830,"Arma Cold War Assault",purchase,1.0,0 -59662830,"Bejeweled 3",purchase,1.0,0 -59662830,"Bloodline Champions",purchase,1.0,0 -59662830,"Borderlands 2",purchase,1.0,0 -59662830,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -59662830,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -59662830,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -59662830,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -59662830,"Commander Conquest of the Americas Gold",purchase,1.0,0 -59662830,"Counter-Strike Condition Zero",purchase,1.0,0 -59662830,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -59662830,"Cry of Fear",purchase,1.0,0 -59662830,"Dead Island Epidemic",purchase,1.0,0 -59662830,"Dead Space 2",purchase,1.0,0 -59662830,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -59662830,"Dragon Age Origins",purchase,1.0,0 -59662830,"Firefall",purchase,1.0,0 -59662830,"Free to Play",purchase,1.0,0 -59662830,"FTL Faster Than Light",purchase,1.0,0 -59662830,"Garry's Mod",purchase,1.0,0 -59662830,"Guns of Icarus Online",purchase,1.0,0 -59662830,"Hearts of Iron III",purchase,1.0,0 -59662830,"Hearts of Iron III German II Sprite Pack",purchase,1.0,0 -59662830,"Hotline Miami 2 Wrong Number Digital Comic",purchase,1.0,0 -59662830,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -59662830,"Knights and Merchants",purchase,1.0,0 -59662830,"KnightShift",purchase,1.0,0 -59662830,"Lilly and Sasha Curse of the Immortals",purchase,1.0,0 -59662830,"Metro 2033",purchase,1.0,0 -59662830,"Mount & Blade",purchase,1.0,0 -59662830,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -59662830,"No More Room in Hell",purchase,1.0,0 -59662830,"Nosgoth",purchase,1.0,0 -59662830,"Overlord",purchase,1.0,0 -59662830,"Overlord Raising Hell",purchase,1.0,0 -59662830,"Parkan 2",purchase,1.0,0 -59662830,"Prototype 2 RADNET Access Pack",purchase,1.0,0 -59662830,"Quake Live",purchase,1.0,0 -59662830,"R.U.S.E.",purchase,1.0,0 -59662830,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -59662830,"Risk of Rain",purchase,1.0,0 -59662830,"Robocraft",purchase,1.0,0 -59662830,"Sid Meier's Civilization V",purchase,1.0,0 -59662830,"SpaceChem",purchase,1.0,0 -59662830,"Starbound - Unstable",purchase,1.0,0 -59662830,"Star Wolves",purchase,1.0,0 -59662830,"Star Wolves 2",purchase,1.0,0 -59662830,"Star Wolves 3 Civil War",purchase,1.0,0 -59662830,"Stronghold 2",purchase,1.0,0 -59662830,"Stronghold 3",purchase,1.0,0 -59662830,"Stronghold Crusader Extreme HD",purchase,1.0,0 -59662830,"Stronghold HD",purchase,1.0,0 -59662830,"Stronghold Legends",purchase,1.0,0 -59662830,"Supreme Commander",purchase,1.0,0 -59662830,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -59662830,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -59662830,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -59662830,"The Expendabros",purchase,1.0,0 -59662830,"The Guild Gold Edition",purchase,1.0,0 -59662830,"The Guild II",purchase,1.0,0 -59662830,"The Guild II - Pirates of the European Seas",purchase,1.0,0 -59662830,"The Plan",purchase,1.0,0 -59662830,"The Tomorrow War",purchase,1.0,0 -59662830,"Toki Tori",purchase,1.0,0 -59662830,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -59662830,"Transformice",purchase,1.0,0 -59662830,"TRAUMA",purchase,1.0,0 -59662830,"Trine 2",purchase,1.0,0 -59662830,"Two Worlds 2 - Pirates of the Flying Fortress ",purchase,1.0,0 -59662830,"Two Worlds II",purchase,1.0,0 -59662830,"UFO Aftermath",purchase,1.0,0 -59662830,"UFO Aftershock",purchase,1.0,0 -59662830,"Unturned",purchase,1.0,0 -59662830,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",purchase,1.0,0 -59662830,"Warhammer 40,000 Armageddon - Angels of Death",purchase,1.0,0 -59662830,"Warhammer 40,000 Armageddon - Glory of Macragge",purchase,1.0,0 -59662830,"Warhammer 40,000 Armageddon - Untold Battles",purchase,1.0,0 -59662830,"Warhammer 40,000 Armageddon - Vulkan's Wrath",purchase,1.0,0 -59662830,"Warhammer 40,000 Storm of Vengeance Deathwing Terminator",purchase,1.0,0 -59662830,"Warhammer End Times - Vermintide Sigmar's Blessing",purchase,1.0,0 -59662830,"War of the Roses Kingmaker",purchase,1.0,0 -59662830,"War of the Roses Balance Beta",purchase,1.0,0 -59662830,"You Have to Win the Game",purchase,1.0,0 -193087158,"Grand Theft Auto V",purchase,1.0,0 -193087158,"Grand Theft Auto V",play,103.0,0 -193087158,"Counter-Strike Global Offensive",purchase,1.0,0 -193087158,"Counter-Strike Global Offensive",play,59.0,0 -193087158,"Total War SHOGUN 2",purchase,1.0,0 -193087158,"Total War SHOGUN 2",play,13.8,0 -193087158,"H1Z1",purchase,1.0,0 -193087158,"H1Z1",play,10.8,0 -193087158,"Dying Light",purchase,1.0,0 -193087158,"Dying Light",play,2.0,0 -193087158,"H1Z1 Test Server",purchase,1.0,0 -193087158,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -212660921,"Team Fortress 2",purchase,1.0,0 -212660921,"Team Fortress 2",play,157.0,0 -212660921,"Robocraft",purchase,1.0,0 -212660921,"Guns and Robots",purchase,1.0,0 -212660921,"HAWKEN",purchase,1.0,0 -212660921,"Survarium",purchase,1.0,0 -212660921,"Unturned",purchase,1.0,0 -212660921,"War Thunder",purchase,1.0,0 -212636691,"Brick-Force",purchase,1.0,0 -29736184,"Counter-Strike",purchase,1.0,0 -29736184,"Counter-Strike Condition Zero",purchase,1.0,0 -29736184,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -29736184,"Day of Defeat",purchase,1.0,0 -29736184,"Deathmatch Classic",purchase,1.0,0 -29736184,"Ricochet",purchase,1.0,0 -124723151,"Team Fortress 2",purchase,1.0,0 -124723151,"Team Fortress 2",play,1174.0,0 -22088241,"Counter-Strike",purchase,1.0,0 -22088241,"Counter-Strike",play,1626.0,0 -22088241,"Dota 2",purchase,1.0,0 -22088241,"Dota 2",play,185.0,0 -22088241,"Counter-Strike Condition Zero",purchase,1.0,0 -22088241,"Counter-Strike Condition Zero",play,141.0,0 -22088241,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -22088241,"Counter-Strike Condition Zero Deleted Scenes",play,36.0,0 -22088241,"Team Fortress 2",purchase,1.0,0 -22088241,"Team Fortress 2",play,13.9,0 -22088241,"DC Universe Online",purchase,1.0,0 -22088241,"DC Universe Online",play,0.2,0 -119530092,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -119530092,"Plants vs. Zombies Game of the Year",play,17.1,0 -119530092,"The Sims(TM) 3",purchase,1.0,0 -119530092,"The Sims(TM) 3",play,9.2,0 -119530092,"Portal Stories Mel",purchase,1.0,0 -119530092,"Portal Stories Mel",play,3.8,0 -119530092,"Monster Loves You!",purchase,1.0,0 -119530092,"Monster Loves You!",play,3.8,0 -119530092,"Shadowrun Returns",purchase,1.0,0 -119530092,"Shadowrun Returns",play,3.3,0 -119530092,"LEGO The Lord of the Rings",purchase,1.0,0 -119530092,"LEGO The Lord of the Rings",play,1.6,0 -119530092,"Spore",purchase,1.0,0 -119530092,"Spore",play,1.3,0 -119530092,"Peggle Deluxe",purchase,1.0,0 -119530092,"Peggle Deluxe",play,1.2,0 -119530092,"Peggle Nights",purchase,1.0,0 -119530092,"Peggle Nights",play,0.7,0 -119530092,"Audiosurf",purchase,1.0,0 -119530092,"Audiosurf",play,0.7,0 -306617101,"Counter-Strike Global Offensive",purchase,1.0,0 -306617101,"Counter-Strike Global Offensive",play,82.0,0 -306617101,"Unturned",purchase,1.0,0 -253675435,"Dota 2",purchase,1.0,0 -253675435,"Dota 2",play,130.0,0 -228766741,"Dota 2",purchase,1.0,0 -228766741,"Dota 2",play,1.3,0 -297492378,"Dota 2",purchase,1.0,0 -297492378,"Dota 2",play,12.1,0 -105052833,"Sid Meier's Civilization V",purchase,1.0,0 -105052833,"Sid Meier's Civilization V",play,16.5,0 -106472745,"Dota 2",purchase,1.0,0 -106472745,"Dota 2",play,10.1,0 -258868457,"Dota 2",purchase,1.0,0 -258868457,"Dota 2",play,0.3,0 -248200343,"Dota 2",purchase,1.0,0 -248200343,"Dota 2",play,161.0,0 -211421471,"Toy Soldiers War Chest",purchase,1.0,0 -211421471,"Toy Soldiers War Chest",play,1.2,0 -211421471,"Terraria",purchase,1.0,0 -211421471,"Terraria",play,1.0,0 -211421471,"Unturned",purchase,1.0,0 -211421471,"GASP",purchase,1.0,0 -211421471,"PlanetSide 2",purchase,1.0,0 -308503685,"Counter-Strike Global Offensive",purchase,1.0,0 -308503685,"Counter-Strike Global Offensive",play,12.3,0 -298417849,"SMITE",purchase,1.0,0 -298417849,"SMITE",play,2.9,0 -147910240,"Farming Simulator 2013",purchase,1.0,0 -147910240,"Farming Simulator 2013",play,16.9,0 -147910240,"Stranded Deep",purchase,1.0,0 -147910240,"Stranded Deep",play,14.5,0 -147910240,"Unturned",purchase,1.0,0 -147910240,"Unturned",play,11.1,0 -147910240,"Goat Simulator",purchase,1.0,0 -147910240,"Goat Simulator",play,4.6,0 -147910240,"Gone Home",purchase,1.0,0 -147910240,"Gone Home",play,2.9,0 -147910240,"Octodad Dadliest Catch",purchase,1.0,0 -147910240,"Octodad Dadliest Catch",play,2.9,0 -159458198,"BioShock",purchase,1.0,0 -159458198,"BioShock",play,140.0,0 -159458198,"Grand Theft Auto San Andreas",purchase,1.0,0 -159458198,"Grand Theft Auto San Andreas",play,3.6,0 -159458198,"Left 4 Dead 2",purchase,1.0,0 -159458198,"BioShock 2",purchase,1.0,0 -159458198,"Grand Theft Auto San Andreas",purchase,1.0,0 -241626039,"Duke Nukem Forever",purchase,1.0,0 -241626039,"Duke Nukem Forever",play,17.3,0 -241626039,"The LEGO Movie - Videogame",purchase,1.0,0 -241626039,"The LEGO Movie - Videogame",play,3.4,0 -60910490,"Football Manager 2010",purchase,1.0,0 -60910490,"Football Manager 2010",play,218.0,0 -60910490,"Football Manager 2011",purchase,1.0,0 -60910490,"Football Manager 2011",play,10.2,0 -162747179,"Sniper Elite V2",purchase,1.0,0 -162747179,"Sniper Elite V2",play,1.1,0 -162747179,"Outlast",purchase,1.0,0 -162747179,"Outlast",play,0.3,0 -162747179,"Dead Island",purchase,1.0,0 -162747179,"Dead Island Riptide",purchase,1.0,0 -30061970,"The Elder Scrolls V Skyrim",purchase,1.0,0 -30061970,"The Elder Scrolls V Skyrim",play,87.0,0 -30061970,"Kingdom Wars",purchase,1.0,0 -30061970,"Kingdom Wars",play,53.0,0 -30061970,"Team Fortress 2",purchase,1.0,0 -30061970,"Team Fortress 2",play,46.0,0 -30061970,"Frozen Synapse",purchase,1.0,0 -30061970,"Frozen Synapse",play,30.0,0 -30061970,"XCOM Enemy Unknown",purchase,1.0,0 -30061970,"XCOM Enemy Unknown",play,30.0,0 -30061970,"Nosgoth",purchase,1.0,0 -30061970,"Nosgoth",play,22.0,0 -30061970,"Star Trek Online",purchase,1.0,0 -30061970,"Star Trek Online",play,21.0,0 -30061970,"The Mighty Quest For Epic Loot",purchase,1.0,0 -30061970,"The Mighty Quest For Epic Loot",play,21.0,0 -30061970,"DEFCON",purchase,1.0,0 -30061970,"DEFCON",play,10.2,0 -30061970,"Dota 2",purchase,1.0,0 -30061970,"Dota 2",play,9.7,0 -30061970,"FTL Faster Than Light",purchase,1.0,0 -30061970,"FTL Faster Than Light",play,9.2,0 -30061970,"Fallout New Vegas",purchase,1.0,0 -30061970,"Fallout New Vegas",play,8.8,0 -30061970,"Divinity Original Sin",purchase,1.0,0 -30061970,"Divinity Original Sin",play,5.5,0 -30061970,"Dirty Bomb",purchase,1.0,0 -30061970,"Dirty Bomb",play,5.5,0 -30061970,"Defiance",purchase,1.0,0 -30061970,"Defiance",play,5.2,0 -30061970,"Path of Exile",purchase,1.0,0 -30061970,"Path of Exile",play,4.7,0 -30061970,"Mass Effect",purchase,1.0,0 -30061970,"Mass Effect",play,4.5,0 -30061970,"ArcheAge",purchase,1.0,0 -30061970,"ArcheAge",play,4.0,0 -30061970,"RISK Factions",purchase,1.0,0 -30061970,"RISK Factions",play,3.8,0 -30061970,"DayZ",purchase,1.0,0 -30061970,"DayZ",play,3.0,0 -30061970,"Dungeons of Dredmor",purchase,1.0,0 -30061970,"Dungeons of Dredmor",play,2.9,0 -30061970,"Lucius",purchase,1.0,0 -30061970,"Lucius",play,2.8,0 -30061970,"Dead Island Epidemic",purchase,1.0,0 -30061970,"Dead Island Epidemic",play,2.8,0 -30061970,"Gnomoria",purchase,1.0,0 -30061970,"Gnomoria",play,2.7,0 -30061970,"Space Run",purchase,1.0,0 -30061970,"Space Run",play,2.6,0 -30061970,"Divinity Dragon Commander",purchase,1.0,0 -30061970,"Divinity Dragon Commander",play,2.6,0 -30061970,"Papers, Please",purchase,1.0,0 -30061970,"Papers, Please",play,2.6,0 -30061970,"Mount & Blade",purchase,1.0,0 -30061970,"Mount & Blade",play,2.4,0 -30061970,"Neverwinter",purchase,1.0,0 -30061970,"Neverwinter",play,2.3,0 -30061970,"Tropico 4",purchase,1.0,0 -30061970,"Tropico 4",play,2.2,0 -30061970,"Banished",purchase,1.0,0 -30061970,"Banished",play,2.0,0 -30061970,"Shadowrun Returns",purchase,1.0,0 -30061970,"Shadowrun Returns",play,1.8,0 -30061970,"Alan Wake",purchase,1.0,0 -30061970,"Alan Wake",play,1.8,0 -30061970,"The Bridge",purchase,1.0,0 -30061970,"The Bridge",play,1.8,0 -30061970,"Dino D-Day",purchase,1.0,0 -30061970,"Dino D-Day",play,1.8,0 -30061970,"Saints Row The Third",purchase,1.0,0 -30061970,"Saints Row The Third",play,1.8,0 -30061970,"The Bureau XCOM Declassified",purchase,1.0,0 -30061970,"The Bureau XCOM Declassified",play,1.4,0 -30061970,"Overlord II",purchase,1.0,0 -30061970,"Overlord II",play,1.3,0 -30061970,"Sengoku",purchase,1.0,0 -30061970,"Sengoku",play,1.3,0 -30061970,"Saints Row IV",purchase,1.0,0 -30061970,"Saints Row IV",play,1.3,0 -30061970,"Really Big Sky",purchase,1.0,0 -30061970,"Really Big Sky",play,1.3,0 -30061970,"Reus",purchase,1.0,0 -30061970,"Reus",play,1.1,0 -30061970,"Sparkle 2 Evo",purchase,1.0,0 -30061970,"Sparkle 2 Evo",play,1.1,0 -30061970,"Gun Monkeys",purchase,1.0,0 -30061970,"Gun Monkeys",play,0.9,0 -30061970,"Saints Row 2",purchase,1.0,0 -30061970,"Saints Row 2",play,0.8,0 -30061970,"Splice",purchase,1.0,0 -30061970,"Splice",play,0.7,0 -30061970,"BioShock",purchase,1.0,0 -30061970,"BioShock",play,0.7,0 -30061970,"Bully Scholarship Edition",purchase,1.0,0 -30061970,"Bully Scholarship Edition",play,0.6,0 -30061970,"Crusader Kings II",purchase,1.0,0 -30061970,"Crusader Kings II",play,0.4,0 -30061970,"WAKFU",purchase,1.0,0 -30061970,"WAKFU",play,0.4,0 -30061970,"Castlevania Lords of Shadow - Ultimate Edition",purchase,1.0,0 -30061970,"Castlevania Lords of Shadow - Ultimate Edition",play,0.4,0 -30061970,"Uplink",purchase,1.0,0 -30061970,"Uplink",play,0.4,0 -30061970,"RIFT",purchase,1.0,0 -30061970,"RIFT",play,0.2,0 -30061970,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -30061970,"The Secret of Monkey Island Special Edition",play,0.1,0 -30061970,"Alan Wake's American Nightmare",purchase,1.0,0 -30061970,"Aura Kingdom",purchase,1.0,0 -30061970,"Beyond Divinity",purchase,1.0,0 -30061970,"Blades of Time",purchase,1.0,0 -30061970,"Commander Conquest of the Americas Gold",purchase,1.0,0 -30061970,"Crash Time II",purchase,1.0,0 -30061970,"Dismal Swamp DLC",purchase,1.0,0 -30061970,"Divine Divinity",purchase,1.0,0 -30061970,"Divinity Dragon Commander Beta",purchase,1.0,0 -30061970,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -30061970,"East India Company Gold",purchase,1.0,0 -30061970,"Enclave",purchase,1.0,0 -30061970,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -30061970,"Fallout New Vegas Dead Money",purchase,1.0,0 -30061970,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -30061970,"Ghostbusters The Video Game",purchase,1.0,0 -30061970,"GTR Evolution",purchase,1.0,0 -30061970,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -30061970,"Knights and Merchants",purchase,1.0,0 -30061970,"KnightShift",purchase,1.0,0 -30061970,"LIMBO",purchase,1.0,0 -30061970,"Limited Edition",purchase,1.0,0 -30061970,"Marvel Heroes 2015",purchase,1.0,0 -30061970,"Mass Effect 2",purchase,1.0,0 -30061970,"Mirror's Edge",purchase,1.0,0 -30061970,"Monkey Island 2 Special Edition",purchase,1.0,0 -30061970,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -30061970,"Puzzle Kingdoms",purchase,1.0,0 -30061970,"RACE 07",purchase,1.0,0 -30061970,"RaceRoom Racing Experience ",purchase,1.0,0 -30061970,"Solar 2",purchase,1.0,0 -30061970,"SpaceChem",purchase,1.0,0 -30061970,"STORM Frontline Nation",purchase,1.0,0 -30061970,"The Tiny Bang Story",purchase,1.0,0 -30061970,"Thomas Was Alone",purchase,1.0,0 -30061970,"Thunder Wolves",purchase,1.0,0 -30061970,"Two Worlds Epic Edition",purchase,1.0,0 -30061970,"UFO Extraterrestrials Gold",purchase,1.0,0 -30061970,"Warframe",purchase,1.0,0 -30061970,"Weird Worlds Return to Infinite Space",purchase,1.0,0 -30061970,"XCOM Enemy Within",purchase,1.0,0 -176645108,"Euro Truck Simulator 2",purchase,1.0,0 -176645108,"Euro Truck Simulator 2",play,23.0,0 -176645108,"Dota 2",purchase,1.0,0 -176645108,"Dota 2",play,3.7,0 -176645108,"No More Room in Hell",purchase,1.0,0 -176645108,"No More Room in Hell",play,2.9,0 -176645108,"Heroes & Generals",purchase,1.0,0 -176645108,"Heroes & Generals",play,1.5,0 -86433707,"DC Universe Online",purchase,1.0,0 -86433707,"DC Universe Online",play,48.0,0 -86433707,"The Sims(TM) 3",purchase,1.0,0 -86433707,"The Sims(TM) 3",play,29.0,0 -86433707,"Unturned",purchase,1.0,0 -86433707,"Unturned",play,23.0,0 -86433707,"Garry's Mod",purchase,1.0,0 -86433707,"Garry's Mod",play,17.2,0 -86433707,"Terraria",purchase,1.0,0 -86433707,"Terraria",play,14.3,0 -86433707,"Toribash",purchase,1.0,0 -86433707,"Toribash",play,9.6,0 -86433707,"Left 4 Dead 2",purchase,1.0,0 -86433707,"Left 4 Dead 2",play,9.3,0 -86433707,"Team Fortress 2",purchase,1.0,0 -86433707,"Team Fortress 2",play,3.1,0 -86433707,"Game Dev Tycoon",purchase,1.0,0 -86433707,"Game Dev Tycoon",play,2.8,0 -86433707,"Dead Rising 2",purchase,1.0,0 -86433707,"Dead Rising 2",play,1.7,0 -86433707,"Mortal Online",purchase,1.0,0 -86433707,"Mortal Online",play,0.5,0 -86433707,"Five Nights at Freddy's",purchase,1.0,0 -86433707,"Five Nights at Freddy's",play,0.4,0 -86433707,"Marvel Heroes 2015",purchase,1.0,0 -86433707,"Marvel Heroes 2015",play,0.2,0 -86433707,"Counter-Strike Nexon Zombies",purchase,1.0,0 -86433707,"Counter-Strike Nexon Zombies",play,0.2,0 -86433707,"Sakura Clicker",purchase,1.0,0 -86433707,"Risk of Rain",purchase,1.0,0 -86433707,"Realm of the Mad God",purchase,1.0,0 -86433707,"AdVenture Capitalist",purchase,1.0,0 -86433707,"CrimeCraft GangWars",purchase,1.0,0 -86433707,"theHunter",purchase,1.0,0 -86738567,"Counter-Strike Global Offensive",purchase,1.0,0 -86738567,"Counter-Strike Global Offensive",play,284.0,0 -86738567,"Terraria",purchase,1.0,0 -86738567,"Terraria",play,189.0,0 -86738567,"Europa Universalis IV",purchase,1.0,0 -86738567,"Europa Universalis IV",play,166.0,0 -86738567,"Total War ROME II - Emperor Edition",purchase,1.0,0 -86738567,"Total War ROME II - Emperor Edition",play,145.0,0 -86738567,"Team Fortress 2",purchase,1.0,0 -86738567,"Team Fortress 2",play,94.0,0 -86738567,"Hearts of Iron III",purchase,1.0,0 -86738567,"Hearts of Iron III",play,61.0,0 -86738567,"Total War ATTILA",purchase,1.0,0 -86738567,"Total War ATTILA",play,18.5,0 -86738567,"Darkest Dungeon",purchase,1.0,0 -86738567,"Darkest Dungeon",play,13.0,0 -86738567,"Garry's Mod",purchase,1.0,0 -86738567,"Garry's Mod",play,9.6,0 -86738567,"Magicka",purchase,1.0,0 -86738567,"Magicka",play,9.5,0 -86738567,"Total War SHOGUN 2",purchase,1.0,0 -86738567,"Total War SHOGUN 2",play,8.1,0 -86738567,"Unturned",purchase,1.0,0 -86738567,"Unturned",play,6.1,0 -86738567,"Castle Crashers",purchase,1.0,0 -86738567,"Castle Crashers",play,6.0,0 -86738567,"The Witcher 3 Wild Hunt",purchase,1.0,0 -86738567,"The Witcher 3 Wild Hunt",play,4.8,0 -86738567,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -86738567,"Sid Meier's Civilization Beyond Earth",play,4.3,0 -86738567,"Sid Meier's Civilization V",purchase,1.0,0 -86738567,"Sid Meier's Civilization V",play,3.6,0 -86738567,"Realm of the Mad God",purchase,1.0,0 -86738567,"Realm of the Mad God",play,3.0,0 -86738567,"Alien Swarm",purchase,1.0,0 -86738567,"Alien Swarm",play,1.6,0 -86738567,"Total War Battles KINGDOM",purchase,1.0,0 -86738567,"Total War Battles KINGDOM",play,0.2,0 -86738567,"Heroes & Generals",purchase,1.0,0 -86738567,"Heroes & Generals",play,0.1,0 -86738567,"The Lord of the Rings Online",purchase,1.0,0 -86738567,"War Thunder",purchase,1.0,0 -86738567,"Bloodline Champions",purchase,1.0,0 -86738567,"Don't Starve Together Beta",purchase,1.0,0 -86738567,"Hearts of Iron III German II Sprite Pack",purchase,1.0,0 -71161460,"Sid Meier's Civilization V",purchase,1.0,0 -71161460,"Sid Meier's Civilization V",play,35.0,0 -211191233,"Lego Harry Potter",purchase,1.0,0 -211191233,"Lego Harry Potter",play,12.7,0 -211191233,"Age of Empires II HD Edition",purchase,1.0,0 -211191233,"Age of Empires II HD Edition",play,12.7,0 -211191233,"Age of Empires III Complete Collection",purchase,1.0,0 -211191233,"Age of Empires III Complete Collection",play,0.6,0 -151256632,"Garry's Mod",purchase,1.0,0 -151256632,"Garry's Mod",play,71.0,0 -151256632,"Left 4 Dead 2",purchase,1.0,0 -151256632,"Left 4 Dead 2",play,34.0,0 -151256632,"Borderlands 2",purchase,1.0,0 -151256632,"Borderlands 2",play,23.0,0 -151256632,"Half-Life",purchase,1.0,0 -151256632,"Half-Life",play,21.0,0 -151256632,"Viscera Cleanup Detail",purchase,1.0,0 -151256632,"Viscera Cleanup Detail",play,13.4,0 -151256632,"Tomb Raider",purchase,1.0,0 -151256632,"Tomb Raider",play,13.3,0 -151256632,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -151256632,"Viscera Cleanup Detail Santa's Rampage",play,11.6,0 -151256632,"Guns of Icarus Online",purchase,1.0,0 -151256632,"Guns of Icarus Online",play,8.1,0 -151256632,"Outlast",purchase,1.0,0 -151256632,"Outlast",play,8.1,0 -151256632,"Fuse",purchase,1.0,0 -151256632,"Fuse",play,7.8,0 -151256632,"Unturned",purchase,1.0,0 -151256632,"Unturned",play,5.0,0 -151256632,"Ampu-Tea",purchase,1.0,0 -151256632,"Ampu-Tea",play,1.9,0 -151256632,"Don't Starve Together Beta",purchase,1.0,0 -151256632,"Don't Starve Together Beta",play,1.6,0 -151256632,"Only If",purchase,1.0,0 -151256632,"Only If",play,0.8,0 -151256632,"Team Fortress 2",purchase,1.0,0 -151256632,"Team Fortress 2",play,0.7,0 -151256632,"You Have to Win the Game",purchase,1.0,0 -151256632,"You Have to Win the Game",play,0.6,0 -151256632,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -151256632,"Viscera Cleanup Detail Shadow Warrior",play,0.6,0 -151256632,"Port of Call",purchase,1.0,0 -151256632,"Port of Call",play,0.5,0 -151256632,"Blender 2.76b",purchase,1.0,0 -151256632,"Blender 2.76b",play,0.1,0 -151256632,"Counter-Strike Source",purchase,1.0,0 -151256632,"Run and Fire",purchase,1.0,0 -53621752,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -53621752,"Call of Duty Modern Warfare 2 - Multiplayer",play,941.0,0 -53621752,"Counter-Strike Source",purchase,1.0,0 -53621752,"Counter-Strike Source",play,593.0,0 -53621752,"Counter-Strike Global Offensive",purchase,1.0,0 -53621752,"Counter-Strike Global Offensive",play,216.0,0 -53621752,"Call of Duty Modern Warfare 2",purchase,1.0,0 -53621752,"Call of Duty Modern Warfare 2",play,6.5,0 -53621752,"Day of Defeat Source",purchase,1.0,0 -53621752,"Day of Defeat Source",play,0.1,0 -53621752,"Portal",purchase,1.0,0 -53621752,"Portal",play,0.1,0 -53621752,"Call of Duty Modern Warfare 2 - Resurgence Pack",purchase,1.0,0 -53621752,"Call of Duty Modern Warfare 2 Stimulus Package",purchase,1.0,0 -53621752,"Half-Life 2 Deathmatch",purchase,1.0,0 -53621752,"Half-Life 2 Lost Coast",purchase,1.0,0 -31187179,"Counter-Strike Global Offensive",purchase,1.0,0 -31187179,"Counter-Strike Global Offensive",play,720.0,0 -31187179,"Garry's Mod",purchase,1.0,0 -31187179,"Garry's Mod",play,392.0,0 -31187179,"Grand Theft Auto V",purchase,1.0,0 -31187179,"Grand Theft Auto V",play,106.0,0 -31187179,"Arma 2 Operation Arrowhead",purchase,1.0,0 -31187179,"Arma 2 Operation Arrowhead",play,93.0,0 -31187179,"DayZ",purchase,1.0,0 -31187179,"DayZ",play,74.0,0 -31187179,"Left 4 Dead 2",purchase,1.0,0 -31187179,"Left 4 Dead 2",play,56.0,0 -31187179,"Terraria",purchase,1.0,0 -31187179,"Terraria",play,51.0,0 -31187179,"Kerbal Space Program",purchase,1.0,0 -31187179,"Kerbal Space Program",play,41.0,0 -31187179,"Sid Meier's Civilization V",purchase,1.0,0 -31187179,"Sid Meier's Civilization V",play,31.0,0 -31187179,"Assassin's Creed IV Black Flag",purchase,1.0,0 -31187179,"Assassin's Creed IV Black Flag",play,30.0,0 -31187179,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -31187179,"Rising Storm/Red Orchestra 2 Multiplayer",play,27.0,0 -31187179,"Team Fortress 2",purchase,1.0,0 -31187179,"Team Fortress 2",play,27.0,0 -31187179,"Counter-Strike Source",purchase,1.0,0 -31187179,"Counter-Strike Source",play,25.0,0 -31187179,"Arma 3",purchase,1.0,0 -31187179,"Arma 3",play,23.0,0 -31187179,"Killing Floor",purchase,1.0,0 -31187179,"Killing Floor",play,21.0,0 -31187179,"Victoria II",purchase,1.0,0 -31187179,"Victoria II",play,19.6,0 -31187179,"Unturned",purchase,1.0,0 -31187179,"Unturned",play,18.9,0 -31187179,"Empire Total War",purchase,1.0,0 -31187179,"Empire Total War",play,16.7,0 -31187179,"Fallout 4",purchase,1.0,0 -31187179,"Fallout 4",play,13.8,0 -31187179,"Space Engineers",purchase,1.0,0 -31187179,"Space Engineers",play,12.6,0 -31187179,"The Elder Scrolls V Skyrim",purchase,1.0,0 -31187179,"The Elder Scrolls V Skyrim",play,11.7,0 -31187179,"Universe Sandbox",purchase,1.0,0 -31187179,"Universe Sandbox",play,11.3,0 -31187179,"Half-Life",purchase,1.0,0 -31187179,"Half-Life",play,10.9,0 -31187179,"Tropico 4",purchase,1.0,0 -31187179,"Tropico 4",play,10.9,0 -31187179,"Insurgency",purchase,1.0,0 -31187179,"Insurgency",play,9.3,0 -31187179,"Day of Defeat Source",purchase,1.0,0 -31187179,"Day of Defeat Source",play,8.5,0 -31187179,"Portal 2",purchase,1.0,0 -31187179,"Portal 2",play,8.4,0 -31187179,"Hotline Miami",purchase,1.0,0 -31187179,"Hotline Miami",play,8.3,0 -31187179,"Rome Total War",purchase,1.0,0 -31187179,"Rome Total War",play,7.9,0 -31187179,"Overgrowth",purchase,1.0,0 -31187179,"Overgrowth",play,7.6,0 -31187179,"Amnesia The Dark Descent",purchase,1.0,0 -31187179,"Amnesia The Dark Descent",play,7.4,0 -31187179,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -31187179,"Fallout 3 - Game of the Year Edition",play,6.3,0 -31187179,"Plain Sight",purchase,1.0,0 -31187179,"Plain Sight",play,5.9,0 -31187179,"Cities Skylines",purchase,1.0,0 -31187179,"Cities Skylines",play,5.6,0 -31187179,"Metro 2033",purchase,1.0,0 -31187179,"Metro 2033",play,5.5,0 -31187179,"Mount & Blade Warband",purchase,1.0,0 -31187179,"Mount & Blade Warband",play,5.2,0 -31187179,"Total War SHOGUN 2",purchase,1.0,0 -31187179,"Total War SHOGUN 2",play,5.1,0 -31187179,"Sniper Elite V2",purchase,1.0,0 -31187179,"Sniper Elite V2",play,5.1,0 -31187179,"The Long Dark",purchase,1.0,0 -31187179,"The Long Dark",play,4.7,0 -31187179,"Left 4 Dead",purchase,1.0,0 -31187179,"Left 4 Dead",play,4.2,0 -31187179,"The Binding of Isaac",purchase,1.0,0 -31187179,"The Binding of Isaac",play,4.1,0 -31187179,"Toribash",purchase,1.0,0 -31187179,"Toribash",play,4.0,0 -31187179,"Miasmata",purchase,1.0,0 -31187179,"Miasmata",play,3.7,0 -31187179,"Project Zomboid",purchase,1.0,0 -31187179,"Project Zomboid",play,3.3,0 -31187179,"Portal",purchase,1.0,0 -31187179,"Portal",play,3.3,0 -31187179,"The Forest",purchase,1.0,0 -31187179,"The Forest",play,3.1,0 -31187179,"Arma 2",purchase,1.0,0 -31187179,"Arma 2",play,2.9,0 -31187179,"Mirror's Edge",purchase,1.0,0 -31187179,"Mirror's Edge",play,2.8,0 -31187179,"Banished",purchase,1.0,0 -31187179,"Banished",play,2.6,0 -31187179,"Grand Theft Auto IV",purchase,1.0,0 -31187179,"Grand Theft Auto IV",play,2.5,0 -31187179,"Bastion",purchase,1.0,0 -31187179,"Bastion",play,2.5,0 -31187179,"Outlast",purchase,1.0,0 -31187179,"Outlast",play,2.5,0 -31187179,"Don't Starve Together Beta",purchase,1.0,0 -31187179,"Don't Starve Together Beta",play,2.3,0 -31187179,"The Sims(TM) 3",purchase,1.0,0 -31187179,"The Sims(TM) 3",play,1.9,0 -31187179,"FTL Faster Than Light",purchase,1.0,0 -31187179,"FTL Faster Than Light",play,1.9,0 -31187179,"Age of Chivalry",purchase,1.0,0 -31187179,"Age of Chivalry",play,1.8,0 -31187179,"PlanetSide 2",purchase,1.0,0 -31187179,"PlanetSide 2",play,1.8,0 -31187179,"Floating Point",purchase,1.0,0 -31187179,"Floating Point",play,1.6,0 -31187179,"Half-Life 2 Deathmatch",purchase,1.0,0 -31187179,"Half-Life 2 Deathmatch",play,1.4,0 -31187179,"Super Crate Box",purchase,1.0,0 -31187179,"Super Crate Box",play,1.3,0 -31187179,"Lugaru HD ",purchase,1.0,0 -31187179,"Lugaru HD ",play,1.3,0 -31187179,"From Dust",purchase,1.0,0 -31187179,"From Dust",play,1.1,0 -31187179,"Counter-Strike",purchase,1.0,0 -31187179,"Counter-Strike",play,1.0,0 -31187179,"Half-Life 2 Lost Coast",purchase,1.0,0 -31187179,"Half-Life 2 Lost Coast",play,1.0,0 -31187179,"Hitman Blood Money",purchase,1.0,0 -31187179,"Hitman Blood Money",play,0.9,0 -31187179,"Antichamber",purchase,1.0,0 -31187179,"Antichamber",play,0.9,0 -31187179,"Rodina",purchase,1.0,0 -31187179,"Rodina",play,0.7,0 -31187179,"Cry of Fear",purchase,1.0,0 -31187179,"Cry of Fear",play,0.7,0 -31187179,"Europa Universalis IV",purchase,1.0,0 -31187179,"Europa Universalis IV",play,0.7,0 -31187179,"Zombie Panic Source",purchase,1.0,0 -31187179,"Zombie Panic Source",play,0.7,0 -31187179,"Half-Life Deathmatch Source",purchase,1.0,0 -31187179,"Half-Life Deathmatch Source",play,0.6,0 -31187179,"FaceRig",purchase,1.0,0 -31187179,"FaceRig",play,0.6,0 -31187179,"Super Meat Boy",purchase,1.0,0 -31187179,"Super Meat Boy",play,0.5,0 -31187179,"Wargame Red Dragon",purchase,1.0,0 -31187179,"Wargame Red Dragon",play,0.5,0 -31187179,"Wargame European Escalation",purchase,1.0,0 -31187179,"Wargame European Escalation",play,0.5,0 -31187179,"Next Car Game Wreckfest",purchase,1.0,0 -31187179,"Next Car Game Wreckfest",play,0.4,0 -31187179,"Counter-Strike Condition Zero",purchase,1.0,0 -31187179,"Counter-Strike Condition Zero",play,0.4,0 -31187179,"Rome Total War - Alexander",purchase,1.0,0 -31187179,"Rome Total War - Alexander",play,0.3,0 -31187179,"Alien Swarm",purchase,1.0,0 -31187179,"Alien Swarm",play,0.3,0 -31187179,"Far Cry 3 Blood Dragon",purchase,1.0,0 -31187179,"Far Cry 3 Blood Dragon",play,0.3,0 -31187179,"Arma 2 DayZ Mod",purchase,1.0,0 -31187179,"Arma 2 DayZ Mod",play,0.3,0 -31187179,"Source Filmmaker",purchase,1.0,0 -31187179,"Source Filmmaker",play,0.3,0 -31187179,"Kidnapped",purchase,1.0,0 -31187179,"Kidnapped",play,0.2,0 -31187179,"Don't Starve",purchase,1.0,0 -31187179,"Don't Starve",play,0.2,0 -31187179,"Half-Life 2 Episode One",purchase,1.0,0 -31187179,"Half-Life 2 Episode One",play,0.2,0 -31187179,"War Thunder",purchase,1.0,0 -31187179,"War Thunder",play,0.2,0 -31187179,"Haunted Memories",purchase,1.0,0 -31187179,"Haunted Memories",play,0.2,0 -31187179,"Lone Survivor The Director's Cut",purchase,1.0,0 -31187179,"Lone Survivor The Director's Cut",play,0.1,0 -31187179,"Rock of Ages",purchase,1.0,0 -31187179,"Rock of Ages",play,0.1,0 -31187179,"Combat Wings Battle of Britain",purchase,1.0,0 -31187179,"Combat Wings Battle of Britain",play,0.1,0 -31187179,"Receiver",purchase,1.0,0 -31187179,"World of Guns Gun Disassembly",purchase,1.0,0 -31187179,"Dwarfs!?",purchase,1.0,0 -31187179,"Fallout New Vegas",purchase,1.0,0 -31187179,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -31187179,"Arma 3 Zeus",purchase,1.0,0 -31187179,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -31187179,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -31187179,"Fallout New Vegas Dead Money",purchase,1.0,0 -31187179,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -31187179,"Half-Life 2 Episode Two",purchase,1.0,0 -31187179,"Half-Life Source",purchase,1.0,0 -31187179,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -31187179,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -31187179,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -31187179,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -31187179,"Wargame AirLand Battle",purchase,1.0,0 -31187179,"Zeno Clash",purchase,1.0,0 -31187179,"Zeno Clash 2",purchase,1.0,0 -39223571,"Portal",purchase,1.0,0 -39223571,"Portal",play,0.2,0 -229900582,"Free to Play",purchase,1.0,0 -168771588,"Counter-Strike Global Offensive",purchase,1.0,0 -168771588,"Counter-Strike Global Offensive",play,134.0,0 -168771588,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -168771588,"Call of Duty Modern Warfare 3 - Multiplayer",play,72.0,0 -168771588,"Robocraft",purchase,1.0,0 -168771588,"Robocraft",play,52.0,0 -168771588,"Unturned",purchase,1.0,0 -168771588,"Unturned",play,16.2,0 -168771588,"BLOCKADE 3D",purchase,1.0,0 -168771588,"BLOCKADE 3D",play,1.1,0 -168771588,"Call of Duty Modern Warfare 3",purchase,1.0,0 -168771588,"Call of Duty Modern Warfare 3",play,0.7,0 -168771588,"Codename CURE",purchase,1.0,0 -168771588,"Codename CURE",play,0.6,0 -168771588,"Team Fortress 2",purchase,1.0,0 -168771588,"Team Fortress 2",play,0.2,0 -168771588,"Call of Duty Advanced Warfare",purchase,1.0,0 -168771588,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -168771588,"Call of Duty Black Ops III",purchase,1.0,0 -168771588,"Warframe",purchase,1.0,0 -255246635,"Nosgoth",purchase,1.0,0 -255246635,"Nosgoth",play,0.3,0 -106268266,"Supreme Commander 2",purchase,1.0,0 -106268266,"Supreme Commander 2",play,31.0,0 -305019410,"UberStrike",purchase,1.0,0 -111163130,"Borderlands 2",purchase,1.0,0 -111163130,"Borderlands 2",play,229.0,0 -111163130,"Fallout New Vegas",purchase,1.0,0 -111163130,"Fallout New Vegas",play,178.0,0 -111163130,"Sid Meier's Civilization V",purchase,1.0,0 -111163130,"Sid Meier's Civilization V",play,175.0,0 -111163130,"The Elder Scrolls V Skyrim",purchase,1.0,0 -111163130,"The Elder Scrolls V Skyrim",play,56.0,0 -111163130,"Borderlands The Pre-Sequel",purchase,1.0,0 -111163130,"Borderlands The Pre-Sequel",play,46.0,0 -111163130,"Left 4 Dead 2",purchase,1.0,0 -111163130,"Left 4 Dead 2",play,35.0,0 -111163130,"Sleeping Dogs Definitive Edition",purchase,1.0,0 -111163130,"Sleeping Dogs Definitive Edition",play,22.0,0 -111163130,"The Forest",purchase,1.0,0 -111163130,"The Forest",play,21.0,0 -111163130,"BioShock Infinite",purchase,1.0,0 -111163130,"BioShock Infinite",play,17.5,0 -111163130,"Total War SHOGUN 2",purchase,1.0,0 -111163130,"Total War SHOGUN 2",play,9.0,0 -111163130,"Tribes Ascend",purchase,1.0,0 -111163130,"Tribes Ascend",play,5.7,0 -111163130,"Goat Simulator",purchase,1.0,0 -111163130,"Goat Simulator",play,4.5,0 -111163130,"Sniper Ghost Warrior",purchase,1.0,0 -111163130,"Sniper Ghost Warrior",play,3.6,0 -111163130,"Surgeon Simulator",purchase,1.0,0 -111163130,"Surgeon Simulator",play,3.4,0 -111163130,"Sniper Elite V2",purchase,1.0,0 -111163130,"Sniper Elite V2",play,3.1,0 -111163130,"Simply Chess",purchase,1.0,0 -111163130,"Simply Chess",play,2.1,0 -111163130,"Cry of Fear",purchase,1.0,0 -111163130,"Cry of Fear",play,1.9,0 -111163130,"No More Room in Hell",purchase,1.0,0 -111163130,"No More Room in Hell",play,0.8,0 -111163130,"Amnesia The Dark Descent",purchase,1.0,0 -111163130,"Amnesia The Dark Descent",play,0.7,0 -111163130,"Team Fortress 2",purchase,1.0,0 -111163130,"Team Fortress 2",play,0.6,0 -111163130,"Dota 2",purchase,1.0,0 -111163130,"Dota 2",play,0.4,0 -111163130,"Blender 2.76b",purchase,1.0,0 -111163130,"Blender 2.76b",play,0.3,0 -111163130,"Warframe",purchase,1.0,0 -111163130,"Warframe",play,0.3,0 -111163130,"HAWKEN",purchase,1.0,0 -111163130,"HAWKEN",play,0.1,0 -111163130,"You Have to Win the Game",purchase,1.0,0 -111163130,"BioShock",purchase,1.0,0 -111163130,"All Is Dust",purchase,1.0,0 -111163130,"BioShock 2",purchase,1.0,0 -111163130,"Empire Total War",purchase,1.0,0 -111163130,"Killing Floor Uncovered",purchase,1.0,0 -111163130,"PlanetSide 2",purchase,1.0,0 -111163130,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -111163130,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -111163130,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -111163130,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -111163130,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -111163130,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -50269563,"Empire Total War",purchase,1.0,0 -50269563,"Empire Total War",play,2.3,0 -266132392,"Dota 2",purchase,1.0,0 -266132392,"Dota 2",play,68.0,0 -303413869,"Dota 2",purchase,1.0,0 -303413869,"Dota 2",play,5.9,0 -92123735,"Call of Duty Modern Warfare 3",purchase,1.0,0 -92123735,"Call of Duty Modern Warfare 3",play,11.2,0 -92123735,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -92123735,"Call of Duty Modern Warfare 3 - Multiplayer",play,5.8,0 -92123735,"Left 4 Dead 2",purchase,1.0,0 -5217749,"Counter-Strike",purchase,1.0,0 -5217749,"Counter-Strike",play,10.8,0 -5217749,"Counter-Strike Source",purchase,1.0,0 -5217749,"Day of Defeat",purchase,1.0,0 -5217749,"Deathmatch Classic",purchase,1.0,0 -5217749,"Half-Life",purchase,1.0,0 -5217749,"Half-Life 2",purchase,1.0,0 -5217749,"Half-Life 2 Deathmatch",purchase,1.0,0 -5217749,"Half-Life 2 Lost Coast",purchase,1.0,0 -5217749,"Half-Life Blue Shift",purchase,1.0,0 -5217749,"Half-Life Opposing Force",purchase,1.0,0 -5217749,"Ricochet",purchase,1.0,0 -5217749,"Team Fortress Classic",purchase,1.0,0 -47773209,"Speedball 2 Tournament",purchase,1.0,0 -47773209,"Speedball 2 Tournament",play,10.3,0 -47773209,"Day of Defeat",purchase,1.0,0 -47773209,"Day of Defeat",play,3.8,0 -47773209,"Counter-Strike",purchase,1.0,0 -47773209,"Counter-Strike",play,0.6,0 -47773209,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -47773209,"Counter-Strike Condition Zero Deleted Scenes",play,0.6,0 -47773209,"Counter-Strike Condition Zero",purchase,1.0,0 -47773209,"Counter-Strike Condition Zero",play,0.3,0 -47773209,"Deathmatch Classic",purchase,1.0,0 -47773209,"Ricochet",purchase,1.0,0 -122552077,"Dota 2",purchase,1.0,0 -122552077,"Dota 2",play,1604.0,0 -208569224,"Robocraft",purchase,1.0,0 -208569224,"Unturned",purchase,1.0,0 -190774375,"Dota 2",purchase,1.0,0 -190774375,"Dota 2",play,1.2,0 -132277897,"Dota 2",purchase,1.0,0 -132277897,"Dota 2",play,1.5,0 -132277897,"Team Fortress 2",purchase,1.0,0 -132277897,"Team Fortress 2",play,0.1,0 -132277897,"Firefall",purchase,1.0,0 -93458820,"Team Fortress 2",purchase,1.0,0 -93458820,"Team Fortress 2",play,5.0,0 -192044880,"Team Fortress 2",purchase,1.0,0 -192044880,"Team Fortress 2",play,74.0,0 -192044880,"Heroes & Generals",purchase,1.0,0 -192044880,"Heroes & Generals",play,28.0,0 -192044880,"Dizzel",purchase,1.0,0 -192044880,"Dizzel",play,16.0,0 -192044880,"Warframe",purchase,1.0,0 -192044880,"Warframe",play,1.4,0 -192044880,"Dota 2",purchase,1.0,0 -192044880,"Dota 2",play,0.2,0 -238666183,"Run and Fire",purchase,1.0,0 -172699566,"Dota 2",purchase,1.0,0 -172699566,"Dota 2",play,5.5,0 -287778700,"Dota 2",purchase,1.0,0 -287778700,"Dota 2",play,188.0,0 -287778700,"Team Fortress 2",purchase,1.0,0 -287778700,"Team Fortress 2",play,0.4,0 -174121221,"Dota 2",purchase,1.0,0 -174121221,"Dota 2",play,977.0,0 -155669429,"Dota 2",purchase,1.0,0 -155669429,"Dota 2",play,0.4,0 -155669429,"Adventures of Shuggy",purchase,1.0,0 -155669429,"Adventures of Shuggy",play,0.3,0 -12563913,"Counter-Strike",purchase,1.0,0 -12563913,"Counter-Strike",play,0.2,0 -12563913,"Day of Defeat",purchase,1.0,0 -12563913,"Deathmatch Classic",purchase,1.0,0 -12563913,"Half-Life",purchase,1.0,0 -12563913,"Half-Life Blue Shift",purchase,1.0,0 -12563913,"Half-Life Opposing Force",purchase,1.0,0 -12563913,"Ricochet",purchase,1.0,0 -12563913,"Team Fortress Classic",purchase,1.0,0 -215687170,"Dota 2",purchase,1.0,0 -215687170,"Dota 2",play,11.8,0 -138939472,"Dota 2",purchase,1.0,0 -138939472,"Dota 2",play,457.0,0 -295436578,"Dota 2",purchase,1.0,0 -295436578,"Dota 2",play,11.8,0 -2753525,"Counter-Strike Global Offensive",purchase,1.0,0 -2753525,"Counter-Strike Global Offensive",play,176.0,0 -2753525,"Grand Theft Auto V",purchase,1.0,0 -2753525,"Grand Theft Auto V",play,154.0,0 -2753525,"H1Z1",purchase,1.0,0 -2753525,"H1Z1",play,152.0,0 -2753525,"Dota 2",purchase,1.0,0 -2753525,"Dota 2",play,132.0,0 -2753525,"Counter-Strike Source",purchase,1.0,0 -2753525,"Counter-Strike Source",play,99.0,0 -2753525,"Counter-Strike",purchase,1.0,0 -2753525,"Counter-Strike",play,67.0,0 -2753525,"Dirty Bomb",purchase,1.0,0 -2753525,"Dirty Bomb",play,34.0,0 -2753525,"Warframe",purchase,1.0,0 -2753525,"Warframe",play,32.0,0 -2753525,"Torchlight II",purchase,1.0,0 -2753525,"Torchlight II",play,29.0,0 -2753525,"Team Fortress 2",purchase,1.0,0 -2753525,"Team Fortress 2",play,28.0,0 -2753525,"ARK Survival Evolved",purchase,1.0,0 -2753525,"ARK Survival Evolved",play,27.0,0 -2753525,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -2753525,"METAL GEAR SOLID V THE PHANTOM PAIN",play,26.0,0 -2753525,"Reign Of Kings",purchase,1.0,0 -2753525,"Reign Of Kings",play,25.0,0 -2753525,"Garry's Mod",purchase,1.0,0 -2753525,"Garry's Mod",play,19.0,0 -2753525,"Grand Theft Auto IV",purchase,1.0,0 -2753525,"Grand Theft Auto IV",play,18.3,0 -2753525,"Rust",purchase,1.0,0 -2753525,"Rust",play,18.2,0 -2753525,"Rocket League",purchase,1.0,0 -2753525,"Rocket League",play,17.3,0 -2753525,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -2753525,"Call of Duty 4 Modern Warfare",play,15.9,0 -2753525,"TERA",purchase,1.0,0 -2753525,"TERA",play,14.0,0 -2753525,"Bloodline Champions",purchase,1.0,0 -2753525,"Bloodline Champions",play,13.8,0 -2753525,"Half-Life 2",purchase,1.0,0 -2753525,"Half-Life 2",play,13.2,0 -2753525,"Portal 2",purchase,1.0,0 -2753525,"Portal 2",play,10.5,0 -2753525,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -2753525,"Call of Duty Black Ops II - Multiplayer",play,9.2,0 -2753525,"Loadout",purchase,1.0,0 -2753525,"Loadout",play,9.1,0 -2753525,"Age of Wonders III",purchase,1.0,0 -2753525,"Age of Wonders III",play,8.8,0 -2753525,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -2753525,"Call of Duty Black Ops II - Zombies",play,6.9,0 -2753525,"RAGE",purchase,1.0,0 -2753525,"RAGE",play,6.8,0 -2753525,"Left 4 Dead 2",purchase,1.0,0 -2753525,"Left 4 Dead 2",play,6.4,0 -2753525,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -2753525,"DARK SOULS II Scholar of the First Sin",play,5.8,0 -2753525,"Duke Nukem Forever",purchase,1.0,0 -2753525,"Duke Nukem Forever",play,5.2,0 -2753525,"Brtal Legend",purchase,1.0,0 -2753525,"Brtal Legend",play,4.6,0 -2753525,"Blacklight Retribution",purchase,1.0,0 -2753525,"Blacklight Retribution",play,4.5,0 -2753525,"SpeedRunners",purchase,1.0,0 -2753525,"SpeedRunners",play,4.2,0 -2753525,"PlanetSide 2",purchase,1.0,0 -2753525,"PlanetSide 2",play,4.1,0 -2753525,"Sanctum 2",purchase,1.0,0 -2753525,"Sanctum 2",play,4.0,0 -2753525,"Half-Life 2 Episode Two",purchase,1.0,0 -2753525,"Half-Life 2 Episode Two",play,3.8,0 -2753525,"Dying Light",purchase,1.0,0 -2753525,"Dying Light",play,3.6,0 -2753525,"Portal",purchase,1.0,0 -2753525,"Portal",play,3.3,0 -2753525,"Half-Life 2 Episode One",purchase,1.0,0 -2753525,"Half-Life 2 Episode One",play,3.2,0 -2753525,"Alien Swarm",purchase,1.0,0 -2753525,"Alien Swarm",play,3.2,0 -2753525,"XCOM Enemy Unknown",purchase,1.0,0 -2753525,"XCOM Enemy Unknown",play,3.0,0 -2753525,"Black Mesa",purchase,1.0,0 -2753525,"Black Mesa",play,2.9,0 -2753525,"Chivalry Medieval Warfare",purchase,1.0,0 -2753525,"Chivalry Medieval Warfare",play,2.5,0 -2753525,"Day of Defeat Source",purchase,1.0,0 -2753525,"Day of Defeat Source",play,2.4,0 -2753525,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -2753525,"Dark Souls Prepare to Die Edition",play,1.6,0 -2753525,"Natural Selection 2",purchase,1.0,0 -2753525,"Natural Selection 2",play,1.4,0 -2753525,"Rocksmith",purchase,1.0,0 -2753525,"Rocksmith",play,1.3,0 -2753525,"Kerbal Space Program",purchase,1.0,0 -2753525,"Kerbal Space Program",play,1.2,0 -2753525,"Ultra Street Fighter IV",purchase,1.0,0 -2753525,"Ultra Street Fighter IV",play,0.8,0 -2753525,"Far Cry 3",purchase,1.0,0 -2753525,"Far Cry 3",play,0.7,0 -2753525,"Killing Floor",purchase,1.0,0 -2753525,"Killing Floor",play,0.6,0 -2753525,"Counter-Strike Nexon Zombies",purchase,1.0,0 -2753525,"Counter-Strike Nexon Zombies",play,0.6,0 -2753525,"Chains",purchase,1.0,0 -2753525,"Chains",play,0.5,0 -2753525,"Quake Live",purchase,1.0,0 -2753525,"Quake Live",play,0.5,0 -2753525,"Brawlhalla",purchase,1.0,0 -2753525,"Brawlhalla",play,0.3,0 -2753525,"Battlefield 2",purchase,1.0,0 -2753525,"Battlefield 2",play,0.3,0 -2753525,"Day of Defeat",purchase,1.0,0 -2753525,"Day of Defeat",play,0.1,0 -2753525,"Grand Theft Auto",purchase,1.0,0 -2753525,"Deadlight",purchase,1.0,0 -2753525,"DOOM 3 BFG Edition",purchase,1.0,0 -2753525,"Age of Empires II HD Edition",purchase,1.0,0 -2753525,"Alien Breed 2 Assault",purchase,1.0,0 -2753525,"Alien Breed 3 Descent",purchase,1.0,0 -2753525,"Alien Breed Impact",purchase,1.0,0 -2753525,"Arena Wars 2",purchase,1.0,0 -2753525,"BioShock",purchase,1.0,0 -2753525,"BioShock 2",purchase,1.0,0 -2753525,"BioShock Infinite",purchase,1.0,0 -2753525,"Borderlands",purchase,1.0,0 -2753525,"Borderlands 2",purchase,1.0,0 -2753525,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -2753525,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -2753525,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -2753525,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -2753525,"Call of Duty Black Ops II",purchase,1.0,0 -2753525,"Counter-Strike Condition Zero",purchase,1.0,0 -2753525,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -2753525,"Counter-Strike Nexon Zombies - Starter Pack",purchase,1.0,0 -2753525,"Deathmatch Classic",purchase,1.0,0 -2753525,"Far Cry",purchase,1.0,0 -2753525,"Far Cry 2",purchase,1.0,0 -2753525,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -2753525,"Far Cry 3 Blood Dragon",purchase,1.0,0 -2753525,"FEZ",purchase,1.0,0 -2753525,"FTL Faster Than Light",purchase,1.0,0 -2753525,"Future Wars",purchase,1.0,0 -2753525,"Grand Theft Auto 2",purchase,1.0,0 -2753525,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -2753525,"Grand Theft Auto San Andreas",purchase,1.0,0 -2753525,"Grand Theft Auto San Andreas",purchase,1.0,0 -2753525,"Grand Theft Auto Vice City",purchase,1.0,0 -2753525,"Grand Theft Auto Vice City",purchase,1.0,0 -2753525,"Grand Theft Auto III",purchase,1.0,0 -2753525,"Grand Theft Auto III",purchase,1.0,0 -2753525,"H1Z1 Test Server",purchase,1.0,0 -2753525,"Half-Life",purchase,1.0,0 -2753525,"Half-Life 2 Deathmatch",purchase,1.0,0 -2753525,"Half-Life 2 Lost Coast",purchase,1.0,0 -2753525,"Half-Life Blue Shift",purchase,1.0,0 -2753525,"Half-Life Opposing Force",purchase,1.0,0 -2753525,"Half-Life Source",purchase,1.0,0 -2753525,"Half-Life Deathmatch Source",purchase,1.0,0 -2753525,"Iron Sky Invasion",purchase,1.0,0 -2753525,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -2753525,"Mass Effect",purchase,1.0,0 -2753525,"Mass Effect 2",purchase,1.0,0 -2753525,"ORION Prelude",purchase,1.0,0 -2753525,"Patch testing for Chivalry",purchase,1.0,0 -2753525,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -2753525,"Ricochet",purchase,1.0,0 -2753525,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -2753525,"Shower With Your Dad Simulator 2015 Do You Still Shower With Your Dad",purchase,1.0,0 -2753525,"Sniper Elite V2",purchase,1.0,0 -2753525,"Super Hexagon",purchase,1.0,0 -2753525,"Team Fortress Classic",purchase,1.0,0 -2753525,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -2753525,"The Witcher Enhanced Edition",purchase,1.0,0 -2753525,"XCOM Enemy Within",purchase,1.0,0 -196156695,"Dota 2",purchase,1.0,0 -196156695,"Dota 2",play,426.0,0 -196156695,"APB Reloaded",purchase,1.0,0 -196156695,"Dead Island Epidemic",purchase,1.0,0 -196156695,"FreeStyle2 Street Basketball",purchase,1.0,0 -196156695,"GunZ 2 The Second Duel",purchase,1.0,0 -196156695,"Marvel Heroes 2015",purchase,1.0,0 -196156695,"Neverwinter",purchase,1.0,0 -196156695,"Quake Live",purchase,1.0,0 -196156695,"Ragnarok",purchase,1.0,0 -196156695,"Solstice Arena",purchase,1.0,0 -196156695,"Unturned",purchase,1.0,0 -242935099,"UberStrike",purchase,1.0,0 -242935099,"UberStrike",play,1.7,0 -242935099,"Team Fortress 2",purchase,1.0,0 -242935099,"Team Fortress 2",play,0.7,0 -242935099,"Rise of Incarnates",purchase,1.0,0 -242935099,"Rise of Incarnates",play,0.3,0 -242935099,"Dirty Bomb",purchase,1.0,0 -242935099,"Defiance",purchase,1.0,0 -297581476,"Dota 2",purchase,1.0,0 -297581476,"Dota 2",play,11.3,0 -61189155,"Dota 2",purchase,1.0,0 -61189155,"Dota 2",play,2623.0,0 -61189155,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -61189155,"Call of Duty Modern Warfare 2 - Multiplayer",play,227.0,0 -61189155,"The Elder Scrolls V Skyrim",purchase,1.0,0 -61189155,"The Elder Scrolls V Skyrim",play,160.0,0 -61189155,"Counter-Strike Source",purchase,1.0,0 -61189155,"Counter-Strike Source",play,121.0,0 -61189155,"DayZ",purchase,1.0,0 -61189155,"DayZ",play,119.0,0 -61189155,"Counter-Strike Global Offensive",purchase,1.0,0 -61189155,"Counter-Strike Global Offensive",play,107.0,0 -61189155,"Grand Theft Auto V",purchase,1.0,0 -61189155,"Grand Theft Auto V",play,103.0,0 -61189155,"Team Fortress 2",purchase,1.0,0 -61189155,"Team Fortress 2",play,100.0,0 -61189155,"Clicker Heroes",purchase,1.0,0 -61189155,"Clicker Heroes",play,96.0,0 -61189155,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -61189155,"Call of Duty Modern Warfare 3 - Multiplayer",play,94.0,0 -61189155,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -61189155,"Call of Duty Black Ops II - Multiplayer",play,85.0,0 -61189155,"PROTOTYPE 2",purchase,1.0,0 -61189155,"PROTOTYPE 2",play,66.0,0 -61189155,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -61189155,"The Witcher 2 Assassins of Kings Enhanced Edition",play,50.0,0 -61189155,"Survarium",purchase,1.0,0 -61189155,"Survarium",play,48.0,0 -61189155,"Dying Light",purchase,1.0,0 -61189155,"Dying Light",play,48.0,0 -61189155,"DARK SOULS II",purchase,1.0,0 -61189155,"DARK SOULS II",play,45.0,0 -61189155,"Call of Duty Black Ops",purchase,1.0,0 -61189155,"Call of Duty Black Ops",play,44.0,0 -61189155,"Left 4 Dead 2",purchase,1.0,0 -61189155,"Left 4 Dead 2",play,43.0,0 -61189155,"The Lord of the Rings War in the North",purchase,1.0,0 -61189155,"The Lord of the Rings War in the North",play,40.0,0 -61189155,"PAYDAY 2",purchase,1.0,0 -61189155,"PAYDAY 2",play,38.0,0 -61189155,"Middle-earth Shadow of Mordor",purchase,1.0,0 -61189155,"Middle-earth Shadow of Mordor",play,34.0,0 -61189155,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -61189155,"Call of Duty Black Ops - Multiplayer",play,33.0,0 -61189155,"Command and Conquer 3 Tiberium Wars",purchase,1.0,0 -61189155,"Command and Conquer 3 Tiberium Wars",play,30.0,0 -61189155,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -61189155,"DARK SOULS II Scholar of the First Sin",play,29.0,0 -61189155,"Spec Ops The Line",purchase,1.0,0 -61189155,"Spec Ops The Line",play,25.0,0 -61189155,"Metro 2033",purchase,1.0,0 -61189155,"Metro 2033",play,24.0,0 -61189155,"Alien Swarm",purchase,1.0,0 -61189155,"Alien Swarm",play,23.0,0 -61189155,"Call of Duty Modern Warfare 2",purchase,1.0,0 -61189155,"Call of Duty Modern Warfare 2",play,23.0,0 -61189155,"Call of Duty Modern Warfare 3",purchase,1.0,0 -61189155,"Call of Duty Modern Warfare 3",play,23.0,0 -61189155,"Aliens vs. Predator",purchase,1.0,0 -61189155,"Aliens vs. Predator",play,20.0,0 -61189155,"Darksiders II",purchase,1.0,0 -61189155,"Darksiders II",play,20.0,0 -61189155,"Total War ROME II - Emperor Edition",purchase,1.0,0 -61189155,"Total War ROME II - Emperor Edition",play,19.3,0 -61189155,"Dead Rising 3",purchase,1.0,0 -61189155,"Dead Rising 3",play,18.4,0 -61189155,"Sid Meier's Civilization V",purchase,1.0,0 -61189155,"Sid Meier's Civilization V",play,18.3,0 -61189155,"Mortal Kombat Komplete Edition",purchase,1.0,0 -61189155,"Mortal Kombat Komplete Edition",play,18.1,0 -61189155,"Fallout New Vegas",purchase,1.0,0 -61189155,"Fallout New Vegas",play,17.8,0 -61189155,"Metro Last Light",purchase,1.0,0 -61189155,"Metro Last Light",play,17.7,0 -61189155,"Deus Ex Human Revolution",purchase,1.0,0 -61189155,"Deus Ex Human Revolution",play,17.5,0 -61189155,"RAGE",purchase,1.0,0 -61189155,"RAGE",play,16.3,0 -61189155,"Evolve",purchase,1.0,0 -61189155,"Evolve",play,14.6,0 -61189155,"Metro 2033 Redux",purchase,1.0,0 -61189155,"Metro 2033 Redux",play,12.1,0 -61189155,"Metro Last Light Redux",purchase,1.0,0 -61189155,"Metro Last Light Redux",play,12.1,0 -61189155,"Red Faction Armageddon",purchase,1.0,0 -61189155,"Red Faction Armageddon",play,11.8,0 -61189155,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -61189155,"Injustice Gods Among Us Ultimate Edition",play,11.7,0 -61189155,"Tomb Raider",purchase,1.0,0 -61189155,"Tomb Raider",play,11.5,0 -61189155,"Killing Floor",purchase,1.0,0 -61189155,"Killing Floor",play,10.9,0 -61189155,"Dead Island",purchase,1.0,0 -61189155,"Dead Island",play,10.6,0 -61189155,"Dishonored (RU)",purchase,1.0,0 -61189155,"Dishonored (RU)",play,10.3,0 -61189155,"BioShock",purchase,1.0,0 -61189155,"BioShock",play,9.9,0 -61189155,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -61189155,"Resident Evil Revelations / Biohazard Revelations",play,9.6,0 -61189155,"Outlast",purchase,1.0,0 -61189155,"Outlast",play,9.5,0 -61189155,"How to Survive",purchase,1.0,0 -61189155,"How to Survive",play,9.4,0 -61189155,"Call of Duty Advanced Warfare",purchase,1.0,0 -61189155,"Call of Duty Advanced Warfare",play,7.5,0 -61189155,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -61189155,"METAL GEAR RISING REVENGEANCE",play,7.3,0 -61189155,"Saints Row IV",purchase,1.0,0 -61189155,"Saints Row IV",play,6.3,0 -61189155,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -61189155,"Call of Duty Advanced Warfare - Multiplayer",play,5.8,0 -61189155,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -61189155,"Call of Duty Black Ops II - Zombies",play,5.4,0 -61189155,"The Forest",purchase,1.0,0 -61189155,"The Forest",play,4.7,0 -61189155,"PAYDAY The Heist",purchase,1.0,0 -61189155,"PAYDAY The Heist",play,4.2,0 -61189155,"Darksiders",purchase,1.0,0 -61189155,"Darksiders",play,4.1,0 -61189155,"Two Worlds II",purchase,1.0,0 -61189155,"Two Worlds II",play,3.7,0 -61189155,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",purchase,1.0,0 -61189155,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",play,2.5,0 -61189155,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -61189155,"Kane & Lynch 2 Dog Days",play,2.3,0 -61189155,"Call of Duty Black Ops II",purchase,1.0,0 -61189155,"Call of Duty Black Ops II",play,2.2,0 -61189155,"Remember Me",purchase,1.0,0 -61189155,"Remember Me",play,1.6,0 -61189155,"BioShock Infinite",purchase,1.0,0 -61189155,"BioShock Infinite",play,1.5,0 -61189155,"Just Cause 2",purchase,1.0,0 -61189155,"Just Cause 2",play,1.5,0 -61189155,"Zombie Panic Source",purchase,1.0,0 -61189155,"Zombie Panic Source",play,1.4,0 -61189155,"DmC Devil May Cry",purchase,1.0,0 -61189155,"DmC Devil May Cry",play,1.4,0 -61189155,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -61189155,"Dark Souls Prepare to Die Edition",play,0.8,0 -61189155,"Command and Conquer 3 Kane's Wrath",purchase,1.0,0 -61189155,"Command and Conquer 3 Kane's Wrath",play,0.8,0 -61189155,"Half-Life 2 Deathmatch",purchase,1.0,0 -61189155,"Half-Life 2 Deathmatch",play,0.6,0 -61189155,"Sniper Elite V2",purchase,1.0,0 -61189155,"Sniper Elite V2",play,0.4,0 -61189155,"Quake Live",purchase,1.0,0 -61189155,"Quake Live",play,0.3,0 -61189155,"Assassin's Creed II",purchase,1.0,0 -61189155,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -61189155,"Half-Life 2 Lost Coast",purchase,1.0,0 -61189155,"BioShock 2",purchase,1.0,0 -61189155,"Call of Duty World at War",purchase,1.0,0 -61189155,"Day of Defeat Source",purchase,1.0,0 -61189155,"Dead Rising 3 DLC1",purchase,1.0,0 -61189155,"Dead Rising 3 DLC2",purchase,1.0,0 -61189155,"Dead Rising 3 DLC3",purchase,1.0,0 -61189155,"Dead Rising 3 DLC4",purchase,1.0,0 -61189155,"Evolve - Behemoth",purchase,1.0,0 -61189155,"Gun Monkeys",purchase,1.0,0 -61189155,"Prototype 2 RADNET Access Pack",purchase,1.0,0 -61189155,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -61189155,"Two Worlds 2 - Pirates of the Flying Fortress ",purchase,1.0,0 -92503355,"Sid Meier's Civilization V",purchase,1.0,0 -92503355,"Sid Meier's Civilization V",play,43.0,0 -92503355,"The Elder Scrolls V Skyrim",purchase,1.0,0 -92503355,"The Elder Scrolls V Skyrim",play,32.0,0 -92503355,"Sleeping Dogs",purchase,1.0,0 -92503355,"Sleeping Dogs",play,6.6,0 -92503355,"Spec Ops The Line",purchase,1.0,0 -92503355,"Spec Ops The Line",play,6.5,0 -92503355,"Supreme Commander 2",purchase,1.0,0 -92503355,"Supreme Commander 2",play,5.3,0 -92503355,"Assassin's Creed",purchase,1.0,0 -92503355,"Assassin's Creed",play,2.7,0 -92503355,"ShootMania Storm",purchase,1.0,0 -92503355,"ShootMania Storm",play,2.0,0 -92503355,"Audiosurf",purchase,1.0,0 -92503355,"Audiosurf",play,1.4,0 -92503355,"Super Hexagon",purchase,1.0,0 -92503355,"Super Hexagon",play,1.4,0 -92503355,"Borderlands",purchase,1.0,0 -92503355,"Borderlands",play,1.3,0 -92503355,"L.A. Noire",purchase,1.0,0 -92503355,"L.A. Noire",play,1.2,0 -92503355,"Just Cause 2",purchase,1.0,0 -92503355,"Just Cause 2",play,0.9,0 -92503355,"Team Fortress 2",purchase,1.0,0 -92503355,"Team Fortress 2",play,0.9,0 -92503355,"Worms Ultimate Mayhem",purchase,1.0,0 -92503355,"Worms Ultimate Mayhem",play,0.7,0 -92503355,"Grand Theft Auto IV",purchase,1.0,0 -92503355,"Grand Theft Auto IV",play,0.7,0 -92503355,"Goat Simulator",purchase,1.0,0 -92503355,"Goat Simulator",play,0.4,0 -92503355,"Thomas Was Alone",purchase,1.0,0 -92503355,"Thomas Was Alone",play,0.4,0 -92503355,"Poker Night 2",purchase,1.0,0 -92503355,"Poker Night 2",play,0.3,0 -92503355,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -92503355,"Red Faction Armageddon",purchase,1.0,0 -92503355,"Titan Quest",purchase,1.0,0 -92503355,"Metro 2033",purchase,1.0,0 -92503355,"Darksiders",purchase,1.0,0 -92503355,"Dishonored",purchase,1.0,0 -92503355,"Mirror's Edge",purchase,1.0,0 -92503355,"Assassin's Creed II",purchase,1.0,0 -92503355,"Batman Arkham Origins",purchase,1.0,0 -92503355,"Borderlands 2",purchase,1.0,0 -92503355,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -92503355,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -92503355,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -92503355,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -92503355,"Company of Heroes",purchase,1.0,0 -92503355,"Company of Heroes (New Steam Version)",purchase,1.0,0 -92503355,"Company of Heroes Opposing Fronts",purchase,1.0,0 -92503355,"Company of Heroes Tales of Valor",purchase,1.0,0 -92503355,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -92503355,"PlanetSide 2",purchase,1.0,0 -92503355,"Saints Row The Third",purchase,1.0,0 -92503355,"Saints Row IV",purchase,1.0,0 -92503355,"Warframe",purchase,1.0,0 -1024319,"Day of Defeat",purchase,1.0,0 -1024319,"Day of Defeat",play,12.1,0 -1024319,"Counter-Strike",purchase,1.0,0 -1024319,"Deathmatch Classic",purchase,1.0,0 -1024319,"Half-Life",purchase,1.0,0 -1024319,"Half-Life Blue Shift",purchase,1.0,0 -1024319,"Half-Life Opposing Force",purchase,1.0,0 -1024319,"Ricochet",purchase,1.0,0 -1024319,"Team Fortress Classic",purchase,1.0,0 -297650159,"Counter-Strike Global Offensive",purchase,1.0,0 -297650159,"Counter-Strike Global Offensive",play,1.9,0 -297650159,"Terraria",purchase,1.0,0 -297650159,"Terraria",play,0.2,0 -297650159,"Assassin's Creed IV Black Flag",purchase,1.0,0 -297650159,"Left 4 Dead",purchase,1.0,0 -297650159,"Left 4 Dead 2",purchase,1.0,0 -297650159,"Pixel Piracy",purchase,1.0,0 -297650159,"Warframe",purchase,1.0,0 -264399888,"FreeStyle2 Street Basketball",purchase,1.0,0 -264399888,"Unturned",purchase,1.0,0 -72627862,"Team Fortress 2",purchase,1.0,0 -72627862,"Team Fortress 2",play,159.0,0 -72627862,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -72627862,"Call of Duty Modern Warfare 2 - Multiplayer",play,33.0,0 -72627862,"Counter-Strike Global Offensive",purchase,1.0,0 -72627862,"Counter-Strike Global Offensive",play,12.8,0 -72627862,"Call of Duty Modern Warfare 2",purchase,1.0,0 -72627862,"Call of Duty Modern Warfare 2",play,7.4,0 -72627862,"Portal",purchase,1.0,0 -72627862,"Portal",play,6.2,0 -72627862,"Alien Swarm",purchase,1.0,0 -72627862,"Alien Swarm",play,2.9,0 -72627862,"Robocraft",purchase,1.0,0 -72627862,"Robocraft",play,2.3,0 -72627862,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -72627862,"Call of Duty Black Ops II - Multiplayer",play,2.0,0 -72627862,"DiRT 3",purchase,1.0,0 -72627862,"DiRT 3",play,1.5,0 -72627862,"Rochard",purchase,1.0,0 -72627862,"Rochard",play,1.1,0 -72627862,"Half-Life 2",purchase,1.0,0 -72627862,"Half-Life 2",play,1.0,0 -72627862,"Trine 2",purchase,1.0,0 -72627862,"Trine 2",play,1.0,0 -72627862,"Sniper Elite V2",purchase,1.0,0 -72627862,"Sniper Elite V2",play,0.6,0 -72627862,"Dishonored (RU)",purchase,1.0,0 -72627862,"Dishonored (RU)",play,0.6,0 -72627862,"PAYDAY The Heist",purchase,1.0,0 -72627862,"PAYDAY The Heist",play,0.5,0 -72627862,"Serious Sam HD The First Encounter",purchase,1.0,0 -72627862,"Serious Sam HD The First Encounter",play,0.4,0 -72627862,"Euro Truck Simulator 2",purchase,1.0,0 -72627862,"Euro Truck Simulator 2",play,0.2,0 -72627862,"FootLOL Epic Fail League",purchase,1.0,0 -72627862,"FootLOL Epic Fail League",play,0.2,0 -72627862,"Trine",purchase,1.0,0 -72627862,"Trine",play,0.2,0 -72627862,"RACE 07",purchase,1.0,0 -72627862,"RACE 07",play,0.1,0 -72627862,"Loadout",purchase,1.0,0 -72627862,"Loadout",play,0.1,0 -72627862,"Blood Bowl Legendary Edition",purchase,1.0,0 -72627862,"Blood Bowl Legendary Edition",play,0.1,0 -72627862,"Unturned",purchase,1.0,0 -72627862,"Double Action Boogaloo",purchase,1.0,0 -72627862,"Sigils of Elohim",purchase,1.0,0 -72627862,"Call of Duty Black Ops II",purchase,1.0,0 -72627862,"GTR Evolution",purchase,1.0,0 -72627862,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -72627862,"DiRT 3 Complete Edition",purchase,1.0,0 -72627862,"DiRT Showdown",purchase,1.0,0 -72627862,"Half-Life 2 Episode One",purchase,1.0,0 -72627862,"Half-Life 2 Episode Two",purchase,1.0,0 -72627862,"Half-Life 2 Lost Coast",purchase,1.0,0 -72627862,"Hitman Absolution",purchase,1.0,0 -72627862,"Left 4 Dead 2",purchase,1.0,0 -72627862,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -72627862,"Operation Flashpoint Red River",purchase,1.0,0 -72627862,"Overlord",purchase,1.0,0 -72627862,"Overlord Raising Hell",purchase,1.0,0 -72627862,"Overlord II",purchase,1.0,0 -72627862,"Portal Stories Mel",purchase,1.0,0 -72627862,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -72627862,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -72627862,"Rise of the Argonauts",purchase,1.0,0 -72627862,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -72627862,"Supreme Commander 2",purchase,1.0,0 -129391396,"Stranded Deep",purchase,1.0,0 -129391396,"Stranded Deep",play,167.0,0 -129391396,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -129391396,"Call of Duty Modern Warfare 3 - Multiplayer",play,73.0,0 -129391396,"Portal 2",purchase,1.0,0 -129391396,"Portal 2",play,6.7,0 -129391396,"Driver San Francisco",purchase,1.0,0 -129391396,"Driver San Francisco",play,3.7,0 -129391396,"Surgeon Simulator",purchase,1.0,0 -129391396,"Surgeon Simulator",play,2.6,0 -129391396,"Call of Duty Modern Warfare 3",purchase,1.0,0 -129391396,"Call of Duty Modern Warfare 3",play,2.5,0 -129391396,"Borderlands 2",purchase,1.0,0 -129391396,"Borderlands 2",play,2.2,0 -129391396,"Garry's Mod",purchase,1.0,0 -129391396,"Garry's Mod",play,1.3,0 -129391396,"Rust",purchase,1.0,0 -129391396,"Rust",play,0.4,0 -129391396,"Team Fortress 2",purchase,1.0,0 -129391396,"Team Fortress 2",play,0.3,0 -129391396,"Grand Theft Auto San Andreas",purchase,1.0,0 -129391396,"Grand Theft Auto San Andreas",play,0.3,0 -129391396,"System Shock 2",purchase,1.0,0 -129391396,"System Shock 2",play,0.1,0 -129391396,"Grand Theft Auto San Andreas",purchase,1.0,0 -174276289,"The Escapists",purchase,1.0,0 -174276289,"The Escapists",play,13.3,0 -174276289,"Team Fortress 2",purchase,1.0,0 -174276289,"Team Fortress 2",play,1.2,0 -174276289,"FreeStyle2 Street Basketball",purchase,1.0,0 -174276289,"FreeStyle2 Street Basketball",play,0.4,0 -174276289,"Battle Nations",purchase,1.0,0 -174276289,"Battle Nations",play,0.3,0 -174276289,"8BitMMO",purchase,1.0,0 -174276289,"8BitMMO",play,0.2,0 -174276289,"Double Action Boogaloo",purchase,1.0,0 -174276289,"The Mighty Quest For Epic Loot",purchase,1.0,0 -174276289,"Loadout",purchase,1.0,0 -239318685,"Dota 2",purchase,1.0,0 -239318685,"Dota 2",play,1.0,0 -171462811,"Dota 2",purchase,1.0,0 -171462811,"Dota 2",play,12.5,0 -109967112,"FINAL FANTASY XIII",purchase,1.0,0 -109967112,"FINAL FANTASY XIII",play,27.0,0 -109967112,"Stonehearth",purchase,1.0,0 -109967112,"Stonehearth",play,18.7,0 -109967112,"Reus",purchase,1.0,0 -109967112,"Reus",play,0.5,0 -109967112,"Lara Croft and the Temple of Osiris",purchase,1.0,0 -109967112,"Lara Croft and the Temple of Osiris",play,0.3,0 -109967112,"Life Is Strange",purchase,1.0,0 -109967112,"Thief",purchase,1.0,0 -131690275,"Dota 2",purchase,1.0,0 -131690275,"Dota 2",play,1344.0,0 -131690275,"Left 4 Dead 2",purchase,1.0,0 -297996370,"Dota 2",purchase,1.0,0 -297996370,"Dota 2",play,27.0,0 -94379559,"Call of Duty Modern Warfare 3",purchase,1.0,0 -94379559,"Call of Duty Modern Warfare 3",play,40.0,0 -94379559,"Alan Wake",purchase,1.0,0 -94379559,"Alan Wake",play,10.8,0 -94379559,"Hitman Absolution",purchase,1.0,0 -94379559,"Hitman Absolution",play,10.3,0 -94379559,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -129240324,"Sid Meier's Civilization V",purchase,1.0,0 -129240324,"Sid Meier's Civilization V",play,3.8,0 -45314861,"Half-Life 2",purchase,1.0,0 -45314861,"Half-Life 2",play,7.0,0 -45314861,"Counter-Strike Source",purchase,1.0,0 -45314861,"Half-Life 2 Deathmatch",purchase,1.0,0 -45314861,"Half-Life 2 Lost Coast",purchase,1.0,0 -45314861,"Half-Life Source",purchase,1.0,0 -45314861,"Half-Life Deathmatch Source",purchase,1.0,0 -87000540,"Team Fortress 2",purchase,1.0,0 -87000540,"Team Fortress 2",play,35.0,0 -285537912,"Heroes & Generals",purchase,1.0,0 -285537912,"Heroes & Generals",play,36.0,0 -181894864,"Team Fortress 2",purchase,1.0,0 -181894864,"Team Fortress 2",play,898.0,0 -181894864,"Unturned",purchase,1.0,0 -181894864,"Unturned",play,58.0,0 -181894864,"Spiral Knights",purchase,1.0,0 -181894864,"Spiral Knights",play,40.0,0 -181894864,"Dota 2",purchase,1.0,0 -181894864,"Dota 2",play,0.8,0 -181894864,"Garry's Mod",purchase,1.0,0 -181894864,"Garry's Mod",play,0.4,0 -181894864,"Elsword",purchase,1.0,0 -181894864,"Trove",purchase,1.0,0 -219838359,"Team Fortress 2",purchase,1.0,0 -219838359,"Team Fortress 2",play,0.2,0 -219838359,"Counter-Strike Nexon Zombies",purchase,1.0,0 -219838359,"Crossfire Europe",purchase,1.0,0 -219838359,"Karos",purchase,1.0,0 -200420585,"Dota 2",purchase,1.0,0 -200420585,"Dota 2",play,2.1,0 -247050395,"Dota 2",purchase,1.0,0 -247050395,"Dota 2",play,0.1,0 -301733532,"Genesis Online",purchase,1.0,0 -301733532,"Genesis Online",play,0.8,0 -301733532,"Emily is Away",purchase,1.0,0 -301733532,"Emily is Away",play,0.8,0 -301733532,"Back to Dinosaur Island ",purchase,1.0,0 -301733532,"Back to Dinosaur Island ",play,0.1,0 -261337836,"theHunter",purchase,1.0,0 -261337836,"theHunter",play,0.3,0 -302253205,"Dota 2",purchase,1.0,0 -302253205,"Dota 2",play,0.9,0 -70126472,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -70126472,"Call of Duty Modern Warfare 2 - Multiplayer",play,190.0,0 -70126472,"Call of Duty Modern Warfare 2",purchase,1.0,0 -70126472,"Call of Duty Modern Warfare 2",play,11.4,0 -70126472,"Call of Duty Modern Warfare 2 - Resurgence Pack",purchase,1.0,0 -255007865,"Unturned",purchase,1.0,0 -255007865,"Unturned",play,64.0,0 -255007865,"Trove",purchase,1.0,0 -255007865,"Trove",play,6.6,0 -255007865,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -255007865,"School of Dragons How to Train Your Dragon",play,5.4,0 -255007865,"Clicker Heroes",purchase,1.0,0 -255007865,"Clicker Heroes",play,3.5,0 -255007865,"Team Fortress 2",purchase,1.0,0 -255007865,"Team Fortress 2",play,3.4,0 -255007865,"Block N Load",purchase,1.0,0 -255007865,"Block N Load",play,0.6,0 -255007865,"Teeworlds",purchase,1.0,0 -255007865,"Teeworlds",play,0.5,0 -255007865,"War of Beach",purchase,1.0,0 -255007865,"War of Beach",play,0.4,0 -255007865,"Robocraft",purchase,1.0,0 -255007865,"Robocraft",play,0.2,0 -168451877,"Dota 2",purchase,1.0,0 -168451877,"Dota 2",play,0.7,0 -46957399,"Napoleon Total War",purchase,1.0,0 -46957399,"Napoleon Total War",play,1193.0,0 -46957399,"Empire Total War",purchase,1.0,0 -46957399,"Empire Total War",play,898.0,0 -46957399,"Mount & Blade Warband",purchase,1.0,0 -46957399,"Mount & Blade Warband",play,239.0,0 -46957399,"Fallout New Vegas",purchase,1.0,0 -46957399,"Fallout New Vegas",play,223.0,0 -46957399,"Total War SHOGUN 2",purchase,1.0,0 -46957399,"Total War SHOGUN 2",play,144.0,0 -46957399,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -46957399,"Fallout New Vegas Dead Money",purchase,1.0,0 -46957399,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -17414305,"Call of Duty Black Ops",purchase,1.0,0 -17414305,"Call of Duty Black Ops",play,259.0,0 -17414305,"Warframe",purchase,1.0,0 -17414305,"Warframe",play,191.0,0 -17414305,"7 Days to Die",purchase,1.0,0 -17414305,"7 Days to Die",play,160.0,0 -17414305,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -17414305,"Call of Duty Modern Warfare 2 - Multiplayer",play,112.0,0 -17414305,"Call of Duty Modern Warfare 2",purchase,1.0,0 -17414305,"Call of Duty Modern Warfare 2",play,26.0,0 -17414305,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -17414305,"Call of Duty Black Ops - Multiplayer",play,23.0,0 -17414305,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -17414305,"Call of Duty Modern Warfare 3 - Multiplayer",play,21.0,0 -17414305,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -17414305,"Call of Duty Black Ops II - Zombies",play,11.6,0 -17414305,"Left 4 Dead 2",purchase,1.0,0 -17414305,"Left 4 Dead 2",play,10.5,0 -17414305,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -17414305,"Call of Duty Black Ops II - Multiplayer",play,9.4,0 -17414305,"Counter-Strike Source",purchase,1.0,0 -17414305,"Counter-Strike Source",play,4.2,0 -17414305,"Alien Swarm",purchase,1.0,0 -17414305,"Alien Swarm",play,1.7,0 -17414305,"Borderlands 2",purchase,1.0,0 -17414305,"Borderlands 2",play,1.4,0 -17414305,"PAYDAY The Heist",purchase,1.0,0 -17414305,"PAYDAY The Heist",play,0.8,0 -17414305,"Call of Duty Modern Warfare 3",purchase,1.0,0 -17414305,"Call of Duty Modern Warfare 3",play,0.8,0 -17414305,"Sniper Elite Zombie Army 2",purchase,1.0,0 -17414305,"Sniper Elite Zombie Army 2",play,0.4,0 -17414305,"Call of Duty Black Ops II",purchase,1.0,0 -17414305,"Company of Heroes",purchase,1.0,0 -17414305,"Company of Heroes (New Steam Version)",purchase,1.0,0 -17414305,"Company of Heroes 2",purchase,1.0,0 -17414305,"Company of Heroes Opposing Fronts",purchase,1.0,0 -17414305,"Company of Heroes Tales of Valor",purchase,1.0,0 -17414305,"Counter-Strike",purchase,1.0,0 -17414305,"Counter-Strike Condition Zero",purchase,1.0,0 -17414305,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -17414305,"Half-Life 2",purchase,1.0,0 -17414305,"Half-Life 2 Deathmatch",purchase,1.0,0 -17414305,"Half-Life 2 Lost Coast",purchase,1.0,0 -17414305,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -17414305,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -57181405,"Dota 2",purchase,1.0,0 -57181405,"Dota 2",play,7.2,0 -47227777,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -47227777,"Warhammer 40,000 Dawn of War II",play,5.5,0 -289918864,"Age of Empires II HD Edition",purchase,1.0,0 -289918864,"Age of Empires II HD Edition",play,48.0,0 -289918864,"Age of Empires II HD The Forgotten",purchase,1.0,0 -71875007,"Football Manager 2013",purchase,1.0,0 -71875007,"Football Manager 2013",play,586.0,0 -71875007,"Football Manager 2012",purchase,1.0,0 -71875007,"Football Manager 2012",play,431.0,0 -71875007,"Football Manager 2015",purchase,1.0,0 -71875007,"Football Manager 2015",play,233.0,0 -71875007,"Football Manager 2014",purchase,1.0,0 -71875007,"Football Manager 2014",play,198.0,0 -71875007,"Counter-Strike",purchase,1.0,0 -71875007,"Counter-Strike",play,22.0,0 -71875007,"Counter-Strike Condition Zero",purchase,1.0,0 -71875007,"Counter-Strike Condition Zero",play,0.4,0 -71875007,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -71875007,"Day of Defeat",purchase,1.0,0 -71875007,"Deathmatch Classic",purchase,1.0,0 -71875007,"Ricochet",purchase,1.0,0 -280845170,"Dota 2",purchase,1.0,0 -280845170,"Dota 2",play,63.0,0 -287693866,"Counter-Strike Global Offensive",purchase,1.0,0 -287693866,"Counter-Strike Global Offensive",play,1.2,0 -287693866,"Warframe",purchase,1.0,0 -150995572,"Counter-Strike Global Offensive",purchase,1.0,0 -150995572,"Counter-Strike Global Offensive",play,834.0,0 -150995572,"Terraria",purchase,1.0,0 -150995572,"Terraria",play,223.0,0 -150995572,"Garry's Mod",purchase,1.0,0 -150995572,"Garry's Mod",play,104.0,0 -150995572,"Realm of the Mad God",purchase,1.0,0 -150995572,"Realm of the Mad God",play,49.0,0 -150995572,"Left 4 Dead 2",purchase,1.0,0 -150995572,"Left 4 Dead 2",play,22.0,0 -150995572,"Unturned",purchase,1.0,0 -150995572,"Unturned",play,21.0,0 -150995572,"Dead Island Epidemic",purchase,1.0,0 -150995572,"Dead Island Epidemic",play,12.0,0 -150995572,"The Ship",purchase,1.0,0 -150995572,"The Ship",play,10.2,0 -150995572,"No More Room in Hell",purchase,1.0,0 -150995572,"No More Room in Hell",play,8.8,0 -150995572,"Pirates, Vikings, & Knights II",purchase,1.0,0 -150995572,"Pirates, Vikings, & Knights II",play,6.0,0 -150995572,"Counter-Strike Source",purchase,1.0,0 -150995572,"Counter-Strike Source",play,4.5,0 -150995572,"RIFT",purchase,1.0,0 -150995572,"RIFT",play,2.7,0 -150995572,"Murder Miners",purchase,1.0,0 -150995572,"Murder Miners",play,2.6,0 -150995572,"Don't Starve Together Beta",purchase,1.0,0 -150995572,"Don't Starve Together Beta",play,2.0,0 -150995572,"PAYDAY The Heist",purchase,1.0,0 -150995572,"PAYDAY The Heist",play,1.7,0 -150995572,"Yet Another Zombie Defense",purchase,1.0,0 -150995572,"Yet Another Zombie Defense",play,0.7,0 -150995572,"ORION Prelude",purchase,1.0,0 -150995572,"ORION Prelude",play,0.6,0 -150995572,"The Ship Tutorial",purchase,1.0,0 -150995572,"AdVenture Capitalist",purchase,1.0,0 -150995572,"Defiance",purchase,1.0,0 -150995572,"Pool Nation",purchase,1.0,0 -150995572,"The Ship Single Player",purchase,1.0,0 -150995572,"Trove",purchase,1.0,0 -157275758,"Football Manager 2014",purchase,1.0,0 -157275758,"Football Manager 2014",play,193.0,0 -157275758,"Prison Architect",purchase,1.0,0 -157275758,"Prison Architect",play,119.0,0 -157275758,"Rulers of Nations",purchase,1.0,0 -157275758,"Rulers of Nations",play,53.0,0 -157275758,"Sid Meier's Civilization V",purchase,1.0,0 -157275758,"Sid Meier's Civilization V",play,45.0,0 -157275758,"Medieval II Total War",purchase,1.0,0 -157275758,"Medieval II Total War",play,35.0,0 -157275758,"Qvadriga",purchase,1.0,0 -157275758,"Qvadriga",play,22.0,0 -157275758,"Mount & Blade",purchase,1.0,0 -157275758,"Mount & Blade",play,14.7,0 -157275758,"Papers, Please",purchase,1.0,0 -157275758,"Papers, Please",play,10.4,0 -157275758,"Game Dev Tycoon",purchase,1.0,0 -157275758,"Game Dev Tycoon",play,9.7,0 -157275758,"The Binding of Isaac",purchase,1.0,0 -157275758,"The Binding of Isaac",play,9.6,0 -157275758,"Shadowrun Returns",purchase,1.0,0 -157275758,"Shadowrun Returns",play,8.9,0 -157275758,"Door Kickers",purchase,1.0,0 -157275758,"Door Kickers",play,4.3,0 -157275758,"Puzzle Agent",purchase,1.0,0 -157275758,"Puzzle Agent",play,3.9,0 -157275758,"60 Seconds!",purchase,1.0,0 -157275758,"60 Seconds!",play,3.6,0 -157275758,"Organ Trail Director's Cut",purchase,1.0,0 -157275758,"Organ Trail Director's Cut",play,2.7,0 -157275758,"Mini Metro",purchase,1.0,0 -157275758,"Mini Metro",play,2.3,0 -157275758,"Kerbal Space Program",purchase,1.0,0 -157275758,"Kerbal Space Program",play,2.0,0 -157275758,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -157275758,"Shadowrun Dragonfall - Director's Cut",play,1.6,0 -157275758,"Shoppe Keep",purchase,1.0,0 -157275758,"Shoppe Keep",play,0.2,0 -157275758,"Super Meat Boy",purchase,1.0,0 -157275758,"Super Meat Boy",play,0.2,0 -157275758,"Door Kickers Soundtrack",purchase,1.0,0 -157275758,"Medieval II Total War Kingdoms",purchase,1.0,0 -70487610,"Sid Meier's Civilization V",purchase,1.0,0 -70487610,"Sid Meier's Civilization V",play,6013.0,0 -70487610,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -70487610,"Sid Meier's Civilization Beyond Earth",play,304.0,0 -70487610,"Sid Meier's Starships",purchase,1.0,0 -70487610,"Sid Meier's Starships",play,8.5,0 -70487610,"Sid Meier's Civilization Beyond Earth - Rising Tide",purchase,1.0,0 -70487610,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -70487610,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -27871778,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -27871778,"Red Orchestra Ostfront 41-45",play,9.7,0 -27871778,"Darkest Hour Europe '44-'45",purchase,1.0,0 -27871778,"Mare Nostrum",purchase,1.0,0 -301411431,"Steel Ocean",purchase,1.0,0 -89648327,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -89648327,"Rising Storm/Red Orchestra 2 Multiplayer",play,1.0,0 -89648327,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -243572743,"Dota 2",purchase,1.0,0 -243572743,"Dota 2",play,331.0,0 -243572743,"Unturned",purchase,1.0,0 -243572743,"Unturned",play,2.1,0 -276609322,"Terraria",purchase,1.0,0 -276609322,"Terraria",play,0.3,0 -213947841,"Dota 2",purchase,1.0,0 -213947841,"Dota 2",play,1.8,0 -120740511,"Dota 2",purchase,1.0,0 -120740511,"Dota 2",play,2403.0,0 -83046795,"BRINK",purchase,1.0,0 -83046795,"BRINK",play,11.6,0 -61632730,"War Thunder",purchase,1.0,0 -61632730,"War Thunder",play,458.0,0 -61632730,"H1Z1",purchase,1.0,0 -61632730,"H1Z1",play,418.0,0 -61632730,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -61632730,"Call of Duty Modern Warfare 2 - Multiplayer",play,194.0,0 -61632730,"Dead Island Epidemic",purchase,1.0,0 -61632730,"Dead Island Epidemic",play,126.0,0 -61632730,"Don't Starve",purchase,1.0,0 -61632730,"Don't Starve",play,109.0,0 -61632730,"Counter-Strike Global Offensive",purchase,1.0,0 -61632730,"Counter-Strike Global Offensive",play,108.0,0 -61632730,"Darkest Dungeon",purchase,1.0,0 -61632730,"Darkest Dungeon",play,63.0,0 -61632730,"Path of Exile",purchase,1.0,0 -61632730,"Path of Exile",play,42.0,0 -61632730,"Don't Starve Together Beta",purchase,1.0,0 -61632730,"Don't Starve Together Beta",play,42.0,0 -61632730,"Clicker Heroes",purchase,1.0,0 -61632730,"Clicker Heroes",play,27.0,0 -61632730,"Echo of Soul",purchase,1.0,0 -61632730,"Echo of Soul",play,16.8,0 -61632730,"Infinite Crisis",purchase,1.0,0 -61632730,"Infinite Crisis",play,13.6,0 -61632730,"Arma 2 DayZ Mod",purchase,1.0,0 -61632730,"Arma 2 DayZ Mod",play,12.1,0 -61632730,"Enclave",purchase,1.0,0 -61632730,"Enclave",play,3.3,0 -61632730,"Dota 2",purchase,1.0,0 -61632730,"Dota 2",play,2.5,0 -61632730,"Call of Duty Modern Warfare 2",purchase,1.0,0 -61632730,"Call of Duty Modern Warfare 2",play,2.1,0 -61632730,"MoW Face Off XL",purchase,1.0,0 -61632730,"MoW Face Off XL",play,2.0,0 -61632730,"PlanetSide 2",purchase,1.0,0 -61632730,"PlanetSide 2",play,1.6,0 -61632730,"Magic Duels",purchase,1.0,0 -61632730,"Magic Duels",play,1.5,0 -61632730,"SMITE",purchase,1.0,0 -61632730,"SMITE",play,1.5,0 -61632730,"Dirty Bomb",purchase,1.0,0 -61632730,"Dirty Bomb",play,0.6,0 -61632730,"Half-Life 2 Deathmatch",purchase,1.0,0 -61632730,"Half-Life 2 Deathmatch",play,0.5,0 -61632730,"H1Z1 Test Server",purchase,1.0,0 -61632730,"H1Z1 Test Server",play,0.4,0 -61632730,"Alien Swarm",purchase,1.0,0 -61632730,"Alien Swarm",play,0.4,0 -61632730,"Arma 2 Operation Arrowhead",purchase,1.0,0 -61632730,"Arma 2 Operation Arrowhead",play,0.4,0 -61632730,"Trove",purchase,1.0,0 -61632730,"Trove",play,0.2,0 -61632730,"Counter-Strike Nexon Zombies",purchase,1.0,0 -61632730,"Counter-Strike Nexon Zombies",play,0.2,0 -61632730,"Arma 2",purchase,1.0,0 -61632730,"Arma 2",play,0.1,0 -61632730,"The Witcher Enhanced Edition",purchase,1.0,0 -61632730,"The Witcher Enhanced Edition",play,0.1,0 -61632730,"Half-Life 2 Lost Coast",purchase,1.0,0 -61632730,"Unturned",purchase,1.0,0 -61632730,"Gladiators Online Death Before Dishonor",purchase,1.0,0 -61632730,"Aura Kingdom",purchase,1.0,0 -61632730,"A-Men 2",purchase,1.0,0 -61632730,"Absconding Zatwor",purchase,1.0,0 -61632730,"Anomaly Warzone Earth",purchase,1.0,0 -61632730,"Arma 2 British Armed Forces",purchase,1.0,0 -61632730,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -61632730,"Arma 2 Private Military Company",purchase,1.0,0 -61632730,"Aura Kingdom - Winter Gift",purchase,1.0,0 -61632730,"Aveyond 3-2 Gates of Night",purchase,1.0,0 -61632730,"BlackShadows",purchase,1.0,0 -61632730,"Blood of Old",purchase,1.0,0 -61632730,"Bloop",purchase,1.0,0 -61632730,"Break Into Zatwor",purchase,1.0,0 -61632730,"Brilliant Bob",purchase,1.0,0 -61632730,"Call of Duty Modern Warfare 2 - Resurgence Pack",purchase,1.0,0 -61632730,"Commander Conquest of the Americas Gold",purchase,1.0,0 -61632730,"Cult of the Wind",purchase,1.0,0 -61632730,"Dead Bits",purchase,1.0,0 -61632730,"Desert Thunder",purchase,1.0,0 -61632730,"Don't Starve Reign of Giants",purchase,1.0,0 -61632730,"Doorways Holy Mountains of Flesh",purchase,1.0,0 -61632730,"Earth 2150 Lost Souls",purchase,1.0,0 -61632730,"Earth 2150 The Moon Project",purchase,1.0,0 -61632730,"East India Company Gold",purchase,1.0,0 -61632730,"Enemy Mind",purchase,1.0,0 -61632730,"Eurofighter Typhoon",purchase,1.0,0 -61632730,"Everlasting Summer",purchase,1.0,0 -61632730,"Fort Defense",purchase,1.0,0 -61632730,"Glacier 3 The Meltdown",purchase,1.0,0 -61632730,"Gladiators Online - Tiro Pack",purchase,1.0,0 -61632730,"Gorky 17",purchase,1.0,0 -61632730,"Grimoire Manastorm",purchase,1.0,0 -61632730,"GTR Evolution",purchase,1.0,0 -61632730,"Gun Metal",purchase,1.0,0 -61632730,"Hitman 2 Silent Assassin",purchase,1.0,0 -61632730,"Hyper Fighters",purchase,1.0,0 -61632730,"Keen Dreams",purchase,1.0,0 -61632730,"Knights and Merchants",purchase,1.0,0 -61632730,"Murder Miners",purchase,1.0,0 -61632730,"Naninights",purchase,1.0,0 -61632730,"Orbital Gear",purchase,1.0,0 -61632730,"Overcast - Walden and the Werewolf",purchase,1.0,0 -61632730,"Particula",purchase,1.0,0 -61632730,"Pirates of Black Cove Gold",purchase,1.0,0 -61632730,"Platypus II",purchase,1.0,0 -61632730,"RACE 07",purchase,1.0,0 -61632730,"RaceRoom Racing Experience ",purchase,1.0,0 -61632730,"Relic Hunters Zero",purchase,1.0,0 -61632730,"Rubber and Lead",purchase,1.0,0 -61632730,"Ruzh Delta Z",purchase,1.0,0 -61632730,"Sinister City",purchase,1.0,0 -61632730,"Sumo Revise",purchase,1.0,0 -61632730,"SUPER DISTRO",purchase,1.0,0 -61632730,"Tea Party Simulator 2015",purchase,1.0,0 -61632730,"TeraBlaster",purchase,1.0,0 -61632730,"The Adventures of Mr. Bobley",purchase,1.0,0 -61632730,"The Culling Of The Cows",purchase,1.0,0 -61632730,"The Deer",purchase,1.0,0 -61632730,"The Hat Man Shadow Ward",purchase,1.0,0 -61632730,"The Ship",purchase,1.0,0 -61632730,"The Ship Single Player",purchase,1.0,0 -61632730,"The Ship Tutorial",purchase,1.0,0 -61632730,"Time Ramesside (A New Reckoning)",purchase,1.0,0 -61632730,"Tinboy",purchase,1.0,0 -61632730,"Two Worlds Epic Edition",purchase,1.0,0 -61632730,"Two Worlds II",purchase,1.0,0 -61632730,"Warface",purchase,1.0,0 -61632730,"Warframe",purchase,1.0,0 -61632730,"Why So Evil 2 Dystopia",purchase,1.0,0 -61632730,"Woodle Tree Adventures",purchase,1.0,0 -61632730,"X-Blades",purchase,1.0,0 -193545615,"Champions Online",purchase,1.0,0 -193545615,"Champions Online",play,0.5,0 -193545615,"Team Fortress 2",purchase,1.0,0 -193545615,"Team Fortress 2",play,0.2,0 -193545615,"The Lord of the Rings Online",purchase,1.0,0 -295425801,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -295425801,"Tom Clancy's Ghost Recon Phantoms - EU",play,28.0,0 -295425801,"PlanetSide 2",purchase,1.0,0 -295425801,"PlanetSide 2",play,3.4,0 -27545486,"Grand Theft Auto V",purchase,1.0,0 -27545486,"Grand Theft Auto V",play,277.0,0 -27545486,"Left 4 Dead 2",purchase,1.0,0 -27545486,"Left 4 Dead 2",play,113.0,0 -27545486,"Grand Theft Auto IV",purchase,1.0,0 -27545486,"Grand Theft Auto IV",play,106.0,0 -27545486,"Killing Floor",purchase,1.0,0 -27545486,"Killing Floor",play,89.0,0 -27545486,"Euro Truck Simulator 2",purchase,1.0,0 -27545486,"Euro Truck Simulator 2",play,77.0,0 -27545486,"Warframe",purchase,1.0,0 -27545486,"Warframe",play,72.0,0 -27545486,"Portal 2",purchase,1.0,0 -27545486,"Portal 2",play,42.0,0 -27545486,"Test Drive Unlimited 2",purchase,1.0,0 -27545486,"Test Drive Unlimited 2",play,20.0,0 -27545486,"Happy Wars",purchase,1.0,0 -27545486,"Happy Wars",play,7.1,0 -27545486,"Race The WTCC Game",purchase,1.0,0 -27545486,"Race The WTCC Game",play,6.2,0 -27545486,"Portal",purchase,1.0,0 -27545486,"Portal",play,4.9,0 -27545486,"Alien Swarm",purchase,1.0,0 -27545486,"Alien Swarm",play,4.2,0 -27545486,"Dota 2",purchase,1.0,0 -27545486,"Dota 2",play,1.5,0 -27545486,"World of Guns Gun Disassembly",purchase,1.0,0 -27545486,"World of Guns Gun Disassembly",play,1.0,0 -27545486,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -27545486,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -27545486,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -27545486,"Killing Floor - Toy Master",purchase,1.0,0 -27545486,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -127594108,"Team Fortress 2",purchase,1.0,0 -127594108,"Team Fortress 2",play,30.0,0 -127594108,"Garry's Mod",purchase,1.0,0 -127594108,"Garry's Mod",play,13.2,0 -127594108,"Don't Starve",purchase,1.0,0 -127594108,"Don't Starve",play,1.4,0 -127594108,"No More Room in Hell",purchase,1.0,0 -127594108,"No More Room in Hell",play,1.2,0 -127594108,"Tower Wars",purchase,1.0,0 -127594108,"Tower Wars",play,0.8,0 -127594108,"Unturned",purchase,1.0,0 -127594108,"Unturned",play,0.4,0 -127594108,"Don't Starve Together Beta",purchase,1.0,0 -171418611,"Dota 2",purchase,1.0,0 -171418611,"Dota 2",play,234.0,0 -171418611,"Nosgoth",purchase,1.0,0 -171418611,"Robocraft",purchase,1.0,0 -171418611,"Unturned",purchase,1.0,0 -171418611,"Warframe",purchase,1.0,0 -81814849,"Dota 2",purchase,1.0,0 -81814849,"Dota 2",play,1.6,0 -81814849,"Counter-Strike Global Offensive",purchase,1.0,0 -137341828,"Dota 2",purchase,1.0,0 -137341828,"Dota 2",play,422.0,0 -137341828,"Counter-Strike Nexon Zombies",purchase,1.0,0 -137341828,"Tactical Intervention",purchase,1.0,0 -239849113,"Team Fortress 2",purchase,1.0,0 -239849113,"Team Fortress 2",play,0.7,0 -300516886,"Team Fortress 2",purchase,1.0,0 -300516886,"Team Fortress 2",play,1.2,0 -300516886,"Unturned",purchase,1.0,0 -300516886,"Unturned",play,0.4,0 -108758176,"Alien Swarm",purchase,1.0,0 -108758176,"Alien Swarm",play,0.4,0 -156578722,"Counter-Strike Global Offensive",purchase,1.0,0 -156578722,"Counter-Strike Global Offensive",play,45.0,0 -200282141,"Dota 2",purchase,1.0,0 -200282141,"Dota 2",play,356.0,0 -200282141,"Team Fortress 2",purchase,1.0,0 -200282141,"Team Fortress 2",play,0.8,0 -200282141,"Counter-Strike Nexon Zombies",purchase,1.0,0 -200282141,"Counter-Strike Nexon Zombies",play,0.5,0 -200282141,"Robocraft",purchase,1.0,0 -200282141,"Robocraft",play,0.3,0 -200282141,"Warframe",purchase,1.0,0 -200282141,"Warframe",play,0.2,0 -294585971,"Fallout 4",purchase,1.0,0 -294585971,"Fallout 4",play,250.0,0 -254234513,"Dota 2",purchase,1.0,0 -254234513,"Dota 2",play,0.4,0 -239004331,"Dota 2",purchase,1.0,0 -239004331,"Dota 2",play,1.3,0 -31616745,"Half-Life",purchase,1.0,0 -31616745,"Half-Life Blue Shift",purchase,1.0,0 -31616745,"Half-Life Opposing Force",purchase,1.0,0 -31616745,"Team Fortress Classic",purchase,1.0,0 -256819019,"Unturned",purchase,1.0,0 -256819019,"Unturned",play,28.0,0 -256819019,"Batla",purchase,1.0,0 -256819019,"Batla",play,24.0,0 -256819019,"BLOCKADE 3D",purchase,1.0,0 -256819019,"BLOCKADE 3D",play,20.0,0 -256819019,"Team Fortress 2",purchase,1.0,0 -256819019,"Team Fortress 2",play,3.8,0 -179498213,"Dota 2",purchase,1.0,0 -179498213,"Dota 2",play,0.3,0 -106433292,"Football Manager 2012",purchase,1.0,0 -106433292,"Football Manager 2012",play,14.7,0 -173457000,"Dota 2",purchase,1.0,0 -173457000,"Dota 2",play,0.6,0 -190675881,"7 Days to Die",purchase,1.0,0 -190675881,"7 Days to Die",play,36.0,0 -190675881,"Elite Dangerous",purchase,1.0,0 -190675881,"Elite Dangerous",play,18.5,0 -190675881,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -190675881,"STAR WARS Knights of the Old Republic II The Sith Lords",play,17.8,0 -190675881,"Empyrion - Galactic Survival",purchase,1.0,0 -190675881,"Empyrion - Galactic Survival",play,9.0,0 -190675881,"The Forest",purchase,1.0,0 -190675881,"The Forest",play,7.9,0 -190675881,"Savage Lands",purchase,1.0,0 -190675881,"Savage Lands",play,5.8,0 -190675881,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -190675881,"Dark Messiah of Might & Magic Single Player",play,5.7,0 -190675881,"Elite Dangerous Horizons",purchase,1.0,0 -190675881,"Elite Dangerous Horizons",play,3.2,0 -190675881,"Vindictus",purchase,1.0,0 -190675881,"Vindictus",play,1.5,0 -190675881,"BeamNG.drive",purchase,1.0,0 -190675881,"BeamNG.drive",play,1.5,0 -190675881,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -40212239,"ARK Survival Evolved",purchase,1.0,0 -40212239,"ARK Survival Evolved",play,211.0,0 -40212239,"Might & Magic Heroes VI",purchase,1.0,0 -40212239,"Might & Magic Heroes VI",play,169.0,0 -40212239,"Starbound",purchase,1.0,0 -40212239,"Starbound",play,135.0,0 -40212239,"Terraria",purchase,1.0,0 -40212239,"Terraria",play,114.0,0 -40212239,"The Witcher 3 Wild Hunt",purchase,1.0,0 -40212239,"The Witcher 3 Wild Hunt",play,114.0,0 -40212239,"Fallout 4",purchase,1.0,0 -40212239,"Fallout 4",play,105.0,0 -40212239,"The Elder Scrolls V Skyrim",purchase,1.0,0 -40212239,"The Elder Scrolls V Skyrim",play,102.0,0 -40212239,"Age of Wonders III",purchase,1.0,0 -40212239,"Age of Wonders III",play,83.0,0 -40212239,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -40212239,"Dragon Age Origins - Ultimate Edition",play,78.0,0 -40212239,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -40212239,"Sins of a Solar Empire Rebellion",play,75.0,0 -40212239,"Sid Meier's Civilization V",purchase,1.0,0 -40212239,"Sid Meier's Civilization V",play,75.0,0 -40212239,"Fallout New Vegas",purchase,1.0,0 -40212239,"Fallout New Vegas",play,71.0,0 -40212239,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -40212239,"Command and Conquer Red Alert 3 - Uprising",play,60.0,0 -40212239,"Company of Heroes 2",purchase,1.0,0 -40212239,"Company of Heroes 2",play,48.0,0 -40212239,"Homeworld Remastered Collection",purchase,1.0,0 -40212239,"Homeworld Remastered Collection",play,44.0,0 -40212239,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -40212239,"Deus Ex Human Revolution - Director's Cut",play,39.0,0 -40212239,"Pillars of Eternity",purchase,1.0,0 -40212239,"Pillars of Eternity",play,36.0,0 -40212239,"Total War ROME II - Emperor Edition",purchase,1.0,0 -40212239,"Total War ROME II - Emperor Edition",play,35.0,0 -40212239,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -40212239,"Sid Meier's Civilization Beyond Earth",play,33.0,0 -40212239,"PlanetSide 2",purchase,1.0,0 -40212239,"PlanetSide 2",play,32.0,0 -40212239,"Wargame European Escalation",purchase,1.0,0 -40212239,"Wargame European Escalation",play,30.0,0 -40212239,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -40212239,"STAR WARS Knights of the Old Republic II The Sith Lords",play,30.0,0 -40212239,"Dying Light",purchase,1.0,0 -40212239,"Dying Light",play,27.0,0 -40212239,"Batman Arkham Origins",purchase,1.0,0 -40212239,"Batman Arkham Origins",play,27.0,0 -40212239,"Borderlands 2",purchase,1.0,0 -40212239,"Borderlands 2",play,25.0,0 -40212239,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -40212239,"The Witcher 2 Assassins of Kings Enhanced Edition",play,25.0,0 -40212239,"Divinity Original Sin",purchase,1.0,0 -40212239,"Divinity Original Sin",play,24.0,0 -40212239,"Kingdom Wars",purchase,1.0,0 -40212239,"Kingdom Wars",play,23.0,0 -40212239,"BioShock Infinite",purchase,1.0,0 -40212239,"BioShock Infinite",play,23.0,0 -40212239,"Dishonored",purchase,1.0,0 -40212239,"Dishonored",play,23.0,0 -40212239,"Tomb Raider",purchase,1.0,0 -40212239,"Tomb Raider",play,23.0,0 -40212239,"Company of Heroes",purchase,1.0,0 -40212239,"Company of Heroes",play,21.0,0 -40212239,"Wargame Red Dragon",purchase,1.0,0 -40212239,"Wargame Red Dragon",play,21.0,0 -40212239,"Just Cause 2",purchase,1.0,0 -40212239,"Just Cause 2",play,19.3,0 -40212239,"Company of Heroes (New Steam Version)",purchase,1.0,0 -40212239,"Company of Heroes (New Steam Version)",play,16.8,0 -40212239,"Rogue Legacy",purchase,1.0,0 -40212239,"Rogue Legacy",play,16.7,0 -40212239,"Space Pirates and Zombies",purchase,1.0,0 -40212239,"Space Pirates and Zombies",play,16.2,0 -40212239,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -40212239,"Dark Souls Prepare to Die Edition",play,16.1,0 -40212239,"Half-Life 2",purchase,1.0,0 -40212239,"Half-Life 2",play,15.5,0 -40212239,"PAYDAY 2",purchase,1.0,0 -40212239,"PAYDAY 2",play,15.5,0 -40212239,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -40212239,"Red Faction Guerrilla Steam Edition",play,14.7,0 -40212239,"Dungeon Siege III",purchase,1.0,0 -40212239,"Dungeon Siege III",play,14.5,0 -40212239,"Grey Goo",purchase,1.0,0 -40212239,"Grey Goo",play,13.7,0 -40212239,"Shadowrun Returns",purchase,1.0,0 -40212239,"Shadowrun Returns",play,13.3,0 -40212239,"Far Cry 4",purchase,1.0,0 -40212239,"Far Cry 4",play,11.9,0 -40212239,"Might & Magic Heroes VII ",purchase,1.0,0 -40212239,"Might & Magic Heroes VII ",play,11.4,0 -40212239,"Age of Empires II HD Edition",purchase,1.0,0 -40212239,"Age of Empires II HD Edition",play,11.1,0 -40212239,"Homefront",purchase,1.0,0 -40212239,"Homefront",play,11.0,0 -40212239,"Wasteland 2",purchase,1.0,0 -40212239,"Wasteland 2",play,10.8,0 -40212239,"Overlord II",purchase,1.0,0 -40212239,"Overlord II",play,9.3,0 -40212239,"Metro 2033",purchase,1.0,0 -40212239,"Metro 2033",play,9.1,0 -40212239,"Portal 2",purchase,1.0,0 -40212239,"Portal 2",play,8.8,0 -40212239,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -40212239,"Game of Thrones - A Telltale Games Series",play,8.8,0 -40212239,"Warhammer 40,000 Space Marine",purchase,1.0,0 -40212239,"Warhammer 40,000 Space Marine",play,8.7,0 -40212239,"Satellite Reign",purchase,1.0,0 -40212239,"Satellite Reign",play,7.9,0 -40212239,"Castle Crashers",purchase,1.0,0 -40212239,"Castle Crashers",play,7.8,0 -40212239,"Endless Space",purchase,1.0,0 -40212239,"Endless Space",play,7.7,0 -40212239,"Solar 2",purchase,1.0,0 -40212239,"Solar 2",play,7.3,0 -40212239,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -40212239,"Warhammer 40,000 Dawn of War II",play,7.2,0 -40212239,"How to Survive",purchase,1.0,0 -40212239,"How to Survive",play,7.0,0 -40212239,"Command and Conquer Red Alert 3",purchase,1.0,0 -40212239,"Command and Conquer Red Alert 3",play,6.8,0 -40212239,"Darksiders II",purchase,1.0,0 -40212239,"Darksiders II",play,6.8,0 -40212239,"Republique",purchase,1.0,0 -40212239,"Republique",play,6.3,0 -40212239,"L.A. Noire",purchase,1.0,0 -40212239,"L.A. Noire",play,6.1,0 -40212239,"Sanctum",purchase,1.0,0 -40212239,"Sanctum",play,5.6,0 -40212239,"Sanctum 2",purchase,1.0,0 -40212239,"Sanctum 2",play,5.6,0 -40212239,"Planetary Annihilation",purchase,1.0,0 -40212239,"Planetary Annihilation",play,5.3,0 -40212239,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",purchase,1.0,0 -40212239,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",play,5.3,0 -40212239,"Valkyria Chronicles",purchase,1.0,0 -40212239,"Valkyria Chronicles",play,5.2,0 -40212239,"POSTAL 2",purchase,1.0,0 -40212239,"POSTAL 2",play,5.1,0 -40212239,"DC Universe Online",purchase,1.0,0 -40212239,"DC Universe Online",play,5.0,0 -40212239,"Team Fortress 2",purchase,1.0,0 -40212239,"Team Fortress 2",play,4.9,0 -40212239,"Max Payne 3",purchase,1.0,0 -40212239,"Max Payne 3",play,4.8,0 -40212239,"Craft The World",purchase,1.0,0 -40212239,"Craft The World",play,4.8,0 -40212239,"Infested Planet",purchase,1.0,0 -40212239,"Infested Planet",play,4.7,0 -40212239,"Arma 2 Operation Arrowhead",purchase,1.0,0 -40212239,"Arma 2 Operation Arrowhead",play,4.7,0 -40212239,"Act of Aggression",purchase,1.0,0 -40212239,"Act of Aggression",play,4.2,0 -40212239,"FTL Faster Than Light",purchase,1.0,0 -40212239,"FTL Faster Than Light",play,4.2,0 -40212239,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -40212239,"Warhammer 40,000 Dawn of War II Retribution",play,4.1,0 -40212239,"Saints Row IV",purchase,1.0,0 -40212239,"Saints Row IV",play,4.1,0 -40212239,"Age of Empires III Complete Collection",purchase,1.0,0 -40212239,"Age of Empires III Complete Collection",play,4.0,0 -40212239,"Warframe",purchase,1.0,0 -40212239,"Warframe",play,4.0,0 -40212239,"Child of Light",purchase,1.0,0 -40212239,"Child of Light",play,4.0,0 -40212239,"Alien Swarm",purchase,1.0,0 -40212239,"Alien Swarm",play,3.8,0 -40212239,"Napoleon Total War",purchase,1.0,0 -40212239,"Napoleon Total War",play,3.7,0 -40212239,"Betrayer",purchase,1.0,0 -40212239,"Betrayer",play,3.7,0 -40212239,"Stronghold 3",purchase,1.0,0 -40212239,"Stronghold 3",play,3.5,0 -40212239,"MURDERED SOUL SUSPECT",purchase,1.0,0 -40212239,"MURDERED SOUL SUSPECT",play,3.5,0 -40212239,"System Shock 2",purchase,1.0,0 -40212239,"System Shock 2",play,3.5,0 -40212239,"XCOM Enemy Unknown",purchase,1.0,0 -40212239,"XCOM Enemy Unknown",play,3.5,0 -40212239,"Hitman Absolution",purchase,1.0,0 -40212239,"Hitman Absolution",play,3.4,0 -40212239,"Two Worlds II",purchase,1.0,0 -40212239,"Two Worlds II",play,3.3,0 -40212239,"Orcs Must Die! 2",purchase,1.0,0 -40212239,"Orcs Must Die! 2",play,3.3,0 -40212239,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -40212239,"Kingdoms of Amalur Reckoning",play,3.2,0 -40212239,"Portal",purchase,1.0,0 -40212239,"Portal",play,3.2,0 -40212239,"Dungeon of the Endless",purchase,1.0,0 -40212239,"Dungeon of the Endless",play,3.1,0 -40212239,"Fable - The Lost Chapters",purchase,1.0,0 -40212239,"Fable - The Lost Chapters",play,2.7,0 -40212239,"Nail'd",purchase,1.0,0 -40212239,"Nail'd",play,2.4,0 -40212239,"Worms Reloaded",purchase,1.0,0 -40212239,"Worms Reloaded",play,2.4,0 -40212239,"Dear Esther",purchase,1.0,0 -40212239,"Dear Esther",play,2.4,0 -40212239,"Garry's Mod",purchase,1.0,0 -40212239,"Garry's Mod",play,2.3,0 -40212239,"Planetbase",purchase,1.0,0 -40212239,"Planetbase",play,2.0,0 -40212239,"Torchlight II",purchase,1.0,0 -40212239,"Torchlight II",play,2.0,0 -40212239,"Far Cry 3",purchase,1.0,0 -40212239,"Far Cry 3",play,1.9,0 -40212239,"The Bureau XCOM Declassified",purchase,1.0,0 -40212239,"The Bureau XCOM Declassified",play,1.9,0 -40212239,"The Elder Scrolls Online Tamriel Unlimited",purchase,1.0,0 -40212239,"The Elder Scrolls Online Tamriel Unlimited",play,1.7,0 -40212239,"Total War SHOGUN 2",purchase,1.0,0 -40212239,"Total War SHOGUN 2",play,1.7,0 -40212239,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -40212239,"Rising Storm/Red Orchestra 2 Multiplayer",play,1.6,0 -40212239,"The Darkness II",purchase,1.0,0 -40212239,"The Darkness II",play,1.6,0 -40212239,"Counter-Strike Global Offensive",purchase,1.0,0 -40212239,"Counter-Strike Global Offensive",play,1.4,0 -40212239,"To the Moon",purchase,1.0,0 -40212239,"To the Moon",play,1.4,0 -40212239,"Legendary",purchase,1.0,0 -40212239,"Legendary",play,1.3,0 -40212239,"Sakura Spirit",purchase,1.0,0 -40212239,"Sakura Spirit",play,1.3,0 -40212239,"Space Engineers",purchase,1.0,0 -40212239,"Space Engineers",play,1.2,0 -40212239,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -40212239,"Burnout Paradise The Ultimate Box",play,1.2,0 -40212239,"Wargame AirLand Battle",purchase,1.0,0 -40212239,"Wargame AirLand Battle",play,1.1,0 -40212239,"Crysis 2 Maximum Edition",purchase,1.0,0 -40212239,"Crysis 2 Maximum Edition",play,1.1,0 -40212239,"Hotline Miami",purchase,1.0,0 -40212239,"Hotline Miami",play,1.1,0 -40212239,"UFO Afterlight",purchase,1.0,0 -40212239,"UFO Afterlight",play,1.0,0 -40212239,"StarForge",purchase,1.0,0 -40212239,"StarForge",play,1.0,0 -40212239,"Deadlight",purchase,1.0,0 -40212239,"Deadlight",play,1.0,0 -40212239,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -40212239,"Just Cause 2 Multiplayer Mod",play,1.0,0 -40212239,"Mirror's Edge",purchase,1.0,0 -40212239,"Mirror's Edge",play,0.9,0 -40212239,"The Banner Saga",purchase,1.0,0 -40212239,"The Banner Saga",play,0.9,0 -40212239,"Natural Selection 2",purchase,1.0,0 -40212239,"Natural Selection 2",play,0.9,0 -40212239,"Don't Starve",purchase,1.0,0 -40212239,"Don't Starve",play,0.9,0 -40212239,"Deus Ex Game of the Year Edition",purchase,1.0,0 -40212239,"Deus Ex Game of the Year Edition",play,0.8,0 -40212239,"Estranged Act I",purchase,1.0,0 -40212239,"Estranged Act I",play,0.8,0 -40212239,"SOMA",purchase,1.0,0 -40212239,"SOMA",play,0.8,0 -40212239,"Pixel Piracy",purchase,1.0,0 -40212239,"Pixel Piracy",play,0.8,0 -40212239,"Dota 2",purchase,1.0,0 -40212239,"Dota 2",play,0.8,0 -40212239,"Braid",purchase,1.0,0 -40212239,"Braid",play,0.8,0 -40212239,"SpaceChem",purchase,1.0,0 -40212239,"SpaceChem",play,0.7,0 -40212239,"Endless Legend",purchase,1.0,0 -40212239,"Endless Legend",play,0.7,0 -40212239,"Nation Red",purchase,1.0,0 -40212239,"Nation Red",play,0.7,0 -40212239,"Guns of Icarus Online",purchase,1.0,0 -40212239,"Guns of Icarus Online",play,0.6,0 -40212239,"Left 4 Dead 2",purchase,1.0,0 -40212239,"Left 4 Dead 2",play,0.6,0 -40212239,"Survivalist",purchase,1.0,0 -40212239,"Survivalist",play,0.6,0 -40212239,"Goat Simulator",purchase,1.0,0 -40212239,"Goat Simulator",play,0.6,0 -40212239,"God Mode",purchase,1.0,0 -40212239,"God Mode",play,0.5,0 -40212239,"Company of Heroes Opposing Fronts",purchase,1.0,0 -40212239,"Company of Heroes Opposing Fronts",play,0.5,0 -40212239,"Nuclear Dawn",purchase,1.0,0 -40212239,"Nuclear Dawn",play,0.5,0 -40212239,"Worms Armageddon",purchase,1.0,0 -40212239,"Worms Armageddon",play,0.5,0 -40212239,"Stronghold Kingdoms",purchase,1.0,0 -40212239,"Stronghold Kingdoms",play,0.5,0 -40212239,"Quake Live",purchase,1.0,0 -40212239,"Quake Live",play,0.5,0 -40212239,"BattleBlock Theater",purchase,1.0,0 -40212239,"BattleBlock Theater",play,0.4,0 -40212239,"Sid Meier's Civilization III Complete",purchase,1.0,0 -40212239,"Sid Meier's Civilization III Complete",play,0.4,0 -40212239,"Stronghold Crusader HD",purchase,1.0,0 -40212239,"Stronghold Crusader HD",play,0.4,0 -40212239,"Rise of the Argonauts",purchase,1.0,0 -40212239,"Rise of the Argonauts",play,0.4,0 -40212239,"Monaco",purchase,1.0,0 -40212239,"Monaco",play,0.4,0 -40212239,"LIMBO",purchase,1.0,0 -40212239,"LIMBO",play,0.3,0 -40212239,"Door Kickers",purchase,1.0,0 -40212239,"Door Kickers",play,0.3,0 -40212239,"Half-Life 2 Episode One",purchase,1.0,0 -40212239,"Half-Life 2 Episode One",play,0.3,0 -40212239,"Worms Ultimate Mayhem",purchase,1.0,0 -40212239,"Worms Ultimate Mayhem",play,0.3,0 -40212239,"Stronghold 2",purchase,1.0,0 -40212239,"Stronghold 2",play,0.2,0 -40212239,"Sniper Elite V2",purchase,1.0,0 -40212239,"Sniper Elite V2",play,0.2,0 -40212239,"Super Meat Boy",purchase,1.0,0 -40212239,"Super Meat Boy",play,0.2,0 -40212239,"E.Y.E Divine Cybermancy",purchase,1.0,0 -40212239,"E.Y.E Divine Cybermancy",play,0.1,0 -40212239,"RPG Maker VX Ace",purchase,1.0,0 -40212239,"RPG Maker VX Ace",play,0.1,0 -40212239,"Company of Heroes Tales of Valor",purchase,1.0,0 -40212239,"Company of Heroes Tales of Valor",play,0.1,0 -40212239,"The Cat Lady",purchase,1.0,0 -40212239,"Stronghold Crusader Extreme HD",purchase,1.0,0 -40212239,"Arma 2",purchase,1.0,0 -40212239,"Afterfall InSanity Extended Edition",purchase,1.0,0 -40212239,"Alien Breed 2 Assault",purchase,1.0,0 -40212239,"Alien Breed 3 Descent",purchase,1.0,0 -40212239,"Alien Breed Impact",purchase,1.0,0 -40212239,"Alpha Prime",purchase,1.0,0 -40212239,"Arma 2 DayZ Mod",purchase,1.0,0 -40212239,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -40212239,"Arma Gold Edition",purchase,1.0,0 -40212239,"Arma Tactics",purchase,1.0,0 -40212239,"BioShock",purchase,1.0,0 -40212239,"BioShock 2",purchase,1.0,0 -40212239,"Brothers - A Tale of Two Sons",purchase,1.0,0 -40212239,"Carrier Command Gaea Mission",purchase,1.0,0 -40212239,"Company of Heroes 2 - Ardennes Assault",purchase,1.0,0 -40212239,"Dead Island Epidemic",purchase,1.0,0 -40212239,"Deadly Sin 2",purchase,1.0,0 -40212239,"Dead Space",purchase,1.0,0 -40212239,"DiRT 3",purchase,1.0,0 -40212239,"DiRT 3 Complete Edition",purchase,1.0,0 -40212239,"DiRT Showdown",purchase,1.0,0 -40212239,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -40212239,"Don't Starve Together Beta",purchase,1.0,0 -40212239,"Door Kickers Soundtrack",purchase,1.0,0 -40212239,"Empire Total War",purchase,1.0,0 -40212239,"F.E.A.R.",purchase,1.0,0 -40212239,"F.E.A.R. Extraction Point",purchase,1.0,0 -40212239,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -40212239,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -40212239,"Fallout New Vegas Dead Money",purchase,1.0,0 -40212239,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -40212239,"Fractured Space",purchase,1.0,0 -40212239,"Game Character Hub",purchase,1.0,0 -40212239,"Grey Goo - Emergence Campaign",purchase,1.0,0 -40212239,"Grey Goo - Soundtrack",purchase,1.0,0 -40212239,"Half-Life",purchase,1.0,0 -40212239,"Half-Life 2 Deathmatch",purchase,1.0,0 -40212239,"Half-Life 2 Episode Two",purchase,1.0,0 -40212239,"Half-Life 2 Lost Coast",purchase,1.0,0 -40212239,"Half-Life Blue Shift",purchase,1.0,0 -40212239,"Half-Life Opposing Force",purchase,1.0,0 -40212239,"Half-Life Source",purchase,1.0,0 -40212239,"Half-Life Deathmatch Source",purchase,1.0,0 -40212239,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -40212239,"Kane & Lynch Dead Men",purchase,1.0,0 -40212239,"King Arthur's Gold",purchase,1.0,0 -40212239,"Lara Croft and the Guardian of Light",purchase,1.0,0 -40212239,"Legionwood 2 Rise of the Eternal's Realm",purchase,1.0,0 -40212239,"Light",purchase,1.0,0 -40212239,"Mabinogi",purchase,1.0,0 -40212239,"Mad Max",purchase,1.0,0 -40212239,"Mafia II",purchase,1.0,0 -40212239,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -40212239,"Medal of Honor(TM) Single Player",purchase,1.0,0 -40212239,"Medal of Honor Pre-Order",purchase,1.0,0 -40212239,"MEDIEVAL Total War - Gold Edition",purchase,1.0,0 -40212239,"Medieval II Total War",purchase,1.0,0 -40212239,"Medieval II Total War Kingdoms",purchase,1.0,0 -40212239,"Neverwinter",purchase,1.0,0 -40212239,"Nosgoth",purchase,1.0,0 -40212239,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -40212239,"Operation Flashpoint Red River",purchase,1.0,0 -40212239,"ORION Prelude",purchase,1.0,0 -40212239,"Overlord",purchase,1.0,0 -40212239,"Overlord Raising Hell",purchase,1.0,0 -40212239,"Overruled!",purchase,1.0,0 -40212239,"Red Faction",purchase,1.0,0 -40212239,"Red Faction Armageddon",purchase,1.0,0 -40212239,"Red Faction Armageddon Soundtrack",purchase,1.0,0 -40212239,"Red Faction II",purchase,1.0,0 -40212239,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -40212239,"Rising Angels Reborn",purchase,1.0,0 -40212239,"Robocraft",purchase,1.0,0 -40212239,"RPG Maker Futuristic Tiles Resource Pack",purchase,1.0,0 -40212239,"RPG Maker High Fantasy Main Party Pack 1",purchase,1.0,0 -40212239,"RPG Maker Royal Tiles Resource Pack",purchase,1.0,0 -40212239,"RPG Maker Rural Farm Tiles Resource Pack",purchase,1.0,0 -40212239,"RPG Maker Tyler Warren First 50 Battler Pack",purchase,1.0,0 -40212239,"RPG Maker Tyler Warren RPG Battlers 2nd 50",purchase,1.0,0 -40212239,"RPG Maker Zombie Survival Graphic Pack",purchase,1.0,0 -40212239,"RPG Maker XP",purchase,1.0,0 -40212239,"Shadowrun Dragonfall",purchase,1.0,0 -40212239,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -40212239,"SHOGUN Total War - Gold Edition",purchase,1.0,0 -40212239,"Sins of a Solar Empire Rebellion - Stellar Phenomena DLC",purchase,1.0,0 -40212239,"Sins of a Solar Empire Rebellion Forbidden Worlds",purchase,1.0,0 -40212239,"Skyborn",purchase,1.0,0 -40212239,"Spec Ops The Line",purchase,1.0,0 -40212239,"Starbound - Unstable",purchase,1.0,0 -40212239,"Startopia",purchase,1.0,0 -40212239,"Stronghold HD",purchase,1.0,0 -40212239,"Stronghold Legends",purchase,1.0,0 -40212239,"Superfrog HD",purchase,1.0,0 -40212239,"Supreme Commander 2",purchase,1.0,0 -40212239,"Sweet Lily Dreams",purchase,1.0,0 -40212239,"Take On Helicopters",purchase,1.0,0 -40212239,"Team Fortress Classic",purchase,1.0,0 -40212239,"The Banner Saga - Mod Content",purchase,1.0,0 -40212239,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -40212239,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -40212239,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -40212239,"The Evil Within",purchase,1.0,0 -40212239,"The Lord of the Rings War in the North",purchase,1.0,0 -40212239,"Thief",purchase,1.0,0 -40212239,"Two Worlds 2 - Pirates of the Flying Fortress ",purchase,1.0,0 -40212239,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -40212239,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -40212239,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -40212239,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -40212239,"Viking Battle for Asgard",purchase,1.0,0 -40212239,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -40212239,"Wasteland 1 - The Original Classic",purchase,1.0,0 -40212239,"Wasteland 2 Director's Cut",purchase,1.0,0 -40212239,"Worms",purchase,1.0,0 -40212239,"Worms Blast",purchase,1.0,0 -40212239,"Worms Crazy Golf",purchase,1.0,0 -40212239,"Worms Pinball",purchase,1.0,0 -40212239,"Worms Revolution",purchase,1.0,0 -40212239,"XCOM Enemy Within",purchase,1.0,0 -286105002,"Dota 2",purchase,1.0,0 -286105002,"Dota 2",play,4.3,0 -211689142,"Dota 2",purchase,1.0,0 -211689142,"Dota 2",play,6.0,0 -53964834,"Counter-Strike",purchase,1.0,0 -53964834,"Counter-Strike",play,2903.0,0 -53964834,"Counter-Strike Condition Zero",purchase,1.0,0 -53964834,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -257973739,"Dota 2",purchase,1.0,0 -257973739,"Dota 2",play,1.6,0 -191101874,"Guns and Robots",purchase,1.0,0 -191101874,"Guns and Robots",play,22.0,0 -191101874,"Unturned",purchase,1.0,0 -191101874,"Unturned",play,3.8,0 -191101874,"Dungeons & Dragons Online",purchase,1.0,0 -191101874,"Dungeons & Dragons Online",play,3.0,0 -191101874,"Team Fortress 2",purchase,1.0,0 -191101874,"Team Fortress 2",play,1.8,0 -191101874,"Battle Islands",purchase,1.0,0 -191101874,"Battle Islands",play,0.4,0 -191101874,"Heroes & Generals",purchase,1.0,0 -191101874,"Heroes & Generals",play,0.2,0 -191101874,"Dizzel",purchase,1.0,0 -191101874,"Dizzel",play,0.2,0 -199231210,"Team Fortress 2",purchase,1.0,0 -199231210,"Team Fortress 2",play,522.0,0 -34965931,"RACE 07",purchase,1.0,0 -34965931,"RACE 07",play,11.6,0 -34965931,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -72523666,"Terraria",purchase,1.0,0 -72523666,"Terraria",play,56.0,0 -72523666,"Team Fortress 2",purchase,1.0,0 -72523666,"Team Fortress 2",play,56.0,0 -72523666,"Might & Magic X - Legacy ",purchase,1.0,0 -72523666,"Might & Magic X - Legacy ",play,27.0,0 -72523666,"7 Days to Die",purchase,1.0,0 -72523666,"7 Days to Die",play,22.0,0 -72523666,"Desktop Dungeons",purchase,1.0,0 -72523666,"Desktop Dungeons",play,19.1,0 -72523666,"Wasteland 2",purchase,1.0,0 -72523666,"Wasteland 2",play,15.6,0 -72523666,"Realm of the Mad God",purchase,1.0,0 -72523666,"Realm of the Mad God",play,7.8,0 -72523666,"Besiege",purchase,1.0,0 -72523666,"Besiege",play,4.4,0 -72523666,"Metro Last Light",purchase,1.0,0 -72523666,"Metro Last Light",play,2.6,0 -72523666,"Europa Universalis IV",purchase,1.0,0 -72523666,"Europa Universalis IV",play,1.1,0 -72523666,"Legend of Grimrock 2",purchase,1.0,0 -72523666,"Wasteland 1 - The Original Classic",purchase,1.0,0 -72523666,"Wasteland 2 Director's Cut",purchase,1.0,0 -72523666,"XCOM Enemy Unknown",purchase,1.0,0 -37829487,"Day of Defeat Source",purchase,1.0,0 -37829487,"Day of Defeat Source",play,20.0,0 -37829487,"Metro Last Light",purchase,1.0,0 -37829487,"Metro Last Light",play,12.6,0 -37829487,"7 Days to Die",purchase,1.0,0 -37829487,"7 Days to Die",play,12.2,0 -37829487,"Left 4 Dead 2",purchase,1.0,0 -37829487,"Left 4 Dead 2",play,8.9,0 -37829487,"BioShock Infinite",purchase,1.0,0 -37829487,"BioShock Infinite",play,6.5,0 -37829487,"Dota 2",purchase,1.0,0 -37829487,"Dota 2",play,4.8,0 -37829487,"Counter-Strike",purchase,1.0,0 -37829487,"Counter-Strike",play,4.4,0 -37829487,"Borderlands 2",purchase,1.0,0 -37829487,"Borderlands 2",play,2.0,0 -37829487,"Counter-Strike Source",purchase,1.0,0 -37829487,"Counter-Strike Source",play,1.9,0 -37829487,"Papers, Please",purchase,1.0,0 -37829487,"Papers, Please",play,1.8,0 -37829487,"XCOM Enemy Unknown",purchase,1.0,0 -37829487,"XCOM Enemy Unknown",play,0.9,0 -37829487,"Team Fortress 2",purchase,1.0,0 -37829487,"Team Fortress 2",play,0.4,0 -37829487,"Besiege",purchase,1.0,0 -37829487,"Besiege",play,0.3,0 -37829487,"Unturned",purchase,1.0,0 -37829487,"Unturned",play,0.2,0 -37829487,"Battlefield Bad Company 2",purchase,1.0,0 -37829487,"Borderlands 2 RU",purchase,1.0,0 -37829487,"Counter-Strike Condition Zero",purchase,1.0,0 -37829487,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -37829487,"Half-Life 2 Deathmatch",purchase,1.0,0 -37829487,"Half-Life 2 Lost Coast",purchase,1.0,0 -37829487,"Portal 2",purchase,1.0,0 -163783296,"Sid Meier's Civilization V",purchase,1.0,0 -163783296,"Sid Meier's Civilization V",play,40.0,0 -234488787,"Portal 2",purchase,1.0,0 -234488787,"Portal 2",play,16.2,0 -234488787,"Far Cry 3",purchase,1.0,0 -234488787,"Far Cry 3",play,7.6,0 -234488787,"Left 4 Dead 2",purchase,1.0,0 -234488787,"Left 4 Dead 2",play,6.5,0 -234488787,"Firefall",purchase,1.0,0 -234488787,"Firefall",play,1.8,0 -234488787,"Team Fortress 2",purchase,1.0,0 -234488787,"Team Fortress 2",play,1.4,0 -234488787,"Gear Up",purchase,1.0,0 -234488787,"Gear Up",play,0.5,0 -234488787,"Nosgoth",purchase,1.0,0 -234488787,"Nosgoth",play,0.5,0 -234488787,"Warframe",purchase,1.0,0 -234488787,"Warframe",play,0.3,0 -234488787,"NEOTOKYO",purchase,1.0,0 -234488787,"NEOTOKYO",play,0.1,0 -76723339,"Napoleon Total War",purchase,1.0,0 -76723339,"Napoleon Total War",play,2.0,0 -76723339,"Team Fortress 2",purchase,1.0,0 -76723339,"Team Fortress 2",play,0.5,0 -186235728,"GTR Evolution",purchase,1.0,0 -186235728,"RACE 07",purchase,1.0,0 -186235728,"RaceRoom Racing Experience ",purchase,1.0,0 -308894258,"Counter-Strike Global Offensive",purchase,1.0,0 -308894258,"Counter-Strike Global Offensive",play,2.1,0 -163681838,"Dota 2",purchase,1.0,0 -163681838,"Dota 2",play,0.1,0 -278247296,"Team Fortress 2",purchase,1.0,0 -278247296,"Team Fortress 2",play,0.9,0 -278247296,"APB Reloaded",purchase,1.0,0 -278247296,"Archeblade",purchase,1.0,0 -278247296,"Aura Kingdom",purchase,1.0,0 -278247296,"FreeStyle2 Street Basketball",purchase,1.0,0 -278247296,"GunZ 2 The Second Duel",purchase,1.0,0 -278247296,"Loadout",purchase,1.0,0 -278247296,"Neverwinter",purchase,1.0,0 -278247296,"No More Room in Hell",purchase,1.0,0 -278247296,"Path of Exile",purchase,1.0,0 -278247296,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -278247296,"Unturned",purchase,1.0,0 -278247296,"Warframe",purchase,1.0,0 -278247296,"War Inc. Battlezone",purchase,1.0,0 -278247296,"War Thunder",purchase,1.0,0 -36122886,"Counter-Strike Condition Zero",purchase,1.0,0 -36122886,"Counter-Strike Condition Zero",play,7.9,0 -36122886,"Counter-Strike",purchase,1.0,0 -36122886,"Counter-Strike",play,1.1,0 -36122886,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -36122886,"Day of Defeat",purchase,1.0,0 -36122886,"Deathmatch Classic",purchase,1.0,0 -36122886,"Ricochet",purchase,1.0,0 -194541300,"Dota 2",purchase,1.0,0 -194541300,"Dota 2",play,90.0,0 -194541300,"Unturned",purchase,1.0,0 -202586207,"Don Bradman Cricket 14",purchase,1.0,0 -202586207,"Don Bradman Cricket 14",play,89.0,0 -185842825,"Euro Truck Simulator 2",purchase,1.0,0 -185842825,"Euro Truck Simulator 2",play,123.0,0 -185842825,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -77127388,"The Elder Scrolls V Skyrim",purchase,1.0,0 -77127388,"The Elder Scrolls V Skyrim",play,898.0,0 -77127388,"Fallout New Vegas",purchase,1.0,0 -77127388,"Fallout New Vegas",play,173.0,0 -77127388,"Mafia II",purchase,1.0,0 -77127388,"Mafia II",play,106.0,0 -77127388,"Deus Ex Human Revolution",purchase,1.0,0 -77127388,"Deus Ex Human Revolution",play,101.0,0 -77127388,"Borderlands",purchase,1.0,0 -77127388,"Borderlands",play,98.0,0 -77127388,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -77127388,"S.T.A.L.K.E.R. Call of Pripyat",play,87.0,0 -77127388,"Fable III",purchase,1.0,0 -77127388,"Fable III",play,80.0,0 -77127388,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -77127388,"The Elder Scrolls IV Oblivion ",play,56.0,0 -77127388,"Borderlands 2",purchase,1.0,0 -77127388,"Borderlands 2",play,49.0,0 -77127388,"Tomb Raider",purchase,1.0,0 -77127388,"Tomb Raider",play,49.0,0 -77127388,"Dead Space 2",purchase,1.0,0 -77127388,"Dead Space 2",play,35.0,0 -77127388,"Dishonored",purchase,1.0,0 -77127388,"Dishonored",play,31.0,0 -77127388,"BioShock Infinite",purchase,1.0,0 -77127388,"BioShock Infinite",play,28.0,0 -77127388,"Far Cry 3",purchase,1.0,0 -77127388,"Far Cry 3",play,23.0,0 -77127388,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -77127388,"Baldur's Gate Enhanced Edition",play,22.0,0 -77127388,"Star Wars Knights of the Old Republic",purchase,1.0,0 -77127388,"Star Wars Knights of the Old Republic",play,19.2,0 -77127388,"Need for Speed Hot Pursuit",purchase,1.0,0 -77127388,"Need for Speed Hot Pursuit",play,16.1,0 -77127388,"L.A. Noire",purchase,1.0,0 -77127388,"L.A. Noire",play,8.7,0 -77127388,"Portal 2",purchase,1.0,0 -77127388,"Portal 2",play,3.8,0 -77127388,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -77127388,"Deus Ex Human Revolution - Director's Cut",play,3.6,0 -77127388,"BioShock Infinite - Season Pass",purchase,1.0,0 -77127388,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -77127388,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -77127388,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -77127388,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -77127388,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -77127388,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -77127388,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -77127388,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -77127388,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -77127388,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -245134112,"Counter-Strike Global Offensive",purchase,1.0,0 -245134112,"Counter-Strike Global Offensive",play,43.0,0 -245134112,"Nosgoth",purchase,1.0,0 -245134112,"Nosgoth",play,2.6,0 -129602040,"Dota 2",purchase,1.0,0 -129602040,"Dota 2",play,16.1,0 -295872242,"Dota 2",purchase,1.0,0 -295872242,"Dota 2",play,50.0,0 -71944738,"Age of Chivalry",purchase,1.0,0 -71944738,"Age of Chivalry",play,4.4,0 -214619754,"H1Z1",purchase,1.0,0 -214619754,"H1Z1",play,5.1,0 -214619754,"Insurgency",purchase,1.0,0 -214619754,"Insurgency",play,2.4,0 -214619754,"Call of Juarez Gunslinger",purchase,1.0,0 -214619754,"Call of Juarez Gunslinger",play,0.4,0 -214619754,"Team Fortress 2",purchase,1.0,0 -214619754,"Team Fortress 2",play,0.4,0 -214619754,"Gothic 3",purchase,1.0,0 -214619754,"Gothic 3",play,0.2,0 -214619754,"Gothic II Gold Edition",purchase,1.0,0 -214619754,"Gothic",purchase,1.0,0 -214619754,"H1Z1 Test Server",purchase,1.0,0 -93745851,"Half-Life 2 Deathmatch",purchase,1.0,0 -93745851,"Half-Life 2 Lost Coast",purchase,1.0,0 -3238976,"Counter-Strike",purchase,1.0,0 -3238976,"Counter-Strike",play,5.5,0 -3238976,"Day of Defeat",purchase,1.0,0 -3238976,"Deathmatch Classic",purchase,1.0,0 -3238976,"Half-Life",purchase,1.0,0 -3238976,"Half-Life Blue Shift",purchase,1.0,0 -3238976,"Half-Life Opposing Force",purchase,1.0,0 -3238976,"Ricochet",purchase,1.0,0 -3238976,"Team Fortress Classic",purchase,1.0,0 -162740609,"CameraBag 2",purchase,1.0,0 -162740609,"CameraBag 2",play,2.5,0 -162740609,"Unreal Tournament Game of the Year Edition",purchase,1.0,0 -162740609,"Unreal Tournament Game of the Year Edition",play,2.0,0 -162740609,"METAL SLUG 3",purchase,1.0,0 -162740609,"METAL SLUG 3",play,1.7,0 -162740609,"Return to Castle Wolfenstein",purchase,1.0,0 -162740609,"Return to Castle Wolfenstein",play,1.7,0 -162740609,"Starbound",purchase,1.0,0 -162740609,"Starbound",play,1.3,0 -162740609,"Deus Ex Game of the Year Edition",purchase,1.0,0 -162740609,"Deus Ex Game of the Year Edition",play,0.3,0 -162740609,"Deadlight",purchase,1.0,0 -162740609,"Deadlight",play,0.2,0 -162740609,"Aqua Kitty - Milk Mine Defender",purchase,1.0,0 -162740609,"Aqua Kitty - Milk Mine Defender",play,0.2,0 -162740609,"X Beyond the Frontier",purchase,1.0,0 -162740609,"X Beyond the Frontier",play,0.1,0 -162740609,"Hotline Miami",purchase,1.0,0 -162740609,"Hotline Miami",play,0.1,0 -162740609,"Breath of Death VII ",purchase,1.0,0 -162740609,"Vector",purchase,1.0,0 -162740609,"Cthulhu Saves the World ",purchase,1.0,0 -162740609,"Jane's Advanced Strike Fighters",purchase,1.0,0 -162740609,"Starbound - Unstable",purchase,1.0,0 -113300324,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -113300324,"Call of Duty Black Ops II - Multiplayer",play,243.0,0 -113300324,"Arma 3",purchase,1.0,0 -113300324,"Arma 3",play,138.0,0 -113300324,"DayZ",purchase,1.0,0 -113300324,"DayZ",play,111.0,0 -113300324,"PAYDAY 2",purchase,1.0,0 -113300324,"PAYDAY 2",play,38.0,0 -113300324,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -113300324,"Call of Duty Modern Warfare 2 - Multiplayer",play,26.0,0 -113300324,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -113300324,"Call of Duty Advanced Warfare - Multiplayer",play,10.7,0 -113300324,"Grand Theft Auto IV",purchase,1.0,0 -113300324,"Grand Theft Auto IV",play,8.7,0 -113300324,"Counter-Strike Source",purchase,1.0,0 -113300324,"Counter-Strike Source",play,7.9,0 -113300324,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -113300324,"Call of Duty Black Ops II - Zombies",play,4.1,0 -113300324,"Counter-Strike Global Offensive",purchase,1.0,0 -113300324,"Counter-Strike Global Offensive",play,3.9,0 -113300324,"Arma 2 Operation Arrowhead",purchase,1.0,0 -113300324,"Arma 2 Operation Arrowhead",play,3.3,0 -113300324,"Infestation Survivor Stories",purchase,1.0,0 -113300324,"Infestation Survivor Stories",play,2.0,0 -113300324,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -113300324,"Call of Duty Modern Warfare 3 - Multiplayer",play,0.9,0 -113300324,"Sniper Ghost Warrior 2",purchase,1.0,0 -113300324,"Sniper Ghost Warrior 2",play,0.7,0 -113300324,"Dota 2",purchase,1.0,0 -113300324,"Dota 2",play,0.2,0 -113300324,"Arma 2",purchase,1.0,0 -113300324,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -113300324,"Arma 3 Zeus",purchase,1.0,0 -113300324,"Call of Duty Advanced Warfare",purchase,1.0,0 -113300324,"Call of Duty Black Ops II",purchase,1.0,0 -113300324,"Call of Duty Modern Warfare 2",purchase,1.0,0 -113300324,"Call of Duty Modern Warfare 3",purchase,1.0,0 -113300324,"Call of Duty World at War",purchase,1.0,0 -113300324,"Day of Defeat Source",purchase,1.0,0 -113300324,"Garry's Mod",purchase,1.0,0 -113300324,"Half-Life 2 Deathmatch",purchase,1.0,0 -113300324,"Half-Life 2 Lost Coast",purchase,1.0,0 -113300324,"Left 4 Dead 2",purchase,1.0,0 -113300324,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -147654879,"Dota 2",purchase,1.0,0 -147654879,"Dota 2",play,0.5,0 -12660489,"Dota 2",purchase,1.0,0 -12660489,"Dota 2",play,5970.0,0 -12660489,"Counter-Strike",purchase,1.0,0 -12660489,"Counter-Strike",play,91.0,0 -12660489,"Counter-Strike Global Offensive",purchase,1.0,0 -12660489,"Counter-Strike Global Offensive",play,11.8,0 -12660489,"Sniper Ghost Warrior",purchase,1.0,0 -12660489,"Sniper Ghost Warrior",play,0.8,0 -12660489,"Ultra Street Fighter IV",purchase,1.0,0 -12660489,"Ultra Street Fighter IV",play,0.5,0 -12660489,"Day of Defeat",purchase,1.0,0 -12660489,"Deathmatch Classic",purchase,1.0,0 -12660489,"Half-Life",purchase,1.0,0 -12660489,"Half-Life Blue Shift",purchase,1.0,0 -12660489,"Half-Life Opposing Force",purchase,1.0,0 -12660489,"Path of Exile",purchase,1.0,0 -12660489,"Ricochet",purchase,1.0,0 -12660489,"Team Fortress Classic",purchase,1.0,0 -302955779,"Total War SHOGUN 2",purchase,1.0,0 -302955779,"Total War SHOGUN 2",play,0.7,0 -21535912,"Counter-Strike",purchase,1.0,0 -21535912,"Counter-Strike",play,762.0,0 -21535912,"Unturned",purchase,1.0,0 -21535912,"Unturned",play,79.0,0 -21535912,"Dota 2",purchase,1.0,0 -21535912,"Dota 2",play,8.0,0 -21535912,"The Lord of the Rings Online",purchase,1.0,0 -21535912,"The Lord of the Rings Online",play,6.4,0 -21535912,"Clicker Heroes",purchase,1.0,0 -21535912,"Clicker Heroes",play,6.0,0 -21535912,"Jagged Alliance Online - Steam Edition",purchase,1.0,0 -21535912,"Jagged Alliance Online - Steam Edition",play,3.4,0 -21535912,"sZone-Online",purchase,1.0,0 -21535912,"sZone-Online",play,2.8,0 -21535912,"Dead Island Epidemic",purchase,1.0,0 -21535912,"Dead Island Epidemic",play,2.4,0 -21535912,"Alan Wake",purchase,1.0,0 -21535912,"Alan Wake",play,1.8,0 -21535912,"Counter-Strike Nexon Zombies",purchase,1.0,0 -21535912,"Counter-Strike Nexon Zombies",play,1.2,0 -21535912,"Might & Magic Duel of Champions",purchase,1.0,0 -21535912,"Might & Magic Duel of Champions",play,0.7,0 -21535912,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -21535912,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.7,0 -21535912,"Warface",purchase,1.0,0 -21535912,"Warface",play,0.7,0 -21535912,"Counter-Strike Condition Zero",purchase,1.0,0 -21535912,"Counter-Strike Condition Zero",play,0.5,0 -21535912,"Cry of Fear",purchase,1.0,0 -21535912,"Cry of Fear",play,0.5,0 -21535912,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -21535912,"Counter-Strike Condition Zero Deleted Scenes",play,0.5,0 -21535912,"Echo of Soul",purchase,1.0,0 -21535912,"Happy Wars",purchase,1.0,0 -21535912,"Arma 2 Free",purchase,1.0,0 -21535912,"Defiance",purchase,1.0,0 -21535912,"Jagged Alliance Online Raven Pack",purchase,1.0,0 -21535912,"PlanetSide 2",purchase,1.0,0 -21535912,"Survarium",purchase,1.0,0 -238692899,"Dota 2",purchase,1.0,0 -238692899,"Dota 2",play,0.4,0 -238692899,"FreeStyle2 Street Basketball",purchase,1.0,0 -248474689,"Dota 2",purchase,1.0,0 -248474689,"Dota 2",play,82.0,0 -56813714,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -56813714,"Call of Duty Modern Warfare 2 - Multiplayer",play,444.0,0 -56813714,"Call of Duty Modern Warfare 2",purchase,1.0,0 -56813714,"Call of Duty Modern Warfare 2",play,21.0,0 -56813714,"Call of Duty Modern Warfare 3",purchase,1.0,0 -56813714,"Call of Duty Modern Warfare 3",play,6.0,0 -56813714,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -56813714,"Call of Duty Modern Warfare 3 - Multiplayer",play,3.8,0 -103774615,"Football Manager 2013",purchase,1.0,0 -103774615,"Football Manager 2013",play,95.0,0 -103774615,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -103774615,"Sid Meier's Civilization Beyond Earth",play,21.0,0 -103774615,"PlanetSide 2",purchase,1.0,0 -103774615,"PlanetSide 2",play,14.2,0 -103774615,"Realm of the Mad God",purchase,1.0,0 -103774615,"Realm of the Mad God",play,5.6,0 -289856966,"Dota 2",purchase,1.0,0 -289856966,"Dota 2",play,3.3,0 -31598106,"Half-Life 2 Deathmatch",purchase,1.0,0 -31598106,"Half-Life 2 Lost Coast",purchase,1.0,0 -231775334,"Team Fortress 2",purchase,1.0,0 -231775334,"Team Fortress 2",play,0.1,0 -25253730,"Counter-Strike Source",purchase,1.0,0 -25253730,"Counter-Strike Source",play,80.0,0 -25253730,"South Park The Stick of Truth",purchase,1.0,0 -25253730,"South Park The Stick of Truth",play,10.4,0 -25253730,"Counter-Strike",purchase,1.0,0 -25253730,"Counter-Strike",play,2.0,0 -25253730,"Day of Defeat Source",purchase,1.0,0 -25253730,"Day of Defeat Source",play,0.2,0 -25253730,"Counter-Strike Condition Zero",purchase,1.0,0 -25253730,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -25253730,"Day of Defeat",purchase,1.0,0 -25253730,"Deathmatch Classic",purchase,1.0,0 -25253730,"Half-Life 2 Deathmatch",purchase,1.0,0 -25253730,"Half-Life 2 Lost Coast",purchase,1.0,0 -25253730,"Ricochet",purchase,1.0,0 -82938274,"Team Fortress 2",purchase,1.0,0 -82938274,"Team Fortress 2",play,55.0,0 -276932452,"Dota 2",purchase,1.0,0 -276932452,"Dota 2",play,242.0,0 -79180628,"Darksiders",purchase,1.0,0 -154817899,"Sid Meier's Civilization V",purchase,1.0,0 -154817899,"Sid Meier's Civilization V",play,562.0,0 -154817899,"Mount & Blade Warband",purchase,1.0,0 -154817899,"Mount & Blade Warband",play,125.0,0 -154817899,"Dead Island Epidemic",purchase,1.0,0 -154817899,"Dead Island Epidemic",play,16.8,0 -154817899,"Dota 2",purchase,1.0,0 -154817899,"Dota 2",play,2.2,0 -154817899,"Magicka Wizard Wars",purchase,1.0,0 -154817899,"Magicka Wizard Wars",play,0.8,0 -154817899,"Nosgoth",purchase,1.0,0 -154817899,"Nosgoth",play,0.7,0 -154817899,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -154817899,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -154817899,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -154817899,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -253114981,"FreeStyle2 Street Basketball",purchase,1.0,0 -253114981,"Happy Wars",purchase,1.0,0 -253114981,"Warframe",purchase,1.0,0 -229794682,"Team Fortress 2",purchase,1.0,0 -229794682,"Team Fortress 2",play,3.7,0 -229794682,"Total War Battles KINGDOM",purchase,1.0,0 -229794682,"Total War Battles KINGDOM",play,1.4,0 -292168490,"Unturned",purchase,1.0,0 -272141796,"Dota 2",purchase,1.0,0 -272141796,"Dota 2",play,11.8,0 -135012938,"Cities Skylines",purchase,1.0,0 -135012938,"Cities Skylines",play,9.5,0 -135012938,"Dota 2",purchase,1.0,0 -135012938,"Dota 2",play,0.3,0 -135012938,"War Thunder",purchase,1.0,0 -135012938,"Unturned",purchase,1.0,0 -297018299,"Dota 2",purchase,1.0,0 -297018299,"Dota 2",play,8.1,0 -190118118,"Dota 2",purchase,1.0,0 -190118118,"Dota 2",play,208.0,0 -127796104,"Dota 2",purchase,1.0,0 -127796104,"Dota 2",play,982.0,0 -100444456,"Dead Island",purchase,1.0,0 -100444456,"Dead Island",play,37.0,0 -100444456,"WAKFU",purchase,1.0,0 -100444456,"WAKFU",play,14.1,0 -100444456,"Team Fortress 2",purchase,1.0,0 -100444456,"Team Fortress 2",play,10.3,0 -100444456,"Dead Island Riptide",purchase,1.0,0 -100444456,"Dead Island Riptide",play,2.1,0 -100444456,"Metro 2033",purchase,1.0,0 -100444456,"Metro 2033",play,0.4,0 -100444456,"Dying Light",purchase,1.0,0 -100444456,"Dying Light",play,0.3,0 -230399561,"Dota 2",purchase,1.0,0 -230399561,"Dota 2",play,12.0,0 -190386837,"Unturned",purchase,1.0,0 -190386837,"Unturned",play,0.4,0 -190386837,"Dota 2",purchase,1.0,0 -190386837,"Dota 2",play,0.1,0 -190386837,"Firefall",purchase,1.0,0 -190386837,"No More Room in Hell",purchase,1.0,0 -254782847,"Dota 2",purchase,1.0,0 -254782847,"Dota 2",play,2.6,0 -254782847,"GunZ 2 The Second Duel",purchase,1.0,0 -280348554,"Dota 2",purchase,1.0,0 -280348554,"Dota 2",play,194.0,0 -280348554,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -123039887,"Dead Rising 2",purchase,1.0,0 -303906239,"theHunter",purchase,1.0,0 -303906239,"theHunter",play,0.4,0 -303906239,"Unturned",purchase,1.0,0 -80814667,"Codename Gordon",purchase,1.0,0 -80814667,"Codename Gordon",play,0.2,0 -44240866,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -44240866,"Call of Duty Modern Warfare 2 - Multiplayer",play,507.0,0 -44240866,"Counter-Strike Global Offensive",purchase,1.0,0 -44240866,"Counter-Strike Global Offensive",play,235.0,0 -44240866,"Counter-Strike Source",purchase,1.0,0 -44240866,"Counter-Strike Source",play,213.0,0 -44240866,"Call of Duty Modern Warfare 2",purchase,1.0,0 -44240866,"Call of Duty Modern Warfare 2",play,26.0,0 -44240866,"Half-Life 2 Lost Coast",purchase,1.0,0 -44240866,"Half-Life 2 Lost Coast",play,0.7,0 -44240866,"Aveyond 3-2 Gates of Night",purchase,1.0,0 -44240866,"Aveyond 3-2 Gates of Night",play,0.3,0 -44240866,"Half-Life 2 Deathmatch",purchase,1.0,0 -44240866,"Day of Defeat Source",purchase,1.0,0 -187016210,"Dota 2",purchase,1.0,0 -187016210,"Dota 2",play,0.9,0 -67965357,"Dota 2",purchase,1.0,0 -67965357,"Dota 2",play,2329.0,0 -67965357,"Archeblade",purchase,1.0,0 -67965357,"Archeblade",play,22.0,0 -67965357,"Clicker Heroes",purchase,1.0,0 -67965357,"Clicker Heroes",play,14.4,0 -67965357,"Left 4 Dead 2",purchase,1.0,0 -67965357,"Left 4 Dead 2",play,13.6,0 -67965357,"Team Fortress 2",purchase,1.0,0 -67965357,"Team Fortress 2",play,6.8,0 -67965357,"Unturned",purchase,1.0,0 -67965357,"Unturned",play,3.2,0 -67965357,"Ragnarok",purchase,1.0,0 -67965357,"Ragnarok",play,0.4,0 -67965357,"Grand Chase",purchase,1.0,0 -67965357,"Grand Chase",play,0.4,0 -67965357,"Aura Kingdom",purchase,1.0,0 -67965357,"Free to Play",purchase,1.0,0 -67965357,"GunZ 2 The Second Duel",purchase,1.0,0 -67965357,"Happy Wars",purchase,1.0,0 -67965357,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -67965357,"Warframe",purchase,1.0,0 -216242027,"7 Days to Die",purchase,1.0,0 -216242027,"7 Days to Die",play,0.4,0 -143198617,"Left 4 Dead 2",purchase,1.0,0 -143198617,"Left 4 Dead 2",play,14.7,0 -143198617,"World of Guns Gun Disassembly",purchase,1.0,0 -143198617,"No More Room in Hell",purchase,1.0,0 -143198617,"Path of Exile",purchase,1.0,0 -143198617,"theHunter",purchase,1.0,0 -143198617,"Warface",purchase,1.0,0 -130460859,"DayZ",purchase,1.0,0 -130460859,"DayZ",play,340.0,0 -130460859,"Cities Skylines",purchase,1.0,0 -130460859,"Cities Skylines",play,56.0,0 -130460859,"XCOM Enemy Unknown",purchase,1.0,0 -130460859,"XCOM Enemy Unknown",play,34.0,0 -130460859,"Sid Meier's Civilization V",purchase,1.0,0 -130460859,"Sid Meier's Civilization V",play,32.0,0 -130460859,"FTL Faster Than Light",purchase,1.0,0 -130460859,"FTL Faster Than Light",play,25.0,0 -130460859,"Heroes & Generals",purchase,1.0,0 -130460859,"Heroes & Generals",play,11.4,0 -130460859,"Dota 2",purchase,1.0,0 -130460859,"Dota 2",play,4.5,0 -130460859,"Cities in Motion 2",purchase,1.0,0 -130460859,"Cities in Motion 2",play,2.4,0 -130460859,"Ace of Spades",purchase,1.0,0 -130460859,"Ace of Spades",play,0.7,0 -130460859,"Little Inferno",purchase,1.0,0 -130460859,"Little Inferno",play,0.2,0 -130460859,"Superfrog HD",purchase,1.0,0 -130460859,"Superfrog HD",play,0.1,0 -130460859,"Killing Floor",purchase,1.0,0 -130460859,"Chivalry Medieval Warfare",purchase,1.0,0 -130460859,"Bastion",purchase,1.0,0 -130460859,"Brtal Legend",purchase,1.0,0 -130460859,"Dungeonland",purchase,1.0,0 -130460859,"Dungeonland - All access pass",purchase,1.0,0 -130460859,"Eets Munchies",purchase,1.0,0 -130460859,"Europa Universalis III",purchase,1.0,0 -130460859,"Fallout New Vegas",purchase,1.0,0 -130460859,"FEZ",purchase,1.0,0 -130460859,"Heroes of Might & Magic III - HD Edition",purchase,1.0,0 -130460859,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -130460859,"Leviathan Warships",purchase,1.0,0 -130460859,"Mafia II",purchase,1.0,0 -130460859,"Magicka",purchase,1.0,0 -130460859,"Magicka Vietnam",purchase,1.0,0 -130460859,"Natural Selection 2",purchase,1.0,0 -130460859,"Patch testing for Chivalry",purchase,1.0,0 -130460859,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -130460859,"Sanctum 2",purchase,1.0,0 -130460859,"Sid Meier's Civilization III Complete",purchase,1.0,0 -130460859,"Sid Meier's Civilization IV",purchase,1.0,0 -130460859,"Sid Meier's Civilization IV",purchase,1.0,0 -130460859,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -130460859,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -130460859,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -130460859,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -130460859,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -130460859,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -130460859,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -130460859,"Sid Meier's Railroads!",purchase,1.0,0 -130460859,"The Showdown Effect",purchase,1.0,0 -130460859,"Trine 2",purchase,1.0,0 -130460859,"UFO Extraterrestrials Gold",purchase,1.0,0 -130460859,"Warlock - Master of the Arcane",purchase,1.0,0 -130460859,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -130460859,"War of the Roses",purchase,1.0,0 -130460859,"War of the Roses Kingmaker",purchase,1.0,0 -130460859,"War of the Roses Balance Beta",purchase,1.0,0 -130460859,"Worms Armageddon",purchase,1.0,0 -130460859,"Worms Revolution",purchase,1.0,0 -130460859,"XCOM Enemy Within",purchase,1.0,0 -294939683,"Dota 2",purchase,1.0,0 -294939683,"Dota 2",play,82.0,0 -294939683,"Wolfenstein The New Order",purchase,1.0,0 -294939683,"Wolfenstein The New Order",play,14.6,0 -294939683,"Dead Island",purchase,1.0,0 -294939683,"Dead Island",play,9.8,0 -294939683,"Assassin's Creed IV Black Flag",purchase,1.0,0 -294939683,"Dead Island Riptide",purchase,1.0,0 -294939683,"Tomb Raider",purchase,1.0,0 -112626210,"Borderlands 2",purchase,1.0,0 -112626210,"Borderlands 2",play,86.0,0 -112626210,"Saints Row The Third",purchase,1.0,0 -112626210,"Saints Row The Third",play,78.0,0 -112626210,"Arma 3",purchase,1.0,0 -112626210,"Arma 3",play,60.0,0 -112626210,"The Elder Scrolls V Skyrim",purchase,1.0,0 -112626210,"The Elder Scrolls V Skyrim",play,51.0,0 -112626210,"Garry's Mod",purchase,1.0,0 -112626210,"Garry's Mod",play,48.0,0 -112626210,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -112626210,"Divinity Original Sin Enhanced Edition",play,43.0,0 -112626210,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -112626210,"The Witcher 2 Assassins of Kings Enhanced Edition",play,29.0,0 -112626210,"Magicka",purchase,1.0,0 -112626210,"Magicka",play,25.0,0 -112626210,"Saints Row IV",purchase,1.0,0 -112626210,"Saints Row IV",play,24.0,0 -112626210,"Terraria",purchase,1.0,0 -112626210,"Terraria",play,23.0,0 -112626210,"Age of Empires II HD Edition",purchase,1.0,0 -112626210,"Age of Empires II HD Edition",play,15.8,0 -112626210,"Grand Theft Auto IV",purchase,1.0,0 -112626210,"Grand Theft Auto IV",play,10.8,0 -112626210,"Sid Meier's Civilization V",purchase,1.0,0 -112626210,"Sid Meier's Civilization V",play,8.5,0 -112626210,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -112626210,"Just Cause 2 Multiplayer Mod",play,6.9,0 -112626210,"Synergy",purchase,1.0,0 -112626210,"Synergy",play,6.9,0 -112626210,"Watch_Dogs",purchase,1.0,0 -112626210,"Watch_Dogs",play,6.8,0 -112626210,"Chivalry Medieval Warfare",purchase,1.0,0 -112626210,"Chivalry Medieval Warfare",play,6.8,0 -112626210,"Toribash",purchase,1.0,0 -112626210,"Toribash",play,5.9,0 -112626210,"Damned",purchase,1.0,0 -112626210,"Damned",play,4.9,0 -112626210,"Test Drive Unlimited 2",purchase,1.0,0 -112626210,"Test Drive Unlimited 2",play,4.6,0 -112626210,"Robocraft",purchase,1.0,0 -112626210,"Robocraft",play,4.3,0 -112626210,"Torchlight II",purchase,1.0,0 -112626210,"Torchlight II",play,4.2,0 -112626210,"Batman Arkham City GOTY",purchase,1.0,0 -112626210,"Batman Arkham City GOTY",play,3.6,0 -112626210,"Warframe",purchase,1.0,0 -112626210,"Warframe",play,3.5,0 -112626210,"Divinity Original Sin",purchase,1.0,0 -112626210,"Divinity Original Sin",play,3.1,0 -112626210,"PAYDAY The Heist",purchase,1.0,0 -112626210,"PAYDAY The Heist",play,2.8,0 -112626210,"Castlevania Lords of Shadow - Ultimate Edition",purchase,1.0,0 -112626210,"Castlevania Lords of Shadow - Ultimate Edition",play,2.3,0 -112626210,"Portal 2",purchase,1.0,0 -112626210,"Portal 2",play,1.8,0 -112626210,"Star Wars - Battlefront II",purchase,1.0,0 -112626210,"Star Wars - Battlefront II",play,1.5,0 -112626210,"Nidhogg",purchase,1.0,0 -112626210,"Nidhogg",play,1.4,0 -112626210,"The Lord of the Rings War in the North",purchase,1.0,0 -112626210,"The Lord of the Rings War in the North",play,1.2,0 -112626210,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -112626210,"RollerCoaster Tycoon 3 Platinum!",play,1.1,0 -112626210,"The Stanley Parable",purchase,1.0,0 -112626210,"The Stanley Parable",play,0.8,0 -112626210,"Lego Harry Potter",purchase,1.0,0 -112626210,"Lego Harry Potter",play,0.7,0 -112626210,"RPG Maker VX Ace",purchase,1.0,0 -112626210,"RPG Maker VX Ace",play,0.5,0 -112626210,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -112626210,"Star Wars Jedi Knight Jedi Academy",play,0.2,0 -112626210,"Arma 2 Operation Arrowhead",purchase,1.0,0 -112626210,"World of Goo",purchase,1.0,0 -112626210,"Half-Life 2 Episode One",purchase,1.0,0 -112626210,"Half-Life 2 Episode Two",purchase,1.0,0 -112626210,"Counter-Strike Source",purchase,1.0,0 -112626210,"Anno 2070",purchase,1.0,0 -112626210,"Arma 2",purchase,1.0,0 -112626210,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -112626210,"Arma 3 Helicopters",purchase,1.0,0 -112626210,"Arma 3 Karts",purchase,1.0,0 -112626210,"Arma 3 Marksmen",purchase,1.0,0 -112626210,"Arma 3 Zeus",purchase,1.0,0 -112626210,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -112626210,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -112626210,"Batman Arkham Origins - Initiation",purchase,1.0,0 -112626210,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -112626210,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -112626210,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -112626210,"Batman Arkham Knight",purchase,1.0,0 -112626210,"Batman Arkham Origins",purchase,1.0,0 -112626210,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -112626210,"BioShock",purchase,1.0,0 -112626210,"Blockland",purchase,1.0,0 -112626210,"Brothers - A Tale of Two Sons",purchase,1.0,0 -112626210,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -112626210,"Call of Juarez Gunslinger",purchase,1.0,0 -112626210,"Card Hunter",purchase,1.0,0 -112626210,"Castle Crashers",purchase,1.0,0 -112626210,"Company of Heroes",purchase,1.0,0 -112626210,"Company of Heroes (New Steam Version)",purchase,1.0,0 -112626210,"Company of Heroes Opposing Fronts",purchase,1.0,0 -112626210,"Company of Heroes Tales of Valor",purchase,1.0,0 -112626210,"Crysis 2 Maximum Edition",purchase,1.0,0 -112626210,"Darksiders",purchase,1.0,0 -112626210,"Deadpool",purchase,1.0,0 -112626210,"Dead Space",purchase,1.0,0 -112626210,"DiRT 3",purchase,1.0,0 -112626210,"DiRT 3 Complete Edition",purchase,1.0,0 -112626210,"DLC Quest",purchase,1.0,0 -112626210,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -112626210,"Euro Truck Simulator 2",purchase,1.0,0 -112626210,"Fallout New Vegas",purchase,1.0,0 -112626210,"FINAL FANTASY VII",purchase,1.0,0 -112626210,"Half-Life 2",purchase,1.0,0 -112626210,"Half-Life 2 Lost Coast",purchase,1.0,0 -112626210,"Hotline Miami",purchase,1.0,0 -112626210,"Just Cause 2",purchase,1.0,0 -112626210,"LEGO Harry Potter Years 5-7",purchase,1.0,0 -112626210,"Magicka Nippon",purchase,1.0,0 -112626210,"Magicka Wizard's Survival Kit",purchase,1.0,0 -112626210,"Mass Effect",purchase,1.0,0 -112626210,"Mass Effect 2",purchase,1.0,0 -112626210,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -112626210,"Medal of Honor(TM) Single Player",purchase,1.0,0 -112626210,"Medal of Honor Pre-Order",purchase,1.0,0 -112626210,"Metro 2033",purchase,1.0,0 -112626210,"Mirror's Edge",purchase,1.0,0 -112626210,"Octodad Dadliest Catch",purchase,1.0,0 -112626210,"Patch testing for Chivalry",purchase,1.0,0 -112626210,"PAYDAY Wolf Pack",purchase,1.0,0 -112626210,"PixelJunk Eden",purchase,1.0,0 -112626210,"Pixel Puzzles Japan",purchase,1.0,0 -112626210,"Portal",purchase,1.0,0 -112626210,"POSTAL 2",purchase,1.0,0 -112626210,"RAGE",purchase,1.0,0 -112626210,"Red Faction Armageddon",purchase,1.0,0 -112626210,"Risk of Rain",purchase,1.0,0 -112626210,"Rooster Teeth vs. Zombiens",purchase,1.0,0 -112626210,"Sakura Spirit",purchase,1.0,0 -112626210,"SimCity 4 Deluxe",purchase,1.0,0 -112626210,"Sleeping Dogs",purchase,1.0,0 -112626210,"Star Wars Knights of the Old Republic",purchase,1.0,0 -112626210,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -112626210,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -112626210,"Super Meat Boy",purchase,1.0,0 -112626210,"The Elder Scrolls III Morrowind",purchase,1.0,0 -112626210,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -112626210,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -112626210,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -112626210,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -112626210,"The Ship",purchase,1.0,0 -112626210,"The Ship Single Player",purchase,1.0,0 -112626210,"The Ship Tutorial",purchase,1.0,0 -112626210,"The Witcher Enhanced Edition",purchase,1.0,0 -112626210,"Titan Quest",purchase,1.0,0 -112626210,"Trine 2",purchase,1.0,0 -290995026,"Unturned",purchase,1.0,0 -290995026,"Unturned",play,16.9,0 -290995026,"PlanetSide 2",purchase,1.0,0 -290995026,"PlanetSide 2",play,1.3,0 -290995026,"WARMODE",purchase,1.0,0 -290995026,"WARMODE",play,0.8,0 -290995026,"Gotham City Impostors Free To Play",purchase,1.0,0 -203086587,"Dota 2",purchase,1.0,0 -203086587,"Dota 2",play,580.0,0 -203086587,"Counter-Strike Global Offensive",purchase,1.0,0 -203086587,"Counter-Strike Global Offensive",play,28.0,0 -203086587,"Team Fortress 2",purchase,1.0,0 -203086587,"Team Fortress 2",play,27.0,0 -203086587,"Saints Row IV",purchase,1.0,0 -203086587,"Saints Row IV",play,7.5,0 -203086587,"Star Wars - Battlefront II",purchase,1.0,0 -203086587,"Star Wars - Battlefront II",play,6.7,0 -203086587,"FreeStyle2 Street Basketball",purchase,1.0,0 -203086587,"FreeStyle2 Street Basketball",play,0.6,0 -203086587,"Unturned",purchase,1.0,0 -203086587,"Unturned",play,0.3,0 -203086587,"Heroes & Generals",purchase,1.0,0 -203086587,"ROSE Online",purchase,1.0,0 -203086587,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -203086587,"Warframe",purchase,1.0,0 -203086587,"WTFast Gamers Private Network (GPN)",purchase,1.0,0 -285952666,"Dota 2",purchase,1.0,0 -285952666,"Dota 2",play,1.1,0 -285952666,"FreeStyle2 Street Basketball",purchase,1.0,0 -285952666,"TERA",purchase,1.0,0 -285536388,"Trove",purchase,1.0,0 -285536388,"Trove",play,0.3,0 -16080105,"Counter-Strike",purchase,1.0,0 -16080105,"Counter-Strike",play,2571.0,0 -16080105,"Half-Life 2",purchase,1.0,0 -16080105,"Half-Life 2",play,18.0,0 -16080105,"Counter-Strike Global Offensive",purchase,1.0,0 -16080105,"Counter-Strike Global Offensive",play,2.4,0 -16080105,"Day of Defeat",purchase,1.0,0 -16080105,"Deathmatch Classic",purchase,1.0,0 -16080105,"Half-Life",purchase,1.0,0 -16080105,"Half-Life 2 Deathmatch",purchase,1.0,0 -16080105,"Half-Life 2 Episode One",purchase,1.0,0 -16080105,"Half-Life 2 Lost Coast",purchase,1.0,0 -16080105,"Half-Life Blue Shift",purchase,1.0,0 -16080105,"Half-Life Opposing Force",purchase,1.0,0 -16080105,"Half-Life Source",purchase,1.0,0 -16080105,"Half-Life Deathmatch Source",purchase,1.0,0 -16080105,"Ricochet",purchase,1.0,0 -16080105,"Team Fortress Classic",purchase,1.0,0 -205077657,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -205077657,"Tropico 3 Absolute Power",purchase,1.0,0 -139773400,"Dota 2",purchase,1.0,0 -139773400,"Dota 2",play,0.4,0 -255330237,"Cry of Fear",purchase,1.0,0 -255330237,"Cry of Fear",play,0.3,0 -83792733,"NBA 2K9",purchase,1.0,0 -83792733,"NBA 2K9",play,201.0,0 -198914333,"Dota 2",purchase,1.0,0 -198914333,"Dota 2",play,439.0,0 -198914333,"PAYDAY 2",purchase,1.0,0 -198914333,"PAYDAY 2",play,62.0,0 -198914333,"War Thunder",purchase,1.0,0 -198914333,"War Thunder",play,27.0,0 -198914333,"Clicker Heroes",purchase,1.0,0 -198914333,"Clicker Heroes",play,9.2,0 -198914333,"Heroes & Generals",purchase,1.0,0 -198914333,"Heroes & Generals",play,7.7,0 -198914333,"AdVenture Capitalist",purchase,1.0,0 -198914333,"AdVenture Capitalist",play,6.4,0 -198914333,"The Mighty Quest For Epic Loot",purchase,1.0,0 -198914333,"The Mighty Quest For Epic Loot",play,1.9,0 -198914333,"Unturned",purchase,1.0,0 -198914333,"Unturned",play,1.5,0 -198914333,"theHunter",purchase,1.0,0 -198914333,"theHunter",play,1.0,0 -198914333,"Fishing Planet",purchase,1.0,0 -198914333,"Fishing Planet",play,0.7,0 -198914333,"War of the Roses",purchase,1.0,0 -198914333,"War of the Roses",play,0.6,0 -198914333,"Total War Battles KINGDOM",purchase,1.0,0 -198914333,"Total War Battles KINGDOM",play,0.6,0 -198914333,"Survarium",purchase,1.0,0 -198914333,"Survarium",play,0.5,0 -198914333,"Fistful of Frags",purchase,1.0,0 -198914333,"Fistful of Frags",play,0.3,0 -198914333,"Toribash",purchase,1.0,0 -198914333,"Toribash",play,0.3,0 -198914333,"Dethroned!",purchase,1.0,0 -198914333,"Dizzel",purchase,1.0,0 -198914333,"Spartans Vs Zombies Defense",purchase,1.0,0 -212069898,"War Thunder",purchase,1.0,0 -212069898,"War Thunder",play,9.3,0 -103731895,"Garry's Mod",purchase,1.0,0 -103731895,"Garry's Mod",play,446.0,0 -103731895,"Team Fortress 2",purchase,1.0,0 -103731895,"Team Fortress 2",play,251.0,0 -103731895,"Counter-Strike Global Offensive",purchase,1.0,0 -103731895,"Counter-Strike Global Offensive",play,191.0,0 -103731895,"The Binding of Isaac",purchase,1.0,0 -103731895,"The Binding of Isaac",play,78.0,0 -103731895,"ARK Survival Evolved",purchase,1.0,0 -103731895,"ARK Survival Evolved",play,77.0,0 -103731895,"Terraria",purchase,1.0,0 -103731895,"Terraria",play,75.0,0 -103731895,"Warframe",purchase,1.0,0 -103731895,"Warframe",play,67.0,0 -103731895,"PAYDAY 2",purchase,1.0,0 -103731895,"PAYDAY 2",play,57.0,0 -103731895,"Clicker Heroes",purchase,1.0,0 -103731895,"Clicker Heroes",play,47.0,0 -103731895,"Counter-Strike Source",purchase,1.0,0 -103731895,"Counter-Strike Source",play,36.0,0 -103731895,"Realm of the Mad God",purchase,1.0,0 -103731895,"Realm of the Mad God",play,28.0,0 -103731895,"Unturned",purchase,1.0,0 -103731895,"Unturned",play,25.0,0 -103731895,"Dota 2",purchase,1.0,0 -103731895,"Dota 2",play,25.0,0 -103731895,"Orcs Must Die! 2",purchase,1.0,0 -103731895,"Orcs Must Die! 2",play,21.0,0 -103731895,"Borderlands 2",purchase,1.0,0 -103731895,"Borderlands 2",play,20.0,0 -103731895,"SpeedRunners",purchase,1.0,0 -103731895,"SpeedRunners",play,15.3,0 -103731895,"POSTAL 2",purchase,1.0,0 -103731895,"POSTAL 2",play,13.7,0 -103731895,"Zombies Monsters Robots",purchase,1.0,0 -103731895,"Zombies Monsters Robots",play,13.5,0 -103731895,"Papers, Please",purchase,1.0,0 -103731895,"Papers, Please",play,11.0,0 -103731895,"Path of Exile",purchase,1.0,0 -103731895,"Path of Exile",play,9.1,0 -103731895,"Spore",purchase,1.0,0 -103731895,"Spore",play,8.7,0 -103731895,"Left 4 Dead 2",purchase,1.0,0 -103731895,"Left 4 Dead 2",play,8.4,0 -103731895,"Surgeon Simulator",purchase,1.0,0 -103731895,"Surgeon Simulator",play,8.1,0 -103731895,"Town of Salem",purchase,1.0,0 -103731895,"Town of Salem",play,8.0,0 -103731895,"Fistful of Frags",purchase,1.0,0 -103731895,"Fistful of Frags",play,7.8,0 -103731895,"Don't Starve Together Beta",purchase,1.0,0 -103731895,"Don't Starve Together Beta",play,7.2,0 -103731895,"Deadly 30",purchase,1.0,0 -103731895,"Deadly 30",play,5.4,0 -103731895,"Nosgoth",purchase,1.0,0 -103731895,"Nosgoth",play,4.7,0 -103731895,"MicroVolts Surge",purchase,1.0,0 -103731895,"MicroVolts Surge",play,4.1,0 -103731895,"ORION Prelude",purchase,1.0,0 -103731895,"ORION Prelude",play,3.5,0 -103731895,"Velvet Sundown",purchase,1.0,0 -103731895,"Velvet Sundown",play,3.2,0 -103731895,"No More Room in Hell",purchase,1.0,0 -103731895,"No More Room in Hell",play,3.0,0 -103731895,"Reign Of Kings",purchase,1.0,0 -103731895,"Reign Of Kings",play,2.7,0 -103731895,"Spiral Knights",purchase,1.0,0 -103731895,"Spiral Knights",play,2.6,0 -103731895,"Loadout",purchase,1.0,0 -103731895,"Loadout",play,2.5,0 -103731895,"Don't Starve",purchase,1.0,0 -103731895,"Don't Starve",play,2.0,0 -103731895,"AdVenture Capitalist",purchase,1.0,0 -103731895,"AdVenture Capitalist",play,1.8,0 -103731895,"Tap Heroes",purchase,1.0,0 -103731895,"Tap Heroes",play,1.6,0 -103731895,"Toribash",purchase,1.0,0 -103731895,"Toribash",play,1.4,0 -103731895,"Scribblenauts Unlimited",purchase,1.0,0 -103731895,"Scribblenauts Unlimited",play,1.0,0 -103731895,"Amnesia The Dark Descent",purchase,1.0,0 -103731895,"Amnesia The Dark Descent",play,0.9,0 -103731895,"Goat Simulator",purchase,1.0,0 -103731895,"Goat Simulator",play,0.8,0 -103731895,"Modular Combat",purchase,1.0,0 -103731895,"Modular Combat",play,0.7,0 -103731895,"The Mighty Quest For Epic Loot",purchase,1.0,0 -103731895,"The Mighty Quest For Epic Loot",play,0.7,0 -103731895,"Dream",purchase,1.0,0 -103731895,"Dream",play,0.6,0 -103731895,"Chivalry Medieval Warfare",purchase,1.0,0 -103731895,"Chivalry Medieval Warfare",play,0.5,0 -103731895,"Time Clickers",purchase,1.0,0 -103731895,"Time Clickers",play,0.5,0 -103731895,"Magicka Wizard Wars",purchase,1.0,0 -103731895,"Magicka Wizard Wars",play,0.5,0 -103731895,"theHunter",purchase,1.0,0 -103731895,"theHunter",play,0.4,0 -103731895,"Tap Tap Infinity",purchase,1.0,0 -103731895,"Tap Tap Infinity",play,0.4,0 -103731895,"Revolution Ace",purchase,1.0,0 -103731895,"Revolution Ace",play,0.3,0 -103731895,"Cubic Castles",purchase,1.0,0 -103731895,"Cubic Castles",play,0.3,0 -103731895,"Sakura Clicker",purchase,1.0,0 -103731895,"Sakura Clicker",play,0.2,0 -103731895,"Robocraft",purchase,1.0,0 -103731895,"Robocraft",play,0.2,0 -103731895,"MapleStory",purchase,1.0,0 -103731895,"MapleStory",play,0.2,0 -103731895,"Foul Play",purchase,1.0,0 -103731895,"Foul Play",play,0.2,0 -103731895,"Guns'N'Zombies",purchase,1.0,0 -103731895,"Guns'N'Zombies",play,0.1,0 -103731895,"GameMaker Studio",purchase,1.0,0 -103731895,"GameMaker Studio",play,0.1,0 -103731895,"99 Levels To Hell",purchase,1.0,0 -103731895,"99 Levels To Hell",play,0.1,0 -103731895,"The Expendabros",purchase,1.0,0 -103731895,"The Expendabros",play,0.1,0 -103731895,"Viridi",purchase,1.0,0 -103731895,"Super Hipster Lumberjack",purchase,1.0,0 -103731895,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -103731895,"Vindictus",purchase,1.0,0 -103731895,"One Manga Day",purchase,1.0,0 -103731895,"Counter-Strike",purchase,1.0,0 -103731895,"Counter-Strike Condition Zero",purchase,1.0,0 -103731895,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -103731895,"Dead Island Epidemic",purchase,1.0,0 -103731895,"Devils Share",purchase,1.0,0 -103731895,"Dizzel",purchase,1.0,0 -103731895,"Dungeon Defenders II",purchase,1.0,0 -103731895,"Gems of War",purchase,1.0,0 -103731895,"Marvel Heroes 2015",purchase,1.0,0 -103731895,"Neverwinter",purchase,1.0,0 -103731895,"Patch testing for Chivalry",purchase,1.0,0 -103731895,"SMITE",purchase,1.0,0 -103731895,"Strife",purchase,1.0,0 -103731895,"Villagers and Heroes",purchase,1.0,0 -209817175,"Robocraft",purchase,1.0,0 -209817175,"Robocraft",play,302.0,0 -209817175,"APB Reloaded",purchase,1.0,0 -209817175,"APB Reloaded",play,30.0,0 -209817175,"Counter-Strike Global Offensive",purchase,1.0,0 -209817175,"Counter-Strike Global Offensive",play,27.0,0 -209817175,"Firefall",purchase,1.0,0 -209817175,"Firefall",play,19.4,0 -209817175,"PlanetSide 2",purchase,1.0,0 -209817175,"PlanetSide 2",play,10.5,0 -209817175,"Warframe",purchase,1.0,0 -209817175,"Warframe",play,8.5,0 -209817175,"Depth",purchase,1.0,0 -209817175,"Depth",play,7.3,0 -209817175,"Team Fortress 2",purchase,1.0,0 -209817175,"Team Fortress 2",play,6.1,0 -209817175,"Trove",purchase,1.0,0 -209817175,"Trove",play,2.7,0 -209817175,"Terraria",purchase,1.0,0 -209817175,"Terraria",play,1.8,0 -209817175,"HIS (Heroes In the Sky)",purchase,1.0,0 -209817175,"HIS (Heroes In the Sky)",play,1.7,0 -209817175,"Marvel Heroes 2015",purchase,1.0,0 -209817175,"Marvel Heroes 2015",play,1.4,0 -209817175,"AirMech",purchase,1.0,0 -209817175,"AirMech",play,0.8,0 -209817175,"Dragons and Titans",purchase,1.0,0 -209817175,"Dragons and Titans",play,0.8,0 -209817175,"Gear Up",purchase,1.0,0 -209817175,"Gear Up",play,0.7,0 -209817175,"Dota 2",purchase,1.0,0 -209817175,"Dota 2",play,0.5,0 -209817175,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -209817175,"Navy Field 2 Conqueror of the Ocean",play,0.3,0 -209817175,"Karos",purchase,1.0,0 -209817175,"Dizzel",purchase,1.0,0 -209817175,"Tribes Ascend",purchase,1.0,0 -73997241,"Counter-Strike Global Offensive",purchase,1.0,0 -73997241,"Counter-Strike Global Offensive",play,320.0,0 -73997241,"Counter-Strike Source",purchase,1.0,0 -73997241,"Counter-Strike Source",play,35.0,0 -73997241,"Counter-Strike Nexon Zombies",purchase,1.0,0 -265859320,"BLOCKADE 3D",purchase,1.0,0 -265859320,"BLOCKADE 3D",play,2.1,0 -265859320,"Unturned",purchase,1.0,0 -265859320,"Unturned",play,1.1,0 -265859320,"Team Fortress 2",purchase,1.0,0 -265859320,"Team Fortress 2",play,0.4,0 -265859320,"Codename CURE",purchase,1.0,0 -265859320,"Codename CURE",play,0.4,0 -265859320,"La Tale",purchase,1.0,0 -265859320,"La Tale",play,0.2,0 -265859320,"Rustbucket Rumble",purchase,1.0,0 -265859320,"Rustbucket Rumble",play,0.2,0 -265859320,"Copa Petrobras de Marcas",purchase,1.0,0 -265859320,"Happy Wars",purchase,1.0,0 -265859320,"Fistful of Frags",purchase,1.0,0 -265859320,"Heroes & Generals",purchase,1.0,0 -265859320,"Marvel Heroes 2015",purchase,1.0,0 -265859320,"PlanetSide 2",purchase,1.0,0 -265859320,"Spiral Knights",purchase,1.0,0 -153956921,"Counter-Strike Global Offensive",purchase,1.0,0 -153956921,"Counter-Strike Global Offensive",play,376.0,0 -153956921,"Batman Arkham Origins",purchase,1.0,0 -153956921,"Batman Arkham Origins",play,47.0,0 -153956921,"Trove",purchase,1.0,0 -153956921,"Trove",play,43.0,0 -153956921,"Clicker Heroes",purchase,1.0,0 -153956921,"Clicker Heroes",play,15.6,0 -153956921,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -153956921,"Just Cause 2 Multiplayer Mod",play,8.8,0 -153956921,"Unturned",purchase,1.0,0 -153956921,"Unturned",play,8.1,0 -153956921,"Post Apocalyptic Mayhem",purchase,1.0,0 -153956921,"Post Apocalyptic Mayhem",play,6.7,0 -153956921,"Just Cause 2",purchase,1.0,0 -153956921,"Just Cause 2",play,4.3,0 -153956921,"ORION Prelude",purchase,1.0,0 -153956921,"ORION Prelude",play,4.2,0 -153956921,"Sinister City",purchase,1.0,0 -153956921,"Sinister City",play,3.6,0 -153956921,"Robotex",purchase,1.0,0 -153956921,"Robotex",play,3.4,0 -153956921,"Guns and Robots",purchase,1.0,0 -153956921,"Guns and Robots",play,3.2,0 -153956921,"The Howler",purchase,1.0,0 -153956921,"The Howler",play,2.8,0 -153956921,"Primal Carnage",purchase,1.0,0 -153956921,"Primal Carnage",play,2.8,0 -153956921,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -153956921,"Tiny and Big Grandpa's Leftovers",play,2.6,0 -153956921,"BEEP",purchase,1.0,0 -153956921,"BEEP",play,2.5,0 -153956921,"Morphopolis",purchase,1.0,0 -153956921,"Morphopolis",play,2.5,0 -153956921,"New kind of adventure",purchase,1.0,0 -153956921,"New kind of adventure",play,2.4,0 -153956921,"Chip",purchase,1.0,0 -153956921,"Chip",play,2.3,0 -153956921,"Brawlhalla",purchase,1.0,0 -153956921,"Brawlhalla",play,1.7,0 -153956921,"Caster",purchase,1.0,0 -153956921,"Caster",play,1.7,0 -153956921,"Gear Up",purchase,1.0,0 -153956921,"Gear Up",play,1.5,0 -153956921,"12 Labours of Hercules II The Cretan Bull",purchase,1.0,0 -153956921,"12 Labours of Hercules II The Cretan Bull",play,1.3,0 -153956921,"Squishy the Suicidal Pig",purchase,1.0,0 -153956921,"Squishy the Suicidal Pig",play,1.3,0 -153956921,"Dead Bits",purchase,1.0,0 -153956921,"Dead Bits",play,1.2,0 -153956921,"Epigenesis",purchase,1.0,0 -153956921,"Epigenesis",play,1.2,0 -153956921,"Defy Gravity",purchase,1.0,0 -153956921,"Defy Gravity",play,1.2,0 -153956921,"Dirty Bomb",purchase,1.0,0 -153956921,"Dirty Bomb",play,0.8,0 -153956921,"Uncrowded",purchase,1.0,0 -153956921,"Uncrowded",play,0.6,0 -153956921,"Survarium",purchase,1.0,0 -153956921,"Survarium",play,0.4,0 -153956921,"Legendary",purchase,1.0,0 -153956921,"Legendary",play,0.4,0 -153956921,"HAWKEN",purchase,1.0,0 -153956921,"HAWKEN",play,0.3,0 -153956921,"Relic Hunters Zero",purchase,1.0,0 -153956921,"Relic Hunters Zero",play,0.2,0 -153956921,"Creativerse",purchase,1.0,0 -153956921,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -153956921,"RaceRoom Racing Experience ",purchase,1.0,0 -153956921,"12 Labours of Hercules",purchase,1.0,0 -153956921,"12 Labours of Hercules III Girl Power",purchase,1.0,0 -153956921,"Aftermath",purchase,1.0,0 -153956921,"Camera Obscura",purchase,1.0,0 -153956921,"Camera Obscura Soundtrack",purchase,1.0,0 -153956921,"Chivalry Medieval Warfare",purchase,1.0,0 -153956921,"Commando Jack",purchase,1.0,0 -153956921,"Darkwind War on Wheels",purchase,1.0,0 -153956921,"Dracula's Legacy",purchase,1.0,0 -153956921,"Enclave",purchase,1.0,0 -153956921,"Flesh Eaters",purchase,1.0,0 -153956921,"Frankenstein Master of Death",purchase,1.0,0 -153956921,"Gravilon",purchase,1.0,0 -153956921,"Greyfox",purchase,1.0,0 -153956921,"iBomber Defense Pacific",purchase,1.0,0 -153956921,"Incoming Forces",purchase,1.0,0 -153956921,"Knights and Merchants",purchase,1.0,0 -153956921,"Legend of Mysteria",purchase,1.0,0 -153956921,"Lilly and Sasha Curse of the Immortals",purchase,1.0,0 -153956921,"PARTICLE MACE",purchase,1.0,0 -153956921,"Patch testing for Chivalry",purchase,1.0,0 -153956921,"Pirates of Black Cove Gold",purchase,1.0,0 -153956921,"Terra Incognita ~ Chapter One The Descendant",purchase,1.0,0 -153956921,"theHunter",purchase,1.0,0 -153956921,"Tiny Bridge Ratventure",purchase,1.0,0 -153956921,"Tribes Ascend",purchase,1.0,0 -153956921,"Voxelized",purchase,1.0,0 -153956921,"Woodle Tree Adventures",purchase,1.0,0 -212210746,"Dota 2",purchase,1.0,0 -212210746,"Dota 2",play,467.0,0 -212210746,"Football Superstars",purchase,1.0,0 -212210746,"Morphopolis",purchase,1.0,0 -212210746,"Stronghold Kingdoms",purchase,1.0,0 -223714279,"Dota 2",purchase,1.0,0 -223714279,"Dota 2",play,1.5,0 -174762197,"AdVenture Capitalist",purchase,1.0,0 -174762197,"AdVenture Capitalist",play,255.0,0 -174762197,"War Thunder",purchase,1.0,0 -174762197,"War Thunder",play,62.0,0 -174762197,"Robocraft",purchase,1.0,0 -174762197,"Robocraft",play,44.0,0 -174762197,"Heroes & Generals",purchase,1.0,0 -174762197,"Heroes & Generals",play,29.0,0 -174762197,"Team Fortress 2",purchase,1.0,0 -174762197,"Team Fortress 2",play,14.2,0 -174762197,"Warframe",purchase,1.0,0 -174762197,"Warframe",play,11.5,0 -174762197,"Galcon 2",purchase,1.0,0 -174762197,"Galcon 2",play,4.8,0 -174762197,"Altitude",purchase,1.0,0 -174762197,"Altitude",play,4.4,0 -174762197,"The Mighty Quest For Epic Loot",purchase,1.0,0 -174762197,"The Mighty Quest For Epic Loot",play,1.6,0 -174762197,"Destination Sol",purchase,1.0,0 -174762197,"Destination Sol",play,1.6,0 -174762197,"Quintet",purchase,1.0,0 -174762197,"Quintet",play,0.8,0 -174762197,"Battle Islands",purchase,1.0,0 -174762197,"Battle Islands",play,0.6,0 -174762197,"PlanetSide 2",purchase,1.0,0 -174762197,"PlanetSide 2",play,0.5,0 -174762197,"Rise of Flight United",purchase,1.0,0 -174762197,"Rise of Flight United",play,0.5,0 -174762197,"Unturned",purchase,1.0,0 -174762197,"Unturned",play,0.2,0 -174762197,"Subspace Continuum",purchase,1.0,0 -174762197,"Subspace Continuum",play,0.1,0 -174762197,"Endless Sky",purchase,1.0,0 -174762197,"Gear Up",purchase,1.0,0 -174762197,"Deepworld",purchase,1.0,0 -174762197,"Simply Chess",purchase,1.0,0 -174762197,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -174762197,"Star Conflict",purchase,1.0,0 -174762197,"Wind of Luck Arena",purchase,1.0,0 -167642460,"Counter-Strike Global Offensive",purchase,1.0,0 -167642460,"Counter-Strike Global Offensive",play,8.3,0 -293488473,"Counter-Strike Global Offensive",purchase,1.0,0 -293488473,"Counter-Strike Global Offensive",play,200.0,0 -293488473,"Counter-Strike",purchase,1.0,0 -293488473,"Counter-Strike",play,60.0,0 -293488473,"Counter-Strike Condition Zero",purchase,1.0,0 -293488473,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -293488473,"War Thunder",purchase,1.0,0 -273597380,"Counter-Strike Global Offensive",purchase,1.0,0 -273597380,"Counter-Strike Global Offensive",play,370.0,0 -273597380,"Left 4 Dead 2",purchase,1.0,0 -273597380,"Left 4 Dead 2",play,9.5,0 -93514355,"Contagion",purchase,1.0,0 -93514355,"Contagion",play,6.3,0 -93514355,"Team Fortress 2",purchase,1.0,0 -93514355,"Team Fortress 2",play,2.9,0 -265832700,"Dota 2",purchase,1.0,0 -265832700,"Dota 2",play,2.0,0 -11613587,"Counter-Strike Source",purchase,1.0,0 -11613587,"Half-Life 2",purchase,1.0,0 -11613587,"Half-Life 2 Deathmatch",purchase,1.0,0 -11613587,"Half-Life 2 Episode One",purchase,1.0,0 -11613587,"Half-Life 2 Lost Coast",purchase,1.0,0 -11613587,"Half-Life Source",purchase,1.0,0 -11613587,"Half-Life Deathmatch Source",purchase,1.0,0 -210339458,"Team Fortress 2",purchase,1.0,0 -210339458,"Team Fortress 2",play,2.5,0 -210339458,"Stronghold Kingdoms",purchase,1.0,0 -216899823,"Dota 2",purchase,1.0,0 -216899823,"Dota 2",play,48.0,0 -137514463,"Nosgoth",purchase,1.0,0 -137514463,"Nosgoth",play,1.2,0 -221746589,"Dota 2",purchase,1.0,0 -221746589,"Dota 2",play,0.9,0 -77665527,"Sid Meier's Civilization V",purchase,1.0,0 -77665527,"Sid Meier's Civilization V",play,178.0,0 -77665527,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -77665527,"Baldur's Gate Enhanced Edition",play,58.0,0 -77665527,"7 Days to Die",purchase,1.0,0 -77665527,"7 Days to Die",play,57.0,0 -77665527,"Empire Total War",purchase,1.0,0 -77665527,"Empire Total War",play,56.0,0 -77665527,"Pillars of Eternity",purchase,1.0,0 -77665527,"Pillars of Eternity",play,17.5,0 -77665527,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -77665527,"Galactic Civilizations II Ultimate Edition",play,16.5,0 -77665527,"Stronghold 3",purchase,1.0,0 -77665527,"Stronghold 3",play,6.6,0 -77665527,"Dota 2",purchase,1.0,0 -77665527,"Dota 2",play,3.3,0 -77665527,"Total War SHOGUN 2",purchase,1.0,0 -77665527,"Total War SHOGUN 2",play,2.2,0 -77665527,"AdVenture Capitalist",purchase,1.0,0 -77665527,"Stronghold HD",purchase,1.0,0 -77665527,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -77665527,"Unturned",purchase,1.0,0 -170174457,"Dota 2",purchase,1.0,0 -170174457,"Dota 2",play,1.3,0 -170174457,"Serious Sam HD The Second Encounter",purchase,1.0,0 -170174457,"Serious Sam HD The Second Encounter",play,0.4,0 -223515017,"Dota 2",purchase,1.0,0 -223515017,"Dota 2",play,3.4,0 -223515017,"GunZ 2 The Second Duel",purchase,1.0,0 -223515017,"Ragnarok Online 2",purchase,1.0,0 -22883395,"Counter-Strike",purchase,1.0,0 -22883395,"Counter-Strike Condition Zero",purchase,1.0,0 -22883395,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -22883395,"Day of Defeat",purchase,1.0,0 -22883395,"Deathmatch Classic",purchase,1.0,0 -22883395,"Ricochet",purchase,1.0,0 -254097023,"Dota 2",purchase,1.0,0 -254097023,"Dota 2",play,4.4,0 -252502539,"Poly Bridge",purchase,1.0,0 -252502539,"Poly Bridge",play,1.5,0 -41998087,"Football Manager 2009",purchase,1.0,0 -41998087,"Football Manager 2009",play,0.1,0 -157811997,"Dota 2",purchase,1.0,0 -157811997,"Dota 2",play,356.0,0 -157811997,"Call of Duty Modern Warfare 3",purchase,1.0,0 -157811997,"Call of Duty Modern Warfare 3",play,18.5,0 -157811997,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -157811997,"Call of Duty Modern Warfare 3 - Multiplayer",play,11.5,0 -157811997,"Sid Meier's Civilization V",purchase,1.0,0 -157811997,"Sid Meier's Civilization V",play,1.7,0 -157811997,"Sanctum 2",purchase,1.0,0 -157811997,"Sanctum 2",play,1.2,0 -157811997,"Far Cry 2",purchase,1.0,0 -157811997,"Far Cry 2",play,0.5,0 -157811997,"Rogue Legacy",purchase,1.0,0 -157811997,"Rogue Legacy",play,0.3,0 -157811997,"Enclave",purchase,1.0,0 -157811997,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -21869048,"Counter-Strike Source",purchase,1.0,0 -21869048,"Counter-Strike Source",play,796.0,0 -21869048,"Day of Defeat Source",purchase,1.0,0 -21869048,"Half-Life 2 Deathmatch",purchase,1.0,0 -21869048,"Half-Life 2 Lost Coast",purchase,1.0,0 -177591797,"Counter-Strike Global Offensive",purchase,1.0,0 -177591797,"Counter-Strike Global Offensive",play,229.0,0 -177591797,"Counter-Strike Source",purchase,1.0,0 -177591797,"Counter-Strike Source",play,18.8,0 -177591797,"Day of Defeat Source",purchase,1.0,0 -177591797,"Half-Life 2 Deathmatch",purchase,1.0,0 -177591797,"Half-Life 2 Lost Coast",purchase,1.0,0 -94152935,"Terraria",purchase,1.0,0 -94152935,"Terraria",play,6.4,0 -73721802,"Defense Grid The Awakening",purchase,1.0,0 -73721802,"Defense Grid The Awakening",play,28.0,0 -73721802,"Fallout New Vegas",purchase,1.0,0 -73721802,"Fallout New Vegas",play,12.9,0 -73721802,"Sid Meier's Civilization IV",purchase,1.0,0 -73721802,"Sid Meier's Civilization IV",play,12.8,0 -73721802,"Portal 2",purchase,1.0,0 -73721802,"Portal 2",play,10.8,0 -73721802,"Amnesia The Dark Descent",purchase,1.0,0 -73721802,"Amnesia The Dark Descent",play,6.1,0 -73721802,"Portal",purchase,1.0,0 -73721802,"Portal",play,3.1,0 -73721802,"Left 4 Dead 2",purchase,1.0,0 -73721802,"Left 4 Dead 2",play,2.6,0 -73721802,"Scribblenauts Unlimited",purchase,1.0,0 -73721802,"Scribblenauts Unlimited",play,2.1,0 -73721802,"Mass Effect",purchase,1.0,0 -73721802,"Mass Effect",play,1.7,0 -73721802,"Audiosurf",purchase,1.0,0 -73721802,"Audiosurf",play,1.3,0 -73721802,"Darwinia",purchase,1.0,0 -73721802,"Darwinia",play,1.1,0 -73721802,"Half-Life 2",purchase,1.0,0 -73721802,"Half-Life 2",play,0.8,0 -73721802,"Killing Floor",purchase,1.0,0 -73721802,"Killing Floor",play,0.2,0 -73721802,"Overlord II",purchase,1.0,0 -73721802,"They Bleed Pixels",purchase,1.0,0 -73721802,"Defense Grid Resurgence Map Pack 1",purchase,1.0,0 -73721802,"Defense Grid Resurgence Map Pack 2 ",purchase,1.0,0 -73721802,"Defense Grid Resurgence Map Pack 3",purchase,1.0,0 -73721802,"Defense Grid Resurgence Map Pack 4",purchase,1.0,0 -73721802,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -73721802,"Fallout New Vegas Dead Money",purchase,1.0,0 -73721802,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -73721802,"Frozen Synapse",purchase,1.0,0 -73721802,"Half-Life 2 Episode One",purchase,1.0,0 -73721802,"Half-Life 2 Episode Two",purchase,1.0,0 -73721802,"Half-Life 2 Lost Coast",purchase,1.0,0 -73721802,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -73721802,"Magicka",purchase,1.0,0 -73721802,"Magicka Final Frontier",purchase,1.0,0 -73721802,"Magicka Frozen Lake",purchase,1.0,0 -73721802,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -73721802,"Magicka Nippon",purchase,1.0,0 -73721802,"Magicka Party Robes",purchase,1.0,0 -73721802,"Magicka The Watchtower",purchase,1.0,0 -73721802,"Magicka Vietnam",purchase,1.0,0 -73721802,"Magicka Wizard's Survival Kit",purchase,1.0,0 -73721802,"Mass Effect 2",purchase,1.0,0 -73721802,"Multiwinia",purchase,1.0,0 -73721802,"Overlord",purchase,1.0,0 -73721802,"Overlord Raising Hell",purchase,1.0,0 -73721802,"Recettear An Item Shop's Tale",purchase,1.0,0 -73721802,"Sid Meier's Civilization IV",purchase,1.0,0 -73721802,"Terraria",purchase,1.0,0 -73721802,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -130851836,"Dota 2",purchase,1.0,0 -130851836,"Dota 2",play,1298.0,0 -155963474,"Dota 2",purchase,1.0,0 -155963474,"Dota 2",play,858.0,0 -155963474,"NBA 2K15",purchase,1.0,0 -155963474,"NBA 2K15",play,229.0,0 -155963474,"NBA 2K16",purchase,1.0,0 -155963474,"NBA 2K16",play,131.0,0 -155963474,"FreeStyle2 Street Basketball",purchase,1.0,0 -155963474,"FreeStyle2 Street Basketball",play,98.0,0 -155963474,"Sleeping Dogs Definitive Edition",purchase,1.0,0 -155963474,"Sleeping Dogs Definitive Edition",play,13.9,0 -155963474,"Marvel Heroes 2015",purchase,1.0,0 -155963474,"Marvel Heroes 2015",play,2.5,0 -155963474,"Trove",purchase,1.0,0 -155963474,"Rise of Incarnates",purchase,1.0,0 -155963474,"Strife",purchase,1.0,0 -155963474,"Warframe",purchase,1.0,0 -65200468,"Wings of Prey",purchase,1.0,0 -65200468,"Wings of Prey",play,262.0,0 -65200468,"Day of Defeat Source",purchase,1.0,0 -65200468,"Day of Defeat Source",play,33.0,0 -65200468,"Blazing Angels Squadrons of WWII",purchase,1.0,0 -65200468,"Blazing Angels Squadrons of WWII",play,7.6,0 -65200468,"Blazing Angels 2 Secret Missions of WWII",purchase,1.0,0 -65200468,"Blazing Angels 2 Secret Missions of WWII",play,6.5,0 -65200468,"Counter-Strike Source",purchase,1.0,0 -65200468,"Counter-Strike Source",play,2.6,0 -65200468,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -65200468,"Microsoft Flight Simulator X Steam Edition",play,2.4,0 -198083088,"Dota 2",purchase,1.0,0 -198083088,"Dota 2",play,48.0,0 -198083088,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -198083088,"Warframe",purchase,1.0,0 -277283024,"Rise of Incarnates",purchase,1.0,0 -202846415,"Dota 2",purchase,1.0,0 -202846415,"Dota 2",play,18.8,0 -141034426,"Dota 2",purchase,1.0,0 -141034426,"Dota 2",play,104.0,0 -55755821,"Fallout New Vegas",purchase,1.0,0 -55755821,"Fallout New Vegas",play,71.0,0 -55755821,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -55755821,"Call of Duty Modern Warfare 2 - Multiplayer",play,45.0,0 -55755821,"Call of Duty Modern Warfare 2",purchase,1.0,0 -55755821,"Call of Duty Modern Warfare 2",play,9.9,0 -55755821,"Fallout 4",purchase,1.0,0 -55755821,"Fallout 4",play,7.6,0 -55755821,"Alan Wake's American Nightmare",purchase,1.0,0 -55755821,"Alan Wake's American Nightmare",play,5.0,0 -55755821,"Borderlands 2",purchase,1.0,0 -55755821,"Borderlands 2",play,3.3,0 -55755821,"Alan Wake",purchase,1.0,0 -55755821,"Alan Wake",play,1.9,0 -55755821,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -55755821,"Batman Arkham Asylum GOTY Edition",play,1.9,0 -55755821,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -55755821,"Burnout Paradise The Ultimate Box",play,0.8,0 -55755821,"Metro 2033",purchase,1.0,0 -55755821,"Metro 2033",play,0.5,0 -55755821,"Batman Arkham City GOTY",purchase,1.0,0 -55755821,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -55755821,"Crysis 2 Maximum Edition",purchase,1.0,0 -55755821,"Dead Space",purchase,1.0,0 -55755821,"F.E.A.R.",purchase,1.0,0 -55755821,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -55755821,"F.E.A.R. 3",purchase,1.0,0 -55755821,"F.E.A.R. Extraction Point",purchase,1.0,0 -55755821,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -55755821,"Guardians of Middle-earth",purchase,1.0,0 -55755821,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -55755821,"Medal of Honor(TM) Single Player",purchase,1.0,0 -55755821,"Medal of Honor Pre-Order",purchase,1.0,0 -55755821,"Mirror's Edge",purchase,1.0,0 -55755821,"Mortal Kombat Kollection",purchase,1.0,0 -55755821,"Scribblenauts Unlimited",purchase,1.0,0 -55755821,"The Lord of the Rings War in the North",purchase,1.0,0 -180780478,"Dota 2",purchase,1.0,0 -180780478,"Dota 2",play,56.0,0 -180780478,"Unturned",purchase,1.0,0 -180780478,"Unturned",play,36.0,0 -251419651,"Dota 2",purchase,1.0,0 -251419651,"Dota 2",play,38.0,0 -81911890,"Speedball 2 Tournament",purchase,1.0,0 -81911890,"Speedball 2 Tournament",play,0.3,0 -81911890,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -81911890,"Warhammer 40,000 Dawn of War II",play,0.2,0 -166604341,"Cities Skylines",purchase,1.0,0 -166604341,"Cities Skylines",play,44.0,0 -166604341,"Starbound",purchase,1.0,0 -166604341,"Starbound",play,44.0,0 -166604341,"AdVenture Capitalist",purchase,1.0,0 -166604341,"AdVenture Capitalist",play,37.0,0 -166604341,"Counter-Strike Global Offensive",purchase,1.0,0 -166604341,"Counter-Strike Global Offensive",play,31.0,0 -166604341,"Clicker Heroes",purchase,1.0,0 -166604341,"Clicker Heroes",play,30.0,0 -166604341,"Banished",purchase,1.0,0 -166604341,"Banished",play,19.4,0 -166604341,"DayZ",purchase,1.0,0 -166604341,"DayZ",play,12.5,0 -166604341,"Besiege",purchase,1.0,0 -166604341,"Besiege",play,10.6,0 -166604341,"Poly Bridge",purchase,1.0,0 -166604341,"Poly Bridge",play,10.5,0 -166604341,"Song of the Myrne What Lies Beneath",purchase,1.0,0 -166604341,"Song of the Myrne What Lies Beneath",play,1.7,0 -166604341,"Starbound - Unstable",purchase,1.0,0 -166604341,"Starbound - Unstable",play,0.4,0 -166604341,"Brick-Force",purchase,1.0,0 -166604341,"Brick-Force",play,0.1,0 -166604341,"Pinball FX2",purchase,1.0,0 -169560266,"Dota 2",purchase,1.0,0 -169560266,"Dota 2",play,2700.0,0 -297388936,"Counter-Strike Global Offensive",purchase,1.0,0 -297388936,"Counter-Strike Global Offensive",play,1.6,0 -219749787,"Destination Sol",purchase,1.0,0 -219749787,"Anarchy Arcade",purchase,1.0,0 -81672131,"Dota 2",purchase,1.0,0 -81672131,"Dota 2",play,426.0,0 -81672131,"Borderlands 2",purchase,1.0,0 -81672131,"Borderlands 2",play,284.0,0 -81672131,"TERA",purchase,1.0,0 -81672131,"TERA",play,150.0,0 -81672131,"The Elder Scrolls V Skyrim",purchase,1.0,0 -81672131,"The Elder Scrolls V Skyrim",play,65.0,0 -81672131,"Borderlands The Pre-Sequel",purchase,1.0,0 -81672131,"Borderlands The Pre-Sequel",play,39.0,0 -81672131,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -81672131,"Call of Duty Modern Warfare 3 - Multiplayer",play,29.0,0 -81672131,"Dungeon Siege III",purchase,1.0,0 -81672131,"Dungeon Siege III",play,12.7,0 -81672131,"Call of Duty Modern Warfare 3",purchase,1.0,0 -81672131,"Call of Duty Modern Warfare 3",play,8.1,0 -81672131,"Sid Meier's Civilization V",purchase,1.0,0 -81672131,"Sid Meier's Civilization V",play,7.3,0 -81672131,"Might & Magic Heroes VI",purchase,1.0,0 -81672131,"Might & Magic Heroes VI",play,4.7,0 -81672131,"Tomb Raider",purchase,1.0,0 -81672131,"Tomb Raider",play,4.0,0 -81672131,"Team Fortress 2",purchase,1.0,0 -81672131,"Team Fortress 2",play,3.2,0 -81672131,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -81672131,"Tom Clancy's Ghost Recon Phantoms - NA",play,2.9,0 -81672131,"Half-Life 2",purchase,1.0,0 -81672131,"Half-Life 2",play,2.8,0 -81672131,"Orcs Must Die!",purchase,1.0,0 -81672131,"Orcs Must Die!",play,1.9,0 -81672131,"Might & Magic Heroes VII ",purchase,1.0,0 -81672131,"Might & Magic Heroes VII ",play,1.0,0 -81672131,"Alan Wake",purchase,1.0,0 -81672131,"Alan Wake",play,0.7,0 -81672131,"Elsword",purchase,1.0,0 -81672131,"Elsword",play,0.6,0 -81672131,"Heroes of Might & Magic III - HD Edition",purchase,1.0,0 -81672131,"Heroes of Might & Magic III - HD Edition",play,0.5,0 -81672131,"Dead Island Riptide",purchase,1.0,0 -81672131,"Dead Island Riptide",play,0.5,0 -81672131,"Counter-Strike Global Offensive",purchase,1.0,0 -81672131,"Counter-Strike Global Offensive",play,0.4,0 -81672131,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -81672131,"Resident Evil Revelations / Biohazard Revelations",play,0.3,0 -81672131,"Max Payne 3",purchase,1.0,0 -81672131,"Dead Island",purchase,1.0,0 -81672131,"Alan Wake's American Nightmare",purchase,1.0,0 -81672131,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -81672131,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -81672131,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -81672131,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -81672131,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -81672131,"Dungeon Defenders II",purchase,1.0,0 -81672131,"Half-Life 2 Deathmatch",purchase,1.0,0 -81672131,"Half-Life 2 Episode One",purchase,1.0,0 -81672131,"Half-Life 2 Episode Two",purchase,1.0,0 -81672131,"Half-Life 2 Lost Coast",purchase,1.0,0 -81672131,"Half-Life Deathmatch Source",purchase,1.0,0 -81672131,"Max Payne 3 Season Pass",purchase,1.0,0 -81672131,"Portal",purchase,1.0,0 -81672131,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -81672131,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -81672131,"Tom Clancy's Ghost Recon Phantoms - NA Assault Starter Pack",purchase,1.0,0 -261602452,"Dota 2",purchase,1.0,0 -261602452,"Dota 2",play,598.0,0 -261602452,"Team Fortress 2",purchase,1.0,0 -261602452,"Team Fortress 2",play,73.0,0 -261602452,"The Mighty Quest For Epic Loot",purchase,1.0,0 -261602452,"The Mighty Quest For Epic Loot",play,48.0,0 -261602452,"Starbound",purchase,1.0,0 -261602452,"Starbound",play,29.0,0 -261602452,"Strife",purchase,1.0,0 -261602452,"Strife",play,11.1,0 -261602452,"POSTAL 2",purchase,1.0,0 -261602452,"POSTAL 2",play,7.5,0 -261602452,"Unturned",purchase,1.0,0 -261602452,"Unturned",play,1.6,0 -261602452,"Toribash",purchase,1.0,0 -261602452,"Toribash",play,0.5,0 -261602452,"Loadout",purchase,1.0,0 -261602452,"Loadout",play,0.5,0 -261602452,"Gear Up",purchase,1.0,0 -261602452,"Gear Up",play,0.2,0 -261602452,"TDP5 Arena 3D",purchase,1.0,0 -261602452,"TDP5 Arena 3D",play,0.2,0 -261602452,"AirMech",purchase,1.0,0 -261602452,"APB Reloaded",purchase,1.0,0 -261602452,"Counter-Strike Nexon Zombies",purchase,1.0,0 -261602452,"Dead Island Epidemic",purchase,1.0,0 -261602452,"HAWKEN",purchase,1.0,0 -261602452,"Heroes & Generals",purchase,1.0,0 -261602452,"Magicka Wizard Wars",purchase,1.0,0 -261602452,"Panzar",purchase,1.0,0 -261602452,"SMITE",purchase,1.0,0 -261602452,"Starbound - Unstable",purchase,1.0,0 -261602452,"Warframe",purchase,1.0,0 -299223802,"Dota 2",purchase,1.0,0 -299223802,"Dota 2",play,5.4,0 -43521755,"Half-Life 2 Episode One",purchase,1.0,0 -43521755,"Half-Life 2 Episode One",play,0.6,0 -43521755,"Half-Life 2 Deathmatch",purchase,1.0,0 -43521755,"Half-Life 2 Episode Two",purchase,1.0,0 -43521755,"Half-Life 2 Lost Coast",purchase,1.0,0 -219195098,"Dota 2",purchase,1.0,0 -219195098,"Dota 2",play,3.2,0 -99961115,"Borderlands",purchase,1.0,0 -99961115,"Borderlands",play,0.2,0 -99961115,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -99961115,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -99961115,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -99961115,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -123142474,"Might & Magic Heroes VI",purchase,1.0,0 -123142474,"Might & Magic Heroes VI",play,149.0,0 -123142474,"Assassin's Creed III",purchase,1.0,0 -123142474,"Assassin's Creed III",play,94.0,0 -123142474,"Hitman Absolution",purchase,1.0,0 -123142474,"Hitman Absolution",play,51.0,0 -8776918,"The Elder Scrolls V Skyrim",purchase,1.0,0 -8776918,"The Elder Scrolls V Skyrim",play,729.0,0 -8776918,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -8776918,"Call of Duty Modern Warfare 2 - Multiplayer",play,562.0,0 -8776918,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -8776918,"Call of Duty Black Ops II - Multiplayer",play,405.0,0 -8776918,"Borderlands 2",purchase,1.0,0 -8776918,"Borderlands 2",play,390.0,0 -8776918,"Counter-Strike Source",purchase,1.0,0 -8776918,"Counter-Strike Source",play,294.0,0 -8776918,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -8776918,"Call of Duty Advanced Warfare - Multiplayer",play,176.0,0 -8776918,"Fallout 4",purchase,1.0,0 -8776918,"Fallout 4",play,166.0,0 -8776918,"Fallout New Vegas",purchase,1.0,0 -8776918,"Fallout New Vegas",play,153.0,0 -8776918,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -8776918,"Call of Duty Black Ops - Multiplayer",play,125.0,0 -8776918,"Borderlands The Pre-Sequel",purchase,1.0,0 -8776918,"Borderlands The Pre-Sequel",play,89.0,0 -8776918,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -8776918,"Call of Duty Ghosts - Multiplayer",play,85.0,0 -8776918,"Dead Island",purchase,1.0,0 -8776918,"Dead Island",play,70.0,0 -8776918,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -8776918,"Call of Duty Modern Warfare 3 - Multiplayer",play,46.0,0 -8776918,"Dishonored",purchase,1.0,0 -8776918,"Dishonored",play,40.0,0 -8776918,"RAGE",purchase,1.0,0 -8776918,"RAGE",play,37.0,0 -8776918,"Wolfenstein The New Order",purchase,1.0,0 -8776918,"Wolfenstein The New Order",play,31.0,0 -8776918,"Day of Defeat Source",purchase,1.0,0 -8776918,"Day of Defeat Source",play,29.0,0 -8776918,"BioShock Infinite",purchase,1.0,0 -8776918,"BioShock Infinite",play,18.5,0 -8776918,"Portal 2",purchase,1.0,0 -8776918,"Portal 2",play,14.5,0 -8776918,"Counter-Strike Global Offensive",purchase,1.0,0 -8776918,"Counter-Strike Global Offensive",play,11.5,0 -8776918,"Aliens Colonial Marines",purchase,1.0,0 -8776918,"Aliens Colonial Marines",play,6.8,0 -8776918,"Call of Duty Modern Warfare 2",purchase,1.0,0 -8776918,"Call of Duty Modern Warfare 2",play,6.6,0 -8776918,"Metro Last Light",purchase,1.0,0 -8776918,"Metro Last Light",play,6.1,0 -8776918,"Left 4 Dead 2",purchase,1.0,0 -8776918,"Left 4 Dead 2",play,5.3,0 -8776918,"Left 4 Dead",purchase,1.0,0 -8776918,"Left 4 Dead",play,5.2,0 -8776918,"Call of Duty Advanced Warfare",purchase,1.0,0 -8776918,"Call of Duty Advanced Warfare",play,1.9,0 -8776918,"Call of Duty Black Ops II",purchase,1.0,0 -8776918,"Call of Duty Black Ops II",play,1.8,0 -8776918,"Call of Duty Black Ops",purchase,1.0,0 -8776918,"Call of Duty Black Ops",play,1.8,0 -8776918,"Mass Effect",purchase,1.0,0 -8776918,"Mass Effect",play,1.1,0 -8776918,"Call of Duty Ghosts",purchase,1.0,0 -8776918,"Call of Duty Ghosts",play,0.4,0 -8776918,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -8776918,"Call of Duty Black Ops II - Zombies",play,0.3,0 -8776918,"Call of Duty Modern Warfare 3",purchase,1.0,0 -8776918,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -8776918,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -8776918,"Call of Duty Modern Warfare 2 - Resurgence Pack",purchase,1.0,0 -8776918,"Call of Duty Modern Warfare 2 Stimulus Package",purchase,1.0,0 -8776918,"Counter-Strike",purchase,1.0,0 -8776918,"Counter-Strike Condition Zero",purchase,1.0,0 -8776918,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -8776918,"Day of Defeat",purchase,1.0,0 -8776918,"Deathmatch Classic",purchase,1.0,0 -8776918,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -8776918,"Fallout New Vegas Dead Money",purchase,1.0,0 -8776918,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -8776918,"Half-Life",purchase,1.0,0 -8776918,"Half-Life 2",purchase,1.0,0 -8776918,"Half-Life 2 Deathmatch",purchase,1.0,0 -8776918,"Half-Life 2 Episode One",purchase,1.0,0 -8776918,"Half-Life 2 Episode Two",purchase,1.0,0 -8776918,"Half-Life 2 Lost Coast",purchase,1.0,0 -8776918,"Half-Life Blue Shift",purchase,1.0,0 -8776918,"Half-Life Opposing Force",purchase,1.0,0 -8776918,"Half-Life Source",purchase,1.0,0 -8776918,"Half-Life Deathmatch Source",purchase,1.0,0 -8776918,"Mass Effect 2",purchase,1.0,0 -8776918,"Portal",purchase,1.0,0 -8776918,"Ricochet",purchase,1.0,0 -8776918,"Team Fortress Classic",purchase,1.0,0 -8776918,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -8776918,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -201173206,"Rocket League",purchase,1.0,0 -201173206,"Rocket League",play,259.0,0 -201173206,"TERA",purchase,1.0,0 -201173206,"TERA",play,61.0,0 -201173206,"Duck Game",purchase,1.0,0 -201173206,"Duck Game",play,3.8,0 -201173206,"Counter-Strike Global Offensive",purchase,1.0,0 -201173206,"Counter-Strike Global Offensive",play,2.3,0 -201173206,"Anomaly Warzone Earth",purchase,1.0,0 -201173206,"Bloop",purchase,1.0,0 -173739924,"Dota 2",purchase,1.0,0 -173739924,"Dota 2",play,52.0,0 -173739924,"Unturned",purchase,1.0,0 -561758,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -561758,"Call of Duty Modern Warfare 3 - Multiplayer",play,147.0,0 -561758,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -561758,"Call of Duty Black Ops - Multiplayer",play,76.0,0 -561758,"Call of Duty Black Ops II",purchase,1.0,0 -561758,"Call of Duty Black Ops II",play,75.0,0 -561758,"Borderlands",purchase,1.0,0 -561758,"Borderlands",play,59.0,0 -561758,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -561758,"Call of Duty Modern Warfare 2 - Multiplayer",play,51.0,0 -561758,"Eufloria",purchase,1.0,0 -561758,"Eufloria",play,51.0,0 -561758,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -561758,"Call of Duty Black Ops II - Multiplayer",play,47.0,0 -561758,"RAGE",purchase,1.0,0 -561758,"RAGE",play,46.0,0 -561758,"Portal 2",purchase,1.0,0 -561758,"Portal 2",play,33.0,0 -561758,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -561758,"Call of Duty Ghosts - Multiplayer",play,32.0,0 -561758,"Wolfenstein",purchase,1.0,0 -561758,"Wolfenstein",play,26.0,0 -561758,"Left 4 Dead 2",purchase,1.0,0 -561758,"Left 4 Dead 2",play,26.0,0 -561758,"Battlefield Bad Company 2",purchase,1.0,0 -561758,"Battlefield Bad Company 2",play,20.0,0 -561758,"Call of Duty Modern Warfare 2",purchase,1.0,0 -561758,"Call of Duty Modern Warfare 2",play,17.5,0 -561758,"Metro 2033",purchase,1.0,0 -561758,"Metro 2033",play,16.9,0 -561758,"Half-Life 2",purchase,1.0,0 -561758,"Half-Life 2",play,16.6,0 -561758,"Duke Nukem Forever",purchase,1.0,0 -561758,"Duke Nukem Forever",play,14.3,0 -561758,"Killing Floor",purchase,1.0,0 -561758,"Killing Floor",play,14.3,0 -561758,"Sniper Elite V2",purchase,1.0,0 -561758,"Sniper Elite V2",play,14.2,0 -561758,"Half-Life 2 Episode Two",purchase,1.0,0 -561758,"Half-Life 2 Episode Two",play,13.7,0 -561758,"Mass Effect",purchase,1.0,0 -561758,"Mass Effect",play,13.7,0 -561758,"Serious Sam HD The First Encounter",purchase,1.0,0 -561758,"Serious Sam HD The First Encounter",play,12.4,0 -561758,"F.E.A.R. 3",purchase,1.0,0 -561758,"F.E.A.R. 3",play,12.3,0 -561758,"Serious Sam 3 BFE",purchase,1.0,0 -561758,"Serious Sam 3 BFE",play,11.9,0 -561758,"Operation Flashpoint Red River",purchase,1.0,0 -561758,"Operation Flashpoint Red River",play,11.5,0 -561758,"Portal",purchase,1.0,0 -561758,"Portal",play,10.6,0 -561758,"Osmos",purchase,1.0,0 -561758,"Osmos",play,10.4,0 -561758,"Sniper Ghost Warrior",purchase,1.0,0 -561758,"Sniper Ghost Warrior",play,9.5,0 -561758,"Call of Duty Advanced Warfare",purchase,1.0,0 -561758,"Call of Duty Advanced Warfare",play,9.3,0 -561758,"The Elder Scrolls V Skyrim",purchase,1.0,0 -561758,"The Elder Scrolls V Skyrim",play,8.6,0 -561758,"Call of Duty Black Ops",purchase,1.0,0 -561758,"Call of Duty Black Ops",play,8.6,0 -561758,"Left 4 Dead",purchase,1.0,0 -561758,"Left 4 Dead",play,8.2,0 -561758,"Alan Wake",purchase,1.0,0 -561758,"Alan Wake",play,7.2,0 -561758,"Medal of Honor(TM) Single Player",purchase,1.0,0 -561758,"Medal of Honor(TM) Single Player",play,7.2,0 -561758,"I Am Alive",purchase,1.0,0 -561758,"I Am Alive",play,7.1,0 -561758,"Front Mission Evolved",purchase,1.0,0 -561758,"Front Mission Evolved",play,7.0,0 -561758,"Alan Wake's American Nightmare",purchase,1.0,0 -561758,"Alan Wake's American Nightmare",play,6.2,0 -561758,"Call of Duty Ghosts",purchase,1.0,0 -561758,"Call of Duty Ghosts",play,6.2,0 -561758,"Half-Life Source",purchase,1.0,0 -561758,"Half-Life Source",play,5.8,0 -561758,"Half-Life 2 Episode One",purchase,1.0,0 -561758,"Half-Life 2 Episode One",play,5.6,0 -561758,"Synergy",purchase,1.0,0 -561758,"Synergy",play,5.6,0 -561758,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -561758,"Red Faction Guerrilla Steam Edition",play,4.9,0 -561758,"BRINK",purchase,1.0,0 -561758,"BRINK",play,4.7,0 -561758,"Day of Defeat Source",purchase,1.0,0 -561758,"Day of Defeat Source",play,4.4,0 -561758,"Sanctum",purchase,1.0,0 -561758,"Sanctum",play,4.3,0 -561758,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -561758,"Killing Floor Mod Defence Alliance 2",play,3.1,0 -561758,"Bulletstorm",purchase,1.0,0 -561758,"Bulletstorm",play,2.9,0 -561758,"Spec Ops The Line",purchase,1.0,0 -561758,"Spec Ops The Line",play,2.8,0 -561758,"Team Fortress 2",purchase,1.0,0 -561758,"Team Fortress 2",play,2.8,0 -561758,"DayZ",purchase,1.0,0 -561758,"DayZ",play,2.8,0 -561758,"The Walking Dead",purchase,1.0,0 -561758,"The Walking Dead",play,2.7,0 -561758,"Sniper Elite",purchase,1.0,0 -561758,"Sniper Elite",play,1.8,0 -561758,"Day of Defeat",purchase,1.0,0 -561758,"Day of Defeat",play,1.7,0 -561758,"Section 8 Prejudice",purchase,1.0,0 -561758,"Section 8 Prejudice",play,1.7,0 -561758,"Call of Duty Modern Warfare 3",purchase,1.0,0 -561758,"Call of Duty Modern Warfare 3",play,1.6,0 -561758,"Zombie Panic Source",purchase,1.0,0 -561758,"Zombie Panic Source",play,1.5,0 -561758,"Dead Space",purchase,1.0,0 -561758,"Dead Space",play,1.4,0 -561758,"RIFT",purchase,1.0,0 -561758,"RIFT",play,1.4,0 -561758,"Shattered Horizon",purchase,1.0,0 -561758,"Shattered Horizon",play,1.4,0 -561758,"Hydrophobia Prophecy",purchase,1.0,0 -561758,"Hydrophobia Prophecy",play,1.4,0 -561758,"Darkest Hour Europe '44-'45",purchase,1.0,0 -561758,"Darkest Hour Europe '44-'45",play,0.9,0 -561758,"Counter-Strike Source",purchase,1.0,0 -561758,"Counter-Strike Source",play,0.8,0 -561758,"Homefront",purchase,1.0,0 -561758,"Homefront",play,0.8,0 -561758,"Zombie Driver",purchase,1.0,0 -561758,"Zombie Driver",play,0.7,0 -561758,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -561758,"Max Payne 2 The Fall of Max Payne",play,0.7,0 -561758,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -561758,"Call of Duty 4 Modern Warfare",play,0.7,0 -561758,"Serious Sam HD The Second Encounter",purchase,1.0,0 -561758,"Serious Sam HD The Second Encounter",play,0.6,0 -561758,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -561758,"Red Orchestra Ostfront 41-45",play,0.6,0 -561758,"Painkiller Resurrection",purchase,1.0,0 -561758,"Painkiller Resurrection",play,0.6,0 -561758,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -561758,"Medal of Honor(TM) Multiplayer",play,0.6,0 -561758,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -561758,"Call of Duty Advanced Warfare - Multiplayer",play,0.4,0 -561758,"Counter-Strike Global Offensive",purchase,1.0,0 -561758,"Counter-Strike Global Offensive",play,0.4,0 -561758,"Half-Life",purchase,1.0,0 -561758,"Half-Life",play,0.4,0 -561758,"Half-Life 2 Lost Coast",purchase,1.0,0 -561758,"Half-Life 2 Lost Coast",play,0.4,0 -561758,"Unreal Gold",purchase,1.0,0 -561758,"Unreal Gold",play,0.3,0 -561758,"Ignite",purchase,1.0,0 -561758,"Ignite",play,0.3,0 -561758,"Insurgency Modern Infantry Combat",purchase,1.0,0 -561758,"Insurgency Modern Infantry Combat",play,0.3,0 -561758,"PC Gamer",purchase,1.0,0 -561758,"PC Gamer",play,0.3,0 -561758,"Painkiller Overdose",purchase,1.0,0 -561758,"Painkiller Overdose",play,0.2,0 -561758,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -561758,"Call of Duty Black Ops II - Zombies",play,0.2,0 -561758,"No More Room in Hell",purchase,1.0,0 -561758,"Mare Nostrum",purchase,1.0,0 -561758,"Bloody Good Time",purchase,1.0,0 -561758,"Axel & Pixel",purchase,1.0,0 -561758,"Battlefield 2",purchase,1.0,0 -561758,"BioShock",purchase,1.0,0 -561758,"BioShock 2",purchase,1.0,0 -561758,"Borderlands 2",purchase,1.0,0 -561758,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -561758,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -561758,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -561758,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -561758,"Call of Duty Modern Warfare 2 - Resurgence Pack",purchase,1.0,0 -561758,"Call of Duty Modern Warfare 2 Stimulus Package",purchase,1.0,0 -561758,"CivCity Rome",purchase,1.0,0 -561758,"Counter-Strike",purchase,1.0,0 -561758,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -561758,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -561758,"Deathmatch Classic",purchase,1.0,0 -561758,"Eufloria HD",purchase,1.0,0 -561758,"Eufloria HD Original Soundtrack",purchase,1.0,0 -561758,"Freedom Force",purchase,1.0,0 -561758,"Freedom Force vs. the 3rd Reich",purchase,1.0,0 -561758,"Half-Life 2 Deathmatch",purchase,1.0,0 -561758,"Half-Life Blue Shift",purchase,1.0,0 -561758,"Half-Life Opposing Force",purchase,1.0,0 -561758,"Half-Life Deathmatch Source",purchase,1.0,0 -561758,"Heroes of Annihilated Empires",purchase,1.0,0 -561758,"Mafia",purchase,1.0,0 -561758,"Mafia II",purchase,1.0,0 -561758,"Medal of Honor Pre-Order",purchase,1.0,0 -561758,"NBA 2K10",purchase,1.0,0 -561758,"NBA 2K11",purchase,1.0,0 -561758,"Painkiller Black Edition",purchase,1.0,0 -561758,"Painkiller Hell & Damnation",purchase,1.0,0 -561758,"Painkiller Hell & Damnation Beta",purchase,1.0,0 -561758,"Railroad Tycoon 2 Platinum",purchase,1.0,0 -561758,"Railroad Tycoon 3",purchase,1.0,0 -561758,"Ricochet",purchase,1.0,0 -561758,"Shattered Union",purchase,1.0,0 -561758,"Sid Meier's Civilization III Complete",purchase,1.0,0 -561758,"Sid Meier's Civilization IV",purchase,1.0,0 -561758,"Sid Meier's Civilization IV",purchase,1.0,0 -561758,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -561758,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -561758,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -561758,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -561758,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -561758,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -561758,"Sid Meier's Civilization V",purchase,1.0,0 -561758,"Sid Meier's Railroads!",purchase,1.0,0 -561758,"Stronghold 2",purchase,1.0,0 -561758,"Stronghold Crusader Extreme HD",purchase,1.0,0 -561758,"Stronghold Crusader HD",purchase,1.0,0 -561758,"Stronghold HD",purchase,1.0,0 -561758,"Stronghold Legends",purchase,1.0,0 -561758,"Team Fortress Classic",purchase,1.0,0 -561758,"The Misadventures of P.B. Winterbottom",purchase,1.0,0 -561758,"Tribes Ascend - Steam Starter Pack",purchase,1.0,0 -561758,"Unreal II The Awakening",purchase,1.0,0 -561758,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -561758,"Unreal Tournament 2004",purchase,1.0,0 -561758,"Unreal Tournament Game of the Year Edition",purchase,1.0,0 -561758,"X-COM Apocalypse",purchase,1.0,0 -561758,"X-COM Enforcer",purchase,1.0,0 -561758,"X-COM Interceptor",purchase,1.0,0 -561758,"X-COM Terror from the Deep",purchase,1.0,0 -561758,"X-COM UFO Defense",purchase,1.0,0 -185259386,"Unturned",purchase,1.0,0 -185259386,"Unturned",play,11.3,0 -185259386,"DC Universe Online",purchase,1.0,0 -185259386,"DC Universe Online",play,3.1,0 -185259386,"Warface",purchase,1.0,0 -185259386,"Warface",play,2.0,0 -185259386,"Team Fortress 2",purchase,1.0,0 -185259386,"Team Fortress 2",play,1.8,0 -185259386,"Robocraft",purchase,1.0,0 -185259386,"Robocraft",play,0.9,0 -48626533,"Rocket League",purchase,1.0,0 -48626533,"Rocket League",play,460.0,0 -48626533,"Mount & Blade Warband",purchase,1.0,0 -48626533,"Mount & Blade Warband",play,134.0,0 -48626533,"Total War ROME II - Emperor Edition",purchase,1.0,0 -48626533,"Total War ROME II - Emperor Edition",play,93.0,0 -48626533,"Counter-Strike Global Offensive",purchase,1.0,0 -48626533,"Counter-Strike Global Offensive",play,69.0,0 -48626533,"Empire Total War",purchase,1.0,0 -48626533,"Empire Total War",play,67.0,0 -48626533,"Age of Empires II HD Edition",purchase,1.0,0 -48626533,"Age of Empires II HD Edition",play,51.0,0 -48626533,"Duck Game",purchase,1.0,0 -48626533,"Duck Game",play,43.0,0 -48626533,"Total War SHOGUN 2",purchase,1.0,0 -48626533,"Total War SHOGUN 2",play,37.0,0 -48626533,"Magic 2014 ",purchase,1.0,0 -48626533,"Magic 2014 ",play,17.9,0 -48626533,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -48626533,"Dragon Age Origins - Ultimate Edition",play,17.5,0 -48626533,"FTL Faster Than Light",purchase,1.0,0 -48626533,"FTL Faster Than Light",play,16.9,0 -48626533,"Star Wars - Battlefront II",purchase,1.0,0 -48626533,"Star Wars - Battlefront II",play,16.4,0 -48626533,"BioShock Infinite",purchase,1.0,0 -48626533,"BioShock Infinite",play,14.9,0 -48626533,"Cubemen 2",purchase,1.0,0 -48626533,"Cubemen 2",play,11.1,0 -48626533,"Fallout 4",purchase,1.0,0 -48626533,"Fallout 4",play,9.3,0 -48626533,"Team Fortress 2",purchase,1.0,0 -48626533,"Team Fortress 2",play,8.8,0 -48626533,"Robot Roller-Derby Disco Dodgeball",purchase,1.0,0 -48626533,"Robot Roller-Derby Disco Dodgeball",play,8.0,0 -48626533,"King Arthur's Gold",purchase,1.0,0 -48626533,"King Arthur's Gold",play,6.7,0 -48626533,"Magic The Gathering - Duels of the Planeswalkers 2013",purchase,1.0,0 -48626533,"Magic The Gathering - Duels of the Planeswalkers 2013",play,6.2,0 -48626533,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -48626533,"Red Faction Guerrilla Steam Edition",play,5.1,0 -48626533,"Left 4 Dead 2",purchase,1.0,0 -48626533,"Left 4 Dead 2",play,5.0,0 -48626533,"Fable - The Lost Chapters",purchase,1.0,0 -48626533,"Fable - The Lost Chapters",play,4.5,0 -48626533,"Chivalry Medieval Warfare",purchase,1.0,0 -48626533,"Chivalry Medieval Warfare",play,4.4,0 -48626533,"Sid Meier's Civilization V",purchase,1.0,0 -48626533,"Sid Meier's Civilization V",play,2.1,0 -48626533,"Orcs Must Die! 2",purchase,1.0,0 -48626533,"Orcs Must Die! 2",play,0.7,0 -48626533,"Dungeon Siege III",purchase,1.0,0 -48626533,"Dungeon Siege III",play,0.5,0 -48626533,"Anno 1404",purchase,1.0,0 -48626533,"Anno 1404",play,0.4,0 -48626533,"Nosgoth",purchase,1.0,0 -48626533,"Nosgoth",play,0.3,0 -48626533,"Magic The Gathering - Duels of the Planeswalkers",purchase,1.0,0 -48626533,"BioShock",purchase,1.0,0 -48626533,"Anno 1404 Venice",purchase,1.0,0 -48626533,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -48626533,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -48626533,"Garry's Mod",purchase,1.0,0 -48626533,"Patch testing for Chivalry",purchase,1.0,0 -48626533,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -48626533,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -48626533,"Stronghold 2",purchase,1.0,0 -48626533,"Stronghold Crusader Extreme HD",purchase,1.0,0 -48626533,"Stronghold Crusader HD",purchase,1.0,0 -48626533,"Stronghold HD",purchase,1.0,0 -48626533,"Stronghold Legends",purchase,1.0,0 -48626533,"Worms Reloaded",purchase,1.0,0 -177466116,"Star Wars - Battlefront II",purchase,1.0,0 -177466116,"Star Wars - Battlefront II",play,9.9,0 -177466116,"Fair Strike",purchase,1.0,0 -177466116,"Fair Strike",play,0.7,0 -177466116,"Gunship!",purchase,1.0,0 -177466116,"Gunship!",play,0.5,0 -177466116,"Company of Heroes",purchase,1.0,0 -177466116,"Company of Heroes",play,0.4,0 -177466116,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -177466116,"Rising Storm/Red Orchestra 2 Multiplayer",play,0.3,0 -177466116,"Company of Heroes (New Steam Version)",purchase,1.0,0 -177466116,"Company of Heroes (New Steam Version)",play,0.2,0 -177466116,"Faces of War",purchase,1.0,0 -177466116,"Faces of War",play,0.1,0 -177466116,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -177466116,"Company of Heroes Opposing Fronts",purchase,1.0,0 -177466116,"Company of Heroes Tales of Valor",purchase,1.0,0 -172386260,"Team Fortress 2",purchase,1.0,0 -172386260,"Team Fortress 2",play,0.4,0 -172386260,"Rust",purchase,1.0,0 -172386260,"Rust",play,0.3,0 -172386260,"Gear Up",purchase,1.0,0 -172386260,"Goat Simulator",purchase,1.0,0 -172386260,"Toribash",purchase,1.0,0 -278280460,"Dota 2",purchase,1.0,0 -278280460,"Dota 2",play,2.0,0 -199831134,"Unturned",purchase,1.0,0 -199831134,"Unturned",play,0.2,0 -109673465,"Team Fortress 2",purchase,1.0,0 -109673465,"Team Fortress 2",play,6.2,0 -108598510,"Metro 2033",purchase,1.0,0 -108598510,"Metro 2033",play,7.3,0 -39980669,"Counter-Strike Source",purchase,1.0,0 -39980669,"Counter-Strike Source",play,5.4,0 -39980669,"Day of Defeat Source",purchase,1.0,0 -39980669,"Half-Life 2 Deathmatch",purchase,1.0,0 -39980669,"Half-Life 2 Lost Coast",purchase,1.0,0 -143235127,"Garry's Mod",purchase,1.0,0 -143235127,"Garry's Mod",play,186.0,0 -143235127,"PAYDAY 2",purchase,1.0,0 -143235127,"PAYDAY 2",play,3.0,0 -143235127,"Grand Theft Auto IV",purchase,1.0,0 -143235127,"Grand Theft Auto IV",play,3.0,0 -143235127,"Left 4 Dead 2",purchase,1.0,0 -143235127,"Left 4 Dead 2",play,2.2,0 -143235127,"Rust",purchase,1.0,0 -143235127,"Rust",play,2.1,0 -143235127,"Toribash",purchase,1.0,0 -143235127,"Toribash",play,1.7,0 -143235127,"Counter-Strike Source",purchase,1.0,0 -143235127,"Counter-Strike Source",play,1.2,0 -143235127,"Mount Your Friends",purchase,1.0,0 -143235127,"Mount Your Friends",play,1.1,0 -143235127,"Saints Row IV",purchase,1.0,0 -143235127,"Saints Row IV",play,0.8,0 -143235127,"Goat Simulator",purchase,1.0,0 -143235127,"Goat Simulator",play,0.8,0 -143235127,"Double Action Boogaloo",purchase,1.0,0 -143235127,"Double Action Boogaloo",play,0.6,0 -143235127,"Dizzel",purchase,1.0,0 -143235127,"Dizzel",play,0.3,0 -143235127,"Team Fortress 2",purchase,1.0,0 -143235127,"Team Fortress 2",play,0.3,0 -143235127,"Sniper Elite 3",purchase,1.0,0 -143235127,"Sniper Elite 3",play,0.1,0 -143235127,"Moonbase Alpha",purchase,1.0,0 -143235127,"Color Symphony",purchase,1.0,0 -143235127,"Dead Rising 3",purchase,1.0,0 -143235127,"The Elder Scrolls V Skyrim",purchase,1.0,0 -143235127,"Dead Rising 3 DLC1",purchase,1.0,0 -143235127,"Dead Rising 3 DLC2",purchase,1.0,0 -143235127,"Dead Rising 3 DLC3",purchase,1.0,0 -143235127,"Dead Rising 3 DLC4",purchase,1.0,0 -143235127,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -20626832,"Counter-Strike",purchase,1.0,0 -20626832,"Counter-Strike",play,34.0,0 -20626832,"Counter-Strike Condition Zero",purchase,1.0,0 -20626832,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -20626832,"Counter-Strike Source",purchase,1.0,0 -20626832,"Half-Life 2",purchase,1.0,0 -20626832,"Half-Life 2 Deathmatch",purchase,1.0,0 -20626832,"Half-Life 2 Lost Coast",purchase,1.0,0 -20626832,"Half-Life Source",purchase,1.0,0 -20626832,"Half-Life Deathmatch Source",purchase,1.0,0 -257177611,"Dota 2",purchase,1.0,0 -257177611,"Dota 2",play,14.2,0 -170568173,"Dota 2",purchase,1.0,0 -170568173,"Dota 2",play,570.0,0 -204061484,"Dota 2",purchase,1.0,0 -204061484,"Dota 2",play,391.0,0 -203101149,"Counter-Strike Global Offensive",purchase,1.0,0 -203101149,"Counter-Strike Global Offensive",play,7.1,0 -203101149,"Outlast",purchase,1.0,0 -203101149,"Outlast",play,0.4,0 -203101149,"Clicker Heroes",purchase,1.0,0 -203101149,"Clicker Heroes",play,0.2,0 -203101149,"Team Fortress 2",purchase,1.0,0 -203101149,"Team Fortress 2",play,0.2,0 -203101149,"Teeworlds",purchase,1.0,0 -203101149,"Disney Infinity 3.0 Play Without Limits",purchase,1.0,0 -203101149,"No More Room in Hell",purchase,1.0,0 -203101149,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -203101149,"Spooky's House of Jump Scares",purchase,1.0,0 -203101149,"The Settlers Online",purchase,1.0,0 -203101149,"Unturned",purchase,1.0,0 -203101149,"War Inc. Battlezone",purchase,1.0,0 -159484357,"War Thunder",purchase,1.0,0 -159484357,"War Thunder",play,95.0,0 -159484357,"Trove",purchase,1.0,0 -159484357,"Trove",play,84.0,0 -159484357,"Neverwinter",purchase,1.0,0 -159484357,"Neverwinter",play,68.0,0 -159484357,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -159484357,"Tom Clancy's Ghost Recon Phantoms - NA",play,42.0,0 -159484357,"Strike Suit Infinity",purchase,1.0,0 -159484357,"Strike Suit Infinity",play,25.0,0 -159484357,"Left 4 Dead 2",purchase,1.0,0 -159484357,"Left 4 Dead 2",play,19.3,0 -159484357,"Sniper Elite V2",purchase,1.0,0 -159484357,"Sniper Elite V2",play,13.8,0 -159484357,"Warframe",purchase,1.0,0 -159484357,"Warframe",play,11.9,0 -159484357,"AdVenture Capitalist",purchase,1.0,0 -159484357,"AdVenture Capitalist",play,11.1,0 -159484357,"Strike Suit Zero",purchase,1.0,0 -159484357,"Strike Suit Zero",play,10.4,0 -159484357,"DayZ",purchase,1.0,0 -159484357,"DayZ",play,6.4,0 -159484357,"Blacklight Retribution",purchase,1.0,0 -159484357,"Blacklight Retribution",play,6.0,0 -159484357,"Chivalry Medieval Warfare",purchase,1.0,0 -159484357,"Chivalry Medieval Warfare",play,4.6,0 -159484357,"sZone-Online",purchase,1.0,0 -159484357,"sZone-Online",play,4.0,0 -159484357,"Metro 2033",purchase,1.0,0 -159484357,"Metro 2033",play,3.9,0 -159484357,"Arma 2",purchase,1.0,0 -159484357,"Arma 2",play,3.5,0 -159484357,"Codename CURE",purchase,1.0,0 -159484357,"Codename CURE",play,1.6,0 -159484357,"Shadow of Kingdoms",purchase,1.0,0 -159484357,"Shadow of Kingdoms",play,1.3,0 -159484357,"Heroes & Generals",purchase,1.0,0 -159484357,"Heroes & Generals",play,0.6,0 -159484357,"HAWKEN",purchase,1.0,0 -159484357,"HAWKEN",play,0.6,0 -159484357,"PAYDAY 2",purchase,1.0,0 -159484357,"PAYDAY 2",play,0.5,0 -159484357,"Warface",purchase,1.0,0 -159484357,"Warface",play,0.4,0 -159484357,"DCS World",purchase,1.0,0 -159484357,"EVE Online",purchase,1.0,0 -159484357,"Patch testing for Chivalry",purchase,1.0,0 -159484357,"The Lord of the Rings Online",purchase,1.0,0 -159484357,"Unturned",purchase,1.0,0 -134337915,"Order of War",purchase,1.0,0 -134337915,"Order of War",play,1.5,0 -254708017,"Unturned",purchase,1.0,0 -254708017,"Unturned",play,0.6,0 -241514787,"Dota 2",purchase,1.0,0 -241514787,"Dota 2",play,1.9,0 -241514787,"Aura Kingdom",purchase,1.0,0 -241514787,"GunZ 2 The Second Duel",purchase,1.0,0 -241514787,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -114332337,"Dota 2",purchase,1.0,0 -114332337,"Dota 2",play,0.9,0 -186504598,"Dota 2",purchase,1.0,0 -186504598,"Dota 2",play,80.0,0 -186504598,"Unturned",purchase,1.0,0 -178256532,"Dota 2",purchase,1.0,0 -178256532,"Dota 2",play,41.0,0 -35489574,"Half-Life",purchase,1.0,0 -35489574,"Half-Life",play,1.5,0 -35489574,"Half-Life 2 Deathmatch",purchase,1.0,0 -35489574,"Half-Life 2 Lost Coast",purchase,1.0,0 -35489574,"Half-Life Blue Shift",purchase,1.0,0 -35489574,"Half-Life Opposing Force",purchase,1.0,0 -35489574,"Team Fortress Classic",purchase,1.0,0 -158576100,"Counter-Strike Global Offensive",purchase,1.0,0 -158576100,"Counter-Strike Global Offensive",play,1230.0,0 -158576100,"Tales from the Borderlands",purchase,1.0,0 -158576100,"Tales from the Borderlands",play,16.0,0 -158576100,"The Walking Dead",purchase,1.0,0 -158576100,"The Walking Dead",play,13.0,0 -158576100,"The Walking Dead Season Two",purchase,1.0,0 -158576100,"The Walking Dead Season Two",play,5.3,0 -158576100,"FEZ",purchase,1.0,0 -158576100,"FEZ",play,1.8,0 -158576100,"Euro Truck Simulator 2",purchase,1.0,0 -86689730,"Portal",purchase,1.0,0 -86689730,"Portal",play,6.0,0 -86689730,"Empire Total War",purchase,1.0,0 -86689730,"Empire Total War",play,2.7,0 -86689730,"Portal 2",purchase,1.0,0 -187642265,"Dota 2",purchase,1.0,0 -187642265,"Dota 2",play,37.0,0 -187642265,"GunZ 2 The Second Duel",purchase,1.0,0 -108593099,"Serious Sam 3 BFE",purchase,1.0,0 -108593099,"Serious Sam 3 BFE",play,36.0,0 -108593099,"Serious Sam Double D XXL",purchase,1.0,0 -108593099,"Serious Sam Double D XXL",play,0.3,0 -196256646,"Dota 2",purchase,1.0,0 -196256646,"Dota 2",play,13.0,0 -196256646,"theHunter",purchase,1.0,0 -196256646,"theHunter",play,1.1,0 -203450693,"Dota 2",purchase,1.0,0 -203450693,"Dota 2",play,3.4,0 -156877824,"Professional Farmer 2014",purchase,1.0,0 -182771524,"Unturned",purchase,1.0,0 -182771524,"Unturned",play,86.0,0 -182771524,"MicroVolts Surge",purchase,1.0,0 -182771524,"MicroVolts Surge",play,77.0,0 -182771524,"Euro Truck Simulator 2",purchase,1.0,0 -182771524,"Euro Truck Simulator 2",play,58.0,0 -182771524,"Trove",purchase,1.0,0 -182771524,"Trove",play,30.0,0 -182771524,"Firefall",purchase,1.0,0 -182771524,"Firefall",play,15.0,0 -182771524,"RIFT",purchase,1.0,0 -182771524,"RIFT",play,13.5,0 -182771524,"Aftermath",purchase,1.0,0 -182771524,"Aftermath",play,2.3,0 -182771524,"RaceRoom Racing Experience ",purchase,1.0,0 -182771524,"RaceRoom Racing Experience ",play,1.4,0 -182771524,"Counter-Strike Nexon Zombies",purchase,1.0,0 -127072755,"Counter-Strike Global Offensive",purchase,1.0,0 -127072755,"Counter-Strike Global Offensive",play,871.0,0 -127072755,"DayZ",purchase,1.0,0 -127072755,"DayZ",play,228.0,0 -127072755,"Rust",purchase,1.0,0 -127072755,"Rust",play,118.0,0 -127072755,"Counter-Strike Source",purchase,1.0,0 -127072755,"Counter-Strike Source",play,49.0,0 -127072755,"Arma 3",purchase,1.0,0 -127072755,"Arma 3",play,30.0,0 -127072755,"Half-Life 2 Deathmatch",purchase,1.0,0 -127072755,"Half-Life 2 Deathmatch",play,24.0,0 -127072755,"Battlefield Bad Company 2",purchase,1.0,0 -127072755,"Battlefield Bad Company 2",play,19.9,0 -127072755,"Team Fortress 2",purchase,1.0,0 -127072755,"Team Fortress 2",play,17.8,0 -127072755,"The Elder Scrolls V Skyrim",purchase,1.0,0 -127072755,"The Elder Scrolls V Skyrim",play,17.5,0 -127072755,"H1Z1",purchase,1.0,0 -127072755,"H1Z1",play,15.6,0 -127072755,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -127072755,"Rising Storm/Red Orchestra 2 Multiplayer",play,15.4,0 -127072755,"Garry's Mod",purchase,1.0,0 -127072755,"Garry's Mod",play,11.7,0 -127072755,"Fallout 3",purchase,1.0,0 -127072755,"Fallout 3",play,11.0,0 -127072755,"Heroes & Generals",purchase,1.0,0 -127072755,"Heroes & Generals",play,10.5,0 -127072755,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -127072755,"Call of Duty Black Ops - Multiplayer",play,10.4,0 -127072755,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -127072755,"Dark Souls Prepare to Die Edition",play,9.7,0 -127072755,"The Forest",purchase,1.0,0 -127072755,"The Forest",play,6.8,0 -127072755,"Insurgency",purchase,1.0,0 -127072755,"Insurgency",play,6.6,0 -127072755,"Rocket League",purchase,1.0,0 -127072755,"Rocket League",play,6.3,0 -127072755,"Borderlands",purchase,1.0,0 -127072755,"Borderlands",play,6.0,0 -127072755,"Grand Theft Auto IV",purchase,1.0,0 -127072755,"Grand Theft Auto IV",play,5.4,0 -127072755,"Age of Empires II HD Edition",purchase,1.0,0 -127072755,"Age of Empires II HD Edition",play,5.2,0 -127072755,"The Vanishing of Ethan Carter",purchase,1.0,0 -127072755,"The Vanishing of Ethan Carter",play,5.1,0 -127072755,"Quake Live",purchase,1.0,0 -127072755,"Quake Live",play,4.0,0 -127072755,"Saints Row IV",purchase,1.0,0 -127072755,"Saints Row IV",play,3.6,0 -127072755,"Star Wars - Battlefront II",purchase,1.0,0 -127072755,"Star Wars - Battlefront II",play,2.7,0 -127072755,"Grand Theft Auto San Andreas",purchase,1.0,0 -127072755,"Grand Theft Auto San Andreas",play,2.7,0 -127072755,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -127072755,"Call of Duty 4 Modern Warfare",play,2.7,0 -127072755,"Rome Total War",purchase,1.0,0 -127072755,"Rome Total War",play,2.4,0 -127072755,"POSTAL 2",purchase,1.0,0 -127072755,"POSTAL 2",play,2.3,0 -127072755,"Mount & Blade Warband",purchase,1.0,0 -127072755,"Mount & Blade Warband",play,2.2,0 -127072755,"Unturned",purchase,1.0,0 -127072755,"Unturned",play,2.0,0 -127072755,"Counter-Strike",purchase,1.0,0 -127072755,"Counter-Strike",play,1.8,0 -127072755,"Terraria",purchase,1.0,0 -127072755,"Terraria",play,1.8,0 -127072755,"Space Engineers",purchase,1.0,0 -127072755,"Space Engineers",play,1.3,0 -127072755,"Arma 2 Operation Arrowhead",purchase,1.0,0 -127072755,"Arma 2 Operation Arrowhead",play,1.2,0 -127072755,"Survival Postapocalypse Now",purchase,1.0,0 -127072755,"Survival Postapocalypse Now",play,1.2,0 -127072755,"Super Meat Boy",purchase,1.0,0 -127072755,"Super Meat Boy",play,1.1,0 -127072755,"Warface",purchase,1.0,0 -127072755,"Warface",play,1.0,0 -127072755,"Nether",purchase,1.0,0 -127072755,"Nether",play,1.0,0 -127072755,"Slender The Arrival",purchase,1.0,0 -127072755,"Slender The Arrival",play,0.9,0 -127072755,"The Long Dark",purchase,1.0,0 -127072755,"The Long Dark",play,0.9,0 -127072755,"APB Reloaded",purchase,1.0,0 -127072755,"APB Reloaded",play,0.9,0 -127072755,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -127072755,"Call of Duty Modern Warfare 3 - Multiplayer",play,0.8,0 -127072755,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -127072755,"Just Cause 2 Multiplayer Mod",play,0.7,0 -127072755,"State of Decay",purchase,1.0,0 -127072755,"State of Decay",play,0.7,0 -127072755,"Call of Duty Black Ops",purchase,1.0,0 -127072755,"Call of Duty Black Ops",play,0.6,0 -127072755,"Sniper Elite V2",purchase,1.0,0 -127072755,"Sniper Elite V2",play,0.5,0 -127072755,"Cry of Fear",purchase,1.0,0 -127072755,"Cry of Fear",play,0.5,0 -127072755,"Verdun",purchase,1.0,0 -127072755,"Verdun",play,0.4,0 -127072755,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -127072755,"Call of Duty Ghosts - Multiplayer",play,0.4,0 -127072755,"FlatOut",purchase,1.0,0 -127072755,"FlatOut",play,0.3,0 -127072755,"Mortal Kombat Komplete Edition",purchase,1.0,0 -127072755,"Mortal Kombat Komplete Edition",play,0.3,0 -127072755,"Five Nights at Freddy's",purchase,1.0,0 -127072755,"Five Nights at Freddy's",play,0.3,0 -127072755,"Dirty Bomb",purchase,1.0,0 -127072755,"Dirty Bomb",play,0.3,0 -127072755,"Age of Empires III Complete Collection",purchase,1.0,0 -127072755,"Age of Empires III Complete Collection",play,0.2,0 -127072755,"Ace of Spades",purchase,1.0,0 -127072755,"Ace of Spades",play,0.2,0 -127072755,"America's Army 3",purchase,1.0,0 -127072755,"America's Army 3",play,0.1,0 -127072755,"Half-Life 2",purchase,1.0,0 -127072755,"Half-Life 2",play,0.1,0 -127072755,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -127072755,"Shower With Your Dad Simulator 2015 Do You Still Shower With Your Dad",purchase,1.0,0 -127072755,"Survarium",purchase,1.0,0 -127072755,"Arma 2 DayZ Mod",purchase,1.0,0 -127072755,"Fallout New Vegas",purchase,1.0,0 -127072755,"Age of Empires II HD The Forgotten",purchase,1.0,0 -127072755,"Arma 2",purchase,1.0,0 -127072755,"Arma 3 Zeus",purchase,1.0,0 -127072755,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -127072755,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -127072755,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -127072755,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -127072755,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -127072755,"Call of Duty Ghosts",purchase,1.0,0 -127072755,"Call of Duty Modern Warfare 3",purchase,1.0,0 -127072755,"Counter-Strike Condition Zero",purchase,1.0,0 -127072755,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -127072755,"DARK SOULS II",purchase,1.0,0 -127072755,"FlatOut 2",purchase,1.0,0 -127072755,"Grand Theft Auto San Andreas",purchase,1.0,0 -127072755,"H1Z1 Test Server",purchase,1.0,0 -127072755,"Half-Life",purchase,1.0,0 -127072755,"Half-Life 2 Episode One",purchase,1.0,0 -127072755,"Half-Life 2 Episode Two",purchase,1.0,0 -127072755,"Half-Life 2 Lost Coast",purchase,1.0,0 -127072755,"Half-Life Blue Shift",purchase,1.0,0 -127072755,"Half-Life Opposing Force",purchase,1.0,0 -127072755,"Half-Life Source",purchase,1.0,0 -127072755,"Half-Life Deathmatch Source",purchase,1.0,0 -127072755,"Just Cause 2",purchase,1.0,0 -127072755,"PAYDAY The Heist",purchase,1.0,0 -127072755,"Rome Total War - Alexander",purchase,1.0,0 -127072755,"Team Fortress Classic",purchase,1.0,0 -127072755,"theHunter",purchase,1.0,0 -127072755,"The Lord of the Rings Online",purchase,1.0,0 -127072755,"The Vanishing of Ethan Carter Redux",purchase,1.0,0 -127072755,"War Thunder",purchase,1.0,0 -127072755,"World of Guns Gun Disassembly",purchase,1.0,0 -117695149,"Left 4 Dead 2",purchase,1.0,0 -117695149,"Left 4 Dead 2",play,2.4,0 -117695149,"Dungeon Defenders",purchase,1.0,0 -117695149,"Dungeon Defenders",play,2.1,0 -117695149,"Dead Island",purchase,1.0,0 -117695149,"Dead Island",play,0.5,0 -117695149,"Left 4 Dead",purchase,1.0,0 -117695149,"Left 4 Dead",play,0.1,0 -92390715,"Football Manager 2012",purchase,1.0,0 -92390715,"Football Manager 2012",play,816.0,0 -92390715,"Age of Empires II HD Edition",purchase,1.0,0 -178761785,"Dota 2",purchase,1.0,0 -178761785,"Dota 2",play,18.6,0 -172941662,"Dota 2",purchase,1.0,0 -172941662,"Dota 2",play,272.0,0 -172941662,"Unturned",purchase,1.0,0 -172941662,"Unturned",play,4.0,0 -172941662,"Nosgoth",purchase,1.0,0 -73435656,"Portal",purchase,1.0,0 -239735733,"Dota 2",purchase,1.0,0 -239735733,"Dota 2",play,177.0,0 -32398422,"Half-Life",purchase,1.0,0 -32398422,"Half-Life",play,4.9,0 -32398422,"Half-Life Opposing Force",purchase,1.0,0 -32398422,"Half-Life Opposing Force",play,0.5,0 -32398422,"Team Fortress Classic",purchase,1.0,0 -32398422,"Team Fortress Classic",play,0.2,0 -32398422,"Half-Life Blue Shift",purchase,1.0,0 -23154676,"Counter-Strike",purchase,1.0,0 -23154676,"Counter-Strike",play,2297.0,0 -23154676,"Counter-Strike Global Offensive",purchase,1.0,0 -23154676,"Counter-Strike Global Offensive",play,876.0,0 -23154676,"Counter-Strike Source",purchase,1.0,0 -23154676,"Counter-Strike Source",play,12.3,0 -23154676,"Team Fortress 2",purchase,1.0,0 -23154676,"Team Fortress 2",play,2.1,0 -23154676,"Borderlands",purchase,1.0,0 -23154676,"Borderlands",play,1.2,0 -23154676,"Portal 2",purchase,1.0,0 -23154676,"Portal 2",play,0.5,0 -23154676,"Magicka",purchase,1.0,0 -23154676,"Magicka",play,0.4,0 -23154676,"Day of Defeat Source",purchase,1.0,0 -23154676,"Day of Defeat Source",play,0.2,0 -23154676,"Counter-Strike Condition Zero",purchase,1.0,0 -23154676,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -23154676,"Day of Defeat",purchase,1.0,0 -23154676,"Deathmatch Classic",purchase,1.0,0 -23154676,"Half-Life 2 Deathmatch",purchase,1.0,0 -23154676,"Half-Life 2 Lost Coast",purchase,1.0,0 -23154676,"Just Cause 2",purchase,1.0,0 -23154676,"Ricochet",purchase,1.0,0 -23046596,"Counter-Strike Source",purchase,1.0,0 -23046596,"Half-Life 2",purchase,1.0,0 -23046596,"Half-Life 2 Deathmatch",purchase,1.0,0 -23046596,"Half-Life 2 Lost Coast",purchase,1.0,0 -23046596,"Half-Life Source",purchase,1.0,0 -23046596,"Half-Life Deathmatch Source",purchase,1.0,0 -205641661,"Dota 2",purchase,1.0,0 -205641661,"Dota 2",play,9.5,0 -205641661,"Counter-Strike Nexon Zombies",purchase,1.0,0 -205641661,"Dragon Nest Europe",purchase,1.0,0 -205641661,"No More Room in Hell",purchase,1.0,0 -205641661,"Robocraft",purchase,1.0,0 -205641661,"Stronghold Kingdoms",purchase,1.0,0 -205641661,"Unturned",purchase,1.0,0 -210623150,"No More Room in Hell",purchase,1.0,0 -199662019,"Team Fortress 2",purchase,1.0,0 -199662019,"Team Fortress 2",play,59.0,0 -199662019,"Warframe",purchase,1.0,0 -199662019,"Warframe",play,0.2,0 -199662019,"Heroes & Generals",purchase,1.0,0 -199662019,"Path of Exile",purchase,1.0,0 -61068356,"Saints Row 2",purchase,1.0,0 -112134832,"Dota 2",purchase,1.0,0 -112134832,"Dota 2",play,342.0,0 -112134832,"GunZ 2 The Second Duel",purchase,1.0,0 -112134832,"Unturned",purchase,1.0,0 -222433695,"Transformice",purchase,1.0,0 -249968452,"Dota 2",purchase,1.0,0 -249968452,"Dota 2",play,2.7,0 -249968452,"Rise of Incarnates",purchase,1.0,0 -58223726,"Counter-Strike",purchase,1.0,0 -58223726,"Counter-Strike",play,2857.0,0 -58223726,"Counter-Strike Global Offensive",purchase,1.0,0 -58223726,"Counter-Strike Global Offensive",play,76.0,0 -58223726,"Counter-Strike Condition Zero",purchase,1.0,0 -58223726,"Counter-Strike Condition Zero",play,41.0,0 -58223726,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -58223726,"Tactical Intervention",purchase,1.0,0 -194325357,"Enclave",purchase,1.0,0 -159416133,"Left 4 Dead 2",purchase,1.0,0 -197894945,"Velvet Sundown",purchase,1.0,0 -197894945,"Velvet Sundown",play,1.2,0 -173846745,"Dota 2",purchase,1.0,0 -173846745,"Dota 2",play,2672.0,0 -173846745,"Team Fortress 2",purchase,1.0,0 -173846745,"Team Fortress 2",play,18.4,0 -173846745,"FreeStyle2 Street Basketball",purchase,1.0,0 -173846745,"FreeStyle2 Street Basketball",play,0.7,0 -173846745,"GunZ 2 The Second Duel",purchase,1.0,0 -173846745,"GunZ 2 The Second Duel",play,0.3,0 -173846745,"War Thunder",purchase,1.0,0 -180662971,"Dota 2",purchase,1.0,0 -180662971,"Dota 2",play,2.0,0 -166008897,"Dota 2",purchase,1.0,0 -166008897,"Dota 2",play,0.7,0 -47284807,"Saints Row 2",purchase,1.0,0 -47284807,"Saints Row 2",play,34.0,0 -47284807,"Left 4 Dead",purchase,1.0,0 -47284807,"Left 4 Dead",play,8.5,0 -245681889,"Counter-Strike Global Offensive",purchase,1.0,0 -245681889,"Counter-Strike Global Offensive",play,141.0,0 -245681889,"The Settlers Online",purchase,1.0,0 -245681889,"The Settlers Online",play,2.1,0 -245681889,"Clicker Heroes",purchase,1.0,0 -245681889,"Clicker Heroes",play,1.1,0 -245681889,"Realm of the Mad God",purchase,1.0,0 -245681889,"Realm of the Mad God",play,0.7,0 -245681889,"Soccer Manager 2016",purchase,1.0,0 -245681889,"Soccer Manager 2016",play,0.3,0 -245681889,"RPG MO",purchase,1.0,0 -245681889,"RPG MO",play,0.2,0 -245681889,"AdVenture Capitalist",purchase,1.0,0 -245681889,"AdVenture Capitalist",play,0.2,0 -245681889,"Teeworlds",purchase,1.0,0 -245681889,"Teeworlds",play,0.1,0 -245681889,"Famaze",purchase,1.0,0 -245681889,"Relic Hunters Zero",purchase,1.0,0 -245681889,"BLOCKADE 3D",purchase,1.0,0 -245681889,"World of Guns Gun Disassembly",purchase,1.0,0 -245681889,"Curse of Mermos",purchase,1.0,0 -245681889,"Time Clickers",purchase,1.0,0 -245681889,"Tap Tap Infinity",purchase,1.0,0 -245681889,"Soccer Manager 2015",purchase,1.0,0 -245681889,"Comedy Quest",purchase,1.0,0 -245681889,"Among Ripples",purchase,1.0,0 -245681889,"Heroes of SoulCraft",purchase,1.0,0 -245681889,"Super Crate Box",purchase,1.0,0 -245681889,"World of Soccer online",purchase,1.0,0 -245681889,"Battle for Blood - Epic battles within 30 seconds!",purchase,1.0,0 -245681889,"Heroes of Scene",purchase,1.0,0 -245681889,"AirMech",purchase,1.0,0 -245681889,"APB Reloaded",purchase,1.0,0 -245681889,"Brick-Force",purchase,1.0,0 -245681889,"Counter-Strike Nexon Zombies",purchase,1.0,0 -245681889,"Dragons and Titans",purchase,1.0,0 -245681889,"Fishing Planet",purchase,1.0,0 -245681889,"Football Superstars",purchase,1.0,0 -245681889,"FreeStyle2 Street Basketball",purchase,1.0,0 -245681889,"Marvel Heroes 2015",purchase,1.0,0 -245681889,"Pink Hour",purchase,1.0,0 -245681889,"Trove",purchase,1.0,0 -245681889,"UberStrike",purchase,1.0,0 -245681889,"Unturned",purchase,1.0,0 -245681889,"Villagers and Heroes",purchase,1.0,0 -245681889,"Viridi",purchase,1.0,0 -53986832,"Counter-Strike",purchase,1.0,0 -53986832,"Counter-Strike",play,2.8,0 -53986832,"Counter-Strike Condition Zero",purchase,1.0,0 -53986832,"Counter-Strike Condition Zero",play,1.8,0 -53986832,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -53986832,"Counter-Strike Condition Zero Deleted Scenes",play,1.2,0 -53986832,"Deathmatch Classic",purchase,1.0,0 -53986832,"Ricochet",purchase,1.0,0 -53986832,"Day of Defeat",purchase,1.0,0 -142040835,"Dota 2",purchase,1.0,0 -142040835,"Dota 2",play,0.3,0 -296345822,"Dota 2",purchase,1.0,0 -296345822,"Dota 2",play,0.9,0 -165065938,"Garry's Mod",purchase,1.0,0 -165065938,"Garry's Mod",play,14.8,0 -165065938,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -165065938,"Just Cause 2 Multiplayer Mod",play,8.5,0 -165065938,"Monday Night Combat",purchase,1.0,0 -165065938,"Monday Night Combat",play,3.4,0 -165065938,"Watch_Dogs",purchase,1.0,0 -165065938,"Watch_Dogs",play,2.0,0 -165065938,"Far Cry 3",purchase,1.0,0 -165065938,"Far Cry 3",play,1.8,0 -165065938,"FootLOL Epic Fail League",purchase,1.0,0 -165065938,"FootLOL Epic Fail League",play,1.3,0 -165065938,"Just Cause 2",purchase,1.0,0 -165065938,"Just Cause",purchase,1.0,0 -193097653,"Unturned",purchase,1.0,0 -193097653,"Unturned",play,21.0,0 -114789855,"Football Manager 2013",purchase,1.0,0 -114789855,"Football Manager 2013",play,14.5,0 -138618447,"Dota 2",purchase,1.0,0 -138618447,"Dota 2",play,1.4,0 -163162333,"Arma 3",purchase,1.0,0 -163162333,"Arma 3",play,825.0,0 -163162333,"Euro Truck Simulator 2",purchase,1.0,0 -163162333,"Euro Truck Simulator 2",play,178.0,0 -163162333,"Unturned",purchase,1.0,0 -163162333,"Unturned",play,115.0,0 -163162333,"Garry's Mod",purchase,1.0,0 -163162333,"Garry's Mod",play,111.0,0 -163162333,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -163162333,"Call of Duty Modern Warfare 3 - Multiplayer",play,70.0,0 -163162333,"Robocraft",purchase,1.0,0 -163162333,"Robocraft",play,39.0,0 -163162333,"Call of Duty Modern Warfare 3",purchase,1.0,0 -163162333,"Call of Duty Modern Warfare 3",play,34.0,0 -163162333,"DayZ",purchase,1.0,0 -163162333,"DayZ",play,31.0,0 -163162333,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -163162333,"Call of Duty Modern Warfare 2 - Multiplayer",play,22.0,0 -163162333,"Call of Duty Modern Warfare 2",purchase,1.0,0 -163162333,"Call of Duty Modern Warfare 2",play,20.0,0 -163162333,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -163162333,"Call of Duty Black Ops - Multiplayer",play,16.4,0 -163162333,"Tom Clancy's Rainbow Six Vegas 2",purchase,1.0,0 -163162333,"Tom Clancy's Rainbow Six Vegas 2",play,15.6,0 -163162333,"Saints Row The Third",purchase,1.0,0 -163162333,"Saints Row The Third",play,14.3,0 -163162333,"Sniper Ghost Warrior",purchase,1.0,0 -163162333,"Sniper Ghost Warrior",play,9.1,0 -163162333,"BattleBlock Theater",purchase,1.0,0 -163162333,"BattleBlock Theater",play,8.1,0 -163162333,"Chivalry Medieval Warfare",purchase,1.0,0 -163162333,"Chivalry Medieval Warfare",play,5.2,0 -163162333,"Far Cry 2",purchase,1.0,0 -163162333,"Far Cry 2",play,3.9,0 -163162333,"Tomb Raider",purchase,1.0,0 -163162333,"Tomb Raider",play,3.6,0 -163162333,"Hatred",purchase,1.0,0 -163162333,"Hatred",play,3.5,0 -163162333,"Terraria",purchase,1.0,0 -163162333,"Terraria",play,2.6,0 -163162333,"Call of Duty Black Ops",purchase,1.0,0 -163162333,"Call of Duty Black Ops",play,2.6,0 -163162333,"Warframe",purchase,1.0,0 -163162333,"Warframe",play,2.0,0 -163162333,"Dying Light",purchase,1.0,0 -163162333,"Dying Light",play,1.9,0 -163162333,"PlanetSide 2",purchase,1.0,0 -163162333,"PlanetSide 2",play,1.4,0 -163162333,"Dirty Bomb",purchase,1.0,0 -163162333,"Dirty Bomb",play,1.0,0 -163162333,"Reign Of Kings",purchase,1.0,0 -163162333,"Reign Of Kings",play,1.0,0 -163162333,"Survarium",purchase,1.0,0 -163162333,"Survarium",play,0.8,0 -163162333,"Trove",purchase,1.0,0 -163162333,"Trove",play,0.7,0 -163162333,"Patch testing for Chivalry",purchase,1.0,0 -163162333,"Patch testing for Chivalry",play,0.7,0 -163162333,"PAYDAY The Heist",purchase,1.0,0 -163162333,"PAYDAY The Heist",play,0.5,0 -163162333,"World of Guns Gun Disassembly",purchase,1.0,0 -163162333,"World of Guns Gun Disassembly",play,0.3,0 -163162333,"Realm of the Mad God",purchase,1.0,0 -163162333,"Realm of the Mad God",play,0.2,0 -163162333,"APB Reloaded",purchase,1.0,0 -163162333,"APB Reloaded",play,0.2,0 -163162333,"theHunter",purchase,1.0,0 -163162333,"theHunter",play,0.2,0 -163162333,"Warface",purchase,1.0,0 -163162333,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -163162333,"Arma 3 Helicopters",purchase,1.0,0 -163162333,"Arma 3 Karts",purchase,1.0,0 -163162333,"Arma 3 Marksmen",purchase,1.0,0 -163162333,"Arma 3 Zeus",purchase,1.0,0 -163162333,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -163162333,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -163162333,"Heroes & Generals",purchase,1.0,0 -163162333,"Just Cause 2",purchase,1.0,0 -163162333,"Real Horror Stories Ultimate Edition",purchase,1.0,0 -163162333,"Tap Tap Infinity",purchase,1.0,0 -163162333,"War of the Roses",purchase,1.0,0 -163162333,"War Thunder",purchase,1.0,0 -115558697,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -115558697,"The Secret of Monkey Island Special Edition",play,2.7,0 -115558697,"Portal",purchase,1.0,0 -115558697,"Portal",play,2.3,0 -115558697,"Monkey Island 2 Special Edition",purchase,1.0,0 -139481298,"Dota 2",purchase,1.0,0 -139481298,"Dota 2",play,1.1,0 -229516311,"Counter-Strike Global Offensive",purchase,1.0,0 -229516311,"Counter-Strike Global Offensive",play,44.0,0 -229516311,"Realm of the Mad God",purchase,1.0,0 -229516311,"Realm of the Mad God",play,0.2,0 -229516311,"ArcheAge",purchase,1.0,0 -229516311,"No More Room in Hell",purchase,1.0,0 -229516311,"Warface",purchase,1.0,0 -106956838,"Cry of Fear",purchase,1.0,0 -106956838,"Cry of Fear",play,7.5,0 -106956838,"Unturned",purchase,1.0,0 -106956838,"Unturned",play,4.4,0 -106956838,"PAYDAY The Heist",purchase,1.0,0 -106956838,"PAYDAY The Heist",play,1.9,0 -106956838,"Pixel Puzzles Japan",purchase,1.0,0 -106956838,"Pixel Puzzles Japan",play,1.3,0 -106956838,"Team Fortress 2",purchase,1.0,0 -106956838,"Team Fortress 2",play,0.6,0 -106956838,"America's Army Proving Grounds",purchase,1.0,0 -106956838,"America's Army Proving Grounds",play,0.3,0 -106956838,"140",purchase,1.0,0 -106956838,"Cargo Commander",purchase,1.0,0 -106956838,"Decay - The Mare",purchase,1.0,0 -106956838,"Demonicon",purchase,1.0,0 -106956838,"Eidolon",purchase,1.0,0 -106956838,"Grim Legends The Forsaken Bride",purchase,1.0,0 -106956838,"Hacker Evolution",purchase,1.0,0 -106956838,"Hacker Evolution - Untold",purchase,1.0,0 -106956838,"Muffin Knight",purchase,1.0,0 -106956838,"Nightmares from the Deep 3 Davy Jones",purchase,1.0,0 -106956838,"One Finger Death Punch",purchase,1.0,0 -106956838,"Particula",purchase,1.0,0 -106956838,"Pixel Puzzles 2 Anime",purchase,1.0,0 -106956838,"Pixel Puzzles 2 Birds",purchase,1.0,0 -106956838,"Pixel Puzzles UndeadZ",purchase,1.0,0 -106956838,"Super Toy Cars",purchase,1.0,0 -106956838,"Tales from Space Mutant Blobs Attack",purchase,1.0,0 -106956838,"The Culling Of The Cows",purchase,1.0,0 -106956838,"Trainz Murchison 2",purchase,1.0,0 -281398000,"Dota 2",purchase,1.0,0 -281398000,"Dota 2",play,25.0,0 -75508144,"Rust",purchase,1.0,0 -75508144,"Rust",play,686.0,0 -75508144,"Sid Meier's Civilization V",purchase,1.0,0 -75508144,"Sid Meier's Civilization V",play,113.0,0 -75508144,"Call of Duty Black Ops",purchase,1.0,0 -75508144,"Call of Duty Black Ops",play,31.0,0 -75508144,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -75508144,"Call of Duty Black Ops - Multiplayer",play,17.3,0 -279965238,"WARMODE",purchase,1.0,0 -279965238,"WARMODE",play,6.6,0 -279965238,"Warface",purchase,1.0,0 -279965238,"Warface",play,1.7,0 -279965238,"Unturned",purchase,1.0,0 -279965238,"Unturned",play,1.0,0 -279965238,"Trove",purchase,1.0,0 -279965238,"Trove",play,0.7,0 -279965238,"Dirty Bomb",purchase,1.0,0 -195974700,"Robocraft",purchase,1.0,0 -195974700,"Robocraft",play,21.0,0 -195974700,"Unturned",purchase,1.0,0 -195974700,"Unturned",play,4.1,0 -195974700,"Dizzel",purchase,1.0,0 -180902680,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -171681316,"Dota 2",purchase,1.0,0 -171681316,"Dota 2",play,6.2,0 -178863914,"Team Fortress 2",purchase,1.0,0 -178863914,"Team Fortress 2",play,0.7,0 -178863914,"Unturned",purchase,1.0,0 -128279487,"Dota 2",purchase,1.0,0 -128279487,"Dota 2",play,2.4,0 -168598497,"Dota 2",purchase,1.0,0 -168598497,"Dota 2",play,74.0,0 -168598497,"Team Fortress 2",purchase,1.0,0 -168598497,"Team Fortress 2",play,2.1,0 -96233348,"Driver San Francisco",purchase,1.0,0 -96233348,"Driver San Francisco",play,0.3,0 -12760368,"Torchlight II",purchase,1.0,0 -12760368,"Torchlight II",play,471.0,0 -12760368,"Torchlight",purchase,1.0,0 -12760368,"Torchlight",play,422.0,0 -12760368,"The Elder Scrolls V Skyrim",purchase,1.0,0 -12760368,"The Elder Scrolls V Skyrim",play,116.0,0 -12760368,"Terraria",purchase,1.0,0 -12760368,"Terraria",play,66.0,0 -12760368,"War Thunder",purchase,1.0,0 -12760368,"War Thunder",play,31.0,0 -12760368,"Half-Life 2",purchase,1.0,0 -12760368,"Half-Life 2",play,19.3,0 -12760368,"Left 4 Dead",purchase,1.0,0 -12760368,"Left 4 Dead",play,7.8,0 -12760368,"Borderlands 2",purchase,1.0,0 -12760368,"Borderlands 2",play,7.5,0 -12760368,"Total War ROME II - Emperor Edition",purchase,1.0,0 -12760368,"Total War ROME II - Emperor Edition",play,6.5,0 -12760368,"Borderlands",purchase,1.0,0 -12760368,"Borderlands",play,5.8,0 -12760368,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -12760368,"Call of Duty 4 Modern Warfare",play,5.7,0 -12760368,"EVE Online",purchase,1.0,0 -12760368,"EVE Online",play,4.3,0 -12760368,"Star Wars Knights of the Old Republic",purchase,1.0,0 -12760368,"Star Wars Knights of the Old Republic",play,3.7,0 -12760368,"Metro 2033",purchase,1.0,0 -12760368,"Metro 2033",play,2.9,0 -12760368,"Half-Life 2 Episode One",purchase,1.0,0 -12760368,"Half-Life 2 Episode One",play,2.8,0 -12760368,"Star Wars Republic Commando",purchase,1.0,0 -12760368,"Star Wars Republic Commando",play,2.4,0 -12760368,"Battlefield Bad Company 2",purchase,1.0,0 -12760368,"Battlefield Bad Company 2",play,1.4,0 -12760368,"Left 4 Dead 2",purchase,1.0,0 -12760368,"Left 4 Dead 2",play,1.4,0 -12760368,"State of Decay",purchase,1.0,0 -12760368,"State of Decay",play,1.0,0 -12760368,"Far Cry 3",purchase,1.0,0 -12760368,"Far Cry 3",play,0.8,0 -12760368,"Grand Theft Auto V",purchase,1.0,0 -12760368,"Grand Theft Auto V",play,0.6,0 -12760368,"Dead Island",purchase,1.0,0 -12760368,"Dead Island",play,0.3,0 -12760368,"Empire Total War",purchase,1.0,0 -12760368,"Empire Total War",play,0.3,0 -12760368,"Mass Effect",purchase,1.0,0 -12760368,"Mass Effect",play,0.2,0 -12760368,"Dota 2",purchase,1.0,0 -12760368,"Dota 2",play,0.1,0 -12760368,"Titan Quest",purchase,1.0,0 -12760368,"Titan Quest",play,0.1,0 -12760368,"Spiral Knights",purchase,1.0,0 -12760368,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -12760368,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -12760368,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -12760368,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -12760368,"Counter-Strike Source",purchase,1.0,0 -12760368,"Dungeon Defenders",purchase,1.0,0 -12760368,"Far Cry",purchase,1.0,0 -12760368,"Far Cry 2",purchase,1.0,0 -12760368,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -12760368,"Half-Life 2 Deathmatch",purchase,1.0,0 -12760368,"Half-Life 2 Episode Two",purchase,1.0,0 -12760368,"Half-Life 2 Lost Coast",purchase,1.0,0 -12760368,"Mass Effect 2",purchase,1.0,0 -12760368,"Metro Last Light",purchase,1.0,0 -12760368,"State of Decay - Breakdown",purchase,1.0,0 -12760368,"State of Decay - Lifeline",purchase,1.0,0 -12760368,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -12760368,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -12760368,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -12760368,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -153541594,"Dota 2",purchase,1.0,0 -153541594,"Dota 2",play,14.9,0 -140236312,"Dota 2",purchase,1.0,0 -140236312,"Dota 2",play,1.6,0 -296283194,"Garry's Mod",purchase,1.0,0 -296283194,"Garry's Mod",play,4.9,0 -296283194,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -296283194,"Sid Meier's Civilization Beyond Earth",play,3.5,0 -296283194,"Dota 2",purchase,1.0,0 -296283194,"Dota 2",play,2.1,0 -296283194,"Minecraft Story Mode - A Telltale Games Series",purchase,1.0,0 -296283194,"Minecraft Story Mode - A Telltale Games Series",play,2.0,0 -296283194,"Bloodline Champions",purchase,1.0,0 -296283194,"Bloodline Champions",play,1.2,0 -296283194,"PAYDAY The Heist",purchase,1.0,0 -296283194,"PAYDAY The Heist",play,0.6,0 -296283194,"Red Faction Armageddon",purchase,1.0,0 -296283194,"Red Faction Armageddon",play,0.5,0 -296283194,"Operation Z",purchase,1.0,0 -296283194,"Operation Z",play,0.3,0 -296283194,"Dead Pixels",purchase,1.0,0 -187795034,"Team Fortress 2",purchase,1.0,0 -187795034,"Team Fortress 2",play,1.4,0 -187795034,"Firefall",purchase,1.0,0 -187795034,"Robocraft",purchase,1.0,0 -187795034,"Unturned",purchase,1.0,0 -230739567,"Dota 2",purchase,1.0,0 -230739567,"Dota 2",play,3.4,0 -253421464,"Dota 2",purchase,1.0,0 -253421464,"Dota 2",play,100.0,0 -253421464,"Team Fortress 2",purchase,1.0,0 -253421464,"Team Fortress 2",play,2.1,0 -253421464,"Robocraft",purchase,1.0,0 -253421464,"Gear Up",purchase,1.0,0 -245353969,"Dota 2",purchase,1.0,0 -245353969,"Dota 2",play,1.3,0 -277834336,"Dota 2",purchase,1.0,0 -277834336,"Dota 2",play,3.0,0 -13190476,"Fallout 4",purchase,1.0,0 -13190476,"Fallout 4",play,629.0,0 -13190476,"Dota 2",purchase,1.0,0 -13190476,"Dota 2",play,527.0,0 -13190476,"The Elder Scrolls V Skyrim",purchase,1.0,0 -13190476,"The Elder Scrolls V Skyrim",play,153.0,0 -13190476,"Fallout New Vegas",purchase,1.0,0 -13190476,"Fallout New Vegas",play,143.0,0 -13190476,"Total War SHOGUN 2",purchase,1.0,0 -13190476,"Total War SHOGUN 2",play,83.0,0 -13190476,"Borderlands 2",purchase,1.0,0 -13190476,"Borderlands 2",play,63.0,0 -13190476,"The Witcher 3 Wild Hunt",purchase,1.0,0 -13190476,"The Witcher 3 Wild Hunt",play,58.0,0 -13190476,"L.A. Noire",purchase,1.0,0 -13190476,"L.A. Noire",play,54.0,0 -13190476,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -13190476,"Fallout 3 - Game of the Year Edition",play,52.0,0 -13190476,"Batman Arkham City",purchase,1.0,0 -13190476,"Batman Arkham City",play,48.0,0 -13190476,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -13190476,"The Witcher 2 Assassins of Kings Enhanced Edition",play,46.0,0 -13190476,"Darksiders II",purchase,1.0,0 -13190476,"Darksiders II",play,46.0,0 -13190476,"XCOM Enemy Unknown",purchase,1.0,0 -13190476,"XCOM Enemy Unknown",play,46.0,0 -13190476,"Age of Wonders III",purchase,1.0,0 -13190476,"Age of Wonders III",play,42.0,0 -13190476,"The Witcher Enhanced Edition",purchase,1.0,0 -13190476,"The Witcher Enhanced Edition",play,41.0,0 -13190476,"Assassin's Creed III",purchase,1.0,0 -13190476,"Assassin's Creed III",play,38.0,0 -13190476,"Starpoint Gemini 2",purchase,1.0,0 -13190476,"Starpoint Gemini 2",play,33.0,0 -13190476,"Middle-earth Shadow of Mordor",purchase,1.0,0 -13190476,"Middle-earth Shadow of Mordor",play,31.0,0 -13190476,"Overlord II",purchase,1.0,0 -13190476,"Overlord II",play,30.0,0 -13190476,"Batman Arkham Knight",purchase,1.0,0 -13190476,"Batman Arkham Knight",play,29.0,0 -13190476,"Dishonored",purchase,1.0,0 -13190476,"Dishonored",play,28.0,0 -13190476,"Deus Ex Human Revolution",purchase,1.0,0 -13190476,"Deus Ex Human Revolution",play,28.0,0 -13190476,"Batman Arkham Origins",purchase,1.0,0 -13190476,"Batman Arkham Origins",play,26.0,0 -13190476,"Sleeping Dogs",purchase,1.0,0 -13190476,"Sleeping Dogs",play,26.0,0 -13190476,"Wolfenstein The New Order",purchase,1.0,0 -13190476,"Wolfenstein The New Order",play,25.0,0 -13190476,"PROTOTYPE 2",purchase,1.0,0 -13190476,"PROTOTYPE 2",play,23.0,0 -13190476,"Dust An Elysian Tail",purchase,1.0,0 -13190476,"Dust An Elysian Tail",play,23.0,0 -13190476,"Legend of Grimrock",purchase,1.0,0 -13190476,"Legend of Grimrock",play,23.0,0 -13190476,"Dead Space 2",purchase,1.0,0 -13190476,"Dead Space 2",play,22.0,0 -13190476,"Company of Heroes 2",purchase,1.0,0 -13190476,"Company of Heroes 2",play,21.0,0 -13190476,"The Walking Dead",purchase,1.0,0 -13190476,"The Walking Dead",play,18.3,0 -13190476,"Assassin's Creed Revelations",purchase,1.0,0 -13190476,"Assassin's Creed Revelations",play,17.9,0 -13190476,"Warhammer 40,000 Space Marine",purchase,1.0,0 -13190476,"Warhammer 40,000 Space Marine",play,17.5,0 -13190476,"War for the Overworld",purchase,1.0,0 -13190476,"War for the Overworld",play,17.5,0 -13190476,"Portal 2",purchase,1.0,0 -13190476,"Portal 2",play,17.4,0 -13190476,"Trine 2",purchase,1.0,0 -13190476,"Trine 2",play,16.7,0 -13190476,"Tomb Raider",purchase,1.0,0 -13190476,"Tomb Raider",play,16.2,0 -13190476,"Far Cry 3 Blood Dragon",purchase,1.0,0 -13190476,"Far Cry 3 Blood Dragon",play,16.1,0 -13190476,"Orcs Must Die! 2",purchase,1.0,0 -13190476,"Orcs Must Die! 2",play,15.8,0 -13190476,"South Park The Stick of Truth",purchase,1.0,0 -13190476,"South Park The Stick of Truth",play,15.6,0 -13190476,"Alan Wake",purchase,1.0,0 -13190476,"Alan Wake",play,15.5,0 -13190476,"Rayman Legends",purchase,1.0,0 -13190476,"Rayman Legends",play,15.4,0 -13190476,"The Wolf Among Us",purchase,1.0,0 -13190476,"The Wolf Among Us",play,15.3,0 -13190476,"Borderlands The Pre-Sequel",purchase,1.0,0 -13190476,"Borderlands The Pre-Sequel",play,14.3,0 -13190476,"BioShock",purchase,1.0,0 -13190476,"BioShock",play,13.7,0 -13190476,"Psychonauts",purchase,1.0,0 -13190476,"Psychonauts",play,13.6,0 -13190476,"The Banner Saga",purchase,1.0,0 -13190476,"The Banner Saga",play,13.5,0 -13190476,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -13190476,"Game of Thrones - A Telltale Games Series",play,13.5,0 -13190476,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -13190476,"Batman Arkham Asylum GOTY Edition",play,13.4,0 -13190476,"Blood Bowl Chaos Edition",purchase,1.0,0 -13190476,"Blood Bowl Chaos Edition",play,13.3,0 -13190476,"Company of Heroes Opposing Fronts",purchase,1.0,0 -13190476,"Company of Heroes Opposing Fronts",play,13.0,0 -13190476,"Orcs Must Die!",purchase,1.0,0 -13190476,"Orcs Must Die!",play,12.5,0 -13190476,"Assassin's Creed IV Black Flag",purchase,1.0,0 -13190476,"Assassin's Creed IV Black Flag",play,11.7,0 -13190476,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -13190476,"Sonic & All-Stars Racing Transformed",play,11.7,0 -13190476,"Total War ROME II - Emperor Edition",purchase,1.0,0 -13190476,"Total War ROME II - Emperor Edition",play,11.2,0 -13190476,"BioShock Infinite",purchase,1.0,0 -13190476,"BioShock Infinite",play,11.2,0 -13190476,"Max Payne 3",purchase,1.0,0 -13190476,"Max Payne 3",play,11.0,0 -13190476,"Need for Speed Hot Pursuit",purchase,1.0,0 -13190476,"Need for Speed Hot Pursuit",play,10.9,0 -13190476,"Tropico 4",purchase,1.0,0 -13190476,"Tropico 4",play,10.7,0 -13190476,"Bastion",purchase,1.0,0 -13190476,"Bastion",play,10.7,0 -13190476,"The Baconing",purchase,1.0,0 -13190476,"The Baconing",play,10.6,0 -13190476,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -13190476,"Deus Ex Human Revolution - The Missing Link",play,10.4,0 -13190476,"Ori and the Blind Forest",purchase,1.0,0 -13190476,"Ori and the Blind Forest",play,9.8,0 -13190476,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",purchase,1.0,0 -13190476,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",play,9.4,0 -13190476,"Company of Heroes Tales of Valor",purchase,1.0,0 -13190476,"Company of Heroes Tales of Valor",play,9.0,0 -13190476,"DeathSpank Thongs Of Virtue",purchase,1.0,0 -13190476,"DeathSpank Thongs Of Virtue",play,8.3,0 -13190476,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -13190476,"F.E.A.R. 2 Project Origin",play,7.5,0 -13190476,"Rise of Nations Extended Edition",purchase,1.0,0 -13190476,"Rise of Nations Extended Edition",play,7.4,0 -13190476,"Mega Man Legacy Collection",purchase,1.0,0 -13190476,"Mega Man Legacy Collection",play,6.4,0 -13190476,"Half-Life 2 Episode Two",purchase,1.0,0 -13190476,"Half-Life 2 Episode Two",play,6.4,0 -13190476,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -13190476,"Burnout Paradise The Ultimate Box",play,6.3,0 -13190476,"Blood Bowl 2",purchase,1.0,0 -13190476,"Blood Bowl 2",play,6.3,0 -13190476,"Sid Meier's Pirates!",purchase,1.0,0 -13190476,"Sid Meier's Pirates!",play,6.2,0 -13190476,"Company of Heroes",purchase,1.0,0 -13190476,"Company of Heroes",play,5.4,0 -13190476,"Wolfenstein The Old Blood ",purchase,1.0,0 -13190476,"Wolfenstein The Old Blood ",play,5.2,0 -13190476,"Left 4 Dead",purchase,1.0,0 -13190476,"Left 4 Dead",play,5.2,0 -13190476,"The Walking Dead Season Two",purchase,1.0,0 -13190476,"The Walking Dead Season Two",play,5.0,0 -13190476,"Grey Goo",purchase,1.0,0 -13190476,"Grey Goo",play,4.7,0 -13190476,"Sins of a Solar Empire Trinity",purchase,1.0,0 -13190476,"Sins of a Solar Empire Trinity",play,4.6,0 -13190476,"Defense Grid The Awakening",purchase,1.0,0 -13190476,"Defense Grid The Awakening",play,4.4,0 -13190476,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -13190476,"Sins of a Solar Empire Rebellion",play,4.2,0 -13190476,"Metro 2033 Redux",purchase,1.0,0 -13190476,"Metro 2033 Redux",play,4.2,0 -13190476,"The Vanishing of Ethan Carter",purchase,1.0,0 -13190476,"The Vanishing of Ethan Carter",play,3.9,0 -13190476,"Aliens vs. Predator",purchase,1.0,0 -13190476,"Aliens vs. Predator",play,3.6,0 -13190476,"Legend of Grimrock 2",purchase,1.0,0 -13190476,"Legend of Grimrock 2",play,3.5,0 -13190476,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -13190476,"The Secret of Monkey Island Special Edition",play,3.4,0 -13190476,"Ultra Street Fighter IV",purchase,1.0,0 -13190476,"Ultra Street Fighter IV",play,3.2,0 -13190476,"Angry Video Game Nerd Adventures",purchase,1.0,0 -13190476,"Angry Video Game Nerd Adventures",play,2.8,0 -13190476,"Thief",purchase,1.0,0 -13190476,"Thief",play,2.6,0 -13190476,"Sonic Generations",purchase,1.0,0 -13190476,"Sonic Generations",play,2.5,0 -13190476,"Bulletstorm",purchase,1.0,0 -13190476,"Bulletstorm",play,2.1,0 -13190476,"Post Apocalyptic Mayhem",purchase,1.0,0 -13190476,"Post Apocalyptic Mayhem",play,1.5,0 -13190476,"The Talos Principle",purchase,1.0,0 -13190476,"The Talos Principle",play,1.5,0 -13190476,"Dungeon Defenders",purchase,1.0,0 -13190476,"Dungeon Defenders",play,1.3,0 -13190476,"Amnesia A Machine for Pigs",purchase,1.0,0 -13190476,"Amnesia A Machine for Pigs",play,1.1,0 -13190476,"Game Dev Tycoon",purchase,1.0,0 -13190476,"Game Dev Tycoon",play,1.0,0 -13190476,"Prison Architect",purchase,1.0,0 -13190476,"Prison Architect",play,1.0,0 -13190476,"Counter-Strike Source",purchase,1.0,0 -13190476,"Counter-Strike Source",play,0.9,0 -13190476,"Left 4 Dead 2",purchase,1.0,0 -13190476,"Left 4 Dead 2",play,0.7,0 -13190476,"Nexus The Jupiter Incident",purchase,1.0,0 -13190476,"Nexus The Jupiter Incident",play,0.6,0 -13190476,"F.E.A.R. 3",purchase,1.0,0 -13190476,"F.E.A.R. 3",play,0.6,0 -13190476,"Batman Arkham City GOTY",purchase,1.0,0 -13190476,"Batman Arkham City GOTY",play,0.6,0 -13190476,"The Stanley Parable",purchase,1.0,0 -13190476,"The Stanley Parable",play,0.5,0 -13190476,"Team Fortress 2",purchase,1.0,0 -13190476,"Team Fortress 2",play,0.4,0 -13190476,"Half-Life 2 Lost Coast",purchase,1.0,0 -13190476,"Half-Life 2 Lost Coast",play,0.4,0 -13190476,"Thomas Was Alone",purchase,1.0,0 -13190476,"Thomas Was Alone",play,0.3,0 -13190476,"Age of Empires II HD Edition",purchase,1.0,0 -13190476,"Age of Empires II HD Edition",play,0.3,0 -13190476,"Deus Ex Invisible War",purchase,1.0,0 -13190476,"Deus Ex Invisible War",play,0.3,0 -13190476,"Myst V",purchase,1.0,0 -13190476,"Myst V",play,0.2,0 -13190476,"Deus Ex Game of the Year Edition",purchase,1.0,0 -13190476,"10 Second Ninja",purchase,1.0,0 -13190476,"Age of Empires II HD The Forgotten",purchase,1.0,0 -13190476,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -13190476,"Batman Arkham Origins - Initiation",purchase,1.0,0 -13190476,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -13190476,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -13190476,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -13190476,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -13190476,"BioShock Infinite - Season Pass",purchase,1.0,0 -13190476,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -13190476,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -13190476,"Blood Bowl 2 - Lizardmen",purchase,1.0,0 -13190476,"Blood Bowl 2 - Wood Elves",purchase,1.0,0 -13190476,"Company of Heroes (New Steam Version)",purchase,1.0,0 -13190476,"Company of Heroes 2 - Ardennes Assault",purchase,1.0,0 -13190476,"Darwinia",purchase,1.0,0 -13190476,"DEFCON",purchase,1.0,0 -13190476,"Fallout New Vegas Dead Money",purchase,1.0,0 -13190476,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -13190476,"Grey Goo - Emergence Campaign",purchase,1.0,0 -13190476,"Grey Goo - Soundtrack",purchase,1.0,0 -13190476,"Half-Life 2",purchase,1.0,0 -13190476,"Half-Life 2 Deathmatch",purchase,1.0,0 -13190476,"Half-Life Source",purchase,1.0,0 -13190476,"Half-Life Deathmatch Source",purchase,1.0,0 -13190476,"Metro Last Light Redux",purchase,1.0,0 -13190476,"Monkey Island 2 Special Edition",purchase,1.0,0 -13190476,"Multiwinia",purchase,1.0,0 -13190476,"Post Apocalyptic Mayhem DLC 2 Chaos Pack",purchase,1.0,0 -13190476,"Prototype 2 RADNET Access Pack",purchase,1.0,0 -13190476,"Psychonauts Demo",purchase,1.0,0 -13190476,"Sins of a Solar Empire Rebellion - Stellar Phenomena DLC",purchase,1.0,0 -13190476,"Sins of a Solar Empire Rebellion Forbidden Worlds",purchase,1.0,0 -13190476,"South Park The Stick of Truth - Super Samurai Spaceman Pack",purchase,1.0,0 -13190476,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -13190476,"The Banner Saga - Mod Content",purchase,1.0,0 -13190476,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -13190476,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -13190476,"The Talos Principle Road To Gehenna",purchase,1.0,0 -13190476,"The Vanishing of Ethan Carter Redux",purchase,1.0,0 -13190476,"The Witcher 3 Wild Hunt - Expansion Pass",purchase,1.0,0 -13190476,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -13190476,"Thief - Ghost",purchase,1.0,0 -13190476,"Thief - Opportunist",purchase,1.0,0 -13190476,"Thief - Predator",purchase,1.0,0 -13190476,"Thief - The Bank Heist",purchase,1.0,0 -13190476,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -13190476,"Uplink",purchase,1.0,0 -13190476,"XCOM Enemy Within",purchase,1.0,0 -123422108,"Dota 2",purchase,1.0,0 -123422108,"Dota 2",play,0.2,0 -134003545,"The Maw",purchase,1.0,0 -134003545,"The Maw",play,1.0,0 -236394893,"Garry's Mod",purchase,1.0,0 -236394893,"Garry's Mod",play,666.0,0 -236394893,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -236394893,"Call of Duty Black Ops II - Multiplayer",play,228.0,0 -236394893,"Call of Duty World at War",purchase,1.0,0 -236394893,"Call of Duty World at War",play,63.0,0 -236394893,"Counter-Strike Global Offensive",purchase,1.0,0 -236394893,"Counter-Strike Global Offensive",play,23.0,0 -236394893,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -236394893,"Call of Duty Black Ops II - Zombies",play,9.3,0 -236394893,"Call of Duty Black Ops II",purchase,1.0,0 -236394893,"Call of Duty Black Ops II",play,1.2,0 -87185898,"Napoleon Total War",purchase,1.0,0 -87185898,"Napoleon Total War",play,5.3,0 -199757879,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -199757879,"Call of Duty Black Ops II - Multiplayer",play,130.0,0 -199757879,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -199757879,"Call of Duty Black Ops II",purchase,1.0,0 -198709823,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -263133436,"Counter-Strike Nexon Zombies",purchase,1.0,0 -247018069,"theHunter",purchase,1.0,0 -161420779,"Dead Island",purchase,1.0,0 -161420779,"Dead Island",play,2.1,0 -243627451,"Red Crucible Firestorm",purchase,1.0,0 -243627451,"Red Crucible Firestorm",play,0.5,0 -243627451,"No More Room in Hell",purchase,1.0,0 -243627451,"No More Room in Hell",play,0.1,0 -243627451,"Piercing Blow",purchase,1.0,0 -243627451,"Piercing Blow",play,0.1,0 -199694980,"BattleBlock Theater",purchase,1.0,0 -199694980,"BattleBlock Theater",play,9.0,0 -199694980,"PAYDAY The Heist",purchase,1.0,0 -199694980,"PAYDAY The Heist",play,3.2,0 -95930936,"Baldur's Gate II Enhanced Edition",purchase,1.0,0 -95930936,"Baldur's Gate II Enhanced Edition",play,15.9,0 -95930936,"Cave Story+",purchase,1.0,0 -95930936,"Cave Story+",play,11.9,0 -95930936,"Braid",purchase,1.0,0 -95930936,"Braid",play,9.0,0 -95930936,"Shadowrun Returns",purchase,1.0,0 -95930936,"Shadowrun Returns",play,2.6,0 -95930936,"8BitBoy",purchase,1.0,0 -95930936,"8BitBoy",play,1.6,0 -247137761,"Unturned",purchase,1.0,0 -301189920,"Dota 2",purchase,1.0,0 -301189920,"Dota 2",play,2.0,0 -142801176,"Sid Meier's Civilization V",purchase,1.0,0 -142801176,"Sid Meier's Civilization V",play,77.0,0 -142801176,"XCOM Enemy Unknown",purchase,1.0,0 -142801176,"XCOM Enemy Unknown",play,42.0,0 -142801176,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -200951504,"Dota 2",purchase,1.0,0 -200951504,"Dota 2",play,2.4,0 -146711832,"Dota 2",purchase,1.0,0 -146711832,"Dota 2",play,4.4,0 -205793409,"theHunter",purchase,1.0,0 -205793409,"theHunter",play,3.8,0 -205793409,"Dota 2",purchase,1.0,0 -205793409,"Dota 2",play,1.6,0 -205793409,"404Sight",purchase,1.0,0 -205793409,"404Sight",play,0.4,0 -205793409,"The Old Tree",purchase,1.0,0 -205793409,"The Old Tree",play,0.2,0 -205793409,"Ragnarok Online 2",purchase,1.0,0 -231493001,"Grand Theft Auto V",purchase,1.0,0 -231493001,"Grand Theft Auto V",play,302.0,0 -231493001,"Counter-Strike Global Offensive",purchase,1.0,0 -231493001,"Counter-Strike Global Offensive",play,2.9,0 -44946470,"Football Manager 2011",purchase,1.0,0 -44946470,"Football Manager 2011",play,30.0,0 -44946470,"Football Manager 2009",purchase,1.0,0 -44946470,"Football Manager 2009",play,27.0,0 -44946470,"SimCity 4 Deluxe",purchase,1.0,0 -44946470,"SimCity 4 Deluxe",play,12.1,0 -228972514,"Dota 2",purchase,1.0,0 -228972514,"Dota 2",play,2.5,0 -206599635,"Dota 2",purchase,1.0,0 -206599635,"Dota 2",play,46.0,0 -206599635,"Dead Island Epidemic",purchase,1.0,0 -206599635,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -206599635,"WAKFU",purchase,1.0,0 -206599635,"Warframe",purchase,1.0,0 -168732483,"Rust",purchase,1.0,0 -168732483,"Rust",play,76.0,0 -168732483,"Unturned",purchase,1.0,0 -168732483,"Unturned",play,43.0,0 -168732483,"Garry's Mod",purchase,1.0,0 -168732483,"Garry's Mod",play,23.0,0 -168732483,"Call of Duty World at War",purchase,1.0,0 -168732483,"Call of Duty World at War",play,18.9,0 -168732483,"7 Days to Die",purchase,1.0,0 -168732483,"7 Days to Die",play,15.8,0 -168732483,"Team Fortress 2",purchase,1.0,0 -168732483,"Team Fortress 2",play,12.9,0 -168732483,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -168732483,"RollerCoaster Tycoon 3 Platinum!",play,4.3,0 -168732483,"Call of Duty United Offensive",purchase,1.0,0 -168732483,"Call of Duty United Offensive",play,3.5,0 -168732483,"Batla",purchase,1.0,0 -168732483,"Batla",play,1.0,0 -168732483,"BLOCKADE 3D",purchase,1.0,0 -168732483,"BLOCKADE 3D",play,0.5,0 -168732483,"Call of Duty 2",purchase,1.0,0 -168732483,"Brick-Force",purchase,1.0,0 -168732483,"Call of Duty",purchase,1.0,0 -168732483,"PlanetSide 2",purchase,1.0,0 -168732483,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -65220985,"Portal",purchase,1.0,0 -65220985,"Portal",play,1.2,0 -65220985,"War Thunder",purchase,1.0,0 -157333988,"Dota 2",purchase,1.0,0 -157333988,"Dota 2",play,2289.0,0 -157333988,"Team Fortress 2",purchase,1.0,0 -157333988,"Team Fortress 2",play,1.3,0 -75001116,"The Elder Scrolls V Skyrim",purchase,1.0,0 -75001116,"The Elder Scrolls V Skyrim",play,147.0,0 -75001116,"Medieval II Total War",purchase,1.0,0 -75001116,"Medieval II Total War",play,13.5,0 -75001116,"Medieval II Total War Kingdoms",purchase,1.0,0 -75001116,"Medieval II Total War Kingdoms",play,3.3,0 -75001116,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -257873308,"Five Nights at Freddy's",purchase,1.0,0 -188401469,"Dota 2",purchase,1.0,0 -188401469,"Dota 2",play,141.0,0 -76560982,"Empire Total War",purchase,1.0,0 -76560982,"Empire Total War",play,11.7,0 -76560982,"R.U.S.E",purchase,1.0,0 -76560982,"R.U.S.E",play,5.5,0 -76560982,"R.U.S.E.",purchase,1.0,0 -89488150,"Left 4 Dead 2",purchase,1.0,0 -89488150,"Left 4 Dead 2",play,22.0,0 -154956362,"RACE 07",purchase,1.0,0 -154956362,"RACE 07",play,0.3,0 -154956362,"GT Power Expansion",purchase,1.0,0 -154956362,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -154956362,"STCC II",purchase,1.0,0 -154956362,"The Retro Expansion",purchase,1.0,0 -154956362,"The WTCC 2010 Pack",purchase,1.0,0 -171427260,"Dota 2",purchase,1.0,0 -171427260,"Dota 2",play,0.3,0 -217779981,"Team Fortress 2",purchase,1.0,0 -217779981,"Team Fortress 2",play,10.6,0 -217779981,"Super Crate Box",purchase,1.0,0 -217779981,"Super Crate Box",play,2.9,0 -217779981,"Trove",purchase,1.0,0 -217779981,"Trove",play,1.4,0 -217779981,"Strife",purchase,1.0,0 -217779981,"Strife",play,1.3,0 -217779981,"Missing Translation",purchase,1.0,0 -217779981,"Missing Translation",play,0.9,0 -217779981,"Infinite Crisis",purchase,1.0,0 -217779981,"Infinite Crisis",play,0.6,0 -217779981,"Unturned",purchase,1.0,0 -217779981,"Unturned",play,0.4,0 -217779981,"Super Monday Night Combat",purchase,1.0,0 -217779981,"Super Monday Night Combat",play,0.4,0 -217779981,"Loadout",purchase,1.0,0 -217779981,"Loadout",play,0.1,0 -217779981,"8BitMMO",purchase,1.0,0 -217779981,"Dead Island Epidemic",purchase,1.0,0 -217779981,"Dirty Bomb",purchase,1.0,0 -217779981,"Nosgoth",purchase,1.0,0 -217779981,"RIFT",purchase,1.0,0 -217779981,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -303426048,"Counter-Strike Global Offensive",purchase,1.0,0 -303426048,"Counter-Strike Global Offensive",play,18.1,0 -303426048,"Dota 2",purchase,1.0,0 -303426048,"Dota 2",play,17.4,0 -309228590,"Dota 2",purchase,1.0,0 -309228590,"Dota 2",play,0.3,0 -74738483,"Napoleon Total War",purchase,1.0,0 -88580612,"Call of Duty Black Ops",purchase,1.0,0 -88580612,"Call of Duty Black Ops",play,1.7,0 -88580612,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -88580612,"Call of Duty Black Ops - Multiplayer",play,0.9,0 -118988066,"Dota 2",purchase,1.0,0 -118988066,"Dota 2",play,8.0,0 -60611062,"Counter-Strike Global Offensive",purchase,1.0,0 -60611062,"Counter-Strike Global Offensive",play,682.0,0 -60611062,"Might & Magic Duel of Champions",purchase,1.0,0 -60611062,"Might & Magic Duel of Champions",play,361.0,0 -60611062,"Blacklight Retribution",purchase,1.0,0 -60611062,"Blacklight Retribution",play,267.0,0 -60611062,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -60611062,"Call of Duty Modern Warfare 2 - Multiplayer",play,247.0,0 -60611062,"Battlefield Bad Company 2",purchase,1.0,0 -60611062,"Battlefield Bad Company 2",play,149.0,0 -60611062,"Mount & Blade Warband",purchase,1.0,0 -60611062,"Mount & Blade Warband",play,143.0,0 -60611062,"The Witcher 3 Wild Hunt",purchase,1.0,0 -60611062,"The Witcher 3 Wild Hunt",play,118.0,0 -60611062,"Torchlight II",purchase,1.0,0 -60611062,"Torchlight II",play,117.0,0 -60611062,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -60611062,"Rising Storm/Red Orchestra 2 Multiplayer",play,95.0,0 -60611062,"Team Fortress 2",purchase,1.0,0 -60611062,"Team Fortress 2",play,89.0,0 -60611062,"Magic Duels",purchase,1.0,0 -60611062,"Magic Duels",play,88.0,0 -60611062,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -60611062,"Tom Clancy's Ghost Recon Phantoms - NA",play,63.0,0 -60611062,"War Thunder",purchase,1.0,0 -60611062,"War Thunder",play,60.0,0 -60611062,"Insurgency",purchase,1.0,0 -60611062,"Insurgency",play,51.0,0 -60611062,"War of the Roses",purchase,1.0,0 -60611062,"War of the Roses",play,49.0,0 -60611062,"Tom Clancy's Ghost Recon Future Soldier",purchase,1.0,0 -60611062,"Tom Clancy's Ghost Recon Future Soldier",play,47.0,0 -60611062,"Chivalry Medieval Warfare",purchase,1.0,0 -60611062,"Chivalry Medieval Warfare",play,47.0,0 -60611062,"The Witcher Enhanced Edition",purchase,1.0,0 -60611062,"The Witcher Enhanced Edition",play,46.0,0 -60611062,"Magic 2014 ",purchase,1.0,0 -60611062,"Magic 2014 ",play,38.0,0 -60611062,"PlanetSide 2",purchase,1.0,0 -60611062,"PlanetSide 2",play,37.0,0 -60611062,"Dead Island",purchase,1.0,0 -60611062,"Dead Island",play,37.0,0 -60611062,"DARK SOULS II",purchase,1.0,0 -60611062,"DARK SOULS II",play,34.0,0 -60611062,"Borderlands 2",purchase,1.0,0 -60611062,"Borderlands 2",play,32.0,0 -60611062,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -60611062,"Medal of Honor(TM) Multiplayer",play,31.0,0 -60611062,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -60611062,"The Witcher 2 Assassins of Kings Enhanced Edition",play,30.0,0 -60611062,"Don't Starve",purchase,1.0,0 -60611062,"Don't Starve",play,28.0,0 -60611062,"Dungeon Defenders",purchase,1.0,0 -60611062,"Dungeon Defenders",play,27.0,0 -60611062,"Castle Crashers",purchase,1.0,0 -60611062,"Castle Crashers",play,23.0,0 -60611062,"Darksiders II",purchase,1.0,0 -60611062,"Darksiders II",play,22.0,0 -60611062,"Call of Duty Modern Warfare 2",purchase,1.0,0 -60611062,"Call of Duty Modern Warfare 2",play,21.0,0 -60611062,"Warframe",purchase,1.0,0 -60611062,"Warframe",play,20.0,0 -60611062,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -60611062,"Tom Clancy's Splinter Cell Blacklist",play,19.8,0 -60611062,"Blur",purchase,1.0,0 -60611062,"Blur",play,19.6,0 -60611062,"Hitman Absolution",purchase,1.0,0 -60611062,"Hitman Absolution",play,19.5,0 -60611062,"Sid Meier's Civilization V",purchase,1.0,0 -60611062,"Sid Meier's Civilization V",play,19.3,0 -60611062,"Shadow Warrior",purchase,1.0,0 -60611062,"Shadow Warrior",play,18.3,0 -60611062,"Dishonored",purchase,1.0,0 -60611062,"Dishonored",play,17.8,0 -60611062,"Tom Clancy's Rainbow Six Vegas 2",purchase,1.0,0 -60611062,"Tom Clancy's Rainbow Six Vegas 2",play,17.0,0 -60611062,"Magicka",purchase,1.0,0 -60611062,"Magicka",play,16.9,0 -60611062,"Assassin's Creed IV Black Flag",purchase,1.0,0 -60611062,"Assassin's Creed IV Black Flag",play,16.2,0 -60611062,"Batman Arkham Origins",purchase,1.0,0 -60611062,"Batman Arkham Origins",play,15.9,0 -60611062,"Warface",purchase,1.0,0 -60611062,"Warface",play,15.6,0 -60611062,"Left 4 Dead 2",purchase,1.0,0 -60611062,"Left 4 Dead 2",play,15.3,0 -60611062,"Counter-Strike Source",purchase,1.0,0 -60611062,"Counter-Strike Source",play,12.9,0 -60611062,"Metro 2033",purchase,1.0,0 -60611062,"Metro 2033",play,12.4,0 -60611062,"Dead Space",purchase,1.0,0 -60611062,"Dead Space",play,11.4,0 -60611062,"Rome Total War",purchase,1.0,0 -60611062,"Rome Total War",play,11.3,0 -60611062,"Nether",purchase,1.0,0 -60611062,"Nether",play,10.5,0 -60611062,"Killing Floor",purchase,1.0,0 -60611062,"Killing Floor",play,9.9,0 -60611062,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -60611062,"Injustice Gods Among Us Ultimate Edition",play,9.4,0 -60611062,"Sniper Elite V2",purchase,1.0,0 -60611062,"Sniper Elite V2",play,8.5,0 -60611062,"Mount & Blade",purchase,1.0,0 -60611062,"Mount & Blade",play,8.3,0 -60611062,"Alien Swarm",purchase,1.0,0 -60611062,"Alien Swarm",play,8.2,0 -60611062,"Torchlight",purchase,1.0,0 -60611062,"Torchlight",play,7.4,0 -60611062,"Orcs Must Die! 2",purchase,1.0,0 -60611062,"Orcs Must Die! 2",play,7.4,0 -60611062,"Awesomenauts",purchase,1.0,0 -60611062,"Awesomenauts",play,7.0,0 -60611062,"Portal",purchase,1.0,0 -60611062,"Portal",play,6.9,0 -60611062,"Fuse",purchase,1.0,0 -60611062,"Fuse",play,6.9,0 -60611062,"Day of Defeat",purchase,1.0,0 -60611062,"Day of Defeat",play,6.3,0 -60611062,"PAYDAY The Heist",purchase,1.0,0 -60611062,"PAYDAY The Heist",play,6.0,0 -60611062,"Saints Row IV",purchase,1.0,0 -60611062,"Saints Row IV",play,5.4,0 -60611062,"Super Meat Boy",purchase,1.0,0 -60611062,"Super Meat Boy",play,5.0,0 -60611062,"Path of Exile",purchase,1.0,0 -60611062,"Path of Exile",play,5.0,0 -60611062,"PAYDAY 2",purchase,1.0,0 -60611062,"PAYDAY 2",play,4.9,0 -60611062,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -60611062,"Unreal Tournament 3 Black Edition",play,4.7,0 -60611062,"Dungeon Defenders II",purchase,1.0,0 -60611062,"Dungeon Defenders II",play,4.5,0 -60611062,"Arma 2",purchase,1.0,0 -60611062,"Arma 2",play,4.2,0 -60611062,"Mount & Blade With Fire and Sword",purchase,1.0,0 -60611062,"Mount & Blade With Fire and Sword",play,4.0,0 -60611062,"XCOM Enemy Unknown",purchase,1.0,0 -60611062,"XCOM Enemy Unknown",play,4.0,0 -60611062,"Transistor",purchase,1.0,0 -60611062,"Transistor",play,3.6,0 -60611062,"Don't Starve Together Beta",purchase,1.0,0 -60611062,"Don't Starve Together Beta",play,3.2,0 -60611062,"Total War SHOGUN 2",purchase,1.0,0 -60611062,"Total War SHOGUN 2",play,3.1,0 -60611062,"Deus Ex Human Revolution",purchase,1.0,0 -60611062,"Deus Ex Human Revolution",play,2.8,0 -60611062,"Terraria",purchase,1.0,0 -60611062,"Terraria",play,2.8,0 -60611062,"Trove",purchase,1.0,0 -60611062,"Trove",play,2.8,0 -60611062,"Counter-Strike",purchase,1.0,0 -60611062,"Counter-Strike",play,2.5,0 -60611062,"Unreal Tournament Game of the Year Edition",purchase,1.0,0 -60611062,"Unreal Tournament Game of the Year Edition",play,2.5,0 -60611062,"Call of Juarez Gunslinger",purchase,1.0,0 -60611062,"Call of Juarez Gunslinger",play,2.5,0 -60611062,"Alien Breed 2 Assault",purchase,1.0,0 -60611062,"Alien Breed 2 Assault",play,2.2,0 -60611062,"Portal 2",purchase,1.0,0 -60611062,"Portal 2",play,2.1,0 -60611062,"Firefall",purchase,1.0,0 -60611062,"Firefall",play,1.9,0 -60611062,"Magicka Wizard Wars",purchase,1.0,0 -60611062,"Magicka Wizard Wars",play,1.9,0 -60611062,"Unreal Tournament 2004",purchase,1.0,0 -60611062,"Unreal Tournament 2004",play,1.8,0 -60611062,"Age of Chivalry",purchase,1.0,0 -60611062,"Age of Chivalry",play,1.6,0 -60611062,"Dirty Bomb",purchase,1.0,0 -60611062,"Dirty Bomb",play,1.6,0 -60611062,"Serious Sam 3 BFE",purchase,1.0,0 -60611062,"Serious Sam 3 BFE",play,1.5,0 -60611062,"Far Cry 3 Blood Dragon",purchase,1.0,0 -60611062,"Far Cry 3 Blood Dragon",play,1.4,0 -60611062,"Blender 2.76b",purchase,1.0,0 -60611062,"Blender 2.76b",play,1.3,0 -60611062,"Survarium",purchase,1.0,0 -60611062,"Survarium",play,1.1,0 -60611062,"Just Cause 2",purchase,1.0,0 -60611062,"Just Cause 2",play,1.0,0 -60611062,"Unreal Gold",purchase,1.0,0 -60611062,"Unreal Gold",play,0.9,0 -60611062,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -60611062,"Burnout Paradise The Ultimate Box",play,0.9,0 -60611062,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -60611062,"Counter-Strike Condition Zero Deleted Scenes",play,0.8,0 -60611062,"Card Hunter",purchase,1.0,0 -60611062,"Card Hunter",play,0.8,0 -60611062,"Robocraft",purchase,1.0,0 -60611062,"Robocraft",play,0.7,0 -60611062,"Really Big Sky",purchase,1.0,0 -60611062,"Really Big Sky",play,0.6,0 -60611062,"Ravaged Zombie Apocalypse",purchase,1.0,0 -60611062,"Ravaged Zombie Apocalypse",play,0.6,0 -60611062,"Afterfall InSanity Extended Edition",purchase,1.0,0 -60611062,"Afterfall InSanity Extended Edition",play,0.5,0 -60611062,"Unturned",purchase,1.0,0 -60611062,"Unturned",play,0.5,0 -60611062,"Archeblade",purchase,1.0,0 -60611062,"Archeblade",play,0.4,0 -60611062,"Star Conflict",purchase,1.0,0 -60611062,"Star Conflict",play,0.4,0 -60611062,"Amnesia The Dark Descent",purchase,1.0,0 -60611062,"Amnesia The Dark Descent",play,0.4,0 -60611062,"Insurgency Modern Infantry Combat",purchase,1.0,0 -60611062,"Insurgency Modern Infantry Combat",play,0.3,0 -60611062,"Crash Time II",purchase,1.0,0 -60611062,"Crash Time II",play,0.3,0 -60611062,"F.E.A.R. Online",purchase,1.0,0 -60611062,"F.E.A.R. Online",play,0.3,0 -60611062,"Grimoire Manastorm",purchase,1.0,0 -60611062,"Grimoire Manastorm",play,0.3,0 -60611062,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -60611062,"Just Cause 2 Multiplayer Mod",play,0.3,0 -60611062,"Hitman Sniper Challenge",purchase,1.0,0 -60611062,"Hitman Sniper Challenge",play,0.2,0 -60611062,"Pid ",purchase,1.0,0 -60611062,"Pid ",play,0.2,0 -60611062,"Shadow Warrior Classic (1997)",purchase,1.0,0 -60611062,"Shadow Warrior Classic (1997)",play,0.2,0 -60611062,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -60611062,"Command and Conquer Red Alert 3 - Uprising",play,0.2,0 -60611062,"Anomaly Warzone Earth",purchase,1.0,0 -60611062,"Anomaly Warzone Earth",play,0.2,0 -60611062,"Arma Cold War Assault",purchase,1.0,0 -60611062,"Murder Miners",purchase,1.0,0 -60611062,"Orbital Gear",purchase,1.0,0 -60611062,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -60611062,"Borderlands 2 RU",purchase,1.0,0 -60611062,"Clicker Heroes",purchase,1.0,0 -60611062,"Counter-Strike Condition Zero",purchase,1.0,0 -60611062,"Defiance",purchase,1.0,0 -60611062,"Dino D-Day",purchase,1.0,0 -60611062,"Don't Starve Reign of Giants",purchase,1.0,0 -60611062,"GTR Evolution",purchase,1.0,0 -60611062,"Gun Monkeys",purchase,1.0,0 -60611062,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -60611062,"Magicka Final Frontier",purchase,1.0,0 -60611062,"Magicka Frozen Lake",purchase,1.0,0 -60611062,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -60611062,"Magicka Nippon",purchase,1.0,0 -60611062,"Magicka Party Robes",purchase,1.0,0 -60611062,"Magicka The Watchtower",purchase,1.0,0 -60611062,"Magicka Vietnam",purchase,1.0,0 -60611062,"Magicka Wizard's Survival Kit",purchase,1.0,0 -60611062,"Medal of Honor(TM) Single Player",purchase,1.0,0 -60611062,"Medal of Honor Pre-Order",purchase,1.0,0 -60611062,"Mirror's Edge",purchase,1.0,0 -60611062,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -60611062,"NEOTOKYO",purchase,1.0,0 -60611062,"No More Room in Hell",purchase,1.0,0 -60611062,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -60611062,"Patch testing for Chivalry",purchase,1.0,0 -60611062,"RACE 07",purchase,1.0,0 -60611062,"RaceRoom Racing Experience ",purchase,1.0,0 -60611062,"Receiver",purchase,1.0,0 -60611062,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -60611062,"SpaceChem",purchase,1.0,0 -60611062,"The Banner Saga Factions",purchase,1.0,0 -60611062,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -60611062,"Tom Clancy's Ghost Recon Phantoms - NA Assault Starter Pack",purchase,1.0,0 -60611062,"Tom Clancy's Ghost Recon Phantoms - NA Looks and Power (Assault)",purchase,1.0,0 -60611062,"Tom Clancy's Ghost Recon Phantoms - NA Looks and Power (Recon)",purchase,1.0,0 -60611062,"Tom Clancy's Ghost Recon Phantoms - NA Substance with Style pack (Assault)",purchase,1.0,0 -60611062,"Tom Clancy's Ghost Recon Phantoms - NA Substance with Style pack (Support)",purchase,1.0,0 -60611062,"Tom Clancy's Ghost Recon Phantoms - NA Support Starter Pack",purchase,1.0,0 -60611062,"Unreal II The Awakening",purchase,1.0,0 -60611062,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -60611062,"War of the Roses Kingmaker",purchase,1.0,0 -60611062,"War of the Roses Balance Beta",purchase,1.0,0 -137610845,"Garry's Mod",purchase,1.0,0 -137610845,"Garry's Mod",play,176.0,0 -137610845,"DayZ",purchase,1.0,0 -137610845,"DayZ",play,109.0,0 -137610845,"Fallout 4",purchase,1.0,0 -137610845,"Fallout 4",play,74.0,0 -137610845,"The Elder Scrolls V Skyrim",purchase,1.0,0 -137610845,"The Elder Scrolls V Skyrim",play,71.0,0 -137610845,"Rust",purchase,1.0,0 -137610845,"Rust",play,63.0,0 -137610845,"War Thunder",purchase,1.0,0 -137610845,"War Thunder",play,37.0,0 -137610845,"Warframe",purchase,1.0,0 -137610845,"Warframe",play,19.0,0 -137610845,"Grand Theft Auto V",purchase,1.0,0 -137610845,"Grand Theft Auto V",play,17.7,0 -137610845,"theHunter",purchase,1.0,0 -137610845,"theHunter",play,15.4,0 -137610845,"Heroes & Generals",purchase,1.0,0 -137610845,"Heroes & Generals",play,10.9,0 -137610845,"PlanetSide 2",purchase,1.0,0 -137610845,"PlanetSide 2",play,7.6,0 -137610845,"H1Z1",purchase,1.0,0 -137610845,"H1Z1",play,6.9,0 -137610845,"Counter-Strike Global Offensive",purchase,1.0,0 -137610845,"Counter-Strike Global Offensive",play,6.5,0 -137610845,"Star Conflict",purchase,1.0,0 -137610845,"Star Conflict",play,5.6,0 -137610845,"Team Fortress 2",purchase,1.0,0 -137610845,"Team Fortress 2",play,4.8,0 -137610845,"Ace of Spades",purchase,1.0,0 -137610845,"Ace of Spades",play,3.2,0 -137610845,"Call of Duty Modern Warfare 3",purchase,1.0,0 -137610845,"Call of Duty Modern Warfare 3",play,2.9,0 -137610845,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -137610845,"Call of Duty Black Ops II - Multiplayer",play,2.2,0 -137610845,"Unturned",purchase,1.0,0 -137610845,"Unturned",play,1.7,0 -137610845,"Moonbase Alpha",purchase,1.0,0 -137610845,"Moonbase Alpha",play,1.3,0 -137610845,"Survival Postapocalypse Now",purchase,1.0,0 -137610845,"Survival Postapocalypse Now",play,1.0,0 -137610845,"sZone-Online",purchase,1.0,0 -137610845,"sZone-Online",play,0.5,0 -137610845,"Warface",purchase,1.0,0 -137610845,"Warface",play,0.3,0 -137610845,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -137610845,"Call of Duty Black Ops II",purchase,1.0,0 -137610845,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -137610845,"H1Z1 Test Server",purchase,1.0,0 -137610845,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -137610845,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -137610845,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -137610845,"The Ship",purchase,1.0,0 -137610845,"The Ship Single Player",purchase,1.0,0 -137610845,"The Ship Tutorial",purchase,1.0,0 -203831787,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -203831787,"Tom Clancy's Ghost Recon Phantoms - EU",play,3.6,0 -203831787,"Unturned",purchase,1.0,0 -203831787,"Unturned",play,3.2,0 -203831787,"Dota 2",purchase,1.0,0 -203831787,"Dota 2",play,1.4,0 -203831787,"Robocraft",purchase,1.0,0 -203831787,"Robocraft",play,0.2,0 -117724509,"Dota 2",purchase,1.0,0 -117724509,"Dota 2",play,8.4,0 -165031107,"Dota 2",purchase,1.0,0 -165031107,"Dota 2",play,9.2,0 -226778243,"LEGO MARVEL Super Heroes",purchase,1.0,0 -226778243,"LEGO MARVEL Super Heroes",play,2.8,0 -232600639,"Spiral Knights",purchase,1.0,0 -232600639,"Spiral Knights",play,0.6,0 -190073388,"Marvel Heroes 2015",purchase,1.0,0 -190073388,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -190073388,"Amazing World",purchase,1.0,0 -190073388,"Cakewalk Loop Manager",purchase,1.0,0 -190073388,"Cubic Castles",purchase,1.0,0 -190073388,"Defiance",purchase,1.0,0 -190073388,"Guns and Robots",purchase,1.0,0 -190073388,"No More Room in Hell",purchase,1.0,0 -190073388,"Nosgoth",purchase,1.0,0 -190073388,"Ohm Studio",purchase,1.0,0 -190073388,"Robocraft",purchase,1.0,0 -190073388,"The Expendabros",purchase,1.0,0 -190073388,"Toribash",purchase,1.0,0 -190073388,"Unturned",purchase,1.0,0 -301568811,"Dota 2",purchase,1.0,0 -301568811,"Dota 2",play,1.2,0 -262326400,"Unturned",purchase,1.0,0 -262326400,"Unturned",play,2.0,0 -262326400,"Realm of the Mad God",purchase,1.0,0 -262326400,"Realm of the Mad God",play,0.2,0 -262326400,"Marvel Heroes 2015",purchase,1.0,0 -262326400,"MicroVolts Surge",purchase,1.0,0 -262326400,"Mitos.is The Game",purchase,1.0,0 -210170887,"Counter-Strike Global Offensive",purchase,1.0,0 -210170887,"Counter-Strike Global Offensive",play,614.0,0 -210170887,"Rocket League",purchase,1.0,0 -210170887,"Rocket League",play,83.0,0 -210170887,"Far Cry 4",purchase,1.0,0 -210170887,"Far Cry 4",play,45.0,0 -210170887,"Garry's Mod",purchase,1.0,0 -210170887,"Garry's Mod",play,18.9,0 -210170887,"H1Z1",purchase,1.0,0 -210170887,"H1Z1",play,16.1,0 -210170887,"Saints Row IV",purchase,1.0,0 -210170887,"Saints Row IV",play,10.4,0 -210170887,"Team Fortress 2",purchase,1.0,0 -210170887,"Team Fortress 2",play,9.0,0 -210170887,"APB Reloaded",purchase,1.0,0 -210170887,"APB Reloaded",play,3.8,0 -210170887,"Counter-Strike Source",purchase,1.0,0 -210170887,"Counter-Strike Source",play,3.4,0 -210170887,"Dota 2",purchase,1.0,0 -210170887,"Dota 2",play,2.6,0 -210170887,"Neverwinter",purchase,1.0,0 -210170887,"Neverwinter",play,2.3,0 -210170887,"TERA",purchase,1.0,0 -210170887,"TERA",play,2.3,0 -210170887,"Warframe",purchase,1.0,0 -210170887,"Warframe",play,2.2,0 -210170887,"Super Monday Night Combat",purchase,1.0,0 -210170887,"Super Monday Night Combat",play,0.5,0 -210170887,"Dizzel",purchase,1.0,0 -210170887,"Dizzel",play,0.3,0 -210170887,"Gotham City Impostors Free To Play",purchase,1.0,0 -210170887,"Gotham City Impostors Free To Play",play,0.3,0 -210170887,"H1Z1 Test Server",purchase,1.0,0 -210170887,"H1Z1 Test Server",play,0.2,0 -210170887,"Dirty Bomb",purchase,1.0,0 -210170887,"Dirty Bomb",play,0.2,0 -210170887,"Nosgoth",purchase,1.0,0 -210170887,"Nosgoth",play,0.2,0 -210170887,"Unturned",purchase,1.0,0 -210170887,"Unturned",play,0.1,0 -210170887,"FreeStyle2 Street Basketball",purchase,1.0,0 -210170887,"FreeStyle2 Street Basketball",play,0.1,0 -210170887,"Counter-Strike Nexon Zombies",purchase,1.0,0 -210170887,"Path of Exile",purchase,1.0,0 -210170887,"The Mighty Quest For Epic Loot",purchase,1.0,0 -210170887,"Clown House (Palyao Evi)",purchase,1.0,0 -210170887,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -210170887,"Warface",purchase,1.0,0 -88937470,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -88937470,"Plants vs. Zombies Game of the Year",play,507.0,0 -88937470,"Dungeons of Dredmor",purchase,1.0,0 -88937470,"Dungeons of Dredmor",play,291.0,0 -88937470,"Dungeon Defenders",purchase,1.0,0 -88937470,"Dungeon Defenders",play,1.6,0 -88937470,"Portal",purchase,1.0,0 -88937470,"Portal",play,0.2,0 -88937470,"Portal 2",purchase,1.0,0 -251087552,"Dota 2",purchase,1.0,0 -251087552,"Dota 2",play,17.3,0 -80494893,"Dota 2",purchase,1.0,0 -80494893,"Dota 2",play,669.0,0 -80494893,"Starbound",purchase,1.0,0 -80494893,"Starbound",play,111.0,0 -80494893,"Age of Empires II HD Edition",purchase,1.0,0 -80494893,"Age of Empires II HD Edition",play,94.0,0 -80494893,"Terraria",purchase,1.0,0 -80494893,"Terraria",play,61.0,0 -80494893,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -80494893,"Call of Duty Modern Warfare 3 - Multiplayer",play,38.0,0 -80494893,"Chivalry Medieval Warfare",purchase,1.0,0 -80494893,"Chivalry Medieval Warfare",play,30.0,0 -80494893,"DayZ",purchase,1.0,0 -80494893,"DayZ",play,29.0,0 -80494893,"Crusader Kings II",purchase,1.0,0 -80494893,"Crusader Kings II",play,24.0,0 -80494893,"GRID 2",purchase,1.0,0 -80494893,"GRID 2",play,23.0,0 -80494893,"Counter-Strike Global Offensive",purchase,1.0,0 -80494893,"Counter-Strike Global Offensive",play,22.0,0 -80494893,"Risk of Rain",purchase,1.0,0 -80494893,"Risk of Rain",play,22.0,0 -80494893,"Magicka",purchase,1.0,0 -80494893,"Magicka",play,22.0,0 -80494893,"Portal 2",purchase,1.0,0 -80494893,"Portal 2",play,20.0,0 -80494893,"PAYDAY 2",purchase,1.0,0 -80494893,"PAYDAY 2",play,14.3,0 -80494893,"LIMBO",purchase,1.0,0 -80494893,"LIMBO",play,13.7,0 -80494893,"Killing Floor",purchase,1.0,0 -80494893,"Killing Floor",play,13.5,0 -80494893,"FEZ",purchase,1.0,0 -80494893,"FEZ",play,13.0,0 -80494893,"FTL Faster Than Light",purchase,1.0,0 -80494893,"FTL Faster Than Light",play,10.0,0 -80494893,"Pixel Piracy",purchase,1.0,0 -80494893,"Pixel Piracy",play,8.0,0 -80494893,"Rogue Legacy",purchase,1.0,0 -80494893,"Rogue Legacy",play,7.2,0 -80494893,"E.Y.E Divine Cybermancy",purchase,1.0,0 -80494893,"E.Y.E Divine Cybermancy",play,6.4,0 -80494893,"Saints Row The Third",purchase,1.0,0 -80494893,"Saints Row The Third",play,6.0,0 -80494893,"Project Zomboid",purchase,1.0,0 -80494893,"Project Zomboid",play,5.8,0 -80494893,"Wargame Red Dragon",purchase,1.0,0 -80494893,"Wargame Red Dragon",play,5.0,0 -80494893,"Trine 2",purchase,1.0,0 -80494893,"Trine 2",play,4.8,0 -80494893,"BattleBlock Theater",purchase,1.0,0 -80494893,"BattleBlock Theater",play,4.7,0 -80494893,"Worms Reloaded",purchase,1.0,0 -80494893,"Worms Reloaded",play,3.3,0 -80494893,"Left 4 Dead 2",purchase,1.0,0 -80494893,"Left 4 Dead 2",play,3.2,0 -80494893,"Hammerwatch",purchase,1.0,0 -80494893,"Hammerwatch",play,3.2,0 -80494893,"Company of Heroes",purchase,1.0,0 -80494893,"Company of Heroes",play,3.0,0 -80494893,"Mirror's Edge",purchase,1.0,0 -80494893,"Mirror's Edge",play,2.7,0 -80494893,"Star Wars - Battlefront II",purchase,1.0,0 -80494893,"Star Wars - Battlefront II",play,2.3,0 -80494893,"Stronghold 3",purchase,1.0,0 -80494893,"Stronghold 3",play,2.2,0 -80494893,"Company of Heroes 2",purchase,1.0,0 -80494893,"Company of Heroes 2",play,2.2,0 -80494893,"Natural Selection 2",purchase,1.0,0 -80494893,"Natural Selection 2",play,1.9,0 -80494893,"Super Hexagon",purchase,1.0,0 -80494893,"Super Hexagon",play,1.5,0 -80494893,"Jamestown",purchase,1.0,0 -80494893,"Jamestown",play,1.4,0 -80494893,"Stranded Deep",purchase,1.0,0 -80494893,"Stranded Deep",play,1.3,0 -80494893,"Euro Truck Simulator 2",purchase,1.0,0 -80494893,"Euro Truck Simulator 2",play,1.3,0 -80494893,"Call of Duty Modern Warfare 3",purchase,1.0,0 -80494893,"Call of Duty Modern Warfare 3",play,1.3,0 -80494893,"TrackMania Canyon",purchase,1.0,0 -80494893,"TrackMania Canyon",play,1.3,0 -80494893,"Next Car Game Wreckfest",purchase,1.0,0 -80494893,"Next Car Game Wreckfest",play,1.3,0 -80494893,"Hotline Miami",purchase,1.0,0 -80494893,"Hotline Miami",play,1.2,0 -80494893,"Space Engineers",purchase,1.0,0 -80494893,"Space Engineers",play,0.7,0 -80494893,"Sanctum 2",purchase,1.0,0 -80494893,"Sanctum 2",play,0.6,0 -80494893,"Reus",purchase,1.0,0 -80494893,"Reus",play,0.6,0 -80494893,"F.E.A.R.",purchase,1.0,0 -80494893,"F.E.A.R.",play,0.6,0 -80494893,"Insurgency",purchase,1.0,0 -80494893,"Insurgency",play,0.5,0 -80494893,"Ace of Spades",purchase,1.0,0 -80494893,"Ace of Spades",play,0.4,0 -80494893,"Garry's Mod",purchase,1.0,0 -80494893,"Garry's Mod",play,0.4,0 -80494893,"Planetary Annihilation",purchase,1.0,0 -80494893,"Planetary Annihilation",play,0.3,0 -80494893,"Awesomenauts",purchase,1.0,0 -80494893,"Awesomenauts",play,0.3,0 -80494893,"Galcon 2",purchase,1.0,0 -80494893,"Galcon 2",play,0.3,0 -80494893,"RIFT",purchase,1.0,0 -80494893,"RIFT",play,0.3,0 -80494893,"Lead and Gold - Gangs of the Wild West",purchase,1.0,0 -80494893,"Lead and Gold - Gangs of the Wild West",play,0.3,0 -80494893,"Surgeon Simulator",purchase,1.0,0 -80494893,"Surgeon Simulator",play,0.2,0 -80494893,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -80494893,"Beatbuddy Tale of the Guardians",play,0.1,0 -80494893,"Rust",purchase,1.0,0 -80494893,"Symphony",purchase,1.0,0 -80494893,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -80494893,"Stealth Bastard Deluxe",purchase,1.0,0 -80494893,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -80494893,"Dead Island",purchase,1.0,0 -80494893,"BIT.TRIP RUNNER",purchase,1.0,0 -80494893,"AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome",purchase,1.0,0 -80494893,"Antichamber",purchase,1.0,0 -80494893,"Aquaria",purchase,1.0,0 -80494893,"Audiosurf",purchase,1.0,0 -80494893,"Beat Hazard",purchase,1.0,0 -80494893,"Before the Echo",purchase,1.0,0 -80494893,"Blackguards",purchase,1.0,0 -80494893,"Borderlands 2",purchase,1.0,0 -80494893,"Company of Heroes (New Steam Version)",purchase,1.0,0 -80494893,"Company of Heroes 2 - Ardennes Assault",purchase,1.0,0 -80494893,"Crusader Kings II Hymns of Abraham",purchase,1.0,0 -80494893,"Crusader Kings II Military Orders Unit Pack",purchase,1.0,0 -80494893,"Crusader Kings II Sons of Abraham",purchase,1.0,0 -80494893,"Crusader Kings II Warriors of Faith Unit Pack",purchase,1.0,0 -80494893,"Darksiders",purchase,1.0,0 -80494893,"Darksiders II",purchase,1.0,0 -80494893,"Darksiders II Deathinitive Edition",purchase,1.0,0 -80494893,"Darksiders II Soundtrack",purchase,1.0,0 -80494893,"Darksiders Soundtrack",purchase,1.0,0 -80494893,"Dishonored",purchase,1.0,0 -80494893,"Dungeon Defenders",purchase,1.0,0 -80494893,"Dust An Elysian Tail",purchase,1.0,0 -80494893,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -80494893,"F.E.A.R. Extraction Point",purchase,1.0,0 -80494893,"Fractal Make Blooms Not War",purchase,1.0,0 -80494893,"Full Mojo Rampage",purchase,1.0,0 -80494893,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -80494893,"Grand Theft Auto IV",purchase,1.0,0 -80494893,"Guacamelee! Gold Edition",purchase,1.0,0 -80494893,"Guns of Icarus Online",purchase,1.0,0 -80494893,"Killing Floor Uncovered",purchase,1.0,0 -80494893,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -80494893,"Magicka Nippon",purchase,1.0,0 -80494893,"Magicka Vietnam",purchase,1.0,0 -80494893,"Magicka Wizard's Survival Kit",purchase,1.0,0 -80494893,"Mark of the Ninja",purchase,1.0,0 -80494893,"Monaco",purchase,1.0,0 -80494893,"Organ Trail Director's Cut",purchase,1.0,0 -80494893,"Patch testing for Chivalry",purchase,1.0,0 -80494893,"Path of Exile",purchase,1.0,0 -80494893,"Retro/Grade",purchase,1.0,0 -80494893,"Robocraft",purchase,1.0,0 -80494893,"Saints Row IV",purchase,1.0,0 -80494893,"SpeedRunners",purchase,1.0,0 -80494893,"Starbound - Soundtrack",purchase,1.0,0 -80494893,"Starbound - Unstable",purchase,1.0,0 -80494893,"The Swapper",purchase,1.0,0 -80494893,"Wargame AirLand Battle",purchase,1.0,0 -80494893,"Wargame European Escalation",purchase,1.0,0 -255333449,"Dota 2",purchase,1.0,0 -255333449,"Dota 2",play,50.0,0 -176402067,"Unturned",purchase,1.0,0 -176402067,"World of Guns Gun Disassembly",purchase,1.0,0 -41719717,"Counter-Strike",purchase,1.0,0 -41719717,"Counter-Strike",play,3840.0,0 -41719717,"Dota 2",purchase,1.0,0 -41719717,"Dota 2",play,638.0,0 -41719717,"Counter-Strike Global Offensive",purchase,1.0,0 -41719717,"Counter-Strike Global Offensive",play,487.0,0 -41719717,"PAYDAY 2",purchase,1.0,0 -41719717,"PAYDAY 2",play,79.0,0 -41719717,"Grand Theft Auto V",purchase,1.0,0 -41719717,"Grand Theft Auto V",play,71.0,0 -41719717,"Counter-Strike Source",purchase,1.0,0 -41719717,"Counter-Strike Source",play,5.1,0 -41719717,"Evolve",purchase,1.0,0 -41719717,"Evolve",play,2.6,0 -41719717,"Hitman Absolution",purchase,1.0,0 -41719717,"Hitman Absolution",play,1.6,0 -41719717,"Rise of Incarnates",purchase,1.0,0 -41719717,"Rise of Incarnates",play,1.0,0 -41719717,"Infinite Crisis",purchase,1.0,0 -41719717,"Infinite Crisis",play,0.7,0 -41719717,"DOOM 3",purchase,1.0,0 -41719717,"DOOM 3",play,0.6,0 -41719717,"Knightmare Tower",purchase,1.0,0 -41719717,"Knightmare Tower",play,0.5,0 -41719717,"Yet Another Zombie Defense",purchase,1.0,0 -41719717,"Yet Another Zombie Defense",play,0.4,0 -41719717,"Violett",purchase,1.0,0 -41719717,"Violett",play,0.4,0 -41719717,"Larva Mortus",purchase,1.0,0 -41719717,"Larva Mortus",play,0.3,0 -41719717,"David.",purchase,1.0,0 -41719717,"David.",play,0.2,0 -41719717,"The Hat Man Shadow Ward",purchase,1.0,0 -41719717,"The Hat Man Shadow Ward",play,0.1,0 -41719717,"Blade Symphony",purchase,1.0,0 -41719717,"Blade Symphony",play,0.1,0 -41719717,"Quake Live",purchase,1.0,0 -41719717,"Hitman Codename 47",purchase,1.0,0 -41719717,"Hitman Blood Money",purchase,1.0,0 -41719717,"GEARCRACK Arena",purchase,1.0,0 -41719717,"Amnesia The Dark Descent",purchase,1.0,0 -41719717,"Clicker Heroes",purchase,1.0,0 -41719717,"Counter-Strike Condition Zero",purchase,1.0,0 -41719717,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -41719717,"Day of Defeat",purchase,1.0,0 -41719717,"Deathmatch Classic",purchase,1.0,0 -41719717,"DOOM 3 Resurrection of Evil",purchase,1.0,0 -41719717,"Escape Machines",purchase,1.0,0 -41719717,"Hitman 2 Silent Assassin",purchase,1.0,0 -41719717,"Hitman Contracts",purchase,1.0,0 -41719717,"Hitman Sniper Challenge",purchase,1.0,0 -41719717,"Knights and Merchants",purchase,1.0,0 -41719717,"Neverwinter",purchase,1.0,0 -41719717,"PAYDAY The Heist",purchase,1.0,0 -41719717,"PAYDAY The Heist Game Soundtrack",purchase,1.0,0 -41719717,"PAYDAY Wolf Pack",purchase,1.0,0 -41719717,"Portal Stories Mel",purchase,1.0,0 -41719717,"Ricochet",purchase,1.0,0 -41719717,"Saviors",purchase,1.0,0 -41719717,"Why So Evil",purchase,1.0,0 -157885152,"Dota 2",purchase,1.0,0 -157885152,"Dota 2",play,725.0,0 -198561746,"Killing Floor",purchase,1.0,0 -198561746,"Killing Floor",play,86.0,0 -198561746,"Killing Floor 2",purchase,1.0,0 -198561746,"Killing Floor 2",play,8.6,0 -198561746,"Monaco",purchase,1.0,0 -198561746,"Monaco",play,0.7,0 -198561746,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -196231194,"Team Fortress 2",purchase,1.0,0 -196231194,"Team Fortress 2",play,11.9,0 -196231194,"Age of Empires II HD Edition",purchase,1.0,0 -196231194,"Age of Empires II HD Edition",play,9.7,0 -196231194,"Eldevin",purchase,1.0,0 -196231194,"Eldevin",play,4.8,0 -196231194,"Dead Island Epidemic",purchase,1.0,0 -196231194,"Dead Island Epidemic",play,0.7,0 -86182317,"Warframe",purchase,1.0,0 -86182317,"Warframe",play,596.0,0 -86182317,"PAYDAY 2",purchase,1.0,0 -86182317,"PAYDAY 2",play,251.0,0 -86182317,"Borderlands 2",purchase,1.0,0 -86182317,"Borderlands 2",play,98.0,0 -86182317,"Assassin's Creed IV Black Flag",purchase,1.0,0 -86182317,"Assassin's Creed IV Black Flag",play,73.0,0 -86182317,"War Thunder",purchase,1.0,0 -86182317,"War Thunder",play,66.0,0 -86182317,"Middle-earth Shadow of Mordor",purchase,1.0,0 -86182317,"Middle-earth Shadow of Mordor",play,58.0,0 -86182317,"Sniper Elite V2",purchase,1.0,0 -86182317,"Sniper Elite V2",play,38.0,0 -86182317,"Batman Arkham City GOTY",purchase,1.0,0 -86182317,"Batman Arkham City GOTY",play,36.0,0 -86182317,"Sniper Elite 3",purchase,1.0,0 -86182317,"Sniper Elite 3",play,26.0,0 -86182317,"Spec Ops The Line",purchase,1.0,0 -86182317,"Spec Ops The Line",play,25.0,0 -86182317,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -86182317,"Batman Arkham Asylum GOTY Edition",play,19.1,0 -86182317,"Alan Wake",purchase,1.0,0 -86182317,"Alan Wake",play,14.4,0 -86182317,"BioShock 2",purchase,1.0,0 -86182317,"BioShock 2",play,13.0,0 -86182317,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -86182317,"Star Wars The Force Unleashed Ultimate Sith Edition",play,9.0,0 -86182317,"Alien Isolation",purchase,1.0,0 -86182317,"Alien Isolation",play,8.7,0 -86182317,"Portal 2",purchase,1.0,0 -86182317,"Portal 2",play,7.9,0 -86182317,"Star Wars The Force Unleashed II",purchase,1.0,0 -86182317,"Star Wars The Force Unleashed II",play,7.1,0 -86182317,"The Stanley Parable",purchase,1.0,0 -86182317,"The Stanley Parable",play,5.5,0 -86182317,"Alan Wake's American Nightmare",purchase,1.0,0 -86182317,"Alan Wake's American Nightmare",play,4.1,0 -86182317,"PAYDAY The Heist",purchase,1.0,0 -86182317,"PAYDAY The Heist",play,3.2,0 -86182317,"Star Wars Dark Forces",purchase,1.0,0 -86182317,"Star Wars Dark Forces",play,3.1,0 -86182317,"Portal",purchase,1.0,0 -86182317,"Portal",play,2.5,0 -86182317,"Star Wars Republic Commando",purchase,1.0,0 -86182317,"Star Wars Republic Commando",play,2.2,0 -86182317,"BioShock",purchase,1.0,0 -86182317,"BioShock",play,1.3,0 -86182317,"Substance Painter",purchase,1.0,0 -86182317,"Substance Painter",play,0.8,0 -86182317,"Star Wars - Battlefront II",purchase,1.0,0 -86182317,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -86182317,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -86182317,"Star Wars Empire at War Gold",purchase,1.0,0 -86182317,"Star Wars Knights of the Old Republic",purchase,1.0,0 -86182317,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -86182317,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -86182317,"Star Wars Starfighter",purchase,1.0,0 -86182317,"Star Wars The Clone Wars Republic Heroes",purchase,1.0,0 -86182317,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -169054646,"Unturned",purchase,1.0,0 -169054646,"Unturned",play,6.0,0 -169054646,"APB Reloaded",purchase,1.0,0 -169054646,"APB Reloaded",play,3.9,0 -169054646,"Team Fortress 2",purchase,1.0,0 -169054646,"Team Fortress 2",play,3.7,0 -169054646,"theHunter",purchase,1.0,0 -169054646,"theHunter",play,3.1,0 -169054646,"PAYDAY 2",purchase,1.0,0 -169054646,"PAYDAY 2",play,2.6,0 -169054646,"Reversion - The Escape",purchase,1.0,0 -169054646,"Reversion - The Escape",play,2.2,0 -169054646,"Robocraft",purchase,1.0,0 -169054646,"Robocraft",play,1.4,0 -169054646,"Tribes Ascend",purchase,1.0,0 -169054646,"Tribes Ascend",play,0.5,0 -169054646,"8BitMMO",purchase,1.0,0 -169054646,"8BitMMO",play,0.4,0 -169054646,"Realm of the Mad God",purchase,1.0,0 -169054646,"Realm of the Mad God",play,0.2,0 -169054646,"Counter-Strike Nexon Zombies",purchase,1.0,0 -169054646,"Counter-Strike Nexon Zombies",play,0.1,0 -169054646,"Dirty Bomb",purchase,1.0,0 -169054646,"Run and Fire",purchase,1.0,0 -277286516,"Rise of Incarnates",purchase,1.0,0 -277286516,"UberStrike",purchase,1.0,0 -277286516,"Gear Up",purchase,1.0,0 -57541240,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -57541240,"Call of Duty Modern Warfare 2 - Multiplayer",play,23.0,0 -57541240,"Call of Duty Modern Warfare 2",purchase,1.0,0 -57541240,"Call of Duty Modern Warfare 2",play,15.3,0 -57541240,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -57541240,"F.E.A.R. 2 Project Origin",play,4.1,0 -241462110,"Dota 2",purchase,1.0,0 -241462110,"Dota 2",play,3.3,0 -306162738,"Dota 2",purchase,1.0,0 -306162738,"Dota 2",play,0.3,0 -192075614,"Unturned",purchase,1.0,0 -192075614,"Unturned",play,0.7,0 -228033247,"Unturned",purchase,1.0,0 -228033247,"Unturned",play,8.1,0 -176563564,"Dota 2",purchase,1.0,0 -176563564,"Dota 2",play,64.0,0 -176563564,"FreeStyle2 Street Basketball",purchase,1.0,0 -176563564,"Warframe",purchase,1.0,0 -51020486,"Call of Duty Black Ops",purchase,1.0,0 -51020486,"Call of Duty Black Ops",play,34.0,0 -51020486,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -51020486,"Warhammer 40,000 Dawn of War II",play,19.7,0 -51020486,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -303010440,"Warframe",purchase,1.0,0 -303010440,"Warframe",play,8.5,0 -143156437,"Dota 2",purchase,1.0,0 -143156437,"Dota 2",play,6.7,0 -226261535,"Dota 2",purchase,1.0,0 -226261535,"Dota 2",play,15.7,0 -140178954,"Dota 2",purchase,1.0,0 -140178954,"Dota 2",play,3.4,0 -211363179,"Robocraft",purchase,1.0,0 -211363179,"Robocraft",play,7.3,0 -211363179,"Dungeons & Dragons Online",purchase,1.0,0 -211363179,"Empire Total War",purchase,1.0,0 -211363179,"Rome Total War",purchase,1.0,0 -211363179,"The Forest",purchase,1.0,0 -211363179,"theHunter",purchase,1.0,0 -240448703,"Dota 2",purchase,1.0,0 -240448703,"Dota 2",play,8.5,0 -234459658,"Dota 2",purchase,1.0,0 -234459658,"Dota 2",play,6.9,0 -234459658,"DiggerOnline",purchase,1.0,0 -234459658,"DiggerOnline",play,1.6,0 -234459658,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -234459658,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.3,0 -234459658,"Counter-Strike Nexon Zombies",purchase,1.0,0 -234459658,"Heroes & Generals",purchase,1.0,0 -234459658,"Warframe",purchase,1.0,0 -250736247,"Dota 2",purchase,1.0,0 -250736247,"Dota 2",play,7.4,0 -250736247,"APB Reloaded",purchase,1.0,0 -250736247,"FreeStyle2 Street Basketball",purchase,1.0,0 -250736247,"RaceRoom Racing Experience ",purchase,1.0,0 -202863512,"Marvel Heroes 2015",purchase,1.0,0 -202863512,"Marvel Heroes 2015",play,0.2,0 -202863512,"Dungeons & Dragons Online",purchase,1.0,0 -202863512,"EverQuest Free-to-Play",purchase,1.0,0 -176225382,"DARK SOULS II",purchase,1.0,0 -176225382,"DARK SOULS II",play,101.0,0 -176225382,"Don't Starve Together Beta",purchase,1.0,0 -176225382,"Don't Starve Together Beta",play,74.0,0 -176225382,"Rampage Knights",purchase,1.0,0 -176225382,"Rampage Knights",play,30.0,0 -176225382,"Spore",purchase,1.0,0 -176225382,"Spore",play,10.3,0 -176225382,"Dota 2",purchase,1.0,0 -176225382,"Dota 2",play,2.6,0 -176225382,"Don't Starve",purchase,1.0,0 -176225382,"Don't Starve Reign of Giants",purchase,1.0,0 -176225382,"Spore Creepy & Cute Parts Pack",purchase,1.0,0 -176225382,"Spore Galactic Adventures",purchase,1.0,0 -144071257,"AdVenture Capitalist",purchase,1.0,0 -144071257,"AdVenture Capitalist",play,482.0,0 -144071257,"The Binding of Isaac Rebirth",purchase,1.0,0 -144071257,"The Binding of Isaac Rebirth",play,349.0,0 -144071257,"RPG Maker VX Ace",purchase,1.0,0 -144071257,"RPG Maker VX Ace",play,214.0,0 -144071257,"The Witcher 3 Wild Hunt",purchase,1.0,0 -144071257,"The Witcher 3 Wild Hunt",play,99.0,0 -144071257,"Terraria",purchase,1.0,0 -144071257,"Terraria",play,69.0,0 -144071257,"Spelunky",purchase,1.0,0 -144071257,"Spelunky",play,65.0,0 -144071257,"Starbound",purchase,1.0,0 -144071257,"Starbound",play,49.0,0 -144071257,"Mountain",purchase,1.0,0 -144071257,"Mountain",play,31.0,0 -144071257,"Life Is Strange",purchase,1.0,0 -144071257,"Life Is Strange",play,27.0,0 -144071257,"Crusader Kings II",purchase,1.0,0 -144071257,"Crusader Kings II",play,26.0,0 -144071257,"Invisible, Inc.",purchase,1.0,0 -144071257,"Invisible, Inc.",play,24.0,0 -144071257,"Democracy 3",purchase,1.0,0 -144071257,"Democracy 3",play,21.0,0 -144071257,"Don't Starve",purchase,1.0,0 -144071257,"Don't Starve",play,10.8,0 -144071257,"You Need A Budget 4 (YNAB)",purchase,1.0,0 -144071257,"You Need A Budget 4 (YNAB)",play,10.0,0 -144071257,"Anna's Quest",purchase,1.0,0 -144071257,"Anna's Quest",play,9.3,0 -144071257,"Bastion",purchase,1.0,0 -144071257,"Bastion",play,8.6,0 -144071257,"The Elder Scrolls V Skyrim",purchase,1.0,0 -144071257,"The Elder Scrolls V Skyrim",play,6.9,0 -144071257,"Amnesia Memories",purchase,1.0,0 -144071257,"Amnesia Memories",play,6.0,0 -144071257,"Rust",purchase,1.0,0 -144071257,"Rust",play,5.7,0 -144071257,"Windborne",purchase,1.0,0 -144071257,"Windborne",play,5.1,0 -144071257,"ARK Survival Evolved",purchase,1.0,0 -144071257,"ARK Survival Evolved",play,4.6,0 -144071257,"Fading Hearts",purchase,1.0,0 -144071257,"Fading Hearts",play,4.4,0 -144071257,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -144071257,"The Witcher 2 Assassins of Kings Enhanced Edition",play,4.3,0 -144071257,"Tropico 5",purchase,1.0,0 -144071257,"Tropico 5",play,4.2,0 -144071257,"Don't Starve Together Beta",purchase,1.0,0 -144071257,"Don't Starve Together Beta",play,4.0,0 -144071257,"Hatoful Boyfriend",purchase,1.0,0 -144071257,"Hatoful Boyfriend",play,3.5,0 -144071257,"Long Live The Queen",purchase,1.0,0 -144071257,"Long Live The Queen",play,3.5,0 -144071257,"Crystals of Time",purchase,1.0,0 -144071257,"Crystals of Time",play,3.0,0 -144071257,"Dota 2",purchase,1.0,0 -144071257,"Dota 2",play,2.8,0 -144071257,"Besiege",purchase,1.0,0 -144071257,"Besiege",play,2.4,0 -144071257,"Black Ink",purchase,1.0,0 -144071257,"Black Ink",play,2.3,0 -144071257,"Anno 2070",purchase,1.0,0 -144071257,"Anno 2070",play,1.6,0 -144071257,"This War of Mine",purchase,1.0,0 -144071257,"This War of Mine",play,1.5,0 -144071257,"Beyond Eyes",purchase,1.0,0 -144071257,"Beyond Eyes",play,1.5,0 -144071257,"Narcissu 1st & 2nd",purchase,1.0,0 -144071257,"Narcissu 1st & 2nd",play,1.4,0 -144071257,"Reus",purchase,1.0,0 -144071257,"Reus",play,1.0,0 -144071257,"The Ship",purchase,1.0,0 -144071257,"The Ship",play,0.7,0 -144071257,"Botanicula",purchase,1.0,0 -144071257,"Botanicula",play,0.5,0 -144071257,"Gone Home",purchase,1.0,0 -144071257,"Gone Home",play,0.2,0 -144071257,"Dark Echo",purchase,1.0,0 -144071257,"Dark Echo",play,0.1,0 -144071257,"Spooky's House of Jump Scares",purchase,1.0,0 -144071257,"60 Seconds!",purchase,1.0,0 -144071257,"A Bird Story",purchase,1.0,0 -144071257,"Amnesia The Dark Descent",purchase,1.0,0 -144071257,"Antichamber",purchase,1.0,0 -144071257,"Asphyxia",purchase,1.0,0 -144071257,"Banished",purchase,1.0,0 -144071257,"Child of Light",purchase,1.0,0 -144071257,"Cinders",purchase,1.0,0 -144071257,"Cities Skylines",purchase,1.0,0 -144071257,"Clickteam Fusion 2.5",purchase,1.0,0 -144071257,"Commander Conquest of the Americas Gold",purchase,1.0,0 -144071257,"Crusader Kings II Hymns of Abraham",purchase,1.0,0 -144071257,"Crusader Kings II Military Orders Unit Pack",purchase,1.0,0 -144071257,"Crusader Kings II Sons of Abraham",purchase,1.0,0 -144071257,"Crusader Kings II Warriors of Faith Unit Pack",purchase,1.0,0 -144071257,"DayZ",purchase,1.0,0 -144071257,"Deponia",purchase,1.0,0 -144071257,"Don't Starve Reign of Giants",purchase,1.0,0 -144071257,"Dragon Age Origins",purchase,1.0,0 -144071257,"Dust An Elysian Tail",purchase,1.0,0 -144071257,"Dysfunctional Systems Learning to Manage Chaos",purchase,1.0,0 -144071257,"East India Company Gold",purchase,1.0,0 -144071257,"Edna & Harvey Harvey's New Eyes",purchase,1.0,0 -144071257,"Enclave",purchase,1.0,0 -144071257,"Garry's Mod",purchase,1.0,0 -144071257,"Goat Simulator",purchase,1.0,0 -144071257,"How to Survive",purchase,1.0,0 -144071257,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -144071257,"Knights and Merchants",purchase,1.0,0 -144071257,"KnightShift",purchase,1.0,0 -144071257,"Memoria",purchase,1.0,0 -144071257,"Might & Magic Heroes VI",purchase,1.0,0 -144071257,"Never Alone (Kisima Ingitchuna)",purchase,1.0,0 -144071257,"Pirates of Black Cove Gold",purchase,1.0,0 -144071257,"Princess Isabella",purchase,1.0,0 -144071257,"Prison Architect",purchase,1.0,0 -144071257,"Race The Sun",purchase,1.0,0 -144071257,"Remember Me",purchase,1.0,0 -144071257,"Robocraft",purchase,1.0,0 -144071257,"RPG Maker DS Resource Pack",purchase,1.0,0 -144071257,"RPG Maker Inspirational Vol. 2",purchase,1.0,0 -144071257,"RPG Maker Rural Farm Tiles Resource Pack",purchase,1.0,0 -144071257,"RPG Maker The Simple Life Music Pack",purchase,1.0,0 -144071257,"Sakura Spirit",purchase,1.0,0 -144071257,"Schrdinger's Cat and the Raiders of the Lost Quark",purchase,1.0,0 -144071257,"Sid Meier's Civilization V",purchase,1.0,0 -144071257,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -144071257,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -144071257,"SimCity 4 Deluxe",purchase,1.0,0 -144071257,"Sir, You Are Being Hunted",purchase,1.0,0 -144071257,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -144071257,"Starbound - Unstable",purchase,1.0,0 -144071257,"Tengami",purchase,1.0,0 -144071257,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -144071257,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -144071257,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -144071257,"The Night of the Rabbit",purchase,1.0,0 -144071257,"The Royal Trap The Confines Of The Crown",purchase,1.0,0 -144071257,"The Ship Single Player",purchase,1.0,0 -144071257,"The Ship Tutorial",purchase,1.0,0 -144071257,"The Testament of Sherlock Holmes",purchase,1.0,0 -144071257,"The Whispered World Special Edition",purchase,1.0,0 -144071257,"The Witcher Enhanced Edition",purchase,1.0,0 -144071257,"To the Moon",purchase,1.0,0 -144071257,"Trine 2",purchase,1.0,0 -144071257,"Two Worlds Epic Edition",purchase,1.0,0 -144071257,"Unturned",purchase,1.0,0 -32847394,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -32847394,"Call of Duty Modern Warfare 2 - Multiplayer",play,243.0,0 -32847394,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -32847394,"Call of Duty Black Ops - Multiplayer",play,115.0,0 -32847394,"Tropico 4",purchase,1.0,0 -32847394,"Tropico 4",play,94.0,0 -32847394,"Dragon Age Origins",purchase,1.0,0 -32847394,"Dragon Age Origins",play,93.0,0 -32847394,"Tropico 3 Absolute Power",purchase,1.0,0 -32847394,"Tropico 3 Absolute Power",play,67.0,0 -32847394,"Tropico 5",purchase,1.0,0 -32847394,"Tropico 5",play,63.0,0 -32847394,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -32847394,"Call of Duty Modern Warfare 3 - Multiplayer",play,59.0,0 -32847394,"Team Fortress 2",purchase,1.0,0 -32847394,"Team Fortress 2",play,57.0,0 -32847394,"Call of Duty Modern Warfare 2",purchase,1.0,0 -32847394,"Call of Duty Modern Warfare 2",play,46.0,0 -32847394,"Battlefield Bad Company 2",purchase,1.0,0 -32847394,"Battlefield Bad Company 2",play,45.0,0 -32847394,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -32847394,"The Witcher 2 Assassins of Kings Enhanced Edition",play,42.0,0 -32847394,"Medieval II Total War",purchase,1.0,0 -32847394,"Medieval II Total War",play,39.0,0 -32847394,"Cities in Motion",purchase,1.0,0 -32847394,"Cities in Motion",play,35.0,0 -32847394,"South Park The Stick of Truth",purchase,1.0,0 -32847394,"South Park The Stick of Truth",play,34.0,0 -32847394,"Call of Duty World at War",purchase,1.0,0 -32847394,"Call of Duty World at War",play,25.0,0 -32847394,"Half-Life 2",purchase,1.0,0 -32847394,"Half-Life 2",play,24.0,0 -32847394,"Left 4 Dead",purchase,1.0,0 -32847394,"Left 4 Dead",play,24.0,0 -32847394,"Call of Duty Black Ops",purchase,1.0,0 -32847394,"Call of Duty Black Ops",play,13.2,0 -32847394,"Call of Duty Modern Warfare 3",purchase,1.0,0 -32847394,"Call of Duty Modern Warfare 3",play,12.7,0 -32847394,"Portal",purchase,1.0,0 -32847394,"Portal",play,12.2,0 -32847394,"Half-Life 2 Episode Two",purchase,1.0,0 -32847394,"Half-Life 2 Episode Two",play,11.1,0 -32847394,"Folk Tale",purchase,1.0,0 -32847394,"Folk Tale",play,11.1,0 -32847394,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -32847394,"Call of Duty Black Ops II - Multiplayer",play,8.2,0 -32847394,"Half-Life 2 Episode One",purchase,1.0,0 -32847394,"Half-Life 2 Episode One",play,7.7,0 -32847394,"From Dust",purchase,1.0,0 -32847394,"From Dust",play,7.1,0 -32847394,"Portal 2",purchase,1.0,0 -32847394,"Portal 2",play,6.2,0 -32847394,"Dota 2",purchase,1.0,0 -32847394,"Dota 2",play,6.0,0 -32847394,"The Stanley Parable",purchase,1.0,0 -32847394,"The Stanley Parable",play,2.5,0 -32847394,"Medieval II Total War Kingdoms",purchase,1.0,0 -32847394,"Medieval II Total War Kingdoms",play,1.2,0 -32847394,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -32847394,"Call of Duty 4 Modern Warfare",play,1.1,0 -32847394,"Half-Life 2 Lost Coast",purchase,1.0,0 -32847394,"Half-Life 2 Lost Coast",play,0.3,0 -32847394,"Call of Duty Black Ops II",purchase,1.0,0 -32847394,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -32847394,"Empire Total War",purchase,1.0,0 -32847394,"Rome Total War",purchase,1.0,0 -32847394,"Rome Total War - Alexander",purchase,1.0,0 -32847394,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -16285568,"Counter-Strike Source",purchase,1.0,0 -16285568,"Half-Life 2",purchase,1.0,0 -16285568,"Half-Life 2 Deathmatch",purchase,1.0,0 -16285568,"Half-Life 2 Lost Coast",purchase,1.0,0 -230235878,"Survarium",purchase,1.0,0 -230235878,"Survarium",play,1.8,0 -230235878,"Dead Island Epidemic",purchase,1.0,0 -230235878,"Heroes & Generals",purchase,1.0,0 -230235878,"War Thunder",purchase,1.0,0 -18888504,"Counter-Strike Source",purchase,1.0,0 -18888504,"Counter-Strike Source",play,37.0,0 -18888504,"Counter-Strike",purchase,1.0,0 -18888504,"Counter-Strike Condition Zero",purchase,1.0,0 -18888504,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -18888504,"Day of Defeat",purchase,1.0,0 -18888504,"Day of Defeat Source",purchase,1.0,0 -18888504,"Deathmatch Classic",purchase,1.0,0 -18888504,"Half-Life 2 Deathmatch",purchase,1.0,0 -18888504,"Half-Life 2 Lost Coast",purchase,1.0,0 -18888504,"Ricochet",purchase,1.0,0 -170693945,"Dota 2",purchase,1.0,0 -170693945,"Dota 2",play,0.5,0 -153835752,"Dota 2",purchase,1.0,0 -153835752,"Dota 2",play,0.4,0 -50797633,"Dota 2",purchase,1.0,0 -50797633,"Dota 2",play,1434.0,0 -50797633,"PAYDAY 2",purchase,1.0,0 -50797633,"PAYDAY 2",play,511.0,0 -50797633,"Left 4 Dead 2",purchase,1.0,0 -50797633,"Left 4 Dead 2",play,479.0,0 -50797633,"DC Universe Online",purchase,1.0,0 -50797633,"DC Universe Online",play,127.0,0 -50797633,"Team Fortress 2",purchase,1.0,0 -50797633,"Team Fortress 2",play,62.0,0 -50797633,"Dungeon Defenders",purchase,1.0,0 -50797633,"Dungeon Defenders",play,56.0,0 -50797633,"Assassin's Creed Brotherhood",purchase,1.0,0 -50797633,"Assassin's Creed Brotherhood",play,32.0,0 -50797633,"Portal 2",purchase,1.0,0 -50797633,"Portal 2",play,29.0,0 -50797633,"Max Payne 3",purchase,1.0,0 -50797633,"Max Payne 3",play,28.0,0 -50797633,"Saints Row The Third",purchase,1.0,0 -50797633,"Saints Row The Third",play,20.0,0 -50797633,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -50797633,"Deus Ex Human Revolution - Director's Cut",play,18.2,0 -50797633,"Ace of Spades",purchase,1.0,0 -50797633,"Ace of Spades",play,17.2,0 -50797633,"Counter-Strike",purchase,1.0,0 -50797633,"Counter-Strike",play,14.4,0 -50797633,"The Wolf Among Us",purchase,1.0,0 -50797633,"The Wolf Among Us",play,13.2,0 -50797633,"Metro 2033",purchase,1.0,0 -50797633,"Metro 2033",play,12.1,0 -50797633,"Sniper Elite V2",purchase,1.0,0 -50797633,"Sniper Elite V2",play,11.2,0 -50797633,"Company of Heroes 2",purchase,1.0,0 -50797633,"Company of Heroes 2",play,10.4,0 -50797633,"Counter-Strike Global Offensive",purchase,1.0,0 -50797633,"Counter-Strike Global Offensive",play,7.8,0 -50797633,"Natural Selection 2",purchase,1.0,0 -50797633,"Natural Selection 2",play,7.5,0 -50797633,"Crysis 2 Maximum Edition",purchase,1.0,0 -50797633,"Crysis 2 Maximum Edition",play,7.0,0 -50797633,"PAYDAY The Heist",purchase,1.0,0 -50797633,"PAYDAY The Heist",play,7.0,0 -50797633,"America's Army 3",purchase,1.0,0 -50797633,"America's Army 3",play,6.5,0 -50797633,"Sleeping Dogs",purchase,1.0,0 -50797633,"Sleeping Dogs",play,5.6,0 -50797633,"Portal",purchase,1.0,0 -50797633,"Portal",play,5.0,0 -50797633,"Trine 2",purchase,1.0,0 -50797633,"Trine 2",play,5.0,0 -50797633,"Mirror's Edge",purchase,1.0,0 -50797633,"Mirror's Edge",play,5.0,0 -50797633,"Hotline Miami 2 Wrong Number",purchase,1.0,0 -50797633,"Hotline Miami 2 Wrong Number",play,4.9,0 -50797633,"Just Cause 2",purchase,1.0,0 -50797633,"Just Cause 2",play,3.3,0 -50797633,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -50797633,"Command and Conquer Red Alert 3 - Uprising",play,2.6,0 -50797633,"Garry's Mod",purchase,1.0,0 -50797633,"Garry's Mod",play,1.8,0 -50797633,"Shadowgrounds",purchase,1.0,0 -50797633,"Shadowgrounds",play,0.8,0 -50797633,"Sniper Ghost Warrior",purchase,1.0,0 -50797633,"Sniper Ghost Warrior",play,0.8,0 -50797633,"Left 4 Dead",purchase,1.0,0 -50797633,"Left 4 Dead",play,0.8,0 -50797633,"Counter-Strike Condition Zero",purchase,1.0,0 -50797633,"Counter-Strike Condition Zero",play,0.7,0 -50797633,"Hotline Miami",purchase,1.0,0 -50797633,"Hotline Miami",play,0.6,0 -50797633,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -50797633,"Just Cause 2 Multiplayer Mod",play,0.5,0 -50797633,"Magicka Wizard Wars",purchase,1.0,0 -50797633,"Magicka Wizard Wars",play,0.4,0 -50797633,"GameMaker Studio",purchase,1.0,0 -50797633,"GameMaker Studio",play,0.4,0 -50797633,"AdVenture Capitalist",purchase,1.0,0 -50797633,"Afterfall InSanity Extended Edition",purchase,1.0,0 -50797633,"Age of Empires II HD Edition",purchase,1.0,0 -50797633,"Age of Empires II HD The Forgotten",purchase,1.0,0 -50797633,"Age of Empires III Complete Collection",purchase,1.0,0 -50797633,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -50797633,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -50797633,"Dead Space",purchase,1.0,0 -50797633,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -50797633,"Grand Theft Auto San Andreas",purchase,1.0,0 -50797633,"Grand Theft Auto San Andreas",purchase,1.0,0 -50797633,"Grand Theft Auto Vice City",purchase,1.0,0 -50797633,"Grand Theft Auto Vice City",purchase,1.0,0 -50797633,"Grand Theft Auto III",purchase,1.0,0 -50797633,"Grand Theft Auto III",purchase,1.0,0 -50797633,"Grand Theft Auto IV",purchase,1.0,0 -50797633,"Hitman Absolution",purchase,1.0,0 -50797633,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -50797633,"Kane & Lynch Dead Men",purchase,1.0,0 -50797633,"Lara Croft and the Guardian of Light",purchase,1.0,0 -50797633,"Max Payne 3 Season Pass",purchase,1.0,0 -50797633,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -50797633,"Medal of Honor(TM) Single Player",purchase,1.0,0 -50797633,"Medal of Honor Pre-Order",purchase,1.0,0 -50797633,"MURDERED SOUL SUSPECT",purchase,1.0,0 -50797633,"Startopia",purchase,1.0,0 -50797633,"Supreme Commander 2",purchase,1.0,0 -50797633,"Thief",purchase,1.0,0 -50797633,"Tomb Raider",purchase,1.0,0 -251567913,"Dota 2",purchase,1.0,0 -251567913,"Dota 2",play,1.9,0 -78551564,"Empire Total War",purchase,1.0,0 -78551564,"Empire Total War",play,189.0,0 -78551564,"Napoleon Total War",purchase,1.0,0 -78551564,"Napoleon Total War",play,110.0,0 -78551564,"Sid Meier's Civilization V",purchase,1.0,0 -78551564,"Sid Meier's Civilization V",play,6.8,0 -183507631,"Defiance",purchase,1.0,0 -183507631,"No More Room in Hell",purchase,1.0,0 -5976642,"Counter-Strike",purchase,1.0,0 -5976642,"Counter-Strike",play,55.0,0 -5976642,"Counter-Strike Source",purchase,1.0,0 -5976642,"Counter-Strike Source",play,47.0,0 -5976642,"Team Fortress 2",purchase,1.0,0 -5976642,"Team Fortress 2",play,18.3,0 -5976642,"Day of Defeat",purchase,1.0,0 -5976642,"Day of Defeat",play,2.0,0 -5976642,"Age of Chivalry",purchase,1.0,0 -5976642,"Age of Chivalry",play,0.2,0 -5976642,"Deathmatch Classic",purchase,1.0,0 -5976642,"Enclave",purchase,1.0,0 -5976642,"GASP",purchase,1.0,0 -5976642,"Half-Life",purchase,1.0,0 -5976642,"Half-Life Blue Shift",purchase,1.0,0 -5976642,"Half-Life Opposing Force",purchase,1.0,0 -5976642,"Ricochet",purchase,1.0,0 -5976642,"Team Fortress Classic",purchase,1.0,0 -65533730,"Borderlands 2",purchase,1.0,0 -65533730,"Borderlands 2",play,58.0,0 -65533730,"Left 4 Dead 2",purchase,1.0,0 -65533730,"Left 4 Dead 2",play,34.0,0 -65533730,"Alien Swarm",purchase,1.0,0 -65533730,"Alien Swarm",play,0.8,0 -280819916,"Dota 2",purchase,1.0,0 -280819916,"Dota 2",play,494.0,0 -82866826,"Duke Nukem Forever",purchase,1.0,0 -82866826,"Duke Nukem Forever",play,2.0,0 -196609297,"War Thunder",purchase,1.0,0 -196609297,"War Thunder",play,16.4,0 -196609297,"Robocraft",purchase,1.0,0 -196609297,"Robocraft",play,7.9,0 -196609297,"WAKFU",purchase,1.0,0 -196609297,"WAKFU",play,6.9,0 -196609297,"Rust",purchase,1.0,0 -196609297,"Rust",play,5.7,0 -196609297,"Team Fortress 2",purchase,1.0,0 -196609297,"Team Fortress 2",play,4.9,0 -196609297,"Rocket League",purchase,1.0,0 -196609297,"Rocket League",play,4.4,0 -196609297,"Prison Architect",purchase,1.0,0 -196609297,"Prison Architect",play,4.0,0 -196609297,"PAYDAY 2",purchase,1.0,0 -196609297,"PAYDAY 2",play,2.4,0 -196609297,"Mitos.is The Game",purchase,1.0,0 -196609297,"Mitos.is The Game",play,1.9,0 -196609297,"Loadout",purchase,1.0,0 -196609297,"Loadout",play,0.7,0 -196609297,"Dead Bits",purchase,1.0,0 -196609297,"Dead Bits",play,0.2,0 -196609297,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -196609297,"Boring Man - Online Tactical Stickman Combat",play,0.1,0 -196609297,"Alter World",purchase,1.0,0 -196609297,"Alter World",play,0.1,0 -196609297,"ZombieRun",purchase,1.0,0 -196609297,"Gear Up",purchase,1.0,0 -196609297,"Collisions",purchase,1.0,0 -196609297,"Cyberpunk 3776",purchase,1.0,0 -196609297,"The Tower Of Elements",purchase,1.0,0 -196609297,"Bard to the Future",purchase,1.0,0 -196609297,"Crystals of Time",purchase,1.0,0 -196609297,"Overcast - Walden and the Werewolf",purchase,1.0,0 -196609297,"Particula",purchase,1.0,0 -116876958,"Counter-Strike Global Offensive",purchase,1.0,0 -116876958,"Counter-Strike Global Offensive",play,1552.0,0 -116876958,"The Witcher 3 Wild Hunt",purchase,1.0,0 -116876958,"The Witcher 3 Wild Hunt",play,57.0,0 -116876958,"The Elder Scrolls V Skyrim",purchase,1.0,0 -116876958,"The Elder Scrolls V Skyrim",play,42.0,0 -116876958,"F1 2012",purchase,1.0,0 -116876958,"F1 2012",play,36.0,0 -116876958,"Infestation Survivor Stories",purchase,1.0,0 -116876958,"Infestation Survivor Stories",play,36.0,0 -116876958,"Don't Starve Together Beta",purchase,1.0,0 -116876958,"Don't Starve Together Beta",play,29.0,0 -116876958,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -116876958,"Dragon Age Origins - Ultimate Edition",play,27.0,0 -116876958,"The Witcher Enhanced Edition",purchase,1.0,0 -116876958,"The Witcher Enhanced Edition",play,25.0,0 -116876958,"L.A. Noire",purchase,1.0,0 -116876958,"L.A. Noire",play,25.0,0 -116876958,"DiRT 3 Complete Edition",purchase,1.0,0 -116876958,"DiRT 3 Complete Edition",play,21.0,0 -116876958,"Euro Truck Simulator 2",purchase,1.0,0 -116876958,"Euro Truck Simulator 2",play,19.7,0 -116876958,"Star Wars Knights of the Old Republic",purchase,1.0,0 -116876958,"Star Wars Knights of the Old Republic",play,18.9,0 -116876958,"Torchlight II",purchase,1.0,0 -116876958,"Torchlight II",play,17.4,0 -116876958,"Darksiders II",purchase,1.0,0 -116876958,"Darksiders II",play,16.9,0 -116876958,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -116876958,"The Witcher 2 Assassins of Kings Enhanced Edition",play,16.5,0 -116876958,"Risen 2 - Dark Waters",purchase,1.0,0 -116876958,"Risen 2 - Dark Waters",play,16.1,0 -116876958,"Aftermath",purchase,1.0,0 -116876958,"Aftermath",play,15.1,0 -116876958,"Risen 3 - Titan Lords",purchase,1.0,0 -116876958,"Risen 3 - Titan Lords",play,15.1,0 -116876958,"Darksiders",purchase,1.0,0 -116876958,"Darksiders",play,14.8,0 -116876958,"Just Cause 2",purchase,1.0,0 -116876958,"Just Cause 2",play,13.1,0 -116876958,"Life Is Strange",purchase,1.0,0 -116876958,"Life Is Strange",play,13.1,0 -116876958,"GRID 2",purchase,1.0,0 -116876958,"GRID 2",play,13.0,0 -116876958,"WRC 4 FIA WORLD RALLY CHAMPIONSHIP",purchase,1.0,0 -116876958,"WRC 4 FIA WORLD RALLY CHAMPIONSHIP",play,12.9,0 -116876958,"Saints Row The Third",purchase,1.0,0 -116876958,"Saints Row The Third",play,11.8,0 -116876958,"Batman Arkham City GOTY",purchase,1.0,0 -116876958,"Batman Arkham City GOTY",play,11.6,0 -116876958,"Alice Madness Returns",purchase,1.0,0 -116876958,"Alice Madness Returns",play,11.4,0 -116876958,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -116876958,"Deus Ex Human Revolution - Director's Cut",play,11.1,0 -116876958,"Saints Row IV",purchase,1.0,0 -116876958,"Saints Row IV",play,11.1,0 -116876958,"The Walking Dead",purchase,1.0,0 -116876958,"The Walking Dead",play,10.9,0 -116876958,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -116876958,"Resident Evil 5 / Biohazard 5",play,10.6,0 -116876958,"Mass Effect 2",purchase,1.0,0 -116876958,"Mass Effect 2",play,10.5,0 -116876958,"Far Cry 3",purchase,1.0,0 -116876958,"Far Cry 3",play,10.4,0 -116876958,"Mass Effect",purchase,1.0,0 -116876958,"Mass Effect",play,10.2,0 -116876958,"The Walking Dead Season Two",purchase,1.0,0 -116876958,"The Walking Dead Season Two",play,10.1,0 -116876958,"Might & Magic Clash of Heroes",purchase,1.0,0 -116876958,"Might & Magic Clash of Heroes",play,9.9,0 -116876958,"GRID",purchase,1.0,0 -116876958,"GRID",play,9.6,0 -116876958,"Batman Arkham Origins",purchase,1.0,0 -116876958,"Batman Arkham Origins",play,9.6,0 -116876958,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -116876958,"Red Faction Guerrilla Steam Edition",play,9.3,0 -116876958,"Call of Juarez Gunslinger",purchase,1.0,0 -116876958,"Call of Juarez Gunslinger",play,9.2,0 -116876958,"Shadow Warrior",purchase,1.0,0 -116876958,"Shadow Warrior",play,9.1,0 -116876958,"Two Worlds Epic Edition",purchase,1.0,0 -116876958,"Two Worlds Epic Edition",play,8.9,0 -116876958,"Skullgirls",purchase,1.0,0 -116876958,"Skullgirls",play,8.8,0 -116876958,"Max Payne 3",purchase,1.0,0 -116876958,"Max Payne 3",play,8.7,0 -116876958,"Remember Me",purchase,1.0,0 -116876958,"Remember Me",play,8.7,0 -116876958,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -116876958,"Batman Arkham Asylum GOTY Edition",play,8.5,0 -116876958,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -116876958,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,8.3,0 -116876958,"Jagged Alliance 2 - Wildfire ",purchase,1.0,0 -116876958,"Jagged Alliance 2 - Wildfire ",play,8.1,0 -116876958,"Chaos on Deponia",purchase,1.0,0 -116876958,"Chaos on Deponia",play,8.0,0 -116876958,"Painkiller Hell & Damnation",purchase,1.0,0 -116876958,"Painkiller Hell & Damnation",play,8.0,0 -116876958,"Plague Inc Evolved",purchase,1.0,0 -116876958,"Plague Inc Evolved",play,7.9,0 -116876958,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -116876958,"The Incredible Adventures of Van Helsing",play,7.8,0 -116876958,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -116876958,"Fallout 3 - Game of the Year Edition",play,7.7,0 -116876958,"Sid Meier's Ace Patrol",purchase,1.0,0 -116876958,"Sid Meier's Ace Patrol",play,7.6,0 -116876958,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -116876958,"Resident Evil Revelations / Biohazard Revelations",play,7.4,0 -116876958,"Serious Sam 3 BFE",purchase,1.0,0 -116876958,"Serious Sam 3 BFE",play,7.4,0 -116876958,"DmC Devil May Cry",purchase,1.0,0 -116876958,"DmC Devil May Cry",play,7.2,0 -116876958,"Killer is Dead",purchase,1.0,0 -116876958,"Killer is Dead",play,7.2,0 -116876958,"Brtal Legend",purchase,1.0,0 -116876958,"Brtal Legend",play,7.2,0 -116876958,"Tomb Raider",purchase,1.0,0 -116876958,"Tomb Raider",play,7.2,0 -116876958,"Thief",purchase,1.0,0 -116876958,"Thief",play,6.7,0 -116876958,"Dead Island",purchase,1.0,0 -116876958,"Dead Island",play,6.7,0 -116876958,"PAYDAY The Heist",purchase,1.0,0 -116876958,"PAYDAY The Heist",play,6.6,0 -116876958,"Hitman Absolution",purchase,1.0,0 -116876958,"Hitman Absolution",play,6.3,0 -116876958,"Grand Theft Auto Vice City",purchase,1.0,0 -116876958,"Grand Theft Auto Vice City",play,6.2,0 -116876958,"Mirror's Edge",purchase,1.0,0 -116876958,"Mirror's Edge",play,6.2,0 -116876958,"Age of Empires II HD Edition",purchase,1.0,0 -116876958,"Age of Empires II HD Edition",play,6.1,0 -116876958,"Orcs Must Die! 2",purchase,1.0,0 -116876958,"Orcs Must Die! 2",play,5.8,0 -116876958,"Trine 2",purchase,1.0,0 -116876958,"Trine 2",play,5.8,0 -116876958,"Call of Juarez The Cartel",purchase,1.0,0 -116876958,"Call of Juarez The Cartel",play,5.7,0 -116876958,"Orcs Must Die!",purchase,1.0,0 -116876958,"Orcs Must Die!",play,5.7,0 -116876958,"Dishonored (RU)",purchase,1.0,0 -116876958,"Dishonored (RU)",play,5.6,0 -116876958,"Garry's Mod",purchase,1.0,0 -116876958,"Garry's Mod",play,5.4,0 -116876958,"FOTONICA",purchase,1.0,0 -116876958,"FOTONICA",play,5.4,0 -116876958,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -116876958,"Serious Sam Classic The Second Encounter",play,5.4,0 -116876958,"Far Cry",purchase,1.0,0 -116876958,"Far Cry",play,5.4,0 -116876958,"Crysis",purchase,1.0,0 -116876958,"Crysis",play,5.3,0 -116876958,"Sniper Elite V2",purchase,1.0,0 -116876958,"Sniper Elite V2",play,4.8,0 -116876958,"Sniper Ghost Warrior",purchase,1.0,0 -116876958,"Sniper Ghost Warrior",play,4.7,0 -116876958,"Serious Sam Classic The First Encounter",purchase,1.0,0 -116876958,"Serious Sam Classic The First Encounter",play,4.7,0 -116876958,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -116876958,"Sid Meier's Ace Patrol Pacific Skies",play,4.7,0 -116876958,"MURDERED SOUL SUSPECT",purchase,1.0,0 -116876958,"MURDERED SOUL SUSPECT",play,4.6,0 -116876958,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -116876958,"METAL GEAR RISING REVENGEANCE",play,4.5,0 -116876958,"Deadly Premonition The Director's Cut",purchase,1.0,0 -116876958,"Deadly Premonition The Director's Cut",play,4.5,0 -116876958,"Dead Effect",purchase,1.0,0 -116876958,"Dead Effect",play,4.4,0 -116876958,"Medal of Honor(TM) Single Player",purchase,1.0,0 -116876958,"Medal of Honor(TM) Single Player",play,4.3,0 -116876958,"Mount & Blade Warband",purchase,1.0,0 -116876958,"Mount & Blade Warband",play,4.3,0 -116876958,"Trine",purchase,1.0,0 -116876958,"Trine",play,4.3,0 -116876958,"Lost Planet 3",purchase,1.0,0 -116876958,"Lost Planet 3",play,4.2,0 -116876958,"E.Y.E Divine Cybermancy",purchase,1.0,0 -116876958,"E.Y.E Divine Cybermancy",play,4.2,0 -116876958,"Shadows on the Vatican - Act I Greed",purchase,1.0,0 -116876958,"Shadows on the Vatican - Act I Greed",play,4.1,0 -116876958,"Battlefield Bad Company 2",purchase,1.0,0 -116876958,"Battlefield Bad Company 2",play,4.1,0 -116876958,"Super Meat Boy",purchase,1.0,0 -116876958,"Super Meat Boy",play,4.0,0 -116876958,"Shank 2",purchase,1.0,0 -116876958,"Shank 2",play,4.0,0 -116876958,"Chivalry Medieval Warfare",purchase,1.0,0 -116876958,"Chivalry Medieval Warfare",play,4.0,0 -116876958,"Contagion",purchase,1.0,0 -116876958,"Contagion",play,4.0,0 -116876958,"Psychonauts",purchase,1.0,0 -116876958,"Psychonauts",play,4.0,0 -116876958,"resident evil 4 / biohazard 4",purchase,1.0,0 -116876958,"resident evil 4 / biohazard 4",play,3.9,0 -116876958,"Deponia",purchase,1.0,0 -116876958,"Deponia",play,3.9,0 -116876958,"Anoxemia",purchase,1.0,0 -116876958,"Anoxemia",play,3.8,0 -116876958,"The Cat Lady",purchase,1.0,0 -116876958,"The Cat Lady",play,3.8,0 -116876958,"Left 4 Dead 2",purchase,1.0,0 -116876958,"Left 4 Dead 2",play,3.8,0 -116876958,"Squishy the Suicidal Pig",purchase,1.0,0 -116876958,"Squishy the Suicidal Pig",play,3.8,0 -116876958,"Sniper Ghost Warrior 2",purchase,1.0,0 -116876958,"Sniper Ghost Warrior 2",play,3.7,0 -116876958,"Omerta - City of Gangsters",purchase,1.0,0 -116876958,"Omerta - City of Gangsters",play,3.7,0 -116876958,"Lucius II",purchase,1.0,0 -116876958,"Lucius II",play,3.6,0 -116876958,"BlazBlue Calamity Trigger",purchase,1.0,0 -116876958,"BlazBlue Calamity Trigger",play,3.6,0 -116876958,"Lucius",purchase,1.0,0 -116876958,"Lucius",play,3.6,0 -116876958,"Worms Armageddon",purchase,1.0,0 -116876958,"Worms Armageddon",play,3.6,0 -116876958,"Cognition An Erica Reed Thriller",purchase,1.0,0 -116876958,"Cognition An Erica Reed Thriller",play,3.5,0 -116876958,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -116876958,"Resident Evil Revelations 2 / Biohazard Revelations 2",play,3.5,0 -116876958,"FINAL FANTASY XIII-2",purchase,1.0,0 -116876958,"FINAL FANTASY XIII-2",play,3.5,0 -116876958,"Neverending Nightmares",purchase,1.0,0 -116876958,"Neverending Nightmares",play,3.5,0 -116876958,"Stacking",purchase,1.0,0 -116876958,"Stacking",play,3.4,0 -116876958,"System Shock 2",purchase,1.0,0 -116876958,"System Shock 2",play,3.4,0 -116876958,"The Novelist",purchase,1.0,0 -116876958,"The Novelist",play,3.4,0 -116876958,"No Time To Explain Remastered",purchase,1.0,0 -116876958,"No Time To Explain Remastered",play,3.4,0 -116876958,"Nosgoth",purchase,1.0,0 -116876958,"Nosgoth",play,3.4,0 -116876958,"Gothic 3",purchase,1.0,0 -116876958,"Gothic 3",play,3.4,0 -116876958,"Arma Tactics",purchase,1.0,0 -116876958,"Arma Tactics",play,3.4,0 -116876958,"Race The Sun",purchase,1.0,0 -116876958,"Race The Sun",play,3.4,0 -116876958,"POSTAL 2",purchase,1.0,0 -116876958,"POSTAL 2",play,3.3,0 -116876958,"Sir, You Are Being Hunted",purchase,1.0,0 -116876958,"Sir, You Are Being Hunted",play,3.3,0 -116876958,"Syberia",purchase,1.0,0 -116876958,"Syberia",play,3.3,0 -116876958,"Full Mojo Rampage",purchase,1.0,0 -116876958,"Full Mojo Rampage",play,3.3,0 -116876958,"Goodbye Deponia",purchase,1.0,0 -116876958,"Goodbye Deponia",play,3.3,0 -116876958,"Blackguards",purchase,1.0,0 -116876958,"Blackguards",play,3.2,0 -116876958,"Costume Quest",purchase,1.0,0 -116876958,"Costume Quest",play,3.2,0 -116876958,"Nihilumbra",purchase,1.0,0 -116876958,"Nihilumbra",play,3.1,0 -116876958,"Borderlands 2",purchase,1.0,0 -116876958,"Borderlands 2",play,3.1,0 -116876958,"Insurgency",purchase,1.0,0 -116876958,"Insurgency",play,3.1,0 -116876958,"Dark Fall Lost Souls",purchase,1.0,0 -116876958,"Dark Fall Lost Souls",play,3.0,0 -116876958,"TypeRider",purchase,1.0,0 -116876958,"TypeRider",play,3.0,0 -116876958,"Surgeon Simulator",purchase,1.0,0 -116876958,"Surgeon Simulator",play,2.9,0 -116876958,"A New Beginning - Final Cut",purchase,1.0,0 -116876958,"A New Beginning - Final Cut",play,2.9,0 -116876958,"Defender's Quest Valley of the Forgotten",purchase,1.0,0 -116876958,"Defender's Quest Valley of the Forgotten",play,2.9,0 -116876958,"How to Survive",purchase,1.0,0 -116876958,"How to Survive",play,2.9,0 -116876958,"BioShock Infinite",purchase,1.0,0 -116876958,"BioShock Infinite",play,2.9,0 -116876958,"Dementium II HD",purchase,1.0,0 -116876958,"Dementium II HD",play,2.8,0 -116876958,"Far Cry 2",purchase,1.0,0 -116876958,"Far Cry 2",play,2.8,0 -116876958,"The Binding of Isaac",purchase,1.0,0 -116876958,"The Binding of Isaac",play,2.8,0 -116876958,"12 Labours of Hercules",purchase,1.0,0 -116876958,"12 Labours of Hercules",play,2.8,0 -116876958,"Sherlock Holmes and The Hound of The Baskervilles",purchase,1.0,0 -116876958,"Sherlock Holmes and The Hound of The Baskervilles",play,2.8,0 -116876958,"H1Z1",purchase,1.0,0 -116876958,"H1Z1",play,2.7,0 -116876958,"Just Cause",purchase,1.0,0 -116876958,"Just Cause",play,2.6,0 -116876958,"KickBeat Steam Edition",purchase,1.0,0 -116876958,"KickBeat Steam Edition",play,2.5,0 -116876958,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -116876958,"Rising Storm/Red Orchestra 2 Multiplayer",play,2.4,0 -116876958,"Afterfall InSanity Extended Edition",purchase,1.0,0 -116876958,"Afterfall InSanity Extended Edition",play,2.4,0 -116876958,"Deus Ex The Fall",purchase,1.0,0 -116876958,"Deus Ex The Fall",play,2.4,0 -116876958,"Blades of Time",purchase,1.0,0 -116876958,"Blades of Time",play,2.3,0 -116876958,"Victim of Xen",purchase,1.0,0 -116876958,"Victim of Xen",play,2.3,0 -116876958,"The Detail",purchase,1.0,0 -116876958,"The Detail",play,2.3,0 -116876958,"Guacamelee! Gold Edition",purchase,1.0,0 -116876958,"Guacamelee! Gold Edition",play,2.2,0 -116876958,"Blocks That Matter",purchase,1.0,0 -116876958,"Blocks That Matter",play,2.2,0 -116876958,"Strider",purchase,1.0,0 -116876958,"Strider",play,2.2,0 -116876958,"Tropico 4",purchase,1.0,0 -116876958,"Tropico 4",play,2.2,0 -116876958,"Long Live The Queen",purchase,1.0,0 -116876958,"Long Live The Queen",play,2.2,0 -116876958,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -116876958,"Warhammer 40,000 Dawn of War II",play,2.1,0 -116876958,"The Whispered World Special Edition",purchase,1.0,0 -116876958,"The Whispered World Special Edition",play,2.1,0 -116876958,"The Bureau XCOM Declassified",purchase,1.0,0 -116876958,"The Bureau XCOM Declassified",play,2.1,0 -116876958,"Borderlands",purchase,1.0,0 -116876958,"Borderlands",play,2.1,0 -116876958,"Prime World Defenders",purchase,1.0,0 -116876958,"Prime World Defenders",play,2.1,0 -116876958,"Light",purchase,1.0,0 -116876958,"Light",play,2.1,0 -116876958,"Medieval II Total War",purchase,1.0,0 -116876958,"Medieval II Total War",play,2.1,0 -116876958,"Pineview Drive",purchase,1.0,0 -116876958,"Pineview Drive",play,2.1,0 -116876958,"Deadlings - Rotten Edition",purchase,1.0,0 -116876958,"Deadlings - Rotten Edition",play,2.1,0 -116876958,"Journey of a Roach",purchase,1.0,0 -116876958,"Journey of a Roach",play,2.1,0 -116876958,"Two Worlds II",purchase,1.0,0 -116876958,"Two Worlds II",play,2.0,0 -116876958,"BloodRayne 2",purchase,1.0,0 -116876958,"BloodRayne 2",play,1.9,0 -116876958,"Red Faction II",purchase,1.0,0 -116876958,"Red Faction II",play,1.9,0 -116876958,"Real World Racing",purchase,1.0,0 -116876958,"Real World Racing",play,1.8,0 -116876958,"Parkan 2",purchase,1.0,0 -116876958,"Parkan 2",play,1.8,0 -116876958,"Half-Life 2",purchase,1.0,0 -116876958,"Half-Life 2",play,1.8,0 -116876958,"Detective Grimoire",purchase,1.0,0 -116876958,"Detective Grimoire",play,1.8,0 -116876958,"Wickland",purchase,1.0,0 -116876958,"Wickland",play,1.7,0 -116876958,"Alan Wake",purchase,1.0,0 -116876958,"Alan Wake",play,1.7,0 -116876958,"Grand Theft Auto III",purchase,1.0,0 -116876958,"Grand Theft Auto III",play,1.6,0 -116876958,"Dracula Origin",purchase,1.0,0 -116876958,"Dracula Origin",play,1.6,0 -116876958,"Magicka",purchase,1.0,0 -116876958,"Magicka",play,1.6,0 -116876958,"Go! Go! Nippon! ~My First Trip to Japan~",purchase,1.0,0 -116876958,"Go! Go! Nippon! ~My First Trip to Japan~",play,1.5,0 -116876958,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -116876958,"STAR WARS Knights of the Old Republic II The Sith Lords",play,1.5,0 -116876958,"Natural Selection 2",purchase,1.0,0 -116876958,"Natural Selection 2",play,1.4,0 -116876958,"BIT.TRIP RUNNER",purchase,1.0,0 -116876958,"BIT.TRIP RUNNER",play,1.4,0 -116876958,"Anomaly Warzone Earth",purchase,1.0,0 -116876958,"Anomaly Warzone Earth",play,1.3,0 -116876958,"Urban Trial Freestyle",purchase,1.0,0 -116876958,"Urban Trial Freestyle",play,1.3,0 -116876958,"Enclave",purchase,1.0,0 -116876958,"Enclave",play,1.3,0 -116876958,"Deadlight",purchase,1.0,0 -116876958,"Deadlight",play,1.2,0 -116876958,"A Golden Wake",purchase,1.0,0 -116876958,"A Golden Wake",play,1.2,0 -116876958,"Cities in Motion 2",purchase,1.0,0 -116876958,"Cities in Motion 2",play,1.2,0 -116876958,"Jagged Alliance - Back in Action",purchase,1.0,0 -116876958,"Jagged Alliance - Back in Action",play,1.2,0 -116876958,"Sanctum 2",purchase,1.0,0 -116876958,"Sanctum 2",play,1.2,0 -116876958,"Claire",purchase,1.0,0 -116876958,"Claire",play,1.2,0 -116876958,"Edna & Harvey The Breakout",purchase,1.0,0 -116876958,"Edna & Harvey The Breakout",play,1.2,0 -116876958,"Analogue A Hate Story",purchase,1.0,0 -116876958,"Analogue A Hate Story",play,1.2,0 -116876958,"To the Moon",purchase,1.0,0 -116876958,"To the Moon",play,1.1,0 -116876958,"Rome Total War",purchase,1.0,0 -116876958,"Rome Total War",play,1.1,0 -116876958,"Anna - Extended Edition",purchase,1.0,0 -116876958,"Anna - Extended Edition",play,1.1,0 -116876958,"Caster",purchase,1.0,0 -116876958,"Caster",play,0.9,0 -116876958,"Heavy Fire Afghanistan",purchase,1.0,0 -116876958,"Heavy Fire Afghanistan",play,0.9,0 -116876958,"Knights and Merchants",purchase,1.0,0 -116876958,"Knights and Merchants",play,0.9,0 -116876958,"Need for Speed Hot Pursuit",purchase,1.0,0 -116876958,"Need for Speed Hot Pursuit",play,0.9,0 -116876958,"Black Mirror",purchase,1.0,0 -116876958,"Black Mirror",play,0.7,0 -116876958,"SickBrick",purchase,1.0,0 -116876958,"SickBrick",play,0.7,0 -116876958,"Dark Fall 1 The Journal",purchase,1.0,0 -116876958,"Dark Fall 1 The Journal",play,0.5,0 -116876958,"DOOM 3",purchase,1.0,0 -116876958,"DOOM 3",play,0.5,0 -116876958,"BioShock",purchase,1.0,0 -116876958,"BioShock",play,0.5,0 -116876958,"Arma Cold War Assault",purchase,1.0,0 -116876958,"Arma Cold War Assault",play,0.4,0 -116876958,"Hitman 2 Silent Assassin",purchase,1.0,0 -116876958,"Hitman 2 Silent Assassin",play,0.4,0 -116876958,"State of Decay",purchase,1.0,0 -116876958,"State of Decay",play,0.3,0 -116876958,"Hitman Codename 47",purchase,1.0,0 -116876958,"Tom Clancy's Rainbow Six Vegas",purchase,1.0,0 -116876958,"Scratches Director's Cut",purchase,1.0,0 -116876958,"12 Labours of Hercules II The Cretan Bull",purchase,1.0,0 -116876958,"A Game of Thrones - Genesis",purchase,1.0,0 -116876958,"Age of Empires II HD The Forgotten",purchase,1.0,0 -116876958,"Airline Tycoon 2",purchase,1.0,0 -116876958,"Alan Wake's American Nightmare",purchase,1.0,0 -116876958,"Alien Breed 2 Assault",purchase,1.0,0 -116876958,"Alien Breed 3 Descent",purchase,1.0,0 -116876958,"Alien Breed Impact",purchase,1.0,0 -116876958,"Alien Rage - Unlimited",purchase,1.0,0 -116876958,"Alpha Prime",purchase,1.0,0 -116876958,"Alpha Protocol",purchase,1.0,0 -116876958,"Amnesia The Dark Descent",purchase,1.0,0 -116876958,"Anachronox",purchase,1.0,0 -116876958,"AquaNox",purchase,1.0,0 -116876958,"AquaNox 2 Revelation",purchase,1.0,0 -116876958,"ArcaniA",purchase,1.0,0 -116876958,"Arma 2",purchase,1.0,0 -116876958,"Arma Gold Edition",purchase,1.0,0 -116876958,"Axis Game Factory's AGFPRO 3.0",purchase,1.0,0 -116876958,"Battlestations Midway",purchase,1.0,0 -116876958,"BioShock 2",purchase,1.0,0 -116876958,"Black Mirror II",purchase,1.0,0 -116876958,"Blood Bowl Legendary Edition",purchase,1.0,0 -116876958,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -116876958,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -116876958,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -116876958,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -116876958,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -116876958,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -116876958,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -116876958,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -116876958,"Bridge Constructor",purchase,1.0,0 -116876958,"Bridge Project",purchase,1.0,0 -116876958,"Broken Sword 1 - Shadow of the Templars Director's Cut",purchase,1.0,0 -116876958,"Broken Sword 2 - the Smoking Mirror Remastered",purchase,1.0,0 -116876958,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -116876958,"Car Mechanic Simulator 2014",purchase,1.0,0 -116876958,"Chaos Domain",purchase,1.0,0 -116876958,"Cities XL Platinum",purchase,1.0,0 -116876958,"Cognition - Original Soundtrack Vol 1",purchase,1.0,0 -116876958,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -116876958,"Commander Conquest of the Americas Gold",purchase,1.0,0 -116876958,"Company of Heroes",purchase,1.0,0 -116876958,"Company of Heroes (New Steam Version)",purchase,1.0,0 -116876958,"Confrontation",purchase,1.0,0 -116876958,"Counter-Strike Nexon Zombies",purchase,1.0,0 -116876958,"Crysis 2 Maximum Edition",purchase,1.0,0 -116876958,"Daikatana",purchase,1.0,0 -116876958,"Dark Fall 2 Lights Out",purchase,1.0,0 -116876958,"Deadlight Original Soundtrack",purchase,1.0,0 -116876958,"Dead Space",purchase,1.0,0 -116876958,"Deus Ex Invisible War",purchase,1.0,0 -116876958,"Disciples III Renaissance",purchase,1.0,0 -116876958,"Disciples III Resurrection",purchase,1.0,0 -116876958,"Divinity II Developer's Cut",purchase,1.0,0 -116876958,"Dogfight 1942",purchase,1.0,0 -116876958,"Dogfight 1942 Fire over Africa",purchase,1.0,0 -116876958,"Dogfight 1942 Russia under Siege",purchase,1.0,0 -116876958,"DOOM 3 Resurrection of Evil",purchase,1.0,0 -116876958,"Dracula Love Kills",purchase,1.0,0 -116876958,"Dungeon Defenders",purchase,1.0,0 -116876958,"Dungeon Siege III",purchase,1.0,0 -116876958,"Euro Truck Simulator",purchase,1.0,0 -116876958,"F.E.A.R.",purchase,1.0,0 -116876958,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -116876958,"F.E.A.R. 3",purchase,1.0,0 -116876958,"F.E.A.R. Extraction Point",purchase,1.0,0 -116876958,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -116876958,"Fallout New Vegas",purchase,1.0,0 -116876958,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -116876958,"Firefall",purchase,1.0,0 -116876958,"Front Mission Evolved",purchase,1.0,0 -116876958,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -116876958,"Game of Thrones ",purchase,1.0,0 -116876958,"Gorky 17",purchase,1.0,0 -116876958,"Grand Ages Rome",purchase,1.0,0 -116876958,"Grand Theft Auto",purchase,1.0,0 -116876958,"Grand Theft Auto 2",purchase,1.0,0 -116876958,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -116876958,"Grand Theft Auto San Andreas",purchase,1.0,0 -116876958,"Grand Theft Auto San Andreas",purchase,1.0,0 -116876958,"Grand Theft Auto Vice City",purchase,1.0,0 -116876958,"Grand Theft Auto III",purchase,1.0,0 -116876958,"Grand Theft Auto IV",purchase,1.0,0 -116876958,"H1Z1 Test Server",purchase,1.0,0 -116876958,"Half-Life 2 Lost Coast",purchase,1.0,0 -116876958,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",purchase,1.0,0 -116876958,"Hell Yeah!",purchase,1.0,0 -116876958,"Hitman Blood Money",purchase,1.0,0 -116876958,"Hitman Contracts",purchase,1.0,0 -116876958,"Hitman Sniper Challenge",purchase,1.0,0 -116876958,"Imperium Romanum Gold Edition",purchase,1.0,0 -116876958,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -116876958,"Lara Croft and the Guardian of Light",purchase,1.0,0 -116876958,"Lumber Island - That Special Place",purchase,1.0,0 -116876958,"Mafia II",purchase,1.0,0 -116876958,"Magicka Vietnam",purchase,1.0,0 -116876958,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -116876958,"Medal of Honor Pre-Order",purchase,1.0,0 -116876958,"Medieval II Total War Kingdoms",purchase,1.0,0 -116876958,"Metro 2033",purchase,1.0,0 -116876958,"Mortal Kombat Kollection",purchase,1.0,0 -116876958,"Mount & Blade With Fire and Sword",purchase,1.0,0 -116876958,"Ms. Splosion Man",purchase,1.0,0 -116876958,"MX vs. ATV Reflex",purchase,1.0,0 -116876958,"NecroVisioN",purchase,1.0,0 -116876958,"NecroVisioN Lost Company",purchase,1.0,0 -116876958,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -116876958,"Operation Flashpoint Red River",purchase,1.0,0 -116876958,"Overlord",purchase,1.0,0 -116876958,"Overlord Raising Hell",purchase,1.0,0 -116876958,"Overlord II",purchase,1.0,0 -116876958,"Patch testing for Chivalry",purchase,1.0,0 -116876958,"Pirates of Black Cove Gold",purchase,1.0,0 -116876958,"Psychonauts Demo",purchase,1.0,0 -116876958,"Q.U.B.E Director's Cut",purchase,1.0,0 -116876958,"R.U.S.E",purchase,1.0,0 -116876958,"R.U.S.E.",purchase,1.0,0 -116876958,"Ravensword Shadowlands",purchase,1.0,0 -116876958,"RAW - Realms of Ancient War",purchase,1.0,0 -116876958,"Real World Racing Amsterdam & Oakland",purchase,1.0,0 -116876958,"Red Faction Armageddon",purchase,1.0,0 -116876958,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -116876958,"Rise of the Argonauts",purchase,1.0,0 -116876958,"Rochard",purchase,1.0,0 -116876958,"RWRZ",purchase,1.0,0 -116876958,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -116876958,"Sacred 2 Gold",purchase,1.0,0 -116876958,"Saints Row 2",purchase,1.0,0 -116876958,"Sanctum",purchase,1.0,0 -116876958,"Secret Files Tunguska",purchase,1.0,0 -116876958,"Serious Sam Classics Revolution",purchase,1.0,0 -116876958,"SHOGUN Total War - Gold Edition",purchase,1.0,0 -116876958,"Sid Meier's Civilization III Complete",purchase,1.0,0 -116876958,"Sid Meier's Civilization IV",purchase,1.0,0 -116876958,"Sid Meier's Civilization IV",purchase,1.0,0 -116876958,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -116876958,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -116876958,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -116876958,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -116876958,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -116876958,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -116876958,"Sid Meier's Railroads!",purchase,1.0,0 -116876958,"Skullgirls Endless Beta",purchase,1.0,0 -116876958,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -116876958,"Spec Ops The Line",purchase,1.0,0 -116876958,"SpellForce 2 - Faith in Destiny",purchase,1.0,0 -116876958,"Star Wars Dark Forces",purchase,1.0,0 -116876958,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -116876958,"Steel & Steam Episode 1",purchase,1.0,0 -116876958,"Still Life 2",purchase,1.0,0 -116876958,"Summoner",purchase,1.0,0 -116876958,"Supreme Commander",purchase,1.0,0 -116876958,"Supreme Commander Forged Alliance",purchase,1.0,0 -116876958,"Take On Helicopters",purchase,1.0,0 -116876958,"Tesla Effect",purchase,1.0,0 -116876958,"The Darkness II",purchase,1.0,0 -116876958,"The Guild II",purchase,1.0,0 -116876958,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -116876958,"The Last Remnant",purchase,1.0,0 -116876958,"The Lord of the Rings War in the North",purchase,1.0,0 -116876958,"The Whispered World",purchase,1.0,0 -116876958,"Thief - Opportunist",purchase,1.0,0 -116876958,"Thief Deadly Shadows",purchase,1.0,0 -116876958,"Thief Gold",purchase,1.0,0 -116876958,"Titan Quest",purchase,1.0,0 -116876958,"Titan Quest Immortal Throne",purchase,1.0,0 -116876958,"Tomb Raider Anniversary",purchase,1.0,0 -116876958,"Tomb Raider Underworld",purchase,1.0,0 -116876958,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -116876958,"Tom Clancy's Splinter Cell Double Agent",purchase,1.0,0 -116876958,"Trainz Simulator 12",purchase,1.0,0 -116876958,"Ubersoldier II",purchase,1.0,0 -116876958,"UFO Afterlight",purchase,1.0,0 -116876958,"Velvet Assassin",purchase,1.0,0 -116876958,"Viking Battle for Asgard",purchase,1.0,0 -116876958,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -116876958,"Wargame European Escalation",purchase,1.0,0 -116876958,"WRC Powerslide",purchase,1.0,0 -116876958,"X-COM Apocalypse",purchase,1.0,0 -116876958,"X-COM Enforcer",purchase,1.0,0 -116876958,"X-COM Interceptor",purchase,1.0,0 -116876958,"X-COM Terror from the Deep",purchase,1.0,0 -116876958,"X-COM UFO Defense",purchase,1.0,0 -116876958,"Zafehouse Diaries",purchase,1.0,0 -92484390,"Sid Meier's Civilization V",purchase,1.0,0 -92484390,"Sid Meier's Civilization V",play,48.0,0 -92484390,"Pillars of Eternity",purchase,1.0,0 -92484390,"Pillars of Eternity",play,46.0,0 -92484390,"Endless Legend",purchase,1.0,0 -92484390,"Endless Legend",play,36.0,0 -92484390,"DARK SOULS II",purchase,1.0,0 -92484390,"DARK SOULS II",play,27.0,0 -92484390,"Divinity Original Sin",purchase,1.0,0 -92484390,"Divinity Original Sin",play,22.0,0 -92484390,"The Elder Scrolls V Skyrim",purchase,1.0,0 -92484390,"The Elder Scrolls V Skyrim",play,16.5,0 -92484390,"Tomb Raider",purchase,1.0,0 -92484390,"Tomb Raider",play,9.2,0 -92484390,"Risen 2 - Dark Waters",purchase,1.0,0 -92484390,"Risen 2 - Dark Waters",play,7.4,0 -92484390,"Darksiders II",purchase,1.0,0 -92484390,"Darksiders II",play,5.0,0 -92484390,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -92484390,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,3.3,0 -92484390,"Medieval II Total War",purchase,1.0,0 -92484390,"Medieval II Total War",play,3.1,0 -92484390,"RAW - Realms of Ancient War",purchase,1.0,0 -92484390,"RAW - Realms of Ancient War",play,2.8,0 -92484390,"Magic Duels",purchase,1.0,0 -92484390,"Magic Duels",play,1.8,0 -92484390,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -92484390,"Warhammer 40,000 Dawn of War II",play,1.4,0 -92484390,"Fallout New Vegas",purchase,1.0,0 -92484390,"Fallout New Vegas",play,1.4,0 -92484390,"Magicka",purchase,1.0,0 -92484390,"Magicka",play,0.1,0 -92484390,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -92484390,"Medieval II Total War Kingdoms",purchase,1.0,0 -92484390,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -92484390,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -188509200,"Tree of Life",purchase,1.0,0 -188509200,"Tree of Life",play,32.0,0 -188509200,"Trove",purchase,1.0,0 -188509200,"Trove",play,23.0,0 -188509200,"BLOCKADE 3D",purchase,1.0,0 -188509200,"BLOCKADE 3D",play,16.6,0 -188509200,"Defiance",purchase,1.0,0 -188509200,"Defiance",play,8.8,0 -188509200,"DC Universe Online",purchase,1.0,0 -188509200,"DC Universe Online",play,7.7,0 -188509200,"Path of Exile",purchase,1.0,0 -188509200,"Path of Exile",play,7.5,0 -188509200,"RPG MO",purchase,1.0,0 -188509200,"RPG MO",play,3.8,0 -188509200,"Villagers and Heroes",purchase,1.0,0 -188509200,"Villagers and Heroes",play,3.3,0 -188509200,"Aftermath",purchase,1.0,0 -188509200,"Aftermath",play,3.1,0 -188509200,"Rust",purchase,1.0,0 -188509200,"Rust",play,1.5,0 -188509200,"Savage Lands",purchase,1.0,0 -188509200,"Savage Lands",play,1.5,0 -188509200,"Modular Combat",purchase,1.0,0 -188509200,"Modular Combat",play,1.2,0 -188509200,"sZone-Online",purchase,1.0,0 -188509200,"sZone-Online",play,0.6,0 -188509200,"Heroes & Generals",purchase,1.0,0 -188509200,"Heroes & Generals",play,0.6,0 -188509200,"Team Fortress 2",purchase,1.0,0 -188509200,"Team Fortress 2",play,0.4,0 -188509200,"World of Soccer online",purchase,1.0,0 -188509200,"World of Soccer online",play,0.4,0 -188509200,"Unturned",purchase,1.0,0 -188509200,"Unturned",play,0.4,0 -188509200,"Mortal Online",purchase,1.0,0 -188509200,"Mortal Online",play,0.3,0 -188509200,"Realm of the Mad God",purchase,1.0,0 -188509200,"Realm of the Mad God",play,0.3,0 -188509200,"Firefall",purchase,1.0,0 -188509200,"Firefall",play,0.3,0 -188509200,"Marvel Heroes 2015",purchase,1.0,0 -188509200,"Marvel Heroes 2015",play,0.3,0 -188509200,"Dirty Bomb",purchase,1.0,0 -188509200,"Dirty Bomb",play,0.2,0 -188509200,"America's Army Proving Grounds",purchase,1.0,0 -188509200,"America's Army Proving Grounds",play,0.2,0 -188509200,"Red Crucible Firestorm",purchase,1.0,0 -188509200,"Red Crucible Firestorm",play,0.2,0 -188509200,"Survarium",purchase,1.0,0 -188509200,"Survarium",play,0.1,0 -188509200,"Magic Duels",purchase,1.0,0 -188509200,"Magic Duels",play,0.1,0 -188509200,"Deepworld",purchase,1.0,0 -202160057,"Dota 2",purchase,1.0,0 -202160057,"Dota 2",play,0.3,0 -103624897,"Assassin's Creed Revelations",purchase,1.0,0 -103624897,"Assassin's Creed Revelations",play,123.0,0 -103624897,"Sleeping Dogs",purchase,1.0,0 -103624897,"Sleeping Dogs",play,121.0,0 -103624897,"Total War SHOGUN 2",purchase,1.0,0 -103624897,"Total War SHOGUN 2",play,72.0,0 -103624897,"Max Payne 3",purchase,1.0,0 -103624897,"Max Payne 3",play,66.0,0 -103624897,"PAYDAY 2",purchase,1.0,0 -103624897,"PAYDAY 2",play,63.0,0 -103624897,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -103624897,"Tom Clancy's Splinter Cell Conviction",play,59.0,0 -103624897,"Just Cause 2",purchase,1.0,0 -103624897,"Just Cause 2",play,50.0,0 -103624897,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -103624897,"The Witcher 2 Assassins of Kings Enhanced Edition",play,38.0,0 -103624897,"Overlord II",purchase,1.0,0 -103624897,"Overlord II",play,36.0,0 -103624897,"Total War ROME II - Emperor Edition",purchase,1.0,0 -103624897,"Total War ROME II - Emperor Edition",play,36.0,0 -103624897,"BioShock Infinite",purchase,1.0,0 -103624897,"BioShock Infinite",play,34.0,0 -103624897,"XCOM Enemy Unknown",purchase,1.0,0 -103624897,"XCOM Enemy Unknown",play,13.4,0 -103624897,"Team Fortress 2",purchase,1.0,0 -103624897,"Team Fortress 2",play,13.1,0 -103624897,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -103624897,"The Elder Scrolls IV Oblivion ",play,7.1,0 -103624897,"Tom Clancy's Ghost Recon Future Soldier",purchase,1.0,0 -103624897,"Tom Clancy's Ghost Recon Future Soldier",play,6.6,0 -103624897,"Dead Rising 2",purchase,1.0,0 -103624897,"Dead Rising 2",play,3.6,0 -103624897,"Grand Theft Auto San Andreas",purchase,1.0,0 -103624897,"Grand Theft Auto San Andreas",play,1.9,0 -103624897,"Terraria",purchase,1.0,0 -103624897,"Terraria",play,1.2,0 -103624897,"Empire Total War",purchase,1.0,0 -103624897,"Empire Total War",play,1.1,0 -103624897,"Star Wars Knights of the Old Republic",purchase,1.0,0 -103624897,"Star Wars Knights of the Old Republic",play,0.3,0 -103624897,"Dead Rising 2 Off the Record",purchase,1.0,0 -103624897,"Grand Theft Auto San Andreas",purchase,1.0,0 -103624897,"Overlord",purchase,1.0,0 -103624897,"Overlord Raising Hell",purchase,1.0,0 -103624897,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -231964178,"Dota 2",purchase,1.0,0 -231964178,"Dota 2",play,225.0,0 -282998252,"Dota 2",purchase,1.0,0 -282998252,"Dota 2",play,1.7,0 -119428254,"Team Fortress 2",purchase,1.0,0 -119428254,"Team Fortress 2",play,65.0,0 -119428254,"Dota 2",purchase,1.0,0 -119428254,"Dota 2",play,15.8,0 -119428254,"Warframe",purchase,1.0,0 -119428254,"Warframe",play,7.1,0 -119428254,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -119428254,"Tom Clancy's Ghost Recon Phantoms - NA",play,7.0,0 -119428254,"Heroes & Generals",purchase,1.0,0 -119428254,"Heroes & Generals",play,6.0,0 -119428254,"Dirty Bomb",purchase,1.0,0 -119428254,"Dirty Bomb",play,5.0,0 -119428254,"Unturned",purchase,1.0,0 -119428254,"Unturned",play,3.3,0 -119428254,"Trove",purchase,1.0,0 -119428254,"Trove",play,1.5,0 -119428254,"War Thunder",purchase,1.0,0 -119428254,"War Thunder",play,1.4,0 -119428254,"Magicka Wizard Wars",purchase,1.0,0 -119428254,"Magicka Wizard Wars",play,0.5,0 -119428254,"Dead Island Epidemic",purchase,1.0,0 -119428254,"Dead Island Epidemic",play,0.4,0 -119428254,"theHunter",purchase,1.0,0 -119428254,"theHunter",play,0.2,0 -119428254,"PlanetSide 2",purchase,1.0,0 -119428254,"PlanetSide 2",play,0.2,0 -119428254,"Warface",purchase,1.0,0 -41566004,"Counter-Strike Source",purchase,1.0,0 -41566004,"Counter-Strike Source",play,155.0,0 -41566004,"Day of Defeat Source",purchase,1.0,0 -41566004,"Half-Life 2 Deathmatch",purchase,1.0,0 -41566004,"Half-Life 2 Lost Coast",purchase,1.0,0 -299884217,"Dota 2",purchase,1.0,0 -299884217,"Dota 2",play,46.0,0 -215785419,"Pressured",purchase,1.0,0 -188340440,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -188340440,"Warhammer 40,000 Dawn of War Dark Crusade",play,39.0,0 -188340440,"Team Fortress 2",purchase,1.0,0 -188340440,"Team Fortress 2",play,36.0,0 -197620904,"Euro Truck Simulator 2",purchase,1.0,0 -197620904,"Euro Truck Simulator 2",play,56.0,0 -197620904,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -197620904,"Microsoft Flight Simulator X Steam Edition",play,38.0,0 -197620904,"World of Mixed Martial Arts 3",purchase,1.0,0 -197620904,"World of Mixed Martial Arts 3",play,11.4,0 -197620904,"DCS World",purchase,1.0,0 -197620904,"DCS World",play,2.9,0 -197620904,"RaceRoom Racing Experience ",purchase,1.0,0 -197620904,"RaceRoom Racing Experience ",play,1.4,0 -197620904,"Sakura Clicker",purchase,1.0,0 -197620904,"Sakura Clicker",play,0.3,0 -197620904,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -197620904,"Mortal Kombat Legacy - Ep. 3 Johnny Cage",purchase,1.0,0 -197620904,"Mortal Kombat Legacy - Ep. 4 Kitana & Mileena (Part 1)",purchase,1.0,0 -197620904,"Mortal Kombat Legacy - Ep. 5 Kitana & Mileena (Part 2)",purchase,1.0,0 -197620904,"Mortal Kombat Legacy - Ep. 6 Raiden",purchase,1.0,0 -197620904,"Mortal Kombat Legacy - Ep. 7 Scorpion and Sub-Zero (Part 1)",purchase,1.0,0 -197620904,"Mortal Kombat Legacy - Ep. 8 Scorpion and Sub-Zero (Part 2)",purchase,1.0,0 -197620904,"Mortal Kombat Legacy - Ep. 9 Cyrax & Sektor",purchase,1.0,0 -106816274,"Dota 2",purchase,1.0,0 -106816274,"Dota 2",play,50.0,0 -106816274,"Counter-Strike Source",purchase,1.0,0 -106816274,"Counter-Strike Source",play,3.1,0 -106816274,"Arma 2",purchase,1.0,0 -106816274,"Arma 2",play,1.0,0 -106816274,"Arma 2 Operation Arrowhead",purchase,1.0,0 -106816274,"Arma 2 Operation Arrowhead",play,0.4,0 -106816274,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -56667587,"Call of Duty Modern Warfare 2",purchase,1.0,0 -56667587,"Call of Duty Modern Warfare 2",play,0.2,0 -56667587,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -179912213,"Dota 2",purchase,1.0,0 -179912213,"Dota 2",play,0.4,0 -181254402,"X Rebirth",purchase,1.0,0 -181254402,"X Rebirth",play,2.5,0 -211920439,"Dota 2",purchase,1.0,0 -211920439,"Dota 2",play,29.0,0 -211920439,"Bloodline Champions",purchase,1.0,0 -211920439,"Construct 2 Free",purchase,1.0,0 -211920439,"Dead Island Epidemic",purchase,1.0,0 -211920439,"Magicka Wizard Wars",purchase,1.0,0 -211920439,"War of the Roses",purchase,1.0,0 -184592379,"Dota 2",purchase,1.0,0 -184592379,"Dota 2",play,49.0,0 -184592379,"Warframe",purchase,1.0,0 -195594316,"Dota 2",purchase,1.0,0 -195594316,"Dota 2",play,3.8,0 -123165817,"Team Fortress 2",purchase,1.0,0 -123165817,"Team Fortress 2",play,216.0,0 -123165817,"Garry's Mod",purchase,1.0,0 -123165817,"Garry's Mod",play,34.0,0 -123165817,"Source Filmmaker",purchase,1.0,0 -123165817,"Source Filmmaker",play,2.5,0 -123165817,"The Expendabros",purchase,1.0,0 -123165817,"The Expendabros",play,1.4,0 -123165817,"Robocraft",purchase,1.0,0 -123165817,"Robocraft",play,0.8,0 -123165817,"Toribash",purchase,1.0,0 -123165817,"Toribash",play,0.3,0 -123165817,"Loadout",purchase,1.0,0 -123165817,"Loadout",play,0.3,0 -123165817,"Unturned",purchase,1.0,0 -123165817,"Unturned",play,0.3,0 -123165817,"Ascend Hand of Kul",purchase,1.0,0 -17878330,"Counter-Strike",purchase,1.0,0 -17878330,"Counter-Strike",play,0.2,0 -17878330,"Day of Defeat",purchase,1.0,0 -17878330,"Deathmatch Classic",purchase,1.0,0 -17878330,"Half-Life",purchase,1.0,0 -17878330,"Half-Life Blue Shift",purchase,1.0,0 -17878330,"Half-Life Opposing Force",purchase,1.0,0 -17878330,"Ricochet",purchase,1.0,0 -17878330,"Team Fortress Classic",purchase,1.0,0 -90685977,"Football Manager 2012",purchase,1.0,0 -90685977,"Football Manager 2012",play,156.0,0 -90685977,"Football Manager 2013",purchase,1.0,0 -90685977,"Football Manager 2013",play,85.0,0 -153399994,"Counter-Strike Source",purchase,1.0,0 -153399994,"Day of Defeat Source",purchase,1.0,0 -153399994,"Half-Life 2 Deathmatch",purchase,1.0,0 -153399994,"Half-Life 2 Lost Coast",purchase,1.0,0 -302684420,"TERA",purchase,1.0,0 -302684420,"TERA",play,0.6,0 -210965509,"Dota 2",purchase,1.0,0 -210965509,"Dota 2",play,11.4,0 -130452748,"Dota 2",purchase,1.0,0 -130452748,"Dota 2",play,1262.0,0 -205466848,"Dota 2",purchase,1.0,0 -205466848,"Dota 2",play,678.0,0 -205466848,"GEARCRACK Arena",purchase,1.0,0 -205466848,"Heroes & Generals",purchase,1.0,0 -274613184,"WTFast Gamers Private Network (GPN)",purchase,1.0,0 -61772065,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -61772065,"Call of Duty Modern Warfare 2 - Multiplayer",play,395.0,0 -61772065,"Counter-Strike Global Offensive",purchase,1.0,0 -61772065,"Counter-Strike Global Offensive",play,347.0,0 -61772065,"Borderlands 2",purchase,1.0,0 -61772065,"Borderlands 2",play,108.0,0 -61772065,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -61772065,"Call of Duty Modern Warfare 3 - Multiplayer",play,45.0,0 -61772065,"The Elder Scrolls V Skyrim",purchase,1.0,0 -61772065,"The Elder Scrolls V Skyrim",play,39.0,0 -61772065,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -61772065,"Call of Duty Black Ops - Multiplayer",play,30.0,0 -61772065,"Dota 2",purchase,1.0,0 -61772065,"Dota 2",play,22.0,0 -61772065,"Borderlands The Pre-Sequel",purchase,1.0,0 -61772065,"Borderlands The Pre-Sequel",play,15.1,0 -61772065,"Call of Duty Modern Warfare 2",purchase,1.0,0 -61772065,"Call of Duty Modern Warfare 2",play,14.7,0 -61772065,"Call of Duty Black Ops",purchase,1.0,0 -61772065,"Call of Duty Black Ops",play,9.8,0 -61772065,"Just Cause 2",purchase,1.0,0 -61772065,"Just Cause 2",play,5.3,0 -61772065,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -61772065,"Tom Clancy's Ghost Recon Phantoms - EU",play,4.8,0 -61772065,"Lichdom Battlemage",purchase,1.0,0 -61772065,"Lichdom Battlemage",play,4.4,0 -61772065,"Call of Duty Modern Warfare 3",purchase,1.0,0 -61772065,"Call of Duty Modern Warfare 3",play,3.7,0 -61772065,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -61772065,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,2.9,0 -61772065,"Trine 2",purchase,1.0,0 -61772065,"Trine 2",play,2.6,0 -61772065,"Portal",purchase,1.0,0 -61772065,"Portal",play,2.6,0 -61772065,"Pat & Mat",purchase,1.0,0 -61772065,"Pat & Mat",play,1.0,0 -61772065,"Brothers - A Tale of Two Sons",purchase,1.0,0 -61772065,"Brothers - A Tale of Two Sons",play,0.7,0 -61772065,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -61772065,"Tiny and Big Grandpa's Leftovers",play,0.6,0 -61772065,"Team Fortress 2",purchase,1.0,0 -61772065,"Team Fortress 2",play,0.5,0 -61772065,"Goat Simulator",purchase,1.0,0 -61772065,"Goat Simulator",play,0.3,0 -61772065,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -61772065,"Just Cause 2 Multiplayer Mod",play,0.2,0 -61772065,"Bunch Of Heroes",purchase,1.0,0 -61772065,"Bunch Of Heroes",play,0.2,0 -61772065,"Age of Empires III Complete Collection",purchase,1.0,0 -61772065,"BioShock Infinite",purchase,1.0,0 -61772065,"Garry's Mod",purchase,1.0,0 -61772065,"Metro 2033",purchase,1.0,0 -61772065,"Portal 2",purchase,1.0,0 -61772065,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -61772065,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -61772065,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -61772065,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -61772065,"theHunter",purchase,1.0,0 -61772065,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -61772065,"Tom Clancy's Ghost Recon Phantoms - EU Assault Starter Pack",purchase,1.0,0 -126622399,"Dota 2",purchase,1.0,0 -126622399,"Dota 2",play,170.0,0 -126622399,"8BitBoy",purchase,1.0,0 -126622399,"Blockstorm",purchase,1.0,0 -126622399,"Cry of Fear",purchase,1.0,0 -126622399,"Metro 2033",purchase,1.0,0 -126622399,"Path of Exile",purchase,1.0,0 -126622399,"Realms of the Haunting",purchase,1.0,0 -126622399,"The Culling Of The Cows",purchase,1.0,0 -126622399,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -126622399,"Warface",purchase,1.0,0 -126622399,"War Thunder",purchase,1.0,0 -278505070,"Dota 2",purchase,1.0,0 -278505070,"Dota 2",play,1.6,0 -281157668,"Dota 2",purchase,1.0,0 -281157668,"Dota 2",play,0.3,0 -170188540,"Dota 2",purchase,1.0,0 -170188540,"Dota 2",play,1.6,0 -198126859,"Tactical Intervention",purchase,1.0,0 -198126859,"Toribash",purchase,1.0,0 -198126859,"War Thunder",purchase,1.0,0 -163275488,"Dota 2",purchase,1.0,0 -163275488,"Dota 2",play,33.0,0 -282358910,"Team Fortress 2",purchase,1.0,0 -282358910,"Team Fortress 2",play,1.1,0 -282358910,"Blacklight Retribution",purchase,1.0,0 -282358910,"Dirty Bomb",purchase,1.0,0 -40601456,"Age of Empires II HD Edition",purchase,1.0,0 -40601456,"Age of Empires II HD Edition",play,492.0,0 -40601456,"LEGO MARVEL Super Heroes",purchase,1.0,0 -40601456,"LEGO MARVEL Super Heroes",play,78.0,0 -40601456,"Age of Empires II HD The Forgotten",purchase,1.0,0 -243522372,"Happy Wars",purchase,1.0,0 -243522372,"Happy Wars",play,9.3,0 -243522372,"Left 4 Dead 2",purchase,1.0,0 -243522372,"Left 4 Dead 2",play,5.6,0 -243522372,"7 Days to Die",purchase,1.0,0 -243522372,"7 Days to Die",play,2.2,0 -90595186,"Counter-Strike",purchase,1.0,0 -90595186,"Counter-Strike",play,5.6,0 -90595186,"DC Universe Online",purchase,1.0,0 -90595186,"DC Universe Online",play,2.6,0 -90595186,"Counter-Strike Condition Zero",purchase,1.0,0 -90595186,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -158005818,"Dota 2",purchase,1.0,0 -158005818,"Dota 2",play,1106.0,0 -74497511,"Call of Duty Black Ops",purchase,1.0,0 -74497511,"Call of Duty Black Ops",play,9.4,0 -74497511,"Mafia II",purchase,1.0,0 -74497511,"Mafia II",play,0.8,0 -74497511,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -187463594,"Mabinogi",purchase,1.0,0 -187463594,"Mabinogi",play,452.0,0 -187463594,"NBA 2K15",purchase,1.0,0 -187463594,"NBA 2K15",play,401.0,0 -187463594,"Dota 2",purchase,1.0,0 -187463594,"Dota 2",play,347.0,0 -187463594,"Grand Theft Auto V",purchase,1.0,0 -187463594,"Grand Theft Auto V",play,275.0,0 -187463594,"Mountain",purchase,1.0,0 -187463594,"Mountain",play,222.0,0 -187463594,"Left 4 Dead 2",purchase,1.0,0 -187463594,"Left 4 Dead 2",play,85.0,0 -187463594,"NBA 2K16",purchase,1.0,0 -187463594,"NBA 2K16",play,84.0,0 -187463594,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -187463594,"The Witcher 2 Assassins of Kings Enhanced Edition",play,60.0,0 -187463594,"The Witcher Enhanced Edition",purchase,1.0,0 -187463594,"The Witcher Enhanced Edition",play,54.0,0 -187463594,"The Escapists",purchase,1.0,0 -187463594,"The Escapists",play,49.0,0 -187463594,"Call of Duty Modern Warfare 3",purchase,1.0,0 -187463594,"Call of Duty Modern Warfare 3",play,46.0,0 -187463594,"Lucius",purchase,1.0,0 -187463594,"Lucius",play,44.0,0 -187463594,"PAYDAY 2",purchase,1.0,0 -187463594,"PAYDAY 2",play,44.0,0 -187463594,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -187463594,"Batman Arkham Asylum GOTY Edition",play,43.0,0 -187463594,"This War of Mine",purchase,1.0,0 -187463594,"This War of Mine",play,40.0,0 -187463594,"Portal 2",purchase,1.0,0 -187463594,"Portal 2",play,39.0,0 -187463594,"Half-Life 2",purchase,1.0,0 -187463594,"Half-Life 2",play,34.0,0 -187463594,"Tomb Raider",purchase,1.0,0 -187463594,"Tomb Raider",play,31.0,0 -187463594,"The Witcher Adventure Game",purchase,1.0,0 -187463594,"The Witcher Adventure Game",play,30.0,0 -187463594,"PROTOTYPE 2",purchase,1.0,0 -187463594,"PROTOTYPE 2",play,30.0,0 -187463594,"Euro Truck Simulator 2",purchase,1.0,0 -187463594,"Euro Truck Simulator 2",play,27.0,0 -187463594,"Sid Meier's Civilization V",purchase,1.0,0 -187463594,"Sid Meier's Civilization V",play,26.0,0 -187463594,"Mount Your Friends",purchase,1.0,0 -187463594,"Mount Your Friends",play,22.0,0 -187463594,"LYNE",purchase,1.0,0 -187463594,"LYNE",play,22.0,0 -187463594,"Scribblenauts Unlimited",purchase,1.0,0 -187463594,"Scribblenauts Unlimited",play,21.0,0 -187463594,"Batman Arkham Origins",purchase,1.0,0 -187463594,"Batman Arkham Origins",play,21.0,0 -187463594,"Prototype",purchase,1.0,0 -187463594,"Prototype",play,20.0,0 -187463594,"Dead Island",purchase,1.0,0 -187463594,"Dead Island",play,19.8,0 -187463594,"Call of Duty Modern Warfare 2",purchase,1.0,0 -187463594,"Call of Duty Modern Warfare 2",play,19.1,0 -187463594,"Dead Island Riptide",purchase,1.0,0 -187463594,"Dead Island Riptide",play,17.9,0 -187463594,"Batman Arkham City GOTY",purchase,1.0,0 -187463594,"Batman Arkham City GOTY",play,15.8,0 -187463594,"Portal",purchase,1.0,0 -187463594,"Portal",play,13.8,0 -187463594,"Love",purchase,1.0,0 -187463594,"Love",play,13.1,0 -187463594,"Goat Simulator",purchase,1.0,0 -187463594,"Goat Simulator",play,10.3,0 -187463594,"Saints Row IV",purchase,1.0,0 -187463594,"Saints Row IV",play,10.0,0 -187463594,"NEKOPARA Vol. 1",purchase,1.0,0 -187463594,"NEKOPARA Vol. 1",play,9.9,0 -187463594,"PAYDAY The Heist",purchase,1.0,0 -187463594,"PAYDAY The Heist",play,8.5,0 -187463594,"Counter-Strike Global Offensive",purchase,1.0,0 -187463594,"Counter-Strike Global Offensive",play,8.1,0 -187463594,"Call of Duty Advanced Warfare",purchase,1.0,0 -187463594,"Call of Duty Advanced Warfare",play,8.0,0 -187463594,"Scribblenauts Unmasked",purchase,1.0,0 -187463594,"Scribblenauts Unmasked",play,6.9,0 -187463594,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -187463594,"Call of Duty 4 Modern Warfare",play,6.3,0 -187463594,"Garry's Mod",purchase,1.0,0 -187463594,"Garry's Mod",play,5.9,0 -187463594,"The Elder Scrolls V Skyrim",purchase,1.0,0 -187463594,"The Elder Scrolls V Skyrim",play,5.5,0 -187463594,"The Witcher 3 Wild Hunt",purchase,1.0,0 -187463594,"The Witcher 3 Wild Hunt",play,5.5,0 -187463594,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -187463594,"Call of Duty Advanced Warfare - Multiplayer",play,5.0,0 -187463594,"Castle Crashers",purchase,1.0,0 -187463594,"Castle Crashers",play,4.8,0 -187463594,"Pool Nation",purchase,1.0,0 -187463594,"Pool Nation",play,4.3,0 -187463594,"Blockstorm",purchase,1.0,0 -187463594,"Blockstorm",play,4.1,0 -187463594,"ORION Prelude",purchase,1.0,0 -187463594,"ORION Prelude",play,4.1,0 -187463594,"To the Moon",purchase,1.0,0 -187463594,"To the Moon",play,3.6,0 -187463594,"Mortal Kombat X",purchase,1.0,0 -187463594,"Mortal Kombat X",play,3.6,0 -187463594,"ARK Survival Evolved",purchase,1.0,0 -187463594,"ARK Survival Evolved",play,3.6,0 -187463594,"A Bird Story",purchase,1.0,0 -187463594,"A Bird Story",play,3.0,0 -187463594,"Surgeon Simulator",purchase,1.0,0 -187463594,"Surgeon Simulator",play,2.8,0 -187463594,"Unturned",purchase,1.0,0 -187463594,"Unturned",play,2.4,0 -187463594,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -187463594,"Call of Duty Modern Warfare 2 - Multiplayer",play,1.8,0 -187463594,"Dungeon Defenders II",purchase,1.0,0 -187463594,"Dungeon Defenders II",play,1.0,0 -187463594,"Team Fortress 2",purchase,1.0,0 -187463594,"Team Fortress 2",play,0.6,0 -187463594,"Grand Theft Auto San Andreas",purchase,1.0,0 -187463594,"Grand Theft Auto San Andreas",play,0.5,0 -187463594,"Don't Starve",purchase,1.0,0 -187463594,"Don't Starve",play,0.3,0 -187463594,"how do you Do It?",purchase,1.0,0 -187463594,"how do you Do It?",play,0.3,0 -187463594,"The Talos Principle",purchase,1.0,0 -187463594,"The Talos Principle",play,0.2,0 -187463594,"Cry of Fear",purchase,1.0,0 -187463594,"Cry of Fear",play,0.2,0 -187463594,"Fractured Space",purchase,1.0,0 -187463594,"Fractured Space",play,0.2,0 -187463594,"Terraria",purchase,1.0,0 -187463594,"Terraria",play,0.2,0 -187463594,"No More Room in Hell",purchase,1.0,0 -187463594,"No More Room in Hell",play,0.1,0 -187463594,"Mafia II",purchase,1.0,0 -187463594,"Dead Island Epidemic",purchase,1.0,0 -187463594,"Everlasting Summer",purchase,1.0,0 -187463594,"Grand Theft Auto San Andreas",purchase,1.0,0 -187463594,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -187463594,"Batman Arkham Origins - Initiation",purchase,1.0,0 -187463594,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -187463594,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -187463594,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -187463594,"Batman Arkham Knight",purchase,1.0,0 -187463594,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -187463594,"Bully Scholarship Edition",purchase,1.0,0 -187463594,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -187463594,"Castle Crashers - Blacksmith Pack",purchase,1.0,0 -187463594,"Castle Crashers - Pink Knight Pack",purchase,1.0,0 -187463594,"Counter-Strike",purchase,1.0,0 -187463594,"Counter-Strike Condition Zero",purchase,1.0,0 -187463594,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -187463594,"Counter-Strike Source",purchase,1.0,0 -187463594,"Devil's Workshop pack",purchase,1.0,0 -187463594,"Don't Starve Reign of Giants",purchase,1.0,0 -187463594,"Don't Starve Together Beta",purchase,1.0,0 -187463594,"Euro Truck Simulator",purchase,1.0,0 -187463594,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -187463594,"Fallout",purchase,1.0,0 -187463594,"Fallout 2",purchase,1.0,0 -187463594,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -187463594,"Fallout New Vegas",purchase,1.0,0 -187463594,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -187463594,"Fallout New Vegas Dead Money",purchase,1.0,0 -187463594,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -187463594,"Fallout Tactics",purchase,1.0,0 -187463594,"Grand Theft Auto",purchase,1.0,0 -187463594,"Grand Theft Auto 2",purchase,1.0,0 -187463594,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -187463594,"Grand Theft Auto Vice City",purchase,1.0,0 -187463594,"Grand Theft Auto Vice City",purchase,1.0,0 -187463594,"Grand Theft Auto III",purchase,1.0,0 -187463594,"Grand Theft Auto III",purchase,1.0,0 -187463594,"Grand Theft Auto IV",purchase,1.0,0 -187463594,"Guardians of Orion",purchase,1.0,0 -187463594,"Half-Life",purchase,1.0,0 -187463594,"Half-Life 2 Deathmatch",purchase,1.0,0 -187463594,"Half-Life 2 Episode One",purchase,1.0,0 -187463594,"Half-Life 2 Episode Two",purchase,1.0,0 -187463594,"Half-Life 2 Lost Coast",purchase,1.0,0 -187463594,"Half-Life Blue Shift",purchase,1.0,0 -187463594,"Half-Life Opposing Force",purchase,1.0,0 -187463594,"Half-Life Source",purchase,1.0,0 -187463594,"Half-Life Deathmatch Source",purchase,1.0,0 -187463594,"Hotline Miami",purchase,1.0,0 -187463594,"Hotline Miami 2 Wrong Number",purchase,1.0,0 -187463594,"I am Bread",purchase,1.0,0 -187463594,"Insurgency",purchase,1.0,0 -187463594,"Joe Dever's Lone Wolf HD Remastered",purchase,1.0,0 -187463594,"Left 4 Dead",purchase,1.0,0 -187463594,"LEGO MARVEL Super Heroes",purchase,1.0,0 -187463594,"Life Is Strange",purchase,1.0,0 -187463594,"Middle-earth Shadow of Mordor",purchase,1.0,0 -187463594,"Mortal Kombat Komplete Edition",purchase,1.0,0 -187463594,"Outlast",purchase,1.0,0 -187463594,"Outlast Whistleblower DLC",purchase,1.0,0 -187463594,"PAYDAY The Heist Game Soundtrack",purchase,1.0,0 -187463594,"PAYDAY The Web Series - Episode 1",purchase,1.0,0 -187463594,"PAYDAY Wolf Pack",purchase,1.0,0 -187463594,"PlanetSide 2",purchase,1.0,0 -187463594,"Pool Nation - Flair Pack ",purchase,1.0,0 -187463594,"Prison Architect",purchase,1.0,0 -187463594,"Prototype 2 RADNET Access Pack",purchase,1.0,0 -187463594,"Robocraft",purchase,1.0,0 -187463594,"Saints Row 2",purchase,1.0,0 -187463594,"Saints Row Gat out of Hell",purchase,1.0,0 -187463594,"Saints Row The Third",purchase,1.0,0 -187463594,"ShareX",purchase,1.0,0 -187463594,"Sid Meier's Civilization III Complete",purchase,1.0,0 -187463594,"Sid Meier's Civilization IV",purchase,1.0,0 -187463594,"Sid Meier's Civilization IV",purchase,1.0,0 -187463594,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -187463594,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -187463594,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -187463594,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -187463594,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -187463594,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -187463594,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -187463594,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -187463594,"Sleeping Dogs Definitive Edition",purchase,1.0,0 -187463594,"Team Fortress Classic",purchase,1.0,0 -187463594,"The Bridge",purchase,1.0,0 -187463594,"The Elder Scrolls III Morrowind",purchase,1.0,0 -187463594,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -187463594,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -187463594,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -187463594,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -187463594,"The Lord of the Rings War in the North",purchase,1.0,0 -187463594,"The Void",purchase,1.0,0 -187463594,"The Witcher 3 Wild Hunt - Expansion Pass",purchase,1.0,0 -187463594,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -187463594,"This War of Mine - War Child Charity DLC",purchase,1.0,0 -187463594,"War Thunder",purchase,1.0,0 -234446846,"Copa Petrobras de Marcas",purchase,1.0,0 -234446846,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -234446846,"F1 2013",purchase,1.0,0 -62658713,"Grand Theft Auto V",purchase,1.0,0 -62658713,"Grand Theft Auto V",play,12.2,0 -62658713,"Serious Sam HD The Second Encounter",purchase,1.0,0 -62658713,"Serious Sam HD The Second Encounter",play,5.0,0 -62658713,"Sniper Elite V2",purchase,1.0,0 -62658713,"Sniper Elite V2",play,1.5,0 -62658713,"Portal",purchase,1.0,0 -68704183,"Project CARS",purchase,1.0,0 -68704183,"Project CARS",play,9.9,0 -46013902,"Serious Sam HD The Second Encounter",purchase,1.0,0 -46013902,"Serious Sam HD The Second Encounter",play,13.2,0 -184836567,"Heroes & Generals",purchase,1.0,0 -184836567,"Heroes & Generals",play,39.0,0 -184836567,"Unturned",purchase,1.0,0 -184836567,"Unturned",play,0.5,0 -208456672,"Mountain",purchase,1.0,0 -231089541,"Football Superstars",purchase,1.0,0 -126388107,"Dota 2",purchase,1.0,0 -126388107,"Dota 2",play,4122.0,0 -126388107,"Counter-Strike Global Offensive",purchase,1.0,0 -126388107,"Counter-Strike Global Offensive",play,136.0,0 -126388107,"Team Fortress 2",purchase,1.0,0 -126388107,"Team Fortress 2",play,19.2,0 -126388107,"Path of Exile",purchase,1.0,0 -126388107,"Path of Exile",play,13.6,0 -126388107,"District 187",purchase,1.0,0 -126388107,"District 187",play,13.0,0 -126388107,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -126388107,"Tom Clancy's Ghost Recon Phantoms - NA",play,11.8,0 -126388107,"GunZ 2 The Second Duel",purchase,1.0,0 -126388107,"GunZ 2 The Second Duel",play,7.9,0 -126388107,"Neverwinter",purchase,1.0,0 -126388107,"Neverwinter",play,5.5,0 -126388107,"Might & Magic Duel of Champions",purchase,1.0,0 -126388107,"Might & Magic Duel of Champions",play,4.6,0 -126388107,"Left 4 Dead 2",purchase,1.0,0 -126388107,"Left 4 Dead 2",play,2.7,0 -126388107,"Free to Play",purchase,1.0,0 -126388107,"Free to Play",play,1.3,0 -126388107,"Arctic Combat",purchase,1.0,0 -126388107,"Arctic Combat",play,1.1,0 -126388107,"TERA",purchase,1.0,0 -126388107,"TERA",play,0.9,0 -126388107,"PAYDAY The Heist",purchase,1.0,0 -126388107,"PAYDAY The Heist",play,0.4,0 -126388107,"Dead Island Epidemic",purchase,1.0,0 -126388107,"Happy Wars",purchase,1.0,0 -126388107,"Loadout",purchase,1.0,0 -126388107,"Lost Saga North America",purchase,1.0,0 -126388107,"Robocraft",purchase,1.0,0 -186040249,"Arma 2",purchase,1.0,0 -186040249,"Arma 2",play,110.0,0 -186040249,"PlanetSide 2",purchase,1.0,0 -186040249,"PlanetSide 2",play,82.0,0 -186040249,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -186040249,"Tom Clancy's Ghost Recon Phantoms - NA",play,54.0,0 -186040249,"War Thunder",purchase,1.0,0 -186040249,"War Thunder",play,44.0,0 -186040249,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -186040249,"Rising Storm/Red Orchestra 2 Multiplayer",play,29.0,0 -186040249,"DCS World",purchase,1.0,0 -186040249,"DCS World",play,26.0,0 -186040249,"Euro Truck Simulator 2",purchase,1.0,0 -186040249,"Euro Truck Simulator 2",play,23.0,0 -186040249,"Team Fortress 2",purchase,1.0,0 -186040249,"Team Fortress 2",play,15.1,0 -186040249,"Heroes & Generals",purchase,1.0,0 -186040249,"Heroes & Generals",play,13.6,0 -186040249,"The Walking Dead",purchase,1.0,0 -186040249,"The Walking Dead",play,10.3,0 -186040249,"The Walking Dead Season Two",purchase,1.0,0 -186040249,"The Walking Dead Season Two",play,9.2,0 -186040249,"APB Reloaded",purchase,1.0,0 -186040249,"APB Reloaded",play,6.1,0 -186040249,"Dirty Bomb",purchase,1.0,0 -186040249,"Dirty Bomb",play,5.2,0 -186040249,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -186040249,"S.T.A.L.K.E.R. Call of Pripyat",play,2.5,0 -186040249,"Emily is Away",purchase,1.0,0 -186040249,"Emily is Away",play,1.0,0 -186040249,"Zombie Panic Source",purchase,1.0,0 -186040249,"Zombie Panic Source",play,0.7,0 -186040249,"America's Army Proving Grounds",purchase,1.0,0 -186040249,"America's Army Proving Grounds",play,0.6,0 -186040249,"Unturned",purchase,1.0,0 -186040249,"Unturned",play,0.4,0 -186040249,"Soldier Front 2",purchase,1.0,0 -186040249,"Soldier Front 2",play,0.2,0 -186040249,"Arma 2 Free",purchase,1.0,0 -54819677,"The Elder Scrolls V Skyrim",purchase,1.0,0 -54819677,"The Elder Scrolls V Skyrim",play,184.0,0 -54819677,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -54819677,"F.E.A.R. 2 Project Origin",play,8.7,0 -54819677,"Wolfenstein The New Order",purchase,1.0,0 -54819677,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -54819677,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -141493630,"Dota 2",purchase,1.0,0 -141493630,"Dota 2",play,0.2,0 -157598403,"Endless Space",purchase,1.0,0 -157598403,"Endless Space",play,1.3,0 -228865961,"Spintires",purchase,1.0,0 -228865961,"Spintires",play,37.0,0 -228865961,"Disney Infinity 3.0 Play Without Limits",purchase,1.0,0 -19085114,"Team Fortress 2",purchase,1.0,0 -19085114,"Team Fortress 2",play,208.0,0 -19085114,"Neverwinter",purchase,1.0,0 -19085114,"Neverwinter",play,184.0,0 -19085114,"Killing Floor",purchase,1.0,0 -19085114,"Killing Floor",play,171.0,0 -19085114,"FTL Faster Than Light",purchase,1.0,0 -19085114,"FTL Faster Than Light",play,162.0,0 -19085114,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -19085114,"Warhammer 40,000 Dawn of War Dark Crusade",play,127.0,0 -19085114,"Empire Total War",purchase,1.0,0 -19085114,"Empire Total War",play,103.0,0 -19085114,"Day of Defeat Source",purchase,1.0,0 -19085114,"Day of Defeat Source",play,56.0,0 -19085114,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -19085114,"Star Wars Jedi Knight Jedi Academy",play,49.0,0 -19085114,"The Elder Scrolls III Morrowind",purchase,1.0,0 -19085114,"The Elder Scrolls III Morrowind",play,46.0,0 -19085114,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -19085114,"Warhammer 40,000 Dawn of War II Retribution",play,44.0,0 -19085114,"Company of Heroes Tales of Valor",purchase,1.0,0 -19085114,"Company of Heroes Tales of Valor",play,41.0,0 -19085114,"Star Wars Knights of the Old Republic",purchase,1.0,0 -19085114,"Star Wars Knights of the Old Republic",play,39.0,0 -19085114,"Legend of Grimrock 2",purchase,1.0,0 -19085114,"Legend of Grimrock 2",play,35.0,0 -19085114,"Age of Empires III Complete Collection",purchase,1.0,0 -19085114,"Age of Empires III Complete Collection",play,29.0,0 -19085114,"Legend of Grimrock",purchase,1.0,0 -19085114,"Legend of Grimrock",play,25.0,0 -19085114,"Star Wars - Battlefront II",purchase,1.0,0 -19085114,"Star Wars - Battlefront II",play,25.0,0 -19085114,"Portal 2",purchase,1.0,0 -19085114,"Portal 2",play,23.0,0 -19085114,"Company of Heroes 2",purchase,1.0,0 -19085114,"Company of Heroes 2",play,22.0,0 -19085114,"The Curious Expedition",purchase,1.0,0 -19085114,"The Curious Expedition",play,20.0,0 -19085114,"Zombie Panic Source",purchase,1.0,0 -19085114,"Zombie Panic Source",play,18.5,0 -19085114,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -19085114,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,16.4,0 -19085114,"Total War ROME II - Emperor Edition",purchase,1.0,0 -19085114,"Total War ROME II - Emperor Edition",play,15.8,0 -19085114,"Eufloria",purchase,1.0,0 -19085114,"Eufloria",play,14.7,0 -19085114,"Garry's Mod",purchase,1.0,0 -19085114,"Garry's Mod",play,14.3,0 -19085114,"Divinity Dragon Commander",purchase,1.0,0 -19085114,"Divinity Dragon Commander",play,13.6,0 -19085114,"Age of Mythology Extended Edition",purchase,1.0,0 -19085114,"Age of Mythology Extended Edition",play,10.7,0 -19085114,"Sheltered",purchase,1.0,0 -19085114,"Sheltered",play,10.6,0 -19085114,"Greed Corp",purchase,1.0,0 -19085114,"Greed Corp",play,10.1,0 -19085114,"Renowned Explorers International Society",purchase,1.0,0 -19085114,"Renowned Explorers International Society",play,10.0,0 -19085114,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -19085114,"Red Orchestra Ostfront 41-45",play,9.8,0 -19085114,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -19085114,"Vampire The Masquerade - Bloodlines",play,9.4,0 -19085114,"Medieval II Total War",purchase,1.0,0 -19085114,"Medieval II Total War",play,9.2,0 -19085114,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -19085114,"STAR WARS Knights of the Old Republic II The Sith Lords",play,8.9,0 -19085114,"Fable Anniversary",purchase,1.0,0 -19085114,"Fable Anniversary",play,8.1,0 -19085114,"Chivalry Medieval Warfare",purchase,1.0,0 -19085114,"Chivalry Medieval Warfare",play,8.0,0 -19085114,"Multiwinia",purchase,1.0,0 -19085114,"Multiwinia",play,7.9,0 -19085114,"Metro Last Light",purchase,1.0,0 -19085114,"Metro Last Light",play,7.6,0 -19085114,"Age of Chivalry",purchase,1.0,0 -19085114,"Age of Chivalry",play,7.4,0 -19085114,"Terraria",purchase,1.0,0 -19085114,"Terraria",play,7.2,0 -19085114,"Half-Life",purchase,1.0,0 -19085114,"Half-Life",play,6.6,0 -19085114,"Dino D-Day",purchase,1.0,0 -19085114,"Dino D-Day",play,5.9,0 -19085114,"X-COM UFO Defense",purchase,1.0,0 -19085114,"X-COM UFO Defense",play,4.7,0 -19085114,"Out There Edition",purchase,1.0,0 -19085114,"Out There Edition",play,4.5,0 -19085114,"TERA",purchase,1.0,0 -19085114,"TERA",play,4.2,0 -19085114,"Flight Control HD",purchase,1.0,0 -19085114,"Flight Control HD",play,4.0,0 -19085114,"Half-Life Blue Shift",purchase,1.0,0 -19085114,"Half-Life Blue Shift",play,3.9,0 -19085114,"Day of Defeat",purchase,1.0,0 -19085114,"Day of Defeat",play,3.1,0 -19085114,"Penumbra Black Plague",purchase,1.0,0 -19085114,"Penumbra Black Plague",play,3.0,0 -19085114,"Aliens versus Predator Classic 2000",purchase,1.0,0 -19085114,"Aliens versus Predator Classic 2000",play,2.9,0 -19085114,"ARK Survival Evolved",purchase,1.0,0 -19085114,"ARK Survival Evolved",play,2.4,0 -19085114,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -19085114,"Fallout 3 - Game of the Year Edition",play,2.4,0 -19085114,"Counter-Strike Source",purchase,1.0,0 -19085114,"Counter-Strike Source",play,2.1,0 -19085114,"Portal",purchase,1.0,0 -19085114,"Portal",play,1.9,0 -19085114,"Deus Ex Human Revolution",purchase,1.0,0 -19085114,"Deus Ex Human Revolution",play,1.8,0 -19085114,"Insurgency Modern Infantry Combat",purchase,1.0,0 -19085114,"Insurgency Modern Infantry Combat",play,1.6,0 -19085114,"Gotham City Impostors",purchase,1.0,0 -19085114,"Gotham City Impostors",play,1.6,0 -19085114,"Reus",purchase,1.0,0 -19085114,"Reus",play,1.5,0 -19085114,"Alien Swarm",purchase,1.0,0 -19085114,"Alien Swarm",play,1.5,0 -19085114,"Zombies Monsters Robots",purchase,1.0,0 -19085114,"Zombies Monsters Robots",play,1.5,0 -19085114,"Torchlight II",purchase,1.0,0 -19085114,"Torchlight II",play,1.3,0 -19085114,"Penumbra Overture",purchase,1.0,0 -19085114,"Penumbra Overture",play,1.0,0 -19085114,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -19085114,"Warhammer 40,000 Dawn of War Winter Assault",play,0.9,0 -19085114,"Sid Meier's Pirates!",purchase,1.0,0 -19085114,"Sid Meier's Pirates!",play,0.9,0 -19085114,"BioShock",purchase,1.0,0 -19085114,"BioShock",play,0.9,0 -19085114,"WAKFU",purchase,1.0,0 -19085114,"WAKFU",play,0.8,0 -19085114,"DEFCON",purchase,1.0,0 -19085114,"DEFCON",play,0.8,0 -19085114,"Stubbs the Zombie in Rebel Without a Pulse",purchase,1.0,0 -19085114,"Stubbs the Zombie in Rebel Without a Pulse",play,0.7,0 -19085114,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -19085114,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,0.7,0 -19085114,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -19085114,"Killing Floor Mod Defence Alliance 2",play,0.6,0 -19085114,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -19085114,"Galactic Civilizations II Ultimate Edition",play,0.6,0 -19085114,"Darkest Hour Europe '44-'45",purchase,1.0,0 -19085114,"Darkest Hour Europe '44-'45",play,0.6,0 -19085114,"Smashball",purchase,1.0,0 -19085114,"Smashball",play,0.5,0 -19085114,"Contagion",purchase,1.0,0 -19085114,"Contagion",play,0.3,0 -19085114,"DOOM 3 Resurrection of Evil",purchase,1.0,0 -19085114,"DOOM 3 Resurrection of Evil",play,0.3,0 -19085114,"Dota 2",purchase,1.0,0 -19085114,"Dota 2",play,0.3,0 -19085114,"Ace of Spades",purchase,1.0,0 -19085114,"Ace of Spades",play,0.2,0 -19085114,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -19085114,"S.T.A.L.K.E.R. Call of Pripyat",play,0.1,0 -19085114,"The History Channel Civil War",purchase,1.0,0 -19085114,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -19085114,"Darkest Dungeon",purchase,1.0,0 -19085114,"GUN",purchase,1.0,0 -19085114,"Team Fortress Classic",purchase,1.0,0 -19085114,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -19085114,"Arma 2",purchase,1.0,0 -19085114,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -19085114,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -19085114,"Company of Heroes (New Steam Version)",purchase,1.0,0 -19085114,"Darwinia",purchase,1.0,0 -19085114,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -19085114,"Divinity Dragon Commander Beta",purchase,1.0,0 -19085114,"DOOM 3",purchase,1.0,0 -19085114,"Eufloria HD",purchase,1.0,0 -19085114,"Eufloria HD Original Soundtrack",purchase,1.0,0 -19085114,"Gotham City Impostors Free To Play",purchase,1.0,0 -19085114,"Half-Life Opposing Force",purchase,1.0,0 -19085114,"Mare Nostrum",purchase,1.0,0 -19085114,"Patch testing for Chivalry",purchase,1.0,0 -19085114,"Penumbra Requiem",purchase,1.0,0 -19085114,"Uplink",purchase,1.0,0 -4897767,"Counter-Strike",purchase,1.0,0 -4897767,"Counter-Strike",play,1.6,0 -4897767,"Day of Defeat",purchase,1.0,0 -4897767,"Deathmatch Classic",purchase,1.0,0 -4897767,"Half-Life",purchase,1.0,0 -4897767,"Half-Life Blue Shift",purchase,1.0,0 -4897767,"Half-Life Opposing Force",purchase,1.0,0 -4897767,"Ricochet",purchase,1.0,0 -4897767,"Team Fortress Classic",purchase,1.0,0 -96405427,"Team Fortress 2",purchase,1.0,0 -96405427,"Team Fortress 2",play,0.8,0 -209258544,"Dota 2",purchase,1.0,0 -209258544,"Dota 2",play,5.2,0 -32818456,"Counter-Strike Source",purchase,1.0,0 -32818456,"Counter-Strike Source",play,8.6,0 -32818456,"Half-Life 2 Deathmatch",purchase,1.0,0 -32818456,"Half-Life 2 Deathmatch",play,0.3,0 -32818456,"Day of Defeat Source",purchase,1.0,0 -32818456,"Half-Life 2 Lost Coast",purchase,1.0,0 -138695230,"Dota 2",purchase,1.0,0 -138695230,"Dota 2",play,458.0,0 -36157772,"Half-Life 2 Deathmatch",purchase,1.0,0 -36157772,"Half-Life 2 Lost Coast",purchase,1.0,0 -153991478,"Dead Island",purchase,1.0,0 -153991478,"Dead Island",play,48.0,0 -153991478,"Dying Light",purchase,1.0,0 -153991478,"Dying Light",play,41.0,0 -153991478,"The Mighty Quest For Epic Loot",purchase,1.0,0 -153991478,"The Mighty Quest For Epic Loot",play,15.8,0 -153991478,"TERA",purchase,1.0,0 -153991478,"TERA",play,3.5,0 -153991478,"Lost Lands A Hidden Object Adventure",purchase,1.0,0 -153991478,"Lost Lands A Hidden Object Adventure",play,1.2,0 -153991478,"Dead Island Riptide",purchase,1.0,0 -153991478,"Dead Island Riptide",play,1.1,0 -153991478,"Tomb Raider I",purchase,1.0,0 -153991478,"Tomb Raider I",play,0.6,0 -153991478,"F.E.A.R. Online",purchase,1.0,0 -153991478,"F.E.A.R. Online",play,0.2,0 -153991478,"Pinball Arcade",purchase,1.0,0 -153991478,"Pinball Arcade",play,0.2,0 -153991478,"Tomb Raider II",purchase,1.0,0 -153991478,"Tomb Raider II",play,0.1,0 -153991478,"Transformice",purchase,1.0,0 -153991478,"Anno Online",purchase,1.0,0 -211710590,"Dota 2",purchase,1.0,0 -211710590,"Dota 2",play,30.0,0 -195611290,"Dota 2",purchase,1.0,0 -195611290,"Dota 2",play,1.5,0 -207633085,"Nosgoth",purchase,1.0,0 -207633085,"Nosgoth",play,26.0,0 -207633085,"Team Fortress 2",purchase,1.0,0 -207633085,"Team Fortress 2",play,2.8,0 -207633085,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -207633085,"The Incredible Adventures of Van Helsing",play,0.5,0 -207633085,"Paint the Town Red",purchase,1.0,0 -207633085,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -215586007,"The Escapists",purchase,1.0,0 -215586007,"The Escapists",play,37.0,0 -215586007,"Far Cry 3",purchase,1.0,0 -215586007,"Far Cry 3",play,1.5,0 -215586007,"Nosgoth",purchase,1.0,0 -215586007,"Nosgoth",play,0.4,0 -215586007,"Warface",purchase,1.0,0 -215586007,"Infinite Crisis",purchase,1.0,0 -101656933,"Sid Meier's Civilization V",purchase,1.0,0 -101656933,"Sid Meier's Civilization V",play,428.0,0 -101656933,"The Political Machine",purchase,1.0,0 -101656933,"The Political Machine",play,71.0,0 -101656933,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -101656933,"STAR WARS Knights of the Old Republic II The Sith Lords",play,44.0,0 -101656933,"Medieval II Total War",purchase,1.0,0 -101656933,"Medieval II Total War",play,17.1,0 -101656933,"Star Wars Knights of the Old Republic",purchase,1.0,0 -101656933,"Star Wars Knights of the Old Republic",play,14.3,0 -101656933,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -101656933,"Galactic Civilizations II Ultimate Edition",play,7.4,0 -101656933,"Medieval II Total War Kingdoms",purchase,1.0,0 -101656933,"Medieval II Total War Kingdoms",play,5.5,0 -101656933,"SimCity 4 Deluxe",purchase,1.0,0 -101656933,"SimCity 4 Deluxe",play,4.3,0 -101656933,"Democracy 2",purchase,1.0,0 -101656933,"Democracy 2",play,4.2,0 -101656933,"Star Wars - Battlefront II",purchase,1.0,0 -101656933,"Star Wars - Battlefront II",play,2.8,0 -101656933,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -40529387,"Counter-Strike",purchase,1.0,0 -40529387,"Counter-Strike",play,0.1,0 -40529387,"Counter-Strike Condition Zero",purchase,1.0,0 -40529387,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -40529387,"Day of Defeat",purchase,1.0,0 -40529387,"Deathmatch Classic",purchase,1.0,0 -40529387,"Ricochet",purchase,1.0,0 -55120589,"Counter-Strike",purchase,1.0,0 -55120589,"Counter-Strike",play,4.6,0 -55120589,"Counter-Strike Condition Zero",purchase,1.0,0 -55120589,"Counter-Strike Condition Zero",play,1.6,0 -55120589,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -55120589,"Day of Defeat",purchase,1.0,0 -55120589,"Deathmatch Classic",purchase,1.0,0 -55120589,"Half-Life 2 Deathmatch",purchase,1.0,0 -55120589,"Half-Life 2 Lost Coast",purchase,1.0,0 -55120589,"Ricochet",purchase,1.0,0 -228515687,"BLOCKADE 3D",purchase,1.0,0 -228515687,"BLOCKADE 3D",play,15.3,0 -206350236,"Dota 2",purchase,1.0,0 -206350236,"Dota 2",play,1.4,0 -262195804,"Grand Theft Auto V",purchase,1.0,0 -262195804,"Grand Theft Auto V",play,52.0,0 -262195804,"Left 4 Dead 2",purchase,1.0,0 -262195804,"Left 4 Dead 2",play,38.0,0 -262195804,"Don't Starve",purchase,1.0,0 -262195804,"Don't Starve",play,9.8,0 -262195804,"Don't Starve Together Beta",purchase,1.0,0 -262195804,"Don't Starve Together Beta",play,8.7,0 -262195804,"Project Zomboid",purchase,1.0,0 -262195804,"Project Zomboid",play,3.2,0 -262195804,"Heroes of Might & Magic III - HD Edition",purchase,1.0,0 -262195804,"Heroes of Might & Magic III - HD Edition",play,1.1,0 -262195804,"Fallout 4",purchase,1.0,0 -262195804,"Fallout 4",play,1.0,0 -262195804,"Waveform",purchase,1.0,0 -262195804,"Don't Starve Reign of Giants",purchase,1.0,0 -189459679,"Dota 2",purchase,1.0,0 -189459679,"Dota 2",play,0.4,0 -248226905,"Nosgoth",purchase,1.0,0 -217259835,"Dota 2",purchase,1.0,0 -217259835,"Dota 2",play,0.4,0 -36933405,"Xpand Rally",purchase,1.0,0 -196047720,"Warface",purchase,1.0,0 -196047720,"Warface",play,0.7,0 -8259307,"Team Fortress 2",purchase,1.0,0 -8259307,"Team Fortress 2",play,55.0,0 -8259307,"Sid Meier's Civilization V",purchase,1.0,0 -8259307,"Sid Meier's Civilization V",play,7.2,0 -8259307,"The Elder Scrolls V Skyrim",purchase,1.0,0 -8259307,"The Elder Scrolls V Skyrim",play,6.9,0 -8259307,"Marvel Heroes 2015",purchase,1.0,0 -8259307,"Marvel Heroes 2015",play,6.8,0 -8259307,"Grand Theft Auto Vice City",purchase,1.0,0 -8259307,"Grand Theft Auto Vice City",play,5.3,0 -8259307,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -8259307,"Fallout 3 - Game of the Year Edition",play,2.9,0 -8259307,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -8259307,"The Incredible Adventures of Van Helsing",play,2.7,0 -8259307,"Batman Arkham City GOTY",purchase,1.0,0 -8259307,"Batman Arkham City GOTY",play,2.7,0 -8259307,"Cities Skylines",purchase,1.0,0 -8259307,"Cities Skylines",play,2.6,0 -8259307,"Defiance",purchase,1.0,0 -8259307,"Defiance",play,2.5,0 -8259307,"Tropico 4",purchase,1.0,0 -8259307,"Tropico 4",play,2.1,0 -8259307,"Just Cause 2",purchase,1.0,0 -8259307,"Just Cause 2",play,1.9,0 -8259307,"Firefall",purchase,1.0,0 -8259307,"Firefall",play,1.8,0 -8259307,"Torchlight II",purchase,1.0,0 -8259307,"Torchlight II",play,1.7,0 -8259307,"Unepic",purchase,1.0,0 -8259307,"Unepic",play,1.7,0 -8259307,"Grand Theft Auto IV",purchase,1.0,0 -8259307,"Grand Theft Auto IV",play,1.6,0 -8259307,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -8259307,"Grand Theft Auto Episodes from Liberty City",play,1.4,0 -8259307,"Age of Mythology Extended Edition",purchase,1.0,0 -8259307,"Age of Mythology Extended Edition",play,1.3,0 -8259307,"Fallout New Vegas",purchase,1.0,0 -8259307,"Fallout New Vegas",play,1.3,0 -8259307,"Far Cry 3 Blood Dragon",purchase,1.0,0 -8259307,"Far Cry 3 Blood Dragon",play,1.2,0 -8259307,"Risen 2 - Dark Waters",purchase,1.0,0 -8259307,"Risen 2 - Dark Waters",play,1.2,0 -8259307,"Surgeon Simulator",purchase,1.0,0 -8259307,"Surgeon Simulator",play,0.9,0 -8259307,"Zack Zero",purchase,1.0,0 -8259307,"Zack Zero",play,0.7,0 -8259307,"Star Wars Knights of the Old Republic",purchase,1.0,0 -8259307,"Star Wars Knights of the Old Republic",play,0.7,0 -8259307,"Max Payne 3",purchase,1.0,0 -8259307,"Max Payne 3",play,0.6,0 -8259307,"Saints Row The Third",purchase,1.0,0 -8259307,"Saints Row The Third",play,0.6,0 -8259307,"Age of Wonders III",purchase,1.0,0 -8259307,"Age of Wonders III",play,0.6,0 -8259307,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -8259307,"Warhammer 40,000 Dawn of War II Retribution",play,0.6,0 -8259307,"Age of Empires II HD Edition",purchase,1.0,0 -8259307,"Age of Empires II HD Edition",play,0.5,0 -8259307,"Just Cause",purchase,1.0,0 -8259307,"Just Cause",play,0.5,0 -8259307,"Poker Night 2",purchase,1.0,0 -8259307,"Poker Night 2",play,0.5,0 -8259307,"The Elder Scrolls III Morrowind",purchase,1.0,0 -8259307,"The Elder Scrolls III Morrowind",play,0.5,0 -8259307,"Serious Sam 3 BFE",purchase,1.0,0 -8259307,"Serious Sam 3 BFE",play,0.5,0 -8259307,"Watch_Dogs",purchase,1.0,0 -8259307,"Watch_Dogs",play,0.5,0 -8259307,"Reus",purchase,1.0,0 -8259307,"Reus",play,0.5,0 -8259307,"Don't Starve",purchase,1.0,0 -8259307,"Don't Starve",play,0.5,0 -8259307,"Requiem",purchase,1.0,0 -8259307,"Requiem",play,0.4,0 -8259307,"The Walking Dead",purchase,1.0,0 -8259307,"The Walking Dead",play,0.4,0 -8259307,"God Mode",purchase,1.0,0 -8259307,"God Mode",play,0.4,0 -8259307,"Deadlight",purchase,1.0,0 -8259307,"Deadlight",play,0.4,0 -8259307,"SimCity 4 Deluxe",purchase,1.0,0 -8259307,"SimCity 4 Deluxe",play,0.4,0 -8259307,"Call of Juarez Gunslinger",purchase,1.0,0 -8259307,"Call of Juarez Gunslinger",play,0.4,0 -8259307,"Grand Theft Auto San Andreas",purchase,1.0,0 -8259307,"Grand Theft Auto San Andreas",play,0.4,0 -8259307,"Peggle Nights",purchase,1.0,0 -8259307,"Peggle Nights",play,0.3,0 -8259307,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -8259307,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.3,0 -8259307,"Deus Ex Human Revolution",purchase,1.0,0 -8259307,"Deus Ex Human Revolution",play,0.3,0 -8259307,"BIT.TRIP FATE",purchase,1.0,0 -8259307,"BIT.TRIP FATE",play,0.3,0 -8259307,"The Binding of Isaac",purchase,1.0,0 -8259307,"The Binding of Isaac",play,0.3,0 -8259307,"Post Apocalyptic Mayhem",purchase,1.0,0 -8259307,"Post Apocalyptic Mayhem",play,0.2,0 -8259307,"Grand Theft Auto III",purchase,1.0,0 -8259307,"Grand Theft Auto III",play,0.2,0 -8259307,"System Shock 2",purchase,1.0,0 -8259307,"System Shock 2",play,0.2,0 -8259307,"Bejeweled 3",purchase,1.0,0 -8259307,"Bejeweled 3",play,0.2,0 -8259307,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -8259307,"Duke Nukem 3D Megaton Edition",play,0.1,0 -8259307,"Grand Theft Auto 2",purchase,1.0,0 -8259307,"Grand Theft Auto 2",play,0.1,0 -8259307,"Hotline Miami",purchase,1.0,0 -8259307,"Hotline Miami",play,0.1,0 -8259307,"Gunman Clive",purchase,1.0,0 -8259307,"Gunman Clive",play,0.1,0 -8259307,"Awesomenauts",purchase,1.0,0 -8259307,"Awesomenauts",play,0.1,0 -8259307,"Half-Life",purchase,1.0,0 -8259307,"Ace of Spades",purchase,1.0,0 -8259307,"Echo of Soul",purchase,1.0,0 -8259307,"Nimbus",purchase,1.0,0 -8259307,"Alan Wake",purchase,1.0,0 -8259307,"Alan Wake's American Nightmare",purchase,1.0,0 -8259307,"Counter-Strike",purchase,1.0,0 -8259307,"Counter-Strike Source",purchase,1.0,0 -8259307,"Day of Defeat",purchase,1.0,0 -8259307,"Deathmatch Classic",purchase,1.0,0 -8259307,"Deus Ex Game of the Year Edition",purchase,1.0,0 -8259307,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -8259307,"Deus Ex Invisible War",purchase,1.0,0 -8259307,"Don't Starve Together Beta",purchase,1.0,0 -8259307,"Fable Anniversary",purchase,1.0,0 -8259307,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -8259307,"Fallout New Vegas Dead Money",purchase,1.0,0 -8259307,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -8259307,"Grand Theft Auto",purchase,1.0,0 -8259307,"Grand Theft Auto San Andreas",purchase,1.0,0 -8259307,"Grand Theft Auto Vice City",purchase,1.0,0 -8259307,"Grand Theft Auto III",purchase,1.0,0 -8259307,"Half-Life 2",purchase,1.0,0 -8259307,"Half-Life 2 Deathmatch",purchase,1.0,0 -8259307,"Half-Life 2 Episode One",purchase,1.0,0 -8259307,"Half-Life 2 Episode Two",purchase,1.0,0 -8259307,"Half-Life 2 Lost Coast",purchase,1.0,0 -8259307,"Half-Life Blue Shift",purchase,1.0,0 -8259307,"Half-Life Opposing Force",purchase,1.0,0 -8259307,"Portal",purchase,1.0,0 -8259307,"Ricochet",purchase,1.0,0 -8259307,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -8259307,"Team Fortress Classic",purchase,1.0,0 -8259307,"Terraria",purchase,1.0,0 -8259307,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -8259307,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -8259307,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -8259307,"Titan Quest",purchase,1.0,0 -8259307,"Titan Quest Immortal Throne",purchase,1.0,0 -78874120,"Darkest Hour Europe '44-'45",purchase,1.0,0 -78874120,"Darkest Hour Europe '44-'45",play,0.1,0 -78874120,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -78874120,"Mare Nostrum",purchase,1.0,0 -106797321,"Sid Meier's Civilization V",purchase,1.0,0 -106797321,"Sid Meier's Civilization V",play,1.7,0 -276239290,"Red Crucible Firestorm",purchase,1.0,0 -276239290,"Red Crucible Firestorm",play,1.4,0 -195105416,"Team Fortress 2",purchase,1.0,0 -195105416,"Team Fortress 2",play,4.0,0 -195105416,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -195105416,"Tom Clancy's Ghost Recon Phantoms - EU",play,2.0,0 -140499826,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -140499826,"Star Wars Jedi Knight Jedi Academy",play,98.0,0 -140499826,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -140499826,"Star Wars Jedi Knight Dark Forces II",play,16.7,0 -140499826,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -140499826,"Star Wars - Jedi Knight II Jedi Outcast",play,5.7,0 -140499826,"Star Wars Dark Forces",purchase,1.0,0 -140499826,"Star Wars Dark Forces",play,2.8,0 -140499826,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -240563783,"Dota 2",purchase,1.0,0 -240563783,"Dota 2",play,9.6,0 -252217917,"Dota 2",purchase,1.0,0 -252217917,"Dota 2",play,5.5,0 -252217917,"Lost Lands A Hidden Object Adventure",purchase,1.0,0 -252217917,"Lost Lands A Hidden Object Adventure",play,0.1,0 -41887439,"Day of Defeat Source",purchase,1.0,0 -41887439,"Day of Defeat Source",play,621.0,0 -41887439,"War of the Roses",purchase,1.0,0 -41887439,"War of the Roses",play,250.0,0 -41887439,"Mount & Blade Warband",purchase,1.0,0 -41887439,"Mount & Blade Warband",play,106.0,0 -41887439,"Arma 3",purchase,1.0,0 -41887439,"Arma 3",play,47.0,0 -41887439,"Chivalry Medieval Warfare",purchase,1.0,0 -41887439,"Chivalry Medieval Warfare",play,29.0,0 -41887439,"Team Fortress 2",purchase,1.0,0 -41887439,"Team Fortress 2",play,19.3,0 -41887439,"DayZ",purchase,1.0,0 -41887439,"DayZ",play,13.9,0 -41887439,"Electronic Super Joy",purchase,1.0,0 -41887439,"Electronic Super Joy",play,4.4,0 -41887439,"Arma 3 Zeus",purchase,1.0,0 -41887439,"Electronic Super Joy Bonus Content",purchase,1.0,0 -41887439,"Patch testing for Chivalry",purchase,1.0,0 -41887439,"War of the Roses Kingmaker",purchase,1.0,0 -41887439,"War of the Roses Balance Beta",purchase,1.0,0 -27578696,"Counter-Strike",purchase,1.0,0 -27578696,"Counter-Strike Condition Zero",purchase,1.0,0 -27578696,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -27578696,"Day of Defeat",purchase,1.0,0 -27578696,"Deathmatch Classic",purchase,1.0,0 -27578696,"Ricochet",purchase,1.0,0 -88410966,"Team Fortress 2",purchase,1.0,0 -88410966,"Team Fortress 2",play,77.0,0 -88410966,"Shank",purchase,1.0,0 -88410966,"Shank",play,13.7,0 -88410966,"Mark of the Ninja",purchase,1.0,0 -88410966,"Mark of the Ninja",play,6.4,0 -88410966,"Unturned",purchase,1.0,0 -88410966,"Unturned",play,3.9,0 -88410966,"SMITE",purchase,1.0,0 -88410966,"SMITE",play,3.8,0 -88410966,"Shank 2",purchase,1.0,0 -88410966,"Shank 2",play,1.9,0 -88410966,"Only If",purchase,1.0,0 -88410966,"Only If",play,1.4,0 -88410966,"Trove",purchase,1.0,0 -88410966,"Trove",play,1.2,0 -88410966,"Transformice",purchase,1.0,0 -88410966,"Transformice",play,0.6,0 -88410966,"Time Clickers",purchase,1.0,0 -88410966,"Time Clickers",play,0.3,0 -88410966,"Dota 2",purchase,1.0,0 -88410966,"Dota 2",play,0.2,0 -88410966,"The Way of Life Free Edition",purchase,1.0,0 -88410966,"The Way of Life Free Edition",play,0.2,0 -88410966,"How to Survive",purchase,1.0,0 -88410966,"How to Survive",play,0.1,0 -88410966,"Floating Point",purchase,1.0,0 -88410966,"Fork Parker's Holiday Profit Hike",purchase,1.0,0 -88410966,"Mark of the Ninja Special Edition DLC",purchase,1.0,0 -155249913,"Dota 2",purchase,1.0,0 -155249913,"Dota 2",play,3.0,0 -47063596,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -47063596,"Call of Duty Modern Warfare 3 - Multiplayer",play,1766.0,0 -47063596,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -47063596,"Call of Duty Black Ops - Multiplayer",play,1184.0,0 -47063596,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -47063596,"Call of Duty Modern Warfare 2 - Multiplayer",play,1109.0,0 -47063596,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -47063596,"Call of Duty Black Ops II - Multiplayer",play,1006.0,0 -47063596,"Empire Total War",purchase,1.0,0 -47063596,"Empire Total War",play,688.0,0 -47063596,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -47063596,"Call of Duty Ghosts - Multiplayer",play,585.0,0 -47063596,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -47063596,"Call of Duty Advanced Warfare - Multiplayer",play,390.0,0 -47063596,"Call of Duty Black Ops III",purchase,1.0,0 -47063596,"Call of Duty Black Ops III",play,191.0,0 -47063596,"Total War SHOGUN 2",purchase,1.0,0 -47063596,"Total War SHOGUN 2",play,94.0,0 -47063596,"Napoleon Total War",purchase,1.0,0 -47063596,"Napoleon Total War",play,69.0,0 -47063596,"Football Manager 2014",purchase,1.0,0 -47063596,"Football Manager 2014",play,22.0,0 -47063596,"Total War ROME II - Emperor Edition",purchase,1.0,0 -47063596,"Total War ROME II - Emperor Edition",play,20.0,0 -47063596,"Homefront",purchase,1.0,0 -47063596,"Homefront",play,18.3,0 -47063596,"Sniper Ghost Warrior",purchase,1.0,0 -47063596,"Sniper Ghost Warrior",play,10.1,0 -47063596,"Call of Duty Advanced Warfare",purchase,1.0,0 -47063596,"Call of Duty Advanced Warfare",play,2.6,0 -47063596,"Team Fortress 2",purchase,1.0,0 -47063596,"Team Fortress 2",play,2.5,0 -47063596,"Call of Duty Black Ops",purchase,1.0,0 -47063596,"Call of Duty Black Ops",play,1.7,0 -47063596,"Call of Duty Modern Warfare 3",purchase,1.0,0 -47063596,"Call of Duty Modern Warfare 3",play,1.0,0 -47063596,"Insurgency",purchase,1.0,0 -47063596,"Insurgency",play,0.4,0 -47063596,"Call of Duty Modern Warfare 2",purchase,1.0,0 -47063596,"Call of Duty Modern Warfare 2",play,0.3,0 -47063596,"PAYDAY The Heist",purchase,1.0,0 -47063596,"PAYDAY The Heist",play,0.1,0 -47063596,"Call of Duty Ghosts",purchase,1.0,0 -47063596,"Call of Duty Black Ops II",purchase,1.0,0 -47063596,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -1665511,"Counter-Strike",purchase,1.0,0 -1665511,"Day of Defeat",purchase,1.0,0 -1665511,"Deathmatch Classic",purchase,1.0,0 -1665511,"Half-Life",purchase,1.0,0 -1665511,"Half-Life Blue Shift",purchase,1.0,0 -1665511,"Half-Life Opposing Force",purchase,1.0,0 -1665511,"Ricochet",purchase,1.0,0 -1665511,"Team Fortress Classic",purchase,1.0,0 -172795625,"Dota 2",purchase,1.0,0 -172795625,"Dota 2",play,63.0,0 -172795625,"HIS (Heroes In the Sky)",purchase,1.0,0 -172795625,"HIS (Heroes In the Sky)",play,5.7,0 -172795625,"Tribes Ascend",purchase,1.0,0 -172795625,"Tribes Ascend",play,3.5,0 -172795625,"Smashmuck Champions",purchase,1.0,0 -172795625,"Smashmuck Champions",play,0.6,0 -172795625,"Moon Breakers",purchase,1.0,0 -172795625,"Moon Breakers",play,0.6,0 -172795625,"CroNix",purchase,1.0,0 -172795625,"Warframe",purchase,1.0,0 -172795625,"TERA",purchase,1.0,0 -172795625,"FreeStyle2 Street Basketball",purchase,1.0,0 -172795625,"GunZ 2 The Second Duel",purchase,1.0,0 -172795625,"HAWKEN",purchase,1.0,0 -172795625,"Ragnarok Online 2",purchase,1.0,0 -172795625,"Star Conflict",purchase,1.0,0 -172795625,"Unturned",purchase,1.0,0 -12144171,"Team Fortress 2",purchase,1.0,0 -12144171,"Team Fortress 2",play,316.0,0 -12144171,"The Elder Scrolls V Skyrim",purchase,1.0,0 -12144171,"The Elder Scrolls V Skyrim",play,159.0,0 -12144171,"FTL Faster Than Light",purchase,1.0,0 -12144171,"FTL Faster Than Light",play,152.0,0 -12144171,"PlanetSide 2",purchase,1.0,0 -12144171,"PlanetSide 2",play,80.0,0 -12144171,"Torchlight",purchase,1.0,0 -12144171,"Torchlight",play,64.0,0 -12144171,"Dragon Age Origins",purchase,1.0,0 -12144171,"Dragon Age Origins",play,57.0,0 -12144171,"Fallout 3",purchase,1.0,0 -12144171,"Fallout 3",play,56.0,0 -12144171,"Borderlands",purchase,1.0,0 -12144171,"Borderlands",play,54.0,0 -12144171,"Counter-Strike Global Offensive",purchase,1.0,0 -12144171,"Counter-Strike Global Offensive",play,40.0,0 -12144171,"Space Pirates and Zombies",purchase,1.0,0 -12144171,"Space Pirates and Zombies",play,40.0,0 -12144171,"Supreme Commander 2",purchase,1.0,0 -12144171,"Supreme Commander 2",play,40.0,0 -12144171,"Broforce",purchase,1.0,0 -12144171,"Broforce",play,31.0,0 -12144171,"Grand Theft Auto V",purchase,1.0,0 -12144171,"Grand Theft Auto V",play,29.0,0 -12144171,"Torchlight II",purchase,1.0,0 -12144171,"Torchlight II",play,27.0,0 -12144171,"GALAK-Z",purchase,1.0,0 -12144171,"GALAK-Z",play,25.0,0 -12144171,"Borderlands The Pre-Sequel",purchase,1.0,0 -12144171,"Borderlands The Pre-Sequel",play,25.0,0 -12144171,"The Maw",purchase,1.0,0 -12144171,"The Maw",play,24.0,0 -12144171,"Euro Truck Simulator 2",purchase,1.0,0 -12144171,"Euro Truck Simulator 2",play,21.0,0 -12144171,"Portal 2",purchase,1.0,0 -12144171,"Portal 2",play,18.0,0 -12144171,"Borderlands 2",purchase,1.0,0 -12144171,"Borderlands 2",play,17.6,0 -12144171,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -12144171,"Grand Theft Auto Episodes from Liberty City",play,15.1,0 -12144171,"Fallout New Vegas",purchase,1.0,0 -12144171,"Fallout New Vegas",play,14.0,0 -12144171,"Kerbal Space Program",purchase,1.0,0 -12144171,"Kerbal Space Program",play,12.7,0 -12144171,"Sid Meier's Civilization V",purchase,1.0,0 -12144171,"Sid Meier's Civilization V",play,11.4,0 -12144171,"ToCA Race Driver 3",purchase,1.0,0 -12144171,"ToCA Race Driver 3",play,10.5,0 -12144171,"Supreme Commander Forged Alliance",purchase,1.0,0 -12144171,"Supreme Commander Forged Alliance",play,10.2,0 -12144171,"Project CARS",purchase,1.0,0 -12144171,"Project CARS",play,9.1,0 -12144171,"Don't Starve",purchase,1.0,0 -12144171,"Don't Starve",play,8.4,0 -12144171,"Chivalry Medieval Warfare",purchase,1.0,0 -12144171,"Chivalry Medieval Warfare",play,8.3,0 -12144171,"Portal",purchase,1.0,0 -12144171,"Portal",play,7.4,0 -12144171,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -12144171,"The Secret of Monkey Island Special Edition",play,5.5,0 -12144171,"Supreme Commander",purchase,1.0,0 -12144171,"Supreme Commander",play,5.3,0 -12144171,"Assetto Corsa",purchase,1.0,0 -12144171,"Assetto Corsa",play,5.1,0 -12144171,"Path of Exile",purchase,1.0,0 -12144171,"Path of Exile",play,4.7,0 -12144171,"Fallout 4",purchase,1.0,0 -12144171,"Fallout 4",play,4.4,0 -12144171,"Rust",purchase,1.0,0 -12144171,"Rust",play,4.3,0 -12144171,"Street Fighter X Tekken",purchase,1.0,0 -12144171,"Street Fighter X Tekken",play,4.1,0 -12144171,"DayZ",purchase,1.0,0 -12144171,"DayZ",play,4.0,0 -12144171,"Pillars of Eternity",purchase,1.0,0 -12144171,"Pillars of Eternity",play,2.7,0 -12144171,"Star Conflict",purchase,1.0,0 -12144171,"Star Conflict",play,2.6,0 -12144171,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -12144171,"Operation Flashpoint Dragon Rising",play,2.2,0 -12144171,"Counter-Strike Source",purchase,1.0,0 -12144171,"Counter-Strike Source",play,1.9,0 -12144171,"Prison Architect",purchase,1.0,0 -12144171,"Prison Architect",play,1.9,0 -12144171,"RACE 07",purchase,1.0,0 -12144171,"RACE 07",play,1.8,0 -12144171,"Planet of the Eyes",purchase,1.0,0 -12144171,"Planet of the Eyes",play,1.7,0 -12144171,"Left 4 Dead",purchase,1.0,0 -12144171,"Left 4 Dead",play,1.7,0 -12144171,"Terraria",purchase,1.0,0 -12144171,"Terraria",play,1.4,0 -12144171,"Next Car Game Wreckfest",purchase,1.0,0 -12144171,"Next Car Game Wreckfest",play,1.4,0 -12144171,"FIST OF AWESOME",purchase,1.0,0 -12144171,"FIST OF AWESOME",play,1.3,0 -12144171,"X-COM UFO Defense",purchase,1.0,0 -12144171,"X-COM UFO Defense",play,1.3,0 -12144171,"Zuma's Revenge",purchase,1.0,0 -12144171,"Zuma's Revenge",play,1.2,0 -12144171,"Saints Row The Third",purchase,1.0,0 -12144171,"Saints Row The Third",play,1.0,0 -12144171,"Legend of Grimrock",purchase,1.0,0 -12144171,"Legend of Grimrock",play,0.9,0 -12144171,"Planetary Annihilation",purchase,1.0,0 -12144171,"Planetary Annihilation",play,0.8,0 -12144171,"IL-2 Sturmovik 1946",purchase,1.0,0 -12144171,"IL-2 Sturmovik 1946",play,0.8,0 -12144171,"DCS World",purchase,1.0,0 -12144171,"DCS World",play,0.7,0 -12144171,"Xenonauts",purchase,1.0,0 -12144171,"Xenonauts",play,0.7,0 -12144171,"Unreal Tournament Game of the Year Edition",purchase,1.0,0 -12144171,"Unreal Tournament Game of the Year Edition",play,0.7,0 -12144171,"LEGO Worlds",purchase,1.0,0 -12144171,"LEGO Worlds",play,0.7,0 -12144171,"Dota 2",purchase,1.0,0 -12144171,"Dota 2",play,0.7,0 -12144171,"Zotrix",purchase,1.0,0 -12144171,"Zotrix",play,0.5,0 -12144171,"Loadout",purchase,1.0,0 -12144171,"Loadout",play,0.4,0 -12144171,"Akuatica",purchase,1.0,0 -12144171,"Akuatica",play,0.4,0 -12144171,"Uplink",purchase,1.0,0 -12144171,"Uplink",play,0.4,0 -12144171,"Counter-Strike",purchase,1.0,0 -12144171,"Counter-Strike",play,0.3,0 -12144171,"Darwinia",purchase,1.0,0 -12144171,"Darwinia",play,0.3,0 -12144171,"Grand Theft Auto 2",purchase,1.0,0 -12144171,"Unturned",purchase,1.0,0 -12144171,"Grand Theft Auto",purchase,1.0,0 -12144171,"Counter-Strike Condition Zero",purchase,1.0,0 -12144171,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -12144171,"Day of Defeat Source",purchase,1.0,0 -12144171,"Don't Starve Together Beta",purchase,1.0,0 -12144171,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -12144171,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -12144171,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -12144171,"Fallout New Vegas Dead Money",purchase,1.0,0 -12144171,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -12144171,"Grand Theft Auto San Andreas",purchase,1.0,0 -12144171,"Grand Theft Auto San Andreas",purchase,1.0,0 -12144171,"Grand Theft Auto Vice City",purchase,1.0,0 -12144171,"Grand Theft Auto Vice City",purchase,1.0,0 -12144171,"Grand Theft Auto III",purchase,1.0,0 -12144171,"Grand Theft Auto III",purchase,1.0,0 -12144171,"Grand Theft Auto IV",purchase,1.0,0 -12144171,"Half-Life 2",purchase,1.0,0 -12144171,"Half-Life 2 Deathmatch",purchase,1.0,0 -12144171,"Half-Life 2 Lost Coast",purchase,1.0,0 -12144171,"Half-Life 2 Update",purchase,1.0,0 -12144171,"Monkey Island 2 Special Edition",purchase,1.0,0 -12144171,"Patch testing for Chivalry",purchase,1.0,0 -12144171,"Planetary Annihilation TITANS",purchase,1.0,0 -12144171,"POSTAL 2",purchase,1.0,0 -12144171,"Project CARS - Modified Car Pack ",purchase,1.0,0 -12144171,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -12144171,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -12144171,"Supreme Commander 2 - Infinite War Battle Pack One",purchase,1.0,0 -12144171,"The Maw Brute Force",purchase,1.0,0 -12144171,"The Maw River Redirect",purchase,1.0,0 -12144171,"The Maw Speeder Lane",purchase,1.0,0 -12144171,"X-COM Apocalypse",purchase,1.0,0 -12144171,"X-COM Enforcer",purchase,1.0,0 -12144171,"X-COM Interceptor",purchase,1.0,0 -12144171,"X-COM Terror from the Deep",purchase,1.0,0 -131463112,"Counter-Strike",purchase,1.0,0 -131463112,"Counter-Strike",play,165.0,0 -131463112,"Counter-Strike Global Offensive",purchase,1.0,0 -131463112,"Counter-Strike Global Offensive",play,160.0,0 -131463112,"Terraria",purchase,1.0,0 -131463112,"Terraria",play,60.0,0 -131463112,"Team Fortress 2",purchase,1.0,0 -131463112,"Team Fortress 2",play,28.0,0 -131463112,"Pid ",purchase,1.0,0 -131463112,"Pid ",play,10.5,0 -131463112,"BattleBlock Theater",purchase,1.0,0 -131463112,"BattleBlock Theater",play,9.5,0 -131463112,"Mirror's Edge",purchase,1.0,0 -131463112,"Mirror's Edge",play,8.8,0 -131463112,"The Binding of Isaac",purchase,1.0,0 -131463112,"The Binding of Isaac",play,4.5,0 -131463112,"Euro Truck Simulator 2",purchase,1.0,0 -131463112,"Euro Truck Simulator 2",play,3.5,0 -131463112,"Dota 2",purchase,1.0,0 -131463112,"Dota 2",play,1.3,0 -131463112,"Hacker Evolution Duality",purchase,1.0,0 -131463112,"Hacker Evolution Duality",play,1.1,0 -131463112,"Amnesia The Dark Descent",purchase,1.0,0 -131463112,"Amnesia The Dark Descent",play,1.0,0 -131463112,"Left 4 Dead 2",purchase,1.0,0 -131463112,"Left 4 Dead 2",play,1.0,0 -131463112,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -131463112,"Counter-Strike Condition Zero Deleted Scenes",play,0.5,0 -131463112,"Grand Theft Auto IV",purchase,1.0,0 -131463112,"Grand Theft Auto IV",play,0.4,0 -131463112,"Dead Island Epidemic",purchase,1.0,0 -131463112,"Dead Island Epidemic",play,0.3,0 -131463112,"Sniper Elite V2",purchase,1.0,0 -131463112,"Sniper Elite V2",play,0.2,0 -131463112,"Unturned",purchase,1.0,0 -131463112,"Arma 2",purchase,1.0,0 -131463112,"Trine",purchase,1.0,0 -131463112,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -131463112,"Anomaly Warzone Earth",purchase,1.0,0 -131463112,"Arma 2 Operation Arrowhead",purchase,1.0,0 -131463112,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -131463112,"Company of Heroes 2",purchase,1.0,0 -131463112,"Counter-Strike Condition Zero",purchase,1.0,0 -131463112,"Dino D-Day",purchase,1.0,0 -131463112,"Enclave",purchase,1.0,0 -131463112,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -131463112,"Happy Wars",purchase,1.0,0 -131463112,"Really Big Sky",purchase,1.0,0 -131463112,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -131463112,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -131463112,"Space Hack",purchase,1.0,0 -131463112,"Trine 2",purchase,1.0,0 -131463112,"War Thunder",purchase,1.0,0 -102866858,"Dota 2",purchase,1.0,0 -102866858,"Dota 2",play,36.0,0 -144679568,"Age of Empires III Complete Collection",purchase,1.0,0 -144679568,"Age of Empires III Complete Collection",play,7.2,0 -144679568,"The Elder Scrolls V Skyrim",purchase,1.0,0 -144679568,"The Elder Scrolls V Skyrim",play,2.0,0 -144679568,"The Sims(TM) 3",purchase,1.0,0 -144679568,"The Sims(TM) 3",play,1.5,0 -144679568,"Age of Mythology Extended Edition",purchase,1.0,0 -144679568,"Age of Mythology Extended Edition",play,1.2,0 -144679568,"Call of Duty Ghosts",purchase,1.0,0 -144679568,"Call of Duty Ghosts",play,0.5,0 -144679568,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -144679568,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -144679568,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -144679568,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -192742937,"Dota 2",purchase,1.0,0 -192742937,"Dota 2",play,821.0,0 -192742937,"GunZ 2 The Second Duel",purchase,1.0,0 -192742937,"GunZ 2 The Second Duel",play,0.8,0 -192742937,"FreeStyle2 Street Basketball",purchase,1.0,0 -192742937,"FreeStyle2 Street Basketball",play,0.8,0 -192742937,"Stronghold Kingdoms",purchase,1.0,0 -192742937,"C9",purchase,1.0,0 -192742937,"Neverwinter",purchase,1.0,0 -192742937,"Warframe",purchase,1.0,0 -189225159,"Garry's Mod",purchase,1.0,0 -189225159,"Unturned",purchase,1.0,0 -101122584,"DC Universe Online",purchase,1.0,0 -101122584,"DC Universe Online",play,2.1,0 -208038249,"Dota 2",purchase,1.0,0 -208038249,"Dota 2",play,128.0,0 -192234242,"Warframe",purchase,1.0,0 -192234242,"Warframe",play,9.9,0 -192234242,"Team Fortress 2",purchase,1.0,0 -192234242,"Team Fortress 2",play,1.5,0 -192234242,"Insurgency",purchase,1.0,0 -192234242,"Insurgency",play,1.3,0 -192234242,"Alien Breed Impact",purchase,1.0,0 -192234242,"Dead Island Epidemic",purchase,1.0,0 -192234242,"Firefall",purchase,1.0,0 -192234242,"Murder Miners",purchase,1.0,0 -223589417,"Torchlight II",purchase,1.0,0 -223589417,"Torchlight II",play,25.0,0 -192334796,"Dota 2",purchase,1.0,0 -192334796,"Dota 2",play,171.0,0 -192334796,"City of Steam Arkadia",purchase,1.0,0 -192334796,"Archeblade",purchase,1.0,0 -192334796,"Heroes & Generals",purchase,1.0,0 -192334796,"Lost Saga North America",purchase,1.0,0 -192334796,"Ragnarok Online 2",purchase,1.0,0 -192334796,"Rise of Incarnates",purchase,1.0,0 -192334796,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -192334796,"Spiral Knights",purchase,1.0,0 -306375195,"Dota 2",purchase,1.0,0 -306375195,"Dota 2",play,0.4,0 -46021731,"GRID 2",purchase,1.0,0 -46021731,"GRID 2",play,0.1,0 -46021731,"Portal",purchase,1.0,0 -46021731,"Half-Life 2",purchase,1.0,0 -46021731,"Half-Life 2 Episode One",purchase,1.0,0 -46021731,"Half-Life 2 Episode Two",purchase,1.0,0 -46021731,"Half-Life 2 Lost Coast",purchase,1.0,0 -163922403,"Dota 2",purchase,1.0,0 -163922403,"Dota 2",play,0.6,0 -82432677,"Infestation Survivor Stories",purchase,1.0,0 -82432677,"Infestation Survivor Stories",play,5.6,0 -54291917,"Killing Floor",purchase,1.0,0 -54291917,"Killing Floor",play,164.0,0 -54291917,"Homefront",purchase,1.0,0 -54291917,"Homefront",play,12.4,0 -54291917,"DOOM 3 BFG Edition",purchase,1.0,0 -54291917,"DOOM 3 BFG Edition",play,10.1,0 -54291917,"Metro 2033",purchase,1.0,0 -54291917,"Metro 2033",play,4.9,0 -54291917,"Silent Hill Homecoming",purchase,1.0,0 -54291917,"Silent Hill Homecoming",play,4.3,0 -54291917,"Left 4 Dead",purchase,1.0,0 -54291917,"Left 4 Dead",play,3.4,0 -54291917,"Left 4 Dead 2",purchase,1.0,0 -54291917,"Left 4 Dead 2",play,1.8,0 -54291917,"Dead Space",purchase,1.0,0 -54291917,"Dead Space",play,1.5,0 -54291917,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -54291917,"Kane & Lynch 2 Dog Days",play,0.6,0 -54291917,"State of Decay",purchase,1.0,0 -54291917,"State of Decay",play,0.6,0 -54291917,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -54291917,"Killing Floor Mod Defence Alliance 2",play,0.6,0 -54291917,"Saints Row 2",purchase,1.0,0 -147402762,"Team Fortress 2",purchase,1.0,0 -147402762,"Team Fortress 2",play,8.6,0 -147402762,"Dota 2",purchase,1.0,0 -147402762,"Dota 2",play,1.6,0 -225110915,"Dota 2",purchase,1.0,0 -225110915,"Dota 2",play,7.5,0 -294947971,"Counter-Strike Global Offensive",purchase,1.0,0 -294947971,"Counter-Strike Global Offensive",play,181.0,0 -161772384,"Counter-Strike Global Offensive",purchase,1.0,0 -161772384,"Counter-Strike Global Offensive",play,697.0,0 -161772384,"Dota 2",purchase,1.0,0 -161772384,"Dota 2",play,354.0,0 -161772384,"FreeStyle2 Street Basketball",purchase,1.0,0 -161772384,"FreeStyle2 Street Basketball",play,13.9,0 -161772384,"Team Fortress 2",purchase,1.0,0 -161772384,"Team Fortress 2",play,0.5,0 -161772384,"Loadout",purchase,1.0,0 -161772384,"Loadout",play,0.2,0 -161772384,"ACE - Arena Cyber Evolution",purchase,1.0,0 -161772384,"APB Reloaded",purchase,1.0,0 -161772384,"Archeblade",purchase,1.0,0 -161772384,"Aura Kingdom",purchase,1.0,0 -161772384,"Blacklight Retribution",purchase,1.0,0 -161772384,"C9",purchase,1.0,0 -161772384,"Defiance",purchase,1.0,0 -161772384,"Face of Mankind",purchase,1.0,0 -161772384,"Fallen Earth",purchase,1.0,0 -161772384,"Firefall",purchase,1.0,0 -161772384,"Gotham City Impostors Free To Play",purchase,1.0,0 -161772384,"GunZ 2 The Second Duel",purchase,1.0,0 -161772384,"HAWKEN",purchase,1.0,0 -161772384,"Heroes & Generals",purchase,1.0,0 -161772384,"Marvel Heroes 2015",purchase,1.0,0 -161772384,"METAL SLUG DEFENSE",purchase,1.0,0 -161772384,"Neverwinter",purchase,1.0,0 -161772384,"Nosgoth",purchase,1.0,0 -161772384,"PlanetSide 2",purchase,1.0,0 -161772384,"Quake Live",purchase,1.0,0 -161772384,"Realm of the Mad God",purchase,1.0,0 -161772384,"RIFT",purchase,1.0,0 -161772384,"Robocraft",purchase,1.0,0 -161772384,"Royal Quest",purchase,1.0,0 -161772384,"Spiral Knights",purchase,1.0,0 -161772384,"Star Trek Online",purchase,1.0,0 -161772384,"Strife",purchase,1.0,0 -161772384,"Tactical Intervention",purchase,1.0,0 -161772384,"TERA",purchase,1.0,0 -161772384,"theHunter",purchase,1.0,0 -161772384,"The Lord of the Rings Online",purchase,1.0,0 -161772384,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -161772384,"Warframe",purchase,1.0,0 -161772384,"War Thunder",purchase,1.0,0 -130342360,"Football Manager 2013",purchase,1.0,0 -130342360,"Football Manager 2013",play,380.0,0 -130342360,"Football Manager 2015",purchase,1.0,0 -130342360,"Football Manager 2015",play,11.4,0 -2184507,"Counter-Strike",purchase,1.0,0 -2184507,"Counter-Strike",play,5.2,0 -2184507,"Day of Defeat",purchase,1.0,0 -2184507,"Day of Defeat",play,0.7,0 -2184507,"Counter-Strike Source",purchase,1.0,0 -2184507,"Counter-Strike Source",play,0.3,0 -2184507,"Deathmatch Classic",purchase,1.0,0 -2184507,"Half-Life",purchase,1.0,0 -2184507,"Half-Life 2",purchase,1.0,0 -2184507,"Half-Life 2 Deathmatch",purchase,1.0,0 -2184507,"Half-Life 2 Lost Coast",purchase,1.0,0 -2184507,"Half-Life Blue Shift",purchase,1.0,0 -2184507,"Half-Life Opposing Force",purchase,1.0,0 -2184507,"Ricochet",purchase,1.0,0 -2184507,"Team Fortress Classic",purchase,1.0,0 -242572214,"ARK Survival Evolved",purchase,1.0,0 -242572214,"ARK Survival Evolved",play,152.0,0 -242572214,"Spintires",purchase,1.0,0 -242572214,"Spintires",play,41.0,0 -242572214,"Fishing Planet",purchase,1.0,0 -242572214,"Fishing Planet",play,19.6,0 -242572214,"theHunter",purchase,1.0,0 -242572214,"theHunter",play,3.9,0 -242572214,"Kung Fury",purchase,1.0,0 -243559317,"Dota 2",purchase,1.0,0 -243559317,"Dota 2",play,1.0,0 -240152561,"Unturned",purchase,1.0,0 -240152561,"Unturned",play,1.7,0 -240152561,"Counter-Strike Nexon Zombies",purchase,1.0,0 -5600822,"Counter-Strike Source",purchase,1.0,0 -5600822,"Counter-Strike Source",play,6.6,0 -5600822,"Counter-Strike",purchase,1.0,0 -5600822,"Day of Defeat",purchase,1.0,0 -5600822,"Deathmatch Classic",purchase,1.0,0 -5600822,"Half-Life",purchase,1.0,0 -5600822,"Half-Life 2",purchase,1.0,0 -5600822,"Half-Life 2 Deathmatch",purchase,1.0,0 -5600822,"Half-Life 2 Lost Coast",purchase,1.0,0 -5600822,"Half-Life Blue Shift",purchase,1.0,0 -5600822,"Half-Life Opposing Force",purchase,1.0,0 -5600822,"Ricochet",purchase,1.0,0 -5600822,"Team Fortress Classic",purchase,1.0,0 -198100987,"Dota 2",purchase,1.0,0 -198100987,"Dota 2",play,16.1,0 -257288675,"ROSE Online",purchase,1.0,0 -223774670,"Dota 2",purchase,1.0,0 -223774670,"Dota 2",play,55.0,0 -169006311,"Team Fortress 2",purchase,1.0,0 -169006311,"Team Fortress 2",play,0.4,0 -196358260,"Rome Total War",purchase,1.0,0 -298232692,"Gotham City Impostors Free To Play",purchase,1.0,0 -298232692,"Gotham City Impostors Free To Play",play,0.2,0 -154275055,"Dota 2",purchase,1.0,0 -154275055,"Dota 2",play,955.0,0 -11970504,"The Elder Scrolls V Skyrim",purchase,1.0,0 -11970504,"The Elder Scrolls V Skyrim",play,68.0,0 -11970504,"Empire Total War",purchase,1.0,0 -11970504,"Empire Total War",play,66.0,0 -11970504,"Mount & Blade Warband",purchase,1.0,0 -11970504,"Mount & Blade Warband",play,62.0,0 -11970504,"Battlefield Bad Company 2",purchase,1.0,0 -11970504,"Battlefield Bad Company 2",play,61.0,0 -11970504,"Kerbal Space Program",purchase,1.0,0 -11970504,"Kerbal Space Program",play,53.0,0 -11970504,"Rocket League",purchase,1.0,0 -11970504,"Rocket League",play,52.0,0 -11970504,"Divinity Original Sin",purchase,1.0,0 -11970504,"Divinity Original Sin",play,41.0,0 -11970504,"Total War ROME II - Emperor Edition",purchase,1.0,0 -11970504,"Total War ROME II - Emperor Edition",play,37.0,0 -11970504,"Team Fortress 2",purchase,1.0,0 -11970504,"Team Fortress 2",play,32.0,0 -11970504,"Prison Architect",purchase,1.0,0 -11970504,"Prison Architect",play,25.0,0 -11970504,"Assassin's Creed II",purchase,1.0,0 -11970504,"Assassin's Creed II",play,23.0,0 -11970504,"Blood Bowl 2",purchase,1.0,0 -11970504,"Blood Bowl 2",play,22.0,0 -11970504,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -11970504,"Call of Duty Modern Warfare 2 - Multiplayer",play,20.0,0 -11970504,"Warhammer End Times - Vermintide",purchase,1.0,0 -11970504,"Warhammer End Times - Vermintide",play,19.2,0 -11970504,"Napoleon Total War",purchase,1.0,0 -11970504,"Napoleon Total War",play,19.1,0 -11970504,"Magicka",purchase,1.0,0 -11970504,"Magicka",play,17.4,0 -11970504,"Panzar",purchase,1.0,0 -11970504,"Panzar",play,17.3,0 -11970504,"Borderlands",purchase,1.0,0 -11970504,"Borderlands",play,17.0,0 -11970504,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -11970504,"Call of Duty Black Ops - Multiplayer",play,16.8,0 -11970504,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -11970504,"Grand Theft Auto Episodes from Liberty City",play,15.7,0 -11970504,"Robocraft",purchase,1.0,0 -11970504,"Robocraft",play,15.5,0 -11970504,"PAYDAY 2",purchase,1.0,0 -11970504,"PAYDAY 2",play,15.3,0 -11970504,"Space Engineers",purchase,1.0,0 -11970504,"Space Engineers",play,14.0,0 -11970504,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -11970504,"Warhammer 40,000 Dawn of War Dark Crusade",play,13.9,0 -11970504,"Total War SHOGUN 2",purchase,1.0,0 -11970504,"Total War SHOGUN 2",play,12.6,0 -11970504,"Call of Duty Modern Warfare 2",purchase,1.0,0 -11970504,"Call of Duty Modern Warfare 2",play,12.4,0 -11970504,"Chivalry Medieval Warfare",purchase,1.0,0 -11970504,"Chivalry Medieval Warfare",play,12.4,0 -11970504,"Rampage Knights",purchase,1.0,0 -11970504,"Rampage Knights",play,12.1,0 -11970504,"Dota 2",purchase,1.0,0 -11970504,"Dota 2",play,11.9,0 -11970504,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -11970504,"Tom Clancy's Splinter Cell Conviction",play,9.8,0 -11970504,"Darkest Dungeon",purchase,1.0,0 -11970504,"Darkest Dungeon",play,9.6,0 -11970504,"Trine 2",purchase,1.0,0 -11970504,"Trine 2",play,9.4,0 -11970504,"Dungeon Defenders Eternity",purchase,1.0,0 -11970504,"Dungeon Defenders Eternity",play,9.3,0 -11970504,"Counter-Strike Source",purchase,1.0,0 -11970504,"Counter-Strike Source",play,8.6,0 -11970504,"Left 4 Dead 2",purchase,1.0,0 -11970504,"Left 4 Dead 2",play,7.0,0 -11970504,"BRINK",purchase,1.0,0 -11970504,"BRINK",play,6.7,0 -11970504,"Deus Ex Human Revolution",purchase,1.0,0 -11970504,"Deus Ex Human Revolution",play,6.7,0 -11970504,"Call of Duty Black Ops",purchase,1.0,0 -11970504,"Call of Duty Black Ops",play,6.0,0 -11970504,"Pillars of Eternity",purchase,1.0,0 -11970504,"Pillars of Eternity",play,5.9,0 -11970504,"The Forest",purchase,1.0,0 -11970504,"The Forest",play,5.8,0 -11970504,"Sid Meier's Civilization V",purchase,1.0,0 -11970504,"Sid Meier's Civilization V",play,5.2,0 -11970504,"Terraria",purchase,1.0,0 -11970504,"Terraria",play,4.2,0 -11970504,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -11970504,"Warhammer 40,000 Dawn of War Soulstorm",play,3.2,0 -11970504,"Dead Island Epidemic",purchase,1.0,0 -11970504,"Dead Island Epidemic",play,2.8,0 -11970504,"Styx Master of Shadows",purchase,1.0,0 -11970504,"Styx Master of Shadows",play,2.5,0 -11970504,"Firefall",purchase,1.0,0 -11970504,"Firefall",play,2.1,0 -11970504,"The Mighty Quest For Epic Loot",purchase,1.0,0 -11970504,"The Mighty Quest For Epic Loot",play,1.8,0 -11970504,"Arma 2 Operation Arrowhead",purchase,1.0,0 -11970504,"Arma 2 Operation Arrowhead",play,1.7,0 -11970504,"Serious Sam HD The First Encounter",purchase,1.0,0 -11970504,"Serious Sam HD The First Encounter",play,1.6,0 -11970504,"ARK Survival Evolved",purchase,1.0,0 -11970504,"ARK Survival Evolved",play,1.6,0 -11970504,"Counter-Strike Global Offensive",purchase,1.0,0 -11970504,"Counter-Strike Global Offensive",play,1.3,0 -11970504,"Gotham City Impostors",purchase,1.0,0 -11970504,"Gotham City Impostors",play,1.3,0 -11970504,"Natural Selection 2",purchase,1.0,0 -11970504,"Natural Selection 2",play,0.6,0 -11970504,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -11970504,"Warhammer 40,000 Dawn of War Winter Assault",play,0.4,0 -11970504,"Rome Total War",purchase,1.0,0 -11970504,"Rome Total War",play,0.4,0 -11970504,"Grand Theft Auto IV",purchase,1.0,0 -11970504,"Grand Theft Auto IV",play,0.1,0 -11970504,"Arma 2",purchase,1.0,0 -11970504,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -11970504,"Day of Defeat Source",purchase,1.0,0 -11970504,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -11970504,"Gotham City Impostors Free To Play",purchase,1.0,0 -11970504,"Grand Theft Auto Vice City",purchase,1.0,0 -11970504,"Grand Theft Auto Vice City",purchase,1.0,0 -11970504,"Half-Life 2",purchase,1.0,0 -11970504,"Half-Life 2 Deathmatch",purchase,1.0,0 -11970504,"Half-Life 2 Lost Coast",purchase,1.0,0 -11970504,"Magicka Final Frontier",purchase,1.0,0 -11970504,"Magicka Frozen Lake",purchase,1.0,0 -11970504,"Magicka Nippon",purchase,1.0,0 -11970504,"Magicka Party Robes",purchase,1.0,0 -11970504,"Magicka The Watchtower",purchase,1.0,0 -11970504,"Magicka Vietnam",purchase,1.0,0 -11970504,"Magicka Wizard's Survival Kit",purchase,1.0,0 -11970504,"Marvel Heroes 2015",purchase,1.0,0 -11970504,"Patch testing for Chivalry",purchase,1.0,0 -11970504,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -11970504,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -11970504,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -11970504,"Tom Clancy's Splinter Cell",purchase,1.0,0 -11970504,"Tom Clancy's Splinter Cell Chaos Theory",purchase,1.0,0 -11970504,"Tom Clancy's Splinter Cell Double Agent",purchase,1.0,0 -11970504,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -11970504,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -11970504,"Warhammer End Times - Vermintide Sigmar's Blessing",purchase,1.0,0 -11970504,"War Thunder",purchase,1.0,0 -207262142,"Unturned",purchase,1.0,0 -207262142,"Unturned",play,24.0,0 -207262142,"Happy Wars",purchase,1.0,0 -207262142,"Happy Wars",play,2.9,0 -207262142,"Steel Ocean",purchase,1.0,0 -207262142,"Steel Ocean",play,0.6,0 -207262142,"Trove",purchase,1.0,0 -207262142,"Trove",play,0.5,0 -207262142,"Gear Up",purchase,1.0,0 -207262142,"Gear Up",play,0.1,0 -207262142,"Dizzel",purchase,1.0,0 -207262142,"Firefall",purchase,1.0,0 -207262142,"Warframe",purchase,1.0,0 -118180800,"Saints Row 2",purchase,1.0,0 -118180800,"Saints Row 2",play,6.8,0 -247313879,"Batman Arkham City GOTY",purchase,1.0,0 -247313879,"Batman Arkham City GOTY",play,30.0,0 -247313879,"Verdun",purchase,1.0,0 -247313879,"Verdun",play,28.0,0 -247313879,"Assassin's Creed II",purchase,1.0,0 -247313879,"Assassin's Creed II",play,22.0,0 -247313879,"Counter-Strike Global Offensive",purchase,1.0,0 -247313879,"Counter-Strike Global Offensive",play,16.8,0 -247313879,"Spec Ops The Line",purchase,1.0,0 -247313879,"Spec Ops The Line",play,15.9,0 -247313879,"BioShock Infinite",purchase,1.0,0 -247313879,"BioShock Infinite",play,9.5,0 -247313879,"Day of Defeat Source",purchase,1.0,0 -247313879,"Day of Defeat Source",play,8.8,0 -247313879,"Half-Life 2",purchase,1.0,0 -247313879,"Half-Life 2",play,1.1,0 -247313879,"Half-Life",purchase,1.0,0 -247313879,"Half-Life",play,1.0,0 -247313879,"Day of Defeat",purchase,1.0,0 -247313879,"Day of Defeat",play,0.3,0 -247313879,"Insurgency",purchase,1.0,0 -247313879,"Counter-Strike",purchase,1.0,0 -247313879,"Counter-Strike Condition Zero",purchase,1.0,0 -247313879,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -247313879,"Counter-Strike Source",purchase,1.0,0 -247313879,"Deathmatch Classic",purchase,1.0,0 -247313879,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -247313879,"Half-Life 2 Deathmatch",purchase,1.0,0 -247313879,"Half-Life 2 Episode One",purchase,1.0,0 -247313879,"Half-Life 2 Episode Two",purchase,1.0,0 -247313879,"Half-Life 2 Lost Coast",purchase,1.0,0 -247313879,"Half-Life Blue Shift",purchase,1.0,0 -247313879,"Half-Life Opposing Force",purchase,1.0,0 -247313879,"Half-Life Source",purchase,1.0,0 -247313879,"Half-Life Deathmatch Source",purchase,1.0,0 -247313879,"Hitman Absolution",purchase,1.0,0 -247313879,"Hitman Sniper Challenge",purchase,1.0,0 -247313879,"Left 4 Dead",purchase,1.0,0 -247313879,"Left 4 Dead 2",purchase,1.0,0 -247313879,"Max Payne",purchase,1.0,0 -247313879,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -247313879,"Portal",purchase,1.0,0 -247313879,"Portal 2",purchase,1.0,0 -247313879,"Ricochet",purchase,1.0,0 -247313879,"Team Fortress Classic",purchase,1.0,0 -59081879,"FINAL FANTASY VII",purchase,1.0,0 -59081879,"FINAL FANTASY VII",play,84.0,0 -59081879,"Sid Meier's Civilization III Complete",purchase,1.0,0 -59081879,"Sid Meier's Civilization III Complete",play,4.6,0 -140385853,"Dota 2",purchase,1.0,0 -140385853,"Dota 2",play,0.6,0 -133990456,"Dota 2",purchase,1.0,0 -133990456,"Dota 2",play,13.6,0 -246116211,"Counter-Strike Nexon Zombies",purchase,1.0,0 -246116211,"Counter-Strike Nexon Zombies",play,50.0,0 -255214547,"Dota 2",purchase,1.0,0 -255214547,"Dota 2",play,1.2,0 -210283973,"Euro Truck Simulator 2",purchase,1.0,0 -210283973,"Euro Truck Simulator 2",play,192.0,0 -210283973,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -281515094,"Unturned",purchase,1.0,0 -156379077,"The Binding of Isaac",purchase,1.0,0 -156379077,"The Binding of Isaac",play,229.0,0 -156379077,"The Binding of Isaac Rebirth",purchase,1.0,0 -156379077,"The Binding of Isaac Rebirth",play,99.0,0 -156379077,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -156379077,"Kingdoms of Amalur Reckoning",play,64.0,0 -156379077,"Torchlight II",purchase,1.0,0 -156379077,"Torchlight II",play,15.2,0 -156379077,"South Park The Stick of Truth",purchase,1.0,0 -156379077,"South Park The Stick of Truth",play,11.9,0 -156379077,"Anno 1404",purchase,1.0,0 -156379077,"Anno 1404",play,8.4,0 -156379077,"Unepic",purchase,1.0,0 -156379077,"Unepic",play,7.2,0 -156379077,"Prison Architect",purchase,1.0,0 -156379077,"Prison Architect",play,5.7,0 -156379077,"Alice Madness Returns",purchase,1.0,0 -156379077,"Alice Madness Returns",play,4.6,0 -156379077,"The Sims(TM) Medieval",purchase,1.0,0 -156379077,"The Sims(TM) Medieval",play,2.8,0 -156379077,"Spore Galactic Adventures",purchase,1.0,0 -156379077,"Spore Galactic Adventures",play,2.0,0 -156379077,"Dota 2",purchase,1.0,0 -156379077,"Dota 2",play,1.7,0 -156379077,"RPG Maker VX Ace",purchase,1.0,0 -156379077,"RPG Maker VX Ace",play,1.6,0 -156379077,"Lego Harry Potter",purchase,1.0,0 -156379077,"Lego Harry Potter",play,1.5,0 -156379077,"Spore",purchase,1.0,0 -156379077,"Spore",play,1.0,0 -156379077,"The Witcher Enhanced Edition",purchase,1.0,0 -156379077,"The Witcher Enhanced Edition",play,0.9,0 -156379077,"The Cave",purchase,1.0,0 -156379077,"The Cave",play,0.9,0 -156379077,"FEZ",purchase,1.0,0 -156379077,"FEZ",play,0.7,0 -156379077,"The Book of Unwritten Tales",purchase,1.0,0 -156379077,"The Book of Unwritten Tales",play,0.5,0 -156379077,"Antichamber",purchase,1.0,0 -156379077,"Antichamber",play,0.4,0 -156379077,"BattleBlock Theater",purchase,1.0,0 -156379077,"BattleBlock Theater",play,0.3,0 -156379077,"Brothers - A Tale of Two Sons",purchase,1.0,0 -156379077,"Brothers - A Tale of Two Sons",play,0.2,0 -156379077,"Trine 2",purchase,1.0,0 -156379077,"Trine 2",play,0.1,0 -156379077,"Monaco",purchase,1.0,0 -156379077,"Monaco",play,0.1,0 -156379077,"Fable - The Lost Chapters",purchase,1.0,0 -156379077,"Fable - The Lost Chapters",play,0.1,0 -156379077,"Trine",purchase,1.0,0 -156379077,"Shadowgrounds",purchase,1.0,0 -156379077,"Magicka",purchase,1.0,0 -156379077,"Magicite",purchase,1.0,0 -156379077,"Shadowgrounds Survivor",purchase,1.0,0 -302365287,"Dota 2",purchase,1.0,0 -302365287,"Dota 2",play,10.2,0 -148932080,"Dota 2",purchase,1.0,0 -148932080,"Dota 2",play,10.0,0 -183376463,"Dota 2",purchase,1.0,0 -183376463,"Dota 2",play,1.9,0 -206299060,"Bad Rats",purchase,1.0,0 -249381092,"Ultra Street Fighter IV",purchase,1.0,0 -249381092,"Ultra Street Fighter IV",play,43.0,0 -249381092,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -179733218,"Dota 2",purchase,1.0,0 -179733218,"Dota 2",play,577.0,0 -179733218,"FreeStyle2 Street Basketball",purchase,1.0,0 -179733218,"FreeStyle2 Street Basketball",play,28.0,0 -179733218,"World of Guns Gun Disassembly",purchase,1.0,0 -179733218,"World of Guns Gun Disassembly",play,2.8,0 -179733218,"Marvel Heroes 2015",purchase,1.0,0 -179733218,"Marvel Heroes 2015",play,0.3,0 -179429247,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -179429247,"School of Dragons How to Train Your Dragon",play,0.4,0 -210727350,"Counter-Strike Global Offensive",purchase,1.0,0 -210727350,"Counter-Strike Global Offensive",play,613.0,0 -210727350,"PAYDAY 2",purchase,1.0,0 -210727350,"PAYDAY 2",play,9.9,0 -210727350,"Crossfire Europe",purchase,1.0,0 -210727350,"Crossfire Europe",play,4.1,0 -210727350,"Assassins Creed Unity",purchase,1.0,0 -210727350,"Assassins Creed Unity",play,0.3,0 -210727350,"Heroes & Generals",purchase,1.0,0 -210727350,"America's Army Proving Grounds",purchase,1.0,0 -210727350,"Counter-Strike Nexon Zombies",purchase,1.0,0 -210727350,"Haunted Memories",purchase,1.0,0 -210727350,"No More Room in Hell",purchase,1.0,0 -178893016,"F1 2013",purchase,1.0,0 -178893016,"F1 2013",play,3.1,0 -210299265,"GEARCRACK Arena",purchase,1.0,0 -250796304,"Team Fortress 2",purchase,1.0,0 -250796304,"Team Fortress 2",play,38.0,0 -217441163,"Dota 2",purchase,1.0,0 -217441163,"Dota 2",play,1.5,0 -182593878,"The Elder Scrolls V Skyrim",purchase,1.0,0 -182593878,"The Elder Scrolls V Skyrim",play,327.0,0 -182593878,"Fallout Tactics",purchase,1.0,0 -182593878,"Fallout Tactics",play,1.2,0 -182593878,"BeamNG.drive",purchase,1.0,0 -182593878,"BeamNG.drive",play,1.0,0 -182593878,"Fallout",purchase,1.0,0 -182593878,"Fallout 2",purchase,1.0,0 -182593878,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -182593878,"Fallout New Vegas",purchase,1.0,0 -182593878,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -182593878,"Fallout New Vegas Dead Money",purchase,1.0,0 -182593878,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -182593878,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -182593878,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -182593878,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -182593878,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -120853104,"Dota 2",purchase,1.0,0 -120853104,"Dota 2",play,0.1,0 -308161513,"Dota 2",purchase,1.0,0 -308161513,"Dota 2",play,0.6,0 -258363805,"Age of Empires II HD Edition",purchase,1.0,0 -258363805,"Age of Empires II HD Edition",play,7.6,0 -258363805,"Age of Empires II HD The Forgotten",purchase,1.0,0 -258363805,"Black Sails",purchase,1.0,0 -152367732,"Team Fortress 2",purchase,1.0,0 -152367732,"Team Fortress 2",play,554.0,0 -278600042,"Unturned",purchase,1.0,0 -127208680,"SMITE",purchase,1.0,0 -127208680,"SMITE",play,32.0,0 -127208680,"Age of Empires II HD Edition",purchase,1.0,0 -127208680,"Age of Empires II HD Edition",play,18.3,0 -127208680,"The Sims(TM) 3",purchase,1.0,0 -127208680,"The Sims(TM) 3",play,14.5,0 -127208680,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -127208680,"School of Dragons How to Train Your Dragon",play,3.2,0 -127208680,"Rust",purchase,1.0,0 -127208680,"Rust",play,2.2,0 -127208680,"Sacred 3",purchase,1.0,0 -127208680,"Sacred 3",play,1.9,0 -127208680,"The Elder Scrolls V Skyrim",purchase,1.0,0 -127208680,"The Elder Scrolls V Skyrim",play,1.5,0 -127208680,"Blades of Time",purchase,1.0,0 -127208680,"Blades of Time",play,1.2,0 -127208680,"Creativerse",purchase,1.0,0 -127208680,"Creativerse",play,0.9,0 -127208680,"Secret of the Magic Crystal",purchase,1.0,0 -127208680,"Secret of the Magic Crystal",play,0.5,0 -127208680,"Dota 2",purchase,1.0,0 -127208680,"Dota 2",play,0.5,0 -127208680,"ARK Survival Evolved",purchase,1.0,0 -127208680,"ARK Survival Evolved",play,0.4,0 -127208680,"The Lord of the Rings War in the North",purchase,1.0,0 -127208680,"The Lord of the Rings War in the North",play,0.2,0 -127208680,"Magicka Wizard Wars",purchase,1.0,0 -127208680,"Mind Snares Alice's Journey",purchase,1.0,0 -127208680,"Robocraft",purchase,1.0,0 -127208680,"Sacred 3 Underworld Story",purchase,1.0,0 -127208680,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -127208680,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -127208680,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -246154528,"Team Fortress 2",purchase,1.0,0 -246154528,"Team Fortress 2",play,1.0,0 -142215921,"Dota 2",purchase,1.0,0 -142215921,"Dota 2",play,0.7,0 -111551727,"Dota 2",purchase,1.0,0 -111551727,"Dota 2",play,3085.0,0 -111551727,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -111551727,"Grand Theft Auto Episodes from Liberty City",play,119.0,0 -111551727,"Ragnarok Online 2",purchase,1.0,0 -111551727,"Ragnarok Online 2",play,79.0,0 -111551727,"DmC Devil May Cry",purchase,1.0,0 -111551727,"DmC Devil May Cry",play,57.0,0 -111551727,"Grand Theft Auto IV",purchase,1.0,0 -111551727,"Grand Theft Auto IV",play,53.0,0 -111551727,"Castle Crashers",purchase,1.0,0 -111551727,"Castle Crashers",play,52.0,0 -111551727,"The Last Remnant",purchase,1.0,0 -111551727,"The Last Remnant",play,50.0,0 -111551727,"Magic 2014 ",purchase,1.0,0 -111551727,"Magic 2014 ",play,44.0,0 -111551727,"Magic 2015",purchase,1.0,0 -111551727,"Magic 2015",play,34.0,0 -111551727,"Torchlight II",purchase,1.0,0 -111551727,"Torchlight II",play,32.0,0 -111551727,"Warframe",purchase,1.0,0 -111551727,"Warframe",play,30.0,0 -111551727,"Grand Theft Auto San Andreas",purchase,1.0,0 -111551727,"Grand Theft Auto San Andreas",play,28.0,0 -111551727,"Magic Duels",purchase,1.0,0 -111551727,"Magic Duels",play,26.0,0 -111551727,"Crysis 2 Maximum Edition",purchase,1.0,0 -111551727,"Crysis 2 Maximum Edition",play,17.8,0 -111551727,"Agarest Generations of War",purchase,1.0,0 -111551727,"Agarest Generations of War",play,16.3,0 -111551727,"DiRT Showdown",purchase,1.0,0 -111551727,"DiRT Showdown",play,14.4,0 -111551727,"Neverwinter",purchase,1.0,0 -111551727,"Neverwinter",play,13.4,0 -111551727,"Grand Theft Auto III",purchase,1.0,0 -111551727,"Grand Theft Auto III",play,10.1,0 -111551727,"Bastion",purchase,1.0,0 -111551727,"Bastion",play,9.1,0 -111551727,"WAKFU",purchase,1.0,0 -111551727,"WAKFU",play,8.9,0 -111551727,"Crysis",purchase,1.0,0 -111551727,"Crysis",play,8.8,0 -111551727,"Team Fortress 2",purchase,1.0,0 -111551727,"Team Fortress 2",play,7.3,0 -111551727,"Left 4 Dead 2",purchase,1.0,0 -111551727,"Left 4 Dead 2",play,6.9,0 -111551727,"Terraria",purchase,1.0,0 -111551727,"Terraria",play,5.6,0 -111551727,"Crysis Warhead",purchase,1.0,0 -111551727,"Crysis Warhead",play,5.5,0 -111551727,"Breath of Death VII ",purchase,1.0,0 -111551727,"Breath of Death VII ",play,4.0,0 -111551727,"Free to Play",purchase,1.0,0 -111551727,"Free to Play",play,3.7,0 -111551727,"Front Mission Evolved",purchase,1.0,0 -111551727,"Front Mission Evolved",play,3.6,0 -111551727,"PAYDAY The Heist",purchase,1.0,0 -111551727,"PAYDAY The Heist",play,2.9,0 -111551727,"SimCity 4 Deluxe",purchase,1.0,0 -111551727,"SimCity 4 Deluxe",play,2.5,0 -111551727,"Metro 2033",purchase,1.0,0 -111551727,"Metro 2033",play,1.9,0 -111551727,"Royal Quest",purchase,1.0,0 -111551727,"Royal Quest",play,1.6,0 -111551727,"Enclave",purchase,1.0,0 -111551727,"Enclave",play,1.6,0 -111551727,"Afterfall InSanity Extended Edition",purchase,1.0,0 -111551727,"Afterfall InSanity Extended Edition",play,1.5,0 -111551727,"Estranged Act I",purchase,1.0,0 -111551727,"Estranged Act I",play,1.4,0 -111551727,"Marvel Heroes 2015",purchase,1.0,0 -111551727,"Marvel Heroes 2015",play,1.2,0 -111551727,"X-Blades",purchase,1.0,0 -111551727,"X-Blades",play,1.1,0 -111551727,"Path of Exile",purchase,1.0,0 -111551727,"Path of Exile",play,0.9,0 -111551727,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -111551727,"Tiny and Big Grandpa's Leftovers",play,0.5,0 -111551727,"Quake Live",purchase,1.0,0 -111551727,"Quake Live",play,0.4,0 -111551727,"BattleBlock Theater",purchase,1.0,0 -111551727,"BattleBlock Theater",play,0.3,0 -111551727,"Sunrider Mask of Arcadius",purchase,1.0,0 -111551727,"Sunrider Mask of Arcadius",play,0.3,0 -111551727,"Grand Theft Auto 2",purchase,1.0,0 -111551727,"Grand Theft Auto 2",play,0.2,0 -111551727,"Crysis Wars",purchase,1.0,0 -111551727,"Crysis Wars",play,0.2,0 -111551727,"Cthulhu Saves the World ",purchase,1.0,0 -111551727,"Cthulhu Saves the World ",play,0.2,0 -111551727,"Shadows on the Vatican - Act I Greed",purchase,1.0,0 -111551727,"Grand Theft Auto",purchase,1.0,0 -111551727,"Morphopolis",purchase,1.0,0 -111551727,"AirMech",purchase,1.0,0 -111551727,"Unturned",purchase,1.0,0 -111551727,"Memories of a Vagabond",purchase,1.0,0 -111551727,"Hamilton's Great Adventure",purchase,1.0,0 -111551727,"Grand Theft Auto San Andreas",purchase,1.0,0 -111551727,"Grand Theft Auto Vice City",purchase,1.0,0 -111551727,"Grand Theft Auto Vice City",purchase,1.0,0 -111551727,"Grand Theft Auto III",purchase,1.0,0 -111551727,"Hostile Waters Antaeus Rising",purchase,1.0,0 -111551727,"Narcissu 1st & 2nd",purchase,1.0,0 -111551727,"Realms of the Haunting",purchase,1.0,0 -111551727,"Sanctum",purchase,1.0,0 -111551727,"Uncharted Waters Online Gran Atlas",purchase,1.0,0 -150871288,"Dota 2",purchase,1.0,0 -150871288,"Dota 2",play,17.6,0 -115826231,"Mafia II",purchase,1.0,0 -115826231,"Mafia II",play,4.8,0 -181819729,"Garry's Mod",purchase,1.0,0 -181819729,"Garry's Mod",play,3.3,0 -181819729,"Team Fortress 2",purchase,1.0,0 -181819729,"Team Fortress 2",play,0.1,0 -181819729,"Clicker Heroes",purchase,1.0,0 -181819729,"Anarchy Arcade",purchase,1.0,0 -181819729,"Cannons Lasers Rockets",purchase,1.0,0 -181819729,"City of Steam Arkadia",purchase,1.0,0 -181819729,"DiggerOnline",purchase,1.0,0 -181819729,"Robocraft",purchase,1.0,0 -181819729,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -84045371,"Counter-Strike Global Offensive",purchase,1.0,0 -84045371,"Counter-Strike Global Offensive",play,1159.0,0 -84045371,"Dota 2",purchase,1.0,0 -84045371,"Dota 2",play,537.0,0 -84045371,"Team Fortress 2",purchase,1.0,0 -84045371,"Team Fortress 2",play,370.0,0 -84045371,"Infestation Survivor Stories",purchase,1.0,0 -84045371,"Infestation Survivor Stories",play,30.0,0 -84045371,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -84045371,"Call of Duty Black Ops II - Multiplayer",play,27.0,0 -84045371,"Mountain",purchase,1.0,0 -84045371,"Mountain",play,25.0,0 -84045371,"Grand Theft Auto V",purchase,1.0,0 -84045371,"Grand Theft Auto V",play,14.0,0 -84045371,"Unturned",purchase,1.0,0 -84045371,"Unturned",play,13.4,0 -84045371,"Counter-Strike Source",purchase,1.0,0 -84045371,"Counter-Strike Source",play,12.9,0 -84045371,"DayZ",purchase,1.0,0 -84045371,"DayZ",play,8.5,0 -84045371,"Portal 2",purchase,1.0,0 -84045371,"Portal 2",play,2.2,0 -84045371,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -84045371,"Call of Duty Black Ops II - Zombies",play,0.3,0 -84045371,"Insurgency",purchase,1.0,0 -84045371,"Insurgency",play,0.2,0 -84045371,"Call of Duty Black Ops II",purchase,1.0,0 -84045371,"Call of Duty Black Ops II",play,0.1,0 -84045371,"Left 4 Dead 2",purchase,1.0,0 -84045371,"Left 4 Dead 2",play,0.1,0 -84045371,"Sniper Elite V2",purchase,1.0,0 -114092121,"Zombie Panic Source",purchase,1.0,0 -114092121,"Zombie Panic Source",play,1.6,0 -184984194,"Unturned",purchase,1.0,0 -125546624,"Dungeon Siege III",purchase,1.0,0 -125546624,"Dungeon Siege III",play,0.6,0 -104358836,"Homefront",purchase,1.0,0 -104358836,"Homefront",play,30.0,0 -143158466,"Team Fortress 2",purchase,1.0,0 -143158466,"Team Fortress 2",play,12.2,0 -300345395,"Team Fortress 2",purchase,1.0,0 -300345395,"Team Fortress 2",play,0.5,0 -66687732,"Portal 2",purchase,1.0,0 -66687732,"Portal 2",play,15.7,0 -66687732,"Portal",purchase,1.0,0 -66687732,"Portal",play,6.5,0 -66687732,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -66687732,"Call of Duty Modern Warfare 2 - Multiplayer",play,2.6,0 -66687732,"Counter-Strike Source",purchase,1.0,0 -66687732,"Counter-Strike Source",play,1.2,0 -66687732,"Call of Duty Modern Warfare 2",purchase,1.0,0 -66687732,"Call of Duty Modern Warfare 2",play,0.9,0 -169250855,"Dota 2",purchase,1.0,0 -169250855,"Dota 2",play,0.5,0 -167374754,"Team Fortress 2",purchase,1.0,0 -167374754,"Team Fortress 2",play,0.2,0 -193265457,"Dizzel",purchase,1.0,0 -193265457,"theHunter",purchase,1.0,0 -120852852,"Dota 2",purchase,1.0,0 -120852852,"Dota 2",play,3590.0,0 -120852852,"PAYDAY The Heist",purchase,1.0,0 -120852852,"PAYDAY The Heist",play,4.0,0 -120852852,"Sigils of Elohim",purchase,1.0,0 -120852852,"Sigils of Elohim",play,0.3,0 -120852852,"Free to Play",purchase,1.0,0 -120852852,"Rise of Incarnates",purchase,1.0,0 -44221885,"Half-Life 2",purchase,1.0,0 -44221885,"Half-Life 2 Episode One",purchase,1.0,0 -44221885,"Half-Life 2 Episode Two",purchase,1.0,0 -44221885,"Half-Life 2 Lost Coast",purchase,1.0,0 -44221885,"Portal",purchase,1.0,0 -184822872,"Dota 2",purchase,1.0,0 -184822872,"Dota 2",play,1.4,0 -244389644,"Vindictus",purchase,1.0,0 -96504332,"The Elder Scrolls V Skyrim",purchase,1.0,0 -96504332,"The Elder Scrolls V Skyrim",play,523.0,0 -96504332,"Everlasting Summer",purchase,1.0,0 -96504332,"Everlasting Summer",play,17.9,0 -96504332,"The Amazing Spider-Man",purchase,1.0,0 -96504332,"The Amazing Spider-Man",play,16.7,0 -96504332,"Dota 2",purchase,1.0,0 -96504332,"Dota 2",play,4.2,0 -96504332,"RaiderZ",purchase,1.0,0 -114080968,"Team Fortress 2",purchase,1.0,0 -114080968,"Team Fortress 2",play,2.5,0 -114080968,"Robocraft",purchase,1.0,0 -114080968,"Unturned",purchase,1.0,0 -193740810,"Dota 2",purchase,1.0,0 -193740810,"Dota 2",play,0.2,0 -174266284,"Dota 2",purchase,1.0,0 -174266284,"Dota 2",play,4.5,0 -102295765,"Counter-Strike Global Offensive",purchase,1.0,0 -102295765,"Counter-Strike Global Offensive",play,538.0,0 -102295765,"Terraria",purchase,1.0,0 -102295765,"Terraria",play,423.0,0 -102295765,"PAYDAY 2",purchase,1.0,0 -102295765,"PAYDAY 2",play,164.0,0 -102295765,"Left 4 Dead 2",purchase,1.0,0 -102295765,"Left 4 Dead 2",play,117.0,0 -102295765,"Dota 2",purchase,1.0,0 -102295765,"Dota 2",play,91.0,0 -102295765,"H1Z1",purchase,1.0,0 -102295765,"H1Z1",play,70.0,0 -102295765,"Team Fortress 2",purchase,1.0,0 -102295765,"Team Fortress 2",play,67.0,0 -102295765,"PAYDAY The Heist",purchase,1.0,0 -102295765,"PAYDAY The Heist",play,57.0,0 -102295765,"Fairy Fencer F",purchase,1.0,0 -102295765,"Fairy Fencer F",play,47.0,0 -102295765,"Saints Row IV",purchase,1.0,0 -102295765,"Saints Row IV",play,36.0,0 -102295765,"Dungeon Defenders II",purchase,1.0,0 -102295765,"Dungeon Defenders II",play,28.0,0 -102295765,"If My Heart Had Wings",purchase,1.0,0 -102295765,"If My Heart Had Wings",play,26.0,0 -102295765,"Lost Saga North America",purchase,1.0,0 -102295765,"Lost Saga North America",play,13.6,0 -102295765,"NEKOPARA Vol. 1",purchase,1.0,0 -102295765,"NEKOPARA Vol. 1",play,12.7,0 -102295765,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -102295765,"Call of Duty Black Ops II - Zombies",play,11.4,0 -102295765,"Insurgency",purchase,1.0,0 -102295765,"Insurgency",play,9.4,0 -102295765,"Call of Duty Black Ops II",purchase,1.0,0 -102295765,"Call of Duty Black Ops II",play,5.8,0 -102295765,"Call of Duty World at War",purchase,1.0,0 -102295765,"Call of Duty World at War",play,5.6,0 -102295765,"Warframe",purchase,1.0,0 -102295765,"Warframe",play,5.5,0 -102295765,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -102295765,"Call of Duty Black Ops II - Multiplayer",play,5.4,0 -102295765,"Garry's Mod",purchase,1.0,0 -102295765,"Garry's Mod",play,5.2,0 -102295765,"Velvet Sundown",purchase,1.0,0 -102295765,"Velvet Sundown",play,3.5,0 -102295765,"NEKOPARA Vol. 0",purchase,1.0,0 -102295765,"NEKOPARA Vol. 0",play,3.4,0 -102295765,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -102295765,"Tom Clancy's Ghost Recon Phantoms - NA",play,2.3,0 -102295765,"Cry of Fear",purchase,1.0,0 -102295765,"Cry of Fear",play,0.9,0 -102295765,"La Tale",purchase,1.0,0 -102295765,"Aura Kingdom",purchase,1.0,0 -102295765,"America's Army Proving Grounds",purchase,1.0,0 -102295765,"C9",purchase,1.0,0 -102295765,"Clicker Heroes",purchase,1.0,0 -102295765,"Dizzel",purchase,1.0,0 -102295765,"Elsword",purchase,1.0,0 -102295765,"H1Z1 Test Server",purchase,1.0,0 -102295765,"Happy Wars",purchase,1.0,0 -102295765,"Killing Floor - Toy Master",purchase,1.0,0 -102295765,"Prime World",purchase,1.0,0 -102295765,"Ragnarok",purchase,1.0,0 -102295765,"Red Stone Online",purchase,1.0,0 -102295765,"Stronghold Kingdoms",purchase,1.0,0 -102295765,"TERA",purchase,1.0,0 -102295765,"The Four Kings Casino and Slots",purchase,1.0,0 -102295765,"Unturned",purchase,1.0,0 -144736559,"Dota 2",purchase,1.0,0 -144736559,"Dota 2",play,370.0,0 -144835995,"Dota 2",purchase,1.0,0 -144835995,"Dota 2",play,2086.0,0 -243711507,"Dota 2",purchase,1.0,0 -243711507,"Dota 2",play,372.0,0 -243711507,"Heroes & Generals",purchase,1.0,0 -243711507,"Stronghold Kingdoms",purchase,1.0,0 -63962362,"Star Trek D-A-C",purchase,1.0,0 -93259090,"GunZ 2 The Second Duel",purchase,1.0,0 -93259090,"GunZ 2 The Second Duel",play,49.0,0 -93259090,"Counter-Strike Global Offensive",purchase,1.0,0 -93259090,"Counter-Strike Global Offensive",play,30.0,0 -93259090,"Terraria",purchase,1.0,0 -93259090,"Terraria",play,7.9,0 -93259090,"Left 4 Dead 2",purchase,1.0,0 -93259090,"Left 4 Dead 2",play,7.3,0 -93259090,"Garry's Mod",purchase,1.0,0 -93259090,"Garry's Mod",play,2.7,0 -93259090,"Team Fortress 2",purchase,1.0,0 -93259090,"Team Fortress 2",play,2.7,0 -93259090,"Dota 2",purchase,1.0,0 -93259090,"Dota 2",play,2.0,0 -93259090,"Counter-Strike Nexon Zombies",purchase,1.0,0 -93259090,"Dirty Bomb",purchase,1.0,0 -93259090,"Vindictus",purchase,1.0,0 -94422408,"The Lord of the Rings War in the North",purchase,1.0,0 -94422408,"The Lord of the Rings War in the North",play,36.0,0 -227752807,"Unturned",purchase,1.0,0 -227752807,"Unturned",play,17.7,0 -39204929,"Counter-Strike Condition Zero",purchase,1.0,0 -39204929,"Counter-Strike Condition Zero",play,0.4,0 -39204929,"Counter-Strike",purchase,1.0,0 -39204929,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -39204929,"Day of Defeat",purchase,1.0,0 -39204929,"Deathmatch Classic",purchase,1.0,0 -39204929,"Ricochet",purchase,1.0,0 -199051694,"Counter-Strike Global Offensive",purchase,1.0,0 -199051694,"Counter-Strike Global Offensive",play,13.4,0 -199051694,"Blacklight Retribution",purchase,1.0,0 -199051694,"Counter-Strike Nexon Zombies",purchase,1.0,0 -199051694,"Loadout",purchase,1.0,0 -199051694,"Neverwinter",purchase,1.0,0 -199051694,"Quake Live",purchase,1.0,0 -199051694,"Warframe",purchase,1.0,0 -70699101,"Sid Meier's Civilization V",purchase,1.0,0 -70699101,"Sid Meier's Civilization V",play,211.0,0 -70699101,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -70699101,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -156002832,"Stronghold 3",purchase,1.0,0 -156002832,"Stronghold 3",play,21.0,0 -156002832,"Rocksmith 2014",purchase,1.0,0 -156002832,"Rocksmith 2014",play,5.7,0 -309052991,"Brawlhalla",purchase,1.0,0 -309052991,"Brawlhalla",play,0.7,0 -309052991,"Heroes & Generals",purchase,1.0,0 -309052991,"Heroes & Generals",play,0.2,0 -309052991,"Happy Wars",purchase,1.0,0 -141774640,"Realm of the Mad God",purchase,1.0,0 -141774640,"Realm of the Mad God",play,37.0,0 -141774640,"Dungeons & Dragons Online",purchase,1.0,0 -141774640,"Dungeons & Dragons Online",play,2.0,0 -48772264,"Half-Life 2",purchase,1.0,0 -48772264,"Half-Life 2 Episode One",purchase,1.0,0 -48772264,"Half-Life 2 Episode Two",purchase,1.0,0 -48772264,"Half-Life 2 Lost Coast",purchase,1.0,0 -48772264,"Portal",purchase,1.0,0 -124663731,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -124663731,"Baldur's Gate Enhanced Edition",play,36.0,0 -124663731,"Lords Of The Fallen",purchase,1.0,0 -124663731,"Lords Of The Fallen",play,3.7,0 -124663731,"The Witcher Enhanced Edition",purchase,1.0,0 -124663731,"The Witcher Enhanced Edition",play,2.1,0 -124663731,"Krater",purchase,1.0,0 -124663731,"Krater",play,1.4,0 -124663731,"Path of Exile",purchase,1.0,0 -124663731,"Path of Exile",play,0.1,0 -124663731,"HAWKEN",purchase,1.0,0 -305676867,"Dota 2",purchase,1.0,0 -305676867,"Dota 2",play,1.3,0 -146067806,"Dota 2",purchase,1.0,0 -146067806,"Dota 2",play,1.6,0 -284019534,"Arma 2 Operation Arrowhead",purchase,1.0,0 -284019534,"Arma 2 Operation Arrowhead",play,729.0,0 -284019534,"Arma 3",purchase,1.0,0 -284019534,"Arma 3",play,3.6,0 -284019534,"Arma 2 DayZ Mod",purchase,1.0,0 -284019534,"Arma 2",purchase,1.0,0 -284019534,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -284019534,"Arma 3 Helicopters",purchase,1.0,0 -284019534,"Arma 3 Karts",purchase,1.0,0 -284019534,"Arma 3 Marksmen",purchase,1.0,0 -284019534,"Arma 3 Zeus",purchase,1.0,0 -284019534,"Arma Cold War Assault",purchase,1.0,0 -242477922,"America's Army Proving Grounds",purchase,1.0,0 -242477922,"Esenthel Engine",purchase,1.0,0 -242477922,"Run and Fire",purchase,1.0,0 -40237093,"Half-Life 2 Episode One",purchase,1.0,0 -40237093,"Half-Life 2 Episode One",play,0.7,0 -40237093,"Half-Life 2 Deathmatch",purchase,1.0,0 -40237093,"Half-Life 2 Episode Two",purchase,1.0,0 -40237093,"Half-Life 2 Lost Coast",purchase,1.0,0 -101655571,"Saints Row The Third",purchase,1.0,0 -101655571,"Saints Row The Third",play,1.4,0 -247937621,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -247937621,"Boring Man - Online Tactical Stickman Combat",play,0.3,0 -247937621,"Unturned",purchase,1.0,0 -247937621,"Fistful of Frags",purchase,1.0,0 -1135775,"Counter-Strike",purchase,1.0,0 -1135775,"Counter-Strike",play,1.3,0 -1135775,"Day of Defeat",purchase,1.0,0 -1135775,"Deathmatch Classic",purchase,1.0,0 -1135775,"Half-Life",purchase,1.0,0 -1135775,"Half-Life Blue Shift",purchase,1.0,0 -1135775,"Half-Life Opposing Force",purchase,1.0,0 -1135775,"Ricochet",purchase,1.0,0 -1135775,"Team Fortress Classic",purchase,1.0,0 -264207808,"Dota 2",purchase,1.0,0 -264207808,"Dota 2",play,0.6,0 -241862248,"The Crew",purchase,1.0,0 -241862248,"The Crew",play,399.0,0 -241862248,"Dirty Bomb",purchase,1.0,0 -241862248,"Dirty Bomb",play,162.0,0 -241862248,"Robocraft",purchase,1.0,0 -241862248,"Robocraft",play,134.0,0 -241862248,"Wargame AirLand Battle",purchase,1.0,0 -241862248,"Wargame AirLand Battle",play,83.0,0 -241862248,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -241862248,"Sid Meier's Civilization Beyond Earth",play,44.0,0 -241862248,"Cities XXL",purchase,1.0,0 -241862248,"Cities XXL",play,41.0,0 -241862248,"Car Mechanic Simulator 2015",purchase,1.0,0 -241862248,"Car Mechanic Simulator 2015",play,35.0,0 -241862248,"XCOM Enemy Unknown",purchase,1.0,0 -241862248,"XCOM Enemy Unknown",play,33.0,0 -241862248,"Team Fortress 2",purchase,1.0,0 -241862248,"Team Fortress 2",play,17.6,0 -241862248,"Wargame Red Dragon",purchase,1.0,0 -241862248,"Wargame Red Dragon",play,16.5,0 -241862248,"War Thunder",purchase,1.0,0 -241862248,"War Thunder",play,12.5,0 -241862248,"Dungeon Defenders II",purchase,1.0,0 -241862248,"Dungeon Defenders II",play,11.9,0 -241862248,"Dead Island Epidemic",purchase,1.0,0 -241862248,"Dead Island Epidemic",play,7.1,0 -241862248,"Banished",purchase,1.0,0 -241862248,"Banished",play,7.1,0 -241862248,"ARK Survival Evolved",purchase,1.0,0 -241862248,"ARK Survival Evolved",play,4.6,0 -241862248,"Heroes & Generals",purchase,1.0,0 -241862248,"Heroes & Generals",play,3.6,0 -241862248,"Stranded Deep",purchase,1.0,0 -241862248,"Stranded Deep",play,2.6,0 -241862248,"Wargame European Escalation",purchase,1.0,0 -241862248,"Car Mechanic Simulator 2015 - Visual Tuning",purchase,1.0,0 -241862248,"Car Mechanic Simulator 2015 - Youngtimer",purchase,1.0,0 -241862248,"MicroVolts Surge",purchase,1.0,0 -241862248,"Might & Magic Duel of Champions",purchase,1.0,0 -241862248,"The Lord of the Rings Online",purchase,1.0,0 -241862248,"Tribes Ascend",purchase,1.0,0 -246733980,"Heroine's Quest The Herald of Ragnarok",purchase,1.0,0 -56911639,"Dota 2",purchase,1.0,0 -56911639,"Dota 2",play,631.0,0 -56911639,"Magicka",purchase,1.0,0 -56911639,"Magicka",play,10.3,0 -56911639,"MicroVolts Surge",purchase,1.0,0 -56911639,"MicroVolts Surge",play,5.6,0 -56911639,"Fallen Earth",purchase,1.0,0 -56911639,"Hazard Ops",purchase,1.0,0 -56911639,"Magic Barrage - Bitferno",purchase,1.0,0 -56911639,"Magicka Wizard Wars",purchase,1.0,0 -56911639,"Path of Exile",purchase,1.0,0 -56911639,"Unturned",purchase,1.0,0 -56911639,"Warframe",purchase,1.0,0 -99713453,"Mount & Blade Warband",purchase,1.0,0 -99713453,"Mount & Blade Warband",play,54.0,0 -99713453,"Project Zomboid",purchase,1.0,0 -99713453,"Project Zomboid",play,45.0,0 -99713453,"Uncharted Waters Online Gran Atlas",purchase,1.0,0 -99713453,"Uncharted Waters Online Gran Atlas",play,32.0,0 -99713453,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -99713453,"Rising Storm/Red Orchestra 2 Multiplayer",play,6.7,0 -99713453,"The Binding of Isaac",purchase,1.0,0 -99713453,"The Binding of Isaac",play,6.6,0 -99713453,"Unturned",purchase,1.0,0 -99713453,"Unturned",play,4.2,0 -99713453,"X-COM Apocalypse",purchase,1.0,0 -99713453,"X-COM Apocalypse",play,2.2,0 -99713453,"X-COM Terror from the Deep",purchase,1.0,0 -99713453,"X-COM Terror from the Deep",play,1.1,0 -99713453,"X-COM Interceptor",purchase,1.0,0 -99713453,"X-COM Interceptor",play,1.1,0 -99713453,"Darkout",purchase,1.0,0 -99713453,"Darkout",play,1.0,0 -99713453,"Endless Sky",purchase,1.0,0 -99713453,"Endless Sky",play,0.9,0 -99713453,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -99713453,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,0.8,0 -99713453,"Dead Space 2",purchase,1.0,0 -99713453,"Mount & Blade",purchase,1.0,0 -99713453,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -99713453,"Tropico 3 Absolute Power",purchase,1.0,0 -99713453,"Tropico 4",purchase,1.0,0 -99713453,"X-COM Enforcer",purchase,1.0,0 -99713453,"X-COM UFO Defense",purchase,1.0,0 -183410435,"Counter-Strike Global Offensive",purchase,1.0,0 -183410435,"Counter-Strike Global Offensive",play,7.1,0 -33518079,"Left 4 Dead",purchase,1.0,0 -33518079,"Left 4 Dead",play,69.0,0 -33518079,"Mass Effect",purchase,1.0,0 -33518079,"Mass Effect",play,57.0,0 -33518079,"Mass Effect 2",purchase,1.0,0 -33518079,"Mass Effect 2",play,55.0,0 -33518079,"Killing Floor",purchase,1.0,0 -33518079,"Killing Floor",play,54.0,0 -33518079,"Left 4 Dead 2",purchase,1.0,0 -33518079,"Left 4 Dead 2",play,43.0,0 -33518079,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -33518079,"Resident Evil 5 / Biohazard 5",play,24.0,0 -33518079,"Portal",purchase,1.0,0 -33518079,"Portal",play,15.2,0 -33518079,"Plague Inc Evolved",purchase,1.0,0 -33518079,"Plague Inc Evolved",play,14.6,0 -33518079,"Uplink",purchase,1.0,0 -33518079,"Uplink",play,13.1,0 -33518079,"XCOM Enemy Unknown",purchase,1.0,0 -33518079,"XCOM Enemy Unknown",play,11.0,0 -33518079,"Portal 2",purchase,1.0,0 -33518079,"Portal 2",play,8.5,0 -33518079,"System Protocol One",purchase,1.0,0 -33518079,"System Protocol One",play,8.5,0 -33518079,"Half-Life 2",purchase,1.0,0 -33518079,"Half-Life 2",play,8.2,0 -33518079,"Command and Conquer Red Alert 3",purchase,1.0,0 -33518079,"Command and Conquer Red Alert 3",play,8.1,0 -33518079,"Far Cry 2",purchase,1.0,0 -33518079,"Far Cry 2",play,5.0,0 -33518079,"ARK Survival Evolved",purchase,1.0,0 -33518079,"ARK Survival Evolved",play,4.2,0 -33518079,"Half-Life 2 Episode One",purchase,1.0,0 -33518079,"Half-Life 2 Episode One",play,3.8,0 -33518079,"Darkest Dungeon",purchase,1.0,0 -33518079,"Darkest Dungeon",play,2.1,0 -33518079,"Far Cry",purchase,1.0,0 -33518079,"Far Cry",play,1.9,0 -33518079,"BioShock",purchase,1.0,0 -33518079,"BioShock",play,1.7,0 -33518079,"Aliens versus Predator Classic 2000",purchase,1.0,0 -33518079,"Aliens versus Predator Classic 2000",play,0.9,0 -33518079,"DOOM 3",purchase,1.0,0 -33518079,"DOOM 3",play,0.9,0 -33518079,"Dragon Age Origins Character Creator",purchase,1.0,0 -33518079,"Dragon Age Origins Character Creator",play,0.8,0 -33518079,"Twin Sector",purchase,1.0,0 -33518079,"Twin Sector",play,0.6,0 -33518079,"Team Fortress 2",purchase,1.0,0 -33518079,"Team Fortress 2",play,0.5,0 -33518079,"Audiosurf",purchase,1.0,0 -33518079,"Audiosurf",play,0.5,0 -33518079,"Alien Swarm",purchase,1.0,0 -33518079,"Alien Swarm",play,0.4,0 -33518079,"Rust",purchase,1.0,0 -33518079,"Rust",play,0.3,0 -33518079,"Hacker Evolution",purchase,1.0,0 -33518079,"Hacker Evolution",play,0.2,0 -33518079,"Organ Trail Director's Cut",purchase,1.0,0 -33518079,"Organ Trail Director's Cut",play,0.2,0 -33518079,"Hammerfight",purchase,1.0,0 -33518079,"Septerra Core",purchase,1.0,0 -33518079,"DOOM 3 Resurrection of Evil",purchase,1.0,0 -33518079,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -33518079,"Half-Life 2 Episode Two",purchase,1.0,0 -33518079,"Half-Life 2 Lost Coast",purchase,1.0,0 -33518079,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -65145468,"Kerbal Space Program",purchase,1.0,0 -65145468,"Kerbal Space Program",play,363.0,0 -65145468,"Sid Meier's Civilization V",purchase,1.0,0 -65145468,"Sid Meier's Civilization V",play,254.0,0 -65145468,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -65145468,"Dark Souls Prepare to Die Edition",play,96.0,0 -65145468,"Fallout 4",purchase,1.0,0 -65145468,"Fallout 4",play,84.0,0 -65145468,"DARK SOULS II",purchase,1.0,0 -65145468,"DARK SOULS II",play,62.0,0 -65145468,"Call of Duty Black Ops III",purchase,1.0,0 -65145468,"Call of Duty Black Ops III",play,58.0,0 -65145468,"Fallout New Vegas",purchase,1.0,0 -65145468,"Fallout New Vegas",play,53.0,0 -65145468,"Portal 2",purchase,1.0,0 -65145468,"Portal 2",play,46.0,0 -65145468,"Total War ROME II - Emperor Edition",purchase,1.0,0 -65145468,"Total War ROME II - Emperor Edition",play,46.0,0 -65145468,"Europa Universalis IV",purchase,1.0,0 -65145468,"Europa Universalis IV",play,39.0,0 -65145468,"The Elder Scrolls V Skyrim",purchase,1.0,0 -65145468,"The Elder Scrolls V Skyrim",play,38.0,0 -65145468,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -65145468,"Sid Meier's Civilization Beyond Earth",play,35.0,0 -65145468,"Team Fortress 2",purchase,1.0,0 -65145468,"Team Fortress 2",play,34.0,0 -65145468,"Total War ATTILA",purchase,1.0,0 -65145468,"Total War ATTILA",play,32.0,0 -65145468,"Prison Architect",purchase,1.0,0 -65145468,"Prison Architect",play,26.0,0 -65145468,"Empire Total War",purchase,1.0,0 -65145468,"Empire Total War",play,25.0,0 -65145468,"Total War SHOGUN 2",purchase,1.0,0 -65145468,"Total War SHOGUN 2",play,22.0,0 -65145468,"Fallout 3",purchase,1.0,0 -65145468,"Fallout 3",play,21.0,0 -65145468,"Star Trek Online",purchase,1.0,0 -65145468,"Star Trek Online",play,18.9,0 -65145468,"Batman Arkham Knight",purchase,1.0,0 -65145468,"Batman Arkham Knight",play,17.8,0 -65145468,"Battlestations Pacific",purchase,1.0,0 -65145468,"Battlestations Pacific",play,15.8,0 -65145468,"Take On Mars",purchase,1.0,0 -65145468,"Take On Mars",play,15.5,0 -65145468,"XCOM Enemy Unknown",purchase,1.0,0 -65145468,"XCOM Enemy Unknown",play,15.2,0 -65145468,"Papers, Please",purchase,1.0,0 -65145468,"Papers, Please",play,14.0,0 -65145468,"Assassin's Creed IV Black Flag",purchase,1.0,0 -65145468,"Assassin's Creed IV Black Flag",play,12.5,0 -65145468,"Super Meat Boy",purchase,1.0,0 -65145468,"Super Meat Boy",play,11.1,0 -65145468,"Watch_Dogs",purchase,1.0,0 -65145468,"Watch_Dogs",play,11.0,0 -65145468,"Hitman Blood Money",purchase,1.0,0 -65145468,"Hitman Blood Money",play,11.0,0 -65145468,"FTL Faster Than Light",purchase,1.0,0 -65145468,"FTL Faster Than Light",play,10.8,0 -65145468,"Far Cry 3 Blood Dragon",purchase,1.0,0 -65145468,"Far Cry 3 Blood Dragon",play,8.5,0 -65145468,"Crusader Kings II",purchase,1.0,0 -65145468,"Crusader Kings II",play,7.7,0 -65145468,"Battlestations Midway",purchase,1.0,0 -65145468,"Battlestations Midway",play,6.8,0 -65145468,"The Binding of Isaac",purchase,1.0,0 -65145468,"The Binding of Isaac",play,6.7,0 -65145468,"Just Cause 3",purchase,1.0,0 -65145468,"Just Cause 3",play,6.2,0 -65145468,"Mount & Blade Warband",purchase,1.0,0 -65145468,"Mount & Blade Warband",play,6.0,0 -65145468,"Borderlands 2",purchase,1.0,0 -65145468,"Borderlands 2",play,5.4,0 -65145468,"Hearts of Iron III",purchase,1.0,0 -65145468,"Hearts of Iron III",play,5.3,0 -65145468,"Democracy 3",purchase,1.0,0 -65145468,"Democracy 3",play,4.9,0 -65145468,"Universe Sandbox",purchase,1.0,0 -65145468,"Universe Sandbox",play,4.6,0 -65145468,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -65145468,"Sid Meier's Civilization IV Beyond the Sword",play,3.4,0 -65145468,"Endless Space",purchase,1.0,0 -65145468,"Endless Space",play,3.0,0 -65145468,"Just Cause 2",purchase,1.0,0 -65145468,"Just Cause 2",play,2.8,0 -65145468,"Left 4 Dead 2",purchase,1.0,0 -65145468,"Left 4 Dead 2",play,2.8,0 -65145468,"Thief 2",purchase,1.0,0 -65145468,"Thief 2",play,2.7,0 -65145468,"Tropico 4",purchase,1.0,0 -65145468,"Tropico 4",play,2.5,0 -65145468,"Half-Life 2",purchase,1.0,0 -65145468,"Half-Life 2",play,2.2,0 -65145468,"DayZ",purchase,1.0,0 -65145468,"DayZ",play,1.8,0 -65145468,"Painkiller Black Edition",purchase,1.0,0 -65145468,"Painkiller Black Edition",play,1.5,0 -65145468,"Garry's Mod",purchase,1.0,0 -65145468,"Garry's Mod",play,1.4,0 -65145468,"Divinity Dragon Commander",purchase,1.0,0 -65145468,"Divinity Dragon Commander",play,1.2,0 -65145468,"Fallout 2",purchase,1.0,0 -65145468,"Fallout 2",play,1.1,0 -65145468,"Tom Clancy's Splinter Cell Chaos Theory",purchase,1.0,0 -65145468,"Tom Clancy's Splinter Cell Chaos Theory",play,1.1,0 -65145468,"Killing Floor",purchase,1.0,0 -65145468,"Killing Floor",play,1.0,0 -65145468,"Rust",purchase,1.0,0 -65145468,"Rust",play,0.9,0 -65145468,"World in Conflict Soviet Assault",purchase,1.0,0 -65145468,"World in Conflict Soviet Assault",play,0.6,0 -65145468,"Moonbase Alpha",purchase,1.0,0 -65145468,"Moonbase Alpha",play,0.5,0 -65145468,"Homeworld Remastered Collection",purchase,1.0,0 -65145468,"Homeworld Remastered Collection",play,0.5,0 -65145468,"Ultimate General Gettysburg",purchase,1.0,0 -65145468,"Ultimate General Gettysburg",play,0.5,0 -65145468,"Hitman 2 Silent Assassin",purchase,1.0,0 -65145468,"Hitman 2 Silent Assassin",play,0.3,0 -65145468,"Five Nights at Freddy's",purchase,1.0,0 -65145468,"Five Nights at Freddy's",play,0.3,0 -65145468,"I Have No Mouth, and I Must Scream",purchase,1.0,0 -65145468,"I Have No Mouth, and I Must Scream",play,0.1,0 -65145468,"Sid Meier's Civilization IV",purchase,1.0,0 -65145468,"World in Conflict",purchase,1.0,0 -65145468,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -65145468,"Batman Arkham City GOTY",purchase,1.0,0 -65145468,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -65145468,"Batman Arkham Origins - Initiation",purchase,1.0,0 -65145468,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -65145468,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -65145468,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -65145468,"Batman Arkham Origins",purchase,1.0,0 -65145468,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -65145468,"Divinity Dragon Commander Beta",purchase,1.0,0 -65145468,"Europa Universalis IV American Dream DLC",purchase,1.0,0 -65145468,"Europa Universalis IV Conquest of Paradise",purchase,1.0,0 -65145468,"Europa Universalis IV Conquistadors Unit pack ",purchase,1.0,0 -65145468,"Europa Universalis IV National Monuments II",purchase,1.0,0 -65145468,"Europa Universalis IVNative Americans Unit Pack",purchase,1.0,0 -65145468,"Europa Universalis IV Songs of the New World",purchase,1.0,0 -65145468,"Fallout",purchase,1.0,0 -65145468,"Fallout 3 - Mothership Zeta",purchase,1.0,0 -65145468,"Fallout 3 - Point Lookout",purchase,1.0,0 -65145468,"Fallout New Vegas Dead Money",purchase,1.0,0 -65145468,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -65145468,"Fallout Tactics",purchase,1.0,0 -65145468,"Half-Life 2 Lost Coast",purchase,1.0,0 -65145468,"Hearts of Iron III German II Sprite Pack",purchase,1.0,0 -65145468,"Hitman Codename 47",purchase,1.0,0 -65145468,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -65145468,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -65145468,"Sid Meier's Civilization IV",purchase,1.0,0 -65145468,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -65145468,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -65145468,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -65145468,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -65145468,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -65145468,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -65145468,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -197786337,"R.U.S.E",purchase,1.0,0 -197786337,"R.U.S.E",play,6.4,0 -197786337,"R.U.S.E.",purchase,1.0,0 -90261045,"Napoleon Total War",purchase,1.0,0 -90261045,"Napoleon Total War",play,0.3,0 -184563802,"Dungeon Siege III",purchase,1.0,0 -184563802,"Dungeon Siege III",play,3.1,0 -203373557,"Dota 2",purchase,1.0,0 -203373557,"Dota 2",play,0.4,0 -158601180,"FINAL FANTASY VII",purchase,1.0,0 -158601180,"FINAL FANTASY VII",play,193.0,0 -158601180,"Skullgirls",purchase,1.0,0 -158601180,"Skullgirls",play,12.1,0 -158601180,"Skullgirls Endless Beta",purchase,1.0,0 -135911271,"GRID 2",purchase,1.0,0 -135911271,"GRID 2",play,39.0,0 -38731746,"EVGA PrecisionX 16",purchase,1.0,0 -38731746,"EVGA PrecisionX 16",play,83.0,0 -38731746,"Company of Heroes (New Steam Version)",purchase,1.0,0 -38731746,"Company of Heroes (New Steam Version)",play,33.0,0 -38731746,"Company of Heroes 2",purchase,1.0,0 -38731746,"Company of Heroes 2",play,19.2,0 -38731746,"Medieval II Total War",purchase,1.0,0 -38731746,"Medieval II Total War",play,13.0,0 -38731746,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -38731746,"Rising Storm/Red Orchestra 2 Multiplayer",play,12.4,0 -38731746,"Day of Defeat Source",purchase,1.0,0 -38731746,"Day of Defeat Source",play,12.2,0 -38731746,"Fallout New Vegas",purchase,1.0,0 -38731746,"Fallout New Vegas",play,11.1,0 -38731746,"Supreme Commander",purchase,1.0,0 -38731746,"Supreme Commander",play,5.3,0 -38731746,"Total War SHOGUN 2",purchase,1.0,0 -38731746,"Total War SHOGUN 2",play,5.0,0 -38731746,"Europa Universalis III",purchase,1.0,0 -38731746,"Europa Universalis III",play,3.1,0 -38731746,"Supreme Commander Forged Alliance",purchase,1.0,0 -38731746,"Supreme Commander Forged Alliance",play,2.8,0 -38731746,"Ultra Street Fighter IV",purchase,1.0,0 -38731746,"Ultra Street Fighter IV",play,2.4,0 -38731746,"Team Fortress 2",purchase,1.0,0 -38731746,"Team Fortress 2",play,2.3,0 -38731746,"Empire Total War",purchase,1.0,0 -38731746,"Empire Total War",play,1.7,0 -38731746,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -38731746,"THE KING OF FIGHTERS XIII STEAM EDITION",play,1.4,0 -38731746,"Wargame AirLand Battle",purchase,1.0,0 -38731746,"Wargame AirLand Battle",play,1.3,0 -38731746,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -38731746,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,0.9,0 -38731746,"Command and Conquer Red Alert 3",purchase,1.0,0 -38731746,"Command and Conquer Red Alert 3",play,0.4,0 -38731746,"Company of Heroes",purchase,1.0,0 -38731746,"Company of Heroes Opposing Fronts",purchase,1.0,0 -38731746,"Company of Heroes Tales of Valor",purchase,1.0,0 -38731746,"Counter-Strike Source",purchase,1.0,0 -38731746,"Europa Universalis III Divine Wind",purchase,1.0,0 -38731746,"Europa Universalis III Heir to the Throne",purchase,1.0,0 -38731746,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -38731746,"Fallout New Vegas Dead Money",purchase,1.0,0 -38731746,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -38731746,"Half-Life 2 Deathmatch",purchase,1.0,0 -38731746,"Half-Life 2 Lost Coast",purchase,1.0,0 -38731746,"Medieval II Total War Kingdoms",purchase,1.0,0 -38731746,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -207196616,"Rocket League",purchase,1.0,0 -207196616,"Rocket League",play,14.6,0 -207196616,"Terraria",purchase,1.0,0 -207196616,"Terraria",play,13.0,0 -207196616,"Elsword",purchase,1.0,0 -207196616,"Elsword",play,4.9,0 -207196616,"Toribash",purchase,1.0,0 -207196616,"Toribash",play,0.7,0 -238657001,"Dota 2",purchase,1.0,0 -238657001,"Dota 2",play,0.4,0 -305014808,"Dota 2",purchase,1.0,0 -305014808,"Dota 2",play,6.9,0 -236721347,"Dota 2",purchase,1.0,0 -236721347,"Dota 2",play,40.0,0 -230379327,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -230379327,"RollerCoaster Tycoon 3 Platinum!",play,8.8,0 -230379327,"Copa Petrobras de Marcas",purchase,1.0,0 -230379327,"RaceRoom Racing Experience ",purchase,1.0,0 -194327703,"Dota 2",purchase,1.0,0 -194327703,"Dota 2",play,7.0,0 -113446397,"XCOM Enemy Unknown",purchase,1.0,0 -113446397,"XCOM Enemy Unknown",play,92.0,0 -113446397,"Left 4 Dead 2",purchase,1.0,0 -113446397,"Left 4 Dead 2",play,0.2,0 -219823929,"Dota 2",purchase,1.0,0 -219823929,"Dota 2",play,8.8,0 -77262863,"Sid Meier's Civilization V",purchase,1.0,0 -77262863,"Sid Meier's Civilization V",play,80.0,0 -300187751,"Dota 2",purchase,1.0,0 -300187751,"Dota 2",play,1.0,0 -182499490,"Eldevin",purchase,1.0,0 -182499490,"Eldevin",play,312.0,0 -182499490,"Unturned",purchase,1.0,0 -182499490,"Unturned",play,73.0,0 -182499490,"Team Fortress 2",purchase,1.0,0 -182499490,"Team Fortress 2",play,59.0,0 -182499490,"TERA",purchase,1.0,0 -182499490,"TERA",play,28.0,0 -182499490,"Path of Exile",purchase,1.0,0 -182499490,"Path of Exile",play,10.7,0 -182499490,"Memories of a Vagabond",purchase,1.0,0 -182499490,"Memories of a Vagabond",play,4.3,0 -182499490,"Sakura Clicker",purchase,1.0,0 -182499490,"Sakura Clicker",play,3.1,0 -182499490,"Counter-Strike Nexon Zombies",purchase,1.0,0 -182499490,"Counter-Strike Nexon Zombies",play,2.5,0 -182499490,"No More Room in Hell",purchase,1.0,0 -182499490,"No More Room in Hell",play,1.8,0 -182499490,"Happy Wars",purchase,1.0,0 -182499490,"Happy Wars",play,1.3,0 -182499490,"Loadout",purchase,1.0,0 -182499490,"Loadout",play,1.0,0 -182499490,"Don't Starve",purchase,1.0,0 -182499490,"Don't Starve",play,0.8,0 -182499490,"Gotham City Impostors Free To Play",purchase,1.0,0 -182499490,"Gotham City Impostors Free To Play",play,0.5,0 -182499490,"Left 4 Dead 2",purchase,1.0,0 -182499490,"Left 4 Dead 2",play,0.5,0 -182499490,"BattleBlock Theater",purchase,1.0,0 -182499490,"BattleBlock Theater",play,0.4,0 -182499490,"The Ship",purchase,1.0,0 -182499490,"The Ship",play,0.2,0 -182499490,"Magicka Wizard Wars",purchase,1.0,0 -182499490,"Mabinogi",purchase,1.0,0 -182499490,"Sigils of Elohim",purchase,1.0,0 -182499490,"APB Reloaded",purchase,1.0,0 -182499490,"Defiance",purchase,1.0,0 -182499490,"Divine Souls",purchase,1.0,0 -182499490,"Don't Starve Reign of Giants",purchase,1.0,0 -182499490,"Don't Starve Together Beta",purchase,1.0,0 -182499490,"Firefall",purchase,1.0,0 -182499490,"La Tale",purchase,1.0,0 -182499490,"Left 4 Dead",purchase,1.0,0 -182499490,"Marvel Heroes 2015",purchase,1.0,0 -182499490,"The Expendabros",purchase,1.0,0 -182499490,"The Ship Single Player",purchase,1.0,0 -182499490,"The Ship Tutorial",purchase,1.0,0 -182499490,"Tribes Ascend",purchase,1.0,0 -182499490,"Vindictus",purchase,1.0,0 -101774264,"Team Fortress 2",purchase,1.0,0 -101774264,"Team Fortress 2",play,6.9,0 -306167161,"Team Fortress 2",purchase,1.0,0 -306167161,"Team Fortress 2",play,0.3,0 -188629712,"Dota 2",purchase,1.0,0 -188629712,"Dota 2",play,1.2,0 -188629712,"Dead Island Epidemic",purchase,1.0,0 -188629712,"Warface",purchase,1.0,0 -174479803,"Dota 2",purchase,1.0,0 -174479803,"Dota 2",play,288.0,0 -174479803,"Sniper Elite V2",purchase,1.0,0 -173133960,"Dota 2",purchase,1.0,0 -173133960,"Dota 2",play,1.4,0 -79746085,"Space Engineers",purchase,1.0,0 -79746085,"Space Engineers",play,720.0,0 -79746085,"IL-2 Sturmovik Battle of Stalingrad",purchase,1.0,0 -79746085,"IL-2 Sturmovik Battle of Stalingrad",play,24.0,0 -79746085,"Mount & Blade Warband",purchase,1.0,0 -79746085,"Mount & Blade Warband",play,12.9,0 -79746085,"Mount & Blade",purchase,1.0,0 -79746085,"Ignite",purchase,1.0,0 -79746085,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -228043119,"Dota 2",purchase,1.0,0 -228043119,"Dota 2",play,2.5,0 -308971716,"Fishing Planet",purchase,1.0,0 -308971716,"Fishing Planet",play,1.3,0 -115632831,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -115632831,"Tom Clancy's Ghost Recon Phantoms - EU",play,779.0,0 -115632831,"Command and Conquer Red Alert 3",purchase,1.0,0 -115632831,"Command and Conquer Red Alert 3",play,36.0,0 -115632831,"Assassin's Creed IV Black Flag",purchase,1.0,0 -115632831,"Assassin's Creed IV Black Flag",play,35.0,0 -115632831,"GRID Autosport",purchase,1.0,0 -115632831,"GRID Autosport",play,35.0,0 -115632831,"Blades of Time",purchase,1.0,0 -115632831,"Blades of Time",play,31.0,0 -115632831,"PlanetSide 2",purchase,1.0,0 -115632831,"PlanetSide 2",play,30.0,0 -115632831,"Company of Heroes (New Steam Version)",purchase,1.0,0 -115632831,"Company of Heroes (New Steam Version)",play,22.0,0 -115632831,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -115632831,"The Incredible Adventures of Van Helsing",play,20.0,0 -115632831,"Shank 2",purchase,1.0,0 -115632831,"Shank 2",play,15.9,0 -115632831,"Mortal Kombat X",purchase,1.0,0 -115632831,"Mortal Kombat X",play,15.1,0 -115632831,"Crysis 2 Maximum Edition",purchase,1.0,0 -115632831,"Crysis 2 Maximum Edition",play,14.0,0 -115632831,"Trine 2",purchase,1.0,0 -115632831,"Trine 2",play,12.4,0 -115632831,"SkyDrift",purchase,1.0,0 -115632831,"SkyDrift",play,12.2,0 -115632831,"GRID 2",purchase,1.0,0 -115632831,"GRID 2",play,12.1,0 -115632831,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -115632831,"Medal of Honor(TM) Multiplayer",play,6.1,0 -115632831,"Team Fortress 2",purchase,1.0,0 -115632831,"Team Fortress 2",play,5.9,0 -115632831,"DiRT Showdown",purchase,1.0,0 -115632831,"DiRT Showdown",play,4.4,0 -115632831,"Sniper Elite V2",purchase,1.0,0 -115632831,"Sniper Elite V2",play,4.3,0 -115632831,"Pinball FX2",purchase,1.0,0 -115632831,"Pinball FX2",play,2.9,0 -115632831,"Total War ROME II - Emperor Edition",purchase,1.0,0 -115632831,"Total War ROME II - Emperor Edition",play,2.2,0 -115632831,"Toybox Turbos",purchase,1.0,0 -115632831,"Toybox Turbos",play,2.1,0 -115632831,"Medieval II Total War",purchase,1.0,0 -115632831,"Medieval II Total War",play,1.8,0 -115632831,"War Thunder",purchase,1.0,0 -115632831,"War Thunder",play,1.7,0 -115632831,"TERA",purchase,1.0,0 -115632831,"TERA",play,1.5,0 -115632831,"Quantum Rush Online",purchase,1.0,0 -115632831,"Quantum Rush Online",play,1.3,0 -115632831,"Loadout",purchase,1.0,0 -115632831,"Loadout",play,1.2,0 -115632831,"Dead Space",purchase,1.0,0 -115632831,"Dead Space",play,0.8,0 -115632831,"Nosgoth",purchase,1.0,0 -115632831,"Nosgoth",play,0.7,0 -115632831,"Commander Conquest of the Americas Gold",purchase,1.0,0 -115632831,"Commander Conquest of the Americas Gold",play,0.6,0 -115632831,"Deadlight",purchase,1.0,0 -115632831,"Deadlight",play,0.4,0 -115632831,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -115632831,"Command and Conquer Red Alert 3 - Uprising",play,0.2,0 -115632831,"Alpha Prime",purchase,1.0,0 -115632831,"Anna - Extended Edition",purchase,1.0,0 -115632831,"Arma 2",purchase,1.0,0 -115632831,"Arma 2 British Armed Forces",purchase,1.0,0 -115632831,"Arma 2 DayZ Mod",purchase,1.0,0 -115632831,"Arma 2 Operation Arrowhead",purchase,1.0,0 -115632831,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -115632831,"Arma 2 Private Military Company",purchase,1.0,0 -115632831,"Arma Gold Edition",purchase,1.0,0 -115632831,"Arma Tactics",purchase,1.0,0 -115632831,"Brtal Legend",purchase,1.0,0 -115632831,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -115632831,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -115632831,"Colin McRae Rally",purchase,1.0,0 -115632831,"Company of Heroes",purchase,1.0,0 -115632831,"Company of Heroes 2",purchase,1.0,0 -115632831,"Company of Heroes Opposing Fronts",purchase,1.0,0 -115632831,"Company of Heroes Tales of Valor",purchase,1.0,0 -115632831,"Deadlight Original Soundtrack",purchase,1.0,0 -115632831,"Deus Ex Human Revolution",purchase,1.0,0 -115632831,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -115632831,"Devilian",purchase,1.0,0 -115632831,"DiRT 3 Complete Edition",purchase,1.0,0 -115632831,"Dismal Swamp DLC",purchase,1.0,0 -115632831,"Eets Munchies",purchase,1.0,0 -115632831,"Empire Total War",purchase,1.0,0 -115632831,"Enclave",purchase,1.0,0 -115632831,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -115632831,"Gorky 17",purchase,1.0,0 -115632831,"GRID",purchase,1.0,0 -115632831,"GRID 2 GTR Racing Pack",purchase,1.0,0 -115632831,"Hospital Tycoon",purchase,1.0,0 -115632831,"Knights and Merchants",purchase,1.0,0 -115632831,"Limited Edition",purchase,1.0,0 -115632831,"Mark of the Ninja",purchase,1.0,0 -115632831,"Medal of Honor(TM) Single Player",purchase,1.0,0 -115632831,"Medal of Honor Pre-Order",purchase,1.0,0 -115632831,"MEDIEVAL Total War - Gold Edition",purchase,1.0,0 -115632831,"Medieval II Total War Kingdoms",purchase,1.0,0 -115632831,"Metro 2033",purchase,1.0,0 -115632831,"Mirror's Edge",purchase,1.0,0 -115632831,"Napoleon Total War",purchase,1.0,0 -115632831,"Nuclear Dawn",purchase,1.0,0 -115632831,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -115632831,"Operation Flashpoint Red River",purchase,1.0,0 -115632831,"Original War",purchase,1.0,0 -115632831,"Overlord",purchase,1.0,0 -115632831,"Overlord Raising Hell",purchase,1.0,0 -115632831,"Overlord II",purchase,1.0,0 -115632831,"PAYDAY The Heist",purchase,1.0,0 -115632831,"Pinball FX2 - Captain America Table",purchase,1.0,0 -115632831,"Pinball FX2 - Civil War Table",purchase,1.0,0 -115632831,"Pinball FX2 - Doctor Strange Table",purchase,1.0,0 -115632831,"Pinball FX2 - Excalibur Table",purchase,1.0,0 -115632831,"Pinball FX2 - Mars Table",purchase,1.0,0 -115632831,"Pinball FX2 - Star Wars Pinball Balance of the Force Pack",purchase,1.0,0 -115632831,"Pirates of Black Cove Gold",purchase,1.0,0 -115632831,"Rise of the Argonauts",purchase,1.0,0 -115632831,"SHOGUN Total War - Gold Edition",purchase,1.0,0 -115632831,"Sine Mora",purchase,1.0,0 -115632831,"Star Ruler",purchase,1.0,0 -115632831,"Take On Helicopters",purchase,1.0,0 -115632831,"The Fish Fillets 2",purchase,1.0,0 -115632831,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -115632831,"The Lost Crown",purchase,1.0,0 -115632831,"Tom Clancy's Ghost Recon Phantoms - EU Looks and Power (Assault)",purchase,1.0,0 -115632831,"Tom Clancy's Ghost Recon Phantoms - EU Looks and Power (Recon)",purchase,1.0,0 -115632831,"Tom Clancy's Ghost Recon Phantoms - EU Looks and Power (Support)",purchase,1.0,0 -115632831,"Tom Clancy's Ghost Recon Phantoms - EU Recon Starter Pack",purchase,1.0,0 -115632831,"Tom Clancy's Ghost Recon Phantoms - EU Substance with Style pack (Assault)",purchase,1.0,0 -115632831,"Tom Clancy's Ghost Recon Phantoms - EU Substance with Style pack (Recon)",purchase,1.0,0 -115632831,"Tom Clancy's Ghost Recon Phantoms - EU Substance with Style pack (Support)",purchase,1.0,0 -115632831,"Tom Clancy's Ghost Recon Phantoms - EU The Thrill of the Surprise",purchase,1.0,0 -115632831,"Tom Clancy's Ghost Recon Phantoms - EU WAR Madness pack (Assault)",purchase,1.0,0 -115632831,"Tom Clancy's Ghost Recon Phantoms - EU WAR Madness pack (Recon)",purchase,1.0,0 -115632831,"Tom Clancy's Ghost Recon Phantoms - EU WAR Madness pack (Support)",purchase,1.0,0 -115632831,"Total War SHOGUN 2",purchase,1.0,0 -115632831,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -115632831,"Two Worlds Epic Edition",purchase,1.0,0 -115632831,"UFO Afterlight",purchase,1.0,0 -115632831,"Viking Battle for Asgard",purchase,1.0,0 -115632831,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -115632831,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -115632831,"Warlock - Master of the Arcane",purchase,1.0,0 -115632831,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -115632831,"X-Blades",purchase,1.0,0 -196016696,"Loadout",purchase,1.0,0 -196016696,"Magicka Wizard Wars",purchase,1.0,0 -196016696,"Robocraft",purchase,1.0,0 -132044394,"Dota 2",purchase,1.0,0 -132044394,"Dota 2",play,2.3,0 -30221587,"Half-Life 2",purchase,1.0,0 -30221587,"Half-Life 2",play,0.2,0 -30221587,"Half-Life 2 Deathmatch",purchase,1.0,0 -30221587,"Half-Life 2 Lost Coast",purchase,1.0,0 -86481908,"Counter-Strike Global Offensive",purchase,1.0,0 -86481908,"Counter-Strike Global Offensive",play,635.0,0 -86481908,"Team Fortress 2",purchase,1.0,0 -86481908,"Team Fortress 2",play,568.0,0 -86481908,"Counter-Strike",purchase,1.0,0 -86481908,"Counter-Strike",play,283.0,0 -86481908,"The Elder Scrolls V Skyrim",purchase,1.0,0 -86481908,"The Elder Scrolls V Skyrim",play,105.0,0 -86481908,"Garry's Mod",purchase,1.0,0 -86481908,"Garry's Mod",play,71.0,0 -86481908,"Counter-Strike Condition Zero",purchase,1.0,0 -86481908,"Counter-Strike Condition Zero",play,60.0,0 -86481908,"Magicka",purchase,1.0,0 -86481908,"Magicka",play,35.0,0 -86481908,"Dead Island",purchase,1.0,0 -86481908,"Dead Island",play,34.0,0 -86481908,"Mafia II",purchase,1.0,0 -86481908,"Mafia II",play,33.0,0 -86481908,"Counter-Strike Source",purchase,1.0,0 -86481908,"Counter-Strike Source",play,22.0,0 -86481908,"PAYDAY 2",purchase,1.0,0 -86481908,"PAYDAY 2",play,20.0,0 -86481908,"Gotham City Impostors Free To Play",purchase,1.0,0 -86481908,"Gotham City Impostors Free To Play",play,15.7,0 -86481908,"Alien Swarm",purchase,1.0,0 -86481908,"Alien Swarm",play,13.7,0 -86481908,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -86481908,"Grand Theft Auto Episodes from Liberty City",play,13.1,0 -86481908,"Source Filmmaker",purchase,1.0,0 -86481908,"Source Filmmaker",play,11.2,0 -86481908,"Grand Theft Auto San Andreas",purchase,1.0,0 -86481908,"Grand Theft Auto San Andreas",play,9.0,0 -86481908,"Warframe",purchase,1.0,0 -86481908,"Warframe",play,7.6,0 -86481908,"Don't Starve Together Beta",purchase,1.0,0 -86481908,"Don't Starve Together Beta",play,7.1,0 -86481908,"Half-Life 2",purchase,1.0,0 -86481908,"Half-Life 2",play,6.4,0 -86481908,"Torchlight II",purchase,1.0,0 -86481908,"Torchlight II",play,5.5,0 -86481908,"Grand Theft Auto IV",purchase,1.0,0 -86481908,"Grand Theft Auto IV",play,4.6,0 -86481908,"Orcs Must Die!",purchase,1.0,0 -86481908,"Orcs Must Die!",play,4.6,0 -86481908,"Saints Row IV",purchase,1.0,0 -86481908,"Saints Row IV",play,4.2,0 -86481908,"Day of Defeat Source",purchase,1.0,0 -86481908,"Day of Defeat Source",play,3.9,0 -86481908,"Dota 2",purchase,1.0,0 -86481908,"Dota 2",play,3.1,0 -86481908,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -86481908,"Call of Duty Black Ops II - Multiplayer",play,3.1,0 -86481908,"Left 4 Dead 2",purchase,1.0,0 -86481908,"Left 4 Dead 2",play,3.1,0 -86481908,"Portal",purchase,1.0,0 -86481908,"Portal",play,2.9,0 -86481908,"Half-Life 2 Deathmatch",purchase,1.0,0 -86481908,"Half-Life 2 Deathmatch",play,2.7,0 -86481908,"Unturned",purchase,1.0,0 -86481908,"Unturned",play,2.6,0 -86481908,"Painkiller Hell & Damnation",purchase,1.0,0 -86481908,"Painkiller Hell & Damnation",play,2.5,0 -86481908,"Grand Theft Auto Vice City",purchase,1.0,0 -86481908,"Grand Theft Auto Vice City",play,2.2,0 -86481908,"Poker Night at the Inventory",purchase,1.0,0 -86481908,"Poker Night at the Inventory",play,2.2,0 -86481908,"Nosgoth",purchase,1.0,0 -86481908,"Nosgoth",play,2.1,0 -86481908,"Super Monday Night Combat",purchase,1.0,0 -86481908,"Super Monday Night Combat",play,2.0,0 -86481908,"Terraria",purchase,1.0,0 -86481908,"Terraria",play,1.8,0 -86481908,"Worms Revolution",purchase,1.0,0 -86481908,"Worms Revolution",play,1.7,0 -86481908,"Super Crate Box",purchase,1.0,0 -86481908,"Super Crate Box",play,1.3,0 -86481908,"PAYDAY The Heist",purchase,1.0,0 -86481908,"PAYDAY The Heist",play,1.3,0 -86481908,"Zombie Panic Source",purchase,1.0,0 -86481908,"Zombie Panic Source",play,1.1,0 -86481908,"Half-Life 2 Lost Coast",purchase,1.0,0 -86481908,"Half-Life 2 Lost Coast",play,0.8,0 -86481908,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -86481908,"Counter-Strike Condition Zero Deleted Scenes",play,0.8,0 -86481908,"Call of Duty Black Ops II",purchase,1.0,0 -86481908,"Call of Duty Black Ops II",play,0.7,0 -86481908,"Prison Architect",purchase,1.0,0 -86481908,"Prison Architect",play,0.6,0 -86481908,"Half-Life 2 Episode Two",purchase,1.0,0 -86481908,"Half-Life 2 Episode Two",play,0.6,0 -86481908,"Loadout",purchase,1.0,0 -86481908,"Loadout",play,0.5,0 -86481908,"Don't Starve",purchase,1.0,0 -86481908,"Don't Starve",play,0.5,0 -86481908,"GRID 2",purchase,1.0,0 -86481908,"GRID 2",play,0.5,0 -86481908,"Half-Life 2 Episode One",purchase,1.0,0 -86481908,"Half-Life 2 Episode One",play,0.4,0 -86481908,"Moonbase Alpha",purchase,1.0,0 -86481908,"Moonbase Alpha",play,0.4,0 -86481908,"District 187",purchase,1.0,0 -86481908,"District 187",play,0.4,0 -86481908,"Return to Castle Wolfenstein",purchase,1.0,0 -86481908,"Return to Castle Wolfenstein",play,0.4,0 -86481908,"Counter-Strike Nexon Zombies",purchase,1.0,0 -86481908,"Counter-Strike Nexon Zombies",play,0.4,0 -86481908,"Sniper Elite V2",purchase,1.0,0 -86481908,"Sniper Elite V2",play,0.4,0 -86481908,"Grand Theft Auto III",purchase,1.0,0 -86481908,"Grand Theft Auto III",play,0.3,0 -86481908,"The Forest",purchase,1.0,0 -86481908,"The Forest",play,0.3,0 -86481908,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -86481908,"Call of Duty Black Ops II - Zombies",play,0.2,0 -86481908,"Mount & Blade Warband",purchase,1.0,0 -86481908,"Mount & Blade Warband",play,0.2,0 -86481908,"Far Cry 3",purchase,1.0,0 -86481908,"Far Cry 3",play,0.1,0 -86481908,"Deathmatch Classic",purchase,1.0,0 -86481908,"Deathmatch Classic",play,0.1,0 -86481908,"Ricochet",purchase,1.0,0 -86481908,"Ricochet",play,0.1,0 -86481908,"Serious Sam The Random Encounter",purchase,1.0,0 -86481908,"Serious Sam The Random Encounter",play,0.1,0 -86481908,"Arctic Combat",purchase,1.0,0 -86481908,"Arctic Combat",play,0.1,0 -86481908,"Half-Life",purchase,1.0,0 -86481908,"Smashmuck Champions",purchase,1.0,0 -86481908,"The Lord of the Rings Online",purchase,1.0,0 -86481908,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -86481908,"Sanctum",purchase,1.0,0 -86481908,"Goat Simulator",purchase,1.0,0 -86481908,"Cry of Fear",purchase,1.0,0 -86481908,"Day of Defeat",purchase,1.0,0 -86481908,"Supreme Commander 2",purchase,1.0,0 -86481908,"Infinite Crisis",purchase,1.0,0 -86481908,"Elsword",purchase,1.0,0 -86481908,"Arma 2",purchase,1.0,0 -86481908,"Arma 2 Operation Arrowhead",purchase,1.0,0 -86481908,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -86481908,"Cubic Castles",purchase,1.0,0 -86481908,"Dead Horde",purchase,1.0,0 -86481908,"Dino D-Day",purchase,1.0,0 -86481908,"Dogfight 1942",purchase,1.0,0 -86481908,"Dogfight 1942 Fire over Africa",purchase,1.0,0 -86481908,"Dogfight 1942 Russia under Siege",purchase,1.0,0 -86481908,"Grand Theft Auto San Andreas",purchase,1.0,0 -86481908,"Grand Theft Auto Vice City",purchase,1.0,0 -86481908,"Grand Theft Auto III",purchase,1.0,0 -86481908,"Magicka Final Frontier",purchase,1.0,0 -86481908,"Magicka Frozen Lake",purchase,1.0,0 -86481908,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -86481908,"Magicka Nippon",purchase,1.0,0 -86481908,"Magicka Party Robes",purchase,1.0,0 -86481908,"Magicka The Watchtower",purchase,1.0,0 -86481908,"Magicka Vietnam",purchase,1.0,0 -86481908,"Magicka Wizard's Survival Kit",purchase,1.0,0 -86481908,"Magicka Wizard Wars",purchase,1.0,0 -86481908,"No More Room in Hell",purchase,1.0,0 -86481908,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -86481908,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -86481908,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -86481908,"Star Trek Online",purchase,1.0,0 -86481908,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -86481908,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -86481908,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -86481908,"Total War ROME II - Emperor Edition",purchase,1.0,0 -86481908,"Trine",purchase,1.0,0 -250577484,"Dota 2",purchase,1.0,0 -250577484,"Dota 2",play,0.3,0 -196751756,"Unturned",purchase,1.0,0 -196751756,"Unturned",play,20.0,0 -142552066,"Dota 2",purchase,1.0,0 -142552066,"Dota 2",play,19.5,0 -182817377,"Dead Island",purchase,1.0,0 -182817377,"Dead Island",play,28.0,0 -16645459,"Fallout New Vegas",purchase,1.0,0 -16645459,"Fallout New Vegas",play,64.0,0 -16645459,"The Elder Scrolls V Skyrim",purchase,1.0,0 -16645459,"The Elder Scrolls V Skyrim",play,54.0,0 -16645459,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -16645459,"METAL GEAR SOLID V THE PHANTOM PAIN",play,49.0,0 -16645459,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -16645459,"Unreal Tournament 3 Black Edition",play,37.0,0 -16645459,"Darksiders II",purchase,1.0,0 -16645459,"Darksiders II",play,27.0,0 -16645459,"Assassin's Creed II",purchase,1.0,0 -16645459,"Assassin's Creed II",play,26.0,0 -16645459,"Darksiders",purchase,1.0,0 -16645459,"Darksiders",play,24.0,0 -16645459,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -16645459,"Deus Ex Human Revolution - Director's Cut",play,23.0,0 -16645459,"BioShock Infinite",purchase,1.0,0 -16645459,"BioShock Infinite",play,21.0,0 -16645459,"Saints Row The Third",purchase,1.0,0 -16645459,"Saints Row The Third",play,17.4,0 -16645459,"Duke Nukem Forever",purchase,1.0,0 -16645459,"Duke Nukem Forever",play,15.6,0 -16645459,"South Park The Stick of Truth",purchase,1.0,0 -16645459,"South Park The Stick of Truth",play,15.6,0 -16645459,"The Walking Dead",purchase,1.0,0 -16645459,"The Walking Dead",play,12.7,0 -16645459,"Assassin's Creed",purchase,1.0,0 -16645459,"Assassin's Creed",play,12.3,0 -16645459,"Blades of Time",purchase,1.0,0 -16645459,"Blades of Time",play,11.9,0 -16645459,"Broken Age",purchase,1.0,0 -16645459,"Broken Age",play,11.5,0 -16645459,"Deadpool",purchase,1.0,0 -16645459,"Deadpool",play,11.2,0 -16645459,"Metro Last Light",purchase,1.0,0 -16645459,"Metro Last Light",play,10.4,0 -16645459,"Portal 2",purchase,1.0,0 -16645459,"Portal 2",play,10.3,0 -16645459,"Half-Life 2 Episode Two",purchase,1.0,0 -16645459,"Half-Life 2 Episode Two",play,9.7,0 -16645459,"The Darkness II",purchase,1.0,0 -16645459,"The Darkness II",play,7.4,0 -16645459,"Homefront",purchase,1.0,0 -16645459,"Homefront",play,5.4,0 -16645459,"Borderlands",purchase,1.0,0 -16645459,"Borderlands",play,5.0,0 -16645459,"Gone Home",purchase,1.0,0 -16645459,"Gone Home",play,4.7,0 -16645459,"Half-Life 2 Episode One",purchase,1.0,0 -16645459,"Half-Life 2 Episode One",play,4.4,0 -16645459,"Thomas Was Alone",purchase,1.0,0 -16645459,"Thomas Was Alone",play,4.4,0 -16645459,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -16645459,"METAL GEAR SOLID V GROUND ZEROES",play,4.2,0 -16645459,"Terraria",purchase,1.0,0 -16645459,"Terraria",play,4.0,0 -16645459,"Sonic Adventure DX",purchase,1.0,0 -16645459,"Sonic Adventure DX",play,2.9,0 -16645459,"Borderlands 2",purchase,1.0,0 -16645459,"Borderlands 2",play,2.7,0 -16645459,"Metro 2033",purchase,1.0,0 -16645459,"Metro 2033",play,2.5,0 -16645459,"RISK Factions",purchase,1.0,0 -16645459,"RISK Factions",play,2.5,0 -16645459,"Sakura Spirit",purchase,1.0,0 -16645459,"Sakura Spirit",play,2.4,0 -16645459,"Dragon Age Origins Character Creator",purchase,1.0,0 -16645459,"Dragon Age Origins Character Creator",play,1.8,0 -16645459,"Portal",purchase,1.0,0 -16645459,"Portal",play,1.3,0 -16645459,"Papers, Please",purchase,1.0,0 -16645459,"Papers, Please",play,1.1,0 -16645459,"Left 4 Dead 2",purchase,1.0,0 -16645459,"Left 4 Dead 2",play,0.9,0 -16645459,"Freedom Planet",purchase,1.0,0 -16645459,"Freedom Planet",play,0.8,0 -16645459,"Metal Gear Solid Legacy",purchase,1.0,0 -16645459,"Metal Gear Solid Legacy",play,0.6,0 -16645459,"Wolfenstein The New Order",purchase,1.0,0 -16645459,"Wolfenstein The New Order",play,0.6,0 -16645459,"Introduction to 3D Prop Modeling and Design - Viking Armor and Weapons",purchase,1.0,0 -16645459,"Introduction to 3D Prop Modeling and Design - Viking Armor and Weapons",play,0.5,0 -16645459,"PAC-MAN Championship Edition DX+",purchase,1.0,0 -16645459,"PAC-MAN Championship Edition DX+",play,0.5,0 -16645459,"Poker Night 2",purchase,1.0,0 -16645459,"Poker Night 2",play,0.5,0 -16645459,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -16645459,"Sonic & All-Stars Racing Transformed",play,0.5,0 -16645459,"POSTAL 2",purchase,1.0,0 -16645459,"POSTAL 2",play,0.4,0 -16645459,"Team Fortress 2",purchase,1.0,0 -16645459,"Team Fortress 2",play,0.3,0 -16645459,"Shantae Risky's Revenge - Director's Cut",purchase,1.0,0 -16645459,"Shantae Risky's Revenge - Director's Cut",play,0.3,0 -16645459,"Half-Life",purchase,1.0,0 -16645459,"Half-Life",play,0.3,0 -16645459,"Hyperdimension Neptunia Re;Birth1",purchase,1.0,0 -16645459,"Hyperdimension Neptunia Re;Birth1",play,0.3,0 -16645459,"Gurumin A Monstrous Adventure",purchase,1.0,0 -16645459,"Gurumin A Monstrous Adventure",play,0.2,0 -16645459,"The Binding of Isaac",purchase,1.0,0 -16645459,"The Binding of Isaac",play,0.1,0 -16645459,"Space Channel 5 Part 2",purchase,1.0,0 -16645459,"Space Channel 5 Part 2",play,0.1,0 -16645459,"Poker Night at the Inventory",purchase,1.0,0 -16645459,"Poker Night at the Inventory",play,0.1,0 -16645459,"Half-Life 2 Lost Coast",purchase,1.0,0 -16645459,"Half-Life 2 Lost Coast",play,0.1,0 -16645459,"Half-Life Blue Shift",purchase,1.0,0 -16645459,"Half-Life Blue Shift",play,0.1,0 -16645459,"GameGuru",purchase,1.0,0 -16645459,"Free to Play",purchase,1.0,0 -16645459,"Stealth Bastard Deluxe",purchase,1.0,0 -16645459,"Deadly Sin 2",purchase,1.0,0 -16645459,"To the Moon",purchase,1.0,0 -16645459,"Half-Life 2",purchase,1.0,0 -16645459,"10 Second Ninja",purchase,1.0,0 -16645459,"99 Spirits",purchase,1.0,0 -16645459,"Abyss Odyssey",purchase,1.0,0 -16645459,"Anachronox",purchase,1.0,0 -16645459,"Another Perspective",purchase,1.0,0 -16645459,"App Game Kit",purchase,1.0,0 -16645459,"Assassin's Creed Brotherhood",purchase,1.0,0 -16645459,"Assassin's Creed Revelations",purchase,1.0,0 -16645459,"Assassin's Creed III",purchase,1.0,0 -16645459,"A Story About My Uncle",purchase,1.0,0 -16645459,"Aveyond 3-1 Lord of Twilight",purchase,1.0,0 -16645459,"Axis Game Factory's AGFPRO - Drone Kombat FPS Multi-Player DLC",purchase,1.0,0 -16645459,"Axis Game Factory's AGFPRO - Zombie Survival Pack DLC",purchase,1.0,0 -16645459,"Axis Game Factory's AGFPRO 3.0",purchase,1.0,0 -16645459,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -16645459,"Batman Arkham City GOTY",purchase,1.0,0 -16645459,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -16645459,"Batman Arkham Origins - Initiation",purchase,1.0,0 -16645459,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -16645459,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -16645459,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -16645459,"Batman Arkham Knight",purchase,1.0,0 -16645459,"Batman Arkham Origins",purchase,1.0,0 -16645459,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -16645459,"Battlestations Midway",purchase,1.0,0 -16645459,"Bionic Commando Rearmed",purchase,1.0,0 -16645459,"BioShock",purchase,1.0,0 -16645459,"BioShock 2",purchase,1.0,0 -16645459,"BioShock Infinite - Season Pass",purchase,1.0,0 -16645459,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -16645459,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -16645459,"Blackguards",purchase,1.0,0 -16645459,"Blackguards 2",purchase,1.0,0 -16645459,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -16645459,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -16645459,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -16645459,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -16645459,"Bridge Constructor Playground",purchase,1.0,0 -16645459,"Chaos on Deponia",purchase,1.0,0 -16645459,"Citizens of Earth",purchase,1.0,0 -16645459,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -16645459,"Company of Heroes",purchase,1.0,0 -16645459,"Company of Heroes (New Steam Version)",purchase,1.0,0 -16645459,"Company of Heroes 2",purchase,1.0,0 -16645459,"Company of Heroes Opposing Fronts",purchase,1.0,0 -16645459,"Contagion",purchase,1.0,0 -16645459,"Costume Quest",purchase,1.0,0 -16645459,"Counter-Strike",purchase,1.0,0 -16645459,"Counter-Strike Source",purchase,1.0,0 -16645459,"Crazy Taxi",purchase,1.0,0 -16645459,"Crimzon Clover WORLD IGNITION",purchase,1.0,0 -16645459,"Cubemen",purchase,1.0,0 -16645459,"Cubemen 2",purchase,1.0,0 -16645459,"Daikatana",purchase,1.0,0 -16645459,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -16645459,"Day of Defeat",purchase,1.0,0 -16645459,"DeadCore",purchase,1.0,0 -16645459,"Deathmatch Classic",purchase,1.0,0 -16645459,"Death Ray Manta",purchase,1.0,0 -16645459,"Defender's Quest Valley of the Forgotten",purchase,1.0,0 -16645459,"Deponia",purchase,1.0,0 -16645459,"Detective Case and Clown Bot in Murder in the Hotel Lisbon",purchase,1.0,0 -16645459,"Deus Ex Invisible War",purchase,1.0,0 -16645459,"Deus Ex The Fall",purchase,1.0,0 -16645459,"Dismal Swamp DLC",purchase,1.0,0 -16645459,"DmC Devil May Cry",purchase,1.0,0 -16645459,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -16645459,"Empire Total War",purchase,1.0,0 -16645459,"Euro Truck Simulator 2",purchase,1.0,0 -16645459,"Fable - The Lost Chapters",purchase,1.0,0 -16645459,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -16645459,"Fallout New Vegas Dead Money",purchase,1.0,0 -16645459,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -16645459,"FATE",purchase,1.0,0 -16645459,"FATE Undiscovered Realms",purchase,1.0,0 -16645459,"Freedom Planet - Official Soundtrack",purchase,1.0,0 -16645459,"Game Character Hub",purchase,1.0,0 -16645459,"GameGuru - Buildings Pack",purchase,1.0,0 -16645459,"Goats on a Bridge",purchase,1.0,0 -16645459,"Goodbye Deponia",purchase,1.0,0 -16645459,"Grim Fandango Remastered",purchase,1.0,0 -16645459,"Half-Life 2 Deathmatch",purchase,1.0,0 -16645459,"Half-Life Opposing Force",purchase,1.0,0 -16645459,"Hitman 2 Silent Assassin",purchase,1.0,0 -16645459,"Hitman Absolution",purchase,1.0,0 -16645459,"Hitman Blood Money",purchase,1.0,0 -16645459,"Hitman Codename 47",purchase,1.0,0 -16645459,"Hitman Contracts",purchase,1.0,0 -16645459,"Insurgency",purchase,1.0,0 -16645459,"Just Cause",purchase,1.0,0 -16645459,"King Arthur - The Role-playing Wargame",purchase,1.0,0 -16645459,"Labyrinthine Dreams",purchase,1.0,0 -16645459,"Last Word",purchase,1.0,0 -16645459,"Lilly Looking Through",purchase,1.0,0 -16645459,"Limited Edition",purchase,1.0,0 -16645459,"Long Live The Queen",purchase,1.0,0 -16645459,"Lost Planet 3",purchase,1.0,0 -16645459,"Magicka",purchase,1.0,0 -16645459,"Men of War Assault Squad",purchase,1.0,0 -16645459,"Mini Ninjas",purchase,1.0,0 -16645459,"Ms. Splosion Man",purchase,1.0,0 -16645459,"MX vs. ATV Reflex",purchase,1.0,0 -16645459,"NEO AQUARIUM - The King of Crustaceans -",purchase,1.0,0 -16645459,"Nexuiz",purchase,1.0,0 -16645459,"Nexuiz Beta",purchase,1.0,0 -16645459,"Nexuiz STUPID Mode",purchase,1.0,0 -16645459,"NiGHTS into Dreams...",purchase,1.0,0 -16645459,"Nosgoth",purchase,1.0,0 -16645459,"Nuclear Dawn",purchase,1.0,0 -16645459,"Oddworld Abe's Oddysee",purchase,1.0,0 -16645459,"On the Rain-Slick Precipice of Darkness, Episode One",purchase,1.0,0 -16645459,"On the Rain-Slick Precipice of Darkness, Episode Two",purchase,1.0,0 -16645459,"Planetary Annihilation",purchase,1.0,0 -16645459,"Platformines",purchase,1.0,0 -16645459,"Q.U.B.E Director's Cut",purchase,1.0,0 -16645459,"Red Faction",purchase,1.0,0 -16645459,"Red Faction Armageddon",purchase,1.0,0 -16645459,"Red Faction II",purchase,1.0,0 -16645459,"Remember Me",purchase,1.0,0 -16645459,"Remnants Of Isolation",purchase,1.0,0 -16645459,"resident evil 4 / biohazard 4",purchase,1.0,0 -16645459,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -16645459,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -16645459,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -16645459,"Ricochet",purchase,1.0,0 -16645459,"RPG Maker Futuristic Tiles Resource Pack",purchase,1.0,0 -16645459,"RPG Maker High Fantasy Main Party Pack 1",purchase,1.0,0 -16645459,"RPG Maker Royal Tiles Resource Pack",purchase,1.0,0 -16645459,"RPG Maker Tyler Warren First 50 Battler Pack",purchase,1.0,0 -16645459,"RPG Maker Tyler Warren RPG Battlers 2nd 50",purchase,1.0,0 -16645459,"RPG Maker VX Ace",purchase,1.0,0 -16645459,"RPG Maker XP",purchase,1.0,0 -16645459,"Saints Row 2",purchase,1.0,0 -16645459,"Savant - Ascent",purchase,1.0,0 -16645459,"SEGA Bass Fishing",purchase,1.0,0 -16645459,"Shadow Warrior Classic Redux",purchase,1.0,0 -16645459,"Shank",purchase,1.0,0 -16645459,"Sir, You Are Being Hunted",purchase,1.0,0 -16645459,"Skullgirls",purchase,1.0,0 -16645459,"Skyborn",purchase,1.0,0 -16645459,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -16645459,"Sonic Generations",purchase,1.0,0 -16645459,"South Park The Stick of Truth - Super Samurai Spaceman Pack",purchase,1.0,0 -16645459,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -16645459,"SpeedRunners",purchase,1.0,0 -16645459,"Spoiler Alert",purchase,1.0,0 -16645459,"Sprite Lamp",purchase,1.0,0 -16645459,"Spriter Pro",purchase,1.0,0 -16645459,"Stacking",purchase,1.0,0 -16645459,"Star Ruler",purchase,1.0,0 -16645459,"Strider",purchase,1.0,0 -16645459,"Supercharged Robot VULKAISER",purchase,1.0,0 -16645459,"Supreme Commander",purchase,1.0,0 -16645459,"Supreme Commander Forged Alliance",purchase,1.0,0 -16645459,"Sweet Lily Dreams",purchase,1.0,0 -16645459,"Team Fortress Classic",purchase,1.0,0 -16645459,"Teleglitch Die More Edition",purchase,1.0,0 -16645459,"The Baconing",purchase,1.0,0 -16645459,"The Bureau XCOM Declassified",purchase,1.0,0 -16645459,"The Cat Lady",purchase,1.0,0 -16645459,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -16645459,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -16645459,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -16645459,"The Last Remnant",purchase,1.0,0 -16645459,"The Lost Crown",purchase,1.0,0 -16645459,"The Sacred Tears TRUE",purchase,1.0,0 -16645459,"The Yawhg",purchase,1.0,0 -16645459,"Thief Gold",purchase,1.0,0 -16645459,"Titan Quest",purchase,1.0,0 -16645459,"Titan Quest Immortal Throne",purchase,1.0,0 -16645459,"Tsukumogami",purchase,1.0,0 -16645459,"Vanguard Princess",purchase,1.0,0 -16645459,"Vanguard Princess Director's Cut",purchase,1.0,0 -16645459,"Vanguard Princess Hilda Rize",purchase,1.0,0 -16645459,"Vanguard Princess Lilith",purchase,1.0,0 -16645459,"Viking Battle for Asgard",purchase,1.0,0 -16645459,"Volgarr the Viking",purchase,1.0,0 -16645459,"Warhammer 40,000 Space Marine",purchase,1.0,0 -16645459,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -16645459,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -16645459,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -16645459,"Whisper of a Rose",purchase,1.0,0 -16645459,"Xenonauts",purchase,1.0,0 -40084096,"Fallout 4",purchase,1.0,0 -40084096,"Fallout 4",play,48.0,0 -40084096,"The Forest",purchase,1.0,0 -40084096,"The Forest",play,0.6,0 -110369840,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -110369840,"Call of Duty Black Ops II - Multiplayer",play,797.0,0 -110369840,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -110369840,"Call of Duty Modern Warfare 2 - Multiplayer",play,443.0,0 -110369840,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -110369840,"Call of Duty Black Ops - Multiplayer",play,219.0,0 -110369840,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -110369840,"Call of Duty Ghosts - Multiplayer",play,107.0,0 -110369840,"Far Cry 3",purchase,1.0,0 -110369840,"Far Cry 3",play,80.0,0 -110369840,"The Elder Scrolls V Skyrim",purchase,1.0,0 -110369840,"The Elder Scrolls V Skyrim",play,55.0,0 -110369840,"Dishonored",purchase,1.0,0 -110369840,"Dishonored",play,45.0,0 -110369840,"Borderlands 2",purchase,1.0,0 -110369840,"Borderlands 2",play,44.0,0 -110369840,"Sid Meier's Civilization V",purchase,1.0,0 -110369840,"Sid Meier's Civilization V",play,39.0,0 -110369840,"Call of Duty Black Ops",purchase,1.0,0 -110369840,"Call of Duty Black Ops",play,34.0,0 -110369840,"RAGE",purchase,1.0,0 -110369840,"RAGE",play,30.0,0 -110369840,"Grand Theft Auto IV",purchase,1.0,0 -110369840,"Grand Theft Auto IV",play,27.0,0 -110369840,"Call of Duty Black Ops II",purchase,1.0,0 -110369840,"Call of Duty Black Ops II",play,27.0,0 -110369840,"Call of Duty Modern Warfare 2",purchase,1.0,0 -110369840,"Call of Duty Modern Warfare 2",play,26.0,0 -110369840,"Call of Duty Ghosts",purchase,1.0,0 -110369840,"Call of Duty Ghosts",play,18.5,0 -110369840,"Midnight Club II",purchase,1.0,0 -110369840,"Midnight Club II",play,12.8,0 -110369840,"Call of Duty Black Ops III",purchase,1.0,0 -110369840,"Call of Duty Black Ops III",play,10.9,0 -110369840,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -110369840,"Tom Clancy's Ghost Recon Phantoms - EU",play,10.6,0 -110369840,"PlanetSide 2",purchase,1.0,0 -110369840,"PlanetSide 2",play,9.8,0 -110369840,"Nosgoth",purchase,1.0,0 -110369840,"Nosgoth",play,7.8,0 -110369840,"Stronghold Crusader HD",purchase,1.0,0 -110369840,"Stronghold Crusader HD",play,7.1,0 -110369840,"Left 4 Dead 2",purchase,1.0,0 -110369840,"Left 4 Dead 2",play,6.0,0 -110369840,"Bulletstorm",purchase,1.0,0 -110369840,"Bulletstorm",play,5.8,0 -110369840,"Middle-earth Shadow of Mordor",purchase,1.0,0 -110369840,"Middle-earth Shadow of Mordor",play,5.5,0 -110369840,"Hitman Absolution",purchase,1.0,0 -110369840,"Hitman Absolution",play,4.2,0 -110369840,"Just Cause 2",purchase,1.0,0 -110369840,"Just Cause 2",play,2.5,0 -110369840,"Counter-Strike Global Offensive",purchase,1.0,0 -110369840,"Counter-Strike Global Offensive",play,1.8,0 -110369840,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -110369840,"Call of Duty Black Ops II - Zombies",play,1.4,0 -110369840,"Crysis 2 Maximum Edition",purchase,1.0,0 -110369840,"Crysis 2 Maximum Edition",play,0.8,0 -110369840,"Star Wars Knights of the Old Republic",purchase,1.0,0 -110369840,"Star Wars Knights of the Old Republic",play,0.4,0 -110369840,"Dungeon Defenders II",purchase,1.0,0 -110369840,"Dungeon Defenders II",play,0.2,0 -110369840,"Krater",purchase,1.0,0 -110369840,"Krater",play,0.2,0 -110369840,"Stronghold Crusader Extreme HD",purchase,1.0,0 -110369840,"Alum",purchase,1.0,0 -110369840,"In Exilium",purchase,1.0,0 -110369840,"Just Cause",purchase,1.0,0 -110369840,"Melissa K. and the Heart of Gold Collector's Edition",purchase,1.0,0 -110369840,"Nightmares from the Deep 3 Davy Jones",purchase,1.0,0 -110369840,"Pressure",purchase,1.0,0 -110369840,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -110369840,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -110369840,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -110369840,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -45118807,"Counter-Strike Source",purchase,1.0,0 -45118807,"Counter-Strike Source",play,702.0,0 -45118807,"Team Fortress 2",purchase,1.0,0 -45118807,"Team Fortress 2",play,6.0,0 -45118807,"Half-Life 2 Deathmatch",purchase,1.0,0 -45118807,"Half-Life 2 Deathmatch",play,4.1,0 -45118807,"Day of Defeat Source",purchase,1.0,0 -45118807,"Day of Defeat Source",play,2.5,0 -45118807,"Zombie Panic Source",purchase,1.0,0 -45118807,"Zombie Panic Source",play,0.6,0 -45118807,"Half-Life 2 Lost Coast",purchase,1.0,0 -73195149,"The Elder Scrolls V Skyrim",purchase,1.0,0 -73195149,"The Elder Scrolls V Skyrim",play,433.0,0 -73195149,"Fallout New Vegas",purchase,1.0,0 -73195149,"Fallout New Vegas",play,249.0,0 -73195149,"Borderlands 2",purchase,1.0,0 -73195149,"Borderlands 2",play,61.0,0 -73195149,"Anno 1404 Venice",purchase,1.0,0 -73195149,"Anno 1404 Venice",play,35.0,0 -73195149,"Banished",purchase,1.0,0 -73195149,"Banished",play,35.0,0 -73195149,"Counter-Strike",purchase,1.0,0 -73195149,"Counter-Strike",play,34.0,0 -73195149,"Anno 1404",purchase,1.0,0 -73195149,"Anno 1404",play,24.0,0 -73195149,"BioShock Infinite",purchase,1.0,0 -73195149,"BioShock Infinite",play,11.7,0 -73195149,"Age of Empires II HD Edition",purchase,1.0,0 -73195149,"Age of Empires II HD Edition",play,10.3,0 -73195149,"GRID Autosport",purchase,1.0,0 -73195149,"GRID Autosport",play,8.0,0 -73195149,"Call of Duty Black Ops",purchase,1.0,0 -73195149,"Call of Duty Black Ops",play,3.6,0 -73195149,"Counter-Strike Condition Zero",purchase,1.0,0 -73195149,"Age of Empires II HD The Forgotten",purchase,1.0,0 -73195149,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -73195149,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -73195149,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -73195149,"Fallout New Vegas Dead Money",purchase,1.0,0 -73195149,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -73195149,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -73195149,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -73195149,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -73195149,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -163361275,"The Elder Scrolls V Skyrim",purchase,1.0,0 -163361275,"The Elder Scrolls V Skyrim",play,170.0,0 -163361275,"Thief",purchase,1.0,0 -163361275,"Thief",play,21.0,0 -163361275,"DmC Devil May Cry",purchase,1.0,0 -163361275,"DmC Devil May Cry",play,11.3,0 -163361275,"The Lord of the Rings Online",purchase,1.0,0 -163361275,"The Lord of the Rings Online",play,1.9,0 -163361275,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -203370167,"Heroes & Generals",purchase,1.0,0 -203370167,"Loadout",purchase,1.0,0 -203370167,"Toribash",purchase,1.0,0 -203370167,"Tribes Ascend",purchase,1.0,0 -203370167,"Unturned",purchase,1.0,0 -203370167,"Warface",purchase,1.0,0 -139806634,"Dota 2",purchase,1.0,0 -139806634,"Dota 2",play,489.0,0 -139806634,"Dirty Bomb",purchase,1.0,0 -139806634,"FreeStyle2 Street Basketball",purchase,1.0,0 -139806634,"La Tale",purchase,1.0,0 -129114153,"Dota 2",purchase,1.0,0 -129114153,"Dota 2",play,27.0,0 -129114153,"Counter-Strike Global Offensive",purchase,1.0,0 -129114153,"Counter-Strike Global Offensive",play,21.0,0 -129114153,"Unturned",purchase,1.0,0 -129114153,"Unturned",play,17.8,0 -129114153,"GunZ 2 The Second Duel",purchase,1.0,0 -129114153,"GunZ 2 The Second Duel",play,3.0,0 -129114153,"Trove",purchase,1.0,0 -129114153,"Trove",play,0.5,0 -129114153,"Fuse",purchase,1.0,0 -129114153,"Fuse",play,0.3,0 -129114153,"Blender 2.76b",purchase,1.0,0 -129114153,"Rise of Incarnates",purchase,1.0,0 -301555716,"Dota 2",purchase,1.0,0 -301555716,"Dota 2",play,28.0,0 -301555716,"Unturned",purchase,1.0,0 -301555716,"Unturned",play,0.5,0 -144455775,"Dota 2",purchase,1.0,0 -144455775,"Dota 2",play,2304.0,0 -144455775,"Counter-Strike Global Offensive",purchase,1.0,0 -144455775,"Counter-Strike Global Offensive",play,761.0,0 -144455775,"RaceRoom Racing Experience ",purchase,1.0,0 -144455775,"RaceRoom Racing Experience ",play,0.4,0 -144455775,"PAYDAY The Heist",purchase,1.0,0 -144455775,"Warframe",purchase,1.0,0 -202427012,"Grand Theft Auto V",purchase,1.0,0 -202427012,"Grand Theft Auto V",play,84.0,0 -202427012,"NBA 2K15",purchase,1.0,0 -202427012,"NBA 2K15",play,69.0,0 -202427012,"Dota 2",purchase,1.0,0 -202427012,"Dota 2",play,31.0,0 -202427012,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",purchase,1.0,0 -202427012,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",play,17.0,0 -202427012,"Ultra Street Fighter IV",purchase,1.0,0 -202427012,"Ultra Street Fighter IV",play,9.0,0 -202427012,"Counter-Strike Global Offensive",purchase,1.0,0 -202427012,"Counter-Strike Global Offensive",play,6.3,0 -202427012,"DRAGON BALL XENOVERSE",purchase,1.0,0 -202427012,"DRAGON BALL XENOVERSE",play,4.8,0 -202427012,"Need for Speed Hot Pursuit",purchase,1.0,0 -202427012,"Need for Speed Hot Pursuit",play,3.9,0 -202427012,"The Elder Scrolls V Skyrim",purchase,1.0,0 -202427012,"The Elder Scrolls V Skyrim",play,3.3,0 -202427012,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -202427012,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,1.0,0 -202427012,"Archeblade",purchase,1.0,0 -202427012,"Archeblade",play,0.9,0 -202427012,"FINAL FANTASY XIII-2",purchase,1.0,0 -202427012,"FINAL FANTASY XIII-2",play,0.8,0 -202427012,"Grand Theft Auto San Andreas",purchase,1.0,0 -202427012,"Grand Theft Auto San Andreas",play,0.8,0 -202427012,"The Witcher Enhanced Edition",purchase,1.0,0 -202427012,"The Witcher Enhanced Edition",play,0.3,0 -202427012,"Codename CURE",purchase,1.0,0 -202427012,"Codename CURE",play,0.3,0 -202427012,"Warframe",purchase,1.0,0 -202427012,"Warframe",play,0.1,0 -202427012,"Age of Empires II HD Edition",purchase,1.0,0 -202427012,"Age of Empires II HD The Forgotten",purchase,1.0,0 -202427012,"Dying Light",purchase,1.0,0 -202427012,"Grand Theft Auto San Andreas",purchase,1.0,0 -202427012,"Heroes & Generals",purchase,1.0,0 -202427012,"Insurgency",purchase,1.0,0 -202427012,"Marvel Heroes 2015",purchase,1.0,0 -202427012,"Metro 2033",purchase,1.0,0 -202427012,"Path of Exile",purchase,1.0,0 -202427012,"Portal Stories Mel",purchase,1.0,0 -202427012,"Red Crucible Firestorm",purchase,1.0,0 -202427012,"Rise of Incarnates",purchase,1.0,0 -202427012,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -202427012,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -282290070,"Trove",purchase,1.0,0 -282290070,"Trove",play,0.2,0 -122486775,"Dota 2",purchase,1.0,0 -122486775,"Dota 2",play,0.3,0 -98200791,"The Lord of the Rings War in the North",purchase,1.0,0 -98200791,"The Lord of the Rings War in the North",play,107.0,0 -75331486,"Counter-Strike Source",purchase,1.0,0 -75331486,"Counter-Strike Source",play,170.0,0 -224070533,"The Elder Scrolls V Skyrim",purchase,1.0,0 -224070533,"The Elder Scrolls V Skyrim",play,53.0,0 -224070533,"Age of Wonders III",purchase,1.0,0 -224070533,"Age of Wonders III",play,39.0,0 -224070533,"Borderlands The Pre-Sequel",purchase,1.0,0 -224070533,"Borderlands The Pre-Sequel",play,36.0,0 -224070533,"Saints Row The Third",purchase,1.0,0 -224070533,"Saints Row The Third",play,36.0,0 -224070533,"Far Cry 3",purchase,1.0,0 -224070533,"Far Cry 3",play,35.0,0 -224070533,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -224070533,"Tom Clancy's Ghost Recon Phantoms - NA",play,18.6,0 -224070533,"Titan Quest Immortal Throne",purchase,1.0,0 -224070533,"Titan Quest Immortal Throne",play,18.3,0 -224070533,"How to Survive",purchase,1.0,0 -224070533,"How to Survive",play,16.5,0 -224070533,"Unturned",purchase,1.0,0 -224070533,"Unturned",play,12.2,0 -224070533,"Zombies Monsters Robots",purchase,1.0,0 -224070533,"Zombies Monsters Robots",play,12.0,0 -224070533,"ARK Survival Evolved",purchase,1.0,0 -224070533,"ARK Survival Evolved",play,9.6,0 -224070533,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -224070533,"Call of Duty Modern Warfare 2 - Multiplayer",play,6.6,0 -224070533,"Firefall",purchase,1.0,0 -224070533,"Firefall",play,5.9,0 -224070533,"Dota 2",purchase,1.0,0 -224070533,"Dota 2",play,5.6,0 -224070533,"Heroes & Generals",purchase,1.0,0 -224070533,"Heroes & Generals",play,5.5,0 -224070533,"Nuclear Dawn",purchase,1.0,0 -224070533,"Nuclear Dawn",play,5.4,0 -224070533,"Dead Island",purchase,1.0,0 -224070533,"Dead Island",play,3.6,0 -224070533,"Archeblade",purchase,1.0,0 -224070533,"Archeblade",play,3.3,0 -224070533,"Castle Crashers",purchase,1.0,0 -224070533,"Castle Crashers",play,2.5,0 -224070533,"Call of Duty Modern Warfare 2",purchase,1.0,0 -224070533,"Call of Duty Modern Warfare 2",play,2.5,0 -224070533,"Age of Empires II HD Edition",purchase,1.0,0 -224070533,"Age of Empires II HD Edition",play,2.4,0 -224070533,"BioShock 2",purchase,1.0,0 -224070533,"BioShock 2",play,2.3,0 -224070533,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -224070533,"Sins of a Solar Empire Rebellion",play,2.0,0 -224070533,"The Mighty Quest For Epic Loot",purchase,1.0,0 -224070533,"The Mighty Quest For Epic Loot",play,1.9,0 -224070533,"ZOMBI",purchase,1.0,0 -224070533,"ZOMBI",play,1.9,0 -224070533,"Titan Quest",purchase,1.0,0 -224070533,"Titan Quest",play,1.8,0 -224070533,"Block N Load",purchase,1.0,0 -224070533,"Block N Load",play,1.7,0 -224070533,"No More Room in Hell",purchase,1.0,0 -224070533,"No More Room in Hell",play,1.6,0 -224070533,"Dirty Bomb",purchase,1.0,0 -224070533,"Dirty Bomb",play,0.9,0 -224070533,"Age of Empires III Complete Collection",purchase,1.0,0 -224070533,"Age of Empires III Complete Collection",play,0.7,0 -224070533,"sZone-Online",purchase,1.0,0 -224070533,"sZone-Online",play,0.5,0 -224070533,"The Witcher Enhanced Edition",purchase,1.0,0 -224070533,"The Witcher Enhanced Edition",play,0.5,0 -224070533,"MicroVolts Surge",purchase,1.0,0 -224070533,"MicroVolts Surge",play,0.3,0 -224070533,"The Settlers Online",purchase,1.0,0 -224070533,"Dead Island Riptide",purchase,1.0,0 -224070533,"Age of Empires II HD The Forgotten",purchase,1.0,0 -224070533,"Codename CURE",purchase,1.0,0 -224070533,"Defiance",purchase,1.0,0 -224070533,"Happy Wars",purchase,1.0,0 -224070533,"Planetary Annihilation",purchase,1.0,0 -224070533,"Planetary Annihilation - Digital Deluxe Bundle",purchase,1.0,0 -224070533,"Planetary Annihilation - Original Soundtrack",purchase,1.0,0 -224070533,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -224070533,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -224070533,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -224070533,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -224070533,"Warframe",purchase,1.0,0 -51051260,"Dota 2",purchase,1.0,0 -51051260,"Dota 2",play,39.0,0 -180206904,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -180206904,"Microsoft Flight Simulator X Steam Edition",play,189.0,0 -180206904,"Euro Truck Simulator 2",purchase,1.0,0 -180206904,"Euro Truck Simulator 2",play,137.0,0 -180206904,"Farming Simulator 2013",purchase,1.0,0 -180206904,"Farming Simulator 2013",play,4.8,0 -180206904,"Car Mechanic Simulator 2014",purchase,1.0,0 -180206904,"Car Mechanic Simulator 2014",play,3.4,0 -180206904,"Unturned",purchase,1.0,0 -180206904,"Unturned",play,1.8,0 -180206904,"European Ship Simulator",purchase,1.0,0 -180206904,"European Ship Simulator",play,0.4,0 -180206904,"Copa Petrobras de Marcas",purchase,1.0,0 -180206904,"Copa Petrobras de Marcas",play,0.3,0 -180206904,"War Thunder",purchase,1.0,0 -180206904,"World Ship Simulator",purchase,1.0,0 -149365029,"Dota 2",purchase,1.0,0 -149365029,"Dota 2",play,0.4,0 -143366704,"Team Fortress 2",purchase,1.0,0 -143366704,"Team Fortress 2",play,2.9,0 -144880494,"Half-Life Deathmatch Source",purchase,1.0,0 -144880494,"Half-Life Deathmatch Source",play,2.4,0 -144880494,"Half-Life Source",purchase,1.0,0 -137335407,"Football Manager 2013",purchase,1.0,0 -137335407,"Football Manager 2013",play,34.0,0 -139343012,"Sniper Ghost Warrior 2",purchase,1.0,0 -139343012,"Sniper Ghost Warrior 2",play,1.1,0 -139343012,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -139343012,"Star Trek Online",purchase,1.0,0 -139343012,"Super Monday Night Combat",purchase,1.0,0 -139343012,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -139343012,"Warface",purchase,1.0,0 -139343012,"War Thunder",purchase,1.0,0 -100813586,"Total War SHOGUN 2",purchase,1.0,0 -100813586,"Total War SHOGUN 2",play,2.4,0 -100813586,"Deus Ex Human Revolution",purchase,1.0,0 -236496373,"Grand Theft Auto V",purchase,1.0,0 -236496373,"Grand Theft Auto V",play,174.0,0 -236496373,"Fallout 4",purchase,1.0,0 -236496373,"Fallout 4",play,67.0,0 -236496373,"Dota 2",purchase,1.0,0 -236496373,"Dota 2",play,2.6,0 -63555332,"XCOM Enemy Unknown",purchase,1.0,0 -63555332,"XCOM Enemy Unknown",play,93.0,0 -63555332,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -63555332,"Sid Meier's Civilization Beyond Earth",play,75.0,0 -63555332,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -63555332,"Warhammer 40,000 Dawn of War II",play,69.0,0 -63555332,"Sid Meier's Civilization Beyond Earth - Rising Tide",purchase,1.0,0 -63555332,"XCOM Enemy Within",purchase,1.0,0 -50032397,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -50032397,"Call of Duty Modern Warfare 2 - Multiplayer",play,439.0,0 -50032397,"The Elder Scrolls V Skyrim",purchase,1.0,0 -50032397,"The Elder Scrolls V Skyrim",play,325.0,0 -50032397,"Saints Row 2",purchase,1.0,0 -50032397,"Saints Row 2",play,163.0,0 -50032397,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -50032397,"Call of Duty Modern Warfare 3 - Multiplayer",play,110.0,0 -50032397,"Call of Duty Modern Warfare 2",purchase,1.0,0 -50032397,"Call of Duty Modern Warfare 2",play,87.0,0 -50032397,"Counter-Strike Global Offensive",purchase,1.0,0 -50032397,"Counter-Strike Global Offensive",play,64.0,0 -50032397,"Call of Duty Modern Warfare 3",purchase,1.0,0 -50032397,"Call of Duty Modern Warfare 3",play,47.0,0 -50032397,"Hitman Absolution",purchase,1.0,0 -50032397,"Hitman Absolution",play,46.0,0 -50032397,"Dota 2",purchase,1.0,0 -50032397,"Dota 2",play,18.9,0 -50032397,"Call of Duty Black Ops",purchase,1.0,0 -50032397,"Call of Duty Black Ops",play,4.5,0 -50032397,"Total War ATTILA",purchase,1.0,0 -50032397,"Total War ATTILA",play,2.9,0 -50032397,"Jagged Alliance - Back in Action",purchase,1.0,0 -50032397,"Jagged Alliance - Back in Action",play,2.7,0 -50032397,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -50032397,"Call of Duty Black Ops - Multiplayer",play,0.5,0 -77096978,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -77096978,"Call of Duty Black Ops - Multiplayer",play,500.0,0 -77096978,"Call of Duty Black Ops",purchase,1.0,0 -77096978,"Call of Duty Black Ops",play,9.6,0 -250861433,"Dota 2",purchase,1.0,0 -250861433,"Dota 2",play,10.5,0 -79216711,"Counter-Strike Source",purchase,1.0,0 -79216711,"Day of Defeat Source",purchase,1.0,0 -79216711,"Half-Life 2 Deathmatch",purchase,1.0,0 -79216711,"Half-Life 2 Lost Coast",purchase,1.0,0 -180801118,"Team Fortress 2",purchase,1.0,0 -180801118,"Team Fortress 2",play,70.0,0 -180801118,"Source Filmmaker",purchase,1.0,0 -180801118,"Source Filmmaker",play,4.2,0 -180801118,"Fistful of Frags",purchase,1.0,0 -180801118,"Fistful of Frags",play,0.3,0 -180801118,"Survivor Squad",purchase,1.0,0 -180801118,"Thank You The Game",purchase,1.0,0 -180801118,"Unturned",purchase,1.0,0 -75600128,"Sid Meier's Civilization V",purchase,1.0,0 -75600128,"Sid Meier's Civilization V",play,6.2,0 -188471612,"Fallout 4",purchase,1.0,0 -188471612,"Fallout 4",play,4.4,0 -177395292,"Dota 2",purchase,1.0,0 -177395292,"Dota 2",play,7.7,0 -172364852,"Dota 2",purchase,1.0,0 -172364852,"Dota 2",play,0.2,0 -300708628,"Counter-Strike Global Offensive",purchase,1.0,0 -300708628,"Counter-Strike Global Offensive",play,80.0,0 -300708628,"Garry's Mod",purchase,1.0,0 -300708628,"Garry's Mod",play,5.4,0 -300708628,"APB Reloaded",purchase,1.0,0 -300708628,"APB Reloaded",play,1.6,0 -300708628,"Warframe",purchase,1.0,0 -300708628,"Warframe",play,1.3,0 -300708628,"Team Fortress 2",purchase,1.0,0 -300708628,"Team Fortress 2",play,1.0,0 -300708628,"Dota 2",purchase,1.0,0 -300708628,"Dota 2",play,0.5,0 -300708628,"Unturned",purchase,1.0,0 -300708628,"Unturned",play,0.5,0 -300708628,"Retaliation",purchase,1.0,0 -250981937,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -250981937,"Tom Clancy's Ghost Recon Phantoms - EU",play,31.0,0 -250981937,"BLOCKADE 3D",purchase,1.0,0 -250981937,"BLOCKADE 3D",play,1.0,0 -216535133,"Team Fortress 2",purchase,1.0,0 -216535133,"Team Fortress 2",play,0.4,0 -210752982,"Professional Farmer 2014",purchase,1.0,0 -210752982,"Professional Farmer 2014",play,2.0,0 -210752982,"Good Ol Times",purchase,1.0,0 -210752982,"Professional Farmer 2014 - America DLC",purchase,1.0,0 -307631446,"MEDIEVAL Total War - Gold Edition",purchase,1.0,0 -307631446,"MEDIEVAL Total War - Gold Edition",play,14.2,0 -270228600,"Counter-Strike Global Offensive",purchase,1.0,0 -270228600,"Counter-Strike Global Offensive",play,309.0,0 -270228600,"Pro Evolution Soccer 2015",purchase,1.0,0 -270228600,"Pro Evolution Soccer 2015",play,65.0,0 -270228600,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -270228600,"Tom Clancy's Ghost Recon Phantoms - EU",play,2.9,0 -221035258,"Larva Mortus",purchase,1.0,0 -131406060,"Saints Row The Third",purchase,1.0,0 -131406060,"Saints Row The Third",play,17.3,0 -69458130,"Mafia II",purchase,1.0,0 -69458130,"Mafia II",play,0.8,0 -132300630,"Counter-Strike Global Offensive",purchase,1.0,0 -132300630,"Counter-Strike Global Offensive",play,475.0,0 -132300630,"Garry's Mod",purchase,1.0,0 -132300630,"Garry's Mod",play,311.0,0 -132300630,"Grand Theft Auto V",purchase,1.0,0 -132300630,"Grand Theft Auto V",play,194.0,0 -132300630,"NBA 2K15",purchase,1.0,0 -132300630,"NBA 2K15",play,143.0,0 -132300630,"PAYDAY 2",purchase,1.0,0 -132300630,"PAYDAY 2",play,121.0,0 -132300630,"NBA 2K14",purchase,1.0,0 -132300630,"NBA 2K14",play,100.0,0 -132300630,"Sid Meier's Civilization V",purchase,1.0,0 -132300630,"Sid Meier's Civilization V",play,91.0,0 -132300630,"Arma 3",purchase,1.0,0 -132300630,"Arma 3",play,67.0,0 -132300630,"Rocket League",purchase,1.0,0 -132300630,"Rocket League",play,49.0,0 -132300630,"Call of Duty World at War",purchase,1.0,0 -132300630,"Call of Duty World at War",play,38.0,0 -132300630,"Borderlands 2",purchase,1.0,0 -132300630,"Borderlands 2",play,36.0,0 -132300630,"Grand Theft Auto IV",purchase,1.0,0 -132300630,"Grand Theft Auto IV",play,36.0,0 -132300630,"Saints Row The Third",purchase,1.0,0 -132300630,"Saints Row The Third",play,28.0,0 -132300630,"The Elder Scrolls V Skyrim",purchase,1.0,0 -132300630,"The Elder Scrolls V Skyrim",play,22.0,0 -132300630,"Prison Architect",purchase,1.0,0 -132300630,"Prison Architect",play,22.0,0 -132300630,"LYNE",purchase,1.0,0 -132300630,"LYNE",play,22.0,0 -132300630,"Arma 2",purchase,1.0,0 -132300630,"Arma 2",play,19.0,0 -132300630,"Portal 2",purchase,1.0,0 -132300630,"Portal 2",play,17.3,0 -132300630,"Space Engineers",purchase,1.0,0 -132300630,"Space Engineers",play,17.0,0 -132300630,"Terraria",purchase,1.0,0 -132300630,"Terraria",play,15.2,0 -132300630,"Far Cry 3",purchase,1.0,0 -132300630,"Far Cry 3",play,13.9,0 -132300630,"The Talos Principle",purchase,1.0,0 -132300630,"The Talos Principle",play,13.1,0 -132300630,"Lego Harry Potter",purchase,1.0,0 -132300630,"Lego Harry Potter",play,13.0,0 -132300630,"Just Cause 2",purchase,1.0,0 -132300630,"Just Cause 2",play,12.4,0 -132300630,"BattleBlock Theater",purchase,1.0,0 -132300630,"BattleBlock Theater",play,12.2,0 -132300630,"Middle-earth Shadow of Mordor",purchase,1.0,0 -132300630,"Middle-earth Shadow of Mordor",play,12.1,0 -132300630,"Pixel Piracy",purchase,1.0,0 -132300630,"Pixel Piracy",play,10.5,0 -132300630,"Call of Duty Modern Warfare 2",purchase,1.0,0 -132300630,"Call of Duty Modern Warfare 2",play,10.0,0 -132300630,"Plague Inc Evolved",purchase,1.0,0 -132300630,"Plague Inc Evolved",play,9.5,0 -132300630,"Kerbal Space Program",purchase,1.0,0 -132300630,"Kerbal Space Program",play,8.3,0 -132300630,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -132300630,"Just Cause 2 Multiplayer Mod",play,8.2,0 -132300630,"DayZ",purchase,1.0,0 -132300630,"DayZ",play,7.4,0 -132300630,"Sniper Ghost Warrior 2",purchase,1.0,0 -132300630,"Sniper Ghost Warrior 2",play,6.6,0 -132300630,"Dying Light",purchase,1.0,0 -132300630,"Dying Light",play,6.5,0 -132300630,"Turbo Dismount",purchase,1.0,0 -132300630,"Turbo Dismount",play,6.5,0 -132300630,"Hotline Miami",purchase,1.0,0 -132300630,"Hotline Miami",play,6.2,0 -132300630,"Scribblenauts Unlimited",purchase,1.0,0 -132300630,"Scribblenauts Unlimited",play,6.1,0 -132300630,"Super Hexagon",purchase,1.0,0 -132300630,"Super Hexagon",play,5.9,0 -132300630,"Chivalry Medieval Warfare",purchase,1.0,0 -132300630,"Chivalry Medieval Warfare",play,5.1,0 -132300630,"Star Wars - Battlefront II",purchase,1.0,0 -132300630,"Star Wars - Battlefront II",play,5.0,0 -132300630,"PAYDAY The Heist",purchase,1.0,0 -132300630,"PAYDAY The Heist",play,4.9,0 -132300630,"Democracy 3",purchase,1.0,0 -132300630,"Democracy 3",play,4.7,0 -132300630,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -132300630,"Call of Duty Modern Warfare 2 - Multiplayer",play,4.4,0 -132300630,"LEGO Batman 3 Beyond Gotham",purchase,1.0,0 -132300630,"LEGO Batman 3 Beyond Gotham",play,4.0,0 -132300630,"Counter-Strike Source",purchase,1.0,0 -132300630,"Counter-Strike Source",play,3.5,0 -132300630,"Team Fortress 2",purchase,1.0,0 -132300630,"Team Fortress 2",play,3.3,0 -132300630,"Castle Crashers",purchase,1.0,0 -132300630,"Castle Crashers",play,3.2,0 -132300630,"Super Crate Box",purchase,1.0,0 -132300630,"Super Crate Box",play,3.1,0 -132300630,"This War of Mine",purchase,1.0,0 -132300630,"This War of Mine",play,3.1,0 -132300630,"The Stanley Parable",purchase,1.0,0 -132300630,"The Stanley Parable",play,2.9,0 -132300630,"Next Car Game Wreckfest",purchase,1.0,0 -132300630,"Next Car Game Wreckfest",play,2.8,0 -132300630,"Tabletop Simulator",purchase,1.0,0 -132300630,"Tabletop Simulator",play,2.8,0 -132300630,"Need for Speed Hot Pursuit",purchase,1.0,0 -132300630,"Need for Speed Hot Pursuit",play,2.6,0 -132300630,"Goat Simulator",purchase,1.0,0 -132300630,"Goat Simulator",play,2.4,0 -132300630,"Rogue Legacy",purchase,1.0,0 -132300630,"Rogue Legacy",play,2.3,0 -132300630,"Left 4 Dead 2",purchase,1.0,0 -132300630,"Left 4 Dead 2",play,2.3,0 -132300630,"Arma 2 Operation Arrowhead",purchase,1.0,0 -132300630,"Arma 2 Operation Arrowhead",play,2.3,0 -132300630,"Stronghold Crusader HD",purchase,1.0,0 -132300630,"Stronghold Crusader HD",play,2.2,0 -132300630,"Starbound",purchase,1.0,0 -132300630,"Starbound",play,2.2,0 -132300630,"Surgeon Simulator",purchase,1.0,0 -132300630,"Surgeon Simulator",play,2.1,0 -132300630,"Gunpoint",purchase,1.0,0 -132300630,"Gunpoint",play,2.1,0 -132300630,"ARK Survival Evolved",purchase,1.0,0 -132300630,"ARK Survival Evolved",play,1.8,0 -132300630,"Poker Night 2",purchase,1.0,0 -132300630,"Poker Night 2",play,1.8,0 -132300630,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -132300630,"Next Car Game Sneak Peek 2.0",play,1.7,0 -132300630,"Planetary Annihilation",purchase,1.0,0 -132300630,"Planetary Annihilation",play,1.7,0 -132300630,"Monaco",purchase,1.0,0 -132300630,"Monaco",play,1.6,0 -132300630,"LEGO Worlds",purchase,1.0,0 -132300630,"LEGO Worlds",play,1.5,0 -132300630,"Antichamber",purchase,1.0,0 -132300630,"Antichamber",play,1.3,0 -132300630,"Insurgency",purchase,1.0,0 -132300630,"Insurgency",play,1.3,0 -132300630,"Besiege",purchase,1.0,0 -132300630,"Besiege",play,1.0,0 -132300630,"Octodad Dadliest Catch",purchase,1.0,0 -132300630,"Octodad Dadliest Catch",play,1.0,0 -132300630,"FTL Faster Than Light",purchase,1.0,0 -132300630,"FTL Faster Than Light",play,0.9,0 -132300630,"The Bridge",purchase,1.0,0 -132300630,"The Bridge",play,0.8,0 -132300630,"The Binding of Isaac",purchase,1.0,0 -132300630,"The Binding of Isaac",play,0.7,0 -132300630,"DLC Quest",purchase,1.0,0 -132300630,"DLC Quest",play,0.5,0 -132300630,"Don't Starve",purchase,1.0,0 -132300630,"Don't Starve",play,0.4,0 -132300630,"Euro Truck Simulator 2",purchase,1.0,0 -132300630,"Euro Truck Simulator 2",play,0.4,0 -132300630,"Robot Roller-Derby Disco Dodgeball",purchase,1.0,0 -132300630,"Robot Roller-Derby Disco Dodgeball",play,0.4,0 -132300630,"Swipecart",purchase,1.0,0 -132300630,"Swipecart",play,0.3,0 -132300630,"Dead Bits",purchase,1.0,0 -132300630,"Dead Bits",play,0.3,0 -132300630,"Vertiginous Golf",purchase,1.0,0 -132300630,"Vertiginous Golf",play,0.2,0 -132300630,"Rock of Ages",purchase,1.0,0 -132300630,"Rock of Ages",play,0.2,0 -132300630,"Unturned",purchase,1.0,0 -132300630,"Unturned",play,0.2,0 -132300630,"Science Girls",purchase,1.0,0 -132300630,"Science Girls",play,0.2,0 -132300630,"XCOM Enemy Unknown",purchase,1.0,0 -132300630,"XCOM Enemy Unknown",play,0.2,0 -132300630,"Super Meat Boy",purchase,1.0,0 -132300630,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -132300630,"Outlast",purchase,1.0,0 -132300630,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -132300630,"Arma 3 Helicopters",purchase,1.0,0 -132300630,"Arma 3 Karts",purchase,1.0,0 -132300630,"Arma 3 Marksmen",purchase,1.0,0 -132300630,"Arma 3 Zeus",purchase,1.0,0 -132300630,"Arma Cold War Assault",purchase,1.0,0 -132300630,"Castle Crashers - Blacksmith Pack",purchase,1.0,0 -132300630,"Castle Crashers - Pink Knight Pack",purchase,1.0,0 -132300630,"Chains",purchase,1.0,0 -132300630,"Dead Island Epidemic",purchase,1.0,0 -132300630,"Dino D-Day",purchase,1.0,0 -132300630,"Don't Starve Together Beta",purchase,1.0,0 -132300630,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -132300630,"Gone Home",purchase,1.0,0 -132300630,"Grand Theft Auto San Andreas",purchase,1.0,0 -132300630,"Grand Theft Auto San Andreas",purchase,1.0,0 -132300630,"Gumboy Crazy Adventures",purchase,1.0,0 -132300630,"Gumboy Crazy Features",purchase,1.0,0 -132300630,"Half-Life 2",purchase,1.0,0 -132300630,"Half-Life 2 Episode One",purchase,1.0,0 -132300630,"Half-Life 2 Episode Two",purchase,1.0,0 -132300630,"Half-Life 2 Lost Coast",purchase,1.0,0 -132300630,"LEGO Batman 2",purchase,1.0,0 -132300630,"LEGO Batman The Videogame",purchase,1.0,0 -132300630,"LEGO Harry Potter Years 5-7",purchase,1.0,0 -132300630,"Marine Sharpshooter II Jungle Warfare",purchase,1.0,0 -132300630,"Obulis",purchase,1.0,0 -132300630,"Patch testing for Chivalry",purchase,1.0,0 -132300630,"Planetary Annihilation - Digital Deluxe Bundle",purchase,1.0,0 -132300630,"Planetary Annihilation - Original Soundtrack",purchase,1.0,0 -132300630,"Portal",purchase,1.0,0 -132300630,"Portal Stories Mel",purchase,1.0,0 -132300630,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -132300630,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -132300630,"Sniper Ghost Warrior 2 World Hunter Pack",purchase,1.0,0 -132300630,"Starbound - Unstable",purchase,1.0,0 -132300630,"Stronghold Crusader Extreme HD",purchase,1.0,0 -132300630,"Teleglitch Die More Edition",purchase,1.0,0 -132300630,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -132300630,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -132300630,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -132300630,"The Talos Principle Road To Gehenna",purchase,1.0,0 -132300630,"Vigil Blood Bitterness",purchase,1.0,0 -83521481,"Dota 2",purchase,1.0,0 -83521481,"Dota 2",play,4.0,0 -83521481,"Team Fortress 2",purchase,1.0,0 -83521481,"Team Fortress 2",play,3.2,0 -83521481,"Counter-Strike",purchase,1.0,0 -83521481,"Day of Defeat",purchase,1.0,0 -83521481,"Deathmatch Classic",purchase,1.0,0 -83521481,"Half-Life",purchase,1.0,0 -83521481,"Half-Life Blue Shift",purchase,1.0,0 -83521481,"Half-Life Opposing Force",purchase,1.0,0 -83521481,"Ricochet",purchase,1.0,0 -83521481,"Team Fortress Classic",purchase,1.0,0 -245744104,"Magicka Wizard Wars",purchase,1.0,0 -86041729,"Garry's Mod",purchase,1.0,0 -86041729,"Garry's Mod",play,446.0,0 -86041729,"Team Fortress 2",purchase,1.0,0 -86041729,"Team Fortress 2",play,256.0,0 -86041729,"The Elder Scrolls V Skyrim",purchase,1.0,0 -86041729,"The Elder Scrolls V Skyrim",play,143.0,0 -86041729,"PAYDAY 2",purchase,1.0,0 -86041729,"PAYDAY 2",play,102.0,0 -86041729,"DayZ",purchase,1.0,0 -86041729,"DayZ",play,87.0,0 -86041729,"Saints Row The Third",purchase,1.0,0 -86041729,"Saints Row The Third",play,50.0,0 -86041729,"Mount & Blade With Fire and Sword",purchase,1.0,0 -86041729,"Mount & Blade With Fire and Sword",play,48.0,0 -86041729,"Borderlands 2",purchase,1.0,0 -86041729,"Borderlands 2",play,35.0,0 -86041729,"Far Cry 3",purchase,1.0,0 -86041729,"Far Cry 3",play,28.0,0 -86041729,"Deus Ex Human Revolution",purchase,1.0,0 -86041729,"Deus Ex Human Revolution",play,28.0,0 -86041729,"Starbound",purchase,1.0,0 -86041729,"Starbound",play,19.5,0 -86041729,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -86041729,"Tom Clancy's Ghost Recon Phantoms - NA",play,17.1,0 -86041729,"BioShock 2",purchase,1.0,0 -86041729,"BioShock 2",play,16.2,0 -86041729,"Prison Architect",purchase,1.0,0 -86041729,"Prison Architect",play,15.6,0 -86041729,"South Park The Stick of Truth",purchase,1.0,0 -86041729,"South Park The Stick of Truth",play,15.2,0 -86041729,"BioShock Infinite",purchase,1.0,0 -86041729,"BioShock Infinite",play,14.6,0 -86041729,"Saints Row IV",purchase,1.0,0 -86041729,"Saints Row IV",play,13.8,0 -86041729,"The Forest",purchase,1.0,0 -86041729,"The Forest",play,12.3,0 -86041729,"Dungeon Defenders",purchase,1.0,0 -86041729,"Dungeon Defenders",play,12.3,0 -86041729,"Left 4 Dead 2",purchase,1.0,0 -86041729,"Left 4 Dead 2",play,10.5,0 -86041729,"PAYDAY The Heist",purchase,1.0,0 -86041729,"PAYDAY The Heist",play,7.9,0 -86041729,"Half-Life 2",purchase,1.0,0 -86041729,"Half-Life 2",play,7.8,0 -86041729,"Dishonored",purchase,1.0,0 -86041729,"Dishonored",play,7.8,0 -86041729,"Just Cause 2",purchase,1.0,0 -86041729,"Just Cause 2",play,7.6,0 -86041729,"Tropico 4",purchase,1.0,0 -86041729,"Tropico 4",play,7.1,0 -86041729,"Counter-Strike Global Offensive",purchase,1.0,0 -86041729,"Counter-Strike Global Offensive",play,6.7,0 -86041729,"Hitman Absolution",purchase,1.0,0 -86041729,"Hitman Absolution",play,5.9,0 -86041729,"BioShock",purchase,1.0,0 -86041729,"BioShock",play,5.8,0 -86041729,"Arma 3",purchase,1.0,0 -86041729,"Arma 3",play,5.2,0 -86041729,"FORCED",purchase,1.0,0 -86041729,"FORCED",play,4.4,0 -86041729,"Mount & Blade Warband",purchase,1.0,0 -86041729,"Mount & Blade Warband",play,4.4,0 -86041729,"Portal 2",purchase,1.0,0 -86041729,"Portal 2",play,4.3,0 -86041729,"Scribblenauts Unlimited",purchase,1.0,0 -86041729,"Scribblenauts Unlimited",play,4.2,0 -86041729,"Star Wars - Battlefront II",purchase,1.0,0 -86041729,"Star Wars - Battlefront II",play,3.4,0 -86041729,"Age of Empires III Complete Collection",purchase,1.0,0 -86041729,"Age of Empires III Complete Collection",play,3.1,0 -86041729,"Terraria",purchase,1.0,0 -86041729,"Terraria",play,3.1,0 -86041729,"Age of Empires II HD Edition",purchase,1.0,0 -86041729,"Age of Empires II HD Edition",play,2.9,0 -86041729,"Warframe",purchase,1.0,0 -86041729,"Warframe",play,2.4,0 -86041729,"Dead Island",purchase,1.0,0 -86041729,"Dead Island",play,1.9,0 -86041729,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -86041729,"Fallout 3 - Game of the Year Edition",play,1.9,0 -86041729,"Spooky's House of Jump Scares",purchase,1.0,0 -86041729,"Spooky's House of Jump Scares",play,1.8,0 -86041729,"Dead Rising 2",purchase,1.0,0 -86041729,"Dead Rising 2",play,1.7,0 -86041729,"Solar 2",purchase,1.0,0 -86041729,"Solar 2",play,1.5,0 -86041729,"Special Forces Team X",purchase,1.0,0 -86041729,"Special Forces Team X",play,1.5,0 -86041729,"Killing Floor",purchase,1.0,0 -86041729,"Killing Floor",play,1.3,0 -86041729,"Metro 2033",purchase,1.0,0 -86041729,"Metro 2033",play,1.3,0 -86041729,"Kerbal Space Program",purchase,1.0,0 -86041729,"Kerbal Space Program",play,1.2,0 -86041729,"Sanctum",purchase,1.0,0 -86041729,"Sanctum",play,1.1,0 -86041729,"Fallout New Vegas",purchase,1.0,0 -86041729,"Fallout New Vegas",play,0.9,0 -86041729,"Besiege",purchase,1.0,0 -86041729,"Besiege",play,0.9,0 -86041729,"The Witcher Enhanced Edition",purchase,1.0,0 -86041729,"The Witcher Enhanced Edition",play,0.6,0 -86041729,"Titan Quest",purchase,1.0,0 -86041729,"Titan Quest",play,0.6,0 -86041729,"Sleeping Dogs",purchase,1.0,0 -86041729,"Sleeping Dogs",play,0.6,0 -86041729,"Max Payne 3",purchase,1.0,0 -86041729,"Max Payne 3",play,0.6,0 -86041729,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -86041729,"Rising Storm/Red Orchestra 2 Multiplayer",play,0.6,0 -86041729,"Age of Mythology Extended Edition",purchase,1.0,0 -86041729,"Age of Mythology Extended Edition",play,0.5,0 -86041729,"Reus",purchase,1.0,0 -86041729,"Reus",play,0.4,0 -86041729,"War of the Roses",purchase,1.0,0 -86041729,"War of the Roses",play,0.4,0 -86041729,"Dota 2",purchase,1.0,0 -86041729,"Dota 2",play,0.3,0 -86041729,"Half-Life 2 Episode One",purchase,1.0,0 -86041729,"Half-Life 2 Episode One",play,0.3,0 -86041729,"Company of Heroes (New Steam Version)",purchase,1.0,0 -86041729,"Company of Heroes (New Steam Version)",play,0.3,0 -86041729,"Forge",purchase,1.0,0 -86041729,"Forge",play,0.1,0 -86041729,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -86041729,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -86041729,"Rome Total War",purchase,1.0,0 -86041729,"Dead Rising 2 Off the Record",purchase,1.0,0 -86041729,"Counter-Strike Source",purchase,1.0,0 -86041729,"Counter-Strike",purchase,1.0,0 -86041729,"Darksiders",purchase,1.0,0 -86041729,"Half-Life",purchase,1.0,0 -86041729,"Dead Island Riptide",purchase,1.0,0 -86041729,"Saints Row 2",purchase,1.0,0 -86041729,"Red Faction Armageddon",purchase,1.0,0 -86041729,"Metro Last Light",purchase,1.0,0 -86041729,"Half-Life 2 Episode Two",purchase,1.0,0 -86041729,"Anomaly 2",purchase,1.0,0 -86041729,"APB Reloaded",purchase,1.0,0 -86041729,"Arma 3 Karts",purchase,1.0,0 -86041729,"Arma 3 Zeus",purchase,1.0,0 -86041729,"Arma Cold War Assault",purchase,1.0,0 -86041729,"Battlefield 2",purchase,1.0,0 -86041729,"BioShock Infinite - Season Pass",purchase,1.0,0 -86041729,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -86041729,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -86041729,"Company of Heroes",purchase,1.0,0 -86041729,"Company of Heroes Opposing Fronts",purchase,1.0,0 -86041729,"Company of Heroes Tales of Valor",purchase,1.0,0 -86041729,"Counter-Strike Condition Zero",purchase,1.0,0 -86041729,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -86041729,"Darwinia",purchase,1.0,0 -86041729,"DEFCON",purchase,1.0,0 -86041729,"Deus Ex Game of the Year Edition",purchase,1.0,0 -86041729,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -86041729,"Deus Ex Invisible War",purchase,1.0,0 -86041729,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -86041729,"Fallout New Vegas Dead Money",purchase,1.0,0 -86041729,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -86041729,"Half-Life 2 Deathmatch",purchase,1.0,0 -86041729,"Half-Life 2 Lost Coast",purchase,1.0,0 -86041729,"Half-Life Deathmatch Source",purchase,1.0,0 -86041729,"Hitman 2 Silent Assassin",purchase,1.0,0 -86041729,"Hitman Blood Money",purchase,1.0,0 -86041729,"Hitman Codename 47",purchase,1.0,0 -86041729,"Hitman Sniper Challenge",purchase,1.0,0 -86041729,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -86041729,"Max Payne 3 Season Pass",purchase,1.0,0 -86041729,"Mortal Kombat Kollection",purchase,1.0,0 -86041729,"Mount & Blade",purchase,1.0,0 -86041729,"Multiwinia",purchase,1.0,0 -86041729,"MX vs. ATV Reflex",purchase,1.0,0 -86041729,"PAYDAY Wolf Pack",purchase,1.0,0 -86041729,"PlanetSide 2",purchase,1.0,0 -86041729,"Robocraft",purchase,1.0,0 -86041729,"Sid Meier's Civilization III Complete",purchase,1.0,0 -86041729,"Sniper Elite Nazi Zombie Army",purchase,1.0,0 -86041729,"Starbound - Unstable",purchase,1.0,0 -86041729,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -86041729,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -86041729,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -86041729,"theHunter",purchase,1.0,0 -86041729,"The Lord of the Rings Online",purchase,1.0,0 -86041729,"Tom Clancy's Ghost Recon Phantoms - NA Looks and Power (Assault)",purchase,1.0,0 -86041729,"Uplink",purchase,1.0,0 -86041729,"War of the Roses Kingmaker",purchase,1.0,0 -86041729,"War of the Roses Balance Beta",purchase,1.0,0 -285386664,"Dota 2",purchase,1.0,0 -285386664,"Dota 2",play,16.5,0 -285386664,"Trove",purchase,1.0,0 -285386664,"Trove",play,9.0,0 -285386664,"WARMODE",purchase,1.0,0 -285386664,"WARMODE",play,7.3,0 -285386664,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -285386664,"S.K.I.L.L. - Special Force 2",play,4.8,0 -285386664,"Heroes & Generals",purchase,1.0,0 -285386664,"Heroes & Generals",play,2.9,0 -285386664,"Unturned",purchase,1.0,0 -285386664,"Unturned",play,2.7,0 -285386664,"Team Fortress 2",purchase,1.0,0 -285386664,"Team Fortress 2",play,0.6,0 -285386664,"BLOCKADE 3D",purchase,1.0,0 -285386664,"Marvel Heroes 2015",purchase,1.0,0 -285386664,"Warframe",purchase,1.0,0 -285386664,"War Thunder",purchase,1.0,0 -159724167,"Left 4 Dead 2",purchase,1.0,0 -159724167,"Left 4 Dead 2",play,2.5,0 -149455125,"Dota 2",purchase,1.0,0 -149455125,"Dota 2",play,0.6,0 -153556435,"Dota 2",purchase,1.0,0 -153556435,"Dota 2",play,0.6,0 -249408651,"APB Reloaded",purchase,1.0,0 -249408651,"APB Reloaded",play,0.3,0 -200912155,"Unturned",purchase,1.0,0 -200912155,"Unturned",play,0.8,0 -200912155,"Realm of the Mad God",purchase,1.0,0 -200912155,"Realm of the Mad God",play,0.6,0 -183552117,"Dota 2",purchase,1.0,0 -183552117,"Dota 2",play,113.0,0 -183552117,"Ragnarok",purchase,1.0,0 -141918091,"Dota 2",purchase,1.0,0 -141918091,"Dota 2",play,411.0,0 -141918091,"Everlasting Summer",purchase,1.0,0 -58297398,"Counter-Strike",purchase,1.0,0 -58297398,"Counter-Strike",play,824.0,0 -58297398,"Team Fortress 2",purchase,1.0,0 -58297398,"Team Fortress 2",play,363.0,0 -58297398,"Counter-Strike Global Offensive",purchase,1.0,0 -58297398,"Counter-Strike Global Offensive",play,233.0,0 -58297398,"Total War ATTILA",purchase,1.0,0 -58297398,"Total War ATTILA",play,198.0,0 -58297398,"Total War ROME II - Emperor Edition",purchase,1.0,0 -58297398,"Total War ROME II - Emperor Edition",play,168.0,0 -58297398,"Killing Floor",purchase,1.0,0 -58297398,"Killing Floor",play,140.0,0 -58297398,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -58297398,"Call of Duty Modern Warfare 2 - Multiplayer",play,108.0,0 -58297398,"Total War SHOGUN 2",purchase,1.0,0 -58297398,"Total War SHOGUN 2",play,59.0,0 -58297398,"Chivalry Medieval Warfare",purchase,1.0,0 -58297398,"Chivalry Medieval Warfare",play,53.0,0 -58297398,"Age of Empires III Complete Collection",purchase,1.0,0 -58297398,"Age of Empires III Complete Collection",play,34.0,0 -58297398,"Garry's Mod",purchase,1.0,0 -58297398,"Garry's Mod",play,29.0,0 -58297398,"Counter-Strike Condition Zero",purchase,1.0,0 -58297398,"Counter-Strike Condition Zero",play,25.0,0 -58297398,"H1Z1",purchase,1.0,0 -58297398,"H1Z1",play,23.0,0 -58297398,"Call of Duty Modern Warfare 2",purchase,1.0,0 -58297398,"Call of Duty Modern Warfare 2",play,22.0,0 -58297398,"Reign Of Kings",purchase,1.0,0 -58297398,"Reign Of Kings",play,15.3,0 -58297398,"Dota 2",purchase,1.0,0 -58297398,"Dota 2",play,15.3,0 -58297398,"Robocraft",purchase,1.0,0 -58297398,"Robocraft",play,14.9,0 -58297398,"The Elder Scrolls V Skyrim",purchase,1.0,0 -58297398,"The Elder Scrolls V Skyrim",play,14.2,0 -58297398,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -58297398,"Killing Floor Mod Defence Alliance 2",play,13.0,0 -58297398,"The Ship",purchase,1.0,0 -58297398,"The Ship",play,11.1,0 -58297398,"Deathmatch Classic",purchase,1.0,0 -58297398,"Deathmatch Classic",play,9.3,0 -58297398,"Killing Floor 2",purchase,1.0,0 -58297398,"Killing Floor 2",play,8.5,0 -58297398,"Day of Defeat Source",purchase,1.0,0 -58297398,"Day of Defeat Source",play,7.6,0 -58297398,"Unturned",purchase,1.0,0 -58297398,"Unturned",play,7.2,0 -58297398,"Left 4 Dead 2",purchase,1.0,0 -58297398,"Left 4 Dead 2",play,7.0,0 -58297398,"Cry of Fear",purchase,1.0,0 -58297398,"Cry of Fear",play,6.9,0 -58297398,"Age of Empires II HD Edition",purchase,1.0,0 -58297398,"Age of Empires II HD Edition",play,6.5,0 -58297398,"Day of Defeat",purchase,1.0,0 -58297398,"Day of Defeat",play,6.3,0 -58297398,"Path of Exile",purchase,1.0,0 -58297398,"Path of Exile",play,6.1,0 -58297398,"F.E.A.R. 3",purchase,1.0,0 -58297398,"F.E.A.R. 3",play,4.0,0 -58297398,"Age of Mythology Extended Edition",purchase,1.0,0 -58297398,"Age of Mythology Extended Edition",play,3.6,0 -58297398,"The Ship Single Player",purchase,1.0,0 -58297398,"The Ship Single Player",play,2.4,0 -58297398,"Outlast",purchase,1.0,0 -58297398,"Outlast",play,2.2,0 -58297398,"Amnesia The Dark Descent",purchase,1.0,0 -58297398,"Amnesia The Dark Descent",play,1.3,0 -58297398,"Arma 2",purchase,1.0,0 -58297398,"Arma 2",play,0.9,0 -58297398,"Ricochet",purchase,1.0,0 -58297398,"Ricochet",play,0.3,0 -58297398,"Arma 2 DayZ Mod",purchase,1.0,0 -58297398,"Arma 2 DayZ Mod",play,0.2,0 -58297398,"Arma 2 Operation Arrowhead",purchase,1.0,0 -58297398,"Quiplash",purchase,1.0,0 -58297398,"Aftermath",purchase,1.0,0 -58297398,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -58297398,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -58297398,"H1Z1 Test Server",purchase,1.0,0 -58297398,"Outlast Whistleblower DLC",purchase,1.0,0 -58297398,"Passing Pineview Forest",purchase,1.0,0 -58297398,"Patch testing for Chivalry",purchase,1.0,0 -58297398,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -58297398,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -58297398,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -58297398,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -58297398,"The Ship Tutorial",purchase,1.0,0 -253218347,"Total War ATTILA",purchase,1.0,0 -253218347,"Total War ATTILA",play,58.0,0 -253218347,"BioShock Infinite",purchase,1.0,0 -253218347,"BioShock Infinite",play,6.9,0 -253218347,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -253218347,"Call of Duty Advanced Warfare - Multiplayer",play,6.2,0 -253218347,"Call of Duty Advanced Warfare",purchase,1.0,0 -253218347,"Call of Duty Advanced Warfare",play,3.2,0 -253218347,"Crysis",purchase,1.0,0 -253218347,"Crysis",play,0.4,0 -206857830,"Kingdoms CCG",purchase,1.0,0 -206857830,"Kingdoms CCG",play,0.9,0 -206857830,"La Tale",purchase,1.0,0 -206857830,"La Tale",play,0.8,0 -206857830,"InMind VR",purchase,1.0,0 -206857830,"Rise of Incarnates",purchase,1.0,0 -152851917,"Dota 2",purchase,1.0,0 -152851917,"Dota 2",play,7.2,0 -289193172,"Magic Duels",purchase,1.0,0 -289193172,"Magic Duels",play,0.1,0 -289193172,"Mortal Online",purchase,1.0,0 -105028982,"Counter-Strike Global Offensive",purchase,1.0,0 -105028982,"Counter-Strike Global Offensive",play,275.0,0 -105028982,"Sniper Elite V2",purchase,1.0,0 -105028982,"Sniper Elite V2",play,10.5,0 -105028982,"No More Room in Hell",purchase,1.0,0 -105028982,"No More Room in Hell",play,3.5,0 -105028982,"Dota 2",purchase,1.0,0 -105028982,"Dota 2",play,1.8,0 -58280709,"Call of Duty Modern Warfare 2",purchase,1.0,0 -58280709,"Call of Duty Modern Warfare 2",play,13.3,0 -58280709,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -58280709,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.3,0 -119365702,"Borderlands 2",purchase,1.0,0 -119365702,"Borderlands 2",play,419.0,0 -119365702,"BioShock Infinite",purchase,1.0,0 -119365702,"BioShock Infinite",play,46.0,0 -119365702,"Tomb Raider",purchase,1.0,0 -119365702,"Tomb Raider",play,42.0,0 -245168247,"Dota 2",purchase,1.0,0 -245168247,"Dota 2",play,2.7,0 -72613527,"Garry's Mod",purchase,1.0,0 -72613527,"Garry's Mod",play,1117.0,0 -72613527,"Counter-Strike Source",purchase,1.0,0 -72613527,"Counter-Strike Source",play,602.0,0 -72613527,"Team Fortress 2",purchase,1.0,0 -72613527,"Team Fortress 2",play,74.0,0 -72613527,"Day of Defeat Source",purchase,1.0,0 -72613527,"Day of Defeat Source",play,64.0,0 -72613527,"Counter-Strike Global Offensive",purchase,1.0,0 -72613527,"Counter-Strike Global Offensive",play,52.0,0 -72613527,"DayZ",purchase,1.0,0 -72613527,"DayZ",play,44.0,0 -72613527,"Space Engineers",purchase,1.0,0 -72613527,"Space Engineers",play,4.8,0 -72613527,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",purchase,1.0,0 -72613527,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",play,3.0,0 -72613527,"Rust",purchase,1.0,0 -72613527,"Rust",play,1.9,0 -72613527,"Grand Theft Auto San Andreas",purchase,1.0,0 -72613527,"Grand Theft Auto San Andreas",play,1.6,0 -72613527,"Anno 2070",purchase,1.0,0 -72613527,"Anno 2070",play,0.9,0 -72613527,"Grand Theft Auto San Andreas",purchase,1.0,0 -181808796,"Archeblade",purchase,1.0,0 -181808796,"Archeblade",play,16.5,0 -181808796,"Robocraft",purchase,1.0,0 -181808796,"Robocraft",play,3.6,0 -181808796,"PAYDAY The Heist",purchase,1.0,0 -233069119,"Dota 2",purchase,1.0,0 -233069119,"Dota 2",play,0.4,0 -299875252,"Dota 2",purchase,1.0,0 -299875252,"Dota 2",play,0.8,0 -9245216,"Natural Selection 2",purchase,1.0,0 -9245216,"Natural Selection 2",play,86.0,0 -9245216,"Dota 2",purchase,1.0,0 -9245216,"Dota 2",play,15.9,0 -9245216,"RIFT",purchase,1.0,0 -9245216,"RIFT",play,13.2,0 -9245216,"Sid Meier's Civilization V",purchase,1.0,0 -9245216,"Sid Meier's Civilization V",play,5.8,0 -9245216,"Portal",purchase,1.0,0 -9245216,"Portal",play,0.9,0 -9245216,"PlanetSide 2",purchase,1.0,0 -9245216,"PlanetSide 2",play,0.6,0 -9245216,"Counter-Strike Source",purchase,1.0,0 -9245216,"Counter-Strike Source",play,0.5,0 -9245216,"Half-Life 2 Episode One",purchase,1.0,0 -9245216,"Half-Life 2 Episode One",play,0.1,0 -9245216,"Counter-Strike",purchase,1.0,0 -9245216,"Counter-Strike Condition Zero",purchase,1.0,0 -9245216,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -9245216,"Day of Defeat",purchase,1.0,0 -9245216,"Day of Defeat Source",purchase,1.0,0 -9245216,"Deathmatch Classic",purchase,1.0,0 -9245216,"Half-Life",purchase,1.0,0 -9245216,"Half-Life 2",purchase,1.0,0 -9245216,"Half-Life 2 Deathmatch",purchase,1.0,0 -9245216,"Half-Life 2 Episode Two",purchase,1.0,0 -9245216,"Half-Life 2 Lost Coast",purchase,1.0,0 -9245216,"Half-Life Blue Shift",purchase,1.0,0 -9245216,"Half-Life Opposing Force",purchase,1.0,0 -9245216,"Half-Life Source",purchase,1.0,0 -9245216,"Half-Life Deathmatch Source",purchase,1.0,0 -9245216,"Ricochet",purchase,1.0,0 -9245216,"Team Fortress Classic",purchase,1.0,0 -47636024,"Race The WTCC Game",purchase,1.0,0 -47636024,"RACE Caterham Expansion",purchase,1.0,0 -184694766,"Counter-Strike Global Offensive",purchase,1.0,0 -184694766,"Counter-Strike Global Offensive",play,818.0,0 -184694766,"Saints Row The Third",purchase,1.0,0 -184694766,"Saints Row The Third",play,18.7,0 -184694766,"Counter-Strike Source",purchase,1.0,0 -184694766,"Counter-Strike Source",play,18.2,0 -184694766,"Garry's Mod",purchase,1.0,0 -184694766,"Garry's Mod",play,15.3,0 -184694766,"Fistful of Frags",purchase,1.0,0 -184694766,"Fistful of Frags",play,4.9,0 -184694766,"Contagion",purchase,1.0,0 -184694766,"Contagion",play,3.6,0 -184694766,"Left 4 Dead 2",purchase,1.0,0 -184694766,"Left 4 Dead 2",play,2.9,0 -184694766,"PAYDAY 2",purchase,1.0,0 -184694766,"PAYDAY 2",play,2.1,0 -184694766,"SMITE",purchase,1.0,0 -184694766,"SMITE",play,2.1,0 -184694766,"Call of Duty Black Ops",purchase,1.0,0 -184694766,"Call of Duty Black Ops",play,2.0,0 -184694766,"WARMODE",purchase,1.0,0 -184694766,"WARMODE",play,0.8,0 -184694766,"TERA",purchase,1.0,0 -184694766,"TERA",play,0.8,0 -184694766,"Warface",purchase,1.0,0 -184694766,"Warface",play,0.7,0 -184694766,"PAYDAY The Heist",purchase,1.0,0 -184694766,"PAYDAY The Heist",play,0.5,0 -184694766,"Heroes & Generals",purchase,1.0,0 -184694766,"Heroes & Generals",play,0.3,0 -184694766,"Firefall",purchase,1.0,0 -184694766,"Firefall",play,0.3,0 -184694766,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -184694766,"Call of Duty Black Ops II - Multiplayer",play,0.1,0 -184694766,"NEOTOKYO",purchase,1.0,0 -184694766,"NEOTOKYO",play,0.1,0 -184694766,"Unturned",purchase,1.0,0 -184694766,"Nandeyanen!? - The 1st Stra",purchase,1.0,0 -184694766,"AdVenture Capitalist",purchase,1.0,0 -184694766,"Amnesia The Dark Descent",purchase,1.0,0 -184694766,"Blacklight Retribution",purchase,1.0,0 -184694766,"BLOCKADE 3D",purchase,1.0,0 -184694766,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -184694766,"Call of Duty Black Ops - Multiplayer OSX",purchase,1.0,0 -184694766,"Call of Duty Black Ops - OSX",purchase,1.0,0 -184694766,"Call of Duty Black Ops II",purchase,1.0,0 -184694766,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -184694766,"Counter-Strike Nexon Zombies",purchase,1.0,0 -184694766,"Dead Island Epidemic",purchase,1.0,0 -184694766,"Dirty Bomb",purchase,1.0,0 -184694766,"F.E.A.R. Online",purchase,1.0,0 -184694766,"Half-Life 2 Update",purchase,1.0,0 -184694766,"Loadout",purchase,1.0,0 -184694766,"Marvel Heroes 2015",purchase,1.0,0 -184694766,"Neverwinter",purchase,1.0,0 -184694766,"No More Room in Hell",purchase,1.0,0 -184694766,"Robocraft",purchase,1.0,0 -184694766,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -184694766,"War Thunder",purchase,1.0,0 -165356998,"Trove",purchase,1.0,0 -165356998,"Trove",play,25.0,0 -165356998,"Garry's Mod",purchase,1.0,0 -165356998,"Garry's Mod",play,5.3,0 -165356998,"Sniper Elite 3",purchase,1.0,0 -165356998,"Sniper Elite 3",play,4.4,0 -165356998,"Unturned",purchase,1.0,0 -165356998,"Unturned",play,4.2,0 -165356998,"Insurgency",purchase,1.0,0 -211488557,"Dota 2",purchase,1.0,0 -211488557,"Dota 2",play,5.4,0 -288651880,"Dota 2",purchase,1.0,0 -288651880,"Dota 2",play,1.0,0 -248216340,"Counter-Strike Global Offensive",purchase,1.0,0 -248216340,"Counter-Strike Global Offensive",play,526.0,0 -248216340,"PAYDAY 2",purchase,1.0,0 -248216340,"PAYDAY 2",play,4.4,0 -248216340,"Trove",purchase,1.0,0 -248216340,"Trove",play,3.6,0 -248216340,"FreeStyle2 Street Basketball",purchase,1.0,0 -248216340,"FreeStyle2 Street Basketball",play,1.0,0 -248216340,"Amnesia The Dark Descent",purchase,1.0,0 -248216340,"Amnesia The Dark Descent",play,0.5,0 -248216340,"World of Soccer online",purchase,1.0,0 -248216340,"World of Soccer online",play,0.4,0 -248216340,"Blacklight Retribution",purchase,1.0,0 -248216340,"Dead Island Epidemic",purchase,1.0,0 -248216340,"Elsword",purchase,1.0,0 -248216340,"Fistful of Frags",purchase,1.0,0 -248216340,"Forge",purchase,1.0,0 -248216340,"Gotham City Impostors Free To Play",purchase,1.0,0 -248216340,"GunZ 2 The Second Duel",purchase,1.0,0 -248216340,"No More Room in Hell",purchase,1.0,0 -248216340,"Path of Exile",purchase,1.0,0 -248216340,"RaceRoom Racing Experience ",purchase,1.0,0 -248216340,"Rise of Incarnates",purchase,1.0,0 -248216340,"Saira",purchase,1.0,0 -248216340,"TERA",purchase,1.0,0 -248216340,"The Expendabros",purchase,1.0,0 -248216340,"TOME Immortal Arena",purchase,1.0,0 -248216340,"Toribash",purchase,1.0,0 -248216340,"Unturned",purchase,1.0,0 -248216340,"Warface",purchase,1.0,0 -248216340,"World of Guns Gun Disassembly",purchase,1.0,0 -141707530,"Football Manager 2013",purchase,1.0,0 -141707530,"Football Manager 2013",play,154.0,0 -249623287,"Dota 2",purchase,1.0,0 -249623287,"Dota 2",play,1.8,0 -249623287,"Aura Kingdom",purchase,1.0,0 -249623287,"FreeStyle2 Street Basketball",purchase,1.0,0 -249623287,"Ragnarok Online 2",purchase,1.0,0 -235185723,"TERA",purchase,1.0,0 -235185723,"TERA",play,17.2,0 -235185723,"Unturned",purchase,1.0,0 -235185723,"Unturned",play,15.6,0 -235185723,"Team Fortress 2",purchase,1.0,0 -235185723,"Team Fortress 2",play,13.1,0 -235185723,"Heroes & Generals",purchase,1.0,0 -235185723,"Heroes & Generals",play,0.2,0 -168349102,"Dota 2",purchase,1.0,0 -168349102,"Dota 2",play,388.0,0 -168349102,"Dead Island Epidemic",purchase,1.0,0 -168349102,"Grand Chase",purchase,1.0,0 -168349102,"Marvel Heroes 2015",purchase,1.0,0 -168349102,"PlanetSide 2",purchase,1.0,0 -168349102,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -168349102,"Warframe",purchase,1.0,0 -296840195,"The Escapists",purchase,1.0,0 -296840195,"The Escapists",play,10.7,0 -103559489,"Team Fortress 2",purchase,1.0,0 -103559489,"Team Fortress 2",play,0.2,0 -103559489,"A.R.E.S.",purchase,1.0,0 -263021912,"Team Fortress 2",purchase,1.0,0 -263021912,"Team Fortress 2",play,0.6,0 -242860986,"Team Fortress 2",purchase,1.0,0 -242860986,"Team Fortress 2",play,1.8,0 -242860986,"Heroes & Generals",purchase,1.0,0 -242860986,"War Thunder",purchase,1.0,0 -143289534,"Dota 2",purchase,1.0,0 -143289534,"Dota 2",play,3.1,0 -134910543,"Dota 2",purchase,1.0,0 -134910543,"Dota 2",play,0.6,0 -94698408,"Team Fortress 2",purchase,1.0,0 -94698408,"Team Fortress 2",play,4.8,0 -94698408,"Alien Swarm",purchase,1.0,0 -94698408,"Alien Swarm",play,2.2,0 -73946533,"Alien Swarm",purchase,1.0,0 -73946533,"Alien Swarm",play,1.3,0 -113496097,"Dota 2",purchase,1.0,0 -113496097,"Dota 2",play,45.0,0 -113496097,"Magicka Wizard Wars",purchase,1.0,0 -183841616,"Dota 2",purchase,1.0,0 -183841616,"Dota 2",play,56.0,0 -112199961,"Borderlands 2",purchase,1.0,0 -112199961,"Borderlands 2",play,171.0,0 -112199961,"Assassin's Creed IV Black Flag",purchase,1.0,0 -112199961,"Assassin's Creed IV Black Flag",play,89.0,0 -112199961,"Rayman Legends",purchase,1.0,0 -112199961,"Rayman Legends",play,62.0,0 -112199961,"Wolfenstein The New Order",purchase,1.0,0 -112199961,"Wolfenstein The New Order",play,43.0,0 -112199961,"Borderlands The Pre-Sequel",purchase,1.0,0 -112199961,"Borderlands The Pre-Sequel",play,39.0,0 -112199961,"Ori and the Blind Forest",purchase,1.0,0 -112199961,"Ori and the Blind Forest",play,37.0,0 -112199961,"Rayman Origins",purchase,1.0,0 -112199961,"Rayman Origins",play,36.0,0 -112199961,"BioShock Infinite",purchase,1.0,0 -112199961,"BioShock Infinite",play,33.0,0 -112199961,"Dishonored",purchase,1.0,0 -112199961,"Dishonored",play,31.0,0 -112199961,"Assassin's Creed Brotherhood",purchase,1.0,0 -112199961,"Assassin's Creed Brotherhood",play,28.0,0 -112199961,"Dead Space 2",purchase,1.0,0 -112199961,"Dead Space 2",play,27.0,0 -112199961,"Rocket League",purchase,1.0,0 -112199961,"Rocket League",play,25.0,0 -112199961,"Deus Ex Human Revolution",purchase,1.0,0 -112199961,"Deus Ex Human Revolution",play,24.0,0 -112199961,"Worms Armageddon",purchase,1.0,0 -112199961,"Worms Armageddon",play,20.0,0 -112199961,"State of Decay",purchase,1.0,0 -112199961,"State of Decay",play,19.2,0 -112199961,"Duke Nukem Forever",purchase,1.0,0 -112199961,"Duke Nukem Forever",play,11.3,0 -112199961,"Far Cry 3",purchase,1.0,0 -112199961,"Far Cry 3",play,8.7,0 -112199961,"The Elder Scrolls V Skyrim",purchase,1.0,0 -112199961,"The Elder Scrolls V Skyrim",play,7.0,0 -112199961,"Super Meat Boy",purchase,1.0,0 -112199961,"Super Meat Boy",play,6.6,0 -112199961,"Age of Mythology Extended Edition",purchase,1.0,0 -112199961,"Age of Mythology Extended Edition",play,6.6,0 -112199961,"F.E.A.R. 3",purchase,1.0,0 -112199961,"F.E.A.R. 3",play,3.7,0 -112199961,"Don't Starve",purchase,1.0,0 -112199961,"Don't Starve",play,2.4,0 -112199961,"Empire Total War",purchase,1.0,0 -112199961,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -112199961,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -112199961,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -112199961,"Don't Starve Together Beta",purchase,1.0,0 -286926470,"Pillars of Eternity",purchase,1.0,0 -286926470,"Pillars of Eternity",play,46.0,0 -286926470,"Risen",purchase,1.0,0 -286926470,"Risen",play,25.0,0 -286926470,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -286926470,"METAL GEAR SOLID V THE PHANTOM PAIN",play,11.3,0 -286926470,"Total War ATTILA",purchase,1.0,0 -286926470,"Total War ATTILA",play,8.9,0 -286926470,"Titan Quest",purchase,1.0,0 -286926470,"Titan Quest",play,5.9,0 -286926470,"Titan Quest Immortal Throne",purchase,1.0,0 -286926470,"Titan Quest Immortal Throne",play,5.6,0 -286926470,"Galactic Civilizations III",purchase,1.0,0 -286926470,"Galactic Civilizations III",play,3.2,0 -286926470,"Path of Exile",purchase,1.0,0 -286926470,"Path of Exile",play,1.2,0 -286926470,"Team Fortress 2",purchase,1.0,0 -286926470,"Team Fortress 2",play,1.0,0 -286926470,"Risen 2 - Dark Waters",purchase,1.0,0 -286926470,"Risen 3 - Titan Lords",purchase,1.0,0 -268386968,"GunZ 2 The Second Duel",purchase,1.0,0 -268386968,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -65895047,"X3 Reunion",purchase,1.0,0 -65895047,"X3 Reunion",play,118.0,0 -65895047,"Frontline Tactics",purchase,1.0,0 -65895047,"Frontline Tactics",play,0.7,0 -65895047,"Double Action Boogaloo",purchase,1.0,0 -65895047,"Double Action Boogaloo",play,0.2,0 -65895047,"Team Fortress 2",purchase,1.0,0 -65895047,"Team Fortress 2",play,0.1,0 -65895047,"Counter-Strike Nexon Zombies",purchase,1.0,0 -65895047,"RaceRoom Racing Experience ",purchase,1.0,0 -65895047,"Warframe",purchase,1.0,0 -201495555,"OMSI 2",purchase,1.0,0 -201495555,"OMSI 2",play,217.0,0 -201495555,"Euro Truck Simulator 2",purchase,1.0,0 -201495555,"Euro Truck Simulator 2",play,12.1,0 -201495555,"Scania Truck Driving Simulator",purchase,1.0,0 -201495555,"Scania Truck Driving Simulator",play,2.6,0 -201495555,"Euro Truck Simulator",purchase,1.0,0 -201495555,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -152133307,"Dota 2",purchase,1.0,0 -152133307,"Dota 2",play,0.2,0 -201907389,"Marvel Heroes 2015",purchase,1.0,0 -201907389,"Metro 2033",purchase,1.0,0 -71777065,"Sid Meier's Civilization V",purchase,1.0,0 -71777065,"Sid Meier's Civilization V",play,479.0,0 -71777065,"The Elder Scrolls V Skyrim",purchase,1.0,0 -71777065,"The Elder Scrolls V Skyrim",play,189.0,0 -71777065,"Kerbal Space Program",purchase,1.0,0 -71777065,"Kerbal Space Program",play,143.0,0 -71777065,"Saints Row The Third",purchase,1.0,0 -71777065,"Saints Row The Third",play,63.0,0 -71777065,"DiRT 2",purchase,1.0,0 -71777065,"DiRT 2",play,54.0,0 -71777065,"Endless Space",purchase,1.0,0 -71777065,"Endless Space",play,52.0,0 -71777065,"Saints Row IV",purchase,1.0,0 -71777065,"Saints Row IV",play,47.0,0 -71777065,"Assassin's Creed II",purchase,1.0,0 -71777065,"Assassin's Creed II",play,42.0,0 -71777065,"Dead Island",purchase,1.0,0 -71777065,"Dead Island",play,39.0,0 -71777065,"Sid Meier's Pirates!",purchase,1.0,0 -71777065,"Sid Meier's Pirates!",play,38.0,0 -71777065,"Sleeping Dogs",purchase,1.0,0 -71777065,"Sleeping Dogs",play,36.0,0 -71777065,"Total War SHOGUN 2",purchase,1.0,0 -71777065,"Total War SHOGUN 2",play,32.0,0 -71777065,"Wolfenstein The New Order",purchase,1.0,0 -71777065,"Wolfenstein The New Order",play,29.0,0 -71777065,"Tomb Raider",purchase,1.0,0 -71777065,"Tomb Raider",play,27.0,0 -71777065,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -71777065,"Sid Meier's Civilization Beyond Earth",play,27.0,0 -71777065,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -71777065,"Batman Arkham Asylum GOTY Edition",play,24.0,0 -71777065,"Life Is Strange",purchase,1.0,0 -71777065,"Life Is Strange",play,24.0,0 -71777065,"Saints Row Gat out of Hell",purchase,1.0,0 -71777065,"Saints Row Gat out of Hell",play,23.0,0 -71777065,"Torchlight",purchase,1.0,0 -71777065,"Torchlight",play,22.0,0 -71777065,"DiRT 3",purchase,1.0,0 -71777065,"DiRT 3",play,14.9,0 -71777065,"BioShock Infinite",purchase,1.0,0 -71777065,"BioShock Infinite",play,14.7,0 -71777065,"Wolfenstein The Old Blood ",purchase,1.0,0 -71777065,"Wolfenstein The Old Blood ",play,14.0,0 -71777065,"Metro Last Light",purchase,1.0,0 -71777065,"Metro Last Light",play,13.1,0 -71777065,"Metro 2033",purchase,1.0,0 -71777065,"Metro 2033",play,11.7,0 -71777065,"Dishonored",purchase,1.0,0 -71777065,"Dishonored",play,11.3,0 -71777065,"Mass Effect",purchase,1.0,0 -71777065,"Mass Effect",play,8.6,0 -71777065,"Gratuitous Space Battles",purchase,1.0,0 -71777065,"Gratuitous Space Battles",play,8.3,0 -71777065,"Medal of Honor(TM) Single Player",purchase,1.0,0 -71777065,"Medal of Honor(TM) Single Player",play,7.4,0 -71777065,"Port Royale 3",purchase,1.0,0 -71777065,"Port Royale 3",play,6.5,0 -71777065,"Empire Total War",purchase,1.0,0 -71777065,"Empire Total War",play,5.5,0 -71777065,"Evoland",purchase,1.0,0 -71777065,"Evoland",play,5.2,0 -71777065,"Deus Ex Human Revolution",purchase,1.0,0 -71777065,"Deus Ex Human Revolution",play,4.7,0 -71777065,"Universe Sandbox",purchase,1.0,0 -71777065,"Universe Sandbox",play,3.3,0 -71777065,"Tomb Raider Anniversary",purchase,1.0,0 -71777065,"Tomb Raider Anniversary",play,2.8,0 -71777065,"From Dust",purchase,1.0,0 -71777065,"From Dust",play,2.6,0 -71777065,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -71777065,"S.T.A.L.K.E.R. Call of Pripyat",play,2.5,0 -71777065,"Portal",purchase,1.0,0 -71777065,"Portal",play,1.7,0 -71777065,"Fallout New Vegas",purchase,1.0,0 -71777065,"Fallout New Vegas",play,1.6,0 -71777065,"Darksiders",purchase,1.0,0 -71777065,"Darksiders",play,0.8,0 -71777065,"Rise of Flight United",purchase,1.0,0 -71777065,"Rise of Flight United",play,0.7,0 -71777065,"The Vanishing of Ethan Carter Redux",purchase,1.0,0 -71777065,"The Vanishing of Ethan Carter Redux",play,0.6,0 -71777065,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -71777065,"SEGA Genesis & Mega Drive Classics",play,0.5,0 -71777065,"Impossible Creatures",purchase,1.0,0 -71777065,"Impossible Creatures",play,0.5,0 -71777065,"Euro Truck Simulator 2",purchase,1.0,0 -71777065,"Euro Truck Simulator 2",play,0.4,0 -71777065,"Euro Fishing",purchase,1.0,0 -71777065,"Euro Fishing",play,0.4,0 -71777065,"Jurassic Park The Game",purchase,1.0,0 -71777065,"Jurassic Park The Game",play,0.2,0 -71777065,"Cities in Motion 2",purchase,1.0,0 -71777065,"Cities in Motion 2",play,0.2,0 -71777065,"Always Sometimes Monsters",purchase,1.0,0 -71777065,"Assassin's Creed",purchase,1.0,0 -71777065,"Assassin's Creed IV Black Flag",purchase,1.0,0 -71777065,"Batman Arkham City GOTY",purchase,1.0,0 -71777065,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -71777065,"Batman Arkham Origins",purchase,1.0,0 -71777065,"Blackguards",purchase,1.0,0 -71777065,"Borderlands",purchase,1.0,0 -71777065,"Borderlands 2",purchase,1.0,0 -71777065,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -71777065,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -71777065,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -71777065,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -71777065,"Company of Heroes",purchase,1.0,0 -71777065,"Company of Heroes (New Steam Version)",purchase,1.0,0 -71777065,"Company of Heroes 2",purchase,1.0,0 -71777065,"Company of Heroes Opposing Fronts",purchase,1.0,0 -71777065,"Company of Heroes Tales of Valor",purchase,1.0,0 -71777065,"Crazy Taxi",purchase,1.0,0 -71777065,"Crusader Kings II",purchase,1.0,0 -71777065,"Crusader Kings II Sons of Abraham",purchase,1.0,0 -71777065,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -71777065,"DiRT 3 Complete Edition",purchase,1.0,0 -71777065,"DiRT Showdown",purchase,1.0,0 -71777065,"F.E.A.R.",purchase,1.0,0 -71777065,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -71777065,"F.E.A.R. 3",purchase,1.0,0 -71777065,"F.E.A.R. Extraction Point",purchase,1.0,0 -71777065,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -71777065,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -71777065,"Fallout New Vegas Dead Money",purchase,1.0,0 -71777065,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -71777065,"Gratuitous Tank Battles",purchase,1.0,0 -71777065,"GRID",purchase,1.0,0 -71777065,"GRID 2",purchase,1.0,0 -71777065,"Grim Dawn",purchase,1.0,0 -71777065,"Grim Fandango Remastered",purchase,1.0,0 -71777065,"Guardians of Middle-earth",purchase,1.0,0 -71777065,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",purchase,1.0,0 -71777065,"Hitman Absolution",purchase,1.0,0 -71777065,"Insurgency",purchase,1.0,0 -71777065,"Just Cause",purchase,1.0,0 -71777065,"Just Cause 2",purchase,1.0,0 -71777065,"KickBeat Steam Edition",purchase,1.0,0 -71777065,"Lara Croft and the Guardian of Light",purchase,1.0,0 -71777065,"Magicka",purchase,1.0,0 -71777065,"Mass Effect 2",purchase,1.0,0 -71777065,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -71777065,"Medal of Honor Pre-Order",purchase,1.0,0 -71777065,"Mortal Kombat Kollection",purchase,1.0,0 -71777065,"MURDERED SOUL SUSPECT",purchase,1.0,0 -71777065,"Napoleon Total War",purchase,1.0,0 -71777065,"Never Alone (Kisima Ingitchuna)",purchase,1.0,0 -71777065,"PAYDAY 2",purchase,1.0,0 -71777065,"Portal 2",purchase,1.0,0 -71777065,"Red Faction Armageddon",purchase,1.0,0 -71777065,"Saints Row 2",purchase,1.0,0 -71777065,"Scribblenauts Unlimited",purchase,1.0,0 -71777065,"SEGA Bass Fishing",purchase,1.0,0 -71777065,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -71777065,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -71777065,"Sonic Adventure DX",purchase,1.0,0 -71777065,"Space Channel 5 Part 2",purchase,1.0,0 -71777065,"Star Wars - Battlefront II",purchase,1.0,0 -71777065,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -71777065,"Star Wars Dark Forces",purchase,1.0,0 -71777065,"Star Wars Empire at War Gold",purchase,1.0,0 -71777065,"Star Wars Knights of the Old Republic",purchase,1.0,0 -71777065,"Star Wars The Force Unleashed II",purchase,1.0,0 -71777065,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -71777065,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -71777065,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -71777065,"Star Wars Republic Commando",purchase,1.0,0 -71777065,"Star Wars Starfighter",purchase,1.0,0 -71777065,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -71777065,"Tesla Effect",purchase,1.0,0 -71777065,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -71777065,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -71777065,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -71777065,"The Lord of the Rings War in the North",purchase,1.0,0 -71777065,"The Vanishing of Ethan Carter",purchase,1.0,0 -71777065,"Titan Quest",purchase,1.0,0 -71777065,"Tomb Raider Legend",purchase,1.0,0 -71777065,"Total War ROME II - Emperor Edition",purchase,1.0,0 -71777065,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -71777065,"Viking Battle for Asgard",purchase,1.0,0 -71777065,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -71777065,"War of the Roses",purchase,1.0,0 -71777065,"War of the Roses Kingmaker",purchase,1.0,0 -71777065,"War of the Roses Balance Beta",purchase,1.0,0 -166124426,"Dota 2",purchase,1.0,0 -166124426,"Dota 2",play,0.9,0 -138561124,"Dota 2",purchase,1.0,0 -138561124,"Dota 2",play,1702.0,0 -107346948,"Team Fortress 2",purchase,1.0,0 -107346948,"Team Fortress 2",play,77.0,0 -10218563,"Path of Exile",purchase,1.0,0 -10218563,"Path of Exile",play,568.0,0 -10218563,"Star Trek Online",purchase,1.0,0 -10218563,"Star Trek Online",play,303.0,0 -10218563,"Dungeon Defenders",purchase,1.0,0 -10218563,"Dungeon Defenders",play,222.0,0 -10218563,"Warframe",purchase,1.0,0 -10218563,"Warframe",play,183.0,0 -10218563,"PAYDAY 2",purchase,1.0,0 -10218563,"PAYDAY 2",play,180.0,0 -10218563,"Middle-earth Shadow of Mordor",purchase,1.0,0 -10218563,"Middle-earth Shadow of Mordor",play,60.0,0 -10218563,"Lords Of The Fallen",purchase,1.0,0 -10218563,"Lords Of The Fallen",play,54.0,0 -10218563,"Rocket League",purchase,1.0,0 -10218563,"Rocket League",play,50.0,0 -10218563,"Dungeon Defenders II",purchase,1.0,0 -10218563,"Dungeon Defenders II",play,49.0,0 -10218563,"Batman Arkham Origins",purchase,1.0,0 -10218563,"Batman Arkham Origins",play,40.0,0 -10218563,"Pro Evolution Soccer 2014",purchase,1.0,0 -10218563,"Pro Evolution Soccer 2014",play,28.0,0 -10218563,"Batman Arkham Knight",purchase,1.0,0 -10218563,"Batman Arkham Knight",play,27.0,0 -10218563,"Batman Arkham City GOTY",purchase,1.0,0 -10218563,"Batman Arkham City GOTY",play,25.0,0 -10218563,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -10218563,"Dragon Age Origins - Ultimate Edition",play,22.0,0 -10218563,"Call of Duty Modern Warfare 2",purchase,1.0,0 -10218563,"Call of Duty Modern Warfare 2",play,22.0,0 -10218563,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -10218563,"The Witcher 2 Assassins of Kings Enhanced Edition",play,22.0,0 -10218563,"Dota 2",purchase,1.0,0 -10218563,"Dota 2",play,19.3,0 -10218563,"Mortal Kombat X",purchase,1.0,0 -10218563,"Mortal Kombat X",play,19.2,0 -10218563,"Sleeping Dogs",purchase,1.0,0 -10218563,"Sleeping Dogs",play,17.9,0 -10218563,"Tomb Raider",purchase,1.0,0 -10218563,"Tomb Raider",play,14.3,0 -10218563,"Grey Goo",purchase,1.0,0 -10218563,"Grey Goo",play,11.5,0 -10218563,"Magic 2014 ",purchase,1.0,0 -10218563,"Magic 2014 ",play,11.1,0 -10218563,"Counter-Strike Source",purchase,1.0,0 -10218563,"Counter-Strike Source",play,10.7,0 -10218563,"DiRT 2",purchase,1.0,0 -10218563,"DiRT 2",play,9.4,0 -10218563,"DayZ",purchase,1.0,0 -10218563,"DayZ",play,8.8,0 -10218563,"Darksiders II",purchase,1.0,0 -10218563,"Darksiders II",play,8.5,0 -10218563,"FINAL FANTASY VII",purchase,1.0,0 -10218563,"FINAL FANTASY VII",play,8.4,0 -10218563,"Sniper Elite V2",purchase,1.0,0 -10218563,"Sniper Elite V2",play,7.4,0 -10218563,"Dungeon Defenders Eternity",purchase,1.0,0 -10218563,"Dungeon Defenders Eternity",play,7.2,0 -10218563,"The Lord of the Rings War in the North",purchase,1.0,0 -10218563,"The Lord of the Rings War in the North",play,2.9,0 -10218563,"Hitman Absolution",purchase,1.0,0 -10218563,"Hitman Absolution",play,2.4,0 -10218563,"Flashback",purchase,1.0,0 -10218563,"Flashback",play,1.8,0 -10218563,"FINAL FANTASY XIII-2",purchase,1.0,0 -10218563,"FINAL FANTASY XIII-2",play,1.4,0 -10218563,"Titan Quest Immortal Throne",purchase,1.0,0 -10218563,"Titan Quest Immortal Throne",play,1.2,0 -10218563,"Titan Quest",purchase,1.0,0 -10218563,"Titan Quest",play,1.2,0 -10218563,"Just Cause 2",purchase,1.0,0 -10218563,"Just Cause 2",play,1.2,0 -10218563,"Half-Life 2 Episode One",purchase,1.0,0 -10218563,"Half-Life 2 Episode One",play,0.4,0 -10218563,"Port Royale 3",purchase,1.0,0 -10218563,"Port Royale 3",play,0.3,0 -10218563,"Supreme Commander 2",purchase,1.0,0 -10218563,"Supreme Commander 2",play,0.3,0 -10218563,"Torchlight II",purchase,1.0,0 -10218563,"Torchlight II",play,0.3,0 -10218563,"Viking Battle for Asgard",purchase,1.0,0 -10218563,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -10218563,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -10218563,"Batman Arkham Origins - Initiation",purchase,1.0,0 -10218563,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -10218563,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -10218563,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -10218563,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -10218563,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -10218563,"Darksiders",purchase,1.0,0 -10218563,"Darksiders II Deathinitive Edition",purchase,1.0,0 -10218563,"Darksiders II Soundtrack",purchase,1.0,0 -10218563,"Darksiders Soundtrack",purchase,1.0,0 -10218563,"ENSLAVED Odyssey to the West Premium Edition",purchase,1.0,0 -10218563,"Grey Goo - Emergence Campaign",purchase,1.0,0 -10218563,"Half-Life 2",purchase,1.0,0 -10218563,"Half-Life 2 Deathmatch",purchase,1.0,0 -10218563,"Half-Life 2 Lost Coast",purchase,1.0,0 -10218563,"Hitman 2 Silent Assassin",purchase,1.0,0 -10218563,"Hitman Blood Money",purchase,1.0,0 -10218563,"Hitman Codename 47",purchase,1.0,0 -10218563,"Hitman Contracts",purchase,1.0,0 -10218563,"Hitman Sniper Challenge",purchase,1.0,0 -10218563,"Ionball 2 Ionstorm",purchase,1.0,0 -10218563,"Just Cause",purchase,1.0,0 -10218563,"Mortal Kombat Legacy II - Ep. 1 Reunited in Macau",purchase,1.0,0 -10218563,"Mortal Kombat Legacy II - Ep. 2 The Fall of Liu Kang",purchase,1.0,0 -10218563,"Mortal Kombat Legacy II - Ep. 3 Kenshi's Origin",purchase,1.0,0 -10218563,"Mortal Kombat Legacy II - Ep. 4 Kenshi Encounters Ermac",purchase,1.0,0 -10218563,"Mortal Kombat Legacy II - Ep. 5 Kitana and Mileena",purchase,1.0,0 -10218563,"Mortal Kombat Legacy II - Ep. 6 Johnny Cage",purchase,1.0,0 -10218563,"Mortal Kombat Legacy II - Ep. 7 Scorpion and Sub-Zero (Part 1)",purchase,1.0,0 -10218563,"Mortal Kombat Legacy II - Ep. 8 Scorpion and Sub-Zero (Part 2)",purchase,1.0,0 -10218563,"Mortal Kombat Legacy II - Ep. 9 Liu Kang",purchase,1.0,0 -10218563,"Mortal Kombat Legacy II - Ep. 10 Liu Kang and Kung Lao",purchase,1.0,0 -10218563,"PAYDAY The Heist",purchase,1.0,0 -10218563,"Pro Evolution Soccer 2014 Online Pass",purchase,1.0,0 -10218563,"Sid Meier's Pirates!",purchase,1.0,0 -10218563,"Startopia",purchase,1.0,0 -10218563,"Supreme Commander 2 - Infinite War Battle Pack One",purchase,1.0,0 -10218563,"The Witcher Enhanced Edition",purchase,1.0,0 -10218563,"Urban Chaos",purchase,1.0,0 -303311021,"Team Fortress 2",purchase,1.0,0 -303311021,"Team Fortress 2",play,0.9,0 -163495807,"Dota 2",purchase,1.0,0 -163495807,"Dota 2",play,6.1,0 -222600281,"Robocraft",purchase,1.0,0 -222600281,"Robocraft",play,53.0,0 -222600281,"Dota 2",purchase,1.0,0 -222600281,"Dota 2",play,1.0,0 -128570709,"R.U.S.E",purchase,1.0,0 -128570709,"R.U.S.E",play,107.0,0 -128570709,"R.U.S.E.",purchase,1.0,0 -172871465,"AI War Fleet Command",purchase,1.0,0 -165851692,"F1 Race Stars",purchase,1.0,0 -165851692,"F1 Race Stars",play,3.5,0 -301243329,"SMITE",purchase,1.0,0 -301243329,"SMITE",play,1.2,0 -245708711,"Arma 2 Operation Arrowhead",purchase,1.0,0 -245708711,"Arma 2 Operation Arrowhead",play,43.0,0 -245708711,"Counter-Strike Global Offensive",purchase,1.0,0 -245708711,"Counter-Strike Global Offensive",play,21.0,0 -245708711,"in Space",purchase,1.0,0 -245708711,"Arma 2 DayZ Mod",purchase,1.0,0 -245708711,"Arma 2",purchase,1.0,0 -245708711,"8BitBoy",purchase,1.0,0 -245708711,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -245708711,"Dirty Bomb",purchase,1.0,0 -245708711,"Quake Live",purchase,1.0,0 -217852939,"Dota 2",purchase,1.0,0 -217852939,"Dota 2",play,54.0,0 -217852939,"Stronghold Kingdoms",purchase,1.0,0 -66680972,"Counter-Strike Source",purchase,1.0,0 -66680972,"Counter-Strike Source",play,92.0,0 -66680972,"Counter-Strike Global Offensive",purchase,1.0,0 -66680972,"Counter-Strike Global Offensive",play,6.1,0 -147600704,"Dota 2",purchase,1.0,0 -147600704,"Dota 2",play,1.4,0 -122782609,"Team Fortress 2",purchase,1.0,0 -122782609,"Team Fortress 2",play,2.1,0 -254368479,"Neverwinter",purchase,1.0,0 -254368479,"Neverwinter",play,0.7,0 -254368479,"Plague Inc Evolved",purchase,1.0,0 -254368479,"Plague Inc Evolved",play,0.6,0 -254368479,"Camera Obscura",purchase,1.0,0 -254368479,"Clicker Heroes",purchase,1.0,0 -100719181,"Dota 2",purchase,1.0,0 -100719181,"Dota 2",play,290.0,0 -100719181,"Counter-Strike Global Offensive",purchase,1.0,0 -100719181,"Counter-Strike Global Offensive",play,61.0,0 -100719181,"Total War SHOGUN 2",purchase,1.0,0 -100719181,"Total War SHOGUN 2",play,40.0,0 -100719181,"Garry's Mod",purchase,1.0,0 -100719181,"Garry's Mod",play,29.0,0 -100719181,"Team Fortress 2",purchase,1.0,0 -100719181,"Team Fortress 2",play,29.0,0 -100719181,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -100719181,"Rising Storm/Red Orchestra 2 Multiplayer",play,26.0,0 -100719181,"Rome Total War",purchase,1.0,0 -100719181,"Rome Total War",play,16.0,0 -100719181,"DC Universe Online",purchase,1.0,0 -100719181,"DC Universe Online",play,15.7,0 -100719181,"Terraria",purchase,1.0,0 -100719181,"Terraria",play,11.7,0 -100719181,"Unturned",purchase,1.0,0 -100719181,"Unturned",play,9.0,0 -100719181,"XCOM Enemy Unknown",purchase,1.0,0 -100719181,"XCOM Enemy Unknown",play,8.5,0 -100719181,"Left 4 Dead 2",purchase,1.0,0 -100719181,"Left 4 Dead 2",play,7.0,0 -100719181,"Fishing Planet",purchase,1.0,0 -100719181,"Fishing Planet",play,3.4,0 -100719181,"Order of War Challenge",purchase,1.0,0 -100719181,"Order of War Challenge",play,3.1,0 -100719181,"Warframe",purchase,1.0,0 -100719181,"Warframe",play,2.1,0 -100719181,"Trove",purchase,1.0,0 -100719181,"Trove",play,1.7,0 -100719181,"Source Filmmaker",purchase,1.0,0 -100719181,"Source Filmmaker",play,1.5,0 -100719181,"FreeStyle2 Street Basketball",purchase,1.0,0 -100719181,"FreeStyle2 Street Basketball",play,1.0,0 -100719181,"Heroes & Generals",purchase,1.0,0 -100719181,"Heroes & Generals",play,0.9,0 -100719181,"Everlasting Summer",purchase,1.0,0 -100719181,"Everlasting Summer",play,0.4,0 -100719181,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -100719181,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.2,0 -100719181,"Aura Kingdom",purchase,1.0,0 -100719181,"Aura Kingdom",play,0.1,0 -100719181,"Counter-Strike Source",purchase,1.0,0 -100719181,"BLOCKADE 3D",purchase,1.0,0 -100719181,"Block N Load",purchase,1.0,0 -100719181,"Counter-Strike",purchase,1.0,0 -100719181,"Counter-Strike Condition Zero",purchase,1.0,0 -100719181,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -100719181,"Counter-Strike Nexon Zombies",purchase,1.0,0 -100719181,"Cry of Fear",purchase,1.0,0 -100719181,"Day of Defeat",purchase,1.0,0 -100719181,"Day of Defeat Source",purchase,1.0,0 -100719181,"Deadbreed",purchase,1.0,0 -100719181,"Dead Island Epidemic",purchase,1.0,0 -100719181,"Deathmatch Classic",purchase,1.0,0 -100719181,"Half-Life",purchase,1.0,0 -100719181,"Half-Life 2",purchase,1.0,0 -100719181,"Half-Life 2 Deathmatch",purchase,1.0,0 -100719181,"Half-Life 2 Episode One",purchase,1.0,0 -100719181,"Half-Life 2 Episode Two",purchase,1.0,0 -100719181,"Half-Life 2 Lost Coast",purchase,1.0,0 -100719181,"Half-Life Blue Shift",purchase,1.0,0 -100719181,"Half-Life Opposing Force",purchase,1.0,0 -100719181,"Half-Life Source",purchase,1.0,0 -100719181,"Half-Life Deathmatch Source",purchase,1.0,0 -100719181,"Left 4 Dead",purchase,1.0,0 -100719181,"Loadout",purchase,1.0,0 -100719181,"Marvel Heroes 2015",purchase,1.0,0 -100719181,"Neverwinter",purchase,1.0,0 -100719181,"No More Room in Hell",purchase,1.0,0 -100719181,"Nosgoth",purchase,1.0,0 -100719181,"Only If",purchase,1.0,0 -100719181,"Portal",purchase,1.0,0 -100719181,"Portal 2",purchase,1.0,0 -100719181,"Red Crucible Firestorm",purchase,1.0,0 -100719181,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -100719181,"Ricochet",purchase,1.0,0 -100719181,"Team Fortress Classic",purchase,1.0,0 -100719181,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -48985770,"Empire Total War",purchase,1.0,0 -48985770,"Empire Total War",play,0.2,0 -279391666,"Dota 2",purchase,1.0,0 -279391666,"Dota 2",play,118.0,0 -10253354,"Empire Total War",purchase,1.0,0 -10253354,"Empire Total War",play,272.0,0 -10253354,"Total War ROME II - Emperor Edition",purchase,1.0,0 -10253354,"Total War ROME II - Emperor Edition",play,235.0,0 -10253354,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -10253354,"Call of Duty Modern Warfare 2 - Multiplayer",play,128.0,0 -10253354,"Total War SHOGUN 2",purchase,1.0,0 -10253354,"Total War SHOGUN 2",play,109.0,0 -10253354,"Deus Ex Human Revolution",purchase,1.0,0 -10253354,"Deus Ex Human Revolution",play,83.0,0 -10253354,"GameMaker Studio",purchase,1.0,0 -10253354,"GameMaker Studio",play,81.0,0 -10253354,"NBA 2K13",purchase,1.0,0 -10253354,"NBA 2K13",play,70.0,0 -10253354,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -10253354,"Call of Duty Black Ops - Multiplayer",play,65.0,0 -10253354,"Fallout 4",purchase,1.0,0 -10253354,"Fallout 4",play,62.0,0 -10253354,"L.A. Noire",purchase,1.0,0 -10253354,"L.A. Noire",play,61.0,0 -10253354,"F1 2015",purchase,1.0,0 -10253354,"F1 2015",play,58.0,0 -10253354,"Mafia II",purchase,1.0,0 -10253354,"Mafia II",play,53.0,0 -10253354,"Sniper Elite V2",purchase,1.0,0 -10253354,"Sniper Elite V2",play,51.0,0 -10253354,"Grand Theft Auto V",purchase,1.0,0 -10253354,"Grand Theft Auto V",play,49.0,0 -10253354,"F1 2011",purchase,1.0,0 -10253354,"F1 2011",play,49.0,0 -10253354,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -10253354,"Tom Clancy's Splinter Cell Blacklist",play,48.0,0 -10253354,"Kerbal Space Program",purchase,1.0,0 -10253354,"Kerbal Space Program",play,44.0,0 -10253354,"Max Payne 3",purchase,1.0,0 -10253354,"Max Payne 3",play,41.0,0 -10253354,"Mount & Blade Warband",purchase,1.0,0 -10253354,"Mount & Blade Warband",play,41.0,0 -10253354,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -10253354,"METAL GEAR SOLID V THE PHANTOM PAIN",play,40.0,0 -10253354,"F1 2013",purchase,1.0,0 -10253354,"F1 2013",play,37.0,0 -10253354,"Dead Island",purchase,1.0,0 -10253354,"Dead Island",play,37.0,0 -10253354,"XCOM Enemy Unknown",purchase,1.0,0 -10253354,"XCOM Enemy Unknown",play,36.0,0 -10253354,"Hitman Absolution",purchase,1.0,0 -10253354,"Hitman Absolution",play,34.0,0 -10253354,"Crysis 2",purchase,1.0,0 -10253354,"Crysis 2",play,33.0,0 -10253354,"Left 4 Dead 2",purchase,1.0,0 -10253354,"Left 4 Dead 2",play,33.0,0 -10253354,"BioShock Infinite",purchase,1.0,0 -10253354,"BioShock Infinite",play,29.0,0 -10253354,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -10253354,"Tom Clancy's Splinter Cell Conviction",play,29.0,0 -10253354,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -10253354,"Vampire The Masquerade - Bloodlines",play,28.0,0 -10253354,"Far Cry 4",purchase,1.0,0 -10253354,"Far Cry 4",play,28.0,0 -10253354,"Prison Architect",purchase,1.0,0 -10253354,"Prison Architect",play,26.0,0 -10253354,"Quantum of Solace",purchase,1.0,0 -10253354,"Quantum of Solace",play,23.0,0 -10253354,"Arma 3",purchase,1.0,0 -10253354,"Arma 3",play,22.0,0 -10253354,"Blood Bowl 2",purchase,1.0,0 -10253354,"Blood Bowl 2",play,22.0,0 -10253354,"Sleeping Dogs",purchase,1.0,0 -10253354,"Sleeping Dogs",play,22.0,0 -10253354,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -10253354,"Call of Duty Ghosts - Multiplayer",play,20.0,0 -10253354,"Call of Duty Black Ops II",purchase,1.0,0 -10253354,"Call of Duty Black Ops II",play,18.7,0 -10253354,"The Crew",purchase,1.0,0 -10253354,"The Crew",play,17.4,0 -10253354,"Thief",purchase,1.0,0 -10253354,"Thief",play,17.0,0 -10253354,"Wasteland 2",purchase,1.0,0 -10253354,"Wasteland 2",play,14.9,0 -10253354,"Spec Ops The Line",purchase,1.0,0 -10253354,"Spec Ops The Line",play,14.8,0 -10253354,"RAGE",purchase,1.0,0 -10253354,"RAGE",play,14.7,0 -10253354,"Sherlock Holmes versus Jack the Ripper",purchase,1.0,0 -10253354,"Sherlock Holmes versus Jack the Ripper",play,13.9,0 -10253354,"Cities Skylines",purchase,1.0,0 -10253354,"Cities Skylines",play,13.7,0 -10253354,"Dishonored",purchase,1.0,0 -10253354,"Dishonored",play,13.4,0 -10253354,"Papers, Please",purchase,1.0,0 -10253354,"Papers, Please",play,13.3,0 -10253354,"Project CARS",purchase,1.0,0 -10253354,"Project CARS",play,13.1,0 -10253354,"F.E.A.R.",purchase,1.0,0 -10253354,"F.E.A.R.",play,13.1,0 -10253354,"Mafia",purchase,1.0,0 -10253354,"Mafia",play,12.9,0 -10253354,"Grand Theft Auto IV",purchase,1.0,0 -10253354,"Grand Theft Auto IV",play,12.8,0 -10253354,"Sherlock Holmes Nemesis",purchase,1.0,0 -10253354,"Sherlock Holmes Nemesis",play,12.8,0 -10253354,"World of Guns Gun Disassembly",purchase,1.0,0 -10253354,"World of Guns Gun Disassembly",play,12.5,0 -10253354,"Batman Arkham Origins",purchase,1.0,0 -10253354,"Batman Arkham Origins",play,11.0,0 -10253354,"Wargame European Escalation",purchase,1.0,0 -10253354,"Wargame European Escalation",play,10.5,0 -10253354,"Aliens vs. Predator",purchase,1.0,0 -10253354,"Aliens vs. Predator",play,10.3,0 -10253354,"Wolfenstein The New Order",purchase,1.0,0 -10253354,"Wolfenstein The New Order",play,10.2,0 -10253354,"Watch_Dogs",purchase,1.0,0 -10253354,"Watch_Dogs",play,9.7,0 -10253354,"Arma 2 Operation Arrowhead",purchase,1.0,0 -10253354,"Arma 2 Operation Arrowhead",play,9.7,0 -10253354,"IL-2 Sturmovik Cliffs of Dover",purchase,1.0,0 -10253354,"IL-2 Sturmovik Cliffs of Dover",play,9.4,0 -10253354,"Call of Duty Black Ops",purchase,1.0,0 -10253354,"Call of Duty Black Ops",play,9.2,0 -10253354,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -10253354,"Rising Storm/Red Orchestra 2 Multiplayer",play,9.1,0 -10253354,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -10253354,"F.E.A.R. 2 Project Origin",play,9.0,0 -10253354,"Fallout New Vegas",purchase,1.0,0 -10253354,"Fallout New Vegas",play,7.9,0 -10253354,"Alpha Protocol",purchase,1.0,0 -10253354,"Alpha Protocol",play,7.6,0 -10253354,"The Witcher 3 Wild Hunt",purchase,1.0,0 -10253354,"The Witcher 3 Wild Hunt",play,7.2,0 -10253354,"Call of Duty Ghosts",purchase,1.0,0 -10253354,"Call of Duty Ghosts",play,7.2,0 -10253354,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -10253354,"Call of Duty Black Ops II - Multiplayer",play,6.9,0 -10253354,"FTL Faster Than Light",purchase,1.0,0 -10253354,"FTL Faster Than Light",play,6.8,0 -10253354,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -10253354,"Star Wars Jedi Knight Jedi Academy",play,6.5,0 -10253354,"Railroad Tycoon 3",purchase,1.0,0 -10253354,"Railroad Tycoon 3",play,6.0,0 -10253354,"Tropico 5",purchase,1.0,0 -10253354,"Tropico 5",play,6.0,0 -10253354,"F.E.A.R. 3",purchase,1.0,0 -10253354,"F.E.A.R. 3",play,5.8,0 -10253354,"Magicka",purchase,1.0,0 -10253354,"Magicka",play,5.5,0 -10253354,"Dying Light",purchase,1.0,0 -10253354,"Dying Light",play,5.3,0 -10253354,"Medal of Honor(TM) Single Player",purchase,1.0,0 -10253354,"Medal of Honor(TM) Single Player",play,5.2,0 -10253354,"Euro Truck Simulator 2",purchase,1.0,0 -10253354,"Euro Truck Simulator 2",play,5.0,0 -10253354,"Hitman Blood Money",purchase,1.0,0 -10253354,"Hitman Blood Money",play,4.9,0 -10253354,"Plague Inc Evolved",purchase,1.0,0 -10253354,"Plague Inc Evolved",play,4.9,0 -10253354,"Way of the Samurai 4",purchase,1.0,0 -10253354,"Way of the Samurai 4",play,4.9,0 -10253354,"Sid Meier's Railroads!",purchase,1.0,0 -10253354,"Sid Meier's Railroads!",play,4.3,0 -10253354,"Spore",purchase,1.0,0 -10253354,"Spore",play,4.3,0 -10253354,"Sid Meier's Pirates!",purchase,1.0,0 -10253354,"Sid Meier's Pirates!",play,4.1,0 -10253354,"Tom Clancy's Ghost Recon Future Soldier",purchase,1.0,0 -10253354,"Tom Clancy's Ghost Recon Future Soldier",play,4.0,0 -10253354,"Thief Deadly Shadows",purchase,1.0,0 -10253354,"Thief Deadly Shadows",play,4.0,0 -10253354,"Lucius II",purchase,1.0,0 -10253354,"Lucius II",play,3.1,0 -10253354,"Karate Master 2 Knock Down Blow",purchase,1.0,0 -10253354,"Karate Master 2 Knock Down Blow",play,3.1,0 -10253354,"Wargame Red Dragon",purchase,1.0,0 -10253354,"Wargame Red Dragon",play,3.0,0 -10253354,"Mount & Blade With Fire and Sword",purchase,1.0,0 -10253354,"Mount & Blade With Fire and Sword",play,2.8,0 -10253354,"The Testament of Sherlock Holmes",purchase,1.0,0 -10253354,"The Testament of Sherlock Holmes",play,2.7,0 -10253354,"Sniper Elite 3",purchase,1.0,0 -10253354,"Sniper Elite 3",play,2.6,0 -10253354,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -10253354,"RollerCoaster Tycoon 3 Platinum!",play,2.5,0 -10253354,"Crusader Kings II",purchase,1.0,0 -10253354,"Crusader Kings II",play,2.3,0 -10253354,"Assetto Corsa",purchase,1.0,0 -10253354,"Assetto Corsa",play,2.2,0 -10253354,"Hitman 2 Silent Assassin",purchase,1.0,0 -10253354,"Hitman 2 Silent Assassin",play,2.2,0 -10253354,"Ryse Son of Rome",purchase,1.0,0 -10253354,"Ryse Son of Rome",play,2.1,0 -10253354,"Middle-earth Shadow of Mordor",purchase,1.0,0 -10253354,"Middle-earth Shadow of Mordor",play,2.0,0 -10253354,"Take On Helicopters",purchase,1.0,0 -10253354,"Take On Helicopters",play,2.0,0 -10253354,"Mirror's Edge",purchase,1.0,0 -10253354,"Mirror's Edge",play,1.9,0 -10253354,"Call of Duty Modern Warfare 2",purchase,1.0,0 -10253354,"Call of Duty Modern Warfare 2",play,1.7,0 -10253354,"Monaco",purchase,1.0,0 -10253354,"Monaco",play,1.6,0 -10253354,"Indiana Jones and the Last Crusade",purchase,1.0,0 -10253354,"Indiana Jones and the Last Crusade",play,1.6,0 -10253354,"Tropico 4",purchase,1.0,0 -10253354,"Tropico 4",play,1.5,0 -10253354,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -10253354,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,1.4,0 -10253354,"Tomb Raider",purchase,1.0,0 -10253354,"Tomb Raider",play,1.4,0 -10253354,"ArchonClassic",purchase,1.0,0 -10253354,"ArchonClassic",play,1.3,0 -10253354,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -10253354,"Operation Flashpoint Dragon Rising",play,1.3,0 -10253354,"Sleeping Dogs Definitive Edition",purchase,1.0,0 -10253354,"Sleeping Dogs Definitive Edition",play,1.1,0 -10253354,"Tom Clancy's Rainbow Six Vegas",purchase,1.0,0 -10253354,"Tom Clancy's Rainbow Six Vegas",play,1.0,0 -10253354,"Sir, You Are Being Hunted",purchase,1.0,0 -10253354,"Sir, You Are Being Hunted",play,0.9,0 -10253354,"Freedom Force",purchase,1.0,0 -10253354,"Freedom Force",play,0.9,0 -10253354,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -10253354,"Batman Arkham Asylum GOTY Edition",play,0.9,0 -10253354,"Brothers in Arms Hell's Highway",purchase,1.0,0 -10253354,"Brothers in Arms Hell's Highway",play,0.9,0 -10253354,"Door Kickers",purchase,1.0,0 -10253354,"Door Kickers",play,0.8,0 -10253354,"Hacknet",purchase,1.0,0 -10253354,"Hacknet",play,0.7,0 -10253354,"Grand Theft Auto San Andreas",purchase,1.0,0 -10253354,"Grand Theft Auto San Andreas",play,0.7,0 -10253354,"The Evil Within",purchase,1.0,0 -10253354,"The Evil Within",play,0.7,0 -10253354,"Spore Creepy & Cute Parts Pack",purchase,1.0,0 -10253354,"Spore Creepy & Cute Parts Pack",play,0.6,0 -10253354,"Deadly Premonition The Director's Cut",purchase,1.0,0 -10253354,"Deadly Premonition The Director's Cut",play,0.6,0 -10253354,"Jagged Alliance Flashback",purchase,1.0,0 -10253354,"Jagged Alliance Flashback",play,0.5,0 -10253354,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -10253354,"METAL GEAR SOLID V GROUND ZEROES",play,0.4,0 -10253354,"System Shock 2",purchase,1.0,0 -10253354,"System Shock 2",play,0.4,0 -10253354,"Hitman Sniper Challenge",purchase,1.0,0 -10253354,"Hitman Sniper Challenge",play,0.4,0 -10253354,"Assassin's Creed Revelations",purchase,1.0,0 -10253354,"Assassin's Creed Revelations",play,0.4,0 -10253354,"TransOcean The Shipping Company",purchase,1.0,0 -10253354,"TransOcean The Shipping Company",play,0.4,0 -10253354,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -10253354,"Max Payne 2 The Fall of Max Payne",play,0.3,0 -10253354,"Hearts of Iron III",purchase,1.0,0 -10253354,"Hearts of Iron III",play,0.3,0 -10253354,"IL-2 Sturmovik 1946",purchase,1.0,0 -10253354,"IL-2 Sturmovik 1946",play,0.2,0 -10253354,"Kingdom Wars",purchase,1.0,0 -10253354,"Kingdom Wars",play,0.2,0 -10253354,"LEGO The Lord of the Rings",purchase,1.0,0 -10253354,"LEGO The Lord of the Rings",play,0.1,0 -10253354,"Far Cry 3",purchase,1.0,0 -10253354,"Far Cry 3",play,0.1,0 -10253354,"Alan Wake",purchase,1.0,0 -10253354,"Alan Wake",play,0.1,0 -10253354,"Mark of the Ninja",purchase,1.0,0 -10253354,"Mark of the Ninja",play,0.1,0 -10253354,"DEFCON",purchase,1.0,0 -10253354,"Ticket to Ride",purchase,1.0,0 -10253354,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -10253354,"Silent Hunter Wolves of the Pacific U-Boat Missions",purchase,1.0,0 -10253354,"Silent Hunter Wolves of the Pacific",purchase,1.0,0 -10253354,"Thief Gold",purchase,1.0,0 -10253354,"7,62 High Calibre",purchase,1.0,0 -10253354,"Arma 2",purchase,1.0,0 -10253354,"Wasteland 1 - The Original Classic",purchase,1.0,0 -10253354,"DCS World",purchase,1.0,0 -10253354,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -10253354,"Uplink",purchase,1.0,0 -10253354,"Deus Ex Revision",purchase,1.0,0 -10253354,"Brothers in Arms Earned in Blood",purchase,1.0,0 -10253354,"Brothers in Arms Road to Hill 30",purchase,1.0,0 -10253354,"RollerCoaster Tycoon 2 Triple Thrill Pack",purchase,1.0,0 -10253354,"Fallout",purchase,1.0,0 -10253354,"Empire TV Tycoon",purchase,1.0,0 -10253354,"Jagged Alliance 2 Gold Pack",purchase,1.0,0 -10253354,"Hitman Contracts",purchase,1.0,0 -10253354,"Hacker Evolution - Untold",purchase,1.0,0 -10253354,"Digital Combat Simulator A-10C Warthog",purchase,1.0,0 -10253354,"Sid Meier's Covert Action (Classic)",purchase,1.0,0 -10253354,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -10253354,"Arma 3 Zeus",purchase,1.0,0 -10253354,"Binary Domain",purchase,1.0,0 -10253354,"BioShock",purchase,1.0,0 -10253354,"Birth Of America",purchase,1.0,0 -10253354,"Blood Bowl 2 - Lizardmen",purchase,1.0,0 -10253354,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -10253354,"Counter-Strike Global Offensive",purchase,1.0,0 -10253354,"Counter-Strike Source",purchase,1.0,0 -10253354,"Crysis 2",purchase,1.0,0 -10253354,"Darkest Hour Europe '44-'45",purchase,1.0,0 -10253354,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -10253354,"Darwinia",purchase,1.0,0 -10253354,"Day of Defeat Source",purchase,1.0,0 -10253354,"Deus Ex Game of the Year Edition",purchase,1.0,0 -10253354,"Door Kickers Soundtrack",purchase,1.0,0 -10253354,"F.E.A.R. Extraction Point",purchase,1.0,0 -10253354,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -10253354,"Fallout 2",purchase,1.0,0 -10253354,"Fallout Tactics",purchase,1.0,0 -10253354,"Flame Over",purchase,1.0,0 -10253354,"Freedom Force vs. the 3rd Reich",purchase,1.0,0 -10253354,"Grand Theft Auto",purchase,1.0,0 -10253354,"Grand Theft Auto 2",purchase,1.0,0 -10253354,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -10253354,"Grand Theft Auto San Andreas",purchase,1.0,0 -10253354,"Grand Theft Auto Vice City",purchase,1.0,0 -10253354,"Grand Theft Auto Vice City",purchase,1.0,0 -10253354,"Grand Theft Auto III",purchase,1.0,0 -10253354,"Grand Theft Auto III",purchase,1.0,0 -10253354,"Hacker Evolution",purchase,1.0,0 -10253354,"Half-Life 2",purchase,1.0,0 -10253354,"Half-Life 2 Deathmatch",purchase,1.0,0 -10253354,"Half-Life 2 Lost Coast",purchase,1.0,0 -10253354,"Hearts of Iron III German II Sprite Pack",purchase,1.0,0 -10253354,"Hitman Codename 47",purchase,1.0,0 -10253354,"Indiana Jones and the Fate of Atlantis",purchase,1.0,0 -10253354,"Jagged Alliance 2 Gold Unfinished Business",purchase,1.0,0 -10253354,"Just Cause 2",purchase,1.0,0 -10253354,"Loom",purchase,1.0,0 -10253354,"Mare Nostrum",purchase,1.0,0 -10253354,"Mark of the Ninja Special Edition DLC",purchase,1.0,0 -10253354,"Max Payne",purchase,1.0,0 -10253354,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -10253354,"Medal of Honor Pre-Order",purchase,1.0,0 -10253354,"Metro 2033",purchase,1.0,0 -10253354,"Metro Last Light",purchase,1.0,0 -10253354,"Multiwinia",purchase,1.0,0 -10253354,"Napoleon Total War",purchase,1.0,0 -10253354,"Naval War Arctic Circle",purchase,1.0,0 -10253354,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -10253354,"Operation Flashpoint Red River",purchase,1.0,0 -10253354,"Pirates! Gold Plus (Classic)",purchase,1.0,0 -10253354,"Portal 2",purchase,1.0,0 -10253354,"Rag Doll Kung Fu",purchase,1.0,0 -10253354,"Railroad Tycoon 2 Platinum",purchase,1.0,0 -10253354,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -10253354,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -10253354,"Rogue Legacy",purchase,1.0,0 -10253354,"RollerCoaster Tycoon Deluxe",purchase,1.0,0 -10253354,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -10253354,"Sid Meier's Civilization V",purchase,1.0,0 -10253354,"Spore Galactic Adventures",purchase,1.0,0 -10253354,"Still Life",purchase,1.0,0 -10253354,"The Dig",purchase,1.0,0 -10253354,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -10253354,"Thief - The Bank Heist",purchase,1.0,0 -10253354,"Thief 2",purchase,1.0,0 -10253354,"Ticket to Ride - Europe",purchase,1.0,0 -10253354,"Ticket to Ride - Legendary Asia",purchase,1.0,0 -10253354,"Ticket to Ride - Switzerland",purchase,1.0,0 -10253354,"Ticket to Ride - USA 1910",purchase,1.0,0 -10253354,"Tom Clancy's Splinter Cell",purchase,1.0,0 -10253354,"Tom Clancy's Splinter Cell Chaos Theory",purchase,1.0,0 -10253354,"Tom Clancy's Splinter Cell Double Agent",purchase,1.0,0 -10253354,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -10253354,"Wasteland 2 Director's Cut",purchase,1.0,0 -129339750,"Dota 2",purchase,1.0,0 -129339750,"Dota 2",play,3.7,0 -52545855,"Team Fortress 2",purchase,1.0,0 -52545855,"Team Fortress 2",play,492.0,0 -52545855,"Mount & Blade Warband",purchase,1.0,0 -52545855,"Mount & Blade Warband",play,207.0,0 -52545855,"Sins of a Solar Empire Trinity",purchase,1.0,0 -52545855,"Sins of a Solar Empire Trinity",play,36.0,0 -52545855,"War Thunder",purchase,1.0,0 -52545855,"War Thunder",play,6.3,0 -52545855,"Dota 2",purchase,1.0,0 -52545855,"Dota 2",play,1.1,0 -52545855,"Star Conflict",purchase,1.0,0 -52545855,"Star Conflict",play,0.2,0 -52545855,"Gear Up",purchase,1.0,0 -240429307,"Dota 2",purchase,1.0,0 -240429307,"Dota 2",play,14.0,0 -138329382,"Age of Empires II HD Edition",purchase,1.0,0 -138329382,"Age of Empires II HD Edition",play,8.1,0 -191817434,"Dota 2",purchase,1.0,0 -191817434,"Dota 2",play,1.6,0 -102465357,"PAYDAY 2",purchase,1.0,0 -102465357,"PAYDAY 2",play,35.0,0 -102465357,"Counter-Strike Global Offensive",purchase,1.0,0 -102465357,"Counter-Strike Global Offensive",play,4.7,0 -77387906,"Counter-Strike Condition Zero",purchase,1.0,0 -77387906,"Counter-Strike Condition Zero",play,2.4,0 -77387906,"Day of Defeat",purchase,1.0,0 -77387906,"Day of Defeat",play,0.2,0 -77387906,"Counter-Strike",purchase,1.0,0 -77387906,"Counter-Strike",play,0.2,0 -77387906,"Ricochet",purchase,1.0,0 -77387906,"Ricochet",play,0.1,0 -77387906,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -77387906,"Counter-Strike Source",purchase,1.0,0 -77387906,"Deathmatch Classic",purchase,1.0,0 -134247395,"Dota 2",purchase,1.0,0 -134247395,"Dota 2",play,1.5,0 -73597661,"Call of Duty Black Ops",purchase,1.0,0 -73597661,"Call of Duty Black Ops",play,2.1,0 -73597661,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -209869297,"NBA 2K15",purchase,1.0,0 -209869297,"NBA 2K15",play,245.0,0 -209869297,"H1Z1",purchase,1.0,0 -209869297,"H1Z1",play,36.0,0 -209869297,"Mount & Blade Warband",purchase,1.0,0 -209869297,"Mount & Blade Warband",play,30.0,0 -209869297,"PlanetSide 2",purchase,1.0,0 -209869297,"PlanetSide 2",play,19.5,0 -209869297,"Hitman Absolution",purchase,1.0,0 -209869297,"Hitman Absolution",play,16.0,0 -209869297,"FreeStyle2 Street Basketball",purchase,1.0,0 -209869297,"FreeStyle2 Street Basketball",play,14.6,0 -209869297,"Thief",purchase,1.0,0 -209869297,"Thief",play,8.2,0 -209869297,"Heroes & Generals",purchase,1.0,0 -209869297,"Heroes & Generals",play,5.7,0 -209869297,"Garry's Mod",purchase,1.0,0 -209869297,"Garry's Mod",play,5.2,0 -209869297,"Verdun",purchase,1.0,0 -209869297,"Verdun",play,3.0,0 -209869297,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -209869297,"Injustice Gods Among Us Ultimate Edition",play,0.9,0 -209869297,"Team Fortress 2",purchase,1.0,0 -209869297,"Team Fortress 2",play,0.8,0 -209869297,"Hitman Sniper Challenge",purchase,1.0,0 -209869297,"Hitman Sniper Challenge",play,0.2,0 -209869297,"H1Z1 Test Server",purchase,1.0,0 -209869297,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -95037089,"The Elder Scrolls V Skyrim",purchase,1.0,0 -95037089,"The Elder Scrolls V Skyrim",play,273.0,0 -95037089,"Grand Theft Auto V",purchase,1.0,0 -95037089,"Grand Theft Auto V",play,65.0,0 -95037089,"Fallout 4",purchase,1.0,0 -95037089,"Fallout 4",play,50.0,0 -95037089,"The Witcher 3 Wild Hunt",purchase,1.0,0 -95037089,"The Witcher 3 Wild Hunt",play,18.4,0 -95037089,"Mass Effect",purchase,1.0,0 -95037089,"Mass Effect",play,9.0,0 -95037089,"Age of Empires II HD Edition",purchase,1.0,0 -95037089,"Age of Empires II HD Edition",play,4.9,0 -95037089,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -95037089,"The Elder Scrolls IV Oblivion ",play,4.5,0 -95037089,"Grand Theft Auto Vice City",purchase,1.0,0 -95037089,"Grand Theft Auto Vice City",play,1.9,0 -95037089,"Banished",purchase,1.0,0 -95037089,"Banished",play,1.0,0 -95037089,"Test Drive Unlimited 2",purchase,1.0,0 -95037089,"Test Drive Unlimited 2",play,0.5,0 -95037089,"Age of Empires II HD The Forgotten",purchase,1.0,0 -95037089,"Grand Theft Auto Vice City",purchase,1.0,0 -95037089,"Mass Effect 2",purchase,1.0,0 -95037089,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -95037089,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -95037089,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -95037089,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -95037089,"The Witcher 3 Wild Hunt - Expansion Pass",purchase,1.0,0 -299211913,"Age of Empires II HD Edition",purchase,1.0,0 -299211913,"Age of Empires II HD Edition",play,9.4,0 -299211913,"Metaverse Construction Kit",purchase,1.0,0 -299211913,"Metaverse Construction Kit",play,0.2,0 -299211913,"Krosmaster Arena",purchase,1.0,0 -179152437,"Team Fortress 2",purchase,1.0,0 -179152437,"Team Fortress 2",play,19.8,0 -118374482,"Team Fortress 2",purchase,1.0,0 -118374482,"Team Fortress 2",play,0.5,0 -45811573,"Half-Life Source",purchase,1.0,0 -45811573,"Half-Life Source",play,18.2,0 -45811573,"Half-Life 2",purchase,1.0,0 -45811573,"Half-Life 2",play,1.6,0 -45811573,"Counter-Strike Source",purchase,1.0,0 -45811573,"Half-Life 2 Deathmatch",purchase,1.0,0 -45811573,"Half-Life 2 Lost Coast",purchase,1.0,0 -45811573,"Half-Life Deathmatch Source",purchase,1.0,0 -199243806,"Team Fortress 2",purchase,1.0,0 -199243806,"Team Fortress 2",play,0.3,0 -199243806,"AirMech",purchase,1.0,0 -199243806,"Amazing World",purchase,1.0,0 -199243806,"Blacklight Retribution",purchase,1.0,0 -199243806,"Counter-Strike Nexon Zombies",purchase,1.0,0 -199243806,"Dead Island Epidemic",purchase,1.0,0 -199243806,"Fistful of Frags",purchase,1.0,0 -199243806,"GunZ 2 The Second Duel",purchase,1.0,0 -199243806,"HAWKEN",purchase,1.0,0 -199243806,"Loadout",purchase,1.0,0 -199243806,"No More Room in Hell",purchase,1.0,0 -199243806,"Only If",purchase,1.0,0 -199243806,"PlanetSide 2",purchase,1.0,0 -199243806,"Quake Live",purchase,1.0,0 -199243806,"Realm of the Mad God",purchase,1.0,0 -199243806,"Robocraft",purchase,1.0,0 -199243806,"Super Crate Box",purchase,1.0,0 -199243806,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -199243806,"Toribash",purchase,1.0,0 -199243806,"Unturned",purchase,1.0,0 -199243806,"Warface",purchase,1.0,0 -199243806,"Warframe",purchase,1.0,0 -199243806,"You Have to Win the Game",purchase,1.0,0 -198878241,"Counter-Strike Nexon Zombies",purchase,1.0,0 -198878241,"Counter-Strike Nexon Zombies",play,24.0,0 -64645022,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -64645022,"Call of Duty Modern Warfare 2 - Multiplayer",play,9.2,0 -64645022,"Call of Duty Modern Warfare 2",purchase,1.0,0 -64645022,"Call of Duty Modern Warfare 2",play,2.1,0 -121865430,"Dota 2",purchase,1.0,0 -121865430,"Dota 2",play,1998.0,0 -121865430,"DARK SOULS II",purchase,1.0,0 -121865430,"DARK SOULS II",play,78.0,0 -121865430,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -121865430,"Dark Souls Prepare to Die Edition",play,55.0,0 -121865430,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -121865430,"Divinity Original Sin Enhanced Edition",play,22.0,0 -121865430,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -121865430,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,19.6,0 -121865430,"Everlasting Summer",purchase,1.0,0 -121865430,"Everlasting Summer",play,9.2,0 -121865430,"Dragon Age Origins",purchase,1.0,0 -121865430,"Dragon Age Origins",play,7.6,0 -121865430,"Full Mojo Rampage",purchase,1.0,0 -121865430,"Full Mojo Rampage",play,4.5,0 -121865430,"Left 4 Dead 2",purchase,1.0,0 -121865430,"Left 4 Dead 2",play,4.1,0 -121865430,"Magicka",purchase,1.0,0 -121865430,"Magicka",play,2.8,0 -121865430,"Divinity Original Sin",purchase,1.0,0 -121865430,"Divinity Original Sin",play,2.2,0 -121865430,"Trine 2",purchase,1.0,0 -121865430,"Trine 2",play,1.4,0 -121865430,"Dragon Nest Europe",purchase,1.0,0 -121865430,"Dragon Nest Europe",play,0.4,0 -121865430,"Enclave",purchase,1.0,0 -121865430,"Enclave",play,0.3,0 -121865430,"SMITE",purchase,1.0,0 -121865430,"SMITE",play,0.2,0 -121865430,"Anomaly Korea",purchase,1.0,0 -121865430,"Eets Munchies",purchase,1.0,0 -121865430,"Gun Monkeys",purchase,1.0,0 -121865430,"Serious Sam Double D XXL",purchase,1.0,0 -121865430,"Sid Meier's Ace Patrol",purchase,1.0,0 -121865430,"The Basement Collection",purchase,1.0,0 -121865430,"Worms Reloaded",purchase,1.0,0 -30519870,"Left 4 Dead",purchase,1.0,0 -30519870,"Left 4 Dead",play,814.0,0 -30519870,"Left 4 Dead 2",purchase,1.0,0 -30519870,"Left 4 Dead 2",play,635.0,0 -30519870,"Counter-Strike Source",purchase,1.0,0 -30519870,"Counter-Strike Source",play,483.0,0 -30519870,"Team Fortress 2",purchase,1.0,0 -30519870,"Team Fortress 2",play,387.0,0 -30519870,"Garry's Mod",purchase,1.0,0 -30519870,"Garry's Mod",play,376.0,0 -30519870,"Battlefield Bad Company 2",purchase,1.0,0 -30519870,"Battlefield Bad Company 2",play,97.0,0 -30519870,"Half-Life 2 Deathmatch",purchase,1.0,0 -30519870,"Half-Life 2 Deathmatch",play,59.0,0 -30519870,"Killing Floor",purchase,1.0,0 -30519870,"Killing Floor",play,51.0,0 -30519870,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -30519870,"Grand Theft Auto Episodes from Liberty City",play,31.0,0 -30519870,"Half-Life 2",purchase,1.0,0 -30519870,"Half-Life 2",play,26.0,0 -30519870,"Max Payne 3",purchase,1.0,0 -30519870,"Max Payne 3",play,10.2,0 -30519870,"Alien Swarm",purchase,1.0,0 -30519870,"Alien Swarm",play,9.7,0 -30519870,"Crysis Warhead",purchase,1.0,0 -30519870,"Crysis Warhead",play,8.8,0 -30519870,"Just Cause 2",purchase,1.0,0 -30519870,"Just Cause 2",play,7.0,0 -30519870,"Fieldrunners 2",purchase,1.0,0 -30519870,"Fieldrunners 2",play,6.3,0 -30519870,"Grand Theft Auto Vice City",purchase,1.0,0 -30519870,"Grand Theft Auto Vice City",play,6.2,0 -30519870,"Syberia",purchase,1.0,0 -30519870,"Syberia",play,5.6,0 -30519870,"Half-Life 2 Episode One",purchase,1.0,0 -30519870,"Half-Life 2 Episode One",play,5.5,0 -30519870,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -30519870,"Fallout 3 - Game of the Year Edition",play,5.1,0 -30519870,"Metro 2033",purchase,1.0,0 -30519870,"Metro 2033",play,4.5,0 -30519870,"The Longest Journey",purchase,1.0,0 -30519870,"The Longest Journey",play,4.4,0 -30519870,"Portal",purchase,1.0,0 -30519870,"Portal",play,4.3,0 -30519870,"Half-Life 2 Episode Two",purchase,1.0,0 -30519870,"Half-Life 2 Episode Two",play,3.8,0 -30519870,"Grand Theft Auto IV",purchase,1.0,0 -30519870,"Grand Theft Auto IV",play,3.8,0 -30519870,"Far Cry 3",purchase,1.0,0 -30519870,"Far Cry 3",play,3.8,0 -30519870,"Medal of Honor(TM) Single Player",purchase,1.0,0 -30519870,"Medal of Honor(TM) Single Player",play,3.7,0 -30519870,"Sniper Ghost Warrior",purchase,1.0,0 -30519870,"Sniper Ghost Warrior",play,3.4,0 -30519870,"L.A. Noire",purchase,1.0,0 -30519870,"L.A. Noire",play,3.1,0 -30519870,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -30519870,"Max Payne 2 The Fall of Max Payne",play,2.9,0 -30519870,"Deadlight",purchase,1.0,0 -30519870,"Deadlight",play,2.7,0 -30519870,"Grand Theft Auto San Andreas",purchase,1.0,0 -30519870,"Grand Theft Auto San Andreas",play,2.6,0 -30519870,"BioShock",purchase,1.0,0 -30519870,"BioShock",play,2.4,0 -30519870,"Supreme Commander 2",purchase,1.0,0 -30519870,"Supreme Commander 2",play,2.4,0 -30519870,"Mafia",purchase,1.0,0 -30519870,"Mafia",play,2.3,0 -30519870,"Eternal Silence",purchase,1.0,0 -30519870,"Eternal Silence",play,2.1,0 -30519870,"Aliens vs. Predator",purchase,1.0,0 -30519870,"Aliens vs. Predator",play,2.0,0 -30519870,"PAYDAY 2",purchase,1.0,0 -30519870,"PAYDAY 2",play,2.0,0 -30519870,"Alan Wake",purchase,1.0,0 -30519870,"Alan Wake",play,1.9,0 -30519870,"Cry of Fear",purchase,1.0,0 -30519870,"Cry of Fear",play,1.9,0 -30519870,"Machinarium",purchase,1.0,0 -30519870,"Machinarium",play,1.4,0 -30519870,"Sniper Elite Nazi Zombie Army",purchase,1.0,0 -30519870,"Sniper Elite Nazi Zombie Army",play,1.4,0 -30519870,"F.E.A.R. 3",purchase,1.0,0 -30519870,"F.E.A.R. 3",play,1.3,0 -30519870,"CastleStorm",purchase,1.0,0 -30519870,"CastleStorm",play,1.3,0 -30519870,"Hotline Miami",purchase,1.0,0 -30519870,"Hotline Miami",play,1.1,0 -30519870,"Crysis Wars",purchase,1.0,0 -30519870,"Crysis Wars",play,1.1,0 -30519870,"DOOM 3",purchase,1.0,0 -30519870,"DOOM 3",play,1.0,0 -30519870,"Besiege",purchase,1.0,0 -30519870,"Besiege",play,0.7,0 -30519870,"Depth",purchase,1.0,0 -30519870,"Depth",play,0.6,0 -30519870,"Mass Effect",purchase,1.0,0 -30519870,"Mass Effect",play,0.6,0 -30519870,"Star Wars Empire at War Gold",purchase,1.0,0 -30519870,"Star Wars Empire at War Gold",play,0.5,0 -30519870,"Half-Life 2 Lost Coast",purchase,1.0,0 -30519870,"Half-Life 2 Lost Coast",play,0.5,0 -30519870,"Still Life",purchase,1.0,0 -30519870,"Still Life",play,0.5,0 -30519870,"Synergy",purchase,1.0,0 -30519870,"Synergy",play,0.5,0 -30519870,"Borderlands",purchase,1.0,0 -30519870,"Borderlands",play,0.5,0 -30519870,"Chivalry Medieval Warfare",purchase,1.0,0 -30519870,"Chivalry Medieval Warfare",play,0.4,0 -30519870,"Max Payne",purchase,1.0,0 -30519870,"Max Payne",play,0.4,0 -30519870,"Bully Scholarship Edition",purchase,1.0,0 -30519870,"Bully Scholarship Edition",play,0.4,0 -30519870,"Far Cry 3 Blood Dragon",purchase,1.0,0 -30519870,"Far Cry 3 Blood Dragon",play,0.4,0 -30519870,"War of the Roses",purchase,1.0,0 -30519870,"War of the Roses",play,0.4,0 -30519870,"Aliens Colonial Marines",purchase,1.0,0 -30519870,"Aliens Colonial Marines",play,0.4,0 -30519870,"Mark of the Ninja",purchase,1.0,0 -30519870,"Mark of the Ninja",play,0.3,0 -30519870,"Cannon Brawl",purchase,1.0,0 -30519870,"Cannon Brawl",play,0.3,0 -30519870,"No More Room in Hell",purchase,1.0,0 -30519870,"No More Room in Hell",play,0.3,0 -30519870,"Condemned Criminal Origins",purchase,1.0,0 -30519870,"Condemned Criminal Origins",play,0.3,0 -30519870,"Alpha Protocol",purchase,1.0,0 -30519870,"Alpha Protocol",play,0.3,0 -30519870,"Final DOOM",purchase,1.0,0 -30519870,"Final DOOM",play,0.3,0 -30519870,"Age of Empires II HD Edition",purchase,1.0,0 -30519870,"Age of Empires II HD Edition",play,0.2,0 -30519870,"The Ultimate DOOM",purchase,1.0,0 -30519870,"The Ultimate DOOM",play,0.2,0 -30519870,"Command and Conquer 4 Tiberian Twilight",purchase,1.0,0 -30519870,"Command and Conquer 4 Tiberian Twilight",play,0.2,0 -30519870,"Pinball Arcade",purchase,1.0,0 -30519870,"Pinball Arcade",play,0.1,0 -30519870,"Deus Ex Game of the Year Edition",purchase,1.0,0 -30519870,"War Inc. Battlezone",purchase,1.0,0 -30519870,"Tom Clancy's Rainbow Six Vegas",purchase,1.0,0 -30519870,"Post Mortem",purchase,1.0,0 -30519870,"Alan Wake's American Nightmare",purchase,1.0,0 -30519870,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -30519870,"DOOM II Hell on Earth",purchase,1.0,0 -30519870,"Dreamfall The Longest Journey",purchase,1.0,0 -30519870,"Grand Theft Auto San Andreas",purchase,1.0,0 -30519870,"Grand Theft Auto Vice City",purchase,1.0,0 -30519870,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -30519870,"Mass Effect 2",purchase,1.0,0 -30519870,"Master Levels for DOOM II",purchase,1.0,0 -30519870,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -30519870,"Medal of Honor Pre-Order",purchase,1.0,0 -30519870,"Nikopol Secrets of the Immortals",purchase,1.0,0 -30519870,"Patch testing for Chivalry",purchase,1.0,0 -30519870,"Scratches Director's Cut",purchase,1.0,0 -30519870,"Still Life 2",purchase,1.0,0 -30519870,"Syberia 2",purchase,1.0,0 -30519870,"War of the Roses Kingmaker",purchase,1.0,0 -30519870,"War of the Roses Balance Beta",purchase,1.0,0 -75438596,"Sid Meier's Civilization V",purchase,1.0,0 -75438596,"Sid Meier's Civilization V",play,0.7,0 -252983257,"Counter-Strike Global Offensive",purchase,1.0,0 -252983257,"Counter-Strike Global Offensive",play,1.8,0 -252983257,"The Forest",purchase,1.0,0 -252983257,"The Forest",play,0.4,0 -252983257,"Clown House (Palyao Evi)",purchase,1.0,0 -252983257,"Clown House (Palyao Evi)",play,0.2,0 -252983257,"Counter-Strike Nexon Zombies",purchase,1.0,0 -170201716,"Dota 2",purchase,1.0,0 -170201716,"Dota 2",play,234.0,0 -170201716,"XCOM Enemy Unknown",purchase,1.0,0 -170201716,"XCOM Enemy Unknown",play,109.0,0 -170201716,"Left 4 Dead 2",purchase,1.0,0 -170201716,"Left 4 Dead 2",play,88.0,0 -170201716,"Robocraft",purchase,1.0,0 -170201716,"Robocraft",play,77.0,0 -170201716,"Might & Magic Heroes VI",purchase,1.0,0 -170201716,"Might & Magic Heroes VI",play,71.0,0 -170201716,"Dirty Bomb",purchase,1.0,0 -170201716,"Dirty Bomb",play,54.0,0 -170201716,"Counter-Strike",purchase,1.0,0 -170201716,"Counter-Strike",play,54.0,0 -170201716,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -170201716,"Tom Clancy's Splinter Cell Blacklist",play,39.0,0 -170201716,"PAYDAY 2",purchase,1.0,0 -170201716,"PAYDAY 2",play,37.0,0 -170201716,"Dragon Nest Europe",purchase,1.0,0 -170201716,"Dragon Nest Europe",play,36.0,0 -170201716,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -170201716,"Tom Clancy's Ghost Recon Phantoms - EU",play,29.0,0 -170201716,"Aliens Colonial Marines",purchase,1.0,0 -170201716,"Aliens Colonial Marines",play,27.0,0 -170201716,"GRID 2",purchase,1.0,0 -170201716,"GRID 2",play,26.0,0 -170201716,"Star Conflict",purchase,1.0,0 -170201716,"Star Conflict",play,13.8,0 -170201716,"The Mighty Quest For Epic Loot",purchase,1.0,0 -170201716,"The Mighty Quest For Epic Loot",play,13.3,0 -170201716,"AirMech",purchase,1.0,0 -170201716,"AirMech",play,12.3,0 -170201716,"Killing Floor",purchase,1.0,0 -170201716,"Killing Floor",play,9.5,0 -170201716,"Survarium",purchase,1.0,0 -170201716,"Survarium",play,5.5,0 -170201716,"Counter-Strike Global Offensive",purchase,1.0,0 -170201716,"Counter-Strike Global Offensive",play,5.3,0 -170201716,"METAL SLUG DEFENSE",purchase,1.0,0 -170201716,"METAL SLUG DEFENSE",play,4.4,0 -170201716,"Defiance",purchase,1.0,0 -170201716,"Defiance",play,3.2,0 -170201716,"Portal 2",purchase,1.0,0 -170201716,"Portal 2",play,2.8,0 -170201716,"Dogs of War Online - Beta",purchase,1.0,0 -170201716,"Dogs of War Online - Beta",play,2.7,0 -170201716,"Black Fire",purchase,1.0,0 -170201716,"Black Fire",play,2.6,0 -170201716,"Unturned",purchase,1.0,0 -170201716,"Unturned",play,2.0,0 -170201716,"Shadows of War",purchase,1.0,0 -170201716,"Shadows of War",play,1.8,0 -170201716,"Heroes & Generals",purchase,1.0,0 -170201716,"Heroes & Generals",play,1.6,0 -170201716,"Nosgoth",purchase,1.0,0 -170201716,"Nosgoth",play,1.6,0 -170201716,"Magicka Wizard Wars",purchase,1.0,0 -170201716,"Magicka Wizard Wars",play,1.4,0 -170201716,"Block N Load",purchase,1.0,0 -170201716,"Block N Load",play,0.9,0 -170201716,"Run and Fire",purchase,1.0,0 -170201716,"Run and Fire",play,0.8,0 -170201716,"HAWKEN",purchase,1.0,0 -170201716,"HAWKEN",play,0.7,0 -170201716,"Crash Time II",purchase,1.0,0 -170201716,"Crash Time II",play,0.5,0 -170201716,"Counter-Strike Nexon Zombies",purchase,1.0,0 -170201716,"Counter-Strike Nexon Zombies",play,0.4,0 -170201716,"sZone-Online",purchase,1.0,0 -170201716,"sZone-Online",play,0.4,0 -170201716,"Prime World",purchase,1.0,0 -170201716,"Prime World",play,0.1,0 -170201716,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -170201716,"Serious Sam Classic The First Encounter",purchase,1.0,0 -170201716,"Overlord II",purchase,1.0,0 -170201716,"Counter-Strike Condition Zero",purchase,1.0,0 -170201716,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -170201716,"Counter-Strike Source",purchase,1.0,0 -170201716,"Firefall",purchase,1.0,0 -170201716,"Killing Floor Uncovered",purchase,1.0,0 -170201716,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -170201716,"Serious Sam Classics Revolution",purchase,1.0,0 -170201716,"XCOM Enemy Within",purchase,1.0,0 -64019582,"Terraria",purchase,1.0,0 -64019582,"Terraria",play,53.0,0 -64019582,"Supreme Commander 2",purchase,1.0,0 -64019582,"Supreme Commander 2",play,47.0,0 -64019582,"The Sims(TM) 3",purchase,1.0,0 -64019582,"The Sims(TM) 3",play,6.3,0 -64019582,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -64019582,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,3.0,0 -64019582,"Guild Wars",purchase,1.0,0 -64019582,"Guild Wars",play,1.1,0 -64019582,"Team Fortress 2",purchase,1.0,0 -64019582,"Team Fortress 2",play,0.5,0 -64019582,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -64019582,"Guild Wars Game of the Year",purchase,1.0,0 -64019582,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -256863125,"Unturned",purchase,1.0,0 -256863125,"Unturned",play,13.1,0 -57912466,"Football Manager 2010",purchase,1.0,0 -57912466,"Football Manager 2010",play,38.0,0 -280539948,"Dota 2",purchase,1.0,0 -280539948,"Dota 2",play,52.0,0 -87548320,"Counter-Strike",purchase,1.0,0 -87548320,"Counter-Strike",play,4.5,0 -87548320,"Day of Defeat",purchase,1.0,0 -87548320,"Day of Defeat",play,0.2,0 -87548320,"Deathmatch Classic",purchase,1.0,0 -87548320,"Ricochet",purchase,1.0,0 -87548320,"Counter-Strike Condition Zero",purchase,1.0,0 -87548320,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -99303066,"R.U.S.E",purchase,1.0,0 -99303066,"R.U.S.E",play,0.9,0 -99303066,"Call of Duty Modern Warfare 3",purchase,1.0,0 -99303066,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -99303066,"R.U.S.E.",purchase,1.0,0 -125353580,"Tomb Raider",purchase,1.0,0 -125353580,"Tomb Raider",play,126.0,0 -125353580,"Lara Croft and the Temple of Osiris",purchase,1.0,0 -125353580,"Lara Croft and the Temple of Osiris",play,12.8,0 -125353580,"Deadfall Adventures",purchase,1.0,0 -125353580,"Deadfall Adventures",play,2.2,0 -291478350,"Transformice",purchase,1.0,0 -291478350,"Transformice",play,0.6,0 -190060278,"Counter-Strike Global Offensive",purchase,1.0,0 -190060278,"Counter-Strike Global Offensive",play,325.0,0 -190060278,"Trove",purchase,1.0,0 -190060278,"Trove",play,60.0,0 -190060278,"Warframe",purchase,1.0,0 -190060278,"Warframe",play,42.0,0 -190060278,"Robocraft",purchase,1.0,0 -190060278,"Robocraft",play,38.0,0 -190060278,"Unturned",purchase,1.0,0 -190060278,"Unturned",play,11.5,0 -190060278,"Dungeon Defenders II",purchase,1.0,0 -190060278,"Dungeon Defenders II",play,7.8,0 -190060278,"Heroes of Scene",purchase,1.0,0 -190060278,"Heroes of Scene",play,4.3,0 -190060278,"SMITE",purchase,1.0,0 -190060278,"SMITE",play,3.6,0 -190060278,"Block N Load",purchase,1.0,0 -190060278,"Block N Load",play,2.5,0 -190060278,"War Thunder",purchase,1.0,0 -190060278,"War Thunder",play,2.2,0 -190060278,"Star Conflict",purchase,1.0,0 -190060278,"Star Conflict",play,2.0,0 -190060278,"Aftermath",purchase,1.0,0 -190060278,"Aftermath",play,2.0,0 -190060278,"Clicker Heroes",purchase,1.0,0 -190060278,"Clicker Heroes",play,1.5,0 -190060278,"No More Room in Hell",purchase,1.0,0 -190060278,"No More Room in Hell",play,1.2,0 -190060278,"Dirty Bomb",purchase,1.0,0 -190060278,"Dirty Bomb",play,1.0,0 -190060278,"Stonehearth",purchase,1.0,0 -190060278,"Stonehearth",play,0.9,0 -190060278,"DiggerOnline",purchase,1.0,0 -190060278,"DiggerOnline",play,0.5,0 -190060278,"Team Fortress 2",purchase,1.0,0 -190060278,"Team Fortress 2",play,0.4,0 -190060278,"Copa Petrobras de Marcas",purchase,1.0,0 -190060278,"Copa Petrobras de Marcas",play,0.2,0 -190060278,"Survarium",purchase,1.0,0 -190060278,"Survarium",play,0.1,0 -190060278,"Rustbucket Rumble",purchase,1.0,0 -190060278,"Rustbucket Rumble",play,0.1,0 -190060278,"WARMODE",purchase,1.0,0 -190060278,"Nosgoth",purchase,1.0,0 -190060278,"Quake Live",purchase,1.0,0 -190060278,"Viridi",purchase,1.0,0 -190060278,"Tribes Ascend",purchase,1.0,0 -190060278,"Batla",purchase,1.0,0 -190060278,"CaesarIA",purchase,1.0,0 -190060278,"Double Action Boogaloo",purchase,1.0,0 -190060278,"Fistful of Frags",purchase,1.0,0 -190060278,"Fractured Space",purchase,1.0,0 -190060278,"Gear Up",purchase,1.0,0 -190060278,"Guns and Robots",purchase,1.0,0 -190060278,"HAWKEN",purchase,1.0,0 -190060278,"Panzar",purchase,1.0,0 -190060278,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -190060278,"sZone-Online",purchase,1.0,0 -190060278,"Tinboy",purchase,1.0,0 -190060278,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -190060278,"UberStrike",purchase,1.0,0 -19668647,"Battlefield Bad Company 2",purchase,1.0,0 -19668647,"Battlefield Bad Company 2",play,75.0,0 -19668647,"Left 4 Dead",purchase,1.0,0 -19668647,"Left 4 Dead",play,71.0,0 -19668647,"Empire Total War",purchase,1.0,0 -19668647,"Empire Total War",play,12.7,0 -19668647,"Rome Total War",purchase,1.0,0 -19668647,"Rome Total War",play,12.3,0 -19668647,"Star Wars Knights of the Old Republic",purchase,1.0,0 -19668647,"Star Wars Knights of the Old Republic",play,12.1,0 -19668647,"Medieval II Total War",purchase,1.0,0 -19668647,"Medieval II Total War",play,8.6,0 -19668647,"Counter-Strike Global Offensive",purchase,1.0,0 -19668647,"Counter-Strike Global Offensive",play,4.4,0 -19668647,"Sid Meier's Civilization IV",purchase,1.0,0 -19668647,"Sid Meier's Civilization IV",play,2.6,0 -19668647,"Total War SHOGUN 2",purchase,1.0,0 -19668647,"Total War SHOGUN 2",play,2.3,0 -19668647,"Left 4 Dead 2",purchase,1.0,0 -19668647,"Left 4 Dead 2",play,1.9,0 -19668647,"Counter-Strike Source",purchase,1.0,0 -19668647,"Counter-Strike Source",play,0.6,0 -19668647,"Medieval II Total War Kingdoms",purchase,1.0,0 -19668647,"Medieval II Total War Kingdoms",play,0.5,0 -19668647,"Sid Meier's Civilization IV",purchase,1.0,0 -130145396,"Red Faction Armageddon",purchase,1.0,0 -130145396,"Red Faction Armageddon",play,50.0,0 -144845684,"Grand Theft Auto V",purchase,1.0,0 -144845684,"Grand Theft Auto V",play,28.0,0 -144845684,"Dota 2",purchase,1.0,0 -144845684,"Dota 2",play,23.0,0 -144845684,"Loadout",purchase,1.0,0 -144845684,"Loadout",play,13.2,0 -144845684,"Counter-Strike Global Offensive",purchase,1.0,0 -144845684,"Counter-Strike Global Offensive",play,9.1,0 -144845684,"Robocraft",purchase,1.0,0 -144845684,"Robocraft",play,8.0,0 -144845684,"Warframe",purchase,1.0,0 -144845684,"Warframe",play,2.1,0 -144845684,"Dead Island Epidemic",purchase,1.0,0 -144845684,"Dead Island Epidemic",play,2.1,0 -144845684,"Impossible Creatures",purchase,1.0,0 -144845684,"Impossible Creatures",play,1.6,0 -144845684,"Blender 2.76b",purchase,1.0,0 -144845684,"Blender 2.76b",play,0.5,0 -144845684,"Rise of Incarnates",purchase,1.0,0 -144845684,"Rise of Incarnates",play,0.4,0 -144845684,"Quake Live",purchase,1.0,0 -144845684,"Quake Live",play,0.3,0 -144845684,"Guns and Robots",purchase,1.0,0 -144845684,"The Mighty Quest For Epic Loot",purchase,1.0,0 -252811208,"Team Fortress 2",purchase,1.0,0 -252811208,"Team Fortress 2",play,4.8,0 -252811208,"F.E.A.R.",purchase,1.0,0 -252811208,"F.E.A.R.",play,1.1,0 -252811208,"No More Room in Hell",purchase,1.0,0 -252811208,"No More Room in Hell",play,0.6,0 -252811208,"F.E.A.R. Extraction Point",purchase,1.0,0 -252811208,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -297730803,"Dota 2",purchase,1.0,0 -297730803,"Dota 2",play,76.0,0 -138453978,"Dota 2",purchase,1.0,0 -138453978,"Dota 2",play,19.5,0 -271073348,"Unturned",purchase,1.0,0 -271073348,"Unturned",play,90.0,0 -271073348,"Team Fortress 2",purchase,1.0,0 -271073348,"Team Fortress 2",play,5.1,0 -271073348,"Counter-Strike Nexon Zombies",purchase,1.0,0 -271073348,"No More Room in Hell",purchase,1.0,0 -271073348,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -147408505,"Dota 2",purchase,1.0,0 -147408505,"Dota 2",play,71.0,0 -124776658,"Dota 2",purchase,1.0,0 -124776658,"Dota 2",play,441.0,0 -124776658,"Warframe",purchase,1.0,0 -124776658,"Warframe",play,28.0,0 -124776658,"Left 4 Dead 2",purchase,1.0,0 -124776658,"Left 4 Dead 2",play,3.5,0 -124776658,"War Thunder",purchase,1.0,0 -124776658,"War Thunder",play,0.9,0 -124776658,"Team Fortress 2",purchase,1.0,0 -124776658,"Team Fortress 2",play,0.4,0 -288709050,"DC Universe Online",purchase,1.0,0 -288709050,"DC Universe Online",play,2.6,0 -221961399,"Dota 2",purchase,1.0,0 -221961399,"Dota 2",play,23.0,0 -197501773,"Dota 2",purchase,1.0,0 -197501773,"Dota 2",play,2.2,0 -197501773,"GunZ 2 The Second Duel",purchase,1.0,0 -185272838,"RIFT",purchase,1.0,0 -185272838,"RIFT",play,19.3,0 -185272838,"Heroes of Might & Magic III - HD Edition",purchase,1.0,0 -185272838,"Heroes of Might & Magic III - HD Edition",play,9.4,0 -185272838,"Marvel Heroes 2015",purchase,1.0,0 -185272838,"Marvel Heroes 2015",play,0.7,0 -185272838,"Strife",purchase,1.0,0 -185272838,"TERA",purchase,1.0,0 -92595907,"Trove",purchase,1.0,0 -92595907,"Trove",play,66.0,0 -92595907,"DRAGON BALL XENOVERSE",purchase,1.0,0 -92595907,"DRAGON BALL XENOVERSE",play,33.0,0 -92595907,"Saints Row The Third",purchase,1.0,0 -92595907,"Saints Row The Third",play,28.0,0 -92595907,"BattleBlock Theater",purchase,1.0,0 -92595907,"BattleBlock Theater",play,13.0,0 -92595907,"Scribblenauts Unlimited",purchase,1.0,0 -92595907,"Scribblenauts Unlimited",play,10.8,0 -92595907,"MicroVolts Surge",purchase,1.0,0 -92595907,"MicroVolts Surge",play,10.4,0 -92595907,"Dota 2",purchase,1.0,0 -92595907,"Dota 2",play,9.2,0 -92595907,"Counter-Strike Global Offensive",purchase,1.0,0 -92595907,"Counter-Strike Global Offensive",play,9.0,0 -92595907,"PAYDAY The Heist",purchase,1.0,0 -92595907,"PAYDAY The Heist",play,6.2,0 -92595907,"Portal 2",purchase,1.0,0 -92595907,"Portal 2",play,5.5,0 -92595907,"TERA",purchase,1.0,0 -92595907,"TERA",play,4.7,0 -92595907,"Left 4 Dead 2",purchase,1.0,0 -92595907,"Left 4 Dead 2",play,4.6,0 -92595907,"Castle Crashers",purchase,1.0,0 -92595907,"Castle Crashers",play,4.5,0 -92595907,"GRID Autosport",purchase,1.0,0 -92595907,"GRID Autosport",play,3.9,0 -92595907,"Grand Theft Auto V",purchase,1.0,0 -92595907,"Grand Theft Auto V",play,3.3,0 -92595907,"Unturned",purchase,1.0,0 -92595907,"Unturned",play,1.9,0 -92595907,"Team Fortress 2",purchase,1.0,0 -92595907,"Team Fortress 2",play,0.5,0 -92595907,"Afterfall InSanity Extended Edition",purchase,1.0,0 -92595907,"GunZ 2 The Second Duel",purchase,1.0,0 -92595907,"HAWKEN",purchase,1.0,0 -92595907,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -92595907,"Rise of Incarnates",purchase,1.0,0 -92595907,"Robocraft",purchase,1.0,0 -60828722,"Call of Duty Modern Warfare 2",purchase,1.0,0 -60828722,"Call of Duty Modern Warfare 2",play,3.5,0 -60828722,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -113682800,"Dota 2",purchase,1.0,0 -113682800,"Dota 2",play,27.0,0 -156787969,"Orcs Must Die! 2",purchase,1.0,0 -156787969,"Orcs Must Die! 2",play,0.2,0 -156787969,"Garry's Mod",purchase,1.0,0 -156787969,"Magicka",purchase,1.0,0 -156787969,"Magicka Vietnam",purchase,1.0,0 -156787969,"Sanctum 2",purchase,1.0,0 -156787969,"Serious Sam 3 BFE",purchase,1.0,0 -7094039,"Counter-Strike Condition Zero",purchase,1.0,0 -7094039,"Counter-Strike Condition Zero",play,0.8,0 -7094039,"Counter-Strike",purchase,1.0,0 -7094039,"Counter-Strike",play,0.4,0 -7094039,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -7094039,"Counter-Strike Condition Zero Deleted Scenes",play,0.4,0 -250457669,"The Elder Scrolls V Skyrim",purchase,1.0,0 -250457669,"The Elder Scrolls V Skyrim",play,11.8,0 -250457669,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -250457669,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -250457669,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -148959028,"Dota 2",purchase,1.0,0 -148959028,"Dota 2",play,22.0,0 -230461442,"F.E.A.R. Online",purchase,1.0,0 -230461442,"No More Room in Hell",purchase,1.0,0 -266685720,"Maszyny Rolnicze 2015",purchase,1.0,0 -266685720,"Mechanik Maszyn Rolniczych 2015",purchase,1.0,0 -39899978,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -39899978,"Batman Arkham Asylum GOTY Edition",play,31.0,0 -39899978,"Batman Arkham City GOTY",purchase,1.0,0 -39899978,"Batman Arkham City GOTY",play,10.3,0 -39899978,"The Walking Dead Season Two",purchase,1.0,0 -39899978,"The Walking Dead Season Two",play,9.1,0 -39899978,"L.A. Noire",purchase,1.0,0 -39899978,"L.A. Noire",play,6.2,0 -39899978,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -39899978,"Grand Theft Auto Episodes from Liberty City",play,5.1,0 -39899978,"State of Decay",purchase,1.0,0 -39899978,"State of Decay",play,4.9,0 -39899978,"Just Cause 2",purchase,1.0,0 -39899978,"Just Cause 2",play,4.8,0 -39899978,"Dead Island",purchase,1.0,0 -39899978,"Dead Island",play,3.3,0 -39899978,"Metro 2033",purchase,1.0,0 -39899978,"Metro 2033",play,3.2,0 -39899978,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -39899978,"Dark Souls Prepare to Die Edition",play,3.0,0 -39899978,"Portal 2",purchase,1.0,0 -39899978,"Portal 2",play,1.6,0 -39899978,"Portal",purchase,1.0,0 -39899978,"Portal",play,1.6,0 -39899978,"Grand Theft Auto IV",purchase,1.0,0 -39899978,"Grand Theft Auto IV",play,1.4,0 -39899978,"FEZ",purchase,1.0,0 -39899978,"FEZ",play,0.5,0 -39899978,"Left 4 Dead 2",purchase,1.0,0 -39899978,"Left 4 Dead 2",play,0.4,0 -39899978,"Sniper Elite V2",purchase,1.0,0 -39899978,"Sniper Elite V2",play,0.4,0 -39899978,"Alien Swarm",purchase,1.0,0 -39899978,"Alien Swarm",play,0.3,0 -39899978,"Dead Island Epidemic",purchase,1.0,0 -39899978,"Dead Island Riptide",purchase,1.0,0 -39899978,"Half-Life 2 Deathmatch",purchase,1.0,0 -39899978,"Half-Life 2 Lost Coast",purchase,1.0,0 -39899978,"Metro Last Light",purchase,1.0,0 -81439192,"Sid Meier's Civilization V",purchase,1.0,0 -81439192,"Sid Meier's Civilization V",play,262.0,0 -81439192,"The Elder Scrolls V Skyrim",purchase,1.0,0 -81439192,"The Elder Scrolls V Skyrim",play,156.0,0 -81439192,"EVE Online",purchase,1.0,0 -81439192,"EVE Online",play,114.0,0 -81439192,"PlanetSide 2",purchase,1.0,0 -81439192,"PlanetSide 2",play,56.0,0 -81439192,"Dungeons of Dredmor",purchase,1.0,0 -81439192,"Dungeons of Dredmor",play,50.0,0 -81439192,"Banished",purchase,1.0,0 -81439192,"Banished",play,33.0,0 -81439192,"Tomb Raider",purchase,1.0,0 -81439192,"Tomb Raider",play,31.0,0 -81439192,"Magic The Gathering Duels of the Planeswalkers 2012",purchase,1.0,0 -81439192,"Magic The Gathering Duels of the Planeswalkers 2012",play,29.0,0 -81439192,"Blood Bowl Legendary Edition",purchase,1.0,0 -81439192,"Blood Bowl Legendary Edition",play,28.0,0 -81439192,"Talisman Digital Edition",purchase,1.0,0 -81439192,"Talisman Digital Edition",play,25.0,0 -81439192,"Starbound",purchase,1.0,0 -81439192,"Starbound",play,23.0,0 -81439192,"BioShock",purchase,1.0,0 -81439192,"BioShock",play,21.0,0 -81439192,"Puzzle Quest",purchase,1.0,0 -81439192,"Puzzle Quest",play,13.2,0 -81439192,"Plague Inc Evolved",purchase,1.0,0 -81439192,"Plague Inc Evolved",play,11.5,0 -81439192,"BioShock Infinite",purchase,1.0,0 -81439192,"BioShock Infinite",play,10.0,0 -81439192,"Dead Space",purchase,1.0,0 -81439192,"Dead Space",play,9.5,0 -81439192,"Magic 2015",purchase,1.0,0 -81439192,"Magic 2015",play,8.7,0 -81439192,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -81439192,"Sid Meier's Civilization Beyond Earth",play,8.5,0 -81439192,"FINAL FANTASY VIII",purchase,1.0,0 -81439192,"FINAL FANTASY VIII",play,8.2,0 -81439192,"Fallout New Vegas",purchase,1.0,0 -81439192,"Fallout New Vegas",play,7.6,0 -81439192,"Portal 2",purchase,1.0,0 -81439192,"Portal 2",play,6.9,0 -81439192,"Machinarium",purchase,1.0,0 -81439192,"Machinarium",play,6.0,0 -81439192,"Botanicula",purchase,1.0,0 -81439192,"Botanicula",play,5.5,0 -81439192,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -81439192,"Baldur's Gate Enhanced Edition",play,5.0,0 -81439192,"Pox Nora",purchase,1.0,0 -81439192,"Pox Nora",play,4.7,0 -81439192,"FINAL FANTASY VII",purchase,1.0,0 -81439192,"FINAL FANTASY VII",play,4.6,0 -81439192,"Magic The Gathering - Duels of the Planeswalkers 2013",purchase,1.0,0 -81439192,"Magic The Gathering - Duels of the Planeswalkers 2013",play,4.5,0 -81439192,"Dishonored",purchase,1.0,0 -81439192,"Dishonored",play,4.1,0 -81439192,"Defense Grid The Awakening",purchase,1.0,0 -81439192,"Defense Grid The Awakening",play,4.0,0 -81439192,"Bastion",purchase,1.0,0 -81439192,"Bastion",play,3.0,0 -81439192,"Talisman Prologue",purchase,1.0,0 -81439192,"Talisman Prologue",play,2.9,0 -81439192,"Sid Meier's Pirates!",purchase,1.0,0 -81439192,"Sid Meier's Pirates!",play,2.3,0 -81439192,"LIMBO",purchase,1.0,0 -81439192,"LIMBO",play,2.1,0 -81439192,"Thief Gold",purchase,1.0,0 -81439192,"Thief Gold",play,1.6,0 -81439192,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -81439192,"Fallout 3 - Game of the Year Edition",play,1.5,0 -81439192,"Trine",purchase,1.0,0 -81439192,"Trine",play,1.5,0 -81439192,"The Stanley Parable",purchase,1.0,0 -81439192,"The Stanley Parable",play,1.5,0 -81439192,"Ys Origin",purchase,1.0,0 -81439192,"Ys Origin",play,1.4,0 -81439192,"Psychonauts",purchase,1.0,0 -81439192,"Psychonauts",play,1.3,0 -81439192,"I Am Alive",purchase,1.0,0 -81439192,"I Am Alive",play,1.3,0 -81439192,"Stacking",purchase,1.0,0 -81439192,"Stacking",play,1.2,0 -81439192,"DayZ",purchase,1.0,0 -81439192,"DayZ",play,1.2,0 -81439192,"Card City Nights",purchase,1.0,0 -81439192,"Card City Nights",play,1.2,0 -81439192,"SolForge",purchase,1.0,0 -81439192,"SolForge",play,1.2,0 -81439192,"Terraria",purchase,1.0,0 -81439192,"Terraria",play,1.1,0 -81439192,"Sanctum",purchase,1.0,0 -81439192,"Sanctum",play,1.1,0 -81439192,"The Witcher Enhanced Edition",purchase,1.0,0 -81439192,"The Witcher Enhanced Edition",play,1.0,0 -81439192,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -81439192,"Warhammer 40,000 Dawn of War II Retribution",play,0.9,0 -81439192,"BioShock 2",purchase,1.0,0 -81439192,"BioShock 2",play,0.9,0 -81439192,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -81439192,"Dark Souls Prepare to Die Edition",play,0.9,0 -81439192,"Samorost 2",purchase,1.0,0 -81439192,"Samorost 2",play,0.8,0 -81439192,"CastleStorm",purchase,1.0,0 -81439192,"CastleStorm",play,0.7,0 -81439192,"FINAL FANTASY III",purchase,1.0,0 -81439192,"FINAL FANTASY III",play,0.6,0 -81439192,"PAYDAY The Heist",purchase,1.0,0 -81439192,"PAYDAY The Heist",play,0.6,0 -81439192,"Alpha Protocol",purchase,1.0,0 -81439192,"Alpha Protocol",play,0.4,0 -81439192,"Monaco",purchase,1.0,0 -81439192,"Monaco",play,0.3,0 -81439192,"A Virus Named TOM",purchase,1.0,0 -81439192,"A Virus Named TOM",play,0.1,0 -81439192,"Amnesia The Dark Descent",purchase,1.0,0 -81439192,"Amnesia The Dark Descent",play,0.1,0 -81439192,"The Legend of Heroes Trails in the Sky",purchase,1.0,0 -81439192,"Adventures of Shuggy",purchase,1.0,0 -81439192,"AI War Fleet Command",purchase,1.0,0 -81439192,"Alpha Prime",purchase,1.0,0 -81439192,"Arma 2",purchase,1.0,0 -81439192,"Arma 2 DayZ Mod",purchase,1.0,0 -81439192,"Arma 2 Operation Arrowhead",purchase,1.0,0 -81439192,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -81439192,"Arma Gold Edition",purchase,1.0,0 -81439192,"Arma Tactics",purchase,1.0,0 -81439192,"Astebreed",purchase,1.0,0 -81439192,"Awesomenauts",purchase,1.0,0 -81439192,"Beat Hazard",purchase,1.0,0 -81439192,"Bloodsports.TV",purchase,1.0,0 -81439192,"Bloodsports.TV - Blood Brawl",purchase,1.0,0 -81439192,"Brtal Legend",purchase,1.0,0 -81439192,"Carrier Command Gaea Mission",purchase,1.0,0 -81439192,"Cities XL Platinum",purchase,1.0,0 -81439192,"Confrontation",purchase,1.0,0 -81439192,"Costume Quest",purchase,1.0,0 -81439192,"Dead Space 2",purchase,1.0,0 -81439192,"DeathSpank",purchase,1.0,0 -81439192,"DeathSpank Thongs Of Virtue",purchase,1.0,0 -81439192,"Defense Grid Resurgence Map Pack 1",purchase,1.0,0 -81439192,"Defense Grid Resurgence Map Pack 2 ",purchase,1.0,0 -81439192,"Defense Grid Resurgence Map Pack 3",purchase,1.0,0 -81439192,"Defense Grid Resurgence Map Pack 4",purchase,1.0,0 -81439192,"Deus Ex Game of the Year Edition",purchase,1.0,0 -81439192,"Deus Ex Human Revolution",purchase,1.0,0 -81439192,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -81439192,"Deus Ex Invisible War",purchase,1.0,0 -81439192,"Divinity II Developer's Cut",purchase,1.0,0 -81439192,"Don't Starve",purchase,1.0,0 -81439192,"Don't Starve Together Beta",purchase,1.0,0 -81439192,"Dungeon Defenders",purchase,1.0,0 -81439192,"Eets Munchies",purchase,1.0,0 -81439192,"Endless Legend",purchase,1.0,0 -81439192,"Endless Space",purchase,1.0,0 -81439192,"Fallout New Vegas Dead Money",purchase,1.0,0 -81439192,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -81439192,"Far Cry",purchase,1.0,0 -81439192,"Far Cry 2",purchase,1.0,0 -81439192,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -81439192,"FEZ",purchase,1.0,0 -81439192,"Frozen Synapse Prime",purchase,1.0,0 -81439192,"FTL Faster Than Light",purchase,1.0,0 -81439192,"Game of Thrones ",purchase,1.0,0 -81439192,"Gigantic Army",purchase,1.0,0 -81439192,"Glare",purchase,1.0,0 -81439192,"Gone Home",purchase,1.0,0 -81439192,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -81439192,"Grand Theft Auto San Andreas",purchase,1.0,0 -81439192,"Grand Theft Auto San Andreas",purchase,1.0,0 -81439192,"Grand Theft Auto Vice City",purchase,1.0,0 -81439192,"Grand Theft Auto Vice City",purchase,1.0,0 -81439192,"Grand Theft Auto III",purchase,1.0,0 -81439192,"Grand Theft Auto III",purchase,1.0,0 -81439192,"Grand Theft Auto IV",purchase,1.0,0 -81439192,"Hamlet or the last game without MMORPG features, shaders and product placement",purchase,1.0,0 -81439192,"HAWKEN",purchase,1.0,0 -81439192,"Hitman Absolution",purchase,1.0,0 -81439192,"Hitman Sniper Challenge",purchase,1.0,0 -81439192,"King Arthur - The Role-playing Wargame",purchase,1.0,0 -81439192,"Mark of the Ninja",purchase,1.0,0 -81439192,"Mirror's Edge",purchase,1.0,0 -81439192,"Mitsurugi Kamui Hikae",purchase,1.0,0 -81439192,"One Way Heroics",purchase,1.0,0 -81439192,"On the Rain-Slick Precipice of Darkness, Episode One",purchase,1.0,0 -81439192,"On the Rain-Slick Precipice of Darkness, Episode Two",purchase,1.0,0 -81439192,"Outlast",purchase,1.0,0 -81439192,"Pid ",purchase,1.0,0 -81439192,"PixelJunk Shooter",purchase,1.0,0 -81439192,"Portal",purchase,1.0,0 -81439192,"Psychonauts Demo",purchase,1.0,0 -81439192,"RAW - Realms of Ancient War",purchase,1.0,0 -81439192,"Reus",purchase,1.0,0 -81439192,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -81439192,"Shattered Planet",purchase,1.0,0 -81439192,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -81439192,"Sins of a Dark Age",purchase,1.0,0 -81439192,"Skulls of the Shogun",purchase,1.0,0 -81439192,"Sniper Elite V2",purchase,1.0,0 -81439192,"Snuggle Truck",purchase,1.0,0 -81439192,"Space Pirates and Zombies",purchase,1.0,0 -81439192,"Starbound - Unstable",purchase,1.0,0 -81439192,"Super House of Dead Ninjas",purchase,1.0,0 -81439192,"Surgeon Simulator",purchase,1.0,0 -81439192,"Take On Helicopters",purchase,1.0,0 -81439192,"The Baconing",purchase,1.0,0 -81439192,"The Inner World",purchase,1.0,0 -81439192,"The Journey Down Chapter One",purchase,1.0,0 -81439192,"The Testament of Sherlock Holmes",purchase,1.0,0 -81439192,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -81439192,"Thief 2",purchase,1.0,0 -81439192,"Thief Deadly Shadows",purchase,1.0,0 -81439192,"Trine 2",purchase,1.0,0 -81439192,"UFO Afterlight",purchase,1.0,0 -81439192,"Unholy Heights",purchase,1.0,0 -81439192,"Wargame European Escalation",purchase,1.0,0 -81439192,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -81439192,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -35388317,"Half-Life 2",purchase,1.0,0 -35388317,"Half-Life 2",play,10.3,0 -35388317,"Half-Life 2 Episode Two",purchase,1.0,0 -35388317,"Half-Life 2 Episode Two",play,2.5,0 -35388317,"Half-Life 2 Episode One",purchase,1.0,0 -35388317,"Half-Life 2 Episode One",play,2.3,0 -35388317,"Half-Life 2 Lost Coast",purchase,1.0,0 -35388317,"Left 4 Dead 2",purchase,1.0,0 -35388317,"Portal",purchase,1.0,0 -220800650,"No More Room in Hell",purchase,1.0,0 -220800650,"No More Room in Hell",play,2.9,0 -292881361,"Heroes & Generals",purchase,1.0,0 -292881361,"Heroes & Generals",play,0.6,0 -292881361,"Unturned",purchase,1.0,0 -292881361,"Unturned",play,0.4,0 -292881361,"Aftermath",purchase,1.0,0 -292881361,"Aftermath",play,0.3,0 -292881361,"Nux",purchase,1.0,0 -292881361,"Robocraft",purchase,1.0,0 -129925351,"Path of Exile",purchase,1.0,0 -129925351,"Path of Exile",play,1158.0,0 -129925351,"Warframe",purchase,1.0,0 -129925351,"Warframe",play,588.0,0 -129925351,"Terraria",purchase,1.0,0 -129925351,"Terraria",play,141.0,0 -129925351,"Torchlight II",purchase,1.0,0 -129925351,"Torchlight II",play,135.0,0 -129925351,"Infestation Survivor Stories",purchase,1.0,0 -129925351,"Infestation Survivor Stories",play,117.0,0 -129925351,"7 Days to Die",purchase,1.0,0 -129925351,"7 Days to Die",play,55.0,0 -129925351,"Fallout Tactics",purchase,1.0,0 -129925351,"Fallout Tactics",play,26.0,0 -129925351,"Hammerwatch",purchase,1.0,0 -129925351,"Hammerwatch",play,22.0,0 -129925351,"The Forest",purchase,1.0,0 -129925351,"The Forest",play,19.5,0 -129925351,"Fallout 2",purchase,1.0,0 -129925351,"Fallout 2",play,13.5,0 -129925351,"Realm of the Mad God",purchase,1.0,0 -129925351,"Realm of the Mad God",play,10.3,0 -129925351,"RPG Maker VX Ace",purchase,1.0,0 -129925351,"RPG Maker VX Ace",play,9.8,0 -129925351,"Chivalry Medieval Warfare",purchase,1.0,0 -129925351,"Chivalry Medieval Warfare",play,1.5,0 -129925351,"Lineage II",purchase,1.0,0 -129925351,"Lineage II",play,0.6,0 -129925351,"Fallout",purchase,1.0,0 -129925351,"Fallout",play,0.4,0 -129925351,"Game Character Hub",purchase,1.0,0 -129925351,"Game Character Hub",play,0.2,0 -129925351,"FORCED",purchase,1.0,0 -129925351,"Garry's Mod",purchase,1.0,0 -129925351,"Left 4 Dead 2",purchase,1.0,0 -129925351,"Patch testing for Chivalry",purchase,1.0,0 -129925351,"RPG Maker DS Resource Pack",purchase,1.0,0 -129925351,"RPG Maker Futuristic Tiles Resource Pack",purchase,1.0,0 -129925351,"RPG Maker High Fantasy 2 Resource Pack",purchase,1.0,0 -129925351,"RPG Maker Inspirational Vol. 2",purchase,1.0,0 -129925351,"RPG Maker Mythos Horror Resource Pack",purchase,1.0,0 -129925351,"RPG Maker Old School Modern Resource Pack",purchase,1.0,0 -129925351,"RPG Maker Royal Tiles Resource Pack",purchase,1.0,0 -129925351,"RPG Maker XP",purchase,1.0,0 -43936108,"Counter-Strike Source",purchase,1.0,0 -43936108,"Counter-Strike Source",play,39.0,0 -43936108,"Hitman Blood Money",purchase,1.0,0 -43936108,"Hitman Blood Money",play,9.4,0 -43936108,"Left 4 Dead 2",purchase,1.0,0 -43936108,"Left 4 Dead 2",play,6.1,0 -43936108,"Garry's Mod",purchase,1.0,0 -43936108,"Garry's Mod",play,4.2,0 -43936108,"Left 4 Dead",purchase,1.0,0 -43936108,"Left 4 Dead",play,2.7,0 -43936108,"Saints Row 2",purchase,1.0,0 -43936108,"Saints Row 2",play,2.5,0 -43936108,"Grand Theft Auto IV",purchase,1.0,0 -43936108,"Grand Theft Auto IV",play,1.9,0 -43936108,"Team Fortress 2",purchase,1.0,0 -43936108,"Team Fortress 2",play,1.2,0 -43936108,"Crysis",purchase,1.0,0 -43936108,"Crysis",play,0.2,0 -43936108,"Crysis Wars",purchase,1.0,0 -43936108,"Crysis Warhead",purchase,1.0,0 -191907008,"The Elder Scrolls V Skyrim",purchase,1.0,0 -191907008,"The Elder Scrolls V Skyrim",play,2.4,0 -222679413,"Dota 2",purchase,1.0,0 -222679413,"Dota 2",play,2.1,0 -170911456,"Dota 2",purchase,1.0,0 -170911456,"Dota 2",play,511.0,0 -170911456,"Portal 2",purchase,1.0,0 -170911456,"Portal 2",play,14.0,0 -170911456,"Toribash",purchase,1.0,0 -170911456,"Toribash",play,10.6,0 -170911456,"Magicka Wizard Wars",purchase,1.0,0 -170911456,"Magicka Wizard Wars",play,7.4,0 -170911456,"Path of Exile",purchase,1.0,0 -170911456,"Path of Exile",play,1.3,0 -170911456,"No More Room in Hell",purchase,1.0,0 -110843185,"Orcs Must Die! 2",purchase,1.0,0 -110843185,"Orcs Must Die! 2",play,82.0,0 -110843185,"Armello",purchase,1.0,0 -110843185,"Armello",play,11.3,0 -110843185,"Left 4 Dead 2",purchase,1.0,0 -110843185,"Left 4 Dead 2",play,3.7,0 -110546460,"Counter-Strike Global Offensive",purchase,1.0,0 -110546460,"Counter-Strike Global Offensive",play,221.0,0 -110546460,"Football Manager 2016",purchase,1.0,0 -110546460,"Football Manager 2016",play,127.0,0 -110546460,"Dota 2",purchase,1.0,0 -110546460,"Dota 2",play,121.0,0 -110546460,"Europa Universalis IV",purchase,1.0,0 -110546460,"Europa Universalis IV",play,99.0,0 -110546460,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -110546460,"Call of Duty Modern Warfare 2 - Multiplayer",play,91.0,0 -110546460,"Team Fortress 2",purchase,1.0,0 -110546460,"Team Fortress 2",play,74.0,0 -110546460,"Left 4 Dead 2",purchase,1.0,0 -110546460,"Left 4 Dead 2",play,32.0,0 -110546460,"Terraria",purchase,1.0,0 -110546460,"Terraria",play,21.0,0 -110546460,"Sniper Elite V2",purchase,1.0,0 -110546460,"Sniper Elite V2",play,9.8,0 -110546460,"Portal 2",purchase,1.0,0 -110546460,"Portal 2",play,5.8,0 -110546460,"Garry's Mod",purchase,1.0,0 -110546460,"Garry's Mod",play,2.2,0 -110546460,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -110546460,"Call of Duty 4 Modern Warfare",play,1.6,0 -110546460,"Call of Duty Modern Warfare 2",purchase,1.0,0 -110546460,"Call of Duty Modern Warfare 2",play,0.8,0 -110546460,"Unturned",purchase,1.0,0 -110546460,"Unturned",play,0.7,0 -110546460,"TERA",purchase,1.0,0 -110546460,"TERA",play,0.1,0 -110546460,"APB Reloaded",purchase,1.0,0 -110546460,"Blacklight Retribution",purchase,1.0,0 -110546460,"Clicker Heroes",purchase,1.0,0 -110546460,"Dead Island Epidemic",purchase,1.0,0 -110546460,"Defiance",purchase,1.0,0 -110546460,"Dirty Bomb",purchase,1.0,0 -110546460,"FreeStyle2 Street Basketball",purchase,1.0,0 -110546460,"Heroes & Generals",purchase,1.0,0 -110546460,"Kings Bounty Legions",purchase,1.0,0 -110546460,"No More Room in Hell",purchase,1.0,0 -110546460,"Trove",purchase,1.0,0 -169653526,"Garry's Mod",purchase,1.0,0 -169653526,"Garry's Mod",play,16.0,0 -169653526,"Counter-Strike Global Offensive",purchase,1.0,0 -169653526,"Counter-Strike Global Offensive",play,8.3,0 -169653526,"Rust",purchase,1.0,0 -169653526,"Rust",play,8.1,0 -169653526,"Path of Exile",purchase,1.0,0 -169653526,"Path of Exile",play,8.0,0 -169653526,"SpeedRunners",purchase,1.0,0 -169653526,"SpeedRunners",play,7.5,0 -169653526,"Magic 2015",purchase,1.0,0 -169653526,"Magic 2015",play,3.3,0 -169653526,"Robocraft",purchase,1.0,0 -169653526,"Robocraft",play,2.1,0 -169653526,"Unturned",purchase,1.0,0 -169653526,"Unturned",play,0.3,0 -257449387,"Counter-Strike Global Offensive",purchase,1.0,0 -257449387,"Counter-Strike Global Offensive",play,75.0,0 -257449387,"Rust",purchase,1.0,0 -257449387,"Rust",play,11.0,0 -257449387,"Borderlands 2",purchase,1.0,0 -257449387,"Borderlands 2",play,4.0,0 -257449387,"Unturned",purchase,1.0,0 -257449387,"Unturned",play,0.2,0 -257449387,"AdVenture Capitalist",purchase,1.0,0 -257449387,"Blacklight Retribution",purchase,1.0,0 -257449387,"BLOCKADE 3D",purchase,1.0,0 -257449387,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -257449387,"Magicka Wizard Wars",purchase,1.0,0 -257449387,"Robocraft",purchase,1.0,0 -257449387,"The Expendabros",purchase,1.0,0 -257449387,"Trove",purchase,1.0,0 -257449387,"Warframe",purchase,1.0,0 -294091752,"The Elder Scrolls V Skyrim",purchase,1.0,0 -294091752,"The Elder Scrolls V Skyrim",play,8.7,0 -265528868,"Dota 2",purchase,1.0,0 -265528868,"Dota 2",play,0.7,0 -236419303,"Team Fortress 2",purchase,1.0,0 -236419303,"Team Fortress 2",play,12.1,0 -205462875,"Dota 2",purchase,1.0,0 -205462875,"Dota 2",play,27.0,0 -205462875,"War Thunder",purchase,1.0,0 -205462875,"War Thunder",play,4.5,0 -205462875,"Free to Play",purchase,1.0,0 -205462875,"Robocraft",purchase,1.0,0 -241141429,"Unturned",purchase,1.0,0 -241141429,"Unturned",play,6.2,0 -241141429,"BLOCKADE 3D",purchase,1.0,0 -241141429,"BLOCKADE 3D",play,0.8,0 -241141429,"Cry of Fear",purchase,1.0,0 -241141429,"Cry of Fear",play,0.3,0 -262487872,"Voices from the Sea",purchase,1.0,0 -262487872,"Voices from the Sea",play,1.4,0 -262487872,"Marvel Heroes 2015",purchase,1.0,0 -226535562,"Counter-Strike Global Offensive",purchase,1.0,0 -226535562,"Counter-Strike Global Offensive",play,24.0,0 -289540058,"Dota 2",purchase,1.0,0 -289540058,"Dota 2",play,0.3,0 -289540058,"Battle Battalions",purchase,1.0,0 -289540058,"RaceRoom Racing Experience ",purchase,1.0,0 -164817484,"Pressured",purchase,1.0,0 -108943853,"Loadout",purchase,1.0,0 -108943853,"Loadout",play,67.0,0 -108943853,"Outlast",purchase,1.0,0 -108943853,"Outlast",play,24.0,0 -108943853,"The Witcher 3 Wild Hunt",purchase,1.0,0 -108943853,"The Witcher 3 Wild Hunt",play,13.0,0 -108943853,"Batman Arkham Knight",purchase,1.0,0 -108943853,"Batman Arkham Knight",play,10.2,0 -108943853,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -108943853,"Call of Duty Modern Warfare 3 - Multiplayer",play,9.1,0 -108943853,"RaceRoom Racing Experience ",purchase,1.0,0 -108943853,"RaceRoom Racing Experience ",play,2.8,0 -108943853,"Call of Duty Modern Warfare 3",purchase,1.0,0 -108943853,"Call of Duty Modern Warfare 3",play,0.3,0 -108943853,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -108943853,"Batman Arkham City GOTY",purchase,1.0,0 -108943853,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -108943853,"Batman Arkham Origins - Initiation",purchase,1.0,0 -108943853,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -108943853,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -108943853,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -108943853,"Batman Arkham Origins",purchase,1.0,0 -108943853,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -180026080,"Unturned",purchase,1.0,0 -180026080,"Unturned",play,3.2,0 -69942754,"Mafia II",purchase,1.0,0 -69942754,"Mafia II",play,112.0,0 -69942754,"Left 4 Dead 2",purchase,1.0,0 -69942754,"Left 4 Dead 2",play,98.0,0 -17432212,"Counter-Strike",purchase,1.0,0 -17432212,"Counter-Strike",play,0.6,0 -17432212,"Day of Defeat",purchase,1.0,0 -17432212,"Deathmatch Classic",purchase,1.0,0 -17432212,"Half-Life",purchase,1.0,0 -17432212,"Half-Life Blue Shift",purchase,1.0,0 -17432212,"Half-Life Opposing Force",purchase,1.0,0 -17432212,"Ricochet",purchase,1.0,0 -17432212,"Team Fortress Classic",purchase,1.0,0 -282731606,"Wolfenstein The New Order",purchase,1.0,0 -282731606,"Wolfenstein The New Order",play,31.0,0 -282731606,"Rise of Incarnates",purchase,1.0,0 -282731606,"Rise of Incarnates",play,0.1,0 -282731606,"Half-Life 2 Update",purchase,1.0,0 -172381385,"Team Fortress 2",purchase,1.0,0 -172381385,"Team Fortress 2",play,409.0,0 -172381385,"Unturned",purchase,1.0,0 -172381385,"Unturned",play,131.0,0 -172381385,"Trove",purchase,1.0,0 -172381385,"Trove",play,100.0,0 -172381385,"PAYDAY 2",purchase,1.0,0 -172381385,"PAYDAY 2",play,94.0,0 -172381385,"Counter-Strike Global Offensive",purchase,1.0,0 -172381385,"Counter-Strike Global Offensive",play,22.0,0 -172381385,"BioShock Infinite",purchase,1.0,0 -172381385,"BioShock Infinite",play,22.0,0 -172381385,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -172381385,"A.V.A - Alliance of Valiant Arms",play,10.1,0 -172381385,"Alien Swarm",purchase,1.0,0 -172381385,"Alien Swarm",play,7.1,0 -172381385,"Heroes & Generals",purchase,1.0,0 -172381385,"Heroes & Generals",play,5.9,0 -172381385,"War Thunder",purchase,1.0,0 -172381385,"War Thunder",play,4.1,0 -172381385,"Dota 2",purchase,1.0,0 -172381385,"Dota 2",play,3.5,0 -172381385,"Counter-Strike Nexon Zombies",purchase,1.0,0 -172381385,"Counter-Strike Nexon Zombies",play,2.3,0 -172381385,"Loadout",purchase,1.0,0 -172381385,"Loadout",play,0.7,0 -172381385,"XCOM Enemy Unknown",purchase,1.0,0 -172381385,"XCOM Enemy Unknown",play,0.2,0 -172381385,"No More Room in Hell",purchase,1.0,0 -172381385,"No More Room in Hell",play,0.2,0 -172381385,"Robocraft",purchase,1.0,0 -172381385,"Portal Stories Mel",purchase,1.0,0 -83090686,"Team Fortress 2",purchase,1.0,0 -83090686,"Team Fortress 2",play,1343.0,0 -83090686,"Terraria",purchase,1.0,0 -83090686,"Terraria",play,826.0,0 -83090686,"Source Filmmaker",purchase,1.0,0 -83090686,"Source Filmmaker",play,76.0,0 -83090686,"Bejeweled 3",purchase,1.0,0 -83090686,"Bejeweled 3",play,67.0,0 -83090686,"The Ship",purchase,1.0,0 -83090686,"The Ship",play,30.0,0 -83090686,"Left 4 Dead 2",purchase,1.0,0 -83090686,"Left 4 Dead 2",play,30.0,0 -83090686,"Audiosurf 2",purchase,1.0,0 -83090686,"Audiosurf 2",play,23.0,0 -83090686,"Garry's Mod",purchase,1.0,0 -83090686,"Garry's Mod",play,23.0,0 -83090686,"Portal 2",purchase,1.0,0 -83090686,"Portal 2",play,20.0,0 -83090686,"Altitude",purchase,1.0,0 -83090686,"Altitude",play,20.0,0 -83090686,"Robocraft",purchase,1.0,0 -83090686,"Robocraft",play,16.8,0 -83090686,"Audiosurf",purchase,1.0,0 -83090686,"Audiosurf",play,16.8,0 -83090686,"Monaco",purchase,1.0,0 -83090686,"Monaco",play,12.2,0 -83090686,"Killing Floor",purchase,1.0,0 -83090686,"Killing Floor",play,11.2,0 -83090686,"Starbound",purchase,1.0,0 -83090686,"Starbound",play,9.4,0 -83090686,"Surgeon Simulator",purchase,1.0,0 -83090686,"Surgeon Simulator",play,8.7,0 -83090686,"No More Room in Hell",purchase,1.0,0 -83090686,"No More Room in Hell",play,8.6,0 -83090686,"Shatter",purchase,1.0,0 -83090686,"Shatter",play,8.4,0 -83090686,"Don't Starve",purchase,1.0,0 -83090686,"Don't Starve",play,8.2,0 -83090686,"Space Engineers",purchase,1.0,0 -83090686,"Space Engineers",play,7.3,0 -83090686,"Scribblenauts Unlimited",purchase,1.0,0 -83090686,"Scribblenauts Unlimited",play,5.4,0 -83090686,"The Binding of Isaac Rebirth",purchase,1.0,0 -83090686,"The Binding of Isaac Rebirth",play,4.4,0 -83090686,"Cave Story+",purchase,1.0,0 -83090686,"Cave Story+",play,4.2,0 -83090686,"Wanderlust Rebirth",purchase,1.0,0 -83090686,"Wanderlust Rebirth",play,3.7,0 -83090686,"Gunpoint",purchase,1.0,0 -83090686,"Gunpoint",play,3.4,0 -83090686,"Need for Speed Hot Pursuit",purchase,1.0,0 -83090686,"Need for Speed Hot Pursuit",play,3.2,0 -83090686,"Faerie Solitaire",purchase,1.0,0 -83090686,"Faerie Solitaire",play,2.9,0 -83090686,"PAC-MAN Championship Edition DX+",purchase,1.0,0 -83090686,"PAC-MAN Championship Edition DX+",play,2.7,0 -83090686,"Besiege",purchase,1.0,0 -83090686,"Besiege",play,1.6,0 -83090686,"Half-Life 2",purchase,1.0,0 -83090686,"Half-Life 2",play,1.5,0 -83090686,"Insaniquarium! Deluxe",purchase,1.0,0 -83090686,"Insaniquarium! Deluxe",play,1.3,0 -83090686,"TrackMania Valley",purchase,1.0,0 -83090686,"TrackMania Valley",play,1.3,0 -83090686,"Goat Simulator",purchase,1.0,0 -83090686,"Goat Simulator",play,1.3,0 -83090686,"Nuclear Throne",purchase,1.0,0 -83090686,"Nuclear Throne",play,1.2,0 -83090686,"Rock of Ages",purchase,1.0,0 -83090686,"Rock of Ages",play,0.9,0 -83090686,"Universe Sandbox",purchase,1.0,0 -83090686,"Universe Sandbox",play,0.5,0 -83090686,"Fistful of Frags",purchase,1.0,0 -83090686,"Fistful of Frags",play,0.4,0 -83090686,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -83090686,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",play,0.4,0 -83090686,"Guacamelee! Gold Edition",purchase,1.0,0 -83090686,"Guacamelee! Gold Edition",play,0.4,0 -83090686,"Undertale",purchase,1.0,0 -83090686,"Undertale",play,0.1,0 -83090686,"Star Wars - Battlefront II",purchase,1.0,0 -83090686,"X-COM UFO Defense",purchase,1.0,0 -83090686,"Awesomenauts",purchase,1.0,0 -83090686,"Bad Rats",purchase,1.0,0 -83090686,"Counter-Strike Source",purchase,1.0,0 -83090686,"Crusader Kings II",purchase,1.0,0 -83090686,"Defy Gravity",purchase,1.0,0 -83090686,"Don't Starve Together Beta",purchase,1.0,0 -83090686,"Empire Total War",purchase,1.0,0 -83090686,"Euro Truck Simulator",purchase,1.0,0 -83090686,"Half-Life 2 Lost Coast",purchase,1.0,0 -83090686,"Jazzpunk",purchase,1.0,0 -83090686,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -83090686,"Magicka",purchase,1.0,0 -83090686,"Medieval II Total War",purchase,1.0,0 -83090686,"Napoleon Total War",purchase,1.0,0 -83090686,"Portal",purchase,1.0,0 -83090686,"Puzzle Kingdoms",purchase,1.0,0 -83090686,"Q.U.B.E.",purchase,1.0,0 -83090686,"Q.U.B.E Director's Cut",purchase,1.0,0 -83090686,"Rome Total War",purchase,1.0,0 -83090686,"Starbound - Unstable",purchase,1.0,0 -83090686,"Swords and Soldiers HD",purchase,1.0,0 -83090686,"The Ship Single Player",purchase,1.0,0 -83090686,"The Ship Tutorial",purchase,1.0,0 -83090686,"Total War SHOGUN 2",purchase,1.0,0 -83090686,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -83090686,"Total War Battles SHOGUN",purchase,1.0,0 -83090686,"Viking Battle for Asgard",purchase,1.0,0 -83090686,"Zen Bound 2",purchase,1.0,0 -234498398,"Warframe",purchase,1.0,0 -234498398,"Warframe",play,73.0,0 -234498398,"Unturned",purchase,1.0,0 -234498398,"Unturned",play,17.0,0 -234498398,"Star Conflict",purchase,1.0,0 -234498398,"Star Conflict",play,2.2,0 -234498398,"HAWKEN",purchase,1.0,0 -234498398,"HAWKEN",play,2.0,0 -234498398,"Strife",purchase,1.0,0 -234498398,"Strife",play,1.8,0 -234498398,"Fuse",purchase,1.0,0 -234498398,"Fuse",play,1.8,0 -234498398,"Creativerse",purchase,1.0,0 -234498398,"Creativerse",play,1.7,0 -234498398,"Blender 2.76b",purchase,1.0,0 -234498398,"Blender 2.76b",play,1.5,0 -234498398,"Quake Live",purchase,1.0,0 -234498398,"Quake Live",play,1.2,0 -234498398,"Spooky's House of Jump Scares",purchase,1.0,0 -234498398,"Spooky's House of Jump Scares",play,0.7,0 -234498398,"GameMaker Studio",purchase,1.0,0 -234498398,"GameMaker Studio",play,0.6,0 -234498398,"No More Room in Hell",purchase,1.0,0 -234498398,"No More Room in Hell",play,0.4,0 -234498398,"Genesis Online",purchase,1.0,0 -234498398,"Genesis Online",play,0.3,0 -234498398,"War Thunder",purchase,1.0,0 -234498398,"War Thunder",play,0.3,0 -234498398,"Tribes Ascend",purchase,1.0,0 -234498398,"Tribes Ascend",play,0.3,0 -234498398,"Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald A Whirlwind Heist",purchase,1.0,0 -234498398,"Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald A Whirlwind Heist",play,0.3,0 -234498398,"Copa Petrobras de Marcas",purchase,1.0,0 -234498398,"Copa Petrobras de Marcas",play,0.2,0 -234498398,"Metro Conflict",purchase,1.0,0 -234498398,"The Four Kings Casino and Slots",purchase,1.0,0 -234498398,"Esenthel Engine",purchase,1.0,0 -234498398,"BLOCKADE 3D",purchase,1.0,0 -234498398,"Loadout",purchase,1.0,0 -234498398,"Run and Fire",purchase,1.0,0 -234498398,"Nosgoth",purchase,1.0,0 -234498398,"Survarium",purchase,1.0,0 -167901416,"Terraria",purchase,1.0,0 -167901416,"Terraria",play,68.0,0 -167901416,"Left 4 Dead 2",purchase,1.0,0 -167901416,"Left 4 Dead 2",play,37.0,0 -167901416,"Arma 3",purchase,1.0,0 -167901416,"Arma 3",play,12.7,0 -167901416,"Day of Defeat Source",purchase,1.0,0 -167901416,"Day of Defeat Source",play,9.7,0 -167901416,"Batman Arkham Origins",purchase,1.0,0 -167901416,"Batman Arkham Origins",play,4.3,0 -167901416,"Counter-Strike Source",purchase,1.0,0 -167901416,"Counter-Strike Source",play,2.7,0 -167901416,"Counter-Strike Global Offensive",purchase,1.0,0 -167901416,"Counter-Strike Global Offensive",play,1.2,0 -167901416,"Counter-Strike Nexon Zombies",purchase,1.0,0 -167901416,"Counter-Strike Nexon Zombies",play,0.2,0 -167901416,"WTFast Gamers Private Network (GPN)",purchase,1.0,0 -167901416,"Arma 3 Zeus",purchase,1.0,0 -167901416,"Counter-Strike",purchase,1.0,0 -167901416,"Counter-Strike Condition Zero",purchase,1.0,0 -167901416,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -167901416,"Day of Defeat",purchase,1.0,0 -167901416,"Deathmatch Classic",purchase,1.0,0 -167901416,"Half-Life",purchase,1.0,0 -167901416,"Half-Life 2",purchase,1.0,0 -167901416,"Half-Life 2 Deathmatch",purchase,1.0,0 -167901416,"Half-Life 2 Episode One",purchase,1.0,0 -167901416,"Half-Life 2 Episode Two",purchase,1.0,0 -167901416,"Half-Life 2 Lost Coast",purchase,1.0,0 -167901416,"Half-Life Blue Shift",purchase,1.0,0 -167901416,"Half-Life Opposing Force",purchase,1.0,0 -167901416,"Half-Life Source",purchase,1.0,0 -167901416,"Half-Life Deathmatch Source",purchase,1.0,0 -167901416,"Left 4 Dead",purchase,1.0,0 -167901416,"Overcast - Walden and the Werewolf",purchase,1.0,0 -167901416,"Portal",purchase,1.0,0 -167901416,"Portal 2",purchase,1.0,0 -167901416,"Ricochet",purchase,1.0,0 -167901416,"Team Fortress Classic",purchase,1.0,0 -183089914,"Warframe",purchase,1.0,0 -183089914,"Warframe",play,12.6,0 -183089914,"PAYDAY The Heist",purchase,1.0,0 -292167220,"Dota 2",purchase,1.0,0 -292167220,"Dota 2",play,1.3,0 -292167220,"Strife",purchase,1.0,0 -188792404,"Dota 2",purchase,1.0,0 -188792404,"Dota 2",play,0.6,0 -63678282,"Sniper Elite V2",purchase,1.0,0 -63678282,"Sniper Elite V2",play,52.0,0 -63678282,"Aliens vs. Predator",purchase,1.0,0 -63678282,"Aliens vs. Predator",play,4.2,0 -202195289,"Unturned",purchase,1.0,0 -202195289,"Unturned",play,23.0,0 -202195289,"Robocraft",purchase,1.0,0 -202195289,"Robocraft",play,19.6,0 -202195289,"The Expendabros",purchase,1.0,0 -202195289,"The Expendabros",play,0.2,0 -202195289,"Double Action Boogaloo",purchase,1.0,0 -101339059,"Total War ROME II - Emperor Edition",purchase,1.0,0 -101339059,"Total War ROME II - Emperor Edition",play,1499.0,0 -101339059,"Blood Bowl Chaos Edition",purchase,1.0,0 -101339059,"Blood Bowl Chaos Edition",play,891.0,0 -101339059,"XCOM Enemy Unknown",purchase,1.0,0 -101339059,"XCOM Enemy Unknown",play,693.0,0 -101339059,"Napoleon Total War",purchase,1.0,0 -101339059,"Napoleon Total War",play,302.0,0 -101339059,"Blood Bowl Legendary Edition",purchase,1.0,0 -101339059,"Blood Bowl Legendary Edition",play,273.0,0 -101339059,"Fallout New Vegas",purchase,1.0,0 -101339059,"Fallout New Vegas",play,264.0,0 -101339059,"Darkest Dungeon",purchase,1.0,0 -101339059,"Darkest Dungeon",play,158.0,0 -101339059,"Frontline Tactics",purchase,1.0,0 -101339059,"Frontline Tactics",play,133.0,0 -101339059,"The Lord of the Rings War in the North",purchase,1.0,0 -101339059,"The Lord of the Rings War in the North",play,65.0,0 -101339059,"Total War SHOGUN 2",purchase,1.0,0 -101339059,"Total War SHOGUN 2",play,51.0,0 -101339059,"Rome Total War",purchase,1.0,0 -101339059,"Rome Total War",play,47.0,0 -101339059,"Total War ATTILA",purchase,1.0,0 -101339059,"Total War ATTILA",play,45.0,0 -101339059,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -101339059,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,20.0,0 -101339059,"Defense Grid The Awakening",purchase,1.0,0 -101339059,"Defense Grid The Awakening",play,13.0,0 -101339059,"Medieval II Total War",purchase,1.0,0 -101339059,"Medieval II Total War",play,11.6,0 -101339059,"Medieval II Total War Kingdoms",purchase,1.0,0 -101339059,"Medieval II Total War Kingdoms",play,8.4,0 -101339059,"Railroad Tycoon 2 Platinum",purchase,1.0,0 -101339059,"Railroad Tycoon 2 Platinum",play,6.3,0 -101339059,"Empire Total War",purchase,1.0,0 -101339059,"Empire Total War",play,4.4,0 -101339059,"Company of Heroes",purchase,1.0,0 -101339059,"Company of Heroes",play,3.4,0 -101339059,"Leviathan Warships",purchase,1.0,0 -101339059,"Leviathan Warships",play,3.0,0 -101339059,"Dungeon Defenders",purchase,1.0,0 -101339059,"Dungeon Defenders",play,1.1,0 -101339059,"Magicka",purchase,1.0,0 -101339059,"Magicka",play,1.1,0 -101339059,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -101339059,"Fallout 3 - Game of the Year Edition",play,0.6,0 -101339059,"Dangerous Waters",purchase,1.0,0 -101339059,"Dangerous Waters",play,0.5,0 -101339059,"Darksiders",purchase,1.0,0 -101339059,"Darksiders",play,0.5,0 -101339059,"Red Faction Armageddon",purchase,1.0,0 -101339059,"Red Faction Armageddon",play,0.5,0 -101339059,"Dungeonland",purchase,1.0,0 -101339059,"Dungeonland",play,0.3,0 -101339059,"Company of Heroes Tales of Valor",purchase,1.0,0 -101339059,"Company of Heroes Tales of Valor",play,0.3,0 -101339059,"Warlock - Master of the Arcane",purchase,1.0,0 -101339059,"Warlock - Master of the Arcane",play,0.2,0 -101339059,"Dungeonbowl Knockout Edition",purchase,1.0,0 -101339059,"Dungeonbowl Knockout Edition",play,0.2,0 -101339059,"Metro 2033",purchase,1.0,0 -101339059,"Company of Heroes Opposing Fronts",purchase,1.0,0 -101339059,"Saints Row The Third",purchase,1.0,0 -101339059,"The Showdown Effect",purchase,1.0,0 -101339059,"Papers, Please",purchase,1.0,0 -101339059,"Titan Quest",purchase,1.0,0 -101339059,"Rome Total War - Alexander",purchase,1.0,0 -101339059,"Aerena",purchase,1.0,0 -101339059,"Alien Breed 2 Assault",purchase,1.0,0 -101339059,"Company of Heroes (New Steam Version)",purchase,1.0,0 -101339059,"Crusader Kings II",purchase,1.0,0 -101339059,"Dungeonland - All access pass",purchase,1.0,0 -101339059,"Europa Universalis III",purchase,1.0,0 -101339059,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -101339059,"Fallout New Vegas Dead Money",purchase,1.0,0 -101339059,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -101339059,"Frontline Tactics - Close Quater Combat Soldier",purchase,1.0,0 -101339059,"Frontline Tactics - Desert Camouflage",purchase,1.0,0 -101339059,"Frontline Tactics - Golden Guns",purchase,1.0,0 -101339059,"Frontline Tactics - Medic Soldier Pack",purchase,1.0,0 -101339059,"Frontline Tactics - Ninja Camouflage",purchase,1.0,0 -101339059,"Frontline Tactics - Sniper",purchase,1.0,0 -101339059,"Frontline Tactics - Snow Camouflage ",purchase,1.0,0 -101339059,"Frontline Tactics - Tiger Camouflage",purchase,1.0,0 -101339059,"Frontline Tactics - Woodland Camouflage",purchase,1.0,0 -101339059,"Iron Front D-Day DLC",purchase,1.0,0 -101339059,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -101339059,"War of the Roses",purchase,1.0,0 -101339059,"War of the Roses Kingmaker",purchase,1.0,0 -101339059,"War of the Roses Balance Beta",purchase,1.0,0 -101339059,"XCOM Enemy Within",purchase,1.0,0 -213114902,"Warface",purchase,1.0,0 -213114902,"Warface",play,1.4,0 -213114902,"Unturned",purchase,1.0,0 -213114902,"Unturned",play,1.0,0 -213114902,"Cry of Fear",purchase,1.0,0 -213114902,"Cry of Fear",play,0.4,0 -213114902,"sZone-Online",purchase,1.0,0 -213114902,"sZone-Online",play,0.2,0 -139456215,"Dota 2",purchase,1.0,0 -139456215,"Dota 2",play,5.5,0 -169851136,"Dota 2",purchase,1.0,0 -169851136,"Dota 2",play,47.0,0 -169851136,"The Lord of the Rings Online",purchase,1.0,0 -169851136,"The Lord of the Rings Online",play,7.4,0 -11149819,"Team Fortress 2",purchase,1.0,0 -11149819,"Team Fortress 2",play,585.0,0 -11149819,"Counter-Strike Global Offensive",purchase,1.0,0 -11149819,"Counter-Strike Global Offensive",play,533.0,0 -11149819,"Borderlands 2",purchase,1.0,0 -11149819,"Borderlands 2",play,271.0,0 -11149819,"Pillars of Eternity",purchase,1.0,0 -11149819,"Pillars of Eternity",play,237.0,0 -11149819,"Counter-Strike Source",purchase,1.0,0 -11149819,"Counter-Strike Source",play,124.0,0 -11149819,"Torchlight",purchase,1.0,0 -11149819,"Torchlight",play,106.0,0 -11149819,"Dying Light",purchase,1.0,0 -11149819,"Dying Light",play,67.0,0 -11149819,"Dead Island",purchase,1.0,0 -11149819,"Dead Island",play,66.0,0 -11149819,"Left 4 Dead",purchase,1.0,0 -11149819,"Left 4 Dead",play,52.0,0 -11149819,"Torchlight II",purchase,1.0,0 -11149819,"Torchlight II",play,51.0,0 -11149819,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -11149819,"S.T.A.L.K.E.R. Clear Sky",play,47.0,0 -11149819,"Magicka",purchase,1.0,0 -11149819,"Magicka",play,39.0,0 -11149819,"Spintires",purchase,1.0,0 -11149819,"Spintires",play,32.0,0 -11149819,"Tomb Raider",purchase,1.0,0 -11149819,"Tomb Raider",play,32.0,0 -11149819,"Left 4 Dead 2",purchase,1.0,0 -11149819,"Left 4 Dead 2",play,31.0,0 -11149819,"Metro Last Light",purchase,1.0,0 -11149819,"Metro Last Light",play,30.0,0 -11149819,"Alan Wake",purchase,1.0,0 -11149819,"Alan Wake",play,29.0,0 -11149819,"Grand Theft Auto V",purchase,1.0,0 -11149819,"Grand Theft Auto V",play,27.0,0 -11149819,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -11149819,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,26.0,0 -11149819,"Mafia II",purchase,1.0,0 -11149819,"Mafia II",play,25.0,0 -11149819,"BioShock Infinite",purchase,1.0,0 -11149819,"BioShock Infinite",play,24.0,0 -11149819,"Orcs Must Die! 2",purchase,1.0,0 -11149819,"Orcs Must Die! 2",play,21.0,0 -11149819,"Broforce",purchase,1.0,0 -11149819,"Broforce",play,20.0,0 -11149819,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -11149819,"Batman Arkham Asylum GOTY Edition",play,16.6,0 -11149819,"Altitude",purchase,1.0,0 -11149819,"Altitude",play,16.3,0 -11149819,"Day of Defeat Source",purchase,1.0,0 -11149819,"Day of Defeat Source",play,16.2,0 -11149819,"Magic The Gathering Duels of the Planeswalkers 2012",purchase,1.0,0 -11149819,"Magic The Gathering Duels of the Planeswalkers 2012",play,16.0,0 -11149819,"Dead Island Riptide",purchase,1.0,0 -11149819,"Dead Island Riptide",play,15.5,0 -11149819,"Counter-Strike",purchase,1.0,0 -11149819,"Counter-Strike",play,14.2,0 -11149819,"Crysis",purchase,1.0,0 -11149819,"Crysis",play,14.0,0 -11149819,"DiRT 2",purchase,1.0,0 -11149819,"DiRT 2",play,10.1,0 -11149819,"Rocket League",purchase,1.0,0 -11149819,"Rocket League",play,9.5,0 -11149819,"Far Cry 2",purchase,1.0,0 -11149819,"Far Cry 2",play,9.5,0 -11149819,"Darksiders",purchase,1.0,0 -11149819,"Darksiders",play,9.1,0 -11149819,"Shadowgrounds",purchase,1.0,0 -11149819,"Shadowgrounds",play,8.9,0 -11149819,"Metro 2033",purchase,1.0,0 -11149819,"Metro 2033",play,8.6,0 -11149819,"Just Cause 2",purchase,1.0,0 -11149819,"Just Cause 2",play,7.8,0 -11149819,"Runaway A Road Adventure",purchase,1.0,0 -11149819,"Runaway A Road Adventure",play,7.5,0 -11149819,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -11149819,"Unreal Tournament 3 Black Edition",play,7.5,0 -11149819,"BioShock 2",purchase,1.0,0 -11149819,"BioShock 2",play,7.1,0 -11149819,"Portal 2",purchase,1.0,0 -11149819,"Portal 2",play,6.6,0 -11149819,"LIMBO",purchase,1.0,0 -11149819,"LIMBO",play,6.6,0 -11149819,"Shadowgrounds Survivor",purchase,1.0,0 -11149819,"Shadowgrounds Survivor",play,6.6,0 -11149819,"Chivalry Medieval Warfare",purchase,1.0,0 -11149819,"Chivalry Medieval Warfare",play,6.5,0 -11149819,"Battlefield Bad Company 2",purchase,1.0,0 -11149819,"Battlefield Bad Company 2",play,6.2,0 -11149819,"Batman Arkham Origins",purchase,1.0,0 -11149819,"Batman Arkham Origins",play,6.1,0 -11149819,"The Secret World",purchase,1.0,0 -11149819,"The Secret World",play,6.0,0 -11149819,"Grand Theft Auto IV",purchase,1.0,0 -11149819,"Grand Theft Auto IV",play,6.0,0 -11149819,"Alan Wake's American Nightmare",purchase,1.0,0 -11149819,"Alan Wake's American Nightmare",play,5.6,0 -11149819,"Chime",purchase,1.0,0 -11149819,"Chime",play,4.5,0 -11149819,"Shattered Horizon",purchase,1.0,0 -11149819,"Shattered Horizon",play,4.5,0 -11149819,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -11149819,"S.T.A.L.K.E.R. Call of Pripyat",play,4.4,0 -11149819,"Next Car Game Wreckfest",purchase,1.0,0 -11149819,"Next Car Game Wreckfest",play,4.4,0 -11149819,"Botanicula",purchase,1.0,0 -11149819,"Botanicula",play,4.2,0 -11149819,"Amnesia The Dark Descent",purchase,1.0,0 -11149819,"Amnesia The Dark Descent",play,4.1,0 -11149819,"The Dream Machine",purchase,1.0,0 -11149819,"The Dream Machine",play,3.4,0 -11149819,"GRID",purchase,1.0,0 -11149819,"GRID",play,3.4,0 -11149819,"Risk of Rain",purchase,1.0,0 -11149819,"Risk of Rain",play,3.1,0 -11149819,"Hotline Miami",purchase,1.0,0 -11149819,"Hotline Miami",play,3.0,0 -11149819,"Gunpoint",purchase,1.0,0 -11149819,"Gunpoint",play,2.4,0 -11149819,"Far Cry 3",purchase,1.0,0 -11149819,"Far Cry 3",play,2.4,0 -11149819,"The Stanley Parable",purchase,1.0,0 -11149819,"The Stanley Parable",play,1.9,0 -11149819,"Magicka 2",purchase,1.0,0 -11149819,"Magicka 2",play,1.9,0 -11149819,"Super Meat Boy",purchase,1.0,0 -11149819,"Super Meat Boy",play,1.9,0 -11149819,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -11149819,"A.V.A - Alliance of Valiant Arms",play,1.8,0 -11149819,"The Whispered World",purchase,1.0,0 -11149819,"The Whispered World",play,1.8,0 -11149819,"Droplitz",purchase,1.0,0 -11149819,"Droplitz",play,1.8,0 -11149819,"Madballs in...Babo Invasion",purchase,1.0,0 -11149819,"Madballs in...Babo Invasion",play,1.7,0 -11149819,"Firefall",purchase,1.0,0 -11149819,"Firefall",play,1.5,0 -11149819,"Dota 2",purchase,1.0,0 -11149819,"Dota 2",play,1.5,0 -11149819,"The Path",purchase,1.0,0 -11149819,"The Path",play,1.5,0 -11149819,"Zombie Driver",purchase,1.0,0 -11149819,"Zombie Driver",play,1.5,0 -11149819,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -11149819,"Dark Souls Prepare to Die Edition",play,1.4,0 -11149819,"Alien Swarm",purchase,1.0,0 -11149819,"Alien Swarm",play,1.4,0 -11149819,"Worms Reloaded",purchase,1.0,0 -11149819,"Worms Reloaded",play,1.3,0 -11149819,"Deus Ex Human Revolution",purchase,1.0,0 -11149819,"Deus Ex Human Revolution",play,1.2,0 -11149819,"Painkiller Redemption",purchase,1.0,0 -11149819,"Painkiller Redemption",play,1.1,0 -11149819,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -11149819,"Burnout Paradise The Ultimate Box",play,1.1,0 -11149819,"Portal",purchase,1.0,0 -11149819,"Portal",play,1.1,0 -11149819,"Trine",purchase,1.0,0 -11149819,"Trine",play,1.0,0 -11149819,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -11149819,"Tiny and Big Grandpa's Leftovers",play,1.0,0 -11149819,"Spelunky",purchase,1.0,0 -11149819,"Spelunky",play,1.0,0 -11149819,"Bastion",purchase,1.0,0 -11149819,"Bastion",play,1.0,0 -11149819,"Osmos",purchase,1.0,0 -11149819,"Osmos",play,1.0,0 -11149819,"L.A. Noire",purchase,1.0,0 -11149819,"L.A. Noire",play,0.9,0 -11149819,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -11149819,"Next Car Game Sneak Peek 2.0",play,0.9,0 -11149819,"Zeno Clash",purchase,1.0,0 -11149819,"Zeno Clash",play,0.9,0 -11149819,"The Baconing",purchase,1.0,0 -11149819,"The Baconing",play,0.9,0 -11149819,"Dead Mountaineer's Hotel",purchase,1.0,0 -11149819,"Dead Mountaineer's Hotel",play,0.9,0 -11149819,"Windosill",purchase,1.0,0 -11149819,"Windosill",play,0.8,0 -11149819,"Audiosurf",purchase,1.0,0 -11149819,"Audiosurf",play,0.7,0 -11149819,"Orcs Must Die!",purchase,1.0,0 -11149819,"Orcs Must Die!",play,0.7,0 -11149819,"TrackMania United",purchase,1.0,0 -11149819,"TrackMania United",play,0.7,0 -11149819,"Betrayer",purchase,1.0,0 -11149819,"Betrayer",play,0.6,0 -11149819,"Frozen Synapse",purchase,1.0,0 -11149819,"Frozen Synapse",play,0.6,0 -11149819,"Quake Live",purchase,1.0,0 -11149819,"Quake Live",play,0.6,0 -11149819,"Trine 2",purchase,1.0,0 -11149819,"Trine 2",play,0.6,0 -11149819,"This War of Mine",purchase,1.0,0 -11149819,"This War of Mine",play,0.5,0 -11149819,"Dishonored (RU)",purchase,1.0,0 -11149819,"Dishonored (RU)",play,0.5,0 -11149819,"Shank",purchase,1.0,0 -11149819,"Shank",play,0.5,0 -11149819,"NecroVisioN Lost Company",purchase,1.0,0 -11149819,"NecroVisioN Lost Company",play,0.5,0 -11149819,"Gish",purchase,1.0,0 -11149819,"Gish",play,0.4,0 -11149819,"Trials 2 Second Edition",purchase,1.0,0 -11149819,"Trials 2 Second Edition",play,0.4,0 -11149819,"Outlast",purchase,1.0,0 -11149819,"Outlast",play,0.4,0 -11149819,"Greed Corp",purchase,1.0,0 -11149819,"Greed Corp",play,0.3,0 -11149819,"Crossfire Europe",purchase,1.0,0 -11149819,"Crossfire Europe",play,0.3,0 -11149819,"Terraria",purchase,1.0,0 -11149819,"Terraria",play,0.2,0 -11149819,"Runaway A Twist of Fate",purchase,1.0,0 -11149819,"Runaway A Twist of Fate",play,0.2,0 -11149819,"The Void",purchase,1.0,0 -11149819,"The Void",play,0.2,0 -11149819,"QuantZ",purchase,1.0,0 -11149819,"QuantZ",play,0.2,0 -11149819,"DogFighter",purchase,1.0,0 -11149819,"DogFighter",play,0.2,0 -11149819,"Burn Zombie Burn",purchase,1.0,0 -11149819,"Burn Zombie Burn",play,0.1,0 -11149819,"Brothers - A Tale of Two Sons",purchase,1.0,0 -11149819,"Brothers - A Tale of Two Sons",play,0.1,0 -11149819,"Shatter",purchase,1.0,0 -11149819,"Shatter",play,0.1,0 -11149819,"Dead Island Epidemic",purchase,1.0,0 -11149819,"The Polynomial",purchase,1.0,0 -11149819,"Poker Night at the Inventory",purchase,1.0,0 -11149819,"World of Goo",purchase,1.0,0 -11149819,"Mount & Blade Warband",purchase,1.0,0 -11149819,"Dreamfall The Longest Journey",purchase,1.0,0 -11149819,"The Walking Dead",purchase,1.0,0 -11149819,"And Yet It Moves",purchase,1.0,0 -11149819,"A New Beginning - Final Cut",purchase,1.0,0 -11149819,"Antichamber",purchase,1.0,0 -11149819,"Aquaria",purchase,1.0,0 -11149819,"Atom Zombie Smasher ",purchase,1.0,0 -11149819,"Awesomenauts",purchase,1.0,0 -11149819,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -11149819,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -11149819,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -11149819,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -11149819,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -11149819,"Bad Rats",purchase,1.0,0 -11149819,"Batman Arkham City GOTY",purchase,1.0,0 -11149819,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -11149819,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -11149819,"BioShock Infinite - Season Pass",purchase,1.0,0 -11149819,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -11149819,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -11149819,"BIT.TRIP RUNNER",purchase,1.0,0 -11149819,"Blood Bowl Legendary Edition",purchase,1.0,0 -11149819,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -11149819,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -11149819,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -11149819,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -11149819,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -11149819,"Braid",purchase,1.0,0 -11149819,"Call of Juarez Bound in Blood",purchase,1.0,0 -11149819,"Capsized",purchase,1.0,0 -11149819,"Cave Story+",purchase,1.0,0 -11149819,"Child of Light",purchase,1.0,0 -11149819,"Cities XL Platinum",purchase,1.0,0 -11149819,"Cogs",purchase,1.0,0 -11149819,"Confrontation",purchase,1.0,0 -11149819,"Counter-Strike Condition Zero",purchase,1.0,0 -11149819,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -11149819,"Crayon Physics Deluxe",purchase,1.0,0 -11149819,"Crysis Warhead",purchase,1.0,0 -11149819,"Crysis Wars",purchase,1.0,0 -11149819,"Darksiders II",purchase,1.0,0 -11149819,"Dead Space",purchase,1.0,0 -11149819,"Dear Esther",purchase,1.0,0 -11149819,"Demolition, Inc.",purchase,1.0,0 -11149819,"Deponia",purchase,1.0,0 -11149819,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -11149819,"Dinner Date",purchase,1.0,0 -11149819,"DiRT",purchase,1.0,0 -11149819,"Divinity II Developer's Cut",purchase,1.0,0 -11149819,"Dominique Pamplemousse",purchase,1.0,0 -11149819,"Dungeon Defenders",purchase,1.0,0 -11149819,"Dungeons of Dredmor",purchase,1.0,0 -11149819,"Dust An Elysian Tail",purchase,1.0,0 -11149819,"Edna & Harvey Harvey's New Eyes",purchase,1.0,0 -11149819,"Eets",purchase,1.0,0 -11149819,"English Country Tune",purchase,1.0,0 -11149819,"Fallout New Vegas",purchase,1.0,0 -11149819,"Far Cry",purchase,1.0,0 -11149819,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -11149819,"FEZ",purchase,1.0,0 -11149819,"FlatOut Ultimate Carnage",purchase,1.0,0 -11149819,"FUEL",purchase,1.0,0 -11149819,"Galcon Fusion",purchase,1.0,0 -11149819,"Game of Thrones ",purchase,1.0,0 -11149819,"Giana Sisters Twisted Dreams",purchase,1.0,0 -11149819,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -11149819,"Gratuitous Space Battles",purchase,1.0,0 -11149819,"Guacamelee! Gold Edition",purchase,1.0,0 -11149819,"Hack, Slash, Loot",purchase,1.0,0 -11149819,"Half-Life 2",purchase,1.0,0 -11149819,"Half-Life 2 Deathmatch",purchase,1.0,0 -11149819,"Half-Life 2 Episode One",purchase,1.0,0 -11149819,"Half-Life 2 Episode Two",purchase,1.0,0 -11149819,"Half-Life 2 Lost Coast",purchase,1.0,0 -11149819,"Hammerfight",purchase,1.0,0 -11149819,"Hazard Ops",purchase,1.0,0 -11149819,"Hector Ep 1",purchase,1.0,0 -11149819,"Hector Ep 2",purchase,1.0,0 -11149819,"Hector Ep 3",purchase,1.0,0 -11149819,"Hitman Absolution",purchase,1.0,0 -11149819,"Hitman Sniper Challenge",purchase,1.0,0 -11149819,"Intrusion 2",purchase,1.0,0 -11149819,"Ion Assault",purchase,1.0,0 -11149819,"Jamestown",purchase,1.0,0 -11149819,"Killer is Dead",purchase,1.0,0 -11149819,"Little Inferno",purchase,1.0,0 -11149819,"Lugaru HD ",purchase,1.0,0 -11149819,"Machinarium",purchase,1.0,0 -11149819,"Magicka Final Frontier",purchase,1.0,0 -11149819,"Magicka Frozen Lake",purchase,1.0,0 -11149819,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -11149819,"Magicka Nippon",purchase,1.0,0 -11149819,"Magicka Party Robes",purchase,1.0,0 -11149819,"Magicka The Watchtower",purchase,1.0,0 -11149819,"Magicka Vietnam",purchase,1.0,0 -11149819,"Magicka Wizard's Survival Kit",purchase,1.0,0 -11149819,"Mass Effect 2",purchase,1.0,0 -11149819,"Monaco",purchase,1.0,0 -11149819,"Monday Night Combat",purchase,1.0,0 -11149819,"Natural Selection 2",purchase,1.0,0 -11149819,"Nexuiz",purchase,1.0,0 -11149819,"Nexuiz Beta",purchase,1.0,0 -11149819,"Nexuiz STUPID Mode",purchase,1.0,0 -11149819,"NightSky",purchase,1.0,0 -11149819,"Nikopol Secrets of the Immortals",purchase,1.0,0 -11149819,"NyxQuest",purchase,1.0,0 -11149819,"Oil Rush",purchase,1.0,0 -11149819,"Overlord",purchase,1.0,0 -11149819,"Overlord Raising Hell",purchase,1.0,0 -11149819,"Overlord II",purchase,1.0,0 -11149819,"Paranautical Activity Deluxe Atonement Edition",purchase,1.0,0 -11149819,"Patch testing for Chivalry",purchase,1.0,0 -11149819,"Penumbra Overture",purchase,1.0,0 -11149819,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -11149819,"Proteus",purchase,1.0,0 -11149819,"Psychonauts",purchase,1.0,0 -11149819,"Psychonauts Demo",purchase,1.0,0 -11149819,"Puzzle Agent",purchase,1.0,0 -11149819,"Puzzle Agent 2",purchase,1.0,0 -11149819,"Puzzle Dimension",purchase,1.0,0 -11149819,"Quake III Team Arena",purchase,1.0,0 -11149819,"Quake III Arena",purchase,1.0,0 -11149819,"RAW - Realms of Ancient War",purchase,1.0,0 -11149819,"Revenge of the Titans",purchase,1.0,0 -11149819,"Risen",purchase,1.0,0 -11149819,"Risen 2 - Dark Waters",purchase,1.0,0 -11149819,"Runaway The Dream of the Turtle",purchase,1.0,0 -11149819,"Sacred 2 Gold",purchase,1.0,0 -11149819,"Sacred Citadel",purchase,1.0,0 -11149819,"Saints Row 2",purchase,1.0,0 -11149819,"Saints Row The Third",purchase,1.0,0 -11149819,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -11149819,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -11149819,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -11149819,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -11149819,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -11149819,"Samorost 2",purchase,1.0,0 -11149819,"Sanctum 2",purchase,1.0,0 -11149819,"Scourge Outbreak",purchase,1.0,0 -11149819,"Serious Sam 3 BFE",purchase,1.0,0 -11149819,"Starseed Pilgrim",purchase,1.0,0 -11149819,"Steel Storm Burning Retribution",purchase,1.0,0 -11149819,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -11149819,"Swords and Soldiers HD",purchase,1.0,0 -11149819,"The Dream Machine Chapter 3",purchase,1.0,0 -11149819,"The Dream Machine Chapter 4",purchase,1.0,0 -11149819,"The Dream Machine Chapter 5",purchase,1.0,0 -11149819,"The Elder Scrolls V Skyrim",purchase,1.0,0 -11149819,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -11149819,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -11149819,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -11149819,"The Longest Journey",purchase,1.0,0 -11149819,"The Misadventures of P.B. Winterbottom",purchase,1.0,0 -11149819,"The Next BIG Thing",purchase,1.0,0 -11149819,"The Scourge Project Episode 1 and 2",purchase,1.0,0 -11149819,"The Swapper",purchase,1.0,0 -11149819,"The Walking Dead Season Two",purchase,1.0,0 -11149819,"The Whispered World Special Edition",purchase,1.0,0 -11149819,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -11149819,"This War of Mine - War Child Charity DLC",purchase,1.0,0 -11149819,"Thomas Was Alone",purchase,1.0,0 -11149819,"ToCA Race Driver 3",purchase,1.0,0 -11149819,"Unturned",purchase,1.0,0 -11149819,"VVVVVV",purchase,1.0,0 -11149819,"Wallace & Gromit Ep 1 Fright of the Bumblebees",purchase,1.0,0 -11149819,"Wallace & Gromit Ep 2 The Last Resort",purchase,1.0,0 -11149819,"Wallace & Gromit Ep 3 Muzzled!",purchase,1.0,0 -11149819,"Wallace & Gromit Ep 4 The Bogey Man",purchase,1.0,0 -186294113,"Dota 2",purchase,1.0,0 -186294113,"Dota 2",play,15.4,0 -206012062,"Dota 2",purchase,1.0,0 -206012062,"Dota 2",play,1.1,0 -97620507,"Team Fortress 2",purchase,1.0,0 -97620507,"Team Fortress 2",play,0.2,0 -39052243,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -39052243,"Dark Messiah of Might & Magic Multi-Player",play,3.9,0 -39052243,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -61031710,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -61031710,"Call of Duty Modern Warfare 2 - Multiplayer",play,323.0,0 -61031710,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -61031710,"Call of Duty Modern Warfare 3 - Multiplayer",play,173.0,0 -61031710,"Call of Duty Modern Warfare 3",purchase,1.0,0 -61031710,"Call of Duty Modern Warfare 3",play,22.0,0 -61031710,"Call of Duty Modern Warfare 2",purchase,1.0,0 -61031710,"Call of Duty Modern Warfare 2",play,18.8,0 -61031710,"Homefront",purchase,1.0,0 -61031710,"Homefront",play,14.6,0 -192080216,"Warframe",purchase,1.0,0 -302482376,"Euro Truck Simulator 2",purchase,1.0,0 -302482376,"Euro Truck Simulator 2",play,9.3,0 -75155353,"The Mighty Quest For Epic Loot",purchase,1.0,0 -75155353,"The Mighty Quest For Epic Loot",play,137.0,0 -75155353,"Robocraft",purchase,1.0,0 -75155353,"Robocraft",play,110.0,0 -75155353,"NBA 2K16",purchase,1.0,0 -75155353,"NBA 2K16",play,78.0,0 -75155353,"Puzzle Pirates",purchase,1.0,0 -75155353,"Puzzle Pirates",play,42.0,0 -75155353,"Dead Island Epidemic",purchase,1.0,0 -75155353,"Dead Island Epidemic",play,24.0,0 -75155353,"Pox Nora",purchase,1.0,0 -75155353,"Pox Nora",play,14.3,0 -75155353,"Magicka Wizard Wars",purchase,1.0,0 -75155353,"Magicka Wizard Wars",play,6.8,0 -75155353,"Evolve",purchase,1.0,0 -75155353,"Evolve",play,4.4,0 -75155353,"AirMech",purchase,1.0,0 -75155353,"AirMech",play,2.7,0 -75155353,"Sunrider Mask of Arcadius",purchase,1.0,0 -75155353,"Sunrider Mask of Arcadius",play,0.3,0 -75155353,"BioShock",purchase,1.0,0 -75155353,"BioShock",play,0.3,0 -75155353,"NBA 2K11",purchase,1.0,0 -75155353,"NBA 2K11",play,0.2,0 -75155353,"Guns and Robots",purchase,1.0,0 -75155353,"Guns and Robots",play,0.1,0 -75155353,"La Tale",purchase,1.0,0 -75155353,"BioShock 2",purchase,1.0,0 -75155353,"BioShock Infinite",purchase,1.0,0 -75155353,"BioShock Infinite - Season Pass",purchase,1.0,0 -75155353,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -75155353,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -75155353,"Borderlands",purchase,1.0,0 -75155353,"Borderlands 2",purchase,1.0,0 -75155353,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -75155353,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -75155353,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -75155353,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -75155353,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -75155353,"Borderlands The Pre-Sequel",purchase,1.0,0 -75155353,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -75155353,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -75155353,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -75155353,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -75155353,"CivCity Rome",purchase,1.0,0 -75155353,"Crow - Hunter (Trapper Class)",purchase,1.0,0 -75155353,"Duke Nukem Forever",purchase,1.0,0 -75155353,"Evolve - Behemoth",purchase,1.0,0 -75155353,"Evolve - Gorgon",purchase,1.0,0 -75155353,"Freedom Force",purchase,1.0,0 -75155353,"Freedom Force vs. the 3rd Reich",purchase,1.0,0 -75155353,"Jack - Hunter (Trapper Class)",purchase,1.0,0 -75155353,"Jade Empire Special Edition",purchase,1.0,0 -75155353,"Lennox - Hunter (Assault Class)",purchase,1.0,0 -75155353,"Mafia",purchase,1.0,0 -75155353,"Mafia II",purchase,1.0,0 -75155353,"Major League Baseball 2K9",purchase,1.0,0 -75155353,"MLB 2K10",purchase,1.0,0 -75155353,"MLB 2K11",purchase,1.0,0 -75155353,"MLB 2K12",purchase,1.0,0 -75155353,"MLB Front Office Manager",purchase,1.0,0 -75155353,"NBA 2K9",purchase,1.0,0 -75155353,"NBA 2K10",purchase,1.0,0 -75155353,"NBA 2K12",purchase,1.0,0 -75155353,"NBA 2K13",purchase,1.0,0 -75155353,"NBA 2K14",purchase,1.0,0 -75155353,"NBA 2K15",purchase,1.0,0 -75155353,"Prey",purchase,1.0,0 -75155353,"Railroad Tycoon 2 Platinum",purchase,1.0,0 -75155353,"Railroad Tycoon 3",purchase,1.0,0 -75155353,"Shattered Union",purchase,1.0,0 -75155353,"Sid Meier's Ace Patrol",purchase,1.0,0 -75155353,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -75155353,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -75155353,"Sid Meier's Civilization Beyond Earth - Rising Tide",purchase,1.0,0 -75155353,"Sid Meier's Civilization III Complete",purchase,1.0,0 -75155353,"Sid Meier's Civilization IV",purchase,1.0,0 -75155353,"Sid Meier's Civilization IV",purchase,1.0,0 -75155353,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -75155353,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -75155353,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -75155353,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -75155353,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -75155353,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -75155353,"Sid Meier's Civilization V",purchase,1.0,0 -75155353,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -75155353,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -75155353,"Sid Meier's Pirates!",purchase,1.0,0 -75155353,"Sid Meier's Railroads!",purchase,1.0,0 -75155353,"Sid Meier's Starships",purchase,1.0,0 -75155353,"Slim - Hunter (Medic Class)",purchase,1.0,0 -75155353,"Spec Ops The Line",purchase,1.0,0 -75155353,"Stronghold 2",purchase,1.0,0 -75155353,"Stronghold Crusader Extreme HD",purchase,1.0,0 -75155353,"Stronghold Crusader HD",purchase,1.0,0 -75155353,"Stronghold HD",purchase,1.0,0 -75155353,"Stronghold Legends",purchase,1.0,0 -75155353,"Sunny - Hunter (Support Class)",purchase,1.0,0 -75155353,"The Bureau XCOM Declassified",purchase,1.0,0 -75155353,"The Darkness II",purchase,1.0,0 -75155353,"The Misadventures of P.B. Winterbottom",purchase,1.0,0 -75155353,"Torvald - Hunter (Assault Class)",purchase,1.0,0 -75155353,"X-COM Apocalypse",purchase,1.0,0 -75155353,"X-COM Enforcer",purchase,1.0,0 -75155353,"X-COM Interceptor",purchase,1.0,0 -75155353,"X-COM Terror from the Deep",purchase,1.0,0 -75155353,"X-COM UFO Defense",purchase,1.0,0 -75155353,"XCOM Enemy Unknown",purchase,1.0,0 -75155353,"XCOM Enemy Within",purchase,1.0,0 -133328129,"Team Fortress 2",purchase,1.0,0 -133328129,"Team Fortress 2",play,2.0,0 -123917008,"Dota 2",purchase,1.0,0 -123917008,"Dota 2",play,1301.0,0 -248910639,"Dota 2",purchase,1.0,0 -248910639,"Dota 2",play,0.5,0 -60744461,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -60744461,"Call of Duty Modern Warfare 3 - Multiplayer",play,221.0,0 -60744461,"Fallout New Vegas",purchase,1.0,0 -60744461,"Fallout New Vegas",play,217.0,0 -60744461,"Deus Ex Human Revolution",purchase,1.0,0 -60744461,"Deus Ex Human Revolution",play,76.0,0 -60744461,"Risen 2 - Dark Waters",purchase,1.0,0 -60744461,"Risen 2 - Dark Waters",play,65.0,0 -60744461,"Metro 2033",purchase,1.0,0 -60744461,"Metro 2033",play,61.0,0 -60744461,"Borderlands 2 RU",purchase,1.0,0 -60744461,"Borderlands 2 RU",play,42.0,0 -60744461,"RAGE",purchase,1.0,0 -60744461,"RAGE",play,40.0,0 -60744461,"F.E.A.R. 3",purchase,1.0,0 -60744461,"F.E.A.R. 3",play,16.9,0 -60744461,"Half-Life 2 Episode Two",purchase,1.0,0 -60744461,"Half-Life 2 Episode Two",play,16.4,0 -60744461,"Aliens vs. Predator",purchase,1.0,0 -60744461,"Aliens vs. Predator",play,15.3,0 -60744461,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -60744461,"F.E.A.R. 2 Project Origin",play,14.6,0 -60744461,"Serious Sam HD The Second Encounter",purchase,1.0,0 -60744461,"Serious Sam HD The Second Encounter",play,12.2,0 -60744461,"Duke Nukem Forever ",purchase,1.0,0 -60744461,"Duke Nukem Forever ",play,3.8,0 -60744461,"Dungeon Siege III",purchase,1.0,0 -60744461,"Dungeon Siege III",play,3.8,0 -60744461,"Call of Duty Modern Warfare 3",purchase,1.0,0 -60744461,"Call of Duty Modern Warfare 3",play,3.3,0 -60744461,"Borderlands 2",purchase,1.0,0 -201169447,"The Secret World",purchase,1.0,0 -201169447,"The Secret World",play,6.3,0 -138587718,"Dota 2",purchase,1.0,0 -138587718,"Dota 2",play,1467.0,0 -220048685,"Ragnarok Online 2",purchase,1.0,0 -220048685,"Ragnarok Online 2",play,0.5,0 -220048685,"Dragon Nest",purchase,1.0,0 -220048685,"Aura Kingdom",purchase,1.0,0 -220048685,"EverQuest II",purchase,1.0,0 -220048685,"Neverwinter",purchase,1.0,0 -220048685,"Path of Exile",purchase,1.0,0 -220048685,"RIFT",purchase,1.0,0 -220048685,"Star Trek Online",purchase,1.0,0 -220048685,"Wizardry Online",purchase,1.0,0 -91883012,"Sid Meier's Civilization V",purchase,1.0,0 -91883012,"Sid Meier's Civilization V",play,118.0,0 -91883012,"Eufloria",purchase,1.0,0 -91883012,"Eufloria",play,82.0,0 -91883012,"The Sims(TM) 3",purchase,1.0,0 -91883012,"The Sims(TM) 3",play,76.0,0 -91883012,"SimCity 4 Deluxe",purchase,1.0,0 -91883012,"SimCity 4 Deluxe",play,76.0,0 -91883012,"Sid Meier's Civilization III Complete",purchase,1.0,0 -91883012,"Sid Meier's Civilization III Complete",play,24.0,0 -91883012,"Eufloria HD",purchase,1.0,0 -91883012,"Eufloria HD",play,18.7,0 -91883012,"Hospital Tycoon",purchase,1.0,0 -91883012,"Hospital Tycoon",play,0.6,0 -91883012,"Eufloria HD Original Soundtrack",purchase,1.0,0 -91883012,"Gish",purchase,1.0,0 -91883012,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -91883012,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -249962199,"Dota 2",purchase,1.0,0 -249962199,"Dota 2",play,53.0,0 -124258418,"Dota 2",purchase,1.0,0 -124258418,"Dota 2",play,46.0,0 -94334982,"Team Fortress 2",purchase,1.0,0 -94334982,"Team Fortress 2",play,1.3,0 -122658341,"Counter-Strike Global Offensive",purchase,1.0,0 -122658341,"Counter-Strike Global Offensive",play,407.0,0 -122658341,"Infestation Survivor Stories",purchase,1.0,0 -122658341,"Infestation Survivor Stories",play,67.0,0 -122658341,"PAYDAY 2",purchase,1.0,0 -122658341,"PAYDAY 2",play,48.0,0 -122658341,"Terraria",purchase,1.0,0 -122658341,"Terraria",play,12.3,0 -122658341,"Batman Arkham Origins",purchase,1.0,0 -122658341,"Batman Arkham Origins",play,12.2,0 -122658341,"Unturned",purchase,1.0,0 -122658341,"Unturned",play,11.0,0 -122658341,"Hotline Miami",purchase,1.0,0 -122658341,"Hotline Miami",play,10.5,0 -122658341,"Don't Starve Together Beta",purchase,1.0,0 -122658341,"Don't Starve Together Beta",play,6.3,0 -122658341,"Don't Starve",purchase,1.0,0 -122658341,"Don't Starve",play,5.4,0 -122658341,"Orcs Must Die! 2",purchase,1.0,0 -122658341,"Orcs Must Die! 2",play,3.7,0 -122658341,"Sniper Elite V2",purchase,1.0,0 -122658341,"Sniper Elite V2",play,2.2,0 -122658341,"Dota 2",purchase,1.0,0 -122658341,"Dota 2",play,1.9,0 -122658341,"Magicka",purchase,1.0,0 -122658341,"Magicka",play,1.3,0 -122658341,"Team Fortress 2",purchase,1.0,0 -122658341,"Team Fortress 2",play,0.7,0 -122658341,"Castle Crashers",purchase,1.0,0 -122658341,"Castle Crashers",play,0.7,0 -122658341,"Don't Starve Reign of Giants",purchase,1.0,0 -238959078,"Counter-Strike Global Offensive",purchase,1.0,0 -238959078,"Counter-Strike Global Offensive",play,0.6,0 -31817706,"Football Manager 2013",purchase,1.0,0 -31817706,"Football Manager 2013",play,407.0,0 -31817706,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -31817706,"Sid Meier's Civilization Beyond Earth",play,91.0,0 -31817706,"Football Manager 2009",purchase,1.0,0 -31817706,"Football Manager 2009",play,38.0,0 -31817706,"Football Manager 2015",purchase,1.0,0 -31817706,"Football Manager 2015",play,24.0,0 -31817706,"The Jackbox Party Pack",purchase,1.0,0 -31817706,"The Jackbox Party Pack",play,1.6,0 -31817706,"Day of Defeat",purchase,1.0,0 -31817706,"Day of Defeat",play,1.2,0 -31817706,"Euro Fishing",purchase,1.0,0 -31817706,"Euro Fishing",play,0.9,0 -31817706,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -31817706,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,0.4,0 -31817706,"Counter-Strike",purchase,1.0,0 -31817706,"Counter-Strike Condition Zero",purchase,1.0,0 -31817706,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -31817706,"Darkest Hour Europe '44-'45",purchase,1.0,0 -31817706,"Deathmatch Classic",purchase,1.0,0 -31817706,"Half-Life",purchase,1.0,0 -31817706,"Half-Life 2",purchase,1.0,0 -31817706,"Half-Life 2 Episode One",purchase,1.0,0 -31817706,"Half-Life 2 Episode Two",purchase,1.0,0 -31817706,"Half-Life 2 Lost Coast",purchase,1.0,0 -31817706,"Half-Life Blue Shift",purchase,1.0,0 -31817706,"Half-Life Opposing Force",purchase,1.0,0 -31817706,"Mare Nostrum",purchase,1.0,0 -31817706,"Portal",purchase,1.0,0 -31817706,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -31817706,"Ricochet",purchase,1.0,0 -31817706,"Team Fortress Classic",purchase,1.0,0 -213834257,"Team Fortress 2",purchase,1.0,0 -213834257,"Team Fortress 2",play,3.7,0 -138578560,"Dota 2",purchase,1.0,0 -138578560,"Dota 2",play,0.1,0 -231505005,"Dota 2",purchase,1.0,0 -231505005,"Dota 2",play,164.0,0 -231505005,"BLOCKADE 3D",purchase,1.0,0 -187520593,"Dota 2",purchase,1.0,0 -187520593,"Dota 2",play,6.1,0 -187520593,"APB Reloaded",purchase,1.0,0 -187520593,"Blacklight Retribution",purchase,1.0,0 -187520593,"GunZ 2 The Second Duel",purchase,1.0,0 -187520593,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -187520593,"Warframe",purchase,1.0,0 -50700418,"Medieval II Total War",purchase,1.0,0 -50700418,"Medieval II Total War",play,143.0,0 -50700418,"Middle-earth Shadow of Mordor",purchase,1.0,0 -50700418,"Middle-earth Shadow of Mordor",play,63.0,0 -50700418,"Total War SHOGUN 2",purchase,1.0,0 -50700418,"Total War SHOGUN 2",play,56.0,0 -50700418,"Empire Total War",purchase,1.0,0 -50700418,"Empire Total War",play,45.0,0 -50700418,"Sid Meier's Civilization V",purchase,1.0,0 -50700418,"Sid Meier's Civilization V",play,45.0,0 -50700418,"Team Fortress 2",purchase,1.0,0 -50700418,"Team Fortress 2",play,36.0,0 -50700418,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -50700418,"Tom Clancy's Splinter Cell Blacklist",play,33.0,0 -50700418,"Total War ROME II - Emperor Edition",purchase,1.0,0 -50700418,"Total War ROME II - Emperor Edition",play,23.0,0 -50700418,"Age of Empires II HD Edition",purchase,1.0,0 -50700418,"Age of Empires II HD Edition",play,22.0,0 -50700418,"Fable Anniversary",purchase,1.0,0 -50700418,"Fable Anniversary",play,22.0,0 -50700418,"Infested Planet",purchase,1.0,0 -50700418,"Infested Planet",play,16.7,0 -50700418,"Ori and the Blind Forest",purchase,1.0,0 -50700418,"Ori and the Blind Forest",play,15.0,0 -50700418,"Chivalry Medieval Warfare",purchase,1.0,0 -50700418,"Chivalry Medieval Warfare",play,12.4,0 -50700418,"Mortal Kombat X",purchase,1.0,0 -50700418,"Mortal Kombat X",play,11.1,0 -50700418,"Crusader Kings II",purchase,1.0,0 -50700418,"Crusader Kings II",play,9.0,0 -50700418,"The Walking Dead Season Two",purchase,1.0,0 -50700418,"The Walking Dead Season Two",play,8.8,0 -50700418,"The Wolf Among Us",purchase,1.0,0 -50700418,"The Wolf Among Us",play,8.7,0 -50700418,"Portal",purchase,1.0,0 -50700418,"Portal",play,7.5,0 -50700418,"Split/Second",purchase,1.0,0 -50700418,"Split/Second",play,7.4,0 -50700418,"Portal 2",purchase,1.0,0 -50700418,"Portal 2",play,6.8,0 -50700418,"Ryse Son of Rome",purchase,1.0,0 -50700418,"Ryse Son of Rome",play,6.5,0 -50700418,"The Banner Saga",purchase,1.0,0 -50700418,"The Banner Saga",play,6.4,0 -50700418,"Yesterday",purchase,1.0,0 -50700418,"Yesterday",play,5.6,0 -50700418,"Styx Master of Shadows",purchase,1.0,0 -50700418,"Styx Master of Shadows",play,3.7,0 -50700418,"Dead Space",purchase,1.0,0 -50700418,"Dead Space",play,3.2,0 -50700418,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -50700418,"Warhammer 40,000 Dawn of War Soulstorm",play,3.2,0 -50700418,"Restaurant Empire II",purchase,1.0,0 -50700418,"Restaurant Empire II",play,3.2,0 -50700418,"Age of Mythology Extended Edition",purchase,1.0,0 -50700418,"Age of Mythology Extended Edition",play,3.2,0 -50700418,"Dungeonland",purchase,1.0,0 -50700418,"Dungeonland",play,3.1,0 -50700418,"Torchlight II",purchase,1.0,0 -50700418,"Torchlight II",play,3.0,0 -50700418,"FORCED",purchase,1.0,0 -50700418,"FORCED",play,2.7,0 -50700418,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -50700418,"The Elder Scrolls IV Oblivion ",play,2.6,0 -50700418,"Warframe",purchase,1.0,0 -50700418,"Warframe",play,2.5,0 -50700418,"Insurgency",purchase,1.0,0 -50700418,"Insurgency",play,2.5,0 -50700418,"Thief",purchase,1.0,0 -50700418,"Thief",play,2.0,0 -50700418,"The Ship Single Player",purchase,1.0,0 -50700418,"The Ship Single Player",play,1.9,0 -50700418,"Nosgoth",purchase,1.0,0 -50700418,"Nosgoth",play,1.6,0 -50700418,"Dead Space 2",purchase,1.0,0 -50700418,"Dead Space 2",play,1.4,0 -50700418,"Divinity Original Sin",purchase,1.0,0 -50700418,"Divinity Original Sin",play,1.4,0 -50700418,"DARK SOULS II",purchase,1.0,0 -50700418,"DARK SOULS II",play,1.3,0 -50700418,"Warhammer End Times - Vermintide",purchase,1.0,0 -50700418,"Warhammer End Times - Vermintide",play,1.0,0 -50700418,"Age of Empires III Complete Collection",purchase,1.0,0 -50700418,"Age of Empires III Complete Collection",play,1.0,0 -50700418,"The Ship",purchase,1.0,0 -50700418,"The Ship",play,1.0,0 -50700418,"Warmachine Tactics",purchase,1.0,0 -50700418,"Warmachine Tactics",play,1.0,0 -50700418,"Don't Starve Together Beta",purchase,1.0,0 -50700418,"Don't Starve Together Beta",play,0.9,0 -50700418,"Endless Legend",purchase,1.0,0 -50700418,"Endless Legend",play,0.7,0 -50700418,"SpeedRunners",purchase,1.0,0 -50700418,"SpeedRunners",play,0.6,0 -50700418,"Nether",purchase,1.0,0 -50700418,"Nether",play,0.5,0 -50700418,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -50700418,"Blue Toad Murder Files - The Mysteries of Little Riddle",purchase,1.0,0 -50700418,"Age of Empires II HD The Forgotten",purchase,1.0,0 -50700418,"AirMech",purchase,1.0,0 -50700418,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -50700418,"Don't Starve",purchase,1.0,0 -50700418,"Double Action Boogaloo",purchase,1.0,0 -50700418,"Dragon's Prophet",purchase,1.0,0 -50700418,"Fistful of Frags",purchase,1.0,0 -50700418,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -50700418,"Kung Fury",purchase,1.0,0 -50700418,"Magicka Wizard Wars",purchase,1.0,0 -50700418,"Patch testing for Chivalry",purchase,1.0,0 -50700418,"Path of Exile",purchase,1.0,0 -50700418,"PlanetSide 2",purchase,1.0,0 -50700418,"Quake Live",purchase,1.0,0 -50700418,"Robocraft",purchase,1.0,0 -50700418,"Rock of Ages",purchase,1.0,0 -50700418,"Spiral Knights",purchase,1.0,0 -50700418,"The Banner Saga - Mod Content",purchase,1.0,0 -50700418,"The Ship Tutorial",purchase,1.0,0 -50700418,"Unturned",purchase,1.0,0 -50700418,"Warhammer End Times - Vermintide Sigmar's Blessing",purchase,1.0,0 -176223416,"Euro Truck Simulator 2",purchase,1.0,0 -176223416,"Euro Truck Simulator 2",play,621.0,0 -176223416,"Counter-Strike Global Offensive",purchase,1.0,0 -176223416,"Counter-Strike Global Offensive",play,200.0,0 -176223416,"Train Simulator",purchase,1.0,0 -176223416,"Train Simulator",play,10.9,0 -176223416,"Scania Truck Driving Simulator",purchase,1.0,0 -176223416,"Scania Truck Driving Simulator",play,2.8,0 -176223416,"Team Fortress 2",purchase,1.0,0 -176223416,"Team Fortress 2",play,1.2,0 -176223416,"Toribash",purchase,1.0,0 -176223416,"Toribash",play,0.2,0 -176223416,"Unturned",purchase,1.0,0 -176223416,"Unturned",play,0.2,0 -176223416,"Star Wars Knights of the Old Republic",purchase,1.0,0 -176223416,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -176223416,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -176223416,"Heroes & Generals",purchase,1.0,0 -176223416,"Platypus II",purchase,1.0,0 -176223416,"Warface",purchase,1.0,0 -207747607,"Dota 2",purchase,1.0,0 -207747607,"Dota 2",play,4.0,0 -114899424,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -114899424,"Call of Duty Black Ops - Multiplayer",play,25.0,0 -114899424,"Call of Duty Black Ops",purchase,1.0,0 -114899424,"Call of Duty Black Ops",play,7.1,0 -6656519,"Counter-Strike",purchase,1.0,0 -6656519,"Counter-Strike",play,1.6,0 -6656519,"Counter-Strike Condition Zero",purchase,1.0,0 -6656519,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -224620377,"Dota 2",purchase,1.0,0 -224620377,"Dota 2",play,1.2,0 -104704406,"Hitman 2 Silent Assassin",purchase,1.0,0 -104704406,"Hitman 2 Silent Assassin",play,9.6,0 -215208719,"H1Z1",purchase,1.0,0 -215208719,"H1Z1",play,307.0,0 -215208719,"AdVenture Capitalist",purchase,1.0,0 -215208719,"AdVenture Capitalist",play,114.0,0 -215208719,"Rocket League",purchase,1.0,0 -215208719,"Rocket League",play,92.0,0 -215208719,"Counter-Strike Global Offensive",purchase,1.0,0 -215208719,"Counter-Strike Global Offensive",play,57.0,0 -215208719,"Lifeless Planet",purchase,1.0,0 -215208719,"Lifeless Planet",play,47.0,0 -215208719,"Call of Duty Black Ops III",purchase,1.0,0 -215208719,"Call of Duty Black Ops III",play,32.0,0 -215208719,"War Thunder",purchase,1.0,0 -215208719,"War Thunder",play,24.0,0 -215208719,"I am Bread",purchase,1.0,0 -215208719,"I am Bread",play,23.0,0 -215208719,"Assassin's Creed III",purchase,1.0,0 -215208719,"Assassin's Creed III",play,22.0,0 -215208719,"The Expendabros",purchase,1.0,0 -215208719,"The Expendabros",play,19.6,0 -215208719,"Garry's Mod",purchase,1.0,0 -215208719,"Garry's Mod",play,15.9,0 -215208719,"Mitos.is The Game",purchase,1.0,0 -215208719,"Mitos.is The Game",play,14.9,0 -215208719,"GRID",purchase,1.0,0 -215208719,"GRID",play,11.7,0 -215208719,"Yet Another Zombie Defense",purchase,1.0,0 -215208719,"Yet Another Zombie Defense",play,7.4,0 -215208719,"Outlast",purchase,1.0,0 -215208719,"Outlast",play,6.8,0 -215208719,"Sniper Elite Nazi Zombie Army",purchase,1.0,0 -215208719,"Sniper Elite Nazi Zombie Army",play,5.0,0 -215208719,"PAYDAY 2",purchase,1.0,0 -215208719,"PAYDAY 2",play,4.3,0 -215208719,"ORION Prelude",purchase,1.0,0 -215208719,"ORION Prelude",play,3.8,0 -215208719,"Metro Last Light",purchase,1.0,0 -215208719,"Metro Last Light",play,3.2,0 -215208719,"Cities Skylines",purchase,1.0,0 -215208719,"Cities Skylines",play,3.0,0 -215208719,"Unturned",purchase,1.0,0 -215208719,"Unturned",play,2.9,0 -215208719,"Goat Simulator",purchase,1.0,0 -215208719,"Goat Simulator",play,2.7,0 -215208719,"ArcheAge",purchase,1.0,0 -215208719,"ArcheAge",play,2.4,0 -215208719,"Spooky's House of Jump Scares",purchase,1.0,0 -215208719,"Spooky's House of Jump Scares",play,2.3,0 -215208719,"Portal",purchase,1.0,0 -215208719,"Portal",play,1.6,0 -215208719,"Surgeon Simulator",purchase,1.0,0 -215208719,"Surgeon Simulator",play,1.5,0 -215208719,"KHOLAT",purchase,1.0,0 -215208719,"KHOLAT",play,1.3,0 -215208719,"The Way of Life Free Edition",purchase,1.0,0 -215208719,"The Way of Life Free Edition",play,1.1,0 -215208719,"FootLOL Epic Fail League",purchase,1.0,0 -215208719,"FootLOL Epic Fail League",play,0.7,0 -215208719,"Emily is Away",purchase,1.0,0 -215208719,"Emily is Away",play,0.7,0 -215208719,"Only If",purchase,1.0,0 -215208719,"Only If",play,0.6,0 -215208719,"Plague Inc Evolved",purchase,1.0,0 -215208719,"Plague Inc Evolved",play,0.6,0 -215208719,"Five Nights at Freddy's",purchase,1.0,0 -215208719,"Five Nights at Freddy's",play,0.5,0 -215208719,"Wolfenstein 3D",purchase,1.0,0 -215208719,"Wolfenstein 3D",play,0.3,0 -215208719,"Squishy the Suicidal Pig",purchase,1.0,0 -215208719,"Squishy the Suicidal Pig",play,0.3,0 -215208719,"Just Cause 2",purchase,1.0,0 -215208719,"Just Cause 2",play,0.3,0 -215208719,"The Hat Man Shadow Ward",purchase,1.0,0 -215208719,"The Hat Man Shadow Ward",play,0.2,0 -215208719,"Dino D-Day",purchase,1.0,0 -215208719,"Dino D-Day",play,0.2,0 -215208719,"Team Fortress 2",purchase,1.0,0 -215208719,"Team Fortress 2",play,0.1,0 -215208719,"Fistful of Frags",purchase,1.0,0 -215208719,"Fistful of Frags",play,0.1,0 -215208719,"Nidhogg",purchase,1.0,0 -215208719,"Nidhogg",play,0.1,0 -215208719,"Haunted Memories",purchase,1.0,0 -215208719,"Reveal The Deep",purchase,1.0,0 -215208719,"All Is Dust",purchase,1.0,0 -215208719,"H1Z1 Test Server",purchase,1.0,0 -215208719,"Anomaly Warzone Earth",purchase,1.0,0 -215208719,"Apotheon Arena",purchase,1.0,0 -215208719,"Awesomenauts",purchase,1.0,0 -215208719,"BLOCKADE 3D",purchase,1.0,0 -215208719,"Dirty Bomb",purchase,1.0,0 -215208719,"Heroes & Generals",purchase,1.0,0 -215208719,"Magicka",purchase,1.0,0 -215208719,"Magicka Wizard Wars",purchase,1.0,0 -215208719,"Mortal Kombat Legacy - Ep. 3 Johnny Cage",purchase,1.0,0 -215208719,"Mortal Kombat Legacy - Ep. 4 Kitana & Mileena (Part 1)",purchase,1.0,0 -215208719,"Mortal Kombat Legacy - Ep. 5 Kitana & Mileena (Part 2)",purchase,1.0,0 -215208719,"Mortal Kombat Legacy - Ep. 6 Raiden",purchase,1.0,0 -215208719,"Mortal Kombat Legacy - Ep. 7 Scorpion and Sub-Zero (Part 1)",purchase,1.0,0 -215208719,"Mortal Kombat Legacy - Ep. 8 Scorpion and Sub-Zero (Part 2)",purchase,1.0,0 -215208719,"Mortal Kombat Legacy - Ep. 9 Cyrax & Sektor",purchase,1.0,0 -215208719,"Passing Pineview Forest",purchase,1.0,0 -215208719,"PlanetSide 2",purchase,1.0,0 -215208719,"Quake Live",purchase,1.0,0 -215208719,"Soldier Front 2",purchase,1.0,0 -215208719,"Strike Suit Zero",purchase,1.0,0 -215208719,"theHunter",purchase,1.0,0 -215208719,"Trove",purchase,1.0,0 -12169570,"Counter-Strike Source",purchase,1.0,0 -12169570,"Counter-Strike Source",play,108.0,0 -12169570,"Half-Life 2",purchase,1.0,0 -12169570,"Half-Life 2 Deathmatch",purchase,1.0,0 -12169570,"Half-Life 2 Lost Coast",purchase,1.0,0 -201208624,"Men of War Assault Squad",purchase,1.0,0 -201208624,"Men of War Assault Squad",play,319.0,0 -99520124,"Dungeon Siege III",purchase,1.0,0 -99520124,"Dungeon Siege III",play,0.2,0 -183813172,"Dota 2",purchase,1.0,0 -183813172,"Dota 2",play,1.7,0 -164318687,"Counter-Strike Global Offensive",purchase,1.0,0 -164318687,"Counter-Strike Global Offensive",play,440.0,0 -164318687,"America's Army Proving Grounds",purchase,1.0,0 -164318687,"America's Army Proving Grounds",play,168.0,0 -164318687,"Arma 3",purchase,1.0,0 -164318687,"Arma 3",play,152.0,0 -164318687,"Rust",purchase,1.0,0 -164318687,"Rust",play,139.0,0 -164318687,"DayZ",purchase,1.0,0 -164318687,"DayZ",play,120.0,0 -164318687,"Arma 2 Operation Arrowhead",purchase,1.0,0 -164318687,"Arma 2 Operation Arrowhead",play,69.0,0 -164318687,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -164318687,"Tom Clancy's Ghost Recon Phantoms - NA",play,33.0,0 -164318687,"Reign Of Kings",purchase,1.0,0 -164318687,"Reign Of Kings",play,16.5,0 -164318687,"The Forest",purchase,1.0,0 -164318687,"The Forest",play,14.4,0 -164318687,"Garry's Mod",purchase,1.0,0 -164318687,"Garry's Mod",play,12.4,0 -164318687,"Insurgency",purchase,1.0,0 -164318687,"Insurgency",play,10.3,0 -164318687,"Unturned",purchase,1.0,0 -164318687,"Unturned",play,10.1,0 -164318687,"Nether",purchase,1.0,0 -164318687,"Nether",play,7.2,0 -164318687,"ARK Survival Evolved",purchase,1.0,0 -164318687,"ARK Survival Evolved",play,6.8,0 -164318687,"7 Days to Die",purchase,1.0,0 -164318687,"7 Days to Die",play,6.4,0 -164318687,"America's Army 3",purchase,1.0,0 -164318687,"America's Army 3",play,2.6,0 -164318687,"Warframe",purchase,1.0,0 -164318687,"Warframe",play,2.3,0 -164318687,"Arma 2",purchase,1.0,0 -164318687,"Arma 2",play,2.2,0 -164318687,"sZone-Online",purchase,1.0,0 -164318687,"sZone-Online",play,1.0,0 -164318687,"PAYDAY The Heist",purchase,1.0,0 -164318687,"PAYDAY The Heist",play,0.9,0 -164318687,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -164318687,"Kingdoms of Amalur Reckoning",play,0.4,0 -164318687,"TERA",purchase,1.0,0 -164318687,"TERA",play,0.3,0 -164318687,"Arma 2 DayZ Mod",purchase,1.0,0 -164318687,"Arma 2 DayZ Mod",play,0.2,0 -164318687,"Dino D-Day",purchase,1.0,0 -164318687,"Dino D-Day",play,0.2,0 -164318687,"Vindictus",purchase,1.0,0 -164318687,"Aftermath",purchase,1.0,0 -164318687,"Counter-Strike Nexon Zombies",purchase,1.0,0 -164318687,"AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome",purchase,1.0,0 -164318687,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -164318687,"Arma 3 Zeus",purchase,1.0,0 -164318687,"Back to Dinosaur Island ",purchase,1.0,0 -164318687,"Codename CURE",purchase,1.0,0 -164318687,"Dead Island Epidemic",purchase,1.0,0 -164318687,"Defiance",purchase,1.0,0 -164318687,"Dirty Bomb",purchase,1.0,0 -164318687,"Dizzel",purchase,1.0,0 -164318687,"Grimoire Manastorm",purchase,1.0,0 -164318687,"Gun Monkeys",purchase,1.0,0 -164318687,"Metro 2033",purchase,1.0,0 -164318687,"Nether - Chosen",purchase,1.0,0 -164318687,"Nether Arena",purchase,1.0,0 -164318687,"PAYDAY Wolf Pack",purchase,1.0,0 -164318687,"Receiver",purchase,1.0,0 -164318687,"Soldier Front 2",purchase,1.0,0 -164318687,"Space Hack",purchase,1.0,0 -164318687,"Survarium",purchase,1.0,0 -164318687,"Toribash",purchase,1.0,0 -164318687,"Viridi",purchase,1.0,0 -164318687,"Warface",purchase,1.0,0 -91486768,"Aliens vs. Predator",purchase,1.0,0 -91486768,"Aliens vs. Predator",play,56.0,0 -91486768,"Cry of Fear",purchase,1.0,0 -91486768,"Cry of Fear",play,0.1,0 -190615811,"Dota 2",purchase,1.0,0 -190615811,"Dota 2",play,0.2,0 -186022495,"Counter-Strike Global Offensive",purchase,1.0,0 -186022495,"Counter-Strike Global Offensive",play,69.0,0 -186022495,"Robocraft",purchase,1.0,0 -186022495,"Robocraft",play,2.0,0 -186022495,"Soccer Manager 2015",purchase,1.0,0 -186022495,"Soccer Manager 2015",play,1.4,0 -186022495,"Unturned",purchase,1.0,0 -186022495,"Unturned",play,1.2,0 -186022495,"Garry's Mod",purchase,1.0,0 -186022495,"Garry's Mod",play,1.1,0 -186022495,"America's Army Proving Grounds",purchase,1.0,0 -186022495,"America's Army Proving Grounds",play,0.4,0 -186022495,"Happy Wars",purchase,1.0,0 -186022495,"Happy Wars",play,0.4,0 -186022495,"Counter-Strike Nexon Zombies",purchase,1.0,0 -186022495,"Counter-Strike Nexon Zombies",play,0.4,0 -186022495,"theHunter",purchase,1.0,0 -186022495,"theHunter",play,0.3,0 -186022495,"Trove",purchase,1.0,0 -186022495,"Trove",play,0.2,0 -186022495,"Endless Sky",purchase,1.0,0 -186022495,"Endless Sky",play,0.1,0 -186022495,"Dead Island Epidemic",purchase,1.0,0 -186022495,"Dead Island Epidemic",play,0.1,0 -186022495,"Marvel Heroes 2015",purchase,1.0,0 -186022495,"Neverwinter",purchase,1.0,0 -186022495,"Uncharted Waters Online Gran Atlas",purchase,1.0,0 -184987886,"Borderlands 2",purchase,1.0,0 -184987886,"Borderlands 2",play,36.0,0 -184987886,"Defiance",purchase,1.0,0 -184987886,"Defiance",play,16.8,0 -184987886,"Royal Quest",purchase,1.0,0 -184987886,"Royal Quest",play,5.4,0 -184987886,"Clicker Heroes",purchase,1.0,0 -184987886,"Clicker Heroes",play,3.9,0 -184987886,"METAL SLUG DEFENSE",purchase,1.0,0 -184987886,"METAL SLUG DEFENSE",play,3.7,0 -184987886,"Warframe",purchase,1.0,0 -184987886,"Warframe",play,3.6,0 -184987886,"Spiral Knights",purchase,1.0,0 -184987886,"Spiral Knights",play,3.0,0 -184987886,"Firefall",purchase,1.0,0 -184987886,"Firefall",play,2.5,0 -184987886,"H1Z1",purchase,1.0,0 -184987886,"H1Z1",play,1.9,0 -184987886,"Marvel Heroes 2015",purchase,1.0,0 -184987886,"Marvel Heroes 2015",play,1.2,0 -184987886,"Elsword",purchase,1.0,0 -184987886,"Elsword",play,1.0,0 -184987886,"Grand Chase",purchase,1.0,0 -184987886,"Grand Chase",play,0.7,0 -184987886,"Gear Up",purchase,1.0,0 -184987886,"Gear Up",play,0.6,0 -184987886,"Bloodline Champions",purchase,1.0,0 -184987886,"Bloodline Champions",play,0.5,0 -184987886,"City of Steam Arkadia",purchase,1.0,0 -184987886,"City of Steam Arkadia",play,0.4,0 -184987886,"Warface",purchase,1.0,0 -184987886,"Warface",play,0.3,0 -184987886,"Ragnarok",purchase,1.0,0 -184987886,"Ragnarok",play,0.2,0 -184987886,"RIFT",purchase,1.0,0 -184987886,"H1Z1 Test Server",purchase,1.0,0 -208196373,"Dota 2",purchase,1.0,0 -208196373,"Dota 2",play,42.0,0 -208196373,"Blacklight Retribution",purchase,1.0,0 -208196373,"Dead Island Epidemic",purchase,1.0,0 -208196373,"Warframe",purchase,1.0,0 -32126281,"Empire Total War",purchase,1.0,0 -32126281,"Empire Total War",play,842.0,0 -32126281,"Crusader Kings II",purchase,1.0,0 -32126281,"Crusader Kings II",play,764.0,0 -32126281,"Total War SHOGUN 2",purchase,1.0,0 -32126281,"Total War SHOGUN 2",play,574.0,0 -32126281,"Mount & Blade Warband",purchase,1.0,0 -32126281,"Mount & Blade Warband",play,537.0,0 -32126281,"Total War ROME II - Emperor Edition",purchase,1.0,0 -32126281,"Total War ROME II - Emperor Edition",play,516.0,0 -32126281,"Napoleon Total War",purchase,1.0,0 -32126281,"Napoleon Total War",play,489.0,0 -32126281,"Dota 2",purchase,1.0,0 -32126281,"Dota 2",play,316.0,0 -32126281,"Total War ATTILA",purchase,1.0,0 -32126281,"Total War ATTILA",play,240.0,0 -32126281,"Grand Theft Auto V",purchase,1.0,0 -32126281,"Grand Theft Auto V",play,207.0,0 -32126281,"Counter-Strike Global Offensive",purchase,1.0,0 -32126281,"Counter-Strike Global Offensive",play,185.0,0 -32126281,"Europa Universalis IV",purchase,1.0,0 -32126281,"Europa Universalis IV",play,174.0,0 -32126281,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -32126281,"Call of Duty Modern Warfare 2 - Multiplayer",play,168.0,0 -32126281,"Mount & Blade With Fire and Sword",purchase,1.0,0 -32126281,"Mount & Blade With Fire and Sword",play,141.0,0 -32126281,"Fallout 4",purchase,1.0,0 -32126281,"Fallout 4",play,127.0,0 -32126281,"Men of War Assault Squad",purchase,1.0,0 -32126281,"Men of War Assault Squad",play,102.0,0 -32126281,"Sid Meier's Civilization V",purchase,1.0,0 -32126281,"Sid Meier's Civilization V",play,91.0,0 -32126281,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -32126281,"Rising Storm/Red Orchestra 2 Multiplayer",play,61.0,0 -32126281,"Far Cry 3",purchase,1.0,0 -32126281,"Far Cry 3",play,56.0,0 -32126281,"PAYDAY 2",purchase,1.0,0 -32126281,"PAYDAY 2",play,52.0,0 -32126281,"Project Zomboid",purchase,1.0,0 -32126281,"Project Zomboid",play,51.0,0 -32126281,"Banished",purchase,1.0,0 -32126281,"Banished",play,42.0,0 -32126281,"Prison Architect",purchase,1.0,0 -32126281,"Prison Architect",play,41.0,0 -32126281,"Victoria II",purchase,1.0,0 -32126281,"Victoria II",play,39.0,0 -32126281,"Chivalry Medieval Warfare",purchase,1.0,0 -32126281,"Chivalry Medieval Warfare",play,38.0,0 -32126281,"Grand Theft Auto San Andreas",purchase,1.0,0 -32126281,"Grand Theft Auto San Andreas",play,38.0,0 -32126281,"Just Cause 2",purchase,1.0,0 -32126281,"Just Cause 2",play,37.0,0 -32126281,"H1Z1",purchase,1.0,0 -32126281,"H1Z1",play,34.0,0 -32126281,"The Elder Scrolls V Skyrim",purchase,1.0,0 -32126281,"The Elder Scrolls V Skyrim",play,30.0,0 -32126281,"Company of Heroes 2",purchase,1.0,0 -32126281,"Company of Heroes 2",play,29.0,0 -32126281,"Rocket League",purchase,1.0,0 -32126281,"Rocket League",play,27.0,0 -32126281,"March of the Eagles",purchase,1.0,0 -32126281,"March of the Eagles",play,23.0,0 -32126281,"South Park The Stick of Truth",purchase,1.0,0 -32126281,"South Park The Stick of Truth",play,20.0,0 -32126281,"Call of Duty Modern Warfare 2",purchase,1.0,0 -32126281,"Call of Duty Modern Warfare 2",play,18.9,0 -32126281,"FTL Faster Than Light",purchase,1.0,0 -32126281,"FTL Faster Than Light",play,17.5,0 -32126281,"The Binding of Isaac",purchase,1.0,0 -32126281,"The Binding of Isaac",play,17.4,0 -32126281,"Warframe",purchase,1.0,0 -32126281,"Warframe",play,17.0,0 -32126281,"Frozen Synapse",purchase,1.0,0 -32126281,"Frozen Synapse",play,15.8,0 -32126281,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -32126281,"Warhammer 40,000 Dawn of War II",play,14.6,0 -32126281,"Xenonauts",purchase,1.0,0 -32126281,"Xenonauts",play,14.4,0 -32126281,"Medieval II Total War",purchase,1.0,0 -32126281,"Medieval II Total War",play,14.4,0 -32126281,"Men of War Assault Squad 2",purchase,1.0,0 -32126281,"Men of War Assault Squad 2",play,14.0,0 -32126281,"Grand Theft Auto IV",purchase,1.0,0 -32126281,"Grand Theft Auto IV",play,12.7,0 -32126281,"Age of Empires II HD Edition",purchase,1.0,0 -32126281,"Age of Empires II HD Edition",play,12.5,0 -32126281,"Magicka",purchase,1.0,0 -32126281,"Magicka",play,11.8,0 -32126281,"SpeedRunners",purchase,1.0,0 -32126281,"SpeedRunners",play,10.8,0 -32126281,"Age of Empires III Complete Collection",purchase,1.0,0 -32126281,"Age of Empires III Complete Collection",play,8.9,0 -32126281,"Patch testing for Chivalry",purchase,1.0,0 -32126281,"Patch testing for Chivalry",play,7.7,0 -32126281,"Hotline Miami",purchase,1.0,0 -32126281,"Hotline Miami",play,7.4,0 -32126281,"Fallout New Vegas",purchase,1.0,0 -32126281,"Fallout New Vegas",play,6.2,0 -32126281,"Hearts of Iron II Complete",purchase,1.0,0 -32126281,"Hearts of Iron II Complete",play,4.2,0 -32126281,"Stronghold 2",purchase,1.0,0 -32126281,"Stronghold 2",play,4.0,0 -32126281,"Men of War",purchase,1.0,0 -32126281,"Men of War",play,3.7,0 -32126281,"Half-Life 2",purchase,1.0,0 -32126281,"Half-Life 2",play,3.6,0 -32126281,"Killing Floor",purchase,1.0,0 -32126281,"Killing Floor",play,3.5,0 -32126281,"Cities in Motion 2",purchase,1.0,0 -32126281,"Cities in Motion 2",play,3.3,0 -32126281,"Lost Planet Extreme Condition",purchase,1.0,0 -32126281,"Lost Planet Extreme Condition",play,3.2,0 -32126281,"Anno 2070",purchase,1.0,0 -32126281,"Anno 2070",play,2.5,0 -32126281,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -32126281,"Just Cause 2 Multiplayer Mod",play,2.2,0 -32126281,"Scribblenauts Unlimited",purchase,1.0,0 -32126281,"Scribblenauts Unlimited",play,1.9,0 -32126281,"Magic Duels",purchase,1.0,0 -32126281,"Magic Duels",play,1.9,0 -32126281,"Rome Total War - Alexander",purchase,1.0,0 -32126281,"Rome Total War - Alexander",play,1.8,0 -32126281,"Portal",purchase,1.0,0 -32126281,"Portal",play,1.8,0 -32126281,"Papers, Please",purchase,1.0,0 -32126281,"Papers, Please",play,1.7,0 -32126281,"Bridge Constructor Medieval",purchase,1.0,0 -32126281,"Bridge Constructor Medieval",play,1.7,0 -32126281,"Sanctum 2",purchase,1.0,0 -32126281,"Sanctum 2",play,1.6,0 -32126281,"Sniper Elite 3",purchase,1.0,0 -32126281,"Sniper Elite 3",play,1.5,0 -32126281,"Orcs Must Die! 2",purchase,1.0,0 -32126281,"Orcs Must Die! 2",play,1.2,0 -32126281,"Magicka Wizard Wars",purchase,1.0,0 -32126281,"Magicka Wizard Wars",play,0.8,0 -32126281,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -32126281,"Batman Arkham Asylum GOTY Edition",play,0.7,0 -32126281,"Train Simulator",purchase,1.0,0 -32126281,"Train Simulator",play,0.5,0 -32126281,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -32126281,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,0.5,0 -32126281,"Men of War Red Tide",purchase,1.0,0 -32126281,"Men of War Red Tide",play,0.4,0 -32126281,"Grand Theft Auto Vice City",purchase,1.0,0 -32126281,"Grand Theft Auto Vice City",play,0.4,0 -32126281,"Medieval II Total War Kingdoms",purchase,1.0,0 -32126281,"Medieval II Total War Kingdoms",play,0.3,0 -32126281,"Terraria",purchase,1.0,0 -32126281,"Terraria",play,0.3,0 -32126281,"Men of War Vietnam",purchase,1.0,0 -32126281,"Men of War Vietnam",play,0.2,0 -32126281,"Age of Chivalry",purchase,1.0,0 -32126281,"Age of Chivalry",play,0.1,0 -32126281,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -32126281,"Killing Floor Mod Defence Alliance 2",play,0.1,0 -32126281,"Half-Life 2 Episode Two",purchase,1.0,0 -32126281,"Trine",purchase,1.0,0 -32126281,"Arma 2",purchase,1.0,0 -32126281,"Shadowgrounds Survivor",purchase,1.0,0 -32126281,"Shadowgrounds",purchase,1.0,0 -32126281,"Arma 2 Operation Arrowhead",purchase,1.0,0 -32126281,"Age of Empires II HD The Forgotten",purchase,1.0,0 -32126281,"ArcheAge",purchase,1.0,0 -32126281,"Arma 2 British Armed Forces",purchase,1.0,0 -32126281,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -32126281,"Arma 2 Private Military Company",purchase,1.0,0 -32126281,"Batman Arkham City GOTY",purchase,1.0,0 -32126281,"Counter-Strike",purchase,1.0,0 -32126281,"Counter-Strike Condition Zero",purchase,1.0,0 -32126281,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -32126281,"Counter-Strike Source",purchase,1.0,0 -32126281,"Crusader Kings II Military Orders Unit Pack",purchase,1.0,0 -32126281,"Crusader Kings II Sons of Abraham",purchase,1.0,0 -32126281,"Crusader Kings II Warriors of Faith Unit Pack",purchase,1.0,0 -32126281,"Darwinia",purchase,1.0,0 -32126281,"DEFCON",purchase,1.0,0 -32126281,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -32126281,"F.E.A.R. 3",purchase,1.0,0 -32126281,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -32126281,"Fallout New Vegas Dead Money",purchase,1.0,0 -32126281,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -32126281,"Garry's Mod",purchase,1.0,0 -32126281,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -32126281,"Grand Theft Auto San Andreas",purchase,1.0,0 -32126281,"Grand Theft Auto Vice City",purchase,1.0,0 -32126281,"Grand Theft Auto III",purchase,1.0,0 -32126281,"Grand Theft Auto III",purchase,1.0,0 -32126281,"H1Z1 Test Server",purchase,1.0,0 -32126281,"Half-Life 2 Episode One",purchase,1.0,0 -32126281,"Half-Life 2 Lost Coast",purchase,1.0,0 -32126281,"Heroes & Generals",purchase,1.0,0 -32126281,"Magicka Vietnam",purchase,1.0,0 -32126281,"Men of War Condemned Heroes",purchase,1.0,0 -32126281,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -32126281,"Mount & Blade Warband - Viking Conquest Reforged Edition",purchase,1.0,0 -32126281,"Multiwinia",purchase,1.0,0 -32126281,"Natural Selection 2",purchase,1.0,0 -32126281,"Orcs Must Die!",purchase,1.0,0 -32126281,"PlanetSide 2",purchase,1.0,0 -32126281,"Rome Total War",purchase,1.0,0 -32126281,"Sanctum",purchase,1.0,0 -32126281,"Serious Sam 3 BFE",purchase,1.0,0 -32126281,"Stronghold 3",purchase,1.0,0 -32126281,"Stronghold Crusader Extreme HD",purchase,1.0,0 -32126281,"Stronghold Crusader HD",purchase,1.0,0 -32126281,"Stronghold HD",purchase,1.0,0 -32126281,"Stronghold Legends",purchase,1.0,0 -32126281,"The Lord of the Rings War in the North",purchase,1.0,0 -32126281,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -32126281,"Train Simulator Sheerness Branch Extension Route",purchase,1.0,0 -32126281,"Train Simulator Southern Pacific SD70M Loco",purchase,1.0,0 -32126281,"Tropico 4",purchase,1.0,0 -32126281,"Uplink",purchase,1.0,0 -27169419,"Team Fortress 2",purchase,1.0,0 -27169419,"Team Fortress 2",play,400.0,0 -27169419,"Dota 2",purchase,1.0,0 -27169419,"Dota 2",play,250.0,0 -27169419,"Left 4 Dead 2",purchase,1.0,0 -27169419,"Left 4 Dead 2",play,220.0,0 -27169419,"Supreme Commander 2",purchase,1.0,0 -27169419,"Supreme Commander 2",play,190.0,0 -27169419,"Left 4 Dead",purchase,1.0,0 -27169419,"Left 4 Dead",play,86.0,0 -27169419,"Battlefield Bad Company 2",purchase,1.0,0 -27169419,"Battlefield Bad Company 2",play,63.0,0 -27169419,"Portal 2",purchase,1.0,0 -27169419,"Portal 2",play,17.9,0 -27169419,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -27169419,"Batman Arkham Asylum GOTY Edition",play,9.5,0 -27169419,"Alien Swarm",purchase,1.0,0 -27169419,"Alien Swarm",play,6.8,0 -27169419,"World of Goo",purchase,1.0,0 -27169419,"World of Goo",play,4.5,0 -27169419,"Dead Island",purchase,1.0,0 -27169419,"Dead Island",play,3.5,0 -27169419,"Batman Arkham City GOTY",purchase,1.0,0 -27169419,"Batman Arkham City GOTY",play,3.4,0 -27169419,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -27169419,"Plants vs. Zombies Game of the Year",play,3.2,0 -27169419,"Just Cause 2",purchase,1.0,0 -27169419,"Just Cause 2",play,2.3,0 -27169419,"Portal",purchase,1.0,0 -27169419,"Portal",play,0.8,0 -27169419,"Half-Life 2 Episode Two",purchase,1.0,0 -27169419,"Half-Life 2 Episode Two",play,0.7,0 -27169419,"Chivalry Medieval Warfare",purchase,1.0,0 -27169419,"Chivalry Medieval Warfare",play,0.7,0 -27169419,"Deus Ex Game of the Year Edition",purchase,1.0,0 -27169419,"Deus Ex Game of the Year Edition",play,0.7,0 -27169419,"Bunch Of Heroes",purchase,1.0,0 -27169419,"Bunch Of Heroes",play,0.7,0 -27169419,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -27169419,"Sid Meier's Civilization IV Beyond the Sword",play,0.6,0 -27169419,"Sid Meier's Civilization IV",purchase,1.0,0 -27169419,"Sid Meier's Civilization IV",play,0.5,0 -27169419,"Machinarium",purchase,1.0,0 -27169419,"Machinarium",play,0.4,0 -27169419,"Sonic Generations",purchase,1.0,0 -27169419,"Sonic Generations",play,0.3,0 -27169419,"Star Wars Knights of the Old Republic",purchase,1.0,0 -27169419,"Star Wars Knights of the Old Republic",play,0.3,0 -27169419,"Fallout New Vegas",purchase,1.0,0 -27169419,"Fallout New Vegas",play,0.1,0 -27169419,"Grand Theft Auto IV",purchase,1.0,0 -27169419,"Amnesia The Dark Descent",purchase,1.0,0 -27169419,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -27169419,"BioShock",purchase,1.0,0 -27169419,"Counter-Strike Source",purchase,1.0,0 -27169419,"Day of Defeat Source",purchase,1.0,0 -27169419,"Dead Space",purchase,1.0,0 -27169419,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -27169419,"Fallout New Vegas Dead Money",purchase,1.0,0 -27169419,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -27169419,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -27169419,"Half-Life 2",purchase,1.0,0 -27169419,"Half-Life 2 Deathmatch",purchase,1.0,0 -27169419,"Half-Life 2 Episode One",purchase,1.0,0 -27169419,"Half-Life 2 Lost Coast",purchase,1.0,0 -27169419,"Hydrophobia Prophecy",purchase,1.0,0 -27169419,"Lara Croft and the Guardian of Light",purchase,1.0,0 -27169419,"Mass Effect 2",purchase,1.0,0 -27169419,"Mirror's Edge",purchase,1.0,0 -27169419,"Orcs Must Die!",purchase,1.0,0 -27169419,"Patch testing for Chivalry",purchase,1.0,0 -27169419,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -27169419,"Sid Meier's Civilization IV",purchase,1.0,0 -27169419,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -27169419,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -27169419,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -27169419,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -27169419,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -27169419,"The Walking Dead",purchase,1.0,0 -27169419,"Thief Deadly Shadows",purchase,1.0,0 -27169419,"Titan Quest",purchase,1.0,0 -27169419,"Tom Clancy's Rainbow Six Vegas 2",purchase,1.0,0 -208798336,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -208798336,"Just Cause 2 Multiplayer Mod",play,23.0,0 -208798336,"Just Cause 2",purchase,1.0,0 -208798336,"Just Cause 2",play,0.1,0 -208798336,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -207718097,"Trove",purchase,1.0,0 -207718097,"Trove",play,226.0,0 -207718097,"Counter-Strike Global Offensive",purchase,1.0,0 -207718097,"Counter-Strike Global Offensive",play,199.0,0 -207718097,"Grand Theft Auto V",purchase,1.0,0 -207718097,"Grand Theft Auto V",play,140.0,0 -207718097,"Rocket League",purchase,1.0,0 -207718097,"Rocket League",play,30.0,0 -207718097,"Assassin's Creed II",purchase,1.0,0 -207718097,"Assassin's Creed II",play,29.0,0 -207718097,"The Elder Scrolls V Skyrim",purchase,1.0,0 -207718097,"The Elder Scrolls V Skyrim",play,17.7,0 -207718097,"Besiege",purchase,1.0,0 -207718097,"Besiege",play,10.0,0 -207718097,"Worms Ultimate Mayhem",purchase,1.0,0 -207718097,"Worms Ultimate Mayhem",play,5.4,0 -207718097,"LEGO Worlds",purchase,1.0,0 -207718097,"LEGO Worlds",play,4.6,0 -207718097,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -207718097,"Call of Duty Black Ops II - Multiplayer",play,3.4,0 -207718097,"ONE PIECE PIRATE WARRIORS 3",purchase,1.0,0 -207718097,"ONE PIECE PIRATE WARRIORS 3",play,2.7,0 -207718097,"The Binding of Isaac Rebirth",purchase,1.0,0 -207718097,"The Binding of Isaac Rebirth",play,2.0,0 -207718097,"Clicker Heroes",purchase,1.0,0 -207718097,"Clicker Heroes",play,1.3,0 -207718097,"Castle Crashers",purchase,1.0,0 -207718097,"Castle Crashers",play,1.0,0 -207718097,"Echo of Soul",purchase,1.0,0 -207718097,"Echo of Soul",play,0.9,0 -207718097,"SMITE",purchase,1.0,0 -207718097,"SMITE",play,0.5,0 -207718097,"Call of Duty Black Ops II",purchase,1.0,0 -207718097,"ArcheAge",purchase,1.0,0 -207718097,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -207718097,"RIFT",purchase,1.0,0 -207718097,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -207718097,"Warface",purchase,1.0,0 -207718097,"Warframe",purchase,1.0,0 -80918437,"Total War SHOGUN 2",purchase,1.0,0 -80918437,"Total War SHOGUN 2",play,34.0,0 -31559824,"Counter-Strike Source",purchase,1.0,0 -31559824,"Counter-Strike Source",play,0.3,0 -31559824,"Half-Life 2",purchase,1.0,0 -31559824,"Half-Life 2 Deathmatch",purchase,1.0,0 -31559824,"Half-Life 2 Lost Coast",purchase,1.0,0 -31559824,"Half-Life Source",purchase,1.0,0 -31559824,"Half-Life Deathmatch Source",purchase,1.0,0 -96556535,"Dota 2",purchase,1.0,0 -96556535,"Dota 2",play,2154.0,0 -96556535,"Counter-Strike Global Offensive",purchase,1.0,0 -96556535,"Counter-Strike Global Offensive",play,336.0,0 -96556535,"DayZ",purchase,1.0,0 -96556535,"DayZ",play,52.0,0 -96556535,"Rust",purchase,1.0,0 -96556535,"Rust",play,31.0,0 -96556535,"Left 4 Dead 2",purchase,1.0,0 -96556535,"Left 4 Dead 2",play,13.5,0 -96556535,"The Forest",purchase,1.0,0 -96556535,"The Forest",play,9.6,0 -96556535,"Grand Theft Auto IV",purchase,1.0,0 -96556535,"Grand Theft Auto IV",play,6.1,0 -96556535,"War Thunder",purchase,1.0,0 -96556535,"War Thunder",play,4.2,0 -96556535,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -96556535,"Just Cause 2 Multiplayer Mod",play,3.9,0 -96556535,"RIFT",purchase,1.0,0 -96556535,"RIFT",play,3.7,0 -96556535,"DEFCON",purchase,1.0,0 -96556535,"DEFCON",play,2.2,0 -96556535,"Dead Island Epidemic",purchase,1.0,0 -96556535,"Dead Island Epidemic",play,2.1,0 -96556535,"Unturned",purchase,1.0,0 -96556535,"Unturned",play,0.8,0 -96556535,"Thomas Was Alone",purchase,1.0,0 -96556535,"Thomas Was Alone",play,0.5,0 -96556535,"Team Fortress 2",purchase,1.0,0 -96556535,"Team Fortress 2",play,0.4,0 -96556535,"Capsized",purchase,1.0,0 -96556535,"Ethan Meteor Hunter",purchase,1.0,0 -96556535,"Dragon Age Origins",purchase,1.0,0 -96556535,"Just Cause 2",purchase,1.0,0 -96556535,"Eets",purchase,1.0,0 -96556535,"Ethan Meteor Hunter Deluxe Content",purchase,1.0,0 -96556535,"Grand Theft Auto San Andreas",purchase,1.0,0 -96556535,"Grand Theft Auto San Andreas",purchase,1.0,0 -96556535,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -96556535,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -96556535,"Worms Revolution",purchase,1.0,0 -293422780,"Block N Load",purchase,1.0,0 -293422780,"Block N Load",play,1.0,0 -293422780,"RaceRoom Racing Experience ",purchase,1.0,0 -293422780,"RaceRoom Racing Experience ",play,0.2,0 -293422780,"SC2VN - The eSports Visual Novel",purchase,1.0,0 -293422780,"Batla",purchase,1.0,0 -293422780,"Trove",purchase,1.0,0 -249858021,"Soccer Manager 2015",purchase,1.0,0 -249858021,"Soccer Manager 2015",play,54.0,0 -249858021,"ARK Survival Evolved",purchase,1.0,0 -249858021,"ARK Survival Evolved",play,1.1,0 -249858021,"Dota 2",purchase,1.0,0 -249858021,"Dota 2",play,0.9,0 -116966965,"Football Manager 2013",purchase,1.0,0 -116966965,"Football Manager 2013",play,17.1,0 -217795493,"Dota 2",purchase,1.0,0 -217795493,"Dota 2",play,16.4,0 -121248758,"Football Manager 2013",purchase,1.0,0 -121248758,"Football Manager 2013",play,570.0,0 -168094655,"Garry's Mod",purchase,1.0,0 -168094655,"Garry's Mod",play,111.0,0 -168094655,"TDP4Team Battle",purchase,1.0,0 -168094655,"TDP4Team Battle",play,6.8,0 -168094655,"Realm of the Mad God",purchase,1.0,0 -168094655,"Realm of the Mad God",play,0.4,0 -168094655,"Heroes & Generals",purchase,1.0,0 -168094655,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -168094655,"MapleStory",purchase,1.0,0 -168094655,"Neverwinter",purchase,1.0,0 -168094655,"No More Room in Hell",purchase,1.0,0 -168094655,"RIFT",purchase,1.0,0 -168094655,"Robocraft",purchase,1.0,0 -168094655,"Unturned",purchase,1.0,0 -301589651,"Trove",purchase,1.0,0 -288121778,"Dota 2",purchase,1.0,0 -288121778,"Dota 2",play,193.0,0 -159835968,"Left 4 Dead 2",purchase,1.0,0 -159835968,"Left 4 Dead 2",play,10.5,0 -48175931,"TERA",purchase,1.0,0 -48175931,"TERA",play,76.0,0 -48175931,"H1Z1",purchase,1.0,0 -48175931,"H1Z1",play,18.6,0 -48175931,"Path of Exile",purchase,1.0,0 -48175931,"Path of Exile",play,15.1,0 -48175931,"Counter-Strike Global Offensive",purchase,1.0,0 -48175931,"Counter-Strike Global Offensive",play,14.1,0 -48175931,"PAYDAY The Heist",purchase,1.0,0 -48175931,"PAYDAY The Heist",play,8.8,0 -48175931,"WAKFU",purchase,1.0,0 -48175931,"WAKFU",play,7.4,0 -48175931,"Left 4 Dead 2",purchase,1.0,0 -48175931,"Left 4 Dead 2",play,7.1,0 -48175931,"Dragon Nest Europe",purchase,1.0,0 -48175931,"Dragon Nest Europe",play,6.1,0 -48175931,"PlanetSide 2",purchase,1.0,0 -48175931,"PlanetSide 2",play,5.8,0 -48175931,"Counter-Strike",purchase,1.0,0 -48175931,"Counter-Strike",play,3.0,0 -48175931,"Defiance",purchase,1.0,0 -48175931,"Defiance",play,1.8,0 -48175931,"ArcheAge",purchase,1.0,0 -48175931,"ArcheAge",play,1.8,0 -48175931,"Unturned",purchase,1.0,0 -48175931,"Unturned",play,1.1,0 -48175931,"Sakura Clicker",purchase,1.0,0 -48175931,"Sakura Clicker",play,1.1,0 -48175931,"Eldevin",purchase,1.0,0 -48175931,"Eldevin",play,0.5,0 -48175931,"Chaos Domain",purchase,1.0,0 -48175931,"Chaos Domain",play,0.2,0 -48175931,"Marvel Heroes 2015",purchase,1.0,0 -48175931,"Rise of Incarnates",purchase,1.0,0 -48175931,"8BitBoy",purchase,1.0,0 -48175931,"Afterfall InSanity Extended Edition",purchase,1.0,0 -48175931,"APB Reloaded",purchase,1.0,0 -48175931,"Ben There, Dan That!",purchase,1.0,0 -48175931,"Bionic Dues",purchase,1.0,0 -48175931,"Counter-Strike Condition Zero",purchase,1.0,0 -48175931,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -48175931,"Counter-Strike Nexon Zombies",purchase,1.0,0 -48175931,"Crash Time II",purchase,1.0,0 -48175931,"Dirty Bomb",purchase,1.0,0 -48175931,"H1Z1 Test Server",purchase,1.0,0 -48175931,"Nosgoth",purchase,1.0,0 -48175931,"Oddworld Abe's Oddysee",purchase,1.0,0 -48175931,"POSTAL",purchase,1.0,0 -48175931,"Skyborn",purchase,1.0,0 -48175931,"Time Gentlemen, Please!",purchase,1.0,0 -60209945,"Call of Duty Modern Warfare 2",purchase,1.0,0 -60209945,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -117238061,"Team Fortress 2",purchase,1.0,0 -117238061,"Team Fortress 2",play,0.5,0 -117238061,"Dota 2",purchase,1.0,0 -117238061,"Dota 2",play,0.2,0 -159956364,"Left 4 Dead 2",purchase,1.0,0 -25272022,"Half-Life",purchase,1.0,0 -25272022,"Half-Life Blue Shift",purchase,1.0,0 -25272022,"Half-Life Opposing Force",purchase,1.0,0 -25272022,"Team Fortress Classic",purchase,1.0,0 -136789010,"Dota 2",purchase,1.0,0 -136789010,"Dota 2",play,10.3,0 -136789010,"Team Fortress 2",purchase,1.0,0 -136789010,"Team Fortress 2",play,1.1,0 -7527129,"Counter-Strike",purchase,1.0,0 -7527129,"Counter-Strike",play,1.1,0 -7527129,"Counter-Strike Condition Zero",purchase,1.0,0 -7527129,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -7527129,"Counter-Strike Source",purchase,1.0,0 -7527129,"Day of Defeat",purchase,1.0,0 -7527129,"Day of Defeat Source",purchase,1.0,0 -7527129,"Deathmatch Classic",purchase,1.0,0 -7527129,"Half-Life",purchase,1.0,0 -7527129,"Half-Life 2",purchase,1.0,0 -7527129,"Half-Life 2 Deathmatch",purchase,1.0,0 -7527129,"Half-Life 2 Lost Coast",purchase,1.0,0 -7527129,"Half-Life Blue Shift",purchase,1.0,0 -7527129,"Half-Life Opposing Force",purchase,1.0,0 -7527129,"Half-Life Source",purchase,1.0,0 -7527129,"Half-Life Deathmatch Source",purchase,1.0,0 -7527129,"Ricochet",purchase,1.0,0 -7527129,"Team Fortress Classic",purchase,1.0,0 -68418219,"Torchlight",purchase,1.0,0 -68418219,"Torchlight",play,22.0,0 -217289550,"Team Fortress 2",purchase,1.0,0 -217289550,"Team Fortress 2",play,2.8,0 -217289550,"Dota 2",purchase,1.0,0 -217289550,"Dota 2",play,1.4,0 -217289550,"Gunscape",purchase,1.0,0 -217289550,"Gunscape",play,0.4,0 -217289550,"Marvel Heroes 2015",purchase,1.0,0 -217289550,"Modular Combat",purchase,1.0,0 -217289550,"Running Shadow",purchase,1.0,0 -99475738,"Team Fortress 2",purchase,1.0,0 -99475738,"Team Fortress 2",play,3.1,0 -184821296,"Transformers Fall of Cybertron",purchase,1.0,0 -184821296,"Transformers Fall of Cybertron",play,51.0,0 -143153541,"Fallout New Vegas",purchase,1.0,0 -143153541,"Fallout New Vegas",play,0.3,0 -143153541,"Order of War",purchase,1.0,0 -143153541,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -143153541,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -143153541,"Fallout New Vegas Dead Money",purchase,1.0,0 -143153541,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -30323574,"Half-Life 2 Deathmatch",purchase,1.0,0 -30323574,"Half-Life 2 Lost Coast",purchase,1.0,0 -221961243,"Team Fortress 2",purchase,1.0,0 -221961243,"Team Fortress 2",play,21.0,0 -221961243,"Garry's Mod",purchase,1.0,0 -221961243,"Garry's Mod",play,6.4,0 -221961243,"Counter-Strike Nexon Zombies",purchase,1.0,0 -221961243,"Counter-Strike Nexon Zombies",play,5.7,0 -221961243,"Unturned",purchase,1.0,0 -221961243,"Unturned",play,4.1,0 -221961243,"APB Reloaded",purchase,1.0,0 -221961243,"APB Reloaded",play,1.7,0 -221961243,"BLOCKADE 3D",purchase,1.0,0 -221961243,"BLOCKADE 3D",play,1.1,0 -221961243,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -221961243,"S.K.I.L.L. - Special Force 2",play,0.7,0 -221961243,"Dota 2",purchase,1.0,0 -221961243,"Dota 2",play,0.6,0 -221961243,"Emily is Away",purchase,1.0,0 -221961243,"Emily is Away",play,0.6,0 -221961243,"America's Army Proving Grounds",purchase,1.0,0 -221961243,"America's Army Proving Grounds",play,0.5,0 -221961243,"WARMODE",purchase,1.0,0 -221961243,"WARMODE",play,0.4,0 -221961243,"NEED FOR MADNESS ?",purchase,1.0,0 -221961243,"NEED FOR MADNESS ?",play,0.3,0 -221961243,"World of Soccer online",purchase,1.0,0 -221961243,"World of Soccer online",play,0.1,0 -221961243,"RaceRoom Racing Experience ",purchase,1.0,0 -156286815,"Napoleon Total War",purchase,1.0,0 -156286815,"Napoleon Total War",play,14.0,0 -71083492,"Empire Total War",purchase,1.0,0 -51237520,"RACE 07",purchase,1.0,0 -51237520,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -51237520,"STCC The Game",purchase,1.0,0 -134322141,"Garry's Mod",purchase,1.0,0 -134322141,"Garry's Mod",play,208.0,0 -134322141,"War Thunder",purchase,1.0,0 -134322141,"War Thunder",play,145.0,0 -134322141,"Team Fortress 2",purchase,1.0,0 -134322141,"Team Fortress 2",play,142.0,0 -134322141,"Company of Heroes 2",purchase,1.0,0 -134322141,"Company of Heroes 2",play,131.0,0 -134322141,"Sid Meier's Civilization V",purchase,1.0,0 -134322141,"Sid Meier's Civilization V",play,85.0,0 -134322141,"R.U.S.E",purchase,1.0,0 -134322141,"R.U.S.E",play,81.0,0 -134322141,"Counter-Strike Global Offensive",purchase,1.0,0 -134322141,"Counter-Strike Global Offensive",play,68.0,0 -134322141,"Left 4 Dead 2",purchase,1.0,0 -134322141,"Left 4 Dead 2",play,56.0,0 -134322141,"PAYDAY 2",purchase,1.0,0 -134322141,"PAYDAY 2",play,50.0,0 -134322141,"The Elder Scrolls V Skyrim",purchase,1.0,0 -134322141,"The Elder Scrolls V Skyrim",play,42.0,0 -134322141,"Company of Heroes (New Steam Version)",purchase,1.0,0 -134322141,"Company of Heroes (New Steam Version)",play,41.0,0 -134322141,"Unturned",purchase,1.0,0 -134322141,"Unturned",play,35.0,0 -134322141,"World in Conflict Soviet Assault",purchase,1.0,0 -134322141,"World in Conflict Soviet Assault",play,32.0,0 -134322141,"Warframe",purchase,1.0,0 -134322141,"Warframe",play,25.0,0 -134322141,"Company of Heroes",purchase,1.0,0 -134322141,"Company of Heroes",play,24.0,0 -134322141,"Call of Duty Black Ops",purchase,1.0,0 -134322141,"Call of Duty Black Ops",play,24.0,0 -134322141,"Company of Heroes Europe at War",purchase,1.0,0 -134322141,"Company of Heroes Europe at War",play,20.0,0 -134322141,"Wolfenstein The New Order",purchase,1.0,0 -134322141,"Wolfenstein The New Order",play,17.8,0 -134322141,"Saints Row The Third",purchase,1.0,0 -134322141,"Saints Row The Third",play,15.1,0 -134322141,"Starbound",purchase,1.0,0 -134322141,"Starbound",play,14.2,0 -134322141,"Killing Floor",purchase,1.0,0 -134322141,"Killing Floor",play,12.0,0 -134322141,"Call of Duty Ghosts",purchase,1.0,0 -134322141,"Call of Duty Ghosts",play,8.7,0 -134322141,"Rise of Nations Extended Edition",purchase,1.0,0 -134322141,"Rise of Nations Extended Edition",play,8.1,0 -134322141,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",purchase,1.0,0 -134322141,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",play,7.7,0 -134322141,"Scribblenauts Unlimited",purchase,1.0,0 -134322141,"Scribblenauts Unlimited",play,7.4,0 -134322141,"Portal 2",purchase,1.0,0 -134322141,"Portal 2",play,7.0,0 -134322141,"BioShock Infinite",purchase,1.0,0 -134322141,"BioShock Infinite",play,6.9,0 -134322141,"The Ship",purchase,1.0,0 -134322141,"The Ship",play,6.4,0 -134322141,"Star Wars Republic Commando",purchase,1.0,0 -134322141,"Star Wars Republic Commando",play,6.0,0 -134322141,"Valkyria Chronicles",purchase,1.0,0 -134322141,"Valkyria Chronicles",play,5.8,0 -134322141,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -134322141,"Warhammer 40,000 Dawn of War II Retribution",play,5.5,0 -134322141,"Terraria",purchase,1.0,0 -134322141,"Terraria",play,4.9,0 -134322141,"Homefront",purchase,1.0,0 -134322141,"Homefront",play,4.9,0 -134322141,"Arma 2 Operation Arrowhead",purchase,1.0,0 -134322141,"Arma 2 Operation Arrowhead",play,4.8,0 -134322141,"Rome Total War",purchase,1.0,0 -134322141,"Rome Total War",play,4.6,0 -134322141,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -134322141,"Call of Duty Ghosts - Multiplayer",play,4.5,0 -134322141,"DayZ",purchase,1.0,0 -134322141,"DayZ",play,4.3,0 -134322141,"BioShock",purchase,1.0,0 -134322141,"BioShock",play,4.1,0 -134322141,"Don't Starve Together Beta",purchase,1.0,0 -134322141,"Don't Starve Together Beta",play,4.0,0 -134322141,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -134322141,"Call of Duty Black Ops - Multiplayer",play,4.0,0 -134322141,"Sakura Spirit",purchase,1.0,0 -134322141,"Sakura Spirit",play,3.9,0 -134322141,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",purchase,1.0,0 -134322141,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",play,3.4,0 -134322141,"The Stanley Parable",purchase,1.0,0 -134322141,"The Stanley Parable",play,3.4,0 -134322141,"PAYDAY The Heist",purchase,1.0,0 -134322141,"PAYDAY The Heist",play,3.4,0 -134322141,"Sid Meier's Civilization III Complete",purchase,1.0,0 -134322141,"Sid Meier's Civilization III Complete",play,3.1,0 -134322141,"Lambda Wars Beta",purchase,1.0,0 -134322141,"Lambda Wars Beta",play,2.9,0 -134322141,"RWBY Grimm Eclipse",purchase,1.0,0 -134322141,"RWBY Grimm Eclipse",play,2.8,0 -134322141,"Anarchy Arcade",purchase,1.0,0 -134322141,"Anarchy Arcade",play,2.8,0 -134322141,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -134322141,"Rising Storm/Red Orchestra 2 Multiplayer",play,2.8,0 -134322141,"Wargame European Escalation",purchase,1.0,0 -134322141,"Wargame European Escalation",play,2.3,0 -134322141,"Ironclad Tactics",purchase,1.0,0 -134322141,"Ironclad Tactics",play,2.2,0 -134322141,"Long Live The Queen",purchase,1.0,0 -134322141,"Long Live The Queen",play,2.0,0 -134322141,"Arma 2",purchase,1.0,0 -134322141,"Arma 2",play,2.0,0 -134322141,"Castle Crashers",purchase,1.0,0 -134322141,"Castle Crashers",play,1.9,0 -134322141,"Portal",purchase,1.0,0 -134322141,"Portal",play,1.4,0 -134322141,"Besiege",purchase,1.0,0 -134322141,"Besiege",play,1.4,0 -134322141,"Skullgirls",purchase,1.0,0 -134322141,"Skullgirls",play,1.3,0 -134322141,"Dead Island",purchase,1.0,0 -134322141,"Dead Island",play,1.1,0 -134322141,"Company of Heroes Tales of Valor",purchase,1.0,0 -134322141,"Company of Heroes Tales of Valor",play,1.1,0 -134322141,"Halo Spartan Assault",purchase,1.0,0 -134322141,"Halo Spartan Assault",play,1.1,0 -134322141,"Tactical Intervention",purchase,1.0,0 -134322141,"Tactical Intervention",play,1.0,0 -134322141,"Five Nights at Freddy's",purchase,1.0,0 -134322141,"Five Nights at Freddy's",play,0.9,0 -134322141,"Supreme Commander 2",purchase,1.0,0 -134322141,"Supreme Commander 2",play,0.8,0 -134322141,"Blitzkrieg 2 Anthology",purchase,1.0,0 -134322141,"Blitzkrieg 2 Anthology",play,0.8,0 -134322141,"The Binding of Isaac",purchase,1.0,0 -134322141,"The Binding of Isaac",play,0.6,0 -134322141,"Source Filmmaker",purchase,1.0,0 -134322141,"Source Filmmaker",play,0.6,0 -134322141,"Archeblade",purchase,1.0,0 -134322141,"Archeblade",play,0.6,0 -134322141,"McPixel",purchase,1.0,0 -134322141,"McPixel",play,0.6,0 -134322141,"Gear Up",purchase,1.0,0 -134322141,"Gear Up",play,0.6,0 -134322141,"Slender The Arrival",purchase,1.0,0 -134322141,"Slender The Arrival",play,0.5,0 -134322141,"F.E.A.R.",purchase,1.0,0 -134322141,"F.E.A.R.",play,0.4,0 -134322141,"War of the Human Tanks",purchase,1.0,0 -134322141,"War of the Human Tanks",play,0.4,0 -134322141,"Sanctum 2",purchase,1.0,0 -134322141,"Sanctum 2",play,0.4,0 -134322141,"Bad Rats",purchase,1.0,0 -134322141,"Bad Rats",play,0.4,0 -134322141,"World War II Panzer Claws",purchase,1.0,0 -134322141,"World War II Panzer Claws",play,0.3,0 -134322141,"The Entente Gold",purchase,1.0,0 -134322141,"The Entente Gold",play,0.3,0 -134322141,"Max Gentlemen",purchase,1.0,0 -134322141,"Max Gentlemen",play,0.2,0 -134322141,"Battle Nations",purchase,1.0,0 -134322141,"Battle Nations",play,0.2,0 -134322141,"Return to Castle Wolfenstein",purchase,1.0,0 -134322141,"Return to Castle Wolfenstein",play,0.2,0 -134322141,"Grand Theft Auto IV",purchase,1.0,0 -134322141,"Grand Theft Auto IV",play,0.2,0 -134322141,"Arma Cold War Assault",purchase,1.0,0 -134322141,"Arma Cold War Assault",play,0.2,0 -134322141,"Wolfenstein 3D",purchase,1.0,0 -134322141,"Wolfenstein 3D",play,0.2,0 -134322141,"Five Nights at Freddy's 2",purchase,1.0,0 -134322141,"Five Nights at Freddy's 2",play,0.1,0 -134322141,"Indie Game The Movie",purchase,1.0,0 -134322141,"Indie Game The Movie",play,0.1,0 -134322141,"Tank Universal",purchase,1.0,0 -134322141,"Tank Universal",play,0.1,0 -134322141,"Skullgirls Endless Beta",purchase,1.0,0 -134322141,"Skullgirls Endless Beta",play,0.1,0 -134322141,"Super Sanctum TD",purchase,1.0,0 -134322141,"Without Within",purchase,1.0,0 -134322141,"Fractured Space",purchase,1.0,0 -134322141,"ShareX",purchase,1.0,0 -134322141,"Arma 2 DayZ Mod",purchase,1.0,0 -134322141,"Path of Exile",purchase,1.0,0 -134322141,"Arma 2 British Armed Forces",purchase,1.0,0 -134322141,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -134322141,"Go! Go! Nippon! ~My First Trip to Japan~",purchase,1.0,0 -134322141,"BioShock 2",purchase,1.0,0 -134322141,"America's Army Proving Grounds",purchase,1.0,0 -134322141,"Company of Heroes Opposing Fronts",purchase,1.0,0 -134322141,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -134322141,"Heroes & Generals",purchase,1.0,0 -134322141,"Dwarfs F2P",purchase,1.0,0 -134322141,"Happy Wars",purchase,1.0,0 -134322141,"World in Conflict",purchase,1.0,0 -134322141,"100% Orange Juice",purchase,1.0,0 -134322141,"Arma 2 Private Military Company",purchase,1.0,0 -134322141,"Blitzkrieg Anthology",purchase,1.0,0 -134322141,"Card Hunter",purchase,1.0,0 -134322141,"Codename CURE",purchase,1.0,0 -134322141,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -134322141,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -134322141,"Company of Heroes 2 - Ardennes Assault",purchase,1.0,0 -134322141,"Company of Heroes 2 - The British Forces",purchase,1.0,0 -134322141,"Contrast",purchase,1.0,0 -134322141,"Counter-Strike Nexon Zombies",purchase,1.0,0 -134322141,"Cry of Fear",purchase,1.0,0 -134322141,"DCS World",purchase,1.0,0 -134322141,"Dead Island Epidemic",purchase,1.0,0 -134322141,"Dead Island Riptide",purchase,1.0,0 -134322141,"Dead Space",purchase,1.0,0 -134322141,"Don't Starve",purchase,1.0,0 -134322141,"Dream Pinball 3D",purchase,1.0,0 -134322141,"Enclave",purchase,1.0,0 -134322141,"Eternal Senia",purchase,1.0,0 -134322141,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -134322141,"F.E.A.R. 3",purchase,1.0,0 -134322141,"F.E.A.R. Extraction Point",purchase,1.0,0 -134322141,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -134322141,"Firefall",purchase,1.0,0 -134322141,"Five Nights at Freddy's 3",purchase,1.0,0 -134322141,"Haunted Memories",purchase,1.0,0 -134322141,"HuniePop",purchase,1.0,0 -134322141,"HuniePop Official Digital Art Collection",purchase,1.0,0 -134322141,"HuniePop Original Soundtrack",purchase,1.0,0 -134322141,"Iron Sky Invasion",purchase,1.0,0 -134322141,"Jagged Alliance 2 - Wildfire ",purchase,1.0,0 -134322141,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -134322141,"Larva Mortus",purchase,1.0,0 -134322141,"NEOTOKYO",purchase,1.0,0 -134322141,"One Finger Death Punch",purchase,1.0,0 -134322141,"Penguins Arena Sedna's World",purchase,1.0,0 -134322141,"R.U.S.E.",purchase,1.0,0 -134322141,"Renegade Ops",purchase,1.0,0 -134322141,"RIP",purchase,1.0,0 -134322141,"RIP 2 Strike Back",purchase,1.0,0 -134322141,"RIP 3 The Last Hero",purchase,1.0,0 -134322141,"Rome Total War - Alexander",purchase,1.0,0 -134322141,"Sakura Clicker",purchase,1.0,0 -134322141,"Sanctum",purchase,1.0,0 -134322141,"Septerra Core",purchase,1.0,0 -134322141,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -134322141,"Space Trader Merchant Marine",purchase,1.0,0 -134322141,"Starbound - Unstable",purchase,1.0,0 -134322141,"Star Conflict",purchase,1.0,0 -134322141,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -134322141,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -134322141,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -134322141,"The I of the Dragon",purchase,1.0,0 -134322141,"The Ship Single Player",purchase,1.0,0 -134322141,"The Ship Tutorial",purchase,1.0,0 -134322141,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -134322141,"Two Worlds II Castle Defense",purchase,1.0,0 -134322141,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -134322141,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -134322141,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -134322141,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -134322141,"Warface",purchase,1.0,0 -134322141,"War Inc. Battlezone",purchase,1.0,0 -134322141,"Wolfenstein 3D Spear of Destiny",purchase,1.0,0 -134322141,"World War III Black Gold",purchase,1.0,0 -134322141,"X-Blades",purchase,1.0,0 -85546706,"Total War SHOGUN 2",purchase,1.0,0 -85546706,"Total War SHOGUN 2",play,0.8,0 -171611544,"Borderlands 2",purchase,1.0,0 -171611544,"Borderlands 2",play,69.0,0 -171611544,"The Elder Scrolls V Skyrim",purchase,1.0,0 -171611544,"The Elder Scrolls V Skyrim",play,12.2,0 -171611544,"Space Engineers",purchase,1.0,0 -171611544,"Space Engineers",play,6.1,0 -171611544,"Team Fortress 2",purchase,1.0,0 -171611544,"Team Fortress 2",play,1.6,0 -171611544,"Happy Wars",purchase,1.0,0 -171611544,"Happy Wars",play,1.2,0 -171611544,"Fable - The Lost Chapters",purchase,1.0,0 -171611544,"Fable - The Lost Chapters",play,1.1,0 -171611544,"Talisman Digital Edition",purchase,1.0,0 -171611544,"Talisman Digital Edition",play,0.2,0 -171611544,"Borderlands",purchase,1.0,0 -171611544,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -171611544,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -171611544,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -171611544,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -20363006,"Counter-Strike Source",purchase,1.0,0 -20363006,"Counter-Strike Source",play,0.6,0 -20363006,"Day of Defeat Source",purchase,1.0,0 -20363006,"Half-Life 2 Deathmatch",purchase,1.0,0 -20363006,"Half-Life 2 Lost Coast",purchase,1.0,0 -110478743,"Counter-Strike Global Offensive",purchase,1.0,0 -110478743,"Counter-Strike Global Offensive",play,271.0,0 -110478743,"Garry's Mod",purchase,1.0,0 -110478743,"Garry's Mod",play,96.0,0 -110478743,"Football Superstars",purchase,1.0,0 -110478743,"Football Superstars",play,49.0,0 -110478743,"Terraria",purchase,1.0,0 -110478743,"Terraria",play,49.0,0 -110478743,"The Witcher 3 Wild Hunt",purchase,1.0,0 -110478743,"The Witcher 3 Wild Hunt",play,45.0,0 -110478743,"Team Fortress 2",purchase,1.0,0 -110478743,"Team Fortress 2",play,35.0,0 -110478743,"DayZ",purchase,1.0,0 -110478743,"DayZ",play,32.0,0 -110478743,"Dishonored",purchase,1.0,0 -110478743,"Dishonored",play,18.0,0 -110478743,"Castle Crashers",purchase,1.0,0 -110478743,"Castle Crashers",play,15.7,0 -110478743,"Dota 2",purchase,1.0,0 -110478743,"Dota 2",play,15.5,0 -110478743,"Borderlands 2",purchase,1.0,0 -110478743,"Borderlands 2",play,11.1,0 -110478743,"PAYDAY 2",purchase,1.0,0 -110478743,"PAYDAY 2",play,7.8,0 -110478743,"PlanetSide 2",purchase,1.0,0 -110478743,"PlanetSide 2",play,5.3,0 -110478743,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -110478743,"The Incredible Adventures of Van Helsing",play,5.2,0 -110478743,"Hazard Ops",purchase,1.0,0 -110478743,"Hazard Ops",play,4.9,0 -110478743,"The Elder Scrolls V Skyrim",purchase,1.0,0 -110478743,"The Elder Scrolls V Skyrim",play,4.6,0 -110478743,"Dungeon Defenders",purchase,1.0,0 -110478743,"Dungeon Defenders",play,4.5,0 -110478743,"Arma 2 Operation Arrowhead",purchase,1.0,0 -110478743,"Arma 2 Operation Arrowhead",play,4.5,0 -110478743,"Empire Total War",purchase,1.0,0 -110478743,"Empire Total War",play,4.1,0 -110478743,"Dead Space",purchase,1.0,0 -110478743,"Dead Space",play,3.6,0 -110478743,"Torchlight II",purchase,1.0,0 -110478743,"Torchlight II",play,2.6,0 -110478743,"Crysis 2 Maximum Edition",purchase,1.0,0 -110478743,"Crysis 2 Maximum Edition",play,2.1,0 -110478743,"Counter-Strike",purchase,1.0,0 -110478743,"Counter-Strike",play,1.7,0 -110478743,"DC Universe Online",purchase,1.0,0 -110478743,"DC Universe Online",play,1.5,0 -110478743,"Grand Theft Auto IV",purchase,1.0,0 -110478743,"Grand Theft Auto IV",play,1.5,0 -110478743,"Counter-Strike Condition Zero",purchase,1.0,0 -110478743,"Counter-Strike Condition Zero",play,1.3,0 -110478743,"Neverwinter",purchase,1.0,0 -110478743,"Neverwinter",play,1.1,0 -110478743,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -110478743,"Medal of Honor(TM) Multiplayer",play,0.9,0 -110478743,"The Settlers Online",purchase,1.0,0 -110478743,"The Settlers Online",play,0.6,0 -110478743,"Heroes & Generals",purchase,1.0,0 -110478743,"Heroes & Generals",play,0.5,0 -110478743,"Arma 2",purchase,1.0,0 -110478743,"Arma 2",play,0.3,0 -110478743,"Trove",purchase,1.0,0 -110478743,"Trove",play,0.2,0 -110478743,"Marvel Heroes 2015",purchase,1.0,0 -110478743,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -110478743,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -110478743,"Medal of Honor(TM) Single Player",purchase,1.0,0 -110478743,"Medal of Honor Pre-Order",purchase,1.0,0 -110478743,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -110478743,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -110478743,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -110478743,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -66725148,"X-COM Apocalypse",purchase,1.0,0 -66725148,"X-COM Apocalypse",play,25.0,0 -66725148,"Overlord II",purchase,1.0,0 -66725148,"Overlord II",play,0.6,0 -66725148,"Overlord",purchase,1.0,0 -66725148,"Overlord Raising Hell",purchase,1.0,0 -66725148,"X-COM Enforcer",purchase,1.0,0 -66725148,"X-COM Interceptor",purchase,1.0,0 -66725148,"X-COM Terror from the Deep",purchase,1.0,0 -66725148,"X-COM UFO Defense",purchase,1.0,0 -225925331,"Dota 2",purchase,1.0,0 -225925331,"Dota 2",play,0.8,0 -170177311,"Dota 2",purchase,1.0,0 -170177311,"Dota 2",play,17.8,0 -287713950,"Stronghold Kingdoms",purchase,1.0,0 -287713950,"Stronghold Kingdoms",play,0.1,0 -62514874,"Saints Row 2",purchase,1.0,0 -62514874,"Saints Row 2",play,9.3,0 -15084368,"Counter-Strike",purchase,1.0,0 -15084368,"Counter-Strike Condition Zero",purchase,1.0,0 -15084368,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -99200665,"Football Manager 2012",purchase,1.0,0 -99200665,"Football Manager 2012",play,265.0,0 -99200665,"Football Manager 2013",purchase,1.0,0 -99200665,"Football Manager 2013",play,8.1,0 -169344872,"Counter-Strike Global Offensive",purchase,1.0,0 -169344872,"Counter-Strike Global Offensive",play,191.0,0 -15495423,"Team Fortress 2",purchase,1.0,0 -15495423,"Team Fortress 2",play,0.4,0 -305580641,"Dota 2",purchase,1.0,0 -305580641,"Dota 2",play,3.6,0 -149710944,"Dota 2",purchase,1.0,0 -149710944,"Dota 2",play,2.0,0 -158324196,"Dota 2",purchase,1.0,0 -158324196,"Dota 2",play,861.0,0 -158324196,"Counter-Strike Global Offensive",purchase,1.0,0 -158324196,"Counter-Strike Global Offensive",play,606.0,0 -158324196,"H1Z1",purchase,1.0,0 -158324196,"H1Z1",play,53.0,0 -158324196,"METAL SLUG 3",purchase,1.0,0 -158324196,"METAL SLUG 3",play,2.0,0 -158324196,"H1Z1 Test Server",purchase,1.0,0 -158324196,"Heroes & Generals",purchase,1.0,0 -158324196,"PlanetSide 2",purchase,1.0,0 -117106617,"Dota 2",purchase,1.0,0 -117106617,"Dota 2",play,5229.0,0 -216515551,"Dota 2",purchase,1.0,0 -216515551,"Dota 2",play,1.1,0 -130475480,"Age of Empires II HD Edition",purchase,1.0,0 -130475480,"Age of Empires II HD Edition",play,106.0,0 -130475480,"Age of Empires III Complete Collection",purchase,1.0,0 -130475480,"Age of Empires III Complete Collection",play,0.8,0 -243020996,"Counter-Strike Global Offensive",purchase,1.0,0 -243020996,"Counter-Strike Global Offensive",play,372.0,0 -243020996,"Dota 2",purchase,1.0,0 -243020996,"Dota 2",play,37.0,0 -243020996,"Don't Starve Together Beta",purchase,1.0,0 -243020996,"Don't Starve Together Beta",play,11.5,0 -243020996,"DayZ",purchase,1.0,0 -243020996,"DayZ",play,8.6,0 -243020996,"Defy Gravity",purchase,1.0,0 -243020996,"Defy Gravity",play,0.2,0 -243020996,"AdVenture Capitalist",purchase,1.0,0 -243020996,"APB Reloaded",purchase,1.0,0 -243020996,"GunZ 2 The Second Duel",purchase,1.0,0 -243020996,"Lambda Wars Beta",purchase,1.0,0 -243020996,"Neverwinter",purchase,1.0,0 -243020996,"Relic Hunters Zero",purchase,1.0,0 -94708312,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -94708312,"Call of Duty Modern Warfare 3 - Multiplayer",play,27.0,0 -94708312,"Killing Floor",purchase,1.0,0 -94708312,"Killing Floor",play,8.2,0 -94708312,"Call of Duty Modern Warfare 3",purchase,1.0,0 -94708312,"Call of Duty Modern Warfare 3",play,5.5,0 -94708312,"Thief",purchase,1.0,0 -94708312,"Thief",play,0.4,0 -94708312,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -29405242,"Counter-Strike",purchase,1.0,0 -29405242,"Counter-Strike Condition Zero",purchase,1.0,0 -29405242,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -172901122,"The LEGO Movie - Videogame",purchase,1.0,0 -172901122,"The LEGO Movie - Videogame",play,59.0,0 -172901122,"LEGO Jurassic World",purchase,1.0,0 -172901122,"LEGO Jurassic World",play,14.7,0 -172901122,"Call of Duty Advanced Warfare",purchase,1.0,0 -172901122,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -193279119,"Dota 2",purchase,1.0,0 -193279119,"Dota 2",play,0.3,0 -152821827,"Dota 2",purchase,1.0,0 -152821827,"Dota 2",play,484.0,0 -152821827,"Quake Live",purchase,1.0,0 -193131260,"Dota 2",purchase,1.0,0 -193131260,"Dota 2",play,16.0,0 -163235405,"Dota 2",purchase,1.0,0 -163235405,"Dota 2",play,469.0,0 -163235405,"Unturned",purchase,1.0,0 -246754757,"Football Superstars",purchase,1.0,0 -246754757,"Football Superstars",play,0.5,0 -246754757,"RaceRoom Racing Experience ",purchase,1.0,0 -182229935,"War Thunder",purchase,1.0,0 -182229935,"War Thunder",play,1059.0,0 -182229935,"Mount & Blade Warband",purchase,1.0,0 -182229935,"Mount & Blade Warband",play,851.0,0 -182229935,"Garry's Mod",purchase,1.0,0 -182229935,"Garry's Mod",play,180.0,0 -182229935,"Insurgency",purchase,1.0,0 -182229935,"Insurgency",play,175.0,0 -182229935,"AdVenture Capitalist",purchase,1.0,0 -182229935,"AdVenture Capitalist",play,65.0,0 -182229935,"Counter-Strike Global Offensive",purchase,1.0,0 -182229935,"Counter-Strike Global Offensive",play,65.0,0 -182229935,"Team Fortress 2",purchase,1.0,0 -182229935,"Team Fortress 2",play,40.0,0 -182229935,"Day of Defeat Source",purchase,1.0,0 -182229935,"Day of Defeat Source",play,11.9,0 -182229935,"BLOCKADE 3D",purchase,1.0,0 -182229935,"BLOCKADE 3D",play,10.4,0 -182229935,"Unturned",purchase,1.0,0 -182229935,"Unturned",play,10.3,0 -182229935,"Red Crucible Firestorm",purchase,1.0,0 -182229935,"Red Crucible Firestorm",play,9.8,0 -182229935,"Robocraft",purchase,1.0,0 -182229935,"Robocraft",play,7.4,0 -182229935,"Mainland",purchase,1.0,0 -182229935,"Mainland",play,6.1,0 -182229935,"Soccer Manager 2015",purchase,1.0,0 -182229935,"Soccer Manager 2015",play,4.9,0 -182229935,"Dino D-Day",purchase,1.0,0 -182229935,"Dino D-Day",play,3.5,0 -182229935,"No More Room in Hell",purchase,1.0,0 -182229935,"No More Room in Hell",play,2.8,0 -182229935,"Hitman Blood Money",purchase,1.0,0 -182229935,"Hitman Blood Money",play,2.8,0 -182229935,"Total War SHOGUN 2",purchase,1.0,0 -182229935,"Total War SHOGUN 2",play,2.2,0 -182229935,"PlanetSide 2",purchase,1.0,0 -182229935,"PlanetSide 2",play,2.1,0 -182229935,"Heroes & Generals",purchase,1.0,0 -182229935,"Heroes & Generals",play,1.9,0 -182229935,"Pirates, Vikings, & Knights II",purchase,1.0,0 -182229935,"Pirates, Vikings, & Knights II",play,1.6,0 -182229935,"Star Wars - Battlefront II",purchase,1.0,0 -182229935,"Star Wars - Battlefront II",play,1.5,0 -182229935,"Firefall",purchase,1.0,0 -182229935,"Firefall",play,1.1,0 -182229935,"Soldier Front 2",purchase,1.0,0 -182229935,"Soldier Front 2",play,0.7,0 -182229935,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -182229935,"Navy Field 2 Conqueror of the Ocean",play,0.6,0 -182229935,"Moonbase Alpha",purchase,1.0,0 -182229935,"Moonbase Alpha",play,0.5,0 -182229935,"WARMODE",purchase,1.0,0 -182229935,"WARMODE",play,0.5,0 -182229935,"Dirty Bomb",purchase,1.0,0 -182229935,"Dirty Bomb",play,0.5,0 -182229935,"Magic Barrage - Bitferno",purchase,1.0,0 -182229935,"Magic Barrage - Bitferno",play,0.4,0 -182229935,"America's Army Proving Grounds",purchase,1.0,0 -182229935,"America's Army Proving Grounds",play,0.4,0 -182229935,"UberStrike",purchase,1.0,0 -182229935,"UberStrike",play,0.4,0 -182229935,"Stronghold Kingdoms",purchase,1.0,0 -182229935,"Stronghold Kingdoms",play,0.4,0 -182229935,"World of Guns Gun Disassembly",purchase,1.0,0 -182229935,"World of Guns Gun Disassembly",play,0.4,0 -182229935,"Creativerse",purchase,1.0,0 -182229935,"Creativerse",play,0.3,0 -182229935,"Gunscape",purchase,1.0,0 -182229935,"Gunscape",play,0.3,0 -182229935,"Survarium",purchase,1.0,0 -182229935,"Survarium",play,0.2,0 -182229935,"Star Trek Online",purchase,1.0,0 -182229935,"Star Trek Online",play,0.2,0 -182229935,"Only If",purchase,1.0,0 -182229935,"Only If",play,0.2,0 -182229935,"Dota 2",purchase,1.0,0 -182229935,"Dota 2",play,0.1,0 -182229935,"The Plan",purchase,1.0,0 -182229935,"Total War Battles KINGDOM",purchase,1.0,0 -182229935,"Anno Online",purchase,1.0,0 -182229935,"Terra Incognita ~ Chapter One The Descendant",purchase,1.0,0 -182229935,"The Way of Life Free Edition",purchase,1.0,0 -182229935,"theHunter",purchase,1.0,0 -182229935,"InMind VR",purchase,1.0,0 -182229935,"Soccer Manager 2016",purchase,1.0,0 -182229935,"how do you Do It?",purchase,1.0,0 -182229935,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -182229935,"America's Army 3",purchase,1.0,0 -182229935,"Eternal Senia",purchase,1.0,0 -182229935,"Altitude",purchase,1.0,0 -182229935,"APB Reloaded",purchase,1.0,0 -182229935,"ArcheAge",purchase,1.0,0 -182229935,"Audition Online",purchase,1.0,0 -182229935,"Block N Load",purchase,1.0,0 -182229935,"Codename CURE",purchase,1.0,0 -182229935,"Copa Petrobras de Marcas",purchase,1.0,0 -182229935,"DCS World",purchase,1.0,0 -182229935,"Defiance",purchase,1.0,0 -182229935,"Depression Quest",purchase,1.0,0 -182229935,"Dev Guy",purchase,1.0,0 -182229935,"EverQuest II",purchase,1.0,0 -182229935,"Fishing Planet",purchase,1.0,0 -182229935,"Fistful of Frags",purchase,1.0,0 -182229935,"Football Superstars",purchase,1.0,0 -182229935,"FreeStyle2 Street Basketball",purchase,1.0,0 -182229935,"HIS (Heroes In the Sky)",purchase,1.0,0 -182229935,"Mortal Online",purchase,1.0,0 -182229935,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -182229935,"Neverwinter",purchase,1.0,0 -182229935,"RaceRoom Racing Experience ",purchase,1.0,0 -182229935,"Rise of Flight United",purchase,1.0,0 -182229935,"Super Monday Night Combat",purchase,1.0,0 -182229935,"Tactical Intervention",purchase,1.0,0 -182229935,"The Lord of the Rings Online",purchase,1.0,0 -182229935,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -182229935,"Tribes Ascend",purchase,1.0,0 -182229935,"Velvet Sundown",purchase,1.0,0 -182229935,"War of the Roses",purchase,1.0,0 -297620161,"APB Reloaded",purchase,1.0,0 -297620161,"APB Reloaded",play,2.2,0 -297620161,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -297620161,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.7,0 -297620161,"Magic Duels",purchase,1.0,0 -297620161,"Magic Duels",play,0.6,0 -297620161,"Heroes & Generals",purchase,1.0,0 -297620161,"Heroes & Generals",play,0.4,0 -297620161,"PlanetSide 2",purchase,1.0,0 -256109019,"Marvel Heroes 2015",purchase,1.0,0 -256109019,"Marvel Heroes 2015",play,1.0,0 -215087521,"Blacklight Retribution",purchase,1.0,0 -215087521,"Counter-Strike Nexon Zombies",purchase,1.0,0 -215087521,"Loadout",purchase,1.0,0 -215087521,"Loadout Campaign Beta",purchase,1.0,0 -215087521,"Robocraft",purchase,1.0,0 -215087521,"The Expendabros",purchase,1.0,0 -215087521,"Unturned",purchase,1.0,0 -215087521,"Warframe",purchase,1.0,0 -295268274,"Dota 2",purchase,1.0,0 -295268274,"Dota 2",play,3.7,0 -252728747,"Magic Duels",purchase,1.0,0 -252728747,"Magic Duels",play,0.3,0 -204343807,"Team Fortress 2",purchase,1.0,0 -204343807,"Team Fortress 2",play,7.6,0 -204343807,"Heroes & Generals",purchase,1.0,0 -150305902,"Sonic Adventure 2 ",purchase,1.0,0 -150305902,"Sonic Adventure 2 ",play,27.0,0 -150305902,"The Elder Scrolls V Skyrim",purchase,1.0,0 -150305902,"The Elder Scrolls V Skyrim",play,10.5,0 -150305902,"Warframe",purchase,1.0,0 -150305902,"Warframe",play,8.6,0 -150305902,"Garry's Mod",purchase,1.0,0 -150305902,"Garry's Mod",play,6.5,0 -150305902,"Cry of Fear",purchase,1.0,0 -150305902,"Cry of Fear",play,4.5,0 -150305902,"Magic 2014 ",purchase,1.0,0 -150305902,"Magic 2014 ",play,3.9,0 -150305902,"Dota 2",purchase,1.0,0 -150305902,"Dota 2",play,2.1,0 -150305902,"Team Fortress 2",purchase,1.0,0 -150305902,"Team Fortress 2",play,1.3,0 -150305902,"Sniper Elite V2",purchase,1.0,0 -150305902,"Sniper Elite V2",play,1.2,0 -150305902,"Grand Theft Auto IV",purchase,1.0,0 -150305902,"Grand Theft Auto IV",play,0.6,0 -150305902,"Retro City Rampage DX",purchase,1.0,0 -150305902,"Retro City Rampage DX",play,0.5,0 -150305902,"PAC-MAN Championship Edition DX+",purchase,1.0,0 -150305902,"PAC-MAN Championship Edition DX+",play,0.4,0 -150305902,"One Night",purchase,1.0,0 -150305902,"One Night",play,0.4,0 -150305902,"Ragnarok",purchase,1.0,0 -150305902,"Ragnarok",play,0.4,0 -150305902,"Epigenesis",purchase,1.0,0 -150305902,"Epigenesis",play,0.2,0 -150305902,"You Have to Win the Game",purchase,1.0,0 -150305902,"You Have to Win the Game",play,0.1,0 -150305902,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -150305902,"MapleStory",purchase,1.0,0 -150305902,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -150305902,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -150305902,"Sonic Adventure 2 Battle Mode DLC",purchase,1.0,0 -150305902,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -150305902,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -150305902,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -65438630,"Portal",purchase,1.0,0 -143877335,"ARK Survival Evolved",purchase,1.0,0 -143877335,"ARK Survival Evolved",play,175.0,0 -143877335,"Unturned",purchase,1.0,0 -143877335,"Unturned",play,113.0,0 -143877335,"Banished",purchase,1.0,0 -143877335,"Banished",play,94.0,0 -143877335,"Warframe",purchase,1.0,0 -143877335,"Warframe",play,87.0,0 -143877335,"Cities Skylines",purchase,1.0,0 -143877335,"Cities Skylines",play,60.0,0 -143877335,"Stranded Deep",purchase,1.0,0 -143877335,"Stranded Deep",play,54.0,0 -143877335,"Euro Truck Simulator 2",purchase,1.0,0 -143877335,"Euro Truck Simulator 2",play,37.0,0 -143877335,"Echo of Soul",purchase,1.0,0 -143877335,"Echo of Soul",play,31.0,0 -143877335,"Sid Meier's Civilization V",purchase,1.0,0 -143877335,"Sid Meier's Civilization V",play,29.0,0 -143877335,"The Mighty Quest For Epic Loot",purchase,1.0,0 -143877335,"The Mighty Quest For Epic Loot",play,28.0,0 -143877335,"Tropico 4",purchase,1.0,0 -143877335,"Tropico 4",play,26.0,0 -143877335,"Europa Universalis III",purchase,1.0,0 -143877335,"Europa Universalis III",play,25.0,0 -143877335,"Hearts of Iron III",purchase,1.0,0 -143877335,"Hearts of Iron III",play,15.9,0 -143877335,"Counter-Strike Global Offensive",purchase,1.0,0 -143877335,"Counter-Strike Global Offensive",play,7.8,0 -143877335,"Order of War",purchase,1.0,0 -143877335,"Order of War",play,7.6,0 -143877335,"STORM Frontline Nation",purchase,1.0,0 -143877335,"STORM Frontline Nation",play,5.6,0 -143877335,"Dino D-Day",purchase,1.0,0 -143877335,"Dino D-Day",play,3.5,0 -143877335,"Better Late Than DEAD",purchase,1.0,0 -143877335,"Better Late Than DEAD",play,3.4,0 -143877335,"Pixel Puzzles Japan",purchase,1.0,0 -143877335,"Pixel Puzzles Japan",play,3.1,0 -143877335,"Really Big Sky",purchase,1.0,0 -143877335,"Really Big Sky",play,3.0,0 -143877335,"King Arthur - The Role-playing Wargame",purchase,1.0,0 -143877335,"King Arthur - The Role-playing Wargame",play,3.0,0 -143877335,"Wildlife Park 3",purchase,1.0,0 -143877335,"Wildlife Park 3",play,2.8,0 -143877335,"Total War Battles KINGDOM",purchase,1.0,0 -143877335,"Total War Battles KINGDOM",play,2.7,0 -143877335,"Victoria II",purchase,1.0,0 -143877335,"Victoria II",play,2.6,0 -143877335,"The Culling Of The Cows",purchase,1.0,0 -143877335,"The Culling Of The Cows",play,2.4,0 -143877335,"Path of Exile",purchase,1.0,0 -143877335,"Path of Exile",play,2.2,0 -143877335,"Anomaly Warzone Earth",purchase,1.0,0 -143877335,"Anomaly Warzone Earth",play,2.0,0 -143877335,"Sniper Elite V2",purchase,1.0,0 -143877335,"Sniper Elite V2",play,2.0,0 -143877335,"SuperPower 2 Steam Edition",purchase,1.0,0 -143877335,"SuperPower 2 Steam Edition",play,1.8,0 -143877335,"Star Wolves 3 Civil War",purchase,1.0,0 -143877335,"Star Wolves 3 Civil War",play,1.7,0 -143877335,"Dead Bits",purchase,1.0,0 -143877335,"Dead Bits",play,1.6,0 -143877335,"SpaceChem",purchase,1.0,0 -143877335,"SpaceChem",play,1.4,0 -143877335,"Cities in Motion 2",purchase,1.0,0 -143877335,"Cities in Motion 2",play,1.4,0 -143877335,"Blitzkrieg 2 Anthology",purchase,1.0,0 -143877335,"Blitzkrieg 2 Anthology",play,1.1,0 -143877335,"Left 4 Dead 2",purchase,1.0,0 -143877335,"Left 4 Dead 2",play,1.1,0 -143877335,"Arma 2 DayZ Mod",purchase,1.0,0 -143877335,"Arma 2 DayZ Mod",play,1.0,0 -143877335,"Yet Another Zombie Defense",purchase,1.0,0 -143877335,"Yet Another Zombie Defense",play,1.0,0 -143877335,"Trainz Simulator 12",purchase,1.0,0 -143877335,"Trainz Simulator 12",play,0.9,0 -143877335,"Gun Monkeys",purchase,1.0,0 -143877335,"Gun Monkeys",play,0.9,0 -143877335,"Moonbase Alpha",purchase,1.0,0 -143877335,"Moonbase Alpha",play,0.8,0 -143877335,"Bionic Dues",purchase,1.0,0 -143877335,"Bionic Dues",play,0.5,0 -143877335,"Imperium Romanum Gold Edition",purchase,1.0,0 -143877335,"Imperium Romanum Gold Edition",play,0.5,0 -143877335,"Chip",purchase,1.0,0 -143877335,"Chip",play,0.5,0 -143877335,"Amnesia The Dark Descent",purchase,1.0,0 -143877335,"Amnesia The Dark Descent",play,0.4,0 -143877335,"Penguins Arena Sedna's World",purchase,1.0,0 -143877335,"Penguins Arena Sedna's World",play,0.4,0 -143877335,"Primal Carnage",purchase,1.0,0 -143877335,"Primal Carnage",play,0.4,0 -143877335,"Heroes & Generals",purchase,1.0,0 -143877335,"Heroes & Generals",play,0.3,0 -143877335,"Hammerfight",purchase,1.0,0 -143877335,"Hammerfight",play,0.3,0 -143877335,"Power-Up",purchase,1.0,0 -143877335,"Power-Up",play,0.2,0 -143877335,"Sid Meier's Railroads!",purchase,1.0,0 -143877335,"Sid Meier's Railroads!",play,0.1,0 -143877335,"Men of War Red Tide",purchase,1.0,0 -143877335,"Arma 2",purchase,1.0,0 -143877335,"Arma 2 Operation Arrowhead",purchase,1.0,0 -143877335,"Anomaly Warzone Earth Mobile Campaign",purchase,1.0,0 -143877335,"Anoxemia",purchase,1.0,0 -143877335,"Arma 2 British Armed Forces",purchase,1.0,0 -143877335,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -143877335,"Arma 2 Private Military Company",purchase,1.0,0 -143877335,"Arma Cold War Assault",purchase,1.0,0 -143877335,"Avencast",purchase,1.0,0 -143877335,"Axis Game Factory's AGFPRO 3.0",purchase,1.0,0 -143877335,"Battlepaths",purchase,1.0,0 -143877335,"Beyond Space",purchase,1.0,0 -143877335,"Bloop",purchase,1.0,0 -143877335,"Burstfire",purchase,1.0,0 -143877335,"Commander Conquest of the Americas Gold",purchase,1.0,0 -143877335,"Commando Jack",purchase,1.0,0 -143877335,"Crash Time II",purchase,1.0,0 -143877335,"Dark Matter",purchase,1.0,0 -143877335,"Desert Thunder",purchase,1.0,0 -143877335,"Dungeon Siege III",purchase,1.0,0 -143877335,"Earth 2150 Lost Souls",purchase,1.0,0 -143877335,"Earth 2150 The Moon Project",purchase,1.0,0 -143877335,"East India Company Gold",purchase,1.0,0 -143877335,"Enclave",purchase,1.0,0 -143877335,"Enemy Mind",purchase,1.0,0 -143877335,"Epigenesis",purchase,1.0,0 -143877335,"Europa Universalis III Divine Wind",purchase,1.0,0 -143877335,"Europa Universalis III Heir to the Throne",purchase,1.0,0 -143877335,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -143877335,"Final Dusk",purchase,1.0,0 -143877335,"Fractured Space",purchase,1.0,0 -143877335,"Galaxy on Fire 2 Full HD",purchase,1.0,0 -143877335,"Grimm",purchase,1.0,0 -143877335,"Grimoire Manastorm",purchase,1.0,0 -143877335,"GTR Evolution",purchase,1.0,0 -143877335,"How to Survive",purchase,1.0,0 -143877335,"Hunting Unlimited 2010",purchase,1.0,0 -143877335,"Hyper Fighters",purchase,1.0,0 -143877335,"iBomber Defense Pacific",purchase,1.0,0 -143877335,"Insurgency",purchase,1.0,0 -143877335,"Jet Gunner",purchase,1.0,0 -143877335,"Kingdom Wars",purchase,1.0,0 -143877335,"Knights and Merchants",purchase,1.0,0 -143877335,"Koya Rift",purchase,1.0,0 -143877335,"Litil Divil",purchase,1.0,0 -143877335,"Marine Sharpshooter II Jungle Warfare",purchase,1.0,0 -143877335,"Mechanic Escape",purchase,1.0,0 -143877335,"Metro 2033",purchase,1.0,0 -143877335,"Naval Warfare",purchase,1.0,0 -143877335,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -143877335,"Nux",purchase,1.0,0 -143877335,"Oddworld Abe's Oddysee",purchase,1.0,0 -143877335,"Pirates of Black Cove Gold",purchase,1.0,0 -143877335,"Plain Sight",purchase,1.0,0 -143877335,"Platypus",purchase,1.0,0 -143877335,"Pressured",purchase,1.0,0 -143877335,"Professional Farmer 2014",purchase,1.0,0 -143877335,"QuestRun",purchase,1.0,0 -143877335,"R.O.O.T.S",purchase,1.0,0 -143877335,"RACE 07",purchase,1.0,0 -143877335,"RaceRoom Racing Experience ",purchase,1.0,0 -143877335,"Race The Sun",purchase,1.0,0 -143877335,"Realms of the Haunting",purchase,1.0,0 -143877335,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -143877335,"Retention",purchase,1.0,0 -143877335,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -143877335,"Saints Row IV Inauguration Station",purchase,1.0,0 -143877335,"Selknam Defense",purchase,1.0,0 -143877335,"Shadows on the Vatican - Act I Greed",purchase,1.0,0 -143877335,"Sins of a Dark Age",purchase,1.0,0 -143877335,"Space Hack",purchase,1.0,0 -143877335,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -143877335,"Two Worlds Epic Edition",purchase,1.0,0 -143877335,"Two Worlds II",purchase,1.0,0 -143877335,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -143877335,"Vertiginous Golf",purchase,1.0,0 -143877335,"Wind of Luck Arena",purchase,1.0,0 -143877335,"X-Blades",purchase,1.0,0 -143877335,"Zombie Zoeds",purchase,1.0,0 -113268833,"Garry's Mod",purchase,1.0,0 -113268833,"Garry's Mod",play,45.0,0 -113268833,"Portal 2",purchase,1.0,0 -113268833,"Portal 2",play,18.5,0 -113268833,"Team Fortress 2",purchase,1.0,0 -113268833,"Team Fortress 2",play,11.2,0 -113268833,"Counter-Strike Global Offensive",purchase,1.0,0 -113268833,"Counter-Strike Global Offensive",play,9.4,0 -113268833,"Boson X",purchase,1.0,0 -113268833,"Boson X",play,1.7,0 -113268833,"Unturned",purchase,1.0,0 -113268833,"Unturned",play,1.4,0 -113268833,"PAYDAY 2",purchase,1.0,0 -113268833,"PAYDAY 2",play,0.9,0 -113268833,"Goat Simulator",purchase,1.0,0 -113268833,"Goat Simulator",play,0.9,0 -113268833,"Grand Theft Auto IV",purchase,1.0,0 -113268833,"Grand Theft Auto IV",play,0.3,0 -113268833,"Fork Parker's Holiday Profit Hike",purchase,1.0,0 -113268833,"Fork Parker's Holiday Profit Hike",play,0.3,0 -113268833,"Dota 2",purchase,1.0,0 -113268833,"Dota 2",play,0.2,0 -113268833,"Portal 2 - The Final Hours",purchase,1.0,0 -113268833,"Portal 2 - The Final Hours",play,0.1,0 -113268833,"Waveform",purchase,1.0,0 -113268833,"Grand Theft Auto San Andreas",purchase,1.0,0 -113268833,"Grand Theft Auto San Andreas",purchase,1.0,0 -109205612,"Dota 2",purchase,1.0,0 -109205612,"Dota 2",play,432.0,0 -109205612,"NBA 2K14",purchase,1.0,0 -109205612,"NBA 2K14",play,110.0,0 -109205612,"Borderlands 2",purchase,1.0,0 -109205612,"Borderlands 2",play,34.0,0 -109205612,"Batman Arkham City GOTY",purchase,1.0,0 -109205612,"Batman Arkham City GOTY",play,16.1,0 -109205612,"XCOM Enemy Unknown",purchase,1.0,0 -109205612,"XCOM Enemy Unknown",play,13.7,0 -109205612,"Sleeping Dogs",purchase,1.0,0 -109205612,"Sleeping Dogs",play,12.6,0 -109205612,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -109205612,"Batman Arkham Asylum GOTY Edition",play,8.5,0 -109205612,"Rogue Legacy",purchase,1.0,0 -109205612,"Rogue Legacy",play,7.2,0 -109205612,"Scribblenauts Unlimited",purchase,1.0,0 -109205612,"Scribblenauts Unlimited",play,4.9,0 -109205612,"Papers, Please",purchase,1.0,0 -109205612,"Papers, Please",play,4.6,0 -109205612,"Team Fortress 2",purchase,1.0,0 -109205612,"Team Fortress 2",play,3.9,0 -109205612,"FTL Faster Than Light",purchase,1.0,0 -109205612,"FTL Faster Than Light",play,3.4,0 -109205612,"BioShock Infinite",purchase,1.0,0 -109205612,"BioShock Infinite",play,3.2,0 -109205612,"King's Bounty Warriors of the North",purchase,1.0,0 -109205612,"King's Bounty Warriors of the North",play,2.8,0 -109205612,"Crusader Kings II",purchase,1.0,0 -109205612,"Crusader Kings II",play,2.7,0 -109205612,"Rise of Venice",purchase,1.0,0 -109205612,"Rise of Venice",play,2.2,0 -109205612,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -109205612,"THE KING OF FIGHTERS XIII STEAM EDITION",play,2.1,0 -109205612,"The Elder Scrolls V Skyrim",purchase,1.0,0 -109205612,"The Elder Scrolls V Skyrim",play,2.0,0 -109205612,"Fallout New Vegas",purchase,1.0,0 -109205612,"Fallout New Vegas",play,1.5,0 -109205612,"Left 4 Dead 2",purchase,1.0,0 -109205612,"Left 4 Dead 2",play,1.4,0 -109205612,"Electronic Super Joy",purchase,1.0,0 -109205612,"Electronic Super Joy",play,1.1,0 -109205612,"FEZ",purchase,1.0,0 -109205612,"FEZ",play,1.0,0 -109205612,"Real Boxing",purchase,1.0,0 -109205612,"Real Boxing",play,0.8,0 -109205612,"The Binding of Isaac",purchase,1.0,0 -109205612,"The Binding of Isaac",play,0.7,0 -109205612,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -109205612,"Call of Duty Black Ops - Multiplayer",play,0.4,0 -109205612,"Out of the Park Baseball 15",purchase,1.0,0 -109205612,"Out of the Park Baseball 15",play,0.4,0 -109205612,"Super Hexagon",purchase,1.0,0 -109205612,"Super Hexagon",play,0.3,0 -109205612,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -109205612,"Fallout 3 - Game of the Year Edition",play,0.1,0 -109205612,"8BitMMO",purchase,1.0,0 -109205612,"Call of Duty Black Ops",purchase,1.0,0 -109205612,"BioShock",purchase,1.0,0 -109205612,"BioShock 2",purchase,1.0,0 -109205612,"Deadlight",purchase,1.0,0 -109205612,"Deadlight Original Soundtrack",purchase,1.0,0 -109205612,"Enclave",purchase,1.0,0 -109205612,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -109205612,"Fallout New Vegas Dead Money",purchase,1.0,0 -109205612,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -109205612,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -109205612,"Legend of Grimrock",purchase,1.0,0 -109205612,"Mafia II",purchase,1.0,0 -109205612,"Metro 2033",purchase,1.0,0 -109205612,"Orcs Must Die! 2",purchase,1.0,0 -109205612,"PAYDAY The Heist",purchase,1.0,0 -109205612,"PixelJunk Eden",purchase,1.0,0 -109205612,"Shelter",purchase,1.0,0 -109205612,"Spec Ops The Line",purchase,1.0,0 -109205612,"Terraria",purchase,1.0,0 -109205612,"The 39 Steps",purchase,1.0,0 -109205612,"The Bureau XCOM Declassified",purchase,1.0,0 -109205612,"The Darkness II",purchase,1.0,0 -109205612,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -109205612,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -109205612,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -109205612,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -109205612,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -109205612,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -109205612,"Warframe",purchase,1.0,0 -136219907,"Dota 2",purchase,1.0,0 -136219907,"Dota 2",play,872.0,0 -136219907,"Grand Theft Auto V",purchase,1.0,0 -136219907,"Grand Theft Auto V",play,115.0,0 -136219907,"Counter-Strike Global Offensive",purchase,1.0,0 -136219907,"Counter-Strike Global Offensive",play,12.4,0 -254201131,"Unturned",purchase,1.0,0 -254201131,"Unturned",play,139.0,0 -254201131,"Trove",purchase,1.0,0 -254201131,"Trove",play,80.0,0 -254201131,"Terraria",purchase,1.0,0 -254201131,"Terraria",play,27.0,0 -254201131,"Robocraft",purchase,1.0,0 -254201131,"Robocraft",play,19.0,0 -254201131,"CubeGun",purchase,1.0,0 -254201131,"CubeGun",play,8.0,0 -254201131,"Dungeon Defenders II",purchase,1.0,0 -254201131,"Dungeon Defenders II",play,3.6,0 -254201131,"8BitMMO",purchase,1.0,0 -254201131,"8BitMMO",play,1.5,0 -254201131,"Codename CURE",purchase,1.0,0 -254201131,"Codename CURE",play,0.6,0 -254201131,"Teeworlds",purchase,1.0,0 -254201131,"Teeworlds",play,0.5,0 -254201131,"Gear Up",purchase,1.0,0 -254201131,"BLOCKADE 3D",purchase,1.0,0 -254201131,"WARMODE",purchase,1.0,0 -254201131,"Copa Petrobras de Marcas",purchase,1.0,0 -254201131,"Happy Wars",purchase,1.0,0 -254201131,"PlanetSide 2",purchase,1.0,0 -254201131,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -254201131,"RaceRoom Racing Experience ",purchase,1.0,0 -254201131,"SMITE",purchase,1.0,0 -61495434,"Napoleon Total War",purchase,1.0,0 -61495434,"Napoleon Total War",play,35.0,0 -117414332,"Sniper Ghost Warrior",purchase,1.0,0 -229363165,"Dota 2",purchase,1.0,0 -229363165,"Dota 2",play,86.0,0 -229363165,"Ragnarok Online 2",purchase,1.0,0 -252369207,"ARK Survival Evolved",purchase,1.0,0 -252369207,"ARK Survival Evolved",play,6.6,0 -133033659,"Dota 2",purchase,1.0,0 -133033659,"Dota 2",play,13.2,0 -244823619,"BLOCKADE 3D",purchase,1.0,0 -244823619,"Double Action Boogaloo",purchase,1.0,0 -244823619,"Dwarfs F2P",purchase,1.0,0 -244823619,"Fistful of Frags",purchase,1.0,0 -244823619,"Loadout",purchase,1.0,0 -244823619,"No More Room in Hell",purchase,1.0,0 -244823619,"Spiral Knights",purchase,1.0,0 -244823619,"Toribash",purchase,1.0,0 -244823619,"Transformice",purchase,1.0,0 -244823619,"Unturned",purchase,1.0,0 -205285563,"Counter-Strike Global Offensive",purchase,1.0,0 -205285563,"Counter-Strike Global Offensive",play,771.0,0 -205285563,"War Thunder",purchase,1.0,0 -205285563,"War Thunder",play,64.0,0 -205285563,"Garry's Mod",purchase,1.0,0 -205285563,"Garry's Mod",play,38.0,0 -205285563,"Far Cry 3",purchase,1.0,0 -205285563,"Far Cry 3",play,32.0,0 -205285563,"Team Fortress 2",purchase,1.0,0 -205285563,"Team Fortress 2",play,19.5,0 -205285563,"Rust",purchase,1.0,0 -205285563,"Rust",play,17.2,0 -205285563,"Warface",purchase,1.0,0 -205285563,"Warface",play,13.7,0 -205285563,"Left 4 Dead 2",purchase,1.0,0 -205285563,"Left 4 Dead 2",play,11.7,0 -205285563,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -205285563,"Tom Clancy's Ghost Recon Phantoms - NA",play,6.3,0 -205285563,"Company of Heroes 2",purchase,1.0,0 -205285563,"Company of Heroes 2",play,5.5,0 -205285563,"Counter-Strike Source",purchase,1.0,0 -205285563,"Counter-Strike Source",play,3.8,0 -205285563,"Age of Empires III Complete Collection",purchase,1.0,0 -205285563,"Age of Empires III Complete Collection",play,3.1,0 -205285563,"Heroes & Generals",purchase,1.0,0 -205285563,"Heroes & Generals",play,2.5,0 -205285563,"Half-Life Blue Shift",purchase,1.0,0 -205285563,"Half-Life Blue Shift",play,1.8,0 -205285563,"Metro 2033 Redux",purchase,1.0,0 -205285563,"Metro 2033 Redux",play,1.7,0 -205285563,"Half-Life",purchase,1.0,0 -205285563,"Half-Life",play,1.1,0 -205285563,"PAYDAY The Heist",purchase,1.0,0 -205285563,"PAYDAY The Heist",play,1.1,0 -205285563,"Counter-Strike",purchase,1.0,0 -205285563,"Counter-Strike",play,1.0,0 -205285563,"PlanetSide 2",purchase,1.0,0 -205285563,"PlanetSide 2",play,1.0,0 -205285563,"Survarium",purchase,1.0,0 -205285563,"Survarium",play,1.0,0 -205285563,"Left 4 Dead",purchase,1.0,0 -205285563,"Left 4 Dead",play,1.0,0 -205285563,"Company of Heroes Tales of Valor",purchase,1.0,0 -205285563,"Company of Heroes Tales of Valor",play,0.9,0 -205285563,"Half-Life 2",purchase,1.0,0 -205285563,"Half-Life 2",play,0.7,0 -205285563,"Half-Life Opposing Force",purchase,1.0,0 -205285563,"Half-Life Opposing Force",play,0.7,0 -205285563,"Portal",purchase,1.0,0 -205285563,"Portal",play,0.5,0 -205285563,"Fallout 3",purchase,1.0,0 -205285563,"Fallout 3",play,0.4,0 -205285563,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -205285563,"Counter-Strike Condition Zero Deleted Scenes",play,0.3,0 -205285563,"PAYDAY 2",purchase,1.0,0 -205285563,"PAYDAY 2",play,0.3,0 -205285563,"Metro Last Light Redux",purchase,1.0,0 -205285563,"Metro Last Light Redux",play,0.2,0 -205285563,"Grand Theft Auto IV",purchase,1.0,0 -205285563,"Grand Theft Auto IV",play,0.1,0 -205285563,"Company of Heroes (New Steam Version)",purchase,1.0,0 -205285563,"Half-Life 2 Episode One",purchase,1.0,0 -205285563,"Team Fortress Classic",purchase,1.0,0 -205285563,"Primal Carnage",purchase,1.0,0 -205285563,"Unturned",purchase,1.0,0 -205285563,"APB Reloaded",purchase,1.0,0 -205285563,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -205285563,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -205285563,"Company of Heroes",purchase,1.0,0 -205285563,"Company of Heroes Opposing Fronts",purchase,1.0,0 -205285563,"Company of Heroes The Great War 1918",purchase,1.0,0 -205285563,"Counter-Strike Condition Zero",purchase,1.0,0 -205285563,"Counter-Strike Nexon Zombies",purchase,1.0,0 -205285563,"Day of Defeat",purchase,1.0,0 -205285563,"Day of Defeat Source",purchase,1.0,0 -205285563,"Deathmatch Classic",purchase,1.0,0 -205285563,"Dirty Bomb",purchase,1.0,0 -205285563,"F.E.A.R. Online",purchase,1.0,0 -205285563,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -205285563,"Guns and Robots",purchase,1.0,0 -205285563,"Half-Life 2 Deathmatch",purchase,1.0,0 -205285563,"Half-Life 2 Episode Two",purchase,1.0,0 -205285563,"Half-Life 2 Lost Coast",purchase,1.0,0 -205285563,"Half-Life 2 Update",purchase,1.0,0 -205285563,"Half-Life Source",purchase,1.0,0 -205285563,"Half-Life Deathmatch Source",purchase,1.0,0 -205285563,"HAWKEN",purchase,1.0,0 -205285563,"HIS (Heroes In the Sky)",purchase,1.0,0 -205285563,"Loadout",purchase,1.0,0 -205285563,"Modular Combat",purchase,1.0,0 -205285563,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -205285563,"NEOTOKYO",purchase,1.0,0 -205285563,"No More Room in Hell",purchase,1.0,0 -205285563,"Portal 2",purchase,1.0,0 -205285563,"Ricochet",purchase,1.0,0 -205285563,"sZone-Online",purchase,1.0,0 -205285563,"Tactical Intervention",purchase,1.0,0 -205285563,"Warframe",purchase,1.0,0 -248266820,"Firefighters 2014",purchase,1.0,0 -248266820,"Firefighters 2014",play,11.6,0 -248266820,"FaceRig",purchase,1.0,0 -248266820,"FaceRig",play,5.5,0 -59155360,"Half-Life 2 Deathmatch",purchase,1.0,0 -59155360,"Half-Life 2 Deathmatch",play,9.0,0 -27633355,"Team Fortress 2",purchase,1.0,0 -27633355,"Team Fortress 2",play,4.7,0 -176894177,"Dota 2",purchase,1.0,0 -176894177,"Dota 2",play,0.7,0 -199779448,"Dota 2",purchase,1.0,0 -199779448,"Dota 2",play,11.4,0 -199779448,"Team Fortress 2",purchase,1.0,0 -199779448,"Team Fortress 2",play,0.4,0 -253690596,"Alan Wake",purchase,1.0,0 -253690596,"Alan Wake",play,0.6,0 -127987714,"Dota 2",purchase,1.0,0 -127987714,"Dota 2",play,20.0,0 -127987714,"Warlock - Master of the Arcane",purchase,1.0,0 -127987714,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -308101403,"Dota 2",purchase,1.0,0 -308101403,"Dota 2",play,23.0,0 -308101403,"FreeStyle2 Street Basketball",purchase,1.0,0 -302545663,"SMITE",purchase,1.0,0 -302545663,"SMITE",play,8.1,0 -302545663,"Nosgoth",purchase,1.0,0 -302545663,"Nosgoth",play,0.7,0 -302545663,"Dota 2",purchase,1.0,0 -302545663,"Dota 2",play,0.7,0 -302545663,"Might & Magic Heroes Online",purchase,1.0,0 -302545663,"Might & Magic Heroes Online",play,0.6,0 -302545663,"HAWKEN",purchase,1.0,0 -299256191,"Dota 2",purchase,1.0,0 -299256191,"Dota 2",play,71.0,0 -155082814,"Dota 2",purchase,1.0,0 -155082814,"Dota 2",play,2.5,0 -155082814,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -155082814,"Navy Field 2 Conqueror of the Ocean",play,0.3,0 -90265311,"Garry's Mod",purchase,1.0,0 -90265311,"Garry's Mod",play,0.7,0 -90265311,"Half-Life 2 Episode Two",purchase,1.0,0 -188773446,"Dota 2",purchase,1.0,0 -188773446,"Dota 2",play,125.0,0 -99701966,"Clicker Heroes",purchase,1.0,0 -99701966,"Clicker Heroes",play,282.0,0 -99701966,"Magic Duels",purchase,1.0,0 -99701966,"Magic Duels",play,0.4,0 -99701966,"Card Hunter",purchase,1.0,0 -54310644,"Borderlands 2",purchase,1.0,0 -54310644,"Borderlands 2",play,475.0,0 -54310644,"PAYDAY 2",purchase,1.0,0 -54310644,"PAYDAY 2",play,455.0,0 -54310644,"Borderlands The Pre-Sequel",purchase,1.0,0 -54310644,"Borderlands The Pre-Sequel",play,211.0,0 -54310644,"South Park The Stick of Truth",purchase,1.0,0 -54310644,"South Park The Stick of Truth",play,115.0,0 -54310644,"Rocket League",purchase,1.0,0 -54310644,"Rocket League",play,85.0,0 -54310644,"Far Cry 3",purchase,1.0,0 -54310644,"Far Cry 3",play,64.0,0 -54310644,"Torchlight II",purchase,1.0,0 -54310644,"Torchlight II",play,45.0,0 -54310644,"Dota 2",purchase,1.0,0 -54310644,"Dota 2",play,43.0,0 -54310644,"Psychonauts",purchase,1.0,0 -54310644,"Psychonauts",play,34.0,0 -54310644,"Saints Row The Third",purchase,1.0,0 -54310644,"Saints Row The Third",play,28.0,0 -54310644,"Counter-Strike Global Offensive",purchase,1.0,0 -54310644,"Counter-Strike Global Offensive",play,26.0,0 -54310644,"Borderlands",purchase,1.0,0 -54310644,"Borderlands",play,20.0,0 -54310644,"Dishonored",purchase,1.0,0 -54310644,"Dishonored",play,16.8,0 -54310644,"Magic The Gathering Duels of the Planeswalkers 2012",purchase,1.0,0 -54310644,"Magic The Gathering Duels of the Planeswalkers 2012",play,16.0,0 -54310644,"Deponia",purchase,1.0,0 -54310644,"Deponia",play,15.8,0 -54310644,"Deus Ex Human Revolution",purchase,1.0,0 -54310644,"Deus Ex Human Revolution",play,10.1,0 -54310644,"The Dream Machine",purchase,1.0,0 -54310644,"The Dream Machine",play,9.0,0 -54310644,"Machinarium",purchase,1.0,0 -54310644,"Machinarium",play,8.8,0 -54310644,"Poker Night 2",purchase,1.0,0 -54310644,"Poker Night 2",play,7.1,0 -54310644,"SimCity 4 Deluxe",purchase,1.0,0 -54310644,"SimCity 4 Deluxe",play,6.1,0 -54310644,"Chaos on Deponia",purchase,1.0,0 -54310644,"Chaos on Deponia",play,6.1,0 -54310644,"The Wonderful End of the World",purchase,1.0,0 -54310644,"The Wonderful End of the World",play,4.7,0 -54310644,"POSTAL",purchase,1.0,0 -54310644,"POSTAL",play,4.7,0 -54310644,"Serious Sam 3 BFE",purchase,1.0,0 -54310644,"Serious Sam 3 BFE",play,4.4,0 -54310644,"Terraria",purchase,1.0,0 -54310644,"Terraria",play,4.3,0 -54310644,"Braid",purchase,1.0,0 -54310644,"Braid",play,4.1,0 -54310644,"Shadow Warrior Classic Redux",purchase,1.0,0 -54310644,"Shadow Warrior Classic Redux",play,3.9,0 -54310644,"Portal 2",purchase,1.0,0 -54310644,"Portal 2",play,3.1,0 -54310644,"ARK Survival Evolved",purchase,1.0,0 -54310644,"ARK Survival Evolved",play,3.0,0 -54310644,"Worms Armageddon",purchase,1.0,0 -54310644,"Worms Armageddon",play,2.6,0 -54310644,"Garry's Mod",purchase,1.0,0 -54310644,"Garry's Mod",play,2.5,0 -54310644,"Portal",purchase,1.0,0 -54310644,"Portal",play,2.0,0 -54310644,"Goat Simulator",purchase,1.0,0 -54310644,"Goat Simulator",play,1.9,0 -54310644,"Ninja Reflex Steamworks Edition",purchase,1.0,0 -54310644,"Ninja Reflex Steamworks Edition",play,1.8,0 -54310644,"Tales from the Borderlands",purchase,1.0,0 -54310644,"Tales from the Borderlands",play,1.6,0 -54310644,"I-Fluid",purchase,1.0,0 -54310644,"I-Fluid",play,1.2,0 -54310644,"System Shock 2",purchase,1.0,0 -54310644,"System Shock 2",play,0.8,0 -54310644,"Oddworld Abe's Oddysee",purchase,1.0,0 -54310644,"Oddworld Abe's Oddysee",play,0.7,0 -54310644,"Awesomenauts",purchase,1.0,0 -54310644,"Awesomenauts",play,0.7,0 -54310644,"Dungeon Defenders",purchase,1.0,0 -54310644,"Dungeon Defenders",play,0.6,0 -54310644,"Tomb Raider I",purchase,1.0,0 -54310644,"Tomb Raider I",play,0.6,0 -54310644,"Super Meat Boy",purchase,1.0,0 -54310644,"Super Meat Boy",play,0.2,0 -54310644,"Audiosurf",purchase,1.0,0 -54310644,"Audiosurf",play,0.2,0 -54310644,"Spintires",purchase,1.0,0 -54310644,"Spintires",play,0.2,0 -54310644,"Legend of Grimrock",purchase,1.0,0 -54310644,"Legend of Grimrock",play,0.2,0 -54310644,"RollerCoaster Tycoon Deluxe",purchase,1.0,0 -54310644,"RollerCoaster Tycoon Deluxe",play,0.2,0 -54310644,"BIT.TRIP CORE",purchase,1.0,0 -54310644,"Cave Story+",purchase,1.0,0 -54310644,"And Yet It Moves",purchase,1.0,0 -54310644,"Amnesia The Dark Descent",purchase,1.0,0 -54310644,"Bastion",purchase,1.0,0 -54310644,"Black Mesa",purchase,1.0,0 -54310644,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -54310644,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -54310644,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -54310644,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -54310644,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -54310644,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -54310644,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -54310644,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -54310644,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -54310644,"Closure",purchase,1.0,0 -54310644,"Dead Island",purchase,1.0,0 -54310644,"Dear Esther",purchase,1.0,0 -54310644,"Death Rally",purchase,1.0,0 -54310644,"Don't Starve Together Beta",purchase,1.0,0 -54310644,"Far Cry 4",purchase,1.0,0 -54310644,"Goodbye Deponia",purchase,1.0,0 -54310644,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -54310644,"Grand Theft Auto San Andreas",purchase,1.0,0 -54310644,"Grand Theft Auto San Andreas",purchase,1.0,0 -54310644,"Grand Theft Auto Vice City",purchase,1.0,0 -54310644,"Grand Theft Auto Vice City",purchase,1.0,0 -54310644,"Grand Theft Auto III",purchase,1.0,0 -54310644,"Grand Theft Auto III",purchase,1.0,0 -54310644,"Grand Theft Auto IV",purchase,1.0,0 -54310644,"Hitman 2 Silent Assassin",purchase,1.0,0 -54310644,"Hitman Absolution",purchase,1.0,0 -54310644,"Hitman Blood Money",purchase,1.0,0 -54310644,"Hitman Codename 47",purchase,1.0,0 -54310644,"Hitman Sniper Challenge",purchase,1.0,0 -54310644,"Hotline Miami",purchase,1.0,0 -54310644,"Krater",purchase,1.0,0 -54310644,"Left 4 Dead 2",purchase,1.0,0 -54310644,"LIMBO",purchase,1.0,0 -54310644,"Lone Survivor The Director's Cut",purchase,1.0,0 -54310644,"Mark of the Ninja",purchase,1.0,0 -54310644,"Max Payne 3",purchase,1.0,0 -54310644,"Oddworld Abe's Exoddus",purchase,1.0,0 -54310644,"Orcs Must Die! 2",purchase,1.0,0 -54310644,"POSTAL 2",purchase,1.0,0 -54310644,"Psychonauts Demo",purchase,1.0,0 -54310644,"Saints Row 2",purchase,1.0,0 -54310644,"Saints Row Gat out of Hell",purchase,1.0,0 -54310644,"Sid Meier's Civilization III Complete",purchase,1.0,0 -54310644,"Sid Meier's Civilization IV",purchase,1.0,0 -54310644,"Sid Meier's Civilization IV",purchase,1.0,0 -54310644,"Sid Meier's Civilization V",purchase,1.0,0 -54310644,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -54310644,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -54310644,"Space Pirates and Zombies",purchase,1.0,0 -54310644,"SpeedRunners",purchase,1.0,0 -54310644,"Spirits",purchase,1.0,0 -54310644,"Symphony",purchase,1.0,0 -54310644,"The Dream Machine Chapter 3",purchase,1.0,0 -54310644,"The Dream Machine Chapter 4",purchase,1.0,0 -54310644,"The Dream Machine Chapter 5",purchase,1.0,0 -54310644,"Thirty Flights of Loving",purchase,1.0,0 -54310644,"This War of Mine",purchase,1.0,0 -54310644,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -54310644,"Tomb Raider Anniversary",purchase,1.0,0 -54310644,"Tomb Raider Chronicles",purchase,1.0,0 -54310644,"Tomb Raider Legend",purchase,1.0,0 -54310644,"Tomb Raider The Last Revelation",purchase,1.0,0 -54310644,"Tomb Raider Underworld",purchase,1.0,0 -54310644,"Tomb Raider II",purchase,1.0,0 -54310644,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -54310644,"To the Moon",purchase,1.0,0 -54310644,"Tower Wars",purchase,1.0,0 -54310644,"Towns",purchase,1.0,0 -54310644,"Transformers Fall of Cybertron",purchase,1.0,0 -54310644,"Trine 2",purchase,1.0,0 -54310644,"Universe Sandbox",purchase,1.0,0 -54310644,"Worms",purchase,1.0,0 -54310644,"Worms Blast",purchase,1.0,0 -54310644,"Worms Clan Wars",purchase,1.0,0 -54310644,"Worms Crazy Golf",purchase,1.0,0 -54310644,"Worms Pinball",purchase,1.0,0 -54310644,"Worms Reloaded",purchase,1.0,0 -54310644,"Worms Revolution",purchase,1.0,0 -54310644,"Worms Ultimate Mayhem",purchase,1.0,0 -54310644,"Ys Origin",purchase,1.0,0 -203838394,"Unturned",purchase,1.0,0 -203838394,"Unturned",play,97.0,0 -203838394,"Trove",purchase,1.0,0 -203838394,"Trove",play,30.0,0 -203838394,"War Thunder",purchase,1.0,0 -203838394,"War Thunder",play,22.0,0 -203838394,"Heroes & Generals",purchase,1.0,0 -203838394,"Heroes & Generals",play,10.6,0 -203838394,"WARMODE",purchase,1.0,0 -203838394,"WARMODE",play,5.8,0 -203838394,"Defiance",purchase,1.0,0 -203838394,"Defiance",play,5.7,0 -203838394,"No More Room in Hell",purchase,1.0,0 -203838394,"No More Room in Hell",play,5.2,0 -203838394,"Robocraft",purchase,1.0,0 -203838394,"Robocraft",play,4.8,0 -203838394,"APB Reloaded",purchase,1.0,0 -203838394,"APB Reloaded",play,3.9,0 -203838394,"FlatOut",purchase,1.0,0 -203838394,"FlatOut",play,2.8,0 -203838394,"Metro Conflict",purchase,1.0,0 -203838394,"Metro Conflict",play,2.0,0 -203838394,"Arma Cold War Assault",purchase,1.0,0 -203838394,"Arma Cold War Assault",play,1.8,0 -203838394,"World of Guns Gun Disassembly",purchase,1.0,0 -203838394,"World of Guns Gun Disassembly",play,1.4,0 -203838394,"Tactical Intervention",purchase,1.0,0 -203838394,"Tactical Intervention",play,0.6,0 -203838394,"Survarium",purchase,1.0,0 -203838394,"Survarium",play,0.5,0 -203838394,"Magicka Wizard Wars",purchase,1.0,0 -203838394,"Magicka Wizard Wars",play,0.2,0 -203838394,"Team Fortress 2",purchase,1.0,0 -203838394,"Team Fortress 2",play,0.2,0 -203838394,"Timberman",purchase,1.0,0 -203838394,"Archeblade",purchase,1.0,0 -203838394,"Aftermath",purchase,1.0,0 -203838394,"BLOCKADE 3D",purchase,1.0,0 -203838394,"Block N Load",purchase,1.0,0 -203838394,"Fishing Planet",purchase,1.0,0 -203838394,"sZone-Online",purchase,1.0,0 -203838394,"theHunter",purchase,1.0,0 -203838394,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -301183534,"Mitos.is The Game",purchase,1.0,0 -109598076,"The Elder Scrolls V Skyrim",purchase,1.0,0 -109598076,"The Elder Scrolls V Skyrim",play,29.0,0 -109598076,"Fallout 4",purchase,1.0,0 -109598076,"Fallout 4",play,16.2,0 -109598076,"GunZ 2 The Second Duel",purchase,1.0,0 -109598076,"GunZ 2 The Second Duel",play,7.2,0 -109598076,"Call of Duty World at War",purchase,1.0,0 -109598076,"Call of Duty World at War",play,4.6,0 -109598076,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -109598076,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -109598076,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -6252885,"Counter-Strike Global Offensive",purchase,1.0,0 -6252885,"Counter-Strike Global Offensive",play,51.0,0 -6252885,"Company of Heroes 2",purchase,1.0,0 -6252885,"Company of Heroes 2",play,31.0,0 -6252885,"Counter-Strike",purchase,1.0,0 -6252885,"Counter-Strike",play,4.8,0 -6252885,"Counter-Strike Condition Zero",purchase,1.0,0 -6252885,"Counter-Strike Condition Zero",play,4.2,0 -6252885,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -6252885,"Day of Defeat",purchase,1.0,0 -6252885,"Deathmatch Classic",purchase,1.0,0 -6252885,"Half-Life",purchase,1.0,0 -6252885,"Half-Life Blue Shift",purchase,1.0,0 -6252885,"Half-Life Opposing Force",purchase,1.0,0 -6252885,"Panzar",purchase,1.0,0 -6252885,"Ricochet",purchase,1.0,0 -6252885,"Team Fortress Classic",purchase,1.0,0 -6252885,"War Thunder",purchase,1.0,0 -131613117,"Team Fortress 2",purchase,1.0,0 -131613117,"Team Fortress 2",play,1.3,0 -183771438,"Spore",purchase,1.0,0 -183771438,"Spore",play,417.0,0 -183771438,"Team Fortress 2",purchase,1.0,0 -183771438,"Team Fortress 2",play,164.0,0 -183771438,"Unturned",purchase,1.0,0 -183771438,"Unturned",play,4.7,0 -183771438,"Dota 2",purchase,1.0,0 -183771438,"Dota 2",play,0.6,0 -183771438,"Heroes & Generals",purchase,1.0,0 -183771438,"Heroes & Generals",play,0.4,0 -183771438,"The Expendabros",purchase,1.0,0 -183771438,"The Expendabros",play,0.2,0 -183771438,"Robocraft",purchase,1.0,0 -183771438,"Robocraft",play,0.1,0 -183771438,"Happy Wars",purchase,1.0,0 -126425648,"Team Fortress 2",purchase,1.0,0 -126425648,"Team Fortress 2",play,287.0,0 -126425648,"Pirates, Vikings, & Knights II",purchase,1.0,0 -126425648,"Pirates, Vikings, & Knights II",play,73.0,0 -126425648,"Loadout",purchase,1.0,0 -126425648,"Loadout",play,17.2,0 -126425648,"War Thunder",purchase,1.0,0 -126425648,"War Thunder",play,11.1,0 -283858738,"Nosgoth",purchase,1.0,0 -197822805,"Dota 2",purchase,1.0,0 -197822805,"Dota 2",play,260.0,0 -197822805,"Unturned",purchase,1.0,0 -176191125,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -57451291,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -57451291,"Call of Duty Modern Warfare 2 - Multiplayer",play,672.0,0 -57451291,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -57451291,"Call of Duty Black Ops - Multiplayer",play,90.0,0 -57451291,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -57451291,"Call of Duty Modern Warfare 3 - Multiplayer",play,28.0,0 -57451291,"Call of Duty Modern Warfare 2",purchase,1.0,0 -57451291,"Call of Duty Modern Warfare 2",play,6.7,0 -57451291,"Call of Duty Black Ops",purchase,1.0,0 -57451291,"Call of Duty Black Ops",play,1.9,0 -57451291,"Team Fortress 2",purchase,1.0,0 -57451291,"Team Fortress 2",play,0.1,0 -57451291,"Call of Duty Modern Warfare 3",purchase,1.0,0 -37706629,"Portal 2",purchase,1.0,0 -37706629,"Portal 2",play,46.0,0 -37706629,"Portal",purchase,1.0,0 -37706629,"Portal",play,8.5,0 -37706629,"Half-Life 2",purchase,1.0,0 -37706629,"Half-Life 2 Episode One",purchase,1.0,0 -37706629,"Half-Life 2 Episode Two",purchase,1.0,0 -37706629,"Half-Life 2 Lost Coast",purchase,1.0,0 -195815964,"Unturned",purchase,1.0,0 -195815964,"Unturned",play,13.5,0 -195815964,"Counter-Strike Nexon Zombies",purchase,1.0,0 -85041261,"Team Fortress 2",purchase,1.0,0 -85041261,"Team Fortress 2",play,30.0,0 -196578463,"Dota 2",purchase,1.0,0 -196578463,"Dota 2",play,11.0,0 -134213189,"Terraria",purchase,1.0,0 -134213189,"Terraria",play,86.0,0 -134213189,"The Elder Scrolls V Skyrim",purchase,1.0,0 -134213189,"The Elder Scrolls V Skyrim",play,67.0,0 -134213189,"Garry's Mod",purchase,1.0,0 -134213189,"Garry's Mod",play,32.0,0 -134213189,"Star Wars - Battlefront II",purchase,1.0,0 -134213189,"Star Wars - Battlefront II",play,13.0,0 -134213189,"Left 4 Dead 2",purchase,1.0,0 -134213189,"Left 4 Dead 2",play,11.8,0 -134213189,"Dota 2",purchase,1.0,0 -134213189,"Dota 2",play,2.4,0 -134213189,"Counter-Strike Source",purchase,1.0,0 -134213189,"Counter-Strike Source",play,1.2,0 -134213189,"Team Fortress 2",purchase,1.0,0 -134213189,"Team Fortress 2",play,0.7,0 -134213189,"Unturned",purchase,1.0,0 -134213189,"Unturned",play,0.7,0 -134213189,"Goat Simulator",purchase,1.0,0 -134213189,"Goat Simulator",play,0.5,0 -134213189,"Loadout",purchase,1.0,0 -134213189,"Loadout",play,0.3,0 -134213189,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -134213189,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.1,0 -134213189,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -83482045,"Team Fortress 2",purchase,1.0,0 -83482045,"Team Fortress 2",play,0.2,0 -83482045,"Unturned",purchase,1.0,0 -204245029,"Unturned",purchase,1.0,0 -204245029,"Unturned",play,2.3,0 -203123715,"Dota 2",purchase,1.0,0 -203123715,"Dota 2",play,0.2,0 -90944420,"Team Fortress 2",purchase,1.0,0 -90944420,"Team Fortress 2",play,1.4,0 -170989668,"Dota 2",purchase,1.0,0 -170989668,"Dota 2",play,39.0,0 -118693656,"Dota 2",purchase,1.0,0 -118693656,"Dota 2",play,699.0,0 -118693656,"A Virus Named TOM",purchase,1.0,0 -44545959,"Marvel Puzzle Quest",purchase,1.0,0 -44545959,"Marvel Puzzle Quest",play,753.0,0 -44545959,"Sid Meier's Civilization V",purchase,1.0,0 -44545959,"Sid Meier's Civilization V",play,649.0,0 -44545959,"Clicker Heroes",purchase,1.0,0 -44545959,"Clicker Heroes",play,280.0,0 -44545959,"Borderlands 2",purchase,1.0,0 -44545959,"Borderlands 2",play,252.0,0 -44545959,"Dungeons & Dragons Online",purchase,1.0,0 -44545959,"Dungeons & Dragons Online",play,195.0,0 -44545959,"The Elder Scrolls V Skyrim",purchase,1.0,0 -44545959,"The Elder Scrolls V Skyrim",play,120.0,0 -44545959,"Gems of War",purchase,1.0,0 -44545959,"Gems of War",play,106.0,0 -44545959,"Divinity Original Sin",purchase,1.0,0 -44545959,"Divinity Original Sin",play,103.0,0 -44545959,"Magic The Gathering - Duels of the Planeswalkers 2013",purchase,1.0,0 -44545959,"Magic The Gathering - Duels of the Planeswalkers 2013",play,93.0,0 -44545959,"Magic The Gathering Duels of the Planeswalkers 2012",purchase,1.0,0 -44545959,"Magic The Gathering Duels of the Planeswalkers 2012",play,86.0,0 -44545959,"Marvel Heroes 2015",purchase,1.0,0 -44545959,"Marvel Heroes 2015",play,81.0,0 -44545959,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -44545959,"Sid Meier's Civilization Beyond Earth",play,70.0,0 -44545959,"Magic 2014 ",purchase,1.0,0 -44545959,"Magic 2014 ",play,65.0,0 -44545959,"Fallout 3",purchase,1.0,0 -44545959,"Fallout 3",play,64.0,0 -44545959,"Defiance",purchase,1.0,0 -44545959,"Defiance",play,57.0,0 -44545959,"Fallout New Vegas",purchase,1.0,0 -44545959,"Fallout New Vegas",play,56.0,0 -44545959,"Fallout 4",purchase,1.0,0 -44545959,"Fallout 4",play,54.0,0 -44545959,"Torchlight",purchase,1.0,0 -44545959,"Torchlight",play,53.0,0 -44545959,"The Talos Principle",purchase,1.0,0 -44545959,"The Talos Principle",play,44.0,0 -44545959,"Portal 2",purchase,1.0,0 -44545959,"Portal 2",play,42.0,0 -44545959,"Borderlands The Pre-Sequel",purchase,1.0,0 -44545959,"Borderlands The Pre-Sequel",play,34.0,0 -44545959,"Borderlands",purchase,1.0,0 -44545959,"Borderlands",play,29.0,0 -44545959,"XCOM Enemy Unknown",purchase,1.0,0 -44545959,"XCOM Enemy Unknown",play,27.0,0 -44545959,"Magic The Gathering - Duels of the Planeswalkers",purchase,1.0,0 -44545959,"Magic The Gathering - Duels of the Planeswalkers",play,22.0,0 -44545959,"Tomb Raider",purchase,1.0,0 -44545959,"Tomb Raider",play,21.0,0 -44545959,"The Legend of Heroes Trails in the Sky",purchase,1.0,0 -44545959,"The Legend of Heroes Trails in the Sky",play,17.1,0 -44545959,"Endless Legend",purchase,1.0,0 -44545959,"Endless Legend",play,17.0,0 -44545959,"LEGO MARVEL Super Heroes",purchase,1.0,0 -44545959,"LEGO MARVEL Super Heroes",play,16.5,0 -44545959,"Left 4 Dead",purchase,1.0,0 -44545959,"Left 4 Dead",play,16.5,0 -44545959,"RIFT",purchase,1.0,0 -44545959,"RIFT",play,16.4,0 -44545959,"Trine 2",purchase,1.0,0 -44545959,"Trine 2",play,15.0,0 -44545959,"Worms Revolution",purchase,1.0,0 -44545959,"Worms Revolution",play,14.7,0 -44545959,"Hack 'n' Slash",purchase,1.0,0 -44545959,"Hack 'n' Slash",play,11.3,0 -44545959,"MURDERED SOUL SUSPECT",purchase,1.0,0 -44545959,"MURDERED SOUL SUSPECT",play,11.1,0 -44545959,"Left 4 Dead 2",purchase,1.0,0 -44545959,"Left 4 Dead 2",play,10.1,0 -44545959,"Far Cry 3",purchase,1.0,0 -44545959,"Far Cry 3",play,9.9,0 -44545959,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -44545959,"The Secret of Monkey Island Special Edition",play,8.3,0 -44545959,"Portal",purchase,1.0,0 -44545959,"Portal",play,7.7,0 -44545959,"realMyst Masterpiece Edition",purchase,1.0,0 -44545959,"realMyst Masterpiece Edition",play,7.5,0 -44545959,"Dawn of Discovery - Venice",purchase,1.0,0 -44545959,"Dawn of Discovery - Venice",play,7.0,0 -44545959,"Magic 2015",purchase,1.0,0 -44545959,"Magic 2015",play,6.1,0 -44545959,"Braid",purchase,1.0,0 -44545959,"Braid",play,6.1,0 -44545959,"The Vanishing of Ethan Carter",purchase,1.0,0 -44545959,"The Vanishing of Ethan Carter",play,5.9,0 -44545959,"Dota 2",purchase,1.0,0 -44545959,"Dota 2",play,5.5,0 -44545959,"Half-Life 2",purchase,1.0,0 -44545959,"Half-Life 2",play,4.7,0 -44545959,"WAKFU",purchase,1.0,0 -44545959,"WAKFU",play,4.6,0 -44545959,"Star Trek Online",purchase,1.0,0 -44545959,"Star Trek Online",play,4.4,0 -44545959,"Talisman Digital Edition",purchase,1.0,0 -44545959,"Talisman Digital Edition",play,3.7,0 -44545959,"Gauntlet ",purchase,1.0,0 -44545959,"Gauntlet ",play,2.9,0 -44545959,"Small World 2",purchase,1.0,0 -44545959,"Small World 2",play,2.8,0 -44545959,"Brothers - A Tale of Two Sons",purchase,1.0,0 -44545959,"Brothers - A Tale of Two Sons",play,2.5,0 -44545959,"Crusader Kings II",purchase,1.0,0 -44545959,"Crusader Kings II",play,2.1,0 -44545959,"Deponia The Complete Journey",purchase,1.0,0 -44545959,"Deponia The Complete Journey",play,1.7,0 -44545959,"Darkest Dungeon",purchase,1.0,0 -44545959,"Darkest Dungeon",play,1.5,0 -44545959,"Space Ace",purchase,1.0,0 -44545959,"Space Ace",play,1.3,0 -44545959,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -44545959,"Plants vs. Zombies Game of the Year",play,1.0,0 -44545959,"Valkyria Chronicles",purchase,1.0,0 -44545959,"Valkyria Chronicles",play,0.8,0 -44545959,"DC Universe Online",purchase,1.0,0 -44545959,"DC Universe Online",play,0.8,0 -44545959,"Invisible, Inc.",purchase,1.0,0 -44545959,"Invisible, Inc.",play,0.7,0 -44545959,"Magic Duels",purchase,1.0,0 -44545959,"Magic Duels",play,0.6,0 -44545959,"Team Fortress 2",purchase,1.0,0 -44545959,"Team Fortress 2",play,0.4,0 -44545959,"Dragon Age Origins Character Creator",purchase,1.0,0 -44545959,"Dragon Age Origins Character Creator",play,0.2,0 -44545959,"FINAL FANTASY VII",purchase,1.0,0 -44545959,"FINAL FANTASY VII",play,0.2,0 -44545959,"Batman Arkham City GOTY",purchase,1.0,0 -44545959,"Monkey Island 2 Special Edition",purchase,1.0,0 -44545959,"Batman Arkham City",purchase,1.0,0 -44545959,"Batman Arkham Origins",purchase,1.0,0 -44545959,"BioShock",purchase,1.0,0 -44545959,"BioShock 2",purchase,1.0,0 -44545959,"BioShock Infinite",purchase,1.0,0 -44545959,"Dawn of Discovery",purchase,1.0,0 -44545959,"Dawn of Discovery - Demo",purchase,1.0,0 -44545959,"Dishonored",purchase,1.0,0 -44545959,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -44545959,"Dragon's Lair",purchase,1.0,0 -44545959,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -44545959,"Elite Dangerous",purchase,1.0,0 -44545959,"Fallout New Vegas Dead Money",purchase,1.0,0 -44545959,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -44545959,"FORCED",purchase,1.0,0 -44545959,"Half-Life",purchase,1.0,0 -44545959,"Half-Life 2 Deathmatch",purchase,1.0,0 -44545959,"Half-Life 2 Episode One",purchase,1.0,0 -44545959,"Half-Life 2 Episode Two",purchase,1.0,0 -44545959,"Half-Life 2 Lost Coast",purchase,1.0,0 -44545959,"Half-Life Blue Shift",purchase,1.0,0 -44545959,"Half-Life Opposing Force",purchase,1.0,0 -44545959,"Half-Life Source",purchase,1.0,0 -44545959,"Half-Life Deathmatch Source",purchase,1.0,0 -44545959,"Lara Croft and the Guardian of Light",purchase,1.0,0 -44545959,"Magicka",purchase,1.0,0 -44545959,"Magicka Final Frontier",purchase,1.0,0 -44545959,"Magicka Frozen Lake",purchase,1.0,0 -44545959,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -44545959,"Magicka Nippon",purchase,1.0,0 -44545959,"Magicka Party Robes",purchase,1.0,0 -44545959,"Magicka The Watchtower",purchase,1.0,0 -44545959,"Magicka Vietnam",purchase,1.0,0 -44545959,"Magicka Wizard's Survival Kit",purchase,1.0,0 -44545959,"Overlord II",purchase,1.0,0 -44545959,"Sid Meier's Civilization Beyond Earth - Rising Tide",purchase,1.0,0 -44545959,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -44545959,"Small World 2 - Be Not Afraid...",purchase,1.0,0 -44545959,"Small World 2 - Cursed!",purchase,1.0,0 -44545959,"Small World 2 - Grand Dames",purchase,1.0,0 -44545959,"Team Fortress Classic",purchase,1.0,0 -44545959,"The Vanishing of Ethan Carter Redux",purchase,1.0,0 -44545959,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -44545959,"The Witcher 3 Wild Hunt",purchase,1.0,0 -44545959,"The Witcher Enhanced Edition",purchase,1.0,0 -44545959,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -44545959,"Tomb Raider Anniversary",purchase,1.0,0 -44545959,"Tomb Raider Chronicles",purchase,1.0,0 -44545959,"Tomb Raider Legend",purchase,1.0,0 -44545959,"Tomb Raider The Last Revelation",purchase,1.0,0 -44545959,"Tomb Raider Underworld",purchase,1.0,0 -44545959,"Tomb Raider I",purchase,1.0,0 -44545959,"Tomb Raider II",purchase,1.0,0 -44545959,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -44545959,"Trine",purchase,1.0,0 -44545959,"Trine 3 The Artifacts of Power",purchase,1.0,0 -44545959,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -44545959,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -44545959,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -44545959,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -44545959,"Vindictus",purchase,1.0,0 -44545959,"Watch_Dogs",purchase,1.0,0 -109165920,"Dota 2",purchase,1.0,0 -109165920,"Dota 2",play,370.0,0 -109165920,"Torchlight II",purchase,1.0,0 -109165920,"Torchlight II",play,31.0,0 -109165920,"Orcs Must Die! 2",purchase,1.0,0 -109165920,"Orcs Must Die! 2",play,18.6,0 -109165920,"Anno 1404",purchase,1.0,0 -109165920,"Anno 1404",play,5.3,0 -184648711,"Dota 2",purchase,1.0,0 -184648711,"Dota 2",play,2.5,0 -35432082,"Half-Life 2 Deathmatch",purchase,1.0,0 -35432082,"Half-Life 2 Lost Coast",purchase,1.0,0 -156763142,"Dota 2",purchase,1.0,0 -156763142,"Dota 2",play,5.9,0 -191603262,"Dota 2",purchase,1.0,0 -191603262,"Dota 2",play,3.2,0 -203614583,"Defy Gravity",purchase,1.0,0 -161671285,"Dota 2",purchase,1.0,0 -161671285,"Dota 2",play,1.3,0 -303129589,"Age of Empires II HD Edition",purchase,1.0,0 -303129589,"Age of Empires II HD Edition",play,1.1,0 -303129589,"Age of Mythology Extended Edition",purchase,1.0,0 -303129589,"Age of Mythology Extended Edition",play,0.9,0 -303129589,"Star Wars Empire at War Gold",purchase,1.0,0 -303129589,"Star Wars Empire at War Gold",play,0.3,0 -303129589,"Rise of Nations Extended Edition",purchase,1.0,0 -303129589,"Rise of Nations Extended Edition",play,0.3,0 -303129589,"Star Wars Starfighter",purchase,1.0,0 -303129589,"Star Wars Starfighter",play,0.2,0 -303129589,"Star Wars - Battlefront II",purchase,1.0,0 -303129589,"Star Wars - Battlefront II",play,0.1,0 -303129589,"Age of Empires II HD The Forgotten",purchase,1.0,0 -303129589,"Age of Empires III Complete Collection",purchase,1.0,0 -303129589,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -303129589,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -303129589,"Star Wars Dark Forces",purchase,1.0,0 -303129589,"Star Wars Knights of the Old Republic",purchase,1.0,0 -303129589,"Star Wars The Force Unleashed II",purchase,1.0,0 -303129589,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -303129589,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -303129589,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -303129589,"Star Wars Republic Commando",purchase,1.0,0 -303129589,"Star Wars The Clone Wars Republic Heroes",purchase,1.0,0 -303129589,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -141513178,"Left 4 Dead 2",purchase,1.0,0 -141513178,"Left 4 Dead 2",play,5.0,0 -220012683,"The Elder Scrolls V Skyrim",purchase,1.0,0 -220012683,"The Elder Scrolls V Skyrim",play,710.0,0 -220012683,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -220012683,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -220012683,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -220012683,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -273402148,"Marvel Heroes 2015",purchase,1.0,0 -273402148,"Marvel Heroes 2015",play,5.9,0 -74859759,"Zombie Panic Source",purchase,1.0,0 -74859759,"Zombie Panic Source",play,0.1,0 -99285372,"Team Fortress 2",purchase,1.0,0 -99285372,"Team Fortress 2",play,0.5,0 -51688538,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -51688538,"The Secret of Monkey Island Special Edition",play,8.6,0 -100607499,"Total War SHOGUN 2",purchase,1.0,0 -100607499,"Total War SHOGUN 2",play,2.4,0 -100607499,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -118189718,"Garry's Mod",purchase,1.0,0 -118189718,"Garry's Mod",play,347.0,0 -118189718,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -118189718,"Call of Duty Modern Warfare 3 - Multiplayer",play,129.0,0 -118189718,"Call of Duty Modern Warfare 3",purchase,1.0,0 -118189718,"Call of Duty Modern Warfare 3",play,23.0,0 -118189718,"Echo of Soul",purchase,1.0,0 -118189718,"Echo of Soul",play,23.0,0 -118189718,"PAYDAY 2",purchase,1.0,0 -118189718,"PAYDAY 2",play,15.0,0 -118189718,"Unturned",purchase,1.0,0 -118189718,"Unturned",play,6.3,0 -118189718,"Keep Talking and Nobody Explodes",purchase,1.0,0 -118189718,"Keep Talking and Nobody Explodes",play,4.0,0 -118189718,"Team Fortress 2",purchase,1.0,0 -118189718,"Team Fortress 2",play,1.2,0 -118189718,"Dead Realm",purchase,1.0,0 -118189718,"Dead Realm",play,1.1,0 -118189718,"DC Universe Online",purchase,1.0,0 -118189718,"DC Universe Online",play,0.9,0 -118189718,"Aura Kingdom",purchase,1.0,0 -203650036,"Counter-Strike Source",purchase,1.0,0 -203650036,"Counter-Strike Source",play,116.0,0 -203650036,"Nightbanes",purchase,1.0,0 -203650036,"Nightbanes",play,64.0,0 -203650036,"Dota 2",purchase,1.0,0 -203650036,"Dota 2",play,5.1,0 -203650036,"Magic Duels",purchase,1.0,0 -203650036,"Magic Duels",play,0.7,0 -203650036,"Might & Magic Heroes Online",purchase,1.0,0 -203650036,"Sins of a Dark Age",purchase,1.0,0 -203650036,"SMITE",purchase,1.0,0 -99906508,"Empire Total War",purchase,1.0,0 -99906508,"Empire Total War",play,22.0,0 -99906508,"Total War ROME II - Emperor Edition",purchase,1.0,0 -99906508,"Total War ROME II - Emperor Edition",play,1.7,0 -234841918,"GameGuru",purchase,1.0,0 -140282974,"Dota 2",purchase,1.0,0 -140282974,"Dota 2",play,0.2,0 -36083584,"Counter-Strike Source",purchase,1.0,0 -36083584,"Day of Defeat Source",purchase,1.0,0 -36083584,"Half-Life 2 Deathmatch",purchase,1.0,0 -36083584,"Half-Life 2 Lost Coast",purchase,1.0,0 -141288012,"Dota 2",purchase,1.0,0 -141288012,"Dota 2",play,0.9,0 -199288821,"Dota 2",purchase,1.0,0 -199288821,"Dota 2",play,182.0,0 -199288821,"Unturned",purchase,1.0,0 -127117386,"Age of Empires II HD Edition",purchase,1.0,0 -127117386,"Age of Empires II HD Edition",play,31.0,0 -127117386,"Dota 2",purchase,1.0,0 -127117386,"Dota 2",play,4.1,0 -127117386,"Ticket to Ride",purchase,1.0,0 -127117386,"Ticket to Ride",play,3.9,0 -127117386,"Cities Skylines",purchase,1.0,0 -127117386,"Cities Skylines",play,2.0,0 -127117386,"Age of Empires II HD The Forgotten",purchase,1.0,0 -127117386,"Ticket to Ride - Europe",purchase,1.0,0 -127117386,"Ticket to Ride - Legendary Asia",purchase,1.0,0 -127117386,"Ticket to Ride - Switzerland",purchase,1.0,0 -127117386,"Ticket to Ride - USA 1910",purchase,1.0,0 -239606395,"DiggerOnline",purchase,1.0,0 -239606395,"DiggerOnline",play,0.1,0 -259436224,"Dota 2",purchase,1.0,0 -259436224,"Dota 2",play,0.2,0 -236779629,"Dota 2",purchase,1.0,0 -236779629,"Dota 2",play,14.7,0 -117552823,"PROTOTYPE 2",purchase,1.0,0 -117552823,"PROTOTYPE 2",play,95.0,0 -117552823,"Mafia II",purchase,1.0,0 -117552823,"Mafia II",play,32.0,0 -117552823,"Age of Chivalry",purchase,1.0,0 -117552823,"Age of Chivalry",play,4.4,0 -117552823,"Prototype 2 RADNET Access Pack",purchase,1.0,0 -155119411,"Fieldrunners 2",purchase,1.0,0 -155119411,"Fieldrunners 2",play,367.0,0 -193025628,"Star Trek Online",purchase,1.0,0 -193025628,"Star Trek Online",play,2.9,0 -193025628,"Dizzel",purchase,1.0,0 -239919157,"Red Crucible Firestorm",purchase,1.0,0 -239919157,"Red Crucible Firestorm",play,4.9,0 -239919157,"Brick-Force",purchase,1.0,0 -239919157,"Brick-Force",play,2.3,0 -239919157,"Robocraft",purchase,1.0,0 -239919157,"Robocraft",play,1.1,0 -239919157,"Transformice",purchase,1.0,0 -239919157,"Clicker Heroes",purchase,1.0,0 -239919157,"Happy Wars",purchase,1.0,0 -239919157,"PlanetSide 2",purchase,1.0,0 -239919157,"Quintet",purchase,1.0,0 -239919157,"Tribes Ascend",purchase,1.0,0 -176854876,"On the Rain-Slick Precipice of Darkness, Episode One",purchase,1.0,0 -176854876,"On the Rain-Slick Precipice of Darkness, Episode One",play,2.5,0 -176854876,"On the Rain-Slick Precipice of Darkness, Episode Two",purchase,1.0,0 -79316774,"Magicka",purchase,1.0,0 -79316774,"Magicka",play,4.1,0 -79316774,"Garry's Mod",purchase,1.0,0 -79316774,"Garry's Mod",play,1.8,0 -79316774,"Company of Heroes",purchase,1.0,0 -79316774,"Company of Heroes (New Steam Version)",purchase,1.0,0 -79316774,"Counter-Strike Source",purchase,1.0,0 -79316774,"Magicka Final Frontier",purchase,1.0,0 -79316774,"Magicka Frozen Lake",purchase,1.0,0 -79316774,"Magicka Nippon",purchase,1.0,0 -79316774,"Magicka Party Robes",purchase,1.0,0 -79316774,"Magicka The Watchtower",purchase,1.0,0 -79316774,"Magicka Vietnam",purchase,1.0,0 -79316774,"Magicka Wizard's Survival Kit",purchase,1.0,0 -308305300,"MechWarrior Online",purchase,1.0,0 -308305300,"MechWarrior Online",play,1.1,0 -308305300,"Tactical Intervention",purchase,1.0,0 -308305300,"Tactical Intervention",play,1.0,0 -308305300,"The Lord of the Rings Online",purchase,1.0,0 -102799966,"Dota 2",purchase,1.0,0 -102799966,"Dota 2",play,0.6,0 -105243827,"Total War SHOGUN 2",purchase,1.0,0 -105243827,"Total War SHOGUN 2",play,349.0,0 -105243827,"Total War ROME II - Emperor Edition",purchase,1.0,0 -105243827,"Total War ROME II - Emperor Edition",play,219.0,0 -105243827,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -105243827,"Rising Storm/Red Orchestra 2 Multiplayer",play,200.0,0 -105243827,"Arma 3",purchase,1.0,0 -105243827,"Arma 3",play,130.0,0 -105243827,"Total War ATTILA",purchase,1.0,0 -105243827,"Total War ATTILA",play,120.0,0 -105243827,"Fallout New Vegas",purchase,1.0,0 -105243827,"Fallout New Vegas",play,106.0,0 -105243827,"The Elder Scrolls V Skyrim",purchase,1.0,0 -105243827,"The Elder Scrolls V Skyrim",play,79.0,0 -105243827,"The Forest",purchase,1.0,0 -105243827,"The Forest",play,72.0,0 -105243827,"PAYDAY 2",purchase,1.0,0 -105243827,"PAYDAY 2",play,68.0,0 -105243827,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -105243827,"STAR WARS Knights of the Old Republic II The Sith Lords",play,50.0,0 -105243827,"Tom Clancy's Rainbow Six Siege",purchase,1.0,0 -105243827,"Tom Clancy's Rainbow Six Siege",play,42.0,0 -105243827,"Infestation Survivor Stories",purchase,1.0,0 -105243827,"Infestation Survivor Stories",play,30.0,0 -105243827,"The Witcher 3 Wild Hunt",purchase,1.0,0 -105243827,"The Witcher 3 Wild Hunt",play,29.0,0 -105243827,"Garry's Mod",purchase,1.0,0 -105243827,"Garry's Mod",play,21.0,0 -105243827,"StarMade",purchase,1.0,0 -105243827,"StarMade",play,20.0,0 -105243827,"Company of Heroes 2",purchase,1.0,0 -105243827,"Company of Heroes 2",play,17.9,0 -105243827,"Far Cry 3",purchase,1.0,0 -105243827,"Far Cry 3",play,16.4,0 -105243827,"DayZ",purchase,1.0,0 -105243827,"DayZ",play,13.9,0 -105243827,"Space Engineers",purchase,1.0,0 -105243827,"Space Engineers",play,13.1,0 -105243827,"Chivalry Medieval Warfare",purchase,1.0,0 -105243827,"Chivalry Medieval Warfare",play,12.5,0 -105243827,"Heroes & Generals",purchase,1.0,0 -105243827,"Heroes & Generals",play,10.5,0 -105243827,"State of Decay",purchase,1.0,0 -105243827,"State of Decay",play,9.5,0 -105243827,"Age of Empires II HD Edition",purchase,1.0,0 -105243827,"Age of Empires II HD Edition",play,8.0,0 -105243827,"Napoleon Total War",purchase,1.0,0 -105243827,"Napoleon Total War",play,7.3,0 -105243827,"Middle-earth Shadow of Mordor",purchase,1.0,0 -105243827,"Middle-earth Shadow of Mordor",play,6.8,0 -105243827,"ARK Survival Evolved",purchase,1.0,0 -105243827,"ARK Survival Evolved",play,4.6,0 -105243827,"Counter-Strike Global Offensive",purchase,1.0,0 -105243827,"Counter-Strike Global Offensive",play,4.5,0 -105243827,"Aliens Colonial Marines",purchase,1.0,0 -105243827,"Aliens Colonial Marines",play,4.2,0 -105243827,"War Thunder",purchase,1.0,0 -105243827,"War Thunder",play,3.8,0 -105243827,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -105243827,"Warhammer 40,000 Dawn of War II Retribution",play,3.5,0 -105243827,"Star Wars Knights of the Old Republic",purchase,1.0,0 -105243827,"Star Wars Knights of the Old Republic",play,3.4,0 -105243827,"Team Fortress 2",purchase,1.0,0 -105243827,"Team Fortress 2",play,3.1,0 -105243827,"Natural Selection 2",purchase,1.0,0 -105243827,"Natural Selection 2",play,2.8,0 -105243827,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -105243827,"Warhammer 40,000 Dawn of War II",play,2.4,0 -105243827,"Ryse Son of Rome",purchase,1.0,0 -105243827,"Ryse Son of Rome",play,1.9,0 -105243827,"Supreme Commander 2",purchase,1.0,0 -105243827,"Supreme Commander 2",play,1.8,0 -105243827,"Hitman Absolution",purchase,1.0,0 -105243827,"Hitman Absolution",play,1.8,0 -105243827,"Sniper Elite V2",purchase,1.0,0 -105243827,"Sniper Elite V2",play,1.8,0 -105243827,"Rust",purchase,1.0,0 -105243827,"Rust",play,1.6,0 -105243827,"Age of Empires III Complete Collection",purchase,1.0,0 -105243827,"Age of Empires III Complete Collection",play,1.2,0 -105243827,"Company of Heroes Tales of Valor",purchase,1.0,0 -105243827,"Company of Heroes Tales of Valor",play,1.2,0 -105243827,"H1Z1",purchase,1.0,0 -105243827,"H1Z1",play,1.1,0 -105243827,"Verdun",purchase,1.0,0 -105243827,"Verdun",play,1.1,0 -105243827,"RAGE",purchase,1.0,0 -105243827,"RAGE",play,1.0,0 -105243827,"King Arthur II - The Role-playing Wargame",purchase,1.0,0 -105243827,"King Arthur II - The Role-playing Wargame",play,0.9,0 -105243827,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -105243827,"Red Orchestra Ostfront 41-45",play,0.8,0 -105243827,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -105243827,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.7,0 -105243827,"Insurgency",purchase,1.0,0 -105243827,"Insurgency",play,0.5,0 -105243827,"Two Worlds II",purchase,1.0,0 -105243827,"Two Worlds II",play,0.3,0 -105243827,"Kingdom Wars",purchase,1.0,0 -105243827,"Kingdom Wars",play,0.3,0 -105243827,"Interstellar Marines",purchase,1.0,0 -105243827,"Interstellar Marines",play,0.1,0 -105243827,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -105243827,"Left 4 Dead 2",purchase,1.0,0 -105243827,"Company of Heroes (New Steam Version)",purchase,1.0,0 -105243827,"Arma 3 Helicopters",purchase,1.0,0 -105243827,"Arma 3 Karts",purchase,1.0,0 -105243827,"Arma 3 Marksmen",purchase,1.0,0 -105243827,"Arma 3 Zeus",purchase,1.0,0 -105243827,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -105243827,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -105243827,"Counter-Strike Source",purchase,1.0,0 -105243827,"Darkest Hour Europe '44-'45",purchase,1.0,0 -105243827,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -105243827,"Fallout New Vegas Dead Money",purchase,1.0,0 -105243827,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -105243827,"H1Z1 Test Server",purchase,1.0,0 -105243827,"Hitman Sniper Challenge",purchase,1.0,0 -105243827,"Mare Nostrum",purchase,1.0,0 -105243827,"Patch testing for Chivalry",purchase,1.0,0 -105243827,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -105243827,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -105243827,"State of Decay - Breakdown",purchase,1.0,0 -105243827,"State of Decay - Lifeline",purchase,1.0,0 -105243827,"Supreme Commander 2 - Infinite War Battle Pack One",purchase,1.0,0 -105243827,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -105243827,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -105243827,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -105243827,"Tom Clancy's Rainbow Six Vegas",purchase,1.0,0 -105243827,"Total War ATTILA - Age of Charlemagne Campaign Pack",purchase,1.0,0 -105243827,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -105243827,"Warface",purchase,1.0,0 -190598972,"Dota 2",purchase,1.0,0 -190598972,"Dota 2",play,0.5,0 -266132196,"War of the Roses",purchase,1.0,0 -266132196,"War of the Roses",play,58.0,0 -266132196,"War of the Roses Kingmaker",purchase,1.0,0 -266132196,"War of the Roses Balance Beta",purchase,1.0,0 -151129695,"Arma 3",purchase,1.0,0 -151129695,"Arma 3",play,0.2,0 -151129695,"Arma 3 Zeus",purchase,1.0,0 -94670160,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -94670160,"Call of Duty Modern Warfare 3 - Multiplayer",play,689.0,0 -94670160,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -94670160,"Call of Duty Black Ops II - Multiplayer",play,357.0,0 -94670160,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -94670160,"Call of Duty Ghosts - Multiplayer",play,97.0,0 -94670160,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -94670160,"Call of Duty Black Ops II - Zombies",play,44.0,0 -94670160,"Call of Duty Modern Warfare 3",purchase,1.0,0 -94670160,"Call of Duty Modern Warfare 3",play,30.0,0 -94670160,"Grand Theft Auto San Andreas",purchase,1.0,0 -94670160,"Grand Theft Auto San Andreas",play,17.0,0 -94670160,"Call of Duty Black Ops II",purchase,1.0,0 -94670160,"Call of Duty Black Ops II",play,5.1,0 -94670160,"Surgeon Simulator",purchase,1.0,0 -94670160,"Surgeon Simulator",play,1.6,0 -94670160,"Team Fortress 2",purchase,1.0,0 -94670160,"Team Fortress 2",play,1.6,0 -94670160,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -94670160,"Grand Theft Auto Episodes from Liberty City",play,1.0,0 -94670160,"Grand Theft Auto IV",purchase,1.0,0 -94670160,"Grand Theft Auto IV",play,0.2,0 -94670160,"Call of Duty Ghosts",purchase,1.0,0 -94670160,"Counter-Strike Nexon Zombies",purchase,1.0,0 -94670160,"Grand Theft Auto San Andreas",purchase,1.0,0 -254966557,"Unturned",purchase,1.0,0 -254966557,"Unturned",play,0.9,0 -254966557,"Heroes & Generals",purchase,1.0,0 -208189013,"Dota 2",purchase,1.0,0 -208189013,"Dota 2",play,1.3,0 -16710264,"Garry's Mod",purchase,1.0,0 -16710264,"Garry's Mod",play,26.0,0 -16710264,"Counter-Strike Source",purchase,1.0,0 -16710264,"Counter-Strike Source",play,20.0,0 -16710264,"Half-Life 2",purchase,1.0,0 -16710264,"Half-Life 2",play,6.1,0 -16710264,"theHunter",purchase,1.0,0 -16710264,"theHunter",play,2.3,0 -16710264,"Half-Life 2 Deathmatch",purchase,1.0,0 -16710264,"Half-Life 2 Deathmatch",play,1.1,0 -16710264,"Half-Life 2 Lost Coast",purchase,1.0,0 -242493288,"Dota 2",purchase,1.0,0 -242493288,"Dota 2",play,2.5,0 -180208550,"Total War ROME II - Emperor Edition",purchase,1.0,0 -180208550,"Total War ROME II - Emperor Edition",play,10.7,0 -268845100,"Grand Theft Auto V",purchase,1.0,0 -268845100,"Grand Theft Auto V",play,34.0,0 -80859196,"Total War SHOGUN 2",purchase,1.0,0 -80859196,"Total War SHOGUN 2",play,11.1,0 -80859196,"Napoleon Total War",purchase,1.0,0 -80859196,"Napoleon Total War",play,9.4,0 -80859196,"Team Fortress 2",purchase,1.0,0 -80859196,"Team Fortress 2",play,0.7,0 -118971362,"Warframe",purchase,1.0,0 -118971362,"Warframe",play,485.0,0 -118971362,"Borderlands 2",purchase,1.0,0 -118971362,"Borderlands 2",play,81.0,0 -118971362,"Saints Row IV",purchase,1.0,0 -118971362,"Saints Row IV",play,42.0,0 -118971362,"Rome Total War",purchase,1.0,0 -118971362,"Rome Total War",play,11.7,0 -118971362,"Star Trek Online",purchase,1.0,0 -118971362,"Star Trek Online",play,9.4,0 -118971362,"Call of Duty Black Ops",purchase,1.0,0 -118971362,"Call of Duty Black Ops",play,4.7,0 -118971362,"Portal",purchase,1.0,0 -118971362,"Portal",play,2.7,0 -118971362,"Grand Theft Auto San Andreas",purchase,1.0,0 -118971362,"Grand Theft Auto San Andreas",play,1.1,0 -118971362,"Half-Life",purchase,1.0,0 -118971362,"Half-Life",play,0.6,0 -118971362,"Deus Ex Game of the Year Edition",purchase,1.0,0 -118971362,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -118971362,"Counter-Strike",purchase,1.0,0 -118971362,"Banished",purchase,1.0,0 -118971362,"Counter-Strike Condition Zero",purchase,1.0,0 -118971362,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -118971362,"Counter-Strike Global Offensive",purchase,1.0,0 -118971362,"Counter-Strike Source",purchase,1.0,0 -118971362,"Day of Defeat",purchase,1.0,0 -118971362,"Day of Defeat Source",purchase,1.0,0 -118971362,"Deathmatch Classic",purchase,1.0,0 -118971362,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -118971362,"Deus Ex Invisible War",purchase,1.0,0 -118971362,"Deus Ex The Fall",purchase,1.0,0 -118971362,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -118971362,"Grand Theft Auto San Andreas",purchase,1.0,0 -118971362,"Grand Theft Auto Vice City",purchase,1.0,0 -118971362,"Grand Theft Auto Vice City",purchase,1.0,0 -118971362,"Grand Theft Auto III",purchase,1.0,0 -118971362,"Grand Theft Auto III",purchase,1.0,0 -118971362,"Grand Theft Auto IV",purchase,1.0,0 -118971362,"Half-Life 2",purchase,1.0,0 -118971362,"Half-Life 2 Deathmatch",purchase,1.0,0 -118971362,"Half-Life 2 Episode One",purchase,1.0,0 -118971362,"Half-Life 2 Episode Two",purchase,1.0,0 -118971362,"Half-Life 2 Lost Coast",purchase,1.0,0 -118971362,"Half-Life Blue Shift",purchase,1.0,0 -118971362,"Half-Life Opposing Force",purchase,1.0,0 -118971362,"Half-Life Source",purchase,1.0,0 -118971362,"Half-Life Deathmatch Source",purchase,1.0,0 -118971362,"Hitman 2 Silent Assassin",purchase,1.0,0 -118971362,"Hitman Absolution",purchase,1.0,0 -118971362,"Hitman Blood Money",purchase,1.0,0 -118971362,"Hitman Codename 47",purchase,1.0,0 -118971362,"Hitman Contracts",purchase,1.0,0 -118971362,"Hitman Sniper Challenge",purchase,1.0,0 -118971362,"Left 4 Dead",purchase,1.0,0 -118971362,"Left 4 Dead 2",purchase,1.0,0 -118971362,"Orcs Must Die!",purchase,1.0,0 -118971362,"Portal 2",purchase,1.0,0 -118971362,"Ricochet",purchase,1.0,0 -118971362,"Saints Row 2",purchase,1.0,0 -118971362,"Saints Row Gat out of Hell",purchase,1.0,0 -118971362,"Saints Row The Third",purchase,1.0,0 -118971362,"Shadow Warrior",purchase,1.0,0 -118971362,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -118971362,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -118971362,"Star Wars Dark Forces",purchase,1.0,0 -118971362,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -118971362,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -118971362,"Team Fortress Classic",purchase,1.0,0 -118971362,"The Elder Scrolls V Skyrim",purchase,1.0,0 -118971362,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -118971362,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -118971362,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -118971362,"Thief",purchase,1.0,0 -118971362,"Thief - Ghost",purchase,1.0,0 -118971362,"Thief - Opportunist",purchase,1.0,0 -118971362,"Thief - Predator",purchase,1.0,0 -118971362,"Thief - The Bank Heist",purchase,1.0,0 -118971362,"Thief 2",purchase,1.0,0 -118971362,"Thief Deadly Shadows",purchase,1.0,0 -118971362,"Thief Gold",purchase,1.0,0 -118971362,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -118971362,"Wolfenstein The New Order",purchase,1.0,0 -53231205,"Half-Life 2 Deathmatch",purchase,1.0,0 -53231205,"Half-Life 2 Deathmatch",play,14.8,0 -53231205,"Half-Life 2 Lost Coast",purchase,1.0,0 -297262910,"Dota 2",purchase,1.0,0 -297262910,"Dota 2",play,2.3,0 -163681731,"Team Fortress 2",purchase,1.0,0 -163681731,"Team Fortress 2",play,1.5,0 -258531019,"Warframe",purchase,1.0,0 -258531019,"Warframe",play,15.5,0 -258531019,"The Elder Scrolls V Skyrim",purchase,1.0,0 -258531019,"The Elder Scrolls V Skyrim",play,7.8,0 -258531019,"Robocraft",purchase,1.0,0 -258531019,"Robocraft",play,7.7,0 -258531019,"Team Fortress 2",purchase,1.0,0 -258531019,"Team Fortress 2",play,3.4,0 -258531019,"War Thunder",purchase,1.0,0 -258531019,"War Thunder",play,1.5,0 -258531019,"Portal 2",purchase,1.0,0 -258531019,"Portal 2",play,1.3,0 -258531019,"Realm of the Mad God",purchase,1.0,0 -258531019,"Realm of the Mad God",play,0.9,0 -258531019,"War Inc. Battlezone",purchase,1.0,0 -258531019,"War Inc. Battlezone",play,0.7,0 -258531019,"Vindictus",purchase,1.0,0 -258531019,"Vindictus",play,0.5,0 -258531019,"Metaverse Construction Kit",purchase,1.0,0 -258531019,"Metaverse Construction Kit",play,0.2,0 -258531019,"Magic Duels",purchase,1.0,0 -258531019,"Magic Duels",play,0.2,0 -258531019,"Fishing Planet",purchase,1.0,0 -258531019,"Fishing Planet",play,0.2,0 -258531019,"Clicker Heroes",purchase,1.0,0 -258531019,"Clicker Heroes",play,0.1,0 -258531019,"Unturned",purchase,1.0,0 -258531019,"AdVenture Capitalist",purchase,1.0,0 -258531019,"Path of Exile",purchase,1.0,0 -258531019,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -258531019,"Depression Quest",purchase,1.0,0 -258531019,"Pool Nation FX",purchase,1.0,0 -258531019,"Super Crate Box",purchase,1.0,0 -258531019,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -258531019,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -258531019,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -185929621,"Dota 2",purchase,1.0,0 -185929621,"Dota 2",play,454.0,0 -48334326,"Half-Life 2",purchase,1.0,0 -48334326,"Half-Life 2",play,28.0,0 -48334326,"Half-Life 2 Episode Two",purchase,1.0,0 -48334326,"Half-Life 2 Episode Two",play,11.8,0 -48334326,"Portal",purchase,1.0,0 -48334326,"Portal",play,10.3,0 -48334326,"Half-Life 2 Episode One",purchase,1.0,0 -48334326,"Half-Life 2 Episode One",play,7.7,0 -48334326,"Team Fortress 2",purchase,1.0,0 -48334326,"Team Fortress 2",play,5.6,0 -48334326,"Half-Life 2 Lost Coast",purchase,1.0,0 -48334326,"Half-Life 2 Lost Coast",play,1.2,0 -162258000,"Dota 2",purchase,1.0,0 -162258000,"Dota 2",play,0.8,0 -122117051,"Far Cry 3",purchase,1.0,0 -122117051,"Far Cry 3",play,27.0,0 -122117051,"Far Cry 4",purchase,1.0,0 -122117051,"Far Cry 4",play,3.2,0 -122117051,"BioShock Infinite",purchase,1.0,0 -122117051,"BioShock Infinite",play,0.9,0 -173102243,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -173102243,"Tom Clancy's Ghost Recon Phantoms - EU",play,162.0,0 -173102243,"Robocraft",purchase,1.0,0 -173102243,"Robocraft",play,90.0,0 -173102243,"Counter-Strike Source",purchase,1.0,0 -173102243,"Counter-Strike Source",play,6.1,0 -173102243,"Infestation Survivor Stories",purchase,1.0,0 -173102243,"Infestation Survivor Stories",play,3.9,0 -39935274,"Counter-Strike Source",purchase,1.0,0 -39935274,"Counter-Strike Source",play,0.4,0 -205983773,"Counter-Strike Global Offensive",purchase,1.0,0 -205983773,"Counter-Strike Global Offensive",play,101.0,0 -205983773,"BLOCKADE 3D",purchase,1.0,0 -205983773,"BLOCKADE 3D",play,0.2,0 -133217805,"Football Manager 2013",purchase,1.0,0 -133217805,"Football Manager 2013",play,61.0,0 -118437205,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -118437205,"Call of Duty Black Ops II - Multiplayer",play,140.0,0 -118437205,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -118437205,"Call of Duty Black Ops II - Zombies",play,4.9,0 -118437205,"Call of Duty Black Ops II",purchase,1.0,0 -287336000,"Dota 2",purchase,1.0,0 -287336000,"Dota 2",play,13.5,0 -110412872,"Portal 2",purchase,1.0,0 -110412872,"Portal 2",play,7.8,0 -110412872,"Gotham City Impostors Free To Play",purchase,1.0,0 -110412872,"Gotham City Impostors Free To Play",play,7.4,0 -110412872,"Portal",purchase,1.0,0 -110412872,"Portal",play,4.7,0 -110412872,"Ragnarok Online 2",purchase,1.0,0 -110412872,"Ragnarok Online 2",play,2.8,0 -110412872,"Infestation Survivor Stories",purchase,1.0,0 -110412872,"Infestation Survivor Stories",play,2.1,0 -110412872,"Arctic Combat",purchase,1.0,0 -163815861,"Dota 2",purchase,1.0,0 -163815861,"Dota 2",play,0.2,0 -194969717,"Dota 2",purchase,1.0,0 -194969717,"Dota 2",play,1.0,0 -12312878,"Counter-Strike Source",purchase,1.0,0 -12312878,"Counter-Strike Source",play,0.4,0 -12312878,"Half-Life 2",purchase,1.0,0 -12312878,"Half-Life 2 Deathmatch",purchase,1.0,0 -12312878,"Half-Life 2 Lost Coast",purchase,1.0,0 -177054406,"Grand Theft Auto San Andreas",purchase,1.0,0 -177054406,"Grand Theft Auto San Andreas",play,5.2,0 -177054406,"Grand Theft Auto San Andreas",purchase,1.0,0 -234621077,"Counter-Strike Global Offensive",purchase,1.0,0 -234621077,"Counter-Strike Global Offensive",play,529.0,0 -234621077,"Team Fortress 2",purchase,1.0,0 -234621077,"Team Fortress 2",play,0.5,0 -295931804,"Unturned",purchase,1.0,0 -295931804,"Unturned",play,38.0,0 -166841848,"Dota 2",purchase,1.0,0 -166841848,"Dota 2",play,0.2,0 -75240572,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -75240572,"Call of Duty Black Ops - Multiplayer",play,272.0,0 -75240572,"Call of Duty Black Ops",purchase,1.0,0 -75240572,"Call of Duty Black Ops",play,128.0,0 -75240572,"Fallout New Vegas",purchase,1.0,0 -75240572,"Fallout New Vegas",play,71.0,0 -75240572,"Age of Empires II HD Edition",purchase,1.0,0 -75240572,"Age of Empires II HD Edition",play,29.0,0 -75240572,"Counter-Strike Source",purchase,1.0,0 -75240572,"Counter-Strike Source",play,25.0,0 -75240572,"Portal 2",purchase,1.0,0 -75240572,"Portal 2",play,18.3,0 -75240572,"Portal",purchase,1.0,0 -75240572,"Portal",play,18.3,0 -75240572,"Dota 2",purchase,1.0,0 -75240572,"Dota 2",play,14.8,0 -75240572,"Trine 2",purchase,1.0,0 -75240572,"Trine 2",play,6.5,0 -75240572,"Orcs Must Die! 2",purchase,1.0,0 -75240572,"Orcs Must Die! 2",play,5.1,0 -75240572,"Left 4 Dead 2",purchase,1.0,0 -75240572,"Left 4 Dead 2",play,2.1,0 -75240572,"Team Fortress 2",purchase,1.0,0 -75240572,"Team Fortress 2",play,1.4,0 -75240572,"GRID Autosport",purchase,1.0,0 -75240572,"GRID Autosport",play,1.3,0 -66508737,"Trine 2",purchase,1.0,0 -66508737,"Trine 2",play,7.8,0 -66508737,"Magicka",purchase,1.0,0 -66508737,"Magicka",play,5.2,0 -66508737,"Prince of Persia The Sands of Time",purchase,1.0,0 -66508737,"Prince of Persia The Sands of Time",play,0.9,0 -66508737,"Team Fortress 2",purchase,1.0,0 -66508737,"Team Fortress 2",play,0.6,0 -66508737,"Prince of Persia",purchase,1.0,0 -66508737,"Prince of Persia The Two Thrones",purchase,1.0,0 -66508737,"Prince of Persia Warrior Within",purchase,1.0,0 -101878879,"Fallout New Vegas",purchase,1.0,0 -101878879,"Fallout New Vegas",play,218.0,0 -101878879,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -101878879,"Sid Meier's Civilization IV Beyond the Sword",play,199.0,0 -101878879,"Sid Meier's Civilization V",purchase,1.0,0 -101878879,"Sid Meier's Civilization V",play,177.0,0 -101878879,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -101878879,"The Witcher 2 Assassins of Kings Enhanced Edition",play,146.0,0 -101878879,"The Witcher Enhanced Edition",purchase,1.0,0 -101878879,"The Witcher Enhanced Edition",play,128.0,0 -101878879,"Sid Meier's Civilization IV",purchase,1.0,0 -101878879,"Sid Meier's Civilization IV",play,57.0,0 -101878879,"L.A. Noire",purchase,1.0,0 -101878879,"L.A. Noire",play,45.0,0 -101878879,"Life Is Strange",purchase,1.0,0 -101878879,"Life Is Strange",play,23.0,0 -101878879,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -101878879,"Game of Thrones - A Telltale Games Series",play,22.0,0 -101878879,"Fahrenheit Indigo Prophecy Remastered",purchase,1.0,0 -101878879,"Fahrenheit Indigo Prophecy Remastered",play,12.1,0 -101878879,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -101878879,"Dragon Age Origins - Ultimate Edition",play,10.4,0 -101878879,"Half-Life",purchase,1.0,0 -101878879,"Half-Life",play,9.3,0 -101878879,"Crusader Kings Complete",purchase,1.0,0 -101878879,"Crusader Kings Complete",play,3.6,0 -101878879,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -101878879,"Sid Meier's Civilization IV Warlords",play,3.4,0 -101878879,"Crusader Kings II",purchase,1.0,0 -101878879,"Crusader Kings II",play,3.0,0 -101878879,"Age of Empires II HD Edition",purchase,1.0,0 -101878879,"Age of Empires II HD Edition",play,2.3,0 -101878879,"The Stanley Parable",purchase,1.0,0 -101878879,"The Stanley Parable",play,1.5,0 -101878879,"Crysis",purchase,1.0,0 -101878879,"Crysis",play,1.0,0 -101878879,"The Novelist",purchase,1.0,0 -101878879,"The Novelist",play,1.0,0 -101878879,"Shadow Warrior",purchase,1.0,0 -101878879,"Shadow Warrior",play,0.5,0 -101878879,"Dishonored",purchase,1.0,0 -101878879,"Dishonored",play,0.3,0 -101878879,"Octodad Dadliest Catch",purchase,1.0,0 -101878879,"Octodad Dadliest Catch",play,0.2,0 -101878879,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -101878879,"Sid Meier's Civilization IV Colonization",play,0.1,0 -101878879,"Chivalry Medieval Warfare",purchase,1.0,0 -101878879,"Chivalry Medieval Warfare",play,0.1,0 -101878879,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",purchase,1.0,0 -101878879,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",play,0.1,0 -101878879,"Gemini Rue",purchase,1.0,0 -101878879,"Fallout 4",purchase,1.0,0 -101878879,"Team Fortress Classic",purchase,1.0,0 -101878879,"LIMBO",purchase,1.0,0 -101878879,"Mount & Blade",purchase,1.0,0 -101878879,"The Witcher 3 Wild Hunt",purchase,1.0,0 -101878879,"FTL Faster Than Light",purchase,1.0,0 -101878879,"Yesterday",purchase,1.0,0 -101878879,"Deadly Premonition The Director's Cut",purchase,1.0,0 -101878879,"The Shivah",purchase,1.0,0 -101878879,"Brothers - A Tale of Two Sons",purchase,1.0,0 -101878879,"Age of Empires II HD The Forgotten",purchase,1.0,0 -101878879,"Age of Empires III Complete Collection",purchase,1.0,0 -101878879,"BioShock",purchase,1.0,0 -101878879,"BioShock 2",purchase,1.0,0 -101878879,"BioShock Infinite",purchase,1.0,0 -101878879,"Castle Crashers",purchase,1.0,0 -101878879,"Cities Skylines",purchase,1.0,0 -101878879,"Crysis 2 Maximum Edition",purchase,1.0,0 -101878879,"Crysis Warhead",purchase,1.0,0 -101878879,"Crysis Wars",purchase,1.0,0 -101878879,"Dear Esther",purchase,1.0,0 -101878879,"Death to Spies Moment of Truth",purchase,1.0,0 -101878879,"Deus Ex Game of the Year Edition",purchase,1.0,0 -101878879,"Deus Ex Human Revolution",purchase,1.0,0 -101878879,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -101878879,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -101878879,"Deus Ex Invisible War",purchase,1.0,0 -101878879,"Deus Ex The Fall",purchase,1.0,0 -101878879,"EVGA PrecisionX 16",purchase,1.0,0 -101878879,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -101878879,"Fallout New Vegas Dead Money",purchase,1.0,0 -101878879,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -101878879,"Ghostbusters The Video Game",purchase,1.0,0 -101878879,"Half-Life 2",purchase,1.0,0 -101878879,"Half-Life 2 Deathmatch",purchase,1.0,0 -101878879,"Half-Life 2 Episode One",purchase,1.0,0 -101878879,"Half-Life 2 Episode Two",purchase,1.0,0 -101878879,"Half-Life 2 Lost Coast",purchase,1.0,0 -101878879,"Half-Life Blue Shift",purchase,1.0,0 -101878879,"Half-Life Opposing Force",purchase,1.0,0 -101878879,"Half-Life Source",purchase,1.0,0 -101878879,"Half-Life Deathmatch Source",purchase,1.0,0 -101878879,"Lone Survivor The Director's Cut",purchase,1.0,0 -101878879,"Long Live The Queen",purchase,1.0,0 -101878879,"Medieval II Total War",purchase,1.0,0 -101878879,"Medieval II Total War Kingdoms",purchase,1.0,0 -101878879,"Metro 2033 Redux",purchase,1.0,0 -101878879,"Mirror's Edge",purchase,1.0,0 -101878879,"Monaco",purchase,1.0,0 -101878879,"Mount & Blade Warband",purchase,1.0,0 -101878879,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -101878879,"Mount & Blade Warband - Viking Conquest Reforged Edition",purchase,1.0,0 -101878879,"Mount & Blade With Fire and Sword",purchase,1.0,0 -101878879,"Outlast",purchase,1.0,0 -101878879,"Patch testing for Chivalry",purchase,1.0,0 -101878879,"PAYDAY 2",purchase,1.0,0 -101878879,"Portal",purchase,1.0,0 -101878879,"Portal 2",purchase,1.0,0 -101878879,"Psychonauts",purchase,1.0,0 -101878879,"Psychonauts Demo",purchase,1.0,0 -101878879,"Rome Total War",purchase,1.0,0 -101878879,"Rome Total War - Alexander",purchase,1.0,0 -101878879,"Sid Meier's Civilization IV",purchase,1.0,0 -101878879,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -101878879,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -101878879,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -101878879,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -101878879,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -101878879,"SimCity 4 Deluxe",purchase,1.0,0 -101878879,"Sleeping Dogs Definitive Edition",purchase,1.0,0 -101878879,"Terraria",purchase,1.0,0 -101878879,"The Banner Saga",purchase,1.0,0 -101878879,"The Banner Saga - Mod Content",purchase,1.0,0 -101878879,"The Detail",purchase,1.0,0 -101878879,"The Talos Principle",purchase,1.0,0 -101878879,"The Vanishing of Ethan Carter",purchase,1.0,0 -101878879,"The Vanishing of Ethan Carter Redux",purchase,1.0,0 -101878879,"The Wolf Among Us",purchase,1.0,0 -101878879,"This War of Mine",purchase,1.0,0 -101878879,"Train Simulator",purchase,1.0,0 -101878879,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -101878879,"War of the Roses",purchase,1.0,0 -101878879,"War of the Roses Kingmaker",purchase,1.0,0 -101878879,"War of the Roses Balance Beta",purchase,1.0,0 -221443125,"Dota 2",purchase,1.0,0 -221443125,"Dota 2",play,275.0,0 -221443125,"Transformice",purchase,1.0,0 -221443125,"Unturned",purchase,1.0,0 -91952768,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -91952768,"Call of Duty Modern Warfare 3 - Multiplayer",play,211.0,0 -91952768,"Farming Simulator 15",purchase,1.0,0 -91952768,"Farming Simulator 15",play,54.0,0 -91952768,"Call of Duty Modern Warfare 3",purchase,1.0,0 -91952768,"Call of Duty Modern Warfare 3",play,12.7,0 -91952768,"Arma 3",purchase,1.0,0 -91952768,"Arma 3",play,4.8,0 -91952768,"Arma 3 Zeus",purchase,1.0,0 -11952990,"Team Fortress 2",purchase,1.0,0 -11952990,"Team Fortress 2",play,289.0,0 -11952990,"The Binding of Isaac",purchase,1.0,0 -11952990,"The Binding of Isaac",play,254.0,0 -11952990,"XCOM Enemy Unknown",purchase,1.0,0 -11952990,"XCOM Enemy Unknown",play,148.0,0 -11952990,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -11952990,"Warhammer 40,000 Dawn of War II Retribution",play,122.0,0 -11952990,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -11952990,"Warhammer 40,000 Dawn of War II",play,101.0,0 -11952990,"Blood Bowl Chaos Edition",purchase,1.0,0 -11952990,"Blood Bowl Chaos Edition",play,90.0,0 -11952990,"PAYDAY 2",purchase,1.0,0 -11952990,"PAYDAY 2",play,42.0,0 -11952990,"FTL Faster Than Light",purchase,1.0,0 -11952990,"FTL Faster Than Light",play,39.0,0 -11952990,"Endless Space",purchase,1.0,0 -11952990,"Endless Space",play,38.0,0 -11952990,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -11952990,"Dragon Age Origins - Ultimate Edition",play,38.0,0 -11952990,"Sid Meier's Civilization V",purchase,1.0,0 -11952990,"Sid Meier's Civilization V",play,34.0,0 -11952990,"The Walking Dead",purchase,1.0,0 -11952990,"The Walking Dead",play,32.0,0 -11952990,"Space Pirates and Zombies",purchase,1.0,0 -11952990,"Space Pirates and Zombies",play,24.0,0 -11952990,"Blood Bowl Legendary Edition",purchase,1.0,0 -11952990,"Blood Bowl Legendary Edition",play,22.0,0 -11952990,"Jade Empire Special Edition",purchase,1.0,0 -11952990,"Jade Empire Special Edition",play,16.3,0 -11952990,"Alien Swarm",purchase,1.0,0 -11952990,"Alien Swarm",play,16.0,0 -11952990,"Day of Defeat Source",purchase,1.0,0 -11952990,"Day of Defeat Source",play,12.2,0 -11952990,"Shadowrun Returns",purchase,1.0,0 -11952990,"Shadowrun Returns",play,11.9,0 -11952990,"The Walking Dead Season Two",purchase,1.0,0 -11952990,"The Walking Dead Season Two",play,10.5,0 -11952990,"Plague Inc Evolved",purchase,1.0,0 -11952990,"Plague Inc Evolved",play,10.0,0 -11952990,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -11952990,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,9.5,0 -11952990,"Deus Ex Game of the Year Edition",purchase,1.0,0 -11952990,"Deus Ex Game of the Year Edition",play,7.6,0 -11952990,"Game Dev Tycoon",purchase,1.0,0 -11952990,"Game Dev Tycoon",play,7.4,0 -11952990,"Guns of Icarus Online",purchase,1.0,0 -11952990,"Guns of Icarus Online",play,6.9,0 -11952990,"Spacebase DF-9",purchase,1.0,0 -11952990,"Spacebase DF-9",play,5.1,0 -11952990,"X-COM UFO Defense",purchase,1.0,0 -11952990,"X-COM UFO Defense",play,4.9,0 -11952990,"Reus",purchase,1.0,0 -11952990,"Reus",play,4.7,0 -11952990,"Broken Sword 1 - Shadow of the Templars Director's Cut",purchase,1.0,0 -11952990,"Broken Sword 1 - Shadow of the Templars Director's Cut",play,4.3,0 -11952990,"Portal",purchase,1.0,0 -11952990,"Portal",play,3.5,0 -11952990,"Democracy 3",purchase,1.0,0 -11952990,"Democracy 3",play,2.5,0 -11952990,"Analogue A Hate Story",purchase,1.0,0 -11952990,"Analogue A Hate Story",play,2.3,0 -11952990,"Hotline Miami",purchase,1.0,0 -11952990,"Hotline Miami",play,2.3,0 -11952990,"Poker Night at the Inventory",purchase,1.0,0 -11952990,"Poker Night at the Inventory",play,2.0,0 -11952990,"Counter-Strike Source",purchase,1.0,0 -11952990,"Counter-Strike Source",play,2.0,0 -11952990,"Audiosurf",purchase,1.0,0 -11952990,"Audiosurf",play,2.0,0 -11952990,"Scribblenauts Unlimited",purchase,1.0,0 -11952990,"Scribblenauts Unlimited",play,1.7,0 -11952990,"Space Hulk",purchase,1.0,0 -11952990,"Space Hulk",play,1.7,0 -11952990,"Don't Starve",purchase,1.0,0 -11952990,"Don't Starve",play,1.0,0 -11952990,"Thomas Was Alone",purchase,1.0,0 -11952990,"Thomas Was Alone",play,0.9,0 -11952990,"The Stanley Parable",purchase,1.0,0 -11952990,"The Stanley Parable",play,0.7,0 -11952990,"Papers, Please",purchase,1.0,0 -11952990,"Papers, Please",play,0.6,0 -11952990,"Aliens versus Predator Classic 2000",purchase,1.0,0 -11952990,"Aliens versus Predator Classic 2000",play,0.5,0 -11952990,"King Arthur's Gold",purchase,1.0,0 -11952990,"King Arthur's Gold",play,0.5,0 -11952990,"Broken Age",purchase,1.0,0 -11952990,"Broken Age",play,0.5,0 -11952990,"The Banner Saga",purchase,1.0,0 -11952990,"The Banner Saga",play,0.3,0 -11952990,"FINAL FANTASY VIII",purchase,1.0,0 -11952990,"FINAL FANTASY VIII",play,0.2,0 -11952990,"Desperados - Wanted Dead or Alive",purchase,1.0,0 -11952990,"Desperados - Wanted Dead or Alive",play,0.2,0 -11952990,"Banished",purchase,1.0,0 -11952990,"X-COM Terror from the Deep",purchase,1.0,0 -11952990,"A New Beginning - Final Cut",purchase,1.0,0 -11952990,"Broken Sword 2 - the Smoking Mirror Remastered",purchase,1.0,0 -11952990,"Broken Sword 3 - the Sleeping Dragon",purchase,1.0,0 -11952990,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -11952990,"Democracy 3 Social Engineering",purchase,1.0,0 -11952990,"Democracy 3 Social Engineering Linux",purchase,1.0,0 -11952990,"Democracy 3 Social Engineering Mac",purchase,1.0,0 -11952990,"Divinity Dragon Commander",purchase,1.0,0 -11952990,"Divinity Dragon Commander Beta",purchase,1.0,0 -11952990,"Don't Starve Reign of Giants",purchase,1.0,0 -11952990,"Don't Starve Together Beta",purchase,1.0,0 -11952990,"FINAL FANTASY VII",purchase,1.0,0 -11952990,"Half-Life 2",purchase,1.0,0 -11952990,"Half-Life 2 Deathmatch",purchase,1.0,0 -11952990,"Half-Life 2 Episode One",purchase,1.0,0 -11952990,"Half-Life 2 Episode Two",purchase,1.0,0 -11952990,"Half-Life 2 Lost Coast",purchase,1.0,0 -11952990,"Half-Life Deathmatch Source",purchase,1.0,0 -11952990,"Lost Planet Extreme Condition",purchase,1.0,0 -11952990,"The Banner Saga - Mod Content",purchase,1.0,0 -11952990,"The Binding of Isaac Rebirth",purchase,1.0,0 -11952990,"The Ship",purchase,1.0,0 -11952990,"The Ship Single Player",purchase,1.0,0 -11952990,"The Ship Tutorial",purchase,1.0,0 -11952990,"The Wolf Among Us",purchase,1.0,0 -11952990,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -11952990,"Warhammer 40,000 Storm of Vengeance Deathwing Terminator",purchase,1.0,0 -11952990,"X-COM Apocalypse",purchase,1.0,0 -11952990,"X-COM Enforcer",purchase,1.0,0 -11952990,"X-COM Interceptor",purchase,1.0,0 -11952990,"XCOM Enemy Within",purchase,1.0,0 -173644000,"Dota 2",purchase,1.0,0 -173644000,"Dota 2",play,0.7,0 -173644000,"Obulis",purchase,1.0,0 -130933471,"Dead Island",purchase,1.0,0 -186163561,"Tropico 4",purchase,1.0,0 -159012617,"King Arthur - The Role-playing Wargame",purchase,1.0,0 -159012617,"King Arthur - The Role-playing Wargame",play,1.2,0 -181597796,"FORCED",purchase,1.0,0 -181597796,"FORCED",play,5.7,0 -181597796,"Castle Crashers",purchase,1.0,0 -181597796,"Castle Crashers",play,2.2,0 -181597796,"Left 4 Dead 2",purchase,1.0,0 -181597796,"Left 4 Dead 2",play,1.8,0 -181597796,"SpaceChem",purchase,1.0,0 -117044529,"King Arthur Collection",purchase,1.0,0 -117044529,"King Arthur Collection",play,0.9,0 -108878910,"Starbound",purchase,1.0,0 -108878910,"Starbound",play,86.0,0 -108878910,"Garry's Mod",purchase,1.0,0 -108878910,"Garry's Mod",play,76.0,0 -108878910,"Sid Meier's Civilization V",purchase,1.0,0 -108878910,"Sid Meier's Civilization V",play,24.0,0 -108878910,"FarSky",purchase,1.0,0 -108878910,"FarSky",play,18.0,0 -108878910,"Left 4 Dead 2",purchase,1.0,0 -108878910,"Left 4 Dead 2",play,17.1,0 -108878910,"Project Zomboid",purchase,1.0,0 -108878910,"Project Zomboid",play,11.7,0 -108878910,"Arma 2 Operation Arrowhead",purchase,1.0,0 -108878910,"Arma 2 Operation Arrowhead",play,3.1,0 -108878910,"Cubemen",purchase,1.0,0 -108878910,"Cubemen",play,2.7,0 -108878910,"Awesomenauts",purchase,1.0,0 -108878910,"Awesomenauts",play,1.7,0 -108878910,"Cogs",purchase,1.0,0 -108878910,"Cogs",play,1.0,0 -108878910,"Stranded Deep",purchase,1.0,0 -108878910,"Stranded Deep",play,0.9,0 -108878910,"Team Fortress 2",purchase,1.0,0 -108878910,"Team Fortress 2",play,0.4,0 -108878910,"Rust",purchase,1.0,0 -108878910,"Rust",play,0.4,0 -108878910,"Crayon Physics Deluxe",purchase,1.0,0 -108878910,"Crayon Physics Deluxe",play,0.2,0 -108878910,"Lifeless Planet",purchase,1.0,0 -108878910,"Lifeless Planet",play,0.1,0 -108878910,"Arma 2",purchase,1.0,0 -108878910,"And Yet It Moves",purchase,1.0,0 -108878910,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -108878910,"Hammerfight",purchase,1.0,0 -108878910,"Starbound - Unstable",purchase,1.0,0 -108878910,"VVVVVV",purchase,1.0,0 -5387470,"Arma 3",purchase,1.0,0 -5387470,"Arma 3",play,1055.0,0 -5387470,"Counter-Strike Source",purchase,1.0,0 -5387470,"Counter-Strike Source",play,516.0,0 -5387470,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -5387470,"Red Orchestra Ostfront 41-45",play,431.0,0 -5387470,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -5387470,"Rising Storm/Red Orchestra 2 Multiplayer",play,242.0,0 -5387470,"Insurgency",purchase,1.0,0 -5387470,"Insurgency",play,72.0,0 -5387470,"Counter-Strike Global Offensive",purchase,1.0,0 -5387470,"Counter-Strike Global Offensive",play,16.1,0 -5387470,"IL-2 Sturmovik 1946",purchase,1.0,0 -5387470,"IL-2 Sturmovik 1946",play,15.5,0 -5387470,"Grand Theft Auto V",purchase,1.0,0 -5387470,"Grand Theft Auto V",play,9.3,0 -5387470,"IL-2 Sturmovik Battle of Stalingrad",purchase,1.0,0 -5387470,"IL-2 Sturmovik Battle of Stalingrad",play,7.7,0 -5387470,"Day of Defeat",purchase,1.0,0 -5387470,"Day of Defeat",play,6.0,0 -5387470,"DayZ",purchase,1.0,0 -5387470,"DayZ",play,4.3,0 -5387470,"Medieval II Total War",purchase,1.0,0 -5387470,"Medieval II Total War",play,4.1,0 -5387470,"Counter-Strike",purchase,1.0,0 -5387470,"Counter-Strike",play,3.4,0 -5387470,"Team Fortress 2",purchase,1.0,0 -5387470,"Team Fortress 2",play,3.3,0 -5387470,"IL-2 Sturmovik Cliffs of Dover",purchase,1.0,0 -5387470,"IL-2 Sturmovik Cliffs of Dover",play,2.3,0 -5387470,"Darkest Hour Europe '44-'45",purchase,1.0,0 -5387470,"Darkest Hour Europe '44-'45",play,1.5,0 -5387470,"War Thunder",purchase,1.0,0 -5387470,"War Thunder",play,1.4,0 -5387470,"Total War ROME II - Emperor Edition",purchase,1.0,0 -5387470,"Total War ROME II - Emperor Edition",play,1.4,0 -5387470,"Medieval II Total War Kingdoms",purchase,1.0,0 -5387470,"Medieval II Total War Kingdoms",play,1.2,0 -5387470,"Rise of Flight United",purchase,1.0,0 -5387470,"Rise of Flight United",play,1.2,0 -5387470,"Zombie Panic Source",purchase,1.0,0 -5387470,"Zombie Panic Source",play,1.1,0 -5387470,"Insurgency Modern Infantry Combat",purchase,1.0,0 -5387470,"Insurgency Modern Infantry Combat",play,0.8,0 -5387470,"Garry's Mod",purchase,1.0,0 -5387470,"Garry's Mod",play,0.6,0 -5387470,"Arma 2 Operation Arrowhead",purchase,1.0,0 -5387470,"Arma 2 Operation Arrowhead",play,0.6,0 -5387470,"World of Guns Gun Disassembly",purchase,1.0,0 -5387470,"World of Guns Gun Disassembly",play,0.6,0 -5387470,"Takedown Red Sabre",purchase,1.0,0 -5387470,"Takedown Red Sabre",play,0.5,0 -5387470,"Day of Defeat Source",purchase,1.0,0 -5387470,"Day of Defeat Source",play,0.5,0 -5387470,"PAYDAY 2",purchase,1.0,0 -5387470,"PAYDAY 2",play,0.4,0 -5387470,"Sniper Elite 3",purchase,1.0,0 -5387470,"Sniper Elite 3",play,0.3,0 -5387470,"Arma 2",purchase,1.0,0 -5387470,"Arma 2",play,0.3,0 -5387470,"Eufloria",purchase,1.0,0 -5387470,"Eufloria",play,0.2,0 -5387470,"Cogs",purchase,1.0,0 -5387470,"Cogs",play,0.2,0 -5387470,"Mare Nostrum",purchase,1.0,0 -5387470,"Mare Nostrum",play,0.2,0 -5387470,"DCS World",purchase,1.0,0 -5387470,"DCS World",play,0.1,0 -5387470,"D.U.S.T.",purchase,1.0,0 -5387470,"D.U.S.T.",play,0.1,0 -5387470,"Simply Chess",purchase,1.0,0 -5387470,"Darwinia",purchase,1.0,0 -5387470,"Portal",purchase,1.0,0 -5387470,"DEFCON",purchase,1.0,0 -5387470,"NEOTOKYO",purchase,1.0,0 -5387470,"Arma 2 British Armed Forces",purchase,1.0,0 -5387470,"Take On Helicopters",purchase,1.0,0 -5387470,"Arma 2 Private Military Company",purchase,1.0,0 -5387470,"Arma 2 DayZ Mod",purchase,1.0,0 -5387470,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -5387470,"Arma 3 Helicopters",purchase,1.0,0 -5387470,"Arma 3 Karts",purchase,1.0,0 -5387470,"Arma 3 Marksmen",purchase,1.0,0 -5387470,"Arma 3 Zeus",purchase,1.0,0 -5387470,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -5387470,"Counter-Strike Condition Zero",purchase,1.0,0 -5387470,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -5387470,"Deathmatch Classic",purchase,1.0,0 -5387470,"Eufloria HD",purchase,1.0,0 -5387470,"Eufloria HD Original Soundtrack",purchase,1.0,0 -5387470,"Half-Life",purchase,1.0,0 -5387470,"Half-Life 2",purchase,1.0,0 -5387470,"Half-Life 2 Deathmatch",purchase,1.0,0 -5387470,"Half-Life 2 Lost Coast",purchase,1.0,0 -5387470,"Half-Life Blue Shift",purchase,1.0,0 -5387470,"Half-Life Opposing Force",purchase,1.0,0 -5387470,"Iron Front D-Day DLC",purchase,1.0,0 -5387470,"Iron Warriors T-72 Tank Command",purchase,1.0,0 -5387470,"Kanji Training Game",purchase,1.0,0 -5387470,"Plain Sight",purchase,1.0,0 -5387470,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -5387470,"Red Orchestra Beta",purchase,1.0,0 -5387470,"Ricochet",purchase,1.0,0 -5387470,"Team Fortress Classic",purchase,1.0,0 -5387470,"The Stalin Subway Red Veil",purchase,1.0,0 -5387470,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -5387470,"Total War SHOGUN 2",purchase,1.0,0 -202139066,"Dota 2",purchase,1.0,0 -202139066,"Dota 2",play,11.8,0 -188727235,"Heroes & Generals",purchase,1.0,0 -188727235,"Heroes & Generals",play,1.2,0 -81865111,"Team Fortress 2",purchase,1.0,0 -81865111,"Team Fortress 2",play,2.8,0 -81865111,"Alien Swarm",purchase,1.0,0 -81865111,"Alien Swarm",play,1.1,0 -253521545,"Dota 2",purchase,1.0,0 -253521545,"Dota 2",play,1.0,0 -139115643,"Dota 2",purchase,1.0,0 -139115643,"Dota 2",play,0.2,0 -240145967,"Dota 2",purchase,1.0,0 -240145967,"Dota 2",play,1.3,0 -240145967,"FreeStyle2 Street Basketball",purchase,1.0,0 -240145967,"APB Reloaded",purchase,1.0,0 -240145967,"RaiderZ",purchase,1.0,0 -240145967,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -240145967,"Warframe",purchase,1.0,0 -240145967,"War Thunder",purchase,1.0,0 -93263468,"Team Fortress 2",purchase,1.0,0 -93263468,"Team Fortress 2",play,0.9,0 -113729479,"Team Fortress 2",purchase,1.0,0 -113729479,"Team Fortress 2",play,11.1,0 -113729479,"Don't Starve",purchase,1.0,0 -113729479,"Don't Starve",play,8.8,0 -113729479,"Castle Crashers",purchase,1.0,0 -113729479,"Castle Crashers",play,6.6,0 -113729479,"Garry's Mod",purchase,1.0,0 -113729479,"Garry's Mod",play,0.5,0 -113729479,"The Binding of Isaac",purchase,1.0,0 -113729479,"The Binding of Isaac",play,0.2,0 -113729479,"Don't Starve Together Beta",purchase,1.0,0 -41559627,"Half-Life 2 Episode Two",purchase,1.0,0 -41559627,"Half-Life 2 Episode Two",play,12.7,0 -41559627,"Half-Life Source",purchase,1.0,0 -41559627,"Half-Life Source",play,3.4,0 -41559627,"Homeworld Remastered Collection",purchase,1.0,0 -41559627,"Homeworld Remastered Collection",play,3.2,0 -41559627,"Half-Life",purchase,1.0,0 -41559627,"Half-Life",play,2.2,0 -41559627,"Counter-Strike Global Offensive",purchase,1.0,0 -41559627,"Counter-Strike Global Offensive",play,1.7,0 -41559627,"Galaxy on Fire 2 Full HD",purchase,1.0,0 -41559627,"Galaxy on Fire 2 Full HD",play,1.6,0 -41559627,"Strike Suit Zero",purchase,1.0,0 -41559627,"Strike Suit Zero",play,1.0,0 -41559627,"Medal of Honor(TM) Single Player",purchase,1.0,0 -41559627,"Medal of Honor(TM) Single Player",play,0.4,0 -41559627,"Tomb Raider",purchase,1.0,0 -41559627,"Tomb Raider",play,0.4,0 -41559627,"Strike Suit Infinity",purchase,1.0,0 -41559627,"Strike Suit Infinity",play,0.3,0 -41559627,"Serious Sam HD The First Encounter",purchase,1.0,0 -41559627,"Serious Sam HD The First Encounter",play,0.3,0 -41559627,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -41559627,"Batman Arkham Asylum GOTY Edition",play,0.2,0 -41559627,"Plague Inc Evolved",purchase,1.0,0 -41559627,"Plague Inc Evolved",play,0.1,0 -41559627,"Scribblenauts Unlimited",purchase,1.0,0 -41559627,"Scribblenauts Unlimited",play,0.1,0 -41559627,"Mortal Kombat Kollection",purchase,1.0,0 -41559627,"Portal",purchase,1.0,0 -41559627,"Blazing Angels 2 Secret Missions of WWII",purchase,1.0,0 -41559627,"Age of Empires II HD Edition",purchase,1.0,0 -41559627,"Age of Empires II HD The Forgotten",purchase,1.0,0 -41559627,"Alien Breed 2 Assault",purchase,1.0,0 -41559627,"Alien Breed 3 Descent",purchase,1.0,0 -41559627,"Alien Breed Impact",purchase,1.0,0 -41559627,"Batman Arkham City GOTY",purchase,1.0,0 -41559627,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -41559627,"Batman Arkham Origins - Initiation",purchase,1.0,0 -41559627,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -41559627,"Batman Arkham Origins",purchase,1.0,0 -41559627,"Blazing Angels Squadrons of WWII",purchase,1.0,0 -41559627,"Call of Duty",purchase,1.0,0 -41559627,"Call of Duty 2",purchase,1.0,0 -41559627,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -41559627,"Call of Duty Ghosts",purchase,1.0,0 -41559627,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -41559627,"Call of Duty Modern Warfare 2",purchase,1.0,0 -41559627,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -41559627,"Call of Duty Modern Warfare 3",purchase,1.0,0 -41559627,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -41559627,"Call of Duty United Offensive",purchase,1.0,0 -41559627,"Call of Duty World at War",purchase,1.0,0 -41559627,"Counter-Strike",purchase,1.0,0 -41559627,"Counter-Strike Condition Zero",purchase,1.0,0 -41559627,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -41559627,"Counter-Strike Source",purchase,1.0,0 -41559627,"Dead Island Epidemic",purchase,1.0,0 -41559627,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -41559627,"F.E.A.R.",purchase,1.0,0 -41559627,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -41559627,"F.E.A.R. 3",purchase,1.0,0 -41559627,"F.E.A.R. Extraction Point",purchase,1.0,0 -41559627,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -41559627,"Guardians of Middle-earth",purchase,1.0,0 -41559627,"Half-Life 2",purchase,1.0,0 -41559627,"Half-Life 2 Deathmatch",purchase,1.0,0 -41559627,"Half-Life 2 Episode One",purchase,1.0,0 -41559627,"Half-Life 2 Lost Coast",purchase,1.0,0 -41559627,"Half-Life Blue Shift",purchase,1.0,0 -41559627,"Half-Life Opposing Force",purchase,1.0,0 -41559627,"Half-Life Deathmatch Source",purchase,1.0,0 -41559627,"Halo Spartan Assault",purchase,1.0,0 -41559627,"Halo Spartan Strike",purchase,1.0,0 -41559627,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -41559627,"Medal of Honor Pre-Order",purchase,1.0,0 -41559627,"Metro 2033",purchase,1.0,0 -41559627,"Planetary Annihilation",purchase,1.0,0 -41559627,"Planetary Annihilation - Digital Deluxe Bundle",purchase,1.0,0 -41559627,"Planetary Annihilation - Original Soundtrack",purchase,1.0,0 -41559627,"Portal 2",purchase,1.0,0 -41559627,"Scribblenauts Unmasked",purchase,1.0,0 -41559627,"Serious Sam 2",purchase,1.0,0 -41559627,"Serious Sam 3 BFE",purchase,1.0,0 -41559627,"Serious Sam The Random Encounter",purchase,1.0,0 -41559627,"Serious Sam Classic The First Encounter",purchase,1.0,0 -41559627,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -41559627,"Serious Sam Classics Revolution",purchase,1.0,0 -41559627,"Serious Sam Double D XXL",purchase,1.0,0 -41559627,"Shadow Warrior Classic Redux",purchase,1.0,0 -41559627,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -41559627,"Sins of a Solar Empire Rebellion Forbidden Worlds",purchase,1.0,0 -41559627,"Sins of a Solar Empire Trinity",purchase,1.0,0 -41559627,"Strike Suit Zero Director's Cut",purchase,1.0,0 -41559627,"Superfrog HD",purchase,1.0,0 -41559627,"Supreme Commander",purchase,1.0,0 -41559627,"Supreme Commander Forged Alliance",purchase,1.0,0 -41559627,"Team Fortress Classic",purchase,1.0,0 -41559627,"Teleglitch Die More Edition",purchase,1.0,0 -41559627,"The Lord of the Rings War in the North",purchase,1.0,0 -41559627,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -41559627,"Tomb Raider Anniversary",purchase,1.0,0 -41559627,"Tomb Raider Chronicles",purchase,1.0,0 -41559627,"Tomb Raider Legend",purchase,1.0,0 -41559627,"Tomb Raider The Last Revelation",purchase,1.0,0 -41559627,"Tomb Raider Underworld",purchase,1.0,0 -41559627,"Tomb Raider I",purchase,1.0,0 -41559627,"Tomb Raider II",purchase,1.0,0 -41559627,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -41559627,"Worms Armageddon",purchase,1.0,0 -41559627,"Worms Blast",purchase,1.0,0 -41559627,"Worms Crazy Golf",purchase,1.0,0 -41559627,"Worms Pinball",purchase,1.0,0 -41559627,"Worms Revolution",purchase,1.0,0 -41559627,"Worms Ultimate Mayhem",purchase,1.0,0 -143339438,"XCOM Enemy Unknown",purchase,1.0,0 -143339438,"XCOM Enemy Unknown",play,1.0,0 -143339438,"Worms Reloaded",purchase,1.0,0 -143339438,"Worms Reloaded",play,0.8,0 -143339438,"XCOM Enemy Within",purchase,1.0,0 -174654947,"Dota 2",purchase,1.0,0 -174654947,"Dota 2",play,0.9,0 -33778112,"Anno 2070",purchase,1.0,0 -33778112,"Anno 2070",play,1.8,0 -33778112,"Age of Wonders III",purchase,1.0,0 -33778112,"Age of Wonders III",play,1.5,0 -33778112,"Portal",purchase,1.0,0 -33778112,"Portal",play,0.9,0 -33778112,"The Darkness II",purchase,1.0,0 -33778112,"The Darkness II",play,0.3,0 -33778112,"Dota 2",purchase,1.0,0 -33778112,"Dota 2",play,0.3,0 -33778112,"Torchlight",purchase,1.0,0 -33778112,"Torchlight",play,0.2,0 -33778112,"Dungeon Defenders",purchase,1.0,0 -33778112,"Half-Life 2",purchase,1.0,0 -33778112,"Half-Life 2 Episode One",purchase,1.0,0 -33778112,"Half-Life 2 Episode Two",purchase,1.0,0 -33778112,"Half-Life 2 Lost Coast",purchase,1.0,0 -238012371,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -238012371,"S.K.I.L.L. - Special Force 2",play,0.9,0 -238012371,"Gear Up",purchase,1.0,0 -238012371,"Gear Up",play,0.1,0 -238012371,"Robocraft",purchase,1.0,0 -302563555,"BLOCKADE 3D",purchase,1.0,0 -302563555,"BLOCKADE 3D",play,17.9,0 -302563555,"Counter-Strike Nexon Zombies",purchase,1.0,0 -302563555,"Steel Ocean",purchase,1.0,0 -116580688,"Pro Cycling Manager Season 2009",purchase,1.0,0 -116580688,"Pro Cycling Manager Season 2009",play,1.1,0 -186096460,"Dota 2",purchase,1.0,0 -186096460,"Dota 2",play,2.4,0 -189929581,"Grand Theft Auto V",purchase,1.0,0 -189929581,"Grand Theft Auto V",play,364.0,0 -189929581,"Dota 2",purchase,1.0,0 -189929581,"Dota 2",play,3.0,0 -107359794,"MX vs. ATV Reflex",purchase,1.0,0 -107359794,"MX vs. ATV Reflex",play,2.2,0 -294620986,"PAYDAY 2",purchase,1.0,0 -294620986,"PAYDAY 2",play,67.0,0 -294620986,"Unturned",purchase,1.0,0 -294620986,"Unturned",play,22.0,0 -294620986,"DC Universe Online",purchase,1.0,0 -294620986,"DC Universe Online",play,18.9,0 -294620986,"War Thunder",purchase,1.0,0 -294620986,"War Thunder",play,4.3,0 -294620986,"Robocraft",purchase,1.0,0 -294620986,"Robocraft",play,3.0,0 -294620986,"Dirty Bomb",purchase,1.0,0 -294620986,"Dirty Bomb",play,2.8,0 -294620986,"Apotheon Arena",purchase,1.0,0 -294620986,"Apotheon Arena",play,2.7,0 -294620986,"Red Crucible Firestorm",purchase,1.0,0 -294620986,"Red Crucible Firestorm",play,2.3,0 -294620986,"Warframe",purchase,1.0,0 -294620986,"Warframe",play,1.9,0 -294620986,"Genesis Online",purchase,1.0,0 -294620986,"Genesis Online",play,0.9,0 -294620986,"Loadout",purchase,1.0,0 -294620986,"Loadout",play,0.5,0 -294620986,"Transformice",purchase,1.0,0 -294620986,"Transformice",play,0.4,0 -294620986,"Team Fortress 2",purchase,1.0,0 -294620986,"Team Fortress 2",play,0.3,0 -294620986,"Heroes & Generals",purchase,1.0,0 -294620986,"Heroes & Generals",play,0.3,0 -294620986,"Zombies Monsters Robots",purchase,1.0,0 -294620986,"Zombies Monsters Robots",play,0.2,0 -294620986,"Trove",purchase,1.0,0 -294620986,"Counter-Strike Nexon Zombies",purchase,1.0,0 -294620986,"Pirates, Vikings, & Knights II",purchase,1.0,0 -133553031,"Team Fortress 2",purchase,1.0,0 -133553031,"Team Fortress 2",play,2.0,0 -182922389,"Dota 2",purchase,1.0,0 -182922389,"Dota 2",play,4.0,0 -159411437,"Left 4 Dead 2",purchase,1.0,0 -159411437,"Left 4 Dead 2",play,27.0,0 -159411437,"TERA",purchase,1.0,0 -159411437,"TERA",play,19.8,0 -159411437,"Borderlands 2",purchase,1.0,0 -159411437,"Borderlands 2",play,19.2,0 -159411437,"The Legend of Heroes Trails in the Sky",purchase,1.0,0 -159411437,"The Legend of Heroes Trails in the Sky",play,14.2,0 -159411437,"Counter-Strike Global Offensive",purchase,1.0,0 -159411437,"Counter-Strike Global Offensive",play,6.0,0 -159411437,"Valkyria Chronicles",purchase,1.0,0 -159411437,"Valkyria Chronicles",play,4.9,0 -159411437,"Trine 2",purchase,1.0,0 -159411437,"Trine 2",play,4.6,0 -159411437,"Garry's Mod",purchase,1.0,0 -159411437,"Garry's Mod",play,3.7,0 -159411437,"ibb & obb",purchase,1.0,0 -159411437,"ibb & obb",play,3.2,0 -159411437,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -159411437,"Dark Souls Prepare to Die Edition",play,3.2,0 -159411437,"Aura Kingdom",purchase,1.0,0 -159411437,"Aura Kingdom",play,2.2,0 -159411437,"SpeedRunners",purchase,1.0,0 -159411437,"SpeedRunners",play,1.7,0 -159411437,"Brothers - A Tale of Two Sons",purchase,1.0,0 -159411437,"Brothers - A Tale of Two Sons",play,0.8,0 -159411437,"Eternal Senia",purchase,1.0,0 -159411437,"Eternal Senia",play,0.6,0 -159411437,"Ultimate Tic-Tac-Toe",purchase,1.0,0 -159411437,"Ultimate Tic-Tac-Toe",play,0.3,0 -159411437,"Amnesia The Dark Descent",purchase,1.0,0 -159411437,"Dust An Elysian Tail",purchase,1.0,0 -159411437,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -159411437,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -159411437,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -159411437,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -159411437,"Vindictus",purchase,1.0,0 -52192778,"Half-Life 2 Deathmatch",purchase,1.0,0 -52192778,"Half-Life 2 Deathmatch",play,0.2,0 -52192778,"Half-Life 2 Lost Coast",purchase,1.0,0 -289801262,"TERA",purchase,1.0,0 -137022689,"GRID",purchase,1.0,0 -137022689,"GRID",play,19.0,0 -137022689,"Team Fortress 2",purchase,1.0,0 -137022689,"Team Fortress 2",play,4.7,0 -137022689,"Mirror's Edge",purchase,1.0,0 -137022689,"Mirror's Edge",play,0.9,0 -137022689,"McPixel",purchase,1.0,0 -137022689,"McPixel",play,0.2,0 -137022689,"Half-Life",purchase,1.0,0 -137022689,"Half-Life 2",purchase,1.0,0 -137022689,"Half-Life 2 Lost Coast",purchase,1.0,0 -22283916,"Counter-Strike",purchase,1.0,0 -22283916,"Counter-Strike",play,4664.0,0 -22283916,"Mafia II",purchase,1.0,0 -22283916,"Mafia II",play,8.4,0 -22283916,"Team Fortress 2",purchase,1.0,0 -22283916,"Team Fortress 2",play,8.1,0 -22283916,"Counter-Strike Condition Zero",purchase,1.0,0 -22283916,"Counter-Strike Condition Zero",play,0.6,0 -22283916,"Half-Life 2 Lost Coast",purchase,1.0,0 -22283916,"Half-Life 2 Lost Coast",play,0.5,0 -22283916,"Day of Defeat",purchase,1.0,0 -22283916,"Day of Defeat",play,0.1,0 -22283916,"Ricochet",purchase,1.0,0 -22283916,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -22283916,"Deathmatch Classic",purchase,1.0,0 -22283916,"Half-Life 2 Deathmatch",purchase,1.0,0 -46856734,"Football Manager 2009",purchase,1.0,0 -282049154,"Call of Duty Advanced Warfare",purchase,1.0,0 -282049154,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -141721441,"Farming Simulator 2013",purchase,1.0,0 -141721441,"Farming Simulator 2013",play,30.0,0 -141721441,"Train Simulator",purchase,1.0,0 -141721441,"Train Simulator",play,5.8,0 -159888236,"Left 4 Dead 2",purchase,1.0,0 -159888236,"Left 4 Dead 2",play,1.0,0 -159888236,"Serious Sam HD The Second Encounter",purchase,1.0,0 -159888236,"Serious Sam HD The Second Encounter",play,0.5,0 -136493411,"Team Fortress 2",purchase,1.0,0 -136493411,"Team Fortress 2",play,52.0,0 -136493411,"Trove",purchase,1.0,0 -136493411,"Trove",play,1.2,0 -195430485,"Team Fortress 2",purchase,1.0,0 -195430485,"Team Fortress 2",play,2.8,0 -195430485,"Robocraft",purchase,1.0,0 -195430485,"The Expendabros",purchase,1.0,0 -195430485,"Unturned",purchase,1.0,0 -213560822,"Dota 2",purchase,1.0,0 -213560822,"Dota 2",play,9.8,0 -215776525,"Dota 2",purchase,1.0,0 -215776525,"Dota 2",play,414.0,0 -215776525,"Defiance",purchase,1.0,0 -215776525,"Dizzel",purchase,1.0,0 -215776525,"Star Conflict",purchase,1.0,0 -215776525,"The Mighty Quest For Epic Loot",purchase,1.0,0 -259931116,"Dota 2",purchase,1.0,0 -259931116,"Dota 2",play,473.0,0 -259931116,"Unturned",purchase,1.0,0 -259931116,"Unturned",play,30.0,0 -259931116,"FreeStyle2 Street Basketball",purchase,1.0,0 -12858799,"Counter-Strike Source",purchase,1.0,0 -12858799,"Counter-Strike Source",play,0.5,0 -12858799,"Half-Life 2",purchase,1.0,0 -12858799,"Half-Life 2 Deathmatch",purchase,1.0,0 -12858799,"Half-Life 2 Lost Coast",purchase,1.0,0 -279157418,"Dota 2",purchase,1.0,0 -279157418,"Dota 2",play,5.0,0 -279157418,"BLOCKADE 3D",purchase,1.0,0 -128342186,"Dota 2",purchase,1.0,0 -128342186,"Dota 2",play,497.0,0 -128342186,"Team Fortress 2",purchase,1.0,0 -128342186,"Team Fortress 2",play,1.8,0 -140527332,"Football Manager 2012",purchase,1.0,0 -140527332,"Football Manager 2012",play,11.3,0 -34384042,"Alien Swarm",purchase,1.0,0 -34384042,"Alien Swarm",play,9.8,0 -34384042,"Half-Life Opposing Force",purchase,1.0,0 -34384042,"Half-Life Opposing Force",play,7.1,0 -34384042,"Lost Planet Extreme Condition",purchase,1.0,0 -34384042,"Lost Planet Extreme Condition",play,0.9,0 -34384042,"Half-Life",purchase,1.0,0 -34384042,"Half-Life Blue Shift",purchase,1.0,0 -34384042,"Team Fortress Classic",purchase,1.0,0 -55739825,"Call of Duty Modern Warfare 2",purchase,1.0,0 -55739825,"Call of Duty Modern Warfare 2",play,48.0,0 -55739825,"Call of Duty Modern Warfare 3",purchase,1.0,0 -55739825,"Call of Duty Modern Warfare 3",play,26.0,0 -55739825,"Call of Duty Black Ops",purchase,1.0,0 -55739825,"Call of Duty Black Ops",play,21.0,0 -55739825,"Call of Duty Black Ops II",purchase,1.0,0 -55739825,"Call of Duty Black Ops II",play,16.2,0 -55739825,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -55739825,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.2,0 -55739825,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -55739825,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -55739825,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -55739825,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -177998646,"Dota 2",purchase,1.0,0 -177998646,"Dota 2",play,2.2,0 -273539240,"Dota 2",purchase,1.0,0 -273539240,"Dota 2",play,0.5,0 -105507326,"Sid Meier's Civilization III Complete",purchase,1.0,0 -105507326,"Sid Meier's Civilization III Complete",play,24.0,0 -296088638,"Team Fortress 2",purchase,1.0,0 -296088638,"Team Fortress 2",play,24.0,0 -120181402,"Dota 2",purchase,1.0,0 -120181402,"Dota 2",play,193.0,0 -120181402,"Team Fortress 2",purchase,1.0,0 -120181402,"Team Fortress 2",play,10.6,0 -16154372,"Dota 2",purchase,1.0,0 -16154372,"Dota 2",play,409.0,0 -16154372,"The Elder Scrolls V Skyrim",purchase,1.0,0 -16154372,"The Elder Scrolls V Skyrim",play,163.0,0 -16154372,"Assassin's Creed III",purchase,1.0,0 -16154372,"Assassin's Creed III",play,29.0,0 -16154372,"Torchlight II",purchase,1.0,0 -16154372,"Torchlight II",play,21.0,0 -16154372,"Counter-Strike Source",purchase,1.0,0 -16154372,"Counter-Strike Source",play,19.1,0 -16154372,"Half-Life 2",purchase,1.0,0 -16154372,"Half-Life 2",play,13.8,0 -16154372,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -16154372,"Batman Arkham Asylum GOTY Edition",play,12.1,0 -16154372,"PAYDAY 2",purchase,1.0,0 -16154372,"PAYDAY 2",play,11.9,0 -16154372,"Fable - The Lost Chapters",purchase,1.0,0 -16154372,"Fable - The Lost Chapters",play,11.1,0 -16154372,"Borderlands 2",purchase,1.0,0 -16154372,"Borderlands 2",play,8.0,0 -16154372,"Counter-Strike",purchase,1.0,0 -16154372,"Counter-Strike",play,7.2,0 -16154372,"Half-Life Blue Shift",purchase,1.0,0 -16154372,"Half-Life Blue Shift",play,5.5,0 -16154372,"Free to Play",purchase,1.0,0 -16154372,"Free to Play",play,3.9,0 -16154372,"Portal 2",purchase,1.0,0 -16154372,"Portal 2",play,3.6,0 -16154372,"Half-Life 2 Episode One",purchase,1.0,0 -16154372,"Half-Life 2 Episode One",play,3.5,0 -16154372,"Portal",purchase,1.0,0 -16154372,"Portal",play,3.2,0 -16154372,"The Cat Lady",purchase,1.0,0 -16154372,"The Cat Lady",play,2.9,0 -16154372,"Age of Empires II HD Edition",purchase,1.0,0 -16154372,"Age of Empires II HD Edition",play,2.5,0 -16154372,"Surgeon Simulator",purchase,1.0,0 -16154372,"Surgeon Simulator",play,2.0,0 -16154372,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -16154372,"Fallout 3 - Game of the Year Edition",play,1.8,0 -16154372,"Scribblenauts Unlimited",purchase,1.0,0 -16154372,"Scribblenauts Unlimited",play,1.6,0 -16154372,"BioShock",purchase,1.0,0 -16154372,"BioShock",play,1.4,0 -16154372,"Crysis",purchase,1.0,0 -16154372,"Crysis",play,1.4,0 -16154372,"HAWKEN",purchase,1.0,0 -16154372,"HAWKEN",play,1.4,0 -16154372,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -16154372,"Dark Souls Prepare to Die Edition",play,1.3,0 -16154372,"DOOM 3 BFG Edition",purchase,1.0,0 -16154372,"DOOM 3 BFG Edition",play,1.1,0 -16154372,"Team Fortress 2",purchase,1.0,0 -16154372,"Team Fortress 2",play,1.0,0 -16154372,"Path of Exile",purchase,1.0,0 -16154372,"Path of Exile",play,0.9,0 -16154372,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -16154372,"Counter-Strike Condition Zero Deleted Scenes",play,0.7,0 -16154372,"DmC Devil May Cry",purchase,1.0,0 -16154372,"DmC Devil May Cry",play,0.6,0 -16154372,"The Witcher Enhanced Edition",purchase,1.0,0 -16154372,"The Witcher Enhanced Edition",play,0.6,0 -16154372,"Universe Sandbox",purchase,1.0,0 -16154372,"Universe Sandbox",play,0.4,0 -16154372,"Counter-Strike Condition Zero",purchase,1.0,0 -16154372,"Counter-Strike Condition Zero",play,0.3,0 -16154372,"Counter-Strike Global Offensive",purchase,1.0,0 -16154372,"Counter-Strike Global Offensive",play,0.2,0 -16154372,"Tomb Raider",purchase,1.0,0 -16154372,"Tomb Raider",play,0.2,0 -16154372,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -16154372,"STAR WARS Knights of the Old Republic II The Sith Lords",play,0.2,0 -16154372,"Age of Empires II HD The Forgotten",purchase,1.0,0 -16154372,"Age of Empires III Complete Collection",purchase,1.0,0 -16154372,"Alan Wake",purchase,1.0,0 -16154372,"Alan Wake's American Nightmare",purchase,1.0,0 -16154372,"Batman Arkham City GOTY",purchase,1.0,0 -16154372,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -16154372,"Batman Arkham Origins - Initiation",purchase,1.0,0 -16154372,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -16154372,"Batman Arkham Origins",purchase,1.0,0 -16154372,"BioShock 2",purchase,1.0,0 -16154372,"BioShock Infinite",purchase,1.0,0 -16154372,"BioShock Infinite - Season Pass",purchase,1.0,0 -16154372,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -16154372,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -16154372,"Call of Cthulhu Dark Corners of the Earth",purchase,1.0,0 -16154372,"Commander Keen Complete Pack",purchase,1.0,0 -16154372,"Crysis Warhead",purchase,1.0,0 -16154372,"Crysis Wars",purchase,1.0,0 -16154372,"Dead Space 2",purchase,1.0,0 -16154372,"Dishonored",purchase,1.0,0 -16154372,"DOOM 3",purchase,1.0,0 -16154372,"DOOM 3 Resurrection of Evil",purchase,1.0,0 -16154372,"DOOM II Hell on Earth",purchase,1.0,0 -16154372,"Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald A Whirlwind Heist",purchase,1.0,0 -16154372,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -16154372,"Dungeon Siege",purchase,1.0,0 -16154372,"Dungeon Siege 2",purchase,1.0,0 -16154372,"Dungeon Siege III",purchase,1.0,0 -16154372,"Fallout",purchase,1.0,0 -16154372,"Fallout 2",purchase,1.0,0 -16154372,"Fallout New Vegas",purchase,1.0,0 -16154372,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -16154372,"Fallout New Vegas Dead Money",purchase,1.0,0 -16154372,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -16154372,"Fallout Tactics",purchase,1.0,0 -16154372,"Final DOOM",purchase,1.0,0 -16154372,"Garry's Mod",purchase,1.0,0 -16154372,"GRID",purchase,1.0,0 -16154372,"Half-Life",purchase,1.0,0 -16154372,"Half-Life 2 Deathmatch",purchase,1.0,0 -16154372,"Half-Life 2 Episode Two",purchase,1.0,0 -16154372,"Half-Life 2 Lost Coast",purchase,1.0,0 -16154372,"Half-Life Opposing Force",purchase,1.0,0 -16154372,"Half-Life Deathmatch Source",purchase,1.0,0 -16154372,"Heretic Shadow of the Serpent Riders",purchase,1.0,0 -16154372,"HeXen Beyond Heretic",purchase,1.0,0 -16154372,"HeXen Deathkings of the Dark Citadel",purchase,1.0,0 -16154372,"HeXen II",purchase,1.0,0 -16154372,"Left 4 Dead",purchase,1.0,0 -16154372,"Left 4 Dead 2",purchase,1.0,0 -16154372,"Mass Effect",purchase,1.0,0 -16154372,"Mass Effect 2",purchase,1.0,0 -16154372,"Master Levels for DOOM II",purchase,1.0,0 -16154372,"Metro 2033",purchase,1.0,0 -16154372,"Metro Last Light",purchase,1.0,0 -16154372,"Mirror's Edge",purchase,1.0,0 -16154372,"Quake",purchase,1.0,0 -16154372,"Quake 4",purchase,1.0,0 -16154372,"Quake II",purchase,1.0,0 -16154372,"Quake II Ground Zero",purchase,1.0,0 -16154372,"Quake II The Reckoning",purchase,1.0,0 -16154372,"Quake III Team Arena",purchase,1.0,0 -16154372,"Quake III Arena",purchase,1.0,0 -16154372,"Quake Mission Pack 1 Scourge of Armagon",purchase,1.0,0 -16154372,"Quake Mission Pack 2 Dissolution of Eternity",purchase,1.0,0 -16154372,"RAGE",purchase,1.0,0 -16154372,"Return to Castle Wolfenstein",purchase,1.0,0 -16154372,"Rogue Warrior",purchase,1.0,0 -16154372,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -16154372,"Team Fortress Classic",purchase,1.0,0 -16154372,"The Elder Scrolls III Morrowind",purchase,1.0,0 -16154372,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -16154372,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -16154372,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -16154372,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -16154372,"The Ultimate DOOM",purchase,1.0,0 -16154372,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -16154372,"Torchlight",purchase,1.0,0 -16154372,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -16154372,"Warlock - Master of the Arcane",purchase,1.0,0 -16154372,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -16154372,"Wolfenstein 3D",purchase,1.0,0 -16154372,"Wolfenstein 3D Spear of Destiny",purchase,1.0,0 -185526289,"Robocraft",purchase,1.0,0 -185526289,"Robocraft",play,16.6,0 -185526289,"Team Fortress 2",purchase,1.0,0 -185526289,"Team Fortress 2",play,2.2,0 -46115507,"Eternal Silence",purchase,1.0,0 -46115507,"Eternal Silence",play,0.4,0 -148288759,"Dota 2",purchase,1.0,0 -148288759,"Dota 2",play,363.0,0 -165264315,"Sid Meier's Civilization V",purchase,1.0,0 -165264315,"Sid Meier's Civilization V",play,8.3,0 -40130306,"Half-Life 2",purchase,1.0,0 -40130306,"Half-Life 2",play,29.0,0 -40130306,"Half-Life 2 Episode One",purchase,1.0,0 -40130306,"Half-Life 2 Episode One",play,3.2,0 -40130306,"Half-Life 2 Lost Coast",purchase,1.0,0 -40130306,"Half-Life 2 Lost Coast",play,3.0,0 -40130306,"Half-Life 2 Deathmatch",purchase,1.0,0 -40130306,"Half-Life Deathmatch Source",purchase,1.0,0 -233428283,"Dota 2",purchase,1.0,0 -233428283,"Dota 2",play,0.8,0 -160364257,"Dota 2",purchase,1.0,0 -160364257,"Dota 2",play,8.3,0 -301201297,"Magic Duels",purchase,1.0,0 -301201297,"Magic Duels",play,0.4,0 -65350586,"F.E.A.R. 3",purchase,1.0,0 -65350586,"F.E.A.R. 3",play,31.0,0 -65350586,"Call of Duty Black Ops II",purchase,1.0,0 -65350586,"Call of Duty Black Ops II",play,29.0,0 -65350586,"Serious Sam 3 BFE",purchase,1.0,0 -65350586,"Serious Sam 3 BFE",play,28.0,0 -65350586,"RAGE",purchase,1.0,0 -65350586,"RAGE",play,26.0,0 -65350586,"Hard Reset",purchase,1.0,0 -65350586,"Hard Reset",play,24.0,0 -65350586,"Sniper Ghost Warrior 2",purchase,1.0,0 -65350586,"Sniper Ghost Warrior 2",play,21.0,0 -65350586,"Deus Ex Human Revolution",purchase,1.0,0 -65350586,"Deus Ex Human Revolution",play,18.3,0 -65350586,"Sniper Ghost Warrior",purchase,1.0,0 -65350586,"Sniper Ghost Warrior",play,15.5,0 -65350586,"Shadow Harvest Phantom Ops",purchase,1.0,0 -65350586,"Shadow Harvest Phantom Ops",play,13.5,0 -65350586,"Alien Rage - Unlimited",purchase,1.0,0 -65350586,"Alien Rage - Unlimited",play,9.6,0 -65350586,"Red Faction II",purchase,1.0,0 -65350586,"Red Faction II",play,8.8,0 -65350586,"Enemy Front",purchase,1.0,0 -65350586,"Enemy Front",play,8.1,0 -65350586,"Call of Duty Modern Warfare 3",purchase,1.0,0 -65350586,"Call of Duty Modern Warfare 3",play,8.0,0 -65350586,"Lost Planet 3",purchase,1.0,0 -65350586,"Lost Planet 3",play,5.6,0 -65350586,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -65350586,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,5.6,0 -65350586,"Fallout New Vegas",purchase,1.0,0 -65350586,"Fallout New Vegas",play,3.4,0 -65350586,"Red Faction",purchase,1.0,0 -65350586,"Red Faction",play,2.6,0 -65350586,"Dead Island",purchase,1.0,0 -65350586,"Dead Island",play,2.2,0 -65350586,"Red Faction Armageddon",purchase,1.0,0 -65350586,"Red Faction Armageddon",play,2.0,0 -65350586,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -65350586,"Rising Storm/Red Orchestra 2 Multiplayer",play,1.9,0 -65350586,"BRINK",purchase,1.0,0 -65350586,"BRINK",play,1.6,0 -65350586,"Joe Danger",purchase,1.0,0 -65350586,"Joe Danger",play,1.5,0 -65350586,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -65350586,"Red Faction Guerrilla Steam Edition",play,1.1,0 -65350586,"Counter-Strike Global Offensive",purchase,1.0,0 -65350586,"Counter-Strike Global Offensive",play,0.8,0 -65350586,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -65350586,"Call of Duty Black Ops II - Zombies",play,0.5,0 -65350586,"Joe Danger 2 The Movie",purchase,1.0,0 -65350586,"Joe Danger 2 The Movie",play,0.4,0 -65350586,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -65350586,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -65350586,"Hard Reset Exile DLC",purchase,1.0,0 -65350586,"Red Faction Armageddon Soundtrack",purchase,1.0,0 -65350586,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -28116270,"Counter-Strike Source",purchase,1.0,0 -28116270,"Counter-Strike Source",play,0.2,0 -28116270,"Day of Defeat Source",purchase,1.0,0 -28116270,"Half-Life 2 Deathmatch",purchase,1.0,0 -28116270,"Half-Life 2 Lost Coast",purchase,1.0,0 -232048969,"Dota 2",purchase,1.0,0 -232048969,"Dota 2",play,118.0,0 -232048969,"Rise of Incarnates",purchase,1.0,0 -232048969,"Rise of Incarnates",play,0.5,0 -158277459,"Counter-Strike Global Offensive",purchase,1.0,0 -158277459,"Counter-Strike Global Offensive",play,594.0,0 -158277459,"PAYDAY 2",purchase,1.0,0 -158277459,"PAYDAY 2",play,16.9,0 -158277459,"Clicker Heroes",purchase,1.0,0 -158277459,"Clicker Heroes",play,3.3,0 -158277459,"The Mighty Quest For Epic Loot",purchase,1.0,0 -158277459,"The Mighty Quest For Epic Loot",play,1.2,0 -158277459,"Firefall",purchase,1.0,0 -158277459,"Firefall",play,0.8,0 -158277459,"Epic Arena",purchase,1.0,0 -158277459,"Epic Arena",play,0.5,0 -158277459,"Metro 2033",purchase,1.0,0 -158277459,"Metro 2033",play,0.3,0 -158277459,"Sigils of Elohim",purchase,1.0,0 -158277459,"Sigils of Elohim",play,0.2,0 -158277459,"APB Reloaded",purchase,1.0,0 -158277459,"Counter-Strike Nexon Zombies",purchase,1.0,0 -158277459,"Dead Island Epidemic",purchase,1.0,0 -158277459,"Heroes & Generals",purchase,1.0,0 -158277459,"Nosgoth",purchase,1.0,0 -158277459,"Realm of the Mad God",purchase,1.0,0 -158277459,"Serious Sam 3 BFE",purchase,1.0,0 -158277459,"TERA",purchase,1.0,0 -158277459,"Unturned",purchase,1.0,0 -158277459,"War Thunder",purchase,1.0,0 -135485250,"Team Fortress 2",purchase,1.0,0 -135485250,"Team Fortress 2",play,1.3,0 -255539801,"Dota 2",purchase,1.0,0 -255539801,"Dota 2",play,24.0,0 -193083287,"Dota 2",purchase,1.0,0 -193083287,"Dota 2",play,2.5,0 -73481131,"Left 4 Dead 2",purchase,1.0,0 -73481131,"Left 4 Dead 2",play,35.0,0 -301063073,"Brawlhalla",purchase,1.0,0 -301063073,"Brawlhalla",play,1.7,0 -135503830,"Football Manager 2013",purchase,1.0,0 -135503830,"Football Manager 2013",play,1022.0,0 -135503830,"Prison Architect",purchase,1.0,0 -135503830,"Prison Architect",play,15.8,0 -135503830,"NBA 2K12",purchase,1.0,0 -135503830,"NBA 2K12",play,1.5,0 -135503830,"Terraria",purchase,1.0,0 -135503830,"Terraria",play,1.2,0 -135503830,"Sleeping Dogs Definitive Edition",purchase,1.0,0 -242065391,"Unturned",purchase,1.0,0 -242065391,"Unturned",play,2.2,0 -164695293,"Team Fortress 2",purchase,1.0,0 -164695293,"Team Fortress 2",play,53.0,0 -164695293,"Toribash",purchase,1.0,0 -164695293,"Toribash",play,25.0,0 -164695293,"Panzar",purchase,1.0,0 -164695293,"Panzar",play,11.8,0 -164695293,"The Expendabros",purchase,1.0,0 -164695293,"The Expendabros",play,11.4,0 -164695293,"Robocraft",purchase,1.0,0 -164695293,"Robocraft",play,9.6,0 -164695293,"Unturned",purchase,1.0,0 -164695293,"Unturned",play,7.8,0 -164695293,"Dota 2",purchase,1.0,0 -164695293,"Dota 2",play,1.7,0 -164695293,"RaceRoom Racing Experience ",purchase,1.0,0 -164695293,"RaceRoom Racing Experience ",play,0.8,0 -6979578,"Counter-Strike",purchase,1.0,0 -6979578,"Counter-Strike",play,107.0,0 -6979578,"Counter-Strike Condition Zero",purchase,1.0,0 -6979578,"Counter-Strike Condition Zero",play,10.1,0 -6979578,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -6979578,"Counter-Strike Condition Zero Deleted Scenes",play,1.2,0 -161076041,"Farming Simulator 2013",purchase,1.0,0 -161076041,"Farming Simulator 2013",play,420.0,0 -93126933,"SimCity 4 Deluxe",purchase,1.0,0 -93126933,"SimCity 4 Deluxe",play,177.0,0 -93126933,"Overlord",purchase,1.0,0 -93126933,"Overlord",play,69.0,0 -93126933,"Anna - Extended Edition",purchase,1.0,0 -93126933,"Anna - Extended Edition",play,1.4,0 -93126933,"Overlord Raising Hell",purchase,1.0,0 -93126933,"Overlord II",purchase,1.0,0 -259454041,"Grand Theft Auto V",purchase,1.0,0 -259454041,"Grand Theft Auto V",play,12.7,0 -259454041,"Grand Theft Auto San Andreas",purchase,1.0,0 -259454041,"Grand Theft Auto San Andreas",play,0.9,0 -259454041,"Grand Theft Auto IV",purchase,1.0,0 -259454041,"GTA SA German Mac",purchase,1.0,0 -71162182,"Sid Meier's Civilization V",purchase,1.0,0 -71162182,"Sid Meier's Civilization V",play,73.0,0 -164319839,"Dota 2",purchase,1.0,0 -164319839,"Dota 2",play,1.4,0 -237879937,"Dirty Bomb",purchase,1.0,0 -237879937,"Dirty Bomb",play,66.0,0 -237879937,"Moonbase Alpha",purchase,1.0,0 -237879937,"Moonbase Alpha",play,53.0,0 -237879937,"Warface",purchase,1.0,0 -237879937,"Warface",play,1.5,0 -237879937,"Heroes & Generals",purchase,1.0,0 -237879937,"Heroes & Generals",play,0.4,0 -237879937,"Codename CURE",purchase,1.0,0 -67349307,"Sid Meier's Civilization V",purchase,1.0,0 -67349307,"Sid Meier's Civilization V",play,66.0,0 -67349307,"Portal 2",purchase,1.0,0 -67349307,"Portal 2",play,56.0,0 -67349307,"Dota 2",purchase,1.0,0 -67349307,"Dota 2",play,43.0,0 -67349307,"The Elder Scrolls V Skyrim",purchase,1.0,0 -67349307,"The Elder Scrolls V Skyrim",play,31.0,0 -67349307,"Call of Duty Black Ops",purchase,1.0,0 -67349307,"Call of Duty Black Ops",play,8.7,0 -67349307,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -67349307,"Fallout 3 - Game of the Year Edition",play,7.7,0 -67349307,"Call of Duty Modern Warfare 3",purchase,1.0,0 -67349307,"Call of Duty Modern Warfare 3",play,6.7,0 -67349307,"Counter-Strike Global Offensive",purchase,1.0,0 -67349307,"Counter-Strike Global Offensive",play,6.0,0 -67349307,"Commandos Behind Enemy Lines",purchase,1.0,0 -67349307,"Commandos Behind Enemy Lines",play,5.7,0 -67349307,"From Dust",purchase,1.0,0 -67349307,"From Dust",play,4.1,0 -67349307,"Braid",purchase,1.0,0 -67349307,"Braid",play,3.2,0 -67349307,"Portal",purchase,1.0,0 -67349307,"Portal",play,2.6,0 -67349307,"Fallout New Vegas",purchase,1.0,0 -67349307,"Fallout New Vegas",play,2.5,0 -67349307,"Tom Clancy's Splinter Cell Chaos Theory",purchase,1.0,0 -67349307,"Tom Clancy's Splinter Cell Chaos Theory",play,2.3,0 -67349307,"L.A. Noire",purchase,1.0,0 -67349307,"L.A. Noire",play,2.2,0 -67349307,"Commandos 2 Men of Courage",purchase,1.0,0 -67349307,"Commandos 2 Men of Courage",play,1.4,0 -67349307,"Test Drive Unlimited 2",purchase,1.0,0 -67349307,"Test Drive Unlimited 2",play,1.3,0 -67349307,"Titan Quest Immortal Throne",purchase,1.0,0 -67349307,"Titan Quest Immortal Throne",play,1.1,0 -67349307,"Torchlight",purchase,1.0,0 -67349307,"Torchlight",play,0.9,0 -67349307,"Heroes of Might & Magic V",purchase,1.0,0 -67349307,"Heroes of Might & Magic V",play,0.7,0 -67349307,"Titan Quest",purchase,1.0,0 -67349307,"Commandos Beyond the Call of Duty",purchase,1.0,0 -67349307,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -67349307,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -67349307,"Commandos 3 Destination Berlin",purchase,1.0,0 -67349307,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -67349307,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -146900719,"Team Fortress 2",purchase,1.0,0 -146900719,"Team Fortress 2",play,57.0,0 -146900719,"War Thunder",purchase,1.0,0 -146900719,"War Thunder",play,0.4,0 -146900719,"Forge",purchase,1.0,0 -146900719,"Forge",play,0.3,0 -146900719,"Free to Play",purchase,1.0,0 -146900719,"Global Agenda",purchase,1.0,0 -60115727,"DiRT 2",purchase,1.0,0 -60115727,"DiRT 2",play,2.2,0 -60115727,"Warface",purchase,1.0,0 -9365873,"Half-Life 2",purchase,1.0,0 -9365873,"Half-Life 2",play,0.3,0 -9365873,"Half-Life",purchase,1.0,0 -9365873,"Half-Life",play,0.3,0 -9365873,"Half-Life Deathmatch Source",purchase,1.0,0 -9365873,"Half-Life Deathmatch Source",play,0.2,0 -9365873,"Counter-Strike Source",purchase,1.0,0 -9365873,"Counter-Strike Source",play,0.2,0 -9365873,"Half-Life Source",purchase,1.0,0 -9365873,"Half-Life 2 Deathmatch",purchase,1.0,0 -9365873,"Half-Life 2 Lost Coast",purchase,1.0,0 -9365873,"Half-Life Blue Shift",purchase,1.0,0 -9365873,"Half-Life Opposing Force",purchase,1.0,0 -9365873,"Team Fortress Classic",purchase,1.0,0 -155624237,"The Elder Scrolls V Skyrim",purchase,1.0,0 -155624237,"The Elder Scrolls V Skyrim",play,19.9,0 -155624237,"Saints Row The Third",purchase,1.0,0 -155624237,"Saints Row The Third",play,1.2,0 -155624237,"Divine Souls",purchase,1.0,0 -155624237,"RIFT",purchase,1.0,0 -155624237,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -155624237,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -155624237,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -296458459,"Team Fortress 2",purchase,1.0,0 -296458459,"Team Fortress 2",play,26.0,0 -72941852,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -72941852,"Call of Duty Black Ops - Multiplayer",play,256.0,0 -72941852,"Call of Duty Black Ops",purchase,1.0,0 -72941852,"Call of Duty Black Ops",play,18.5,0 -194820693,"Dota 2",purchase,1.0,0 -194820693,"Dota 2",play,2.5,0 -194820693,"GunZ 2 The Second Duel",purchase,1.0,0 -194820693,"Soldier Front 2",purchase,1.0,0 -194820693,"theHunter",purchase,1.0,0 -194820693,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -194820693,"Unturned",purchase,1.0,0 -133048797,"Team Fortress 2",purchase,1.0,0 -133048797,"Team Fortress 2",play,3.6,0 -271279768,"Team Fortress 2",purchase,1.0,0 -271279768,"Team Fortress 2",play,0.6,0 -271279768,"Zombie Panic Source",purchase,1.0,0 -271279768,"Zombie Panic Source",play,0.3,0 -222397825,"Realm of the Mad God",purchase,1.0,0 -222397825,"Realm of the Mad God",play,0.5,0 -58121946,"Saints Row 2",purchase,1.0,0 -58121946,"Saints Row 2",play,0.6,0 -38978172,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -38978172,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -277967574,"Dota 2",purchase,1.0,0 -277967574,"Dota 2",play,194.0,0 -277967574,"Counter-Strike Global Offensive",purchase,1.0,0 -277967574,"Counter-Strike Global Offensive",play,84.0,0 -277967574,"Counter-Strike Source",purchase,1.0,0 -277967574,"Counter-Strike Source",play,0.3,0 -277967574,"Counter-Strike Nexon Zombies",purchase,1.0,0 -277967574,"Counter-Strike Nexon Zombies",play,0.1,0 -277967574,"World of Guns Gun Disassembly",purchase,1.0,0 -277967574,"Chaos Domain",purchase,1.0,0 -277967574,"Copa Petrobras de Marcas",purchase,1.0,0 -277967574,"Counter-Strike",purchase,1.0,0 -277967574,"Counter-Strike Condition Zero",purchase,1.0,0 -277967574,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -277967574,"Free to Play",purchase,1.0,0 -277967574,"Survarium",purchase,1.0,0 -303665569,"Dota 2",purchase,1.0,0 -303665569,"Dota 2",play,0.2,0 -225547899,"Dota 2",purchase,1.0,0 -225547899,"Dota 2",play,1.2,0 -210896662,"Counter-Strike Global Offensive",purchase,1.0,0 -210896662,"Counter-Strike Global Offensive",play,121.0,0 -210896662,"Everlasting Summer",purchase,1.0,0 -210896662,"Everlasting Summer",play,15.0,0 -210896662,"HuniePop",purchase,1.0,0 -210896662,"HuniePop",play,13.0,0 -210896662,"Dota 2",purchase,1.0,0 -210896662,"Dota 2",play,4.9,0 -210896662,"Sakura Clicker",purchase,1.0,0 -210896662,"Sakura Clicker",play,4.4,0 -210896662,"Team Fortress 2",purchase,1.0,0 -210896662,"Team Fortress 2",play,0.3,0 -210896662,"Clicker Heroes",purchase,1.0,0 -210896662,"Clicker Heroes",play,0.2,0 -210896662,"Lucius",purchase,1.0,0 -210896662,"Lucius",play,0.1,0 -210896662,"the static speaks my name",purchase,1.0,0 -210896662,"the static speaks my name",play,0.1,0 -210896662,"Spooky's House of Jump Scares",purchase,1.0,0 -210896662,"Batla",purchase,1.0,0 -210896662,"Close Your Eyes",purchase,1.0,0 -210896662,"Counter-Strike",purchase,1.0,0 -210896662,"Counter-Strike Condition Zero",purchase,1.0,0 -210896662,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -210896662,"Counter-Strike Source",purchase,1.0,0 -210896662,"Enclave",purchase,1.0,0 -210896662,"Epic Cards Battle(TCG)",purchase,1.0,0 -210896662,"Let the Cat In",purchase,1.0,0 -210896662,"Shadows on the Vatican - Act I Greed",purchase,1.0,0 -210896662,"Unturned",purchase,1.0,0 -210896662,"Warframe",purchase,1.0,0 -7955670,"Team Fortress 2",purchase,1.0,0 -7955670,"Team Fortress 2",play,2060.0,0 -7955670,"Counter-Strike",purchase,1.0,0 -7955670,"Counter-Strike",play,1359.0,0 -7955670,"Counter-Strike Global Offensive",purchase,1.0,0 -7955670,"Counter-Strike Global Offensive",play,297.0,0 -7955670,"Left 4 Dead 2",purchase,1.0,0 -7955670,"Left 4 Dead 2",play,160.0,0 -7955670,"Counter-Strike Condition Zero",purchase,1.0,0 -7955670,"Counter-Strike Condition Zero",play,25.0,0 -7955670,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -7955670,"Call of Duty Modern Warfare 3 - Multiplayer",play,13.6,0 -7955670,"Unreal Tournament Game of the Year Edition",purchase,1.0,0 -7955670,"Unreal Tournament Game of the Year Edition",play,7.8,0 -7955670,"SimCity 4 Deluxe",purchase,1.0,0 -7955670,"SimCity 4 Deluxe",play,3.0,0 -7955670,"Rust",purchase,1.0,0 -7955670,"Rust",play,1.9,0 -7955670,"Age of Mythology Extended Edition",purchase,1.0,0 -7955670,"Age of Mythology Extended Edition",play,0.3,0 -7955670,"Sid Meier's Civilization V",purchase,1.0,0 -7955670,"Sid Meier's Civilization V",play,0.2,0 -7955670,"Call of Duty Modern Warfare 3",purchase,1.0,0 -7955670,"Call of Duty Modern Warfare 3",play,0.1,0 -7955670,"Quake Live",purchase,1.0,0 -7955670,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -7955670,"Far Cry",purchase,1.0,0 -7955670,"Far Cry 2",purchase,1.0,0 -7955670,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -7955670,"Far Cry 3",purchase,1.0,0 -7955670,"Far Cry 3 Blood Dragon",purchase,1.0,0 -7955670,"Star Trek Online",purchase,1.0,0 -7955670,"Unturned",purchase,1.0,0 -137588230,"Counter-Strike Global Offensive",purchase,1.0,0 -137588230,"Counter-Strike Global Offensive",play,3.0,0 -137588230,"Terraria",purchase,1.0,0 -137588230,"Terraria",play,1.3,0 -137588230,"Arma 2 DayZ Mod",purchase,1.0,0 -137588230,"Arma 2 DayZ Mod",play,1.2,0 -137588230,"Arma 2",purchase,1.0,0 -137588230,"Arma 2",play,0.5,0 -137588230,"Chivalry Medieval Warfare",purchase,1.0,0 -137588230,"Chivalry Medieval Warfare",play,0.1,0 -137588230,"Arma 2 Operation Arrowhead",purchase,1.0,0 -137588230,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -137588230,"Patch testing for Chivalry",purchase,1.0,0 -231122258,"Gotham City Impostors Free To Play",purchase,1.0,0 -231122258,"Gotham City Impostors Free To Play",play,0.2,0 -231122258,"Copa Petrobras de Marcas",purchase,1.0,0 -231122258,"Copa Petrobras de Marcas",play,0.2,0 -231122258,"FreeStyle2 Street Basketball",purchase,1.0,0 -85134273,"Team Fortress 2",purchase,1.0,0 -85134273,"Team Fortress 2",play,8.9,0 -240749915,"Counter-Strike Global Offensive",purchase,1.0,0 -240749915,"Counter-Strike Global Offensive",play,72.0,0 -240749915,"Unturned",purchase,1.0,0 -240749915,"BLOCKADE 3D",purchase,1.0,0 -240749915,"Clicker Heroes",purchase,1.0,0 -240749915,"Gear Up",purchase,1.0,0 -240749915,"HAWKEN",purchase,1.0,0 -240749915,"Robocraft",purchase,1.0,0 -75377823,"Sid Meier's Civilization V",purchase,1.0,0 -75377823,"Sid Meier's Civilization V",play,1754.0,0 -75377823,"Total War ROME II - Emperor Edition",purchase,1.0,0 -75377823,"Total War ROME II - Emperor Edition",play,162.0,0 -208002927,"Counter-Strike Global Offensive",purchase,1.0,0 -208002927,"Counter-Strike Global Offensive",play,24.0,0 -184155452,"Football Manager 2014",purchase,1.0,0 -184155452,"Football Manager 2014",play,9.0,0 -179895639,"DARK SOULS II",purchase,1.0,0 -179895639,"DARK SOULS II",play,5.9,0 -179895639,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -259591984,"Path of Exile",purchase,1.0,0 -259591984,"Path of Exile",play,50.0,0 -259591984,"Blacklight Retribution",purchase,1.0,0 -259591984,"Warframe",purchase,1.0,0 -308638385,"Dota 2",purchase,1.0,0 -308638385,"Dota 2",play,37.0,0 -283264914,"Left 4 Dead 2",purchase,1.0,0 -283264914,"Left 4 Dead 2",play,10.3,0 -283264914,"Assassin's Creed IV Black Flag",purchase,1.0,0 -283264914,"Assassin's Creed IV Black Flag",play,7.9,0 -283264914,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -172518437,"The Elder Scrolls V Skyrim",purchase,1.0,0 -172518437,"The Elder Scrolls V Skyrim",play,52.0,0 -172518437,"Grand Theft Auto V",purchase,1.0,0 -172518437,"Grand Theft Auto V",play,43.0,0 -172518437,"Prison Architect",purchase,1.0,0 -172518437,"Prison Architect",play,33.0,0 -172518437,"Arma 2 Operation Arrowhead",purchase,1.0,0 -172518437,"Arma 2 Operation Arrowhead",play,31.0,0 -172518437,"Garry's Mod",purchase,1.0,0 -172518437,"Garry's Mod",play,27.0,0 -172518437,"Euro Truck Simulator 2",purchase,1.0,0 -172518437,"Euro Truck Simulator 2",play,25.0,0 -172518437,"The Sims(TM) 3",purchase,1.0,0 -172518437,"The Sims(TM) 3",play,25.0,0 -172518437,"NBA 2K16",purchase,1.0,0 -172518437,"NBA 2K16",play,23.0,0 -172518437,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -172518437,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,22.0,0 -172518437,"Plague Inc Evolved",purchase,1.0,0 -172518437,"Plague Inc Evolved",play,22.0,0 -172518437,"Arma 3",purchase,1.0,0 -172518437,"Arma 3",play,15.0,0 -172518437,"Counter-Strike Global Offensive",purchase,1.0,0 -172518437,"Counter-Strike Global Offensive",play,13.5,0 -172518437,"Portal 2",purchase,1.0,0 -172518437,"Portal 2",play,13.0,0 -172518437,"DayZ",purchase,1.0,0 -172518437,"DayZ",play,12.9,0 -172518437,"Fallout New Vegas",purchase,1.0,0 -172518437,"Fallout New Vegas",play,11.6,0 -172518437,"HuniePop",purchase,1.0,0 -172518437,"HuniePop",play,11.4,0 -172518437,"Left 4 Dead",purchase,1.0,0 -172518437,"Left 4 Dead",play,10.3,0 -172518437,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -172518437,"Tropico 3 - Steam Special Edition",play,9.7,0 -172518437,"Batman Arkham City GOTY",purchase,1.0,0 -172518437,"Batman Arkham City GOTY",play,8.3,0 -172518437,"Borderlands 2",purchase,1.0,0 -172518437,"Borderlands 2",play,7.6,0 -172518437,"Spore",purchase,1.0,0 -172518437,"Spore",play,6.2,0 -172518437,"Kerbal Space Program",purchase,1.0,0 -172518437,"Kerbal Space Program",play,4.2,0 -172518437,"Worms Revolution",purchase,1.0,0 -172518437,"Worms Revolution",play,4.1,0 -172518437,"Turbo Dismount",purchase,1.0,0 -172518437,"Turbo Dismount",play,3.9,0 -172518437,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -172518437,"Call of Duty Black Ops II - Multiplayer",play,3.8,0 -172518437,"Far Cry 4",purchase,1.0,0 -172518437,"Far Cry 4",play,3.6,0 -172518437,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -172518437,"Call of Duty Modern Warfare 3 - Multiplayer",play,3.6,0 -172518437,"LYNE",purchase,1.0,0 -172518437,"LYNE",play,3.3,0 -172518437,"Happy Wars",purchase,1.0,0 -172518437,"Happy Wars",play,3.1,0 -172518437,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",purchase,1.0,0 -172518437,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",play,3.1,0 -172518437,"Saints Row IV",purchase,1.0,0 -172518437,"Saints Row IV",play,3.0,0 -172518437,"Amnesia The Dark Descent",purchase,1.0,0 -172518437,"Amnesia The Dark Descent",play,2.7,0 -172518437,"Magic 2014 ",purchase,1.0,0 -172518437,"Magic 2014 ",play,2.6,0 -172518437,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -172518437,"Viscera Cleanup Detail Santa's Rampage",play,2.6,0 -172518437,"Grand Theft Auto Vice City",purchase,1.0,0 -172518437,"Grand Theft Auto Vice City",play,2.4,0 -172518437,"Duck Dynasty",purchase,1.0,0 -172518437,"Duck Dynasty",play,2.4,0 -172518437,"Team Fortress 2",purchase,1.0,0 -172518437,"Team Fortress 2",play,2.4,0 -172518437,"PAYDAY The Heist",purchase,1.0,0 -172518437,"PAYDAY The Heist",play,2.2,0 -172518437,"PAYDAY 2",purchase,1.0,0 -172518437,"PAYDAY 2",play,2.2,0 -172518437,"Five Nights at Freddy's",purchase,1.0,0 -172518437,"Five Nights at Freddy's",play,2.2,0 -172518437,"Stranded Deep",purchase,1.0,0 -172518437,"Stranded Deep",play,2.0,0 -172518437,"Assassin's Creed IV Black Flag",purchase,1.0,0 -172518437,"Assassin's Creed IV Black Flag",play,2.0,0 -172518437,"Cities Skylines",purchase,1.0,0 -172518437,"Cities Skylines",play,2.0,0 -172518437,"Octodad Dadliest Catch",purchase,1.0,0 -172518437,"Octodad Dadliest Catch",play,1.9,0 -172518437,"100% Orange Juice",purchase,1.0,0 -172518437,"100% Orange Juice",play,1.9,0 -172518437,"Killing Floor",purchase,1.0,0 -172518437,"Killing Floor",play,1.9,0 -172518437,"Bully Scholarship Edition",purchase,1.0,0 -172518437,"Bully Scholarship Edition",play,1.9,0 -172518437,"The Vanishing of Ethan Carter",purchase,1.0,0 -172518437,"The Vanishing of Ethan Carter",play,1.8,0 -172518437,"Tabletop Simulator",purchase,1.0,0 -172518437,"Tabletop Simulator",play,1.7,0 -172518437,"The Escapists",purchase,1.0,0 -172518437,"The Escapists",play,1.7,0 -172518437,"Half-Life 2",purchase,1.0,0 -172518437,"Half-Life 2",play,1.6,0 -172518437,"Gomo",purchase,1.0,0 -172518437,"Gomo",play,1.5,0 -172518437,"Arma 2 DayZ Mod",purchase,1.0,0 -172518437,"Arma 2 DayZ Mod",play,1.5,0 -172518437,"Mount Your Friends",purchase,1.0,0 -172518437,"Mount Your Friends",play,1.5,0 -172518437,"Bridge Project",purchase,1.0,0 -172518437,"Bridge Project",play,1.5,0 -172518437,"POSTAL 2",purchase,1.0,0 -172518437,"POSTAL 2",play,1.4,0 -172518437,"7 Days to Die",purchase,1.0,0 -172518437,"7 Days to Die",play,1.4,0 -172518437,"The Binding of Isaac",purchase,1.0,0 -172518437,"The Binding of Isaac",play,1.4,0 -172518437,"Unturned",purchase,1.0,0 -172518437,"Unturned",play,1.4,0 -172518437,"Counter-Strike Source",purchase,1.0,0 -172518437,"Counter-Strike Source",play,1.4,0 -172518437,"Grand Theft Auto San Andreas",purchase,1.0,0 -172518437,"Grand Theft Auto San Andreas",play,1.2,0 -172518437,"Blacklight Retribution",purchase,1.0,0 -172518437,"Blacklight Retribution",play,1.1,0 -172518437,"WWE 2K15",purchase,1.0,0 -172518437,"WWE 2K15",play,1.1,0 -172518437,"Bad Rats",purchase,1.0,0 -172518437,"Bad Rats",play,1.0,0 -172518437,"Hotline Miami",purchase,1.0,0 -172518437,"Hotline Miami",play,0.9,0 -172518437,"Peggle Extreme",purchase,1.0,0 -172518437,"Peggle Extreme",play,0.8,0 -172518437,"L.A. Noire",purchase,1.0,0 -172518437,"L.A. Noire",play,0.8,0 -172518437,"Crystals of Time",purchase,1.0,0 -172518437,"Crystals of Time",play,0.7,0 -172518437,"Borderlands",purchase,1.0,0 -172518437,"Borderlands",play,0.6,0 -172518437,"Lakeview Cabin Collection",purchase,1.0,0 -172518437,"Lakeview Cabin Collection",play,0.6,0 -172518437,"Pixel Puzzles Japan",purchase,1.0,0 -172518437,"Pixel Puzzles Japan",play,0.5,0 -172518437,"Far Cry 3",purchase,1.0,0 -172518437,"Far Cry 3",play,0.5,0 -172518437,"Super Killer Hornet Resurrection",purchase,1.0,0 -172518437,"Super Killer Hornet Resurrection",play,0.3,0 -172518437,"Knock-knock",purchase,1.0,0 -172518437,"Knock-knock",play,0.3,0 -172518437,"Need for Speed SHIFT",purchase,1.0,0 -172518437,"Need for Speed SHIFT",play,0.2,0 -172518437,"Arma 2",purchase,1.0,0 -172518437,"Arma 2",play,0.2,0 -172518437,"I am Bread",purchase,1.0,0 -172518437,"I am Bread",play,0.2,0 -172518437,"Dead Bits",purchase,1.0,0 -172518437,"Dead Bits",play,0.1,0 -172518437,"Roogoo",purchase,1.0,0 -172518437,"Roogoo",play,0.1,0 -172518437,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -172518437,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -172518437,"Half-Life 2 Lost Coast",purchase,1.0,0 -172518437,"Call of Duty Black Ops II",purchase,1.0,0 -172518437,"Anomaly Warzone Earth",purchase,1.0,0 -172518437,"Arma 3 Zeus",purchase,1.0,0 -172518437,"Awesomenauts",purchase,1.0,0 -172518437,"Bermuda",purchase,1.0,0 -172518437,"Call of Duty Modern Warfare 3",purchase,1.0,0 -172518437,"Clergy Splode",purchase,1.0,0 -172518437,"Depth Hunter 2 Deep Dive",purchase,1.0,0 -172518437,"Devil's Workshop pack",purchase,1.0,0 -172518437,"Flesh Eaters",purchase,1.0,0 -172518437,"Grand Theft Auto San Andreas",purchase,1.0,0 -172518437,"Grand Theft Auto Vice City",purchase,1.0,0 -172518437,"Grand Theft Auto IV",purchase,1.0,0 -172518437,"Hacker Evolution",purchase,1.0,0 -172518437,"Hacker Evolution - Untold",purchase,1.0,0 -172518437,"Happy Wars - Evil Warrior Set",purchase,1.0,0 -172518437,"HuniePop Official Digital Art Collection",purchase,1.0,0 -172518437,"HuniePop Original Soundtrack",purchase,1.0,0 -172518437,"iBomber Defense Pacific",purchase,1.0,0 -172518437,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -172518437,"Left 4 Dead 2",purchase,1.0,0 -172518437,"Magicka",purchase,1.0,0 -172518437,"Magicka Wizard Wars",purchase,1.0,0 -172518437,"Metro Last Light",purchase,1.0,0 -172518437,"No More Room in Hell",purchase,1.0,0 -172518437,"Saints Row 2",purchase,1.0,0 -172518437,"Saints Row Gat out of Hell",purchase,1.0,0 -172518437,"Saints Row The Third",purchase,1.0,0 -172518437,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -172518437,"Star Chronicles Delta Quadrant",purchase,1.0,0 -172518437,"Star Wars Knights of the Old Republic",purchase,1.0,0 -172518437,"Strike Suit Zero",purchase,1.0,0 -172518437,"Terra Incognita ~ Chapter One The Descendant",purchase,1.0,0 -172518437,"The Defenders The Second Wave",purchase,1.0,0 -172518437,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -172518437,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -172518437,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -172518437,"The Moon Sliver",purchase,1.0,0 -172518437,"The Vanishing of Ethan Carter Redux",purchase,1.0,0 -172518437,"Tinboy",purchase,1.0,0 -133268317,"Dota 2",purchase,1.0,0 -133268317,"Dota 2",play,1083.0,0 -133268317,"Infestation Survivor Stories",purchase,1.0,0 -133268317,"Infestation Survivor Stories",play,78.0,0 -133268317,"Left 4 Dead 2",purchase,1.0,0 -133268317,"Left 4 Dead 2",play,36.0,0 -133268317,"Dying Light",purchase,1.0,0 -133268317,"Dying Light",play,28.0,0 -133268317,"Insurgency",purchase,1.0,0 -133268317,"Insurgency",play,20.0,0 -133268317,"Zombie Army Trilogy",purchase,1.0,0 -133268317,"Zombie Army Trilogy",play,15.9,0 -133268317,"Counter-Strike Global Offensive",purchase,1.0,0 -133268317,"Counter-Strike Global Offensive",play,15.1,0 -133268317,"Mafia II",purchase,1.0,0 -133268317,"Mafia II",play,11.4,0 -133268317,"DayZ",purchase,1.0,0 -133268317,"DayZ",play,6.2,0 -133268317,"Alien Swarm",purchase,1.0,0 -133268317,"Alien Swarm",play,5.5,0 -133268317,"Spec Ops The Line",purchase,1.0,0 -133268317,"Spec Ops The Line",play,0.7,0 -133268317,"Nether",purchase,1.0,0 -133268317,"Nether",play,0.5,0 -133268317,"Copa Petrobras de Marcas",purchase,1.0,0 -133268317,"Dead Island Epidemic",purchase,1.0,0 -133268317,"Nether - Chosen",purchase,1.0,0 -133268317,"Nether Arena",purchase,1.0,0 -133268317,"Quake Live",purchase,1.0,0 -133268317,"Survarium",purchase,1.0,0 -167985276,"Garry's Mod",purchase,1.0,0 -167985276,"Garry's Mod",play,79.0,0 -167985276,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -167985276,"Tom Clancy's Ghost Recon Phantoms - NA",play,25.0,0 -167985276,"DayZ",purchase,1.0,0 -167985276,"DayZ",play,16.6,0 -167985276,"GunZ 2 The Second Duel",purchase,1.0,0 -167985276,"GunZ 2 The Second Duel",play,16.4,0 -167985276,"Arma 3",purchase,1.0,0 -167985276,"Arma 3",play,15.5,0 -167985276,"Counter-Strike Global Offensive",purchase,1.0,0 -167985276,"Counter-Strike Global Offensive",play,10.3,0 -167985276,"APB Reloaded",purchase,1.0,0 -167985276,"APB Reloaded",play,9.9,0 -167985276,"Archeblade",purchase,1.0,0 -167985276,"Archeblade",play,7.4,0 -167985276,"Killing Floor 2",purchase,1.0,0 -167985276,"Killing Floor 2",play,6.9,0 -167985276,"Team Fortress 2",purchase,1.0,0 -167985276,"Team Fortress 2",play,6.5,0 -167985276,"No More Room in Hell",purchase,1.0,0 -167985276,"No More Room in Hell",play,5.0,0 -167985276,"Warframe",purchase,1.0,0 -167985276,"Warframe",play,2.4,0 -167985276,"Rise of Incarnates",purchase,1.0,0 -167985276,"Rise of Incarnates",play,0.7,0 -167985276,"CroNix",purchase,1.0,0 -167985276,"CroNix",play,0.4,0 -167985276,"Arma 3 Zeus",purchase,1.0,0 -167985276,"CrimeCraft GangWars",purchase,1.0,0 -53678595,"Counter-Strike",purchase,1.0,0 -53678595,"Counter-Strike Condition Zero",purchase,1.0,0 -53678595,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -203058502,"Dota 2",purchase,1.0,0 -203058502,"Dota 2",play,116.0,0 -67191748,"Napoleon Total War",purchase,1.0,0 -67191748,"Napoleon Total War",play,66.0,0 -123010581,"Blades of Time",purchase,1.0,0 -27371247,"Counter-Strike Source",purchase,1.0,0 -27371247,"Half-Life 2",purchase,1.0,0 -27371247,"Half-Life 2 Deathmatch",purchase,1.0,0 -27371247,"Half-Life 2 Lost Coast",purchase,1.0,0 -27371247,"Half-Life Source",purchase,1.0,0 -27371247,"Half-Life Deathmatch Source",purchase,1.0,0 -90104676,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -90104676,"Call of Duty Modern Warfare 3 - Multiplayer",play,67.0,0 -90104676,"Assassin's Creed III",purchase,1.0,0 -90104676,"Assassin's Creed III",play,53.0,0 -90104676,"The Elder Scrolls V Skyrim",purchase,1.0,0 -90104676,"The Elder Scrolls V Skyrim",play,47.0,0 -90104676,"FINAL FANTASY XIV A Realm Reborn",purchase,1.0,0 -90104676,"FINAL FANTASY XIV A Realm Reborn",play,19.0,0 -90104676,"Age of Empires II HD Edition",purchase,1.0,0 -90104676,"Age of Empires II HD Edition",play,12.4,0 -90104676,"GRID 2",purchase,1.0,0 -90104676,"GRID 2",play,6.9,0 -90104676,"Call of Duty Modern Warfare 3",purchase,1.0,0 -90104676,"Call of Duty Modern Warfare 3",play,5.9,0 -90104676,"A Game of Thrones - Genesis",purchase,1.0,0 -90104676,"A Game of Thrones - Genesis",play,1.2,0 -90104676,"Arma 2 Operation Arrowhead",purchase,1.0,0 -90104676,"Arma 2 Operation Arrowhead",play,0.4,0 -90104676,"Arma 2",purchase,1.0,0 -90104676,"Age of Empires II HD The Forgotten",purchase,1.0,0 -90104676,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -90104676,"FINAL FANTASY XIV A Realm Reborn (PAL version)",purchase,1.0,0 -260167329,"Counter-Strike Nexon Zombies",purchase,1.0,0 -260167329,"Trove",purchase,1.0,0 -105885524,"RAGE",purchase,1.0,0 -216158727,"Dota 2",purchase,1.0,0 -216158727,"Dota 2",play,133.0,0 -216158727,"Unturned",purchase,1.0,0 -148322156,"Team Fortress 2",purchase,1.0,0 -148322156,"Team Fortress 2",play,1.1,0 -148322156,"Robocraft",purchase,1.0,0 -148322156,"Robocraft",play,0.9,0 -148322156,"WAKFU",purchase,1.0,0 -148322156,"WAKFU",play,0.4,0 -148322156,"Magic Barrage - Bitferno",purchase,1.0,0 -148322156,"Magic Barrage - Bitferno",play,0.4,0 -148322156,"Heroes & Generals",purchase,1.0,0 -148322156,"Heroes & Generals",play,0.3,0 -148322156,"Dota 2",purchase,1.0,0 -148322156,"Dota 2",play,0.3,0 -148322156,"Brick-Force",purchase,1.0,0 -148322156,"Brick-Force",play,0.2,0 -148322156,"Unturned",purchase,1.0,0 -148322156,"Unturned",play,0.1,0 -148322156,"Everlasting Summer",purchase,1.0,0 -148322156,"Everlasting Summer",play,0.1,0 -148322156,"Combat Monsters",purchase,1.0,0 -148322156,"Defiance",purchase,1.0,0 -148322156,"Dizzel",purchase,1.0,0 -148322156,"Lost Saga North America",purchase,1.0,0 -148322156,"Reversion - The Escape",purchase,1.0,0 -148322156,"Royal Quest",purchase,1.0,0 -148322156,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -148322156,"The Way of Life Free Edition",purchase,1.0,0 -1072465,"Counter-Strike Source",purchase,1.0,0 -1072465,"Counter-Strike Source",play,75.0,0 -1072465,"Counter-Strike",purchase,1.0,0 -1072465,"Counter-Strike",play,12.7,0 -1072465,"Counter-Strike Condition Zero",purchase,1.0,0 -1072465,"Counter-Strike Condition Zero",play,9.8,0 -1072465,"Day of Defeat",purchase,1.0,0 -1072465,"Day of Defeat",play,3.4,0 -1072465,"Zombie Panic Source",purchase,1.0,0 -1072465,"Zombie Panic Source",play,1.7,0 -1072465,"Half-Life",purchase,1.0,0 -1072465,"Half-Life",play,0.1,0 -1072465,"Ricochet",purchase,1.0,0 -1072465,"Deathmatch Classic",purchase,1.0,0 -1072465,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -1072465,"Half-Life 2",purchase,1.0,0 -1072465,"Half-Life 2 Deathmatch",purchase,1.0,0 -1072465,"Half-Life 2 Lost Coast",purchase,1.0,0 -1072465,"Half-Life Blue Shift",purchase,1.0,0 -1072465,"Half-Life Opposing Force",purchase,1.0,0 -1072465,"Team Fortress Classic",purchase,1.0,0 -138691112,"Dota 2",purchase,1.0,0 -138691112,"Dota 2",play,3.9,0 -207077290,"Dota 2",purchase,1.0,0 -207077290,"Dota 2",play,1268.0,0 -208955921,"Team Fortress 2",purchase,1.0,0 -208955921,"Team Fortress 2",play,6.0,0 -208955921,"Unturned",purchase,1.0,0 -208955921,"Unturned",play,0.2,0 -128287411,"Dota 2",purchase,1.0,0 -128287411,"Dota 2",play,1285.0,0 -128287411,"Heroes & Generals",purchase,1.0,0 -167919935,"Team Fortress 2",purchase,1.0,0 -167919935,"Team Fortress 2",play,0.3,0 -117488479,"Dota 2",purchase,1.0,0 -117488479,"Dota 2",play,2989.0,0 -117488479,"Counter-Strike Global Offensive",purchase,1.0,0 -117488479,"Counter-Strike Global Offensive",play,1088.0,0 -117488479,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -117488479,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,34.0,0 -117488479,"Warframe",purchase,1.0,0 -117488479,"Warframe",play,27.0,0 -117488479,"Ace of Spades",purchase,1.0,0 -117488479,"Ace of Spades",play,20.0,0 -117488479,"LEGO MARVEL Super Heroes",purchase,1.0,0 -117488479,"LEGO MARVEL Super Heroes",play,20.0,0 -117488479,"GunZ 2 The Second Duel",purchase,1.0,0 -117488479,"GunZ 2 The Second Duel",play,19.2,0 -117488479,"Serious Sam 2",purchase,1.0,0 -117488479,"Serious Sam 2",play,16.9,0 -117488479,"Garry's Mod",purchase,1.0,0 -117488479,"Garry's Mod",play,15.7,0 -117488479,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -117488479,"Just Cause 2 Multiplayer Mod",play,15.3,0 -117488479,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -117488479,"Resident Evil 5 / Biohazard 5",play,14.1,0 -117488479,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",purchase,1.0,0 -117488479,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",play,13.4,0 -117488479,"NBA 2K14",purchase,1.0,0 -117488479,"NBA 2K14",play,13.3,0 -117488479,"Panzar",purchase,1.0,0 -117488479,"Panzar",play,13.2,0 -117488479,"Just Cause 2",purchase,1.0,0 -117488479,"Just Cause 2",play,8.0,0 -117488479,"Grand Theft Auto IV",purchase,1.0,0 -117488479,"Grand Theft Auto IV",play,7.3,0 -117488479,"Mortal Kombat Komplete Edition",purchase,1.0,0 -117488479,"Mortal Kombat Komplete Edition",play,6.1,0 -117488479,"Kerbal Space Program",purchase,1.0,0 -117488479,"Kerbal Space Program",play,4.5,0 -117488479,"Fistful of Frags",purchase,1.0,0 -117488479,"Fistful of Frags",play,4.2,0 -117488479,"Family Guy Back to the Multiverse",purchase,1.0,0 -117488479,"Family Guy Back to the Multiverse",play,4.0,0 -117488479,"Team Fortress 2",purchase,1.0,0 -117488479,"Team Fortress 2",play,3.8,0 -117488479,"Rogue Legacy",purchase,1.0,0 -117488479,"Rogue Legacy",play,3.5,0 -117488479,"War Thunder",purchase,1.0,0 -117488479,"War Thunder",play,2.5,0 -117488479,"Free to Play",purchase,1.0,0 -117488479,"Free to Play",play,2.5,0 -117488479,"Mount Your Friends",purchase,1.0,0 -117488479,"Mount Your Friends",play,2.1,0 -117488479,"Toribash",purchase,1.0,0 -117488479,"Toribash",play,2.0,0 -117488479,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -117488479,"Star Wars Jedi Knight Jedi Academy",play,1.9,0 -117488479,"Robocraft",purchase,1.0,0 -117488479,"Robocraft",play,1.8,0 -117488479,"Realm of the Mad God",purchase,1.0,0 -117488479,"Realm of the Mad God",play,1.6,0 -117488479,"PAYDAY 2",purchase,1.0,0 -117488479,"PAYDAY 2",play,1.6,0 -117488479,"Brtal Legend",purchase,1.0,0 -117488479,"Brtal Legend",play,1.4,0 -117488479,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -117488479,"Star Wars - Jedi Knight II Jedi Outcast",play,0.9,0 -117488479,"Bloody Trapland",purchase,1.0,0 -117488479,"Bloody Trapland",play,0.7,0 -117488479,"Lethal League",purchase,1.0,0 -117488479,"Lethal League",play,0.4,0 -117488479,"Ethan Meteor Hunter",purchase,1.0,0 -117488479,"Ethan Meteor Hunter",play,0.3,0 -117488479,"Spiral Knights",purchase,1.0,0 -117488479,"Spiral Knights",play,0.3,0 -117488479,"Batman Arkham Origins",purchase,1.0,0 -117488479,"Batman Arkham Origins",play,0.2,0 -117488479,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -117488479,"theHunter",purchase,1.0,0 -117488479,"Caster",purchase,1.0,0 -117488479,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -117488479,"Guns of Icarus Online",purchase,1.0,0 -117488479,"Heroes & Generals",purchase,1.0,0 -117488479,"Hotline Miami 2 Wrong Number Digital Comic",purchase,1.0,0 -117488479,"Neverwinter",purchase,1.0,0 -117488479,"Quake Live",purchase,1.0,0 -117488479,"Quantum Rush Online",purchase,1.0,0 -117488479,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -117488479,"Star Wars Dark Forces",purchase,1.0,0 -117488479,"Stronghold Kingdoms",purchase,1.0,0 -117488479,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -117488479,"Villagers and Heroes",purchase,1.0,0 -117488479,"Zombies Monsters Robots",purchase,1.0,0 -294256282,"Dota 2",purchase,1.0,0 -294256282,"Dota 2",play,4.8,0 -95380196,"Call of Duty Ghosts",purchase,1.0,0 -95380196,"Call of Duty Ghosts",play,31.0,0 -95380196,"Call of Duty Advanced Warfare",purchase,1.0,0 -95380196,"Call of Duty Advanced Warfare",play,28.0,0 -95380196,"Call of Duty Black Ops II",purchase,1.0,0 -95380196,"Call of Duty Black Ops II",play,27.0,0 -95380196,"Call of Duty Modern Warfare 3",purchase,1.0,0 -95380196,"Call of Duty Modern Warfare 3",play,19.5,0 -95380196,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -95380196,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -95380196,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -95380196,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -95380196,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -189929692,"The Binding of Isaac Rebirth",purchase,1.0,0 -189929692,"The Binding of Isaac Rebirth",play,94.0,0 -189929692,"Unturned",purchase,1.0,0 -189929692,"Unturned",play,0.9,0 -127797363,"Team Fortress 2",purchase,1.0,0 -127797363,"Team Fortress 2",play,0.2,0 -52255266,"Lost Planet Extreme Condition",purchase,1.0,0 -52255266,"Lost Planet Extreme Condition",play,0.9,0 -150974633,"Dota 2",purchase,1.0,0 -150974633,"Dota 2",play,8.5,0 -150974633,"Counter-Strike Global Offensive",purchase,1.0,0 -150974633,"Counter-Strike Global Offensive",play,1.4,0 -162421622,"Dota 2",purchase,1.0,0 -162421622,"Dota 2",play,587.0,0 -162421622,"Rust",purchase,1.0,0 -162421622,"Rust",play,102.0,0 -162421622,"DARK SOULS II",purchase,1.0,0 -162421622,"DARK SOULS II",play,55.0,0 -162421622,"Counter-Strike Global Offensive",purchase,1.0,0 -162421622,"Counter-Strike Global Offensive",play,51.0,0 -162421622,"Evolve",purchase,1.0,0 -162421622,"Evolve",play,27.0,0 -162421622,"PAYDAY 2",purchase,1.0,0 -162421622,"PAYDAY 2",play,24.0,0 -162421622,"Nosgoth",purchase,1.0,0 -162421622,"Nosgoth",play,24.0,0 -162421622,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -162421622,"DARK SOULS II Scholar of the First Sin",play,17.1,0 -162421622,"The Forest",purchase,1.0,0 -162421622,"The Forest",play,16.8,0 -162421622,"Saints Row The Third",purchase,1.0,0 -162421622,"Saints Row The Third",play,13.5,0 -162421622,"Saints Row IV",purchase,1.0,0 -162421622,"Saints Row IV",play,10.2,0 -162421622,"Team Fortress 2",purchase,1.0,0 -162421622,"Team Fortress 2",play,10.0,0 -162421622,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -162421622,"Dark Souls Prepare to Die Edition",play,7.1,0 -162421622,"Dead Island Riptide",purchase,1.0,0 -162421622,"Dead Island Riptide",play,6.5,0 -162421622,"Warframe",purchase,1.0,0 -162421622,"Warframe",play,5.6,0 -162421622,"LIMBO",purchase,1.0,0 -162421622,"LIMBO",play,4.8,0 -162421622,"Magicka Wizard Wars",purchase,1.0,0 -162421622,"Magicka Wizard Wars",play,4.3,0 -162421622,"Remember Me",purchase,1.0,0 -162421622,"Remember Me",play,4.3,0 -162421622,"Garry's Mod",purchase,1.0,0 -162421622,"Garry's Mod",play,4.1,0 -162421622,"Dying Light",purchase,1.0,0 -162421622,"Dying Light",play,2.7,0 -162421622,"F.E.A.R. 3",purchase,1.0,0 -162421622,"F.E.A.R. 3",play,2.4,0 -162421622,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -162421622,"Kingdoms of Amalur Reckoning",play,2.2,0 -162421622,"Unturned",purchase,1.0,0 -162421622,"Unturned",play,2.0,0 -162421622,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -162421622,"METAL GEAR RISING REVENGEANCE",play,1.2,0 -162421622,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -162421622,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.9,0 -162421622,"99 Spirits",purchase,1.0,0 -162421622,"Survarium",purchase,1.0,0 -162421622,"Tsukumogami",purchase,1.0,0 -162421622,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -162421622,"Crow - Hunter (Trapper Class)",purchase,1.0,0 -162421622,"No More Room in Hell",purchase,1.0,0 -162421622,"Saints Row 2",purchase,1.0,0 -162421622,"Soul Gambler",purchase,1.0,0 -162421622,"Soul Gambler Artbook & Soundtrack",purchase,1.0,0 -162421622,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -198799464,"Dota 2",purchase,1.0,0 -198799464,"Dota 2",play,0.4,0 -297592267,"Age of Empires II HD Edition",purchase,1.0,0 -107324790,"Football Manager 2013",purchase,1.0,0 -107324790,"Football Manager 2013",play,462.0,0 -107324790,"Football Manager 2012",purchase,1.0,0 -107324790,"Football Manager 2012",play,374.0,0 -107324790,"Football Manager 2014",purchase,1.0,0 -107324790,"Football Manager 2014",play,311.0,0 -107324790,"Football Manager 2015",purchase,1.0,0 -107324790,"Football Manager 2015",play,310.0,0 -168726386,"Dota 2",purchase,1.0,0 -168726386,"Dota 2",play,196.0,0 -168726386,"Grand Theft Auto V",purchase,1.0,0 -168726386,"Grand Theft Auto V",play,82.0,0 -168726386,"Castle Crashers",purchase,1.0,0 -168726386,"Castle Crashers",play,17.7,0 -168726386,"Counter-Strike Global Offensive",purchase,1.0,0 -168726386,"Counter-Strike Global Offensive",play,8.6,0 -168726386,"Gaokao.Love.100Days",purchase,1.0,0 -168726386,"Gaokao.Love.100Days",play,6.2,0 -168726386,"Arma 3",purchase,1.0,0 -168726386,"Arma 3",play,2.1,0 -168726386,"Team Fortress 2",purchase,1.0,0 -168726386,"Team Fortress 2",play,0.8,0 -168726386,"Team Fortress Classic",purchase,1.0,0 -168726386,"Arma 3 Zeus",purchase,1.0,0 -64514291,"Cities Skylines",purchase,1.0,0 -64514291,"Cities Skylines",play,285.0,0 -64514291,"NBA 2K16",purchase,1.0,0 -64514291,"NBA 2K16",play,265.0,0 -64514291,"WWE 2K15",purchase,1.0,0 -64514291,"WWE 2K15",play,126.0,0 -64514291,"PAYDAY 2",purchase,1.0,0 -64514291,"PAYDAY 2",play,88.0,0 -64514291,"Robocraft",purchase,1.0,0 -64514291,"Robocraft",play,29.0,0 -64514291,"Rome Total War",purchase,1.0,0 -64514291,"Rome Total War",play,26.0,0 -64514291,"Saints Row IV",purchase,1.0,0 -64514291,"Saints Row IV",play,23.0,0 -64514291,"Medieval II Total War",purchase,1.0,0 -64514291,"Medieval II Total War",play,19.5,0 -64514291,"Besiege",purchase,1.0,0 -64514291,"Besiege",play,9.3,0 -64514291,"Empire Total War",purchase,1.0,0 -64514291,"Empire Total War",play,9.0,0 -64514291,"StarMade",purchase,1.0,0 -64514291,"StarMade",play,7.7,0 -64514291,"Dead Island",purchase,1.0,0 -64514291,"Dead Island",play,3.3,0 -64514291,"Train Simulator",purchase,1.0,0 -64514291,"Train Simulator",play,3.0,0 -64514291,"Omerta - City of Gangsters",purchase,1.0,0 -64514291,"Omerta - City of Gangsters",play,2.8,0 -64514291,"Mortal Kombat Komplete Edition",purchase,1.0,0 -64514291,"Mortal Kombat Komplete Edition",play,1.3,0 -64514291,"BRINK",purchase,1.0,0 -64514291,"BRINK",play,0.7,0 -64514291,"Defiance",purchase,1.0,0 -64514291,"Defiance",play,0.4,0 -64514291,"No More Room in Hell",purchase,1.0,0 -64514291,"No More Room in Hell",play,0.2,0 -64514291,"The Ultimate DOOM",purchase,1.0,0 -64514291,"The Ultimate DOOM",play,0.2,0 -64514291,"Dead Island Riptide",purchase,1.0,0 -64514291,"Enclave",purchase,1.0,0 -64514291,"Omerta - City of Gangsters The Bulgarian Colossus",purchase,1.0,0 -64514291,"Omerta - Damsel in Distress",purchase,1.0,0 -64514291,"Omerta - The Con Artist",purchase,1.0,0 -64514291,"Omerta - The Japanese Incentive",purchase,1.0,0 -64514291,"PAYDAY The Heist",purchase,1.0,0 -64514291,"PAYDAY Wolf Pack",purchase,1.0,0 -64514291,"Saints Row 2",purchase,1.0,0 -64514291,"Saints Row The Third",purchase,1.0,0 -64514291,"Talisman Prologue",purchase,1.0,0 -64514291,"Tropico 5",purchase,1.0,0 -64514291,"Tropico 5 - Generalissimo",purchase,1.0,0 -64514291,"Tropico 5 - Inquisition",purchase,1.0,0 -64514291,"Tropico 5 - Mad World",purchase,1.0,0 -64514291,"Ultra Street Fighter IV",purchase,1.0,0 -211310294,"Dota 2",purchase,1.0,0 -211310294,"Dota 2",play,1.4,0 -108511499,"Monkey Island 2 Special Edition",purchase,1.0,0 -108511499,"Monkey Island 2 Special Edition",play,14.8,0 -108511499,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -173717751,"Dota 2",purchase,1.0,0 -173717751,"Dota 2",play,248.0,0 -223829418,"Dota 2",purchase,1.0,0 -223829418,"Dota 2",play,90.0,0 -216500614,"Counter-Strike Global Offensive",purchase,1.0,0 -216500614,"Counter-Strike Global Offensive",play,348.0,0 -216500614,"Blacklight Retribution",purchase,1.0,0 -216500614,"HAWKEN",purchase,1.0,0 -216500614,"Panzar",purchase,1.0,0 -216500614,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -216500614,"Warframe",purchase,1.0,0 -216500614,"War Thunder",purchase,1.0,0 -308238255,"Dota 2",purchase,1.0,0 -308238255,"Dota 2",play,18.1,0 -194305157,"Counter-Strike Global Offensive",purchase,1.0,0 -194305157,"Counter-Strike Global Offensive",play,46.0,0 -194305157,"Unturned",purchase,1.0,0 -194305157,"Unturned",play,3.1,0 -194305157,"The Elder Scrolls V Skyrim",purchase,1.0,0 -194305157,"The Elder Scrolls V Skyrim",play,0.9,0 -194305157,"No More Room in Hell",purchase,1.0,0 -194305157,"The Mighty Quest For Epic Loot",purchase,1.0,0 -194305157,"Warframe",purchase,1.0,0 -120421832,"Dota 2",purchase,1.0,0 -120421832,"Dota 2",play,1519.0,0 -120421832,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -120421832,"THE KING OF FIGHTERS XIII STEAM EDITION",play,14.1,0 -120421832,"The Binding of Isaac",purchase,1.0,0 -120421832,"The Binding of Isaac",play,11.8,0 -120421832,"Don't Starve",purchase,1.0,0 -120421832,"Don't Starve",play,4.0,0 -120421832,"Don't Starve Together Beta",purchase,1.0,0 -120421832,"Magicka Wizard Wars",purchase,1.0,0 -180922178,"Dota 2",purchase,1.0,0 -180922178,"Dota 2",play,1.8,0 -178114805,"Team Fortress 2",purchase,1.0,0 -178114805,"Team Fortress 2",play,0.2,0 -109660238,"Dota 2",purchase,1.0,0 -109660238,"Dota 2",play,1859.0,0 -191731084,"Dota 2",purchase,1.0,0 -191731084,"Dota 2",play,150.0,0 -191731084,"Warframe",purchase,1.0,0 -191731084,"Warframe",play,0.3,0 -191731084,"FreeStyle2 Street Basketball",purchase,1.0,0 -191731084,"Galcon 2",purchase,1.0,0 -191731084,"Happy Wars",purchase,1.0,0 -191731084,"Robocraft",purchase,1.0,0 -191731084,"Spiral Knights",purchase,1.0,0 -191731084,"TERA",purchase,1.0,0 -19422331,"Counter-Strike Source",purchase,1.0,0 -19422331,"Counter-Strike Source",play,5.7,0 -168791218,"Team Fortress 2",purchase,1.0,0 -168791218,"Team Fortress 2",play,0.4,0 -179802416,"Dota 2",purchase,1.0,0 -179802416,"Dota 2",play,0.6,0 -134225377,"Star Trek D-A-C",purchase,1.0,0 -134225377,"Star Trek D-A-C",play,0.3,0 -174445146,"Dota 2",purchase,1.0,0 -174445146,"Dota 2",play,12.9,0 -297554632,"BLOCKADE 3D",purchase,1.0,0 -297554632,"BLOCKADE 3D",play,1.0,0 -142602286,"Team Fortress 2",purchase,1.0,0 -142602286,"Team Fortress 2",play,22.0,0 -181897693,"Team Fortress 2",purchase,1.0,0 -181897693,"Team Fortress 2",play,2.0,0 -212491485,"Dota 2",purchase,1.0,0 -212491485,"Dota 2",play,0.1,0 -138690776,"Dota 2",purchase,1.0,0 -138690776,"Dota 2",play,124.0,0 -14256995,"Half-Life 2",purchase,1.0,0 -14256995,"Counter-Strike",purchase,1.0,0 -14256995,"Counter-Strike Condition Zero",purchase,1.0,0 -14256995,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -14256995,"Counter-Strike Source",purchase,1.0,0 -14256995,"Day of Defeat",purchase,1.0,0 -14256995,"Deathmatch Classic",purchase,1.0,0 -14256995,"Half-Life 2 Deathmatch",purchase,1.0,0 -14256995,"Half-Life 2 Lost Coast",purchase,1.0,0 -14256995,"Ricochet",purchase,1.0,0 -45066450,"Portal",purchase,1.0,0 -45066450,"Portal",play,3.6,0 -217554887,"Counter-Strike Global Offensive",purchase,1.0,0 -217554887,"Counter-Strike Global Offensive",play,397.0,0 -217554887,"Dota 2",purchase,1.0,0 -217554887,"Dota 2",play,58.0,0 -217554887,"AirBuccaneers",purchase,1.0,0 -217554887,"Archeblade",purchase,1.0,0 -217554887,"Clicker Heroes",purchase,1.0,0 -217554887,"Gear Up",purchase,1.0,0 -217554887,"Robocraft",purchase,1.0,0 -217554887,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -217554887,"Unturned",purchase,1.0,0 -106259770,"Dota 2",purchase,1.0,0 -106259770,"Dota 2",play,349.0,0 -106259770,"PixelJunk Monsters Ultimate",purchase,1.0,0 -106259770,"PixelJunk Monsters Ultimate",play,3.7,0 -106259770,"Uriel's Chasm",purchase,1.0,0 -106259770,"Uriel's Chasm",play,3.1,0 -106259770,"Two Worlds Epic Edition",purchase,1.0,0 -106259770,"Two Worlds Epic Edition",play,3.0,0 -106259770,"Speedball 2 HD",purchase,1.0,0 -106259770,"Speedball 2 HD",play,2.6,0 -106259770,"XCOM Enemy Unknown",purchase,1.0,0 -106259770,"XCOM Enemy Unknown",play,2.5,0 -106259770,"PAYDAY The Heist",purchase,1.0,0 -106259770,"PAYDAY The Heist",play,2.4,0 -106259770,"Victim of Xen",purchase,1.0,0 -106259770,"Victim of Xen",play,2.3,0 -106259770,"Collapse",purchase,1.0,0 -106259770,"Collapse",play,2.1,0 -106259770,"Memories of a Vagabond",purchase,1.0,0 -106259770,"Memories of a Vagabond",play,2.0,0 -106259770,"Bad Rats",purchase,1.0,0 -106259770,"Bad Rats",play,2.0,0 -106259770,"Afterfall InSanity Extended Edition",purchase,1.0,0 -106259770,"Afterfall InSanity Extended Edition",play,1.9,0 -106259770,"The Culling Of The Cows",purchase,1.0,0 -106259770,"The Culling Of The Cows",play,1.8,0 -106259770,"Dead Bits",purchase,1.0,0 -106259770,"Dead Bits",play,1.4,0 -106259770,"Racer 8",purchase,1.0,0 -106259770,"Racer 8",play,1.3,0 -106259770,"Deadbreed",purchase,1.0,0 -106259770,"Deadbreed",play,1.2,0 -106259770,"Gun Monkeys",purchase,1.0,0 -106259770,"Gun Monkeys",play,1.0,0 -106259770,"Sparkle 2 Evo",purchase,1.0,0 -106259770,"Sparkle 2 Evo",play,0.9,0 -106259770,"GEARCRACK Arena",purchase,1.0,0 -106259770,"GEARCRACK Arena",play,0.5,0 -106259770,"Borealis",purchase,1.0,0 -106259770,"Borealis",play,0.5,0 -106259770,"Archeblade",purchase,1.0,0 -106259770,"Brawlhalla",purchase,1.0,0 -106259770,"Chaos Domain",purchase,1.0,0 -106259770,"Clans",purchase,1.0,0 -106259770,"Cobi Treasure Deluxe",purchase,1.0,0 -106259770,"Commander Conquest of the Americas Gold",purchase,1.0,0 -106259770,"Counter-Strike Nexon Zombies",purchase,1.0,0 -106259770,"Dead Island Epidemic",purchase,1.0,0 -106259770,"Dethroned!",purchase,1.0,0 -106259770,"Dogs of War Online - Beta",purchase,1.0,0 -106259770,"Dungeonland",purchase,1.0,0 -106259770,"F.E.A.R. Online",purchase,1.0,0 -106259770,"Free to Play",purchase,1.0,0 -106259770,"Ionball 2 Ionstorm",purchase,1.0,0 -106259770,"Magicka Wizard Wars",purchase,1.0,0 -106259770,"Metro 2033",purchase,1.0,0 -106259770,"Murder Miners",purchase,1.0,0 -106259770,"Numba Deluxe",purchase,1.0,0 -106259770,"Quake Live",purchase,1.0,0 -106259770,"Spiral Knights",purchase,1.0,0 -106259770,"The Mighty Quest For Epic Loot",purchase,1.0,0 -106259770,"Unturned",purchase,1.0,0 -106259770,"Weird Worlds Return to Infinite Space",purchase,1.0,0 -106259770,"Wickland",purchase,1.0,0 -303832667,"Dota 2",purchase,1.0,0 -303832667,"Dota 2",play,6.1,0 -200219550,"Warframe",purchase,1.0,0 -262894372,"Dota 2",purchase,1.0,0 -262894372,"Dota 2",play,29.0,0 -262894372,"FreeStyle2 Street Basketball",purchase,1.0,0 -215708631,"Dota 2",purchase,1.0,0 -215708631,"Dota 2",play,0.6,0 -215708631,"The Way of Life Free Edition",purchase,1.0,0 -94156206,"Dead Island",purchase,1.0,0 -243065024,"Counter-Strike",purchase,1.0,0 -243065024,"Counter-Strike",play,201.0,0 -243065024,"Dota 2",purchase,1.0,0 -243065024,"Dota 2",play,11.5,0 -243065024,"Counter-Strike Condition Zero",purchase,1.0,0 -243065024,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -87886634,"APB Reloaded",purchase,1.0,0 -87886634,"Rise of Incarnates",purchase,1.0,0 -87886634,"Unturned",purchase,1.0,0 -49770308,"Left 4 Dead",purchase,1.0,0 -49770308,"Left 4 Dead",play,9.3,0 -29750135,"Codename Gordon",purchase,1.0,0 -29750135,"Codename Gordon",play,0.1,0 -300237358,"Counter-Strike Nexon Zombies",purchase,1.0,0 -300237358,"Counter-Strike Nexon Zombies",play,3.5,0 -126883374,"Serious Sam HD The Second Encounter",purchase,1.0,0 -126883374,"Serious Sam HD The Second Encounter",play,0.6,0 -246730947,"DiRT Rally",purchase,1.0,0 -107307955,"Call of Duty 2",purchase,1.0,0 -107307955,"Call of Duty 2",play,0.6,0 -107307955,"DiRT Showdown",purchase,1.0,0 -107307955,"DiRT Showdown",play,0.1,0 -107307955,"Call of Duty United Offensive",purchase,1.0,0 -107307955,"Call of Duty",purchase,1.0,0 -177488743,"War Thunder",purchase,1.0,0 -177488743,"War Thunder",play,31.0,0 -177488743,"Warface",purchase,1.0,0 -177488743,"Warface",play,9.8,0 -177488743,"La Tale",purchase,1.0,0 -201768926,"Team Fortress 2",purchase,1.0,0 -201768926,"Team Fortress 2",play,79.0,0 -201768926,"Grand Theft Auto V",purchase,1.0,0 -201768926,"Grand Theft Auto V",play,5.5,0 -166478332,"Dota 2",purchase,1.0,0 -166478332,"Dota 2",play,0.3,0 -114000267,"Legacy of Kain Soul Reaver",purchase,1.0,0 -114000267,"Legacy of Kain Soul Reaver",play,0.4,0 -114000267,"FINAL FANTASY VII",purchase,1.0,0 -114000267,"FINAL FANTASY VII",play,0.4,0 -114000267,"Legacy of Kain Soul Reaver 2",purchase,1.0,0 -114000267,"Legacy of Kain Soul Reaver 2",play,0.2,0 -114000267,"Quantum Conundrum",purchase,1.0,0 -114000267,"Floating Point",purchase,1.0,0 -114000267,"Portal",purchase,1.0,0 -309058572,"Dota 2",purchase,1.0,0 -309058572,"Dota 2",play,5.2,0 -119626898,"Sid Meier's Civilization V",purchase,1.0,0 -119626898,"Sid Meier's Civilization V",play,743.0,0 -119626898,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -206560172,"Call of Duty Ghosts",purchase,1.0,0 -206560172,"Call of Duty Ghosts",play,11.2,0 -206560172,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -206560172,"Call of Duty Ghosts - Multiplayer",play,0.3,0 -29491264,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -29491264,"Red Orchestra Ostfront 41-45",play,0.3,0 -29491264,"Darkest Hour Europe '44-'45",purchase,1.0,0 -29491264,"Mare Nostrum",purchase,1.0,0 -176677454,"Dota 2",purchase,1.0,0 -176677454,"Dota 2",play,0.6,0 -179022513,"Dota 2",purchase,1.0,0 -179022513,"Dota 2",play,13.9,0 -179022513,"Warframe",purchase,1.0,0 -237581229,"Dota 2",purchase,1.0,0 -237581229,"Dota 2",play,1.7,0 -237581229,"GunZ 2 The Second Duel",purchase,1.0,0 -290081808,"Dota 2",purchase,1.0,0 -290081808,"Dota 2",play,28.0,0 -95363375,"Sniper Ghost Warrior",purchase,1.0,0 -95363375,"Sniper Ghost Warrior",play,92.0,0 -188450158,"Ultra Street Fighter IV",purchase,1.0,0 -188450158,"Ultra Street Fighter IV",play,286.0,0 -192949772,"Sid Meier's Civilization V",purchase,1.0,0 -192949772,"Sid Meier's Civilization V",play,98.0,0 -192949772,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -192949772,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -143788323,"Dota 2",purchase,1.0,0 -143788323,"Dota 2",play,25.0,0 -51293702,"Counter-Strike Condition Zero",purchase,1.0,0 -51293702,"Counter-Strike Condition Zero",play,501.0,0 -51293702,"Counter-Strike",purchase,1.0,0 -51293702,"Counter-Strike",play,0.2,0 -51293702,"Deathmatch Classic",purchase,1.0,0 -51293702,"Deathmatch Classic",play,0.1,0 -51293702,"Day of Defeat",purchase,1.0,0 -51293702,"Day of Defeat",play,0.1,0 -51293702,"Ricochet",purchase,1.0,0 -51293702,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -51293702,"DiRT Showdown",purchase,1.0,0 -153819708,"F1 2013",purchase,1.0,0 -153819708,"F1 2013",play,1.1,0 -39798081,"Counter-Strike",purchase,1.0,0 -39798081,"Counter-Strike",play,1023.0,0 -39798081,"Counter-Strike Global Offensive",purchase,1.0,0 -39798081,"Counter-Strike Global Offensive",play,22.0,0 -39798081,"Counter-Strike Condition Zero",purchase,1.0,0 -39798081,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -104038561,"Serious Sam HD The Second Encounter",purchase,1.0,0 -104038561,"Serious Sam HD The Second Encounter",play,68.0,0 -104038561,"Team Fortress 2",purchase,1.0,0 -104038561,"Team Fortress 2",play,67.0,0 -218785457,"Dota 2",purchase,1.0,0 -218785457,"Dota 2",play,4.0,0 -61834736,"Counter-Strike Source",purchase,1.0,0 -61834736,"Counter-Strike Source",play,22.0,0 -61834736,"Counter-Strike",purchase,1.0,0 -61834736,"Counter-Strike",play,6.5,0 -61834736,"Day of Defeat",purchase,1.0,0 -61834736,"Day of Defeat Source",purchase,1.0,0 -61834736,"Deathmatch Classic",purchase,1.0,0 -61834736,"Half-Life",purchase,1.0,0 -61834736,"Half-Life 2 Deathmatch",purchase,1.0,0 -61834736,"Half-Life 2 Lost Coast",purchase,1.0,0 -61834736,"Half-Life Blue Shift",purchase,1.0,0 -61834736,"Half-Life Opposing Force",purchase,1.0,0 -61834736,"Ricochet",purchase,1.0,0 -61834736,"Team Fortress Classic",purchase,1.0,0 -208900216,"Counter-Strike Global Offensive",purchase,1.0,0 -208900216,"Counter-Strike Global Offensive",play,996.0,0 -208900216,"Borderlands 2",purchase,1.0,0 -208900216,"Borderlands 2",play,131.0,0 -208900216,"Day of Defeat",purchase,1.0,0 -208900216,"Day of Defeat",play,57.0,0 -208900216,"Borderlands The Pre-Sequel",purchase,1.0,0 -208900216,"Borderlands The Pre-Sequel",play,33.0,0 -208900216,"Black Mesa",purchase,1.0,0 -208900216,"Black Mesa",play,23.0,0 -208900216,"POSTAL 2",purchase,1.0,0 -208900216,"POSTAL 2",play,19.3,0 -208900216,"Return to Castle Wolfenstein",purchase,1.0,0 -208900216,"Return to Castle Wolfenstein",play,17.8,0 -208900216,"APB Reloaded",purchase,1.0,0 -208900216,"APB Reloaded",play,14.4,0 -208900216,"Torchlight II",purchase,1.0,0 -208900216,"Torchlight II",play,7.3,0 -208900216,"Wolfenstein The New Order",purchase,1.0,0 -299980746,"Dota 2",purchase,1.0,0 -299980746,"Dota 2",play,317.0,0 -249963484,"Cobi Treasure Deluxe",purchase,1.0,0 -24334631,"Counter-Strike",purchase,1.0,0 -24334631,"Counter-Strike",play,1.0,0 -24334631,"Counter-Strike Condition Zero",purchase,1.0,0 -24334631,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -24334631,"Day of Defeat",purchase,1.0,0 -24334631,"Deathmatch Classic",purchase,1.0,0 -24334631,"Ricochet",purchase,1.0,0 -159841516,"Left 4 Dead 2",purchase,1.0,0 -159841516,"Left 4 Dead 2",play,18.4,0 -10934310,"Half-Life 2 Lost Coast",purchase,1.0,0 -10934310,"Half-Life 2 Lost Coast",play,1.8,0 -10934310,"Half-Life 2",purchase,1.0,0 -10934310,"Half-Life 2",play,1.1,0 -10934310,"Half-Life 2 Deathmatch",purchase,1.0,0 -10934310,"Half-Life 2 Deathmatch",play,1.1,0 -10934310,"Counter-Strike Source",purchase,1.0,0 -10934310,"Counter-Strike Source",play,0.2,0 -166564620,"Dota 2",purchase,1.0,0 -166564620,"Dota 2",play,0.3,0 -198850929,"PAYDAY 2",purchase,1.0,0 -198850929,"PAYDAY 2",play,53.0,0 -198850929,"Team Fortress 2",purchase,1.0,0 -198850929,"Team Fortress 2",play,24.0,0 -198850929,"War Thunder",purchase,1.0,0 -198850929,"War Thunder",play,16.7,0 -198850929,"Unturned",purchase,1.0,0 -198850929,"Unturned",play,10.9,0 -198850929,"POSTAL 2",purchase,1.0,0 -198850929,"POSTAL 2",play,3.8,0 -198850929,"PAYDAY The Heist",purchase,1.0,0 -198850929,"PAYDAY The Heist",play,1.4,0 -198850929,"FreeStyle2 Street Basketball",purchase,1.0,0 -198850929,"FreeStyle2 Street Basketball",play,0.8,0 -198850929,"theHunter",purchase,1.0,0 -198850929,"theHunter",play,0.6,0 -198850929,"Robocraft",purchase,1.0,0 -198850929,"Robocraft",play,0.5,0 -198850929,"HIS (Heroes In the Sky)",purchase,1.0,0 -198850929,"HIS (Heroes In the Sky)",play,0.2,0 -198850929,"Copa Petrobras de Marcas",purchase,1.0,0 -198850929,"Gear Up",purchase,1.0,0 -198850929,"Transformice",purchase,1.0,0 -198850929,"APB Reloaded",purchase,1.0,0 -198850929,"ArcheAge",purchase,1.0,0 -198850929,"Blacklight Retribution",purchase,1.0,0 -198850929,"Brick-Force",purchase,1.0,0 -198850929,"DCS World",purchase,1.0,0 -198850929,"F.E.A.R. Online",purchase,1.0,0 -198850929,"Firefall",purchase,1.0,0 -198850929,"Football Superstars",purchase,1.0,0 -198850929,"HAWKEN",purchase,1.0,0 -198850929,"Marvel Heroes 2015",purchase,1.0,0 -198850929,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -198850929,"NEOTOKYO",purchase,1.0,0 -198850929,"No More Room in Hell",purchase,1.0,0 -198850929,"PlanetSide 2",purchase,1.0,0 -198850929,"RaceRoom Racing Experience ",purchase,1.0,0 -198850929,"Survarium",purchase,1.0,0 -198850929,"TDP5 Arena 3D",purchase,1.0,0 -198850929,"Warface",purchase,1.0,0 -198850929,"Warframe",purchase,1.0,0 -39361297,"Garry's Mod",purchase,1.0,0 -39361297,"Garry's Mod",play,21.0,0 -39361297,"The Elder Scrolls V Skyrim",purchase,1.0,0 -39361297,"The Elder Scrolls V Skyrim",play,17.3,0 -39361297,"Terraria",purchase,1.0,0 -39361297,"Terraria",play,11.1,0 -39361297,"Trove",purchase,1.0,0 -39361297,"Trove",play,7.3,0 -39361297,"MapleStory",purchase,1.0,0 -39361297,"MapleStory",play,6.5,0 -39361297,"Robocraft",purchase,1.0,0 -39361297,"Robocraft",play,5.9,0 -39361297,"Awesomenauts",purchase,1.0,0 -39361297,"Awesomenauts",play,4.9,0 -39361297,"Krosmaster Arena",purchase,1.0,0 -39361297,"Krosmaster Arena",play,4.7,0 -39361297,"Warhammer End Times - Vermintide",purchase,1.0,0 -39361297,"Warhammer End Times - Vermintide",play,4.6,0 -39361297,"Archeblade",purchase,1.0,0 -39361297,"Archeblade",play,4.3,0 -39361297,"Creativerse",purchase,1.0,0 -39361297,"Creativerse",play,3.9,0 -39361297,"Neverwinter",purchase,1.0,0 -39361297,"Neverwinter",play,3.1,0 -39361297,"Team Fortress 2",purchase,1.0,0 -39361297,"Team Fortress 2",play,3.1,0 -39361297,"Torchlight",purchase,1.0,0 -39361297,"Torchlight",play,2.8,0 -39361297,"RIFT",purchase,1.0,0 -39361297,"RIFT",play,2.5,0 -39361297,"Dragomon Hunter",purchase,1.0,0 -39361297,"Dragomon Hunter",play,2.2,0 -39361297,"Requiem",purchase,1.0,0 -39361297,"Requiem",play,2.1,0 -39361297,"Left 4 Dead 2",purchase,1.0,0 -39361297,"Left 4 Dead 2",play,1.8,0 -39361297,"Magicka",purchase,1.0,0 -39361297,"Magicka",play,1.7,0 -39361297,"State of Decay Year-One",purchase,1.0,0 -39361297,"State of Decay Year-One",play,1.6,0 -39361297,"Zombies Monsters Robots",purchase,1.0,0 -39361297,"Zombies Monsters Robots",play,1.0,0 -39361297,"Vindictus",purchase,1.0,0 -39361297,"Vindictus",play,1.0,0 -39361297,"AirMech",purchase,1.0,0 -39361297,"AirMech",play,1.0,0 -39361297,"The Expendabros",purchase,1.0,0 -39361297,"The Expendabros",play,1.0,0 -39361297,"Unturned",purchase,1.0,0 -39361297,"Unturned",play,1.0,0 -39361297,"Dungeon Defenders II",purchase,1.0,0 -39361297,"Dungeon Defenders II",play,1.0,0 -39361297,"Villagers and Heroes",purchase,1.0,0 -39361297,"Villagers and Heroes",play,0.8,0 -39361297,"Brawlhalla",purchase,1.0,0 -39361297,"Brawlhalla",play,0.8,0 -39361297,"Guns of Icarus Online",purchase,1.0,0 -39361297,"Guns of Icarus Online",play,0.7,0 -39361297,"8BitMMO",purchase,1.0,0 -39361297,"8BitMMO",play,0.7,0 -39361297,"Warframe",purchase,1.0,0 -39361297,"Warframe",play,0.7,0 -39361297,"Path of Exile",purchase,1.0,0 -39361297,"Path of Exile",play,0.7,0 -39361297,"Nosgoth",purchase,1.0,0 -39361297,"Nosgoth",play,0.6,0 -39361297,"Torchlight II",purchase,1.0,0 -39361297,"Torchlight II",play,0.6,0 -39361297,"Super Crate Box",purchase,1.0,0 -39361297,"Super Crate Box",play,0.6,0 -39361297,"Echo of Soul",purchase,1.0,0 -39361297,"Echo of Soul",play,0.6,0 -39361297,"Double Action Boogaloo",purchase,1.0,0 -39361297,"Double Action Boogaloo",play,0.6,0 -39361297,"Fallout 3",purchase,1.0,0 -39361297,"Fallout 3",play,0.5,0 -39361297,"Aura Kingdom",purchase,1.0,0 -39361297,"Aura Kingdom",play,0.4,0 -39361297,"Cubic Castles",purchase,1.0,0 -39361297,"Cubic Castles",play,0.4,0 -39361297,"Wild Warfare",purchase,1.0,0 -39361297,"Wild Warfare",play,0.3,0 -39361297,"GunZ 2 The Second Duel",purchase,1.0,0 -39361297,"GunZ 2 The Second Duel",play,0.3,0 -39361297,"Fallen Earth",purchase,1.0,0 -39361297,"Fallen Earth",play,0.2,0 -39361297,"RaiderZ",purchase,1.0,0 -39361297,"RaiderZ",play,0.2,0 -39361297,"TERA",purchase,1.0,0 -39361297,"TERA",play,0.2,0 -39361297,"RPG Maker VX Ace",purchase,1.0,0 -39361297,"RPG Maker VX Ace",play,0.2,0 -39361297,"sZone-Online",purchase,1.0,0 -39361297,"sZone-Online",play,0.2,0 -39361297,"Divine Souls",purchase,1.0,0 -39361297,"Divine Souls",play,0.1,0 -39361297,"Smashmuck Champions",purchase,1.0,0 -39361297,"Smashmuck Champions",play,0.1,0 -39361297,"No More Room in Hell",purchase,1.0,0 -39361297,"No More Room in Hell",play,0.1,0 -39361297,"Cannons Lasers Rockets",purchase,1.0,0 -39361297,"Cannons Lasers Rockets",play,0.1,0 -39361297,"MicroVolts Surge",purchase,1.0,0 -39361297,"Dream Of Mirror Online",purchase,1.0,0 -39361297,"Loadout",purchase,1.0,0 -39361297,"Realm of the Mad God",purchase,1.0,0 -39361297,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -39361297,"Dragon Nest",purchase,1.0,0 -39361297,"Lost Saga North America",purchase,1.0,0 -39361297,"Aion",purchase,1.0,0 -39361297,"Anomaly 2",purchase,1.0,0 -39361297,"ArcheAge",purchase,1.0,0 -39361297,"Block N Load",purchase,1.0,0 -39361297,"Counter-Strike Nexon Zombies",purchase,1.0,0 -39361297,"Dead Island Epidemic",purchase,1.0,0 -39361297,"Dragon's Prophet",purchase,1.0,0 -39361297,"DRAKERZ-Confrontation",purchase,1.0,0 -39361297,"Dungeonland",purchase,1.0,0 -39361297,"Dungeon Party",purchase,1.0,0 -39361297,"Elsword",purchase,1.0,0 -39361297,"F.E.A.R. Online",purchase,1.0,0 -39361297,"Fiesta Online NA",purchase,1.0,0 -39361297,"Firefall",purchase,1.0,0 -39361297,"Global Agenda",purchase,1.0,0 -39361297,"Gotham City Impostors Free To Play",purchase,1.0,0 -39361297,"Grand Chase",purchase,1.0,0 -39361297,"Half-Life 2 Deathmatch",purchase,1.0,0 -39361297,"Half-Life 2 Lost Coast",purchase,1.0,0 -39361297,"Happy Wars",purchase,1.0,0 -39361297,"Mabinogi",purchase,1.0,0 -39361297,"Magic Duels",purchase,1.0,0 -39361297,"Magicka Wizard Wars",purchase,1.0,0 -39361297,"Marvel Heroes 2015",purchase,1.0,0 -39361297,"Mortal Kombat Kollection",purchase,1.0,0 -39361297,"MX vs. ATV Reflex",purchase,1.0,0 -39361297,"Nyctophilia",purchase,1.0,0 -39361297,"Panzar",purchase,1.0,0 -39361297,"Pink Heaven",purchase,1.0,0 -39361297,"Ragnarok Online 2",purchase,1.0,0 -39361297,"Sid Meier's Civilization III Complete",purchase,1.0,0 -39361297,"Star Trek Online",purchase,1.0,0 -39361297,"Super Monday Night Combat",purchase,1.0,0 -39361297,"Teeworlds",purchase,1.0,0 -39361297,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -39361297,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -39361297,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -39361297,"The Forgotten Ones",purchase,1.0,0 -39361297,"The Mighty Quest For Epic Loot",purchase,1.0,0 -39361297,"Uncharted Waters Online Gran Atlas",purchase,1.0,0 -39361297,"Warhammer End Times - Vermintide Sigmar's Blessing",purchase,1.0,0 -39361297,"War Inc. Battlezone",purchase,1.0,0 -300416572,"Clicker Heroes",purchase,1.0,0 -300416572,"Gun Monkeys",purchase,1.0,0 -300416572,"Murder Miners",purchase,1.0,0 -300416572,"The Ship",purchase,1.0,0 -300416572,"The Ship Single Player",purchase,1.0,0 -300416572,"The Ship Tutorial",purchase,1.0,0 -275437638,"Cities Skylines",purchase,1.0,0 -275437638,"Cities Skylines",play,46.0,0 -189072890,"Heroes & Generals",purchase,1.0,0 -189072890,"Heroes & Generals",play,0.3,0 -189072890,"Unturned",purchase,1.0,0 -189072890,"Unturned",play,0.2,0 -189072890,"Nosgoth",purchase,1.0,0 -268589228,"Toribash",purchase,1.0,0 -268589228,"Toribash",play,3.4,0 -268589228,"Magicka Wizard Wars",purchase,1.0,0 -268589228,"Magicka Wizard Wars",play,0.2,0 -268589228,"Heroes & Generals",purchase,1.0,0 -268589228,"Altitude",purchase,1.0,0 -268589228,"Counter-Strike Nexon Zombies",purchase,1.0,0 -268589228,"Dirty Bomb",purchase,1.0,0 -268589228,"Warframe",purchase,1.0,0 -219414811,"Counter-Strike Global Offensive",purchase,1.0,0 -219414811,"Counter-Strike Global Offensive",play,431.0,0 -219414811,"Dota 2",purchase,1.0,0 -219414811,"Dota 2",play,231.0,0 -219414811,"Unturned",purchase,1.0,0 -219414811,"Unturned",play,48.0,0 -219414811,"Terraria",purchase,1.0,0 -219414811,"Terraria",play,12.8,0 -219414811,"Geometry Dash",purchase,1.0,0 -219414811,"Geometry Dash",play,2.6,0 -219414811,"PAYDAY The Heist",purchase,1.0,0 -219414811,"PAYDAY The Heist",play,0.2,0 -219414811,"Neverwinter",purchase,1.0,0 -219414811,"FreeStyle2 Street Basketball",purchase,1.0,0 -219414811,"E.Y.E Divine Cybermancy",purchase,1.0,0 -219414811,"Enclave",purchase,1.0,0 -219414811,"Marvel Heroes 2015",purchase,1.0,0 -184599047,"Dota 2",purchase,1.0,0 -184599047,"Dota 2",play,5.6,0 -304107339,"Transformice",purchase,1.0,0 -304107339,"Transformice",play,108.0,0 -304107339,"Mitos.is The Game",purchase,1.0,0 -304107339,"Mitos.is The Game",play,1.6,0 -43583319,"Football Manager 2009",purchase,1.0,0 -52022614,"NBA 2K9",purchase,1.0,0 -298466854,"Dota 2",purchase,1.0,0 -298466854,"Dota 2",play,35.0,0 -186312592,"Unturned",purchase,1.0,0 -186312592,"Unturned",play,1.1,0 -186312592,"Neverwinter",purchase,1.0,0 -186312592,"Neverwinter",play,0.2,0 -303789257,"Metal War Online Retribution",purchase,1.0,0 -303789257,"Metal War Online Retribution",play,1.0,0 -303789257,"Heroes & Generals",purchase,1.0,0 -303789257,"Heroes & Generals",play,0.1,0 -58640737,"Call of Duty Modern Warfare 2",purchase,1.0,0 -58640737,"Call of Duty Modern Warfare 2",play,1755.0,0 -58640737,"Call of Duty Modern Warfare 3",purchase,1.0,0 -58640737,"Call of Duty Modern Warfare 3",play,122.0,0 -58640737,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -58640737,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.4,0 -58640737,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -102834895,"Team Fortress 2",purchase,1.0,0 -102834895,"Team Fortress 2",play,1.8,0 -107028289,"Fallout New Vegas",purchase,1.0,0 -107028289,"Fallout New Vegas",play,165.0,0 -107028289,"The Elder Scrolls V Skyrim",purchase,1.0,0 -107028289,"The Elder Scrolls V Skyrim",play,125.0,0 -107028289,"Saints Row IV",purchase,1.0,0 -107028289,"Saints Row IV",play,28.0,0 -107028289,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -107028289,"Call of Duty Black Ops II - Zombies",play,17.8,0 -107028289,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -107028289,"Call of Duty Black Ops II - Multiplayer",play,14.0,0 -107028289,"Call of Duty Black Ops II",purchase,1.0,0 -107028289,"Call of Duty Black Ops II",play,11.0,0 -107028289,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -285055272,"Sid Meier's Civilization V",purchase,1.0,0 -285055272,"Sid Meier's Civilization V",play,88.0,0 -50852108,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -50852108,"Warhammer 40,000 Dawn of War II",play,37.0,0 -135951168,"Dota 2",purchase,1.0,0 -135951168,"Dota 2",play,2.5,0 -63020970,"Half-Life 2",purchase,1.0,0 -63020970,"Half-Life 2",play,0.1,0 -63020970,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -63020970,"Half-Life 2 Deathmatch",purchase,1.0,0 -63020970,"Half-Life 2 Episode One",purchase,1.0,0 -63020970,"Half-Life 2 Episode Two",purchase,1.0,0 -63020970,"Half-Life 2 Lost Coast",purchase,1.0,0 -100322840,"Terraria",purchase,1.0,0 -100322840,"Terraria",play,354.0,0 -100322840,"Unturned",purchase,1.0,0 -100322840,"Unturned",play,12.6,0 -191802069,"Dota 2",purchase,1.0,0 -191802069,"Dota 2",play,8.7,0 -277239386,"The Elder Scrolls V Skyrim",purchase,1.0,0 -277239386,"The Elder Scrolls V Skyrim",play,47.0,0 -277239386,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -277239386,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -277239386,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -189794919,"Dota 2",purchase,1.0,0 -189794919,"Dota 2",play,50.0,0 -189794919,"Team Fortress 2",purchase,1.0,0 -189794919,"Team Fortress 2",play,0.7,0 -201265166,"Dota 2",purchase,1.0,0 -201265166,"Dota 2",play,1170.0,0 -201265166,"Counter-Strike Global Offensive",purchase,1.0,0 -201265166,"Counter-Strike Global Offensive",play,268.0,0 -201265166,"Counter-Strike",purchase,1.0,0 -201265166,"Counter-Strike",play,22.0,0 -201265166,"Castle Crashers",purchase,1.0,0 -201265166,"Castle Crashers",play,11.5,0 -201265166,"GRID Autosport",purchase,1.0,0 -201265166,"GRID Autosport",play,7.0,0 -201265166,"War Thunder",purchase,1.0,0 -201265166,"War Thunder",play,5.7,0 -201265166,"Unturned",purchase,1.0,0 -201265166,"Unturned",play,2.4,0 -201265166,"Garry's Mod",purchase,1.0,0 -201265166,"Garry's Mod",play,2.3,0 -201265166,"Heroes & Generals",purchase,1.0,0 -201265166,"Heroes & Generals",play,1.8,0 -201265166,"Infinite Crisis",purchase,1.0,0 -201265166,"Infinite Crisis",play,0.8,0 -201265166,"Don't Starve Together Beta",purchase,1.0,0 -201265166,"Don't Starve Together Beta",play,0.7,0 -201265166,"Don't Starve",purchase,1.0,0 -201265166,"Don't Starve",play,0.6,0 -201265166,"DiggerOnline",purchase,1.0,0 -201265166,"DiggerOnline",play,0.3,0 -201265166,"Counter-Strike Source",purchase,1.0,0 -201265166,"Counter-Strike Source",play,0.2,0 -201265166,"Rise of Incarnates",purchase,1.0,0 -201265166,"Rise of Incarnates",play,0.2,0 -201265166,"Counter-Strike Condition Zero",purchase,1.0,0 -201265166,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -201265166,"Counter-Strike Nexon Zombies",purchase,1.0,0 -201265166,"Lilly and Sasha Curse of the Immortals",purchase,1.0,0 -209608167,"The Elder Scrolls V Skyrim",purchase,1.0,0 -209608167,"The Elder Scrolls V Skyrim",play,139.0,0 -209608167,"Warframe",purchase,1.0,0 -209608167,"Warframe",play,16.2,0 -209608167,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -209608167,"School of Dragons How to Train Your Dragon",play,0.1,0 -209608167,"DCS World",purchase,1.0,0 -250231163,"Dota 2",purchase,1.0,0 -250231163,"Dota 2",play,19.1,0 -89255174,"Team Fortress 2",purchase,1.0,0 -89255174,"Team Fortress 2",play,8.4,0 -84156493,"Team Fortress 2",purchase,1.0,0 -84156493,"Team Fortress 2",play,14.7,0 -84156493,"DC Universe Online",purchase,1.0,0 -84156493,"DC Universe Online",play,3.1,0 -129720834,"Commander Keen Complete Pack",purchase,1.0,0 -119949344,"Counter-Strike Global Offensive",purchase,1.0,0 -119949344,"Counter-Strike Global Offensive",play,227.0,0 -119949344,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -119949344,"Tom Clancy's Ghost Recon Phantoms - NA",play,42.0,0 -119949344,"Wargame Red Dragon",purchase,1.0,0 -119949344,"Wargame Red Dragon",play,33.0,0 -119949344,"Wargame AirLand Battle",purchase,1.0,0 -119949344,"Wargame AirLand Battle",play,8.0,0 -119949344,"Insurgency",purchase,1.0,0 -119949344,"Insurgency",play,6.4,0 -119949344,"Team Fortress 2",purchase,1.0,0 -119949344,"Team Fortress 2",play,4.3,0 -119949344,"Warframe",purchase,1.0,0 -119949344,"Warframe",play,3.1,0 -119949344,"Counter-Strike",purchase,1.0,0 -119949344,"Counter-Strike",play,1.3,0 -119949344,"PAYDAY The Heist",purchase,1.0,0 -119949344,"PAYDAY The Heist",play,1.1,0 -119949344,"Insurgency Modern Infantry Combat",purchase,1.0,0 -119949344,"Insurgency Modern Infantry Combat",play,0.3,0 -119949344,"Counter-Strike Source",purchase,1.0,0 -119949344,"War Thunder",purchase,1.0,0 -119949344,"Counter-Strike Condition Zero",purchase,1.0,0 -119949344,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -119949344,"Marvel Heroes 2015",purchase,1.0,0 -119949344,"Super Sanctum TD",purchase,1.0,0 -119949344,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -119949344,"WAKFU",purchase,1.0,0 -119949344,"Wargame European Escalation",purchase,1.0,0 -50095094,"XCOM Enemy Unknown",purchase,1.0,0 -50095094,"XCOM Enemy Unknown",play,76.0,0 -50095094,"Pillars of Eternity",purchase,1.0,0 -50095094,"Pillars of Eternity",play,32.0,0 -50095094,"Stronghold Crusader 2",purchase,1.0,0 -50095094,"Stronghold Crusader 2",play,11.4,0 -50095094,"Grand Ages Rome",purchase,1.0,0 -50095094,"Grand Ages Rome",play,9.0,0 -50095094,"DiRT 3",purchase,1.0,0 -50095094,"DiRT 3",play,4.6,0 -50095094,"Stronghold Crusader Extreme HD",purchase,1.0,0 -50095094,"Stronghold Crusader Extreme HD",play,0.2,0 -50095094,"Stronghold Crusader HD",purchase,1.0,0 -50095094,"Stronghold Crusader HD",play,0.2,0 -50095094,"DiRT 3 Complete Edition",purchase,1.0,0 -50095094,"Empire Total War",purchase,1.0,0 -50095094,"Stronghold Kingdoms",purchase,1.0,0 -186611336,"Dota 2",purchase,1.0,0 -186611336,"Dota 2",play,0.2,0 -215413462,"Dota 2",purchase,1.0,0 -215413462,"Dota 2",play,0.9,0 -200669964,"Construction-Simulator 2015",purchase,1.0,0 -200669964,"Construction-Simulator 2015",play,42.0,0 -200669964,"Spintires",purchase,1.0,0 -200669964,"Spintires",play,28.0,0 -200669964,"Construction Simulator 2015 Vertical Skyline",purchase,1.0,0 -50811344,"Dota 2",purchase,1.0,0 -50811344,"Dota 2",play,4335.0,0 -50811344,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -50811344,"Dark Messiah of Might & Magic Multi-Player",play,530.0,0 -50811344,"Arma 3",purchase,1.0,0 -50811344,"Arma 3",play,296.0,0 -50811344,"Counter-Strike Global Offensive",purchase,1.0,0 -50811344,"Counter-Strike Global Offensive",play,285.0,0 -50811344,"The Elder Scrolls V Skyrim",purchase,1.0,0 -50811344,"The Elder Scrolls V Skyrim",play,187.0,0 -50811344,"Total War ATTILA",purchase,1.0,0 -50811344,"Total War ATTILA",play,145.0,0 -50811344,"Divinity Original Sin",purchase,1.0,0 -50811344,"Divinity Original Sin",play,115.0,0 -50811344,"Empire Total War",purchase,1.0,0 -50811344,"Empire Total War",play,83.0,0 -50811344,"The Witcher Enhanced Edition",purchase,1.0,0 -50811344,"The Witcher Enhanced Edition",play,44.0,0 -50811344,"L.A. Noire",purchase,1.0,0 -50811344,"L.A. Noire",play,35.0,0 -50811344,"Rocket League",purchase,1.0,0 -50811344,"Rocket League",play,23.0,0 -50811344,"Thief",purchase,1.0,0 -50811344,"Thief",play,18.7,0 -50811344,"The Wolf Among Us",purchase,1.0,0 -50811344,"The Wolf Among Us",play,11.9,0 -50811344,"Mortal Kombat Komplete Edition",purchase,1.0,0 -50811344,"Mortal Kombat Komplete Edition",play,10.4,0 -50811344,"Trine 2",purchase,1.0,0 -50811344,"Trine 2",play,8.7,0 -50811344,"Fable - The Lost Chapters",purchase,1.0,0 -50811344,"Fable - The Lost Chapters",play,8.5,0 -50811344,"Quake Live",purchase,1.0,0 -50811344,"Quake Live",play,6.7,0 -50811344,"Counter-Strike",purchase,1.0,0 -50811344,"Counter-Strike",play,6.3,0 -50811344,"Portal 2",purchase,1.0,0 -50811344,"Portal 2",play,5.9,0 -50811344,"BioShock Infinite",purchase,1.0,0 -50811344,"BioShock Infinite",play,5.0,0 -50811344,"Chivalry Medieval Warfare",purchase,1.0,0 -50811344,"Chivalry Medieval Warfare",play,3.3,0 -50811344,"Sid Meier's Civilization V",purchase,1.0,0 -50811344,"Sid Meier's Civilization V",play,2.7,0 -50811344,"Alan Wake",purchase,1.0,0 -50811344,"Alan Wake",play,1.9,0 -50811344,"Left 4 Dead 2",purchase,1.0,0 -50811344,"Left 4 Dead 2",play,1.4,0 -50811344,"Counter-Strike Condition Zero",purchase,1.0,0 -50811344,"Counter-Strike Condition Zero",play,1.2,0 -50811344,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -50811344,"Dark Souls Prepare to Die Edition",play,0.4,0 -50811344,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -50811344,"Warhammer 40,000 Dawn of War II",play,0.3,0 -50811344,"Portal Stories Mel",purchase,1.0,0 -50811344,"Brothers - A Tale of Two Sons",purchase,1.0,0 -50811344,"Arma 3 Zeus",purchase,1.0,0 -50811344,"Assassin's Creed",purchase,1.0,0 -50811344,"BioShock Infinite - Season Pass",purchase,1.0,0 -50811344,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -50811344,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -50811344,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -50811344,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -50811344,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -50811344,"Dishonored (RU)",purchase,1.0,0 -50811344,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -50811344,"Fistful of Frags",purchase,1.0,0 -50811344,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -50811344,"Patch testing for Chivalry",purchase,1.0,0 -50811344,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -50811344,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -50811344,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -50811344,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -50811344,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -50811344,"Thief - The Bank Heist",purchase,1.0,0 -176551599,"Dota 2",purchase,1.0,0 -176551599,"Dota 2",play,0.4,0 -175963070,"Team Fortress 2",purchase,1.0,0 -175963070,"Team Fortress 2",play,1.0,0 -303789064,"Dota 2",purchase,1.0,0 -303789064,"Dota 2",play,2.0,0 -303789064,"Undertale",purchase,1.0,0 -303789064,"Undertale",play,0.5,0 -303789064,"Pink Hour",purchase,1.0,0 -303789064,"Pink Hour",play,0.4,0 -303789064,"Aura Kingdom",purchase,1.0,0 -55837871,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -55837871,"Call of Duty 4 Modern Warfare",play,46.0,0 -55837871,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -55837871,"Call of Duty Black Ops - Multiplayer",play,22.0,0 -55837871,"Call of Duty Black Ops",purchase,1.0,0 -168753571,"Serious Sam HD The Second Encounter",purchase,1.0,0 -168753571,"Serious Sam HD The Second Encounter",play,12.0,0 -242713376,"Dota 2",purchase,1.0,0 -242713376,"Dota 2",play,0.2,0 -185743629,"Royal Quest",purchase,1.0,0 -185743629,"Royal Quest",play,38.0,0 -185743629,"Villagers and Heroes",purchase,1.0,0 -185743629,"Villagers and Heroes",play,26.0,0 -185743629,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -185743629,"Tom Clancy's Ghost Recon Phantoms - NA",play,24.0,0 -185743629,"Dota 2",purchase,1.0,0 -185743629,"Dota 2",play,5.0,0 -185743629,"Heroes & Generals",purchase,1.0,0 -185743629,"Heroes & Generals",play,1.3,0 -185743629,"Firefall",purchase,1.0,0 -185743629,"Firefall",play,0.4,0 -185743629,"Amazing World",purchase,1.0,0 -248254297,"Team Fortress 2",purchase,1.0,0 -248254297,"Team Fortress 2",play,167.0,0 -248254297,"Left 4 Dead 2",purchase,1.0,0 -248254297,"Left 4 Dead 2",play,42.0,0 -248254297,"Counter-Strike Global Offensive",purchase,1.0,0 -248254297,"Counter-Strike Global Offensive",play,34.0,0 -248254297,"Garry's Mod",purchase,1.0,0 -248254297,"Garry's Mod",play,2.9,0 -248254297,"Dota 2",purchase,1.0,0 -248254297,"Dota 2",play,1.1,0 -248254297,"Counter-Strike",purchase,1.0,0 -248254297,"Counter-Strike Condition Zero",purchase,1.0,0 -248254297,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -248254297,"Counter-Strike Source",purchase,1.0,0 -248254297,"Left 4 Dead",purchase,1.0,0 -248254297,"The Elder Scrolls V Skyrim",purchase,1.0,0 -248254297,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -280096578,"Dota 2",purchase,1.0,0 -280096578,"Dota 2",play,30.0,0 -109715095,"Counter-Strike Global Offensive",purchase,1.0,0 -109715095,"Counter-Strike Global Offensive",play,46.0,0 -109715095,"Mortal Kombat X",purchase,1.0,0 -109715095,"Mortal Kombat X",play,8.4,0 -109715095,"Hacker Evolution",purchase,1.0,0 -109715095,"BLOCKADE 3D",purchase,1.0,0 -109715095,"Brick-Force",purchase,1.0,0 -109715095,"Dethroned!",purchase,1.0,0 -109715095,"Dizzel",purchase,1.0,0 -109715095,"Dragon's Prophet (EU)",purchase,1.0,0 -109715095,"Dwarfs F2P",purchase,1.0,0 -109715095,"Eldevin",purchase,1.0,0 -109715095,"Famaze",purchase,1.0,0 -109715095,"Gear Up",purchase,1.0,0 -109715095,"Get Off My Lawn!",purchase,1.0,0 -109715095,"Happy Wars",purchase,1.0,0 -109715095,"Magic Barrage - Bitferno",purchase,1.0,0 -109715095,"Might & Magic Duel of Champions",purchase,1.0,0 -109715095,"Nosgoth",purchase,1.0,0 -109715095,"RIFT",purchase,1.0,0 -109715095,"Robocraft",purchase,1.0,0 -109715095,"Sigils of Elohim",purchase,1.0,0 -109715095,"Smashmuck Champions",purchase,1.0,0 -109715095,"SolForge",purchase,1.0,0 -109715095,"Super Crate Box",purchase,1.0,0 -109715095,"theHunter",purchase,1.0,0 -109715095,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -109715095,"Unturned",purchase,1.0,0 -109715095,"Warface",purchase,1.0,0 -295479473,"War Thunder",purchase,1.0,0 -295479473,"War Thunder",play,20.0,0 -237848513,"Outlast",purchase,1.0,0 -237848513,"Outlast",play,3.6,0 -237848513,"Heroes & Generals",purchase,1.0,0 -50305489,"Hitman Absolution",purchase,1.0,0 -50305489,"Hitman Absolution",play,37.0,0 -50305489,"Garry's Mod",purchase,1.0,0 -50305489,"Garry's Mod",play,21.0,0 -50305489,"Counter-Strike Source",purchase,1.0,0 -50305489,"Counter-Strike Source",play,4.3,0 -50305489,"Hitman Sniper Challenge",purchase,1.0,0 -193923021,"Dota 2",purchase,1.0,0 -193923021,"Dota 2",play,4.8,0 -146022542,"Saints Row IV",purchase,1.0,0 -146022542,"Saints Row IV",play,39.0,0 -146022542,"Team Fortress 2",purchase,1.0,0 -146022542,"Team Fortress 2",play,15.8,0 -146022542,"Arma 3",purchase,1.0,0 -146022542,"Arma 3",play,7.9,0 -146022542,"Cubic Castles",purchase,1.0,0 -146022542,"Cubic Castles",play,3.4,0 -146022542,"Unturned",purchase,1.0,0 -146022542,"Unturned",play,2.3,0 -146022542,"Dota 2",purchase,1.0,0 -146022542,"Dota 2",play,1.9,0 -146022542,"Yet Another Zombie Defense",purchase,1.0,0 -146022542,"Yet Another Zombie Defense",play,1.7,0 -146022542,"Arma Cold War Assault",purchase,1.0,0 -146022542,"Arma Cold War Assault",play,1.1,0 -146022542,"Brick-Force",purchase,1.0,0 -146022542,"Brick-Force",play,0.5,0 -146022542,"Fallen Earth",purchase,1.0,0 -146022542,"Fallen Earth",play,0.4,0 -146022542,"Arma 3 Zeus",purchase,1.0,0 -146022542,"BLOCKADE 3D",purchase,1.0,0 -146022542,"Counter-Strike Nexon Zombies",purchase,1.0,0 -146022542,"Heroes & Generals",purchase,1.0,0 -146022542,"Robocraft",purchase,1.0,0 -146022542,"sZone-Online",purchase,1.0,0 -57500988,"The Last Remnant",purchase,1.0,0 -57500988,"The Last Remnant",play,108.0,0 -57500988,"Fallout 3",purchase,1.0,0 -57500988,"Fallout 3",play,63.0,0 -57500988,"Tomb Raider Underworld",purchase,1.0,0 -57500988,"Tomb Raider Underworld",play,12.0,0 -57500988,"Tomb Raider The Last Revelation",purchase,1.0,0 -57500988,"Tomb Raider The Last Revelation",play,3.2,0 -57500988,"Lara Croft and the Guardian of Light",purchase,1.0,0 -57500988,"Lara Croft and the Guardian of Light",play,1.1,0 -57500988,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -245323483,"Dota 2",purchase,1.0,0 -245323483,"Dota 2",play,0.1,0 -148476467,"F1 2014",purchase,1.0,0 -148476467,"F1 2014",play,11.2,0 -148476467,"GRID 2",purchase,1.0,0 -148476467,"GRID 2",play,5.3,0 -148476467,"Construction-Simulator 2015",purchase,1.0,0 -148476467,"Construction-Simulator 2015",play,4.7,0 -248303087,"Unturned",purchase,1.0,0 -248303087,"Clicker Heroes",purchase,1.0,0 -248303087,"Trove",purchase,1.0,0 -103890656,"Dota 2",purchase,1.0,0 -103890656,"Dota 2",play,706.0,0 -103890656,"Battle Islands",purchase,1.0,0 -103890656,"Free to Play",purchase,1.0,0 -103890656,"Stronghold Kingdoms",purchase,1.0,0 -103890656,"Warframe",purchase,1.0,0 -103890656,"War Thunder",purchase,1.0,0 -130470206,"Path of Exile",purchase,1.0,0 -130470206,"Path of Exile",play,40.0,0 -130470206,"TERA",purchase,1.0,0 -130470206,"TERA",play,5.5,0 -130470206,"Dota 2",purchase,1.0,0 -130470206,"Dota 2",play,4.5,0 -139774658,"Team Fortress 2",purchase,1.0,0 -139774658,"Team Fortress 2",play,1.2,0 -139774658,"Red Crucible Firestorm",purchase,1.0,0 -139774658,"Red Crucible Firestorm",play,0.2,0 -192531211,"Dota 2",purchase,1.0,0 -192531211,"Dota 2",play,2.3,0 -95854541,"Homefront",purchase,1.0,0 -308362795,"Team Fortress 2",purchase,1.0,0 -308362795,"Team Fortress 2",play,0.9,0 -187945671,"Unturned",purchase,1.0,0 -187945671,"Unturned",play,0.4,0 -201895745,"Garry's Mod",purchase,1.0,0 -201895745,"Garry's Mod",play,76.0,0 -201895745,"Dota 2",purchase,1.0,0 -201895745,"Dota 2",play,0.5,0 -175836974,"Arx Fatalis",purchase,1.0,0 -175836974,"Arx Fatalis",play,55.0,0 -175836974,"Space Trader Merchant Marine",purchase,1.0,0 -175836974,"Space Trader Merchant Marine",play,0.4,0 -103411746,"Trine 2",purchase,1.0,0 -103411746,"Trine 2",play,4.7,0 -103411746,"Team Fortress 2",purchase,1.0,0 -103411746,"Team Fortress 2",play,4.1,0 -103411746,"Portal 2",purchase,1.0,0 -103411746,"Portal 2",play,3.1,0 -103411746,"Left 4 Dead 2",purchase,1.0,0 -103411746,"Left 4 Dead 2",play,3.0,0 -103411746,"Magicka Wizard Wars",purchase,1.0,0 -103411746,"Magicka Wizard Wars",play,2.2,0 -103411746,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -103411746,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.4,0 -47693543,"Football Manager 2014",purchase,1.0,0 -47693543,"Football Manager 2014",play,84.0,0 -47693543,"Football Manager 2012",purchase,1.0,0 -47693543,"Football Manager 2012",play,39.0,0 -47693543,"Football Manager 2009",purchase,1.0,0 -47693543,"Football Manager 2009",play,25.0,0 -280832360,"Dota 2",purchase,1.0,0 -280832360,"Dota 2",play,318.0,0 -176796706,"Dota 2",purchase,1.0,0 -176796706,"Dota 2",play,2.1,0 -270787620,"Dota 2",purchase,1.0,0 -270787620,"Dota 2",play,0.6,0 -270787620,"Chaos Heroes Online",purchase,1.0,0 -63671946,"Total War SHOGUN 2",purchase,1.0,0 -63671946,"Total War SHOGUN 2",play,70.0,0 -63671946,"Napoleon Total War",purchase,1.0,0 -63671946,"Napoleon Total War",play,14.1,0 -63671946,"Total War ROME II - Emperor Edition",purchase,1.0,0 -63671946,"Total War ROME II - Emperor Edition",play,12.7,0 -63671946,"Happy Wars",purchase,1.0,0 -63671946,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -202298227,"Serious Sam HD The Second Encounter",purchase,1.0,0 -202298227,"Serious Sam HD The Second Encounter",play,0.2,0 -57530892,"Football Manager 2015",purchase,1.0,0 -57530892,"Football Manager 2015",play,128.0,0 -191988742,"Garry's Mod",purchase,1.0,0 -191988742,"Garry's Mod",play,11.5,0 -191988742,"Team Fortress 2",purchase,1.0,0 -191988742,"Team Fortress 2",play,3.0,0 -191988742,"Five Nights at Freddy's 2",purchase,1.0,0 -191988742,"Five Nights at Freddy's 2",play,2.4,0 -191988742,"Turbo Dismount",purchase,1.0,0 -191988742,"Turbo Dismount",play,1.9,0 -191988742,"Five Nights at Freddy's",purchase,1.0,0 -191988742,"Five Nights at Freddy's",play,1.0,0 -191988742,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -191988742,"The Mighty Quest For Epic Loot",purchase,1.0,0 -191988742,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -265337884,"Dota 2",purchase,1.0,0 -265337884,"Dota 2",play,123.0,0 -47031455,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -47031455,"Warhammer 40,000 Dawn of War II",play,28.0,0 -77566707,"King's Bounty Warriors of the North",purchase,1.0,0 -77566707,"King's Bounty Warriors of the North",play,50.0,0 -77566707,"Sid Meier's Civilization V",purchase,1.0,0 -77566707,"Sid Meier's Civilization V",play,23.0,0 -211159862,"Dota 2",purchase,1.0,0 -211159862,"Dota 2",play,244.0,0 -211159862,"FreeStyle2 Street Basketball",purchase,1.0,0 -211159862,"Ascend Hand of Kul",purchase,1.0,0 -211159862,"Battle Islands",purchase,1.0,0 -211159862,"HAWKEN",purchase,1.0,0 -211159862,"Loadout",purchase,1.0,0 -153841049,"The Elder Scrolls V Skyrim",purchase,1.0,0 -153841049,"The Elder Scrolls V Skyrim",play,10.5,0 -217472465,"Dota 2",purchase,1.0,0 -217472465,"Dota 2",play,7.0,0 -245043777,"America's Army 3",purchase,1.0,0 -245043777,"America's Army Proving Grounds",purchase,1.0,0 -245043777,"Loadout",purchase,1.0,0 -245043777,"Neverwinter",purchase,1.0,0 -245043777,"No More Room in Hell",purchase,1.0,0 -245043777,"Warframe",purchase,1.0,0 -63098418,"Counter-Strike Global Offensive",purchase,1.0,0 -63098418,"Counter-Strike Global Offensive",play,2440.0,0 -63098418,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -63098418,"Call of Duty Black Ops - Multiplayer",play,51.0,0 -63098418,"Team Fortress 2",purchase,1.0,0 -63098418,"Team Fortress 2",play,47.0,0 -63098418,"Nidhogg",purchase,1.0,0 -63098418,"Nidhogg",play,38.0,0 -63098418,"Saints Row The Third",purchase,1.0,0 -63098418,"Saints Row The Third",play,34.0,0 -63098418,"APB Reloaded",purchase,1.0,0 -63098418,"APB Reloaded",play,18.8,0 -63098418,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -63098418,"Call of Duty Modern Warfare 2 - Multiplayer",play,17.1,0 -63098418,"Counter-Strike",purchase,1.0,0 -63098418,"Counter-Strike",play,17.1,0 -63098418,"Surgeon Simulator",purchase,1.0,0 -63098418,"Surgeon Simulator",play,9.2,0 -63098418,"Saints Row IV",purchase,1.0,0 -63098418,"Saints Row IV",play,8.3,0 -63098418,"PAYDAY 2",purchase,1.0,0 -63098418,"PAYDAY 2",play,6.1,0 -63098418,"Call of Duty Black Ops",purchase,1.0,0 -63098418,"Call of Duty Black Ops",play,4.5,0 -63098418,"Counter-Strike Condition Zero",purchase,1.0,0 -63098418,"Counter-Strike Condition Zero",play,4.4,0 -63098418,"Warface",purchase,1.0,0 -63098418,"Warface",play,3.4,0 -63098418,"Mortal Kombat Komplete Edition",purchase,1.0,0 -63098418,"Mortal Kombat Komplete Edition",play,2.5,0 -63098418,"Day of Defeat",purchase,1.0,0 -63098418,"Day of Defeat",play,2.2,0 -63098418,"Dota 2",purchase,1.0,0 -63098418,"Dota 2",play,2.1,0 -63098418,"Deathmatch Classic",purchase,1.0,0 -63098418,"Deathmatch Classic",play,2.0,0 -63098418,"Castle Crashers",purchase,1.0,0 -63098418,"Castle Crashers",play,0.9,0 -63098418,"Fishing Planet",purchase,1.0,0 -63098418,"Fishing Planet",play,0.7,0 -63098418,"GRID 2",purchase,1.0,0 -63098418,"GRID 2",play,0.3,0 -63098418,"Toribash",purchase,1.0,0 -63098418,"Toribash",play,0.3,0 -63098418,"Unturned",purchase,1.0,0 -63098418,"Unturned",play,0.3,0 -63098418,"Borderlands 2",purchase,1.0,0 -63098418,"Borderlands 2",play,0.2,0 -63098418,"SMITE",purchase,1.0,0 -63098418,"Call of Duty Modern Warfare 2",purchase,1.0,0 -63098418,"Castle Crashers - Blacksmith Pack",purchase,1.0,0 -63098418,"Castle Crashers - Pink Knight Pack",purchase,1.0,0 -63098418,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -63098418,"Ricochet",purchase,1.0,0 -249735744,"Dota 2",purchase,1.0,0 -249735744,"Dota 2",play,1.0,0 -249735744,"C9",purchase,1.0,0 -249735744,"Cobi Treasure Deluxe",purchase,1.0,0 -249735744,"Dead Island Epidemic",purchase,1.0,0 -249735744,"Double Action Boogaloo",purchase,1.0,0 -249735744,"Dragon Nest Europe",purchase,1.0,0 -249735744,"Everlasting Summer",purchase,1.0,0 -249735744,"Loadout",purchase,1.0,0 -249735744,"Lost Saga North America",purchase,1.0,0 -249735744,"Magicka Wizard Wars",purchase,1.0,0 -249735744,"Panzar",purchase,1.0,0 -249735744,"Quake Live",purchase,1.0,0 -249735744,"Warframe",purchase,1.0,0 -249735744,"War Thunder",purchase,1.0,0 -75115020,"Call of Duty Black Ops",purchase,1.0,0 -75115020,"Call of Duty Black Ops",play,0.4,0 -75115020,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -187262547,"Trove",purchase,1.0,0 -187262547,"Trove",play,3.9,0 -187262547,"Unturned",purchase,1.0,0 -187262547,"Unturned",play,2.1,0 -187262547,"Path of Exile",purchase,1.0,0 -187262547,"Survarium",purchase,1.0,0 -83975567,"Dota 2",purchase,1.0,0 -83975567,"Dota 2",play,318.0,0 -83975567,"Team Fortress 2",purchase,1.0,0 -83975567,"Team Fortress 2",play,310.0,0 -83975567,"PAYDAY 2",purchase,1.0,0 -83975567,"PAYDAY 2",play,183.0,0 -83975567,"Cities Skylines",purchase,1.0,0 -83975567,"Cities Skylines",play,69.0,0 -83975567,"Watch_Dogs",purchase,1.0,0 -83975567,"Watch_Dogs",play,53.0,0 -83975567,"Left 4 Dead 2",purchase,1.0,0 -83975567,"Left 4 Dead 2",play,36.0,0 -83975567,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -83975567,"Call of Duty Black Ops II - Zombies",play,36.0,0 -83975567,"Portal 2",purchase,1.0,0 -83975567,"Portal 2",play,23.0,0 -83975567,"Call of Duty Black Ops",purchase,1.0,0 -83975567,"Call of Duty Black Ops",play,22.0,0 -83975567,"Don't Starve Together Beta",purchase,1.0,0 -83975567,"Don't Starve Together Beta",play,12.4,0 -83975567,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -83975567,"Call of Duty Black Ops II - Multiplayer",play,11.9,0 -83975567,"Half-Life 2 Episode Two",purchase,1.0,0 -83975567,"Half-Life 2 Episode Two",play,10.0,0 -83975567,"Portal Stories Mel",purchase,1.0,0 -83975567,"Portal Stories Mel",play,8.4,0 -83975567,"Metro 2033",purchase,1.0,0 -83975567,"Metro 2033",play,7.8,0 -83975567,"Call of Duty Black Ops II",purchase,1.0,0 -83975567,"Call of Duty Black Ops II",play,7.0,0 -83975567,"Call of Duty World at War",purchase,1.0,0 -83975567,"Call of Duty World at War",play,7.0,0 -83975567,"Castle Crashers",purchase,1.0,0 -83975567,"Castle Crashers",play,6.4,0 -83975567,"Half-Life 2 Episode One",purchase,1.0,0 -83975567,"Half-Life 2 Episode One",play,5.9,0 -83975567,"Dead Island Epidemic",purchase,1.0,0 -83975567,"Dead Island Epidemic",play,5.3,0 -83975567,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -83975567,"Call of Duty Black Ops - Multiplayer",play,5.0,0 -83975567,"Portal",purchase,1.0,0 -83975567,"Portal",play,2.9,0 -83975567,"PAYDAY The Heist",purchase,1.0,0 -83975567,"PAYDAY The Heist",play,2.4,0 -83975567,"Awesomenauts",purchase,1.0,0 -83975567,"Awesomenauts",play,2.4,0 -83975567,"The Stanley Parable",purchase,1.0,0 -83975567,"The Stanley Parable",play,1.2,0 -83975567,"World of Guns Gun Disassembly",purchase,1.0,0 -83975567,"World of Guns Gun Disassembly",play,0.8,0 -83975567,"Half-Life 2 Lost Coast",purchase,1.0,0 -83975567,"Half-Life 2 Lost Coast",play,0.7,0 -83975567,"Toribash",purchase,1.0,0 -83975567,"Toribash",play,0.5,0 -83975567,"Unturned",purchase,1.0,0 -83975567,"Unturned",play,0.5,0 -83975567,"Half-Life 2 Deathmatch",purchase,1.0,0 -83975567,"Half-Life 2 Update",purchase,1.0,0 -83975567,"Half-Life Deathmatch Source",purchase,1.0,0 -83975567,"PAYDAY The Heist Game Soundtrack",purchase,1.0,0 -83975567,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -262317184,"Tactical Intervention",purchase,1.0,0 -262317184,"Tactical Intervention",play,8.1,0 -262317184,"Unturned",purchase,1.0,0 -262317184,"Unturned",play,5.4,0 -262317184,"Robocraft",purchase,1.0,0 -262317184,"Robocraft",play,1.1,0 -262317184,"War Thunder",purchase,1.0,0 -262317184,"War Thunder",play,1.1,0 -262317184,"Red Crucible Firestorm",purchase,1.0,0 -262317184,"Red Crucible Firestorm",play,0.2,0 -262317184,"Metro Conflict",purchase,1.0,0 -262317184,"Metro Conflict",play,0.2,0 -262317184,"Heroes & Generals",purchase,1.0,0 -262317184,"Serena",purchase,1.0,0 -262317184,"All Is Dust",purchase,1.0,0 -14465359,"Counter-Strike Global Offensive",purchase,1.0,0 -14465359,"Counter-Strike Global Offensive",play,902.0,0 -14465359,"Team Fortress 2",purchase,1.0,0 -14465359,"Team Fortress 2",play,442.0,0 -14465359,"Sid Meier's Civilization V",purchase,1.0,0 -14465359,"Sid Meier's Civilization V",play,391.0,0 -14465359,"Garry's Mod",purchase,1.0,0 -14465359,"Garry's Mod",play,186.0,0 -14465359,"Battlefield Bad Company 2",purchase,1.0,0 -14465359,"Battlefield Bad Company 2",play,173.0,0 -14465359,"Endless Space",purchase,1.0,0 -14465359,"Endless Space",play,145.0,0 -14465359,"Total War SHOGUN 2",purchase,1.0,0 -14465359,"Total War SHOGUN 2",play,123.0,0 -14465359,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -14465359,"METAL GEAR SOLID V THE PHANTOM PAIN",play,111.0,0 -14465359,"Wargame AirLand Battle",purchase,1.0,0 -14465359,"Wargame AirLand Battle",play,108.0,0 -14465359,"The Elder Scrolls V Skyrim",purchase,1.0,0 -14465359,"The Elder Scrolls V Skyrim",play,108.0,0 -14465359,"Arma 3",purchase,1.0,0 -14465359,"Arma 3",play,93.0,0 -14465359,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -14465359,"Sins of a Solar Empire Rebellion",play,82.0,0 -14465359,"Total War ROME II - Emperor Edition",purchase,1.0,0 -14465359,"Total War ROME II - Emperor Edition",play,80.0,0 -14465359,"Arma 2 Operation Arrowhead",purchase,1.0,0 -14465359,"Arma 2 Operation Arrowhead",play,71.0,0 -14465359,"Natural Selection 2",purchase,1.0,0 -14465359,"Natural Selection 2",play,69.0,0 -14465359,"Mass Effect 2",purchase,1.0,0 -14465359,"Mass Effect 2",play,65.0,0 -14465359,"Borderlands 2",purchase,1.0,0 -14465359,"Borderlands 2",play,60.0,0 -14465359,"Dota 2",purchase,1.0,0 -14465359,"Dota 2",play,57.0,0 -14465359,"Half-Life 2",purchase,1.0,0 -14465359,"Half-Life 2",play,52.0,0 -14465359,"XCOM Enemy Unknown",purchase,1.0,0 -14465359,"XCOM Enemy Unknown",play,52.0,0 -14465359,"Space Pirates and Zombies",purchase,1.0,0 -14465359,"Space Pirates and Zombies",play,46.0,0 -14465359,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -14465359,"The Witcher 2 Assassins of Kings Enhanced Edition",play,43.0,0 -14465359,"FTL Faster Than Light",purchase,1.0,0 -14465359,"FTL Faster Than Light",play,42.0,0 -14465359,"Grand Theft Auto V",purchase,1.0,0 -14465359,"Grand Theft Auto V",play,38.0,0 -14465359,"Fallout 4",purchase,1.0,0 -14465359,"Fallout 4",play,38.0,0 -14465359,"Mass Effect",purchase,1.0,0 -14465359,"Mass Effect",play,38.0,0 -14465359,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -14465359,"Unreal Tournament 3 Black Edition",play,36.0,0 -14465359,"Planetary Annihilation",purchase,1.0,0 -14465359,"Planetary Annihilation",play,35.0,0 -14465359,"Mount & Blade Warband",purchase,1.0,0 -14465359,"Mount & Blade Warband",play,35.0,0 -14465359,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -14465359,"Sid Meier's Civilization Beyond Earth",play,34.0,0 -14465359,"Transistor",purchase,1.0,0 -14465359,"Transistor",play,34.0,0 -14465359,"War Thunder",purchase,1.0,0 -14465359,"War Thunder",play,33.0,0 -14465359,"Offworld Trading Company",purchase,1.0,0 -14465359,"Offworld Trading Company",play,32.0,0 -14465359,"Rebel Galaxy",purchase,1.0,0 -14465359,"Rebel Galaxy",play,31.0,0 -14465359,"Prison Architect",purchase,1.0,0 -14465359,"Prison Architect",play,29.0,0 -14465359,"Eufloria",purchase,1.0,0 -14465359,"Eufloria",play,25.0,0 -14465359,"Kerbal Space Program",purchase,1.0,0 -14465359,"Kerbal Space Program",play,24.0,0 -14465359,"Left 4 Dead",purchase,1.0,0 -14465359,"Left 4 Dead",play,23.0,0 -14465359,"Day of Defeat Source",purchase,1.0,0 -14465359,"Day of Defeat Source",play,22.0,0 -14465359,"Counter-Strike Source",purchase,1.0,0 -14465359,"Counter-Strike Source",play,21.0,0 -14465359,"Cities Skylines",purchase,1.0,0 -14465359,"Cities Skylines",play,20.0,0 -14465359,"Portal 2",purchase,1.0,0 -14465359,"Portal 2",play,17.9,0 -14465359,"Endless Legend",purchase,1.0,0 -14465359,"Endless Legend",play,17.2,0 -14465359,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -14465359,"Rising Storm/Red Orchestra 2 Multiplayer",play,17.1,0 -14465359,"Age of Chivalry",purchase,1.0,0 -14465359,"Age of Chivalry",play,15.2,0 -14465359,"GRID",purchase,1.0,0 -14465359,"GRID",play,15.2,0 -14465359,"EVE Online",purchase,1.0,0 -14465359,"EVE Online",play,15.0,0 -14465359,"Shattered Horizon",purchase,1.0,0 -14465359,"Shattered Horizon",play,14.7,0 -14465359,"Crysis Warhead",purchase,1.0,0 -14465359,"Crysis Warhead",play,13.5,0 -14465359,"Arma 2",purchase,1.0,0 -14465359,"Arma 2",play,12.8,0 -14465359,"Alien Swarm",purchase,1.0,0 -14465359,"Alien Swarm",play,12.6,0 -14465359,"Door Kickers",purchase,1.0,0 -14465359,"Door Kickers",play,11.0,0 -14465359,"Half-Life 2 Episode Two",purchase,1.0,0 -14465359,"Half-Life 2 Episode Two",play,10.7,0 -14465359,"Anno 2070",purchase,1.0,0 -14465359,"Anno 2070",play,10.3,0 -14465359,"Left 4 Dead 2",purchase,1.0,0 -14465359,"Left 4 Dead 2",play,10.0,0 -14465359,"Frozen Synapse",purchase,1.0,0 -14465359,"Frozen Synapse",play,9.6,0 -14465359,"Crysis 2 Maximum Edition",purchase,1.0,0 -14465359,"Crysis 2 Maximum Edition",play,9.3,0 -14465359,"War of the Roses",purchase,1.0,0 -14465359,"War of the Roses",play,9.2,0 -14465359,"DiRT 2",purchase,1.0,0 -14465359,"DiRT 2",play,8.5,0 -14465359,"Killing Floor",purchase,1.0,0 -14465359,"Killing Floor",play,8.5,0 -14465359,"Insurgency",purchase,1.0,0 -14465359,"Insurgency",play,8.4,0 -14465359,"BioShock Infinite",purchase,1.0,0 -14465359,"BioShock Infinite",play,8.1,0 -14465359,"SPACECOM",purchase,1.0,0 -14465359,"SPACECOM",play,6.4,0 -14465359,"Half-Life 2 Episode One",purchase,1.0,0 -14465359,"Half-Life 2 Episode One",play,6.3,0 -14465359,"Insurgency Modern Infantry Combat",purchase,1.0,0 -14465359,"Insurgency Modern Infantry Combat",play,5.4,0 -14465359,"3DMark",purchase,1.0,0 -14465359,"3DMark",play,5.4,0 -14465359,"War of the Roses Balance Beta",purchase,1.0,0 -14465359,"War of the Roses Balance Beta",play,5.1,0 -14465359,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -14465359,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,5.0,0 -14465359,"Artemis Spaceship Bridge Simulator",purchase,1.0,0 -14465359,"Artemis Spaceship Bridge Simulator",play,4.1,0 -14465359,"Portal",purchase,1.0,0 -14465359,"Portal",play,4.0,0 -14465359,"Medal of Honor(TM) Single Player",purchase,1.0,0 -14465359,"Medal of Honor(TM) Single Player",play,3.8,0 -14465359,"The Swapper",purchase,1.0,0 -14465359,"The Swapper",play,3.4,0 -14465359,"Batman Arkham Asylum",purchase,1.0,0 -14465359,"Batman Arkham Asylum",play,3.1,0 -14465359,"3DMark 11",purchase,1.0,0 -14465359,"3DMark 11",play,3.0,0 -14465359,"You Need A Budget 4 (YNAB)",purchase,1.0,0 -14465359,"You Need A Budget 4 (YNAB)",play,2.4,0 -14465359,"Project CARS",purchase,1.0,0 -14465359,"Project CARS",play,2.4,0 -14465359,"Arma 2 Private Military Company",purchase,1.0,0 -14465359,"Arma 2 Private Military Company",play,2.3,0 -14465359,"DEFCON",purchase,1.0,0 -14465359,"DEFCON",play,2.3,0 -14465359,"Dead Island",purchase,1.0,0 -14465359,"Dead Island",play,2.0,0 -14465359,"Carrier Command Gaea Mission",purchase,1.0,0 -14465359,"Carrier Command Gaea Mission",play,1.9,0 -14465359,"Revenge of the Titans",purchase,1.0,0 -14465359,"Revenge of the Titans",play,1.7,0 -14465359,"Synergy",purchase,1.0,0 -14465359,"Synergy",play,1.7,0 -14465359,"Minimum",purchase,1.0,0 -14465359,"Minimum",play,1.7,0 -14465359,"Half-Life",purchase,1.0,0 -14465359,"Half-Life",play,1.6,0 -14465359,"Oil Rush",purchase,1.0,0 -14465359,"Oil Rush",play,1.6,0 -14465359,"Splice",purchase,1.0,0 -14465359,"Splice",play,1.4,0 -14465359,"Star Wars Empire at War Gold",purchase,1.0,0 -14465359,"Star Wars Empire at War Gold",play,1.4,0 -14465359,"Nation Red",purchase,1.0,0 -14465359,"Nation Red",play,1.4,0 -14465359,"Tower Wars",purchase,1.0,0 -14465359,"Tower Wars",play,1.4,0 -14465359,"Cities XL 2011",purchase,1.0,0 -14465359,"Cities XL 2011",play,1.3,0 -14465359,"Planetbase",purchase,1.0,0 -14465359,"Planetbase",play,1.1,0 -14465359,"Antichamber",purchase,1.0,0 -14465359,"Antichamber",play,1.1,0 -14465359,"Smashball",purchase,1.0,0 -14465359,"Smashball",play,1.1,0 -14465359,"Cortex Command",purchase,1.0,0 -14465359,"Cortex Command",play,0.9,0 -14465359,"Galactic Civilizations III",purchase,1.0,0 -14465359,"Galactic Civilizations III",play,0.9,0 -14465359,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -14465359,"Killing Floor Mod Defence Alliance 2",play,0.9,0 -14465359,"Metro 2033",purchase,1.0,0 -14465359,"Metro 2033",play,0.9,0 -14465359,"Supreme Commander Forged Alliance",purchase,1.0,0 -14465359,"Supreme Commander Forged Alliance",play,0.8,0 -14465359,"The Stanley Parable",purchase,1.0,0 -14465359,"The Stanley Parable",play,0.8,0 -14465359,"Crysis Wars",purchase,1.0,0 -14465359,"Crysis Wars",play,0.8,0 -14465359,"Planetary Annihilation TITANS",purchase,1.0,0 -14465359,"Planetary Annihilation TITANS",play,0.8,0 -14465359,"Intrusion 2",purchase,1.0,0 -14465359,"Intrusion 2",play,0.7,0 -14465359,"Broken Age",purchase,1.0,0 -14465359,"Broken Age",play,0.7,0 -14465359,"Blade Symphony",purchase,1.0,0 -14465359,"Blade Symphony",play,0.6,0 -14465359,"Counter-Strike",purchase,1.0,0 -14465359,"Counter-Strike",play,0.6,0 -14465359,"Arma 2 DayZ Mod",purchase,1.0,0 -14465359,"Arma 2 DayZ Mod",play,0.5,0 -14465359,"LIMBO",purchase,1.0,0 -14465359,"LIMBO",play,0.4,0 -14465359,"DayZ",purchase,1.0,0 -14465359,"DayZ",play,0.4,0 -14465359,"Empires",purchase,1.0,0 -14465359,"Empires",play,0.4,0 -14465359,"Evochron Mercenary",purchase,1.0,0 -14465359,"Evochron Mercenary",play,0.4,0 -14465359,"DiRT Rally",purchase,1.0,0 -14465359,"DiRT Rally",play,0.4,0 -14465359,"SpaceChem",purchase,1.0,0 -14465359,"SpaceChem",play,0.4,0 -14465359,"Starbound",purchase,1.0,0 -14465359,"Starbound",play,0.4,0 -14465359,"Serious Sam HD The Second Encounter",purchase,1.0,0 -14465359,"Serious Sam HD The Second Encounter",play,0.3,0 -14465359,"Sublevel Zero",purchase,1.0,0 -14465359,"Sublevel Zero",play,0.3,0 -14465359,"StarForge",purchase,1.0,0 -14465359,"StarForge",play,0.2,0 -14465359,"Shatter",purchase,1.0,0 -14465359,"Shatter",play,0.2,0 -14465359,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -14465359,"Medal of Honor(TM) Multiplayer",play,0.2,0 -14465359,"Company of Heroes Tales of Valor",purchase,1.0,0 -14465359,"Company of Heroes Tales of Valor",play,0.2,0 -14465359,"Tom Clancy's Ghost Recon",purchase,1.0,0 -14465359,"Tom Clancy's Ghost Recon",play,0.2,0 -14465359,"MASSIVE CHALICE",purchase,1.0,0 -14465359,"MASSIVE CHALICE",play,0.1,0 -14465359,"Half-Life 2 Deathmatch",purchase,1.0,0 -14465359,"Half-Life 2 Deathmatch",play,0.1,0 -14465359,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -14465359,"Deus Ex Human Revolution - The Missing Link",play,0.1,0 -14465359,"Auditorium",purchase,1.0,0 -14465359,"Auditorium",play,0.1,0 -14465359,"Killing Floor Beta",purchase,1.0,0 -14465359,"Killing Floor Beta",play,0.1,0 -14465359,"Ghost Master",purchase,1.0,0 -14465359,"Ghost Master",play,0.1,0 -14465359,"Arma 2 British Armed Forces",purchase,1.0,0 -14465359,"Ashes of the Singularity",purchase,1.0,0 -14465359,"Hero Academy",purchase,1.0,0 -14465359,"Half-Life Source",purchase,1.0,0 -14465359,"3DMark API Overhead feature test",purchase,1.0,0 -14465359,"3DMark Cloud Gate benchmark",purchase,1.0,0 -14465359,"3DMark Fire Strike benchmark",purchase,1.0,0 -14465359,"3DMark Ice Storm benchmark",purchase,1.0,0 -14465359,"3DMark Sky Diver benchmark",purchase,1.0,0 -14465359,"AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome",purchase,1.0,0 -14465359,"All Zombies Must Die!",purchase,1.0,0 -14465359,"Anomaly 2",purchase,1.0,0 -14465359,"Aquaria",purchase,1.0,0 -14465359,"Arma 3 Helicopters",purchase,1.0,0 -14465359,"Arma 3 Karts",purchase,1.0,0 -14465359,"Arma 3 Marksmen",purchase,1.0,0 -14465359,"Arma 3 Zeus",purchase,1.0,0 -14465359,"Arma Cold War Assault",purchase,1.0,0 -14465359,"Awesomenauts",purchase,1.0,0 -14465359,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -14465359,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -14465359,"Battlestations Midway",purchase,1.0,0 -14465359,"Battlestations Pacific",purchase,1.0,0 -14465359,"Beat Hazard",purchase,1.0,0 -14465359,"Ben There, Dan That!",purchase,1.0,0 -14465359,"BioShock",purchase,1.0,0 -14465359,"BIT.TRIP RUNNER",purchase,1.0,0 -14465359,"Broken Sword 1 - Shadow of the Templars Director's Cut",purchase,1.0,0 -14465359,"Capsized",purchase,1.0,0 -14465359,"Chivalry Medieval Warfare",purchase,1.0,0 -14465359,"Commandos 2 Men of Courage",purchase,1.0,0 -14465359,"Commandos 3 Destination Berlin",purchase,1.0,0 -14465359,"Commandos Behind Enemy Lines",purchase,1.0,0 -14465359,"Commandos Beyond the Call of Duty",purchase,1.0,0 -14465359,"Company of Heroes",purchase,1.0,0 -14465359,"Company of Heroes (New Steam Version)",purchase,1.0,0 -14465359,"Company of Heroes Opposing Fronts",purchase,1.0,0 -14465359,"Conflict Denied Ops",purchase,1.0,0 -14465359,"Counter-Strike Condition Zero",purchase,1.0,0 -14465359,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -14465359,"Crayon Physics Deluxe",purchase,1.0,0 -14465359,"Darksiders",purchase,1.0,0 -14465359,"Day of Defeat",purchase,1.0,0 -14465359,"DCS World",purchase,1.0,0 -14465359,"Dear Esther",purchase,1.0,0 -14465359,"Deathmatch Classic",purchase,1.0,0 -14465359,"Deus Ex Game of the Year Edition",purchase,1.0,0 -14465359,"Deus Ex Human Revolution",purchase,1.0,0 -14465359,"Deus Ex Invisible War",purchase,1.0,0 -14465359,"Digital Combat Simulator A-10C Warthog",purchase,1.0,0 -14465359,"Droid Assault",purchase,1.0,0 -14465359,"Dustforce",purchase,1.0,0 -14465359,"Empire Total War",purchase,1.0,0 -14465359,"English Country Tune",purchase,1.0,0 -14465359,"Eufloria HD",purchase,1.0,0 -14465359,"Eufloria HD Original Soundtrack",purchase,1.0,0 -14465359,"EVGA PrecisionX 16",purchase,1.0,0 -14465359,"Fallout New Vegas",purchase,1.0,0 -14465359,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -14465359,"Fallout New Vegas Dead Money",purchase,1.0,0 -14465359,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -14465359,"Flora's Fruit Farm",purchase,1.0,0 -14465359,"Fractal Make Blooms Not War",purchase,1.0,0 -14465359,"Gemini Rue",purchase,1.0,0 -14465359,"Gnomoria",purchase,1.0,0 -14465359,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -14465359,"Grand Theft Auto San Andreas",purchase,1.0,0 -14465359,"Grand Theft Auto San Andreas",purchase,1.0,0 -14465359,"Grand Theft Auto Vice City",purchase,1.0,0 -14465359,"Grand Theft Auto Vice City",purchase,1.0,0 -14465359,"Grand Theft Auto III",purchase,1.0,0 -14465359,"Grand Theft Auto III",purchase,1.0,0 -14465359,"Grand Theft Auto IV",purchase,1.0,0 -14465359,"Half-Life 2 Lost Coast",purchase,1.0,0 -14465359,"Half-Life 2 Update",purchase,1.0,0 -14465359,"Half-Life Blue Shift",purchase,1.0,0 -14465359,"Half-Life Opposing Force",purchase,1.0,0 -14465359,"Half-Life Deathmatch Source",purchase,1.0,0 -14465359,"HAWKEN",purchase,1.0,0 -14465359,"Heroes & Generals",purchase,1.0,0 -14465359,"Hitman 2 Silent Assassin",purchase,1.0,0 -14465359,"Hitman Absolution",purchase,1.0,0 -14465359,"Hitman Blood Money",purchase,1.0,0 -14465359,"Hitman Codename 47",purchase,1.0,0 -14465359,"Hitman Sniper Challenge",purchase,1.0,0 -14465359,"Hotline Miami",purchase,1.0,0 -14465359,"Infernal",purchase,1.0,0 -14465359,"Jack Lumber",purchase,1.0,0 -14465359,"Just Cause",purchase,1.0,0 -14465359,"Just Cause 2",purchase,1.0,0 -14465359,"Kane & Lynch Dead Men",purchase,1.0,0 -14465359,"Little Inferno",purchase,1.0,0 -14465359,"Machinarium",purchase,1.0,0 -14465359,"McPixel",purchase,1.0,0 -14465359,"Medal of Honor Pre-Order",purchase,1.0,0 -14465359,"Medieval II Total War",purchase,1.0,0 -14465359,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -14465359,"Mini Ninjas",purchase,1.0,0 -14465359,"Mirror's Edge",purchase,1.0,0 -14465359,"Napoleon Total War",purchase,1.0,0 -14465359,"NEOTOKYO",purchase,1.0,0 -14465359,"NightSky",purchase,1.0,0 -14465359,"Organ Trail Director's Cut",purchase,1.0,0 -14465359,"Patch testing for Chivalry",purchase,1.0,0 -14465359,"Project Snowblind",purchase,1.0,0 -14465359,"Proteus",purchase,1.0,0 -14465359,"Razor2 Hidden Skies",purchase,1.0,0 -14465359,"Red Faction Armageddon",purchase,1.0,0 -14465359,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -14465359,"Ricochet",purchase,1.0,0 -14465359,"Rochard",purchase,1.0,0 -14465359,"Rocket League",purchase,1.0,0 -14465359,"Rogue Trooper",purchase,1.0,0 -14465359,"Rome Total War",purchase,1.0,0 -14465359,"Saints Row The Third",purchase,1.0,0 -14465359,"Shellshock 2 Blood Trails",purchase,1.0,0 -14465359,"Sid Meier's Civilization Beyond Earth - Rising Tide",purchase,1.0,0 -14465359,"Sid Meier's Civilization IV",purchase,1.0,0 -14465359,"Sid Meier's Civilization IV",purchase,1.0,0 -14465359,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -14465359,"Sins of a Solar Empire Rebellion - Stellar Phenomena DLC",purchase,1.0,0 -14465359,"Sins of a Solar Empire Rebellion Forbidden Worlds",purchase,1.0,0 -14465359,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -14465359,"Starbound - Unstable",purchase,1.0,0 -14465359,"Star Wars - Battlefront II",purchase,1.0,0 -14465359,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -14465359,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -14465359,"Star Wars Dark Forces",purchase,1.0,0 -14465359,"Star Wars Knights of the Old Republic",purchase,1.0,0 -14465359,"Star Wars The Force Unleashed II",purchase,1.0,0 -14465359,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -14465359,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -14465359,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -14465359,"Star Wars Republic Commando",purchase,1.0,0 -14465359,"Star Wars Starfighter",purchase,1.0,0 -14465359,"Star Wars The Clone Wars Republic Heroes",purchase,1.0,0 -14465359,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -14465359,"Stealth Bastard Deluxe",purchase,1.0,0 -14465359,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -14465359,"Team Fortress Classic",purchase,1.0,0 -14465359,"Terraria",purchase,1.0,0 -14465359,"The Misadventures of P.B. Winterbottom",purchase,1.0,0 -14465359,"The Witcher Enhanced Edition",purchase,1.0,0 -14465359,"Thief Deadly Shadows",purchase,1.0,0 -14465359,"Thomas Was Alone",purchase,1.0,0 -14465359,"Ticket to Ride",purchase,1.0,0 -14465359,"Tidalis",purchase,1.0,0 -14465359,"Time Gentlemen, Please!",purchase,1.0,0 -14465359,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -14465359,"Titan Attacks",purchase,1.0,0 -14465359,"Titan Quest",purchase,1.0,0 -14465359,"Tomb Raider",purchase,1.0,0 -14465359,"Tomb Raider Legend",purchase,1.0,0 -14465359,"Tomb Raider Underworld",purchase,1.0,0 -14465359,"Tom Clancy's Ghost Recon Advanced Warfighter",purchase,1.0,0 -14465359,"Tom Clancy's Ghost Recon Advanced Warfighter 2",purchase,1.0,0 -14465359,"Tom Clancy's Ghost Recon Desert Siege",purchase,1.0,0 -14465359,"Tom Clancy's Ghost Recon Island Thunder",purchase,1.0,0 -14465359,"Tom Clancy's Splinter Cell",purchase,1.0,0 -14465359,"Tom Clancy's Splinter Cell Chaos Theory",purchase,1.0,0 -14465359,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -14465359,"Tom Clancy's Splinter Cell Double Agent",purchase,1.0,0 -14465359,"Torchlight",purchase,1.0,0 -14465359,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -14465359,"Total War Battles SHOGUN",purchase,1.0,0 -14465359,"To the Moon",purchase,1.0,0 -14465359,"TRAUMA",purchase,1.0,0 -14465359,"Trine",purchase,1.0,0 -14465359,"Trine 2",purchase,1.0,0 -14465359,"Ultratron",purchase,1.0,0 -14465359,"Vessel",purchase,1.0,0 -14465359,"Viking Battle for Asgard",purchase,1.0,0 -14465359,"Waking Mars",purchase,1.0,0 -14465359,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -14465359,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -14465359,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -14465359,"War of the Roses Kingmaker",purchase,1.0,0 -14465359,"X3 Terran Conflict",purchase,1.0,0 -14465359,"XCOM Enemy Within",purchase,1.0,0 -157899889,"Dota 2",purchase,1.0,0 -157899889,"Dota 2",play,0.2,0 -202664112,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -202664112,"Call of Duty Advanced Warfare - Multiplayer",play,29.0,0 -202664112,"Call of Duty Advanced Warfare",purchase,1.0,0 -202664112,"Loadout",purchase,1.0,0 -202664112,"PlanetSide 2",purchase,1.0,0 -202664112,"The Mighty Quest For Epic Loot",purchase,1.0,0 -163308692,"Dota 2",purchase,1.0,0 -163308692,"Dota 2",play,1456.0,0 -163308692,"Aura Kingdom",purchase,1.0,0 -163308692,"Chaos Heroes Online",purchase,1.0,0 -163308692,"Eldevin",purchase,1.0,0 -163308692,"FreeStyle2 Street Basketball",purchase,1.0,0 -163308692,"No More Room in Hell",purchase,1.0,0 -163308692,"Robocraft",purchase,1.0,0 -163308692,"Star Conflict",purchase,1.0,0 -163308692,"The Way of Life Free Edition",purchase,1.0,0 -163308692,"Unturned",purchase,1.0,0 -163308692,"Warframe",purchase,1.0,0 -163308692,"Without Within",purchase,1.0,0 -130057540,"Dota 2",purchase,1.0,0 -130057540,"Dota 2",play,648.0,0 -130057540,"Counter-Strike Global Offensive",purchase,1.0,0 -130057540,"Counter-Strike Global Offensive",play,165.0,0 -130057540,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -130057540,"The Witcher 2 Assassins of Kings Enhanced Edition",play,35.0,0 -63441290,"Dota 2",purchase,1.0,0 -63441290,"Dota 2",play,292.0,0 -63441290,"Assassin's Creed IV Black Flag",purchase,1.0,0 -63441290,"Assassin's Creed IV Black Flag",play,158.0,0 -63441290,"Football Manager 2015",purchase,1.0,0 -63441290,"Football Manager 2015",play,112.0,0 -63441290,"DC Universe Online",purchase,1.0,0 -63441290,"DC Universe Online",play,77.0,0 -63441290,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -63441290,"Resident Evil 6 / Biohazard 6",play,76.0,0 -63441290,"Dragon Age II",purchase,1.0,0 -63441290,"Dragon Age II",play,70.0,0 -63441290,"L.A. Noire",purchase,1.0,0 -63441290,"L.A. Noire",play,43.0,0 -63441290,"FINAL FANTASY XIII",purchase,1.0,0 -63441290,"FINAL FANTASY XIII",play,41.0,0 -63441290,"The Last Remnant",purchase,1.0,0 -63441290,"The Last Remnant",play,40.0,0 -63441290,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -63441290,"Warhammer 40,000 Dawn of War II",play,35.0,0 -63441290,"Assassin's Creed III",purchase,1.0,0 -63441290,"Assassin's Creed III",play,34.0,0 -63441290,"MLB 2K12",purchase,1.0,0 -63441290,"MLB 2K12",play,33.0,0 -63441290,"Saints Row The Third",purchase,1.0,0 -63441290,"Saints Row The Third",play,32.0,0 -63441290,"Saints Row 2",purchase,1.0,0 -63441290,"Saints Row 2",play,32.0,0 -63441290,"DRAGON BALL XENOVERSE",purchase,1.0,0 -63441290,"DRAGON BALL XENOVERSE",play,31.0,0 -63441290,"Sleeping Dogs",purchase,1.0,0 -63441290,"Sleeping Dogs",play,27.0,0 -63441290,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -63441290,"Warhammer 40,000 Dawn of War II Retribution",play,24.0,0 -63441290,"Assassin's Creed Revelations",purchase,1.0,0 -63441290,"Assassin's Creed Revelations",play,23.0,0 -63441290,"Divinity Dragon Commander",purchase,1.0,0 -63441290,"Divinity Dragon Commander",play,21.0,0 -63441290,"Saints Row IV",purchase,1.0,0 -63441290,"Saints Row IV",play,20.0,0 -63441290,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -63441290,"Sid Meier's Civilization Beyond Earth",play,19.0,0 -63441290,"Defiance",purchase,1.0,0 -63441290,"Defiance",play,18.6,0 -63441290,"The Bureau XCOM Declassified",purchase,1.0,0 -63441290,"The Bureau XCOM Declassified",play,17.7,0 -63441290,"Might & Magic Clash of Heroes",purchase,1.0,0 -63441290,"Might & Magic Clash of Heroes",play,17.3,0 -63441290,"Mafia II",purchase,1.0,0 -63441290,"Mafia II",play,17.1,0 -63441290,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -63441290,"Resident Evil Revelations / Biohazard Revelations",play,17.1,0 -63441290,"Might & Magic Heroes VI",purchase,1.0,0 -63441290,"Might & Magic Heroes VI",play,16.9,0 -63441290,"Fallout Tactics",purchase,1.0,0 -63441290,"Fallout Tactics",play,14.3,0 -63441290,"Dead State",purchase,1.0,0 -63441290,"Dead State",play,14.2,0 -63441290,"Darksiders",purchase,1.0,0 -63441290,"Darksiders",play,14.0,0 -63441290,"Tomb Raider",purchase,1.0,0 -63441290,"Tomb Raider",play,12.6,0 -63441290,"Dragon Age Origins",purchase,1.0,0 -63441290,"Dragon Age Origins",play,12.5,0 -63441290,"Castlevania Lords of Shadow - Ultimate Edition",purchase,1.0,0 -63441290,"Castlevania Lords of Shadow - Ultimate Edition",play,11.9,0 -63441290,"This War of Mine",purchase,1.0,0 -63441290,"This War of Mine",play,11.2,0 -63441290,"Freight Tycoon Inc.",purchase,1.0,0 -63441290,"Freight Tycoon Inc.",play,10.9,0 -63441290,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -63441290,"Call of Duty Black Ops II - Multiplayer",play,10.8,0 -63441290,"A Game of Thrones - Genesis",purchase,1.0,0 -63441290,"A Game of Thrones - Genesis",play,10.4,0 -63441290,"Mars War Logs",purchase,1.0,0 -63441290,"Mars War Logs",play,10.3,0 -63441290,"Call of Duty Black Ops II",purchase,1.0,0 -63441290,"Call of Duty Black Ops II",play,10.0,0 -63441290,"Tom Clancy's H.A.W.X. 2",purchase,1.0,0 -63441290,"Tom Clancy's H.A.W.X. 2",play,9.8,0 -63441290,"Call of Duty Black Ops",purchase,1.0,0 -63441290,"Call of Duty Black Ops",play,8.8,0 -63441290,"PAYDAY 2",purchase,1.0,0 -63441290,"PAYDAY 2",play,8.3,0 -63441290,"Valkyria Chronicles",purchase,1.0,0 -63441290,"Valkyria Chronicles",play,8.0,0 -63441290,"Fallen Enchantress Legendary Heroes",purchase,1.0,0 -63441290,"Fallen Enchantress Legendary Heroes",play,7.8,0 -63441290,"Mortal Kombat Komplete Edition",purchase,1.0,0 -63441290,"Mortal Kombat Komplete Edition",play,7.6,0 -63441290,"Max Payne 3",purchase,1.0,0 -63441290,"Max Payne 3",play,7.3,0 -63441290,"Agarest Zero",purchase,1.0,0 -63441290,"Agarest Zero",play,7.0,0 -63441290,"Dungeon Defenders",purchase,1.0,0 -63441290,"Dungeon Defenders",play,6.3,0 -63441290,"Prison Architect",purchase,1.0,0 -63441290,"Prison Architect",play,6.2,0 -63441290,"Pro Evolution Soccer 2013",purchase,1.0,0 -63441290,"Pro Evolution Soccer 2013",play,5.6,0 -63441290,"Torchlight",purchase,1.0,0 -63441290,"Torchlight",play,5.6,0 -63441290,"Orcs Must Die!",purchase,1.0,0 -63441290,"Orcs Must Die!",play,4.8,0 -63441290,"Titan Quest",purchase,1.0,0 -63441290,"Titan Quest",play,4.6,0 -63441290,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -63441290,"The Incredible Adventures of Van Helsing",play,4.1,0 -63441290,"Wasteland 2",purchase,1.0,0 -63441290,"Wasteland 2",play,4.1,0 -63441290,"Monday Night Combat",purchase,1.0,0 -63441290,"Monday Night Combat",play,4.0,0 -63441290,"Game Tycoon 1.5",purchase,1.0,0 -63441290,"Game Tycoon 1.5",play,3.5,0 -63441290,"Metro 2033",purchase,1.0,0 -63441290,"Metro 2033",play,3.4,0 -63441290,"Atom Zombie Smasher ",purchase,1.0,0 -63441290,"Atom Zombie Smasher ",play,3.0,0 -63441290,"Guardians of Middle-earth",purchase,1.0,0 -63441290,"Guardians of Middle-earth",play,3.0,0 -63441290,"Magicka",purchase,1.0,0 -63441290,"Magicka",play,2.8,0 -63441290,"Wargame European Escalation",purchase,1.0,0 -63441290,"Wargame European Escalation",play,2.7,0 -63441290,"Ship Simulator Extremes",purchase,1.0,0 -63441290,"Ship Simulator Extremes",play,1.9,0 -63441290,"Torchlight II",purchase,1.0,0 -63441290,"Torchlight II",play,1.7,0 -63441290,"Breach",purchase,1.0,0 -63441290,"Breach",play,1.4,0 -63441290,"Infinite Crisis",purchase,1.0,0 -63441290,"Infinite Crisis",play,1.4,0 -63441290,"FINAL FANTASY VIII",purchase,1.0,0 -63441290,"FINAL FANTASY VIII",play,1.3,0 -63441290,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -63441290,"Call of Duty Black Ops II - Zombies",play,1.3,0 -63441290,"Deathtrap",purchase,1.0,0 -63441290,"Deathtrap",play,0.9,0 -63441290,"Kingdom Wars",purchase,1.0,0 -63441290,"Kingdom Wars",play,0.8,0 -63441290,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -63441290,"Call of Duty Black Ops - Multiplayer",play,0.7,0 -63441290,"MX vs. ATV Reflex",purchase,1.0,0 -63441290,"MX vs. ATV Reflex",play,0.7,0 -63441290,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -63441290,"Sins of a Solar Empire Rebellion",play,0.3,0 -63441290,"Super Monday Night Combat",purchase,1.0,0 -63441290,"Super Monday Night Combat",play,0.3,0 -63441290,"Heroes of Might & Magic V",purchase,1.0,0 -63441290,"Heroes of Might & Magic V",play,0.2,0 -63441290,"Agarest Generations of War",purchase,1.0,0 -63441290,"Agarest Generations of War 2",purchase,1.0,0 -63441290,"Agarest Generations of War Premium Edition Upgrade",purchase,1.0,0 -63441290,"Company of Heroes",purchase,1.0,0 -63441290,"Company of Heroes (New Steam Version)",purchase,1.0,0 -63441290,"Company of Heroes Opposing Fronts",purchase,1.0,0 -63441290,"Divinity Dragon Commander Beta",purchase,1.0,0 -63441290,"Dragon Age Origins - Awakening",purchase,1.0,0 -63441290,"Heroes of Might & Magic V Tribes of the East",purchase,1.0,0 -63441290,"Homefront",purchase,1.0,0 -63441290,"Killing Floor Uncovered",purchase,1.0,0 -63441290,"Lost Planet Extreme Condition",purchase,1.0,0 -63441290,"Pro Evolution Soccer 2013 DP DLC",purchase,1.0,0 -63441290,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -63441290,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -63441290,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -63441290,"Spec Ops The Line",purchase,1.0,0 -63441290,"The Bard's Tale",purchase,1.0,0 -63441290,"The Bureau XCOM Declassified - Code Breakers",purchase,1.0,0 -63441290,"Titan Quest Immortal Throne",purchase,1.0,0 -63441290,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -63441290,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -63441290,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -63441290,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -63441290,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -63441290,"Wasteland 1 - The Original Classic",purchase,1.0,0 -63441290,"Wasteland 2 Director's Cut",purchase,1.0,0 -63441290,"X-COM Apocalypse",purchase,1.0,0 -63441290,"X-COM Enforcer",purchase,1.0,0 -63441290,"X-COM Interceptor",purchase,1.0,0 -63441290,"X-COM Terror from the Deep",purchase,1.0,0 -63441290,"X-COM UFO Defense",purchase,1.0,0 -63441290,"XCOM Enemy Unknown",purchase,1.0,0 -186145192,"Dota 2",purchase,1.0,0 -186145192,"Dota 2",play,1.3,0 -175290236,"Dota 2",purchase,1.0,0 -175290236,"Dota 2",play,11.2,0 -131963274,"Dota 2",purchase,1.0,0 -131963274,"Dota 2",play,94.0,0 -216799865,"Serious Sam HD The Second Encounter",purchase,1.0,0 -216799865,"Serious Sam HD The Second Encounter",play,0.2,0 -214184795,"Half-Life 2",purchase,1.0,0 -214184795,"Half-Life 2",play,5.5,0 -214184795,"Half-Life 2 Lost Coast",purchase,1.0,0 -207347046,"Dota 2",purchase,1.0,0 -207347046,"Dota 2",play,2.8,0 -72519264,"Age of Chivalry",purchase,1.0,0 -72519264,"Age of Chivalry",play,0.1,0 -75548930,"Counter-Strike Condition Zero",purchase,1.0,0 -75548930,"Counter-Strike Condition Zero",play,16.8,0 -75548930,"Counter-Strike",purchase,1.0,0 -75548930,"Counter-Strike",play,2.7,0 -75548930,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -75548930,"Counter-Strike Condition Zero Deleted Scenes",play,0.4,0 -98269934,"Sniper Ghost Warrior",purchase,1.0,0 -98269934,"Sniper Ghost Warrior",play,12.4,0 -293527273,"Team Fortress 2",purchase,1.0,0 -293527273,"Team Fortress 2",play,0.4,0 -293527273,"Counter-Strike Nexon Zombies",purchase,1.0,0 -293527273,"FreeStyle2 Street Basketball",purchase,1.0,0 -293527273,"HAWKEN",purchase,1.0,0 -293527273,"Loadout",purchase,1.0,0 -293527273,"Trove",purchase,1.0,0 -293527273,"Unturned",purchase,1.0,0 -293527273,"Warface",purchase,1.0,0 -245621941,"Trove",purchase,1.0,0 -245621941,"Trove",play,80.0,0 -245621941,"Counter-Strike Nexon Zombies",purchase,1.0,0 -245621941,"Counter-Strike Nexon Zombies",play,19.0,0 -245621941,"Mitos.is The Game",purchase,1.0,0 -245621941,"Mitos.is The Game",play,5.1,0 -245621941,"Elsword",purchase,1.0,0 -245621941,"Elsword",play,1.2,0 -245621941,"Unturned",purchase,1.0,0 -245621941,"Unturned",play,0.7,0 -304265629,"War Thunder",purchase,1.0,0 -304265629,"War Thunder",play,2.5,0 -304265629,"Dota 2",purchase,1.0,0 -304265629,"Dota 2",play,0.6,0 -50426766,"Empire Total War",purchase,1.0,0 -50426766,"Empire Total War",play,183.0,0 -39970405,"Half-Life 2 Deathmatch",purchase,1.0,0 -39970405,"Half-Life 2 Deathmatch",play,12.1,0 -39970405,"Half-Life 2 Lost Coast",purchase,1.0,0 -165480423,"Dota 2",purchase,1.0,0 -165480423,"Dota 2",play,108.0,0 -40964799,"Counter-Strike Source",purchase,1.0,0 -40964799,"Counter-Strike Source",play,0.2,0 -40964799,"Day of Defeat Source",purchase,1.0,0 -40964799,"Half-Life 2 Deathmatch",purchase,1.0,0 -40964799,"Half-Life 2 Lost Coast",purchase,1.0,0 -266845800,"Dota 2",purchase,1.0,0 -266845800,"Dota 2",play,295.0,0 -87694960,"Sid Meier's Civilization V",purchase,1.0,0 -87694960,"Sid Meier's Civilization V",play,106.0,0 -87694960,"Terraria",purchase,1.0,0 -87694960,"Terraria",play,52.0,0 -87694960,"Driver San Francisco",purchase,1.0,0 -87694960,"Driver San Francisco",play,48.0,0 -87694960,"Deus Ex Human Revolution",purchase,1.0,0 -87694960,"Deus Ex Human Revolution",play,38.0,0 -87694960,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -87694960,"Deus Ex Human Revolution - The Missing Link",play,17.8,0 -87694960,"Sacred 2 Gold",purchase,1.0,0 -87694960,"Sacred 2 Gold",play,9.9,0 -87694960,"Bastion",purchase,1.0,0 -87694960,"Bastion",play,9.3,0 -87694960,"Portal 2",purchase,1.0,0 -87694960,"Portal 2",play,8.7,0 -87694960,"GameMaker Studio",purchase,1.0,0 -87694960,"GameMaker Studio",play,7.8,0 -87694960,"Crash Time II",purchase,1.0,0 -87694960,"Crash Time II",play,7.4,0 -87694960,"The Elder Scrolls V Skyrim",purchase,1.0,0 -87694960,"The Elder Scrolls V Skyrim",play,4.7,0 -87694960,"FINAL FANTASY VII",purchase,1.0,0 -87694960,"FINAL FANTASY VII",play,4.4,0 -87694960,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -87694960,"Tropico 3 - Steam Special Edition",play,4.2,0 -87694960,"Penny Arcade's On the Rain-Slick Precipice of Darkness 4",purchase,1.0,0 -87694960,"Penny Arcade's On the Rain-Slick Precipice of Darkness 4",play,3.8,0 -87694960,"Borderlands 2",purchase,1.0,0 -87694960,"Borderlands 2",play,3.8,0 -87694960,"Alan Wake",purchase,1.0,0 -87694960,"Alan Wake",play,2.7,0 -87694960,"RPG Maker VX Ace",purchase,1.0,0 -87694960,"RPG Maker VX Ace",play,2.6,0 -87694960,"Universe Sandbox",purchase,1.0,0 -87694960,"Universe Sandbox",play,2.4,0 -87694960,"Scratches Director's Cut",purchase,1.0,0 -87694960,"Scratches Director's Cut",play,2.1,0 -87694960,"Left 4 Dead 2",purchase,1.0,0 -87694960,"Left 4 Dead 2",play,1.7,0 -87694960,"FATE Undiscovered Realms",purchase,1.0,0 -87694960,"FATE Undiscovered Realms",play,1.2,0 -87694960,"Dead Island",purchase,1.0,0 -87694960,"Dead Island",play,1.2,0 -87694960,"Patrician IV Steam Special Edition",purchase,1.0,0 -87694960,"Patrician IV Steam Special Edition",play,1.1,0 -87694960,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -87694960,"Burnout Paradise The Ultimate Box",play,1.1,0 -87694960,"Mirror's Edge",purchase,1.0,0 -87694960,"Mirror's Edge",play,1.0,0 -87694960,"Earth 2160",purchase,1.0,0 -87694960,"Earth 2160",play,0.8,0 -87694960,"Wanderlust Rebirth",purchase,1.0,0 -87694960,"Wanderlust Rebirth",play,0.7,0 -87694960,"Scribblenauts Unlimited",purchase,1.0,0 -87694960,"Scribblenauts Unlimited",play,0.7,0 -87694960,"Putt-Putt and Pep's Balloon-o-Rama",purchase,1.0,0 -87694960,"Putt-Putt and Pep's Balloon-o-Rama",play,0.5,0 -87694960,"Legend of Dungeon",purchase,1.0,0 -87694960,"Legend of Dungeon",play,0.5,0 -87694960,"Tank Universal",purchase,1.0,0 -87694960,"Tank Universal",play,0.4,0 -87694960,"Dream Pinball 3D",purchase,1.0,0 -87694960,"Dream Pinball 3D",play,0.4,0 -87694960,"Galaxy on Fire 2 Full HD",purchase,1.0,0 -87694960,"Galaxy on Fire 2 Full HD",play,0.4,0 -87694960,"Risen 2 - Dark Waters",purchase,1.0,0 -87694960,"Risen 2 - Dark Waters",play,0.3,0 -87694960,"Crusader Kings II",purchase,1.0,0 -87694960,"Crusader Kings II",play,0.3,0 -87694960,"Wasteland Angel",purchase,1.0,0 -87694960,"Wasteland Angel",play,0.2,0 -87694960,"Freddi Fish and Luther's Maze Madness",purchase,1.0,0 -87694960,"Freddi Fish and Luther's Maze Madness",play,0.2,0 -87694960,"SpaceChem",purchase,1.0,0 -87694960,"SpaceChem",play,0.2,0 -87694960,"Deus Ex Game of the Year Edition",purchase,1.0,0 -87694960,"Deus Ex Game of the Year Edition",play,0.2,0 -87694960,"Anomaly Warzone Earth",purchase,1.0,0 -87694960,"Anomaly Warzone Earth",play,0.2,0 -87694960,"Jagged Alliance 2 - Wildfire ",purchase,1.0,0 -87694960,"Jagged Alliance 2 - Wildfire ",play,0.2,0 -87694960,"Toki Tori",purchase,1.0,0 -87694960,"Toki Tori",play,0.1,0 -87694960,"Deus Ex Invisible War",purchase,1.0,0 -87694960,"Deus Ex Invisible War",play,0.1,0 -87694960,"Restaurant Empire II",purchase,1.0,0 -87694960,"Evoland",purchase,1.0,0 -87694960,"Saints Row The Third",purchase,1.0,0 -87694960,"Metro 2033",purchase,1.0,0 -87694960,"Vigil Blood Bitterness",purchase,1.0,0 -87694960,"Alan Wake's American Nightmare",purchase,1.0,0 -87694960,"RUSH",purchase,1.0,0 -87694960,"EDGE",purchase,1.0,0 -87694960,"World of Goo",purchase,1.0,0 -87694960,"FATE",purchase,1.0,0 -87694960,"BioShock Infinite",purchase,1.0,0 -87694960,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",purchase,1.0,0 -87694960,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -87694960,"Sacred Citadel",purchase,1.0,0 -87694960,"Risen",purchase,1.0,0 -87694960,"Avencast",purchase,1.0,0 -87694960,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -87694960,"Saints Row 2",purchase,1.0,0 -87694960,"8BitBoy",purchase,1.0,0 -87694960,"1953 - KGB Unleashed",purchase,1.0,0 -87694960,"Afterfall InSanity Extended Edition",purchase,1.0,0 -87694960,"Agricultural Simulator 2011 Extended Edition",purchase,1.0,0 -87694960,"Air Conflicts - Secret Wars",purchase,1.0,0 -87694960,"Air Conflicts Pacific Carriers",purchase,1.0,0 -87694960,"Alien Breed Impact",purchase,1.0,0 -87694960,"Alpha Prime",purchase,1.0,0 -87694960,"Amnesia The Dark Descent",purchase,1.0,0 -87694960,"Anodyne",purchase,1.0,0 -87694960,"Arma 2",purchase,1.0,0 -87694960,"Arma Cold War Assault",purchase,1.0,0 -87694960,"Arma Gold Edition",purchase,1.0,0 -87694960,"Arma Tactics",purchase,1.0,0 -87694960,"Aveyond 3-2 Gates of Night",purchase,1.0,0 -87694960,"A Virus Named TOM",purchase,1.0,0 -87694960,"Axis Game Factory's AGFPRO 3.0",purchase,1.0,0 -87694960,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -87694960,"Batman Arkham City GOTY",purchase,1.0,0 -87694960,"Bejeweled 3",purchase,1.0,0 -87694960,"Ben There, Dan That!",purchase,1.0,0 -87694960,"Bionic Dues",purchase,1.0,0 -87694960,"BioShock",purchase,1.0,0 -87694960,"bit Dungeon II",purchase,1.0,0 -87694960,"Blood Bowl Legendary Edition",purchase,1.0,0 -87694960,"BookWorm Deluxe",purchase,1.0,0 -87694960,"Brawlhalla",purchase,1.0,0 -87694960,"Brtal Legend",purchase,1.0,0 -87694960,"Cannon Fodder 3",purchase,1.0,0 -87694960,"Cities XL Platinum",purchase,1.0,0 -87694960,"Colin McRae Rally",purchase,1.0,0 -87694960,"Confrontation",purchase,1.0,0 -87694960,"Crazy Taxi",purchase,1.0,0 -87694960,"Crysis 2 Maximum Edition",purchase,1.0,0 -87694960,"Cult of the Wind",purchase,1.0,0 -87694960,"Dark Sector",purchase,1.0,0 -87694960,"Day One Garry's Incident",purchase,1.0,0 -87694960,"Dead Island Epidemic",purchase,1.0,0 -87694960,"Deadly Sin 2",purchase,1.0,0 -87694960,"Dead Space",purchase,1.0,0 -87694960,"Descent Underground",purchase,1.0,0 -87694960,"Dino D-Day",purchase,1.0,0 -87694960,"DiRT Showdown",purchase,1.0,0 -87694960,"Divinity II Developer's Cut",purchase,1.0,0 -87694960,"DogFighter",purchase,1.0,0 -87694960,"Dungeonbowl Knockout Edition",purchase,1.0,0 -87694960,"Dungeonland",purchase,1.0,0 -87694960,"Dungeonland - All access pass",purchase,1.0,0 -87694960,"Earth 2150 Trilogy",purchase,1.0,0 -87694960,"Earth 2150 Lost Souls",purchase,1.0,0 -87694960,"Earth 2150 The Moon Project",purchase,1.0,0 -87694960,"Eets Munchies",purchase,1.0,0 -87694960,"Enclave",purchase,1.0,0 -87694960,"Enemy Mind",purchase,1.0,0 -87694960,"Escape Rosecliff Island",purchase,1.0,0 -87694960,"Europa Universalis III",purchase,1.0,0 -87694960,"Euro Truck Simulator",purchase,1.0,0 -87694960,"F.E.A.R.",purchase,1.0,0 -87694960,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -87694960,"F.E.A.R. 3",purchase,1.0,0 -87694960,"F.E.A.R. Extraction Point",purchase,1.0,0 -87694960,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -87694960,"Feeding Frenzy 2 Shipwreck Showdown Deluxe",purchase,1.0,0 -87694960,"FEZ",purchase,1.0,0 -87694960,"Freddi Fish 2 The Case of the Haunted Schoolhouse",purchase,1.0,0 -87694960,"Freddi Fish 3 The Case of the Stolen Conch Shell",purchase,1.0,0 -87694960,"Freddi Fish 4 The Case of the Hogfish Rustlers of Briny Gulch",purchase,1.0,0 -87694960,"Freddi Fish 5 The Case of the Creature of Coral Cove",purchase,1.0,0 -87694960,"Freddi Fish and Luther's Water Worries",purchase,1.0,0 -87694960,"Freddi Fish and The Case of the Missing Kelp Seeds",purchase,1.0,0 -87694960,"FTL Faster Than Light",purchase,1.0,0 -87694960,"GameGuru",purchase,1.0,0 -87694960,"Game of Thrones ",purchase,1.0,0 -87694960,"Gnomoria",purchase,1.0,0 -87694960,"Greed Corp",purchase,1.0,0 -87694960,"GRID 2",purchase,1.0,0 -87694960,"Grimoire Manastorm",purchase,1.0,0 -87694960,"GT Legends",purchase,1.0,0 -87694960,"GTR Evolution",purchase,1.0,0 -87694960,"Guardians of Graxia",purchase,1.0,0 -87694960,"Guardians of Middle-earth",purchase,1.0,0 -87694960,"Gun Monkeys",purchase,1.0,0 -87694960,"Hitman 2 Silent Assassin",purchase,1.0,0 -87694960,"Hospital Tycoon",purchase,1.0,0 -87694960,"IL-2 Sturmovik 1946",purchase,1.0,0 -87694960,"Incredipede",purchase,1.0,0 -87694960,"Iron Sky Invasion",purchase,1.0,0 -87694960,"Labyrinthine Dreams",purchase,1.0,0 -87694960,"Last Word",purchase,1.0,0 -87694960,"Leviathan Warships",purchase,1.0,0 -87694960,"LIMBO",purchase,1.0,0 -87694960,"Litil Divil",purchase,1.0,0 -87694960,"Mafia II",purchase,1.0,0 -87694960,"Mark of the Ninja",purchase,1.0,0 -87694960,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -87694960,"Medal of Honor(TM) Single Player",purchase,1.0,0 -87694960,"Medal of Honor Pre-Order",purchase,1.0,0 -87694960,"Mortal Kombat Kollection",purchase,1.0,0 -87694960,"Murder Miners",purchase,1.0,0 -87694960,"Naval Warfare",purchase,1.0,0 -87694960,"NiGHTS into Dreams...",purchase,1.0,0 -87694960,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -87694960,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -87694960,"Operation Flashpoint Red River",purchase,1.0,0 -87694960,"Overlord",purchase,1.0,0 -87694960,"Pajama Sam in No Need to Hide When It's Dark Outside",purchase,1.0,0 -87694960,"Paper Sorcerer",purchase,1.0,0 -87694960,"PAYDAY The Heist",purchase,1.0,0 -87694960,"Peggle Deluxe",purchase,1.0,0 -87694960,"Pid ",purchase,1.0,0 -87694960,"Pinball FX2",purchase,1.0,0 -87694960,"Pinball FX2 - Core pack",purchase,1.0,0 -87694960,"Pinball FX2 - Earth Defense Table",purchase,1.0,0 -87694960,"Pinball FX2 - Epic Quest Table",purchase,1.0,0 -87694960,"Pinball FX2 - Paranormal Table",purchase,1.0,0 -87694960,"Pinball FX2 - Zen Classics Pack",purchase,1.0,0 -87694960,"Port Royale 3",purchase,1.0,0 -87694960,"Putt-Putt Travels Through Time",purchase,1.0,0 -87694960,"RACE 07",purchase,1.0,0 -87694960,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -87694960,"RAW - Realms of Ancient War",purchase,1.0,0 -87694960,"Really Big Sky",purchase,1.0,0 -87694960,"Realms of the Haunting",purchase,1.0,0 -87694960,"Receiver",purchase,1.0,0 -87694960,"Red Faction Armageddon",purchase,1.0,0 -87694960,"Remnants Of Isolation",purchase,1.0,0 -87694960,"Rig 'n' Roll",purchase,1.0,0 -87694960,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -87694960,"RPG Maker Futuristic Tiles Resource Pack",purchase,1.0,0 -87694960,"RPG Maker High Fantasy Main Party Pack 1",purchase,1.0,0 -87694960,"RPG Maker Royal Tiles Resource Pack",purchase,1.0,0 -87694960,"RPG Maker Tyler Warren First 50 Battler Pack",purchase,1.0,0 -87694960,"RPG Maker Tyler Warren RPG Battlers 2nd 50",purchase,1.0,0 -87694960,"RPG Maker XP",purchase,1.0,0 -87694960,"Rush Bros",purchase,1.0,0 -87694960,"SEGA Bass Fishing",purchase,1.0,0 -87694960,"Septerra Core",purchase,1.0,0 -87694960,"Sid Meier's Ace Patrol",purchase,1.0,0 -87694960,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -87694960,"Sid Meier's Civilization III Complete",purchase,1.0,0 -87694960,"Sid Meier's Civilization IV",purchase,1.0,0 -87694960,"Sid Meier's Civilization IV",purchase,1.0,0 -87694960,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -87694960,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -87694960,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -87694960,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -87694960,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -87694960,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -87694960,"Sid Meier's Railroads!",purchase,1.0,0 -87694960,"Skyborn",purchase,1.0,0 -87694960,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -87694960,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -87694960,"Sonic Adventure DX",purchase,1.0,0 -87694960,"Space Channel 5 Part 2",purchase,1.0,0 -87694960,"Space Hack",purchase,1.0,0 -87694960,"Space Pirates and Zombies",purchase,1.0,0 -87694960,"Stealth Bastard Deluxe",purchase,1.0,0 -87694960,"Stealth Inc 2",purchase,1.0,0 -87694960,"Steel Storm Burning Retribution",purchase,1.0,0 -87694960,"Superfrog HD",purchase,1.0,0 -87694960,"Super Sanctum TD",purchase,1.0,0 -87694960,"Supreme Commander",purchase,1.0,0 -87694960,"Supreme Commander Forged Alliance",purchase,1.0,0 -87694960,"Sweet Lily Dreams",purchase,1.0,0 -87694960,"Take On Helicopters",purchase,1.0,0 -87694960,"The Bureau XCOM Declassified",purchase,1.0,0 -87694960,"The Culling Of The Cows",purchase,1.0,0 -87694960,"The Darkness II",purchase,1.0,0 -87694960,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -87694960,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -87694960,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -87694960,"The Guild II",purchase,1.0,0 -87694960,"The Lord of the Rings War in the North",purchase,1.0,0 -87694960,"The Showdown Effect",purchase,1.0,0 -87694960,"Thunder Wolves",purchase,1.0,0 -87694960,"Ticket to Ride",purchase,1.0,0 -87694960,"Time Gentlemen, Please!",purchase,1.0,0 -87694960,"Tom Clancy's Ghost Recon Phantoms - NA Assault Starter Pack",purchase,1.0,0 -87694960,"To the Moon",purchase,1.0,0 -87694960,"Trainz Simulator 12",purchase,1.0,0 -87694960,"Trine 2",purchase,1.0,0 -87694960,"Tropico 4",purchase,1.0,0 -87694960,"UFO Afterlight",purchase,1.0,0 -87694960,"Warlock - Master of the Arcane",purchase,1.0,0 -87694960,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -87694960,"War of the Roses",purchase,1.0,0 -87694960,"War of the Roses Kingmaker",purchase,1.0,0 -87694960,"War of the Roses Balance Beta",purchase,1.0,0 -87694960,"Worms Armageddon",purchase,1.0,0 -87694960,"Worms Blast",purchase,1.0,0 -87694960,"Worms Crazy Golf",purchase,1.0,0 -87694960,"Worms Pinball",purchase,1.0,0 -87694960,"Worms Ultimate Mayhem",purchase,1.0,0 -87694960,"XCOM Enemy Unknown",purchase,1.0,0 -304912866,"Team Fortress 2",purchase,1.0,0 -304912866,"Team Fortress 2",play,21.0,0 -215409870,"Dota 2",purchase,1.0,0 -215409870,"Dota 2",play,43.0,0 -215409870,"Unturned",purchase,1.0,0 -215409870,"Unturned",play,3.3,0 -295204318,"Age of Empires II HD Edition",purchase,1.0,0 -295204318,"Age of Empires II HD Edition",play,3.6,0 -141640819,"Team Fortress 2",purchase,1.0,0 -141640819,"Team Fortress 2",play,2.3,0 -185480581,"Dota 2",purchase,1.0,0 -185480581,"Dota 2",play,0.6,0 -25966326,"Counter-Strike Condition Zero",purchase,1.0,0 -25966326,"Counter-Strike Condition Zero",play,0.1,0 -25966326,"Counter-Strike",purchase,1.0,0 -25966326,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -25966326,"Day of Defeat",purchase,1.0,0 -25966326,"Deathmatch Classic",purchase,1.0,0 -25966326,"Ricochet",purchase,1.0,0 -155003926,"Counter-Strike Global Offensive",purchase,1.0,0 -155003926,"Counter-Strike Global Offensive",play,428.0,0 -155003926,"PlanetSide 2",purchase,1.0,0 -155003926,"PlanetSide 2",play,30.0,0 -155003926,"Team Fortress 2",purchase,1.0,0 -155003926,"Team Fortress 2",play,28.0,0 -155003926,"Warframe",purchase,1.0,0 -155003926,"Warframe",play,11.1,0 -155003926,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -155003926,"Tom Clancy's Ghost Recon Phantoms - EU",play,7.7,0 -155003926,"Blacklight Retribution",purchase,1.0,0 -155003926,"Blacklight Retribution",play,3.3,0 -155003926,"Garry's Mod",purchase,1.0,0 -155003926,"Garry's Mod",play,3.0,0 -155003926,"Metro 2033 Redux",purchase,1.0,0 -155003926,"Metro 2033 Redux",play,2.6,0 -155003926,"Robocraft",purchase,1.0,0 -155003926,"Robocraft",play,0.4,0 -155003926,"Wolfenstein The New Order",purchase,1.0,0 -155003926,"Wolfenstein The New Order",play,0.3,0 -155003926,"FreeStyle2 Street Basketball",purchase,1.0,0 -155003926,"FreeStyle2 Street Basketball",play,0.2,0 -155003926,"Terraria",purchase,1.0,0 -155003926,"Terraria",play,0.2,0 -155003926,"Tribes Ascend",purchase,1.0,0 -155003926,"Dirty Bomb",purchase,1.0,0 -155003926,"Metro Last Light Redux",purchase,1.0,0 -189262327,"Dota 2",purchase,1.0,0 -189262327,"Dota 2",play,1.5,0 -217728407,"Dota 2",purchase,1.0,0 -217728407,"Dota 2",play,84.0,0 -124991843,"Team Fortress 2",purchase,1.0,0 -124991843,"Team Fortress 2",play,2.0,0 -302883346,"Dota 2",purchase,1.0,0 -302883346,"Dota 2",play,92.0,0 -302883346,"UberStrike",purchase,1.0,0 -302883346,"UberStrike",play,0.5,0 -302883346,"Insurgency",purchase,1.0,0 -302883346,"Insurgency",play,0.2,0 -302883346,"Dragons and Titans",purchase,1.0,0 -302883346,"Unturned",purchase,1.0,0 -199046946,"Dota 2",purchase,1.0,0 -199046946,"Dota 2",play,6.8,0 -294759066,"Five Nights at Freddy's 2",purchase,1.0,0 -294759066,"Five Nights at Freddy's 2",play,8.4,0 -294759066,"Realm of the Mad God",purchase,1.0,0 -301099545,"Dota 2",purchase,1.0,0 -301099545,"Dota 2",play,19.6,0 -194672513,"Dota 2",purchase,1.0,0 -194672513,"Dota 2",play,0.8,0 -292332406,"Garry's Mod",purchase,1.0,0 -292332406,"Garry's Mod",play,8.2,0 -292332406,"Unturned",purchase,1.0,0 -292332406,"Unturned",play,2.5,0 -292332406,"WARMODE",purchase,1.0,0 -292332406,"Dirty Bomb",purchase,1.0,0 -292332406,"Golden Rush",purchase,1.0,0 -292332406,"Mortal Online",purchase,1.0,0 -292332406,"Viridi",purchase,1.0,0 -161623464,"DayZ",purchase,1.0,0 -161623464,"DayZ",play,251.0,0 -161623464,"Echo of Soul",purchase,1.0,0 -161623464,"Echo of Soul",play,162.0,0 -161623464,"Euro Truck Simulator 2",purchase,1.0,0 -161623464,"Euro Truck Simulator 2",play,132.0,0 -161623464,"Sid Meier's Civilization IV",purchase,1.0,0 -161623464,"Sid Meier's Civilization IV",play,21.0,0 -161623464,"Panzer Tactics HD",purchase,1.0,0 -161623464,"Panzer Tactics HD",play,11.4,0 -161623464,"Left 4 Dead",purchase,1.0,0 -161623464,"Left 4 Dead",play,8.5,0 -161623464,"RIFT",purchase,1.0,0 -161623464,"RIFT",play,7.6,0 -161623464,"Blitzkrieg Anthology",purchase,1.0,0 -161623464,"Blitzkrieg Anthology",play,5.2,0 -161623464,"Warface",purchase,1.0,0 -161623464,"Warface",play,4.7,0 -161623464,"No More Room in Hell",purchase,1.0,0 -161623464,"No More Room in Hell",play,4.1,0 -161623464,"War Thunder",purchase,1.0,0 -161623464,"War Thunder",play,4.0,0 -161623464,"The Testament of Sherlock Holmes",purchase,1.0,0 -161623464,"The Testament of Sherlock Holmes",play,2.9,0 -161623464,"Arma 2",purchase,1.0,0 -161623464,"Arma 2",play,1.3,0 -161623464,"sZone-Online",purchase,1.0,0 -161623464,"sZone-Online",play,1.0,0 -161623464,"Hazard Ops",purchase,1.0,0 -161623464,"Hazard Ops",play,0.8,0 -161623464,"Fallen Earth",purchase,1.0,0 -161623464,"Fallen Earth",play,0.7,0 -161623464,"Heroes & Generals",purchase,1.0,0 -161623464,"Heroes & Generals",play,0.6,0 -161623464,"War Inc. Battlezone",purchase,1.0,0 -161623464,"War Inc. Battlezone",play,0.4,0 -161623464,"Only If",purchase,1.0,0 -161623464,"Only If",play,0.4,0 -161623464,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -161623464,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.3,0 -161623464,"Euro Truck Simulator",purchase,1.0,0 -161623464,"Euro Truck Simulator",play,0.3,0 -161623464,"Scania Truck Driving Simulator",purchase,1.0,0 -161623464,"Scania Truck Driving Simulator",play,0.2,0 -161623464,"Haunted Memories",purchase,1.0,0 -161623464,"Haunted Memories",play,0.1,0 -161623464,"Counter-Strike Nexon Zombies",purchase,1.0,0 -161623464,"Counter-Strike Nexon Zombies",play,0.1,0 -161623464,"Anno Online",purchase,1.0,0 -161623464,"Aftermath",purchase,1.0,0 -161623464,"DCS World",purchase,1.0,0 -161623464,"The Lord of the Rings Online",purchase,1.0,0 -161623464,"Bloodwood Reload",purchase,1.0,0 -161623464,"Arma 2 British Armed Forces",purchase,1.0,0 -161623464,"Arma 2 DayZ Mod",purchase,1.0,0 -161623464,"Arma 2 Operation Arrowhead",purchase,1.0,0 -161623464,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -161623464,"Arma 2 Private Military Company",purchase,1.0,0 -161623464,"Codename CURE",purchase,1.0,0 -161623464,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -161623464,"RaceRoom Racing Experience ",purchase,1.0,0 -161623464,"Sid Meier's Civilization IV",purchase,1.0,0 -161623464,"The Forgotten Ones",purchase,1.0,0 -158136134,"Dota 2",purchase,1.0,0 -158136134,"Dota 2",play,1043.0,0 -158136134,"War Thunder",purchase,1.0,0 -158136134,"War Thunder",play,420.0,0 -187653547,"Dota 2",purchase,1.0,0 -187653547,"Dota 2",play,1.3,0 -187653547,"NEOTOKYO",purchase,1.0,0 -187653547,"AirMech",purchase,1.0,0 -241065891,"Dota 2",purchase,1.0,0 -241065891,"Dota 2",play,1.4,0 -160653177,"Dota 2",purchase,1.0,0 -160653177,"Dota 2",play,0.3,0 -198357128,"All Is Dust",purchase,1.0,0 -198357128,"Dirty Bomb",purchase,1.0,0 -243587325,"Team Fortress 2",purchase,1.0,0 -243587325,"Team Fortress 2",play,0.6,0 -243587325,"Greyfox",purchase,1.0,0 -67579257,"Supreme Commander Forged Alliance",purchase,1.0,0 -67579257,"Supreme Commander Forged Alliance",play,417.0,0 -67579257,"The Elder Scrolls V Skyrim",purchase,1.0,0 -67579257,"The Elder Scrolls V Skyrim",play,132.0,0 -67579257,"Rocket League",purchase,1.0,0 -67579257,"Rocket League",play,125.0,0 -67579257,"Don't Starve Together Beta",purchase,1.0,0 -67579257,"Don't Starve Together Beta",play,122.0,0 -67579257,"Supreme Commander 2",purchase,1.0,0 -67579257,"Supreme Commander 2",play,111.0,0 -67579257,"Dying Light",purchase,1.0,0 -67579257,"Dying Light",play,78.0,0 -67579257,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -67579257,"Kingdoms of Amalur Reckoning",play,77.0,0 -67579257,"Nether",purchase,1.0,0 -67579257,"Nether",play,62.0,0 -67579257,"Grand Theft Auto V",purchase,1.0,0 -67579257,"Grand Theft Auto V",play,49.0,0 -67579257,"Borderlands 2",purchase,1.0,0 -67579257,"Borderlands 2",play,49.0,0 -67579257,"Test Drive Unlimited 2",purchase,1.0,0 -67579257,"Test Drive Unlimited 2",play,49.0,0 -67579257,"Age of Empires II HD Edition",purchase,1.0,0 -67579257,"Age of Empires II HD Edition",play,40.0,0 -67579257,"Left 4 Dead 2",purchase,1.0,0 -67579257,"Left 4 Dead 2",play,40.0,0 -67579257,"Arma 3",purchase,1.0,0 -67579257,"Arma 3",play,39.0,0 -67579257,"Crysis 2",purchase,1.0,0 -67579257,"Crysis 2",play,37.0,0 -67579257,"PlanetSide 2",purchase,1.0,0 -67579257,"PlanetSide 2",play,33.0,0 -67579257,"Sleeping Dogs",purchase,1.0,0 -67579257,"Sleeping Dogs",play,24.0,0 -67579257,"Infestation Survivor Stories",purchase,1.0,0 -67579257,"Infestation Survivor Stories",play,24.0,0 -67579257,"Fallout 4",purchase,1.0,0 -67579257,"Fallout 4",play,24.0,0 -67579257,"Torchlight II",purchase,1.0,0 -67579257,"Torchlight II",play,23.0,0 -67579257,"Batman Arkham Origins",purchase,1.0,0 -67579257,"Batman Arkham Origins",play,21.0,0 -67579257,"PAYDAY 2",purchase,1.0,0 -67579257,"PAYDAY 2",play,21.0,0 -67579257,"Planet Explorers",purchase,1.0,0 -67579257,"Planet Explorers",play,18.9,0 -67579257,"Far Cry 2",purchase,1.0,0 -67579257,"Far Cry 2",play,18.9,0 -67579257,"Firefall",purchase,1.0,0 -67579257,"Firefall",play,17.3,0 -67579257,"GRID 2",purchase,1.0,0 -67579257,"GRID 2",play,14.6,0 -67579257,"Saints Row The Third",purchase,1.0,0 -67579257,"Saints Row The Third",play,13.6,0 -67579257,"The Walking Dead",purchase,1.0,0 -67579257,"The Walking Dead",play,13.3,0 -67579257,"PAYDAY The Heist",purchase,1.0,0 -67579257,"PAYDAY The Heist",play,12.0,0 -67579257,"ORION Prelude",purchase,1.0,0 -67579257,"ORION Prelude",play,10.8,0 -67579257,"Mad Max",purchase,1.0,0 -67579257,"Mad Max",play,10.5,0 -67579257,"The Walking Dead Season Two",purchase,1.0,0 -67579257,"The Walking Dead Season Two",play,9.9,0 -67579257,"Call of Duty Advanced Warfare",purchase,1.0,0 -67579257,"Call of Duty Advanced Warfare",play,9.9,0 -67579257,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -67579257,"Call of Duty Advanced Warfare - Multiplayer",play,9.2,0 -67579257,"Contagion",purchase,1.0,0 -67579257,"Contagion",play,8.6,0 -67579257,"Sanctum 2",purchase,1.0,0 -67579257,"Sanctum 2",play,8.5,0 -67579257,"Borderlands The Pre-Sequel",purchase,1.0,0 -67579257,"Borderlands The Pre-Sequel",play,8.2,0 -67579257,"Portal 2",purchase,1.0,0 -67579257,"Portal 2",play,8.1,0 -67579257,"Defiance",purchase,1.0,0 -67579257,"Defiance",play,7.3,0 -67579257,"Max Payne 3",purchase,1.0,0 -67579257,"Max Payne 3",play,6.1,0 -67579257,"Alien Swarm",purchase,1.0,0 -67579257,"Alien Swarm",play,6.0,0 -67579257,"Magicka",purchase,1.0,0 -67579257,"Magicka",play,5.9,0 -67579257,"Just Cause 2",purchase,1.0,0 -67579257,"Just Cause 2",play,5.7,0 -67579257,"Geometry Wars 3 Dimensions Evolved",purchase,1.0,0 -67579257,"Geometry Wars 3 Dimensions Evolved",play,5.1,0 -67579257,"BRINK",purchase,1.0,0 -67579257,"BRINK",play,5.1,0 -67579257,"Team Fortress 2",purchase,1.0,0 -67579257,"Team Fortress 2",play,5.0,0 -67579257,"SpellForce 2 - Faith in Destiny",purchase,1.0,0 -67579257,"SpellForce 2 - Faith in Destiny",play,5.0,0 -67579257,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -67579257,"Just Cause 2 Multiplayer Mod",play,4.7,0 -67579257,"Orcs Must Die! 2",purchase,1.0,0 -67579257,"Orcs Must Die! 2",play,4.4,0 -67579257,"H1Z1",purchase,1.0,0 -67579257,"H1Z1",play,4.0,0 -67579257,"DRAGON BALL XENOVERSE",purchase,1.0,0 -67579257,"DRAGON BALL XENOVERSE",play,3.5,0 -67579257,"Lara Croft and the Guardian of Light",purchase,1.0,0 -67579257,"Lara Croft and the Guardian of Light",play,3.4,0 -67579257,"Dust An Elysian Tail",purchase,1.0,0 -67579257,"Dust An Elysian Tail",play,3.4,0 -67579257,"Sniper Elite Nazi Zombie Army 2",purchase,1.0,0 -67579257,"Sniper Elite Nazi Zombie Army 2",play,3.3,0 -67579257,"Serious Sam 3 BFE",purchase,1.0,0 -67579257,"Serious Sam 3 BFE",play,3.2,0 -67579257,"Tomb Raider",purchase,1.0,0 -67579257,"Tomb Raider",play,3.1,0 -67579257,"Viking Battle for Asgard",purchase,1.0,0 -67579257,"Viking Battle for Asgard",play,3.1,0 -67579257,"Castlevania Lords of Shadow - Ultimate Edition",purchase,1.0,0 -67579257,"Castlevania Lords of Shadow - Ultimate Edition",play,3.0,0 -67579257,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -67579257,"Batman Arkham Asylum GOTY Edition",play,3.0,0 -67579257,"Batman Arkham Knight",purchase,1.0,0 -67579257,"Batman Arkham Knight",play,2.8,0 -67579257,"GRID Autosport",purchase,1.0,0 -67579257,"GRID Autosport",play,2.4,0 -67579257,"FORCED",purchase,1.0,0 -67579257,"FORCED",play,2.4,0 -67579257,"State of Decay",purchase,1.0,0 -67579257,"State of Decay",play,2.2,0 -67579257,"Life Is Strange",purchase,1.0,0 -67579257,"Life Is Strange",play,2.2,0 -67579257,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -67579257,"Sins of a Solar Empire Rebellion",play,2.1,0 -67579257,"Trine 2",purchase,1.0,0 -67579257,"Trine 2",play,1.9,0 -67579257,"Deadlight",purchase,1.0,0 -67579257,"Deadlight",play,1.9,0 -67579257,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -67579257,"The Witcher 2 Assassins of Kings Enhanced Edition",play,1.6,0 -67579257,"Dead Island",purchase,1.0,0 -67579257,"Dead Island",play,1.4,0 -67579257,"Planetary Annihilation",purchase,1.0,0 -67579257,"Planetary Annihilation",play,1.3,0 -67579257,"XCOM Enemy Unknown",purchase,1.0,0 -67579257,"XCOM Enemy Unknown",play,1.3,0 -67579257,"Metro 2033 Redux",purchase,1.0,0 -67579257,"Metro 2033 Redux",play,1.2,0 -67579257,"Interstellar Marines",purchase,1.0,0 -67579257,"Interstellar Marines",play,1.2,0 -67579257,"Crysis",purchase,1.0,0 -67579257,"Crysis",play,1.1,0 -67579257,"Dota 2",purchase,1.0,0 -67579257,"Dota 2",play,1.1,0 -67579257,"Reus",purchase,1.0,0 -67579257,"Reus",play,0.9,0 -67579257,"Darksiders II",purchase,1.0,0 -67579257,"Darksiders II",play,0.9,0 -67579257,"Deus Ex Human Revolution",purchase,1.0,0 -67579257,"Deus Ex Human Revolution",play,0.9,0 -67579257,"Worms Revolution",purchase,1.0,0 -67579257,"Worms Revolution",play,0.7,0 -67579257,"Zeno Clash",purchase,1.0,0 -67579257,"Zeno Clash",play,0.7,0 -67579257,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -67579257,"Burnout Paradise The Ultimate Box",play,0.7,0 -67579257,"Medal of Honor(TM) Single Player",purchase,1.0,0 -67579257,"Medal of Honor(TM) Single Player",play,0.7,0 -67579257,"MechWarrior Online",purchase,1.0,0 -67579257,"MechWarrior Online",play,0.7,0 -67579257,"Ashes of the Singularity",purchase,1.0,0 -67579257,"Ashes of the Singularity",play,0.7,0 -67579257,"Marlow Briggs",purchase,1.0,0 -67579257,"Marlow Briggs",play,0.6,0 -67579257,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -67579257,"Medal of Honor(TM) Multiplayer",play,0.6,0 -67579257,"Quantum Rush Online",purchase,1.0,0 -67579257,"Quantum Rush Online",play,0.5,0 -67579257,"FUEL",purchase,1.0,0 -67579257,"FUEL",play,0.5,0 -67579257,"Aura Kingdom",purchase,1.0,0 -67579257,"Aura Kingdom",play,0.5,0 -67579257,"Killing Floor",purchase,1.0,0 -67579257,"Killing Floor",play,0.5,0 -67579257,"Overlord II",purchase,1.0,0 -67579257,"Overlord II",play,0.4,0 -67579257,"Mark of the Ninja",purchase,1.0,0 -67579257,"Mark of the Ninja",play,0.4,0 -67579257,"Brothers - A Tale of Two Sons",purchase,1.0,0 -67579257,"Brothers - A Tale of Two Sons",play,0.4,0 -67579257,"Shelter",purchase,1.0,0 -67579257,"Shelter",play,0.4,0 -67579257,"TERA",purchase,1.0,0 -67579257,"TERA",play,0.4,0 -67579257,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -67579257,"Command and Conquer Red Alert 3 - Uprising",play,0.4,0 -67579257,"Arma 2 Operation Arrowhead",purchase,1.0,0 -67579257,"Arma 2 Operation Arrowhead",play,0.3,0 -67579257,"Mafia II",purchase,1.0,0 -67579257,"Mafia II",play,0.3,0 -67579257,"Natural Selection 2",purchase,1.0,0 -67579257,"Natural Selection 2",play,0.3,0 -67579257,"Mirror's Edge",purchase,1.0,0 -67579257,"Mirror's Edge",play,0.3,0 -67579257,"Garry's Mod",purchase,1.0,0 -67579257,"Garry's Mod",play,0.3,0 -67579257,"Unturned",purchase,1.0,0 -67579257,"Unturned",play,0.3,0 -67579257,"FEZ",purchase,1.0,0 -67579257,"FEZ",play,0.2,0 -67579257,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -67579257,"Rocketbirds Hardboiled Chicken",play,0.2,0 -67579257,"A Virus Named TOM",purchase,1.0,0 -67579257,"A Virus Named TOM",play,0.2,0 -67579257,"Red Faction Armageddon",purchase,1.0,0 -67579257,"Red Faction Armageddon",play,0.2,0 -67579257,"Awesomenauts",purchase,1.0,0 -67579257,"Awesomenauts",play,0.1,0 -67579257,"FTL Faster Than Light",purchase,1.0,0 -67579257,"Painkiller Hell & Damnation",purchase,1.0,0 -67579257,"Grand Theft Auto San Andreas",purchase,1.0,0 -67579257,"Xam",purchase,1.0,0 -67579257,"Arma 2",purchase,1.0,0 -67579257,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -67579257,"ArcaniA",purchase,1.0,0 -67579257,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -67579257,"Arma 3 Zeus",purchase,1.0,0 -67579257,"Bastion",purchase,1.0,0 -67579257,"Batman Arkham City GOTY",purchase,1.0,0 -67579257,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -67579257,"Batman Arkham Origins - Initiation",purchase,1.0,0 -67579257,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -67579257,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -67579257,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -67579257,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -67579257,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -67579257,"Blacklight Retribution",purchase,1.0,0 -67579257,"Borderlands 2 RU",purchase,1.0,0 -67579257,"Brtal Legend",purchase,1.0,0 -67579257,"Cities in Motion 2",purchase,1.0,0 -67579257,"Crysis 2",purchase,1.0,0 -67579257,"Crysis Warhead",purchase,1.0,0 -67579257,"Crysis Wars",purchase,1.0,0 -67579257,"Dead Space",purchase,1.0,0 -67579257,"Divine Souls",purchase,1.0,0 -67579257,"Eets Munchies",purchase,1.0,0 -67579257,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -67579257,"Grand Theft Auto San Andreas",purchase,1.0,0 -67579257,"GRID 2 GTR Racing Pack",purchase,1.0,0 -67579257,"H1Z1 Test Server",purchase,1.0,0 -67579257,"Joe Danger 2 The Movie",purchase,1.0,0 -67579257,"Kung Fury",purchase,1.0,0 -67579257,"LIMBO",purchase,1.0,0 -67579257,"Magicka Final Frontier",purchase,1.0,0 -67579257,"Magicka Frozen Lake",purchase,1.0,0 -67579257,"Magicka Nippon",purchase,1.0,0 -67579257,"Magicka Party Robes",purchase,1.0,0 -67579257,"Magicka The Watchtower",purchase,1.0,0 -67579257,"Magicka Vietnam",purchase,1.0,0 -67579257,"Magicka Wizard's Survival Kit",purchase,1.0,0 -67579257,"Medal of Honor Pre-Order",purchase,1.0,0 -67579257,"Metro Last Light Redux",purchase,1.0,0 -67579257,"Nether - Believer",purchase,1.0,0 -67579257,"Nether Arena",purchase,1.0,0 -67579257,"Orcs Must Die!",purchase,1.0,0 -67579257,"Papo & Yo",purchase,1.0,0 -67579257,"Robocraft",purchase,1.0,0 -67579257,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -67579257,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -67579257,"Supreme Commander",purchase,1.0,0 -67579257,"Supreme Commander 2 - Infinite War Battle Pack One",purchase,1.0,0 -67579257,"The Guild II",purchase,1.0,0 -67579257,"To the Moon",purchase,1.0,0 -293042025,"PAYDAY 2",purchase,1.0,0 -293042025,"PAYDAY 2",play,55.0,0 -293042025,"Magicka",purchase,1.0,0 -293042025,"Magicka",play,48.0,0 -293042025,"Saints Row The Third",purchase,1.0,0 -293042025,"Saints Row The Third",play,46.0,0 -293042025,"Tomb Raider",purchase,1.0,0 -293042025,"Tomb Raider",play,33.0,0 -293042025,"Tales from the Borderlands",purchase,1.0,0 -293042025,"Tales from the Borderlands",play,31.0,0 -293042025,"The Walking Dead",purchase,1.0,0 -293042025,"The Walking Dead",play,20.0,0 -293042025,"SpeedRunners",purchase,1.0,0 -293042025,"SpeedRunners",play,10.0,0 -293042025,"AdVenture Capitalist",purchase,1.0,0 -293042025,"AdVenture Capitalist",play,8.9,0 -293042025,"Clicker Heroes",purchase,1.0,0 -293042025,"Clicker Heroes",play,6.4,0 -293042025,"The Walking Dead Season Two",purchase,1.0,0 -293042025,"The Wolf Among Us",purchase,1.0,0 -284291482,"Terraria",purchase,1.0,0 -165994303,"Football Manager 2014",purchase,1.0,0 -165994303,"Football Manager 2014",play,11.1,0 -197550099,"Enemy Front",purchase,1.0,0 -197550099,"Enemy Front",play,28.0,0 -197550099,"Company of Heroes 2",purchase,1.0,0 -197550099,"Company of Heroes 2",play,27.0,0 -218918267,"Arma 3",purchase,1.0,0 -218918267,"Arma 3",play,22.0,0 -218918267,"Grand Theft Auto IV",purchase,1.0,0 -218918267,"Grand Theft Auto IV",play,11.4,0 -218918267,"GRID Autosport",purchase,1.0,0 -218918267,"GRID Autosport",play,6.9,0 -218918267,"Homeworld Remastered Collection",purchase,1.0,0 -218918267,"Homeworld Remastered Collection",play,6.9,0 -218918267,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -218918267,"Deus Ex Human Revolution - Director's Cut",play,4.7,0 -218918267,"Sleeping Dogs",purchase,1.0,0 -218918267,"Sleeping Dogs",play,2.2,0 -218918267,"Test Drive Unlimited 2",purchase,1.0,0 -218918267,"Test Drive Unlimited 2",play,1.9,0 -218918267,"Hitman Absolution",purchase,1.0,0 -218918267,"Hitman Absolution",play,0.7,0 -218918267,"Tomb Raider",purchase,1.0,0 -218918267,"Tomb Raider",play,0.4,0 -218918267,"MURDERED SOUL SUSPECT",purchase,1.0,0 -218918267,"MURDERED SOUL SUSPECT",play,0.2,0 -218918267,"Supreme Commander 2",purchase,1.0,0 -218918267,"Supreme Commander 2",play,0.1,0 -218918267,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -218918267,"Arma 3 Zeus",purchase,1.0,0 -218918267,"Thief",purchase,1.0,0 -15824958,"Counter-Strike",purchase,1.0,0 -15824958,"Counter-Strike Condition Zero",purchase,1.0,0 -15824958,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -61628602,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -61628602,"Call of Duty Modern Warfare 2 - Multiplayer",play,3.6,0 -61628602,"Call of Duty Modern Warfare 2",purchase,1.0,0 -162652854,"Dota 2",purchase,1.0,0 -162652854,"Dota 2",play,87.0,0 -278176394,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -163415496,"Garry's Mod",purchase,1.0,0 -163415496,"Garry's Mod",play,65.0,0 -163415496,"Five Nights at Freddy's 2",purchase,1.0,0 -163415496,"Five Nights at Freddy's 2",play,11.6,0 -163415496,"Unturned",purchase,1.0,0 -163415496,"Unturned",play,1.8,0 -163415496,"Audition Online",purchase,1.0,0 -163415496,"Audition Online",play,1.0,0 -163415496,"Narcissu 1st & 2nd",purchase,1.0,0 -163415496,"Narcissu 1st & 2nd",play,0.4,0 -163415496,"Aura Kingdom",purchase,1.0,0 -135812174,"Dota 2",purchase,1.0,0 -135812174,"Dota 2",play,3.0,0 -58013959,"Dota 2",purchase,1.0,0 -58013959,"Dota 2",play,0.5,0 -26601561,"Counter-Strike",purchase,1.0,0 -26601561,"Counter-Strike Condition Zero",purchase,1.0,0 -26601561,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -26601561,"Day of Defeat",purchase,1.0,0 -26601561,"Deathmatch Classic",purchase,1.0,0 -26601561,"Ricochet",purchase,1.0,0 -77950242,"Sniper Ghost Warrior",purchase,1.0,0 -77950242,"Sniper Ghost Warrior",play,0.5,0 -144626100,"Dota 2",purchase,1.0,0 -144626100,"Dota 2",play,328.0,0 -144626100,"APB Reloaded",purchase,1.0,0 -144626100,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -144626100,"Toribash",purchase,1.0,0 -144626100,"Warframe",purchase,1.0,0 -547685,"Counter-Strike Global Offensive",purchase,1.0,0 -547685,"Counter-Strike Global Offensive",play,489.0,0 -547685,"Counter-Strike",purchase,1.0,0 -547685,"Counter-Strike",play,22.0,0 -547685,"Counter-Strike Source",purchase,1.0,0 -547685,"Counter-Strike Source",play,1.0,0 -547685,"RaceRoom Racing Experience ",purchase,1.0,0 -547685,"RaceRoom Racing Experience ",play,0.4,0 -547685,"theHunter",purchase,1.0,0 -547685,"theHunter",play,0.2,0 -547685,"Counter-Strike Condition Zero",purchase,1.0,0 -547685,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -547685,"Counter-Strike Nexon Zombies",purchase,1.0,0 -547685,"Day of Defeat",purchase,1.0,0 -547685,"Deathmatch Classic",purchase,1.0,0 -547685,"Eldevin",purchase,1.0,0 -547685,"Fallen Earth",purchase,1.0,0 -547685,"Half-Life",purchase,1.0,0 -547685,"Half-Life Blue Shift",purchase,1.0,0 -547685,"Half-Life Opposing Force",purchase,1.0,0 -547685,"Magicka Wizard Wars",purchase,1.0,0 -547685,"PlanetSide 2",purchase,1.0,0 -547685,"Ragnarok Online 2",purchase,1.0,0 -547685,"Realm of the Mad God",purchase,1.0,0 -547685,"Ricochet",purchase,1.0,0 -547685,"Rise of Incarnates",purchase,1.0,0 -547685,"Team Fortress Classic",purchase,1.0,0 -547685,"The Mighty Quest For Epic Loot",purchase,1.0,0 -547685,"Unturned",purchase,1.0,0 -547685,"Warface",purchase,1.0,0 -28898493,"Counter-Strike",purchase,1.0,0 -28898493,"Counter-Strike",play,0.4,0 -28898493,"Counter-Strike Condition Zero",purchase,1.0,0 -28898493,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -125848824,"Sniper Ghost Warrior",purchase,1.0,0 -125848824,"Sniper Ghost Warrior",play,1.2,0 -129240163,"The Elder Scrolls V Skyrim",purchase,1.0,0 -129240163,"The Elder Scrolls V Skyrim",play,125.0,0 -129240163,"LEGO Worlds",purchase,1.0,0 -129240163,"LEGO Worlds",play,12.0,0 -129240163,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -50655415,"Half-Life 2 Lost Coast",purchase,1.0,0 -50655415,"Half-Life 2 Lost Coast",play,1.9,0 -50655415,"Half-Life 2 Deathmatch",purchase,1.0,0 -50655415,"Half-Life 2 Deathmatch",play,0.2,0 -241776037,"Torchlight II",purchase,1.0,0 -241776037,"Torchlight II",play,20.0,0 -241776037,"Sid Meier's Civilization V",purchase,1.0,0 -241776037,"Sid Meier's Civilization V",play,20.0,0 -241776037,"Team Fortress 2",purchase,1.0,0 -241776037,"Team Fortress 2",play,1.3,0 -241776037,"BattleBlock Theater",purchase,1.0,0 -241776037,"BattleBlock Theater",play,1.0,0 -241776037,"The Four Kings Casino and Slots",purchase,1.0,0 -241776037,"The Four Kings Casino and Slots",play,0.3,0 -241776037,"Red Crucible Firestorm",purchase,1.0,0 -241776037,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -241776037,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -20498360,"Counter-Strike Source",purchase,1.0,0 -20498360,"Day of Defeat Source",purchase,1.0,0 -20498360,"Half-Life 2",purchase,1.0,0 -20498360,"Half-Life 2 Deathmatch",purchase,1.0,0 -20498360,"Half-Life 2 Lost Coast",purchase,1.0,0 -20498360,"Half-Life Source",purchase,1.0,0 -20498360,"Half-Life Deathmatch Source",purchase,1.0,0 -210903599,"Counter-Strike Global Offensive",purchase,1.0,0 -210903599,"Counter-Strike Global Offensive",play,523.0,0 -210903599,"Dying Light",purchase,1.0,0 -210903599,"Dying Light",play,8.6,0 -210903599,"Path of Exile",purchase,1.0,0 -210903599,"Squishy the Suicidal Pig",purchase,1.0,0 -210903599,"Unturned",purchase,1.0,0 -68935496,"Mount & Blade Warband",purchase,1.0,0 -68935496,"Mount & Blade Warband",play,1456.0,0 -116409449,"Dota 2",purchase,1.0,0 -116409449,"Dota 2",play,54.0,0 -252918139,"Grand Theft Auto V",purchase,1.0,0 -252918139,"Grand Theft Auto V",play,16.2,0 -121348667,"Team Fortress 2",purchase,1.0,0 -121348667,"Team Fortress 2",play,2.3,0 -174696597,"Dota 2",purchase,1.0,0 -174696597,"Dota 2",play,1.4,0 -309138595,"Dota 2",purchase,1.0,0 -309138595,"Dota 2",play,0.8,0 -251956525,"Dota 2",purchase,1.0,0 -251956525,"Dota 2",play,309.0,0 -181158622,"Garry's Mod",purchase,1.0,0 -181158622,"Garry's Mod",play,733.0,0 -181158622,"Team Fortress 2",purchase,1.0,0 -181158622,"Team Fortress 2",play,34.0,0 -181158622,"Unturned",purchase,1.0,0 -181158622,"Unturned",play,21.0,0 -181158622,"Counter-Strike Global Offensive",purchase,1.0,0 -181158622,"Counter-Strike Global Offensive",play,5.7,0 -181158622,"Nosgoth",purchase,1.0,0 -181158622,"Nosgoth",play,4.5,0 -181158622,"The Forest",purchase,1.0,0 -181158622,"The Forest",play,3.7,0 -181158622,"Amnesia The Dark Descent",purchase,1.0,0 -181158622,"Amnesia The Dark Descent",play,0.7,0 -181158622,"Fistful of Frags",purchase,1.0,0 -181158622,"No More Room in Hell",purchase,1.0,0 -170472320,"The LEGO Movie - Videogame",purchase,1.0,0 -170472320,"The LEGO Movie - Videogame",play,1.2,0 -199911795,"Sigils of Elohim",purchase,1.0,0 -201397220,"Loadout",purchase,1.0,0 -201397220,"Loadout",play,7.0,0 -201397220,"APB Reloaded",purchase,1.0,0 -201397220,"APB Reloaded",play,5.3,0 -201397220,"Defiance",purchase,1.0,0 -237159970,"LEGO Jurassic World",purchase,1.0,0 -237159970,"LEGO Jurassic World",play,36.0,0 -237159970,"Unturned",purchase,1.0,0 -237159970,"Unturned",play,18.8,0 -237159970,"Trove",purchase,1.0,0 -237159970,"Trove",play,18.3,0 -237159970,"ARK Survival Evolved",purchase,1.0,0 -237159970,"ARK Survival Evolved",play,11.8,0 -237159970,"Clicker Heroes",purchase,1.0,0 -237159970,"Clicker Heroes",play,5.6,0 -237159970,"Autocraft",purchase,1.0,0 -237159970,"Autocraft",play,5.1,0 -237159970,"Metal War Online Retribution",purchase,1.0,0 -237159970,"Robocraft",purchase,1.0,0 -237159970,"Heroes & Generals",purchase,1.0,0 -47288156,"Counter-Strike",purchase,1.0,0 -47288156,"Counter-Strike",play,604.0,0 -47288156,"Counter-Strike Condition Zero",purchase,1.0,0 -47288156,"Counter-Strike Condition Zero",play,15.8,0 -47288156,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -47288156,"Counter-Strike Condition Zero Deleted Scenes",play,4.9,0 -47288156,"Deathmatch Classic",purchase,1.0,0 -47288156,"Deathmatch Classic",play,0.2,0 -47288156,"Ricochet",purchase,1.0,0 -47288156,"Day of Defeat",purchase,1.0,0 -47288156,"Portal",purchase,1.0,0 -142844201,"Dota 2",purchase,1.0,0 -142844201,"Dota 2",play,128.0,0 -142844201,"War Thunder",purchase,1.0,0 -142844201,"War Thunder",play,5.2,0 -142844201,"Neverwinter",purchase,1.0,0 -142844201,"Neverwinter",play,4.5,0 -142844201,"Team Fortress 2",purchase,1.0,0 -142844201,"Team Fortress 2",play,2.2,0 -142844201,"SMITE",purchase,1.0,0 -142844201,"SMITE",play,1.5,0 -142844201,"Warframe",purchase,1.0,0 -142844201,"Warframe",play,1.0,0 -142844201,"Battlegrounds of Eldhelm",purchase,1.0,0 -142844201,"Battlegrounds of Eldhelm",play,0.4,0 -142844201,"Quantum Rush Online",purchase,1.0,0 -142844201,"Quantum Rush Online",play,0.4,0 -142844201,"AirMech",purchase,1.0,0 -142844201,"AirMech",play,0.4,0 -142844201,"Bloodline Champions",purchase,1.0,0 -142844201,"Star Conflict",purchase,1.0,0 -142844201,"Counter-Strike Nexon Zombies",purchase,1.0,0 -142844201,"Defiance",purchase,1.0,0 -142844201,"HAWKEN",purchase,1.0,0 -142844201,"Heroes & Generals",purchase,1.0,0 -142844201,"Magicka Wizard Wars",purchase,1.0,0 -142844201,"Strife",purchase,1.0,0 -142844201,"TOME Immortal Arena",purchase,1.0,0 -158561350,"Team Fortress 2",purchase,1.0,0 -158561350,"Team Fortress 2",play,15.4,0 -158561350,"Dota 2",purchase,1.0,0 -158561350,"Dota 2",play,12.0,0 -158561350,"Loadout",purchase,1.0,0 -158561350,"MapleStory",purchase,1.0,0 -158561350,"Path of Exile",purchase,1.0,0 -158561350,"Super Crate Box",purchase,1.0,0 -158561350,"Toribash",purchase,1.0,0 -158561350,"Unturned",purchase,1.0,0 -60701208,"Day of Defeat Source",purchase,1.0,0 -60701208,"Counter-Strike Source",purchase,1.0,0 -60701208,"Half-Life 2 Deathmatch",purchase,1.0,0 -307915393,"Counter-Strike Global Offensive",purchase,1.0,0 -307915393,"Counter-Strike Global Offensive",play,10.1,0 -307915393,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -307915393,"Call of Duty Modern Warfare 3 - Multiplayer",play,6.3,0 -307915393,"Call of Duty Modern Warfare 3",purchase,1.0,0 -45507376,"Day of Defeat",purchase,1.0,0 -45507376,"Day of Defeat",play,0.4,0 -45507376,"Half-Life 2",purchase,1.0,0 -45507376,"Half-Life 2",play,0.2,0 -45507376,"Counter-Strike",purchase,1.0,0 -45507376,"Team Fortress Classic",purchase,1.0,0 -45507376,"Counter-Strike Source",purchase,1.0,0 -45507376,"Deathmatch Classic",purchase,1.0,0 -45507376,"Half-Life",purchase,1.0,0 -45507376,"Half-Life 2 Deathmatch",purchase,1.0,0 -45507376,"Half-Life 2 Lost Coast",purchase,1.0,0 -45507376,"Half-Life Blue Shift",purchase,1.0,0 -45507376,"Half-Life Opposing Force",purchase,1.0,0 -45507376,"Ricochet",purchase,1.0,0 -57695896,"Left 4 Dead",purchase,1.0,0 -57695896,"Left 4 Dead",play,0.3,0 -59825286,"7 Days to Die",purchase,1.0,0 -59825286,"7 Days to Die",play,164.0,0 -59825286,"Anno 2070",purchase,1.0,0 -59825286,"Anno 2070",play,112.0,0 -59825286,"Borderlands 2",purchase,1.0,0 -59825286,"Borderlands 2",play,112.0,0 -59825286,"Prison Architect",purchase,1.0,0 -59825286,"Prison Architect",play,111.0,0 -59825286,"Banished",purchase,1.0,0 -59825286,"Banished",play,62.0,0 -59825286,"Total War SHOGUN 2",purchase,1.0,0 -59825286,"Total War SHOGUN 2",play,49.0,0 -59825286,"Borderlands",purchase,1.0,0 -59825286,"Borderlands",play,36.0,0 -59825286,"Sid Meier's Civilization V",purchase,1.0,0 -59825286,"Sid Meier's Civilization V",play,35.0,0 -59825286,"Craft The World",purchase,1.0,0 -59825286,"Craft The World",play,22.0,0 -59825286,"Cities XL Platinum",purchase,1.0,0 -59825286,"Cities XL Platinum",play,22.0,0 -59825286,"Dishonored",purchase,1.0,0 -59825286,"Dishonored",play,18.4,0 -59825286,"State of Decay",purchase,1.0,0 -59825286,"State of Decay",play,18.4,0 -59825286,"Cities XL 2012",purchase,1.0,0 -59825286,"Cities XL 2012",play,17.3,0 -59825286,"Spacebase DF-9",purchase,1.0,0 -59825286,"Spacebase DF-9",play,17.2,0 -59825286,"Tropico 4",purchase,1.0,0 -59825286,"Tropico 4",play,14.9,0 -59825286,"Batman Arkham Origins",purchase,1.0,0 -59825286,"Batman Arkham Origins",play,13.4,0 -59825286,"The Walking Dead",purchase,1.0,0 -59825286,"The Walking Dead",play,10.6,0 -59825286,"StarForge",purchase,1.0,0 -59825286,"StarForge",play,10.1,0 -59825286,"Galaxy on Fire 2 Full HD",purchase,1.0,0 -59825286,"Galaxy on Fire 2 Full HD",play,10.0,0 -59825286,"Monaco",purchase,1.0,0 -59825286,"Monaco",play,10.0,0 -59825286,"Endless Space",purchase,1.0,0 -59825286,"Endless Space",play,9.6,0 -59825286,"Startopia",purchase,1.0,0 -59825286,"Startopia",play,9.3,0 -59825286,"Amnesia The Dark Descent",purchase,1.0,0 -59825286,"Amnesia The Dark Descent",play,8.7,0 -59825286,"STAR WARS X-Wing vs. TIE Fighter",purchase,1.0,0 -59825286,"STAR WARS X-Wing vs. TIE Fighter",play,8.1,0 -59825286,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",purchase,1.0,0 -59825286,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",play,8.1,0 -59825286,"Dota 2",purchase,1.0,0 -59825286,"Dota 2",play,7.6,0 -59825286,"The Escapists",purchase,1.0,0 -59825286,"The Escapists",play,7.4,0 -59825286,"Uplink",purchase,1.0,0 -59825286,"Uplink",play,7.3,0 -59825286,"Portal 2",purchase,1.0,0 -59825286,"Portal 2",play,7.2,0 -59825286,"Arma 2 Operation Arrowhead",purchase,1.0,0 -59825286,"Arma 2 Operation Arrowhead",play,5.8,0 -59825286,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -59825286,"Star Wars The Force Unleashed Ultimate Sith Edition",play,5.6,0 -59825286,"X3 Albion Prelude",purchase,1.0,0 -59825286,"X3 Albion Prelude",play,5.4,0 -59825286,"Game Dev Tycoon",purchase,1.0,0 -59825286,"Game Dev Tycoon",play,5.2,0 -59825286,"FTL Faster Than Light",purchase,1.0,0 -59825286,"FTL Faster Than Light",play,4.9,0 -59825286,"PAYDAY 2",purchase,1.0,0 -59825286,"PAYDAY 2",play,4.5,0 -59825286,"X2 The Threat",purchase,1.0,0 -59825286,"X2 The Threat",play,4.5,0 -59825286,"Ghost Master",purchase,1.0,0 -59825286,"Ghost Master",play,4.2,0 -59825286,"Escape Rosecliff Island",purchase,1.0,0 -59825286,"Escape Rosecliff Island",play,4.2,0 -59825286,"Rescue Everyday Heroes",purchase,1.0,0 -59825286,"Rescue Everyday Heroes",play,3.7,0 -59825286,"Reus",purchase,1.0,0 -59825286,"Reus",play,3.6,0 -59825286,"Star Wars Empire at War Gold",purchase,1.0,0 -59825286,"Star Wars Empire at War Gold",play,2.6,0 -59825286,"From Dust",purchase,1.0,0 -59825286,"From Dust",play,2.3,0 -59825286,"Aliens vs. Predator",purchase,1.0,0 -59825286,"Aliens vs. Predator",play,2.1,0 -59825286,"Divinity Original Sin",purchase,1.0,0 -59825286,"Divinity Original Sin",play,2.0,0 -59825286,"Star Wars Dark Forces",purchase,1.0,0 -59825286,"Star Wars Dark Forces",play,1.9,0 -59825286,"The Stanley Parable",purchase,1.0,0 -59825286,"The Stanley Parable",play,1.9,0 -59825286,"The Lord of the Rings War in the North",purchase,1.0,0 -59825286,"The Lord of the Rings War in the North",play,1.8,0 -59825286,"The Testament of Sherlock Holmes",purchase,1.0,0 -59825286,"The Testament of Sherlock Holmes",play,1.8,0 -59825286,"Thief",purchase,1.0,0 -59825286,"Thief",play,1.7,0 -59825286,"Bejeweled 3",purchase,1.0,0 -59825286,"Bejeweled 3",play,1.7,0 -59825286,"Star Wars - Battlefront II",purchase,1.0,0 -59825286,"Star Wars - Battlefront II",play,1.6,0 -59825286,"STAR WARS X-Wing Alliance",purchase,1.0,0 -59825286,"STAR WARS X-Wing Alliance",play,1.6,0 -59825286,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -59825286,"Command and Conquer Red Alert 3 - Uprising",play,1.5,0 -59825286,"Nether",purchase,1.0,0 -59825286,"Nether",play,1.5,0 -59825286,"Infinite Crisis",purchase,1.0,0 -59825286,"Infinite Crisis",play,1.3,0 -59825286,"Sonic Adventure 2 ",purchase,1.0,0 -59825286,"Sonic Adventure 2 ",play,1.3,0 -59825286,"Dear Esther",purchase,1.0,0 -59825286,"Dear Esther",play,1.3,0 -59825286,"Final DOOM",purchase,1.0,0 -59825286,"Final DOOM",play,1.2,0 -59825286,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -59825286,"Star Wars Jedi Knight Jedi Academy",play,1.2,0 -59825286,"PixelJunk Monsters Ultimate",purchase,1.0,0 -59825286,"PixelJunk Monsters Ultimate",play,1.1,0 -59825286,"Chivalry Medieval Warfare",purchase,1.0,0 -59825286,"Chivalry Medieval Warfare",play,1.1,0 -59825286,"I Am Alive",purchase,1.0,0 -59825286,"I Am Alive",play,1.1,0 -59825286,"Stormrise",purchase,1.0,0 -59825286,"Stormrise",play,0.8,0 -59825286,"SimCity 4 Deluxe",purchase,1.0,0 -59825286,"SimCity 4 Deluxe",play,0.7,0 -59825286,"Castle Crashers",purchase,1.0,0 -59825286,"Castle Crashers",play,0.6,0 -59825286,"Surgeon Simulator",purchase,1.0,0 -59825286,"Surgeon Simulator",play,0.3,0 -59825286,"Critter Crunch",purchase,1.0,0 -59825286,"Critter Crunch",play,0.2,0 -59825286,"Feeding Frenzy 2 Shipwreck Showdown Deluxe",purchase,1.0,0 -59825286,"Feeding Frenzy 2 Shipwreck Showdown Deluxe",play,0.2,0 -59825286,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -59825286,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.2,0 -59825286,"The Ultimate DOOM",purchase,1.0,0 -59825286,"The Ultimate DOOM",play,0.1,0 -59825286,"Universe Sandbox",purchase,1.0,0 -59825286,"Universe Sandbox",play,0.1,0 -59825286,"Just Cause 2",purchase,1.0,0 -59825286,"Just Cause 2",play,0.1,0 -59825286,"Gratuitous Space Battles",purchase,1.0,0 -59825286,"DOOM 3",purchase,1.0,0 -59825286,"DOOM 3 Resurrection of Evil",purchase,1.0,0 -59825286,"Star Wars The Clone Wars Republic Heroes",purchase,1.0,0 -59825286,"Agricultural Simulator 2013 Steam Edition",purchase,1.0,0 -59825286,"StarDrive",purchase,1.0,0 -59825286,"7 Grand Steps, Step 1 What Ancients Begat",purchase,1.0,0 -59825286,"Agricultural Simulator Historical Farming",purchase,1.0,0 -59825286,"Air Conflicts Pacific Carriers",purchase,1.0,0 -59825286,"Alien Breed 2 Assault",purchase,1.0,0 -59825286,"Alien Breed 3 Descent",purchase,1.0,0 -59825286,"Alien Breed Impact",purchase,1.0,0 -59825286,"Alpha Prime",purchase,1.0,0 -59825286,"Alpha Protocol",purchase,1.0,0 -59825286,"And Yet It Moves",purchase,1.0,0 -59825286,"A New Beginning - Final Cut",purchase,1.0,0 -59825286,"Anna - Extended Edition",purchase,1.0,0 -59825286,"Anodyne",purchase,1.0,0 -59825286,"Anomaly Korea",purchase,1.0,0 -59825286,"Anomaly Warzone Earth",purchase,1.0,0 -59825286,"Antichamber",purchase,1.0,0 -59825286,"Aquaria",purchase,1.0,0 -59825286,"ArcaniA",purchase,1.0,0 -59825286,"Arma 2",purchase,1.0,0 -59825286,"Arma 2",purchase,1.0,0 -59825286,"Arma 2 DayZ Mod",purchase,1.0,0 -59825286,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -59825286,"Arma Cold War Assault",purchase,1.0,0 -59825286,"Arma Gold Edition",purchase,1.0,0 -59825286,"Arma Tactics",purchase,1.0,0 -59825286,"Auditorium",purchase,1.0,0 -59825286,"Avadon The Black Fortress",purchase,1.0,0 -59825286,"A Virus Named TOM",purchase,1.0,0 -59825286,"Bastion",purchase,1.0,0 -59825286,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -59825286,"Batman Arkham City GOTY",purchase,1.0,0 -59825286,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -59825286,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -59825286,"Beyond Divinity",purchase,1.0,0 -59825286,"Binary Domain",purchase,1.0,0 -59825286,"BioShock Infinite",purchase,1.0,0 -59825286,"BIT.TRIP BEAT",purchase,1.0,0 -59825286,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -59825286,"BIT.TRIP RUNNER",purchase,1.0,0 -59825286,"Blades of Time",purchase,1.0,0 -59825286,"Blood Bowl Legendary Edition",purchase,1.0,0 -59825286,"BookWorm Deluxe",purchase,1.0,0 -59825286,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -59825286,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -59825286,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -59825286,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -59825286,"Bridge Constructor",purchase,1.0,0 -59825286,"Bridge Project",purchase,1.0,0 -59825286,"Broken Sword 1 - Shadow of the Templars Director's Cut",purchase,1.0,0 -59825286,"Broken Sword 2 - the Smoking Mirror Remastered",purchase,1.0,0 -59825286,"Brtal Legend",purchase,1.0,0 -59825286,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -59825286,"Car Mechanic Simulator 2014",purchase,1.0,0 -59825286,"Carrier Command Gaea Mission",purchase,1.0,0 -59825286,"Cave Story+",purchase,1.0,0 -59825286,"Cities in Motion 2",purchase,1.0,0 -59825286,"Closure",purchase,1.0,0 -59825286,"Cogs",purchase,1.0,0 -59825286,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -59825286,"Company of Heroes",purchase,1.0,0 -59825286,"Company of Heroes (New Steam Version)",purchase,1.0,0 -59825286,"Company of Heroes 2",purchase,1.0,0 -59825286,"Company of Heroes Opposing Fronts",purchase,1.0,0 -59825286,"Company of Heroes Tales of Valor",purchase,1.0,0 -59825286,"Confrontation",purchase,1.0,0 -59825286,"Counter-Strike Source",purchase,1.0,0 -59825286,"Crayon Physics Deluxe",purchase,1.0,0 -59825286,"Crazy Taxi",purchase,1.0,0 -59825286,"Crusader Kings II",purchase,1.0,0 -59825286,"Crysis 2 Maximum Edition",purchase,1.0,0 -59825286,"Darksiders",purchase,1.0,0 -59825286,"Darksiders II",purchase,1.0,0 -59825286,"Dead Island",purchase,1.0,0 -59825286,"Dead Space",purchase,1.0,0 -59825286,"Dead Space 2",purchase,1.0,0 -59825286,"DeathSpank",purchase,1.0,0 -59825286,"DeathSpank Thongs Of Virtue",purchase,1.0,0 -59825286,"Defender's Quest Valley of the Forgotten",purchase,1.0,0 -59825286,"Defense Grid Resurgence Map Pack 1",purchase,1.0,0 -59825286,"Defense Grid Resurgence Map Pack 2 ",purchase,1.0,0 -59825286,"Defense Grid Resurgence Map Pack 3",purchase,1.0,0 -59825286,"Defense Grid Resurgence Map Pack 4",purchase,1.0,0 -59825286,"Defense Grid The Awakening",purchase,1.0,0 -59825286,"Deponia",purchase,1.0,0 -59825286,"Deus Ex Human Revolution",purchase,1.0,0 -59825286,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -59825286,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -59825286,"DiRT 3",purchase,1.0,0 -59825286,"DiRT 3 Complete Edition",purchase,1.0,0 -59825286,"DiRT Showdown",purchase,1.0,0 -59825286,"Dismal Swamp DLC",purchase,1.0,0 -59825286,"Divine Divinity",purchase,1.0,0 -59825286,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -59825286,"Divinity II Developer's Cut",purchase,1.0,0 -59825286,"DOOM II Hell on Earth",purchase,1.0,0 -59825286,"Dragon Age Origins",purchase,1.0,0 -59825286,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -59825286,"Dungeon Defenders",purchase,1.0,0 -59825286,"Dungeonland",purchase,1.0,0 -59825286,"Dungeonland - All access pass",purchase,1.0,0 -59825286,"Dust An Elysian Tail",purchase,1.0,0 -59825286,"Dwarfs!?",purchase,1.0,0 -59825286,"EDGE",purchase,1.0,0 -59825286,"Edna & Harvey Harvey's New Eyes",purchase,1.0,0 -59825286,"Eets Munchies",purchase,1.0,0 -59825286,"Empire Total War",purchase,1.0,0 -59825286,"Eufloria",purchase,1.0,0 -59825286,"Eufloria HD",purchase,1.0,0 -59825286,"Eufloria HD Original Soundtrack",purchase,1.0,0 -59825286,"Europa Universalis III",purchase,1.0,0 -59825286,"Euro Truck Simulator",purchase,1.0,0 -59825286,"Evoland",purchase,1.0,0 -59825286,"Expeditions Conquistador",purchase,1.0,0 -59825286,"F.E.A.R.",purchase,1.0,0 -59825286,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -59825286,"F.E.A.R. 3",purchase,1.0,0 -59825286,"F.E.A.R. Extraction Point",purchase,1.0,0 -59825286,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -59825286,"Fable - The Lost Chapters",purchase,1.0,0 -59825286,"Fallout New Vegas",purchase,1.0,0 -59825286,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -59825286,"Fallout New Vegas Dead Money",purchase,1.0,0 -59825286,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -59825286,"Farming World",purchase,1.0,0 -59825286,"FEZ",purchase,1.0,0 -59825286,"Fieldrunners",purchase,1.0,0 -59825286,"Fractal Make Blooms Not War",purchase,1.0,0 -59825286,"Frozen Synapse",purchase,1.0,0 -59825286,"Game of Thrones ",purchase,1.0,0 -59825286,"Garry's Mod",purchase,1.0,0 -59825286,"Gas Guzzlers Extreme",purchase,1.0,0 -59825286,"Giana Sisters Twisted Dreams",purchase,1.0,0 -59825286,"Greed Corp",purchase,1.0,0 -59825286,"Guacamelee! Gold Edition",purchase,1.0,0 -59825286,"Guardians of Middle-earth",purchase,1.0,0 -59825286,"Hack 'n' Slash",purchase,1.0,0 -59825286,"Hard Reset",purchase,1.0,0 -59825286,"Hard Reset Exile DLC",purchase,1.0,0 -59825286,"Hell Yeah!",purchase,1.0,0 -59825286,"Hero of the Kingdom",purchase,1.0,0 -59825286,"Hitman Absolution",purchase,1.0,0 -59825286,"HOARD",purchase,1.0,0 -59825286,"Horizon",purchase,1.0,0 -59825286,"Hotline Miami",purchase,1.0,0 -59825286,"Incredipede",purchase,1.0,0 -59825286,"Indie Game The Movie",purchase,1.0,0 -59825286,"Intake",purchase,1.0,0 -59825286,"Jagged Alliance - Back in Action",purchase,1.0,0 -59825286,"Jagged Alliance Crossfire",purchase,1.0,0 -59825286,"Jamestown",purchase,1.0,0 -59825286,"Joe Danger 2 The Movie",purchase,1.0,0 -59825286,"Journey of a Roach",purchase,1.0,0 -59825286,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -59825286,"Kane & Lynch Dead Men",purchase,1.0,0 -59825286,"Killing Floor",purchase,1.0,0 -59825286,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -59825286,"Kingdom Rush",purchase,1.0,0 -59825286,"Knights of Pen and Paper +1",purchase,1.0,0 -59825286,"Legend of Grimrock",purchase,1.0,0 -59825286,"Leviathan Warships",purchase,1.0,0 -59825286,"LIMBO",purchase,1.0,0 -59825286,"Limited Edition",purchase,1.0,0 -59825286,"Little Inferno",purchase,1.0,0 -59825286,"Lunar Flight",purchase,1.0,0 -59825286,"Luxuria Superbia",purchase,1.0,0 -59825286,"Machinarium",purchase,1.0,0 -59825286,"Magical Diary",purchase,1.0,0 -59825286,"Magicka",purchase,1.0,0 -59825286,"Magicka Vietnam",purchase,1.0,0 -59825286,"Mark of the Ninja",purchase,1.0,0 -59825286,"Mass Effect 2",purchase,1.0,0 -59825286,"Master Levels for DOOM II",purchase,1.0,0 -59825286,"McPixel",purchase,1.0,0 -59825286,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -59825286,"Medal of Honor(TM) Single Player",purchase,1.0,0 -59825286,"Medal of Honor Pre-Order",purchase,1.0,0 -59825286,"Medieval II Total War",purchase,1.0,0 -59825286,"Metro 2033",purchase,1.0,0 -59825286,"Mirror's Edge",purchase,1.0,0 -59825286,"Mortal Kombat Kollection",purchase,1.0,0 -59825286,"MURDERED SOUL SUSPECT",purchase,1.0,0 -59825286,"Natural Selection 2",purchase,1.0,0 -59825286,"Neighbours from Hell",purchase,1.0,0 -59825286,"Neighbours from Hell 2",purchase,1.0,0 -59825286,"NEO Scavenger",purchase,1.0,0 -59825286,"NiGHTS into Dreams...",purchase,1.0,0 -59825286,"NightSky",purchase,1.0,0 -59825286,"Nuclear Dawn",purchase,1.0,0 -59825286,"Offspring Fling!",purchase,1.0,0 -59825286,"On the Rain-Slick Precipice of Darkness, Episode One",purchase,1.0,0 -59825286,"On the Rain-Slick Precipice of Darkness, Episode Two",purchase,1.0,0 -59825286,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -59825286,"Operation Flashpoint Red River",purchase,1.0,0 -59825286,"Orcs Must Die!",purchase,1.0,0 -59825286,"Orcs Must Die! 2",purchase,1.0,0 -59825286,"Organ Trail Director's Cut",purchase,1.0,0 -59825286,"Osmos",purchase,1.0,0 -59825286,"Outlast",purchase,1.0,0 -59825286,"Overlord",purchase,1.0,0 -59825286,"Overlord Raising Hell",purchase,1.0,0 -59825286,"Overlord II",purchase,1.0,0 -59825286,"Painkiller Hell & Damnation",purchase,1.0,0 -59825286,"Papo & Yo",purchase,1.0,0 -59825286,"Patch testing for Chivalry",purchase,1.0,0 -59825286,"PAYDAY The Heist",purchase,1.0,0 -59825286,"Peggle Deluxe",purchase,1.0,0 -59825286,"Peggle Nights",purchase,1.0,0 -59825286,"Pinball FX2",purchase,1.0,0 -59825286,"Pinball FX2 - Core pack",purchase,1.0,0 -59825286,"Pinball FX2 - Earth Defense Table",purchase,1.0,0 -59825286,"Pinball FX2 - Epic Quest Table",purchase,1.0,0 -59825286,"Pinball FX2 - Marvel Pinball Avengers Chronicles pack",purchase,1.0,0 -59825286,"Pinball FX2 - Marvel Pinball Original Pack",purchase,1.0,0 -59825286,"Pinball FX2 - Paranormal Table",purchase,1.0,0 -59825286,"Pinball FX2 - Star Wars Pack",purchase,1.0,0 -59825286,"Pinball FX2 - Zen Classics Pack",purchase,1.0,0 -59825286,"Planet Stronghold",purchase,1.0,0 -59825286,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -59825286,"Pool Nation",purchase,1.0,0 -59825286,"Post Master ",purchase,1.0,0 -59825286,"Psychonauts",purchase,1.0,0 -59825286,"Psychonauts Demo",purchase,1.0,0 -59825286,"Quantum Conundrum",purchase,1.0,0 -59825286,"Ravensword Shadowlands",purchase,1.0,0 -59825286,"RAW - Realms of Ancient War",purchase,1.0,0 -59825286,"Red Faction",purchase,1.0,0 -59825286,"Red Faction Armageddon",purchase,1.0,0 -59825286,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -59825286,"Red Faction II",purchase,1.0,0 -59825286,"Renegade Ops",purchase,1.0,0 -59825286,"Risen",purchase,1.0,0 -59825286,"Risen 2 - Dark Waters",purchase,1.0,0 -59825286,"Rise of the Argonauts",purchase,1.0,0 -59825286,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -59825286,"Rochard",purchase,1.0,0 -59825286,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -59825286,"Rock of Ages",purchase,1.0,0 -59825286,"Rome Total War",purchase,1.0,0 -59825286,"Sacred 2 Gold",purchase,1.0,0 -59825286,"Sacred Citadel",purchase,1.0,0 -59825286,"Saints Row 2",purchase,1.0,0 -59825286,"Saints Row The Third",purchase,1.0,0 -59825286,"Sanctum",purchase,1.0,0 -59825286,"Sanctum 2",purchase,1.0,0 -59825286,"Savant - Ascent",purchase,1.0,0 -59825286,"Scribblenauts Unlimited",purchase,1.0,0 -59825286,"SEGA Bass Fishing",purchase,1.0,0 -59825286,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -59825286,"Serious Sam 3 BFE",purchase,1.0,0 -59825286,"Serious Sam HD The First Encounter",purchase,1.0,0 -59825286,"Shadow Warrior Classic Redux",purchase,1.0,0 -59825286,"Shank 2",purchase,1.0,0 -59825286,"Shatter",purchase,1.0,0 -59825286,"Sine Mora",purchase,1.0,0 -59825286,"SkyDrift",purchase,1.0,0 -59825286,"Snapshot",purchase,1.0,0 -59825286,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -59825286,"Sonic Adventure DX",purchase,1.0,0 -59825286,"Sonic Generations",purchase,1.0,0 -59825286,"Space Channel 5 Part 2",purchase,1.0,0 -59825286,"SpaceChem",purchase,1.0,0 -59825286,"Space Pirates and Zombies",purchase,1.0,0 -59825286,"SpellForce 2 - Faith in Destiny",purchase,1.0,0 -59825286,"Spirits",purchase,1.0,0 -59825286,"Splice",purchase,1.0,0 -59825286,"Star Ruler",purchase,1.0,0 -59825286,"Starseed Pilgrim",purchase,1.0,0 -59825286,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -59825286,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -59825286,"Star Wars Knights of the Old Republic",purchase,1.0,0 -59825286,"Star Wars The Force Unleashed II",purchase,1.0,0 -59825286,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -59825286,"Star Wars Republic Commando",purchase,1.0,0 -59825286,"Star Wars Starfighter",purchase,1.0,0 -59825286,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -59825286,"Stealth Bastard Deluxe",purchase,1.0,0 -59825286,"Strike Suit Zero",purchase,1.0,0 -59825286,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -59825286,"Superfrog HD",purchase,1.0,0 -59825286,"Super Hexagon",purchase,1.0,0 -59825286,"Supreme Commander",purchase,1.0,0 -59825286,"Supreme Commander 2",purchase,1.0,0 -59825286,"Supreme Commander Forged Alliance",purchase,1.0,0 -59825286,"Swords and Soldiers HD",purchase,1.0,0 -59825286,"Syder Arcade",purchase,1.0,0 -59825286,"System Shock 2",purchase,1.0,0 -59825286,"Take On Helicopters",purchase,1.0,0 -59825286,"Terraria",purchase,1.0,0 -59825286,"The Baconing",purchase,1.0,0 -59825286,"The Bard's Tale",purchase,1.0,0 -59825286,"The Basement Collection",purchase,1.0,0 -59825286,"The Binding of Isaac",purchase,1.0,0 -59825286,"The Bridge",purchase,1.0,0 -59825286,"The Dark Eye Chains of Satinav",purchase,1.0,0 -59825286,"The Dream Machine",purchase,1.0,0 -59825286,"The Dream Machine Chapter 3",purchase,1.0,0 -59825286,"The Fish Fillets 2",purchase,1.0,0 -59825286,"The Guild II",purchase,1.0,0 -59825286,"The Lost Crown",purchase,1.0,0 -59825286,"The Shivah",purchase,1.0,0 -59825286,"The Showdown Effect",purchase,1.0,0 -59825286,"The Swapper",purchase,1.0,0 -59825286,"The Typing of The Dead Overkill",purchase,1.0,0 -59825286,"The Whispered World",purchase,1.0,0 -59825286,"The Whispered World Special Edition",purchase,1.0,0 -59825286,"Thief - The Bank Heist",purchase,1.0,0 -59825286,"Thief Deadly Shadows",purchase,1.0,0 -59825286,"Thief Gold",purchase,1.0,0 -59825286,"Thunder Wolves",purchase,1.0,0 -59825286,"Ticket to Ride",purchase,1.0,0 -59825286,"Ticket to Ride - Europe",purchase,1.0,0 -59825286,"Ticket to Ride - USA 1910",purchase,1.0,0 -59825286,"Titan Quest",purchase,1.0,0 -59825286,"Toki Tori 2+",purchase,1.0,0 -59825286,"Torchlight",purchase,1.0,0 -59825286,"To the Moon",purchase,1.0,0 -59825286,"Trainz Simulator 12",purchase,1.0,0 -59825286,"Trine 2",purchase,1.0,0 -59825286,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -59825286,"TypeRider",purchase,1.0,0 -59825286,"UFO Afterlight",purchase,1.0,0 -59825286,"Unturned",purchase,1.0,0 -59825286,"Vessel",purchase,1.0,0 -59825286,"Viking Battle for Asgard",purchase,1.0,0 -59825286,"Waking Mars",purchase,1.0,0 -59825286,"Wargame European Escalation",purchase,1.0,0 -59825286,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -59825286,"Warlock - Master of the Arcane",purchase,1.0,0 -59825286,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -59825286,"War of the Roses",purchase,1.0,0 -59825286,"War of the Roses Kingmaker",purchase,1.0,0 -59825286,"War of the Roses Balance Beta",purchase,1.0,0 -59825286,"Wildlife Park 3",purchase,1.0,0 -59825286,"Wizorb",purchase,1.0,0 -59825286,"World of Goo",purchase,1.0,0 -59825286,"Worms Armageddon",purchase,1.0,0 -59825286,"Worms Blast",purchase,1.0,0 -59825286,"Worms Crazy Golf",purchase,1.0,0 -59825286,"Worms Pinball",purchase,1.0,0 -59825286,"Worms Reloaded",purchase,1.0,0 -59825286,"Worms Revolution",purchase,1.0,0 -59825286,"Worms Ultimate Mayhem",purchase,1.0,0 -59825286,"X-Tension",purchase,1.0,0 -59825286,"X3 Reunion",purchase,1.0,0 -59825286,"X3 Terran Conflict",purchase,1.0,0 -59825286,"X Beyond the Frontier",purchase,1.0,0 -59825286,"Zen Bound 2",purchase,1.0,0 -59825286,"Zeno Clash",purchase,1.0,0 -59825286,"Zeno Clash 2",purchase,1.0,0 -59825286,"Zoo Park",purchase,1.0,0 -59825286,"Zuma's Revenge",purchase,1.0,0 -250585628,"Dota 2",purchase,1.0,0 -250585628,"Dota 2",play,1.5,0 -303315809,"Dota 2",purchase,1.0,0 -303315809,"Dota 2",play,10.5,0 -96515834,"Stronghold 3",purchase,1.0,0 -96515834,"Stronghold 3",play,18.9,0 -96515834,"Stronghold HD",purchase,1.0,0 -245057860,"Team Fortress 2",purchase,1.0,0 -245057860,"Team Fortress 2",play,32.0,0 -245057860,"Realm of the Mad God",purchase,1.0,0 -245057860,"Realm of the Mad God",play,0.4,0 -169529166,"Team Fortress 2",purchase,1.0,0 -169529166,"Team Fortress 2",play,0.7,0 -36581507,"Counter-Strike Source",purchase,1.0,0 -36581507,"Counter-Strike Source",play,12.6,0 -36581507,"Day of Defeat Source",purchase,1.0,0 -36581507,"Half-Life 2 Deathmatch",purchase,1.0,0 -36581507,"Half-Life 2 Lost Coast",purchase,1.0,0 -81392790,"Mafia II",purchase,1.0,0 -81392790,"Mafia II",play,1.0,0 -61216865,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -61216865,"Call of Duty Modern Warfare 2 - Multiplayer",play,47.0,0 -61216865,"Call of Duty Modern Warfare 2",purchase,1.0,0 -94428876,"Fallout New Vegas",purchase,1.0,0 -94428876,"Fallout New Vegas",play,45.0,0 -94428876,"Sid Meier's Civilization V",purchase,1.0,0 -94428876,"Sid Meier's Civilization V",play,10.3,0 -94428876,"Total War SHOGUN 2",purchase,1.0,0 -94428876,"Total War SHOGUN 2",play,3.5,0 -94428876,"L.A. Noire",purchase,1.0,0 -94428876,"L.A. Noire",play,2.5,0 -94428876,"XCOM Enemy Unknown",purchase,1.0,0 -94428876,"XCOM Enemy Unknown",play,1.4,0 -94428876,"Left 4 Dead 2",purchase,1.0,0 -94428876,"Left 4 Dead 2",play,0.3,0 -94428876,"F1 2012",purchase,1.0,0 -94428876,"F1 2012",play,0.1,0 -94428876,"BioShock",purchase,1.0,0 -94428876,"War Thunder",purchase,1.0,0 -62418323,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -62418323,"Call of Duty Modern Warfare 2 - Multiplayer",play,131.0,0 -62418323,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -62418323,"Call of Duty Black Ops - Multiplayer",play,57.0,0 -62418323,"Call of Duty Modern Warfare 2",purchase,1.0,0 -62418323,"Call of Duty Modern Warfare 2",play,34.0,0 -62418323,"Call of Duty Black Ops",purchase,1.0,0 -62418323,"Call of Duty Black Ops",play,29.0,0 -62418323,"Left 4 Dead",purchase,1.0,0 -62418323,"Left 4 Dead",play,11.6,0 -113321644,"Borderlands 2",purchase,1.0,0 -113321644,"Borderlands 2",play,107.0,0 -113321644,"Left 4 Dead 2",purchase,1.0,0 -113321644,"Left 4 Dead 2",play,29.0,0 -113321644,"PAYDAY 2",purchase,1.0,0 -113321644,"PAYDAY 2",play,21.0,0 -113321644,"PAYDAY The Heist",purchase,1.0,0 -113321644,"PAYDAY The Heist",play,10.3,0 -113321644,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -74997600,"Napoleon Total War",purchase,1.0,0 -74997600,"Napoleon Total War",play,25.0,0 -206194501,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -206194501,"Tom Clancy's Ghost Recon Phantoms - EU",play,49.0,0 -170178539,"Dota 2",purchase,1.0,0 -170178539,"Dota 2",play,0.7,0 -128236624,"Dota 2",purchase,1.0,0 -128236624,"Dota 2",play,546.0,0 -128236624,"America's Army 3",purchase,1.0,0 -128236624,"Dungeonland",purchase,1.0,0 -128236624,"Marvel Heroes 2015",purchase,1.0,0 -128236624,"No More Room in Hell",purchase,1.0,0 -128236624,"Tactical Intervention",purchase,1.0,0 -128236624,"War Thunder",purchase,1.0,0 -39459129,"Half-Life 2 Lost Coast",purchase,1.0,0 -39459129,"Half-Life 2 Lost Coast",play,0.7,0 -39459129,"Half-Life 2 Deathmatch",purchase,1.0,0 -285882402,"Brawlhalla",purchase,1.0,0 -285882402,"Brawlhalla",play,55.0,0 -285882402,"THE KING OF FIGHTERS 2002 UNLIMITED MATCH",purchase,1.0,0 -285882402,"THE KING OF FIGHTERS 2002 UNLIMITED MATCH",play,7.5,0 -285882402,"BattleBlock Theater",purchase,1.0,0 -285882402,"BattleBlock Theater",play,6.2,0 -285882402,"Age of Empires II HD Edition",purchase,1.0,0 -285882402,"Age of Empires II HD Edition",play,5.7,0 -285882402,"Dragomon Hunter",purchase,1.0,0 -285882402,"Dragomon Hunter",play,1.1,0 -285882402,"The Marvellous Miss Take",purchase,1.0,0 -285882402,"The Marvellous Miss Take",play,0.8,0 -285882402,"Spooky's House of Jump Scares",purchase,1.0,0 -285882402,"Spooky's House of Jump Scares",play,0.4,0 -285882402,"Dragomon Hunter - Welcome Gift",purchase,1.0,0 -70489471,"Left 4 Dead 2",purchase,1.0,0 -70489471,"Left 4 Dead 2",play,35.0,0 -70489471,"Terraria",purchase,1.0,0 -70489471,"Terraria",play,26.0,0 -70489471,"Fallout New Vegas",purchase,1.0,0 -70489471,"Fallout New Vegas",play,22.0,0 -70489471,"Sid Meier's Civilization V",purchase,1.0,0 -70489471,"Sid Meier's Civilization V",play,22.0,0 -70489471,"BioShock",purchase,1.0,0 -70489471,"BioShock",play,7.8,0 -70489471,"Counter-Strike Source",purchase,1.0,0 -70489471,"Counter-Strike Source",play,3.6,0 -70489471,"BioShock 2",purchase,1.0,0 -70489471,"BioShock 2",play,0.2,0 -129522238,"Dota 2",purchase,1.0,0 -129522238,"Dota 2",play,110.0,0 -129522238,"Path of Exile",purchase,1.0,0 -291814106,"Lost Lands A Hidden Object Adventure",purchase,1.0,0 -69805535,"Mafia II",purchase,1.0,0 -69805535,"Mafia II",play,89.0,0 -107967382,"Team Fortress 2",purchase,1.0,0 -107967382,"Team Fortress 2",play,2.9,0 -42542226,"Fallout 3",purchase,1.0,0 -42542226,"Fallout 3",play,28.0,0 -42542226,"Call of Duty World at War",purchase,1.0,0 -42542226,"Call of Duty World at War",play,17.1,0 -252083412,"Grand Theft Auto V",purchase,1.0,0 -252083412,"Grand Theft Auto V",play,35.0,0 -252083412,"Fishing Planet",purchase,1.0,0 -252083412,"Fishing Planet",play,4.7,0 -252083412,"Dota 2",purchase,1.0,0 -252083412,"Dota 2",play,4.0,0 -252895155,"Dota 2",purchase,1.0,0 -252895155,"Dota 2",play,1.4,0 -71583368,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -71583368,"Warhammer 40,000 Dawn of War II",play,10.9,0 -165216496,"Team Fortress 2",purchase,1.0,0 -165216496,"Team Fortress 2",play,570.0,0 -165216496,"Garry's Mod",purchase,1.0,0 -165216496,"Garry's Mod",play,195.0,0 -165216496,"Grand Theft Auto IV",purchase,1.0,0 -165216496,"Grand Theft Auto IV",play,52.0,0 -165216496,"Saints Row The Third",purchase,1.0,0 -165216496,"Saints Row The Third",play,44.0,0 -165216496,"Borderlands 2",purchase,1.0,0 -165216496,"Borderlands 2",play,44.0,0 -165216496,"Warface",purchase,1.0,0 -165216496,"Warface",play,28.0,0 -165216496,"Unturned",purchase,1.0,0 -165216496,"Unturned",play,24.0,0 -165216496,"No More Room in Hell",purchase,1.0,0 -165216496,"No More Room in Hell",play,19.3,0 -165216496,"Warframe",purchase,1.0,0 -165216496,"Warframe",play,15.8,0 -165216496,"Left 4 Dead 2",purchase,1.0,0 -165216496,"Left 4 Dead 2",play,13.1,0 -165216496,"Sniper Elite V2",purchase,1.0,0 -165216496,"Sniper Elite V2",play,12.1,0 -165216496,"APB Reloaded",purchase,1.0,0 -165216496,"APB Reloaded",play,11.2,0 -165216496,"Dead Island Riptide",purchase,1.0,0 -165216496,"Dead Island Riptide",play,10.0,0 -165216496,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -165216496,"Tom Clancy's Ghost Recon Phantoms - EU",play,9.7,0 -165216496,"BLOCKADE 3D",purchase,1.0,0 -165216496,"BLOCKADE 3D",play,8.8,0 -165216496,"Rust",purchase,1.0,0 -165216496,"Rust",play,8.6,0 -165216496,"Dizzel",purchase,1.0,0 -165216496,"Dizzel",play,7.1,0 -165216496,"Loadout",purchase,1.0,0 -165216496,"Loadout",play,6.4,0 -165216496,"Fistful of Frags",purchase,1.0,0 -165216496,"Fistful of Frags",play,5.4,0 -165216496,"F.E.A.R. Online",purchase,1.0,0 -165216496,"F.E.A.R. Online",play,5.0,0 -165216496,"Gear Up",purchase,1.0,0 -165216496,"Gear Up",play,4.7,0 -165216496,"Brick-Force",purchase,1.0,0 -165216496,"Brick-Force",play,4.3,0 -165216496,"Robocraft",purchase,1.0,0 -165216496,"Robocraft",play,4.1,0 -165216496,"Counter-Strike Nexon Zombies",purchase,1.0,0 -165216496,"Counter-Strike Nexon Zombies",play,4.1,0 -165216496,"NEED FOR MADNESS ?",purchase,1.0,0 -165216496,"NEED FOR MADNESS ?",play,4.0,0 -165216496,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -165216496,"Boring Man - Online Tactical Stickman Combat",play,3.3,0 -165216496,"Quake Live",purchase,1.0,0 -165216496,"Quake Live",play,3.0,0 -165216496,"Dota 2",purchase,1.0,0 -165216496,"Dota 2",play,3.0,0 -165216496,"Spiral Knights",purchase,1.0,0 -165216496,"Spiral Knights",play,2.9,0 -165216496,"Hazard Ops",purchase,1.0,0 -165216496,"Hazard Ops",play,2.6,0 -165216496,"Dead Island",purchase,1.0,0 -165216496,"Dead Island",play,2.5,0 -165216496,"theHunter",purchase,1.0,0 -165216496,"theHunter",play,1.3,0 -165216496,"War Thunder",purchase,1.0,0 -165216496,"War Thunder",play,1.2,0 -165216496,"Firefall",purchase,1.0,0 -165216496,"Firefall",play,1.0,0 -165216496,"Nosgoth",purchase,1.0,0 -165216496,"Nosgoth",play,0.9,0 -165216496,"Fallen Earth",purchase,1.0,0 -165216496,"Fallen Earth",play,0.8,0 -165216496,"RaceRoom Racing Experience ",purchase,1.0,0 -165216496,"RaceRoom Racing Experience ",play,0.7,0 -165216496,"Heroes & Generals",purchase,1.0,0 -165216496,"Heroes & Generals",play,0.6,0 -165216496,"Champions Online",purchase,1.0,0 -165216496,"Champions Online",play,0.6,0 -165216496,"Crossfire Europe",purchase,1.0,0 -165216496,"Crossfire Europe",play,0.6,0 -165216496,"Cubic Castles",purchase,1.0,0 -165216496,"Cubic Castles",play,0.6,0 -165216496,"Blacklight Retribution",purchase,1.0,0 -165216496,"Blacklight Retribution",play,0.6,0 -165216496,"Alien Swarm",purchase,1.0,0 -165216496,"Alien Swarm",play,0.5,0 -165216496,"NEOTOKYO",purchase,1.0,0 -165216496,"NEOTOKYO",play,0.5,0 -165216496,"Super Crate Box",purchase,1.0,0 -165216496,"Super Crate Box",play,0.4,0 -165216496,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -165216496,"A.V.A - Alliance of Valiant Arms",play,0.4,0 -165216496,"Transformice",purchase,1.0,0 -165216496,"Transformice",play,0.4,0 -165216496,"HIT",purchase,1.0,0 -165216496,"HIT",play,0.4,0 -165216496,"sZone-Online",purchase,1.0,0 -165216496,"sZone-Online",play,0.4,0 -165216496,"Cry of Fear",purchase,1.0,0 -165216496,"Cry of Fear",play,0.3,0 -165216496,"Only If",purchase,1.0,0 -165216496,"Only If",play,0.2,0 -165216496,"Tales Runner",purchase,1.0,0 -165216496,"Tales Runner",play,0.2,0 -165216496,"Star Trek Online",purchase,1.0,0 -165216496,"Star Trek Online",play,0.1,0 -165216496,"8BitMMO",purchase,1.0,0 -165216496,"8BitMMO",play,0.1,0 -165216496,"Tribes Ascend",purchase,1.0,0 -165216496,"Tribes Ascend",play,0.1,0 -165216496,"America's Army Proving Grounds",purchase,1.0,0 -165216496,"The Way of Life Free Edition",purchase,1.0,0 -165216496,"ROSE Online",purchase,1.0,0 -165216496,"The Old Tree",purchase,1.0,0 -165216496,"Realm of the Mad God",purchase,1.0,0 -165216496,"Anarchy Arcade",purchase,1.0,0 -165216496,"Dead Island Epidemic",purchase,1.0,0 -165216496,"Defiance",purchase,1.0,0 -247531299,"Dota 2",purchase,1.0,0 -247531299,"Dota 2",play,2.8,0 -95279056,"Arma 2 Operation Arrowhead",purchase,1.0,0 -95279056,"Arma 2 Operation Arrowhead",play,52.0,0 -95279056,"Arma 3",purchase,1.0,0 -95279056,"Arma 3",play,30.0,0 -95279056,"DayZ",purchase,1.0,0 -95279056,"DayZ",play,13.5,0 -95279056,"BioShock Infinite",purchase,1.0,0 -95279056,"BioShock Infinite",play,11.5,0 -95279056,"The Elder Scrolls V Skyrim",purchase,1.0,0 -95279056,"The Elder Scrolls V Skyrim",play,4.1,0 -95279056,"Hitman Absolution",purchase,1.0,0 -95279056,"Hitman Absolution",play,3.6,0 -95279056,"Fallout New Vegas",purchase,1.0,0 -95279056,"Fallout New Vegas",play,2.2,0 -95279056,"Far Cry 3",purchase,1.0,0 -95279056,"Far Cry 3",play,1.3,0 -95279056,"Arma 2",purchase,1.0,0 -95279056,"Arma 2",play,0.9,0 -95279056,"Dishonored",purchase,1.0,0 -95279056,"Dishonored",play,0.8,0 -95279056,"Just Cause 2",purchase,1.0,0 -95279056,"Just Cause 2",play,0.7,0 -95279056,"BioShock",purchase,1.0,0 -95279056,"BioShock",play,0.6,0 -95279056,"Grand Theft Auto IV",purchase,1.0,0 -95279056,"Grand Theft Auto IV",play,0.5,0 -95279056,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -95279056,"Arma 3 Zeus",purchase,1.0,0 -95279056,"Hitman Sniper Challenge",purchase,1.0,0 -95279056,"XCOM Enemy Unknown",purchase,1.0,0 -109763455,"Dota 2",purchase,1.0,0 -109763455,"Dota 2",play,1564.0,0 -238821887,"Dota 2",purchase,1.0,0 -238821887,"Dota 2",play,592.0,0 -238821887,"GunZ 2 The Second Duel",purchase,1.0,0 -238821887,"Marvel Heroes 2015",purchase,1.0,0 -238821887,"Warframe",purchase,1.0,0 -61439397,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -61439397,"Call of Duty Modern Warfare 2 - Multiplayer",play,159.0,0 -61439397,"DiRT 2",purchase,1.0,0 -61439397,"DiRT 2",play,8.4,0 -61439397,"Call of Duty Modern Warfare 2",purchase,1.0,0 -61439397,"Call of Duty Modern Warfare 2",play,2.2,0 -31241223,"Counter-Strike",purchase,1.0,0 -31241223,"Counter-Strike",play,0.8,0 -31241223,"Counter-Strike Condition Zero",purchase,1.0,0 -31241223,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -31241223,"Day of Defeat",purchase,1.0,0 -31241223,"Deathmatch Classic",purchase,1.0,0 -31241223,"Ricochet",purchase,1.0,0 -209917929,"Tales of Zestiria",purchase,1.0,0 -209917929,"Tales of Zestiria",play,57.0,0 -209917929,"The Witcher Enhanced Edition",purchase,1.0,0 -209917929,"The Witcher Enhanced Edition",play,54.0,0 -209917929,"Don't Starve",purchase,1.0,0 -209917929,"Don't Starve",play,15.6,0 -209917929,"This War of Mine",purchase,1.0,0 -209917929,"This War of Mine",play,14.5,0 -209917929,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -209917929,"The Witcher 2 Assassins of Kings Enhanced Edition",play,11.8,0 -209917929,"Soccer Manager 2016",purchase,1.0,0 -209917929,"Soccer Manager 2016",play,7.6,0 -209917929,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -209917929,"The Secret of Monkey Island Special Edition",play,7.1,0 -209917929,"Magic Duels",purchase,1.0,0 -209917929,"Magic Duels",play,3.5,0 -209917929,"Sakura Clicker",purchase,1.0,0 -209917929,"Sakura Clicker",play,3.2,0 -209917929,"Warhammer Quest",purchase,1.0,0 -209917929,"Warhammer Quest",play,3.0,0 -209917929,"The Witcher Adventure Game",purchase,1.0,0 -209917929,"The Witcher Adventure Game",play,1.8,0 -209917929,"FINAL FANTASY VII",purchase,1.0,0 -209917929,"FINAL FANTASY VII",play,1.2,0 -209917929,"12 Labours of Hercules II The Cretan Bull",purchase,1.0,0 -209917929,"12 Labours of Hercules II The Cretan Bull",play,0.8,0 -209917929,"FINAL FANTASY IV",purchase,1.0,0 -209917929,"FINAL FANTASY IV",play,0.6,0 -209917929,"The Elder Scrolls V Skyrim",purchase,1.0,0 -209917929,"The Elder Scrolls V Skyrim",play,0.3,0 -209917929,"Marvel Heroes 2015",purchase,1.0,0 -209917929,"Marvel Heroes 2015",play,0.3,0 -209917929,"Don't Starve Together Beta",purchase,1.0,0 -209917929,"Don't Starve Together Beta",play,0.3,0 -209917929,"Dota 2",purchase,1.0,0 -209917929,"Dota 2",play,0.2,0 -209917929,"Eternal Senia",purchase,1.0,0 -209917929,"Unepic",purchase,1.0,0 -209917929,"Battlestations Midway",purchase,1.0,0 -209917929,"Battlestations Pacific",purchase,1.0,0 -209917929,"Blood Omen 2 Legacy of Kain",purchase,1.0,0 -209917929,"Child of Light",purchase,1.0,0 -209917929,"Deponia",purchase,1.0,0 -209917929,"Deus Ex Game of the Year Edition",purchase,1.0,0 -209917929,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -209917929,"Deus Ex Invisible War",purchase,1.0,0 -209917929,"Deus Ex The Fall",purchase,1.0,0 -209917929,"Dirty Bomb",purchase,1.0,0 -209917929,"Don't Starve Reign of Giants",purchase,1.0,0 -209917929,"DOOM II Hell on Earth",purchase,1.0,0 -209917929,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -209917929,"Dungeon Siege",purchase,1.0,0 -209917929,"Dungeon Siege 2",purchase,1.0,0 -209917929,"Dungeon Siege III",purchase,1.0,0 -209917929,"Final DOOM",purchase,1.0,0 -209917929,"FINAL FANTASY IV THE AFTER YEARS",purchase,1.0,0 -209917929,"FINAL FANTASY VIII",purchase,1.0,0 -209917929,"Hitman 2 Silent Assassin",purchase,1.0,0 -209917929,"Hitman Absolution",purchase,1.0,0 -209917929,"Hitman Blood Money",purchase,1.0,0 -209917929,"Hitman Codename 47",purchase,1.0,0 -209917929,"Hitman Contracts",purchase,1.0,0 -209917929,"Hitman Sniper Challenge",purchase,1.0,0 -209917929,"Just Cause",purchase,1.0,0 -209917929,"Just Cause 2",purchase,1.0,0 -209917929,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -209917929,"Kane & Lynch Dead Men",purchase,1.0,0 -209917929,"Lara Croft and the Guardian of Light",purchase,1.0,0 -209917929,"Legacy of Kain Defiance",purchase,1.0,0 -209917929,"Legacy of Kain Soul Reaver",purchase,1.0,0 -209917929,"Legacy of Kain Soul Reaver 2",purchase,1.0,0 -209917929,"Master Levels for DOOM II",purchase,1.0,0 -209917929,"Monkey Island 2 Special Edition",purchase,1.0,0 -209917929,"Nosgoth",purchase,1.0,0 -209917929,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -209917929,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -209917929,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -209917929,"The Ultimate DOOM",purchase,1.0,0 -209917929,"Thief",purchase,1.0,0 -209917929,"Thief - Ghost",purchase,1.0,0 -209917929,"Thief - Opportunist",purchase,1.0,0 -209917929,"Thief - Predator",purchase,1.0,0 -209917929,"Thief - The Bank Heist",purchase,1.0,0 -209917929,"Thief 2",purchase,1.0,0 -209917929,"Thief Deadly Shadows",purchase,1.0,0 -209917929,"Thief Gold",purchase,1.0,0 -209917929,"Tomb Raider",purchase,1.0,0 -209917929,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -209917929,"Tomb Raider Anniversary",purchase,1.0,0 -209917929,"Tomb Raider Chronicles",purchase,1.0,0 -209917929,"Tomb Raider Legend",purchase,1.0,0 -209917929,"Tomb Raider The Last Revelation",purchase,1.0,0 -209917929,"Tomb Raider Underworld",purchase,1.0,0 -209917929,"Tomb Raider I",purchase,1.0,0 -209917929,"Tomb Raider II",purchase,1.0,0 -209917929,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -209917929,"Warhammer Quest - Base Pack items",purchase,1.0,0 -56436989,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -56436989,"Call of Duty Modern Warfare 2 - Multiplayer",play,148.0,0 -56436989,"The Elder Scrolls V Skyrim",purchase,1.0,0 -56436989,"The Elder Scrolls V Skyrim",play,94.0,0 -56436989,"Call of Duty Modern Warfare 2",purchase,1.0,0 -56436989,"Call of Duty Modern Warfare 2",play,49.0,0 -56436989,"Far Cry 3",purchase,1.0,0 -56436989,"Far Cry 3",play,38.0,0 -56436989,"Metro Last Light",purchase,1.0,0 -56436989,"Metro Last Light",play,34.0,0 -56436989,"Thief",purchase,1.0,0 -56436989,"Thief",play,31.0,0 -56436989,"State of Decay",purchase,1.0,0 -56436989,"State of Decay",play,14.6,0 -56436989,"Command and Conquer 3 Tiberium Wars",purchase,1.0,0 -56436989,"Command and Conquer 3 Tiberium Wars",play,11.5,0 -56436989,"Duke Nukem Forever",purchase,1.0,0 -56436989,"Duke Nukem Forever",play,10.8,0 -56436989,"SpellForce 2 - Faith in Destiny",purchase,1.0,0 -56436989,"SpellForce 2 - Faith in Destiny",play,9.2,0 -56436989,"Sid Meier's Civilization V",purchase,1.0,0 -56436989,"Sid Meier's Civilization V",play,7.8,0 -56436989,"Dead Island",purchase,1.0,0 -56436989,"Dead Island",play,7.5,0 -56436989,"Counter-Strike Global Offensive",purchase,1.0,0 -56436989,"Counter-Strike Global Offensive",play,6.7,0 -56436989,"Neverwinter",purchase,1.0,0 -56436989,"Neverwinter",play,6.6,0 -56436989,"Sniper Elite Nazi Zombie Army 2",purchase,1.0,0 -56436989,"Sniper Elite Nazi Zombie Army 2",play,6.1,0 -56436989,"Stronghold 3",purchase,1.0,0 -56436989,"Stronghold 3",play,4.2,0 -56436989,"Serious Sam 3 BFE",purchase,1.0,0 -56436989,"Serious Sam 3 BFE",play,2.7,0 -56436989,"The Last Remnant",purchase,1.0,0 -56436989,"The Last Remnant",play,2.6,0 -56436989,"Stronghold Crusader 2",purchase,1.0,0 -56436989,"Stronghold Crusader 2",play,2.2,0 -56436989,"Metro 2033 Redux",purchase,1.0,0 -56436989,"Metro 2033 Redux",play,2.1,0 -56436989,"Lost Planet 3",purchase,1.0,0 -56436989,"Lost Planet 3",play,2.0,0 -56436989,"METAL SLUG 3",purchase,1.0,0 -56436989,"METAL SLUG 3",play,1.6,0 -56436989,"Left 4 Dead 2",purchase,1.0,0 -56436989,"Left 4 Dead 2",play,0.3,0 -56436989,"Kingdom Wars",purchase,1.0,0 -56436989,"Kingdom Wars",play,0.2,0 -56436989,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -56436989,"Stronghold HD",purchase,1.0,0 -56436989,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -56436989,"SpellForce 2 - Demons of the Past",purchase,1.0,0 -56436989,"SpellForce 2 - Demons of the Past - Soundtrack",purchase,1.0,0 -56436989,"SpellForce 2 Gold Edition",purchase,1.0,0 -56436989,"SpellForce Platinum Edition",purchase,1.0,0 -56436989,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -56436989,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -56436989,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -56436989,"The Witcher Enhanced Edition",purchase,1.0,0 -56436989,"Thief - The Bank Heist",purchase,1.0,0 -33279432,"Half-Life 2",purchase,1.0,0 -33279432,"Half-Life 2",play,2.7,0 -33279432,"Half-Life 2 Episode One",purchase,1.0,0 -33279432,"Half-Life 2 Episode One",play,0.2,0 -33279432,"Half-Life 2 Episode Two",purchase,1.0,0 -33279432,"Half-Life 2 Lost Coast",purchase,1.0,0 -33279432,"Half-Life Source",purchase,1.0,0 -33279432,"Half-Life Deathmatch Source",purchase,1.0,0 -33279432,"Portal",purchase,1.0,0 -243398647,"Napoleon Total War",purchase,1.0,0 -243398647,"Napoleon Total War",play,1.8,0 -200821590,"NBA 2K15",purchase,1.0,0 -200821590,"NBA 2K15",play,209.0,0 -200821590,"Age of Empires II HD Edition",purchase,1.0,0 -200821590,"Age of Empires II HD Edition",play,1.0,0 -205732978,"GT Legends",purchase,1.0,0 -205732978,"RaceRoom Racing Experience ",purchase,1.0,0 -230924351,"Dota 2",purchase,1.0,0 -230924351,"Dota 2",play,6.1,0 -230924351,"Survarium",purchase,1.0,0 -230924351,"Unturned",purchase,1.0,0 -38293596,"Team Fortress 2",purchase,1.0,0 -38293596,"Team Fortress 2",play,639.0,0 -38293596,"Portal",purchase,1.0,0 -38293596,"Portal",play,5.5,0 -38293596,"The Dig",purchase,1.0,0 -38293596,"The Dig",play,2.4,0 -38293596,"Mass Effect",purchase,1.0,0 -38293596,"Mass Effect",play,0.6,0 -181002117,"Euro Truck Simulator 2",purchase,1.0,0 -181002117,"Euro Truck Simulator 2",play,84.0,0 -181002117,"Left 4 Dead 2",purchase,1.0,0 -181002117,"Left 4 Dead 2",play,38.0,0 -181002117,"Warframe",purchase,1.0,0 -181002117,"Warframe",play,13.5,0 -181002117,"Crysis",purchase,1.0,0 -181002117,"Crysis",play,13.0,0 -181002117,"Crysis 2 Maximum Edition",purchase,1.0,0 -181002117,"Crysis 2 Maximum Edition",play,8.7,0 -181002117,"Alien Swarm",purchase,1.0,0 -181002117,"Alien Swarm",play,7.3,0 -181002117,"Counter-Strike Global Offensive",purchase,1.0,0 -181002117,"Counter-Strike Global Offensive",play,2.7,0 -181002117,"Gauntlet ",purchase,1.0,0 -181002117,"Gauntlet ",play,1.7,0 -181002117,"Bus Driver",purchase,1.0,0 -181002117,"Counter-Strike",purchase,1.0,0 -181002117,"Counter-Strike Condition Zero",purchase,1.0,0 -181002117,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -181002117,"Counter-Strike Source",purchase,1.0,0 -181002117,"Crysis Warhead",purchase,1.0,0 -181002117,"Crysis Wars",purchase,1.0,0 -181002117,"Day of Defeat",purchase,1.0,0 -181002117,"Day of Defeat Source",purchase,1.0,0 -181002117,"DCS World",purchase,1.0,0 -181002117,"Deathmatch Classic",purchase,1.0,0 -181002117,"Eternal Senia",purchase,1.0,0 -181002117,"Euro Truck Simulator",purchase,1.0,0 -181002117,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -181002117,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -181002117,"Half-Life",purchase,1.0,0 -181002117,"Half-Life 2",purchase,1.0,0 -181002117,"Half-Life 2 Deathmatch",purchase,1.0,0 -181002117,"Half-Life 2 Episode One",purchase,1.0,0 -181002117,"Half-Life 2 Episode Two",purchase,1.0,0 -181002117,"Half-Life 2 Lost Coast",purchase,1.0,0 -181002117,"Half-Life Blue Shift",purchase,1.0,0 -181002117,"Half-Life Opposing Force",purchase,1.0,0 -181002117,"Half-Life Source",purchase,1.0,0 -181002117,"Half-Life Deathmatch Source",purchase,1.0,0 -181002117,"Left 4 Dead",purchase,1.0,0 -181002117,"Portal",purchase,1.0,0 -181002117,"Portal 2",purchase,1.0,0 -181002117,"Ricochet",purchase,1.0,0 -181002117,"Robocraft",purchase,1.0,0 -181002117,"Scania Truck Driving Simulator",purchase,1.0,0 -181002117,"Star Conflict",purchase,1.0,0 -181002117,"Team Fortress Classic",purchase,1.0,0 -181002117,"Trucks & Trailers",purchase,1.0,0 -181002117,"War Thunder",purchase,1.0,0 -126345126,"The Elder Scrolls V Skyrim",purchase,1.0,0 -126345126,"The Elder Scrolls V Skyrim",play,63.0,0 -126345126,"Tomb Raider",purchase,1.0,0 -126345126,"Tomb Raider",play,55.0,0 -126345126,"BioShock Infinite",purchase,1.0,0 -126345126,"BioShock Infinite",play,8.8,0 -126345126,"Left 4 Dead 2",purchase,1.0,0 -126345126,"Left 4 Dead 2",play,6.0,0 -126345126,"Star Conflict",purchase,1.0,0 -126345126,"Star Conflict",play,0.3,0 -126345126,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -126345126,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -126345126,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -126345126,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -236042442,"ARK Survival Evolved",purchase,1.0,0 -236042442,"ARK Survival Evolved",play,4.4,0 -236042442,"Trove",purchase,1.0,0 -236042442,"Trove",play,2.2,0 -236042442,"Elsword",purchase,1.0,0 -236042442,"Elsword",play,1.3,0 -236042442,"TERA",purchase,1.0,0 -236042442,"TERA",play,0.9,0 -236042442,"Demigod",purchase,1.0,0 -236042442,"Demigod",play,0.7,0 -236042442,"Trove Arcanium Expedition Pack",purchase,1.0,0 -188056897,"Counter-Strike Global Offensive",purchase,1.0,0 -188056897,"Counter-Strike Global Offensive",play,28.0,0 -188056897,"Warframe",purchase,1.0,0 -188056897,"Audition Online",purchase,1.0,0 -188056897,"Defiance",purchase,1.0,0 -188056897,"Gotham City Impostors Free To Play",purchase,1.0,0 -188056897,"Magicka Wizard Wars",purchase,1.0,0 -188056897,"Neverwinter",purchase,1.0,0 -188056897,"Spiral Knights",purchase,1.0,0 -45030250,"Counter-Strike Source",purchase,1.0,0 -45030250,"Counter-Strike Source",play,412.0,0 -45030250,"Test Drive Unlimited 2",purchase,1.0,0 -45030250,"Test Drive Unlimited 2",play,73.0,0 -45030250,"Neverwinter",purchase,1.0,0 -45030250,"Neverwinter",play,68.0,0 -45030250,"Chivalry Medieval Warfare",purchase,1.0,0 -45030250,"Chivalry Medieval Warfare",play,60.0,0 -45030250,"Reign Of Kings",purchase,1.0,0 -45030250,"Reign Of Kings",play,23.0,0 -45030250,"Infestation Survivor Stories",purchase,1.0,0 -45030250,"Infestation Survivor Stories",play,21.0,0 -45030250,"Left 4 Dead 2",purchase,1.0,0 -45030250,"Left 4 Dead 2",play,21.0,0 -45030250,"RAGE",purchase,1.0,0 -45030250,"RAGE",play,17.6,0 -45030250,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -45030250,"Tom Clancy's Splinter Cell Conviction",play,16.1,0 -45030250,"Killing Floor",purchase,1.0,0 -45030250,"Killing Floor",play,15.3,0 -45030250,"Garry's Mod",purchase,1.0,0 -45030250,"Garry's Mod",play,8.4,0 -45030250,"Stronghold Crusader HD",purchase,1.0,0 -45030250,"Stronghold Crusader HD",play,8.0,0 -45030250,"Half-Life 2 Deathmatch",purchase,1.0,0 -45030250,"Half-Life 2 Deathmatch",play,4.4,0 -45030250,"Cossacks Back to War",purchase,1.0,0 -45030250,"Cossacks Back to War",play,3.4,0 -45030250,"Team Fortress 2",purchase,1.0,0 -45030250,"Team Fortress 2",play,2.7,0 -45030250,"Day of Defeat Source",purchase,1.0,0 -45030250,"Day of Defeat Source",play,1.8,0 -45030250,"Sniper Elite Zombie Army",purchase,1.0,0 -45030250,"Sniper Elite Zombie Army",play,0.8,0 -45030250,"Half-Life 2 Lost Coast",purchase,1.0,0 -45030250,"Half-Life 2 Lost Coast",play,0.2,0 -45030250,"Zombie Panic Source",purchase,1.0,0 -45030250,"Zombie Panic Source",play,0.2,0 -45030250,"Stronghold Kingdoms",purchase,1.0,0 -45030250,"Stronghold Kingdoms",play,0.1,0 -45030250,"Stronghold Crusader Extreme HD",purchase,1.0,0 -45030250,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -45030250,"NecroVisioN",purchase,1.0,0 -45030250,"Patch testing for Chivalry",purchase,1.0,0 -308202228,"Dota 2",purchase,1.0,0 -308202228,"Dota 2",play,24.0,0 -231042734,"Unturned",purchase,1.0,0 -231042734,"Unturned",play,1.1,0 -231042734,"Heroes & Generals",purchase,1.0,0 -231042734,"Heroes & Generals",play,0.5,0 -231042734,"War Inc. Battlezone",purchase,1.0,0 -231042734,"War Inc. Battlezone",play,0.4,0 -231042734,"404Sight",purchase,1.0,0 -231042734,"404Sight",play,0.2,0 -231042734,"APB Reloaded",purchase,1.0,0 -231042734,"DCS World",purchase,1.0,0 -231042734,"Defiance",purchase,1.0,0 -231042734,"Fistful of Frags",purchase,1.0,0 -231042734,"Haunted Memories",purchase,1.0,0 -231042734,"Killing Floor - Toy Master",purchase,1.0,0 -231042734,"Kung Fury",purchase,1.0,0 -231042734,"Marvel Heroes 2015",purchase,1.0,0 -231042734,"No More Room in Hell",purchase,1.0,0 -231042734,"Run and Fire",purchase,1.0,0 -231042734,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -231042734,"sZone-Online",purchase,1.0,0 -231042734,"Tactical Intervention",purchase,1.0,0 -231042734,"theHunter",purchase,1.0,0 -231042734,"Tribes Ascend",purchase,1.0,0 -231042734,"Warface",purchase,1.0,0 -231042734,"Warframe",purchase,1.0,0 -78309377,"Counter-Strike Global Offensive",purchase,1.0,0 -78309377,"Counter-Strike Global Offensive",play,591.0,0 -78309377,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -78309377,"Call of Duty Black Ops II - Multiplayer",play,394.0,0 -78309377,"Rust",purchase,1.0,0 -78309377,"Rust",play,370.0,0 -78309377,"Arma 2 Operation Arrowhead",purchase,1.0,0 -78309377,"Arma 2 Operation Arrowhead",play,330.0,0 -78309377,"PAYDAY 2",purchase,1.0,0 -78309377,"PAYDAY 2",play,116.0,0 -78309377,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -78309377,"Call of Duty Modern Warfare 3 - Multiplayer",play,100.0,0 -78309377,"Dirty Bomb",purchase,1.0,0 -78309377,"Dirty Bomb",play,91.0,0 -78309377,"Arma 3",purchase,1.0,0 -78309377,"Arma 3",play,85.0,0 -78309377,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -78309377,"Call of Duty Modern Warfare 2 - Multiplayer",play,73.0,0 -78309377,"Hurtworld",purchase,1.0,0 -78309377,"Hurtworld",play,64.0,0 -78309377,"Grand Theft Auto V",purchase,1.0,0 -78309377,"Grand Theft Auto V",play,58.0,0 -78309377,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -78309377,"Call of Duty Ghosts - Multiplayer",play,48.0,0 -78309377,"Need for Speed Hot Pursuit",purchase,1.0,0 -78309377,"Need for Speed Hot Pursuit",play,44.0,0 -78309377,"Counter-Strike Source",purchase,1.0,0 -78309377,"Counter-Strike Source",play,33.0,0 -78309377,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -78309377,"Call of Duty Black Ops II - Zombies",play,32.0,0 -78309377,"Portal 2",purchase,1.0,0 -78309377,"Portal 2",play,26.0,0 -78309377,"DayZ",purchase,1.0,0 -78309377,"DayZ",play,25.0,0 -78309377,"The Elder Scrolls V Skyrim",purchase,1.0,0 -78309377,"The Elder Scrolls V Skyrim",play,24.0,0 -78309377,"H1Z1",purchase,1.0,0 -78309377,"H1Z1",play,22.0,0 -78309377,"SpeedRunners",purchase,1.0,0 -78309377,"SpeedRunners",play,21.0,0 -78309377,"Terraria",purchase,1.0,0 -78309377,"Terraria",play,21.0,0 -78309377,"Call of Duty Modern Warfare 2",purchase,1.0,0 -78309377,"Call of Duty Modern Warfare 2",play,19.4,0 -78309377,"Just Cause 2",purchase,1.0,0 -78309377,"Just Cause 2",play,18.9,0 -78309377,"Far Cry 3",purchase,1.0,0 -78309377,"Far Cry 3",play,16.8,0 -78309377,"Garry's Mod",purchase,1.0,0 -78309377,"Garry's Mod",play,16.5,0 -78309377,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -78309377,"Call of Duty Black Ops - Multiplayer",play,15.6,0 -78309377,"Chivalry Medieval Warfare",purchase,1.0,0 -78309377,"Chivalry Medieval Warfare",play,12.9,0 -78309377,"Tomb Raider",purchase,1.0,0 -78309377,"Tomb Raider",play,11.6,0 -78309377,"Castle Story",purchase,1.0,0 -78309377,"Castle Story",play,10.8,0 -78309377,"Call of Duty Modern Warfare 3",purchase,1.0,0 -78309377,"Call of Duty Modern Warfare 3",play,9.9,0 -78309377,"Clicker Heroes",purchase,1.0,0 -78309377,"Clicker Heroes",play,9.8,0 -78309377,"Starbound",purchase,1.0,0 -78309377,"Starbound",play,8.4,0 -78309377,"Team Fortress 2",purchase,1.0,0 -78309377,"Team Fortress 2",play,8.1,0 -78309377,"Infestation Survivor Stories",purchase,1.0,0 -78309377,"Infestation Survivor Stories",play,8.0,0 -78309377,"Worms Revolution",purchase,1.0,0 -78309377,"Worms Revolution",play,7.1,0 -78309377,"Besiege",purchase,1.0,0 -78309377,"Besiege",play,6.8,0 -78309377,"Left 4 Dead 2",purchase,1.0,0 -78309377,"Left 4 Dead 2",play,5.6,0 -78309377,"DiRT Showdown",purchase,1.0,0 -78309377,"DiRT Showdown",play,5.5,0 -78309377,"Path of Exile",purchase,1.0,0 -78309377,"Path of Exile",play,4.9,0 -78309377,"LIMBO",purchase,1.0,0 -78309377,"LIMBO",play,4.6,0 -78309377,"Don't Starve Together Beta",purchase,1.0,0 -78309377,"Don't Starve Together Beta",play,3.7,0 -78309377,"DiRT 2",purchase,1.0,0 -78309377,"DiRT 2",play,3.0,0 -78309377,"PAYDAY The Heist",purchase,1.0,0 -78309377,"PAYDAY The Heist",play,2.9,0 -78309377,"Counter-Strike Condition Zero",purchase,1.0,0 -78309377,"Counter-Strike Condition Zero",play,2.5,0 -78309377,"TrackMania Canyon",purchase,1.0,0 -78309377,"TrackMania Canyon",play,2.4,0 -78309377,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -78309377,"Sonic & All-Stars Racing Transformed",play,2.3,0 -78309377,"Beat Hazard",purchase,1.0,0 -78309377,"Beat Hazard",play,2.3,0 -78309377,"Call of Duty Black Ops",purchase,1.0,0 -78309377,"Call of Duty Black Ops",play,2.2,0 -78309377,"DiRT 3",purchase,1.0,0 -78309377,"DiRT 3",play,2.1,0 -78309377,"Ace of Spades",purchase,1.0,0 -78309377,"Ace of Spades",play,2.0,0 -78309377,"Nether",purchase,1.0,0 -78309377,"Nether",play,1.9,0 -78309377,"Rochard",purchase,1.0,0 -78309377,"Rochard",play,1.8,0 -78309377,"Arma 2",purchase,1.0,0 -78309377,"Arma 2",play,1.6,0 -78309377,"Portal",purchase,1.0,0 -78309377,"Portal",play,1.4,0 -78309377,"Call of Duty World at War",purchase,1.0,0 -78309377,"Call of Duty World at War",play,1.4,0 -78309377,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -78309377,"Plants vs. Zombies Game of the Year",play,1.2,0 -78309377,"Ultra Street Fighter IV",purchase,1.0,0 -78309377,"Ultra Street Fighter IV",play,1.1,0 -78309377,"Euro Truck Simulator 2",purchase,1.0,0 -78309377,"Euro Truck Simulator 2",play,1.1,0 -78309377,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -78309377,"Just Cause 2 Multiplayer Mod",play,1.1,0 -78309377,"Mirror's Edge",purchase,1.0,0 -78309377,"Mirror's Edge",play,1.0,0 -78309377,"GRID",purchase,1.0,0 -78309377,"GRID",play,1.0,0 -78309377,"Unturned",purchase,1.0,0 -78309377,"Unturned",play,1.0,0 -78309377,"Far Cry 2",purchase,1.0,0 -78309377,"Far Cry 2",play,1.0,0 -78309377,"Insurgency",purchase,1.0,0 -78309377,"Insurgency",play,0.9,0 -78309377,"Counter-Strike",purchase,1.0,0 -78309377,"Counter-Strike",play,0.8,0 -78309377,"Magicka Wizard Wars",purchase,1.0,0 -78309377,"Magicka Wizard Wars",play,0.5,0 -78309377,"The Binding of Isaac",purchase,1.0,0 -78309377,"The Binding of Isaac",play,0.5,0 -78309377,"RUSH",purchase,1.0,0 -78309377,"RUSH",play,0.3,0 -78309377,"Super Meat Boy",purchase,1.0,0 -78309377,"Super Meat Boy",play,0.3,0 -78309377,"Tom Clancy's Ghost Recon",purchase,1.0,0 -78309377,"Tom Clancy's Ghost Recon",play,0.3,0 -78309377,"Far Cry",purchase,1.0,0 -78309377,"Far Cry",play,0.3,0 -78309377,"BIT.TRIP RUNNER",purchase,1.0,0 -78309377,"BIT.TRIP RUNNER",play,0.2,0 -78309377,"Fortix",purchase,1.0,0 -78309377,"Fortix",play,0.2,0 -78309377,"Amnesia The Dark Descent",purchase,1.0,0 -78309377,"Amnesia The Dark Descent",play,0.2,0 -78309377,"Crysis 2 Maximum Edition",purchase,1.0,0 -78309377,"Crysis 2 Maximum Edition",play,0.1,0 -78309377,"Grand Theft Auto IV",purchase,1.0,0 -78309377,"Call of Duty Black Ops II",purchase,1.0,0 -78309377,"Arma 2 DayZ Mod",purchase,1.0,0 -78309377,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -78309377,"Blacklight Retribution",purchase,1.0,0 -78309377,"Call of Duty Ghosts",purchase,1.0,0 -78309377,"Cortex Command",purchase,1.0,0 -78309377,"8BitBoy",purchase,1.0,0 -78309377,"140",purchase,1.0,0 -78309377,"A.R.E.S.",purchase,1.0,0 -78309377,"Absconding Zatwor",purchase,1.0,0 -78309377,"Anomaly 2",purchase,1.0,0 -78309377,"Anomaly Warzone Earth",purchase,1.0,0 -78309377,"Anoxemia",purchase,1.0,0 -78309377,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -78309377,"Arma 3 Karts",purchase,1.0,0 -78309377,"Arma 3 Zeus",purchase,1.0,0 -78309377,"Awesomenauts",purchase,1.0,0 -78309377,"Bad Rats",purchase,1.0,0 -78309377,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -78309377,"Batman Arkham City GOTY",purchase,1.0,0 -78309377,"Ben There, Dan That!",purchase,1.0,0 -78309377,"Bionic Dues",purchase,1.0,0 -78309377,"BioShock Infinite",purchase,1.0,0 -78309377,"Blaster Shooter GunGuy!",purchase,1.0,0 -78309377,"Bloop",purchase,1.0,0 -78309377,"Braid",purchase,1.0,0 -78309377,"Break Into Zatwor",purchase,1.0,0 -78309377,"Bridge Constructor",purchase,1.0,0 -78309377,"Broken Sword 2 - the Smoking Mirror Remastered",purchase,1.0,0 -78309377,"Burgers",purchase,1.0,0 -78309377,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -78309377,"Combat Arms",purchase,1.0,0 -78309377,"Commander Conquest of the Americas Gold",purchase,1.0,0 -78309377,"Company of Heroes",purchase,1.0,0 -78309377,"Company of Heroes (New Steam Version)",purchase,1.0,0 -78309377,"Company of Heroes Opposing Fronts",purchase,1.0,0 -78309377,"Company of Heroes Tales of Valor",purchase,1.0,0 -78309377,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -78309377,"Cricket Revolution",purchase,1.0,0 -78309377,"Cult of the Wind",purchase,1.0,0 -78309377,"Darksiders",purchase,1.0,0 -78309377,"Dead Bits",purchase,1.0,0 -78309377,"Dead Space",purchase,1.0,0 -78309377,"Decay - The Mare",purchase,1.0,0 -78309377,"Demonicon",purchase,1.0,0 -78309377,"Desert Gunner",purchase,1.0,0 -78309377,"DiRT 3 Complete Edition",purchase,1.0,0 -78309377,"Don't Starve",purchase,1.0,0 -78309377,"Dungeon Defenders II",purchase,1.0,0 -78309377,"Dwarfs!?",purchase,1.0,0 -78309377,"Earth 2150 The Moon Project",purchase,1.0,0 -78309377,"EDGE",purchase,1.0,0 -78309377,"Eidolon",purchase,1.0,0 -78309377,"Enclave",purchase,1.0,0 -78309377,"Enemy Mind",purchase,1.0,0 -78309377,"Eurofighter Typhoon",purchase,1.0,0 -78309377,"F.E.A.R.",purchase,1.0,0 -78309377,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -78309377,"F.E.A.R. 3",purchase,1.0,0 -78309377,"F.E.A.R. Extraction Point",purchase,1.0,0 -78309377,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -78309377,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -78309377,"Glacier 3 The Meltdown",purchase,1.0,0 -78309377,"Gorky 17",purchase,1.0,0 -78309377,"Grand Theft Auto San Andreas",purchase,1.0,0 -78309377,"Grand Theft Auto San Andreas",purchase,1.0,0 -78309377,"Gratuitous Space Battles",purchase,1.0,0 -78309377,"Guardians of Middle-earth",purchase,1.0,0 -78309377,"Gun Metal",purchase,1.0,0 -78309377,"H1Z1 Test Server",purchase,1.0,0 -78309377,"Heroes & Generals",purchase,1.0,0 -78309377,"Hostile Waters Antaeus Rising",purchase,1.0,0 -78309377,"Humanity Asset",purchase,1.0,0 -78309377,"Hyper Fighters",purchase,1.0,0 -78309377,"Ironclads American Civil War",purchase,1.0,0 -78309377,"Ironclads Anglo Russian War 1866",purchase,1.0,0 -78309377,"Ironclads Chincha Islands War 1866",purchase,1.0,0 -78309377,"Ironclads High Seas",purchase,1.0,0 -78309377,"Ironclads Schleswig War 1864",purchase,1.0,0 -78309377,"Jamestown",purchase,1.0,0 -78309377,"Knights and Merchants",purchase,1.0,0 -78309377,"Litil Divil",purchase,1.0,0 -78309377,"Lone Survivor The Director's Cut",purchase,1.0,0 -78309377,"Making History The Calm & The Storm",purchase,1.0,0 -78309377,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -78309377,"Medal of Honor(TM) Single Player",purchase,1.0,0 -78309377,"Medal of Honor Pre-Order",purchase,1.0,0 -78309377,"Metro 2033",purchase,1.0,0 -78309377,"Might & Magic Duel of Champions",purchase,1.0,0 -78309377,"Mortal Kombat Kollection",purchase,1.0,0 -78309377,"Murder Miners",purchase,1.0,0 -78309377,"MX vs. ATV Reflex",purchase,1.0,0 -78309377,"Need for Speed Undercover",purchase,1.0,0 -78309377,"Oddworld Abe's Oddysee",purchase,1.0,0 -78309377,"One Finger Death Punch",purchase,1.0,0 -78309377,"Osmos",purchase,1.0,0 -78309377,"Particula",purchase,1.0,0 -78309377,"Patch testing for Chivalry",purchase,1.0,0 -78309377,"Pirates of Black Cove Gold",purchase,1.0,0 -78309377,"Psychonauts",purchase,1.0,0 -78309377,"Psychonauts Demo",purchase,1.0,0 -78309377,"Puzzle Kingdoms",purchase,1.0,0 -78309377,"Ravensword Shadowlands",purchase,1.0,0 -78309377,"Razor2 Hidden Skies",purchase,1.0,0 -78309377,"Realms of the Haunting",purchase,1.0,0 -78309377,"Red Faction Armageddon",purchase,1.0,0 -78309377,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -78309377,"Scribblenauts Unlimited",purchase,1.0,0 -78309377,"Shatter",purchase,1.0,0 -78309377,"Sid Meier's Civilization III Complete",purchase,1.0,0 -78309377,"Skyborn",purchase,1.0,0 -78309377,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -78309377,"Space Empires IV Deluxe",purchase,1.0,0 -78309377,"Space Pirates and Zombies",purchase,1.0,0 -78309377,"Starbound - Unstable",purchase,1.0,0 -78309377,"Star Trek Online",purchase,1.0,0 -78309377,"Stealth Inc 2",purchase,1.0,0 -78309377,"Steel & Steam Episode 1",purchase,1.0,0 -78309377,"Steel Storm Burning Retribution",purchase,1.0,0 -78309377,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -78309377,"Supreme Commander 2",purchase,1.0,0 -78309377,"Tales from Space Mutant Blobs Attack",purchase,1.0,0 -78309377,"Talisman Prologue",purchase,1.0,0 -78309377,"The Culling Of The Cows",purchase,1.0,0 -78309377,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -78309377,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -78309377,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -78309377,"The Lord of the Rings War in the North",purchase,1.0,0 -78309377,"The Mighty Quest For Epic Loot",purchase,1.0,0 -78309377,"The Ship",purchase,1.0,0 -78309377,"The Ship Single Player",purchase,1.0,0 -78309377,"The Ship Tutorial",purchase,1.0,0 -78309377,"Time Gentlemen, Please!",purchase,1.0,0 -78309377,"Titan Quest",purchase,1.0,0 -78309377,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -78309377,"Torchlight",purchase,1.0,0 -78309377,"Trove",purchase,1.0,0 -78309377,"Two Worlds Epic Edition",purchase,1.0,0 -78309377,"Two Worlds II",purchase,1.0,0 -78309377,"TypeRider",purchase,1.0,0 -78309377,"Vertical Drop Heroes HD",purchase,1.0,0 -78309377,"Vessel",purchase,1.0,0 -78309377,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -78309377,"Why So Evil",purchase,1.0,0 -78309377,"Wizorb",purchase,1.0,0 -78309377,"World of Goo",purchase,1.0,0 -78309377,"Worms",purchase,1.0,0 -78309377,"X-Blades",purchase,1.0,0 -78309377,"Zero Gear",purchase,1.0,0 -176735399,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -176735399,"Baldur's Gate Enhanced Edition",play,1.2,0 -176761800,"Small World 2",purchase,1.0,0 -176761800,"Small World 2",play,0.2,0 -284475590,"Football Manager 2015",purchase,1.0,0 -284475590,"Football Manager 2015",play,28.0,0 -137588719,"Dota 2",purchase,1.0,0 -137588719,"Dota 2",play,0.2,0 -176177828,"Dota 2",purchase,1.0,0 -176177828,"Dota 2",play,0.7,0 -83578325,"Team Fortress 2",purchase,1.0,0 -83578325,"Team Fortress 2",play,10.8,0 -91467286,"Team Fortress 2",purchase,1.0,0 -91467286,"Team Fortress 2",play,2.7,0 -91467286,"DC Universe Online",purchase,1.0,0 -91467286,"DC Universe Online",play,0.3,0 -71611112,"Sid Meier's Civilization V",purchase,1.0,0 -71611112,"Sid Meier's Civilization V",play,5.1,0 -71611112,"DiggerOnline",purchase,1.0,0 -71611112,"Fistful of Frags",purchase,1.0,0 -166228529,"Counter-Strike Global Offensive",purchase,1.0,0 -166228529,"Counter-Strike Global Offensive",play,262.0,0 -166228529,"Dota 2",purchase,1.0,0 -166228529,"Dota 2",play,39.0,0 -166228529,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -166228529,"Tom Clancy's Ghost Recon Phantoms - NA",play,22.0,0 -166228529,"Garry's Mod",purchase,1.0,0 -166228529,"Garry's Mod",play,15.5,0 -166228529,"Insurgency",purchase,1.0,0 -166228529,"Insurgency",play,10.4,0 -166228529,"Rust",purchase,1.0,0 -166228529,"Rust",play,7.2,0 -166228529,"Team Fortress 2",purchase,1.0,0 -166228529,"Team Fortress 2",play,4.2,0 -166228529,"Warface",purchase,1.0,0 -166228529,"Warface",play,2.3,0 -166228529,"Unturned",purchase,1.0,0 -166228529,"Unturned",play,1.9,0 -166228529,"Dirty Bomb",purchase,1.0,0 -166228529,"Dirty Bomb",play,0.3,0 -166228529,"Serious Sam HD The Second Encounter",purchase,1.0,0 -166228529,"Serious Sam HD The Second Encounter",play,0.2,0 -166228529,"DCS World",purchase,1.0,0 -166228529,"War Thunder",purchase,1.0,0 -161816812,"Counter-Strike Global Offensive",purchase,1.0,0 -161816812,"Counter-Strike Global Offensive",play,543.0,0 -161816812,"Dota 2",purchase,1.0,0 -161816812,"Dota 2",play,511.0,0 -161816812,"Garry's Mod",purchase,1.0,0 -161816812,"Garry's Mod",play,203.0,0 -161816812,"The Elder Scrolls V Skyrim",purchase,1.0,0 -161816812,"The Elder Scrolls V Skyrim",play,77.0,0 -161816812,"Grand Theft Auto V",purchase,1.0,0 -161816812,"Grand Theft Auto V",play,66.0,0 -161816812,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -161816812,"METAL GEAR SOLID V THE PHANTOM PAIN",play,59.0,0 -161816812,"Unturned",purchase,1.0,0 -161816812,"Unturned",play,54.0,0 -161816812,"Dying Light",purchase,1.0,0 -161816812,"Dying Light",play,44.0,0 -161816812,"Rust",purchase,1.0,0 -161816812,"Rust",play,27.0,0 -161816812,"PAYDAY 2",purchase,1.0,0 -161816812,"PAYDAY 2",play,25.0,0 -161816812,"Fallout 4",purchase,1.0,0 -161816812,"Fallout 4",play,23.0,0 -161816812,"Team Fortress 2",purchase,1.0,0 -161816812,"Team Fortress 2",play,20.0,0 -161816812,"Call of Duty Advanced Warfare",purchase,1.0,0 -161816812,"Call of Duty Advanced Warfare",play,17.6,0 -161816812,"Middle-earth Shadow of Mordor",purchase,1.0,0 -161816812,"Middle-earth Shadow of Mordor",play,12.3,0 -161816812,"Saints Row IV",purchase,1.0,0 -161816812,"Saints Row IV",play,9.8,0 -161816812,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -161816812,"Just Cause 2 Multiplayer Mod",play,8.5,0 -161816812,"Hitman Absolution",purchase,1.0,0 -161816812,"Hitman Absolution",play,8.5,0 -161816812,"No More Room in Hell",purchase,1.0,0 -161816812,"No More Room in Hell",play,7.7,0 -161816812,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -161816812,"Call of Duty Advanced Warfare - Multiplayer",play,7.5,0 -161816812,"Survival Postapocalypse Now",purchase,1.0,0 -161816812,"Survival Postapocalypse Now",play,5.5,0 -161816812,"Evolve",purchase,1.0,0 -161816812,"Evolve",play,5.4,0 -161816812,"Left 4 Dead 2",purchase,1.0,0 -161816812,"Left 4 Dead 2",play,4.6,0 -161816812,"Insurgency",purchase,1.0,0 -161816812,"Insurgency",play,4.0,0 -161816812,"Dead Island",purchase,1.0,0 -161816812,"Dead Island",play,3.8,0 -161816812,"Robocraft",purchase,1.0,0 -161816812,"Robocraft",play,2.9,0 -161816812,"Shadow Warrior",purchase,1.0,0 -161816812,"Shadow Warrior",play,2.7,0 -161816812,"Loadout",purchase,1.0,0 -161816812,"Loadout",play,2.6,0 -161816812,"Mortal Kombat X",purchase,1.0,0 -161816812,"Mortal Kombat X",play,2.2,0 -161816812,"Far Cry 3 Blood Dragon",purchase,1.0,0 -161816812,"Far Cry 3 Blood Dragon",play,2.1,0 -161816812,"Double Action Boogaloo",purchase,1.0,0 -161816812,"Double Action Boogaloo",play,1.5,0 -161816812,"Just Cause 2",purchase,1.0,0 -161816812,"Just Cause 2",play,1.5,0 -161816812,"Warframe",purchase,1.0,0 -161816812,"Warframe",play,1.3,0 -161816812,"Survarium",purchase,1.0,0 -161816812,"Survarium",play,1.0,0 -161816812,"Teleglitch Die More Edition",purchase,1.0,0 -161816812,"Teleglitch Die More Edition",play,0.5,0 -161816812,"Dead Island Riptide",purchase,1.0,0 -161816812,"Dead Island Riptide",play,0.3,0 -161816812,"Hitman Sniper Challenge",purchase,1.0,0 -161816812,"Hitman Sniper Challenge",play,0.2,0 -161816812,"Grand Theft Auto IV",purchase,1.0,0 -161816812,"Grand Theft Auto IV",play,0.1,0 -161816812,"Metro 2033",purchase,1.0,0 -161816812,"Castle Crashers",purchase,1.0,0 -161816812,"FreeStyle2 Street Basketball",purchase,1.0,0 -161816812,"Dota 2 - The International 2015 - Player Profiles",purchase,1.0,0 -161816812,"Dead Island Epidemic",purchase,1.0,0 -161816812,"Evolve - Behemoth",purchase,1.0,0 -161816812,"Fistful of Frags",purchase,1.0,0 -161816812,"Free to Play",purchase,1.0,0 -161816812,"Left 4 Dead",purchase,1.0,0 -161816812,"PAYDAY The Web Series - Episode 1",purchase,1.0,0 -161816812,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -161816812,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -161816812,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -161816812,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -161816812,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -161816812,"TI5 - CDEC's Journey to The Majors",purchase,1.0,0 -161816812,"TI5 - EG Champions of TI5",purchase,1.0,0 -161816812,"TI5 - Player Profiles Cloud9 - NoTail",purchase,1.0,0 -161816812,"TI5 - Player Profiles Complexity - zfreek",purchase,1.0,0 -161816812,"TI5 - Player Profiles EG - Suma1L",purchase,1.0,0 -161816812,"TI5 - Player Profiles EHOME - ROTK",purchase,1.0,0 -161816812,"TI5 - Player Profiles Empire - Alohadance",purchase,1.0,0 -161816812,"TI5 - Player Profiles Fnatic - Kecik-Imba",purchase,1.0,0 -161816812,"TI5 - Player Profiles Invictus Gaming - Ferrari",purchase,1.0,0 -161816812,"TI5 - Player Profiles LGD - Xiao8",purchase,1.0,0 -161816812,"TI5 - Player Profiles MVPHot6 - HEEN",purchase,1.0,0 -161816812,"TI5 - Player Profiles NAVI - XBOCT",purchase,1.0,0 -161816812,"TI5 - Player Profiles Newbee - Mu",purchase,1.0,0 -161816812,"TI5 - Player Profiles TeamSecret - S4",purchase,1.0,0 -161816812,"TI5 - Player Profiles Vici - fy",purchase,1.0,0 -161816812,"TI5 - Player Profiles VirtusPro - FNG",purchase,1.0,0 -161816812,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -214662737,"Dota 2",purchase,1.0,0 -214662737,"Dota 2",play,0.7,0 -169225463,"Dota 2",purchase,1.0,0 -169225463,"Dota 2",play,164.0,0 -160791508,"The Binding of Isaac Rebirth",purchase,1.0,0 -160791508,"The Binding of Isaac Rebirth",play,62.0,0 -160791508,"Besiege",purchase,1.0,0 -160791508,"Besiege",play,1.3,0 -160791508,"Team Fortress 2",purchase,1.0,0 -160791508,"Team Fortress 2",play,0.5,0 -160791508,"Sid Meier's Civilization V",purchase,1.0,0 -160791508,"Sid Meier's Civilization V",play,0.4,0 -160791508,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -160791508,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -73495968,"Terraria",purchase,1.0,0 -73495968,"Terraria",play,82.0,0 -73495968,"The Elder Scrolls V Skyrim",purchase,1.0,0 -73495968,"The Elder Scrolls V Skyrim",play,73.0,0 -73495968,"Fallout New Vegas",purchase,1.0,0 -73495968,"Fallout New Vegas",play,61.0,0 -73495968,"Divinity Original Sin",purchase,1.0,0 -73495968,"Divinity Original Sin",play,35.0,0 -73495968,"Just Cause 3",purchase,1.0,0 -73495968,"Just Cause 3",play,27.0,0 -73495968,"Deus Ex Human Revolution",purchase,1.0,0 -73495968,"Deus Ex Human Revolution",play,25.0,0 -73495968,"Arma 2 Operation Arrowhead",purchase,1.0,0 -73495968,"Arma 2 Operation Arrowhead",play,23.0,0 -73495968,"The Long Dark",purchase,1.0,0 -73495968,"The Long Dark",play,22.0,0 -73495968,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -73495968,"Dark Souls Prepare to Die Edition",play,22.0,0 -73495968,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -73495968,"METAL GEAR SOLID V THE PHANTOM PAIN",play,20.0,0 -73495968,"Sid Meier's Civilization V",purchase,1.0,0 -73495968,"Sid Meier's Civilization V",play,19.4,0 -73495968,"Just Cause 2",purchase,1.0,0 -73495968,"Just Cause 2",play,18.6,0 -73495968,"Tomb Raider",purchase,1.0,0 -73495968,"Tomb Raider",play,17.1,0 -73495968,"Kerbal Space Program",purchase,1.0,0 -73495968,"Kerbal Space Program",play,12.1,0 -73495968,"Half-Life 2",purchase,1.0,0 -73495968,"Half-Life 2",play,11.4,0 -73495968,"Oil Rush",purchase,1.0,0 -73495968,"Oil Rush",play,10.9,0 -73495968,"Assassin's Creed Brotherhood",purchase,1.0,0 -73495968,"Assassin's Creed Brotherhood",play,10.7,0 -73495968,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -73495968,"Batman Arkham Asylum GOTY Edition",play,10.1,0 -73495968,"Cities Skylines",purchase,1.0,0 -73495968,"Cities Skylines",play,7.5,0 -73495968,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -73495968,"METAL GEAR SOLID V GROUND ZEROES",play,6.4,0 -73495968,"Homeworld Remastered Collection",purchase,1.0,0 -73495968,"Homeworld Remastered Collection",play,6.2,0 -73495968,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -73495968,"The Elder Scrolls IV Oblivion ",play,5.9,0 -73495968,"Half-Life 2 Episode Two",purchase,1.0,0 -73495968,"Half-Life 2 Episode Two",play,5.8,0 -73495968,"Half-Life 2 Episode One",purchase,1.0,0 -73495968,"Half-Life 2 Episode One",play,4.3,0 -73495968,"Little Inferno",purchase,1.0,0 -73495968,"Little Inferno",play,4.3,0 -73495968,"Starbound",purchase,1.0,0 -73495968,"Starbound",play,3.8,0 -73495968,"Grow Home",purchase,1.0,0 -73495968,"Grow Home",play,3.4,0 -73495968,"LIMBO",purchase,1.0,0 -73495968,"LIMBO",play,3.4,0 -73495968,"Brothers - A Tale of Two Sons",purchase,1.0,0 -73495968,"Brothers - A Tale of Two Sons",play,3.2,0 -73495968,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -73495968,"Just Cause 2 Multiplayer Mod",play,3.0,0 -73495968,"Total War SHOGUN 2",purchase,1.0,0 -73495968,"Total War SHOGUN 2",play,2.7,0 -73495968,"Guacamelee! Gold Edition",purchase,1.0,0 -73495968,"Guacamelee! Gold Edition",play,2.6,0 -73495968,"Valkyria Chronicles",purchase,1.0,0 -73495968,"Valkyria Chronicles",play,2.4,0 -73495968,"FTL Faster Than Light",purchase,1.0,0 -73495968,"FTL Faster Than Light",play,2.3,0 -73495968,"Botanicula",purchase,1.0,0 -73495968,"Botanicula",play,2.3,0 -73495968,"Mirror's Edge",purchase,1.0,0 -73495968,"Mirror's Edge",play,2.1,0 -73495968,"Empire Total War",purchase,1.0,0 -73495968,"Empire Total War",play,2.1,0 -73495968,"FEZ",purchase,1.0,0 -73495968,"FEZ",play,1.8,0 -73495968,"Portal",purchase,1.0,0 -73495968,"Portal",play,1.7,0 -73495968,"Antichamber",purchase,1.0,0 -73495968,"Antichamber",play,1.6,0 -73495968,"Mad Max",purchase,1.0,0 -73495968,"Mad Max",play,1.6,0 -73495968,"Portal 2",purchase,1.0,0 -73495968,"Portal 2",play,1.4,0 -73495968,"The Stanley Parable",purchase,1.0,0 -73495968,"The Stanley Parable",play,1.3,0 -73495968,"Arma 2",purchase,1.0,0 -73495968,"Arma 2",play,1.2,0 -73495968,"Half-Life 2 Lost Coast",purchase,1.0,0 -73495968,"Half-Life 2 Lost Coast",play,1.0,0 -73495968,"Bastion",purchase,1.0,0 -73495968,"Bastion",play,1.0,0 -73495968,"Hotline Miami",purchase,1.0,0 -73495968,"Hotline Miami",play,0.6,0 -73495968,"Darksiders",purchase,1.0,0 -73495968,"Darksiders",play,0.6,0 -73495968,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -73495968,"Burnout Paradise The Ultimate Box",play,0.5,0 -73495968,"Thomas Was Alone",purchase,1.0,0 -73495968,"Thomas Was Alone",play,0.5,0 -73495968,"Red Faction Armageddon",purchase,1.0,0 -73495968,"Red Faction Armageddon",play,0.5,0 -73495968,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -73495968,"Tiny and Big Grandpa's Leftovers",play,0.4,0 -73495968,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -73495968,"Red Faction Guerrilla Steam Edition",play,0.4,0 -73495968,"Spelunky",purchase,1.0,0 -73495968,"Spelunky",play,0.3,0 -73495968,"English Country Tune",purchase,1.0,0 -73495968,"English Country Tune",play,0.3,0 -73495968,"Dear Esther",purchase,1.0,0 -73495968,"Dear Esther",play,0.3,0 -73495968,"Intrusion 2",purchase,1.0,0 -73495968,"Intrusion 2",play,0.2,0 -73495968,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -73495968,"Awesomenauts",purchase,1.0,0 -73495968,"Capsized",purchase,1.0,0 -73495968,"Darksiders II",purchase,1.0,0 -73495968,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -73495968,"Dust An Elysian Tail",purchase,1.0,0 -73495968,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -73495968,"Fallout New Vegas Dead Money",purchase,1.0,0 -73495968,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -73495968,"Lume",purchase,1.0,0 -73495968,"Machinarium",purchase,1.0,0 -73495968,"Monaco",purchase,1.0,0 -73495968,"Proteus",purchase,1.0,0 -73495968,"Shelter",purchase,1.0,0 -73495968,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -73495968,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -73495968,"Starbound - Unstable",purchase,1.0,0 -73495968,"The Swapper",purchase,1.0,0 -73495968,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -73495968,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -73495968,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -73495968,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -73495968,"Windosill",purchase,1.0,0 -44010163,"Counter-Strike Source",purchase,1.0,0 -44010163,"Counter-Strike Source",play,57.0,0 -44010163,"Counter-Strike Global Offensive",purchase,1.0,0 -44010163,"Counter-Strike Global Offensive",play,49.0,0 -44010163,"Grand Theft Auto III",purchase,1.0,0 -44010163,"Grand Theft Auto III",play,15.2,0 -44010163,"Borderlands 2",purchase,1.0,0 -44010163,"Borderlands 2",play,10.9,0 -44010163,"Counter-Strike",purchase,1.0,0 -44010163,"Counter-Strike",play,9.0,0 -44010163,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -44010163,"Unreal Tournament 3 Black Edition",play,1.8,0 -44010163,"BioShock Infinite",purchase,1.0,0 -44010163,"BioShock Infinite",play,0.3,0 -44010163,"Counter-Strike Condition Zero",purchase,1.0,0 -44010163,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -44010163,"Day of Defeat",purchase,1.0,0 -44010163,"Day of Defeat Source",purchase,1.0,0 -44010163,"Deathmatch Classic",purchase,1.0,0 -44010163,"Grand Theft Auto San Andreas",purchase,1.0,0 -44010163,"Grand Theft Auto Vice City",purchase,1.0,0 -44010163,"Grand Theft Auto Vice City",purchase,1.0,0 -44010163,"Grand Theft Auto III",purchase,1.0,0 -44010163,"GTA SA German Mac",purchase,1.0,0 -44010163,"Half-Life 2 Deathmatch",purchase,1.0,0 -44010163,"Half-Life 2 Lost Coast",purchase,1.0,0 -44010163,"Ricochet",purchase,1.0,0 -274048748,"AdVenture Capitalist",purchase,1.0,0 -274048748,"AdVenture Capitalist",play,77.0,0 -274048748,"Counter-Strike Global Offensive",purchase,1.0,0 -274048748,"Counter-Strike Global Offensive",play,1.7,0 -37766583,"DayZ",purchase,1.0,0 -37766583,"DayZ",play,544.0,0 -37766583,"Star Conflict",purchase,1.0,0 -37766583,"Star Conflict",play,229.0,0 -37766583,"Beasts of Prey",purchase,1.0,0 -37766583,"Beasts of Prey",play,7.9,0 -37766583,"Arma 3",purchase,1.0,0 -37766583,"Arma 3",play,1.2,0 -37766583,"Infinite Crisis",purchase,1.0,0 -37766583,"Infinite Crisis",play,0.2,0 -37766583,"sZone-Online",purchase,1.0,0 -37766583,"sZone-Online",play,0.1,0 -37766583,"Arma 3 Zeus",purchase,1.0,0 -37766583,"theHunter",purchase,1.0,0 -150746659,"Dota 2",purchase,1.0,0 -150746659,"Dota 2",play,1.3,0 -82898860,"Total War SHOGUN 2",purchase,1.0,0 -82898860,"Total War SHOGUN 2",play,19.9,0 -240476338,"Counter-Strike Global Offensive",purchase,1.0,0 -240476338,"Counter-Strike Global Offensive",play,133.0,0 -240476338,"Unturned",purchase,1.0,0 -302575216,"Life Is Strange",purchase,1.0,0 -61070572,"Counter-Strike Global Offensive",purchase,1.0,0 -61070572,"Counter-Strike Global Offensive",play,441.0,0 -61070572,"Garry's Mod",purchase,1.0,0 -61070572,"Garry's Mod",play,153.0,0 -61070572,"SpeedRunners",purchase,1.0,0 -61070572,"SpeedRunners",play,126.0,0 -61070572,"Unturned",purchase,1.0,0 -61070572,"Unturned",play,107.0,0 -61070572,"DC Universe Online",purchase,1.0,0 -61070572,"DC Universe Online",play,54.0,0 -61070572,"Rocket League",purchase,1.0,0 -61070572,"Rocket League",play,38.0,0 -61070572,"Napoleon Total War",purchase,1.0,0 -61070572,"Napoleon Total War",play,37.0,0 -61070572,"Hurtworld",purchase,1.0,0 -61070572,"Hurtworld",play,35.0,0 -61070572,"Call of Duty Black Ops III",purchase,1.0,0 -61070572,"Call of Duty Black Ops III",play,28.0,0 -61070572,"Brawlhalla",purchase,1.0,0 -61070572,"Brawlhalla",play,27.0,0 -61070572,"Team Fortress 2",purchase,1.0,0 -61070572,"Team Fortress 2",play,13.6,0 -61070572,"Tom Clancy's Rainbow Six Siege",purchase,1.0,0 -61070572,"Tom Clancy's Rainbow Six Siege",play,10.6,0 -61070572,"SMITE",purchase,1.0,0 -61070572,"SMITE",play,9.7,0 -61070572,"Neverwinter",purchase,1.0,0 -61070572,"Neverwinter",play,9.1,0 -61070572,"Trove",purchase,1.0,0 -61070572,"Trove",play,7.5,0 -61070572,"The Binding of Isaac Rebirth",purchase,1.0,0 -61070572,"The Binding of Isaac Rebirth",play,5.8,0 -61070572,"Clicker Heroes",purchase,1.0,0 -61070572,"Clicker Heroes",play,5.8,0 -61070572,"Rust",purchase,1.0,0 -61070572,"Rust",play,4.8,0 -61070572,"MicroVolts Surge",purchase,1.0,0 -61070572,"MicroVolts Surge",play,4.8,0 -61070572,"Euro Truck Simulator 2",purchase,1.0,0 -61070572,"Euro Truck Simulator 2",play,4.5,0 -61070572,"AdVenture Capitalist",purchase,1.0,0 -61070572,"AdVenture Capitalist",play,4.3,0 -61070572,"Castle Crashers",purchase,1.0,0 -61070572,"Castle Crashers",play,4.3,0 -61070572,"Don't Starve Together Beta",purchase,1.0,0 -61070572,"Don't Starve Together Beta",play,4.2,0 -61070572,"Dragomon Hunter",purchase,1.0,0 -61070572,"Dragomon Hunter",play,4.1,0 -61070572,"Warframe",purchase,1.0,0 -61070572,"Warframe",play,3.5,0 -61070572,"Arma 3",purchase,1.0,0 -61070572,"Arma 3",play,3.3,0 -61070572,"Gotham City Impostors Free To Play",purchase,1.0,0 -61070572,"Gotham City Impostors Free To Play",play,3.2,0 -61070572,"Lethal League",purchase,1.0,0 -61070572,"Lethal League",play,2.5,0 -61070572,"Bloodline Champions",purchase,1.0,0 -61070572,"Bloodline Champions",play,2.5,0 -61070572,"H1Z1",purchase,1.0,0 -61070572,"H1Z1",play,2.4,0 -61070572,"Terraria",purchase,1.0,0 -61070572,"Terraria",play,2.2,0 -61070572,"BLOCKADE 3D",purchase,1.0,0 -61070572,"BLOCKADE 3D",play,2.0,0 -61070572,"Dota 2",purchase,1.0,0 -61070572,"Dota 2",play,1.4,0 -61070572,"Infinite Crisis",purchase,1.0,0 -61070572,"Infinite Crisis",play,1.3,0 -61070572,"War Thunder",purchase,1.0,0 -61070572,"War Thunder",play,1.0,0 -61070572,"Double Action Boogaloo",purchase,1.0,0 -61070572,"Double Action Boogaloo",play,0.9,0 -61070572,"Heroes & Generals",purchase,1.0,0 -61070572,"Heroes & Generals",play,0.9,0 -61070572,"Dungeon Defenders II",purchase,1.0,0 -61070572,"Dungeon Defenders II",play,0.8,0 -61070572,"Dirty Bomb",purchase,1.0,0 -61070572,"Dirty Bomb",play,0.8,0 -61070572,"Apotheon Arena",purchase,1.0,0 -61070572,"Apotheon Arena",play,0.7,0 -61070572,"Magicka Wizard Wars",purchase,1.0,0 -61070572,"Magicka Wizard Wars",play,0.7,0 -61070572,"Counter-Strike Nexon Zombies",purchase,1.0,0 -61070572,"Counter-Strike Nexon Zombies",play,0.6,0 -61070572,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -61070572,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.6,0 -61070572,"Chivalry Medieval Warfare",purchase,1.0,0 -61070572,"Chivalry Medieval Warfare",play,0.6,0 -61070572,"Robocraft",purchase,1.0,0 -61070572,"Robocraft",play,0.5,0 -61070572,"The Expendabros",purchase,1.0,0 -61070572,"The Expendabros",play,0.5,0 -61070572,"Hotline Miami 2 Wrong Number",purchase,1.0,0 -61070572,"Hotline Miami 2 Wrong Number",play,0.4,0 -61070572,"Warface",purchase,1.0,0 -61070572,"Warface",play,0.4,0 -61070572,"Rogue Legacy",purchase,1.0,0 -61070572,"Rogue Legacy",play,0.3,0 -61070572,"Games of Glory",purchase,1.0,0 -61070572,"Games of Glory",play,0.3,0 -61070572,"Firefall",purchase,1.0,0 -61070572,"Firefall",play,0.2,0 -61070572,"Guns and Robots",purchase,1.0,0 -61070572,"Guns and Robots",play,0.1,0 -61070572,"No More Room in Hell",purchase,1.0,0 -61070572,"Loadout",purchase,1.0,0 -61070572,"Aftermath",purchase,1.0,0 -61070572,"Arma 3 Zeus",purchase,1.0,0 -61070572,"Don't Starve",purchase,1.0,0 -61070572,"Fistful of Frags",purchase,1.0,0 -61070572,"H1Z1 Test Server",purchase,1.0,0 -61070572,"Heroes of SoulCraft",purchase,1.0,0 -61070572,"Patch testing for Chivalry",purchase,1.0,0 -61070572,"PlanetSide 2",purchase,1.0,0 -61070572,"Quake Live",purchase,1.0,0 -61070572,"Strife",purchase,1.0,0 -61070572,"Tom Clancy's Rainbow Six Vegas",purchase,1.0,0 -61070572,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -192503967,"Terraria",purchase,1.0,0 -192503967,"Terraria",play,382.0,0 -192503967,"The Elder Scrolls V Skyrim",purchase,1.0,0 -192503967,"The Elder Scrolls V Skyrim",play,143.0,0 -192503967,"The Binding of Isaac Rebirth",purchase,1.0,0 -192503967,"The Binding of Isaac Rebirth",play,119.0,0 -192503967,"Grand Theft Auto V",purchase,1.0,0 -192503967,"Grand Theft Auto V",play,96.0,0 -192503967,"Call of Duty World at War",purchase,1.0,0 -192503967,"Call of Duty World at War",play,70.0,0 -192503967,"Garry's Mod",purchase,1.0,0 -192503967,"Garry's Mod",play,58.0,0 -192503967,"Dead Island Riptide",purchase,1.0,0 -192503967,"Dead Island Riptide",play,43.0,0 -192503967,"The Elder Scrolls Online Tamriel Unlimited",purchase,1.0,0 -192503967,"The Elder Scrolls Online Tamriel Unlimited",play,29.0,0 -192503967,"The Escapists",purchase,1.0,0 -192503967,"The Escapists",play,20.0,0 -192503967,"Robocraft",purchase,1.0,0 -192503967,"Robocraft",play,14.9,0 -192503967,"Counter-Strike Global Offensive",purchase,1.0,0 -192503967,"Counter-Strike Global Offensive",play,14.6,0 -192503967,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -192503967,"RollerCoaster Tycoon 3 Platinum!",play,12.3,0 -192503967,"Duck Game",purchase,1.0,0 -192503967,"Duck Game",play,10.6,0 -192503967,"Unturned",purchase,1.0,0 -192503967,"Unturned",play,8.6,0 -192503967,"Surgeon Simulator",purchase,1.0,0 -192503967,"Surgeon Simulator",play,8.5,0 -192503967,"The Forest",purchase,1.0,0 -192503967,"The Forest",play,7.8,0 -192503967,"Half-Life 2",purchase,1.0,0 -192503967,"Half-Life 2",play,7.0,0 -192503967,"Rock of Ages",purchase,1.0,0 -192503967,"Rock of Ages",play,5.6,0 -192503967,"PAYDAY 2",purchase,1.0,0 -192503967,"PAYDAY 2",play,2.1,0 -192503967,"Team Fortress 2",purchase,1.0,0 -192503967,"Team Fortress 2",play,1.7,0 -192503967,"Super Meat Boy",purchase,1.0,0 -192503967,"Super Meat Boy",play,1.1,0 -192503967,"Assassins Creed Unity",purchase,1.0,0 -192503967,"Assassins Creed Unity",play,0.3,0 -192503967,"theHunter",purchase,1.0,0 -192503967,"Half-Life 2 Lost Coast",purchase,1.0,0 -192503967,"Killing Floor",purchase,1.0,0 -192503967,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -192503967,"TERA",purchase,1.0,0 -228475217,"Dota 2",purchase,1.0,0 -228475217,"Dota 2",play,0.5,0 -229568457,"Cry of Fear",purchase,1.0,0 -229568457,"Cry of Fear",play,0.2,0 -291070006,"Counter-Strike Nexon Zombies",purchase,1.0,0 -291070006,"Counter-Strike Nexon Zombies",play,3.1,0 -291070006,"Neverwinter",purchase,1.0,0 -291070006,"Neverwinter",play,2.3,0 -291070006,"BLOCKADE 3D",purchase,1.0,0 -291070006,"BLOCKADE 3D",play,0.9,0 -291070006,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -291070006,"Boring Man - Online Tactical Stickman Combat",play,0.8,0 -291070006,"Trove",purchase,1.0,0 -291070006,"Trove",play,0.6,0 -291070006,"Unturned",purchase,1.0,0 -291070006,"Unturned",play,0.1,0 -291070006,"WARMODE",purchase,1.0,0 -291070006,"Mortal Online",purchase,1.0,0 -51626428,"RACE Caterham Expansion",purchase,1.0,0 -51626428,"Race The WTCC Game",purchase,1.0,0 -79050738,"Half-Life 2 Deathmatch",purchase,1.0,0 -79050738,"Half-Life 2 Deathmatch",play,11.1,0 -145534973,"Total War ROME II - Emperor Edition",purchase,1.0,0 -145534973,"Total War ROME II - Emperor Edition",play,213.0,0 -145534973,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -145534973,"Game of Thrones - A Telltale Games Series",play,37.0,0 -145534973,"March of the Eagles",purchase,1.0,0 -145534973,"Middle-earth Shadow of Mordor",purchase,1.0,0 -110776325,"Dota 2",purchase,1.0,0 -110776325,"Dota 2",play,580.0,0 -181000177,"Dota 2",purchase,1.0,0 -181000177,"Dota 2",play,5.0,0 -123904490,"Counter-Strike Global Offensive",purchase,1.0,0 -123904490,"Counter-Strike Global Offensive",play,136.0,0 -123904490,"Terraria",purchase,1.0,0 -123904490,"Terraria",play,17.4,0 -123904490,"PlanetSide 2",purchase,1.0,0 -123904490,"PlanetSide 2",play,12.3,0 -123904490,"Garry's Mod",purchase,1.0,0 -123904490,"Garry's Mod",play,7.4,0 -123904490,"Unturned",purchase,1.0,0 -123904490,"Unturned",play,4.4,0 -123904490,"Quake Live",purchase,1.0,0 -123904490,"Quake Live",play,2.8,0 -123904490,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -123904490,"S.K.I.L.L. - Special Force 2",play,2.1,0 -123904490,"Trove",purchase,1.0,0 -123904490,"Trove",play,2.0,0 -123904490,"AdVenture Capitalist",purchase,1.0,0 -123904490,"AdVenture Capitalist",play,1.5,0 -123904490,"Metro Conflict",purchase,1.0,0 -123904490,"Metro Conflict",play,0.8,0 -123904490,"Team Fortress 2",purchase,1.0,0 -123904490,"Team Fortress 2",play,0.7,0 -123904490,"Dirty Bomb",purchase,1.0,0 -123904490,"Dirty Bomb",play,0.6,0 -123904490,"Heroes & Generals",purchase,1.0,0 -123904490,"Heroes & Generals",play,0.5,0 -123904490,"Aftermath",purchase,1.0,0 -123904490,"Aftermath",play,0.4,0 -123904490,"Warface",purchase,1.0,0 -123904490,"Warface",play,0.3,0 -123904490,"Gun Monkeys",purchase,1.0,0 -123904490,"Gun Monkeys",play,0.3,0 -123904490,"Insurgency Modern Infantry Combat",purchase,1.0,0 -123904490,"Insurgency Modern Infantry Combat",play,0.3,0 -123904490,"Robocraft",purchase,1.0,0 -123904490,"Robocraft",play,0.2,0 -123904490,"Survarium",purchase,1.0,0 -123904490,"Survarium",play,0.2,0 -123904490,"Dragomon Hunter",purchase,1.0,0 -123904490,"Dragomon Hunter",play,0.1,0 -123904490,"Arma 2 Free",purchase,1.0,0 -123904490,"Arma 2 Free",play,0.1,0 -123904490,"Anno Online",purchase,1.0,0 -123904490,"Anno Online",play,0.1,0 -123904490,"Copa Petrobras de Marcas",purchase,1.0,0 -123904490,"Mitos.is The Game",purchase,1.0,0 -123904490,"Dungeon Defenders II",purchase,1.0,0 -123904490,"Clicker Heroes",purchase,1.0,0 -123904490,"After All",purchase,1.0,0 -123904490,"ArcheAge",purchase,1.0,0 -123904490,"Archeblade",purchase,1.0,0 -123904490,"Brick-Force",purchase,1.0,0 -123904490,"Counter-Strike Nexon Zombies",purchase,1.0,0 -123904490,"Defiance",purchase,1.0,0 -123904490,"Devilian",purchase,1.0,0 -123904490,"Firefall",purchase,1.0,0 -123904490,"Gotham City Impostors Free To Play",purchase,1.0,0 -123904490,"Jagged Alliance Online Raven Pack",purchase,1.0,0 -123904490,"Loadout",purchase,1.0,0 -123904490,"Neverwinter",purchase,1.0,0 -123904490,"Piercing Blow",purchase,1.0,0 -123904490,"RaceRoom Racing Experience ",purchase,1.0,0 -123904490,"SAGA",purchase,1.0,0 -123904490,"Sniper Elite V2",purchase,1.0,0 -123904490,"UberStrike",purchase,1.0,0 -123904490,"War Thunder",purchase,1.0,0 -184965925,"Sunrider Mask of Arcadius",purchase,1.0,0 -29706146,"Team Fortress 2",purchase,1.0,0 -29706146,"Team Fortress 2",play,0.5,0 -29706146,"Garry's Mod",purchase,1.0,0 -146108388,"Team Fortress 2",purchase,1.0,0 -146108388,"Team Fortress 2",play,0.2,0 -146108388,"Unturned",purchase,1.0,0 -176411103,"Dota 2",purchase,1.0,0 -176411103,"Dota 2",play,2.0,0 -215290585,"Don't Starve Together Beta",purchase,1.0,0 -215290585,"Don't Starve Together Beta",play,2.2,0 -215290585,"Among Ripples",purchase,1.0,0 -215290585,"Kingdoms CCG",purchase,1.0,0 -159389512,"Football Manager 2014",purchase,1.0,0 -159389512,"Football Manager 2014",play,1.1,0 -161641723,"Football Manager 2014",purchase,1.0,0 -161641723,"Football Manager 2014",play,369.0,0 -170912768,"Dota 2",purchase,1.0,0 -170912768,"Dota 2",play,7.2,0 -281864662,"Strife",purchase,1.0,0 -281864662,"Strife",play,0.8,0 -281864662,"Trove",purchase,1.0,0 -281864662,"Trove",play,0.7,0 -281864662,"Magic Duels",purchase,1.0,0 -281864662,"Magic Duels",play,0.4,0 -281864662,"GunZ 2 The Second Duel",purchase,1.0,0 -281864662,"GunZ 2 The Second Duel",play,0.3,0 -281864662,"Tribes Ascend",purchase,1.0,0 -281864662,"Tribes Ascend",play,0.2,0 -281864662,"Dirty Bomb",purchase,1.0,0 -281864662,"Dirty Bomb",play,0.2,0 -281864662,"Dragons and Titans",purchase,1.0,0 -281864662,"Dragons and Titans",play,0.1,0 -281864662,"MicroVolts Surge",purchase,1.0,0 -281864662,"Champions Online",purchase,1.0,0 -281864662,"Blacklight Retribution",purchase,1.0,0 -281864662,"Mitos.is The Game",purchase,1.0,0 -281864662,"Nosgoth",purchase,1.0,0 -281864662,"Panzar",purchase,1.0,0 -281864662,"Path of Exile",purchase,1.0,0 -281864662,"TERA",purchase,1.0,0 -281864662,"The Lord of the Rings Online",purchase,1.0,0 -187085206,"Unturned",purchase,1.0,0 -187085206,"Unturned",play,35.0,0 -187085206,"Robocraft",purchase,1.0,0 -224928927,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -224928927,"METAL GEAR SOLID V GROUND ZEROES",play,43.0,0 -39654762,"Half-Life 2 Deathmatch",purchase,1.0,0 -39654762,"Half-Life 2 Lost Coast",purchase,1.0,0 -158974308,"Grand Theft Auto V",purchase,1.0,0 -158974308,"Grand Theft Auto V",play,231.0,0 -158974308,"Team Fortress 2",purchase,1.0,0 -158974308,"Team Fortress 2",play,147.0,0 -158974308,"Heroes & Generals",purchase,1.0,0 -158974308,"Heroes & Generals",play,126.0,0 -158974308,"Garry's Mod",purchase,1.0,0 -158974308,"Garry's Mod",play,64.0,0 -158974308,"Dota 2",purchase,1.0,0 -158974308,"Dota 2",play,53.0,0 -158974308,"Grand Theft Auto San Andreas",purchase,1.0,0 -158974308,"Grand Theft Auto San Andreas",play,29.0,0 -158974308,"The Forest",purchase,1.0,0 -158974308,"The Forest",play,29.0,0 -158974308,"Gang Beasts",purchase,1.0,0 -158974308,"Gang Beasts",play,16.7,0 -158974308,"Counter-Strike Global Offensive",purchase,1.0,0 -158974308,"Counter-Strike Global Offensive",play,14.6,0 -158974308,"Loadout",purchase,1.0,0 -158974308,"Loadout",play,9.8,0 -158974308,"No More Room in Hell",purchase,1.0,0 -158974308,"No More Room in Hell",play,7.2,0 -158974308,"Left 4 Dead 2",purchase,1.0,0 -158974308,"Left 4 Dead 2",play,5.4,0 -158974308,"The Escapists",purchase,1.0,0 -158974308,"The Escapists",play,4.4,0 -158974308,"Spooky's House of Jump Scares",purchase,1.0,0 -158974308,"Spooky's House of Jump Scares",play,2.5,0 -158974308,"Motorbike",purchase,1.0,0 -158974308,"Motorbike",play,1.2,0 -158974308,"Adventure Chronicles The Search For Lost Treasure",purchase,1.0,0 -158974308,"Adventure Chronicles The Search For Lost Treasure",play,0.7,0 -158974308,"Unturned",purchase,1.0,0 -158974308,"Unturned",play,0.6,0 -158974308,"Double Action Boogaloo",purchase,1.0,0 -158974308,"Among Ripples",purchase,1.0,0 -158974308,"Destination Sol",purchase,1.0,0 -158974308,"Grand Theft Auto San Andreas",purchase,1.0,0 -115242203,"Team Fortress 2",purchase,1.0,0 -115242203,"Team Fortress 2",play,8.0,0 -176354321,"Space Engineers",purchase,1.0,0 -176354321,"Space Engineers",play,11.9,0 -176354321,"War Thunder",purchase,1.0,0 -176354321,"War Thunder",play,10.0,0 -176354321,"Robocraft",purchase,1.0,0 -176354321,"Robocraft",play,5.9,0 -176354321,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -176354321,"Tom Clancy's Ghost Recon Phantoms - EU",play,3.6,0 -176354321,"Team Fortress 2",purchase,1.0,0 -176354321,"Team Fortress 2",play,2.4,0 -176354321,"Rust",purchase,1.0,0 -176354321,"Rust",play,0.9,0 -176354321,"Heroes & Generals",purchase,1.0,0 -176354321,"Heroes & Generals",play,0.4,0 -176354321,"Dota 2",purchase,1.0,0 -176354321,"Dota 2",play,0.3,0 -176354321,"Stronghold Kingdoms",purchase,1.0,0 -176354321,"Stronghold Kingdoms",play,0.2,0 -176354321,"The Lord of the Rings Online",purchase,1.0,0 -176354321,"Cannons Lasers Rockets",purchase,1.0,0 -81170946,"ARK Survival Evolved",purchase,1.0,0 -81170946,"ARK Survival Evolved",play,71.0,0 -81170946,"The Elder Scrolls V Skyrim",purchase,1.0,0 -81170946,"The Elder Scrolls V Skyrim",play,62.0,0 -81170946,"Rust",purchase,1.0,0 -81170946,"Rust",play,59.0,0 -81170946,"Sid Meier's Civilization V",purchase,1.0,0 -81170946,"Sid Meier's Civilization V",play,55.0,0 -81170946,"Terraria",purchase,1.0,0 -81170946,"Terraria",play,46.0,0 -81170946,"Reign Of Kings",purchase,1.0,0 -81170946,"Reign Of Kings",play,31.0,0 -81170946,"Grand Theft Auto IV",purchase,1.0,0 -81170946,"Grand Theft Auto IV",play,30.0,0 -81170946,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -81170946,"Call of Duty Black Ops - Multiplayer",play,29.0,0 -81170946,"Age of Empires II HD Edition",purchase,1.0,0 -81170946,"Age of Empires II HD Edition",play,26.0,0 -81170946,"Dota 2",purchase,1.0,0 -81170946,"Dota 2",play,24.0,0 -81170946,"PlanetSide 2",purchase,1.0,0 -81170946,"PlanetSide 2",play,21.0,0 -81170946,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -81170946,"Batman Arkham Asylum GOTY Edition",play,19.3,0 -81170946,"FINAL FANTASY XIV A Realm Reborn",purchase,1.0,0 -81170946,"FINAL FANTASY XIV A Realm Reborn",play,18.8,0 -81170946,"Age of Empires III Complete Collection",purchase,1.0,0 -81170946,"Age of Empires III Complete Collection",play,17.7,0 -81170946,"Town of Salem",purchase,1.0,0 -81170946,"Town of Salem",play,15.3,0 -81170946,"Half-Life 2",purchase,1.0,0 -81170946,"Half-Life 2",play,11.3,0 -81170946,"Game Dev Tycoon",purchase,1.0,0 -81170946,"Game Dev Tycoon",play,10.6,0 -81170946,"Arma 2 Operation Arrowhead",purchase,1.0,0 -81170946,"Arma 2 Operation Arrowhead",play,10.2,0 -81170946,"Grand Theft Auto III",purchase,1.0,0 -81170946,"Grand Theft Auto III",play,10.1,0 -81170946,"Star Wars Dark Forces",purchase,1.0,0 -81170946,"Star Wars Dark Forces",play,9.9,0 -81170946,"Call of Duty Black Ops",purchase,1.0,0 -81170946,"Call of Duty Black Ops",play,9.3,0 -81170946,"Awesomenauts",purchase,1.0,0 -81170946,"Awesomenauts",play,8.5,0 -81170946,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -81170946,"Dragon Age Origins - Ultimate Edition",play,7.9,0 -81170946,"Windward",purchase,1.0,0 -81170946,"Windward",play,7.3,0 -81170946,"Fallout New Vegas",purchase,1.0,0 -81170946,"Fallout New Vegas",play,7.2,0 -81170946,"Portal",purchase,1.0,0 -81170946,"Portal",play,6.8,0 -81170946,"Team Fortress 2",purchase,1.0,0 -81170946,"Team Fortress 2",play,6.8,0 -81170946,"Saints Row IV",purchase,1.0,0 -81170946,"Saints Row IV",play,6.6,0 -81170946,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -81170946,"Fallout 3 - Game of the Year Edition",play,6.3,0 -81170946,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -81170946,"Sid Meier's Civilization Beyond Earth",play,5.9,0 -81170946,"Chivalry Medieval Warfare",purchase,1.0,0 -81170946,"Chivalry Medieval Warfare",play,5.5,0 -81170946,"Batman Arkham City GOTY",purchase,1.0,0 -81170946,"Batman Arkham City GOTY",play,5.4,0 -81170946,"Grand Theft Auto Vice City",purchase,1.0,0 -81170946,"Grand Theft Auto Vice City",play,5.1,0 -81170946,"FTL Faster Than Light",purchase,1.0,0 -81170946,"FTL Faster Than Light",play,5.0,0 -81170946,"Car Mechanic Simulator 2015",purchase,1.0,0 -81170946,"Car Mechanic Simulator 2015",play,5.0,0 -81170946,"Medal of Honor Airborne",purchase,1.0,0 -81170946,"Medal of Honor Airborne",play,4.9,0 -81170946,"Dishonored",purchase,1.0,0 -81170946,"Dishonored",play,4.7,0 -81170946,"Fable - The Lost Chapters",purchase,1.0,0 -81170946,"Fable - The Lost Chapters",play,4.5,0 -81170946,"Torchlight II",purchase,1.0,0 -81170946,"Torchlight II",play,4.5,0 -81170946,"Counter-Strike Global Offensive",purchase,1.0,0 -81170946,"Counter-Strike Global Offensive",play,4.5,0 -81170946,"Rogue Legacy",purchase,1.0,0 -81170946,"Rogue Legacy",play,4.4,0 -81170946,"Tomb Raider",purchase,1.0,0 -81170946,"Tomb Raider",play,4.3,0 -81170946,"Portal 2",purchase,1.0,0 -81170946,"Portal 2",play,3.9,0 -81170946,"Tom Clancy's Rainbow Six Siege",purchase,1.0,0 -81170946,"Tom Clancy's Rainbow Six Siege",play,3.2,0 -81170946,"Mass Effect",purchase,1.0,0 -81170946,"Mass Effect",play,3.0,0 -81170946,"Half-Life 2 Episode One",purchase,1.0,0 -81170946,"Half-Life 2 Episode One",play,2.6,0 -81170946,"Reaper - Tale of a Pale Swordsman",purchase,1.0,0 -81170946,"Reaper - Tale of a Pale Swordsman",play,2.6,0 -81170946,"The Binding of Isaac Rebirth",purchase,1.0,0 -81170946,"The Binding of Isaac Rebirth",play,2.2,0 -81170946,"Star Wars - Battlefront II",purchase,1.0,0 -81170946,"Star Wars - Battlefront II",play,2.1,0 -81170946,"Path of Exile",purchase,1.0,0 -81170946,"Path of Exile",play,2.0,0 -81170946,"Loadout",purchase,1.0,0 -81170946,"Loadout",play,2.0,0 -81170946,"Orcs Must Die!",purchase,1.0,0 -81170946,"Orcs Must Die!",play,1.9,0 -81170946,"Darksiders",purchase,1.0,0 -81170946,"Darksiders",play,1.9,0 -81170946,"The Walking Dead",purchase,1.0,0 -81170946,"The Walking Dead",play,1.5,0 -81170946,"Psychonauts",purchase,1.0,0 -81170946,"Psychonauts",play,1.5,0 -81170946,"Before the Echo",purchase,1.0,0 -81170946,"Before the Echo",play,1.0,0 -81170946,"LIMBO",purchase,1.0,0 -81170946,"LIMBO",play,1.0,0 -81170946,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -81170946,"Star Wars The Force Unleashed Ultimate Sith Edition",play,0.8,0 -81170946,"Banished",purchase,1.0,0 -81170946,"Banished",play,0.7,0 -81170946,"Poker Night at the Inventory",purchase,1.0,0 -81170946,"Poker Night at the Inventory",play,0.6,0 -81170946,"Left 4 Dead 2",purchase,1.0,0 -81170946,"Left 4 Dead 2",play,0.6,0 -81170946,"AdVenture Capitalist",purchase,1.0,0 -81170946,"AdVenture Capitalist",play,0.5,0 -81170946,"Star Wars Knights of the Old Republic",purchase,1.0,0 -81170946,"Star Wars Knights of the Old Republic",play,0.5,0 -81170946,"Fishing Planet",purchase,1.0,0 -81170946,"Fishing Planet",play,0.5,0 -81170946,"Arma 2",purchase,1.0,0 -81170946,"Arma 2",play,0.5,0 -81170946,"Dead Space",purchase,1.0,0 -81170946,"Dead Space",play,0.5,0 -81170946,"Grand Theft Auto San Andreas",purchase,1.0,0 -81170946,"Grand Theft Auto San Andreas",play,0.4,0 -81170946,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -81170946,"Star Wars Jedi Knight Dark Forces II",play,0.2,0 -81170946,"Amnesia The Dark Descent",purchase,1.0,0 -81170946,"Amnesia The Dark Descent",play,0.2,0 -81170946,"Age of Mythology Extended Edition",purchase,1.0,0 -81170946,"Age of Mythology Extended Edition",play,0.2,0 -81170946,"Grand Theft Auto",purchase,1.0,0 -81170946,"Grand Theft Auto",play,0.1,0 -81170946,"Puzzle Agent",purchase,1.0,0 -81170946,"Grand Theft Auto 2",purchase,1.0,0 -81170946,"Saints Row The Third",purchase,1.0,0 -81170946,"Mass Effect 2",purchase,1.0,0 -81170946,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -81170946,"Sid Meier's Civilization III Complete",purchase,1.0,0 -81170946,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -81170946,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -81170946,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -81170946,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -81170946,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -81170946,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -81170946,"Bastion",purchase,1.0,0 -81170946,"BioShock",purchase,1.0,0 -81170946,"BioShock 2",purchase,1.0,0 -81170946,"BioShock Infinite",purchase,1.0,0 -81170946,"Car Mechanic Simulator 2015 - Youngtimer",purchase,1.0,0 -81170946,"Company of Heroes",purchase,1.0,0 -81170946,"Company of Heroes (New Steam Version)",purchase,1.0,0 -81170946,"Company of Heroes Opposing Fronts",purchase,1.0,0 -81170946,"Company of Heroes Tales of Valor",purchase,1.0,0 -81170946,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -81170946,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -81170946,"Fallout New Vegas Dead Money",purchase,1.0,0 -81170946,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -81170946,"FINAL FANTASY XIV A Realm Reborn CE (NA version)",purchase,1.0,0 -81170946,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -81170946,"Grand Theft Auto San Andreas",purchase,1.0,0 -81170946,"Grand Theft Auto Vice City",purchase,1.0,0 -81170946,"Grand Theft Auto III",purchase,1.0,0 -81170946,"Half-Life 2 Episode Two",purchase,1.0,0 -81170946,"Half-Life 2 Lost Coast",purchase,1.0,0 -81170946,"Hector Ep 1",purchase,1.0,0 -81170946,"Hector Ep 2",purchase,1.0,0 -81170946,"Hector Ep 3",purchase,1.0,0 -81170946,"Metro 2033",purchase,1.0,0 -81170946,"Orcs Must Die! 2",purchase,1.0,0 -81170946,"Patch testing for Chivalry",purchase,1.0,0 -81170946,"Psychonauts Demo",purchase,1.0,0 -81170946,"Puzzle Agent 2",purchase,1.0,0 -81170946,"Red Faction Armageddon",purchase,1.0,0 -81170946,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -81170946,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -81170946,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -81170946,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -81170946,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -81170946,"Sleeping Dogs",purchase,1.0,0 -81170946,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -81170946,"Star Wars Empire at War Gold",purchase,1.0,0 -81170946,"Star Wars The Force Unleashed II",purchase,1.0,0 -81170946,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -81170946,"Star Wars Republic Commando",purchase,1.0,0 -81170946,"Star Wars Starfighter",purchase,1.0,0 -81170946,"Star Wars The Clone Wars Republic Heroes",purchase,1.0,0 -81170946,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -81170946,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -81170946,"Titan Quest",purchase,1.0,0 -81170946,"Tom Clancy's Rainbow Six Vegas",purchase,1.0,0 -81170946,"Wallace & Gromit Ep 1 Fright of the Bumblebees",purchase,1.0,0 -81170946,"Wallace & Gromit Ep 2 The Last Resort",purchase,1.0,0 -81170946,"Wallace & Gromit Ep 3 Muzzled!",purchase,1.0,0 -81170946,"Wallace & Gromit Ep 4 The Bogey Man",purchase,1.0,0 -176306969,"Dota 2",purchase,1.0,0 -176306969,"Dota 2",play,13.0,0 -33098857,"Counter-Strike",purchase,1.0,0 -33098857,"Counter-Strike",play,7.0,0 -33098857,"Counter-Strike Condition Zero",purchase,1.0,0 -33098857,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -33098857,"Day of Defeat",purchase,1.0,0 -33098857,"Deathmatch Classic",purchase,1.0,0 -33098857,"Ricochet",purchase,1.0,0 -186766395,"Dota 2",purchase,1.0,0 -186766395,"Dota 2",play,3.6,0 -44314169,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -44314169,"Dark Souls Prepare to Die Edition",play,170.0,0 -44314169,"Left 4 Dead 2",purchase,1.0,0 -44314169,"Left 4 Dead 2",play,105.0,0 -44314169,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -44314169,"METAL GEAR SOLID V THE PHANTOM PAIN",play,71.0,0 -44314169,"DARK SOULS II",purchase,1.0,0 -44314169,"DARK SOULS II",play,71.0,0 -44314169,"Saints Row The Third",purchase,1.0,0 -44314169,"Saints Row The Third",play,43.0,0 -44314169,"Rocksmith 2014",purchase,1.0,0 -44314169,"Rocksmith 2014",play,42.0,0 -44314169,"Terraria",purchase,1.0,0 -44314169,"Terraria",play,39.0,0 -44314169,"Deus Ex Human Revolution",purchase,1.0,0 -44314169,"Deus Ex Human Revolution",play,34.0,0 -44314169,"Far Cry 3",purchase,1.0,0 -44314169,"Far Cry 3",play,32.0,0 -44314169,"Rocksmith",purchase,1.0,0 -44314169,"Rocksmith",play,29.0,0 -44314169,"Dungeon Defenders",purchase,1.0,0 -44314169,"Dungeon Defenders",play,29.0,0 -44314169,"The Elder Scrolls V Skyrim",purchase,1.0,0 -44314169,"The Elder Scrolls V Skyrim",play,29.0,0 -44314169,"Sleeping Dogs",purchase,1.0,0 -44314169,"Sleeping Dogs",play,26.0,0 -44314169,"Borderlands",purchase,1.0,0 -44314169,"Borderlands",play,26.0,0 -44314169,"PAYDAY 2",purchase,1.0,0 -44314169,"PAYDAY 2",play,22.0,0 -44314169,"resident evil 4 / biohazard 4",purchase,1.0,0 -44314169,"resident evil 4 / biohazard 4",play,21.0,0 -44314169,"BioShock Infinite",purchase,1.0,0 -44314169,"BioShock Infinite",play,19.6,0 -44314169,"Evolve",purchase,1.0,0 -44314169,"Evolve",play,19.2,0 -44314169,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -44314169,"The Witcher 2 Assassins of Kings Enhanced Edition",play,19.1,0 -44314169,"Portal 2",purchase,1.0,0 -44314169,"Portal 2",play,18.4,0 -44314169,"The Sims(TM) 3",purchase,1.0,0 -44314169,"The Sims(TM) 3",play,17.8,0 -44314169,"South Park The Stick of Truth",purchase,1.0,0 -44314169,"South Park The Stick of Truth",play,16.1,0 -44314169,"The Walking Dead",purchase,1.0,0 -44314169,"The Walking Dead",play,14.9,0 -44314169,"Fallout New Vegas",purchase,1.0,0 -44314169,"Fallout New Vegas",play,14.2,0 -44314169,"Tomb Raider",purchase,1.0,0 -44314169,"Tomb Raider",play,13.4,0 -44314169,"The Lord of the Rings War in the North",purchase,1.0,0 -44314169,"The Lord of the Rings War in the North",play,13.2,0 -44314169,"Max Payne 3",purchase,1.0,0 -44314169,"Max Payne 3",play,12.7,0 -44314169,"Wings of Prey",purchase,1.0,0 -44314169,"Wings of Prey",play,10.7,0 -44314169,"The Forest",purchase,1.0,0 -44314169,"The Forest",play,10.5,0 -44314169,"The Evil Within",purchase,1.0,0 -44314169,"The Evil Within",play,10.5,0 -44314169,"PAYDAY The Heist",purchase,1.0,0 -44314169,"PAYDAY The Heist",play,10.4,0 -44314169,"Far Cry 3 Blood Dragon",purchase,1.0,0 -44314169,"Far Cry 3 Blood Dragon",play,10.0,0 -44314169,"Trine",purchase,1.0,0 -44314169,"Trine",play,10.0,0 -44314169,"The Darkness II",purchase,1.0,0 -44314169,"The Darkness II",play,9.0,0 -44314169,"Dota 2",purchase,1.0,0 -44314169,"Dota 2",play,8.8,0 -44314169,"Sniper Elite V2",purchase,1.0,0 -44314169,"Sniper Elite V2",play,8.7,0 -44314169,"Left 4 Dead",purchase,1.0,0 -44314169,"Left 4 Dead",play,8.0,0 -44314169,"Spec Ops The Line",purchase,1.0,0 -44314169,"Spec Ops The Line",play,7.9,0 -44314169,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -44314169,"METAL GEAR SOLID V GROUND ZEROES",play,7.8,0 -44314169,"Dead Island",purchase,1.0,0 -44314169,"Dead Island",play,7.8,0 -44314169,"Just Cause 3",purchase,1.0,0 -44314169,"Just Cause 3",play,7.5,0 -44314169,"Magicka",purchase,1.0,0 -44314169,"Magicka",play,7.1,0 -44314169,"F.E.A.R. 3",purchase,1.0,0 -44314169,"F.E.A.R. 3",play,6.6,0 -44314169,"Cities XL 2011",purchase,1.0,0 -44314169,"Cities XL 2011",play,6.5,0 -44314169,"RAGE",purchase,1.0,0 -44314169,"RAGE",play,5.9,0 -44314169,"Torchlight II",purchase,1.0,0 -44314169,"Torchlight II",play,5.6,0 -44314169,"Trine 2",purchase,1.0,0 -44314169,"Trine 2",play,5.3,0 -44314169,"Borderlands 2",purchase,1.0,0 -44314169,"Borderlands 2",play,5.3,0 -44314169,"Fallout 4",purchase,1.0,0 -44314169,"Fallout 4",play,5.1,0 -44314169,"Just Cause 2",purchase,1.0,0 -44314169,"Just Cause 2",play,5.0,0 -44314169,"Total War SHOGUN 2",purchase,1.0,0 -44314169,"Total War SHOGUN 2",play,5.0,0 -44314169,"Team Fortress 2",purchase,1.0,0 -44314169,"Team Fortress 2",play,5.0,0 -44314169,"Mortal Kombat X",purchase,1.0,0 -44314169,"Mortal Kombat X",play,4.7,0 -44314169,"Dead Rising 2 Off the Record",purchase,1.0,0 -44314169,"Dead Rising 2 Off the Record",play,4.3,0 -44314169,"Sniper Elite Nazi Zombie Army",purchase,1.0,0 -44314169,"Sniper Elite Nazi Zombie Army",play,4.1,0 -44314169,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -44314169,"Fallout 3 - Game of the Year Edition",play,4.0,0 -44314169,"Hitman Absolution",purchase,1.0,0 -44314169,"Hitman Absolution",play,4.0,0 -44314169,"Ghostbusters The Video Game",purchase,1.0,0 -44314169,"Ghostbusters The Video Game",play,4.0,0 -44314169,"Cities XL",purchase,1.0,0 -44314169,"Cities XL",play,3.6,0 -44314169,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -44314169,"Resident Evil 5 / Biohazard 5",play,3.5,0 -44314169,"Grand Theft Auto V",purchase,1.0,0 -44314169,"Grand Theft Auto V",play,3.5,0 -44314169,"Tony Hawk's Pro Skater HD",purchase,1.0,0 -44314169,"Tony Hawk's Pro Skater HD",play,3.4,0 -44314169,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -44314169,"Tom Clancy's Splinter Cell Conviction",play,3.2,0 -44314169,"The Wolf Among Us",purchase,1.0,0 -44314169,"The Wolf Among Us",play,2.6,0 -44314169,"Counter-Strike Source",purchase,1.0,0 -44314169,"Counter-Strike Source",play,2.5,0 -44314169,"Batman Arkham City",purchase,1.0,0 -44314169,"Batman Arkham City",play,2.4,0 -44314169,"Neverwinter Nights 2 Platinum",purchase,1.0,0 -44314169,"Neverwinter Nights 2 Platinum",play,2.4,0 -44314169,"Assassin's Creed Brotherhood",purchase,1.0,0 -44314169,"Assassin's Creed Brotherhood",play,2.2,0 -44314169,"Amnesia The Dark Descent",purchase,1.0,0 -44314169,"Amnesia The Dark Descent",play,2.2,0 -44314169,"Lara Croft and the Temple of Osiris",purchase,1.0,0 -44314169,"Lara Croft and the Temple of Osiris",play,1.9,0 -44314169,"Battle for Graxia",purchase,1.0,0 -44314169,"Battle for Graxia",play,1.7,0 -44314169,"Battlefield Bad Company 2",purchase,1.0,0 -44314169,"Battlefield Bad Company 2",play,1.4,0 -44314169,"Hotline Miami",purchase,1.0,0 -44314169,"Hotline Miami",play,1.4,0 -44314169,"Saints Row IV",purchase,1.0,0 -44314169,"Saints Row IV",play,1.4,0 -44314169,"Need for Speed Hot Pursuit",purchase,1.0,0 -44314169,"Need for Speed Hot Pursuit",play,1.3,0 -44314169,"System Shock 2",purchase,1.0,0 -44314169,"System Shock 2",play,1.3,0 -44314169,"Tom Clancy's Rainbow Six Vegas 2",purchase,1.0,0 -44314169,"Tom Clancy's Rainbow Six Vegas 2",play,1.2,0 -44314169,"Killer is Dead",purchase,1.0,0 -44314169,"Killer is Dead",play,0.9,0 -44314169,"Organ Trail Director's Cut",purchase,1.0,0 -44314169,"Organ Trail Director's Cut",play,0.9,0 -44314169,"Dead Space 2",purchase,1.0,0 -44314169,"Dead Space 2",play,0.8,0 -44314169,"Alan Wake's American Nightmare",purchase,1.0,0 -44314169,"Alan Wake's American Nightmare",play,0.8,0 -44314169,"Monaco",purchase,1.0,0 -44314169,"Monaco",play,0.8,0 -44314169,"Beat Hazard",purchase,1.0,0 -44314169,"Beat Hazard",play,0.7,0 -44314169,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -44314169,"Just Cause 2 Multiplayer Mod",play,0.6,0 -44314169,"Star Wars The Force Unleashed II",purchase,1.0,0 -44314169,"Star Wars The Force Unleashed II",play,0.6,0 -44314169,"Zombie Panic Source",purchase,1.0,0 -44314169,"Zombie Panic Source",play,0.6,0 -44314169,"BioShock 2",purchase,1.0,0 -44314169,"BioShock 2",play,0.5,0 -44314169,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -44314169,"F.E.A.R. 2 Project Origin",play,0.4,0 -44314169,"Before the Echo",purchase,1.0,0 -44314169,"Before the Echo",play,0.4,0 -44314169,"Metro 2033 Redux",purchase,1.0,0 -44314169,"Metro 2033 Redux",play,0.3,0 -44314169,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -44314169,"Red Faction Guerrilla Steam Edition",play,0.3,0 -44314169,"Audiosurf",purchase,1.0,0 -44314169,"Audiosurf",play,0.3,0 -44314169,"Far Cry 2",purchase,1.0,0 -44314169,"Far Cry 2",play,0.3,0 -44314169,"F.E.A.R.",purchase,1.0,0 -44314169,"F.E.A.R.",play,0.3,0 -44314169,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -44314169,"Deus Ex Human Revolution - The Missing Link",play,0.2,0 -44314169,"Warframe",purchase,1.0,0 -44314169,"Warframe",play,0.2,0 -44314169,"Foreign Legion Buckets of Blood",purchase,1.0,0 -44314169,"Foreign Legion Buckets of Blood",play,0.2,0 -44314169,"Arma 2 Operation Arrowhead",purchase,1.0,0 -44314169,"Arma 2 Operation Arrowhead",play,0.1,0 -44314169,"Shadowgrounds Survivor",purchase,1.0,0 -44314169,"Star Wars Knights of the Old Republic",purchase,1.0,0 -44314169,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -44314169,"Arma 2 British Armed Forces",purchase,1.0,0 -44314169,"Arma 2",purchase,1.0,0 -44314169,"Arma 2 Private Military Company",purchase,1.0,0 -44314169,"Dead Space",purchase,1.0,0 -44314169,"Alan Wake",purchase,1.0,0 -44314169,"Arma 2 DayZ Mod",purchase,1.0,0 -44314169,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -44314169,"Assassin's Creed",purchase,1.0,0 -44314169,"Assassin's Creed II",purchase,1.0,0 -44314169,"Assassin's Creed Revelations",purchase,1.0,0 -44314169,"Assassin's Creed III",purchase,1.0,0 -44314169,"Bastion",purchase,1.0,0 -44314169,"Batman Arkham City GOTY",purchase,1.0,0 -44314169,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -44314169,"BioShock",purchase,1.0,0 -44314169,"BioShock Infinite - Season Pass",purchase,1.0,0 -44314169,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -44314169,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -44314169,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -44314169,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -44314169,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -44314169,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -44314169,"Broforce",purchase,1.0,0 -44314169,"Castle Crashers",purchase,1.0,0 -44314169,"Chivalry Medieval Warfare",purchase,1.0,0 -44314169,"Counter-Strike Global Offensive",purchase,1.0,0 -44314169,"DARK SOULS II - Season Pass",purchase,1.0,0 -44314169,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -44314169,"Deadly Premonition The Director's Cut",purchase,1.0,0 -44314169,"Depth",purchase,1.0,0 -44314169,"Dishonored",purchase,1.0,0 -44314169,"Divinity Original Sin",purchase,1.0,0 -44314169,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -44314169,"F.E.A.R. Extraction Point",purchase,1.0,0 -44314169,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -44314169,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -44314169,"Fallout New Vegas Dead Money",purchase,1.0,0 -44314169,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -44314169,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -44314169,"Garry's Mod",purchase,1.0,0 -44314169,"Half-Life 2",purchase,1.0,0 -44314169,"Half-Life 2 Deathmatch",purchase,1.0,0 -44314169,"Half-Life 2 Episode One",purchase,1.0,0 -44314169,"Half-Life 2 Episode Two",purchase,1.0,0 -44314169,"Half-Life 2 Lost Coast",purchase,1.0,0 -44314169,"Half-Life Deathmatch Source",purchase,1.0,0 -44314169,"Hitman Sniper Challenge",purchase,1.0,0 -44314169,"L.A. Noire",purchase,1.0,0 -44314169,"LIMBO",purchase,1.0,0 -44314169,"Lost Planet 2",purchase,1.0,0 -44314169,"Magicka Final Frontier",purchase,1.0,0 -44314169,"Magicka Frozen Lake",purchase,1.0,0 -44314169,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -44314169,"Magicka Nippon",purchase,1.0,0 -44314169,"Magicka Party Robes",purchase,1.0,0 -44314169,"Magicka The Watchtower",purchase,1.0,0 -44314169,"Magicka Vietnam",purchase,1.0,0 -44314169,"Magicka Wizard's Survival Kit",purchase,1.0,0 -44314169,"Metro 2033",purchase,1.0,0 -44314169,"Metro Last Light Redux",purchase,1.0,0 -44314169,"Natural Selection 2",purchase,1.0,0 -44314169,"Patch testing for Chivalry",purchase,1.0,0 -44314169,"PixelJunk Monsters Ultimate",purchase,1.0,0 -44314169,"Q.U.B.E.",purchase,1.0,0 -44314169,"Q.U.B.E Director's Cut",purchase,1.0,0 -44314169,"Realm of the Mad God",purchase,1.0,0 -44314169,"Sanctum 2",purchase,1.0,0 -44314169,"Shadowgrounds",purchase,1.0,0 -44314169,"Shadow Warrior",purchase,1.0,0 -44314169,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -44314169,"The Walking Dead Season Two",purchase,1.0,0 -44314169,"Tom Clancy's Ghost Recon Advanced Warfighter 2",purchase,1.0,0 -44314169,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -44314169,"Torchlight",purchase,1.0,0 -44314169,"Ultra Street Fighter IV",purchase,1.0,0 -44314169,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -44314169,"XCOM Enemy Unknown",purchase,1.0,0 -96001430,"Team Fortress 2",purchase,1.0,0 -96001430,"Team Fortress 2",play,207.0,0 -96001430,"And Yet It Moves",purchase,1.0,0 -96001430,"Cogs",purchase,1.0,0 -96001430,"Crayon Physics Deluxe",purchase,1.0,0 -96001430,"Free to Play",purchase,1.0,0 -96001430,"Hammerfight",purchase,1.0,0 -96001430,"PAYDAY The Heist",purchase,1.0,0 -96001430,"VVVVVV",purchase,1.0,0 -296656295,"Team Fortress 2",purchase,1.0,0 -296656295,"Team Fortress 2",play,2.2,0 -296656295,"Aftermath",purchase,1.0,0 -296656295,"Aftermath",play,1.4,0 -296656295,"Heroes & Generals",purchase,1.0,0 -296656295,"Heroes & Generals",play,0.6,0 -296656295,"Counter-Strike Nexon Zombies",purchase,1.0,0 -296656295,"Counter-Strike Nexon Zombies",play,0.1,0 -154787874,"Dota 2",purchase,1.0,0 -154787874,"Dota 2",play,26.0,0 -18149166,"Dota 2",purchase,1.0,0 -18149166,"Dota 2",play,989.0,0 -18149166,"Counter-Strike",purchase,1.0,0 -18149166,"Counter-Strike",play,95.0,0 -18149166,"Might & Magic Heroes VI",purchase,1.0,0 -18149166,"Might & Magic Heroes VI",play,45.0,0 -18149166,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -18149166,"Sid Meier's Civilization IV Beyond the Sword",play,42.0,0 -18149166,"X-COM UFO Defense",purchase,1.0,0 -18149166,"X-COM UFO Defense",play,9.9,0 -18149166,"Counter-Strike Global Offensive",purchase,1.0,0 -18149166,"Counter-Strike Global Offensive",play,7.0,0 -18149166,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -18149166,"Sid Meier's Civilization IV Colonization",play,5.4,0 -18149166,"Age of Empires II HD Edition",purchase,1.0,0 -18149166,"Age of Empires II HD Edition",play,2.7,0 -18149166,"Day of Defeat",purchase,1.0,0 -18149166,"Day of Defeat",play,1.7,0 -18149166,"X-COM Terror from the Deep",purchase,1.0,0 -18149166,"X-COM Terror from the Deep",play,1.2,0 -18149166,"Sid Meier's Civilization IV",purchase,1.0,0 -18149166,"Sid Meier's Civilization IV",play,0.8,0 -18149166,"Deathmatch Classic",purchase,1.0,0 -18149166,"Half-Life",purchase,1.0,0 -18149166,"Half-Life Blue Shift",purchase,1.0,0 -18149166,"Half-Life Opposing Force",purchase,1.0,0 -18149166,"Ricochet",purchase,1.0,0 -18149166,"Sid Meier's Civilization IV",purchase,1.0,0 -18149166,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -18149166,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -18149166,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -18149166,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -18149166,"Team Fortress Classic",purchase,1.0,0 -18149166,"X-COM Apocalypse",purchase,1.0,0 -18149166,"X-COM Enforcer",purchase,1.0,0 -18149166,"X-COM Interceptor",purchase,1.0,0 -181344998,"Half-Life 2",purchase,1.0,0 -181344998,"Half-Life 2",play,0.2,0 -181344998,"Half-Life 2 Lost Coast",purchase,1.0,0 -181344998,"Half-Life 2 Episode One",purchase,1.0,0 -181344998,"Half-Life 2 Episode Two",purchase,1.0,0 -181344998,"Portal",purchase,1.0,0 -175948419,"Counter-Strike Global Offensive",purchase,1.0,0 -175948419,"Counter-Strike Global Offensive",play,1536.0,0 -175948419,"Dota 2",purchase,1.0,0 -175948419,"Dota 2",play,249.0,0 -175948419,"Defy Gravity",purchase,1.0,0 -175948419,"Defy Gravity",play,10.3,0 -175948419,"Camera Obscura",purchase,1.0,0 -175948419,"Camera Obscura",play,10.3,0 -175948419,"Polarity",purchase,1.0,0 -175948419,"Polarity",play,10.2,0 -175948419,"BEEP",purchase,1.0,0 -175948419,"FreeStyle2 Street Basketball",purchase,1.0,0 -175948419,"DiggerOnline",purchase,1.0,0 -175948419,"Camera Obscura Soundtrack",purchase,1.0,0 -175948419,"Clicker Heroes",purchase,1.0,0 -175948419,"Cry of Fear",purchase,1.0,0 -175948419,"Dead Island Epidemic",purchase,1.0,0 -175948419,"Despair",purchase,1.0,0 -175948419,"Escape Machines",purchase,1.0,0 -175948419,"Everlasting Summer",purchase,1.0,0 -175948419,"Magicka Wizard Wars",purchase,1.0,0 -175948419,"Marvel Heroes 2015",purchase,1.0,0 -175948419,"No More Room in Hell",purchase,1.0,0 -175948419,"Out There Somewhere",purchase,1.0,0 -175948419,"Quake Live",purchase,1.0,0 -175948419,"Robotex",purchase,1.0,0 -175948419,"RUSH",purchase,1.0,0 -175948419,"Spiral Knights",purchase,1.0,0 -175948419,"Temper Tantrum",purchase,1.0,0 -175948419,"Warframe",purchase,1.0,0 -175948419,"War Thunder",purchase,1.0,0 -175948419,"Why So Evil",purchase,1.0,0 -268411140,"Modular Combat",purchase,1.0,0 -268411140,"Modular Combat",play,1.8,0 -182326985,"Sid Meier's Civilization V",purchase,1.0,0 -182326985,"Sid Meier's Civilization V",play,200.0,0 -182326985,"Star Wars - Battlefront II",purchase,1.0,0 -182326985,"Star Wars - Battlefront II",play,12.1,0 -182326985,"Dota 2",purchase,1.0,0 -182326985,"Dota 2",play,0.8,0 -182326985,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -182326985,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -82268005,"Dota 2",purchase,1.0,0 -82268005,"Dota 2",play,16.6,0 -79243080,"The Elder Scrolls V Skyrim",purchase,1.0,0 -79243080,"The Elder Scrolls V Skyrim",play,274.0,0 -79243080,"Terraria",purchase,1.0,0 -79243080,"Terraria",play,176.0,0 -79243080,"Earth Defense Force Insect Armageddon",purchase,1.0,0 -79243080,"Earth Defense Force Insect Armageddon",play,86.0,0 -79243080,"Counter-Strike Condition Zero",purchase,1.0,0 -79243080,"Counter-Strike Condition Zero",play,15.4,0 -79243080,"Orcs Must Die!",purchase,1.0,0 -79243080,"Orcs Must Die!",play,13.0,0 -79243080,"Counter-Strike",purchase,1.0,0 -79243080,"Counter-Strike",play,3.1,0 -79243080,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -79243080,"Counter-Strike Condition Zero Deleted Scenes",play,1.0,0 -79243080,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -79243080,"Resident Evil 6 / Biohazard 6",play,0.8,0 -79243080,"The Path",purchase,1.0,0 -79243080,"The Path",play,0.7,0 -79243080,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -79243080,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,0.4,0 -79243080,"Hotline Miami",purchase,1.0,0 -79243080,"Hotline Miami",play,0.4,0 -79243080,"POSTAL",purchase,1.0,0 -79243080,"POSTAL",play,0.3,0 -79243080,"Mount & Blade Warband",purchase,1.0,0 -79243080,"Alan Wake",purchase,1.0,0 -79243080,"Toy Soldiers",purchase,1.0,0 -79243080,"Hotline Miami 2 Wrong Number",purchase,1.0,0 -79243080,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -79243080,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -79243080,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -189801489,"Sid Meier's Civilization V",purchase,1.0,0 -189801489,"Sid Meier's Civilization V",play,45.0,0 -189801489,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -189801489,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -213775315,"Empire Total War",purchase,1.0,0 -213775315,"Empire Total War",play,56.0,0 -213775315,"War Thunder",purchase,1.0,0 -213775315,"War Thunder",play,54.0,0 -213775315,"Napoleon Total War",purchase,1.0,0 -213775315,"Napoleon Total War",play,35.0,0 -213775315,"Team Fortress 2",purchase,1.0,0 -213775315,"Team Fortress 2",play,28.0,0 -213775315,"Robocraft",purchase,1.0,0 -213775315,"Robocraft",play,25.0,0 -213775315,"Five Nights at Freddy's 2",purchase,1.0,0 -213775315,"Five Nights at Freddy's 2",play,6.0,0 -213775315,"Kerbal Space Program",purchase,1.0,0 -213775315,"Kerbal Space Program",play,5.5,0 -213775315,"Star Wars - Battlefront II",purchase,1.0,0 -213775315,"Star Wars - Battlefront II",play,4.5,0 -213775315,"Farming Simulator 15",purchase,1.0,0 -213775315,"Farming Simulator 15",play,3.8,0 -213775315,"Five Nights at Freddy's 3",purchase,1.0,0 -213775315,"Five Nights at Freddy's 3",play,1.4,0 -213775315,"Five Nights at Freddy's",purchase,1.0,0 -213775315,"Five Nights at Freddy's",play,0.9,0 -213775315,"SMITE",purchase,1.0,0 -213775315,"SMITE",play,0.6,0 -213775315,"theHunter",purchase,1.0,0 -213775315,"theHunter",play,0.2,0 -213775315,"Need for Speed Hot Pursuit",purchase,1.0,0 -213775315,"Need for Speed Hot Pursuit",play,0.2,0 -195607832,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -195607832,"Sid Meier's Civilization IV Beyond the Sword",play,208.0,0 -195607832,"Sid Meier's Civilization V",purchase,1.0,0 -195607832,"Sid Meier's Civilization V",play,169.0,0 -195607832,"Company of Heroes 2",purchase,1.0,0 -195607832,"Company of Heroes 2",play,152.0,0 -195607832,"Tropico 4",purchase,1.0,0 -195607832,"Tropico 4",play,46.0,0 -195607832,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -195607832,"Tropico 3 - Steam Special Edition",play,33.0,0 -195607832,"Prison Architect",purchase,1.0,0 -195607832,"Prison Architect",play,13.2,0 -195607832,"Call of Duty World at War",purchase,1.0,0 -195607832,"Call of Duty World at War",play,6.9,0 -195607832,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -195607832,"Sid Meier's Civilization IV Colonization",play,3.8,0 -195607832,"Age of Empires II HD Edition",purchase,1.0,0 -195607832,"Age of Empires II HD Edition",play,3.6,0 -195607832,"Age of Mythology Extended Edition",purchase,1.0,0 -195607832,"Age of Mythology Extended Edition",play,3.6,0 -195607832,"PAYDAY The Heist",purchase,1.0,0 -195607832,"PAYDAY The Heist",play,2.5,0 -195607832,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -195607832,"Sid Meier's Civilization IV Warlords",play,0.9,0 -195607832,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -195607832,"Warhammer 40,000 Dawn of War II",play,0.7,0 -195607832,"Delta Force Black Hawk Down",purchase,1.0,0 -195607832,"Delta Force Black Hawk Down",play,0.6,0 -195607832,"Supreme Commander 2",purchase,1.0,0 -195607832,"Supreme Commander 2",play,0.3,0 -195607832,"East India Company Gold",purchase,1.0,0 -195607832,"East India Company Gold",play,0.3,0 -195607832,"Anomaly Warzone Earth",purchase,1.0,0 -195607832,"Anomaly Warzone Earth",play,0.2,0 -195607832,"Rise of Nations Extended Edition",purchase,1.0,0 -195607832,"Rise of Nations Extended Edition",play,0.2,0 -195607832,"Delta Force Black Hawk Down - Team Sabre",purchase,1.0,0 -195607832,"Counter-Strike Source",purchase,1.0,0 -195607832,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -195607832,"Garry's Mod",purchase,1.0,0 -195607832,"Sid Meier's Civilization IV",purchase,1.0,0 -195607832,"Afterfall InSanity Extended Edition",purchase,1.0,0 -195607832,"Age of Empires II HD The Forgotten",purchase,1.0,0 -195607832,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -195607832,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -195607832,"Company of Heroes 2 - Ardennes Assault",purchase,1.0,0 -195607832,"Company of Heroes 2 - The British Forces",purchase,1.0,0 -195607832,"Darwinia",purchase,1.0,0 -195607832,"Day of Defeat Source",purchase,1.0,0 -195607832,"DEFCON",purchase,1.0,0 -195607832,"Enclave",purchase,1.0,0 -195607832,"Half-Life 2",purchase,1.0,0 -195607832,"Half-Life 2 Deathmatch",purchase,1.0,0 -195607832,"Half-Life 2 Episode One",purchase,1.0,0 -195607832,"Half-Life 2 Episode Two",purchase,1.0,0 -195607832,"Half-Life 2 Lost Coast",purchase,1.0,0 -195607832,"Hitman Absolution",purchase,1.0,0 -195607832,"Knights and Merchants",purchase,1.0,0 -195607832,"KnightShift",purchase,1.0,0 -195607832,"Multiwinia",purchase,1.0,0 -195607832,"Pirates of Black Cove Gold",purchase,1.0,0 -195607832,"Portal",purchase,1.0,0 -195607832,"Sid Meier's Civilization IV",purchase,1.0,0 -195607832,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -195607832,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -195607832,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -195607832,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -195607832,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -195607832,"Teleglitch Die More Edition",purchase,1.0,0 -195607832,"Uplink",purchase,1.0,0 -195607832,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -128817246,"Team Fortress 2",purchase,1.0,0 -128817246,"Team Fortress 2",play,160.0,0 -140725417,"Dota 2",purchase,1.0,0 -140725417,"Dota 2",play,73.0,0 -278021986,"LEGO Jurassic World",purchase,1.0,0 -278021986,"LEGO Jurassic World",play,3.7,0 -209772097,"Terraria",purchase,1.0,0 -209772097,"Terraria",play,104.0,0 -209772097,"Garry's Mod",purchase,1.0,0 -209772097,"Garry's Mod",play,54.0,0 -209772097,"Dead Island",purchase,1.0,0 -209772097,"Dead Island",play,23.0,0 -209772097,"Stranded Deep",purchase,1.0,0 -209772097,"Stranded Deep",play,11.8,0 -209772097,"Spore",purchase,1.0,0 -209772097,"Spore",play,10.9,0 -209772097,"Counter-Strike Global Offensive",purchase,1.0,0 -209772097,"Counter-Strike Global Offensive",play,6.6,0 -209772097,"Geometry Dash",purchase,1.0,0 -209772097,"Geometry Dash",play,6.2,0 -209772097,"Unturned",purchase,1.0,0 -209772097,"Unturned",play,5.9,0 -209772097,"Super Meat Boy",purchase,1.0,0 -209772097,"Super Meat Boy",play,5.0,0 -209772097,"Only If",purchase,1.0,0 -209772097,"Only If",play,1.6,0 -209772097,"Happy Wars",purchase,1.0,0 -209772097,"Happy Wars",play,1.1,0 -209772097,"Survival Postapocalypse Now",purchase,1.0,0 -209772097,"Survival Postapocalypse Now",play,1.0,0 -209772097,"Dino D-Day",purchase,1.0,0 -209772097,"Dino D-Day",play,0.9,0 -209772097,"sZone-Online",purchase,1.0,0 -209772097,"sZone-Online",play,0.8,0 -209772097,"Dizzel",purchase,1.0,0 -209772097,"Dizzel",play,0.5,0 -209772097,"Goat Simulator",purchase,1.0,0 -209772097,"Goat Simulator",play,0.4,0 -209772097,"Realm of the Mad God",purchase,1.0,0 -209772097,"Realm of the Mad God",play,0.3,0 -209772097,"Walkover",purchase,1.0,0 -209772097,"Walkover",play,0.2,0 -209772097,"The Way of Life Free Edition",purchase,1.0,0 -209772097,"The Way of Life Free Edition",play,0.2,0 -209772097,"ORION Prelude",purchase,1.0,0 -209772097,"ORION Prelude",play,0.1,0 -209772097,"Heroes & Generals",purchase,1.0,0 -209772097,"Karos",purchase,1.0,0 -209772097,"Cry of Fear",purchase,1.0,0 -209772097,"Dead Island Epidemic",purchase,1.0,0 -209772097,"Dirty Bomb",purchase,1.0,0 -209772097,"Fallen Earth",purchase,1.0,0 -209772097,"Fork Parker's Holiday Profit Hike",purchase,1.0,0 -209772097,"No More Room in Hell",purchase,1.0,0 -209772097,"Passing Pineview Forest",purchase,1.0,0 -209772097,"Path of Exile",purchase,1.0,0 -209772097,"PAYDAY 2",purchase,1.0,0 -209772097,"Pirates, Vikings, & Knights II",purchase,1.0,0 -209772097,"PlanetSide 2",purchase,1.0,0 -209772097,"Survarium",purchase,1.0,0 -209772097,"Warframe",purchase,1.0,0 -166656680,"Car Mechanic Simulator 2014",purchase,1.0,0 -166656680,"Car Mechanic Simulator 2014",play,10.8,0 -166656680,"Garry's Mod",purchase,1.0,0 -166656680,"Garry's Mod",play,5.3,0 -166656680,"Unturned",purchase,1.0,0 -166656680,"Unturned",play,2.9,0 -166656680,"The Forest",purchase,1.0,0 -166656680,"The Forest",play,0.7,0 -138406331,"Serious Sam HD The Second Encounter",purchase,1.0,0 -138406331,"Serious Sam HD The Second Encounter",play,0.1,0 -5220782,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -5220782,"Call of Duty Black Ops - Multiplayer",play,39.0,0 -5220782,"Counter-Strike Source",purchase,1.0,0 -5220782,"Counter-Strike Source",play,30.0,0 -5220782,"Call of Duty Black Ops",purchase,1.0,0 -5220782,"Call of Duty Black Ops",play,11.0,0 -5220782,"Half-Life 2",purchase,1.0,0 -5220782,"Half-Life 2",play,0.2,0 -5220782,"Counter-Strike",purchase,1.0,0 -5220782,"Day of Defeat",purchase,1.0,0 -5220782,"Deathmatch Classic",purchase,1.0,0 -5220782,"Half-Life",purchase,1.0,0 -5220782,"Half-Life 2 Deathmatch",purchase,1.0,0 -5220782,"Half-Life 2 Lost Coast",purchase,1.0,0 -5220782,"Half-Life Blue Shift",purchase,1.0,0 -5220782,"Half-Life Opposing Force",purchase,1.0,0 -5220782,"Half-Life Source",purchase,1.0,0 -5220782,"Half-Life Deathmatch Source",purchase,1.0,0 -5220782,"Ricochet",purchase,1.0,0 -5220782,"Team Fortress Classic",purchase,1.0,0 -253813925,"Counter-Strike Nexon Zombies",purchase,1.0,0 -253813925,"Counter-Strike Nexon Zombies",play,171.0,0 -253813925,"Counter-Strike Source",purchase,1.0,0 -253813925,"Counter-Strike Source",play,79.0,0 -253813925,"Dying Light",purchase,1.0,0 -253813925,"Dying Light",play,63.0,0 -253813925,"Left 4 Dead 2",purchase,1.0,0 -253813925,"Left 4 Dead 2",play,14.9,0 -253813925,"Counter-Strike Global Offensive",purchase,1.0,0 -253813925,"Counter-Strike Global Offensive",play,14.6,0 -253813925,"Killing Floor 2",purchase,1.0,0 -253813925,"Killing Floor 2",play,8.5,0 -253813925,"No More Room in Hell",purchase,1.0,0 -253813925,"No More Room in Hell",play,6.8,0 -253813925,"Dead Island Riptide",purchase,1.0,0 -253813925,"Dead Island Riptide",play,6.4,0 -253813925,"Loadout",purchase,1.0,0 -253813925,"Loadout",play,4.5,0 -253813925,"Warframe",purchase,1.0,0 -253813925,"Warframe",play,4.1,0 -253813925,"Left 4 Dead",purchase,1.0,0 -253813925,"Left 4 Dead",play,3.3,0 -253813925,"Dota 2",purchase,1.0,0 -253813925,"Dota 2",play,2.1,0 -253813925,"Unturned",purchase,1.0,0 -253813925,"Unturned",play,1.4,0 -253813925,"Clicker Heroes",purchase,1.0,0 -253813925,"Clicker Heroes",play,1.4,0 -253813925,"Team Fortress 2",purchase,1.0,0 -253813925,"Team Fortress 2",play,1.2,0 -253813925,"The Forest",purchase,1.0,0 -253813925,"The Forest",play,1.0,0 -253813925,"Aftermath",purchase,1.0,0 -253813925,"Aftermath",play,0.9,0 -253813925,"Dead Island Epidemic",purchase,1.0,0 -253813925,"Dead Island Epidemic",play,0.8,0 -253813925,"sZone-Online",purchase,1.0,0 -253813925,"sZone-Online",play,0.2,0 -253813925,"HIT",purchase,1.0,0 -253813925,"HIT",play,0.1,0 -253813925,"Run and Fire",purchase,1.0,0 -253813925,"Warface",purchase,1.0,0 -253813925,"Blacklight Retribution",purchase,1.0,0 -253813925,"Counter-Strike Nexon Zombies - Starter Pack",purchase,1.0,0 -257044655,"Dota 2",purchase,1.0,0 -257044655,"Dota 2",play,140.0,0 -257044655,"FreeStyle2 Street Basketball",purchase,1.0,0 -215589538,"Dota 2",purchase,1.0,0 -215589538,"Dota 2",play,1284.0,0 -63122679,"Dota 2",purchase,1.0,0 -63122679,"Dota 2",play,91.0,0 -63122679,"Team Fortress 2",purchase,1.0,0 -63122679,"Team Fortress 2",play,11.8,0 -63122679,"Warframe",purchase,1.0,0 -47596241,"RACE 07",purchase,1.0,0 -47596241,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -79869158,"Half-Life 2 Deathmatch",purchase,1.0,0 -79869158,"Half-Life 2 Deathmatch",play,115.0,0 -79869158,"Half-Life 2 Lost Coast",purchase,1.0,0 -79869158,"Half-Life 2 Lost Coast",play,3.7,0 -79869158,"Team Fortress 2",purchase,1.0,0 -79869158,"Team Fortress 2",play,0.2,0 -94195027,"Counter-Strike Source",purchase,1.0,0 -94195027,"Counter-Strike Source",play,230.0,0 -94195027,"Counter-Strike Global Offensive",purchase,1.0,0 -94195027,"Counter-Strike Global Offensive",play,213.0,0 -94195027,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -94195027,"Call of Duty Black Ops II - Multiplayer",play,109.0,0 -94195027,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -94195027,"Call of Duty Modern Warfare 3 - Multiplayer",play,59.0,0 -94195027,"Warframe",purchase,1.0,0 -94195027,"Warframe",play,49.0,0 -94195027,"DC Universe Online",purchase,1.0,0 -94195027,"DC Universe Online",play,46.0,0 -94195027,"Call of Duty Modern Warfare 3",purchase,1.0,0 -94195027,"Call of Duty Modern Warfare 3",play,11.0,0 -94195027,"Call of Duty Black Ops II",purchase,1.0,0 -94195027,"Call of Duty Black Ops II",play,7.6,0 -94195027,"PROTOTYPE 2",purchase,1.0,0 -94195027,"PROTOTYPE 2",play,7.5,0 -94195027,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -94195027,"Tom Clancy's Ghost Recon Phantoms - EU",play,4.0,0 -94195027,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -94195027,"Call of Duty Black Ops II - Zombies",play,3.7,0 -94195027,"Half-Life 2 Deathmatch",purchase,1.0,0 -94195027,"Half-Life 2 Deathmatch",play,3.3,0 -94195027,"Day of Defeat Source",purchase,1.0,0 -94195027,"Day of Defeat Source",play,3.0,0 -94195027,"Marvel Heroes 2015",purchase,1.0,0 -94195027,"Marvel Heroes 2015",play,2.3,0 -94195027,"Team Fortress 2",purchase,1.0,0 -94195027,"Team Fortress 2",play,1.5,0 -94195027,"Half-Life 2 Lost Coast",purchase,1.0,0 -94195027,"Half-Life 2 Lost Coast",play,1.0,0 -94195027,"Dead Island Epidemic",purchase,1.0,0 -94195027,"Prototype 2 RADNET Access Pack",purchase,1.0,0 -94195027,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -94195027,"theHunter",purchase,1.0,0 -219339286,"Dota 2",purchase,1.0,0 -219339286,"Dota 2",play,2.0,0 -204381357,"Counter-Strike Nexon Zombies",purchase,1.0,0 -204381357,"Counter-Strike Nexon Zombies",play,31.0,0 -211180419,"Dota 2",purchase,1.0,0 -211180419,"Dota 2",play,6.1,0 -306839937,"Secret Files Tunguska",purchase,1.0,0 -306839937,"Secret Files Tunguska",play,7.9,0 -167741133,"Dota 2",purchase,1.0,0 -167741133,"Dota 2",play,1.4,0 -95545167,"Terraria",purchase,1.0,0 -95545167,"Terraria",play,189.0,0 -78690485,"Dota 2",purchase,1.0,0 -78690485,"Dota 2",play,0.3,0 -301635362,"Trove",purchase,1.0,0 -208251718,"Dota 2",purchase,1.0,0 -208251718,"Dota 2",play,3.7,0 -208251718,"Blacklight Retribution",purchase,1.0,0 -208251718,"PlanetSide 2",purchase,1.0,0 -208251718,"Unturned",purchase,1.0,0 -80522069,"Portal 2",purchase,1.0,0 -80522069,"Portal 2",play,64.0,0 -33291661,"Half-Life 2 Lost Coast",purchase,1.0,0 -33291661,"Half-Life 2",purchase,1.0,0 -33291661,"Half-Life 2 Episode One",purchase,1.0,0 -33291661,"Half-Life 2 Episode Two",purchase,1.0,0 -33291661,"Portal",purchase,1.0,0 -114758044,"Dota 2",purchase,1.0,0 -114758044,"Dota 2",play,9.0,0 -214010366,"Dota 2",purchase,1.0,0 -214010366,"Dota 2",play,0.4,0 -183619588,"Dota 2",purchase,1.0,0 -183619588,"Dota 2",play,42.0,0 -86016715,"Robocraft",purchase,1.0,0 -86016715,"Robocraft",play,63.0,0 -86016715,"Unturned",purchase,1.0,0 -86016715,"Unturned",play,32.0,0 -86016715,"Team Fortress 2",purchase,1.0,0 -86016715,"Team Fortress 2",play,13.3,0 -86016715,"PlanetSide 2",purchase,1.0,0 -86016715,"PlanetSide 2",play,5.1,0 -86016715,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -86016715,"Tom Clancy's Ghost Recon Phantoms - EU",play,2.4,0 -86016715,"Loadout",purchase,1.0,0 -86016715,"Loadout",play,0.9,0 -83681553,"Batman Arkham City GOTY",purchase,1.0,0 -83681553,"Batman Arkham City GOTY",play,94.0,0 -83681553,"Kerbal Space Program",purchase,1.0,0 -83681553,"Kerbal Space Program",play,92.0,0 -83681553,"Middle-earth Shadow of Mordor",purchase,1.0,0 -83681553,"Middle-earth Shadow of Mordor",play,69.0,0 -83681553,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -83681553,"The Witcher 2 Assassins of Kings Enhanced Edition",play,39.0,0 -83681553,"Call of Duty Modern Warfare 3",purchase,1.0,0 -83681553,"Call of Duty Modern Warfare 3",play,32.0,0 -83681553,"Wasteland 2",purchase,1.0,0 -83681553,"Wasteland 2",play,27.0,0 -83681553,"War Thunder",purchase,1.0,0 -83681553,"War Thunder",play,25.0,0 -83681553,"Plague Inc Evolved",purchase,1.0,0 -83681553,"Plague Inc Evolved",play,9.8,0 -83681553,"Marvel Heroes 2015",purchase,1.0,0 -83681553,"Marvel Heroes 2015",play,8.5,0 -83681553,"Dota 2",purchase,1.0,0 -83681553,"Dota 2",play,8.4,0 -83681553,"ARK Survival Evolved",purchase,1.0,0 -83681553,"ARK Survival Evolved",play,7.0,0 -83681553,"Team Fortress 2",purchase,1.0,0 -83681553,"Team Fortress 2",play,4.0,0 -83681553,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -83681553,"Call of Duty Modern Warfare 3 - Multiplayer",play,1.1,0 -83681553,"Red Crucible Firestorm",purchase,1.0,0 -83681553,"Wasteland 1 - The Original Classic",purchase,1.0,0 -83681553,"Wasteland 2 Director's Cut",purchase,1.0,0 -186011357,"Dota 2",purchase,1.0,0 -186011357,"Dota 2",play,54.0,0 -164733781,"Dota 2",purchase,1.0,0 -164733781,"Dota 2",play,35.0,0 -196586255,"Dota 2",purchase,1.0,0 -196586255,"Dota 2",play,417.0,0 -293587092,"The Witcher 3 Wild Hunt",purchase,1.0,0 -293587092,"The Witcher 3 Wild Hunt",play,69.0,0 -293587092,"Grand Theft Auto V",purchase,1.0,0 -293587092,"Grand Theft Auto V",play,13.4,0 -293587092,"Tomb Raider",purchase,1.0,0 -293587092,"Tomb Raider",play,12.0,0 -293587092,"The Witcher 3 Wild Hunt - Expansion Pass",purchase,1.0,0 -293587092,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -164643993,"Dota 2",purchase,1.0,0 -164643993,"Dota 2",play,4462.0,0 -164643993,"Robocraft",purchase,1.0,0 -164643993,"Robocraft",play,6.9,0 -139389564,"Dota 2",purchase,1.0,0 -139389564,"Dota 2",play,1.1,0 -260149777,"Dota 2",purchase,1.0,0 -260149777,"Dota 2",play,18.0,0 -294079146,"Mitos.is The Game",purchase,1.0,0 -294079146,"Mitos.is The Game",play,0.4,0 -130882834,"Dota 2",purchase,1.0,0 -130882834,"Dota 2",play,7765.0,0 -130882834,"Counter-Strike Global Offensive",purchase,1.0,0 -130882834,"Counter-Strike Global Offensive",play,36.0,0 -130882834,"EVGA PrecisionX 16",purchase,1.0,0 -130882834,"EVGA PrecisionX 16",play,0.9,0 -130882834,"N.P.P.D. RUSH - The milk of Ultra violet",purchase,1.0,0 -130882834,"Survarium",purchase,1.0,0 -130882834,"Unturned",purchase,1.0,0 -168365851,"Dota 2",purchase,1.0,0 -168365851,"Dota 2",play,1.6,0 -221775355,"Unturned",purchase,1.0,0 -221775355,"Unturned",play,28.0,0 -221775355,"Spore",purchase,1.0,0 -221775355,"Spore",play,24.0,0 -221775355,"Apotheon Arena",purchase,1.0,0 -221775355,"Apotheon Arena",play,2.2,0 -221775355,"Robocraft",purchase,1.0,0 -221775355,"Robocraft",play,0.6,0 -221775355,"BLOCKADE 3D",purchase,1.0,0 -111422562,"Dota 2",purchase,1.0,0 -111422562,"Dota 2",play,1543.0,0 -111422562,"Killing Floor",purchase,1.0,0 -111422562,"Killing Floor",play,132.0,0 -111422562,"Grand Theft Auto V",purchase,1.0,0 -111422562,"Grand Theft Auto V",play,127.0,0 -111422562,"Dead Island",purchase,1.0,0 -111422562,"Dead Island",play,46.0,0 -111422562,"Killing Floor 2",purchase,1.0,0 -111422562,"Killing Floor 2",play,45.0,0 -111422562,"The Walking Dead",purchase,1.0,0 -111422562,"The Walking Dead",play,17.9,0 -111422562,"Dead Island Riptide",purchase,1.0,0 -111422562,"Dead Island Riptide",play,15.0,0 -111422562,"How to Survive",purchase,1.0,0 -111422562,"How to Survive",play,13.2,0 -111422562,"Quake Live",purchase,1.0,0 -111422562,"Quake Live",play,9.9,0 -111422562,"The Walking Dead Season Two",purchase,1.0,0 -111422562,"The Walking Dead Season Two",play,9.5,0 -111422562,"Dead Island Epidemic",purchase,1.0,0 -111422562,"Dead Island Epidemic",play,3.2,0 -111422562,"Left 4 Dead 2",purchase,1.0,0 -111422562,"Left 4 Dead 2",play,1.5,0 -111422562,"Grand Theft Auto IV",purchase,1.0,0 -111422562,"Grand Theft Auto IV",play,1.2,0 -111422562,"Total War ROME II - Emperor Edition",purchase,1.0,0 -111422562,"Total War ROME II - Emperor Edition",play,0.6,0 -111422562,"Cry of Fear",purchase,1.0,0 -111422562,"Cry of Fear",play,0.5,0 -111422562,"Gotham City Impostors Free To Play",purchase,1.0,0 -111422562,"Gotham City Impostors Free To Play",play,0.3,0 -111422562,"Worms Armageddon",purchase,1.0,0 -111422562,"Worms Armageddon",play,0.2,0 -111422562,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -111422562,"Killing Floor Mod Defence Alliance 2",play,0.1,0 -111422562,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -111422562,"Oddworld Abe's Oddysee",purchase,1.0,0 -111422562,"POSTAL 2",purchase,1.0,0 -266659008,"Team Fortress 2",purchase,1.0,0 -266659008,"Team Fortress 2",play,1.5,0 -3347312,"Counter-Strike",purchase,1.0,0 -3347312,"Counter-Strike",play,0.8,0 -3347312,"Day of Defeat",purchase,1.0,0 -3347312,"Deathmatch Classic",purchase,1.0,0 -3347312,"Half-Life",purchase,1.0,0 -3347312,"Half-Life Blue Shift",purchase,1.0,0 -3347312,"Half-Life Opposing Force",purchase,1.0,0 -3347312,"Ricochet",purchase,1.0,0 -3347312,"Team Fortress Classic",purchase,1.0,0 -154425908,"Broken Age",purchase,1.0,0 -154425908,"Broken Age",play,22.0,0 -154425908,"Wasteland 1 - The Original Classic",purchase,1.0,0 -154425908,"Wasteland 1 - The Original Classic",play,6.3,0 -184519153,"Unturned",purchase,1.0,0 -184519153,"Unturned",play,3.1,0 -184519153,"Team Fortress 2",purchase,1.0,0 -184519153,"Team Fortress 2",play,3.0,0 -184519153,"Dota 2",purchase,1.0,0 -184519153,"Dota 2",play,0.2,0 -184519153,"NEOTOKYO",purchase,1.0,0 -258895899,"UberStrike",purchase,1.0,0 -258895899,"UberStrike",play,5.3,0 -258895899,"Unturned",purchase,1.0,0 -258895899,"Unturned",play,1.8,0 -258895899,"Rise of Incarnates",purchase,1.0,0 -258895899,"Rise of Incarnates",play,0.5,0 -258895899,"Codename CURE",purchase,1.0,0 -258895899,"Codename CURE",play,0.4,0 -258895899,"Brick-Force",purchase,1.0,0 -258895899,"Spiral Knights",purchase,1.0,0 -179938717,"Counter-Strike Global Offensive",purchase,1.0,0 -179938717,"Counter-Strike Global Offensive",play,14.5,0 -179938717,"Dota 2",purchase,1.0,0 -179938717,"Dota 2",play,0.7,0 -191527425,"RaceRoom Racing Experience ",purchase,1.0,0 -141569027,"Runestone Keeper",purchase,1.0,0 -141569027,"Runestone Keeper",play,8.6,0 -141569027,"Dota 2",purchase,1.0,0 -141569027,"Dota 2",play,3.6,0 -57670085,"Half-Life",purchase,1.0,0 -205919571,"Dota 2",purchase,1.0,0 -205919571,"Dota 2",play,6.1,0 -84585204,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -84585204,"Unreal Tournament 3 Black Edition",play,33.0,0 -84585204,"Alien Swarm",purchase,1.0,0 -84585204,"Alien Swarm",play,11.2,0 -84585204,"Aliens vs. Predator",purchase,1.0,0 -84585204,"Aliens vs. Predator",play,0.8,0 -84585204,"DiRT Showdown",purchase,1.0,0 -84585204,"DiRT Showdown",play,0.6,0 -84585204,"Unreal II The Awakening",purchase,1.0,0 -84585204,"Unreal II The Awakening",play,0.6,0 -84585204,"Unreal Tournament Game of the Year Edition",purchase,1.0,0 -84585204,"Unreal Tournament Game of the Year Edition",play,0.4,0 -84585204,"Crysis 2 Maximum Edition",purchase,1.0,0 -84585204,"Crysis 2 Maximum Edition",play,0.4,0 -84585204,"Counter-Strike Global Offensive",purchase,1.0,0 -84585204,"Counter-Strike Global Offensive",play,0.3,0 -84585204,"Unreal Gold",purchase,1.0,0 -84585204,"Unreal Gold",play,0.2,0 -84585204,"Unreal Tournament 2004",purchase,1.0,0 -84585204,"Unreal Tournament 2004",play,0.2,0 -84585204,"Portal",purchase,1.0,0 -84585204,"Portal 2",purchase,1.0,0 -84585204,"Counter-Strike",purchase,1.0,0 -84585204,"Counter-Strike Condition Zero",purchase,1.0,0 -84585204,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -84585204,"Counter-Strike Source",purchase,1.0,0 -39061760,"Team Fortress 2",purchase,1.0,0 -39061760,"Team Fortress 2",play,494.0,0 -71888942,"Max Payne 3",purchase,1.0,0 -71888942,"Max Payne 3",play,295.0,0 -71888942,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -71888942,"Dark Souls Prepare to Die Edition",play,15.4,0 -71888942,"Crysis 2 Maximum Edition",purchase,1.0,0 -71888942,"Crysis 2 Maximum Edition",play,8.7,0 -71888942,"FEZ",purchase,1.0,0 -71888942,"FEZ",play,7.9,0 -71888942,"FTL Faster Than Light",purchase,1.0,0 -71888942,"FTL Faster Than Light",play,6.7,0 -71888942,"Surgeon Simulator",purchase,1.0,0 -71888942,"Surgeon Simulator",play,5.9,0 -71888942,"Red Faction Armageddon",purchase,1.0,0 -71888942,"Red Faction Armageddon",play,0.6,0 -71888942,"Dead Space",purchase,1.0,0 -71888942,"Kerbal Space Program",purchase,1.0,0 -71888942,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -71888942,"Batman Arkham City GOTY",purchase,1.0,0 -71888942,"BioShock",purchase,1.0,0 -71888942,"BioShock 2",purchase,1.0,0 -71888942,"BioShock Infinite",purchase,1.0,0 -71888942,"Borderlands",purchase,1.0,0 -71888942,"Borderlands 2",purchase,1.0,0 -71888942,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -71888942,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -71888942,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -71888942,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -71888942,"Braid",purchase,1.0,0 -71888942,"Brothers - A Tale of Two Sons",purchase,1.0,0 -71888942,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -71888942,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -71888942,"Company of Heroes",purchase,1.0,0 -71888942,"Company of Heroes (New Steam Version)",purchase,1.0,0 -71888942,"Company of Heroes Opposing Fronts",purchase,1.0,0 -71888942,"Company of Heroes Tales of Valor",purchase,1.0,0 -71888942,"Darksiders",purchase,1.0,0 -71888942,"Darksiders II",purchase,1.0,0 -71888942,"Dead Rising 2 Off the Record",purchase,1.0,0 -71888942,"Dead Space 2",purchase,1.0,0 -71888942,"Deus Ex Human Revolution",purchase,1.0,0 -71888942,"DiRT Showdown",purchase,1.0,0 -71888942,"Fallout New Vegas",purchase,1.0,0 -71888942,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -71888942,"Fallout New Vegas Dead Money",purchase,1.0,0 -71888942,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -71888942,"Just Cause 2",purchase,1.0,0 -71888942,"L.A. Noire",purchase,1.0,0 -71888942,"Left 4 Dead 2",purchase,1.0,0 -71888942,"Mars War Logs",purchase,1.0,0 -71888942,"Max Payne 3 Season Pass",purchase,1.0,0 -71888942,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -71888942,"Medal of Honor(TM) Single Player",purchase,1.0,0 -71888942,"Medal of Honor Pre-Order",purchase,1.0,0 -71888942,"Metro 2033",purchase,1.0,0 -71888942,"Mirror's Edge",purchase,1.0,0 -71888942,"Papers, Please",purchase,1.0,0 -71888942,"Resident Evil Operation Raccoon City",purchase,1.0,0 -71888942,"Reus",purchase,1.0,0 -71888942,"Saints Row The Third",purchase,1.0,0 -71888942,"Scribblenauts Unlimited",purchase,1.0,0 -71888942,"Sniper Elite",purchase,1.0,0 -71888942,"Sniper Elite V2",purchase,1.0,0 -71888942,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -71888942,"Spec Ops The Line",purchase,1.0,0 -71888942,"Star Wars - Battlefront II",purchase,1.0,0 -71888942,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -71888942,"Star Wars Dark Forces",purchase,1.0,0 -71888942,"Star Wars Empire at War Gold",purchase,1.0,0 -71888942,"Star Wars Knights of the Old Republic",purchase,1.0,0 -71888942,"Star Wars The Force Unleashed II",purchase,1.0,0 -71888942,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -71888942,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -71888942,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -71888942,"Star Wars Republic Commando",purchase,1.0,0 -71888942,"Star Wars Starfighter",purchase,1.0,0 -71888942,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -71888942,"The Elder Scrolls V Skyrim",purchase,1.0,0 -71888942,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -71888942,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -71888942,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -71888942,"Titan Quest",purchase,1.0,0 -71888942,"Tomb Raider",purchase,1.0,0 -71888942,"Tony Hawk's Pro Skater HD",purchase,1.0,0 -71888942,"Torchlight II",purchase,1.0,0 -71888942,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -280969114,"Team Fortress 2",purchase,1.0,0 -280969114,"Team Fortress 2",play,92.0,0 -30739537,"Counter-Strike",purchase,1.0,0 -30739537,"Counter-Strike",play,57.0,0 -30739537,"Counter-Strike Condition Zero",purchase,1.0,0 -30739537,"Counter-Strike Condition Zero",play,0.5,0 -30739537,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -30739537,"Day of Defeat",purchase,1.0,0 -30739537,"Deathmatch Classic",purchase,1.0,0 -30739537,"Ricochet",purchase,1.0,0 -210212891,"Dota 2",purchase,1.0,0 -210212891,"Dota 2",play,5.0,0 -76032287,"Counter-Strike Global Offensive",purchase,1.0,0 -76032287,"Counter-Strike Global Offensive",play,1971.0,0 -76032287,"Dota 2",purchase,1.0,0 -76032287,"Dota 2",play,896.0,0 -76032287,"Counter-Strike",purchase,1.0,0 -76032287,"Counter-Strike",play,345.0,0 -76032287,"Assassin's Creed III",purchase,1.0,0 -76032287,"Assassin's Creed III",play,57.0,0 -76032287,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -76032287,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,53.0,0 -76032287,"Hitman Absolution",purchase,1.0,0 -76032287,"Hitman Absolution",play,43.0,0 -76032287,"Sniper Elite 3",purchase,1.0,0 -76032287,"Sniper Elite 3",play,23.0,0 -76032287,"Counter-Strike Condition Zero",purchase,1.0,0 -76032287,"Counter-Strike Condition Zero",play,16.0,0 -76032287,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -76032287,"Counter-Strike Condition Zero Deleted Scenes",play,14.9,0 -76032287,"F.E.A.R. 3",purchase,1.0,0 -76032287,"F.E.A.R. 3",play,13.7,0 -76032287,"Half-Life Source",purchase,1.0,0 -76032287,"Half-Life Source",play,13.4,0 -76032287,"Half-Life 2",purchase,1.0,0 -76032287,"Half-Life 2",play,4.6,0 -76032287,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -76032287,"METAL GEAR SOLID V GROUND ZEROES",play,2.5,0 -76032287,"Hitman Codename 47",purchase,1.0,0 -76032287,"Hitman Codename 47",play,0.4,0 -76032287,"Age of Empires II HD Edition",purchase,1.0,0 -76032287,"Half-Life",purchase,1.0,0 -76032287,"Half-Life 2 Deathmatch",purchase,1.0,0 -76032287,"Half-Life 2 Episode One",purchase,1.0,0 -76032287,"Half-Life 2 Episode Two",purchase,1.0,0 -76032287,"Half-Life 2 Lost Coast",purchase,1.0,0 -76032287,"Half-Life Blue Shift",purchase,1.0,0 -76032287,"Half-Life Opposing Force",purchase,1.0,0 -76032287,"Half-Life Deathmatch Source",purchase,1.0,0 -76032287,"Hitman 2 Silent Assassin",purchase,1.0,0 -76032287,"Hitman Blood Money",purchase,1.0,0 -76032287,"Hitman Sniper Challenge",purchase,1.0,0 -76032287,"Team Fortress Classic",purchase,1.0,0 -182589428,"Counter-Strike Source",purchase,1.0,0 -182589428,"Counter-Strike Source",play,5.4,0 -182589428,"Garry's Mod",purchase,1.0,0 -21590667,"Half-Life",purchase,1.0,0 -21590667,"Half-Life",play,0.4,0 -21590667,"Counter-Strike Source",purchase,1.0,0 -21590667,"Day of Defeat Source",purchase,1.0,0 -21590667,"Half-Life 2 Deathmatch",purchase,1.0,0 -21590667,"Half-Life 2 Lost Coast",purchase,1.0,0 -21590667,"Half-Life Blue Shift",purchase,1.0,0 -21590667,"Half-Life Opposing Force",purchase,1.0,0 -21590667,"Team Fortress Classic",purchase,1.0,0 -103604903,"Dota 2",purchase,1.0,0 -103604903,"Dota 2",play,0.3,0 -58298928,"Counter-Strike",purchase,1.0,0 -58298928,"Counter-Strike",play,119.0,0 -58298928,"Counter-Strike Condition Zero",purchase,1.0,0 -58298928,"Counter-Strike Condition Zero",play,22.0,0 -58298928,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -58298928,"Counter-Strike Condition Zero Deleted Scenes",play,7.0,0 -58298928,"Day of Defeat",purchase,1.0,0 -58298928,"Day of Defeat",play,0.9,0 -58298928,"Deathmatch Classic",purchase,1.0,0 -58298928,"Deathmatch Classic",play,0.2,0 -58298928,"Ricochet",purchase,1.0,0 -153148942,"Dota 2",purchase,1.0,0 -153148942,"Dota 2",play,71.0,0 -153148942,"Borderlands 2 RU",purchase,1.0,0 -153148942,"Borderlands 2 RU",play,33.0,0 -153148942,"Left 4 Dead 2",purchase,1.0,0 -153148942,"Left 4 Dead 2",play,18.9,0 -153148942,"Neverwinter",purchase,1.0,0 -153148942,"Neverwinter",play,13.9,0 -153148942,"PAYDAY 2",purchase,1.0,0 -153148942,"PAYDAY 2",play,12.9,0 -153148942,"Counter-Strike Global Offensive",purchase,1.0,0 -153148942,"Counter-Strike Global Offensive",play,9.1,0 -153148942,"Unturned",purchase,1.0,0 -153148942,"Unturned",play,2.8,0 -153148942,"Garry's Mod",purchase,1.0,0 -153148942,"Garry's Mod",play,1.8,0 -153148942,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -153148942,"Red Faction Guerrilla Steam Edition",play,1.6,0 -153148942,"Orcs Must Die! 2",purchase,1.0,0 -153148942,"Orcs Must Die! 2",play,0.7,0 -153148942,"Robocraft",purchase,1.0,0 -153148942,"Robocraft",play,0.6,0 -153148942,"Spooky's House of Jump Scares",purchase,1.0,0 -153148942,"Spooky's House of Jump Scares",play,0.4,0 -153148942,"Chivalry Medieval Warfare",purchase,1.0,0 -153148942,"Chivalry Medieval Warfare",play,0.4,0 -153148942,"Trine 2",purchase,1.0,0 -153148942,"Trine 2",play,0.4,0 -153148942,"Golden Rush",purchase,1.0,0 -153148942,"Golden Rush",play,0.3,0 -153148942,"No More Room in Hell",purchase,1.0,0 -153148942,"No More Room in Hell",play,0.3,0 -153148942,"Team Fortress 2",purchase,1.0,0 -153148942,"Team Fortress 2",play,0.2,0 -153148942,"The Witcher Enhanced Edition",purchase,1.0,0 -153148942,"The Witcher Enhanced Edition",play,0.2,0 -153148942,"Painkiller Redemption",purchase,1.0,0 -153148942,"Painkiller Redemption",play,0.2,0 -153148942,"Panzar",purchase,1.0,0 -153148942,"Panzar",play,0.2,0 -153148942,"Trove",purchase,1.0,0 -153148942,"Trove",play,0.1,0 -153148942,"ORION Prelude",purchase,1.0,0 -153148942,"Loadout",purchase,1.0,0 -153148942,"Aftermath",purchase,1.0,0 -153148942,"Borderlands 2",purchase,1.0,0 -153148942,"Gotham City Impostors Free To Play",purchase,1.0,0 -153148942,"Lucius",purchase,1.0,0 -153148942,"Magicka Wizard Wars",purchase,1.0,0 -153148942,"My Lands",purchase,1.0,0 -153148942,"Nosgoth",purchase,1.0,0 -153148942,"Patch testing for Chivalry",purchase,1.0,0 -153148942,"Remember Me",purchase,1.0,0 -153148942,"TERA",purchase,1.0,0 -153148942,"The Expendabros",purchase,1.0,0 -153148942,"The Hat Man Shadow Ward",purchase,1.0,0 -153148942,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -153148942,"War Thunder",purchase,1.0,0 -224940599,"Dota 2",purchase,1.0,0 -224940599,"Dota 2",play,0.3,0 -60324268,"Counter-Strike Condition Zero",purchase,1.0,0 -60324268,"Counter-Strike Condition Zero",play,1.6,0 -60324268,"Counter-Strike",purchase,1.0,0 -60324268,"Counter-Strike",play,0.3,0 -60324268,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -188046497,"America's Army Proving Grounds",purchase,1.0,0 -188046497,"Blacklight Retribution",purchase,1.0,0 -188046497,"BLOCKADE 3D",purchase,1.0,0 -188046497,"Cry of Fear",purchase,1.0,0 -188046497,"Firefall",purchase,1.0,0 -188046497,"Free to Play",purchase,1.0,0 -188046497,"Heroes & Generals",purchase,1.0,0 -188046497,"No More Room in Hell",purchase,1.0,0 -188046497,"Realm of the Mad God",purchase,1.0,0 -188046497,"Robocraft",purchase,1.0,0 -188046497,"The Banner Saga Factions",purchase,1.0,0 -188046497,"The Mighty Quest For Epic Loot",purchase,1.0,0 -188046497,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -188046497,"Unturned",purchase,1.0,0 -188046497,"Warframe",purchase,1.0,0 -188046497,"War Thunder",purchase,1.0,0 -24858005,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -24858005,"Call of Duty Modern Warfare 2 - Multiplayer",play,228.0,0 -24858005,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -24858005,"Call of Duty Black Ops - Multiplayer",play,147.0,0 -24858005,"Call of Duty Black Ops",purchase,1.0,0 -24858005,"Call of Duty Black Ops",play,25.0,0 -24858005,"Left 4 Dead",purchase,1.0,0 -24858005,"Left 4 Dead",play,13.9,0 -24858005,"Call of Duty Modern Warfare 2",purchase,1.0,0 -24858005,"Call of Duty Modern Warfare 2",play,7.1,0 -24858005,"Alpha Prime",purchase,1.0,0 -24858005,"Alpha Prime",play,0.5,0 -24858005,"Half-Life Source",purchase,1.0,0 -24858005,"Half-Life Source",play,0.2,0 -24858005,"Call of Duty Modern Warfare 2 Stimulus Package",purchase,1.0,0 -24858005,"Counter-Strike Source",purchase,1.0,0 -24858005,"Half-Life 2",purchase,1.0,0 -24858005,"Half-Life 2 Deathmatch",purchase,1.0,0 -24858005,"Half-Life 2 Lost Coast",purchase,1.0,0 -24858005,"Half-Life Deathmatch Source",purchase,1.0,0 -212369949,"7 Days to Die",purchase,1.0,0 -212369949,"7 Days to Die",play,70.0,0 -298715051,"Counter-Strike Global Offensive",purchase,1.0,0 -298715051,"Counter-Strike Global Offensive",play,62.0,0 -298715051,"Unturned",purchase,1.0,0 -298715051,"Unturned",play,1.1,0 -298715051,"Crusaders of the Lost Idols",purchase,1.0,0 -298715051,"Crusaders of the Lost Idols",play,0.6,0 -298715051,"AdVenture Capitalist",purchase,1.0,0 -298715051,"AdVenture Capitalist",play,0.2,0 -298715051,"Endless Sky",purchase,1.0,0 -298715051,"BloodRealm Battlegrounds",purchase,1.0,0 -298715051,"Clicker Heroes",purchase,1.0,0 -298715051,"Counter-Strike Nexon Zombies",purchase,1.0,0 -298715051,"Dungeon Defenders II",purchase,1.0,0 -298715051,"Eternal Fate",purchase,1.0,0 -298715051,"Gladiators Online Death Before Dishonor",purchase,1.0,0 -298715051,"RaceRoom Racing Experience ",purchase,1.0,0 -298715051,"Trove",purchase,1.0,0 -14507290,"Counter-Strike Global Offensive",purchase,1.0,0 -14507290,"Counter-Strike Global Offensive",play,310.0,0 -14507290,"Counter-Strike Source",purchase,1.0,0 -14507290,"Counter-Strike Source",play,249.0,0 -14507290,"DiRT 3",purchase,1.0,0 -14507290,"DiRT 3",play,8.6,0 -14507290,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -14507290,"The Secret of Monkey Island Special Edition",play,0.3,0 -14507290,"Counter-Strike",purchase,1.0,0 -14507290,"Counter-Strike",play,0.3,0 -14507290,"Counter-Strike Condition Zero",purchase,1.0,0 -14507290,"Counter-Strike Condition Zero",play,0.3,0 -14507290,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -14507290,"DiRT 3 Complete Edition",purchase,1.0,0 -14507290,"Half-Life 2",purchase,1.0,0 -14507290,"Half-Life 2 Deathmatch",purchase,1.0,0 -14507290,"Half-Life 2 Lost Coast",purchase,1.0,0 -99802512,"Left 4 Dead 2",purchase,1.0,0 -99802512,"Left 4 Dead 2",play,23.0,0 -99802512,"Train Simulator",purchase,1.0,0 -99802512,"Train Simulator",play,6.9,0 -99802512,"Supreme Commander",purchase,1.0,0 -99802512,"Supreme Commander Forged Alliance",purchase,1.0,0 -227727537,"Team Fortress 2",purchase,1.0,0 -227727537,"Team Fortress 2",play,0.6,0 -160806303,"Dota 2",purchase,1.0,0 -160806303,"Dota 2",play,0.2,0 -258553583,"Dota 2",purchase,1.0,0 -258553583,"Dota 2",play,1.7,0 -258553583,"Ragnarok Online 2",purchase,1.0,0 -144900175,"Dota 2",purchase,1.0,0 -144900175,"Dota 2",play,1323.0,0 -152945749,"Dota 2",purchase,1.0,0 -152945749,"Dota 2",play,825.0,0 -152945749,"Clicker Heroes",purchase,1.0,0 -152945749,"Double Action Boogaloo",purchase,1.0,0 -152945749,"Robocraft",purchase,1.0,0 -152945749,"Transformice",purchase,1.0,0 -152945749,"Unturned",purchase,1.0,0 -153281729,"Dota 2",purchase,1.0,0 -153281729,"Dota 2",play,0.4,0 -285862168,"Counter-Strike Global Offensive",purchase,1.0,0 -285862168,"Counter-Strike Global Offensive",play,8.5,0 -285862168,"Robocraft",purchase,1.0,0 -285862168,"Robocraft",play,5.3,0 -285862168,"Warframe",purchase,1.0,0 -285862168,"Warframe",play,3.8,0 -285862168,"Unturned",purchase,1.0,0 -285862168,"Unturned",play,1.6,0 -182038346,"Omerta - City of Gangsters",purchase,1.0,0 -182038346,"Omerta - City of Gangsters",play,79.0,0 -182038346,"Omerta - City of Gangsters The Bulgarian Colossus",purchase,1.0,0 -182038346,"Omerta - Damsel in Distress",purchase,1.0,0 -182038346,"Omerta - The Con Artist",purchase,1.0,0 -182038346,"Omerta - The Japanese Incentive",purchase,1.0,0 -212082446,"Dota 2",purchase,1.0,0 -212082446,"Dota 2",play,1.9,0 -188026674,"Unturned",purchase,1.0,0 -188026674,"Unturned",play,0.4,0 -210411109,"Dota 2",purchase,1.0,0 -210411109,"Dota 2",play,74.0,0 -210411109,"Blacklight Retribution",purchase,1.0,0 -210411109,"FreeStyle2 Street Basketball",purchase,1.0,0 -210411109,"Warframe",purchase,1.0,0 -188366796,"Dota 2",purchase,1.0,0 -188366796,"Dota 2",play,555.0,0 -188366796,"GunZ 2 The Second Duel",purchase,1.0,0 -188366796,"Warframe",purchase,1.0,0 -99575517,"Dishonored (RU)",purchase,1.0,0 -99575517,"Dishonored (RU)",play,5.9,0 -99575517,"Aliens vs. Predator",purchase,1.0,0 -99575517,"Aliens vs. Predator",play,1.3,0 -99575517,"Order of War",purchase,1.0,0 -99575517,"Order of War",play,0.6,0 -83497449,"Counter-Strike Global Offensive",purchase,1.0,0 -83497449,"Counter-Strike Global Offensive",play,216.0,0 -83497449,"Terraria",purchase,1.0,0 -83497449,"Terraria",play,181.0,0 -83497449,"Team Fortress 2",purchase,1.0,0 -83497449,"Team Fortress 2",play,145.0,0 -83497449,"Hero Siege",purchase,1.0,0 -83497449,"Hero Siege",play,39.0,0 -83497449,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -83497449,"Dragon Age Origins - Ultimate Edition",play,36.0,0 -83497449,"Rogue Legacy",purchase,1.0,0 -83497449,"Rogue Legacy",play,29.0,0 -83497449,"Age of Empires III Complete Collection",purchase,1.0,0 -83497449,"Age of Empires III Complete Collection",play,24.0,0 -83497449,"7 Days to Die",purchase,1.0,0 -83497449,"7 Days to Die",play,23.0,0 -83497449,"DARK SOULS II",purchase,1.0,0 -83497449,"DARK SOULS II",play,23.0,0 -83497449,"Darksiders",purchase,1.0,0 -83497449,"Darksiders",play,15.9,0 -83497449,"Dota 2",purchase,1.0,0 -83497449,"Dota 2",play,10.8,0 -83497449,"Borderlands The Pre-Sequel",purchase,1.0,0 -83497449,"Borderlands The Pre-Sequel",play,10.3,0 -83497449,"Don't Starve Together Beta",purchase,1.0,0 -83497449,"Don't Starve Together Beta",play,10.1,0 -83497449,"Orcs Must Die!",purchase,1.0,0 -83497449,"Orcs Must Die!",play,9.5,0 -83497449,"Magicka",purchase,1.0,0 -83497449,"Magicka",play,7.6,0 -83497449,"Don't Starve",purchase,1.0,0 -83497449,"Don't Starve",play,6.2,0 -83497449,"Company of Heroes",purchase,1.0,0 -83497449,"Company of Heroes",play,4.6,0 -83497449,"Grand Theft Auto IV",purchase,1.0,0 -83497449,"Grand Theft Auto IV",play,3.0,0 -83497449,"Age of Empires II HD Edition",purchase,1.0,0 -83497449,"Age of Empires II HD Edition",play,2.2,0 -83497449,"Darksiders II",purchase,1.0,0 -83497449,"Darksiders II",play,1.5,0 -83497449,"Chivalry Medieval Warfare",purchase,1.0,0 -83497449,"Chivalry Medieval Warfare",play,0.4,0 -83497449,"Garry's Mod",purchase,1.0,0 -83497449,"Age of Empires II HD The Forgotten",purchase,1.0,0 -83497449,"Company of Heroes (New Steam Version)",purchase,1.0,0 -83497449,"Darksiders II Deathinitive Edition",purchase,1.0,0 -83497449,"Darksiders II Soundtrack",purchase,1.0,0 -83497449,"Darksiders Soundtrack",purchase,1.0,0 -83497449,"Don't Starve Reign of Giants",purchase,1.0,0 -83497449,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -83497449,"Hero Siege - The Karp of Doom",purchase,1.0,0 -83497449,"Patch testing for Chivalry",purchase,1.0,0 -83497449,"Torchlight II",purchase,1.0,0 -139016142,"Counter-Strike Global Offensive",purchase,1.0,0 -139016142,"Counter-Strike Global Offensive",play,345.0,0 -139016142,"Neverwinter",purchase,1.0,0 -139016142,"Neverwinter",play,81.0,0 -139016142,"Garry's Mod",purchase,1.0,0 -139016142,"Garry's Mod",play,68.0,0 -139016142,"Borderlands 2",purchase,1.0,0 -139016142,"Borderlands 2",play,59.0,0 -139016142,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -139016142,"Call of Duty Modern Warfare 2 - Multiplayer",play,57.0,0 -139016142,"The Elder Scrolls V Skyrim",purchase,1.0,0 -139016142,"The Elder Scrolls V Skyrim",play,48.0,0 -139016142,"SMITE",purchase,1.0,0 -139016142,"SMITE",play,47.0,0 -139016142,"Call of Duty Black Ops III",purchase,1.0,0 -139016142,"Call of Duty Black Ops III",play,14.8,0 -139016142,"Dead Island",purchase,1.0,0 -139016142,"Dead Island",play,8.9,0 -139016142,"BattleBlock Theater",purchase,1.0,0 -139016142,"BattleBlock Theater",play,8.3,0 -139016142,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -139016142,"Call of Duty Advanced Warfare - Multiplayer",play,8.0,0 -139016142,"BioShock Infinite",purchase,1.0,0 -139016142,"BioShock Infinite",play,7.8,0 -139016142,"Half-Life 2",purchase,1.0,0 -139016142,"Half-Life 2",play,7.4,0 -139016142,"Don't Starve Together Beta",purchase,1.0,0 -139016142,"Don't Starve Together Beta",play,5.6,0 -139016142,"Dota 2",purchase,1.0,0 -139016142,"Dota 2",play,5.1,0 -139016142,"Spore",purchase,1.0,0 -139016142,"Spore",play,4.1,0 -139016142,"Terraria",purchase,1.0,0 -139016142,"Terraria",play,2.3,0 -139016142,"Half-Life",purchase,1.0,0 -139016142,"Half-Life",play,1.7,0 -139016142,"The Binding of Isaac",purchase,1.0,0 -139016142,"The Binding of Isaac",play,1.5,0 -139016142,"Team Fortress 2",purchase,1.0,0 -139016142,"Team Fortress 2",play,0.5,0 -139016142,"Chivalry Medieval Warfare",purchase,1.0,0 -139016142,"Chivalry Medieval Warfare",play,0.4,0 -139016142,"Counter-Strike Condition Zero",purchase,1.0,0 -139016142,"Call of Duty Advanced Warfare",purchase,1.0,0 -139016142,"Call of Duty Modern Warfare 2",purchase,1.0,0 -139016142,"Counter-Strike",purchase,1.0,0 -139016142,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -139016142,"Counter-Strike Source",purchase,1.0,0 -139016142,"Half-Life 2 Lost Coast",purchase,1.0,0 -139016142,"Left 4 Dead 2",purchase,1.0,0 -139016142,"Patch testing for Chivalry",purchase,1.0,0 -139016142,"TERA",purchase,1.0,0 -139016142,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -139016142,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -139016142,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -218317467,"PAYDAY 2",purchase,1.0,0 -218317467,"PAYDAY 2",play,145.0,0 -218317467,"Terraria",purchase,1.0,0 -218317467,"Terraria",play,50.0,0 -218317467,"Dead Island",purchase,1.0,0 -218317467,"Dead Island",play,50.0,0 -218317467,"Sleeping Dogs Definitive Edition",purchase,1.0,0 -218317467,"Sleeping Dogs Definitive Edition",play,39.0,0 -218317467,"Torchlight II",purchase,1.0,0 -218317467,"Torchlight II",play,30.0,0 -218317467,"Just Cause",purchase,1.0,0 -218317467,"Just Cause",play,24.0,0 -218317467,"Hitman Codename 47",purchase,1.0,0 -218317467,"Hitman Codename 47",play,12.3,0 -218317467,"Middle-earth Shadow of Mordor",purchase,1.0,0 -218317467,"Middle-earth Shadow of Mordor",play,10.1,0 -218317467,"XCOM Enemy Unknown",purchase,1.0,0 -218317467,"XCOM Enemy Unknown",play,9.4,0 -218317467,"Hitman 2 Silent Assassin",purchase,1.0,0 -218317467,"Hitman 2 Silent Assassin",play,7.4,0 -218317467,"Metro 2033 Redux",purchase,1.0,0 -218317467,"Metro 2033 Redux",play,6.9,0 -218317467,"Tomb Raider I",purchase,1.0,0 -218317467,"Tomb Raider I",play,5.5,0 -218317467,"The Witcher Enhanced Edition",purchase,1.0,0 -218317467,"The Witcher Enhanced Edition",play,5.4,0 -218317467,"Kane & Lynch Dead Men",purchase,1.0,0 -218317467,"Kane & Lynch Dead Men",play,5.1,0 -218317467,"Saints Row 2",purchase,1.0,0 -218317467,"Saints Row 2",play,1.6,0 -218317467,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -218317467,"Star Wars The Force Unleashed Ultimate Sith Edition",play,1.3,0 -218317467,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -218317467,"The Incredible Adventures of Van Helsing",play,0.8,0 -218317467,"Amnesia The Dark Descent",purchase,1.0,0 -218317467,"Arma 3",purchase,1.0,0 -218317467,"Arma 3 Helicopters",purchase,1.0,0 -218317467,"Arma 3 Karts",purchase,1.0,0 -218317467,"Arma 3 Marksmen",purchase,1.0,0 -218317467,"Arma 3 Zeus",purchase,1.0,0 -218317467,"Battlestations Midway",purchase,1.0,0 -218317467,"Battlestations Pacific",purchase,1.0,0 -218317467,"Blood Omen 2 Legacy of Kain",purchase,1.0,0 -218317467,"Chivalry Medieval Warfare",purchase,1.0,0 -218317467,"Darksiders",purchase,1.0,0 -218317467,"Darksiders II",purchase,1.0,0 -218317467,"Darksiders II Deathinitive Edition",purchase,1.0,0 -218317467,"Darksiders II Soundtrack",purchase,1.0,0 -218317467,"Darksiders Soundtrack",purchase,1.0,0 -218317467,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -218317467,"Dead Island Riptide",purchase,1.0,0 -218317467,"Deus Ex Game of the Year Edition",purchase,1.0,0 -218317467,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -218317467,"Deus Ex Invisible War",purchase,1.0,0 -218317467,"Deus Ex The Fall",purchase,1.0,0 -218317467,"Hitman Absolution",purchase,1.0,0 -218317467,"Hitman Blood Money",purchase,1.0,0 -218317467,"Hitman Contracts",purchase,1.0,0 -218317467,"Hitman Sniper Challenge",purchase,1.0,0 -218317467,"Insurgency",purchase,1.0,0 -218317467,"Just Cause 2",purchase,1.0,0 -218317467,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -218317467,"Lara Croft and the Guardian of Light",purchase,1.0,0 -218317467,"Legacy of Kain Defiance",purchase,1.0,0 -218317467,"Legacy of Kain Soul Reaver",purchase,1.0,0 -218317467,"Legacy of Kain Soul Reaver 2",purchase,1.0,0 -218317467,"Metro Last Light Redux",purchase,1.0,0 -218317467,"Nosgoth",purchase,1.0,0 -218317467,"Patch testing for Chivalry",purchase,1.0,0 -218317467,"Saints Row The Third",purchase,1.0,0 -218317467,"Saints Row IV",purchase,1.0,0 -218317467,"Star Wars - Battlefront II",purchase,1.0,0 -218317467,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -218317467,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -218317467,"Star Wars Dark Forces",purchase,1.0,0 -218317467,"Star Wars Empire at War Gold",purchase,1.0,0 -218317467,"Star Wars Knights of the Old Republic",purchase,1.0,0 -218317467,"Star Wars The Force Unleashed II",purchase,1.0,0 -218317467,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -218317467,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -218317467,"Star Wars Republic Commando",purchase,1.0,0 -218317467,"Star Wars Starfighter",purchase,1.0,0 -218317467,"Star Wars The Clone Wars Republic Heroes",purchase,1.0,0 -218317467,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -218317467,"The Elder Scrolls V Skyrim",purchase,1.0,0 -218317467,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -218317467,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -218317467,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -218317467,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -218317467,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -218317467,"Thief",purchase,1.0,0 -218317467,"Thief - Ghost",purchase,1.0,0 -218317467,"Thief - Opportunist",purchase,1.0,0 -218317467,"Thief - Predator",purchase,1.0,0 -218317467,"Thief - The Bank Heist",purchase,1.0,0 -218317467,"Thief 2",purchase,1.0,0 -218317467,"Thief Deadly Shadows",purchase,1.0,0 -218317467,"Thief Gold",purchase,1.0,0 -218317467,"Tomb Raider",purchase,1.0,0 -218317467,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -218317467,"Tomb Raider Anniversary",purchase,1.0,0 -218317467,"Tomb Raider Chronicles",purchase,1.0,0 -218317467,"Tomb Raider Legend",purchase,1.0,0 -218317467,"Tomb Raider The Last Revelation",purchase,1.0,0 -218317467,"Tomb Raider Underworld",purchase,1.0,0 -218317467,"Tomb Raider II",purchase,1.0,0 -218317467,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -218317467,"XCOM Enemy Within",purchase,1.0,0 -150793375,"Dota 2",purchase,1.0,0 -150793375,"Dota 2",play,7.7,0 -93212858,"The Elder Scrolls Online Tamriel Unlimited",purchase,1.0,0 -93212858,"The Elder Scrolls Online Tamriel Unlimited",play,17.7,0 -93212858,"Dead Island",purchase,1.0,0 -93212858,"Dead Island",play,7.7,0 -93212858,"Happy Wars",purchase,1.0,0 -93212858,"Happy Wars",play,0.2,0 -93212858,"Portal 2",purchase,1.0,0 -93212858,"Sid Meier's Civilization IV",purchase,1.0,0 -93212858,"Sid Meier's Civilization IV",purchase,1.0,0 -202174504,"Team Fortress 2",purchase,1.0,0 -202174504,"Team Fortress 2",play,0.3,0 -202174504,"America's Army 3",purchase,1.0,0 -202174504,"America's Army Proving Grounds",purchase,1.0,0 -202174504,"HAWKEN",purchase,1.0,0 -202174504,"Loadout",purchase,1.0,0 -202174504,"Nosgoth",purchase,1.0,0 -202174504,"Super Monday Night Combat",purchase,1.0,0 -202174504,"Tactical Intervention",purchase,1.0,0 -202174504,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -202174504,"Unturned",purchase,1.0,0 -202174504,"Warframe",purchase,1.0,0 -202174504,"War Thunder",purchase,1.0,0 -50818751,"Team Fortress 2",purchase,1.0,0 -50818751,"Team Fortress 2",play,2030.0,0 -50818751,"Dota 2",purchase,1.0,0 -50818751,"Dota 2",play,1603.0,0 -50818751,"Assassin's Creed Revelations",purchase,1.0,0 -50818751,"Assassin's Creed Revelations",play,328.0,0 -50818751,"Evolve",purchase,1.0,0 -50818751,"Evolve",play,249.0,0 -50818751,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -50818751,"Call of Duty Modern Warfare 2 - Multiplayer",play,242.0,0 -50818751,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -50818751,"Rising Storm/Red Orchestra 2 Multiplayer",play,195.0,0 -50818751,"Left 4 Dead 2",purchase,1.0,0 -50818751,"Left 4 Dead 2",play,181.0,0 -50818751,"Counter-Strike",purchase,1.0,0 -50818751,"Counter-Strike",play,150.0,0 -50818751,"Mortal Kombat X",purchase,1.0,0 -50818751,"Mortal Kombat X",play,150.0,0 -50818751,"Killing Floor 2",purchase,1.0,0 -50818751,"Killing Floor 2",play,136.0,0 -50818751,"R.U.S.E",purchase,1.0,0 -50818751,"R.U.S.E",play,136.0,0 -50818751,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -50818751,"Resident Evil 6 / Biohazard 6",play,113.0,0 -50818751,"The Binding of Isaac",purchase,1.0,0 -50818751,"The Binding of Isaac",play,78.0,0 -50818751,"Warhammer End Times - Vermintide",purchase,1.0,0 -50818751,"Warhammer End Times - Vermintide",play,59.0,0 -50818751,"The Binding of Isaac Rebirth",purchase,1.0,0 -50818751,"The Binding of Isaac Rebirth",play,58.0,0 -50818751,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -50818751,"Call of Duty Black Ops - Multiplayer",play,57.0,0 -50818751,"Homefront",purchase,1.0,0 -50818751,"Homefront",play,53.0,0 -50818751,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -50818751,"Call of Duty Modern Warfare 3 - Multiplayer",play,51.0,0 -50818751,"The Walking Dead",purchase,1.0,0 -50818751,"The Walking Dead",play,51.0,0 -50818751,"Spiral Knights",purchase,1.0,0 -50818751,"Spiral Knights",play,50.0,0 -50818751,"Aliens vs. Predator",purchase,1.0,0 -50818751,"Aliens vs. Predator",play,49.0,0 -50818751,"Call of Duty Modern Warfare 2",purchase,1.0,0 -50818751,"Call of Duty Modern Warfare 2",play,47.0,0 -50818751,"Wings of Prey",purchase,1.0,0 -50818751,"Wings of Prey",play,46.0,0 -50818751,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -50818751,"The Witcher 2 Assassins of Kings Enhanced Edition",play,41.0,0 -50818751,"Sid Meier's Civilization V",purchase,1.0,0 -50818751,"Sid Meier's Civilization V",play,40.0,0 -50818751,"Dying Light",purchase,1.0,0 -50818751,"Dying Light",play,35.0,0 -50818751,"Call of Duty Black Ops",purchase,1.0,0 -50818751,"Call of Duty Black Ops",play,34.0,0 -50818751,"Portal 2",purchase,1.0,0 -50818751,"Portal 2",play,31.0,0 -50818751,"Saints Row The Third",purchase,1.0,0 -50818751,"Saints Row The Third",play,30.0,0 -50818751,"Sonic Generations",purchase,1.0,0 -50818751,"Sonic Generations",play,29.0,0 -50818751,"Dead Island",purchase,1.0,0 -50818751,"Dead Island",play,28.0,0 -50818751,"Mafia II",purchase,1.0,0 -50818751,"Mafia II",play,25.0,0 -50818751,"Bloody Good Time",purchase,1.0,0 -50818751,"Bloody Good Time",play,25.0,0 -50818751,"F.E.A.R. 3",purchase,1.0,0 -50818751,"F.E.A.R. 3",play,25.0,0 -50818751,"Just Cause 2",purchase,1.0,0 -50818751,"Just Cause 2",play,24.0,0 -50818751,"Metro 2033",purchase,1.0,0 -50818751,"Metro 2033",play,23.0,0 -50818751,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -50818751,"Resident Evil Revelations / Biohazard Revelations",play,22.0,0 -50818751,"Alien Swarm",purchase,1.0,0 -50818751,"Alien Swarm",play,18.3,0 -50818751,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -50818751,"Call of Duty Black Ops II - Zombies",play,18.3,0 -50818751,"Monday Night Combat",purchase,1.0,0 -50818751,"Monday Night Combat",play,16.9,0 -50818751,"The Darkness II",purchase,1.0,0 -50818751,"The Darkness II",play,16.6,0 -50818751,"AaAaAA!!! - A Reckless Disregard for Gravity",purchase,1.0,0 -50818751,"AaAaAA!!! - A Reckless Disregard for Gravity",play,16.0,0 -50818751,"Call of Duty Modern Warfare 3",purchase,1.0,0 -50818751,"Call of Duty Modern Warfare 3",play,15.2,0 -50818751,"Fallout New Vegas",purchase,1.0,0 -50818751,"Fallout New Vegas",play,15.0,0 -50818751,"RIFT",purchase,1.0,0 -50818751,"RIFT",play,14.3,0 -50818751,"Serious Sam 3 BFE",purchase,1.0,0 -50818751,"Serious Sam 3 BFE",play,14.0,0 -50818751,"Clive Barker's Jericho",purchase,1.0,0 -50818751,"Clive Barker's Jericho",play,12.1,0 -50818751,"Defense Grid The Awakening",purchase,1.0,0 -50818751,"Defense Grid The Awakening",play,11.8,0 -50818751,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -50818751,"Call of Duty Black Ops II - Multiplayer",play,11.6,0 -50818751,"F.E.A.R. Online",purchase,1.0,0 -50818751,"F.E.A.R. Online",play,9.9,0 -50818751,"EVGA PrecisionX 16",purchase,1.0,0 -50818751,"EVGA PrecisionX 16",play,9.1,0 -50818751,"Cargo! - The quest for gravity",purchase,1.0,0 -50818751,"Cargo! - The quest for gravity",play,8.6,0 -50818751,"Breach",purchase,1.0,0 -50818751,"Breach",play,8.3,0 -50818751,"Amnesia The Dark Descent",purchase,1.0,0 -50818751,"Amnesia The Dark Descent",play,8.2,0 -50818751,"Killing Floor",purchase,1.0,0 -50818751,"Killing Floor",play,7.5,0 -50818751,"Mirror's Edge",purchase,1.0,0 -50818751,"Mirror's Edge",play,7.1,0 -50818751,"Trine 2",purchase,1.0,0 -50818751,"Trine 2",play,6.9,0 -50818751,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -50818751,"Kane & Lynch 2 Dog Days",play,6.9,0 -50818751,"Super Monday Night Combat",purchase,1.0,0 -50818751,"Super Monday Night Combat",play,6.7,0 -50818751,"Rock of Ages",purchase,1.0,0 -50818751,"Rock of Ages",play,6.4,0 -50818751,"Left 4 Dead",purchase,1.0,0 -50818751,"Left 4 Dead",play,6.3,0 -50818751,"Worms Reloaded",purchase,1.0,0 -50818751,"Worms Reloaded",play,6.1,0 -50818751,"Shatter",purchase,1.0,0 -50818751,"Shatter",play,6.1,0 -50818751,"Magicka",purchase,1.0,0 -50818751,"Magicka",play,6.0,0 -50818751,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -50818751,"Resident Evil 5 / Biohazard 5",play,5.7,0 -50818751,"BRINK",purchase,1.0,0 -50818751,"BRINK",play,5.5,0 -50818751,"Poker Night at the Inventory",purchase,1.0,0 -50818751,"Poker Night at the Inventory",play,5.4,0 -50818751,"Chime",purchase,1.0,0 -50818751,"Chime",play,5.2,0 -50818751,"1... 2... 3... KICK IT! (Drop That Beat Like an Ugly Baby)",purchase,1.0,0 -50818751,"1... 2... 3... KICK IT! (Drop That Beat Like an Ugly Baby)",play,5.0,0 -50818751,"Counter-Strike Source",purchase,1.0,0 -50818751,"Counter-Strike Source",play,4.9,0 -50818751,"Orcs Must Die!",purchase,1.0,0 -50818751,"Orcs Must Die!",play,4.6,0 -50818751,"RUSH",purchase,1.0,0 -50818751,"RUSH",play,4.6,0 -50818751,"Audiosurf",purchase,1.0,0 -50818751,"Audiosurf",play,4.5,0 -50818751,"Serious Sam HD The First Encounter",purchase,1.0,0 -50818751,"Serious Sam HD The First Encounter",play,3.9,0 -50818751,"BIT.TRIP BEAT",purchase,1.0,0 -50818751,"BIT.TRIP BEAT",play,3.7,0 -50818751,"Super Meat Boy",purchase,1.0,0 -50818751,"Super Meat Boy",play,3.5,0 -50818751,"Total War SHOGUN 2",purchase,1.0,0 -50818751,"Total War SHOGUN 2",play,3.3,0 -50818751,"Lead and Gold - Gangs of the Wild West",purchase,1.0,0 -50818751,"Lead and Gold - Gangs of the Wild West",play,3.1,0 -50818751,"Zombie Driver",purchase,1.0,0 -50818751,"Zombie Driver",play,2.8,0 -50818751,"AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome",purchase,1.0,0 -50818751,"AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome",play,2.7,0 -50818751,"The Wonderful End of the World",purchase,1.0,0 -50818751,"The Wonderful End of the World",play,2.7,0 -50818751,"Empire Total War",purchase,1.0,0 -50818751,"Empire Total War",play,2.5,0 -50818751,"Flight Control HD",purchase,1.0,0 -50818751,"Flight Control HD",play,2.4,0 -50818751,"Day of Defeat Source",purchase,1.0,0 -50818751,"Day of Defeat Source",play,2.0,0 -50818751,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -50818751,"Dark Messiah of Might & Magic Multi-Player",play,1.9,0 -50818751,"Crysis",purchase,1.0,0 -50818751,"Crysis",play,1.9,0 -50818751,"Garry's Mod",purchase,1.0,0 -50818751,"Garry's Mod",play,1.7,0 -50818751,"BIT.TRIP RUNNER",purchase,1.0,0 -50818751,"BIT.TRIP RUNNER",play,1.7,0 -50818751,"The Chronicles of Riddick Assault on Dark Athena",purchase,1.0,0 -50818751,"The Chronicles of Riddick Assault on Dark Athena",play,1.5,0 -50818751,"Beat Hazard",purchase,1.0,0 -50818751,"Beat Hazard",play,1.5,0 -50818751,"Half-Life 2",purchase,1.0,0 -50818751,"Half-Life 2",play,1.4,0 -50818751,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -50818751,"SEGA Genesis & Mega Drive Classics",play,1.4,0 -50818751,"The Ball",purchase,1.0,0 -50818751,"The Ball",play,1.3,0 -50818751,"Magic The Gathering - Duels of the Planeswalkers",purchase,1.0,0 -50818751,"Magic The Gathering - Duels of the Planeswalkers",play,1.3,0 -50818751,"PAYDAY The Heist",purchase,1.0,0 -50818751,"PAYDAY The Heist",play,1.2,0 -50818751,"Section 8 Prejudice",purchase,1.0,0 -50818751,"Section 8 Prejudice",play,1.2,0 -50818751,"Osmos",purchase,1.0,0 -50818751,"Osmos",play,1.1,0 -50818751,"Painkiller Redemption",purchase,1.0,0 -50818751,"Painkiller Redemption",play,1.0,0 -50818751,"Red Faction Armageddon",purchase,1.0,0 -50818751,"Red Faction Armageddon",play,0.9,0 -50818751,"Gotham City Impostors",purchase,1.0,0 -50818751,"Gotham City Impostors",play,0.9,0 -50818751,"Cogs",purchase,1.0,0 -50818751,"Cogs",play,0.8,0 -50818751,"Foreign Legion Buckets of Blood",purchase,1.0,0 -50818751,"Foreign Legion Buckets of Blood",play,0.7,0 -50818751,"Droplitz",purchase,1.0,0 -50818751,"Droplitz",play,0.7,0 -50818751,"LIMBO",purchase,1.0,0 -50818751,"LIMBO",play,0.7,0 -50818751,"Toki Tori",purchase,1.0,0 -50818751,"Toki Tori",play,0.7,0 -50818751,"Mount & Blade With Fire and Sword",purchase,1.0,0 -50818751,"Mount & Blade With Fire and Sword",play,0.7,0 -50818751,"Quantum Conundrum",purchase,1.0,0 -50818751,"Quantum Conundrum",play,0.7,0 -50818751,"Portal",purchase,1.0,0 -50818751,"Portal",play,0.7,0 -50818751,"Zombie Panic Source",purchase,1.0,0 -50818751,"Zombie Panic Source",play,0.7,0 -50818751,"The Polynomial",purchase,1.0,0 -50818751,"The Polynomial",play,0.7,0 -50818751,"Naval Warfare",purchase,1.0,0 -50818751,"Naval Warfare",play,0.6,0 -50818751,"Renegade Ops",purchase,1.0,0 -50818751,"Renegade Ops",play,0.6,0 -50818751,"Hydrophobia Prophecy",purchase,1.0,0 -50818751,"Hydrophobia Prophecy",play,0.6,0 -50818751,"RISK Factions",purchase,1.0,0 -50818751,"RISK Factions",play,0.6,0 -50818751,"PC Gamer",purchase,1.0,0 -50818751,"PC Gamer",play,0.6,0 -50818751,"VVVVVV",purchase,1.0,0 -50818751,"VVVVVV",play,0.5,0 -50818751,"The Cat and the Coup",purchase,1.0,0 -50818751,"The Cat and the Coup",play,0.5,0 -50818751,"Terraria",purchase,1.0,0 -50818751,"Terraria",play,0.5,0 -50818751,"Braid",purchase,1.0,0 -50818751,"Braid",play,0.4,0 -50818751,"And Yet It Moves",purchase,1.0,0 -50818751,"And Yet It Moves",play,0.4,0 -50818751,"Sanctum",purchase,1.0,0 -50818751,"Sanctum",play,0.4,0 -50818751,"Bob Came in Pieces",purchase,1.0,0 -50818751,"Bob Came in Pieces",play,0.3,0 -50818751,"Crayon Physics Deluxe",purchase,1.0,0 -50818751,"Crayon Physics Deluxe",play,0.3,0 -50818751,"Borderlands",purchase,1.0,0 -50818751,"Borderlands",play,0.3,0 -50818751,"Half-Life 2 Deathmatch",purchase,1.0,0 -50818751,"Half-Life 2 Deathmatch",play,0.3,0 -50818751,"Serious Sam The Random Encounter",purchase,1.0,0 -50818751,"Serious Sam The Random Encounter",play,0.2,0 -50818751,"Alpha Protocol",purchase,1.0,0 -50818751,"Alpha Protocol",play,0.2,0 -50818751,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -50818751,"Serious Sam Classic The Second Encounter",play,0.2,0 -50818751,"Quake III Arena",purchase,1.0,0 -50818751,"Quake III Arena",play,0.2,0 -50818751,"Steel Storm Burning Retribution",purchase,1.0,0 -50818751,"Steel Storm Burning Retribution",play,0.2,0 -50818751,"Source Filmmaker",purchase,1.0,0 -50818751,"Source Filmmaker",play,0.2,0 -50818751,"DOOM 3 Resurrection of Evil",purchase,1.0,0 -50818751,"DOOM 3 Resurrection of Evil",play,0.2,0 -50818751,"Haunted Memories",purchase,1.0,0 -50818751,"Haunted Memories",play,0.1,0 -50818751,"Quake 4",purchase,1.0,0 -50818751,"Quake 4",play,0.1,0 -50818751,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -50818751,"Killing Floor Mod Defence Alliance 2",play,0.1,0 -50818751,"TRAUMA",purchase,1.0,0 -50818751,"TRAUMA",play,0.1,0 -50818751,"DOOM II Hell on Earth",purchase,1.0,0 -50818751,"Half-Life Blue Shift",purchase,1.0,0 -50818751,"Skullgirls",purchase,1.0,0 -50818751,"Final DOOM",purchase,1.0,0 -50818751,"Eets",purchase,1.0,0 -50818751,"Gish",purchase,1.0,0 -50818751,"Multiwinia",purchase,1.0,0 -50818751,"Quake II",purchase,1.0,0 -50818751,"Medieval II Total War",purchase,1.0,0 -50818751,"Bunch Of Heroes",purchase,1.0,0 -50818751,"The Ultimate DOOM",purchase,1.0,0 -50818751,"AI War Fleet Command",purchase,1.0,0 -50818751,"DEFCON",purchase,1.0,0 -50818751,"Uplink",purchase,1.0,0 -50818751,"Call of Duty Black Ops II",purchase,1.0,0 -50818751,"Frozen Free Fall Snowball Fight",purchase,1.0,0 -50818751,"Defy Gravity",purchase,1.0,0 -50818751,"SpaceChem",purchase,1.0,0 -50818751,"Trine",purchase,1.0,0 -50818751,"Red Faction II",purchase,1.0,0 -50818751,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -50818751,"Alien Breed 2 Assault",purchase,1.0,0 -50818751,"Anomaly Warzone Earth",purchase,1.0,0 -50818751,"Atom Zombie Smasher ",purchase,1.0,0 -50818751,"Bastion",purchase,1.0,0 -50818751,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -50818751,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -50818751,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -50818751,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -50818751,"Company of Heroes",purchase,1.0,0 -50818751,"Company of Heroes (New Steam Version)",purchase,1.0,0 -50818751,"Counter-Strike Condition Zero",purchase,1.0,0 -50818751,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -50818751,"Crow - Hunter (Trapper Class)",purchase,1.0,0 -50818751,"Crysis Warhead",purchase,1.0,0 -50818751,"Crysis Wars",purchase,1.0,0 -50818751,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -50818751,"Darwinia",purchase,1.0,0 -50818751,"Day of Defeat",purchase,1.0,0 -50818751,"Dead Island Epidemic",purchase,1.0,0 -50818751,"Deathmatch Classic",purchase,1.0,0 -50818751,"Defense Grid Resurgence Map Pack 1",purchase,1.0,0 -50818751,"Defense Grid Resurgence Map Pack 2 ",purchase,1.0,0 -50818751,"Defense Grid Resurgence Map Pack 3",purchase,1.0,0 -50818751,"Defense Grid Resurgence Map Pack 4",purchase,1.0,0 -50818751,"DiRT 3",purchase,1.0,0 -50818751,"DiRT 3 Complete Edition",purchase,1.0,0 -50818751,"DOOM 3",purchase,1.0,0 -50818751,"Dungeon Defenders",purchase,1.0,0 -50818751,"Dungeons of Dredmor",purchase,1.0,0 -50818751,"Earth 2160",purchase,1.0,0 -50818751,"EDGE",purchase,1.0,0 -50818751,"Emet - Hunter (Medic Class)",purchase,1.0,0 -50818751,"Evolve - Behemoth",purchase,1.0,0 -50818751,"Evolve - Gorgon",purchase,1.0,0 -50818751,"Frozen Synapse",purchase,1.0,0 -50818751,"Gotham City Impostors Free To Play",purchase,1.0,0 -50818751,"Grotesque Tactics Evil Heroes",purchase,1.0,0 -50818751,"Half-Life",purchase,1.0,0 -50818751,"Half-Life 2 Episode One",purchase,1.0,0 -50818751,"Half-Life 2 Episode Two",purchase,1.0,0 -50818751,"Half-Life 2 Lost Coast",purchase,1.0,0 -50818751,"Half-Life Opposing Force",purchase,1.0,0 -50818751,"Half-Life Source",purchase,1.0,0 -50818751,"Half-Life Deathmatch Source",purchase,1.0,0 -50818751,"Hammerfight",purchase,1.0,0 -50818751,"Jack - Hunter (Trapper Class)",purchase,1.0,0 -50818751,"Jamestown",purchase,1.0,0 -50818751,"Lennox - Hunter (Assault Class)",purchase,1.0,0 -50818751,"Loadout",purchase,1.0,0 -50818751,"Lost Planet Extreme Condition",purchase,1.0,0 -50818751,"Machinarium",purchase,1.0,0 -50818751,"Magic The Gathering Duels of the Planeswalkers 2012",purchase,1.0,0 -50818751,"Magicka Nippon",purchase,1.0,0 -50818751,"Magicka Wizard's Survival Kit",purchase,1.0,0 -50818751,"Master Levels for DOOM II",purchase,1.0,0 -50818751,"NightSky",purchase,1.0,0 -50818751,"Orcs Must Die! 2",purchase,1.0,0 -50818751,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -50818751,"Portal 2 Sixense MotionPack",purchase,1.0,0 -50818751,"Post Apocalyptic Mayhem",purchase,1.0,0 -50818751,"Psychonauts",purchase,1.0,0 -50818751,"Psychonauts Demo",purchase,1.0,0 -50818751,"Quake",purchase,1.0,0 -50818751,"Quake II Ground Zero",purchase,1.0,0 -50818751,"Quake II The Reckoning",purchase,1.0,0 -50818751,"Quake III Team Arena",purchase,1.0,0 -50818751,"Quake Mission Pack 1 Scourge of Armagon",purchase,1.0,0 -50818751,"Quake Mission Pack 2 Dissolution of Eternity",purchase,1.0,0 -50818751,"R.U.S.E.",purchase,1.0,0 -50818751,"Red Faction",purchase,1.0,0 -50818751,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -50818751,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -50818751,"Revenge of the Titans",purchase,1.0,0 -50818751,"Ricochet",purchase,1.0,0 -50818751,"Serious Sam Classic The First Encounter",purchase,1.0,0 -50818751,"Serious Sam Classics Revolution",purchase,1.0,0 -50818751,"Serious Sam HD The Second Encounter Player Models",purchase,1.0,0 -50818751,"Shadowgrounds",purchase,1.0,0 -50818751,"Shadowgrounds Survivor",purchase,1.0,0 -50818751,"Shank",purchase,1.0,0 -50818751,"Shoot Many Robots Arena Kings",purchase,1.0,0 -50818751,"Skullgirls Endless Beta",purchase,1.0,0 -50818751,"Slim - Hunter (Medic Class)",purchase,1.0,0 -50818751,"Sunny - Hunter (Support Class)",purchase,1.0,0 -50818751,"Team Fortress Classic",purchase,1.0,0 -50818751,"Torvald - Hunter (Assault Class)",purchase,1.0,0 -50818751,"Tribes Ascend",purchase,1.0,0 -50818751,"Tropico 4",purchase,1.0,0 -50818751,"Warhammer End Times - Vermintide Sigmar's Blessing",purchase,1.0,0 -162086115,"Dota 2",purchase,1.0,0 -162086115,"Dota 2",play,1.1,0 -65315657,"Sid Meier's Civilization V",purchase,1.0,0 -65315657,"Sid Meier's Civilization V",play,606.0,0 -65315657,"XCOM Enemy Unknown",purchase,1.0,0 -65315657,"XCOM Enemy Unknown",play,139.0,0 -65315657,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -65315657,"Sid Meier's Civilization Beyond Earth",play,112.0,0 -65315657,"Cities in Motion",purchase,1.0,0 -65315657,"Cities in Motion",play,65.0,0 -65315657,"Cities Skylines",purchase,1.0,0 -65315657,"Cities Skylines",play,60.0,0 -65315657,"Banished",purchase,1.0,0 -65315657,"Banished",play,44.0,0 -65315657,"Sid Meier's Railroads!",purchase,1.0,0 -65315657,"Sid Meier's Railroads!",play,42.0,0 -65315657,"Darkest Dungeon",purchase,1.0,0 -65315657,"Darkest Dungeon",play,32.0,0 -65315657,"Sid Meier's Starships",purchase,1.0,0 -65315657,"Sid Meier's Starships",play,26.0,0 -65315657,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -65315657,"RollerCoaster Tycoon 3 Platinum!",play,10.1,0 -65315657,"Warmachine Tactics",purchase,1.0,0 -65315657,"Warmachine Tactics",play,9.8,0 -65315657,"Portal",purchase,1.0,0 -65315657,"Portal",play,5.6,0 -65315657,"Portal 2",purchase,1.0,0 -65315657,"Portal 2",play,3.7,0 -65315657,"Cities in Motion 2",purchase,1.0,0 -65315657,"Cities in Motion 2",play,3.5,0 -65315657,"Metro Last Light",purchase,1.0,0 -65315657,"Metro Last Light",play,2.6,0 -65315657,"Goat Simulator",purchase,1.0,0 -65315657,"Goat Simulator",play,2.3,0 -65315657,"Sunless Sea",purchase,1.0,0 -65315657,"Sunless Sea",play,1.9,0 -65315657,"Home",purchase,1.0,0 -65315657,"Home",play,1.9,0 -65315657,"Left 4 Dead 2",purchase,1.0,0 -65315657,"Sakura Spirit",purchase,1.0,0 -65315657,"Sid Meier's Civilization Beyond Earth - Rising Tide",purchase,1.0,0 -65315657,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -65315657,"WARMACHINE Tactics - Retribution of Scyrah Faction Bundle",purchase,1.0,0 -65315657,"XCOM Enemy Within",purchase,1.0,0 -219822826,"Counter-Strike Global Offensive",purchase,1.0,0 -219822826,"Counter-Strike Global Offensive",play,463.0,0 -219822826,"PAYDAY 2",purchase,1.0,0 -219822826,"PAYDAY 2",play,15.4,0 -219822826,"The Forest",purchase,1.0,0 -219822826,"The Forest",play,7.0,0 -219822826,"Dota 2",purchase,1.0,0 -219822826,"Dota 2",play,0.5,0 -219822826,"David.",purchase,1.0,0 -219822826,"Nosgoth",purchase,1.0,0 -115784259,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -115784259,"Call of Duty Modern Warfare 2 - Multiplayer",play,1.6,0 -115784259,"Arma 3",purchase,1.0,0 -115784259,"Arma 3",play,1.2,0 -115784259,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -115784259,"Call of Duty Modern Warfare 3 - Multiplayer",play,1.2,0 -115784259,"Call of Duty Modern Warfare 2",purchase,1.0,0 -115784259,"Call of Duty Modern Warfare 2",play,0.7,0 -115784259,"Arma 2 Operation Arrowhead",purchase,1.0,0 -115784259,"Arma 2 Operation Arrowhead",play,0.2,0 -115784259,"Call of Duty Modern Warfare 3",purchase,1.0,0 -115784259,"Call of Duty Modern Warfare 3",play,0.2,0 -115784259,"Arma 2",purchase,1.0,0 -115784259,"Tom Clancy's H.A.W.X.",purchase,1.0,0 -115784259,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -115784259,"Arma 3 Helicopters",purchase,1.0,0 -115784259,"Arma 3 Karts",purchase,1.0,0 -115784259,"Arma 3 Marksmen",purchase,1.0,0 -115784259,"Arma 3 Zeus",purchase,1.0,0 -74021124,"Call of Duty Black Ops",purchase,1.0,0 -74021124,"Call of Duty Black Ops",play,9.0,0 -74021124,"Sniper Ghost Warrior",purchase,1.0,0 -74021124,"Sniper Ghost Warrior",play,4.4,0 -74021124,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -74021124,"Call of Duty Black Ops - Multiplayer",play,2.8,0 -240482294,"Dota 2",purchase,1.0,0 -240482294,"Dota 2",play,1.5,0 -240482294,"Defiance",purchase,1.0,0 -240482294,"Nosgoth",purchase,1.0,0 -240482294,"Quake Live",purchase,1.0,0 -240482294,"Robocraft",purchase,1.0,0 -198621754,"Dota 2",purchase,1.0,0 -198621754,"Dota 2",play,5.7,0 -118301896,"Blood Bowl Chaos Edition",purchase,1.0,0 -118301896,"Blood Bowl Chaos Edition",play,12.3,0 -292989657,"Dota 2",purchase,1.0,0 -292989657,"Dota 2",play,0.7,0 -236188947,"Grand Theft Auto V",purchase,1.0,0 -236188947,"Grand Theft Auto V",play,147.0,0 -236188947,"Soccer Manager 2015",purchase,1.0,0 -236188947,"Soccer Manager 2015",play,0.3,0 -236188947,"METAL SLUG DEFENSE",purchase,1.0,0 -236188947,"Dirty Bomb",purchase,1.0,0 -308925132,"Dota 2",purchase,1.0,0 -308925132,"Dota 2",play,3.8,0 -125595162,"Chivalry Medieval Warfare",purchase,1.0,0 -125595162,"Chivalry Medieval Warfare",play,0.3,0 -125595162,"Patch testing for Chivalry",purchase,1.0,0 -82156706,"Arma 2 Operation Arrowhead",purchase,1.0,0 -82156706,"Arma 2 Operation Arrowhead",play,140.0,0 -82156706,"Rust",purchase,1.0,0 -82156706,"Rust",play,120.0,0 -82156706,"Chivalry Medieval Warfare",purchase,1.0,0 -82156706,"Chivalry Medieval Warfare",play,119.0,0 -82156706,"Team Fortress 2",purchase,1.0,0 -82156706,"Team Fortress 2",play,44.0,0 -82156706,"Arma 2 DayZ Mod",purchase,1.0,0 -82156706,"Arma 2 DayZ Mod",play,26.0,0 -82156706,"Left 4 Dead 2",purchase,1.0,0 -82156706,"Left 4 Dead 2",play,17.2,0 -82156706,"PAYDAY The Heist",purchase,1.0,0 -82156706,"PAYDAY The Heist",play,11.8,0 -82156706,"Grand Theft Auto IV",purchase,1.0,0 -82156706,"Grand Theft Auto IV",play,9.8,0 -82156706,"Just Cause 2",purchase,1.0,0 -82156706,"Just Cause 2",play,9.7,0 -82156706,"Star Wars - Battlefront II",purchase,1.0,0 -82156706,"Star Wars - Battlefront II",play,7.7,0 -82156706,"Garry's Mod",purchase,1.0,0 -82156706,"Garry's Mod",play,1.2,0 -82156706,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -82156706,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,1.0,0 -82156706,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -82156706,"Just Cause 2 Multiplayer Mod",play,0.7,0 -82156706,"Defiance",purchase,1.0,0 -82156706,"Defiance",play,0.6,0 -82156706,"Nation Red",purchase,1.0,0 -82156706,"Nation Red",play,0.3,0 -82156706,"Arma 2",purchase,1.0,0 -82156706,"Arma 2",play,0.1,0 -82156706,"Hitman Sniper Challenge",purchase,1.0,0 -82156706,"Half-Life 2",purchase,1.0,0 -82156706,"Ace of Spades",purchase,1.0,0 -82156706,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -82156706,"Guns of Icarus Online",purchase,1.0,0 -82156706,"Half-Life 2 Lost Coast",purchase,1.0,0 -82156706,"Hitman Absolution",purchase,1.0,0 -82156706,"Patch testing for Chivalry",purchase,1.0,0 -30434868,"Race The WTCC Game",purchase,1.0,0 -30434868,"Race The WTCC Game",play,0.6,0 -192822732,"Dota 2",purchase,1.0,0 -192822732,"Dota 2",play,0.2,0 -28041586,"Counter-Strike",purchase,1.0,0 -28041586,"Counter-Strike",play,689.0,0 -28041586,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -28041586,"Counter-Strike Condition Zero Deleted Scenes",play,2.3,0 -28041586,"Counter-Strike Condition Zero",purchase,1.0,0 -28041586,"Counter-Strike Condition Zero",play,0.1,0 -176414861,"Dota 2",purchase,1.0,0 -176414861,"Dota 2",play,1746.0,0 -176414861,"Archeblade",purchase,1.0,0 -176414861,"Archeblade",play,1.9,0 -176414861,"Survarium",purchase,1.0,0 -176414861,"Survarium",play,0.5,0 -12673872,"Half-Life 2",purchase,1.0,0 -12673872,"Half-Life 2",play,0.4,0 -12673872,"Counter-Strike",purchase,1.0,0 -12673872,"Counter-Strike Source",purchase,1.0,0 -12673872,"Day of Defeat",purchase,1.0,0 -12673872,"Deathmatch Classic",purchase,1.0,0 -12673872,"Half-Life",purchase,1.0,0 -12673872,"Half-Life 2 Deathmatch",purchase,1.0,0 -12673872,"Half-Life 2 Lost Coast",purchase,1.0,0 -12673872,"Half-Life Blue Shift",purchase,1.0,0 -12673872,"Half-Life Opposing Force",purchase,1.0,0 -12673872,"Ricochet",purchase,1.0,0 -12673872,"Team Fortress Classic",purchase,1.0,0 -179129702,"Dungeonland",purchase,1.0,0 -179129702,"Free to Play",purchase,1.0,0 -179129702,"Loadout",purchase,1.0,0 -179129702,"PlanetSide 2",purchase,1.0,0 -179129702,"Robocraft",purchase,1.0,0 -179129702,"Spiral Knights",purchase,1.0,0 -179129702,"Unturned",purchase,1.0,0 -179129702,"War of the Roses",purchase,1.0,0 -59925638,"Borderlands 2",purchase,1.0,0 -59925638,"Borderlands 2",play,633.0,0 -59925638,"Dishonored",purchase,1.0,0 -59925638,"Dishonored",play,308.0,0 -59925638,"RAGE",purchase,1.0,0 -59925638,"RAGE",play,264.0,0 -59925638,"Borderlands The Pre-Sequel",purchase,1.0,0 -59925638,"Borderlands The Pre-Sequel",play,254.0,0 -59925638,"Just Cause 2",purchase,1.0,0 -59925638,"Just Cause 2",play,251.0,0 -59925638,"Metro 2033",purchase,1.0,0 -59925638,"Metro 2033",play,244.0,0 -59925638,"Deus Ex Human Revolution",purchase,1.0,0 -59925638,"Deus Ex Human Revolution",play,206.0,0 -59925638,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -59925638,"Tom Clancy's Splinter Cell Conviction",play,203.0,0 -59925638,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -59925638,"Call of Duty Modern Warfare 2 - Multiplayer",play,190.0,0 -59925638,"PROTOTYPE 2",purchase,1.0,0 -59925638,"PROTOTYPE 2",play,180.0,0 -59925638,"Metro Last Light",purchase,1.0,0 -59925638,"Metro Last Light",play,168.0,0 -59925638,"Far Cry 4",purchase,1.0,0 -59925638,"Far Cry 4",play,161.0,0 -59925638,"Call of Duty Modern Warfare 2",purchase,1.0,0 -59925638,"Call of Duty Modern Warfare 2",play,157.0,0 -59925638,"Fallout 4",purchase,1.0,0 -59925638,"Fallout 4",play,135.0,0 -59925638,"Team Fortress 2",purchase,1.0,0 -59925638,"Team Fortress 2",play,128.0,0 -59925638,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -59925638,"Sid Meier's Civilization Beyond Earth",play,116.0,0 -59925638,"Middle-earth Shadow of Mordor",purchase,1.0,0 -59925638,"Middle-earth Shadow of Mordor",play,109.0,0 -59925638,"Prototype",purchase,1.0,0 -59925638,"Prototype",play,86.0,0 -59925638,"Borderlands",purchase,1.0,0 -59925638,"Borderlands",play,83.0,0 -59925638,"Fallout New Vegas",purchase,1.0,0 -59925638,"Fallout New Vegas",play,74.0,0 -59925638,"Far Cry 2",purchase,1.0,0 -59925638,"Far Cry 2",play,64.0,0 -59925638,"Crysis 2",purchase,1.0,0 -59925638,"Crysis 2",play,61.0,0 -59925638,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -59925638,"Call of Duty Black Ops - Multiplayer",play,61.0,0 -59925638,"Bulletstorm",purchase,1.0,0 -59925638,"Bulletstorm",play,56.0,0 -59925638,"F.E.A.R. 3",purchase,1.0,0 -59925638,"F.E.A.R. 3",play,49.0,0 -59925638,"Portal 2",purchase,1.0,0 -59925638,"Portal 2",play,48.0,0 -59925638,"Thief",purchase,1.0,0 -59925638,"Thief",play,48.0,0 -59925638,"Mad Max",purchase,1.0,0 -59925638,"Mad Max",play,41.0,0 -59925638,"Call of Duty Modern Warfare 3",purchase,1.0,0 -59925638,"Call of Duty Modern Warfare 3",play,39.0,0 -59925638,"Metro Last Light Redux",purchase,1.0,0 -59925638,"Metro Last Light Redux",play,37.0,0 -59925638,"Transformers War for Cybertron",purchase,1.0,0 -59925638,"Transformers War for Cybertron",play,37.0,0 -59925638,"Evolve",purchase,1.0,0 -59925638,"Evolve",play,35.0,0 -59925638,"Aliens vs. Predator",purchase,1.0,0 -59925638,"Aliens vs. Predator",play,35.0,0 -59925638,"Mafia II",purchase,1.0,0 -59925638,"Mafia II",play,34.0,0 -59925638,"Plague Inc Evolved",purchase,1.0,0 -59925638,"Plague Inc Evolved",play,30.0,0 -59925638,"Sid Meier's Starships",purchase,1.0,0 -59925638,"Sid Meier's Starships",play,28.0,0 -59925638,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -59925638,"Call of Duty Modern Warfare 3 - Multiplayer",play,28.0,0 -59925638,"Call of Duty Black Ops",purchase,1.0,0 -59925638,"Call of Duty Black Ops",play,27.0,0 -59925638,"Metro 2033 Redux",purchase,1.0,0 -59925638,"Metro 2033 Redux",play,26.0,0 -59925638,"BRINK",purchase,1.0,0 -59925638,"BRINK",play,23.0,0 -59925638,"Game Dev Tycoon",purchase,1.0,0 -59925638,"Game Dev Tycoon",play,22.0,0 -59925638,"Crysis",purchase,1.0,0 -59925638,"Crysis",play,17.0,0 -59925638,"Singularity",purchase,1.0,0 -59925638,"Singularity",play,16.1,0 -59925638,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -59925638,"Deus Ex Human Revolution - The Missing Link",play,15.9,0 -59925638,"Sniper Ghost Warrior",purchase,1.0,0 -59925638,"Sniper Ghost Warrior",play,15.7,0 -59925638,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -59925638,"Call of Duty Black Ops II - Multiplayer",play,14.5,0 -59925638,"Far Cry",purchase,1.0,0 -59925638,"Far Cry",play,13.5,0 -59925638,"Assassins Creed Unity",purchase,1.0,0 -59925638,"Assassins Creed Unity",play,12.9,0 -59925638,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -59925638,"F.E.A.R. 2 Project Origin",play,10.9,0 -59925638,"Serious Sam 3 BFE",purchase,1.0,0 -59925638,"Serious Sam 3 BFE",play,10.1,0 -59925638,"The Darkness II",purchase,1.0,0 -59925638,"The Darkness II",play,8.3,0 -59925638,"Portal",purchase,1.0,0 -59925638,"Portal",play,8.2,0 -59925638,"Just Cause 3",purchase,1.0,0 -59925638,"Just Cause 3",play,8.1,0 -59925638,"Tales from the Borderlands",purchase,1.0,0 -59925638,"Tales from the Borderlands",play,7.9,0 -59925638,"Call of Duty 2",purchase,1.0,0 -59925638,"Call of Duty 2",play,7.2,0 -59925638,"Tom Clancy's H.A.W.X. 2",purchase,1.0,0 -59925638,"Tom Clancy's H.A.W.X. 2",play,7.1,0 -59925638,"F.E.A.R.",purchase,1.0,0 -59925638,"F.E.A.R.",play,7.0,0 -59925638,"Sid Meier's Civilization V",purchase,1.0,0 -59925638,"Sid Meier's Civilization V",play,6.9,0 -59925638,"Crysis 2 Maximum Edition",purchase,1.0,0 -59925638,"Crysis 2 Maximum Edition",play,6.5,0 -59925638,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -59925638,"F.E.A.R. Perseus Mandate",play,6.4,0 -59925638,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -59925638,"Call of Duty 4 Modern Warfare",play,5.9,0 -59925638,"Blazing Angels 2 Secret Missions of WWII",purchase,1.0,0 -59925638,"Blazing Angels 2 Secret Missions of WWII",play,5.6,0 -59925638,"Call of Duty Advanced Warfare",purchase,1.0,0 -59925638,"Call of Duty Advanced Warfare",play,5.5,0 -59925638,"Battlefield Bad Company 2",purchase,1.0,0 -59925638,"Battlefield Bad Company 2",play,5.1,0 -59925638,"Poker Night 2",purchase,1.0,0 -59925638,"Poker Night 2",play,4.9,0 -59925638,"Call of Duty Ghosts",purchase,1.0,0 -59925638,"Call of Duty Ghosts",play,4.6,0 -59925638,"Crysis Warhead",purchase,1.0,0 -59925638,"Crysis Warhead",play,4.5,0 -59925638,"Serious Sam HD The Second Encounter",purchase,1.0,0 -59925638,"Serious Sam HD The Second Encounter",play,4.4,0 -59925638,"Tom Clancy's H.A.W.X.",purchase,1.0,0 -59925638,"Tom Clancy's H.A.W.X.",play,4.3,0 -59925638,"F.E.A.R. Extraction Point",purchase,1.0,0 -59925638,"F.E.A.R. Extraction Point",play,4.1,0 -59925638,"Call of Duty World at War",purchase,1.0,0 -59925638,"Call of Duty World at War",play,4.1,0 -59925638,"Call of Duty Black Ops II",purchase,1.0,0 -59925638,"Call of Duty Black Ops II",play,2.9,0 -59925638,"Frontlines Fuel of War",purchase,1.0,0 -59925638,"Frontlines Fuel of War",play,2.6,0 -59925638,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -59925638,"Tom Clancy's Ghost Recon Phantoms - EU",play,1.8,0 -59925638,"APB Reloaded",purchase,1.0,0 -59925638,"APB Reloaded",play,1.7,0 -59925638,"Counter-Strike Source",purchase,1.0,0 -59925638,"Counter-Strike Source",play,1.4,0 -59925638,"Battlefield 2",purchase,1.0,0 -59925638,"Battlefield 2",play,1.3,0 -59925638,"Universe Sandbox ",purchase,1.0,0 -59925638,"Universe Sandbox ",play,1.3,0 -59925638,"Call of Juarez The Cartel",purchase,1.0,0 -59925638,"Call of Juarez The Cartel",play,1.2,0 -59925638,"Homefront",purchase,1.0,0 -59925638,"Homefront",play,1.2,0 -59925638,"Alien Swarm",purchase,1.0,0 -59925638,"Alien Swarm",play,1.0,0 -59925638,"PlanetSide 2",purchase,1.0,0 -59925638,"PlanetSide 2",play,1.0,0 -59925638,"Tom Clancy's Splinter Cell Chaos Theory",purchase,1.0,0 -59925638,"Tom Clancy's Splinter Cell Chaos Theory",play,0.9,0 -59925638,"Styx Master of Shadows",purchase,1.0,0 -59925638,"Styx Master of Shadows",play,0.9,0 -59925638,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -59925638,"Call of Duty Ghosts - Multiplayer",play,0.8,0 -59925638,"Tom Clancy's H.A.W.X. 2",purchase,1.0,0 -59925638,"Tom Clancy's H.A.W.X. 2",play,0.3,0 -59925638,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -59925638,"Call of Duty Black Ops II - Zombies",play,0.2,0 -59925638,"Call of Duty",purchase,1.0,0 -59925638,"Call of Duty",play,0.1,0 -59925638,"Call of Duty United Offensive",purchase,1.0,0 -59925638,"Call of Duty United Offensive",play,0.1,0 -59925638,"Crysis Wars",purchase,1.0,0 -59925638,"Shadow Harvest Phantom Ops",purchase,1.0,0 -59925638,"Breach",purchase,1.0,0 -59925638,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -59925638,"Alien Breed 2 Assault",purchase,1.0,0 -59925638,"ARK Survival Evolved",purchase,1.0,0 -59925638,"Assassins Creed Chronicles China",purchase,1.0,0 -59925638,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -59925638,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -59925638,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -59925638,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -59925638,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -59925638,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -59925638,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -59925638,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -59925638,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -59925638,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -59925638,"Call of Duty Black Ops III",purchase,1.0,0 -59925638,"Call of Duty Modern Warfare 2 - Resurgence Pack",purchase,1.0,0 -59925638,"Call of Duty Modern Warfare 2 Stimulus Package",purchase,1.0,0 -59925638,"Crow - Hunter (Trapper Class)",purchase,1.0,0 -59925638,"Crysis 2",purchase,1.0,0 -59925638,"Deus Ex Game of the Year Edition",purchase,1.0,0 -59925638,"Emet - Hunter (Medic Class)",purchase,1.0,0 -59925638,"Evolve - Behemoth",purchase,1.0,0 -59925638,"Evolve - Gorgon",purchase,1.0,0 -59925638,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -59925638,"Fallout New Vegas Dead Money",purchase,1.0,0 -59925638,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -59925638,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -59925638,"Jack - Hunter (Trapper Class)",purchase,1.0,0 -59925638,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -59925638,"Left 4 Dead",purchase,1.0,0 -59925638,"Lennox - Hunter (Assault Class)",purchase,1.0,0 -59925638,"Mass Effect",purchase,1.0,0 -59925638,"Mass Effect 2",purchase,1.0,0 -59925638,"Path of Exile",purchase,1.0,0 -59925638,"Prototype 2 RADNET Access Pack",purchase,1.0,0 -59925638,"Remember Me",purchase,1.0,0 -59925638,"Sid Meier's Civilization Beyond Earth - Rising Tide",purchase,1.0,0 -59925638,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -59925638,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -59925638,"Slim - Hunter (Medic Class)",purchase,1.0,0 -59925638,"Sunny - Hunter (Support Class)",purchase,1.0,0 -59925638,"Thief - Ghost",purchase,1.0,0 -59925638,"Thief - Opportunist",purchase,1.0,0 -59925638,"Thief - Predator",purchase,1.0,0 -59925638,"Thief - The Bank Heist",purchase,1.0,0 -59925638,"Torvald - Hunter (Assault Class)",purchase,1.0,0 -244758115,"Warframe",purchase,1.0,0 -244758115,"Warframe",play,5.8,0 -75997012,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -75997012,"Rising Storm/Red Orchestra 2 Multiplayer",play,2.2,0 -75997012,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -209025362,"Dota 2",purchase,1.0,0 -209025362,"Dota 2",play,9.4,0 -209025362,"Marvel Heroes 2015",purchase,1.0,0 -185247516,"Dota 2",purchase,1.0,0 -185247516,"Dota 2",play,0.1,0 -220733923,"Team Fortress 2",purchase,1.0,0 -220733923,"Team Fortress 2",play,1.4,0 -220733923,"Loadout",purchase,1.0,0 -220733923,"Super Monday Night Combat",purchase,1.0,0 -220733923,"Warface",purchase,1.0,0 -243053090,"Unturned",purchase,1.0,0 -243053090,"CSGO Player Profiles",purchase,1.0,0 -243053090,"CSGO Player Profiles - Device",purchase,1.0,0 -243053090,"CSGO Player Profiles - Edward",purchase,1.0,0 -243053090,"CSGO Player Profiles - Fallen",purchase,1.0,0 -243053090,"CSGO Player Profiles - Get_Right",purchase,1.0,0 -243053090,"CSGO Player Profiles - KennyS",purchase,1.0,0 -243053090,"CSGO Player Profiles - Markeloff",purchase,1.0,0 -243053090,"CSGO Player Profiles - N0thing",purchase,1.0,0 -243053090,"CSGO Player Profiles - Olofmeister",purchase,1.0,0 -243053090,"CSGO Player Profiles - Taz",purchase,1.0,0 -243053090,"Dirty Bomb",purchase,1.0,0 -243053090,"Dota 2 - The International 2015 - Player Profiles",purchase,1.0,0 -243053090,"Robocraft",purchase,1.0,0 -243053090,"TI5 - CDEC's Journey to The Majors",purchase,1.0,0 -243053090,"TI5 - EG Champions of TI5",purchase,1.0,0 -243053090,"TI5 - Player Profiles Cloud9 - NoTail",purchase,1.0,0 -243053090,"TI5 - Player Profiles Complexity - zfreek",purchase,1.0,0 -243053090,"TI5 - Player Profiles EG - Suma1L",purchase,1.0,0 -243053090,"TI5 - Player Profiles EHOME - ROTK",purchase,1.0,0 -243053090,"TI5 - Player Profiles Empire - Alohadance",purchase,1.0,0 -243053090,"TI5 - Player Profiles Fnatic - Kecik-Imba",purchase,1.0,0 -243053090,"TI5 - Player Profiles Invictus Gaming - Ferrari",purchase,1.0,0 -243053090,"TI5 - Player Profiles LGD - Xiao8",purchase,1.0,0 -243053090,"TI5 - Player Profiles MVPHot6 - HEEN",purchase,1.0,0 -243053090,"TI5 - Player Profiles NAVI - XBOCT",purchase,1.0,0 -243053090,"TI5 - Player Profiles Newbee - Mu",purchase,1.0,0 -243053090,"TI5 - Player Profiles TeamSecret - S4",purchase,1.0,0 -243053090,"TI5 - Player Profiles Vici - fy",purchase,1.0,0 -243053090,"TI5 - Player Profiles VirtusPro - FNG",purchase,1.0,0 -243053090,"UberStrike",purchase,1.0,0 -243053090,"War Thunder",purchase,1.0,0 -262445620,"Blacklight Retribution",purchase,1.0,0 -262445620,"Blacklight Retribution",play,0.2,0 -115311682,"Football Manager 2013",purchase,1.0,0 -115311682,"Football Manager 2013",play,143.0,0 -97551807,"Dota 2",purchase,1.0,0 -97551807,"Dota 2",play,1.0,0 -97551807,"Gotham City Impostors Free To Play",purchase,1.0,0 -97551807,"Gotham City Impostors Free To Play",play,0.9,0 -298272852,"Counter-Strike Nexon Zombies",purchase,1.0,0 -298272852,"Counter-Strike Nexon Zombies",play,0.3,0 -133680143,"Sid Meier's Civilization IV",purchase,1.0,0 -133680143,"Sid Meier's Civilization IV",play,43.0,0 -133680143,"Cook, Serve, Delicious!",purchase,1.0,0 -133680143,"Cook, Serve, Delicious!",play,9.1,0 -133680143,"Castaway Paradise",purchase,1.0,0 -133680143,"Castaway Paradise",play,6.8,0 -133680143,"Kingdom Tales 2",purchase,1.0,0 -133680143,"Kingdom Tales 2",play,5.2,0 -133680143,"Viridi",purchase,1.0,0 -133680143,"Viridi",play,1.4,0 -133680143,"Emily is Away",purchase,1.0,0 -133680143,"Emily is Away",play,0.8,0 -133680143,"Hello Kitty and Sanrio Friends Racing",purchase,1.0,0 -133680143,"Hello Kitty and Sanrio Friends Racing",play,0.6,0 -133680143,"Altitude",purchase,1.0,0 -133680143,"Sid Meier's Civilization IV",purchase,1.0,0 -133680143,"Super Crate Box",purchase,1.0,0 -106247569,"Counter-Strike Source",purchase,1.0,0 -106247569,"Counter-Strike Source",play,35.0,0 -106247569,"Heroes & Generals",purchase,1.0,0 -68414134,"Alien Swarm",purchase,1.0,0 -68414134,"Alien Swarm",play,0.3,0 -112700700,"Dota 2",purchase,1.0,0 -112700700,"Dota 2",play,5.5,0 -11807754,"Left 4 Dead 2",purchase,1.0,0 -11807754,"Left 4 Dead 2",play,576.0,0 -11807754,"Borderlands 2",purchase,1.0,0 -11807754,"Borderlands 2",play,317.0,0 -11807754,"Left 4 Dead",purchase,1.0,0 -11807754,"Left 4 Dead",play,202.0,0 -11807754,"Dota 2",purchase,1.0,0 -11807754,"Dota 2",play,63.0,0 -11807754,"Battlefield Bad Company 2",purchase,1.0,0 -11807754,"Battlefield Bad Company 2",play,38.0,0 -11807754,"Portal 2",purchase,1.0,0 -11807754,"Portal 2",play,29.0,0 -11807754,"Tomb Raider",purchase,1.0,0 -11807754,"Tomb Raider",play,21.0,0 -11807754,"Counter-Strike Source",purchase,1.0,0 -11807754,"Counter-Strike Source",play,11.5,0 -11807754,"Metro Last Light",purchase,1.0,0 -11807754,"Metro Last Light",play,6.6,0 -11807754,"Grand Theft Auto IV",purchase,1.0,0 -11807754,"Grand Theft Auto IV",play,4.6,0 -11807754,"Alien Swarm",purchase,1.0,0 -11807754,"Alien Swarm",play,4.1,0 -11807754,"Sid Meier's Civilization V",purchase,1.0,0 -11807754,"Sid Meier's Civilization V",play,3.7,0 -11807754,"Team Fortress 2",purchase,1.0,0 -11807754,"Team Fortress 2",play,0.6,0 -11807754,"Borderlands",purchase,1.0,0 -11807754,"Borderlands",play,0.6,0 -11807754,"Half-Life 2",purchase,1.0,0 -11807754,"Half-Life 2",play,0.6,0 -11807754,"Half-Life 2 Lost Coast",purchase,1.0,0 -11807754,"Half-Life 2 Lost Coast",play,0.3,0 -11807754,"Half-Life 2 Deathmatch",purchase,1.0,0 -11807754,"Half-Life 2 Deathmatch",play,0.2,0 -11807754,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -11807754,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -11807754,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -11807754,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -11807754,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -301656813,"Team Fortress 2",purchase,1.0,0 -301656813,"Team Fortress 2",play,8.4,0 -189692974,"Unturned",purchase,1.0,0 -189692974,"Unturned",play,1.1,0 -59784301,"Half-Life 2 Lost Coast",purchase,1.0,0 -59784301,"Half-Life 2 Lost Coast",play,0.5,0 -59784301,"Half-Life 2 Deathmatch",purchase,1.0,0 -70525721,"Sid Meier's Civilization V",purchase,1.0,0 -70525721,"Sid Meier's Civilization V",play,59.0,0 -70525721,"Raiden Legacy",purchase,1.0,0 -70525721,"Raiden Legacy",play,0.5,0 -150326378,"Town of Salem",purchase,1.0,0 -150326378,"Town of Salem",play,30.0,0 -150326378,"Team Fortress 2",purchase,1.0,0 -150326378,"Team Fortress 2",play,25.0,0 -150326378,"Counter-Strike Global Offensive",purchase,1.0,0 -150326378,"Counter-Strike Global Offensive",play,18.4,0 -150326378,"War Thunder",purchase,1.0,0 -150326378,"War Thunder",play,12.5,0 -150326378,"Dead Island Riptide",purchase,1.0,0 -150326378,"Dead Island Riptide",play,6.0,0 -150326378,"Unturned",purchase,1.0,0 -150326378,"Unturned",play,1.9,0 -150326378,"Dota 2",purchase,1.0,0 -150326378,"Dota 2",play,1.8,0 -150326378,"Risk of Rain",purchase,1.0,0 -150326378,"Risk of Rain",play,1.2,0 -150326378,"Loadout",purchase,1.0,0 -150326378,"Loadout",play,1.1,0 -38132168,"Half-Life 2 Deathmatch",purchase,1.0,0 -38132168,"Half-Life 2 Lost Coast",purchase,1.0,0 -239661767,"Alien Swarm",purchase,1.0,0 -239661767,"Alien Swarm",play,5.6,0 -239661767,"Left 4 Dead 2",purchase,1.0,0 -239661767,"Left 4 Dead 2",play,2.9,0 -296222138,"War Inc. Battlezone",purchase,1.0,0 -68200610,"Sid Meier's Civilization V",purchase,1.0,0 -68200610,"Sid Meier's Civilization V",play,646.0,0 -68200610,"The Elder Scrolls V Skyrim",purchase,1.0,0 -68200610,"The Elder Scrolls V Skyrim",play,75.0,0 -68200610,"FINAL FANTASY XI",purchase,1.0,0 -68200610,"FINAL FANTASY XI",play,50.0,0 -68200610,"Deus Ex Human Revolution",purchase,1.0,0 -68200610,"Deus Ex Human Revolution",play,34.0,0 -68200610,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -131465743,"Counter-Strike Global Offensive",purchase,1.0,0 -131465743,"Counter-Strike Global Offensive",play,60.0,0 -284526944,"Dota 2",purchase,1.0,0 -284526944,"Dota 2",play,178.0,0 -284526944,"FreeStyle2 Street Basketball",purchase,1.0,0 -180501401,"Farming Simulator 15",purchase,1.0,0 -180501401,"Farming Simulator 15",play,87.0,0 -180501401,"Cities Skylines",purchase,1.0,0 -180501401,"Cities Skylines",play,23.0,0 -180501401,"Euro Truck Simulator 2",purchase,1.0,0 -180501401,"Euro Truck Simulator 2",play,4.4,0 -180501401,"Crusader Kings II",purchase,1.0,0 -180501401,"Crusader Kings II",play,3.1,0 -180501401,"Train Simulator",purchase,1.0,0 -180501401,"Train Simulator",play,2.3,0 -180501401,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -180501401,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -205439135,"Dota 2",purchase,1.0,0 -205439135,"Dota 2",play,2.0,0 -280955228,"Team Fortress 2",purchase,1.0,0 -280955228,"Team Fortress 2",play,1.0,0 -280955228,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -280955228,"Fallout 3 - Game of the Year Edition",play,0.3,0 -58905429,"War Thunder",purchase,1.0,0 -58905429,"War Thunder",play,433.0,0 -58905429,"Arma 3",purchase,1.0,0 -58905429,"Arma 3",play,376.0,0 -58905429,"Counter-Strike Global Offensive",purchase,1.0,0 -58905429,"Counter-Strike Global Offensive",play,56.0,0 -58905429,"Assassin's Creed II",purchase,1.0,0 -58905429,"Assassin's Creed II",play,39.0,0 -58905429,"The Elder Scrolls V Skyrim",purchase,1.0,0 -58905429,"The Elder Scrolls V Skyrim",play,38.0,0 -58905429,"XCOM Enemy Unknown",purchase,1.0,0 -58905429,"XCOM Enemy Unknown",play,23.0,0 -58905429,"Train Fever",purchase,1.0,0 -58905429,"Train Fever",play,22.0,0 -58905429,"Door Kickers",purchase,1.0,0 -58905429,"Door Kickers",play,22.0,0 -58905429,"Mafia II",purchase,1.0,0 -58905429,"Mafia II",play,21.0,0 -58905429,"Sid Meier's Civilization V",purchase,1.0,0 -58905429,"Sid Meier's Civilization V",play,19.1,0 -58905429,"Rocket League",purchase,1.0,0 -58905429,"Rocket League",play,16.8,0 -58905429,"The Binding of Isaac",purchase,1.0,0 -58905429,"The Binding of Isaac",play,15.5,0 -58905429,"How to Survive",purchase,1.0,0 -58905429,"How to Survive",play,13.1,0 -58905429,"State of Decay",purchase,1.0,0 -58905429,"State of Decay",play,12.3,0 -58905429,"Far Cry 3",purchase,1.0,0 -58905429,"Far Cry 3",play,11.2,0 -58905429,"DayZ",purchase,1.0,0 -58905429,"DayZ",play,11.2,0 -58905429,"Assassin's Creed IV Black Flag",purchase,1.0,0 -58905429,"Assassin's Creed IV Black Flag",play,10.8,0 -58905429,"Game Dev Tycoon",purchase,1.0,0 -58905429,"Game Dev Tycoon",play,10.7,0 -58905429,"Banished",purchase,1.0,0 -58905429,"Banished",play,10.3,0 -58905429,"The Walking Dead",purchase,1.0,0 -58905429,"The Walking Dead",play,7.9,0 -58905429,"Call of Juarez Gunslinger",purchase,1.0,0 -58905429,"Call of Juarez Gunslinger",play,7.4,0 -58905429,"Gunpoint",purchase,1.0,0 -58905429,"Gunpoint",play,6.5,0 -58905429,"Spec Ops The Line",purchase,1.0,0 -58905429,"Spec Ops The Line",play,6.2,0 -58905429,"Alien Swarm",purchase,1.0,0 -58905429,"Alien Swarm",play,5.9,0 -58905429,"Chivalry Medieval Warfare",purchase,1.0,0 -58905429,"Chivalry Medieval Warfare",play,4.7,0 -58905429,"Homefront",purchase,1.0,0 -58905429,"Homefront",play,4.5,0 -58905429,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -58905429,"Dragon Age Origins - Ultimate Edition",play,4.5,0 -58905429,"Papers, Please",purchase,1.0,0 -58905429,"Papers, Please",play,4.4,0 -58905429,"Robocraft",purchase,1.0,0 -58905429,"Robocraft",play,3.8,0 -58905429,"Borderlands",purchase,1.0,0 -58905429,"Borderlands",play,2.9,0 -58905429,"LIMBO",purchase,1.0,0 -58905429,"LIMBO",play,2.8,0 -58905429,"Shadowrun Returns",purchase,1.0,0 -58905429,"Shadowrun Returns",play,2.8,0 -58905429,"Godus",purchase,1.0,0 -58905429,"Godus",play,2.8,0 -58905429,"Mount & Blade Warband",purchase,1.0,0 -58905429,"Mount & Blade Warband",play,2.5,0 -58905429,"Euro Truck Simulator 2",purchase,1.0,0 -58905429,"Euro Truck Simulator 2",play,2.3,0 -58905429,"Assassin's Creed Brotherhood",purchase,1.0,0 -58905429,"Assassin's Creed Brotherhood",play,2.0,0 -58905429,"Space Engineers",purchase,1.0,0 -58905429,"Space Engineers",play,1.8,0 -58905429,"Star Wars Republic Commando",purchase,1.0,0 -58905429,"Star Wars Republic Commando",play,1.7,0 -58905429,"The Bard's Tale",purchase,1.0,0 -58905429,"The Bard's Tale",play,1.6,0 -58905429,"Neverending Nightmares",purchase,1.0,0 -58905429,"Neverending Nightmares",play,1.6,0 -58905429,"Arma Cold War Assault",purchase,1.0,0 -58905429,"Arma Cold War Assault",play,1.6,0 -58905429,"Sine Mora",purchase,1.0,0 -58905429,"Sine Mora",play,1.5,0 -58905429,"LEGO Worlds",purchase,1.0,0 -58905429,"LEGO Worlds",play,1.5,0 -58905429,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -58905429,"Dark Souls Prepare to Die Edition",play,1.4,0 -58905429,"Dwarfs!?",purchase,1.0,0 -58905429,"Dwarfs!?",play,1.3,0 -58905429,"Dota 2",purchase,1.0,0 -58905429,"Dota 2",play,1.3,0 -58905429,"Mass Effect",purchase,1.0,0 -58905429,"Mass Effect",play,1.3,0 -58905429,"Medieval Engineers",purchase,1.0,0 -58905429,"Medieval Engineers",play,1.3,0 -58905429,"Portal",purchase,1.0,0 -58905429,"Portal",play,1.3,0 -58905429,"Assassin's Creed III",purchase,1.0,0 -58905429,"Assassin's Creed III",play,1.2,0 -58905429,"Botanicula",purchase,1.0,0 -58905429,"Botanicula",play,1.2,0 -58905429,"The Lord of the Rings War in the North",purchase,1.0,0 -58905429,"The Lord of the Rings War in the North",play,1.2,0 -58905429,"Guns of Icarus Online",purchase,1.0,0 -58905429,"Guns of Icarus Online",play,1.1,0 -58905429,"Neverwinter Nights 2 Platinum",purchase,1.0,0 -58905429,"Neverwinter Nights 2 Platinum",play,1.0,0 -58905429,"Arma Tactics",purchase,1.0,0 -58905429,"Arma Tactics",play,1.0,0 -58905429,"Thomas Was Alone",purchase,1.0,0 -58905429,"Thomas Was Alone",play,1.0,0 -58905429,"Valkyria Chronicles",purchase,1.0,0 -58905429,"Valkyria Chronicles",play,0.9,0 -58905429,"Counter-Strike",purchase,1.0,0 -58905429,"Counter-Strike",play,0.9,0 -58905429,"Machinarium",purchase,1.0,0 -58905429,"Machinarium",play,0.8,0 -58905429,"Dishonored (RU)",purchase,1.0,0 -58905429,"Dishonored (RU)",play,0.8,0 -58905429,"Guardians of Middle-earth",purchase,1.0,0 -58905429,"Guardians of Middle-earth",play,0.7,0 -58905429,"Brothers - A Tale of Two Sons",purchase,1.0,0 -58905429,"Brothers - A Tale of Two Sons",play,0.7,0 -58905429,"Titan Quest",purchase,1.0,0 -58905429,"Titan Quest",play,0.6,0 -58905429,"ORION Prelude",purchase,1.0,0 -58905429,"ORION Prelude",play,0.6,0 -58905429,"Mirror's Edge",purchase,1.0,0 -58905429,"Mirror's Edge",play,0.6,0 -58905429,"Besiege",purchase,1.0,0 -58905429,"Besiege",play,0.6,0 -58905429,"Euro Truck Simulator",purchase,1.0,0 -58905429,"Euro Truck Simulator",play,0.6,0 -58905429,"Metro 2033",purchase,1.0,0 -58905429,"Metro 2033",play,0.6,0 -58905429,"Portal 2",purchase,1.0,0 -58905429,"Portal 2",play,0.6,0 -58905429,"Numen Contest of Heroes",purchase,1.0,0 -58905429,"Numen Contest of Heroes",play,0.6,0 -58905429,"King Arthur II - The Role-playing Wargame",purchase,1.0,0 -58905429,"King Arthur II - The Role-playing Wargame",play,0.4,0 -58905429,"Dear Esther",purchase,1.0,0 -58905429,"Dear Esther",play,0.4,0 -58905429,"Toy Soldiers",purchase,1.0,0 -58905429,"Toy Soldiers",play,0.4,0 -58905429,"Shelter",purchase,1.0,0 -58905429,"Shelter",play,0.3,0 -58905429,"Hotline Miami",purchase,1.0,0 -58905429,"Hotline Miami",play,0.3,0 -58905429,"Medieval II Total War Kingdoms",purchase,1.0,0 -58905429,"Medieval II Total War Kingdoms",play,0.2,0 -58905429,"Waking Mars",purchase,1.0,0 -58905429,"Waking Mars",play,0.2,0 -58905429,"Spelunky",purchase,1.0,0 -58905429,"Spelunky",play,0.2,0 -58905429,"Arma 2 DayZ Mod",purchase,1.0,0 -58905429,"Arma 2 DayZ Mod",play,0.2,0 -58905429,"Arma 2",purchase,1.0,0 -58905429,"Arma 2",play,0.2,0 -58905429,"Medieval II Total War",purchase,1.0,0 -58905429,"Medieval II Total War",play,0.2,0 -58905429,"Proteus",purchase,1.0,0 -58905429,"Proteus",play,0.1,0 -58905429,"Heroes & Generals",purchase,1.0,0 -58905429,"Heroes & Generals",play,0.1,0 -58905429,"Clicker Heroes",purchase,1.0,0 -58905429,"Clicker Heroes",play,0.1,0 -58905429,"Dex",purchase,1.0,0 -58905429,"Arma 2 Operation Arrowhead",purchase,1.0,0 -58905429,"LUFTRAUSERS",purchase,1.0,0 -58905429,"Tomb Raider",purchase,1.0,0 -58905429,"Agricultural Simulator Historical Farming",purchase,1.0,0 -58905429,"Airline Tycoon 2",purchase,1.0,0 -58905429,"Airport Simulator 2014",purchase,1.0,0 -58905429,"Alan Wake",purchase,1.0,0 -58905429,"Alan Wake's American Nightmare",purchase,1.0,0 -58905429,"Alpha Prime",purchase,1.0,0 -58905429,"Alpha Protocol",purchase,1.0,0 -58905429,"Always Sometimes Monsters",purchase,1.0,0 -58905429,"Anachronox",purchase,1.0,0 -58905429,"Anodyne",purchase,1.0,0 -58905429,"Antichamber",purchase,1.0,0 -58905429,"ArcaniA",purchase,1.0,0 -58905429,"Arma 2 British Armed Forces",purchase,1.0,0 -58905429,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -58905429,"Arma 2 Private Military Company",purchase,1.0,0 -58905429,"Arma 3 Helicopters",purchase,1.0,0 -58905429,"Arma 3 Karts",purchase,1.0,0 -58905429,"Arma 3 Marksmen",purchase,1.0,0 -58905429,"Arma 3 Zeus",purchase,1.0,0 -58905429,"Arma Gold Edition",purchase,1.0,0 -58905429,"Assassin's Creed",purchase,1.0,0 -58905429,"Awesomenauts",purchase,1.0,0 -58905429,"Axis Game Factory's AGFPRO 3.0",purchase,1.0,0 -58905429,"Bang Bang Racing",purchase,1.0,0 -58905429,"Bastion",purchase,1.0,0 -58905429,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -58905429,"Batman Arkham City GOTY",purchase,1.0,0 -58905429,"Battlestations Midway",purchase,1.0,0 -58905429,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -58905429,"Before the Echo",purchase,1.0,0 -58905429,"Bejeweled 3",purchase,1.0,0 -58905429,"Betrayer",purchase,1.0,0 -58905429,"BioShock",purchase,1.0,0 -58905429,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -58905429,"BIT.TRIP RUNNER",purchase,1.0,0 -58905429,"Blackguards",purchase,1.0,0 -58905429,"Blood Bowl Legendary Edition",purchase,1.0,0 -58905429,"BookWorm Deluxe",purchase,1.0,0 -58905429,"Borderlands 2",purchase,1.0,0 -58905429,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -58905429,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -58905429,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -58905429,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -58905429,"Braid",purchase,1.0,0 -58905429,"Bridge Constructor",purchase,1.0,0 -58905429,"Bridge It (plus)",purchase,1.0,0 -58905429,"Bridge Project",purchase,1.0,0 -58905429,"Broken Sword 2 - the Smoking Mirror Remastered",purchase,1.0,0 -58905429,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -58905429,"Capsized",purchase,1.0,0 -58905429,"Card City Nights",purchase,1.0,0 -58905429,"Carrier Command Gaea Mission",purchase,1.0,0 -58905429,"Cities XL Platinum",purchase,1.0,0 -58905429,"Closure",purchase,1.0,0 -58905429,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -58905429,"Commandos 2 Men of Courage",purchase,1.0,0 -58905429,"Commandos 3 Destination Berlin",purchase,1.0,0 -58905429,"Commandos Behind Enemy Lines",purchase,1.0,0 -58905429,"Commandos Beyond the Call of Duty",purchase,1.0,0 -58905429,"Company of Heroes",purchase,1.0,0 -58905429,"Company of Heroes (New Steam Version)",purchase,1.0,0 -58905429,"Company of Heroes Opposing Fronts",purchase,1.0,0 -58905429,"Company of Heroes Tales of Valor",purchase,1.0,0 -58905429,"Confrontation",purchase,1.0,0 -58905429,"Counter-Strike Condition Zero",purchase,1.0,0 -58905429,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -58905429,"Crysis 2 Maximum Edition",purchase,1.0,0 -58905429,"Daikatana",purchase,1.0,0 -58905429,"Darksiders",purchase,1.0,0 -58905429,"Darksiders II",purchase,1.0,0 -58905429,"Deponia",purchase,1.0,0 -58905429,"Deus Ex Invisible War",purchase,1.0,0 -58905429,"Deus Ex The Fall",purchase,1.0,0 -58905429,"Disciples III Renaissance",purchase,1.0,0 -58905429,"Disciples III Resurrection",purchase,1.0,0 -58905429,"Divinity II Developer's Cut",purchase,1.0,0 -58905429,"Dogfight 1942",purchase,1.0,0 -58905429,"Dogfight 1942 Fire over Africa",purchase,1.0,0 -58905429,"Dogfight 1942 Russia under Siege",purchase,1.0,0 -58905429,"Dominique Pamplemousse",purchase,1.0,0 -58905429,"Door Kickers Soundtrack",purchase,1.0,0 -58905429,"Dust An Elysian Tail",purchase,1.0,0 -58905429,"English Country Tune",purchase,1.0,0 -58905429,"Escape Rosecliff Island",purchase,1.0,0 -58905429,"Etherlords",purchase,1.0,0 -58905429,"Etherlords II",purchase,1.0,0 -58905429,"Europa Universalis Rome - Gold Edition",purchase,1.0,0 -58905429,"Europa Universalis Rome - Vae Victis",purchase,1.0,0 -58905429,"Europa Universalis III",purchase,1.0,0 -58905429,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -58905429,"Expeditions Conquistador",purchase,1.0,0 -58905429,"F.E.A.R.",purchase,1.0,0 -58905429,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -58905429,"F.E.A.R. 3",purchase,1.0,0 -58905429,"F.E.A.R. Extraction Point",purchase,1.0,0 -58905429,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -58905429,"Faerie Solitaire",purchase,1.0,0 -58905429,"Fallout New Vegas",purchase,1.0,0 -58905429,"Far Cry 2",purchase,1.0,0 -58905429,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -58905429,"Far Cry 3 Blood Dragon",purchase,1.0,0 -58905429,"Feeding Frenzy 2 Shipwreck Showdown Deluxe",purchase,1.0,0 -58905429,"FEZ",purchase,1.0,0 -58905429,"Full Mojo Rampage",purchase,1.0,0 -58905429,"Game of Thrones ",purchase,1.0,0 -58905429,"Giana Sisters Twisted Dreams",purchase,1.0,0 -58905429,"Gone Home",purchase,1.0,0 -58905429,"Goodbye Deponia",purchase,1.0,0 -58905429,"Grand Ages Rome",purchase,1.0,0 -58905429,"Greed Corp",purchase,1.0,0 -58905429,"GRID",purchase,1.0,0 -58905429,"GRID 2",purchase,1.0,0 -58905429,"GT Power Expansion",purchase,1.0,0 -58905429,"GTR Evolution",purchase,1.0,0 -58905429,"Guacamelee! Gold Edition",purchase,1.0,0 -58905429,"Gumboy Tournament",purchase,1.0,0 -58905429,"Gun Monkeys",purchase,1.0,0 -58905429,"Half-Life",purchase,1.0,0 -58905429,"Half-Life 2",purchase,1.0,0 -58905429,"Half-Life 2 Deathmatch",purchase,1.0,0 -58905429,"Half-Life 2 Episode One",purchase,1.0,0 -58905429,"Half-Life 2 Episode Two",purchase,1.0,0 -58905429,"Half-Life 2 Lost Coast",purchase,1.0,0 -58905429,"Half-Life Blue Shift",purchase,1.0,0 -58905429,"Half-Life Opposing Force",purchase,1.0,0 -58905429,"Half-Life Source",purchase,1.0,0 -58905429,"Half-Life Deathmatch Source",purchase,1.0,0 -58905429,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",purchase,1.0,0 -58905429,"Hammerwatch",purchase,1.0,0 -58905429,"Hearts of Iron III",purchase,1.0,0 -58905429,"Heli Heroes",purchase,1.0,0 -58905429,"Hell Yeah!",purchase,1.0,0 -58905429,"Hitman 2 Silent Assassin",purchase,1.0,0 -58905429,"Hitman Absolution",purchase,1.0,0 -58905429,"Hitman Blood Money",purchase,1.0,0 -58905429,"Hitman Codename 47",purchase,1.0,0 -58905429,"Hitman Contracts",purchase,1.0,0 -58905429,"Hotline Miami 2 Wrong Number Digital Comic",purchase,1.0,0 -58905429,"I Have No Mouth, and I Must Scream",purchase,1.0,0 -58905429,"Imperium Romanum Gold Edition",purchase,1.0,0 -58905429,"Incredipede",purchase,1.0,0 -58905429,"Inquisitor",purchase,1.0,0 -58905429,"Insurgency",purchase,1.0,0 -58905429,"Intrusion 2",purchase,1.0,0 -58905429,"Joe Danger 2 The Movie",purchase,1.0,0 -58905429,"Just Cause",purchase,1.0,0 -58905429,"Kaptain Brawe",purchase,1.0,0 -58905429,"KickBeat Steam Edition",purchase,1.0,0 -58905429,"King's Bounty Warriors of the North",purchase,1.0,0 -58905429,"L.A. Noire",purchase,1.0,0 -58905429,"Left 4 Dead 2",purchase,1.0,0 -58905429,"Legend of Grimrock",purchase,1.0,0 -58905429,"Little Inferno",purchase,1.0,0 -58905429,"Lunar Flight",purchase,1.0,0 -58905429,"Magical Diary",purchase,1.0,0 -58905429,"Magicka",purchase,1.0,0 -58905429,"Magicka Vietnam",purchase,1.0,0 -58905429,"Marlow Briggs",purchase,1.0,0 -58905429,"Master Reboot",purchase,1.0,0 -58905429,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -58905429,"Medal of Honor(TM) Single Player",purchase,1.0,0 -58905429,"Medal of Honor Pre-Order",purchase,1.0,0 -58905429,"Memento Mori",purchase,1.0,0 -58905429,"Miner Wars 2081",purchase,1.0,0 -58905429,"Miner Wars Arena ",purchase,1.0,0 -58905429,"Mini Ninjas",purchase,1.0,0 -58905429,"Monaco",purchase,1.0,0 -58905429,"Monday Night Combat",purchase,1.0,0 -58905429,"Mortal Kombat Kollection",purchase,1.0,0 -58905429,"NaissanceE",purchase,1.0,0 -58905429,"Natural Selection 2",purchase,1.0,0 -58905429,"NEO Scavenger",purchase,1.0,0 -58905429,"Nosgoth",purchase,1.0,0 -58905429,"Oddworld Abe's Oddysee",purchase,1.0,0 -58905429,"Offspring Fling!",purchase,1.0,0 -58905429,"Oil Rush",purchase,1.0,0 -58905429,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -58905429,"Operation Flashpoint Red River",purchase,1.0,0 -58905429,"Original War",purchase,1.0,0 -58905429,"Outlast",purchase,1.0,0 -58905429,"Overlord",purchase,1.0,0 -58905429,"Overlord Raising Hell",purchase,1.0,0 -58905429,"Overlord II",purchase,1.0,0 -58905429,"Painkiller Hell & Damnation",purchase,1.0,0 -58905429,"Papo & Yo",purchase,1.0,0 -58905429,"Pat & Mat",purchase,1.0,0 -58905429,"Patch testing for Chivalry",purchase,1.0,0 -58905429,"Peggle Deluxe",purchase,1.0,0 -58905429,"Pid ",purchase,1.0,0 -58905429,"Planet Stronghold",purchase,1.0,0 -58905429,"Portal Stories Mel",purchase,1.0,0 -58905429,"POSTAL",purchase,1.0,0 -58905429,"Q.U.B.E Director's Cut",purchase,1.0,0 -58905429,"RACE 07",purchase,1.0,0 -58905429,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -58905429,"RaceRoom Racing Experience ",purchase,1.0,0 -58905429,"Race The Sun",purchase,1.0,0 -58905429,"Ravensword Shadowlands",purchase,1.0,0 -58905429,"RAW - Realms of Ancient War",purchase,1.0,0 -58905429,"Receiver",purchase,1.0,0 -58905429,"Red Faction Armageddon",purchase,1.0,0 -58905429,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -58905429,"Ring Runner Flight of the Sages",purchase,1.0,0 -58905429,"Risen 2 - Dark Waters",purchase,1.0,0 -58905429,"Rise of the Argonauts",purchase,1.0,0 -58905429,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -58905429,"Rock of Ages",purchase,1.0,0 -58905429,"Rome Total War",purchase,1.0,0 -58905429,"Sacred 2 Gold",purchase,1.0,0 -58905429,"Saints Row 2",purchase,1.0,0 -58905429,"Saints Row The Third",purchase,1.0,0 -58905429,"Samorost 2",purchase,1.0,0 -58905429,"Sanctum 2",purchase,1.0,0 -58905429,"Scribblenauts Unlimited",purchase,1.0,0 -58905429,"Serious Sam HD The First Encounter",purchase,1.0,0 -58905429,"Shadowrun Dragonfall",purchase,1.0,0 -58905429,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -58905429,"Ship Simulator Extremes",purchase,1.0,0 -58905429,"Sid Meier's Ace Patrol",purchase,1.0,0 -58905429,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -58905429,"Sid Meier's Civilization III Complete",purchase,1.0,0 -58905429,"Sid Meier's Civilization IV",purchase,1.0,0 -58905429,"Sid Meier's Civilization IV",purchase,1.0,0 -58905429,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -58905429,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -58905429,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -58905429,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -58905429,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -58905429,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -58905429,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -58905429,"Sid Meier's Pirates!",purchase,1.0,0 -58905429,"Sid Meier's Railroads!",purchase,1.0,0 -58905429,"Sir, You Are Being Hunted",purchase,1.0,0 -58905429,"Skyscraper Simulator",purchase,1.0,0 -58905429,"SpellForce 2 - Faith in Destiny",purchase,1.0,0 -58905429,"Starseed Pilgrim",purchase,1.0,0 -58905429,"State of Decay - Breakdown",purchase,1.0,0 -58905429,"State of Decay - Lifeline",purchase,1.0,0 -58905429,"STCC II",purchase,1.0,0 -58905429,"SteamWorld Dig",purchase,1.0,0 -58905429,"Super Hexagon",purchase,1.0,0 -58905429,"Supreme Commander",purchase,1.0,0 -58905429,"Supreme Commander Forged Alliance",purchase,1.0,0 -58905429,"Sword of the Stars Complete Collection",purchase,1.0,0 -58905429,"Symphony",purchase,1.0,0 -58905429,"System Shock 2",purchase,1.0,0 -58905429,"Take On Helicopters",purchase,1.0,0 -58905429,"Talisman Digital Edition",purchase,1.0,0 -58905429,"Talisman Prologue",purchase,1.0,0 -58905429,"Team Fortress Classic",purchase,1.0,0 -58905429,"Terraria",purchase,1.0,0 -58905429,"Tesla Effect",purchase,1.0,0 -58905429,"The Bridge",purchase,1.0,0 -58905429,"The Bureau XCOM Declassified",purchase,1.0,0 -58905429,"The Darkness II",purchase,1.0,0 -58905429,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -58905429,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -58905429,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -58905429,"The Fish Fillets 2",purchase,1.0,0 -58905429,"The Guild II",purchase,1.0,0 -58905429,"The Kings' Crusade",purchase,1.0,0 -58905429,"The Last Remnant",purchase,1.0,0 -58905429,"The Moon Sliver",purchase,1.0,0 -58905429,"The Retro Expansion",purchase,1.0,0 -58905429,"The Swapper",purchase,1.0,0 -58905429,"The Testament of Sherlock Holmes",purchase,1.0,0 -58905429,"The WTCC 2010 Pack",purchase,1.0,0 -58905429,"Thief Gold",purchase,1.0,0 -58905429,"Ticket to Ride",purchase,1.0,0 -58905429,"Ticket to Ride - USA 1910",purchase,1.0,0 -58905429,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -58905429,"Titan Quest Immortal Throne",purchase,1.0,0 -58905429,"To the Moon",purchase,1.0,0 -58905429,"Trainz Simulator 12",purchase,1.0,0 -58905429,"Trine 2",purchase,1.0,0 -58905429,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -58905429,"TypeRider",purchase,1.0,0 -58905429,"UFO Afterlight",purchase,1.0,0 -58905429,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",purchase,1.0,0 -58905429,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -58905429,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -58905429,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -58905429,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -58905429,"Wargame European Escalation",purchase,1.0,0 -58905429,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -58905429,"Woodcutter Simulator 2013",purchase,1.0,0 -162894582,"Dota 2",purchase,1.0,0 -162894582,"Dota 2",play,3.2,0 -138725344,"The Elder Scrolls V Skyrim",purchase,1.0,0 -138725344,"The Elder Scrolls V Skyrim",play,116.0,0 -138725344,"Counter-Strike Global Offensive",purchase,1.0,0 -138725344,"Counter-Strike Global Offensive",play,55.0,0 -138725344,"Left 4 Dead 2",purchase,1.0,0 -138725344,"Left 4 Dead 2",play,35.0,0 -138725344,"Portal 2",purchase,1.0,0 -138725344,"Portal 2",play,22.0,0 -138725344,"Outlast",purchase,1.0,0 -138725344,"Outlast",play,19.8,0 -138725344,"PAYDAY 2",purchase,1.0,0 -138725344,"PAYDAY 2",play,12.9,0 -138725344,"Garry's Mod",purchase,1.0,0 -138725344,"Garry's Mod",play,8.1,0 -138725344,"TERA",purchase,1.0,0 -138725344,"TERA",play,4.8,0 -138725344,"Slender The Arrival",purchase,1.0,0 -138725344,"Slender The Arrival",play,4.7,0 -138725344,"BattleBlock Theater",purchase,1.0,0 -138725344,"BattleBlock Theater",play,2.8,0 -138725344,"Castle Crashers",purchase,1.0,0 -138725344,"Castle Crashers",play,1.3,0 -138725344,"Dead Space 2",purchase,1.0,0 -138725344,"Dead Space 2",play,1.1,0 -138725344,"Dota 2",purchase,1.0,0 -138725344,"Dota 2",play,0.7,0 -138725344,"Insurgency",purchase,1.0,0 -138725344,"Insurgency",play,0.4,0 -138725344,"Cry of Fear",purchase,1.0,0 -138725344,"Magicka Wizard Wars",purchase,1.0,0 -138725344,"Blacklight Retribution",purchase,1.0,0 -138725344,"Outlast Whistleblower DLC",purchase,1.0,0 -138725344,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -120113754,"Warframe",purchase,1.0,0 -120113754,"Warframe",play,520.0,0 -120113754,"Assassin's Creed Syndicate",purchase,1.0,0 -120113754,"Assassin's Creed Syndicate",play,35.0,0 -120113754,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -120113754,"METAL GEAR SOLID V THE PHANTOM PAIN",play,15.7,0 -120113754,"Left 4 Dead 2",purchase,1.0,0 -120113754,"Left 4 Dead 2",play,5.1,0 -120113754,"Unturned",purchase,1.0,0 -120113754,"Unturned",play,4.9,0 -120113754,"Robocraft",purchase,1.0,0 -120113754,"Robocraft",play,0.6,0 -120113754,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -120113754,"PlanetSide 2",purchase,1.0,0 -120113754,"War Thunder",purchase,1.0,0 -119430691,"Dota 2",purchase,1.0,0 -119430691,"Dota 2",play,877.0,0 -119430691,"Counter-Strike Source",purchase,1.0,0 -119430691,"Counter-Strike Source",play,10.9,0 -37343172,"Counter-Strike",purchase,1.0,0 -37343172,"Counter-Strike",play,165.0,0 -37343172,"Counter-Strike Condition Zero",purchase,1.0,0 -37343172,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -37343172,"Day of Defeat",purchase,1.0,0 -37343172,"Deathmatch Classic",purchase,1.0,0 -37343172,"Portal",purchase,1.0,0 -37343172,"Ricochet",purchase,1.0,0 -85625611,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -84706664,"Sid Meier's Civilization V",purchase,1.0,0 -84706664,"Sid Meier's Civilization V",play,4.9,0 -84293720,"Team Fortress 2",purchase,1.0,0 -84293720,"Team Fortress 2",play,7.0,0 -187545648,"Dota 2",purchase,1.0,0 -187545648,"Dota 2",play,519.0,0 -187545648,"Team Fortress 2",purchase,1.0,0 -187545648,"Team Fortress 2",play,0.6,0 -187545648,"Strife",purchase,1.0,0 -187545648,"Strife",play,0.5,0 -187545648,"Unturned",purchase,1.0,0 -187545648,"Unturned",play,0.4,0 -187545648,"Block N Load",purchase,1.0,0 -187545648,"Block N Load",play,0.3,0 -187545648,"WARMODE",purchase,1.0,0 -187545648,"Clicker Heroes",purchase,1.0,0 -187545648,"Warframe",purchase,1.0,0 -187545648,"Anarchy Arcade",purchase,1.0,0 -187545648,"Archeblade",purchase,1.0,0 -187545648,"BLOCKADE 3D",purchase,1.0,0 -187545648,"Counter-Strike Nexon Zombies",purchase,1.0,0 -187545648,"HAWKEN",purchase,1.0,0 -187545648,"Heroes & Generals",purchase,1.0,0 -187545648,"Loadout",purchase,1.0,0 -187545648,"Magicka Wizard Wars",purchase,1.0,0 -187545648,"No More Room in Hell",purchase,1.0,0 -187545648,"Panzar",purchase,1.0,0 -187545648,"Robocraft",purchase,1.0,0 -187545648,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -187545648,"War Thunder",purchase,1.0,0 -187545648,"World of Guns Gun Disassembly",purchase,1.0,0 -132927208,"Call of Duty Modern Warfare 3",purchase,1.0,0 -132927208,"Call of Duty Modern Warfare 3",play,168.0,0 -132927208,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -132927208,"Call of Duty Modern Warfare 3 - Multiplayer",play,4.3,0 -132927208,"Unturned",purchase,1.0,0 -54999247,"Counter-Strike Source",purchase,1.0,0 -54999247,"Counter-Strike Source",play,167.0,0 -54999247,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -54999247,"Call of Duty Modern Warfare 2 - Multiplayer",play,105.0,0 -54999247,"Left 4 Dead 2",purchase,1.0,0 -54999247,"Left 4 Dead 2",play,96.0,0 -54999247,"Call of Duty Modern Warfare 2",purchase,1.0,0 -54999247,"Call of Duty Modern Warfare 2",play,25.0,0 -54999247,"Team Fortress 2",purchase,1.0,0 -54999247,"Team Fortress 2",play,14.5,0 -54999247,"Counter-Strike",purchase,1.0,0 -54999247,"Counter-Strike",play,0.5,0 -54999247,"Counter-Strike Condition Zero",purchase,1.0,0 -54999247,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -54999247,"Unturned",purchase,1.0,0 -54999247,"Warface",purchase,1.0,0 -49627054,"Counter-Strike",purchase,1.0,0 -49627054,"Counter-Strike",play,4.5,0 -49627054,"Counter-Strike Condition Zero",purchase,1.0,0 -49627054,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -49627054,"Day of Defeat",purchase,1.0,0 -49627054,"Deathmatch Classic",purchase,1.0,0 -49627054,"Ricochet",purchase,1.0,0 -295387869,"Unturned",purchase,1.0,0 -295387869,"Unturned",play,21.0,0 -295387869,"Survarium",purchase,1.0,0 -21261374,"Counter-Strike",purchase,1.0,0 -21261374,"Day of Defeat",purchase,1.0,0 -21261374,"Deathmatch Classic",purchase,1.0,0 -21261374,"Half-Life",purchase,1.0,0 -21261374,"Half-Life Blue Shift",purchase,1.0,0 -21261374,"Half-Life Opposing Force",purchase,1.0,0 -21261374,"Ricochet",purchase,1.0,0 -21261374,"Team Fortress Classic",purchase,1.0,0 -263470824,"Dota 2",purchase,1.0,0 -263470824,"Dota 2",play,5.5,0 -292150196,"Viridi",purchase,1.0,0 -51822361,"Left 4 Dead",purchase,1.0,0 -51822361,"Left 4 Dead",play,343.0,0 -51822361,"Dota 2",purchase,1.0,0 -51822361,"Dota 2",play,329.0,0 -51822361,"Dragon Nest Europe",purchase,1.0,0 -51822361,"Dragon Nest Europe",play,279.0,0 -51822361,"The Elder Scrolls V Skyrim",purchase,1.0,0 -51822361,"The Elder Scrolls V Skyrim",play,277.0,0 -51822361,"Borderlands 2",purchase,1.0,0 -51822361,"Borderlands 2",play,249.0,0 -51822361,"Torchlight II",purchase,1.0,0 -51822361,"Torchlight II",play,211.0,0 -51822361,"Fallout New Vegas",purchase,1.0,0 -51822361,"Fallout New Vegas",play,149.0,0 -51822361,"WAKFU",purchase,1.0,0 -51822361,"WAKFU",play,109.0,0 -51822361,"Divinity Original Sin",purchase,1.0,0 -51822361,"Divinity Original Sin",play,93.0,0 -51822361,"Sid Meier's Civilization V",purchase,1.0,0 -51822361,"Sid Meier's Civilization V",play,71.0,0 -51822361,"Counter-Strike Source",purchase,1.0,0 -51822361,"Counter-Strike Source",play,70.0,0 -51822361,"The Mighty Quest For Epic Loot",purchase,1.0,0 -51822361,"The Mighty Quest For Epic Loot",play,54.0,0 -51822361,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -51822361,"Warhammer 40,000 Dawn of War II",play,51.0,0 -51822361,"Orcs Must Die!",purchase,1.0,0 -51822361,"Orcs Must Die!",play,47.0,0 -51822361,"Left 4 Dead 2",purchase,1.0,0 -51822361,"Left 4 Dead 2",play,39.0,0 -51822361,"Shadowrun Returns",purchase,1.0,0 -51822361,"Shadowrun Returns",play,38.0,0 -51822361,"The Elder Scrolls III Morrowind",purchase,1.0,0 -51822361,"The Elder Scrolls III Morrowind",play,32.0,0 -51822361,"Skullgirls",purchase,1.0,0 -51822361,"Skullgirls",play,31.0,0 -51822361,"Guild Wars Game of the Year",purchase,1.0,0 -51822361,"Guild Wars Game of the Year",play,29.0,0 -51822361,"Rogue Legacy",purchase,1.0,0 -51822361,"Rogue Legacy",play,25.0,0 -51822361,"Pillars of Eternity",purchase,1.0,0 -51822361,"Pillars of Eternity",play,24.0,0 -51822361,"Team Fortress 2",purchase,1.0,0 -51822361,"Team Fortress 2",play,24.0,0 -51822361,"Skulls of the Shogun",purchase,1.0,0 -51822361,"Skulls of the Shogun",play,24.0,0 -51822361,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -51822361,"Warhammer 40,000 Dawn of War Soulstorm",play,23.0,0 -51822361,"Torchlight",purchase,1.0,0 -51822361,"Torchlight",play,22.0,0 -51822361,"Tomb Raider",purchase,1.0,0 -51822361,"Tomb Raider",play,21.0,0 -51822361,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -51822361,"Kingdoms of Amalur Reckoning",play,18.3,0 -51822361,"Mark of the Ninja",purchase,1.0,0 -51822361,"Mark of the Ninja",play,16.9,0 -51822361,"Dungeon Siege",purchase,1.0,0 -51822361,"Dungeon Siege",play,16.2,0 -51822361,"Card Hunter",purchase,1.0,0 -51822361,"Card Hunter",play,15.9,0 -51822361,"Assassin's Creed",purchase,1.0,0 -51822361,"Assassin's Creed",play,15.6,0 -51822361,"Anno 2070",purchase,1.0,0 -51822361,"Anno 2070",play,15.5,0 -51822361,"Half-Life",purchase,1.0,0 -51822361,"Half-Life",play,14.6,0 -51822361,"Hero Siege",purchase,1.0,0 -51822361,"Hero Siege",play,14.1,0 -51822361,"Dungeon Siege 2",purchase,1.0,0 -51822361,"Dungeon Siege 2",play,14.1,0 -51822361,"Magicka",purchase,1.0,0 -51822361,"Magicka",play,13.4,0 -51822361,"Anna - Extended Edition",purchase,1.0,0 -51822361,"Anna - Extended Edition",play,12.2,0 -51822361,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -51822361,"The Elder Scrolls IV Oblivion ",play,12.0,0 -51822361,"XCOM Enemy Unknown",purchase,1.0,0 -51822361,"XCOM Enemy Unknown",play,10.3,0 -51822361,"Orcs Must Die! 2",purchase,1.0,0 -51822361,"Orcs Must Die! 2",play,9.6,0 -51822361,"Magic The Gathering - Duels of the Planeswalkers",purchase,1.0,0 -51822361,"Magic The Gathering - Duels of the Planeswalkers",play,9.3,0 -51822361,"Grim Dawn",purchase,1.0,0 -51822361,"Grim Dawn",play,8.8,0 -51822361,"Valdis Story Abyssal City",purchase,1.0,0 -51822361,"Valdis Story Abyssal City",play,8.6,0 -51822361,"Penumbra Black Plague",purchase,1.0,0 -51822361,"Penumbra Black Plague",play,8.5,0 -51822361,"E.Y.E Divine Cybermancy",purchase,1.0,0 -51822361,"E.Y.E Divine Cybermancy",play,8.2,0 -51822361,"FORCED",purchase,1.0,0 -51822361,"FORCED",play,7.8,0 -51822361,"All Zombies Must Die!",purchase,1.0,0 -51822361,"All Zombies Must Die!",play,7.5,0 -51822361,"Agarest Generations of War",purchase,1.0,0 -51822361,"Agarest Generations of War",play,7.1,0 -51822361,"Loadout",purchase,1.0,0 -51822361,"Loadout",play,7.0,0 -51822361,"Shank",purchase,1.0,0 -51822361,"Shank",play,6.8,0 -51822361,"Bastion",purchase,1.0,0 -51822361,"Bastion",play,5.9,0 -51822361,"SteamWorld Dig",purchase,1.0,0 -51822361,"SteamWorld Dig",play,5.7,0 -51822361,"CastleStorm",purchase,1.0,0 -51822361,"CastleStorm",play,5.2,0 -51822361,"Heroes of Might & Magic V",purchase,1.0,0 -51822361,"Heroes of Might & Magic V",play,4.8,0 -51822361,"Portal",purchase,1.0,0 -51822361,"Portal",play,4.4,0 -51822361,"Borderlands",purchase,1.0,0 -51822361,"Borderlands",play,4.2,0 -51822361,"Assassin's Creed II",purchase,1.0,0 -51822361,"Assassin's Creed II",play,4.0,0 -51822361,"Penumbra Overture",purchase,1.0,0 -51822361,"Penumbra Overture",play,3.9,0 -51822361,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -51822361,"Batman Arkham Asylum GOTY Edition",play,3.8,0 -51822361,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -51822361,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,3.6,0 -51822361,"Alien Swarm",purchase,1.0,0 -51822361,"Alien Swarm",play,3.5,0 -51822361,"Prototype",purchase,1.0,0 -51822361,"Prototype",play,3.5,0 -51822361,"Dust An Elysian Tail",purchase,1.0,0 -51822361,"Dust An Elysian Tail",play,3.3,0 -51822361,"Assault Android Cactus",purchase,1.0,0 -51822361,"Assault Android Cactus",play,2.8,0 -51822361,"Anomaly Warzone Earth",purchase,1.0,0 -51822361,"Anomaly Warzone Earth",play,2.7,0 -51822361,"Burn Zombie Burn",purchase,1.0,0 -51822361,"Burn Zombie Burn",play,2.6,0 -51822361,"Warframe",purchase,1.0,0 -51822361,"Warframe",play,2.5,0 -51822361,"Styx Master of Shadows",purchase,1.0,0 -51822361,"Styx Master of Shadows",play,2.4,0 -51822361,"Might & Magic Duel of Champions",purchase,1.0,0 -51822361,"Might & Magic Duel of Champions",play,2.4,0 -51822361,"Kung Fu Strike The Warrior's Rise",purchase,1.0,0 -51822361,"Kung Fu Strike The Warrior's Rise",play,2.4,0 -51822361,"Dungeon Defenders",purchase,1.0,0 -51822361,"Dungeon Defenders",play,2.1,0 -51822361,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -51822361,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,1.7,0 -51822361,"Endless Legend",purchase,1.0,0 -51822361,"Endless Legend",play,1.7,0 -51822361,"Half-Life 2",purchase,1.0,0 -51822361,"Half-Life 2",play,1.7,0 -51822361,"Bulletstorm",purchase,1.0,0 -51822361,"Bulletstorm",play,1.5,0 -51822361,"Giana Sisters Twisted Dreams",purchase,1.0,0 -51822361,"Giana Sisters Twisted Dreams",play,1.4,0 -51822361,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -51822361,"The Secret of Monkey Island Special Edition",play,1.2,0 -51822361,"Braid",purchase,1.0,0 -51822361,"Braid",play,1.1,0 -51822361,"Dungeon Siege III",purchase,1.0,0 -51822361,"Dungeon Siege III",play,1.0,0 -51822361,"Deponia",purchase,1.0,0 -51822361,"Deponia",play,0.9,0 -51822361,"Final Exam",purchase,1.0,0 -51822361,"Final Exam",play,0.9,0 -51822361,"Firefall",purchase,1.0,0 -51822361,"Firefall",play,0.8,0 -51822361,"Natural Selection 2",purchase,1.0,0 -51822361,"Natural Selection 2",play,0.6,0 -51822361,"Penumbra Requiem",purchase,1.0,0 -51822361,"Penumbra Requiem",play,0.5,0 -51822361,"Terraria",purchase,1.0,0 -51822361,"Terraria",play,0.4,0 -51822361,"Canyon Capers",purchase,1.0,0 -51822361,"Canyon Capers",play,0.4,0 -51822361,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -51822361,"The Incredible Adventures of Van Helsing",play,0.3,0 -51822361,"Archeblade",purchase,1.0,0 -51822361,"Archeblade",play,0.3,0 -51822361,"Phoenix Force",purchase,1.0,0 -51822361,"Phoenix Force",play,0.3,0 -51822361,"Krater",purchase,1.0,0 -51822361,"Krater",play,0.3,0 -51822361,"Spiral Knights",purchase,1.0,0 -51822361,"Spiral Knights",play,0.2,0 -51822361,"Fable - The Lost Chapters",purchase,1.0,0 -51822361,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -51822361,"Batman Arkham City GOTY",purchase,1.0,0 -51822361,"Age of Empires Online",purchase,1.0,0 -51822361,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -51822361,"Skullgirls Endless Beta",purchase,1.0,0 -51822361,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -51822361,"AZMD! Scorepocalypse ",purchase,1.0,0 -51822361,"Beyond Divinity",purchase,1.0,0 -51822361,"BioShock",purchase,1.0,0 -51822361,"BioShock 2",purchase,1.0,0 -51822361,"BioShock Infinite",purchase,1.0,0 -51822361,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -51822361,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -51822361,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -51822361,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -51822361,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -51822361,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -51822361,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -51822361,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -51822361,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -51822361,"Castle Crashers",purchase,1.0,0 -51822361,"Commandos 2 Men of Courage",purchase,1.0,0 -51822361,"Divine Divinity",purchase,1.0,0 -51822361,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -51822361,"Guild Wars",purchase,1.0,0 -51822361,"Half-Life 2 Deathmatch",purchase,1.0,0 -51822361,"Half-Life 2 Episode One",purchase,1.0,0 -51822361,"Half-Life 2 Episode Two",purchase,1.0,0 -51822361,"Half-Life 2 Lost Coast",purchase,1.0,0 -51822361,"Half-Life Blue Shift",purchase,1.0,0 -51822361,"Half-Life Opposing Force",purchase,1.0,0 -51822361,"Half-Life Source",purchase,1.0,0 -51822361,"Half-Life Deathmatch Source",purchase,1.0,0 -51822361,"Heroes of Might & Magic III - HD Edition",purchase,1.0,0 -51822361,"Heroes of Might & Magic V Hammers of Fate",purchase,1.0,0 -51822361,"Heroes of Might & Magic V Tribes of the East",purchase,1.0,0 -51822361,"Magicka Final Frontier",purchase,1.0,0 -51822361,"Magicka Frozen Lake",purchase,1.0,0 -51822361,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -51822361,"Magicka Nippon",purchase,1.0,0 -51822361,"Magicka Party Robes",purchase,1.0,0 -51822361,"Magicka The Watchtower",purchase,1.0,0 -51822361,"Magicka Vietnam",purchase,1.0,0 -51822361,"Magicka Wizard's Survival Kit",purchase,1.0,0 -51822361,"Might & Magic Heroes VI",purchase,1.0,0 -51822361,"Path of Exile",purchase,1.0,0 -51822361,"Portal 2",purchase,1.0,0 -51822361,"PROTOTYPE 2",purchase,1.0,0 -51822361,"Prototype 2 RADNET Access Pack",purchase,1.0,0 -51822361,"RAGE",purchase,1.0,0 -51822361,"Rocket League",purchase,1.0,0 -51822361,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -51822361,"Sanctum",purchase,1.0,0 -51822361,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -51822361,"Shank 2",purchase,1.0,0 -51822361,"Sid Meier's Civilization IV",purchase,1.0,0 -51822361,"Sid Meier's Civilization IV",purchase,1.0,0 -51822361,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -51822361,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -51822361,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -51822361,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -51822361,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -51822361,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -51822361,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -51822361,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -51822361,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -51822361,"Team Fortress Classic",purchase,1.0,0 -51822361,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -51822361,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -51822361,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -51822361,"The Incredible Adventures of Van Helsing II",purchase,1.0,0 -51822361,"This War of Mine",purchase,1.0,0 -51822361,"Van Helsing II Ink Hunt",purchase,1.0,0 -51822361,"Van Helsing II Pigasus",purchase,1.0,0 -51822361,"Voyage Journey to the Moon",purchase,1.0,0 -51822361,"XCOM Enemy Within",purchase,1.0,0 -206655674,"The Expendabros",purchase,1.0,0 -206655674,"The Expendabros",play,9.7,0 -206655674,"Dead Island Epidemic",purchase,1.0,0 -206655674,"Dead Island Epidemic",play,1.3,0 -206655674,"Warframe",purchase,1.0,0 -206655674,"Warframe",play,1.2,0 -206655674,"Lambda Wars Beta",purchase,1.0,0 -79372485,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -79372485,"Call of Duty Modern Warfare 2 - Multiplayer",play,251.0,0 -79372485,"Call of Duty Modern Warfare 2",purchase,1.0,0 -79372485,"Call of Duty Modern Warfare 2",play,0.1,0 -255748761,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -255748761,"METAL GEAR SOLID V THE PHANTOM PAIN",play,37.0,0 -255748761,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -76046711,"Zombie Panic Source",purchase,1.0,0 -76046711,"Zombie Panic Source",play,10.6,0 -76046711,"Team Fortress 2",purchase,1.0,0 -76046711,"Team Fortress 2",play,1.3,0 -76046711,"Smashball",purchase,1.0,0 -76046711,"Smashball",play,0.3,0 -250549171,"Dota 2",purchase,1.0,0 -250549171,"Dota 2",play,0.3,0 -247065555,"Heroes & Generals",purchase,1.0,0 -247065555,"Heroes & Generals",play,22.0,0 -247065555,"DC Universe Online",purchase,1.0,0 -247065555,"DC Universe Online",play,2.0,0 -247065555,"Defiance",purchase,1.0,0 -247065555,"Defiance",play,1.7,0 -247065555,"Warframe",purchase,1.0,0 -247065555,"Warframe",play,1.2,0 -247065555,"APB Reloaded",purchase,1.0,0 -247065555,"APB Reloaded",play,0.9,0 -247065555,"War Thunder",purchase,1.0,0 -247065555,"War Thunder",play,0.4,0 -247065555,"Blacklight Retribution",purchase,1.0,0 -247065555,"Blacklight Retribution",play,0.3,0 -247065555,"HAWKEN",purchase,1.0,0 -247065555,"Path of Exile",purchase,1.0,0 -236068797,"Dota 2",purchase,1.0,0 -236068797,"Dota 2",play,4.4,0 -134078373,"Team Fortress 2",purchase,1.0,0 -134078373,"Team Fortress 2",play,1.9,0 -237173035,"Unturned",purchase,1.0,0 -237173035,"Unturned",play,12.9,0 -237173035,"BLOCKADE 3D",purchase,1.0,0 -237173035,"BLOCKADE 3D",play,1.5,0 -237173035,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -237173035,"Cry of Fear",purchase,1.0,0 -237173035,"Dev Guy",purchase,1.0,0 -237173035,"Elsword",purchase,1.0,0 -237173035,"No More Room in Hell",purchase,1.0,0 -237173035,"Only If",purchase,1.0,0 -237173035,"Passing Pineview Forest",purchase,1.0,0 -237173035,"The Way of Life Free Edition",purchase,1.0,0 -149931915,"Dota 2",purchase,1.0,0 -149931915,"Dota 2",play,10.6,0 -205392512,"Dota 2",purchase,1.0,0 -205392512,"Dota 2",play,6.9,0 -115567288,"AdVenture Capitalist",purchase,1.0,0 -115567288,"AdVenture Capitalist",play,278.0,0 -115567288,"The Elder Scrolls V Skyrim",purchase,1.0,0 -115567288,"The Elder Scrolls V Skyrim",play,108.0,0 -115567288,"Dungeons & Dragons Online",purchase,1.0,0 -115567288,"Dungeons & Dragons Online",play,49.0,0 -115567288,"Robocraft",purchase,1.0,0 -115567288,"Robocraft",play,0.7,0 -115567288,"The Lord of the Rings Online",purchase,1.0,0 -115567288,"Rise of Incarnates",purchase,1.0,0 -115567288,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -115567288,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -115567288,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -137475392,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -137475392,"Resident Evil Revelations / Biohazard Revelations",play,1.0,0 -73862588,"Call of Duty Black Ops",purchase,1.0,0 -73862588,"Call of Duty Black Ops",play,9.9,0 -73862588,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -118721220,"Path of Exile",purchase,1.0,0 -118721220,"Path of Exile",play,1.8,0 -96741968,"Team Fortress 2",purchase,1.0,0 -96741968,"Team Fortress 2",play,4.4,0 -189177145,"Don't Starve Together Beta",purchase,1.0,0 -189177145,"Don't Starve Together Beta",play,84.0,0 -189177145,"ARK Survival Evolved",purchase,1.0,0 -189177145,"ARK Survival Evolved",play,32.0,0 -189177145,"Strife",purchase,1.0,0 -189177145,"Strife",play,28.0,0 -189177145,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -189177145,"METAL GEAR SOLID V THE PHANTOM PAIN",play,23.0,0 -189177145,"Marvel Heroes 2015",purchase,1.0,0 -189177145,"Marvel Heroes 2015",play,2.4,0 -189177145,"Nosgoth",purchase,1.0,0 -189177145,"Nosgoth",play,1.2,0 -189177145,"Don't Starve",purchase,1.0,0 -189177145,"Don't Starve Reign of Giants",purchase,1.0,0 -157193017,"Grand Theft Auto V",purchase,1.0,0 -157193017,"Grand Theft Auto V",play,96.0,0 -157193017,"Takedown Red Sabre",purchase,1.0,0 -157193017,"Takedown Red Sabre",play,3.0,0 -157193017,"PAYDAY 2",purchase,1.0,0 -157193017,"PAYDAY 2",play,0.7,0 -157193017,"AdVenture Capitalist",purchase,1.0,0 -157193017,"Anomaly Warzone Earth Mobile Campaign",purchase,1.0,0 -157193017,"Blockstorm",purchase,1.0,0 -157193017,"Deep Eclipse",purchase,1.0,0 -157193017,"Enclave",purchase,1.0,0 -157193017,"Hacker Evolution",purchase,1.0,0 -157193017,"Hacker Evolution - Untold",purchase,1.0,0 -157193017,"iBomber Defense Pacific",purchase,1.0,0 -157193017,"Pahelika Secret Legends",purchase,1.0,0 -157193017,"Racer 8",purchase,1.0,0 -157193017,"Warframe",purchase,1.0,0 -125016435,"Dota 2",purchase,1.0,0 -125016435,"Dota 2",play,0.6,0 -81128865,"Call of Duty Black Ops",purchase,1.0,0 -81128865,"Call of Duty Black Ops",play,0.5,0 -81128865,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -81128865,"Call of Duty Black Ops - Multiplayer",play,0.3,0 -66748534,"Counter-Strike",purchase,1.0,0 -66748534,"Counter-Strike",play,17.4,0 -66748534,"Deathmatch Classic",purchase,1.0,0 -66748534,"Deathmatch Classic",play,0.2,0 -66748534,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -66748534,"Counter-Strike Condition Zero Deleted Scenes",play,0.2,0 -66748534,"Counter-Strike Condition Zero",purchase,1.0,0 -66748534,"Day of Defeat",purchase,1.0,0 -66748534,"Ricochet",purchase,1.0,0 -117601858,"Terraria",purchase,1.0,0 -117601858,"Terraria",play,330.0,0 -117601858,"Fallout New Vegas",purchase,1.0,0 -117601858,"Fallout New Vegas",play,229.0,0 -117601858,"State of Decay",purchase,1.0,0 -117601858,"State of Decay",play,132.0,0 -117601858,"Borderlands 2",purchase,1.0,0 -117601858,"Borderlands 2",play,88.0,0 -117601858,"Saints Row IV",purchase,1.0,0 -117601858,"Saints Row IV",play,70.0,0 -117601858,"FTL Faster Than Light",purchase,1.0,0 -117601858,"FTL Faster Than Light",play,45.0,0 -117601858,"Rogue Legacy",purchase,1.0,0 -117601858,"Rogue Legacy",play,41.0,0 -117601858,"BioShock 2",purchase,1.0,0 -117601858,"BioShock 2",play,25.0,0 -117601858,"BioShock Infinite",purchase,1.0,0 -117601858,"BioShock Infinite",play,16.0,0 -117601858,"Hotline Miami",purchase,1.0,0 -117601858,"Hotline Miami",play,14.2,0 -117601858,"The Bridge",purchase,1.0,0 -117601858,"The Bridge",play,11.7,0 -117601858,"Fallout Tactics",purchase,1.0,0 -117601858,"Fallout Tactics",play,11.7,0 -117601858,"Broforce",purchase,1.0,0 -117601858,"Broforce",play,11.4,0 -117601858,"Garry's Mod",purchase,1.0,0 -117601858,"Garry's Mod",play,9.1,0 -117601858,"Don't Starve",purchase,1.0,0 -117601858,"Don't Starve",play,8.2,0 -117601858,"Audiosurf",purchase,1.0,0 -117601858,"Audiosurf",play,3.6,0 -117601858,"Fallout",purchase,1.0,0 -117601858,"Fallout",play,3.4,0 -117601858,"The Expendabros",purchase,1.0,0 -117601858,"The Expendabros",play,3.4,0 -117601858,"Arma 2 DayZ Mod",purchase,1.0,0 -117601858,"Arma 2 DayZ Mod",play,1.1,0 -117601858,"Arma 2",purchase,1.0,0 -117601858,"Arma 2",play,0.6,0 -117601858,"Arma 2 Operation Arrowhead",purchase,1.0,0 -117601858,"Arma 2 Operation Arrowhead",play,0.4,0 -117601858,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -117601858,"BioShock",purchase,1.0,0 -117601858,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -117601858,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -117601858,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -117601858,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -117601858,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -117601858,"Don't Starve Reign of Giants",purchase,1.0,0 -117601858,"Fallout 2",purchase,1.0,0 -117601858,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -117601858,"Fallout New Vegas Dead Money",purchase,1.0,0 -117601858,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -117601858,"Half-Life 2 Update",purchase,1.0,0 -117601858,"Path of Exile",purchase,1.0,0 -117601858,"State of Decay - Breakdown",purchase,1.0,0 -117601858,"State of Decay - Lifeline",purchase,1.0,0 -6439568,"Counter-Strike",purchase,1.0,0 -6439568,"Counter-Strike",play,251.0,0 -6439568,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -6439568,"Call of Duty Ghosts - Multiplayer",play,56.0,0 -6439568,"Counter-Strike Source",purchase,1.0,0 -6439568,"Counter-Strike Source",play,44.0,0 -6439568,"Counter-Strike Global Offensive",purchase,1.0,0 -6439568,"Counter-Strike Global Offensive",play,9.5,0 -6439568,"Heroes & Generals",purchase,1.0,0 -6439568,"Heroes & Generals",play,1.6,0 -6439568,"Call of Duty Ghosts",purchase,1.0,0 -6439568,"Call of Duty Ghosts",play,1.3,0 -6439568,"Counter-Strike Condition Zero",purchase,1.0,0 -6439568,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -6439568,"Half-Life 2",purchase,1.0,0 -6439568,"Half-Life 2 Deathmatch",purchase,1.0,0 -6439568,"Half-Life 2 Lost Coast",purchase,1.0,0 -188665937,"Dota 2",purchase,1.0,0 -188665937,"Dota 2",play,74.0,0 -91863842,"Football Manager 2012",purchase,1.0,0 -91863842,"Football Manager 2012",play,45.0,0 -243082157,"Transformice",purchase,1.0,0 -155153886,"The Lord of the Rings War in the North",purchase,1.0,0 -155153886,"The Lord of the Rings War in the North",play,0.7,0 -283710888,"Dota 2",purchase,1.0,0 -283710888,"Dota 2",play,8.0,0 -42017429,"The Ship Single Player",purchase,1.0,0 -42017429,"The Ship Single Player",play,0.6,0 -42017429,"The Ship",purchase,1.0,0 -42017429,"The Ship Tutorial",purchase,1.0,0 -94607216,"Counter-Strike Source",purchase,1.0,0 -94607216,"Counter-Strike Source",play,0.8,0 -212502033,"Dota 2",purchase,1.0,0 -212502033,"Dota 2",play,54.0,0 -212502033,"Marvel Puzzle Quest",purchase,1.0,0 -212502033,"Magicka Wizard Wars",purchase,1.0,0 -212502033,"Might & Magic Duel of Champions",purchase,1.0,0 -212502033,"Neverwinter",purchase,1.0,0 -212502033,"Path of Exile",purchase,1.0,0 -212502033,"Robocraft",purchase,1.0,0 -212502033,"Unturned",purchase,1.0,0 -150135487,"Watch_Dogs",purchase,1.0,0 -150135487,"Watch_Dogs",play,26.0,0 -150135487,"Garry's Mod",purchase,1.0,0 -150135487,"Garry's Mod",play,17.3,0 -150135487,"Grand Theft Auto IV",purchase,1.0,0 -150135487,"Grand Theft Auto IV",play,17.3,0 -150135487,"Counter-Strike Global Offensive",purchase,1.0,0 -150135487,"Counter-Strike Global Offensive",play,7.2,0 -150135487,"Rust",purchase,1.0,0 -150135487,"Rust",play,6.6,0 -150135487,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -150135487,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.6,0 -150135487,"Crash Time II",purchase,1.0,0 -150135487,"Crash Time II",play,0.3,0 -150135487,"Team Fortress 2",purchase,1.0,0 -150135487,"Team Fortress 2",play,0.3,0 -150135487,"Dino D-Day",purchase,1.0,0 -150135487,"Dino D-Day",play,0.2,0 -150135487,"Pid ",purchase,1.0,0 -150135487,"Pid ",play,0.2,0 -150135487,"Archeblade",purchase,1.0,0 -150135487,"Archeblade",play,0.2,0 -150135487,"Afterfall InSanity Extended Edition",purchase,1.0,0 -150135487,"Avencast",purchase,1.0,0 -150135487,"Bloop",purchase,1.0,0 -150135487,"Chip",purchase,1.0,0 -150135487,"Commando Jack",purchase,1.0,0 -150135487,"GTR Evolution",purchase,1.0,0 -150135487,"Gun Monkeys",purchase,1.0,0 -150135487,"iBomber Defense Pacific",purchase,1.0,0 -150135487,"Litil Divil",purchase,1.0,0 -150135487,"Overcast - Walden and the Werewolf",purchase,1.0,0 -150135487,"Pixel Puzzles Japan",purchase,1.0,0 -150135487,"RACE 07",purchase,1.0,0 -150135487,"RaceRoom Racing Experience ",purchase,1.0,0 -150135487,"Really Big Sky",purchase,1.0,0 -150135487,"Realms of the Haunting",purchase,1.0,0 -150135487,"Royal Quest",purchase,1.0,0 -150135487,"SpaceChem",purchase,1.0,0 -150135487,"Space Hack",purchase,1.0,0 -150135487,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -144103384,"Dota 2",purchase,1.0,0 -144103384,"Dota 2",play,447.0,0 -117097969,"Call of Duty World at War",purchase,1.0,0 -117097969,"Call of Duty World at War",play,14.1,0 -117097969,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -117097969,"Call of Duty Black Ops II - Multiplayer",play,0.5,0 -117097969,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -117097969,"Call of Duty Black Ops II - Zombies",play,0.2,0 -117097969,"Call of Duty Black Ops II",purchase,1.0,0 -179267280,"Dota 2",purchase,1.0,0 -179267280,"Dota 2",play,12.0,0 -80735594,"Aliens vs. Predator",purchase,1.0,0 -80735594,"Aliens vs. Predator",play,25.0,0 -207316620,"Star Wars - Battlefront II",purchase,1.0,0 -207316620,"Star Wars - Battlefront II",play,30.0,0 -60608576,"Counter-Strike Global Offensive",purchase,1.0,0 -60608576,"Counter-Strike Global Offensive",play,802.0,0 -60608576,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -60608576,"Call of Duty Modern Warfare 2 - Multiplayer",play,424.0,0 -60608576,"Terraria",purchase,1.0,0 -60608576,"Terraria",play,334.0,0 -60608576,"Team Fortress 2",purchase,1.0,0 -60608576,"Team Fortress 2",play,299.0,0 -60608576,"Zombie Panic Source",purchase,1.0,0 -60608576,"Zombie Panic Source",play,292.0,0 -60608576,"DARK SOULS II",purchase,1.0,0 -60608576,"DARK SOULS II",play,181.0,0 -60608576,"The Elder Scrolls V Skyrim",purchase,1.0,0 -60608576,"The Elder Scrolls V Skyrim",play,74.0,0 -60608576,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -60608576,"Dark Souls Prepare to Die Edition",play,58.0,0 -60608576,"MapleStory",purchase,1.0,0 -60608576,"MapleStory",play,55.0,0 -60608576,"Left 4 Dead 2",purchase,1.0,0 -60608576,"Left 4 Dead 2",play,45.0,0 -60608576,"Killing Floor",purchase,1.0,0 -60608576,"Killing Floor",play,45.0,0 -60608576,"The Binding of Isaac",purchase,1.0,0 -60608576,"The Binding of Isaac",play,44.0,0 -60608576,"Borderlands 2",purchase,1.0,0 -60608576,"Borderlands 2",play,39.0,0 -60608576,"DC Universe Online",purchase,1.0,0 -60608576,"DC Universe Online",play,37.0,0 -60608576,"Call of Duty Modern Warfare 2",purchase,1.0,0 -60608576,"Call of Duty Modern Warfare 2",play,26.0,0 -60608576,"Fallout New Vegas",purchase,1.0,0 -60608576,"Fallout New Vegas",play,23.0,0 -60608576,"Torchlight II",purchase,1.0,0 -60608576,"Torchlight II",play,23.0,0 -60608576,"Half-Life 2",purchase,1.0,0 -60608576,"Half-Life 2",play,21.0,0 -60608576,"Torchlight",purchase,1.0,0 -60608576,"Torchlight",play,19.1,0 -60608576,"Hitman Absolution",purchase,1.0,0 -60608576,"Hitman Absolution",play,18.8,0 -60608576,"Garry's Mod",purchase,1.0,0 -60608576,"Garry's Mod",play,18.0,0 -60608576,"Magicka",purchase,1.0,0 -60608576,"Magicka",play,14.7,0 -60608576,"BRINK",purchase,1.0,0 -60608576,"BRINK",play,13.6,0 -60608576,"XCOM Enemy Unknown",purchase,1.0,0 -60608576,"XCOM Enemy Unknown",play,13.5,0 -60608576,"FTL Faster Than Light",purchase,1.0,0 -60608576,"FTL Faster Than Light",play,12.8,0 -60608576,"Risk of Rain",purchase,1.0,0 -60608576,"Risk of Rain",play,12.2,0 -60608576,"DayZ",purchase,1.0,0 -60608576,"DayZ",play,12.1,0 -60608576,"Dragon Nest",purchase,1.0,0 -60608576,"Dragon Nest",play,11.6,0 -60608576,"Half-Life 2 Deathmatch",purchase,1.0,0 -60608576,"Half-Life 2 Deathmatch",play,11.1,0 -60608576,"Dishonored",purchase,1.0,0 -60608576,"Dishonored",play,9.9,0 -60608576,"Company of Heroes Tales of Valor",purchase,1.0,0 -60608576,"Company of Heroes Tales of Valor",play,9.8,0 -60608576,"Metro 2033",purchase,1.0,0 -60608576,"Metro 2033",play,9.5,0 -60608576,"Middle-earth Shadow of Mordor",purchase,1.0,0 -60608576,"Middle-earth Shadow of Mordor",play,9.5,0 -60608576,"Half-Life 2 Episode Two",purchase,1.0,0 -60608576,"Half-Life 2 Episode Two",play,9.4,0 -60608576,"Dota 2",purchase,1.0,0 -60608576,"Dota 2",play,8.5,0 -60608576,"Contagion",purchase,1.0,0 -60608576,"Contagion",play,7.8,0 -60608576,"Rocket League",purchase,1.0,0 -60608576,"Rocket League",play,7.7,0 -60608576,"Don't Starve Together Beta",purchase,1.0,0 -60608576,"Don't Starve Together Beta",play,7.0,0 -60608576,"Portal 2",purchase,1.0,0 -60608576,"Portal 2",play,6.8,0 -60608576,"Borderlands The Pre-Sequel",purchase,1.0,0 -60608576,"Borderlands The Pre-Sequel",play,6.6,0 -60608576,"Saints Row The Third",purchase,1.0,0 -60608576,"Saints Row The Third",play,6.6,0 -60608576,"Sid Meier's Civilization V",purchase,1.0,0 -60608576,"Sid Meier's Civilization V",play,6.3,0 -60608576,"Synergy",purchase,1.0,0 -60608576,"Synergy",play,6.1,0 -60608576,"Sniper Elite V2",purchase,1.0,0 -60608576,"Sniper Elite V2",play,6.1,0 -60608576,"Portal",purchase,1.0,0 -60608576,"Portal",play,5.7,0 -60608576,"Alien Swarm",purchase,1.0,0 -60608576,"Alien Swarm",play,5.6,0 -60608576,"Half-Life 2 Episode One",purchase,1.0,0 -60608576,"Half-Life 2 Episode One",play,5.1,0 -60608576,"BioShock",purchase,1.0,0 -60608576,"BioShock",play,3.9,0 -60608576,"DmC Devil May Cry",purchase,1.0,0 -60608576,"DmC Devil May Cry",play,3.8,0 -60608576,"Company of Heroes Opposing Fronts",purchase,1.0,0 -60608576,"Company of Heroes Opposing Fronts",play,3.7,0 -60608576,"Loadout",purchase,1.0,0 -60608576,"Loadout",play,3.2,0 -60608576,"Alan Wake",purchase,1.0,0 -60608576,"Alan Wake",play,3.0,0 -60608576,"TERA",purchase,1.0,0 -60608576,"TERA",play,2.8,0 -60608576,"War Thunder",purchase,1.0,0 -60608576,"War Thunder",play,2.7,0 -60608576,"Tomb Raider",purchase,1.0,0 -60608576,"Tomb Raider",play,2.4,0 -60608576,"Super Monday Night Combat",purchase,1.0,0 -60608576,"Super Monday Night Combat",play,2.1,0 -60608576,"BioShock Infinite",purchase,1.0,0 -60608576,"BioShock Infinite",play,1.9,0 -60608576,"Cry of Fear",purchase,1.0,0 -60608576,"Cry of Fear",play,1.9,0 -60608576,"Devil May Cry 4",purchase,1.0,0 -60608576,"Devil May Cry 4",play,1.8,0 -60608576,"Amnesia The Dark Descent",purchase,1.0,0 -60608576,"Amnesia The Dark Descent",play,1.7,0 -60608576,"LIMBO",purchase,1.0,0 -60608576,"LIMBO",play,1.6,0 -60608576,"Damned",purchase,1.0,0 -60608576,"Damned",play,1.5,0 -60608576,"Crysis 2 Maximum Edition",purchase,1.0,0 -60608576,"Crysis 2 Maximum Edition",play,1.5,0 -60608576,"Magicka Wizard Wars",purchase,1.0,0 -60608576,"Magicka Wizard Wars",play,1.4,0 -60608576,"Star Wars - Battlefront II",purchase,1.0,0 -60608576,"Star Wars - Battlefront II",play,1.3,0 -60608576,"No More Room in Hell",purchase,1.0,0 -60608576,"No More Room in Hell",play,1.3,0 -60608576,"Deus Ex Human Revolution",purchase,1.0,0 -60608576,"Deus Ex Human Revolution",play,1.2,0 -60608576,"Insurgency Modern Infantry Combat",purchase,1.0,0 -60608576,"Insurgency Modern Infantry Combat",play,1.1,0 -60608576,"PlanetSide 2",purchase,1.0,0 -60608576,"PlanetSide 2",play,1.1,0 -60608576,"Lords Of The Fallen",purchase,1.0,0 -60608576,"Lords Of The Fallen",play,1.1,0 -60608576,"Unturned",purchase,1.0,0 -60608576,"Unturned",play,1.0,0 -60608576,"Super Meat Boy",purchase,1.0,0 -60608576,"Super Meat Boy",play,1.0,0 -60608576,"Company of Heroes",purchase,1.0,0 -60608576,"Company of Heroes",play,0.9,0 -60608576,"Alien Breed 2 Assault",purchase,1.0,0 -60608576,"Alien Breed 2 Assault",play,0.9,0 -60608576,"ArcheAge",purchase,1.0,0 -60608576,"ArcheAge",play,0.9,0 -60608576,"Realm of the Mad God",purchase,1.0,0 -60608576,"Realm of the Mad God",play,0.8,0 -60608576,"Sleeping Dogs",purchase,1.0,0 -60608576,"Sleeping Dogs",play,0.8,0 -60608576,"PAYDAY The Heist",purchase,1.0,0 -60608576,"PAYDAY The Heist",play,0.8,0 -60608576,"Guns of Icarus Online",purchase,1.0,0 -60608576,"Guns of Icarus Online",play,0.7,0 -60608576,"Sniper Elite Nazi Zombie Army 2",purchase,1.0,0 -60608576,"Sniper Elite Nazi Zombie Army 2",play,0.7,0 -60608576,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -60608576,"Burnout Paradise The Ultimate Box",play,0.7,0 -60608576,"Dead Space",purchase,1.0,0 -60608576,"Dead Space",play,0.7,0 -60608576,"Red Faction Armageddon",purchase,1.0,0 -60608576,"Red Faction Armageddon",play,0.6,0 -60608576,"Vindictus",purchase,1.0,0 -60608576,"Vindictus",play,0.6,0 -60608576,"Half-Life 2 Lost Coast",purchase,1.0,0 -60608576,"Half-Life 2 Lost Coast",play,0.4,0 -60608576,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -60608576,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.4,0 -60608576,"Dirty Bomb",purchase,1.0,0 -60608576,"Dirty Bomb",play,0.4,0 -60608576,"Medal of Honor(TM) Single Player",purchase,1.0,0 -60608576,"Medal of Honor(TM) Single Player",play,0.4,0 -60608576,"Dungeon Defenders II",purchase,1.0,0 -60608576,"Dungeon Defenders II",play,0.3,0 -60608576,"Darksiders",purchase,1.0,0 -60608576,"Darksiders",play,0.3,0 -60608576,"HAWKEN",purchase,1.0,0 -60608576,"HAWKEN",play,0.3,0 -60608576,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -60608576,"Superbrothers Sword & Sworcery EP",play,0.1,0 -60608576,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -60608576,"Moonbase Alpha",purchase,1.0,0 -60608576,"BioShock 2",purchase,1.0,0 -60608576,"Abyss Odyssey",purchase,1.0,0 -60608576,"AdVenture Capitalist",purchase,1.0,0 -60608576,"AirMech",purchase,1.0,0 -60608576,"Alan Wake's American Nightmare",purchase,1.0,0 -60608576,"Arma Cold War Assault",purchase,1.0,0 -60608576,"A Story About My Uncle",purchase,1.0,0 -60608576,"Blackguards",purchase,1.0,0 -60608576,"Blackguards 2",purchase,1.0,0 -60608576,"Card Hunter",purchase,1.0,0 -60608576,"Citizens of Earth",purchase,1.0,0 -60608576,"Clicker Heroes",purchase,1.0,0 -60608576,"Combat Arms",purchase,1.0,0 -60608576,"Company of Heroes (New Steam Version)",purchase,1.0,0 -60608576,"DARK SOULS II - Season Pass",purchase,1.0,0 -60608576,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -60608576,"Divinity Dragon Commander",purchase,1.0,0 -60608576,"Double Action Boogaloo",purchase,1.0,0 -60608576,"Elsword",purchase,1.0,0 -60608576,"EVGA PrecisionX 16",purchase,1.0,0 -60608576,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -60608576,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -60608576,"Fallout New Vegas Dead Money",purchase,1.0,0 -60608576,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -60608576,"Fractured Space",purchase,1.0,0 -60608576,"Hitman Sniper Challenge",purchase,1.0,0 -60608576,"Insurgency",purchase,1.0,0 -60608576,"Just Cause",purchase,1.0,0 -60608576,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -60608576,"Kung Fury",purchase,1.0,0 -60608576,"Magic Duels",purchase,1.0,0 -60608576,"Medal of Honor Pre-Order",purchase,1.0,0 -60608576,"Men of War Assault Squad",purchase,1.0,0 -60608576,"Mirror's Edge",purchase,1.0,0 -60608576,"ORION Prelude",purchase,1.0,0 -60608576,"Psychonauts",purchase,1.0,0 -60608576,"Psychonauts Demo",purchase,1.0,0 -60608576,"Quake Live",purchase,1.0,0 -60608576,"Receiver",purchase,1.0,0 -60608576,"Red Crucible Firestorm",purchase,1.0,0 -60608576,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -60608576,"Relic Hunters Zero",purchase,1.0,0 -60608576,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -60608576,"Robocraft",purchase,1.0,0 -60608576,"Rome Total War",purchase,1.0,0 -60608576,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -60608576,"SMITE",purchase,1.0,0 -60608576,"Spintires",purchase,1.0,0 -60608576,"Spooky's House of Jump Scares",purchase,1.0,0 -60608576,"Stealth Inc 2",purchase,1.0,0 -60608576,"Teslagrad",purchase,1.0,0 -60608576,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -60608576,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -60608576,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -60608576,"The Forgotten Ones",purchase,1.0,0 -60608576,"Time Clickers",purchase,1.0,0 -60608576,"Titan Quest",purchase,1.0,0 -60608576,"Trove",purchase,1.0,0 -60608576,"Warface",purchase,1.0,0 -60608576,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -60608576,"Warlock - Master of the Arcane",purchase,1.0,0 -60608576,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -60608576,"Xam",purchase,1.0,0 -167343650,"Dota 2",purchase,1.0,0 -167343650,"Dota 2",play,99.0,0 -26762388,"The Elder Scrolls V Skyrim",purchase,1.0,0 -26762388,"The Elder Scrolls V Skyrim",play,1090.0,0 -26762388,"Mount & Blade Warband",purchase,1.0,0 -26762388,"Mount & Blade Warband",play,825.0,0 -26762388,"Dragon Age Origins",purchase,1.0,0 -26762388,"Dragon Age Origins",play,405.0,0 -26762388,"Chivalry Medieval Warfare",purchase,1.0,0 -26762388,"Chivalry Medieval Warfare",play,340.0,0 -26762388,"Saints Row The Third",purchase,1.0,0 -26762388,"Saints Row The Third",play,333.0,0 -26762388,"Terraria",purchase,1.0,0 -26762388,"Terraria",play,327.0,0 -26762388,"Counter-Strike Source",purchase,1.0,0 -26762388,"Counter-Strike Source",play,316.0,0 -26762388,"Mass Effect 2",purchase,1.0,0 -26762388,"Mass Effect 2",play,311.0,0 -26762388,"Saints Row 2",purchase,1.0,0 -26762388,"Saints Row 2",play,308.0,0 -26762388,"Dota 2",purchase,1.0,0 -26762388,"Dota 2",play,235.0,0 -26762388,"Far Cry 3",purchase,1.0,0 -26762388,"Far Cry 3",play,234.0,0 -26762388,"Age of Empires II HD Edition",purchase,1.0,0 -26762388,"Age of Empires II HD Edition",play,227.0,0 -26762388,"Just Cause 2",purchase,1.0,0 -26762388,"Just Cause 2",play,196.0,0 -26762388,"Assassin's Creed IV Black Flag",purchase,1.0,0 -26762388,"Assassin's Creed IV Black Flag",play,185.0,0 -26762388,"Assassin's Creed II",purchase,1.0,0 -26762388,"Assassin's Creed II",play,182.0,0 -26762388,"Portal 2",purchase,1.0,0 -26762388,"Portal 2",play,178.0,0 -26762388,"Tropico 4",purchase,1.0,0 -26762388,"Tropico 4",play,170.0,0 -26762388,"The Witcher 3 Wild Hunt",purchase,1.0,0 -26762388,"The Witcher 3 Wild Hunt",play,154.0,0 -26762388,"Deus Ex Human Revolution",purchase,1.0,0 -26762388,"Deus Ex Human Revolution",play,147.0,0 -26762388,"Fallout New Vegas",purchase,1.0,0 -26762388,"Fallout New Vegas",play,139.0,0 -26762388,"Sleeping Dogs",purchase,1.0,0 -26762388,"Sleeping Dogs",play,139.0,0 -26762388,"Grand Theft Auto San Andreas",purchase,1.0,0 -26762388,"Grand Theft Auto San Andreas",play,135.0,0 -26762388,"BioShock Infinite",purchase,1.0,0 -26762388,"BioShock Infinite",play,135.0,0 -26762388,"Max Payne 3",purchase,1.0,0 -26762388,"Max Payne 3",play,126.0,0 -26762388,"Need for Speed Hot Pursuit",purchase,1.0,0 -26762388,"Need for Speed Hot Pursuit",play,122.0,0 -26762388,"Wolfenstein The New Order",purchase,1.0,0 -26762388,"Wolfenstein The New Order",play,122.0,0 -26762388,"The Elder Scrolls III Morrowind",purchase,1.0,0 -26762388,"The Elder Scrolls III Morrowind",play,116.0,0 -26762388,"Far Cry 3 Blood Dragon",purchase,1.0,0 -26762388,"Far Cry 3 Blood Dragon",play,107.0,0 -26762388,"Grand Theft Auto V",purchase,1.0,0 -26762388,"Grand Theft Auto V",play,103.0,0 -26762388,"Worms Reloaded",purchase,1.0,0 -26762388,"Worms Reloaded",play,91.0,0 -26762388,"From Dust",purchase,1.0,0 -26762388,"From Dust",play,91.0,0 -26762388,"Middle-earth Shadow of Mordor",purchase,1.0,0 -26762388,"Middle-earth Shadow of Mordor",play,89.0,0 -26762388,"Assassin's Creed Revelations",purchase,1.0,0 -26762388,"Assassin's Creed Revelations",play,88.0,0 -26762388,"Guacamelee! Gold Edition",purchase,1.0,0 -26762388,"Guacamelee! Gold Edition",play,86.0,0 -26762388,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -26762388,"Kingdoms of Amalur Reckoning",play,82.0,0 -26762388,"Eufloria",purchase,1.0,0 -26762388,"Eufloria",play,81.0,0 -26762388,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -26762388,"Tropico 3 - Steam Special Edition",play,80.0,0 -26762388,"Sid Meier's Civilization IV",purchase,1.0,0 -26762388,"Sid Meier's Civilization IV",play,76.0,0 -26762388,"FINAL FANTASY VII",purchase,1.0,0 -26762388,"FINAL FANTASY VII",play,75.0,0 -26762388,"Surgeon Simulator",purchase,1.0,0 -26762388,"Surgeon Simulator",play,70.0,0 -26762388,"Neverwinter Nights 2 Platinum",purchase,1.0,0 -26762388,"Neverwinter Nights 2 Platinum",play,69.0,0 -26762388,"Batman Arkham Asylum",purchase,1.0,0 -26762388,"Batman Arkham Asylum",play,69.0,0 -26762388,"Counter-Strike Global Offensive",purchase,1.0,0 -26762388,"Counter-Strike Global Offensive",play,66.0,0 -26762388,"Left 4 Dead",purchase,1.0,0 -26762388,"Left 4 Dead",play,64.0,0 -26762388,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -26762388,"Star Wars Jedi Knight Jedi Academy",play,64.0,0 -26762388,"On the Rain-Slick Precipice of Darkness, Episode Two",purchase,1.0,0 -26762388,"On the Rain-Slick Precipice of Darkness, Episode Two",play,62.0,0 -26762388,"Star Wars Knights of the Old Republic",purchase,1.0,0 -26762388,"Star Wars Knights of the Old Republic",play,62.0,0 -26762388,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -26762388,"Red Faction Guerrilla Steam Edition",play,60.0,0 -26762388,"Magic 2014 ",purchase,1.0,0 -26762388,"Magic 2014 ",play,55.0,0 -26762388,"Batman Arkham City GOTY",purchase,1.0,0 -26762388,"Batman Arkham City GOTY",play,51.0,0 -26762388,"Saints Row IV",purchase,1.0,0 -26762388,"Saints Row IV",play,50.0,0 -26762388,"Trine",purchase,1.0,0 -26762388,"Trine",play,48.0,0 -26762388,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -26762388,"Max Payne 2 The Fall of Max Payne",play,48.0,0 -26762388,"Torchlight",purchase,1.0,0 -26762388,"Torchlight",play,44.0,0 -26762388,"Mafia II",purchase,1.0,0 -26762388,"Mafia II",play,44.0,0 -26762388,"Batman Arkham City",purchase,1.0,0 -26762388,"Batman Arkham City",play,42.0,0 -26762388,"Dead Island",purchase,1.0,0 -26762388,"Dead Island",play,42.0,0 -26762388,"Sid Meier's Civilization V",purchase,1.0,0 -26762388,"Sid Meier's Civilization V",play,41.0,0 -26762388,"On the Rain-Slick Precipice of Darkness, Episode One",purchase,1.0,0 -26762388,"On the Rain-Slick Precipice of Darkness, Episode One",play,41.0,0 -26762388,"Orcs Must Die! 2",purchase,1.0,0 -26762388,"Orcs Must Die! 2",play,40.0,0 -26762388,"FTL Faster Than Light",purchase,1.0,0 -26762388,"FTL Faster Than Light",play,40.0,0 -26762388,"Penny Arcade's On the Rain-Slick Precipice of Darkness 4",purchase,1.0,0 -26762388,"Penny Arcade's On the Rain-Slick Precipice of Darkness 4",play,40.0,0 -26762388,"DmC Devil May Cry",purchase,1.0,0 -26762388,"DmC Devil May Cry",play,39.0,0 -26762388,"The Chronicles of Riddick Assault on Dark Athena",purchase,1.0,0 -26762388,"The Chronicles of Riddick Assault on Dark Athena",play,38.0,0 -26762388,"Poker Night at the Inventory",purchase,1.0,0 -26762388,"Poker Night at the Inventory",play,37.0,0 -26762388,"Psychonauts",purchase,1.0,0 -26762388,"Psychonauts",play,36.0,0 -26762388,"Mark of the Ninja",purchase,1.0,0 -26762388,"Mark of the Ninja",play,34.0,0 -26762388,"Garry's Mod",purchase,1.0,0 -26762388,"Garry's Mod",play,30.0,0 -26762388,"Stronghold Crusader Extreme HD",purchase,1.0,0 -26762388,"Stronghold Crusader Extreme HD",play,29.0,0 -26762388,"Brtal Legend",purchase,1.0,0 -26762388,"Brtal Legend",play,29.0,0 -26762388,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -26762388,"STAR WARS Knights of the Old Republic II The Sith Lords",play,28.0,0 -26762388,"Grand Theft Auto IV",purchase,1.0,0 -26762388,"Grand Theft Auto IV",play,28.0,0 -26762388,"Borderlands",purchase,1.0,0 -26762388,"Borderlands",play,28.0,0 -26762388,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -26762388,"Plants vs. Zombies Game of the Year",play,27.0,0 -26762388,"Prince of Persia The Forgotten Sands",purchase,1.0,0 -26762388,"Prince of Persia The Forgotten Sands",play,26.0,0 -26762388,"Tropico 3 Absolute Power",purchase,1.0,0 -26762388,"Tropico 3 Absolute Power",play,25.0,0 -26762388,"South Park The Stick of Truth",purchase,1.0,0 -26762388,"South Park The Stick of Truth",play,25.0,0 -26762388,"Trine 2",purchase,1.0,0 -26762388,"Trine 2",play,25.0,0 -26762388,"Magic 2015",purchase,1.0,0 -26762388,"Magic 2015",play,25.0,0 -26762388,"Batman Arkham Origins",purchase,1.0,0 -26762388,"Batman Arkham Origins",play,25.0,0 -26762388,"The Swapper",purchase,1.0,0 -26762388,"The Swapper",play,24.0,0 -26762388,"Heroes of Might & Magic V",purchase,1.0,0 -26762388,"Heroes of Might & Magic V",play,23.0,0 -26762388,"Mirror's Edge",purchase,1.0,0 -26762388,"Mirror's Edge",play,22.0,0 -26762388,"Metro 2033 Redux",purchase,1.0,0 -26762388,"Metro 2033 Redux",play,19.7,0 -26762388,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -26762388,"Tom Clancy's Splinter Cell Conviction",play,18.0,0 -26762388,"Dishonored",purchase,1.0,0 -26762388,"Dishonored",play,17.4,0 -26762388,"The Binding of Isaac",purchase,1.0,0 -26762388,"The Binding of Isaac",play,17.1,0 -26762388,"Crimsonland",purchase,1.0,0 -26762388,"Crimsonland",play,16.5,0 -26762388,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -26762388,"Burnout Paradise The Ultimate Box",play,16.2,0 -26762388,"Metro 2033",purchase,1.0,0 -26762388,"Metro 2033",play,16.2,0 -26762388,"BioShock",purchase,1.0,0 -26762388,"BioShock",play,14.4,0 -26762388,"Crysis",purchase,1.0,0 -26762388,"Crysis",play,14.3,0 -26762388,"Half-Life 2 Lost Coast",purchase,1.0,0 -26762388,"Half-Life 2 Lost Coast",play,13.0,0 -26762388,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -26762388,"Star Wars The Force Unleashed Ultimate Sith Edition",play,12.8,0 -26762388,"Stronghold Crusader HD",purchase,1.0,0 -26762388,"Stronghold Crusader HD",play,10.1,0 -26762388,"Gunpoint",purchase,1.0,0 -26762388,"Gunpoint",play,9.6,0 -26762388,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -26762388,"Warhammer 40,000 Dawn of War Dark Crusade",play,9.6,0 -26762388,"Plain Sight",purchase,1.0,0 -26762388,"Plain Sight",play,9.3,0 -26762388,"Far Cry 2",purchase,1.0,0 -26762388,"Far Cry 2",play,8.8,0 -26762388,"Bastion",purchase,1.0,0 -26762388,"Bastion",play,8.7,0 -26762388,"Reus",purchase,1.0,0 -26762388,"Reus",play,8.2,0 -26762388,"Darksiders",purchase,1.0,0 -26762388,"Darksiders",play,7.4,0 -26762388,"Geometry Wars Retro Evolved",purchase,1.0,0 -26762388,"Geometry Wars Retro Evolved",play,6.9,0 -26762388,"Super Meat Boy",purchase,1.0,0 -26762388,"Super Meat Boy",play,6.9,0 -26762388,"Goat Simulator",purchase,1.0,0 -26762388,"Goat Simulator",play,6.7,0 -26762388,"Left 4 Dead 2",purchase,1.0,0 -26762388,"Left 4 Dead 2",play,6.7,0 -26762388,"Portal",purchase,1.0,0 -26762388,"Portal",play,6.5,0 -26762388,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -26762388,"Sid Meier's Civilization IV Warlords",play,6.4,0 -26762388,"Team Fortress 2",purchase,1.0,0 -26762388,"Team Fortress 2",play,6.3,0 -26762388,"Brothers - A Tale of Two Sons",purchase,1.0,0 -26762388,"Brothers - A Tale of Two Sons",play,6.3,0 -26762388,"Killing Floor",purchase,1.0,0 -26762388,"Killing Floor",play,6.2,0 -26762388,"Hotline Miami",purchase,1.0,0 -26762388,"Hotline Miami",play,5.7,0 -26762388,"Penumbra Overture",purchase,1.0,0 -26762388,"Penumbra Overture",play,5.3,0 -26762388,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -26762388,"Dark Messiah of Might & Magic Single Player",play,5.3,0 -26762388,"Shatter",purchase,1.0,0 -26762388,"Shatter",play,5.1,0 -26762388,"Dead Rising 2",purchase,1.0,0 -26762388,"Dead Rising 2",play,4.9,0 -26762388,"The Walking Dead",purchase,1.0,0 -26762388,"The Walking Dead",play,4.6,0 -26762388,"Battlefield Bad Company 2",purchase,1.0,0 -26762388,"Battlefield Bad Company 2",play,4.2,0 -26762388,"HOARD",purchase,1.0,0 -26762388,"HOARD",play,4.0,0 -26762388,"Overlord II",purchase,1.0,0 -26762388,"Overlord II",play,3.8,0 -26762388,"The Wolf Among Us",purchase,1.0,0 -26762388,"The Wolf Among Us",play,3.6,0 -26762388,"Patch testing for Chivalry",purchase,1.0,0 -26762388,"Patch testing for Chivalry",play,3.4,0 -26762388,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -26762388,"Batman Arkham Asylum GOTY Edition",play,3.2,0 -26762388,"Killing Floor 2",purchase,1.0,0 -26762388,"Killing Floor 2",play,3.1,0 -26762388,"Rome Total War",purchase,1.0,0 -26762388,"Rome Total War",play,2.6,0 -26762388,"Audiosurf",purchase,1.0,0 -26762388,"Audiosurf",play,2.6,0 -26762388,"Doc Clock The Toasted Sandwich of Time",purchase,1.0,0 -26762388,"Doc Clock The Toasted Sandwich of Time",play,2.6,0 -26762388,"Dead Space",purchase,1.0,0 -26762388,"Dead Space",play,2.6,0 -26762388,"PAYDAY 2",purchase,1.0,0 -26762388,"PAYDAY 2",play,2.5,0 -26762388,"Kerbal Space Program",purchase,1.0,0 -26762388,"Kerbal Space Program",play,2.4,0 -26762388,"Universe Sandbox",purchase,1.0,0 -26762388,"Universe Sandbox",play,2.2,0 -26762388,"Overlord",purchase,1.0,0 -26762388,"Overlord",play,2.0,0 -26762388,"Bully Scholarship Edition",purchase,1.0,0 -26762388,"Bully Scholarship Edition",play,1.9,0 -26762388,"Leviathan Warships",purchase,1.0,0 -26762388,"Leviathan Warships",play,1.5,0 -26762388,"Half-Life 2 Episode One",purchase,1.0,0 -26762388,"Half-Life 2 Episode One",play,1.4,0 -26762388,"Beat Hazard",purchase,1.0,0 -26762388,"Beat Hazard",play,1.3,0 -26762388,"Bionic Commando",purchase,1.0,0 -26762388,"Bionic Commando",play,1.2,0 -26762388,"Half-Life 2",purchase,1.0,0 -26762388,"Half-Life 2",play,1.1,0 -26762388,"The Witcher Enhanced Edition",purchase,1.0,0 -26762388,"The Witcher Enhanced Edition",play,1.1,0 -26762388,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -26762388,"Sid Meier's Civilization IV Colonization",play,1.0,0 -26762388,"Osmos",purchase,1.0,0 -26762388,"Osmos",play,1.0,0 -26762388,"Amnesia The Dark Descent",purchase,1.0,0 -26762388,"Amnesia The Dark Descent",play,0.9,0 -26762388,"QuantZ",purchase,1.0,0 -26762388,"QuantZ",play,0.9,0 -26762388,"Galcon Fusion",purchase,1.0,0 -26762388,"Galcon Fusion",play,0.8,0 -26762388,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -26762388,"Beatbuddy Tale of the Guardians",play,0.8,0 -26762388,"Mount & Blade",purchase,1.0,0 -26762388,"Mount & Blade",play,0.8,0 -26762388,"King Arthur - The Role-playing Wargame",purchase,1.0,0 -26762388,"King Arthur - The Role-playing Wargame",play,0.8,0 -26762388,"Crayon Physics Deluxe",purchase,1.0,0 -26762388,"Crayon Physics Deluxe",play,0.7,0 -26762388,"Aquaria",purchase,1.0,0 -26762388,"Aquaria",play,0.7,0 -26762388,"Strong Bad Episode 1 Homestar Ruiner",purchase,1.0,0 -26762388,"Strong Bad Episode 1 Homestar Ruiner",play,0.6,0 -26762388,"World of Goo",purchase,1.0,0 -26762388,"World of Goo",play,0.6,0 -26762388,"Frozen Synapse",purchase,1.0,0 -26762388,"Frozen Synapse",play,0.5,0 -26762388,"Prison Architect",purchase,1.0,0 -26762388,"Prison Architect",play,0.5,0 -26762388,"Gish",purchase,1.0,0 -26762388,"Gish",play,0.5,0 -26762388,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -26762388,"Dark Souls Prepare to Die Edition",play,0.5,0 -26762388,"Prince of Persia The Sands of Time",purchase,1.0,0 -26762388,"Prince of Persia The Sands of Time",play,0.5,0 -26762388,"Steel Storm Burning Retribution",purchase,1.0,0 -26762388,"Steel Storm Burning Retribution",play,0.5,0 -26762388,"Sanctum 2",purchase,1.0,0 -26762388,"Sanctum 2",play,0.5,0 -26762388,"Gratuitous Space Battles",purchase,1.0,0 -26762388,"Gratuitous Space Battles",play,0.4,0 -26762388,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -26762388,"Superbrothers Sword & Sworcery EP",play,0.4,0 -26762388,"The Polynomial",purchase,1.0,0 -26762388,"The Polynomial",play,0.4,0 -26762388,"Alien Swarm",purchase,1.0,0 -26762388,"Alien Swarm",play,0.4,0 -26762388,"Thief Deadly Shadows",purchase,1.0,0 -26762388,"Thief Deadly Shadows",play,0.3,0 -26762388,"Cogs",purchase,1.0,0 -26762388,"Cogs",play,0.3,0 -26762388,"Mount & Blade With Fire and Sword",purchase,1.0,0 -26762388,"Mount & Blade With Fire and Sword",play,0.3,0 -26762388,"Papers, Please",purchase,1.0,0 -26762388,"Papers, Please",play,0.3,0 -26762388,"Gumboy Crazy Features",purchase,1.0,0 -26762388,"Gumboy Crazy Features",play,0.2,0 -26762388,"Star Wars The Force Unleashed II",purchase,1.0,0 -26762388,"Star Wars The Force Unleashed II",play,0.2,0 -26762388,"Eets",purchase,1.0,0 -26762388,"Eets",play,0.2,0 -26762388,"GridRunner Revolution",purchase,1.0,0 -26762388,"GridRunner Revolution",play,0.2,0 -26762388,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -26762388,"The Elder Scrolls IV Oblivion ",play,0.2,0 -26762388,"Frontlines Fuel of War",purchase,1.0,0 -26762388,"Frontlines Fuel of War",play,0.2,0 -26762388,"Bionic Commando Rearmed",purchase,1.0,0 -26762388,"Bionic Commando Rearmed",play,0.1,0 -26762388,"Droplitz",purchase,1.0,0 -26762388,"Droplitz",play,0.1,0 -26762388,"Just Cause",purchase,1.0,0 -26762388,"Just Cause",play,0.1,0 -26762388,"Half-Life 2 Episode Two",purchase,1.0,0 -26762388,"Half-Life 2 Episode Two",play,0.1,0 -26762388,"The Stanley Parable",purchase,1.0,0 -26762388,"The Stanley Parable",play,0.1,0 -26762388,"Rag Doll Kung Fu",purchase,1.0,0 -26762388,"Rag Doll Kung Fu",play,0.1,0 -26762388,"Hitman Blood Money",purchase,1.0,0 -26762388,"BIT.TRIP RUNNER",purchase,1.0,0 -26762388,"Heroes of Might & Magic V Tribes of the East",purchase,1.0,0 -26762388,"Blocks That Matter",purchase,1.0,0 -26762388,"Overlord Raising Hell",purchase,1.0,0 -26762388,"Arma 2 Operation Arrowhead",purchase,1.0,0 -26762388,"Company of Heroes",purchase,1.0,0 -26762388,"Gumboy Crazy Adventures",purchase,1.0,0 -26762388,"Altitude",purchase,1.0,0 -26762388,"And Yet It Moves",purchase,1.0,0 -26762388,"Antichamber",purchase,1.0,0 -26762388,"Arma 2",purchase,1.0,0 -26762388,"Arma 2 DayZ Mod",purchase,1.0,0 -26762388,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -26762388,"Atom Zombie Smasher ",purchase,1.0,0 -26762388,"Awesomenauts",purchase,1.0,0 -26762388,"Battlefield 2",purchase,1.0,0 -26762388,"BioShock Infinite - Season Pass",purchase,1.0,0 -26762388,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -26762388,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -26762388,"Braid",purchase,1.0,0 -26762388,"BRAINPIPE A Plunge to Unhumanity",purchase,1.0,0 -26762388,"Cave Story+",purchase,1.0,0 -26762388,"Cities in Motion 2",purchase,1.0,0 -26762388,"Company of Heroes (New Steam Version)",purchase,1.0,0 -26762388,"Company of Heroes Opposing Fronts",purchase,1.0,0 -26762388,"Company of Heroes Tales of Valor",purchase,1.0,0 -26762388,"Crysis Warhead",purchase,1.0,0 -26762388,"Crysis Wars",purchase,1.0,0 -26762388,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -26762388,"Deus Ex Game of the Year Edition",purchase,1.0,0 -26762388,"Deus Ex Invisible War",purchase,1.0,0 -26762388,"Deus Ex Revision",purchase,1.0,0 -26762388,"DogFighter",purchase,1.0,0 -26762388,"Dungeon Defenders",purchase,1.0,0 -26762388,"Dungeon Siege III",purchase,1.0,0 -26762388,"Eufloria HD",purchase,1.0,0 -26762388,"Eufloria HD Original Soundtrack",purchase,1.0,0 -26762388,"Fallout New Vegas Dead Money",purchase,1.0,0 -26762388,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -26762388,"Far Cry",purchase,1.0,0 -26762388,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -26762388,"FlatOut Ultimate Carnage",purchase,1.0,0 -26762388,"Flotilla",purchase,1.0,0 -26762388,"Grand Theft Auto San Andreas",purchase,1.0,0 -26762388,"Half-Life",purchase,1.0,0 -26762388,"Hammerfight",purchase,1.0,0 -26762388,"Hero Academy",purchase,1.0,0 -26762388,"Heroes of Might & Magic V Hammers of Fate",purchase,1.0,0 -26762388,"Indie Game The Movie",purchase,1.0,0 -26762388,"Iron Grip Warlord",purchase,1.0,0 -26762388,"Jamestown",purchase,1.0,0 -26762388,"Jolly Rover",purchase,1.0,0 -26762388,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -26762388,"King Arthur The Druids",purchase,1.0,0 -26762388,"King Arthur The Saxons",purchase,1.0,0 -26762388,"Leviathan Warships Commonwealth Unit Pack",purchase,1.0,0 -26762388,"LIMBO",purchase,1.0,0 -26762388,"Lugaru HD ",purchase,1.0,0 -26762388,"Machinarium",purchase,1.0,0 -26762388,"Max Payne",purchase,1.0,0 -26762388,"Metro Last Light Redux",purchase,1.0,0 -26762388,"Monaco",purchase,1.0,0 -26762388,"Natural Selection 2",purchase,1.0,0 -26762388,"NightSky",purchase,1.0,0 -26762388,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",purchase,1.0,0 -26762388,"Portal Stories Mel",purchase,1.0,0 -26762388,"ProtoGalaxy",purchase,1.0,0 -26762388,"Psychonauts Demo",purchase,1.0,0 -26762388,"Puzzle Agent",purchase,1.0,0 -26762388,"Puzzle Dimension",purchase,1.0,0 -26762388,"Recettear An Item Shop's Tale",purchase,1.0,0 -26762388,"Revenge of the Titans",purchase,1.0,0 -26762388,"Samorost 2",purchase,1.0,0 -26762388,"Serious Sam 3 BFE",purchase,1.0,0 -26762388,"Shadowgrounds",purchase,1.0,0 -26762388,"Shadowgrounds Survivor",purchase,1.0,0 -26762388,"Shank",purchase,1.0,0 -26762388,"Sid Meier's Civilization IV",purchase,1.0,0 -26762388,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -26762388,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -26762388,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -26762388,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -26762388,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -26762388,"Small World 2",purchase,1.0,0 -26762388,"South Park The Stick of Truth - Super Samurai Spaceman Pack",purchase,1.0,0 -26762388,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -26762388,"Strike Suit Zero",purchase,1.0,0 -26762388,"Strong Bad Episode 2 Strong Badia the Free",purchase,1.0,0 -26762388,"Strong Bad Episode 3 Baddest of the Bands",purchase,1.0,0 -26762388,"Strong Bad Episode 4 Dangeresque 3",purchase,1.0,0 -26762388,"Strong Bad Episode 5 8-Bit Is Enough",purchase,1.0,0 -26762388,"Takedown Red Sabre",purchase,1.0,0 -26762388,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -26762388,"Tidalis",purchase,1.0,0 -26762388,"Titan Quest",purchase,1.0,0 -26762388,"Titan Quest Immortal Throne",purchase,1.0,0 -26762388,"TRAUMA",purchase,1.0,0 -26762388,"VVVVVV",purchase,1.0,0 -26762388,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -26762388,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -26762388,"Worms",purchase,1.0,0 -26762388,"Worms Ultimate Mayhem",purchase,1.0,0 -207982884,"Robocraft",purchase,1.0,0 -207982884,"Robocraft",play,2.3,0 -196677424,"Dota 2",purchase,1.0,0 -196677424,"Dota 2",play,16.6,0 -102543268,"Disciples III Reincarnation",purchase,1.0,0 -102543268,"Disciples III Reincarnation",play,12.8,0 -269034196,"Unturned",purchase,1.0,0 -269034196,"Unturned",play,11.4,0 -269034196,"Robocraft",purchase,1.0,0 -269034196,"Robocraft",play,1.5,0 -212806127,"Team Fortress 2",purchase,1.0,0 -212806127,"Team Fortress 2",play,20.0,0 -212806127,"Source Filmmaker",purchase,1.0,0 -212806127,"Source Filmmaker",play,0.3,0 -212806127,"Super Meat Boy",purchase,1.0,0 -212806127,"Super Meat Boy",play,0.1,0 -212806127,"World of Goo",purchase,1.0,0 -212806127,"World of Goo",play,0.1,0 -212806127,"Dustforce",purchase,1.0,0 -133517515,"Deadpool",purchase,1.0,0 -133517515,"Deadpool",play,19.9,0 -133517515,"Tomb Raider",purchase,1.0,0 -133517515,"Tomb Raider",play,1.6,0 -114030647,"Dota 2",purchase,1.0,0 -114030647,"Dota 2",play,2380.0,0 -114030647,"Metro Last Light",purchase,1.0,0 -114030647,"Metro Last Light",play,24.0,0 -114030647,"Metro 2033",purchase,1.0,0 -114030647,"Metro 2033",play,18.3,0 -114030647,"Max Payne 3",purchase,1.0,0 -114030647,"Max Payne 3",play,16.1,0 -114030647,"The Witcher 3 Wild Hunt",purchase,1.0,0 -114030647,"The Witcher 3 Wild Hunt",play,12.1,0 -114030647,"Free to Play",purchase,1.0,0 -114030647,"Free to Play",play,11.1,0 -114030647,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -114030647,"The Witcher 2 Assassins of Kings Enhanced Edition",play,10.9,0 -114030647,"Transformers War for Cybertron",purchase,1.0,0 -114030647,"Transformers War for Cybertron",play,9.5,0 -114030647,"The Mighty Quest For Epic Loot",purchase,1.0,0 -114030647,"The Mighty Quest For Epic Loot",play,8.4,0 -114030647,"Star Wars The Force Unleashed II",purchase,1.0,0 -114030647,"Star Wars The Force Unleashed II",play,6.6,0 -114030647,"Borderlands 2",purchase,1.0,0 -114030647,"Borderlands 2",play,4.6,0 -114030647,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -114030647,"Batman Arkham Asylum GOTY Edition",play,4.3,0 -114030647,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -114030647,"Galactic Civilizations II Ultimate Edition",play,3.7,0 -114030647,"Crysis 2 Maximum Edition",purchase,1.0,0 -114030647,"Crysis 2 Maximum Edition",play,3.4,0 -114030647,"Endless Space",purchase,1.0,0 -114030647,"Endless Space",play,2.4,0 -114030647,"Castlevania Lords of Shadow - Ultimate Edition",purchase,1.0,0 -114030647,"Castlevania Lords of Shadow - Ultimate Edition",play,2.2,0 -114030647,"Ryse Son of Rome",purchase,1.0,0 -114030647,"Ryse Son of Rome",play,2.1,0 -114030647,"EVE Online",purchase,1.0,0 -114030647,"EVE Online",play,1.7,0 -114030647,"Ultra Street Fighter IV",purchase,1.0,0 -114030647,"Ultra Street Fighter IV",play,1.7,0 -114030647,"Aliens Colonial Marines",purchase,1.0,0 -114030647,"Aliens Colonial Marines",play,1.6,0 -114030647,"The Elder Scrolls V Skyrim",purchase,1.0,0 -114030647,"The Elder Scrolls V Skyrim",play,1.5,0 -114030647,"Wolfenstein The New Order",purchase,1.0,0 -114030647,"Wolfenstein The New Order",play,1.4,0 -114030647,"Marvel Heroes 2015",purchase,1.0,0 -114030647,"Marvel Heroes 2015",play,1.3,0 -114030647,"Universe Sandbox",purchase,1.0,0 -114030647,"Universe Sandbox",play,1.2,0 -114030647,"ENSLAVED Odyssey to the West Premium Edition",purchase,1.0,0 -114030647,"ENSLAVED Odyssey to the West Premium Edition",play,0.8,0 -114030647,"Torchlight II",purchase,1.0,0 -114030647,"Torchlight II",play,0.8,0 -114030647,"DmC Devil May Cry",purchase,1.0,0 -114030647,"DmC Devil May Cry",play,0.7,0 -114030647,"Left 4 Dead 2",purchase,1.0,0 -114030647,"Left 4 Dead 2",play,0.7,0 -114030647,"Far Cry 3",purchase,1.0,0 -114030647,"Far Cry 3",play,0.7,0 -114030647,"Batman Arkham City GOTY",purchase,1.0,0 -114030647,"Batman Arkham City GOTY",play,0.5,0 -114030647,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -114030647,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.5,0 -114030647,"Galactic Civilizations I Ultimate Edition",purchase,1.0,0 -114030647,"Galactic Civilizations I Ultimate Edition",play,0.5,0 -114030647,"Dishonored",purchase,1.0,0 -114030647,"Dishonored",play,0.4,0 -114030647,"Trine",purchase,1.0,0 -114030647,"Trine",play,0.4,0 -114030647,"The Walking Dead",purchase,1.0,0 -114030647,"The Walking Dead",play,0.3,0 -114030647,"Grand Theft Auto IV",purchase,1.0,0 -114030647,"Grand Theft Auto IV",play,0.3,0 -114030647,"Deus Ex Human Revolution",purchase,1.0,0 -114030647,"Deus Ex Human Revolution",play,0.3,0 -114030647,"Trine 2",purchase,1.0,0 -114030647,"Trine 2",play,0.3,0 -114030647,"Sins of a Solar Empire Trinity",purchase,1.0,0 -114030647,"Sins of a Solar Empire Trinity",play,0.3,0 -114030647,"Interstellar Marines",purchase,1.0,0 -114030647,"Interstellar Marines",play,0.3,0 -114030647,"Deadlight",purchase,1.0,0 -114030647,"Deadlight",play,0.3,0 -114030647,"Need for Speed Hot Pursuit",purchase,1.0,0 -114030647,"Need for Speed Hot Pursuit",play,0.3,0 -114030647,"Shadowgrounds",purchase,1.0,0 -114030647,"Shadowgrounds",play,0.2,0 -114030647,"Batman Arkham Origins",purchase,1.0,0 -114030647,"Batman Arkham Origins",play,0.2,0 -114030647,"Alien Isolation",purchase,1.0,0 -114030647,"Alien Isolation",play,0.2,0 -114030647,"Call of Duty Modern Warfare 3",purchase,1.0,0 -114030647,"Call of Duty Modern Warfare 3",play,0.2,0 -114030647,"Age of Empires III Complete Collection",purchase,1.0,0 -114030647,"Age of Empires III Complete Collection",play,0.2,0 -114030647,"Geometry Wars Retro Evolved",purchase,1.0,0 -114030647,"Geometry Wars Retro Evolved",play,0.1,0 -114030647,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -114030647,"Call of Duty Modern Warfare 3 - Multiplayer",play,0.1,0 -114030647,"Strider",purchase,1.0,0 -114030647,"Strider",play,0.1,0 -114030647,"The Witcher Enhanced Edition",purchase,1.0,0 -114030647,"The Witcher Enhanced Edition",play,0.1,0 -114030647,"Transformers Fall of Cybertron",purchase,1.0,0 -114030647,"Deadbreed",purchase,1.0,0 -114030647,"Cannons Lasers Rockets",purchase,1.0,0 -114030647,"Dragons and Titans",purchase,1.0,0 -114030647,"Guacamelee! Gold Edition",purchase,1.0,0 -114030647,"Shadowgrounds Survivor",purchase,1.0,0 -114030647,"Dust An Elysian Tail",purchase,1.0,0 -114030647,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -114030647,"HAWKEN",purchase,1.0,0 -114030647,"Path of Exile",purchase,1.0,0 -114030647,"The Witcher 3 Wild Hunt - Expansion Pass",purchase,1.0,0 -114030647,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -227676589,"Cubic Castles",purchase,1.0,0 -227676589,"Cubic Castles",play,56.0,0 -227676589,"Nightbanes",purchase,1.0,0 -227676589,"Nightbanes",play,31.0,0 -227676589,"CastleMiner Z",purchase,1.0,0 -227676589,"CastleMiner Z",play,0.8,0 -301915080,"LEGO Worlds",purchase,1.0,0 -301915080,"LEGO Worlds",play,2.2,0 -143669656,"Dota 2",purchase,1.0,0 -143669656,"Dota 2",play,1.1,0 -107160281,"Total War SHOGUN 2",purchase,1.0,0 -107160281,"Total War SHOGUN 2",play,17.5,0 -135156563,"Dota 2",purchase,1.0,0 -135156563,"Dota 2",play,15.3,0 -129634406,"Dota 2",purchase,1.0,0 -129634406,"Dota 2",play,145.0,0 -129634406,"Team Fortress 2",purchase,1.0,0 -129634406,"Team Fortress 2",play,1.1,0 -74290096,"Saints Row 2",purchase,1.0,0 -74290096,"Saints Row 2",play,30.0,0 -74290096,"Team Fortress 2",purchase,1.0,0 -74290096,"Team Fortress 2",play,0.5,0 -128681412,"The Elder Scrolls V Skyrim",purchase,1.0,0 -128681412,"The Elder Scrolls V Skyrim",play,1.8,0 -164761364,"DayZ",purchase,1.0,0 -164761364,"DayZ",play,92.0,0 -164761364,"Age of Empires II HD Edition",purchase,1.0,0 -164761364,"Age of Empires II HD Edition",play,55.0,0 -164761364,"Counter-Strike Global Offensive",purchase,1.0,0 -164761364,"Counter-Strike Global Offensive",play,48.0,0 -164761364,"Left 4 Dead 2",purchase,1.0,0 -164761364,"Left 4 Dead 2",play,33.0,0 -164761364,"7 Days to Die",purchase,1.0,0 -164761364,"7 Days to Die",play,31.0,0 -164761364,"Stronghold Crusader HD",purchase,1.0,0 -164761364,"Stronghold Crusader HD",play,25.0,0 -164761364,"No More Room in Hell",purchase,1.0,0 -164761364,"No More Room in Hell",play,21.0,0 -164761364,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -164761364,"Sins of a Solar Empire Rebellion",play,15.2,0 -164761364,"Unturned",purchase,1.0,0 -164761364,"Unturned",play,12.4,0 -164761364,"Anno 1404 Venice",purchase,1.0,0 -164761364,"Anno 1404 Venice",play,8.6,0 -164761364,"Team Fortress 2",purchase,1.0,0 -164761364,"Team Fortress 2",play,3.5,0 -164761364,"Nidhogg",purchase,1.0,0 -164761364,"Nidhogg",play,3.5,0 -164761364,"Star Conflict",purchase,1.0,0 -164761364,"Star Conflict",play,3.3,0 -164761364,"Dota 2",purchase,1.0,0 -164761364,"Dota 2",play,3.1,0 -164761364,"Stronghold Crusader Extreme HD",purchase,1.0,0 -164761364,"Anno 1404",purchase,1.0,0 -164761364,"Dirty Bomb",purchase,1.0,0 -164761364,"Heroes & Generals",purchase,1.0,0 -164761364,"Path of Exile",purchase,1.0,0 -164761364,"Warframe",purchase,1.0,0 -164761364,"War Thunder",purchase,1.0,0 -74161385,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -74161385,"Call of Duty Black Ops - Multiplayer",play,137.0,0 -74161385,"Call of Duty Black Ops",purchase,1.0,0 -74161385,"Call of Duty Black Ops",play,10.5,0 -74161385,"AdVenture Capitalist",purchase,1.0,0 -74161385,"Blacklight Retribution",purchase,1.0,0 -74161385,"Defiance",purchase,1.0,0 -74161385,"Dirty Bomb",purchase,1.0,0 -74161385,"Eldevin",purchase,1.0,0 -74161385,"Fallen Earth",purchase,1.0,0 -74161385,"Firefall",purchase,1.0,0 -74161385,"Heroes & Generals",purchase,1.0,0 -74161385,"Realm of the Mad God",purchase,1.0,0 -74161385,"Robocraft",purchase,1.0,0 -74161385,"Spooky's House of Jump Scares",purchase,1.0,0 -74161385,"Time Clickers",purchase,1.0,0 -74161385,"Warframe",purchase,1.0,0 -74161385,"World of Guns Gun Disassembly",purchase,1.0,0 -258390409,"Counter-Strike Global Offensive",purchase,1.0,0 -258390409,"Counter-Strike Global Offensive",play,33.0,0 -258390409,"Magic Duels",purchase,1.0,0 -258390409,"Quake Live",purchase,1.0,0 -151470260,"Dota 2",purchase,1.0,0 -151470260,"Dota 2",play,10.7,0 -151470260,"Sniper Elite V2",purchase,1.0,0 -151470260,"Sniper Elite V2",play,7.1,0 -7736384,"Counter-Strike",purchase,1.0,0 -7736384,"Counter-Strike",play,478.0,0 -7736384,"Counter-Strike Global Offensive",purchase,1.0,0 -7736384,"Counter-Strike Global Offensive",play,193.0,0 -7736384,"Day of Defeat",purchase,1.0,0 -7736384,"Deathmatch Classic",purchase,1.0,0 -7736384,"Half-Life",purchase,1.0,0 -7736384,"Half-Life Blue Shift",purchase,1.0,0 -7736384,"Half-Life Opposing Force",purchase,1.0,0 -7736384,"Ricochet",purchase,1.0,0 -7736384,"Team Fortress Classic",purchase,1.0,0 -301004831,"Unturned",purchase,1.0,0 -301004831,"Unturned",play,0.5,0 -301004831,"Genesis Online",purchase,1.0,0 -301004831,"Genesis Online",play,0.2,0 -95071167,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -95071167,"Warhammer 40,000 Dawn of War II Retribution",play,0.3,0 -102606653,"Dota 2",purchase,1.0,0 -102606653,"Dota 2",play,679.0,0 -122094388,"Counter-Strike Global Offensive",purchase,1.0,0 -122094388,"Counter-Strike Global Offensive",play,510.0,0 -122094388,"Unturned",purchase,1.0,0 -122094388,"Unturned",play,446.0,0 -122094388,"Terraria",purchase,1.0,0 -122094388,"Terraria",play,162.0,0 -122094388,"Arma 2 Operation Arrowhead",purchase,1.0,0 -122094388,"Arma 2 Operation Arrowhead",play,142.0,0 -122094388,"Sid Meier's Civilization V",purchase,1.0,0 -122094388,"Sid Meier's Civilization V",play,117.0,0 -122094388,"Garry's Mod",purchase,1.0,0 -122094388,"Garry's Mod",play,84.0,0 -122094388,"Grand Theft Auto V",purchase,1.0,0 -122094388,"Grand Theft Auto V",play,17.2,0 -122094388,"Assassin's Creed IV Black Flag",purchase,1.0,0 -122094388,"Assassin's Creed IV Black Flag",play,15.9,0 -122094388,"Fallout 4",purchase,1.0,0 -122094388,"Fallout 4",play,14.6,0 -122094388,"Metro Last Light Redux",purchase,1.0,0 -122094388,"Metro Last Light Redux",play,12.1,0 -122094388,"Half-Life 2",purchase,1.0,0 -122094388,"Half-Life 2",play,9.6,0 -122094388,"Metro 2033 Redux",purchase,1.0,0 -122094388,"Metro 2033 Redux",play,9.3,0 -122094388,"Portal",purchase,1.0,0 -122094388,"Portal",play,3.5,0 -122094388,"Borderlands",purchase,1.0,0 -122094388,"Borderlands",play,3.1,0 -122094388,"Robocraft",purchase,1.0,0 -122094388,"Robocraft",play,1.9,0 -122094388,"DayZ",purchase,1.0,0 -122094388,"DayZ",play,1.5,0 -122094388,"Besiege",purchase,1.0,0 -122094388,"Besiege",play,1.2,0 -122094388,"Trove",purchase,1.0,0 -122094388,"Trove",play,0.8,0 -122094388,"Fallout New Vegas",purchase,1.0,0 -122094388,"Fallout New Vegas",play,0.7,0 -122094388,"No More Room in Hell",purchase,1.0,0 -122094388,"No More Room in Hell",play,0.7,0 -122094388,"War Thunder",purchase,1.0,0 -122094388,"War Thunder",play,0.6,0 -122094388,"FortressCraft Evolved",purchase,1.0,0 -122094388,"FortressCraft Evolved",play,0.5,0 -122094388,"Goat Simulator",purchase,1.0,0 -122094388,"Goat Simulator",play,0.5,0 -122094388,"Arma 2",purchase,1.0,0 -122094388,"Arma 2",play,0.5,0 -122094388,"Bully Scholarship Edition",purchase,1.0,0 -122094388,"Bully Scholarship Edition",play,0.4,0 -122094388,"State of Decay",purchase,1.0,0 -122094388,"State of Decay",play,0.4,0 -122094388,"World of Guns Gun Disassembly",purchase,1.0,0 -122094388,"World of Guns Gun Disassembly",play,0.4,0 -122094388,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -122094388,"Fallout 3 - Game of the Year Edition",play,0.3,0 -122094388,"Dirty Bomb",purchase,1.0,0 -122094388,"Dirty Bomb",play,0.2,0 -122094388,"Tropico 4",purchase,1.0,0 -122094388,"Tropico 4",play,0.2,0 -122094388,"Ascend Hand of Kul",purchase,1.0,0 -122094388,"Ascend Hand of Kul",play,0.2,0 -122094388,"Empire Total War",purchase,1.0,0 -122094388,"Empire Total War",play,0.1,0 -122094388,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -122094388,"Sonic & All-Stars Racing Transformed",play,0.1,0 -122094388,"Counter-Strike Source",purchase,1.0,0 -122094388,"Counter-Strike Source",play,0.1,0 -122094388,"Arma 2 DayZ Mod",purchase,1.0,0 -122094388,"Crazy Taxi",purchase,1.0,0 -122094388,"Telltale Texas Hold'Em",purchase,1.0,0 -122094388,"Amnesia The Dark Descent",purchase,1.0,0 -122094388,"Metro 2033",purchase,1.0,0 -122094388,"Alpha Prime",purchase,1.0,0 -122094388,"Arma 2 British Armed Forces",purchase,1.0,0 -122094388,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -122094388,"Arma 2 Private Military Company",purchase,1.0,0 -122094388,"Arma Gold Edition",purchase,1.0,0 -122094388,"Arma Tactics",purchase,1.0,0 -122094388,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -122094388,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -122094388,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -122094388,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -122094388,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -122094388,"Company of Heroes 2",purchase,1.0,0 -122094388,"Counter-Strike Nexon Zombies",purchase,1.0,0 -122094388,"Dino D-Day",purchase,1.0,0 -122094388,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -122094388,"Fallout New Vegas Dead Money",purchase,1.0,0 -122094388,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -122094388,"FortressCraft Evolved Multiplayer",purchase,1.0,0 -122094388,"Hero Academy",purchase,1.0,0 -122094388,"Loadout",purchase,1.0,0 -122094388,"NiGHTS into Dreams...",purchase,1.0,0 -122094388,"Oddworld Abe's Oddysee",purchase,1.0,0 -122094388,"Original War",purchase,1.0,0 -122094388,"ORION Prelude",purchase,1.0,0 -122094388,"SEGA Bass Fishing",purchase,1.0,0 -122094388,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -122094388,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -122094388,"Sonic Adventure DX",purchase,1.0,0 -122094388,"Space Channel 5 Part 2",purchase,1.0,0 -122094388,"Stealth Inc 2",purchase,1.0,0 -122094388,"Take On Helicopters",purchase,1.0,0 -122094388,"The Fish Fillets 2",purchase,1.0,0 -122094388,"The Ship",purchase,1.0,0 -122094388,"The Ship Single Player",purchase,1.0,0 -122094388,"The Ship Tutorial",purchase,1.0,0 -122094388,"UFO Afterlight",purchase,1.0,0 -122094388,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -295613222,"Unturned",purchase,1.0,0 -295613222,"Unturned",play,1.8,0 -143629070,"Team Fortress 2",purchase,1.0,0 -143629070,"Team Fortress 2",play,171.0,0 -143629070,"War Inc. Battlezone",purchase,1.0,0 -143629070,"War Inc. Battlezone",play,5.1,0 -143629070,"Gotham City Impostors Free To Play",purchase,1.0,0 -143629070,"Gotham City Impostors Free To Play",play,1.5,0 -143629070,"CrimeCraft GangWars",purchase,1.0,0 -143629070,"Loadout",purchase,1.0,0 -309554670,"Mitos.is The Game",purchase,1.0,0 -309554670,"Mitos.is The Game",play,5.9,0 -211075077,"Divinity Original Sin",purchase,1.0,0 -211075077,"Divinity Original Sin",play,14.9,0 -211075077,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -115019075,"XCOM Enemy Unknown",purchase,1.0,0 -115019075,"XCOM Enemy Unknown",play,32.0,0 -160162882,"Counter-Strike Global Offensive",purchase,1.0,0 -160162882,"Counter-Strike Global Offensive",play,1441.0,0 -160162882,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -160162882,"Tom Clancy's Ghost Recon Phantoms - EU",play,1.7,0 -160162882,"Counter-Strike Source",purchase,1.0,0 -160162882,"Counter-Strike Source",play,0.9,0 -160162882,"Counter-Strike",purchase,1.0,0 -160162882,"Counter-Strike Condition Zero",purchase,1.0,0 -160162882,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -160162882,"Counter-Strike Nexon Zombies",purchase,1.0,0 -160162882,"Loadout",purchase,1.0,0 -90851951,"Team Fortress 2",purchase,1.0,0 -90851951,"Team Fortress 2",play,0.2,0 -186517004,"Counter-Strike Global Offensive",purchase,1.0,0 -186517004,"Counter-Strike Global Offensive",play,387.0,0 -186517004,"The Elder Scrolls V Skyrim",purchase,1.0,0 -186517004,"The Elder Scrolls V Skyrim",play,22.0,0 -186517004,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -186517004,"Call of Duty Black Ops II - Multiplayer",play,8.9,0 -186517004,"Call of Duty Black Ops II",purchase,1.0,0 -186517004,"Call of Duty Black Ops II",play,3.5,0 -186517004,"Trine",purchase,1.0,0 -186517004,"Trine",play,1.1,0 -186517004,"The Witcher Enhanced Edition",purchase,1.0,0 -186517004,"The Witcher Enhanced Edition",play,0.5,0 -186517004,"Dota 2",purchase,1.0,0 -186517004,"Dota 2",play,0.5,0 -186517004,"Middle-earth Shadow of Mordor",purchase,1.0,0 -186517004,"Middle-earth Shadow of Mordor",play,0.2,0 -186517004,"Trine 2",purchase,1.0,0 -186517004,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -186517004,"Counter-Strike",purchase,1.0,0 -186517004,"Counter-Strike Condition Zero",purchase,1.0,0 -186517004,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -186517004,"Counter-Strike Source",purchase,1.0,0 -186517004,"RAGE",purchase,1.0,0 -186517004,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -186517004,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -186517004,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -186517004,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -164583377,"Team Fortress 2",purchase,1.0,0 -164583377,"Team Fortress 2",play,1076.0,0 -73453691,"Football Manager 2012",purchase,1.0,0 -73453691,"Football Manager 2012",play,291.0,0 -73453691,"Football Manager 2010",purchase,1.0,0 -73453691,"Football Manager 2010",play,267.0,0 -73453691,"Football Manager 2013",purchase,1.0,0 -73453691,"Football Manager 2013",play,140.0,0 -211180125,"Team Fortress 2",purchase,1.0,0 -211180125,"Team Fortress 2",play,25.0,0 -211180125,"Terraria",purchase,1.0,0 -211180125,"Terraria",play,12.2,0 -211180125,"The Escapists",purchase,1.0,0 -211180125,"The Escapists",play,8.5,0 -211180125,"Vindictus",purchase,1.0,0 -62478196,"Counter-Strike Global Offensive",purchase,1.0,0 -62478196,"Counter-Strike Global Offensive",play,65.0,0 -62478196,"Unturned",purchase,1.0,0 -62478196,"Unturned",play,38.0,0 -62478196,"Sid Meier's Civilization V",purchase,1.0,0 -62478196,"Sid Meier's Civilization V",play,27.0,0 -62478196,"Napoleon Total War",purchase,1.0,0 -62478196,"Napoleon Total War",play,14.0,0 -62478196,"Loadout Campaign Beta",purchase,1.0,0 -62478196,"Loadout Campaign Beta",play,5.5,0 -62478196,"RaceRoom Racing Experience ",purchase,1.0,0 -62478196,"Warface",purchase,1.0,0 -207976673,"Dead Island Epidemic",purchase,1.0,0 -207976673,"Heroes & Generals",purchase,1.0,0 -207976673,"Loadout",purchase,1.0,0 -207976673,"Robocraft",purchase,1.0,0 -207976673,"Unturned",purchase,1.0,0 -30583864,"Counter-Strike",purchase,1.0,0 -30583864,"Counter-Strike",play,636.0,0 -30583864,"Counter-Strike Global Offensive",purchase,1.0,0 -30583864,"Counter-Strike Global Offensive",play,3.1,0 -30583864,"Counter-Strike Condition Zero",purchase,1.0,0 -30583864,"Counter-Strike Condition Zero",play,2.5,0 -30583864,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -30583864,"Day of Defeat",purchase,1.0,0 -30583864,"Deathmatch Classic",purchase,1.0,0 -30583864,"Ricochet",purchase,1.0,0 -90534290,"Sid Meier's Civilization V",purchase,1.0,0 -90534290,"Sid Meier's Civilization V",play,3.1,0 -296444878,"Garry's Mod",purchase,1.0,0 -296444878,"Garry's Mod",play,1.1,0 -296444878,"BLOCKADE 3D",purchase,1.0,0 -230405922,"Dota 2",purchase,1.0,0 -230405922,"Dota 2",play,0.9,0 -148246305,"Dota 2",purchase,1.0,0 -148246305,"Dota 2",play,252.0,0 -148246305,"Neverwinter",purchase,1.0,0 -148246305,"Neverwinter",play,27.0,0 -148246305,"AdVenture Capitalist",purchase,1.0,0 -148246305,"AdVenture Capitalist",play,18.0,0 -148246305,"Heroes & Generals",purchase,1.0,0 -148246305,"Heroes & Generals",play,15.1,0 -148246305,"PAYDAY The Heist",purchase,1.0,0 -148246305,"PAYDAY The Heist",play,11.1,0 -148246305,"Warframe",purchase,1.0,0 -148246305,"Warframe",play,3.4,0 -148246305,"World of Guns Gun Disassembly",purchase,1.0,0 -148246305,"World of Guns Gun Disassembly",play,0.4,0 -148246305,"Unturned",purchase,1.0,0 -148246305,"Unturned",play,0.3,0 -148246305,"Arma Cold War Assault",purchase,1.0,0 -148246305,"Arma Cold War Assault",play,0.1,0 -148246305,"Counter-Strike Nexon Zombies",purchase,1.0,0 -148246305,"Fallen Earth",purchase,1.0,0 -148246305,"Fractured Space",purchase,1.0,0 -148246305,"Free to Play",purchase,1.0,0 -148246305,"Magicka Wizard Wars",purchase,1.0,0 -148246305,"Nosgoth",purchase,1.0,0 -148246305,"Quake Live",purchase,1.0,0 -148246305,"RIFT",purchase,1.0,0 -148246305,"Robocraft",purchase,1.0,0 -148246305,"Survarium",purchase,1.0,0 -148246305,"theHunter",purchase,1.0,0 -151353081,"Dota 2",purchase,1.0,0 -151353081,"Dota 2",play,1.9,0 -213793062,"Dota 2",purchase,1.0,0 -213793062,"Dota 2",play,1.9,0 -10144413,"Counter-Strike Source",purchase,1.0,0 -10144413,"DEFCON",purchase,1.0,0 -10144413,"Half-Life 2",purchase,1.0,0 -10144413,"Half-Life 2 Deathmatch",purchase,1.0,0 -10144413,"Half-Life 2 Episode One",purchase,1.0,0 -10144413,"Half-Life 2 Lost Coast",purchase,1.0,0 -10144413,"Half-Life Deathmatch Source",purchase,1.0,0 -222406897,"Defiance",purchase,1.0,0 -222406897,"Defiance",play,1.3,0 -222406897,"Team Fortress 2",purchase,1.0,0 -222406897,"Team Fortress 2",play,0.6,0 -222406897,"Gotham City Impostors Free To Play",purchase,1.0,0 -222406897,"NEOTOKYO",purchase,1.0,0 -114324869,"Dota 2",purchase,1.0,0 -114324869,"Dota 2",play,192.0,0 -114324869,"Two Worlds Epic Edition",purchase,1.0,0 -114324869,"Two Worlds Epic Edition",play,13.1,0 -114324869,"Knights and Merchants",purchase,1.0,0 -114324869,"Knights and Merchants",play,13.1,0 -114324869,"Battlepaths",purchase,1.0,0 -114324869,"Battlepaths",play,12.9,0 -114324869,"Enclave",purchase,1.0,0 -114324869,"Enclave",play,12.9,0 -114324869,"KnightShift",purchase,1.0,0 -114324869,"KnightShift",play,12.9,0 -114324869,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -114324869,"Rising Storm/Red Orchestra 2 Multiplayer",play,2.7,0 -114324869,"Left 4 Dead 2",purchase,1.0,0 -114324869,"Left 4 Dead 2",play,1.9,0 -114324869,"The Culling Of The Cows",purchase,1.0,0 -114324869,"The Culling Of The Cows",play,1.6,0 -114324869,"Dino D-Day",purchase,1.0,0 -114324869,"Dino D-Day",play,1.0,0 -114324869,"Gun Monkeys",purchase,1.0,0 -114324869,"Gun Monkeys",play,1.0,0 -114324869,"Team Fortress 2",purchase,1.0,0 -114324869,"Team Fortress 2",play,0.4,0 -114324869,"Loadout",purchase,1.0,0 -114324869,"Loadout",play,0.4,0 -114324869,"AirMech",purchase,1.0,0 -114324869,"Altitude",purchase,1.0,0 -114324869,"Anomaly Warzone Earth",purchase,1.0,0 -114324869,"APB Reloaded",purchase,1.0,0 -114324869,"Ascend Hand of Kul",purchase,1.0,0 -114324869,"Copa Petrobras de Marcas",purchase,1.0,0 -114324869,"DCS World",purchase,1.0,0 -114324869,"Dizzel",purchase,1.0,0 -114324869,"DRAKERZ-Confrontation",purchase,1.0,0 -114324869,"Gear Up",purchase,1.0,0 -114324869,"Grimm",purchase,1.0,0 -114324869,"GTR Evolution",purchase,1.0,0 -114324869,"GunZ 2 The Second Duel",purchase,1.0,0 -114324869,"Happy Wars",purchase,1.0,0 -114324869,"Heroes & Generals",purchase,1.0,0 -114324869,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -114324869,"Jet Gunner",purchase,1.0,0 -114324869,"NEOTOKYO",purchase,1.0,0 -114324869,"Nosgoth",purchase,1.0,0 -114324869,"Path of Exile",purchase,1.0,0 -114324869,"PlanetSide 2",purchase,1.0,0 -114324869,"RACE 07",purchase,1.0,0 -114324869,"RaceRoom Racing Experience ",purchase,1.0,0 -114324869,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -114324869,"Robocraft",purchase,1.0,0 -114324869,"The Four Kings Casino and Slots",purchase,1.0,0 -114324869,"Tom Clancy's Ghost Recon Phantoms - EU Assault Starter Pack",purchase,1.0,0 -114324869,"Tom Clancy's Ghost Recon Phantoms - EU Recon Starter Pack",purchase,1.0,0 -114324869,"Tom Clancy's Ghost Recon Phantoms - EU Support Starter Pack",purchase,1.0,0 -114324869,"Toribash",purchase,1.0,0 -114324869,"Warframe",purchase,1.0,0 -114324869,"War Thunder",purchase,1.0,0 -114324869,"You Have to Win the Game",purchase,1.0,0 -201987165,"Toribash",purchase,1.0,0 -201987165,"Toribash",play,0.6,0 -201987165,"APB Reloaded",purchase,1.0,0 -201987165,"Double Action Boogaloo",purchase,1.0,0 -172452539,"Dota 2",purchase,1.0,0 -172452539,"Dota 2",play,1.3,0 -201991644,"Unturned",purchase,1.0,0 -201991644,"Unturned",play,2.0,0 -169953184,"Dota 2",purchase,1.0,0 -169953184,"Dota 2",play,18.0,0 -16574348,"Guns of Icarus Online",purchase,1.0,0 -16574348,"Guns of Icarus Online",play,11.9,0 -16574348,"Counter-Strike Source",purchase,1.0,0 -16574348,"Counter-Strike Source",play,7.3,0 -16574348,"Half-Life 2",purchase,1.0,0 -16574348,"Half-Life 2",play,2.8,0 -16574348,"Nidhogg",purchase,1.0,0 -16574348,"Nidhogg",play,2.3,0 -16574348,"Team Fortress 2",purchase,1.0,0 -16574348,"Team Fortress 2",play,1.1,0 -16574348,"Half-Life 2 Deathmatch",purchase,1.0,0 -16574348,"Half-Life 2 Deathmatch",play,0.2,0 -16574348,"Half-Life 2 Lost Coast",purchase,1.0,0 -231958063,"Unturned",purchase,1.0,0 -234940889,"Unturned",purchase,1.0,0 -183804269,"Dota 2",purchase,1.0,0 -183804269,"Dota 2",play,144.0,0 -235264279,"Lambda Wars Beta",purchase,1.0,0 -235264279,"Robocraft",purchase,1.0,0 -235264279,"Unturned",purchase,1.0,0 -252352661,"Counter-Strike Global Offensive",purchase,1.0,0 -252352661,"Counter-Strike Global Offensive",play,63.0,0 -252352661,"Counter-Strike Nexon Zombies",purchase,1.0,0 -252352661,"Counter-Strike Nexon Zombies",play,49.0,0 -252352661,"EasyAntiCheat eSports",purchase,1.0,0 -252352661,"EasyAntiCheat eSports",play,16.7,0 -252352661,"Clicker Heroes",purchase,1.0,0 -252352661,"Clicker Heroes",play,14.6,0 -252352661,"Risen",purchase,1.0,0 -252352661,"Risen",play,6.6,0 -252352661,"Warframe",purchase,1.0,0 -252352661,"Warframe",play,6.3,0 -252352661,"Neverwinter",purchase,1.0,0 -252352661,"Neverwinter",play,4.8,0 -252352661,"Team Fortress 2",purchase,1.0,0 -252352661,"Team Fortress 2",play,3.2,0 -252352661,"CastleMiner Z",purchase,1.0,0 -252352661,"CastleMiner Z",play,3.0,0 -252352661,"The Elder Scrolls V Skyrim",purchase,1.0,0 -252352661,"The Elder Scrolls V Skyrim",play,2.8,0 -252352661,"SMITE",purchase,1.0,0 -252352661,"SMITE",play,2.8,0 -252352661,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -252352661,"Resident Evil Revelations 2 / Biohazard Revelations 2",play,1.6,0 -252352661,"Cry of Fear",purchase,1.0,0 -252352661,"Cry of Fear",play,1.4,0 -252352661,"sZone-Online",purchase,1.0,0 -252352661,"sZone-Online",play,1.0,0 -252352661,"Dota 2",purchase,1.0,0 -252352661,"Dota 2",play,0.9,0 -252352661,"TERA",purchase,1.0,0 -252352661,"TERA",play,0.8,0 -252352661,"Dirty Bomb",purchase,1.0,0 -252352661,"Dirty Bomb",play,0.7,0 -252352661,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -252352661,"Dark Messiah of Might & Magic Single Player",play,0.6,0 -252352661,"Magic Duels",purchase,1.0,0 -252352661,"Magic Duels",play,0.5,0 -252352661,"Deadfall Adventures",purchase,1.0,0 -252352661,"Deadfall Adventures",play,0.5,0 -252352661,"Unturned",purchase,1.0,0 -252352661,"Unturned",play,0.5,0 -252352661,"Counter-Strike Source",purchase,1.0,0 -252352661,"Counter-Strike Source",play,0.2,0 -252352661,"Divine Divinity",purchase,1.0,0 -252352661,"Assassin's Creed IV Black Flag",purchase,1.0,0 -252352661,"Counter-Strike",purchase,1.0,0 -252352661,"Counter-Strike Condition Zero",purchase,1.0,0 -252352661,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -252352661,"Counter-Strike Nexon Zombies - Starter Pack",purchase,1.0,0 -252352661,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -252352661,"Gothic",purchase,1.0,0 -252352661,"Gothic 3",purchase,1.0,0 -252352661,"Gothic II Gold Edition",purchase,1.0,0 -252352661,"Metro Last Light",purchase,1.0,0 -252352661,"Oddworld Abe's Oddysee",purchase,1.0,0 -252352661,"Overlord",purchase,1.0,0 -252352661,"Risen 2 - Dark Waters",purchase,1.0,0 -252352661,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -252352661,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -252352661,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -252352661,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -252352661,"The Witcher Enhanced Edition",purchase,1.0,0 -252352661,"ZombieRun",purchase,1.0,0 -83310356,"Duke Nukem Forever ",purchase,1.0,0 -119239620,"Total War ROME II - Emperor Edition",purchase,1.0,0 -119239620,"Total War ROME II - Emperor Edition",play,248.0,0 -119239620,"Universe Sandbox",purchase,1.0,0 -119239620,"Universe Sandbox",play,138.0,0 -119239620,"Mount & Blade Warband",purchase,1.0,0 -119239620,"Mount & Blade Warband",play,107.0,0 -119239620,"Grand Theft Auto V",purchase,1.0,0 -119239620,"Grand Theft Auto V",play,90.0,0 -119239620,"Empire Total War",purchase,1.0,0 -119239620,"Empire Total War",play,82.0,0 -119239620,"Medieval II Total War",purchase,1.0,0 -119239620,"Medieval II Total War",play,80.0,0 -119239620,"Prison Architect",purchase,1.0,0 -119239620,"Prison Architect",play,48.0,0 -119239620,"Fallout New Vegas",purchase,1.0,0 -119239620,"Fallout New Vegas",play,45.0,0 -119239620,"Medieval II Total War Kingdoms",purchase,1.0,0 -119239620,"Medieval II Total War Kingdoms",play,42.0,0 -119239620,"Arma 3",purchase,1.0,0 -119239620,"Arma 3",play,35.0,0 -119239620,"Kerbal Space Program",purchase,1.0,0 -119239620,"Kerbal Space Program",play,31.0,0 -119239620,"Total War ATTILA",purchase,1.0,0 -119239620,"Total War ATTILA",play,31.0,0 -119239620,"Game Dev Tycoon",purchase,1.0,0 -119239620,"Game Dev Tycoon",play,30.0,0 -119239620,"Sid Meier's Civilization V",purchase,1.0,0 -119239620,"Sid Meier's Civilization V",play,30.0,0 -119239620,"Rust",purchase,1.0,0 -119239620,"Rust",play,25.0,0 -119239620,"Garry's Mod",purchase,1.0,0 -119239620,"Garry's Mod",play,24.0,0 -119239620,"Chivalry Medieval Warfare",purchase,1.0,0 -119239620,"Chivalry Medieval Warfare",play,19.8,0 -119239620,"PAYDAY 2",purchase,1.0,0 -119239620,"PAYDAY 2",play,19.6,0 -119239620,"Software Inc.",purchase,1.0,0 -119239620,"Software Inc.",play,17.5,0 -119239620,"Tropico 3 Absolute Power",purchase,1.0,0 -119239620,"Tropico 3 Absolute Power",play,17.5,0 -119239620,"Ryse Son of Rome",purchase,1.0,0 -119239620,"Ryse Son of Rome",play,13.4,0 -119239620,"Democracy 3",purchase,1.0,0 -119239620,"Democracy 3",play,11.7,0 -119239620,"Mount & Blade",purchase,1.0,0 -119239620,"Mount & Blade",play,11.2,0 -119239620,"Rome Total War",purchase,1.0,0 -119239620,"Rome Total War",play,11.2,0 -119239620,"Total War SHOGUN 2",purchase,1.0,0 -119239620,"Total War SHOGUN 2",play,11.0,0 -119239620,"Europa Universalis IV",purchase,1.0,0 -119239620,"Europa Universalis IV",play,9.0,0 -119239620,"POSTAL 2",purchase,1.0,0 -119239620,"POSTAL 2",play,8.8,0 -119239620,"BeamNG.drive",purchase,1.0,0 -119239620,"BeamNG.drive",play,7.5,0 -119239620,"R.U.S.E",purchase,1.0,0 -119239620,"R.U.S.E",play,7.0,0 -119239620,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -119239620,"Fallout 3 - Game of the Year Edition",play,6.1,0 -119239620,"Goat Simulator",purchase,1.0,0 -119239620,"Goat Simulator",play,5.9,0 -119239620,"DayZ",purchase,1.0,0 -119239620,"DayZ",play,5.2,0 -119239620,"Enforcer Police Crime Action",purchase,1.0,0 -119239620,"Enforcer Police Crime Action",play,5.1,0 -119239620,"Wargame Red Dragon",purchase,1.0,0 -119239620,"Wargame Red Dragon",play,4.0,0 -119239620,"Medieval Engineers",purchase,1.0,0 -119239620,"Medieval Engineers",play,3.7,0 -119239620,"Euro Truck Simulator",purchase,1.0,0 -119239620,"Euro Truck Simulator",play,3.6,0 -119239620,"Star Wars - Battlefront II",purchase,1.0,0 -119239620,"Star Wars - Battlefront II",play,3.4,0 -119239620,"RPG Maker VX Ace",purchase,1.0,0 -119239620,"RPG Maker VX Ace",play,3.4,0 -119239620,"Grand Theft Auto San Andreas",purchase,1.0,0 -119239620,"Grand Theft Auto San Andreas",play,3.2,0 -119239620,"Surgeon Simulator",purchase,1.0,0 -119239620,"Surgeon Simulator",play,2.9,0 -119239620,"Cry of Fear",purchase,1.0,0 -119239620,"Cry of Fear",play,2.3,0 -119239620,"Heroes & Generals",purchase,1.0,0 -119239620,"Heroes & Generals",play,2.1,0 -119239620,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -119239620,"Microsoft Flight Simulator X Steam Edition",play,2.1,0 -119239620,"Velvet Sundown",purchase,1.0,0 -119239620,"Velvet Sundown",play,2.0,0 -119239620,"Blacklight Retribution",purchase,1.0,0 -119239620,"Blacklight Retribution",play,1.9,0 -119239620,"Arma Cold War Assault",purchase,1.0,0 -119239620,"Arma Cold War Assault",play,1.5,0 -119239620,"Grand Theft Auto Vice City",purchase,1.0,0 -119239620,"Grand Theft Auto Vice City",play,1.4,0 -119239620,"Omerta - City of Gangsters",purchase,1.0,0 -119239620,"Omerta - City of Gangsters",play,1.0,0 -119239620,"Hitman Blood Money",purchase,1.0,0 -119239620,"Hitman Blood Money",play,0.8,0 -119239620,"Afterfall InSanity - Dirty Arena Edition",purchase,1.0,0 -119239620,"Afterfall InSanity - Dirty Arena Edition",play,0.8,0 -119239620,"Emily is Away",purchase,1.0,0 -119239620,"Emily is Away",play,0.6,0 -119239620,"Urban Trial Freestyle",purchase,1.0,0 -119239620,"Urban Trial Freestyle",play,0.5,0 -119239620,"Airline Tycoon 2",purchase,1.0,0 -119239620,"Airline Tycoon 2",play,0.4,0 -119239620,"Dino D-Day",purchase,1.0,0 -119239620,"Dino D-Day",play,0.1,0 -119239620,"Imperium Romanum Gold Edition",purchase,1.0,0 -119239620,"Unturned",purchase,1.0,0 -119239620,"Arma 3 Zeus",purchase,1.0,0 -119239620,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -119239620,"Grand Theft Auto San Andreas",purchase,1.0,0 -119239620,"Grand Theft Auto Vice City",purchase,1.0,0 -119239620,"Kung Fury",purchase,1.0,0 -119239620,"Mirror's Edge",purchase,1.0,0 -119239620,"Mount & Blade Warband - Viking Conquest Reforged Edition",purchase,1.0,0 -119239620,"NASCAR '15 Paint Pack 1",purchase,1.0,0 -119239620,"Omerta - City of Gangsters The Bulgarian Colossus",purchase,1.0,0 -119239620,"Omerta - Damsel in Distress",purchase,1.0,0 -119239620,"Omerta - The Con Artist",purchase,1.0,0 -119239620,"Omerta - The Japanese Incentive",purchase,1.0,0 -119239620,"Patch testing for Chivalry",purchase,1.0,0 -119239620,"R.U.S.E.",purchase,1.0,0 -119239620,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -119239620,"Tropico",purchase,1.0,0 -119239620,"Tropico 2 Pirate Cove",purchase,1.0,0 -119239620,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -119239620,"Warframe",purchase,1.0,0 -294931250,"ARK Survival Evolved",purchase,1.0,0 -294931250,"ARK Survival Evolved",play,1.9,0 -294931250,"Team Fortress 2",purchase,1.0,0 -294931250,"Team Fortress 2",play,1.5,0 -308378702,"Dota 2",purchase,1.0,0 -308378702,"Dota 2",play,9.8,0 -189377245,"Dota 2",purchase,1.0,0 -189377245,"Dota 2",play,1.7,0 -168985094,"Dota 2",purchase,1.0,0 -168985094,"Dota 2",play,40.0,0 -297536213,"Dota 2",purchase,1.0,0 -297536213,"Dota 2",play,0.8,0 -97474440,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -97474440,"Call of Duty Modern Warfare 2 - Multiplayer",play,65.0,0 -97474440,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -97474440,"Call of Duty Black Ops II - Multiplayer",play,4.5,0 -97474440,"Fistful of Frags",purchase,1.0,0 -97474440,"Fistful of Frags",play,1.4,0 -97474440,"Call of Duty Modern Warfare 2",purchase,1.0,0 -97474440,"Call of Duty Modern Warfare 2",play,0.2,0 -97474440,"Call of Duty Black Ops II",purchase,1.0,0 -97474440,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -97474440,"Septerra Core",purchase,1.0,0 -97474440,"The I of the Dragon",purchase,1.0,0 -97474440,"World War III Black Gold",purchase,1.0,0 -97474440,"X-Blades",purchase,1.0,0 -202675529,"Dragon's Prophet (EU)",purchase,1.0,0 -202675529,"Dragon's Prophet (EU)",play,0.5,0 -276234796,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -276234796,"A.V.A - Alliance of Valiant Arms",play,7.5,0 -276234796,"America's Army Proving Grounds",purchase,1.0,0 -276234796,"America's Army Proving Grounds",play,3.2,0 -276234796,"PlanetSide 2",purchase,1.0,0 -276234796,"PlanetSide 2",play,1.0,0 -276234796,"Counter-Strike Nexon Zombies",purchase,1.0,0 -276234796,"Counter-Strike Nexon Zombies",play,0.8,0 -208664547,"Dota 2",purchase,1.0,0 -208664547,"Dota 2",play,1.7,0 -299797806,"Dota 2",purchase,1.0,0 -299797806,"Dota 2",play,96.0,0 -45970552,"Alien Swarm",purchase,1.0,0 -45970552,"Alien Swarm",play,1.0,0 -45970552,"Metro 2033",purchase,1.0,0 -45970552,"Metro 2033",play,0.3,0 -45970552,"Team Fortress 2",purchase,1.0,0 -45970552,"Team Fortress 2",play,0.1,0 -45970552,"Dead Island Epidemic",purchase,1.0,0 -270303324,"Dota 2",purchase,1.0,0 -270303324,"Dota 2",play,2.8,0 -71498571,"Fallen Earth",purchase,1.0,0 -71498571,"Fallen Earth",play,1142.0,0 -71498571,"Team Fortress 2",purchase,1.0,0 -71498571,"Team Fortress 2",play,196.0,0 -71498571,"Dungeons & Dragons Online",purchase,1.0,0 -71498571,"Dungeons & Dragons Online",play,35.0,0 -71498571,"Global Agenda",purchase,1.0,0 -71498571,"Global Agenda",play,27.0,0 -71498571,"The Lord of the Rings Online",purchase,1.0,0 -71498571,"The Lord of the Rings Online",play,15.5,0 -71498571,"Champions Online",purchase,1.0,0 -71498571,"Champions Online",play,2.8,0 -71498571,"Path of Exile",purchase,1.0,0 -71498571,"Path of Exile",play,1.5,0 -71498571,"CrimeCraft GangWars",purchase,1.0,0 -71498571,"CrimeCraft GangWars",play,0.2,0 -71498571,"Dragon's Prophet (EU)",purchase,1.0,0 -178605069,"Neverwinter",purchase,1.0,0 -178605069,"Neverwinter",play,32.0,0 -178605069,"Path of Exile",purchase,1.0,0 -178605069,"Path of Exile",play,30.0,0 -178605069,"DC Universe Online",purchase,1.0,0 -178605069,"DC Universe Online",play,12.9,0 -178605069,"Combat Arms",purchase,1.0,0 -178605069,"Combat Arms",play,4.6,0 -178605069,"HAWKEN",purchase,1.0,0 -178605069,"HAWKEN",play,4.5,0 -178605069,"City of Steam Arkadia",purchase,1.0,0 -178605069,"City of Steam Arkadia",play,3.6,0 -178605069,"Unturned",purchase,1.0,0 -178605069,"Unturned",play,2.5,0 -178605069,"Blacklight Retribution",purchase,1.0,0 -178605069,"Blacklight Retribution",play,2.0,0 -178605069,"Firefall",purchase,1.0,0 -178605069,"Firefall",play,1.9,0 -178605069,"theHunter",purchase,1.0,0 -178605069,"theHunter",play,1.0,0 -178605069,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -178605069,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.7,0 -178605069,"Heroes & Generals",purchase,1.0,0 -178605069,"Heroes & Generals",play,0.4,0 -178605069,"War Thunder",purchase,1.0,0 -178605069,"War Thunder",play,0.2,0 -178605069,"Quake Live",purchase,1.0,0 -178605069,"Quake Live",play,0.2,0 -178605069,"GunZ 2 The Second Duel",purchase,1.0,0 -309812026,"Counter-Strike Nexon Zombies",purchase,1.0,0 -309812026,"Robocraft",purchase,1.0,0 -185613296,"Dota 2",purchase,1.0,0 -185613296,"Dota 2",play,0.1,0 -90571509,"Killing Floor",purchase,1.0,0 -90571509,"Killing Floor",play,98.0,0 -90571509,"Empire Total War",purchase,1.0,0 -90571509,"Empire Total War",play,2.8,0 -90571509,"Stronghold 3",purchase,1.0,0 -90571509,"Stronghold 3",play,0.5,0 -90571509,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -90571509,"Stronghold HD",purchase,1.0,0 -215491946,"Dota 2",purchase,1.0,0 -215491946,"Dota 2",play,24.0,0 -37565781,"Half-Life 2 Lost Coast",purchase,1.0,0 -37565781,"Half-Life 2 Lost Coast",play,1.0,0 -37565781,"Half-Life 2 Deathmatch",purchase,1.0,0 -37565781,"Half-Life 2 Deathmatch",play,0.4,0 -81591317,"Counter-Strike Global Offensive",purchase,1.0,0 -81591317,"Counter-Strike Global Offensive",play,1021.0,0 -81591317,"Arma 3",purchase,1.0,0 -81591317,"Arma 3",play,100.0,0 -81591317,"Dota 2",purchase,1.0,0 -81591317,"Dota 2",play,86.0,0 -81591317,"DayZ",purchase,1.0,0 -81591317,"DayZ",play,41.0,0 -81591317,"Rust",purchase,1.0,0 -81591317,"Rust",play,40.0,0 -81591317,"Borderlands 2 RU",purchase,1.0,0 -81591317,"Borderlands 2 RU",play,28.0,0 -81591317,"PAYDAY 2",purchase,1.0,0 -81591317,"PAYDAY 2",play,27.0,0 -81591317,"Hitman Absolution",purchase,1.0,0 -81591317,"Hitman Absolution",play,26.0,0 -81591317,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -81591317,"METAL GEAR SOLID V THE PHANTOM PAIN",play,24.0,0 -81591317,"Grand Theft Auto V",purchase,1.0,0 -81591317,"Grand Theft Auto V",play,23.0,0 -81591317,"Command and Conquer Red Alert 3",purchase,1.0,0 -81591317,"Command and Conquer Red Alert 3",play,22.0,0 -81591317,"Portal 2",purchase,1.0,0 -81591317,"Portal 2",play,17.6,0 -81591317,"Sid Meier's Civilization V",purchase,1.0,0 -81591317,"Sid Meier's Civilization V",play,16.0,0 -81591317,"Left 4 Dead 2",purchase,1.0,0 -81591317,"Left 4 Dead 2",play,13.2,0 -81591317,"Far Cry 3",purchase,1.0,0 -81591317,"Far Cry 3",play,11.8,0 -81591317,"Space Engineers",purchase,1.0,0 -81591317,"Space Engineers",play,11.7,0 -81591317,"Watch_Dogs",purchase,1.0,0 -81591317,"Watch_Dogs",play,11.3,0 -81591317,"Dying Light",purchase,1.0,0 -81591317,"Dying Light",play,10.8,0 -81591317,"Total War SHOGUN 2",purchase,1.0,0 -81591317,"Total War SHOGUN 2",play,10.8,0 -81591317,"Warframe",purchase,1.0,0 -81591317,"Warframe",play,10.6,0 -81591317,"Team Fortress 2",purchase,1.0,0 -81591317,"Team Fortress 2",play,9.2,0 -81591317,"Elite Dangerous",purchase,1.0,0 -81591317,"Elite Dangerous",play,8.4,0 -81591317,"The Crew",purchase,1.0,0 -81591317,"The Crew",play,8.0,0 -81591317,"Planetary Annihilation",purchase,1.0,0 -81591317,"Planetary Annihilation",play,8.0,0 -81591317,"Battlefield Bad Company 2",purchase,1.0,0 -81591317,"Battlefield Bad Company 2",play,7.9,0 -81591317,"Trine 2",purchase,1.0,0 -81591317,"Trine 2",play,7.5,0 -81591317,"Killing Floor 2",purchase,1.0,0 -81591317,"Killing Floor 2",play,6.7,0 -81591317,"Saints Row The Third",purchase,1.0,0 -81591317,"Saints Row The Third",play,5.8,0 -81591317,"Rocket League",purchase,1.0,0 -81591317,"Rocket League",play,5.6,0 -81591317,"XCOM Enemy Unknown",purchase,1.0,0 -81591317,"XCOM Enemy Unknown",play,4.5,0 -81591317,"Euro Truck Simulator 2",purchase,1.0,0 -81591317,"Euro Truck Simulator 2",play,4.4,0 -81591317,"Natural Selection 2",purchase,1.0,0 -81591317,"Natural Selection 2",play,3.7,0 -81591317,"Sniper Elite V2",purchase,1.0,0 -81591317,"Sniper Elite V2",play,3.0,0 -81591317,"Champions Online",purchase,1.0,0 -81591317,"Champions Online",play,2.7,0 -81591317,"Serious Sam HD The Second Encounter",purchase,1.0,0 -81591317,"Serious Sam HD The Second Encounter",play,2.5,0 -81591317,"Insurgency",purchase,1.0,0 -81591317,"Insurgency",play,2.3,0 -81591317,"Wargame Red Dragon",purchase,1.0,0 -81591317,"Wargame Red Dragon",play,2.1,0 -81591317,"Magicka",purchase,1.0,0 -81591317,"Magicka",play,2.0,0 -81591317,"Estranged Act I",purchase,1.0,0 -81591317,"Estranged Act I",play,1.9,0 -81591317,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -81591317,"Just Cause 2 Multiplayer Mod",play,1.7,0 -81591317,"Stronghold Kingdoms",purchase,1.0,0 -81591317,"Stronghold Kingdoms",play,1.1,0 -81591317,"How to Survive",purchase,1.0,0 -81591317,"How to Survive",play,1.1,0 -81591317,"Sanctum 2",purchase,1.0,0 -81591317,"Sanctum 2",play,1.0,0 -81591317,"Defiance",purchase,1.0,0 -81591317,"Defiance",play,0.9,0 -81591317,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -81591317,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.6,0 -81591317,"Unturned",purchase,1.0,0 -81591317,"Unturned",play,0.6,0 -81591317,"Stealth Inc 2",purchase,1.0,0 -81591317,"Stealth Inc 2",play,0.5,0 -81591317,"Alien Swarm",purchase,1.0,0 -81591317,"Alien Swarm",play,0.4,0 -81591317,"Eets Munchies",purchase,1.0,0 -81591317,"Eets Munchies",play,0.4,0 -81591317,"Quake Live",purchase,1.0,0 -81591317,"Quake Live",play,0.1,0 -81591317,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -81591317,"Warhammer 40,000 Dawn of War II Retribution",play,0.1,0 -81591317,"Pid ",purchase,1.0,0 -81591317,"Amnesia The Dark Descent",purchase,1.0,0 -81591317,"Arma 3 Zeus",purchase,1.0,0 -81591317,"Borderlands 2",purchase,1.0,0 -81591317,"Clicker Heroes",purchase,1.0,0 -81591317,"Counter-Strike Nexon Zombies",purchase,1.0,0 -81591317,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -81591317,"Heroes & Generals",purchase,1.0,0 -81591317,"Just Cause 2",purchase,1.0,0 -81591317,"Portal Stories Mel",purchase,1.0,0 -81591317,"POSTAL 2",purchase,1.0,0 -81591317,"Risen 2 - Dark Waters",purchase,1.0,0 -81591317,"Sacred 2 Gold",purchase,1.0,0 -81591317,"Saints Row 2",purchase,1.0,0 -81591317,"The Ship",purchase,1.0,0 -81591317,"The Ship Single Player",purchase,1.0,0 -81591317,"The Ship Tutorial",purchase,1.0,0 -81591317,"World of Guns Gun Disassembly",purchase,1.0,0 -9209946,"Counter-Strike",purchase,1.0,0 -9209946,"Counter-Strike",play,41.0,0 -9209946,"Counter-Strike Source",purchase,1.0,0 -9209946,"Counter-Strike Source",play,3.5,0 -9209946,"Half-Life 2 Episode One",purchase,1.0,0 -9209946,"Half-Life 2 Episode One",play,0.7,0 -9209946,"Half-Life Blue Shift",purchase,1.0,0 -9209946,"Half-Life Blue Shift",play,0.5,0 -9209946,"Day of Defeat",purchase,1.0,0 -9209946,"Day of Defeat",play,0.4,0 -9209946,"Counter-Strike Condition Zero",purchase,1.0,0 -9209946,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -9209946,"Deathmatch Classic",purchase,1.0,0 -9209946,"Half-Life",purchase,1.0,0 -9209946,"Half-Life 2",purchase,1.0,0 -9209946,"Half-Life 2 Deathmatch",purchase,1.0,0 -9209946,"Half-Life 2 Episode Two",purchase,1.0,0 -9209946,"Half-Life 2 Lost Coast",purchase,1.0,0 -9209946,"Half-Life Opposing Force",purchase,1.0,0 -9209946,"Portal",purchase,1.0,0 -9209946,"Ricochet",purchase,1.0,0 -9209946,"Team Fortress Classic",purchase,1.0,0 -148362155,"Dota 2",purchase,1.0,0 -148362155,"Dota 2",play,1287.0,0 -148362155,"Counter-Strike Global Offensive",purchase,1.0,0 -148362155,"Counter-Strike Global Offensive",play,432.0,0 -148362155,"Counter-Strike",purchase,1.0,0 -148362155,"Counter-Strike",play,236.0,0 -148362155,"Rust",purchase,1.0,0 -148362155,"Rust",play,203.0,0 -148362155,"Trove",purchase,1.0,0 -148362155,"Trove",play,140.0,0 -148362155,"PAYDAY 2",purchase,1.0,0 -148362155,"PAYDAY 2",play,123.0,0 -148362155,"Euro Truck Simulator 2",purchase,1.0,0 -148362155,"Euro Truck Simulator 2",play,75.0,0 -148362155,"Counter-Strike Source",purchase,1.0,0 -148362155,"Counter-Strike Source",play,71.0,0 -148362155,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -148362155,"Batman Arkham Asylum GOTY Edition",play,69.0,0 -148362155,"Sniper Elite V2",purchase,1.0,0 -148362155,"Sniper Elite V2",play,62.0,0 -148362155,"Grand Theft Auto IV",purchase,1.0,0 -148362155,"Grand Theft Auto IV",play,58.0,0 -148362155,"Left 4 Dead 2",purchase,1.0,0 -148362155,"Left 4 Dead 2",play,52.0,0 -148362155,"Dead Island Riptide",purchase,1.0,0 -148362155,"Dead Island Riptide",play,47.0,0 -148362155,"GRID 2",purchase,1.0,0 -148362155,"GRID 2",play,45.0,0 -148362155,"Sniper Elite Nazi Zombie Army",purchase,1.0,0 -148362155,"Sniper Elite Nazi Zombie Army",play,32.0,0 -148362155,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -148362155,"Kane & Lynch 2 Dog Days",play,32.0,0 -148362155,"Spintires",purchase,1.0,0 -148362155,"Spintires",play,31.0,0 -148362155,"PAYDAY The Heist",purchase,1.0,0 -148362155,"PAYDAY The Heist",play,30.0,0 -148362155,"DiRT 3",purchase,1.0,0 -148362155,"DiRT 3",play,30.0,0 -148362155,"Sniper Elite Nazi Zombie Army 2",purchase,1.0,0 -148362155,"Sniper Elite Nazi Zombie Army 2",play,29.0,0 -148362155,"MX vs. ATV Reflex",purchase,1.0,0 -148362155,"MX vs. ATV Reflex",play,29.0,0 -148362155,"Dead Island",purchase,1.0,0 -148362155,"Dead Island",play,28.0,0 -148362155,"Hotline Miami",purchase,1.0,0 -148362155,"Hotline Miami",play,28.0,0 -148362155,"Call of Duty Modern Warfare 2",purchase,1.0,0 -148362155,"Call of Duty Modern Warfare 2",play,27.0,0 -148362155,"Hitman Absolution",purchase,1.0,0 -148362155,"Hitman Absolution",play,27.0,0 -148362155,"Left 4 Dead",purchase,1.0,0 -148362155,"Left 4 Dead",play,27.0,0 -148362155,"Insurgency",purchase,1.0,0 -148362155,"Insurgency",play,25.0,0 -148362155,"Hitman Sniper Challenge",purchase,1.0,0 -148362155,"Hitman Sniper Challenge",play,24.0,0 -148362155,"Trine",purchase,1.0,0 -148362155,"Trine",play,24.0,0 -148362155,"Spec Ops The Line",purchase,1.0,0 -148362155,"Spec Ops The Line",play,19.1,0 -148362155,"Alan Wake",purchase,1.0,0 -148362155,"Alan Wake",play,18.9,0 -148362155,"The Ball",purchase,1.0,0 -148362155,"The Ball",play,17.9,0 -148362155,"Need for Speed Hot Pursuit",purchase,1.0,0 -148362155,"Need for Speed Hot Pursuit",play,15.8,0 -148362155,"War Thunder",purchase,1.0,0 -148362155,"War Thunder",play,15.5,0 -148362155,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -148362155,"Call of Duty Modern Warfare 2 - Multiplayer",play,15.1,0 -148362155,"Takedown Red Sabre",purchase,1.0,0 -148362155,"Takedown Red Sabre",play,14.1,0 -148362155,"Sniper Ghost Warrior",purchase,1.0,0 -148362155,"Sniper Ghost Warrior",play,13.8,0 -148362155,"Grand Theft Auto San Andreas",purchase,1.0,0 -148362155,"Grand Theft Auto San Andreas",play,13.8,0 -148362155,"Test Drive Unlimited 2",purchase,1.0,0 -148362155,"Test Drive Unlimited 2",play,13.2,0 -148362155,"Grand Theft Auto San Andreas",purchase,1.0,0 -148362155,"Grand Theft Auto San Andreas",play,12.5,0 -148362155,"Max Payne 3",purchase,1.0,0 -148362155,"Max Payne 3",play,6.0,0 -148362155,"Garry's Mod",purchase,1.0,0 -148362155,"Garry's Mod",play,4.3,0 -148362155,"Terraria",purchase,1.0,0 -148362155,"Terraria",play,4.0,0 -148362155,"Robocraft",purchase,1.0,0 -148362155,"Robocraft",play,4.0,0 -148362155,"Crash Time II",purchase,1.0,0 -148362155,"Crash Time II",play,3.8,0 -148362155,"Besiege",purchase,1.0,0 -148362155,"Besiege",play,3.7,0 -148362155,"Crysis 2 Maximum Edition",purchase,1.0,0 -148362155,"Crysis 2 Maximum Edition",play,3.6,0 -148362155,"Far Cry 3",purchase,1.0,0 -148362155,"Far Cry 3",play,3.5,0 -148362155,"Sniper Ghost Warrior 2",purchase,1.0,0 -148362155,"Sniper Ghost Warrior 2",play,3.0,0 -148362155,"Battlefield Bad Company 2",purchase,1.0,0 -148362155,"Battlefield Bad Company 2",play,2.9,0 -148362155,"Euro Truck Simulator",purchase,1.0,0 -148362155,"Euro Truck Simulator",play,2.2,0 -148362155,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -148362155,"Medal of Honor(TM) Multiplayer",play,2.2,0 -148362155,"DiggerOnline",purchase,1.0,0 -148362155,"DiggerOnline",play,1.7,0 -148362155,"Free to Play",purchase,1.0,0 -148362155,"Free to Play",play,1.7,0 -148362155,"Saints Row IV",purchase,1.0,0 -148362155,"Saints Row IV",play,1.6,0 -148362155,"Driver San Francisco",purchase,1.0,0 -148362155,"Driver San Francisco",play,1.5,0 -148362155,"Unturned",purchase,1.0,0 -148362155,"Unturned",play,1.4,0 -148362155,"EDGE",purchase,1.0,0 -148362155,"EDGE",play,1.3,0 -148362155,"Tiny Troopers",purchase,1.0,0 -148362155,"Tiny Troopers",play,1.3,0 -148362155,"Papers, Please",purchase,1.0,0 -148362155,"Papers, Please",play,1.1,0 -148362155,"Call of Duty Black Ops",purchase,1.0,0 -148362155,"Call of Duty Black Ops",play,1.1,0 -148362155,"Call of Duty Ghosts",purchase,1.0,0 -148362155,"Call of Duty Ghosts",play,1.1,0 -148362155,"Metro Last Light",purchase,1.0,0 -148362155,"Metro Last Light",play,1.1,0 -148362155,"GRID",purchase,1.0,0 -148362155,"GRID",play,1.0,0 -148362155,"Alan Wake's American Nightmare",purchase,1.0,0 -148362155,"Alan Wake's American Nightmare",play,1.0,0 -148362155,"L.A. Noire",purchase,1.0,0 -148362155,"L.A. Noire",play,0.9,0 -148362155,"RACE 07",purchase,1.0,0 -148362155,"RACE 07",play,0.9,0 -148362155,"Outlast",purchase,1.0,0 -148362155,"Outlast",play,0.9,0 -148362155,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -148362155,"Call of Duty Black Ops - Multiplayer",play,0.8,0 -148362155,"Metro 2033",purchase,1.0,0 -148362155,"Metro 2033",play,0.8,0 -148362155,"Arma 2",purchase,1.0,0 -148362155,"Arma 2",play,0.7,0 -148362155,"8BitMMO",purchase,1.0,0 -148362155,"8BitMMO",play,0.7,0 -148362155,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -148362155,"Call of Duty Ghosts - Multiplayer",play,0.7,0 -148362155,"FlatOut",purchase,1.0,0 -148362155,"FlatOut",play,0.7,0 -148362155,"Neverwinter",purchase,1.0,0 -148362155,"Neverwinter",play,0.7,0 -148362155,"Counter-Strike Nexon Zombies",purchase,1.0,0 -148362155,"Counter-Strike Nexon Zombies",play,0.7,0 -148362155,"South Park The Stick of Truth",purchase,1.0,0 -148362155,"South Park The Stick of Truth",play,0.6,0 -148362155,"Lucius",purchase,1.0,0 -148362155,"Lucius",play,0.6,0 -148362155,"Watch_Dogs",purchase,1.0,0 -148362155,"Watch_Dogs",play,0.6,0 -148362155,"Nail'd",purchase,1.0,0 -148362155,"Nail'd",play,0.5,0 -148362155,"DayZ",purchase,1.0,0 -148362155,"DayZ",play,0.5,0 -148362155,"Cat Goes Fishing",purchase,1.0,0 -148362155,"Cat Goes Fishing",play,0.5,0 -148362155,"Loadout",purchase,1.0,0 -148362155,"Loadout",play,0.5,0 -148362155,"Don't Starve Together Beta",purchase,1.0,0 -148362155,"Don't Starve Together Beta",play,0.4,0 -148362155,"Farming Simulator 2011",purchase,1.0,0 -148362155,"Farming Simulator 2011",play,0.4,0 -148362155,"World of Guns Gun Disassembly",purchase,1.0,0 -148362155,"World of Guns Gun Disassembly",play,0.4,0 -148362155,"theHunter",purchase,1.0,0 -148362155,"theHunter",play,0.3,0 -148362155,"Heroes & Generals",purchase,1.0,0 -148362155,"Heroes & Generals",play,0.3,0 -148362155,"Everlasting Summer",purchase,1.0,0 -148362155,"Everlasting Summer",play,0.3,0 -148362155,"Grimm",purchase,1.0,0 -148362155,"Grimm",play,0.3,0 -148362155,"Waves",purchase,1.0,0 -148362155,"Waves",play,0.2,0 -148362155,"Crysis Warhead",purchase,1.0,0 -148362155,"Crysis Warhead",play,0.2,0 -148362155,"Pid ",purchase,1.0,0 -148362155,"Pid ",play,0.2,0 -148362155,"How to Survive",purchase,1.0,0 -148362155,"How to Survive",play,0.2,0 -148362155,"Team Fortress 2",purchase,1.0,0 -148362155,"Team Fortress 2",play,0.1,0 -148362155,"Don't Starve",purchase,1.0,0 -148362155,"Don't Starve",play,0.1,0 -148362155,"Hitman Blood Money",purchase,1.0,0 -148362155,"Hitman Blood Money",play,0.1,0 -148362155,"BEEP",purchase,1.0,0 -148362155,"BEEP",play,0.1,0 -148362155,"Moonbase Alpha",purchase,1.0,0 -148362155,"Moonbase Alpha",play,0.1,0 -148362155,"WARMODE",purchase,1.0,0 -148362155,"Arma 2 DayZ Mod",purchase,1.0,0 -148362155,"Ampu-Tea",purchase,1.0,0 -148362155,"Sun Blast",purchase,1.0,0 -148362155,"Castle Crashers",purchase,1.0,0 -148362155,"Crysis Wars",purchase,1.0,0 -148362155,"Breath of Death VII ",purchase,1.0,0 -148362155,"Racer 8",purchase,1.0,0 -148362155,"Circuits",purchase,1.0,0 -148362155,"BLOCKADE 3D",purchase,1.0,0 -148362155,"Words for Evil",purchase,1.0,0 -148362155,"DETOUR",purchase,1.0,0 -148362155,"Happy Wars",purchase,1.0,0 -148362155,"Copa Petrobras de Marcas",purchase,1.0,0 -148362155,"Counter-Strike Condition Zero",purchase,1.0,0 -148362155,"the static speaks my name",purchase,1.0,0 -148362155,"Arma 2 Operation Arrowhead",purchase,1.0,0 -148362155,"Enclave",purchase,1.0,0 -148362155,"GT Power Expansion",purchase,1.0,0 -148362155,"Batman Arkham City GOTY",purchase,1.0,0 -148362155,"Medal of Honor(TM) Single Player",purchase,1.0,0 -148362155,"The Retro Expansion",purchase,1.0,0 -148362155,"STCC II",purchase,1.0,0 -148362155,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -148362155,"16bit Trader",purchase,1.0,0 -148362155,"Anomaly Warzone Earth",purchase,1.0,0 -148362155,"Arma 2 British Armed Forces",purchase,1.0,0 -148362155,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -148362155,"Arma 2 Private Military Company",purchase,1.0,0 -148362155,"Attrition Nuclear Domination",purchase,1.0,0 -148362155,"Bad Rats",purchase,1.0,0 -148362155,"Batla",purchase,1.0,0 -148362155,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -148362155,"Batman Arkham Origins - Initiation",purchase,1.0,0 -148362155,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -148362155,"Batman Arkham Origins",purchase,1.0,0 -148362155,"Beyond Gravity",purchase,1.0,0 -148362155,"Call of Tomsk-7",purchase,1.0,0 -148362155,"Camera Obscura",purchase,1.0,0 -148362155,"Commandos 2 Men of Courage",purchase,1.0,0 -148362155,"Corporate Lifestyle Simulator",purchase,1.0,0 -148362155,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -148362155,"Crysis",purchase,1.0,0 -148362155,"Cthulhu Saves the World ",purchase,1.0,0 -148362155,"Data Hacker Corruption",purchase,1.0,0 -148362155,"Data Hacker Initiation",purchase,1.0,0 -148362155,"DCS World",purchase,1.0,0 -148362155,"Dead Bits",purchase,1.0,0 -148362155,"Dead Island Epidemic",purchase,1.0,0 -148362155,"Deadly Profits",purchase,1.0,0 -148362155,"Defy Gravity",purchase,1.0,0 -148362155,"Despair",purchase,1.0,0 -148362155,"Devils Share",purchase,1.0,0 -148362155,"Dino D-Day",purchase,1.0,0 -148362155,"DiRT 3 Complete Edition",purchase,1.0,0 -148362155,"Don't Starve Reign of Giants",purchase,1.0,0 -148362155,"Dream Of Mirror Online",purchase,1.0,0 -148362155,"Earth 2150 The Moon Project",purchase,1.0,0 -148362155,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -148362155,"Gear Up",purchase,1.0,0 -148362155,"Gorky 17",purchase,1.0,0 -148362155,"Gotham City Impostors Free To Play",purchase,1.0,0 -148362155,"Gravilon",purchase,1.0,0 -148362155,"GRID 2 GTR Racing Pack",purchase,1.0,0 -148362155,"Gumboy Tournament",purchase,1.0,0 -148362155,"Hacker Evolution Duality",purchase,1.0,0 -148362155,"Hitman 2 Silent Assassin",purchase,1.0,0 -148362155,"Hitman Codename 47",purchase,1.0,0 -148362155,"Humanity Asset",purchase,1.0,0 -148362155,"Imperial Glory",purchase,1.0,0 -148362155,"Insecticide Part 1",purchase,1.0,0 -148362155,"Kairo",purchase,1.0,0 -148362155,"Kane & Lynch Dead Men",purchase,1.0,0 -148362155,"Killing Floor",purchase,1.0,0 -148362155,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -148362155,"Larva Mortus",purchase,1.0,0 -148362155,"Legendary",purchase,1.0,0 -148362155,"Lexica",purchase,1.0,0 -148362155,"Medal of Honor Pre-Order",purchase,1.0,0 -148362155,"Megabyte Punch",purchase,1.0,0 -148362155,"Millie",purchase,1.0,0 -148362155,"Mini Ninjas",purchase,1.0,0 -148362155,"Modular Combat",purchase,1.0,0 -148362155,"Morphopolis",purchase,1.0,0 -148362155,"New kind of adventure",purchase,1.0,0 -148362155,"Nikopol Secrets of the Immortals",purchase,1.0,0 -148362155,"Overcast - Walden and the Werewolf",purchase,1.0,0 -148362155,"PARTICLE MACE",purchase,1.0,0 -148362155,"Particula",purchase,1.0,0 -148362155,"PAYDAY Wolf Pack",purchase,1.0,0 -148362155,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",purchase,1.0,0 -148362155,"Penny Arcade's On the Rain-Slick Precipice of Darkness 4",purchase,1.0,0 -148362155,"Planets Under Attack",purchase,1.0,0 -148362155,"POSTAL 2",purchase,1.0,0 -148362155,"Pressured",purchase,1.0,0 -148362155,"Puzzle Dimension",purchase,1.0,0 -148362155,"Real Horror Stories Ultimate Edition",purchase,1.0,0 -148362155,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -148362155,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -148362155,"Robotex",purchase,1.0,0 -148362155,"Roogoo",purchase,1.0,0 -148362155,"Saints Row 2",purchase,1.0,0 -148362155,"Saints Row The Third",purchase,1.0,0 -148362155,"Saviors",purchase,1.0,0 -148362155,"Sinister City",purchase,1.0,0 -148362155,"Sniper Elite",purchase,1.0,0 -148362155,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -148362155,"Sniper Ghost Warrior 2 World Hunter Pack",purchase,1.0,0 -148362155,"Space Hack",purchase,1.0,0 -148362155,"Sparkle 2 Evo",purchase,1.0,0 -148362155,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -148362155,"Stealth Inc 2",purchase,1.0,0 -148362155,"Steel Storm Burning Retribution",purchase,1.0,0 -148362155,"Stellar 2D",purchase,1.0,0 -148362155,"Survarium",purchase,1.0,0 -148362155,"Tales Runner",purchase,1.0,0 -148362155,"Temper Tantrum",purchase,1.0,0 -148362155,"Terra Incognita ~ Chapter One The Descendant",purchase,1.0,0 -148362155,"The Howler",purchase,1.0,0 -148362155,"The Tiny Bang Story",purchase,1.0,0 -148362155,"The WTCC 2010 Pack",purchase,1.0,0 -148362155,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -148362155,"Two Worlds II Castle Defense",purchase,1.0,0 -148362155,"Uriel's Chasm",purchase,1.0,0 -148362155,"Warface",purchase,1.0,0 -148362155,"Warframe",purchase,1.0,0 -148362155,"Waveform",purchase,1.0,0 -148362155,"White Noise Online",purchase,1.0,0 -81678279,"Sid Meier's Civilization V",purchase,1.0,0 -81678279,"Sid Meier's Civilization V",play,26.0,0 -81678279,"Left 4 Dead 2",purchase,1.0,0 -81678279,"Left 4 Dead 2",play,11.7,0 -81678279,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -81678279,"Call of Duty Modern Warfare 3 - Multiplayer",play,10.9,0 -81678279,"Call of Duty Modern Warfare 3",purchase,1.0,0 -81678279,"Call of Duty Modern Warfare 3",play,7.8,0 -81678279,"Portal",purchase,1.0,0 -81678279,"Portal",play,0.4,0 -81678279,"Crysis",purchase,1.0,0 -81678279,"Crysis",play,0.2,0 -155032068,"APB Reloaded",purchase,1.0,0 -155032068,"APB Reloaded",play,11.1,0 -155032068,"Counter-Strike Source",purchase,1.0,0 -155032068,"Counter-Strike Source",play,4.9,0 -155032068,"Counter-Strike Global Offensive",purchase,1.0,0 -155032068,"Counter-Strike Global Offensive",play,1.6,0 -155032068,"Unturned",purchase,1.0,0 -155032068,"Unturned",play,1.1,0 -155032068,"Age of Empires II HD Edition",purchase,1.0,0 -26037697,"Counter-Strike Condition Zero",purchase,1.0,0 -26037697,"Counter-Strike Condition Zero",play,7.5,0 -26037697,"Counter-Strike",purchase,1.0,0 -26037697,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -26037697,"Day of Defeat",purchase,1.0,0 -26037697,"Deathmatch Classic",purchase,1.0,0 -26037697,"Ricochet",purchase,1.0,0 -54212914,"America's Army 3",purchase,1.0,0 -54212914,"America's Army 3",play,36.0,0 -54212914,"Path of Exile",purchase,1.0,0 -54212914,"Path of Exile",play,20.0,0 -54212914,"The Mighty Quest For Epic Loot",purchase,1.0,0 -54212914,"The Mighty Quest For Epic Loot",play,3.4,0 -266736356,"TERA",purchase,1.0,0 -266736356,"TERA",play,4.8,0 -266736356,"Dungeon Defenders II",purchase,1.0,0 -266736356,"Dungeon Defenders II",play,4.6,0 -266736356,"Path of Exile",purchase,1.0,0 -266736356,"Path of Exile",play,1.3,0 -266736356,"Clicker Heroes",purchase,1.0,0 -266736356,"Aura Kingdom",purchase,1.0,0 -266736356,"Warframe",purchase,1.0,0 -201793161,"Football Manager 2015",purchase,1.0,0 -201793161,"Football Manager 2015",play,403.0,0 -201793161,"Aftermath",purchase,1.0,0 -201793161,"Aftermath",play,0.3,0 -166590150,"Dota 2",purchase,1.0,0 -166590150,"Dota 2",play,4.1,0 -198081354,"Counter-Strike Global Offensive",purchase,1.0,0 -198081354,"Counter-Strike Global Offensive",play,1057.0,0 -198081354,"Grand Theft Auto V",purchase,1.0,0 -198081354,"Grand Theft Auto V",play,59.0,0 -198081354,"Starbound",purchase,1.0,0 -198081354,"Starbound",play,57.0,0 -198081354,"Fable Anniversary",purchase,1.0,0 -198081354,"Fable Anniversary",play,23.0,0 -198081354,"Dying Light",purchase,1.0,0 -198081354,"Dying Light",play,18.1,0 -198081354,"Lords Of The Fallen",purchase,1.0,0 -198081354,"Lords Of The Fallen",play,12.2,0 -198081354,"Dota 2",purchase,1.0,0 -198081354,"Dota 2",play,11.3,0 -198081354,"TERA",purchase,1.0,0 -198081354,"TERA",play,10.7,0 -198081354,"Torchlight II",purchase,1.0,0 -198081354,"Torchlight II",play,8.5,0 -198081354,"Magic Duels",purchase,1.0,0 -198081354,"Magic Duels",play,6.2,0 -198081354,"Tower Wars",purchase,1.0,0 -198081354,"Tower Wars",play,5.7,0 -198081354,"Heroes of Might & Magic III - HD Edition",purchase,1.0,0 -198081354,"Heroes of Might & Magic III - HD Edition",play,4.9,0 -198081354,"Just Cause 2",purchase,1.0,0 -198081354,"Just Cause 2",play,4.2,0 -198081354,"DARK SOULS II",purchase,1.0,0 -198081354,"DARK SOULS II",play,3.4,0 -198081354,"DiggerOnline",purchase,1.0,0 -198081354,"DiggerOnline",play,2.7,0 -198081354,"Warhammer 40,000 Space Marine",purchase,1.0,0 -198081354,"Warhammer 40,000 Space Marine",play,2.2,0 -198081354,"Warframe",purchase,1.0,0 -198081354,"Warframe",play,1.8,0 -198081354,"FlatOut Ultimate Carnage",purchase,1.0,0 -198081354,"FlatOut Ultimate Carnage",play,1.7,0 -198081354,"Quest of Dungeons",purchase,1.0,0 -198081354,"Quest of Dungeons",play,1.5,0 -198081354,"Two Worlds II",purchase,1.0,0 -198081354,"Two Worlds II",play,1.3,0 -198081354,"Hammerwatch",purchase,1.0,0 -198081354,"Hammerwatch",play,1.3,0 -198081354,"Minimum",purchase,1.0,0 -198081354,"Minimum",play,1.2,0 -198081354,"Grim Dawn",purchase,1.0,0 -198081354,"Grim Dawn",play,1.1,0 -198081354,"Sakura Clicker",purchase,1.0,0 -198081354,"Sakura Clicker",play,1.1,0 -198081354,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -198081354,"DARK SOULS II Scholar of the First Sin",play,0.8,0 -198081354,"Darkest Dungeon",purchase,1.0,0 -198081354,"Darkest Dungeon",play,0.7,0 -198081354,"The Incredible Adventures of Van Helsing II",purchase,1.0,0 -198081354,"The Incredible Adventures of Van Helsing II",play,0.7,0 -198081354,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -198081354,"Dark Souls Prepare to Die Edition",play,0.6,0 -198081354,"Shantae and the Pirate's Curse",purchase,1.0,0 -198081354,"Shantae and the Pirate's Curse",play,0.6,0 -198081354,"Titan Quest Immortal Throne",purchase,1.0,0 -198081354,"Titan Quest Immortal Throne",play,0.6,0 -198081354,"RPG MO",purchase,1.0,0 -198081354,"RPG MO",play,0.5,0 -198081354,"The Showdown Effect",purchase,1.0,0 -198081354,"The Showdown Effect",play,0.4,0 -198081354,"Stronghold 2",purchase,1.0,0 -198081354,"Stronghold 2",play,0.3,0 -198081354,"Counter-Strike",purchase,1.0,0 -198081354,"Counter-Strike",play,0.2,0 -198081354,"BlazeRush",purchase,1.0,0 -198081354,"BlazeRush",play,0.1,0 -198081354,"Titan Quest",purchase,1.0,0 -198081354,"Titan Quest",play,0.1,0 -198081354,"Super Monday Night Combat",purchase,1.0,0 -198081354,"Super Monday Night Combat",play,0.1,0 -198081354,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -198081354,"Silverfall",purchase,1.0,0 -198081354,"Stronghold 3",purchase,1.0,0 -198081354,"Silverfall Earth Awakening",purchase,1.0,0 -198081354,"Card Hunter",purchase,1.0,0 -198081354,"Clicker Heroes",purchase,1.0,0 -198081354,"Counter-Strike Condition Zero",purchase,1.0,0 -198081354,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -198081354,"Counter-Strike Source",purchase,1.0,0 -198081354,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -198081354,"Fight The Dragon",purchase,1.0,0 -198081354,"Firefall",purchase,1.0,0 -198081354,"Just Cause",purchase,1.0,0 -198081354,"Lost Saga North America",purchase,1.0,0 -198081354,"Magicka",purchase,1.0,0 -198081354,"Mortal Kombat Komplete Edition",purchase,1.0,0 -198081354,"Quake Live",purchase,1.0,0 -198081354,"SMITE",purchase,1.0,0 -198081354,"Starbound - Unstable",purchase,1.0,0 -198081354,"Stronghold Crusader Extreme HD",purchase,1.0,0 -198081354,"Stronghold Crusader HD",purchase,1.0,0 -198081354,"Stronghold HD",purchase,1.0,0 -198081354,"Stronghold Legends",purchase,1.0,0 -198081354,"Trove",purchase,1.0,0 -198081354,"Two Worlds 2 - Pirates of the Flying Fortress ",purchase,1.0,0 -198081354,"Two Worlds Epic Edition",purchase,1.0,0 -198081354,"Two Worlds II Castle Defense",purchase,1.0,0 -198081354,"Van Helsing II Ink Hunt",purchase,1.0,0 -198081354,"Van Helsing II Pigasus",purchase,1.0,0 -118544165,"DOOM 3 BFG Edition",purchase,1.0,0 -118544165,"DOOM 3 BFG Edition",play,0.9,0 -43160799,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -43160799,"DARK SOULS II Scholar of the First Sin",play,381.0,0 -43160799,"Borderlands 2",purchase,1.0,0 -43160799,"Borderlands 2",play,167.0,0 -43160799,"DARK SOULS II",purchase,1.0,0 -43160799,"DARK SOULS II",play,148.0,0 -43160799,"Far Cry 4",purchase,1.0,0 -43160799,"Far Cry 4",play,38.0,0 -43160799,"Dying Light",purchase,1.0,0 -43160799,"Dying Light",play,37.0,0 -43160799,"Magicka",purchase,1.0,0 -43160799,"Magicka",play,35.0,0 -43160799,"The Elder Scrolls V Skyrim",purchase,1.0,0 -43160799,"The Elder Scrolls V Skyrim",play,34.0,0 -43160799,"Pillars of Eternity",purchase,1.0,0 -43160799,"Pillars of Eternity",play,32.0,0 -43160799,"SpeedRunners",purchase,1.0,0 -43160799,"SpeedRunners",play,25.0,0 -43160799,"Lords Of The Fallen",purchase,1.0,0 -43160799,"Lords Of The Fallen",play,22.0,0 -43160799,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -43160799,"Call of Duty Modern Warfare 2 - Multiplayer",play,19.3,0 -43160799,"War for the Overworld",purchase,1.0,0 -43160799,"War for the Overworld",play,18.2,0 -43160799,"Counter-Strike Global Offensive",purchase,1.0,0 -43160799,"Counter-Strike Global Offensive",play,15.6,0 -43160799,"Homeworld Remastered Collection",purchase,1.0,0 -43160799,"Homeworld Remastered Collection",play,13.2,0 -43160799,"Chivalry Medieval Warfare",purchase,1.0,0 -43160799,"Chivalry Medieval Warfare",play,12.4,0 -43160799,"Minimum",purchase,1.0,0 -43160799,"Minimum",play,11.1,0 -43160799,"Warframe",purchase,1.0,0 -43160799,"Warframe",play,10.8,0 -43160799,"PAYDAY 2",purchase,1.0,0 -43160799,"PAYDAY 2",play,9.1,0 -43160799,"ARK Survival Evolved",purchase,1.0,0 -43160799,"ARK Survival Evolved",play,8.7,0 -43160799,"Warhammer 40,000 Space Marine",purchase,1.0,0 -43160799,"Warhammer 40,000 Space Marine",play,7.8,0 -43160799,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -43160799,"METAL GEAR SOLID V THE PHANTOM PAIN",play,7.0,0 -43160799,"Planetary Annihilation",purchase,1.0,0 -43160799,"Planetary Annihilation",play,7.0,0 -43160799,"Dungeon Defenders",purchase,1.0,0 -43160799,"Dungeon Defenders",play,6.1,0 -43160799,"Alien Swarm",purchase,1.0,0 -43160799,"Alien Swarm",play,5.4,0 -43160799,"Quake Live",purchase,1.0,0 -43160799,"Quake Live",play,5.1,0 -43160799,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -43160799,"Injustice Gods Among Us Ultimate Edition",play,4.5,0 -43160799,"DUNGEONS - The Dark Lord (Steam Special Edition)",purchase,1.0,0 -43160799,"DUNGEONS - The Dark Lord (Steam Special Edition)",play,3.6,0 -43160799,"Nosgoth",purchase,1.0,0 -43160799,"Nosgoth",play,3.3,0 -43160799,"Dota 2",purchase,1.0,0 -43160799,"Dota 2",play,1.5,0 -43160799,"Carmageddon Reincarnation",purchase,1.0,0 -43160799,"Carmageddon Reincarnation",play,0.9,0 -43160799,"Path of Exile",purchase,1.0,0 -43160799,"Path of Exile",play,0.7,0 -43160799,"Call of Duty Modern Warfare 2",purchase,1.0,0 -43160799,"Call of Duty Modern Warfare 2",play,0.5,0 -43160799,"Rusty Hearts",purchase,1.0,0 -43160799,"Rusty Hearts",play,0.2,0 -43160799,"Magicka Wizard Wars",purchase,1.0,0 -43160799,"Magicka Wizard Wars",play,0.1,0 -43160799,"Renegade Ops",purchase,1.0,0 -43160799,"Aion",purchase,1.0,0 -43160799,"Call of Duty Modern Warfare 3",purchase,1.0,0 -43160799,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -43160799,"Carmageddon 2 Carpocalypse Now",purchase,1.0,0 -43160799,"Carmageddon Max Pack",purchase,1.0,0 -43160799,"Carmageddon TDR 2000",purchase,1.0,0 -43160799,"DARK SOULS II - Season Pass",purchase,1.0,0 -43160799,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -43160799,"Magicka Final Frontier",purchase,1.0,0 -43160799,"Magicka Frozen Lake",purchase,1.0,0 -43160799,"Magicka Nippon",purchase,1.0,0 -43160799,"Magicka Party Robes",purchase,1.0,0 -43160799,"Magicka The Watchtower",purchase,1.0,0 -43160799,"Magicka Vietnam",purchase,1.0,0 -43160799,"Magicka Wizard's Survival Kit",purchase,1.0,0 -43160799,"Patch testing for Chivalry",purchase,1.0,0 -43160799,"PAYDAY The Heist",purchase,1.0,0 -43160799,"Planetary Annihilation - Digital Deluxe Bundle",purchase,1.0,0 -43160799,"Planetary Annihilation - Original Soundtrack",purchase,1.0,0 -43160799,"Robocraft",purchase,1.0,0 -43160799,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -43160799,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -43160799,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -43160799,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -43160799,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -43160799,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -176445735,"Dota 2",purchase,1.0,0 -176445735,"Dota 2",play,127.0,0 -202961177,"Quake Live",purchase,1.0,0 -15432026,"Counter-Strike Source",purchase,1.0,0 -15432026,"Half-Life 2",purchase,1.0,0 -15432026,"Half-Life 2 Deathmatch",purchase,1.0,0 -15432026,"Half-Life 2 Lost Coast",purchase,1.0,0 -50206331,"Dead Island Epidemic",purchase,1.0,0 -50206331,"Dead Island Epidemic",play,1.3,0 -50206331,"Portal",purchase,1.0,0 -58434367,"Left 4 Dead 2",purchase,1.0,0 -58434367,"Left 4 Dead 2",play,1.5,0 -206536991,"Dota 2",purchase,1.0,0 -206536991,"Dota 2",play,300.0,0 -206536991,"Team Fortress 2",purchase,1.0,0 -206536991,"Team Fortress 2",play,0.2,0 -206536991,"FreeStyle2 Street Basketball",purchase,1.0,0 -206536991,"Heroes & Generals",purchase,1.0,0 -206536991,"TERA",purchase,1.0,0 -229552037,"Amnesia The Dark Descent",purchase,1.0,0 -229552037,"AdVenture Capitalist",purchase,1.0,0 -229552037,"DCS World",purchase,1.0,0 -22045474,"Counter-Strike Source",purchase,1.0,0 -22045474,"Counter-Strike Source",play,18.8,0 -22045474,"Day of Defeat Source",purchase,1.0,0 -22045474,"Half-Life 2 Deathmatch",purchase,1.0,0 -22045474,"Half-Life 2 Lost Coast",purchase,1.0,0 -171830903,"Dota 2",purchase,1.0,0 -171830903,"Dota 2",play,0.4,0 -233421657,"Counter-Strike Global Offensive",purchase,1.0,0 -233421657,"Counter-Strike Global Offensive",play,34.0,0 -233421657,"Team Fortress 2",purchase,1.0,0 -233421657,"Team Fortress 2",play,1.2,0 -25539892,"Counter-Strike Source",purchase,1.0,0 -25539892,"Counter-Strike Source",play,1508.0,0 -25539892,"Counter-Strike Global Offensive",purchase,1.0,0 -25539892,"Counter-Strike Global Offensive",play,417.0,0 -25539892,"Counter-Strike",purchase,1.0,0 -25539892,"Counter-Strike",play,11.3,0 -25539892,"Team Fortress 2",purchase,1.0,0 -25539892,"Team Fortress 2",play,8.5,0 -25539892,"PAYDAY 2",purchase,1.0,0 -25539892,"PAYDAY 2",play,4.6,0 -25539892,"Dota 2",purchase,1.0,0 -25539892,"Dota 2",play,2.3,0 -25539892,"Alien Swarm",purchase,1.0,0 -25539892,"Alien Swarm",play,0.4,0 -25539892,"Counter-Strike Condition Zero",purchase,1.0,0 -25539892,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -25539892,"Dead Island Epidemic",purchase,1.0,0 -25539892,"ORION Prelude",purchase,1.0,0 -287270696,"Dota 2",purchase,1.0,0 -287270696,"Dota 2",play,267.0,0 -287270696,"Age of Empires Online",purchase,1.0,0 -287270696,"Archeblade",purchase,1.0,0 -287270696,"GunZ 2 The Second Duel",purchase,1.0,0 -298402690,"Dota 2",purchase,1.0,0 -298402690,"Dota 2",play,5.4,0 -236427707,"Dota 2",purchase,1.0,0 -236427707,"Dota 2",play,627.0,0 -90153776,"Counter-Strike Source",purchase,1.0,0 -90153776,"Counter-Strike Source",play,210.0,0 -11024186,"The Elder Scrolls V Skyrim",purchase,1.0,0 -11024186,"The Elder Scrolls V Skyrim",play,277.0,0 -11024186,"Might & Magic X - Legacy ",purchase,1.0,0 -11024186,"Might & Magic X - Legacy ",play,93.0,0 -11024186,"Fallout New Vegas",purchase,1.0,0 -11024186,"Fallout New Vegas",play,83.0,0 -11024186,"Far Cry 3",purchase,1.0,0 -11024186,"Far Cry 3",play,37.0,0 -11024186,"Half-Life 2",purchase,1.0,0 -11024186,"Half-Life 2",play,31.0,0 -11024186,"Legend of Grimrock",purchase,1.0,0 -11024186,"Legend of Grimrock",play,6.8,0 -11024186,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -11024186,"Fallout 3 - Game of the Year Edition",play,4.7,0 -11024186,"Bunch Of Heroes",purchase,1.0,0 -11024186,"Bunch Of Heroes",play,2.1,0 -11024186,"Counter-Strike Source",purchase,1.0,0 -11024186,"Counter-Strike Source",play,1.3,0 -11024186,"Team Fortress 2",purchase,1.0,0 -11024186,"Team Fortress 2",play,1.1,0 -11024186,"Half-Life 2 Lost Coast",purchase,1.0,0 -11024186,"Half-Life 2 Lost Coast",play,0.5,0 -11024186,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -11024186,"Fallout New Vegas Dead Money",purchase,1.0,0 -11024186,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -11024186,"Half-Life 2 Deathmatch",purchase,1.0,0 -202011768,"Dota 2",purchase,1.0,0 -202011768,"Dota 2",play,1.7,0 -134847173,"RAGE",purchase,1.0,0 -134847173,"RAGE",play,0.8,0 -110934550,"Shadow Harvest Phantom Ops",purchase,1.0,0 -110934550,"Shadow Harvest Phantom Ops",play,11.2,0 -79942253,"IL-2 Sturmovik Cliffs of Dover",purchase,1.0,0 -79942253,"IL-2 Sturmovik Cliffs of Dover",play,11.0,0 -79942253,"Air Conflicts Pacific Carriers",purchase,1.0,0 -79942253,"Air Conflicts Pacific Carriers",play,5.8,0 -79942253,"Empire Total War",purchase,1.0,0 -79942253,"Empire Total War",play,0.5,0 -202014107,"Dota 2",purchase,1.0,0 -202014107,"Dota 2",play,21.0,0 -202014107,"Aura Kingdom",purchase,1.0,0 -202014107,"Aura Kingdom",play,0.4,0 -76404223,"Firefall",purchase,1.0,0 -76404223,"Firefall",play,0.6,0 -210905793,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -210905793,"Age of Empires Online",purchase,1.0,0 -210905793,"Amazing World",purchase,1.0,0 -210905793,"America's Army 3",purchase,1.0,0 -210905793,"America's Army Proving Grounds",purchase,1.0,0 -210905793,"APB Reloaded",purchase,1.0,0 -210905793,"Arcane Saga Online",purchase,1.0,0 -210905793,"Archeblade",purchase,1.0,0 -210905793,"Arctic Combat",purchase,1.0,0 -210905793,"Atlantica Online",purchase,1.0,0 -210905793,"Aura Kingdom",purchase,1.0,0 -210905793,"Bloodline Champions",purchase,1.0,0 -210905793,"Brawl Busters",purchase,1.0,0 -210905793,"Bullet Run",purchase,1.0,0 -210905793,"C9",purchase,1.0,0 -210905793,"Cakewalk Loop Manager",purchase,1.0,0 -210905793,"Champions Online",purchase,1.0,0 -210905793,"Combat Arms",purchase,1.0,0 -210905793,"Construct 2 Free",purchase,1.0,0 -210905793,"CrimeCraft GangWars",purchase,1.0,0 -210905793,"Dead Island Epidemic",purchase,1.0,0 -210905793,"Defiance",purchase,1.0,0 -210905793,"District 187",purchase,1.0,0 -210905793,"Dragon Nest",purchase,1.0,0 -210905793,"Dragon Nest Europe",purchase,1.0,0 -210905793,"Dragons and Titans",purchase,1.0,0 -210905793,"Dungeon Fighter Online",purchase,1.0,0 -210905793,"Dungeonland",purchase,1.0,0 -210905793,"Dungeon Party",purchase,1.0,0 -210905793,"Dwarfs F2P",purchase,1.0,0 -210905793,"EverQuest Free-to-Play",purchase,1.0,0 -210905793,"EverQuest II",purchase,1.0,0 -210905793,"EVGA PrecisionX 16",purchase,1.0,0 -210905793,"Face of Mankind",purchase,1.0,0 -210905793,"Fallen Earth",purchase,1.0,0 -210905793,"Fiesta Online",purchase,1.0,0 -210905793,"Fiesta Online NA",purchase,1.0,0 -210905793,"Firefall",purchase,1.0,0 -210905793,"Floating Point",purchase,1.0,0 -210905793,"Football Superstars",purchase,1.0,0 -210905793,"Forsaken World ",purchase,1.0,0 -210905793,"Frontline Tactics",purchase,1.0,0 -210905793,"Global Agenda",purchase,1.0,0 -210905793,"Gotham City Impostors Free To Play",purchase,1.0,0 -210905793,"Grand Chase",purchase,1.0,0 -210905793,"Guns and Robots",purchase,1.0,0 -210905793,"Heroes & Generals",purchase,1.0,0 -210905793,"HOMEFRONT Demo",purchase,1.0,0 -210905793,"La Tale",purchase,1.0,0 -210905793,"Loadout",purchase,1.0,0 -210905793,"Mabinogi",purchase,1.0,0 -210905793,"Magic The Gathering Tactics",purchase,1.0,0 -210905793,"March of War",purchase,1.0,0 -210905793,"Marvel Heroes 2015",purchase,1.0,0 -210905793,"Memoir '44 Online",purchase,1.0,0 -210905793,"MicroVolts Surge",purchase,1.0,0 -210905793,"Moon Breakers",purchase,1.0,0 -210905793,"NEOTOKYO",purchase,1.0,0 -210905793,"Neverwinter",purchase,1.0,0 -210905793,"Nosgoth",purchase,1.0,0 -210905793,"Only If",purchase,1.0,0 -210905793,"Pandora Saga Weapons of Balance",purchase,1.0,0 -210905793,"Panzar",purchase,1.0,0 -210905793,"Path of Exile",purchase,1.0,0 -210905793,"Pinball Arcade",purchase,1.0,0 -210905793,"PlanetSide 2",purchase,1.0,0 -210905793,"Pox Nora",purchase,1.0,0 -210905793,"Puzzle Pirates",purchase,1.0,0 -210905793,"Quantum Rush Online",purchase,1.0,0 -210905793,"RaceRoom Racing Experience ",purchase,1.0,0 -210905793,"Ragnarok Online 2",purchase,1.0,0 -210905793,"Realm of the Mad God",purchase,1.0,0 -210905793,"Reversion - The Escape",purchase,1.0,0 -210905793,"Rise of Incarnates",purchase,1.0,0 -210905793,"Robocraft",purchase,1.0,0 -210905793,"ROSE Online",purchase,1.0,0 -210905793,"Royal Quest",purchase,1.0,0 -210905793,"Rusty Hearts",purchase,1.0,0 -210905793,"Saira",purchase,1.0,0 -210905793,"Shadow Warrior Classic (1997)",purchase,1.0,0 -210905793,"Spiral Knights",purchase,1.0,0 -210905793,"Star Conflict",purchase,1.0,0 -210905793,"Star Trek Online",purchase,1.0,0 -210905793,"Stronghold Kingdoms",purchase,1.0,0 -210905793,"Sunrider Mask of Arcadius",purchase,1.0,0 -210905793,"Super Crate Box",purchase,1.0,0 -210905793,"Super Monday Night Combat",purchase,1.0,0 -210905793,"Tactical Intervention",purchase,1.0,0 -210905793,"The Banner Saga Factions",purchase,1.0,0 -210905793,"The Expendabros",purchase,1.0,0 -210905793,"The Forgotten Ones",purchase,1.0,0 -210905793,"The Lord of the Rings Online",purchase,1.0,0 -210905793,"Thinking with Time Machine",purchase,1.0,0 -210905793,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -210905793,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -210905793,"Tribes Ascend",purchase,1.0,0 -210905793,"Uncharted Waters Online",purchase,1.0,0 -210905793,"Unturned",purchase,1.0,0 -210905793,"Velvet Sundown",purchase,1.0,0 -210905793,"Vindictus",purchase,1.0,0 -210905793,"Warface",purchase,1.0,0 -210905793,"Warframe",purchase,1.0,0 -210905793,"War Inc. Battlezone",purchase,1.0,0 -210905793,"War Thunder",purchase,1.0,0 -210905793,"World of Battles",purchase,1.0,0 -210905793,"World of Guns Gun Disassembly",purchase,1.0,0 -210905793,"Xam",purchase,1.0,0 -159034250,"Rust",purchase,1.0,0 -159034250,"Rust",play,61.0,0 -82961224,"Far Cry 4",purchase,1.0,0 -82961224,"Far Cry 4",play,142.0,0 -82961224,"Serious Sam 3 BFE",purchase,1.0,0 -82961224,"Serious Sam 3 BFE",play,134.0,0 -82961224,"Wolfenstein The New Order",purchase,1.0,0 -82961224,"Wolfenstein The New Order",play,25.0,0 -82961224,"Call of Duty Black Ops II",purchase,1.0,0 -82961224,"Call of Duty Black Ops II",play,12.5,0 -82961224,"Call of Duty Modern Warfare 3",purchase,1.0,0 -82961224,"Call of Duty Modern Warfare 3",play,10.6,0 -82961224,"Call of Juarez The Cartel",purchase,1.0,0 -82961224,"Call of Juarez The Cartel",play,8.5,0 -82961224,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -82961224,"Call of Duty Black Ops II - Zombies",play,4.6,0 -82961224,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -82961224,"Rising Storm/Red Orchestra 2 Multiplayer",play,3.4,0 -82961224,"IL-2 Sturmovik Cliffs of Dover",purchase,1.0,0 -82961224,"IL-2 Sturmovik Cliffs of Dover",play,1.2,0 -82961224,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -82961224,"Call of Duty Black Ops II - Multiplayer",play,0.5,0 -82961224,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -82961224,"Call of Duty Modern Warfare 3 - Multiplayer",play,0.1,0 -82961224,"Call of Duty World at War",purchase,1.0,0 -82961224,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -126191291,"Counter-Strike Global Offensive",purchase,1.0,0 -126191291,"Counter-Strike Global Offensive",play,994.0,0 -126191291,"Team Fortress 2",purchase,1.0,0 -126191291,"Team Fortress 2",play,57.0,0 -126191291,"Counter-Strike",purchase,1.0,0 -126191291,"Counter-Strike",play,51.0,0 -126191291,"PAYDAY The Heist",purchase,1.0,0 -126191291,"PAYDAY The Heist",play,49.0,0 -126191291,"Crusader Kings II",purchase,1.0,0 -126191291,"Crusader Kings II",play,39.0,0 -126191291,"Men of War Red Tide",purchase,1.0,0 -126191291,"Men of War Red Tide",play,33.0,0 -126191291,"Left 4 Dead 2",purchase,1.0,0 -126191291,"Left 4 Dead 2",play,29.0,0 -126191291,"Mount & Blade Warband",purchase,1.0,0 -126191291,"Mount & Blade Warband",play,28.0,0 -126191291,"Day of Defeat Source",purchase,1.0,0 -126191291,"Day of Defeat Source",play,27.0,0 -126191291,"Guns of Icarus Online",purchase,1.0,0 -126191291,"Guns of Icarus Online",play,25.0,0 -126191291,"Men of War Assault Squad",purchase,1.0,0 -126191291,"Men of War Assault Squad",play,20.0,0 -126191291,"Supreme Ruler 2020 Gold",purchase,1.0,0 -126191291,"Supreme Ruler 2020 Gold",play,20.0,0 -126191291,"Unturned",purchase,1.0,0 -126191291,"Unturned",play,18.3,0 -126191291,"Tropico 4",purchase,1.0,0 -126191291,"Tropico 4",play,17.8,0 -126191291,"The Guild II Renaissance",purchase,1.0,0 -126191291,"The Guild II Renaissance",play,14.8,0 -126191291,"Garry's Mod",purchase,1.0,0 -126191291,"Garry's Mod",play,13.4,0 -126191291,"Battlestations Midway",purchase,1.0,0 -126191291,"Battlestations Midway",play,12.8,0 -126191291,"Brothers in Arms Road to Hill 30",purchase,1.0,0 -126191291,"Brothers in Arms Road to Hill 30",play,12.6,0 -126191291,"Iron Grip Warlord",purchase,1.0,0 -126191291,"Iron Grip Warlord",play,12.3,0 -126191291,"Evil Genius",purchase,1.0,0 -126191291,"Evil Genius",play,10.8,0 -126191291,"Call of Duty United Offensive",purchase,1.0,0 -126191291,"Call of Duty United Offensive",play,10.5,0 -126191291,"Verdun",purchase,1.0,0 -126191291,"Verdun",play,10.5,0 -126191291,"Sid Meier's Pirates!",purchase,1.0,0 -126191291,"Sid Meier's Pirates!",play,10.2,0 -126191291,"Bully Scholarship Edition",purchase,1.0,0 -126191291,"Bully Scholarship Edition",play,10.0,0 -126191291,"Omegalodon",purchase,1.0,0 -126191291,"Omegalodon",play,8.8,0 -126191291,"Game Dev Tycoon",purchase,1.0,0 -126191291,"Game Dev Tycoon",play,8.0,0 -126191291,"Little Racers STREET",purchase,1.0,0 -126191291,"Little Racers STREET",play,7.5,0 -126191291,"Company of Heroes (New Steam Version)",purchase,1.0,0 -126191291,"Company of Heroes (New Steam Version)",play,6.7,0 -126191291,"Sanctum 2",purchase,1.0,0 -126191291,"Sanctum 2",play,6.6,0 -126191291,"Grand Theft Auto III",purchase,1.0,0 -126191291,"Grand Theft Auto III",play,5.4,0 -126191291,"Call of Duty",purchase,1.0,0 -126191291,"Call of Duty",play,4.8,0 -126191291,"Yet Another Zombie Defense",purchase,1.0,0 -126191291,"Yet Another Zombie Defense",play,4.4,0 -126191291,"Counter-Strike Condition Zero",purchase,1.0,0 -126191291,"Counter-Strike Condition Zero",play,4.1,0 -126191291,"Dino D-Day",purchase,1.0,0 -126191291,"Dino D-Day",play,4.0,0 -126191291,"Pixel Piracy",purchase,1.0,0 -126191291,"Pixel Piracy",play,2.7,0 -126191291,"The Ship",purchase,1.0,0 -126191291,"The Ship",play,2.7,0 -126191291,"Sid Meier's Railroads!",purchase,1.0,0 -126191291,"Sid Meier's Railroads!",play,2.5,0 -126191291,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -126191291,"Rising Storm/Red Orchestra 2 Multiplayer",play,2.3,0 -126191291,"Victoria II",purchase,1.0,0 -126191291,"Victoria II",play,2.0,0 -126191291,"Natural Selection 2",purchase,1.0,0 -126191291,"Natural Selection 2",play,1.7,0 -126191291,"Giana Sisters Twisted Dreams",purchase,1.0,0 -126191291,"Giana Sisters Twisted Dreams",play,1.3,0 -126191291,"Battlestations Pacific",purchase,1.0,0 -126191291,"Battlestations Pacific",play,1.3,0 -126191291,"Terraria",purchase,1.0,0 -126191291,"Terraria",play,1.1,0 -126191291,"DEFCON",purchase,1.0,0 -126191291,"DEFCON",play,1.0,0 -126191291,"Robot Roller-Derby Disco Dodgeball",purchase,1.0,0 -126191291,"Robot Roller-Derby Disco Dodgeball",play,0.8,0 -126191291,"Post Apocalyptic Mayhem",purchase,1.0,0 -126191291,"Post Apocalyptic Mayhem",play,0.8,0 -126191291,"Monaco",purchase,1.0,0 -126191291,"Monaco",play,0.8,0 -126191291,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -126191291,"Red Orchestra Ostfront 41-45",play,0.7,0 -126191291,"State of Decay",purchase,1.0,0 -126191291,"State of Decay",play,0.4,0 -126191291,"Ticket to Ride",purchase,1.0,0 -126191291,"Ticket to Ride",play,0.3,0 -126191291,"Praetorians",purchase,1.0,0 -126191291,"Praetorians",play,0.2,0 -126191291,"Strategic War in Europe",purchase,1.0,0 -126191291,"Strategic War in Europe",play,0.2,0 -126191291,"Oil Rush",purchase,1.0,0 -126191291,"Rush Bros",purchase,1.0,0 -126191291,"Gimbal",purchase,1.0,0 -126191291,"Grand Theft Auto Vice City",purchase,1.0,0 -126191291,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -126191291,"Grand Theft Auto San Andreas",purchase,1.0,0 -126191291,"Grand Theft Auto III",purchase,1.0,0 -126191291,"Party of Sin",purchase,1.0,0 -126191291,"Driftmoon",purchase,1.0,0 -126191291,"Grand Theft Auto Vice City",purchase,1.0,0 -126191291,"Grand Theft Auto IV",purchase,1.0,0 -126191291,"Men of War Vietnam",purchase,1.0,0 -126191291,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -126191291,"Humanity Asset",purchase,1.0,0 -126191291,"Waking Mars",purchase,1.0,0 -126191291,"Afterfall InSanity Extended Edition",purchase,1.0,0 -126191291,"Alpha Protocol",purchase,1.0,0 -126191291,"Arma 2",purchase,1.0,0 -126191291,"Arma Cold War Assault",purchase,1.0,0 -126191291,"Call of Duty 2",purchase,1.0,0 -126191291,"Company of Heroes",purchase,1.0,0 -126191291,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -126191291,"Darkest Hour Europe '44-'45",purchase,1.0,0 -126191291,"Day of Defeat",purchase,1.0,0 -126191291,"Dead Island Epidemic",purchase,1.0,0 -126191291,"Deathmatch Classic",purchase,1.0,0 -126191291,"Enclave",purchase,1.0,0 -126191291,"Eurofighter Typhoon",purchase,1.0,0 -126191291,"Giana Sisters Twisted Dreams - Rise of the Owlverlord",purchase,1.0,0 -126191291,"Grand Theft Auto San Andreas",purchase,1.0,0 -126191291,"Hell Yeah!",purchase,1.0,0 -126191291,"Legendary",purchase,1.0,0 -126191291,"Mare Nostrum",purchase,1.0,0 -126191291,"Men of War",purchase,1.0,0 -126191291,"Napoleon Total War",purchase,1.0,0 -126191291,"PAYDAY 2",purchase,1.0,0 -126191291,"PAYDAY Wolf Pack",purchase,1.0,0 -126191291,"Post Apocalyptic Mayhem DLC 2 Chaos Pack",purchase,1.0,0 -126191291,"Ricochet",purchase,1.0,0 -126191291,"Rome Total War",purchase,1.0,0 -126191291,"Sniper Elite V2",purchase,1.0,0 -126191291,"State of Decay - Breakdown",purchase,1.0,0 -126191291,"Tea Party Simulator 2015",purchase,1.0,0 -126191291,"The Guild II",purchase,1.0,0 -126191291,"The Guild II - Pirates of the European Seas",purchase,1.0,0 -126191291,"The Ship Single Player",purchase,1.0,0 -126191291,"The Ship Tutorial",purchase,1.0,0 -126191291,"Ticket to Ride - USA 1910",purchase,1.0,0 -126191291,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -126191291,"UFO Afterlight",purchase,1.0,0 -126191291,"Vertiginous Golf",purchase,1.0,0 -126191291,"Victoria Revolutions",purchase,1.0,0 -235874009,"Dota 2",purchase,1.0,0 -235874009,"Dota 2",play,2.7,0 -235874009,"FreeStyle2 Street Basketball",purchase,1.0,0 -235874009,"Path of Exile",purchase,1.0,0 -235874009,"Warframe",purchase,1.0,0 -221657386,"Dota 2",purchase,1.0,0 -221657386,"Dota 2",play,6.8,0 -187655755,"Dota 2",purchase,1.0,0 -187655755,"Dota 2",play,5.2,0 -35937951,"Counter-Strike Source",purchase,1.0,0 -35937951,"Counter-Strike Source",play,48.0,0 -35937951,"Day of Defeat Source",purchase,1.0,0 -35937951,"Half-Life 2 Deathmatch",purchase,1.0,0 -35937951,"Half-Life 2 Lost Coast",purchase,1.0,0 -97843739,"LEGO MARVEL Super Heroes",purchase,1.0,0 -97843739,"LEGO MARVEL Super Heroes",play,149.0,0 -97843739,"LEGO Batman The Videogame",purchase,1.0,0 -97843739,"LEGO Batman The Videogame",play,62.0,0 -97843739,"LEGO Batman 2",purchase,1.0,0 -97843739,"LEGO Batman 2",play,25.0,0 -97843739,"LEGO The Hobbit",purchase,1.0,0 -97843739,"LEGO The Hobbit",play,7.2,0 -97843739,"Dead Island",purchase,1.0,0 -97843739,"Dead Island",play,3.9,0 -97843739,"Octodad Dadliest Catch",purchase,1.0,0 -97843739,"Octodad Dadliest Catch",play,0.8,0 -97843739,"Guns and Robots",purchase,1.0,0 -97843739,"Guns and Robots",play,0.6,0 -97843739,"Marvel Heroes 2015",purchase,1.0,0 -97843739,"Marvel Heroes 2015",play,0.5,0 -97843739,"Gotham City Impostors Free To Play",purchase,1.0,0 -97843739,"Gotham City Impostors Free To Play",play,0.5,0 -97843739,"Divine Souls",purchase,1.0,0 -97843739,"Divine Souls",play,0.2,0 -97843739,"Loadout",purchase,1.0,0 -97843739,"Cubic Castles",purchase,1.0,0 -122083909,"Team Fortress 2",purchase,1.0,0 -122083909,"Team Fortress 2",play,8.0,0 -153017703,"Team Fortress 2",purchase,1.0,0 -153017703,"Team Fortress 2",play,854.0,0 -153017703,"No More Room in Hell",purchase,1.0,0 -153017703,"No More Room in Hell",play,106.0,0 -153017703,"Dead Island Epidemic",purchase,1.0,0 -153017703,"Dead Island Epidemic",play,21.0,0 -153017703,"Unturned",purchase,1.0,0 -153017703,"Unturned",play,11.2,0 -153017703,"Warframe",purchase,1.0,0 -153017703,"Warframe",play,11.0,0 -153017703,"Counter-Strike Nexon Zombies",purchase,1.0,0 -153017703,"Counter-Strike Nexon Zombies",play,2.6,0 -153017703,"Aftermath",purchase,1.0,0 -153017703,"Aftermath",play,1.5,0 -153017703,"Survarium",purchase,1.0,0 -153017703,"Survarium",play,1.0,0 -153017703,"Heroes & Generals",purchase,1.0,0 -153017703,"Heroes & Generals",play,0.9,0 -153017703,"Cry of Fear",purchase,1.0,0 -153017703,"Cry of Fear",play,0.6,0 -153017703,"Dirty Bomb",purchase,1.0,0 -153017703,"Super Monday Night Combat",purchase,1.0,0 -93221431,"Dungeons & Dragons Daggerdale",purchase,1.0,0 -93221431,"Dungeons & Dragons Daggerdale",play,3.6,0 -67729721,"Football Manager 2010",purchase,1.0,0 -67729721,"Football Manager 2010",play,5.4,0 -241200505,"Unturned",purchase,1.0,0 -241200505,"Unturned",play,0.4,0 -241200505,"Dirty Bomb",purchase,1.0,0 -91035793,"Dota 2",purchase,1.0,0 -91035793,"Dota 2",play,13.5,0 -168035720,"Team Fortress 2",purchase,1.0,0 -168035720,"Team Fortress 2",play,677.0,0 -150909485,"BioShock",purchase,1.0,0 -150909485,"BioShock",play,28.0,0 -150909485,"BioShock 2",purchase,1.0,0 -150909485,"BioShock 2",play,24.0,0 -150909485,"Legend of Grimrock",purchase,1.0,0 -150909485,"Legend of Grimrock",play,23.0,0 -150909485,"BioShock Infinite",purchase,1.0,0 -150909485,"BioShock Infinite",play,15.4,0 -150909485,"Ori and the Blind Forest",purchase,1.0,0 -150909485,"Ori and the Blind Forest",play,14.4,0 -150909485,"Dota 2",purchase,1.0,0 -150909485,"Dota 2",play,13.9,0 -150909485,"Borderlands 2",purchase,1.0,0 -150909485,"Borderlands 2",play,0.9,0 -150909485,"Amnesia A Machine for Pigs",purchase,1.0,0 -150909485,"Amnesia The Dark Descent",purchase,1.0,0 -150909485,"Legend of Grimrock 2",purchase,1.0,0 -150909485,"Portal",purchase,1.0,0 -150909485,"Portal 2",purchase,1.0,0 -3747293,"Counter-Strike Source",purchase,1.0,0 -3747293,"Counter-Strike Source",play,8.1,0 -3747293,"Counter-Strike",purchase,1.0,0 -3747293,"Day of Defeat",purchase,1.0,0 -3747293,"Deathmatch Classic",purchase,1.0,0 -3747293,"Half-Life",purchase,1.0,0 -3747293,"Half-Life 2",purchase,1.0,0 -3747293,"Half-Life 2 Deathmatch",purchase,1.0,0 -3747293,"Half-Life 2 Lost Coast",purchase,1.0,0 -3747293,"Half-Life Blue Shift",purchase,1.0,0 -3747293,"Half-Life Opposing Force",purchase,1.0,0 -3747293,"Ricochet",purchase,1.0,0 -3747293,"Team Fortress Classic",purchase,1.0,0 -197275508,"Dota 2",purchase,1.0,0 -197275508,"Dota 2",play,0.2,0 -47271668,"Empire Total War",purchase,1.0,0 -47271668,"Empire Total War",play,1197.0,0 -47271668,"Napoleon Total War",purchase,1.0,0 -47271668,"Napoleon Total War",play,545.0,0 -47271668,"Total War ROME II - Emperor Edition",purchase,1.0,0 -47271668,"Total War ROME II - Emperor Edition",play,257.0,0 -47271668,"Hearts of Iron III",purchase,1.0,0 -47271668,"Hearts of Iron III",play,32.0,0 -47271668,"Medieval II Total War",purchase,1.0,0 -47271668,"Medieval II Total War",play,17.3,0 -47271668,"Age of Empires II HD Edition",purchase,1.0,0 -47271668,"Age of Empires II HD Edition",play,12.6,0 -47271668,"Total War ATTILA",purchase,1.0,0 -47271668,"Total War ATTILA",play,11.6,0 -47271668,"Medieval II Total War Kingdoms",purchase,1.0,0 -47271668,"Medieval II Total War Kingdoms",play,0.2,0 -47271668,"Age of Empires II HD The Forgotten",purchase,1.0,0 -47271668,"Hearts of Iron III German II Sprite Pack",purchase,1.0,0 -258248895,"Viridi",purchase,1.0,0 -258248895,"Viridi",play,0.1,0 -246839897,"Dota 2",purchase,1.0,0 -246839897,"Dota 2",play,7.8,0 -246839897,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -281535206,"Counter-Strike Global Offensive",purchase,1.0,0 -281535206,"Counter-Strike Global Offensive",play,105.0,0 -281535206,"The Binding of Isaac Rebirth",purchase,1.0,0 -281535206,"The Binding of Isaac Rebirth",play,103.0,0 -281535206,"Terraria",purchase,1.0,0 -281535206,"Terraria",play,41.0,0 -281535206,"Far Cry 3",purchase,1.0,0 -281535206,"Far Cry 3",play,23.0,0 -281535206,"Trove",purchase,1.0,0 -281535206,"Trove",play,10.7,0 -281535206,"Fallout New Vegas",purchase,1.0,0 -281535206,"Fallout New Vegas",play,9.3,0 -281535206,"Sid Meier's Civilization V",purchase,1.0,0 -281535206,"Sid Meier's Civilization V",play,9.3,0 -281535206,"Team Fortress 2",purchase,1.0,0 -281535206,"Team Fortress 2",play,6.7,0 -281535206,"Path of Exile",purchase,1.0,0 -281535206,"Path of Exile",play,6.6,0 -281535206,"PAYDAY 2",purchase,1.0,0 -281535206,"PAYDAY 2",play,6.3,0 -281535206,"Clicker Heroes",purchase,1.0,0 -281535206,"Clicker Heroes",play,3.5,0 -281535206,"Star Wars - Battlefront II",purchase,1.0,0 -281535206,"Star Wars - Battlefront II",play,2.0,0 -281535206,"Warface",purchase,1.0,0 -281535206,"Warface",play,1.9,0 -281535206,"Unturned",purchase,1.0,0 -281535206,"Unturned",play,1.7,0 -281535206,"RIFT",purchase,1.0,0 -281535206,"RIFT",play,1.4,0 -281535206,"No More Room in Hell",purchase,1.0,0 -281535206,"No More Room in Hell",play,0.7,0 -281535206,"Dragomon Hunter",purchase,1.0,0 -281535206,"Dragomon Hunter",play,0.3,0 -281535206,"PAYDAY The Heist",purchase,1.0,0 -281535206,"PAYDAY The Heist",play,0.3,0 -281535206,"Dirty Bomb",purchase,1.0,0 -281535206,"Dirty Bomb",play,0.2,0 -281535206,"Legend of Dungeon Masters",purchase,1.0,0 -281535206,"The Settlers Online",purchase,1.0,0 -281535206,"Anno Online",purchase,1.0,0 -281535206,"Dragon's Prophet (EU)",purchase,1.0,0 -281535206,"Echo of Soul",purchase,1.0,0 -281535206,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -281535206,"Fallout New Vegas Dead Money",purchase,1.0,0 -281535206,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -281535206,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -281535206,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -281535206,"sZone-Online",purchase,1.0,0 -183801719,"Dota 2",purchase,1.0,0 -183801719,"Dota 2",play,515.0,0 -245775672,"Dota 2",purchase,1.0,0 -245775672,"Dota 2",play,5.7,0 -207036748,"Ragnarok Online 2",purchase,1.0,0 -207036748,"Ragnarok Online 2",play,5.9,0 -207036748,"FINAL FANTASY VIII",purchase,1.0,0 -207036748,"FINAL FANTASY VIII",play,3.8,0 -207036748,"Valkyria Chronicles",purchase,1.0,0 -207036748,"Valkyria Chronicles",play,3.3,0 -207036748,"Lost Planet Extreme Condition",purchase,1.0,0 -207036748,"Lost Planet Extreme Condition",play,1.8,0 -207036748,"Ragnarok",purchase,1.0,0 -207036748,"Ragnarok",play,1.7,0 -207036748,"Divinity Original Sin",purchase,1.0,0 -207036748,"Divinity Original Sin",play,1.1,0 -207036748,"Aura Kingdom",purchase,1.0,0 -207036748,"Aura Kingdom",play,1.0,0 -207036748,"The Elder Scrolls V Skyrim",purchase,1.0,0 -207036748,"The Elder Scrolls V Skyrim",play,0.8,0 -207036748,"FINAL FANTASY VII",purchase,1.0,0 -207036748,"FINAL FANTASY VII",play,0.5,0 -207036748,"The Last Remnant",purchase,1.0,0 -207036748,"The Last Remnant",play,0.5,0 -207036748,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -207036748,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -207036748,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -207036748,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -207036748,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -207036748,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -207036748,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -207036748,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -65447941,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -65447941,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,9.5,0 -65447941,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -65447941,"Warhammer 40,000 Dawn of War II",play,3.6,0 -183241744,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -183241744,"Tom Clancy's Ghost Recon Phantoms - NA",play,9.4,0 -183241744,"Team Fortress 2",purchase,1.0,0 -183241744,"Team Fortress 2",play,3.4,0 -183241744,"Dota 2",purchase,1.0,0 -183241744,"Dota 2",play,1.5,0 -183241744,"Loadout",purchase,1.0,0 -183241744,"Loadout",play,0.6,0 -183241744,"Warframe",purchase,1.0,0 -183241744,"America's Army Proving Grounds",purchase,1.0,0 -183241744,"Counter-Strike Nexon Zombies",purchase,1.0,0 -183241744,"Warface",purchase,1.0,0 -150794152,"Football Manager 2013",purchase,1.0,0 -150794152,"Football Manager 2013",play,742.0,0 -71280014,"Sid Meier's Civilization V",purchase,1.0,0 -71280014,"Sid Meier's Civilization V",play,123.0,0 -19925584,"Half-Life 2",purchase,1.0,0 -19925584,"Half-Life 2",play,0.2,0 -19925584,"Football Manager 2009",purchase,1.0,0 -19925584,"Half-Life 2 Deathmatch",purchase,1.0,0 -19925584,"Half-Life 2 Lost Coast",purchase,1.0,0 -55635404,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -55635404,"Call of Duty Modern Warfare 2 - Multiplayer",play,82.0,0 -55635404,"Call of Duty Modern Warfare 2",purchase,1.0,0 -55635404,"Call of Duty Modern Warfare 2",play,11.2,0 -256896099,"Dota 2",purchase,1.0,0 -256896099,"Dota 2",play,908.0,0 -96149161,"Sniper Elite V2",purchase,1.0,0 -96149161,"Sniper Elite V2",play,241.0,0 -96149161,"Serious Sam 3 BFE",purchase,1.0,0 -96149161,"Serious Sam 3 BFE",play,135.0,0 -96149161,"Left 4 Dead 2",purchase,1.0,0 -96149161,"Left 4 Dead 2",play,14.1,0 -112849197,"Counter-Strike Global Offensive",purchase,1.0,0 -112849197,"Counter-Strike Global Offensive",play,986.0,0 -112849197,"Dota 2",purchase,1.0,0 -112849197,"Dota 2",play,620.0,0 -112849197,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -112849197,"Call of Duty Modern Warfare 2 - Multiplayer",play,295.0,0 -112849197,"Counter-Strike",purchase,1.0,0 -112849197,"Counter-Strike",play,90.0,0 -112849197,"Counter-Strike Source",purchase,1.0,0 -112849197,"Counter-Strike Source",play,18.2,0 -112849197,"The Elder Scrolls V Skyrim",purchase,1.0,0 -112849197,"The Elder Scrolls V Skyrim",play,17.0,0 -112849197,"Team Fortress 2",purchase,1.0,0 -112849197,"Team Fortress 2",play,4.8,0 -112849197,"Garry's Mod",purchase,1.0,0 -112849197,"Garry's Mod",play,4.3,0 -112849197,"Loadout",purchase,1.0,0 -112849197,"Loadout",play,3.7,0 -112849197,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -112849197,"Just Cause 2 Multiplayer Mod",play,3.2,0 -112849197,"Call of Duty Modern Warfare 2",purchase,1.0,0 -112849197,"Call of Duty Modern Warfare 2",play,2.2,0 -112849197,"Metro Last Light",purchase,1.0,0 -112849197,"Metro Last Light",play,1.8,0 -112849197,"Just Cause 2",purchase,1.0,0 -112849197,"Just Cause 2",play,1.8,0 -112849197,"Depth",purchase,1.0,0 -112849197,"Depth",play,1.5,0 -112849197,"DiggerOnline",purchase,1.0,0 -112849197,"DiggerOnline",play,0.4,0 -112849197,"PAYDAY The Heist",purchase,1.0,0 -112849197,"PAYDAY The Heist",play,0.2,0 -112849197,"Counter-Strike Condition Zero",purchase,1.0,0 -112849197,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -112849197,"Earth 2150 Trilogy",purchase,1.0,0 -112849197,"Earth 2150 Lost Souls",purchase,1.0,0 -112849197,"Earth 2150 The Moon Project",purchase,1.0,0 -112849197,"Nosgoth",purchase,1.0,0 -112849197,"theHunter",purchase,1.0,0 -217109977,"Championship Manager 2010",purchase,1.0,0 -217109977,"Championship Manager 2010",play,10.7,0 -35394734,"Counter-Strike",purchase,1.0,0 -35394734,"Counter-Strike",play,43.0,0 -35394734,"Counter-Strike Condition Zero",purchase,1.0,0 -35394734,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -35394734,"Day of Defeat",purchase,1.0,0 -35394734,"Deathmatch Classic",purchase,1.0,0 -35394734,"Ricochet",purchase,1.0,0 -255211217,"Dota 2",purchase,1.0,0 -255211217,"Dota 2",play,2.0,0 -90815028,"America's Army 3",purchase,1.0,0 -90815028,"America's Army 3",play,4.4,0 -90815028,"theHunter",purchase,1.0,0 -90815028,"theHunter",play,0.1,0 -90815028,"War Inc. Battlezone",purchase,1.0,0 -187062190,"Stronghold Kingdoms",purchase,1.0,0 -187062190,"Stronghold Kingdoms",play,6.4,0 -283473778,"Dota 2",purchase,1.0,0 -283473778,"Dota 2",play,1.4,0 -78086463,"Call of Duty Black Ops",purchase,1.0,0 -78086463,"Call of Duty Black Ops",play,11.4,0 -78086463,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -78086463,"Call of Duty Black Ops - Multiplayer",play,0.7,0 -166084307,"Team Fortress 2",purchase,1.0,0 -166084307,"Team Fortress 2",play,24.0,0 -166084307,"Counter-Strike Global Offensive",purchase,1.0,0 -166084307,"Counter-Strike Global Offensive",play,9.6,0 -166084307,"Gunscape",purchase,1.0,0 -166084307,"Gunscape",play,2.1,0 -166084307,"Clicker Heroes",purchase,1.0,0 -78053539,"Team Fortress 2",purchase,1.0,0 -78053539,"Team Fortress 2",play,770.0,0 -78053539,"Portal 2",purchase,1.0,0 -78053539,"Portal 2",play,164.0,0 -78053539,"Source Filmmaker",purchase,1.0,0 -78053539,"Source Filmmaker",play,159.0,0 -78053539,"Counter-Strike Global Offensive",purchase,1.0,0 -78053539,"Counter-Strike Global Offensive",play,62.0,0 -78053539,"Half-Life 2",purchase,1.0,0 -78053539,"Half-Life 2",play,36.0,0 -78053539,"Portal",purchase,1.0,0 -78053539,"Portal",play,20.0,0 -78053539,"Dota 2",purchase,1.0,0 -78053539,"Dota 2",play,8.2,0 -78053539,"Alien Swarm",purchase,1.0,0 -78053539,"Alien Swarm",play,6.8,0 -78053539,"Left 4 Dead 2",purchase,1.0,0 -78053539,"Left 4 Dead 2",play,4.8,0 -78053539,"Synergy",purchase,1.0,0 -78053539,"Synergy",play,3.3,0 -78053539,"Portal Stories Mel",purchase,1.0,0 -78053539,"Portal Stories Mel",play,1.5,0 -78053539,"Thinking with Time Machine",purchase,1.0,0 -78053539,"Thinking with Time Machine",play,1.4,0 -78053539,"Half-Life 2 Lost Coast",purchase,1.0,0 -78053539,"Half-Life 2 Lost Coast",play,1.4,0 -78053539,"Half-Life 2 Episode Two",purchase,1.0,0 -78053539,"Half-Life 2 Episode Two",play,0.2,0 -78053539,"Half-Life 2 Deathmatch",purchase,1.0,0 -78053539,"Half-Life 2 Deathmatch",play,0.2,0 -78053539,"Half-Life 2 Episode One",purchase,1.0,0 -78053539,"Half-Life 2 Episode One",play,0.1,0 -78053539,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -78053539,"Half-Life Deathmatch Source",purchase,1.0,0 -177424474,"Dota 2",purchase,1.0,0 -177424474,"Dota 2",play,157.0,0 -205240425,"Dota 2",purchase,1.0,0 -205240425,"Dota 2",play,34.0,0 -205240425,"Dead Island Epidemic",purchase,1.0,0 -205240425,"Double Action Boogaloo",purchase,1.0,0 -205240425,"Quake Live",purchase,1.0,0 -68963476,"Counter-Strike Source",purchase,1.0,0 -68963476,"Counter-Strike Source",play,218.0,0 -68963476,"Insurgency Modern Infantry Combat",purchase,1.0,0 -68963476,"Insurgency Modern Infantry Combat",play,0.7,0 -68963476,"Dota 2",purchase,1.0,0 -68963476,"Dota 2",play,0.6,0 -68963476,"Day of Defeat Source",purchase,1.0,0 -68963476,"Day of Defeat Source",play,0.4,0 -68963476,"Alien Swarm",purchase,1.0,0 -68963476,"Alien Swarm",play,0.2,0 -68963476,"Half-Life 2 Deathmatch",purchase,1.0,0 -68963476,"Half-Life 2 Deathmatch",play,0.2,0 -68963476,"Half-Life 2 Lost Coast",purchase,1.0,0 -68963476,"Midnight Club II",purchase,1.0,0 -300669819,"Rust",purchase,1.0,0 -300669819,"Rust",play,24.0,0 -300669819,"Unturned",purchase,1.0,0 -300669819,"Unturned",play,16.7,0 -300669819,"Creativerse",purchase,1.0,0 -300669819,"Creativerse",play,0.2,0 -300669819,"Trove",purchase,1.0,0 -300669819,"Trove",play,0.2,0 -300669819,"The Way of Life Free Edition",purchase,1.0,0 -300669819,"The Way of Life Free Edition",play,0.1,0 -300669819,"Defiance",purchase,1.0,0 -300669819,"RIFT",purchase,1.0,0 -300669819,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -100944287,"Zombie Panic Source",purchase,1.0,0 -100944287,"Zombie Panic Source",play,0.3,0 -187357674,"Dota 2",purchase,1.0,0 -187357674,"Dota 2",play,2.3,0 -224355955,"Dota 2",purchase,1.0,0 -224355955,"Dota 2",play,474.0,0 -168087108,"Dota 2",purchase,1.0,0 -168087108,"Dota 2",play,1368.0,0 -168087108,"Path of Exile",purchase,1.0,0 -168087108,"Warframe",purchase,1.0,0 -103638409,"Team Fortress 2",purchase,1.0,0 -103638409,"Team Fortress 2",play,369.0,0 -103638409,"The Elder Scrolls V Skyrim",purchase,1.0,0 -103638409,"The Elder Scrolls V Skyrim",play,284.0,0 -103638409,"Terraria",purchase,1.0,0 -103638409,"Terraria",play,172.0,0 -103638409,"Left 4 Dead 2",purchase,1.0,0 -103638409,"Left 4 Dead 2",play,143.0,0 -103638409,"Unturned",purchase,1.0,0 -103638409,"Unturned",play,77.0,0 -103638409,"Garry's Mod",purchase,1.0,0 -103638409,"Garry's Mod",play,61.0,0 -103638409,"Counter-Strike Global Offensive",purchase,1.0,0 -103638409,"Counter-Strike Global Offensive",play,38.0,0 -103638409,"APB Reloaded",purchase,1.0,0 -103638409,"APB Reloaded",play,33.0,0 -103638409,"Counter-Strike Nexon Zombies",purchase,1.0,0 -103638409,"Counter-Strike Nexon Zombies",play,33.0,0 -103638409,"ArcheAge",purchase,1.0,0 -103638409,"ArcheAge",play,29.0,0 -103638409,"Neverwinter",purchase,1.0,0 -103638409,"Neverwinter",play,15.1,0 -103638409,"Warframe",purchase,1.0,0 -103638409,"Warframe",play,14.9,0 -103638409,"Enclave",purchase,1.0,0 -103638409,"Enclave",play,12.3,0 -103638409,"Dragon Nest Europe",purchase,1.0,0 -103638409,"Dragon Nest Europe",play,8.3,0 -103638409,"Loadout",purchase,1.0,0 -103638409,"Loadout",play,7.9,0 -103638409,"Amnesia The Dark Descent",purchase,1.0,0 -103638409,"Amnesia The Dark Descent",play,7.4,0 -103638409,"Devilian",purchase,1.0,0 -103638409,"Devilian",play,6.1,0 -103638409,"RPG MO",purchase,1.0,0 -103638409,"RPG MO",play,6.0,0 -103638409,"PAYDAY The Heist",purchase,1.0,0 -103638409,"PAYDAY The Heist",play,5.8,0 -103638409,"Dungeon Defenders Eternity",purchase,1.0,0 -103638409,"Dungeon Defenders Eternity",play,5.4,0 -103638409,"Sniper Elite V2",purchase,1.0,0 -103638409,"Sniper Elite V2",play,4.9,0 -103638409,"PlanetSide 2",purchase,1.0,0 -103638409,"PlanetSide 2",play,3.9,0 -103638409,"Grimoire Manastorm",purchase,1.0,0 -103638409,"Grimoire Manastorm",play,3.6,0 -103638409,"Firefall",purchase,1.0,0 -103638409,"Firefall",play,3.2,0 -103638409,"Dota 2",purchase,1.0,0 -103638409,"Dota 2",play,3.1,0 -103638409,"Ace of Spades",purchase,1.0,0 -103638409,"Ace of Spades",play,2.6,0 -103638409,"Path of Exile",purchase,1.0,0 -103638409,"Path of Exile",play,2.4,0 -103638409,"Half-Life Opposing Force",purchase,1.0,0 -103638409,"Half-Life Opposing Force",play,1.9,0 -103638409,"Half-Life Blue Shift",purchase,1.0,0 -103638409,"Half-Life Blue Shift",play,1.4,0 -103638409,"Dead Island",purchase,1.0,0 -103638409,"Dead Island",play,1.4,0 -103638409,"Dead Island Epidemic",purchase,1.0,0 -103638409,"Dead Island Epidemic",play,1.1,0 -103638409,"Trove",purchase,1.0,0 -103638409,"Trove",play,0.9,0 -103638409,"Aftermath",purchase,1.0,0 -103638409,"Aftermath",play,0.8,0 -103638409,"RaiderZ",purchase,1.0,0 -103638409,"RaiderZ",play,0.8,0 -103638409,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -103638409,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,0.8,0 -103638409,"Fallen Earth",purchase,1.0,0 -103638409,"Fallen Earth",play,0.7,0 -103638409,"Double Action Boogaloo",purchase,1.0,0 -103638409,"Double Action Boogaloo",play,0.6,0 -103638409,"Batla",purchase,1.0,0 -103638409,"Batla",play,0.6,0 -103638409,"Kingdom Wars",purchase,1.0,0 -103638409,"Kingdom Wars",play,0.5,0 -103638409,"Relic Hunters Zero",purchase,1.0,0 -103638409,"Relic Hunters Zero",play,0.5,0 -103638409,"Quake Live",purchase,1.0,0 -103638409,"Quake Live",play,0.5,0 -103638409,"Two Worlds Epic Edition",purchase,1.0,0 -103638409,"Two Worlds Epic Edition",play,0.4,0 -103638409,"Defy Gravity",purchase,1.0,0 -103638409,"Defy Gravity",play,0.4,0 -103638409,"Dungeon Defenders II",purchase,1.0,0 -103638409,"Dungeon Defenders II",play,0.4,0 -103638409,"Robocraft",purchase,1.0,0 -103638409,"Robocraft",play,0.4,0 -103638409,"RIFT",purchase,1.0,0 -103638409,"RIFT",play,0.3,0 -103638409,"Loadout Campaign Beta",purchase,1.0,0 -103638409,"Loadout Campaign Beta",play,0.3,0 -103638409,"Aberoth",purchase,1.0,0 -103638409,"Aberoth",play,0.3,0 -103638409,"Brick-Force",purchase,1.0,0 -103638409,"Brick-Force",play,0.3,0 -103638409,"Afterfall InSanity Extended Edition",purchase,1.0,0 -103638409,"Afterfall InSanity Extended Edition",play,0.3,0 -103638409,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -103638409,"Rising Storm/Red Orchestra 2 Multiplayer",play,0.3,0 -103638409,"Fistful of Frags",purchase,1.0,0 -103638409,"Fistful of Frags",play,0.2,0 -103638409,"Alien Swarm",purchase,1.0,0 -103638409,"Alien Swarm",play,0.2,0 -103638409,"Half-Life",purchase,1.0,0 -103638409,"Half-Life",play,0.2,0 -103638409,"Dragomon Hunter",purchase,1.0,0 -103638409,"Dragomon Hunter",play,0.2,0 -103638409,"City of Steam Arkadia",purchase,1.0,0 -103638409,"City of Steam Arkadia",play,0.2,0 -103638409,"Cubic Castles",purchase,1.0,0 -103638409,"Cubic Castles",play,0.2,0 -103638409,"Dirty Bomb",purchase,1.0,0 -103638409,"Dirty Bomb",play,0.2,0 -103638409,"Guns and Robots",purchase,1.0,0 -103638409,"Guns and Robots",play,0.2,0 -103638409,"Pirates of Black Cove Gold",purchase,1.0,0 -103638409,"Pirates of Black Cove Gold",play,0.1,0 -103638409,"Villagers and Heroes",purchase,1.0,0 -103638409,"Villagers and Heroes",play,0.1,0 -103638409,"Arma Cold War Assault",purchase,1.0,0 -103638409,"Avencast",purchase,1.0,0 -103638409,"NEOTOKYO",purchase,1.0,0 -103638409,"Crusaders of the Lost Idols",purchase,1.0,0 -103638409,"Team Fortress Classic",purchase,1.0,0 -103638409,"Apotheon Arena",purchase,1.0,0 -103638409,"Race The Sun",purchase,1.0,0 -103638409,"Clicker Heroes",purchase,1.0,0 -103638409,"Eldevin",purchase,1.0,0 -103638409,"Mortal Online",purchase,1.0,0 -103638409,"Realm of the Mad God",purchase,1.0,0 -103638409,"SpaceChem",purchase,1.0,0 -103638409,"Hotline Miami 2 Wrong Number Digital Comic",purchase,1.0,0 -103638409,"Fractured Space",purchase,1.0,0 -103638409,"Dead Island Riptide",purchase,1.0,0 -103638409,"Defiance",purchase,1.0,0 -103638409,"Lambda Wars Beta",purchase,1.0,0 -103638409,"Lucius",purchase,1.0,0 -103638409,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -103638409,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -57918339,"Football Manager 2010",purchase,1.0,0 -57918339,"Football Manager 2010",play,16.9,0 -107554143,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -107554143,"Fallout 3 - Game of the Year Edition",play,41.0,0 -107554143,"Left 4 Dead 2",purchase,1.0,0 -107554143,"Left 4 Dead 2",play,11.8,0 -107554143,"Borderlands 2",purchase,1.0,0 -107554143,"Borderlands 2",play,1.9,0 -107554143,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -107554143,"The Witcher 2 Assassins of Kings Enhanced Edition",play,1.4,0 -70040501,"Counter-Strike Source",purchase,1.0,0 -70040501,"Counter-Strike Source",play,170.0,0 -70040501,"Mafia II",purchase,1.0,0 -70040501,"Mafia II",play,42.0,0 -20724394,"Half-Life 2",purchase,1.0,0 -20724394,"Counter-Strike Source",purchase,1.0,0 -20724394,"Half-Life 2 Deathmatch",purchase,1.0,0 -20724394,"Half-Life 2 Lost Coast",purchase,1.0,0 -20724394,"Half-Life Source",purchase,1.0,0 -20724394,"Half-Life Deathmatch Source",purchase,1.0,0 -153028703,"Dota 2",purchase,1.0,0 -153028703,"Dota 2",play,387.0,0 -153028703,"Free to Play",purchase,1.0,0 -153028703,"Tactical Intervention",purchase,1.0,0 -82536970,"Sid Meier's Civilization V",purchase,1.0,0 -82536970,"Sid Meier's Civilization V",play,311.0,0 -82536970,"Sniper Ghost Warrior 2",purchase,1.0,0 -82536970,"Sniper Ghost Warrior 2",play,11.4,0 -82536970,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -871990,"Counter-Strike Source",purchase,1.0,0 -871990,"Counter-Strike Source",play,131.0,0 -871990,"Counter-Strike",purchase,1.0,0 -871990,"Counter-Strike",play,3.0,0 -871990,"Day of Defeat",purchase,1.0,0 -871990,"Day of Defeat",play,0.2,0 -871990,"Half-Life",purchase,1.0,0 -871990,"Deathmatch Classic",purchase,1.0,0 -871990,"Half-Life 2",purchase,1.0,0 -871990,"Half-Life 2 Deathmatch",purchase,1.0,0 -871990,"Half-Life 2 Lost Coast",purchase,1.0,0 -871990,"Half-Life Blue Shift",purchase,1.0,0 -871990,"Half-Life Opposing Force",purchase,1.0,0 -871990,"Ricochet",purchase,1.0,0 -871990,"Team Fortress Classic",purchase,1.0,0 -109173829,"OMSI 2",purchase,1.0,0 -109173829,"OMSI 2",play,13.4,0 -109173829,"RaceRoom Racing Experience ",purchase,1.0,0 -109173829,"RaceRoom Racing Experience ",play,10.2,0 -109173829,"Train Simulator",purchase,1.0,0 -109173829,"Train Simulator",play,7.7,0 -109173829,"Euro Truck Simulator 2",purchase,1.0,0 -109173829,"Euro Truck Simulator 2",play,2.9,0 -109173829,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -109173829,"OMSI 2 Add-on Three Generations",purchase,1.0,0 -174709157,"Arma 3",purchase,1.0,0 -174709157,"Arma 3",play,22.0,0 -174709157,"Arma 3 Zeus",purchase,1.0,0 -102263723,"Stronghold Kingdoms",purchase,1.0,0 -102263723,"Stronghold Kingdoms",play,1303.0,0 -102263723,"Sid Meier's Civilization V",purchase,1.0,0 -102263723,"Sid Meier's Civilization V",play,218.0,0 -102263723,"Mount & Blade Warband",purchase,1.0,0 -102263723,"Mount & Blade Warband",play,189.0,0 -102263723,"X3 Albion Prelude",purchase,1.0,0 -102263723,"X3 Albion Prelude",play,133.0,0 -102263723,"Star Trek Online",purchase,1.0,0 -102263723,"Star Trek Online",play,89.0,0 -102263723,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -102263723,"Sid Meier's Civilization Beyond Earth",play,74.0,0 -102263723,"Mount & Blade With Fire and Sword",purchase,1.0,0 -102263723,"Mount & Blade With Fire and Sword",play,44.0,0 -102263723,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -102263723,"Dragon Age Origins - Ultimate Edition",play,42.0,0 -102263723,"Space Engineers",purchase,1.0,0 -102263723,"Space Engineers",play,37.0,0 -102263723,"Mount & Blade",purchase,1.0,0 -102263723,"Mount & Blade",play,31.0,0 -102263723,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -102263723,"Sins of a Solar Empire Rebellion",play,27.0,0 -102263723,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -102263723,"Baldur's Gate Enhanced Edition",play,26.0,0 -102263723,"Wind of Luck Arena",purchase,1.0,0 -102263723,"Wind of Luck Arena",play,25.0,0 -102263723,"Command and Conquer Red Alert 3",purchase,1.0,0 -102263723,"Command and Conquer Red Alert 3",play,19.2,0 -102263723,"The Witcher Enhanced Edition",purchase,1.0,0 -102263723,"The Witcher Enhanced Edition",play,17.9,0 -102263723,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -102263723,"Infinity Wars - Animated Trading Card Game",play,12.6,0 -102263723,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -102263723,"The Elder Scrolls IV Oblivion ",play,11.8,0 -102263723,"Spiral Knights",purchase,1.0,0 -102263723,"Spiral Knights",play,11.6,0 -102263723,"RPG MO",purchase,1.0,0 -102263723,"RPG MO",play,11.6,0 -102263723,"Kingdom Wars",purchase,1.0,0 -102263723,"Kingdom Wars",play,11.2,0 -102263723,"Star Wars Knights of the Old Republic",purchase,1.0,0 -102263723,"Star Wars Knights of the Old Republic",play,10.2,0 -102263723,"Stronghold 3",purchase,1.0,0 -102263723,"Stronghold 3",play,9.3,0 -102263723,"Trainz Simulator 12",purchase,1.0,0 -102263723,"Trainz Simulator 12",play,5.9,0 -102263723,"Lords of the Realm II",purchase,1.0,0 -102263723,"Lords of the Realm II",play,4.7,0 -102263723,"EverQuest II",purchase,1.0,0 -102263723,"EverQuest II",play,4.5,0 -102263723,"Crusader Kings II",purchase,1.0,0 -102263723,"Crusader Kings II",play,4.5,0 -102263723,"Rise of Flight United",purchase,1.0,0 -102263723,"Rise of Flight United",play,3.0,0 -102263723,"Portal",purchase,1.0,0 -102263723,"Portal",play,2.8,0 -102263723,"X3 Terran Conflict",purchase,1.0,0 -102263723,"X3 Terran Conflict",play,2.2,0 -102263723,"Star Conflict",purchase,1.0,0 -102263723,"Star Conflict",play,1.9,0 -102263723,"Call of Duty Modern Warfare 3",purchase,1.0,0 -102263723,"Call of Duty Modern Warfare 3",play,1.8,0 -102263723,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -102263723,"Navy Field 2 Conqueror of the Ocean",play,1.7,0 -102263723,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -102263723,"Call of Duty Modern Warfare 3 - Multiplayer",play,1.6,0 -102263723,"Lords of Magic Special Edition",purchase,1.0,0 -102263723,"Lords of Magic Special Edition",play,1.2,0 -102263723,"X Beyond the Frontier",purchase,1.0,0 -102263723,"X Beyond the Frontier",play,1.0,0 -102263723,"Sonic Adventure 2 ",purchase,1.0,0 -102263723,"Sonic Adventure 2 ",play,0.5,0 -102263723,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -102263723,"STAR WARS Knights of the Old Republic II The Sith Lords",play,0.3,0 -102263723,"Arma Cold War Assault",purchase,1.0,0 -102263723,"Arma Cold War Assault",play,0.2,0 -102263723,"Robocraft",purchase,1.0,0 -102263723,"Blender 2.76b",purchase,1.0,0 -102263723,"Path of Exile",purchase,1.0,0 -102263723,"HAWKEN",purchase,1.0,0 -102263723,"HIS (Heroes In the Sky)",purchase,1.0,0 -102263723,"Lords of the Realm",purchase,1.0,0 -102263723,"Lords of the Realm III",purchase,1.0,0 -102263723,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -102263723,"X-Tension",purchase,1.0,0 -102263723,"X2 The Threat",purchase,1.0,0 -102263723,"X3 Reunion",purchase,1.0,0 -82895724,"Half-Life 2 Lost Coast",purchase,1.0,0 -82895724,"Half-Life 2 Deathmatch",purchase,1.0,0 -82895724,"Amnesia The Dark Descent",purchase,1.0,0 -140488802,"Dota 2",purchase,1.0,0 -140488802,"Dota 2",play,2320.0,0 -211264421,"Dota 2",purchase,1.0,0 -211264421,"Dota 2",play,0.5,0 -193092714,"Dota 2",purchase,1.0,0 -193092714,"Dota 2",play,0.1,0 -263079356,"Dota 2",purchase,1.0,0 -263079356,"Dota 2",play,0.2,0 -273021336,"Football Manager 2015",purchase,1.0,0 -273021336,"Football Manager 2015",play,161.0,0 -273021336,"Football Manager 2016",purchase,1.0,0 -273021336,"Football Manager 2016",play,30.0,0 -273021336,"Fishing Planet",purchase,1.0,0 -273021336,"Fishing Planet",play,2.5,0 -273021336,"Soccer Manager 2016",purchase,1.0,0 -273021336,"Soccer Manager 2016",play,1.6,0 -273021336,"theHunter",purchase,1.0,0 -273021336,"theHunter",play,1.3,0 -273021336,"Soccer Manager 2015",purchase,1.0,0 -273021336,"Soccer Manager 2015",play,1.1,0 -273021336,"World of Soccer online",purchase,1.0,0 -273021336,"World of Soccer online",play,0.2,0 -103848468,"Half-Life 2",purchase,1.0,0 -103848468,"Half-Life 2",play,6.3,0 -103848468,"The Elder Scrolls V Skyrim",purchase,1.0,0 -103848468,"The Elder Scrolls V Skyrim",play,4.6,0 -103848468,"Half-Life 2 Episode One",purchase,1.0,0 -103848468,"Half-Life 2 Episode One",play,2.3,0 -103848468,"Collapse",purchase,1.0,0 -103848468,"Collapse",play,1.8,0 -103848468,"Duke Nukem Forever ",purchase,1.0,0 -103848468,"Duke Nukem Forever ",play,1.1,0 -103848468,"Shadow Warrior",purchase,1.0,0 -103848468,"Shadow Warrior",play,0.3,0 -103848468,"Serious Sam 3 BFE",purchase,1.0,0 -103848468,"Serious Sam 3 BFE",play,0.3,0 -103848468,"Risen 2 - Dark Waters",purchase,1.0,0 -103848468,"Risen 2 - Dark Waters",play,0.1,0 -103848468,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -103848468,"Alan Wake",purchase,1.0,0 -103848468,"Half-Life 2 Deathmatch",purchase,1.0,0 -103848468,"Half-Life 2 Episode Two",purchase,1.0,0 -103848468,"Half-Life 2 Lost Coast",purchase,1.0,0 -103848468,"Half-Life Deathmatch Source",purchase,1.0,0 -103848468,"Portal",purchase,1.0,0 -103848468,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -103848468,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -103848468,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -103848468,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -103848468,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -271454872,"Dota 2",purchase,1.0,0 -271454872,"Dota 2",play,11.4,0 -106578843,"Counter-Strike",purchase,1.0,0 -106578843,"Counter-Strike",play,1002.0,0 -106578843,"Counter-Strike Global Offensive",purchase,1.0,0 -106578843,"Counter-Strike Global Offensive",play,517.0,0 -106578843,"PAYDAY The Heist",purchase,1.0,0 -106578843,"PAYDAY The Heist",play,4.9,0 -106578843,"Team Fortress 2",purchase,1.0,0 -106578843,"Team Fortress 2",play,4.0,0 -106578843,"Dota 2",purchase,1.0,0 -106578843,"Dota 2",play,0.6,0 -106578843,"War Thunder",purchase,1.0,0 -106578843,"Counter-Strike Condition Zero",purchase,1.0,0 -106578843,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -106578843,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",purchase,1.0,0 -106578843,"Sinister City",purchase,1.0,0 -191692022,"Dota 2",purchase,1.0,0 -191692022,"Dota 2",play,0.2,0 -58350807,"MLB Front Office Manager",purchase,1.0,0 -58350807,"MLB Front Office Manager",play,88.0,0 -279668062,"Unturned",purchase,1.0,0 -279668062,"Unturned",play,10.1,0 -243998409,"Dota 2",purchase,1.0,0 -243998409,"Dota 2",play,0.7,0 -215253129,"Robocraft",purchase,1.0,0 -215253129,"Robocraft",play,21.0,0 -215253129,"Warface",purchase,1.0,0 -215253129,"Warface",play,8.1,0 -215253129,"Gear Up",purchase,1.0,0 -215253129,"Gear Up",play,0.4,0 -215253129,"Defiance",purchase,1.0,0 -215253129,"Defiance",play,0.4,0 -178156640,"Team Fortress 2",purchase,1.0,0 -178156640,"Team Fortress 2",play,0.5,0 -189398521,"Unturned",purchase,1.0,0 -189398521,"Unturned",play,37.0,0 -189398521,"Happy Wars",purchase,1.0,0 -202706694,"Robocraft",purchase,1.0,0 -202706694,"Robocraft",play,128.0,0 -106004548,"Sid Meier's Civilization V",purchase,1.0,0 -106004548,"Sid Meier's Civilization V",play,1247.0,0 -305417173,"Dota 2",purchase,1.0,0 -305417173,"Dota 2",play,3.8,0 -239928300,"Terraria",purchase,1.0,0 -239928300,"Terraria",play,94.0,0 -239928300,"Magic Duels",purchase,1.0,0 -239928300,"Magic Duels",play,5.4,0 -239928300,"Magicka Wizard Wars",purchase,1.0,0 -239928300,"Magicka Wizard Wars",play,0.8,0 -69005851,"Empire Total War",purchase,1.0,0 -69005851,"Empire Total War",play,1.3,0 -243921660,"Marvel Puzzle Quest",purchase,1.0,0 -243921660,"Marvel Puzzle Quest",play,927.0,0 -243921660,"Super Meat Boy",purchase,1.0,0 -243921660,"Super Meat Boy",play,1.3,0 -243921660,"SMITE",purchase,1.0,0 -68673468,"The Elder Scrolls III Morrowind",purchase,1.0,0 -68673468,"The Elder Scrolls III Morrowind",play,13.6,0 -68673468,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -68673468,"Dark Souls Prepare to Die Edition",play,4.1,0 -206266308,"Pro Evolution Soccer 2015",purchase,1.0,0 -206266308,"Pro Evolution Soccer 2015",play,892.0,0 -169798907,"Dota 2",purchase,1.0,0 -169798907,"Dota 2",play,0.4,0 -169798907,"Team Fortress 2",purchase,1.0,0 -169798907,"Team Fortress 2",play,0.4,0 -303962685,"Dota 2",purchase,1.0,0 -303962685,"Dota 2",play,4.8,0 -202329485,"Dota 2",purchase,1.0,0 -202329485,"Dota 2",play,1.7,0 -202329485,"March of War",purchase,1.0,0 -205340007,"Team Fortress 2",purchase,1.0,0 -205340007,"Team Fortress 2",play,4.4,0 -191670145,"Dota 2",purchase,1.0,0 -191670145,"Dota 2",play,11.8,0 -298504348,"Dota 2",purchase,1.0,0 -298504348,"Dota 2",play,0.2,0 -93108463,"Sid Meier's Civilization V",purchase,1.0,0 -93108463,"Sid Meier's Civilization V",play,18.2,0 -93108463,"Left 4 Dead 2",purchase,1.0,0 -93108463,"Left 4 Dead 2",play,7.6,0 -93108463,"DARK SOULS II",purchase,1.0,0 -93108463,"DARK SOULS II",play,1.2,0 -93108463,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -93108463,"Call of Duty Modern Warfare 3 - Multiplayer",play,0.8,0 -93108463,"Warframe",purchase,1.0,0 -93108463,"Warframe",play,0.5,0 -93108463,"Call of Duty Modern Warfare 3",purchase,1.0,0 -93108463,"Call of Duty Modern Warfare 3",play,0.3,0 -93108463,"Terraria",purchase,1.0,0 -93108463,"Terraria",play,0.3,0 -148619573,"Dota 2",purchase,1.0,0 -148619573,"Dota 2",play,807.0,0 -69954842,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -69954842,"Call of Duty Black Ops II - Multiplayer",play,365.0,0 -69954842,"ARK Survival Evolved",purchase,1.0,0 -69954842,"ARK Survival Evolved",play,240.0,0 -69954842,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -69954842,"Call of Duty Modern Warfare 3 - Multiplayer",play,221.0,0 -69954842,"Sid Meier's Civilization V",purchase,1.0,0 -69954842,"Sid Meier's Civilization V",play,161.0,0 -69954842,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -69954842,"Call of Duty Modern Warfare 2 - Multiplayer",play,89.0,0 -69954842,"Puzzle Quest",purchase,1.0,0 -69954842,"Puzzle Quest",play,81.0,0 -69954842,"DiRT Rally",purchase,1.0,0 -69954842,"DiRT Rally",play,62.0,0 -69954842,"DiRT 3",purchase,1.0,0 -69954842,"DiRT 3",play,62.0,0 -69954842,"Might & Magic Clash of Heroes",purchase,1.0,0 -69954842,"Might & Magic Clash of Heroes",play,56.0,0 -69954842,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -69954842,"Call of Duty Advanced Warfare - Multiplayer",play,42.0,0 -69954842,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -69954842,"METAL GEAR SOLID V THE PHANTOM PAIN",play,38.0,0 -69954842,"The Walking Dead",purchase,1.0,0 -69954842,"The Walking Dead",play,31.0,0 -69954842,"DiRT 2",purchase,1.0,0 -69954842,"DiRT 2",play,27.0,0 -69954842,"Supreme Commander 2",purchase,1.0,0 -69954842,"Supreme Commander 2",play,27.0,0 -69954842,"Middle-earth Shadow of Mordor",purchase,1.0,0 -69954842,"Middle-earth Shadow of Mordor",play,25.0,0 -69954842,"L.A. Noire",purchase,1.0,0 -69954842,"L.A. Noire",play,25.0,0 -69954842,"Tomb Raider",purchase,1.0,0 -69954842,"Tomb Raider",play,24.0,0 -69954842,"Call of Duty Modern Warfare 3",purchase,1.0,0 -69954842,"Call of Duty Modern Warfare 3",play,23.0,0 -69954842,"The Elder Scrolls V Skyrim",purchase,1.0,0 -69954842,"The Elder Scrolls V Skyrim",play,22.0,0 -69954842,"Trials Evolution Gold Edition",purchase,1.0,0 -69954842,"Trials Evolution Gold Edition",play,20.0,0 -69954842,"Assassin's Creed II",purchase,1.0,0 -69954842,"Assassin's Creed II",play,20.0,0 -69954842,"Assassin's Creed Brotherhood",purchase,1.0,0 -69954842,"Assassin's Creed Brotherhood",play,19.7,0 -69954842,"Life Is Strange",purchase,1.0,0 -69954842,"Life Is Strange",play,19.6,0 -69954842,"Trine 2",purchase,1.0,0 -69954842,"Trine 2",play,19.2,0 -69954842,"Hitman Absolution",purchase,1.0,0 -69954842,"Hitman Absolution",play,19.2,0 -69954842,"Sleeping Dogs",purchase,1.0,0 -69954842,"Sleeping Dogs",play,18.7,0 -69954842,"Saints Row The Third",purchase,1.0,0 -69954842,"Saints Row The Third",play,18.5,0 -69954842,"Portal 2",purchase,1.0,0 -69954842,"Portal 2",play,18.4,0 -69954842,"Borderlands",purchase,1.0,0 -69954842,"Borderlands",play,18.4,0 -69954842,"Dishonored",purchase,1.0,0 -69954842,"Dishonored",play,15.7,0 -69954842,"RAGE",purchase,1.0,0 -69954842,"RAGE",play,15.1,0 -69954842,"Torchlight II",purchase,1.0,0 -69954842,"Torchlight II",play,14.9,0 -69954842,"Mafia II",purchase,1.0,0 -69954842,"Mafia II",play,14.6,0 -69954842,"Sniper Elite 3",purchase,1.0,0 -69954842,"Sniper Elite 3",play,13.9,0 -69954842,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -69954842,"Call of Duty Black Ops - Multiplayer",play,13.6,0 -69954842,"Broken Age",purchase,1.0,0 -69954842,"Broken Age",play,13.4,0 -69954842,"Alan Wake",purchase,1.0,0 -69954842,"Alan Wake",play,13.2,0 -69954842,"BioShock Infinite",purchase,1.0,0 -69954842,"BioShock Infinite",play,13.1,0 -69954842,"Napoleon Total War",purchase,1.0,0 -69954842,"Napoleon Total War",play,12.5,0 -69954842,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -69954842,"Game of Thrones - A Telltale Games Series",play,12.2,0 -69954842,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -69954842,"Plants vs. Zombies Game of the Year",play,12.0,0 -69954842,"Metro Last Light",purchase,1.0,0 -69954842,"Metro Last Light",play,11.9,0 -69954842,"The Wolf Among Us",purchase,1.0,0 -69954842,"The Wolf Among Us",play,11.8,0 -69954842,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -69954842,"Batman Arkham Asylum GOTY Edition",play,11.8,0 -69954842,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -69954842,"Warhammer 40,000 Dawn of War II",play,11.8,0 -69954842,"Tales from the Borderlands",purchase,1.0,0 -69954842,"Tales from the Borderlands",play,11.5,0 -69954842,"BattleBlock Theater",purchase,1.0,0 -69954842,"BattleBlock Theater",play,11.4,0 -69954842,"The Talos Principle",purchase,1.0,0 -69954842,"The Talos Principle",play,11.3,0 -69954842,"GRID 2",purchase,1.0,0 -69954842,"GRID 2",play,10.8,0 -69954842,"Alien Swarm",purchase,1.0,0 -69954842,"Alien Swarm",play,10.5,0 -69954842,"Call of Duty Black Ops III",purchase,1.0,0 -69954842,"Call of Duty Black Ops III",play,10.2,0 -69954842,"Intrusion 2",purchase,1.0,0 -69954842,"Intrusion 2",play,10.1,0 -69954842,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -69954842,"The Witcher 2 Assassins of Kings Enhanced Edition",play,10.1,0 -69954842,"Lara Croft and the Guardian of Light",purchase,1.0,0 -69954842,"Lara Croft and the Guardian of Light",play,9.9,0 -69954842,"Zuma's Revenge",purchase,1.0,0 -69954842,"Zuma's Revenge",play,9.3,0 -69954842,"World of Goo",purchase,1.0,0 -69954842,"World of Goo",play,9.2,0 -69954842,"Call of Duty Black Ops II",purchase,1.0,0 -69954842,"Call of Duty Black Ops II",play,8.7,0 -69954842,"MURDERED SOUL SUSPECT",purchase,1.0,0 -69954842,"MURDERED SOUL SUSPECT",play,8.5,0 -69954842,"Magicka",purchase,1.0,0 -69954842,"Magicka",play,8.4,0 -69954842,"DiRT 3 Complete Edition",purchase,1.0,0 -69954842,"DiRT 3 Complete Edition",play,7.9,0 -69954842,"Mirror's Edge",purchase,1.0,0 -69954842,"Mirror's Edge",play,7.9,0 -69954842,"Left 4 Dead 2",purchase,1.0,0 -69954842,"Left 4 Dead 2",play,7.7,0 -69954842,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -69954842,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",play,7.6,0 -69954842,"Borderlands 2",purchase,1.0,0 -69954842,"Borderlands 2",play,7.6,0 -69954842,"Call of Duty Advanced Warfare",purchase,1.0,0 -69954842,"Call of Duty Advanced Warfare",play,7.6,0 -69954842,"XCOM Enemy Unknown",purchase,1.0,0 -69954842,"XCOM Enemy Unknown",play,6.9,0 -69954842,"Metro 2033 Redux",purchase,1.0,0 -69954842,"Metro 2033 Redux",play,6.6,0 -69954842,"Puzzle Quest Galactrix",purchase,1.0,0 -69954842,"Puzzle Quest Galactrix",play,6.6,0 -69954842,"Call of Duty Black Ops",purchase,1.0,0 -69954842,"Call of Duty Black Ops",play,6.5,0 -69954842,"Crysis",purchase,1.0,0 -69954842,"Crysis",play,6.4,0 -69954842,"Bastion",purchase,1.0,0 -69954842,"Bastion",play,6.4,0 -69954842,"Spec Ops The Line",purchase,1.0,0 -69954842,"Spec Ops The Line",play,6.4,0 -69954842,"Mortal Kombat Komplete Edition",purchase,1.0,0 -69954842,"Mortal Kombat Komplete Edition",play,6.3,0 -69954842,"Call of Juarez Gunslinger",purchase,1.0,0 -69954842,"Call of Juarez Gunslinger",play,6.2,0 -69954842,"Shadow Warrior",purchase,1.0,0 -69954842,"Shadow Warrior",play,6.0,0 -69954842,"F.E.A.R. 3",purchase,1.0,0 -69954842,"F.E.A.R. 3",play,5.8,0 -69954842,"Trials 2 Second Edition",purchase,1.0,0 -69954842,"Trials 2 Second Edition",play,5.7,0 -69954842,"Mass Effect 2",purchase,1.0,0 -69954842,"Mass Effect 2",play,5.6,0 -69954842,"Rayman Origins",purchase,1.0,0 -69954842,"Rayman Origins",play,5.3,0 -69954842,"Batman Arkham City GOTY",purchase,1.0,0 -69954842,"Batman Arkham City GOTY",play,5.2,0 -69954842,"Trine",purchase,1.0,0 -69954842,"Trine",play,5.0,0 -69954842,"3DMark",purchase,1.0,0 -69954842,"3DMark",play,5.0,0 -69954842,"The Vanishing of Ethan Carter",purchase,1.0,0 -69954842,"The Vanishing of Ethan Carter",play,4.9,0 -69954842,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -69954842,"Superbrothers Sword & Sworcery EP",play,4.9,0 -69954842,"FTL Faster Than Light",purchase,1.0,0 -69954842,"FTL Faster Than Light",play,4.9,0 -69954842,"Alan Wake's American Nightmare",purchase,1.0,0 -69954842,"Alan Wake's American Nightmare",play,4.8,0 -69954842,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -69954842,"Tom Clancy's Splinter Cell Conviction",play,4.7,0 -69954842,"Deadlight",purchase,1.0,0 -69954842,"Deadlight",play,4.7,0 -69954842,"Renegade Ops",purchase,1.0,0 -69954842,"Renegade Ops",play,4.4,0 -69954842,"To the Moon",purchase,1.0,0 -69954842,"To the Moon",play,4.4,0 -69954842,"Dead Island",purchase,1.0,0 -69954842,"Dead Island",play,4.3,0 -69954842,"Call of Duty Modern Warfare 2",purchase,1.0,0 -69954842,"Call of Duty Modern Warfare 2",play,4.3,0 -69954842,"Left 4 Dead",purchase,1.0,0 -69954842,"Left 4 Dead",play,4.0,0 -69954842,"Dead Space",purchase,1.0,0 -69954842,"Dead Space",play,3.9,0 -69954842,"Fahrenheit Indigo Prophecy Remastered",purchase,1.0,0 -69954842,"Fahrenheit Indigo Prophecy Remastered",play,3.9,0 -69954842,"Spelunky",purchase,1.0,0 -69954842,"Spelunky",play,3.8,0 -69954842,"Bejeweled 3",purchase,1.0,0 -69954842,"Bejeweled 3",play,3.7,0 -69954842,"Super Meat Boy",purchase,1.0,0 -69954842,"Super Meat Boy",play,3.6,0 -69954842,"LIMBO",purchase,1.0,0 -69954842,"LIMBO",play,3.6,0 -69954842,"Driver San Francisco",purchase,1.0,0 -69954842,"Driver San Francisco",play,3.5,0 -69954842,"Mark of the Ninja",purchase,1.0,0 -69954842,"Mark of the Ninja",play,3.4,0 -69954842,"Child of Light",purchase,1.0,0 -69954842,"Child of Light",play,3.3,0 -69954842,"Warhammer 40,000 Space Marine",purchase,1.0,0 -69954842,"Warhammer 40,000 Space Marine",play,3.3,0 -69954842,"Plain Sight",purchase,1.0,0 -69954842,"Plain Sight",play,3.3,0 -69954842,"Just Cause 2",purchase,1.0,0 -69954842,"Just Cause 2",play,3.3,0 -69954842,"Unmechanical",purchase,1.0,0 -69954842,"Unmechanical",play,3.3,0 -69954842,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -69954842,"Dragon Age Origins - Ultimate Edition",play,2.9,0 -69954842,"Poker Night 2",purchase,1.0,0 -69954842,"Poker Night 2",play,2.9,0 -69954842,"Osmos",purchase,1.0,0 -69954842,"Osmos",play,2.7,0 -69954842,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -69954842,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,2.6,0 -69954842,"Might & Magic Heroes VI",purchase,1.0,0 -69954842,"Might & Magic Heroes VI",play,2.4,0 -69954842,"PixelJunk Eden",purchase,1.0,0 -69954842,"PixelJunk Eden",play,2.4,0 -69954842,"Gone Home",purchase,1.0,0 -69954842,"Gone Home",play,2.4,0 -69954842,"Awesomenauts",purchase,1.0,0 -69954842,"Awesomenauts",play,2.3,0 -69954842,"Sine Mora",purchase,1.0,0 -69954842,"Sine Mora",play,2.3,0 -69954842,"Brothers - A Tale of Two Sons",purchase,1.0,0 -69954842,"Brothers - A Tale of Two Sons",play,2.3,0 -69954842,"Geometry Wars Retro Evolved",purchase,1.0,0 -69954842,"Geometry Wars Retro Evolved",play,2.2,0 -69954842,"Toki Tori",purchase,1.0,0 -69954842,"Toki Tori",play,2.2,0 -69954842,"BioShock",purchase,1.0,0 -69954842,"BioShock",play,2.1,0 -69954842,"Papers, Please",purchase,1.0,0 -69954842,"Papers, Please",play,2.1,0 -69954842,"Syder Arcade",purchase,1.0,0 -69954842,"Syder Arcade",play,2.0,0 -69954842,"Half-Life 2",purchase,1.0,0 -69954842,"Half-Life 2",play,2.0,0 -69954842,"Rogue Legacy",purchase,1.0,0 -69954842,"Rogue Legacy",play,1.8,0 -69954842,"Grand Theft Auto IV",purchase,1.0,0 -69954842,"Grand Theft Auto IV",play,1.8,0 -69954842,"Prince of Persia",purchase,1.0,0 -69954842,"Prince of Persia",play,1.7,0 -69954842,"Dust An Elysian Tail",purchase,1.0,0 -69954842,"Dust An Elysian Tail",play,1.7,0 -69954842,"The Stanley Parable",purchase,1.0,0 -69954842,"The Stanley Parable",play,1.6,0 -69954842,"Race The Sun",purchase,1.0,0 -69954842,"Race The Sun",play,1.5,0 -69954842,"Bully Scholarship Edition",purchase,1.0,0 -69954842,"Bully Scholarship Edition",play,1.4,0 -69954842,"Peggle Deluxe",purchase,1.0,0 -69954842,"Peggle Deluxe",play,1.4,0 -69954842,"Transistor",purchase,1.0,0 -69954842,"Transistor",play,1.3,0 -69954842,"Free to Play",purchase,1.0,0 -69954842,"Free to Play",play,1.3,0 -69954842,"Killing Floor",purchase,1.0,0 -69954842,"Killing Floor",play,1.3,0 -69954842,"Poker Night at the Inventory",purchase,1.0,0 -69954842,"Poker Night at the Inventory",play,1.3,0 -69954842,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -69954842,"Sid Meier's Civilization IV Warlords",play,1.3,0 -69954842,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -69954842,"Burnout Paradise The Ultimate Box",play,1.1,0 -69954842,"Dear Esther",purchase,1.0,0 -69954842,"Dear Esther",play,1.0,0 -69954842,"Giana Sisters Twisted Dreams",purchase,1.0,0 -69954842,"Giana Sisters Twisted Dreams",play,1.0,0 -69954842,"Euro Truck Simulator 2",purchase,1.0,0 -69954842,"Euro Truck Simulator 2",play,0.9,0 -69954842,"Worms Reloaded",purchase,1.0,0 -69954842,"Worms Reloaded",play,0.8,0 -69954842,"Metro 2033",purchase,1.0,0 -69954842,"Metro 2033",play,0.8,0 -69954842,"Guacamelee! Gold Edition",purchase,1.0,0 -69954842,"Guacamelee! Gold Edition",play,0.8,0 -69954842,"Portal Stories Mel",purchase,1.0,0 -69954842,"Portal Stories Mel",play,0.7,0 -69954842,"Medal of Honor(TM) Single Player",purchase,1.0,0 -69954842,"Medal of Honor(TM) Single Player",play,0.7,0 -69954842,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -69954842,"Call of Duty Black Ops II - Zombies",play,0.7,0 -69954842,"Team Fortress 2",purchase,1.0,0 -69954842,"Team Fortress 2",play,0.6,0 -69954842,"Homefront",purchase,1.0,0 -69954842,"Homefront",play,0.6,0 -69954842,"Hotline Miami",purchase,1.0,0 -69954842,"Hotline Miami",play,0.6,0 -69954842,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -69954842,"METAL GEAR RISING REVENGEANCE",play,0.6,0 -69954842,"Gunpoint",purchase,1.0,0 -69954842,"Gunpoint",play,0.6,0 -69954842,"Strike Suit Infinity",purchase,1.0,0 -69954842,"Strike Suit Infinity",play,0.5,0 -69954842,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -69954842,"Grand Theft Auto Episodes from Liberty City",play,0.5,0 -69954842,"Joe Danger",purchase,1.0,0 -69954842,"Joe Danger",play,0.5,0 -69954842,"FEZ",purchase,1.0,0 -69954842,"FEZ",play,0.5,0 -69954842,"Razor2 Hidden Skies",purchase,1.0,0 -69954842,"Razor2 Hidden Skies",play,0.4,0 -69954842,"Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald A Whirlwind Heist",purchase,1.0,0 -69954842,"Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald A Whirlwind Heist",play,0.4,0 -69954842,"State of Decay",purchase,1.0,0 -69954842,"State of Decay",play,0.3,0 -69954842,"Braid",purchase,1.0,0 -69954842,"Braid",play,0.3,0 -69954842,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -69954842,"The Secret of Monkey Island Special Edition",play,0.3,0 -69954842,"Company of Heroes",purchase,1.0,0 -69954842,"Company of Heroes",play,0.3,0 -69954842,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -69954842,"Sam & Max 301 The Penal Zone",play,0.3,0 -69954842,"PAC-MAN Championship Edition DX+",purchase,1.0,0 -69954842,"PAC-MAN Championship Edition DX+",play,0.3,0 -69954842,"The Witcher Enhanced Edition",purchase,1.0,0 -69954842,"The Witcher Enhanced Edition",play,0.3,0 -69954842,"Bionic Commando Rearmed",purchase,1.0,0 -69954842,"Bionic Commando Rearmed",play,0.3,0 -69954842,"SkyDrift",purchase,1.0,0 -69954842,"SkyDrift",play,0.2,0 -69954842,"ENSLAVED Odyssey to the West Premium Edition",purchase,1.0,0 -69954842,"ENSLAVED Odyssey to the West Premium Edition",play,0.2,0 -69954842,"SteamWorld Dig",purchase,1.0,0 -69954842,"SteamWorld Dig",play,0.2,0 -69954842,"Crysis Wars",purchase,1.0,0 -69954842,"Crysis Wars",play,0.1,0 -69954842,"Sid Meier's Civilization IV",purchase,1.0,0 -69954842,"LUFTRAUSERS",purchase,1.0,0 -69954842,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -69954842,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -69954842,"3DMark API Overhead feature test",purchase,1.0,0 -69954842,"3DMark Cloud Gate benchmark",purchase,1.0,0 -69954842,"3DMark Fire Strike benchmark",purchase,1.0,0 -69954842,"3DMark Ice Storm benchmark",purchase,1.0,0 -69954842,"3DMark Sky Diver benchmark",purchase,1.0,0 -69954842,"Alpha Protocol",purchase,1.0,0 -69954842,"Antichamber",purchase,1.0,0 -69954842,"Assassin's Creed",purchase,1.0,0 -69954842,"A Virus Named TOM",purchase,1.0,0 -69954842,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -69954842,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -69954842,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -69954842,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -69954842,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -69954842,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -69954842,"BIT.TRIP RUNNER",purchase,1.0,0 -69954842,"BookWorm Deluxe",purchase,1.0,0 -69954842,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -69954842,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -69954842,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -69954842,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -69954842,"Brtal Legend",purchase,1.0,0 -69954842,"Call of Duty Modern Warfare 2 - Resurgence Pack",purchase,1.0,0 -69954842,"Call of Duty Modern Warfare 2 Stimulus Package",purchase,1.0,0 -69954842,"Capsized",purchase,1.0,0 -69954842,"Castlevania Lords of Shadow - Ultimate Edition",purchase,1.0,0 -69954842,"Company of Heroes (New Steam Version)",purchase,1.0,0 -69954842,"Company of Heroes Opposing Fronts",purchase,1.0,0 -69954842,"Company of Heroes Tales of Valor",purchase,1.0,0 -69954842,"Crusader Kings II",purchase,1.0,0 -69954842,"Crysis Warhead",purchase,1.0,0 -69954842,"Darksiders",purchase,1.0,0 -69954842,"Dead Space 2",purchase,1.0,0 -69954842,"Deponia",purchase,1.0,0 -69954842,"Deus Ex Human Revolution",purchase,1.0,0 -69954842,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -69954842,"Dungeon Defenders",purchase,1.0,0 -69954842,"Eets Munchies",purchase,1.0,0 -69954842,"Escape Rosecliff Island",purchase,1.0,0 -69954842,"Feeding Frenzy 2 Shipwreck Showdown Deluxe",purchase,1.0,0 -69954842,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -69954842,"Giana Sisters Twisted Dreams - Rise of the Owlverlord",purchase,1.0,0 -69954842,"Half-Life 2 Deathmatch",purchase,1.0,0 -69954842,"Half-Life 2 Episode One",purchase,1.0,0 -69954842,"Half-Life 2 Episode Two",purchase,1.0,0 -69954842,"Half-Life 2 Lost Coast",purchase,1.0,0 -69954842,"Half-Life Deathmatch Source",purchase,1.0,0 -69954842,"Hammerwatch",purchase,1.0,0 -69954842,"Hard Reset",purchase,1.0,0 -69954842,"Hard Reset Exile DLC",purchase,1.0,0 -69954842,"Hector Ep 1",purchase,1.0,0 -69954842,"Hector Ep 2",purchase,1.0,0 -69954842,"Hector Ep 3",purchase,1.0,0 -69954842,"HOARD",purchase,1.0,0 -69954842,"Joe Danger 2 The Movie",purchase,1.0,0 -69954842,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -69954842,"Kung Fury",purchase,1.0,0 -69954842,"Legend of Grimrock",purchase,1.0,0 -69954842,"Lost Planet 3",purchase,1.0,0 -69954842,"Mass Effect",purchase,1.0,0 -69954842,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -69954842,"Medal of Honor Pre-Order",purchase,1.0,0 -69954842,"Monaco",purchase,1.0,0 -69954842,"Monkey Island 2 Special Edition",purchase,1.0,0 -69954842,"MX vs. ATV Reflex",purchase,1.0,0 -69954842,"NightSky",purchase,1.0,0 -69954842,"Orcs Must Die! 2",purchase,1.0,0 -69954842,"Outland",purchase,1.0,0 -69954842,"Papo & Yo",purchase,1.0,0 -69954842,"Peggle Nights",purchase,1.0,0 -69954842,"Portal",purchase,1.0,0 -69954842,"Prince of Persia The Forgotten Sands",purchase,1.0,0 -69954842,"Prison Architect",purchase,1.0,0 -69954842,"Prototype",purchase,1.0,0 -69954842,"Psychonauts",purchase,1.0,0 -69954842,"Psychonauts Demo",purchase,1.0,0 -69954842,"Puzzle Agent",purchase,1.0,0 -69954842,"Puzzle Agent 2",purchase,1.0,0 -69954842,"Puzzle Dimension",purchase,1.0,0 -69954842,"Quake Live",purchase,1.0,0 -69954842,"Receiver",purchase,1.0,0 -69954842,"Red Faction Armageddon",purchase,1.0,0 -69954842,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -69954842,"Remember Me",purchase,1.0,0 -69954842,"resident evil 4 / biohazard 4",purchase,1.0,0 -69954842,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -69954842,"Resident Evil Revelations / Biohazard Revelations",purchase,1.0,0 -69954842,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -69954842,"Retro/Grade",purchase,1.0,0 -69954842,"Reus",purchase,1.0,0 -69954842,"Rise of Nations Extended Edition",purchase,1.0,0 -69954842,"Rochard",purchase,1.0,0 -69954842,"Rochard - Hard Times",purchase,1.0,0 -69954842,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -69954842,"Saints Row IV",purchase,1.0,0 -69954842,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -69954842,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -69954842,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -69954842,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -69954842,"Sid Meier's Civilization IV",purchase,1.0,0 -69954842,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -69954842,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -69954842,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -69954842,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -69954842,"Starseed Pilgrim",purchase,1.0,0 -69954842,"Stealth Inc 2",purchase,1.0,0 -69954842,"Strider",purchase,1.0,0 -69954842,"Strike Suit Zero",purchase,1.0,0 -69954842,"Sunrider Mask of Arcadius",purchase,1.0,0 -69954842,"Super Hexagon",purchase,1.0,0 -69954842,"Supreme Commander 2 - Infinite War Battle Pack One",purchase,1.0,0 -69954842,"Surgeon Simulator",purchase,1.0,0 -69954842,"Syberia",purchase,1.0,0 -69954842,"Syberia 2",purchase,1.0,0 -69954842,"Terraria",purchase,1.0,0 -69954842,"The Book of Unwritten Tales",purchase,1.0,0 -69954842,"The Bridge",purchase,1.0,0 -69954842,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -69954842,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -69954842,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -69954842,"The Swapper",purchase,1.0,0 -69954842,"The Vanishing of Ethan Carter Redux",purchase,1.0,0 -69954842,"Thief",purchase,1.0,0 -69954842,"Toki Tori 2+",purchase,1.0,0 -69954842,"Tom Clancy's Rainbow Six Vegas",purchase,1.0,0 -69954842,"Tom Clancy's Rainbow Six Vegas 2",purchase,1.0,0 -69954842,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -69954842,"Valkyria Chronicles",purchase,1.0,0 -69954842,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -69954842,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -69954842,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -69954842,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -69954842,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -69954842,"Wallace & Gromit Ep 1 Fright of the Bumblebees",purchase,1.0,0 -69954842,"Wallace & Gromit Ep 2 The Last Resort",purchase,1.0,0 -69954842,"Wallace & Gromit Ep 3 Muzzled!",purchase,1.0,0 -69954842,"Wallace & Gromit Ep 4 The Bogey Man",purchase,1.0,0 -69954842,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -69954842,"Warlock - Master of the Arcane",purchase,1.0,0 -69954842,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -69954842,"Waveform",purchase,1.0,0 -69954842,"Zeno Clash",purchase,1.0,0 -156373246,"Dota 2",purchase,1.0,0 -156373246,"Dota 2",play,0.7,0 -213988015,"Dota 2",purchase,1.0,0 -213988015,"Dota 2",play,0.3,0 -166267643,"Dota 2",purchase,1.0,0 -166267643,"Dota 2",play,1.6,0 -83599495,"Sid Meier's Civilization V",purchase,1.0,0 -83599495,"Sid Meier's Civilization V",play,23.0,0 -83599495,"Torchlight II",purchase,1.0,0 -83599495,"Torchlight II",play,16.3,0 -83599495,"Team Fortress 2",purchase,1.0,0 -83599495,"Team Fortress 2",play,0.1,0 -83599495,"Heroes of Scene",purchase,1.0,0 -83599495,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -83599495,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -303128637,"Don't Starve",purchase,1.0,0 -303128637,"Don't Starve",play,13.0,0 -303128637,"Don't Starve Shipwrecked",purchase,1.0,0 -303128637,"Don't Starve Reign of Giants",purchase,1.0,0 -119103675,"Football Manager 2013",purchase,1.0,0 -119103675,"Football Manager 2013",play,361.0,0 -233000303,"Sid Meier's Civilization V",purchase,1.0,0 -233000303,"Sid Meier's Civilization V",play,126.0,0 -233000303,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -233000303,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -183306243,"Goat Simulator",purchase,1.0,0 -183306243,"Goat Simulator",play,3.2,0 -183306243,"Happy Wars",purchase,1.0,0 -183306243,"Happy Wars",play,0.5,0 -183306243,"Heroes & Generals",purchase,1.0,0 -183306243,"Robocraft",purchase,1.0,0 -183306243,"Teeworlds",purchase,1.0,0 -183306243,"War Thunder",purchase,1.0,0 -199426613,"Dota 2",purchase,1.0,0 -199426613,"Dota 2",play,594.0,0 -199426613,"Dead Island Epidemic",purchase,1.0,0 -199426613,"FreeStyle2 Street Basketball",purchase,1.0,0 -199426613,"Pirates, Vikings, & Knights II",purchase,1.0,0 -136397050,"Dota 2",purchase,1.0,0 -136397050,"Dota 2",play,646.0,0 -136397050,"Grand Theft Auto V",purchase,1.0,0 -136397050,"Grand Theft Auto V",play,128.0,0 -136397050,"Counter-Strike Global Offensive",purchase,1.0,0 -136397050,"Counter-Strike Global Offensive",play,41.0,0 -242506053,"Dota 2",purchase,1.0,0 -242506053,"Dota 2",play,1.0,0 -102836023,"Dota 2",purchase,1.0,0 -102836023,"Dota 2",play,860.0,0 -102836023,"Team Fortress 2",purchase,1.0,0 -102836023,"Team Fortress 2",play,0.6,0 -98818460,"Terraria",purchase,1.0,0 -98818460,"Terraria",play,693.0,0 -98818460,"7 Days to Die",purchase,1.0,0 -98818460,"7 Days to Die",play,50.0,0 -98818460,"Magicka",purchase,1.0,0 -258845881,"Dota 2",purchase,1.0,0 -258845881,"Dota 2",play,68.0,0 -104011576,"Counter-Strike Global Offensive",purchase,1.0,0 -104011576,"Counter-Strike Global Offensive",play,1.0,0 -201480718,"Counter-Strike Global Offensive",purchase,1.0,0 -201480718,"Counter-Strike Global Offensive",play,196.0,0 -201480718,"War Thunder",purchase,1.0,0 -201480718,"War Thunder",play,1.4,0 -124428084,"Arma 2 Operation Arrowhead",purchase,1.0,0 -124428084,"Arma 2 Operation Arrowhead",play,0.8,0 -124428084,"Arma 2",purchase,1.0,0 -124428084,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -124428084,"Clicker Heroes",purchase,1.0,0 -199307633,"Wolfenstein The New Order",purchase,1.0,0 -199307633,"Wolfenstein The New Order",play,0.2,0 -199307633,"Call of Duty Ghosts",purchase,1.0,0 -199307633,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -291971046,"Blender 2.76b",purchase,1.0,0 -145117004,"Team Fortress 2",purchase,1.0,0 -145117004,"Team Fortress 2",play,267.0,0 -145117004,"Robocraft",purchase,1.0,0 -145117004,"Robocraft",play,86.0,0 -145117004,"Warface",purchase,1.0,0 -145117004,"Warface",play,29.0,0 -145117004,"Battle Islands",purchase,1.0,0 -145117004,"Battle Islands",play,6.4,0 -145117004,"Unturned",purchase,1.0,0 -145117004,"Unturned",play,2.0,0 -145117004,"Dizzel",purchase,1.0,0 -145117004,"Dizzel",play,0.8,0 -145117004,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -145117004,"S.K.I.L.L. - Special Force 2",play,0.5,0 -145117004,"Heroes & Generals",purchase,1.0,0 -145117004,"Heroes & Generals",play,0.4,0 -145117004,"Dirty Bomb",purchase,1.0,0 -145117004,"Dirty Bomb",play,0.3,0 -145117004,"Guns and Robots",purchase,1.0,0 -145117004,"Guns and Robots",play,0.2,0 -145117004,"Dota 2",purchase,1.0,0 -145117004,"Dota 2",play,0.2,0 -145117004,"America's Army 3",purchase,1.0,0 -145117004,"America's Army 3",play,0.1,0 -145117004,"DiggerOnline",purchase,1.0,0 -145117004,"DiggerOnline",play,0.1,0 -145117004,"Loadout",purchase,1.0,0 -145117004,"America's Army Proving Grounds",purchase,1.0,0 -33228985,"Dirty Bomb",purchase,1.0,0 -33228985,"Dungeons & Dragons Online",purchase,1.0,0 -33228985,"Marvel Heroes 2015",purchase,1.0,0 -33228985,"Mortal Online",purchase,1.0,0 -33228985,"Neverwinter",purchase,1.0,0 -33228985,"No More Room in Hell",purchase,1.0,0 -33228985,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -33228985,"RIFT",purchase,1.0,0 -33228985,"Rise of Incarnates",purchase,1.0,0 -33228985,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -33228985,"Trove",purchase,1.0,0 -33228985,"Warframe",purchase,1.0,0 -33228985,"War Thunder",purchase,1.0,0 -155114757,"Dota 2",purchase,1.0,0 -155114757,"Dota 2",play,3.8,0 -72387826,"Sid Meier's Civilization V",purchase,1.0,0 -72387826,"Sid Meier's Civilization V",play,384.0,0 -72387826,"Counter-Strike Global Offensive",purchase,1.0,0 -72387826,"Counter-Strike Global Offensive",play,68.0,0 -72387826,"Left 4 Dead",purchase,1.0,0 -72387826,"Left 4 Dead",play,32.0,0 -72387826,"Dota 2",purchase,1.0,0 -72387826,"Dota 2",play,2.4,0 -72387826,"AirMech",purchase,1.0,0 -72387826,"Counter-Strike",purchase,1.0,0 -72387826,"Counter-Strike Condition Zero",purchase,1.0,0 -72387826,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -72387826,"Counter-Strike Source",purchase,1.0,0 -72387826,"Dead Island Epidemic",purchase,1.0,0 -72387826,"Magicka Wizard Wars",purchase,1.0,0 -72387826,"Marvel Heroes 2015",purchase,1.0,0 -72387826,"My Lands",purchase,1.0,0 -72387826,"Quake Live",purchase,1.0,0 -72387826,"RaiderZ",purchase,1.0,0 -72387826,"Realm of the Mad God",purchase,1.0,0 -72387826,"Robocraft",purchase,1.0,0 -72387826,"sZone-Online",purchase,1.0,0 -72387826,"War Thunder",purchase,1.0,0 -94851051,"Dota 2",purchase,1.0,0 -94851051,"Dota 2",play,736.0,0 -94851051,"Chivalry Medieval Warfare",purchase,1.0,0 -94851051,"Chivalry Medieval Warfare",play,468.0,0 -94851051,"Counter-Strike Global Offensive",purchase,1.0,0 -94851051,"Counter-Strike Global Offensive",play,36.0,0 -94851051,"Deus Ex Human Revolution",purchase,1.0,0 -94851051,"Deus Ex Human Revolution",play,35.0,0 -94851051,"PAYDAY 2",purchase,1.0,0 -94851051,"PAYDAY 2",play,30.0,0 -94851051,"The Elder Scrolls V Skyrim",purchase,1.0,0 -94851051,"The Elder Scrolls V Skyrim",play,22.0,0 -94851051,"The Witcher Enhanced Edition",purchase,1.0,0 -94851051,"The Witcher Enhanced Edition",play,12.2,0 -94851051,"H1Z1",purchase,1.0,0 -94851051,"H1Z1",play,10.3,0 -94851051,"Mount & Blade Warband",purchase,1.0,0 -94851051,"Mount & Blade Warband",play,9.4,0 -94851051,"Garry's Mod",purchase,1.0,0 -94851051,"Garry's Mod",play,7.2,0 -94851051,"Natural Selection 2",purchase,1.0,0 -94851051,"Natural Selection 2",play,5.1,0 -94851051,"Patch testing for Chivalry",purchase,1.0,0 -94851051,"Patch testing for Chivalry",play,3.4,0 -94851051,"Serious Sam 3 BFE",purchase,1.0,0 -94851051,"Serious Sam 3 BFE",play,1.8,0 -94851051,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -94851051,"Rocketbirds Hardboiled Chicken",play,0.6,0 -94851051,"Team Fortress 2",purchase,1.0,0 -94851051,"Team Fortress 2",play,0.3,0 -94851051,"FTL Faster Than Light",purchase,1.0,0 -94851051,"FEZ",purchase,1.0,0 -94851051,"H1Z1 Test Server",purchase,1.0,0 -94851051,"Left 4 Dead 2",purchase,1.0,0 -94851051,"Orcs Must Die! 2",purchase,1.0,0 -94851051,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -94851051,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -94851051,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -94851051,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -19430377,"Counter-Strike",purchase,1.0,0 -19430377,"Counter-Strike",play,3.0,0 -19430377,"Counter-Strike Condition Zero",purchase,1.0,0 -19430377,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -148400139,"Dota 2",purchase,1.0,0 -148400139,"Dota 2",play,1.9,0 -87040683,"Dota 2",purchase,1.0,0 -87040683,"Dota 2",play,1930.0,0 -87040683,"DayZ",purchase,1.0,0 -87040683,"DayZ",play,290.0,0 -87040683,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -87040683,"Call of Duty Modern Warfare 3 - Multiplayer",play,256.0,0 -87040683,"Counter-Strike Global Offensive",purchase,1.0,0 -87040683,"Counter-Strike Global Offensive",play,252.0,0 -87040683,"Arma 2 Operation Arrowhead",purchase,1.0,0 -87040683,"Arma 2 Operation Arrowhead",play,166.0,0 -87040683,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -87040683,"Call of Duty Modern Warfare 2 - Multiplayer",play,138.0,0 -87040683,"Grand Theft Auto V",purchase,1.0,0 -87040683,"Grand Theft Auto V",play,122.0,0 -87040683,"PAYDAY 2",purchase,1.0,0 -87040683,"PAYDAY 2",play,63.0,0 -87040683,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -87040683,"Call of Duty Black Ops - Multiplayer",play,60.0,0 -87040683,"Battlefield Bad Company 2",purchase,1.0,0 -87040683,"Battlefield Bad Company 2",play,57.0,0 -87040683,"War Thunder",purchase,1.0,0 -87040683,"War Thunder",play,34.0,0 -87040683,"Grand Theft Auto IV",purchase,1.0,0 -87040683,"Grand Theft Auto IV",play,28.0,0 -87040683,"Sleeping Dogs",purchase,1.0,0 -87040683,"Sleeping Dogs",play,18.4,0 -87040683,"Call of Duty Modern Warfare 2",purchase,1.0,0 -87040683,"Call of Duty Modern Warfare 2",play,17.0,0 -87040683,"Rust",purchase,1.0,0 -87040683,"Rust",play,15.8,0 -87040683,"Hitman Absolution",purchase,1.0,0 -87040683,"Hitman Absolution",play,11.7,0 -87040683,"Borderlands 2 RU",purchase,1.0,0 -87040683,"Borderlands 2 RU",play,11.6,0 -87040683,"Men of War",purchase,1.0,0 -87040683,"Men of War",play,10.6,0 -87040683,"Arma 3",purchase,1.0,0 -87040683,"Arma 3",play,10.2,0 -87040683,"Counter-Strike Source",purchase,1.0,0 -87040683,"Counter-Strike Source",play,8.8,0 -87040683,"Left 4 Dead 2",purchase,1.0,0 -87040683,"Left 4 Dead 2",play,8.7,0 -87040683,"Call of Duty Black Ops",purchase,1.0,0 -87040683,"Call of Duty Black Ops",play,8.5,0 -87040683,"Call of Duty Modern Warfare 3",purchase,1.0,0 -87040683,"Call of Duty Modern Warfare 3",play,7.7,0 -87040683,"Heroes & Generals",purchase,1.0,0 -87040683,"Heroes & Generals",play,7.3,0 -87040683,"7 Days to Die",purchase,1.0,0 -87040683,"7 Days to Die",play,7.1,0 -87040683,"Team Fortress 2",purchase,1.0,0 -87040683,"Team Fortress 2",play,6.2,0 -87040683,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -87040683,"Tom Clancy's Ghost Recon Phantoms - EU",play,6.0,0 -87040683,"Counter-Strike",purchase,1.0,0 -87040683,"Counter-Strike",play,4.4,0 -87040683,"Arma 2",purchase,1.0,0 -87040683,"Arma 2",play,2.9,0 -87040683,"Unturned",purchase,1.0,0 -87040683,"Unturned",play,2.3,0 -87040683,"Counter-Strike Condition Zero",purchase,1.0,0 -87040683,"Counter-Strike Condition Zero",play,1.6,0 -87040683,"BeamNG.drive",purchase,1.0,0 -87040683,"BeamNG.drive",play,1.6,0 -87040683,"TERA",purchase,1.0,0 -87040683,"TERA",play,1.4,0 -87040683,"Alan Wake",purchase,1.0,0 -87040683,"Alan Wake",play,1.3,0 -87040683,"Dead Island Epidemic",purchase,1.0,0 -87040683,"Dead Island Epidemic",play,1.2,0 -87040683,"Tree of Life",purchase,1.0,0 -87040683,"Tree of Life",play,1.0,0 -87040683,"Neverwinter",purchase,1.0,0 -87040683,"Neverwinter",play,0.9,0 -87040683,"Rake",purchase,1.0,0 -87040683,"Rake",play,0.2,0 -87040683,"Hitman Sniper Challenge",purchase,1.0,0 -87040683,"Hitman Sniper Challenge",play,0.2,0 -87040683,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -87040683,"Arma 2 DayZ Mod",purchase,1.0,0 -87040683,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -87040683,"Arma 3 Zeus",purchase,1.0,0 -87040683,"Borderlands 2",purchase,1.0,0 -87040683,"HAWKEN",purchase,1.0,0 -87040683,"Magicka Wizard Wars",purchase,1.0,0 -87040683,"Survarium",purchase,1.0,0 -87040683,"sZone-Online",purchase,1.0,0 -87040683,"WAKFU",purchase,1.0,0 -176696720,"GunZ 2 The Second Duel",purchase,1.0,0 -176696720,"GunZ 2 The Second Duel",play,0.3,0 -176696720,"Insurgency",purchase,1.0,0 -100942835,"Dota 2",purchase,1.0,0 -100942835,"Dota 2",play,1412.0,0 -54934705,"Left 4 Dead",purchase,1.0,0 -54934705,"Left 4 Dead",play,2.9,0 -54934705,"Call of Duty Modern Warfare 2",purchase,1.0,0 -54934705,"Call of Duty Modern Warfare 2",play,1.9,0 -54934705,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -38317154,"Dota 2",purchase,1.0,0 -38317154,"Dota 2",play,2730.0,0 -38317154,"Counter-Strike Source",purchase,1.0,0 -38317154,"Counter-Strike Source",play,292.0,0 -38317154,"Counter-Strike Global Offensive",purchase,1.0,0 -38317154,"Counter-Strike Global Offensive",play,252.0,0 -38317154,"The Elder Scrolls V Skyrim",purchase,1.0,0 -38317154,"The Elder Scrolls V Skyrim",play,132.0,0 -38317154,"Team Fortress 2",purchase,1.0,0 -38317154,"Team Fortress 2",play,100.0,0 -38317154,"Fallout 4",purchase,1.0,0 -38317154,"Fallout 4",play,80.0,0 -38317154,"Warframe",purchase,1.0,0 -38317154,"Warframe",play,64.0,0 -38317154,"Left 4 Dead 2",purchase,1.0,0 -38317154,"Left 4 Dead 2",play,53.0,0 -38317154,"Grand Theft Auto V",purchase,1.0,0 -38317154,"Grand Theft Auto V",play,52.0,0 -38317154,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -38317154,"Dark Souls Prepare to Die Edition",play,37.0,0 -38317154,"Dying Light",purchase,1.0,0 -38317154,"Dying Light",play,34.0,0 -38317154,"Terraria",purchase,1.0,0 -38317154,"Terraria",play,28.0,0 -38317154,"PAYDAY 2",purchase,1.0,0 -38317154,"PAYDAY 2",play,22.0,0 -38317154,"Thief",purchase,1.0,0 -38317154,"Thief",play,19.8,0 -38317154,"Fable Anniversary",purchase,1.0,0 -38317154,"Fable Anniversary",play,18.9,0 -38317154,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -38317154,"Warhammer 40,000 Dawn of War II",play,18.8,0 -38317154,"DayZ",purchase,1.0,0 -38317154,"DayZ",play,15.1,0 -38317154,"Day of Defeat Source",purchase,1.0,0 -38317154,"Day of Defeat Source",play,13.1,0 -38317154,"The Binding of Isaac Rebirth",purchase,1.0,0 -38317154,"The Binding of Isaac Rebirth",play,10.6,0 -38317154,"DmC Devil May Cry",purchase,1.0,0 -38317154,"DmC Devil May Cry",play,9.3,0 -38317154,"Dead Space 2",purchase,1.0,0 -38317154,"Dead Space 2",play,8.5,0 -38317154,"Hotline Miami 2 Wrong Number",purchase,1.0,0 -38317154,"Hotline Miami 2 Wrong Number",play,8.1,0 -38317154,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -38317154,"METAL GEAR RISING REVENGEANCE",play,7.5,0 -38317154,"Half-Life 2",purchase,1.0,0 -38317154,"Half-Life 2",play,6.6,0 -38317154,"Hotline Miami",purchase,1.0,0 -38317154,"Hotline Miami",play,5.7,0 -38317154,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -38317154,"Warhammer 40,000 Dawn of War Soulstorm",play,5.5,0 -38317154,"Kerbal Space Program",purchase,1.0,0 -38317154,"Kerbal Space Program",play,5.2,0 -38317154,"Devil May Cry 4 Special Edition",purchase,1.0,0 -38317154,"Devil May Cry 4 Special Edition",play,4.9,0 -38317154,"Magicka",purchase,1.0,0 -38317154,"Magicka",play,4.9,0 -38317154,"Rust",purchase,1.0,0 -38317154,"Rust",play,4.7,0 -38317154,"The Forest",purchase,1.0,0 -38317154,"The Forest",play,4.2,0 -38317154,"Don't Starve Together Beta",purchase,1.0,0 -38317154,"Don't Starve Together Beta",play,4.1,0 -38317154,"DARK SOULS II",purchase,1.0,0 -38317154,"DARK SOULS II",play,3.8,0 -38317154,"Worms Revolution",purchase,1.0,0 -38317154,"Worms Revolution",play,3.2,0 -38317154,"The Escapists",purchase,1.0,0 -38317154,"The Escapists",play,1.9,0 -38317154,"Star Wars - Battlefront II",purchase,1.0,0 -38317154,"Star Wars - Battlefront II",play,1.3,0 -38317154,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -38317154,"DARK SOULS II Scholar of the First Sin",play,1.3,0 -38317154,"Half-Life 2 Deathmatch",purchase,1.0,0 -38317154,"Half-Life 2 Deathmatch",play,1.0,0 -38317154,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -38317154,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,0.9,0 -38317154,"Devil May Cry 3 Special Edition",purchase,1.0,0 -38317154,"Devil May Cry 3 Special Edition",play,0.6,0 -38317154,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -38317154,"Fallout 3 - Game of the Year Edition",play,0.5,0 -38317154,"EDGE",purchase,1.0,0 -38317154,"EDGE",play,0.5,0 -38317154,"Arma 2",purchase,1.0,0 -38317154,"Arma 2",play,0.4,0 -38317154,"Cry of Fear",purchase,1.0,0 -38317154,"Cry of Fear",play,0.4,0 -38317154,"Bound By Flame",purchase,1.0,0 -38317154,"Bound By Flame",play,0.3,0 -38317154,"Super Meat Boy",purchase,1.0,0 -38317154,"Super Meat Boy",play,0.3,0 -38317154,"Counter-Strike Nexon Zombies",purchase,1.0,0 -38317154,"Counter-Strike Nexon Zombies",play,0.2,0 -38317154,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -38317154,"Nosferatu The Wrath of Malachi",play,0.2,0 -38317154,"Dead Space",purchase,1.0,0 -38317154,"America's Army Proving Grounds",purchase,1.0,0 -38317154,"Arma 2 British Armed Forces",purchase,1.0,0 -38317154,"Arma 2 DayZ Mod",purchase,1.0,0 -38317154,"Arma 2 Operation Arrowhead",purchase,1.0,0 -38317154,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -38317154,"Arma 2 Private Military Company",purchase,1.0,0 -38317154,"Darksiders",purchase,1.0,0 -38317154,"Darksiders II Deathinitive Edition",purchase,1.0,0 -38317154,"Darksiders Soundtrack",purchase,1.0,0 -38317154,"Dead Island Epidemic",purchase,1.0,0 -38317154,"Devil May Cry 4",purchase,1.0,0 -38317154,"Don't Starve",purchase,1.0,0 -38317154,"Don't Starve Reign of Giants",purchase,1.0,0 -38317154,"Enclave",purchase,1.0,0 -38317154,"Fallout",purchase,1.0,0 -38317154,"Fallout 2",purchase,1.0,0 -38317154,"Fallout New Vegas",purchase,1.0,0 -38317154,"Fallout Tactics",purchase,1.0,0 -38317154,"FreeStyle2 Street Basketball",purchase,1.0,0 -38317154,"Garry's Mod",purchase,1.0,0 -38317154,"Half-Life 2 Lost Coast",purchase,1.0,0 -38317154,"Heroes of Might & Magic III - HD Edition",purchase,1.0,0 -38317154,"Hotline Miami 2 Wrong Number Digital Comic",purchase,1.0,0 -38317154,"How to Survive",purchase,1.0,0 -38317154,"Insurgency",purchase,1.0,0 -38317154,"Killing Floor",purchase,1.0,0 -38317154,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -38317154,"Magicka Final Frontier",purchase,1.0,0 -38317154,"Magicka Frozen Lake",purchase,1.0,0 -38317154,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -38317154,"Magicka Nippon",purchase,1.0,0 -38317154,"Magicka Party Robes",purchase,1.0,0 -38317154,"Magicka The Watchtower",purchase,1.0,0 -38317154,"Magicka Vietnam",purchase,1.0,0 -38317154,"Magicka Wizard's Survival Kit",purchase,1.0,0 -38317154,"Magicka Wizard Wars",purchase,1.0,0 -38317154,"Mass Effect",purchase,1.0,0 -38317154,"Mass Effect 2",purchase,1.0,0 -38317154,"Metro 2033 Redux",purchase,1.0,0 -38317154,"Metro Last Light Redux",purchase,1.0,0 -38317154,"Revolution Ace",purchase,1.0,0 -38317154,"SpellForce 2 - Demons of the Past",purchase,1.0,0 -38317154,"SpellForce 2 - Demons of the Past - Soundtrack",purchase,1.0,0 -38317154,"SpellForce 2 - Faith in Destiny",purchase,1.0,0 -38317154,"SpellForce 2 Gold Edition",purchase,1.0,0 -38317154,"SpellForce Platinum Edition",purchase,1.0,0 -38317154,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -38317154,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -38317154,"Star Wars Dark Forces",purchase,1.0,0 -38317154,"Star Wars Empire at War Gold",purchase,1.0,0 -38317154,"Star Wars Knights of the Old Republic",purchase,1.0,0 -38317154,"Star Wars The Force Unleashed II",purchase,1.0,0 -38317154,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -38317154,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -38317154,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -38317154,"Star Wars Republic Commando",purchase,1.0,0 -38317154,"Star Wars Starfighter",purchase,1.0,0 -38317154,"Star Wars The Clone Wars Republic Heroes",purchase,1.0,0 -38317154,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -38317154,"Supreme Commander",purchase,1.0,0 -38317154,"Supreme Commander Forged Alliance",purchase,1.0,0 -38317154,"sZone-Online",purchase,1.0,0 -38317154,"The Elder Scrolls III Morrowind",purchase,1.0,0 -38317154,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -38317154,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -38317154,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -38317154,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -38317154,"Thief - Opportunist",purchase,1.0,0 -38317154,"Thief - The Bank Heist",purchase,1.0,0 -38317154,"Titan Quest",purchase,1.0,0 -38317154,"Titan Quest Immortal Throne",purchase,1.0,0 -38317154,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -38317154,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -38317154,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -38317154,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -38317154,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -38317154,"X3 Albion Prelude",purchase,1.0,0 -38317154,"X3 Reunion",purchase,1.0,0 -38317154,"X3 Terran Conflict",purchase,1.0,0 -38317154,"XCOM Enemy Unknown",purchase,1.0,0 -177625788,"Garry's Mod",purchase,1.0,0 -177625788,"Garry's Mod",play,118.0,0 -177625788,"The Elder Scrolls V Skyrim",purchase,1.0,0 -177625788,"The Elder Scrolls V Skyrim",play,107.0,0 -177625788,"Starbound",purchase,1.0,0 -177625788,"Starbound",play,76.0,0 -177625788,"Undertale",purchase,1.0,0 -177625788,"Undertale",play,41.0,0 -177625788,"The Sims(TM) 3",purchase,1.0,0 -177625788,"The Sims(TM) 3",play,19.0,0 -177625788,"Warframe",purchase,1.0,0 -177625788,"Warframe",play,9.8,0 -177625788,"Don't Starve",purchase,1.0,0 -177625788,"Don't Starve",play,8.7,0 -177625788,"Team Fortress 2",purchase,1.0,0 -177625788,"Team Fortress 2",play,5.9,0 -177625788,"Blockland",purchase,1.0,0 -177625788,"Blockland",play,5.0,0 -177625788,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -177625788,"The Elder Scrolls IV Oblivion ",play,4.4,0 -177625788,"Terraria",purchase,1.0,0 -177625788,"Terraria",play,2.5,0 -177625788,"Five Nights at Freddy's",purchase,1.0,0 -177625788,"Five Nights at Freddy's",play,2.3,0 -177625788,"Scribblenauts Unlimited",purchase,1.0,0 -177625788,"Scribblenauts Unlimited",play,2.2,0 -177625788,"Emily is Away",purchase,1.0,0 -177625788,"Emily is Away",play,1.5,0 -177625788,"The Escapists",purchase,1.0,0 -177625788,"The Escapists",play,1.3,0 -177625788,"Cry of Fear",purchase,1.0,0 -177625788,"Cry of Fear",play,1.2,0 -177625788,"Fallout New Vegas",purchase,1.0,0 -177625788,"Fallout New Vegas",play,0.7,0 -177625788,"Papers, Please",purchase,1.0,0 -177625788,"Papers, Please",play,0.6,0 -177625788,"Fiesta Online NA",purchase,1.0,0 -177625788,"Fiesta Online NA",play,0.2,0 -177625788,"EverQuest Free-to-Play",purchase,1.0,0 -177625788,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -177625788,"Fallout New Vegas Dead Money",purchase,1.0,0 -177625788,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -177625788,"Saints Row IV",purchase,1.0,0 -177625788,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -177625788,"Starbound - Unstable",purchase,1.0,0 -177625788,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -125276746,"Dota 2",purchase,1.0,0 -125276746,"Dota 2",play,7.5,0 -125559963,"Sniper Ghost Warrior",purchase,1.0,0 -125559963,"Sniper Ghost Warrior",play,1.7,0 -164961511,"The Elder Scrolls V Skyrim",purchase,1.0,0 -164961511,"The Elder Scrolls V Skyrim",play,154.0,0 -164961511,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -164961511,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -164961511,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -164961511,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -296188061,"Dota 2",purchase,1.0,0 -296188061,"Dota 2",play,3.8,0 -307269300,"Dota 2",purchase,1.0,0 -307269300,"Dota 2",play,0.3,0 -196171763,"Dota 2",purchase,1.0,0 -196171763,"Dota 2",play,14.6,0 -103911620,"King's Bounty Warriors of the North",purchase,1.0,0 -103911620,"King's Bounty Warriors of the North",play,300.0,0 -103911620,"Deus Ex Human Revolution",purchase,1.0,0 -103911620,"Deus Ex Human Revolution",play,141.0,0 -103911620,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -103911620,"Deus Ex Human Revolution - The Missing Link",play,51.0,0 -103911620,"Spec Ops The Line",purchase,1.0,0 -103911620,"Spec Ops The Line",play,51.0,0 -103911620,"Call of Duty Black Ops II",purchase,1.0,0 -103911620,"Call of Duty Black Ops II",play,26.0,0 -103911620,"Call of Duty Ghosts",purchase,1.0,0 -103911620,"Call of Duty Ghosts",play,22.0,0 -103911620,"Lost Planet 3",purchase,1.0,0 -103911620,"Lost Planet 3",play,13.6,0 -103911620,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -103911620,"Call of Duty Black Ops II - Zombies",play,7.8,0 -103911620,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -103911620,"Call of Duty Ghosts - Multiplayer",play,2.0,0 -103911620,"Company of Heroes 2",purchase,1.0,0 -103911620,"Company of Heroes 2",play,1.7,0 -103911620,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -103911620,"Call of Duty Black Ops II - Multiplayer",play,1.4,0 -103911620,"Call of Duty World at War",purchase,1.0,0 -10608804,"Counter-Strike",purchase,1.0,0 -10608804,"Counter-Strike",play,1.8,0 -10608804,"Counter-Strike Source",purchase,1.0,0 -10608804,"Counter-Strike Source",play,1.2,0 -10608804,"Day of Defeat",purchase,1.0,0 -10608804,"Deathmatch Classic",purchase,1.0,0 -10608804,"Half-Life",purchase,1.0,0 -10608804,"Half-Life 2",purchase,1.0,0 -10608804,"Half-Life 2 Deathmatch",purchase,1.0,0 -10608804,"Half-Life 2 Lost Coast",purchase,1.0,0 -10608804,"Half-Life Blue Shift",purchase,1.0,0 -10608804,"Half-Life Opposing Force",purchase,1.0,0 -10608804,"Metro 2033",purchase,1.0,0 -10608804,"Ricochet",purchase,1.0,0 -10608804,"Team Fortress Classic",purchase,1.0,0 -182469805,"Dota 2",purchase,1.0,0 -182469805,"Dota 2",play,286.0,0 -182469805,"War Thunder",purchase,1.0,0 -101865671,"Loadout",purchase,1.0,0 -101865671,"Unturned",purchase,1.0,0 -101865671,"Warframe",purchase,1.0,0 -187264965,"Grand Chase",purchase,1.0,0 -187264965,"Grand Chase",play,0.7,0 -184661457,"Dota 2",purchase,1.0,0 -184661457,"Dota 2",play,0.7,0 -225706303,"Warframe",purchase,1.0,0 -225706303,"Warframe",play,2.7,0 -225706303,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -225706303,"Tom Clancy's Ghost Recon Phantoms - NA",play,1.2,0 -225706303,"TDP4Team Battle",purchase,1.0,0 -225706303,"TDP4Team Battle",play,0.2,0 -154220574,"Dota 2",purchase,1.0,0 -154220574,"Dota 2",play,1.9,0 -2087859,"Counter-Strike",purchase,1.0,0 -2087859,"Counter-Strike Condition Zero",purchase,1.0,0 -2087859,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -2087859,"Counter-Strike Source",purchase,1.0,0 -2087859,"Day of Defeat",purchase,1.0,0 -2087859,"Deathmatch Classic",purchase,1.0,0 -2087859,"Half-Life",purchase,1.0,0 -2087859,"Half-Life 2",purchase,1.0,0 -2087859,"Half-Life 2 Deathmatch",purchase,1.0,0 -2087859,"Half-Life 2 Lost Coast",purchase,1.0,0 -2087859,"Half-Life Blue Shift",purchase,1.0,0 -2087859,"Half-Life Opposing Force",purchase,1.0,0 -2087859,"Ricochet",purchase,1.0,0 -2087859,"Team Fortress Classic",purchase,1.0,0 -17821133,"Counter-Strike Source",purchase,1.0,0 -17821133,"Counter-Strike Source",play,5.5,0 -17821133,"Half-Life 2",purchase,1.0,0 -17821133,"Half-Life 2 Deathmatch",purchase,1.0,0 -17821133,"Half-Life 2 Lost Coast",purchase,1.0,0 -196799100,"Dota 2",purchase,1.0,0 -196799100,"Dota 2",play,24.0,0 -24889631,"Counter-Strike Condition Zero",purchase,1.0,0 -24889631,"Counter-Strike Condition Zero",play,1.5,0 -24889631,"Counter-Strike",purchase,1.0,0 -24889631,"Counter-Strike",play,0.1,0 -24889631,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -24889631,"Day of Defeat",purchase,1.0,0 -24889631,"Deathmatch Classic",purchase,1.0,0 -24889631,"Ricochet",purchase,1.0,0 -16421440,"Counter-Strike Condition Zero",purchase,1.0,0 -16421440,"Counter-Strike Condition Zero",play,1.0,0 -16421440,"Counter-Strike",purchase,1.0,0 -16421440,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -43607599,"Football Manager 2010",purchase,1.0,0 -43607599,"Football Manager 2010",play,279.0,0 -43607599,"Football Manager 2013",purchase,1.0,0 -43607599,"Football Manager 2013",play,267.0,0 -43607599,"Football Manager 2012",purchase,1.0,0 -43607599,"Football Manager 2012",play,215.0,0 -43607599,"Football Manager 2011",purchase,1.0,0 -43607599,"Football Manager 2011",play,147.0,0 -43607599,"Football Manager 2009",purchase,1.0,0 -43607599,"Football Manager 2009",play,135.0,0 -43607599,"Sid Meier's Civilization V",purchase,1.0,0 -43607599,"Sid Meier's Civilization V",play,46.0,0 -159190291,"Construction-Simulator 2015",purchase,1.0,0 -159190291,"Construction-Simulator 2015",play,52.0,0 -159190291,"Train Simulator",purchase,1.0,0 -159190291,"Train Simulator",play,18.2,0 -134471670,"Team Fortress 2",purchase,1.0,0 -134471670,"Team Fortress 2",play,3.7,0 -91303257,"Dota 2",purchase,1.0,0 -91303257,"Dota 2",play,1086.0,0 -91303257,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -91303257,"Just Cause 2 Multiplayer Mod",play,1.0,0 -91303257,"Forge",purchase,1.0,0 -91303257,"Forge",play,0.8,0 -91303257,"C9",purchase,1.0,0 -91303257,"Just Cause 2",purchase,1.0,0 -91303257,"Loadout",purchase,1.0,0 -128025016,"Sid Meier's Civilization V",purchase,1.0,0 -128025016,"Sid Meier's Civilization V",play,54.0,0 -128025016,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -128025016,"Sid Meier's Civilization Beyond Earth",play,31.0,0 -10854426,"Half-Life 2 Episode One",purchase,1.0,0 -10854426,"Half-Life 2 Episode One",play,0.7,0 -10854426,"Counter-Strike Source",purchase,1.0,0 -10854426,"Half-Life 2",purchase,1.0,0 -10854426,"Half-Life 2 Deathmatch",purchase,1.0,0 -10854426,"Half-Life 2 Lost Coast",purchase,1.0,0 -10854426,"Half-Life Deathmatch Source",purchase,1.0,0 -223646498,"Left 4 Dead 2",purchase,1.0,0 -223646498,"Left 4 Dead 2",play,76.0,0 -223646498,"HIS (Heroes In the Sky)",purchase,1.0,0 -223646498,"HIS (Heroes In the Sky)",play,0.2,0 -107984181,"Team Fortress 2",purchase,1.0,0 -107984181,"Team Fortress 2",play,113.0,0 -107984181,"Everlasting Summer",purchase,1.0,0 -107984181,"Everlasting Summer",play,34.0,0 -107984181,"Left 4 Dead 2",purchase,1.0,0 -107984181,"Left 4 Dead 2",play,14.6,0 -107984181,"Half-Life 2",purchase,1.0,0 -107984181,"Half-Life 2",play,9.4,0 -107984181,"Sniper Elite V2",purchase,1.0,0 -107984181,"Sniper Elite V2",play,9.2,0 -107984181,"Portal",purchase,1.0,0 -107984181,"Portal",play,5.9,0 -107984181,"Amnesia The Dark Descent",purchase,1.0,0 -107984181,"Amnesia The Dark Descent",play,0.3,0 -107984181,"Half-Life 2 Episode One",purchase,1.0,0 -107984181,"Half-Life 2 Episode Two",purchase,1.0,0 -107984181,"Half-Life 2 Lost Coast",purchase,1.0,0 -295626029,"Dota 2",purchase,1.0,0 -295626029,"Dota 2",play,4.5,0 -187492337,"Dota 2",purchase,1.0,0 -187492337,"Dota 2",play,1.8,0 -61990738,"Football Manager 2015",purchase,1.0,0 -61990738,"Football Manager 2015",play,62.0,0 -61990738,"Football Manager 2010",purchase,1.0,0 -61990738,"Football Manager 2010",play,41.0,0 -61990738,"NBA 2K15",purchase,1.0,0 -61990738,"NBA 2K15",play,24.0,0 -66573111,"Trine 2",purchase,1.0,0 -66573111,"Trine 2",play,13.0,0 -66573111,"Team Fortress 2",purchase,1.0,0 -66573111,"Team Fortress 2",play,2.8,0 -296371794,"Unturned",purchase,1.0,0 -296371794,"Unturned",play,1.3,0 -243964103,"Dota 2",purchase,1.0,0 -243964103,"Dota 2",play,2.3,0 -302708380,"The Stanley Parable",purchase,1.0,0 -302708380,"The Stanley Parable",play,0.9,0 -302708380,"Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald A Whirlwind Heist",purchase,1.0,0 -219732733,"Team Fortress 2",purchase,1.0,0 -219732733,"Team Fortress 2",play,23.0,0 -219732733,"War Thunder",purchase,1.0,0 -208246168,"Dota 2",purchase,1.0,0 -208246168,"Dota 2",play,1.2,0 -154895569,"Dota 2",purchase,1.0,0 -154895569,"Dota 2",play,8.8,0 -58393019,"Call of Duty Modern Warfare 2",purchase,1.0,0 -58393019,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -138482130,"DayZ",purchase,1.0,0 -138482130,"DayZ",play,67.0,0 -138482130,"Fallout 4",purchase,1.0,0 -138482130,"Fallout 4",play,63.0,0 -138482130,"Grand Theft Auto V",purchase,1.0,0 -138482130,"Grand Theft Auto V",play,49.0,0 -138482130,"The Forest",purchase,1.0,0 -138482130,"The Forest",play,47.0,0 -138482130,"7 Days to Die",purchase,1.0,0 -138482130,"7 Days to Die",play,38.0,0 -138482130,"Garry's Mod",purchase,1.0,0 -138482130,"Garry's Mod",play,28.0,0 -138482130,"Gothic 3",purchase,1.0,0 -138482130,"Gothic 3",play,26.0,0 -138482130,"Far Cry 4",purchase,1.0,0 -138482130,"Far Cry 4",play,22.0,0 -138482130,"Assassin's Creed III",purchase,1.0,0 -138482130,"Assassin's Creed III",play,21.0,0 -138482130,"Assassin's Creed Brotherhood",purchase,1.0,0 -138482130,"Assassin's Creed Brotherhood",play,21.0,0 -138482130,"Survival Postapocalypse Now",purchase,1.0,0 -138482130,"Survival Postapocalypse Now",play,18.3,0 -138482130,"The Lord of the Rings Online",purchase,1.0,0 -138482130,"The Lord of the Rings Online",play,17.9,0 -138482130,"PAYDAY 2",purchase,1.0,0 -138482130,"PAYDAY 2",play,15.0,0 -138482130,"Reign Of Kings",purchase,1.0,0 -138482130,"Reign Of Kings",play,14.4,0 -138482130,"The Elder Scrolls V Skyrim",purchase,1.0,0 -138482130,"The Elder Scrolls V Skyrim",play,12.6,0 -138482130,"Arma 3",purchase,1.0,0 -138482130,"Arma 3",play,12.0,0 -138482130,"Miscreated",purchase,1.0,0 -138482130,"Miscreated",play,6.4,0 -138482130,"Trove",purchase,1.0,0 -138482130,"Trove",play,4.6,0 -138482130,"Loadout",purchase,1.0,0 -138482130,"Loadout",play,3.0,0 -138482130,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -138482130,"Dark Messiah of Might & Magic Single Player",play,2.2,0 -138482130,"Fallout New Vegas",purchase,1.0,0 -138482130,"Fallout New Vegas",play,2.0,0 -138482130,"Fallout 3",purchase,1.0,0 -138482130,"Fallout 3",play,1.8,0 -138482130,"Infestation Survivor Stories",purchase,1.0,0 -138482130,"Infestation Survivor Stories",play,1.8,0 -138482130,"Unturned",purchase,1.0,0 -138482130,"Unturned",play,1.5,0 -138482130,"Cry of Fear",purchase,1.0,0 -138482130,"Cry of Fear",play,1.4,0 -138482130,"sZone-Online",purchase,1.0,0 -138482130,"sZone-Online",play,1.4,0 -138482130,"Firefall",purchase,1.0,0 -138482130,"Firefall",play,1.4,0 -138482130,"PlanetSide 2",purchase,1.0,0 -138482130,"PlanetSide 2",play,1.3,0 -138482130,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -138482130,"A.V.A - Alliance of Valiant Arms",play,0.8,0 -138482130,"Survarium",purchase,1.0,0 -138482130,"Survarium",play,0.4,0 -138482130,"Tactical Intervention",purchase,1.0,0 -138482130,"Tactical Intervention",play,0.4,0 -138482130,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -138482130,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.3,0 -138482130,"Overlord",purchase,1.0,0 -138482130,"Overlord",play,0.3,0 -138482130,"Red Crucible Firestorm",purchase,1.0,0 -138482130,"Red Crucible Firestorm",play,0.3,0 -138482130,"Amnesia The Dark Descent",purchase,1.0,0 -138482130,"Amnesia The Dark Descent",play,0.2,0 -138482130,"Team Fortress 2",purchase,1.0,0 -138482130,"Team Fortress 2",play,0.1,0 -138482130,"Blender 2.76b",purchase,1.0,0 -138482130,"APB Reloaded",purchase,1.0,0 -138482130,"Alganon",purchase,1.0,0 -138482130,"Arma 3 Helicopters",purchase,1.0,0 -138482130,"Arma 3 Karts",purchase,1.0,0 -138482130,"Arma 3 Marksmen",purchase,1.0,0 -138482130,"Arma 3 Zeus",purchase,1.0,0 -138482130,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -138482130,"Defiance",purchase,1.0,0 -138482130,"Dirty Bomb",purchase,1.0,0 -138482130,"Dragon's Prophet (EU)",purchase,1.0,0 -138482130,"Fallen Earth",purchase,1.0,0 -138482130,"Fallout 3 - Point Lookout",purchase,1.0,0 -138482130,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -138482130,"Karos Returns",purchase,1.0,0 -138482130,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -138482130,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -138482130,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -138482130,"Warface",purchase,1.0,0 -191396022,"Dota 2",purchase,1.0,0 -191396022,"Dota 2",play,2.7,0 -186001638,"Anna - Extended Edition",purchase,1.0,0 -186001638,"Anna - Extended Edition",play,7.8,0 -179377677,"Dota 2",purchase,1.0,0 -179377677,"Dota 2",play,26.0,0 -179377677,"Enclave",purchase,1.0,0 -247195205,"Terraria",purchase,1.0,0 -247195205,"Terraria",play,107.0,0 -247195205,"Crypt of the NecroDancer",purchase,1.0,0 -247195205,"Crypt of the NecroDancer",play,13.8,0 -247195205,"Timberman",purchase,1.0,0 -247195205,"Timberman",play,5.5,0 -247195205,"Risk of Rain",purchase,1.0,0 -247195205,"Risk of Rain",play,2.9,0 -247195205,"Amnesia The Dark Descent",purchase,1.0,0 -256275407,"Magic Duels",purchase,1.0,0 -86611736,"Team Fortress 2",purchase,1.0,0 -86611736,"Team Fortress 2",play,53.0,0 -20930269,"Counter-Strike",purchase,1.0,0 -20930269,"Counter-Strike",play,0.1,0 -20930269,"Counter-Strike Condition Zero",purchase,1.0,0 -20930269,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -20930269,"Counter-Strike Source",purchase,1.0,0 -20930269,"Day of Defeat",purchase,1.0,0 -20930269,"Deathmatch Classic",purchase,1.0,0 -20930269,"Half-Life 2",purchase,1.0,0 -20930269,"Half-Life 2 Deathmatch",purchase,1.0,0 -20930269,"Half-Life 2 Lost Coast",purchase,1.0,0 -20930269,"Half-Life Source",purchase,1.0,0 -20930269,"Half-Life Deathmatch Source",purchase,1.0,0 -20930269,"Ricochet",purchase,1.0,0 -185238837,"Dota 2",purchase,1.0,0 -185238837,"Dota 2",play,26.0,0 -123800818,"Sid Meier's Civilization V",purchase,1.0,0 -147147106,"Dota 2",purchase,1.0,0 -147147106,"Dota 2",play,1.0,0 -252363833,"Garry's Mod",purchase,1.0,0 -252363833,"Garry's Mod",play,13.0,0 -252363833,"Team Fortress 2",purchase,1.0,0 -252363833,"Team Fortress 2",play,1.3,0 -112084902,"Dota 2",purchase,1.0,0 -112084902,"Dota 2",play,29.0,0 -181701327,"Dota 2",purchase,1.0,0 -181701327,"Dota 2",play,628.0,0 -181701327,"Fistful of Frags",purchase,1.0,0 -181701327,"Happy Wars",purchase,1.0,0 -181701327,"Magicka Wizard Wars",purchase,1.0,0 -270059336,"Dota 2",purchase,1.0,0 -270059336,"Dota 2",play,23.0,0 -270059336,"FreeStyle2 Street Basketball",purchase,1.0,0 -270059336,"GunZ 2 The Second Duel",purchase,1.0,0 -270059336,"METAL SLUG DEFENSE",purchase,1.0,0 -174059182,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -174059182,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -174059182,"Sniper Elite V2",purchase,1.0,0 -151998898,"Left 4 Dead 2",purchase,1.0,0 -151998898,"Left 4 Dead 2",play,28.0,0 -146092736,"Dota 2",purchase,1.0,0 -146092736,"Dota 2",play,48.0,0 -42492910,"Counter-Strike",purchase,1.0,0 -42492910,"Counter-Strike",play,1223.0,0 -42492910,"Counter-Strike Condition Zero",purchase,1.0,0 -42492910,"Counter-Strike Condition Zero",play,23.0,0 -42492910,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -42492910,"Day of Defeat",purchase,1.0,0 -42492910,"Deathmatch Classic",purchase,1.0,0 -42492910,"Half-Life 2 Deathmatch",purchase,1.0,0 -42492910,"Half-Life 2 Lost Coast",purchase,1.0,0 -42492910,"Ricochet",purchase,1.0,0 -137409673,"Team Fortress 2",purchase,1.0,0 -137409673,"Team Fortress 2",play,0.9,0 -169353938,"Dota 2",purchase,1.0,0 -169353938,"Dota 2",play,1.0,0 -299561228,"Team Fortress 2",purchase,1.0,0 -299561228,"Team Fortress 2",play,28.0,0 -70739775,"Sid Meier's Civilization V",purchase,1.0,0 -70739775,"Sid Meier's Civilization V",play,23.0,0 -120952837,"Dota 2",purchase,1.0,0 -120952837,"Dota 2",play,2.4,0 -251267603,"Dota 2",purchase,1.0,0 -251267603,"Dota 2",play,4.7,0 -221694858,"Grand Theft Auto V",purchase,1.0,0 -221694858,"Grand Theft Auto V",play,149.0,0 -221694858,"Arma 3",purchase,1.0,0 -221694858,"Arma 3",play,146.0,0 -221694858,"7 Days to Die",purchase,1.0,0 -221694858,"7 Days to Die",play,52.0,0 -221694858,"H1Z1",purchase,1.0,0 -221694858,"H1Z1",play,44.0,0 -221694858,"Rust",purchase,1.0,0 -221694858,"Rust",play,38.0,0 -221694858,"Counter-Strike Global Offensive",purchase,1.0,0 -221694858,"Counter-Strike Global Offensive",play,30.0,0 -221694858,"Unturned",purchase,1.0,0 -221694858,"Unturned",play,25.0,0 -221694858,"DayZ",purchase,1.0,0 -221694858,"DayZ",play,17.6,0 -221694858,"BeamNG.drive",purchase,1.0,0 -221694858,"BeamNG.drive",play,9.0,0 -221694858,"Outlast",purchase,1.0,0 -221694858,"Outlast",play,3.8,0 -221694858,"Aftermath",purchase,1.0,0 -221694858,"Aftermath",play,2.7,0 -221694858,"The Walking Dead",purchase,1.0,0 -221694858,"The Walking Dead",play,1.6,0 -221694858,"Arma 3 Zeus",purchase,1.0,0 -221694858,"Crossfire Europe",purchase,1.0,0 -221694858,"H1Z1 Test Server",purchase,1.0,0 -51382080,"Team Fortress 2",purchase,1.0,0 -51382080,"Team Fortress 2",play,382.0,0 -51382080,"PAYDAY 2",purchase,1.0,0 -51382080,"PAYDAY 2",play,189.0,0 -51382080,"Counter-Strike",purchase,1.0,0 -51382080,"Counter-Strike",play,156.0,0 -51382080,"War Thunder",purchase,1.0,0 -51382080,"War Thunder",play,77.0,0 -51382080,"Verdun",purchase,1.0,0 -51382080,"Verdun",play,26.0,0 -51382080,"PAYDAY The Heist",purchase,1.0,0 -51382080,"PAYDAY The Heist",play,16.6,0 -51382080,"Grand Theft Auto V",purchase,1.0,0 -51382080,"Grand Theft Auto V",play,14.8,0 -51382080,"Left 4 Dead 2",purchase,1.0,0 -51382080,"Left 4 Dead 2",play,13.2,0 -51382080,"Dota 2",purchase,1.0,0 -51382080,"Dota 2",play,7.0,0 -51382080,"Half-Life 2",purchase,1.0,0 -51382080,"Half-Life 2",play,2.2,0 -51382080,"Portal",purchase,1.0,0 -51382080,"Portal",play,1.7,0 -51382080,"Sonic Generations",purchase,1.0,0 -51382080,"Sonic Generations",play,1.2,0 -51382080,"L.A. Noire",purchase,1.0,0 -51382080,"L.A. Noire",play,0.4,0 -51382080,"Counter-Strike Condition Zero",purchase,1.0,0 -51382080,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -51382080,"Dead Island Epidemic",purchase,1.0,0 -51382080,"Half-Life 2 Episode One",purchase,1.0,0 -51382080,"Half-Life 2 Episode Two",purchase,1.0,0 -51382080,"Half-Life 2 Lost Coast",purchase,1.0,0 -189658710,"Dota 2",purchase,1.0,0 -189658710,"Dota 2",play,3.0,0 -54990424,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -54990424,"Call of Duty Modern Warfare 2 - Multiplayer",play,301.0,0 -54990424,"Call of Duty Modern Warfare 2",purchase,1.0,0 -54990424,"Call of Duty Modern Warfare 2",play,27.0,0 -268578780,"Magicka",purchase,1.0,0 -268578780,"Magicka",play,1.4,0 -192598347,"Dota 2",purchase,1.0,0 -192598347,"Dota 2",play,2.8,0 -167439688,"King's Bounty Warriors of the North",purchase,1.0,0 -167439688,"King's Bounty Warriors of the North",play,22.0,0 -136345897,"Dota 2",purchase,1.0,0 -136345897,"Dota 2",play,0.9,0 -233637211,"Team Fortress 2",purchase,1.0,0 -233637211,"Team Fortress 2",play,32.0,0 -31849177,"Football Manager 2012",purchase,1.0,0 -31849177,"Football Manager 2012",play,1168.0,0 -31849177,"Sid Meier's Civilization V",purchase,1.0,0 -31849177,"Sid Meier's Civilization V",play,587.0,0 -31849177,"Fallout New Vegas",purchase,1.0,0 -31849177,"Fallout New Vegas",play,111.0,0 -31849177,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -31849177,"Warhammer 40,000 Dawn of War II",play,83.0,0 -31849177,"Deus Ex Human Revolution",purchase,1.0,0 -31849177,"Deus Ex Human Revolution",play,38.0,0 -31849177,"Dragon Age Origins",purchase,1.0,0 -31849177,"Dragon Age Origins",play,23.0,0 -31849177,"SimCity 4 Deluxe",purchase,1.0,0 -31849177,"SimCity 4 Deluxe",play,12.0,0 -31849177,"Left 4 Dead 2",purchase,1.0,0 -31849177,"Left 4 Dead 2",play,7.5,0 -31849177,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -31849177,"Divinity Original Sin Enhanced Edition",play,0.5,0 -31849177,"Age of Empires III Complete Collection",purchase,1.0,0 -31849177,"Age of Empires III Complete Collection",play,0.1,0 -31849177,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -31849177,"Fallout New Vegas Dead Money",purchase,1.0,0 -31849177,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -31849177,"Half-Life 2",purchase,1.0,0 -31849177,"Half-Life 2 Deathmatch",purchase,1.0,0 -31849177,"Half-Life 2 Lost Coast",purchase,1.0,0 -167952671,"Dota 2",purchase,1.0,0 -167952671,"Dota 2",play,0.3,0 -159800136,"Garry's Mod",purchase,1.0,0 -159800136,"Garry's Mod",play,451.0,0 -159800136,"Starbound",purchase,1.0,0 -159800136,"Starbound",play,411.0,0 -159800136,"Terraria",purchase,1.0,0 -159800136,"Terraria",play,100.0,0 -159800136,"Neverwinter",purchase,1.0,0 -159800136,"Neverwinter",play,98.0,0 -159800136,"theHunter Primal",purchase,1.0,0 -159800136,"theHunter Primal",play,71.0,0 -159800136,"Counter-Strike Global Offensive",purchase,1.0,0 -159800136,"Counter-Strike Global Offensive",play,49.0,0 -159800136,"The Binding of Isaac Rebirth",purchase,1.0,0 -159800136,"The Binding of Isaac Rebirth",play,49.0,0 -159800136,"DRAGON BALL XENOVERSE",purchase,1.0,0 -159800136,"DRAGON BALL XENOVERSE",play,49.0,0 -159800136,"Dishonored",purchase,1.0,0 -159800136,"Dishonored",play,41.0,0 -159800136,"Dead Space 2",purchase,1.0,0 -159800136,"Dead Space 2",play,41.0,0 -159800136,"The Forest",purchase,1.0,0 -159800136,"The Forest",play,37.0,0 -159800136,"South Park The Stick of Truth",purchase,1.0,0 -159800136,"South Park The Stick of Truth",play,37.0,0 -159800136,"Sniper Elite 3",purchase,1.0,0 -159800136,"Sniper Elite 3",play,31.0,0 -159800136,"DayZ",purchase,1.0,0 -159800136,"DayZ",play,31.0,0 -159800136,"Warframe",purchase,1.0,0 -159800136,"Warframe",play,30.0,0 -159800136,"Dead Space",purchase,1.0,0 -159800136,"Dead Space",play,28.0,0 -159800136,"Deponia",purchase,1.0,0 -159800136,"Deponia",play,20.0,0 -159800136,"Sniper Elite V2",purchase,1.0,0 -159800136,"Sniper Elite V2",play,19.0,0 -159800136,"7 Days to Die",purchase,1.0,0 -159800136,"7 Days to Die",play,17.2,0 -159800136,"Rust",purchase,1.0,0 -159800136,"Rust",play,13.1,0 -159800136,"Killing Floor",purchase,1.0,0 -159800136,"Killing Floor",play,13.0,0 -159800136,"Assassin's Creed Revelations",purchase,1.0,0 -159800136,"Assassin's Creed Revelations",play,11.8,0 -159800136,"Starbound - Unstable",purchase,1.0,0 -159800136,"Starbound - Unstable",play,10.8,0 -159800136,"Brawlhalla",purchase,1.0,0 -159800136,"Brawlhalla",play,10.8,0 -159800136,"Rising World",purchase,1.0,0 -159800136,"Rising World",play,10.7,0 -159800136,"Stranded Deep",purchase,1.0,0 -159800136,"Stranded Deep",play,10.1,0 -159800136,"Lucius II",purchase,1.0,0 -159800136,"Lucius II",play,9.6,0 -159800136,"Unturned",purchase,1.0,0 -159800136,"Unturned",play,9.4,0 -159800136,"Grim Legends The Forsaken Bride",purchase,1.0,0 -159800136,"Grim Legends The Forsaken Bride",play,9.1,0 -159800136,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -159800136,"Tom Clancy's Splinter Cell Conviction",play,8.6,0 -159800136,"Outlast",purchase,1.0,0 -159800136,"Outlast",play,7.7,0 -159800136,"The Binding of Isaac",purchase,1.0,0 -159800136,"The Binding of Isaac",play,7.3,0 -159800136,"Depth",purchase,1.0,0 -159800136,"Depth",play,7.0,0 -159800136,"Minecraft Story Mode - A Telltale Games Series",purchase,1.0,0 -159800136,"Minecraft Story Mode - A Telltale Games Series",play,6.5,0 -159800136,"F.E.A.R. Online",purchase,1.0,0 -159800136,"F.E.A.R. Online",play,6.5,0 -159800136,"Far Cry 2",purchase,1.0,0 -159800136,"Far Cry 2",play,6.2,0 -159800136,"Euro Truck Simulator 2",purchase,1.0,0 -159800136,"Euro Truck Simulator 2",play,6.0,0 -159800136,"Goat Simulator",purchase,1.0,0 -159800136,"Goat Simulator",play,5.8,0 -159800136,"Creativerse",purchase,1.0,0 -159800136,"Creativerse",play,5.5,0 -159800136,"Space Engineers",purchase,1.0,0 -159800136,"Space Engineers",play,4.9,0 -159800136,"Dead Island Epidemic",purchase,1.0,0 -159800136,"Dead Island Epidemic",play,4.6,0 -159800136,"Edna & Harvey The Breakout",purchase,1.0,0 -159800136,"Edna & Harvey The Breakout",play,3.9,0 -159800136,"Echo of Soul",purchase,1.0,0 -159800136,"Echo of Soul",play,3.9,0 -159800136,"Sniper Ghost Warrior 2",purchase,1.0,0 -159800136,"Sniper Ghost Warrior 2",play,3.5,0 -159800136,"Beasts of Prey",purchase,1.0,0 -159800136,"Beasts of Prey",play,3.2,0 -159800136,"Rocket League",purchase,1.0,0 -159800136,"Rocket League",play,3.2,0 -159800136,"LEGO Jurassic World",purchase,1.0,0 -159800136,"LEGO Jurassic World",play,2.8,0 -159800136,"The Elder Scrolls V Skyrim",purchase,1.0,0 -159800136,"The Elder Scrolls V Skyrim",play,2.6,0 -159800136,"Sakura Angels",purchase,1.0,0 -159800136,"Sakura Angels",play,2.5,0 -159800136,"Rake",purchase,1.0,0 -159800136,"Rake",play,2.5,0 -159800136,"Interstellar Marines",purchase,1.0,0 -159800136,"Interstellar Marines",play,2.4,0 -159800136,"Afterfall InSanity Extended Edition",purchase,1.0,0 -159800136,"Afterfall InSanity Extended Edition",play,2.4,0 -159800136,"Dead Realm",purchase,1.0,0 -159800136,"Dead Realm",play,2.4,0 -159800136,"theHunter",purchase,1.0,0 -159800136,"theHunter",play,2.3,0 -159800136,"Counter-Strike Nexon Zombies",purchase,1.0,0 -159800136,"Counter-Strike Nexon Zombies",play,2.2,0 -159800136,"Killing Floor 2",purchase,1.0,0 -159800136,"Killing Floor 2",play,1.9,0 -159800136,"PAYDAY The Heist",purchase,1.0,0 -159800136,"PAYDAY The Heist",play,1.6,0 -159800136,"Alan Wake's American Nightmare",purchase,1.0,0 -159800136,"Alan Wake's American Nightmare",play,1.5,0 -159800136,"Clicker Heroes",purchase,1.0,0 -159800136,"Clicker Heroes",play,1.3,0 -159800136,"Hammerwatch",purchase,1.0,0 -159800136,"Hammerwatch",play,1.3,0 -159800136,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -159800136,"F.E.A.R. 2 Project Origin",play,1.1,0 -159800136,"Infestation Survivor Stories",purchase,1.0,0 -159800136,"Infestation Survivor Stories",play,1.1,0 -159800136,"Warface",purchase,1.0,0 -159800136,"Warface",play,1.0,0 -159800136,"Pirates, Vikings, & Knights II",purchase,1.0,0 -159800136,"Pirates, Vikings, & Knights II",play,1.0,0 -159800136,"War Thunder",purchase,1.0,0 -159800136,"War Thunder",play,0.9,0 -159800136,"Chaos on Deponia",purchase,1.0,0 -159800136,"Chaos on Deponia",play,0.9,0 -159800136,"AdVenture Capitalist",purchase,1.0,0 -159800136,"AdVenture Capitalist",play,0.9,0 -159800136,"Shadowgrounds",purchase,1.0,0 -159800136,"Shadowgrounds",play,0.8,0 -159800136,"God Mode",purchase,1.0,0 -159800136,"God Mode",play,0.8,0 -159800136,"ORION Prelude",purchase,1.0,0 -159800136,"ORION Prelude",play,0.8,0 -159800136,"ARK Survival Evolved",purchase,1.0,0 -159800136,"ARK Survival Evolved",play,0.7,0 -159800136,"Thief",purchase,1.0,0 -159800136,"Thief",play,0.7,0 -159800136,"Legendary",purchase,1.0,0 -159800136,"Legendary",play,0.7,0 -159800136,"Dota 2",purchase,1.0,0 -159800136,"Dota 2",play,0.7,0 -159800136,"World of Guns Gun Disassembly",purchase,1.0,0 -159800136,"World of Guns Gun Disassembly",play,0.7,0 -159800136,"WWE 2K15",purchase,1.0,0 -159800136,"WWE 2K15",play,0.6,0 -159800136,"Contagion",purchase,1.0,0 -159800136,"Contagion",play,0.6,0 -159800136,"Left 4 Dead 2",purchase,1.0,0 -159800136,"Left 4 Dead 2",play,0.6,0 -159800136,"Dinosaur Hunt Africa Contract",purchase,1.0,0 -159800136,"Dinosaur Hunt Africa Contract",play,0.5,0 -159800136,"Double Action Boogaloo",purchase,1.0,0 -159800136,"Double Action Boogaloo",play,0.5,0 -159800136,"Dino D-Day",purchase,1.0,0 -159800136,"Dino D-Day",play,0.5,0 -159800136,"POSTAL 2",purchase,1.0,0 -159800136,"POSTAL 2",play,0.5,0 -159800136,"Arma 2",purchase,1.0,0 -159800136,"Arma 2",play,0.5,0 -159800136,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -159800136,"Tropico 3 - Steam Special Edition",play,0.5,0 -159800136,"Cubic Castles",purchase,1.0,0 -159800136,"Cubic Castles",play,0.4,0 -159800136,"Reveal The Deep",purchase,1.0,0 -159800136,"Reveal The Deep",play,0.4,0 -159800136,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -159800136,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,0.4,0 -159800136,"Canyon Capers",purchase,1.0,0 -159800136,"Canyon Capers",play,0.4,0 -159800136,"Firefall",purchase,1.0,0 -159800136,"Firefall",play,0.3,0 -159800136,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -159800136,"Resident Evil Revelations 2 / Biohazard Revelations 2",play,0.3,0 -159800136,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -159800136,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.3,0 -159800136,"Takedown Red Sabre",purchase,1.0,0 -159800136,"Takedown Red Sabre",play,0.3,0 -159800136,"Primal Carnage",purchase,1.0,0 -159800136,"Primal Carnage",play,0.3,0 -159800136,"Resident Evil / biohazard HD REMASTER",purchase,1.0,0 -159800136,"Resident Evil / biohazard HD REMASTER",play,0.3,0 -159800136,"Path of Exile",purchase,1.0,0 -159800136,"Path of Exile",play,0.3,0 -159800136,"Saints Row 2",purchase,1.0,0 -159800136,"Saints Row 2",play,0.3,0 -159800136,"LEGO Worlds",purchase,1.0,0 -159800136,"LEGO Worlds",play,0.3,0 -159800136,"Ragnarok Online 2",purchase,1.0,0 -159800136,"Ragnarok Online 2",play,0.3,0 -159800136,"Aura Kingdom",purchase,1.0,0 -159800136,"Aura Kingdom",play,0.3,0 -159800136,"Arma 2 Operation Arrowhead",purchase,1.0,0 -159800136,"Arma 2 Operation Arrowhead",play,0.2,0 -159800136,"CastleMiner Z",purchase,1.0,0 -159800136,"CastleMiner Z",play,0.2,0 -159800136,"Arma Combat Operations",purchase,1.0,0 -159800136,"Arma Combat Operations",play,0.2,0 -159800136,"Robocraft",purchase,1.0,0 -159800136,"Robocraft",play,0.2,0 -159800136,"Gotham City Impostors Free To Play",purchase,1.0,0 -159800136,"Gotham City Impostors Free To Play",play,0.2,0 -159800136,"Caster",purchase,1.0,0 -159800136,"Caster",play,0.2,0 -159800136,"Dragomon Hunter",purchase,1.0,0 -159800136,"Dragomon Hunter",play,0.2,0 -159800136,"Damned",purchase,1.0,0 -159800136,"Damned",play,0.2,0 -159800136,"LIGHTNING RETURNS FINAL FANTASY XIII",purchase,1.0,0 -159800136,"LIGHTNING RETURNS FINAL FANTASY XIII",play,0.2,0 -159800136,"Hazard Ops",purchase,1.0,0 -159800136,"Hazard Ops",play,0.2,0 -159800136,"Dead Effect",purchase,1.0,0 -159800136,"Dead Effect",play,0.2,0 -159800136,"Alpha Kimori Episode One ",purchase,1.0,0 -159800136,"Alpha Kimori Episode One ",play,0.2,0 -159800136,"Heroes & Generals",purchase,1.0,0 -159800136,"Heroes & Generals",play,0.1,0 -159800136,"Back to Dinosaur Island ",purchase,1.0,0 -159800136,"Back to Dinosaur Island ",play,0.1,0 -159800136,"Edna & Harvey Harvey's New Eyes",purchase,1.0,0 -159800136,"Edna & Harvey Harvey's New Eyes",play,0.1,0 -159800136,"Guardians of Orion",purchase,1.0,0 -159800136,"Guardians of Orion",play,0.1,0 -159800136,"Hero Siege",purchase,1.0,0 -159800136,"Hero Siege",play,0.1,0 -159800136,"Shadow Puppeteer",purchase,1.0,0 -159800136,"Shadow Puppeteer",play,0.1,0 -159800136,"ibb & obb",purchase,1.0,0 -159800136,"ibb & obb",play,0.1,0 -159800136,"Quake Live",purchase,1.0,0 -159800136,"Shadow Ops Red Mercury",purchase,1.0,0 -159800136,"Uncrowded",purchase,1.0,0 -159800136,"WARMODE",purchase,1.0,0 -159800136,"BLOCKADE 3D",purchase,1.0,0 -159800136,"Sakura Clicker",purchase,1.0,0 -159800136,"Teeworlds",purchase,1.0,0 -159800136,"Shadowgrounds Survivor",purchase,1.0,0 -159800136,"Survarium",purchase,1.0,0 -159800136,"Archeblade",purchase,1.0,0 -159800136,"Divine Souls",purchase,1.0,0 -159800136,"Legend of Mysteria",purchase,1.0,0 -159800136,"Dragon Nest Europe",purchase,1.0,0 -159800136,"Deponia The Complete Journey",purchase,1.0,0 -159800136,"How to Survive",purchase,1.0,0 -159800136,"Alien Isolation",purchase,1.0,0 -159800136,"ArcheAge",purchase,1.0,0 -159800136,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -159800136,"Assassin's Creed IV Black Flag",purchase,1.0,0 -159800136,"Champions Online",purchase,1.0,0 -159800136,"Dirty Bomb",purchase,1.0,0 -159800136,"Dragons and Titans",purchase,1.0,0 -159800136,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -159800136,"FORCED",purchase,1.0,0 -159800136,"Grand Theft Auto San Andreas",purchase,1.0,0 -159800136,"Grand Theft Auto IV",purchase,1.0,0 -159800136,"GTA SA German Mac",purchase,1.0,0 -159800136,"Karos",purchase,1.0,0 -159800136,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -159800136,"Marvel Heroes 2015",purchase,1.0,0 -159800136,"Memoria",purchase,1.0,0 -159800136,"Metro 2033",purchase,1.0,0 -159800136,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -159800136,"No More Room in Hell",purchase,1.0,0 -159800136,"Nosgoth",purchase,1.0,0 -159800136,"Only If",purchase,1.0,0 -159800136,"Outlast Whistleblower DLC",purchase,1.0,0 -159800136,"Overcast - Walden and the Werewolf",purchase,1.0,0 -159800136,"PAYDAY 2",purchase,1.0,0 -159800136,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -159800136,"South Park The Stick of Truth - Super Samurai Spaceman Pack",purchase,1.0,0 -159800136,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -159800136,"Spiral Knights",purchase,1.0,0 -159800136,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -159800136,"TDP4Team Battle",purchase,1.0,0 -159800136,"The Night of the Rabbit",purchase,1.0,0 -159800136,"The Whispered World Special Edition",purchase,1.0,0 -159800136,"Thief - Opportunist",purchase,1.0,0 -159800136,"Two Worlds II",purchase,1.0,0 -159800136,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -159800136,"Warlock - Master of the Arcane",purchase,1.0,0 -159800136,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -127788996,"BioShock Infinite",purchase,1.0,0 -127788996,"BioShock Infinite",play,70.0,0 -127788996,"Sid Meier's Civilization V",purchase,1.0,0 -127788996,"Sid Meier's Civilization V",play,4.8,0 -127788996,"Crazy Machines",purchase,1.0,0 -127788996,"Crazy Machines",play,1.5,0 -127788996,"Skyscraper Simulator",purchase,1.0,0 -127788996,"Airport Simulator 2014",purchase,1.0,0 -127788996,"Agricultural Simulator Historical Farming",purchase,1.0,0 -127788996,"Bridge It (plus)",purchase,1.0,0 -127788996,"Crazy Machines 1.5 Inventors Training Camp",purchase,1.0,0 -127788996,"Crazy Machines 1.5 New from the Lab",purchase,1.0,0 -127788996,"Crazy Machines 2",purchase,1.0,0 -127788996,"Crazy Machines 2 Fluid Add-On",purchase,1.0,0 -127788996,"Dogfight 1942",purchase,1.0,0 -127788996,"Dogfight 1942 Fire over Africa",purchase,1.0,0 -127788996,"Dogfight 1942 Russia under Siege",purchase,1.0,0 -127788996,"Lunar Flight",purchase,1.0,0 -127788996,"Woodcutter Simulator 2013",purchase,1.0,0 -206982761,"Counter-Strike Global Offensive",purchase,1.0,0 -206982761,"Counter-Strike Global Offensive",play,260.0,0 -206982761,"The Elder Scrolls V Skyrim",purchase,1.0,0 -206982761,"The Elder Scrolls V Skyrim",play,27.0,0 -206982761,"Garry's Mod",purchase,1.0,0 -206982761,"Garry's Mod",play,23.0,0 -206982761,"Terraria",purchase,1.0,0 -206982761,"Terraria",play,10.8,0 -206982761,"AdVenture Capitalist",purchase,1.0,0 -206982761,"AdVenture Capitalist",play,4.2,0 -206982761,"Assassin's Creed IV Black Flag",purchase,1.0,0 -206982761,"Assassin's Creed IV Black Flag",play,0.5,0 -206982761,"War Thunder",purchase,1.0,0 -142489812,"Europa Universalis IV",purchase,1.0,0 -142489812,"Europa Universalis IV",play,2836.0,0 -142489812,"Europa Universalis IV Conquest of Paradise",purchase,1.0,0 -1601069,"Counter-Strike",purchase,1.0,0 -1601069,"Day of Defeat",purchase,1.0,0 -1601069,"Deathmatch Classic",purchase,1.0,0 -1601069,"Half-Life",purchase,1.0,0 -1601069,"Half-Life Blue Shift",purchase,1.0,0 -1601069,"Half-Life Opposing Force",purchase,1.0,0 -1601069,"Ricochet",purchase,1.0,0 -1601069,"Team Fortress Classic",purchase,1.0,0 -275875486,"Sakura Clicker",purchase,1.0,0 -275875486,"Sakura Clicker",play,42.0,0 -275875486,"Garry's Mod",purchase,1.0,0 -275875486,"Garry's Mod",play,30.0,0 -275875486,"Unturned",purchase,1.0,0 -275875486,"Unturned",play,9.3,0 -275875486,"Echo of Soul",purchase,1.0,0 -275875486,"Echo of Soul",play,1.2,0 -275875486,"Clicker Heroes",purchase,1.0,0 -275875486,"Clicker Heroes",play,1.2,0 -275875486,"NEKOPARA Vol. 0",purchase,1.0,0 -275875486,"NEKOPARA Vol. 0",play,0.2,0 -275875486,"Defiance",purchase,1.0,0 -275875486,"Defiance",play,0.2,0 -275875486,"AdVenture Capitalist",purchase,1.0,0 -275875486,"Warframe",purchase,1.0,0 -177682182,"Dota 2",purchase,1.0,0 -177682182,"Dota 2",play,0.1,0 -247781557,"Dota 2",purchase,1.0,0 -247781557,"Dota 2",play,1.7,0 -91687359,"Counter-Strike",purchase,1.0,0 -91687359,"Counter-Strike",play,1070.0,0 -91687359,"Counter-Strike Global Offensive",purchase,1.0,0 -91687359,"Counter-Strike Global Offensive",play,72.0,0 -91687359,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -91687359,"Counter-Strike Condition Zero Deleted Scenes",play,11.9,0 -91687359,"GunZ 2 The Second Duel",purchase,1.0,0 -91687359,"GunZ 2 The Second Duel",play,2.5,0 -91687359,"Counter-Strike Condition Zero",purchase,1.0,0 -91687359,"Nosgoth",purchase,1.0,0 -158813353,"Dota 2",purchase,1.0,0 -158813353,"Dota 2",play,0.6,0 -173649791,"Train Simulator",purchase,1.0,0 -173649791,"Train Simulator",play,14.2,0 -173649791,"OMSI 2",purchase,1.0,0 -173649791,"OMSI 2",play,7.0,0 -173649791,"Counter-Strike Global Offensive",purchase,1.0,0 -173649791,"Counter-Strike Global Offensive",play,2.9,0 -173649791,"Far Cry 3",purchase,1.0,0 -173649791,"Far Cry 3",play,2.2,0 -173649791,"Goat Simulator",purchase,1.0,0 -173649791,"Goat Simulator",play,1.6,0 -173649791,"Construction-Simulator 2015",purchase,1.0,0 -173649791,"Construction-Simulator 2015",play,0.4,0 -173649791,"Blitzkrieg Anthology",purchase,1.0,0 -173649791,"Crystals of Time",purchase,1.0,0 -173649791,"East India Company Gold",purchase,1.0,0 -173649791,"Hacker Evolution",purchase,1.0,0 -173649791,"Hacker Evolution - Untold",purchase,1.0,0 -173649791,"Hacker Evolution Duality",purchase,1.0,0 -191169296,"Dota 2",purchase,1.0,0 -191169296,"Dota 2",play,9.1,0 -191169296,"Toribash",purchase,1.0,0 -191169296,"Warframe",purchase,1.0,0 -138919253,"Dota 2",purchase,1.0,0 -138919253,"Dota 2",play,760.0,0 -246360888,"Bad Rats",purchase,1.0,0 -218580878,"Dota 2",purchase,1.0,0 -218580878,"Dota 2",play,9.7,0 -240058387,"Robocraft",purchase,1.0,0 -167632411,"Dota 2",purchase,1.0,0 -167632411,"Dota 2",play,0.6,0 -167013460,"Team Fortress 2",purchase,1.0,0 -167013460,"Team Fortress 2",play,6.0,0 -176322943,"Dota 2",purchase,1.0,0 -176322943,"Dota 2",play,1.2,0 -176322943,"Hydrophobia Prophecy",purchase,1.0,0 -191566590,"Dota 2",purchase,1.0,0 -191566590,"Dota 2",play,3.7,0 -255178947,"Dota 2",purchase,1.0,0 -255178947,"Dota 2",play,4.7,0 -133231400,"DC Universe Online",purchase,1.0,0 -133231400,"DC Universe Online",play,0.7,0 -133231400,"Dota 2",purchase,1.0,0 -133231400,"Dota 2",play,0.1,0 -22470137,"Counter-Strike Source",purchase,1.0,0 -22470137,"Counter-Strike Source",play,31.0,0 -22470137,"Counter-Strike",purchase,1.0,0 -22470137,"Counter-Strike Condition Zero",purchase,1.0,0 -22470137,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -22470137,"Day of Defeat",purchase,1.0,0 -22470137,"Day of Defeat Source",purchase,1.0,0 -22470137,"Deathmatch Classic",purchase,1.0,0 -22470137,"Half-Life 2 Deathmatch",purchase,1.0,0 -22470137,"Half-Life 2 Lost Coast",purchase,1.0,0 -22470137,"Ricochet",purchase,1.0,0 -136563996,"Tomb Raider",purchase,1.0,0 -136563996,"Tomb Raider",play,45.0,0 -136563996,"BioShock Infinite",purchase,1.0,0 -136563996,"BioShock Infinite",play,14.0,0 -109373866,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -109373866,"Call of Duty Black Ops - Multiplayer",play,99.0,0 -109373866,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -109373866,"Call of Duty 4 Modern Warfare",play,54.0,0 -109373866,"Call of Duty Black Ops",purchase,1.0,0 -109373866,"Call of Duty Black Ops",play,3.3,0 -109373866,"Warframe",purchase,1.0,0 -109373866,"Warframe",play,3.3,0 -109373866,"Echoes+",purchase,1.0,0 -109373866,"Echoes+",play,0.1,0 -109373866,"PlanetSide 2",purchase,1.0,0 -189225514,"Mini Metro",purchase,1.0,0 -189225514,"Mini Metro",play,40.0,0 -189225514,"Unturned",purchase,1.0,0 -237354533,"No More Room in Hell",purchase,1.0,0 -237354533,"War Thunder",purchase,1.0,0 -948368,"Counter-Strike Source",purchase,1.0,0 -948368,"Counter-Strike Source",play,83.0,0 -948368,"Counter-Strike",purchase,1.0,0 -948368,"Counter-Strike",play,5.2,0 -948368,"Half-Life 2",purchase,1.0,0 -948368,"Half-Life 2",play,0.3,0 -948368,"Day of Defeat",purchase,1.0,0 -948368,"Deathmatch Classic",purchase,1.0,0 -948368,"DiRT 3",purchase,1.0,0 -948368,"DiRT 3 Complete Edition",purchase,1.0,0 -948368,"Half-Life",purchase,1.0,0 -948368,"Half-Life 2 Deathmatch",purchase,1.0,0 -948368,"Half-Life 2 Lost Coast",purchase,1.0,0 -948368,"Half-Life Blue Shift",purchase,1.0,0 -948368,"Half-Life Opposing Force",purchase,1.0,0 -948368,"Ricochet",purchase,1.0,0 -948368,"Team Fortress Classic",purchase,1.0,0 -206684643,"Team Fortress 2",purchase,1.0,0 -206684643,"Team Fortress 2",play,32.0,0 -284372650,"Dota 2",purchase,1.0,0 -284372650,"Dota 2",play,0.4,0 -284372650,"FreeStyle2 Street Basketball",purchase,1.0,0 -286222836,"Team Fortress 2",purchase,1.0,0 -286222836,"Team Fortress 2",play,38.0,0 -286222836,"PlanetSide 2",purchase,1.0,0 -286222836,"RaceRoom Racing Experience ",purchase,1.0,0 -286222836,"War Thunder",purchase,1.0,0 -250369736,"Unturned",purchase,1.0,0 -250369736,"Unturned",play,5.7,0 -185517910,"Unturned",purchase,1.0,0 -185517910,"Unturned",play,53.0,0 -185517910,"Heroes & Generals",purchase,1.0,0 -185517910,"Heroes & Generals",play,30.0,0 -185517910,"Dota 2",purchase,1.0,0 -185517910,"Dota 2",play,1.0,0 -114937057,"Counter-Strike Global Offensive",purchase,1.0,0 -114937057,"Counter-Strike Global Offensive",play,390.0,0 -114937057,"Counter-Strike Source",purchase,1.0,0 -114937057,"Counter-Strike Source",play,44.0,0 -114937057,"Dota 2",purchase,1.0,0 -114937057,"Dota 2",play,6.7,0 -234931110,"Counter-Strike Global Offensive",purchase,1.0,0 -234931110,"Counter-Strike Global Offensive",play,3.9,0 -213188895,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -213188895,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,106.0,0 -213188895,"Garry's Mod",purchase,1.0,0 -213188895,"Garry's Mod",play,26.0,0 -213188895,"Team Fortress 2",purchase,1.0,0 -213188895,"Team Fortress 2",play,3.8,0 -213188895,"Terraria",purchase,1.0,0 -178465090,"Unturned",purchase,1.0,0 -178465090,"Unturned",play,31.0,0 -178465090,"Team Fortress 2",purchase,1.0,0 -178465090,"Team Fortress 2",play,21.0,0 -178465090,"War Inc. Battlezone",purchase,1.0,0 -178465090,"War Inc. Battlezone",play,6.0,0 -178465090,"Robocraft",purchase,1.0,0 -178465090,"Robocraft",play,0.6,0 -178465090,"Dota 2",purchase,1.0,0 -178465090,"Dota 2",play,0.5,0 -178465090,"Warface",purchase,1.0,0 -178465090,"Warface",play,0.3,0 -178465090,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -171066425,"Age of Empires II HD Edition",purchase,1.0,0 -171066425,"Age of Empires II HD Edition",play,1.8,0 -239076426,"Age of Empires II HD Edition",purchase,1.0,0 -239076426,"Age of Empires II HD Edition",play,10.4,0 -239076426,"Age of Empires II HD The Forgotten",purchase,1.0,0 -55352649,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -55352649,"Call of Duty Modern Warfare 2 - Multiplayer",play,487.0,0 -55352649,"Call of Duty Modern Warfare 2",purchase,1.0,0 -55352649,"Call of Duty Modern Warfare 2",play,18.1,0 -55352649,"Team Fortress 2",purchase,1.0,0 -55352649,"Team Fortress 2",play,6.3,0 -55352649,"Left 4 Dead 2",purchase,1.0,0 -55352649,"Left 4 Dead 2",play,3.7,0 -55352649,"Call of Duty Modern Warfare 2 Stimulus Package",purchase,1.0,0 -179214937,"Dota 2",purchase,1.0,0 -179214937,"Dota 2",play,36.0,0 -186070645,"Team Fortress 2",purchase,1.0,0 -186070645,"Team Fortress 2",play,533.0,0 -117663927,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -117663927,"Call of Duty Black Ops II - Multiplayer",play,181.0,0 -117663927,"Call of Duty Black Ops II",purchase,1.0,0 -117663927,"Call of Duty Black Ops II",play,2.8,0 -117663927,"Call of Duty Ghosts",purchase,1.0,0 -117663927,"Call of Duty Ghosts",play,1.2,0 -117663927,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -117663927,"Call of Duty Ghosts - Multiplayer",play,1.1,0 -117663927,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -117663927,"Call of Duty Black Ops II - Zombies",play,0.9,0 -241004229,"Counter-Strike Nexon Zombies",purchase,1.0,0 -241004229,"Counter-Strike Nexon Zombies",play,12.7,0 -241004229,"Unturned",purchase,1.0,0 -241004229,"Unturned",play,8.9,0 -241004229,"DiggerOnline",purchase,1.0,0 -241004229,"Modular Combat",purchase,1.0,0 -241004229,"Warside",purchase,1.0,0 -112192991,"Dota 2",purchase,1.0,0 -112192991,"Dota 2",play,1146.0,0 -119625118,"Train Simulator",purchase,1.0,0 -119625118,"Train Simulator",play,1655.0,0 -193840893,"Aliens vs. Predator",purchase,1.0,0 -193840893,"Aliens vs. Predator",play,1.2,0 -193840893,"Operation Flashpoint Red River",purchase,1.0,0 -193840893,"Operation Flashpoint Red River",play,0.7,0 -193840893,"Aliens Colonial Marines",purchase,1.0,0 -193840893,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",purchase,1.0,0 -193840893,"Air Conflicts Pacific Carriers",purchase,1.0,0 -250843033,"Counter-Strike Global Offensive",purchase,1.0,0 -250843033,"Counter-Strike Global Offensive",play,28.0,0 -250843033,"Fishing Planet",purchase,1.0,0 -101507558,"Total War ROME II - Emperor Edition",purchase,1.0,0 -101507558,"Total War ROME II - Emperor Edition",play,152.0,0 -101507558,"Napoleon Total War",purchase,1.0,0 -101507558,"Napoleon Total War",play,99.0,0 -101507558,"Rome Total War",purchase,1.0,0 -117022366,"Euro Truck Simulator 2",purchase,1.0,0 -117022366,"Euro Truck Simulator 2",play,134.0,0 -117022366,"Counter-Strike Global Offensive",purchase,1.0,0 -117022366,"Counter-Strike Global Offensive",play,107.0,0 -117022366,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -117022366,"Call of Duty 4 Modern Warfare",play,81.0,0 -117022366,"Rocket League",purchase,1.0,0 -117022366,"Rocket League",play,58.0,0 -117022366,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -117022366,"Call of Duty Modern Warfare 3 - Multiplayer",play,43.0,0 -117022366,"Team Fortress 2",purchase,1.0,0 -117022366,"Team Fortress 2",play,39.0,0 -117022366,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -117022366,"Rising Storm/Red Orchestra 2 Multiplayer",play,34.0,0 -117022366,"Train Simulator",purchase,1.0,0 -117022366,"Train Simulator",play,34.0,0 -117022366,"Hazard Ops",purchase,1.0,0 -117022366,"Hazard Ops",play,30.0,0 -117022366,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -117022366,"Microsoft Flight Simulator X Steam Edition",play,24.0,0 -117022366,"Grand Theft Auto V",purchase,1.0,0 -117022366,"Grand Theft Auto V",play,22.0,0 -117022366,"War Thunder",purchase,1.0,0 -117022366,"War Thunder",play,20.0,0 -117022366,"Geometry Dash",purchase,1.0,0 -117022366,"Geometry Dash",play,20.0,0 -117022366,"Call of Duty Ghosts",purchase,1.0,0 -117022366,"Call of Duty Ghosts",play,19.4,0 -117022366,"Assassin's Creed Brotherhood",purchase,1.0,0 -117022366,"Assassin's Creed Brotherhood",play,16.5,0 -117022366,"Tribes Ascend",purchase,1.0,0 -117022366,"Tribes Ascend",play,15.7,0 -117022366,"Assassin's Creed Revelations",purchase,1.0,0 -117022366,"Assassin's Creed Revelations",play,15.2,0 -117022366,"Call of Duty Black Ops III",purchase,1.0,0 -117022366,"Call of Duty Black Ops III",play,13.5,0 -117022366,"Aliens Colonial Marines",purchase,1.0,0 -117022366,"Aliens Colonial Marines",play,12.5,0 -117022366,"Panzar",purchase,1.0,0 -117022366,"Panzar",play,12.5,0 -117022366,"Dota 2",purchase,1.0,0 -117022366,"Dota 2",play,11.6,0 -117022366,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -117022366,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,10.7,0 -117022366,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -117022366,"Call of Duty Ghosts - Multiplayer",play,7.8,0 -117022366,"PlanetSide 2",purchase,1.0,0 -117022366,"PlanetSide 2",play,7.5,0 -117022366,"OMSI 2",purchase,1.0,0 -117022366,"OMSI 2",play,7.4,0 -117022366,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -117022366,"Tom Clancy's Ghost Recon Phantoms - EU",play,6.7,0 -117022366,"Spintires",purchase,1.0,0 -117022366,"Spintires",play,6.4,0 -117022366,"Call of Duty Modern Warfare 3",purchase,1.0,0 -117022366,"Call of Duty Modern Warfare 3",play,6.3,0 -117022366,"Gotham City Impostors Free To Play",purchase,1.0,0 -117022366,"Gotham City Impostors Free To Play",play,6.0,0 -117022366,"Unturned",purchase,1.0,0 -117022366,"Unturned",play,3.5,0 -117022366,"Strike Vector",purchase,1.0,0 -117022366,"Strike Vector",play,3.3,0 -117022366,"The Mean Greens - Plastic Warfare",purchase,1.0,0 -117022366,"The Mean Greens - Plastic Warfare",play,2.2,0 -117022366,"Star Conflict",purchase,1.0,0 -117022366,"Star Conflict",play,1.9,0 -117022366,"Verdun",purchase,1.0,0 -117022366,"Verdun",play,1.5,0 -117022366,"HAWKEN",purchase,1.0,0 -117022366,"HAWKEN",play,1.2,0 -117022366,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -117022366,"S.K.I.L.L. - Special Force 2",play,1.1,0 -117022366,"Firefall",purchase,1.0,0 -117022366,"Firefall",play,1.0,0 -117022366,"Total War Battles KINGDOM",purchase,1.0,0 -117022366,"Total War Battles KINGDOM",play,1.0,0 -117022366,"Goat Simulator",purchase,1.0,0 -117022366,"Goat Simulator",play,0.9,0 -117022366,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -117022366,"A.V.A - Alliance of Valiant Arms",play,0.8,0 -117022366,"Island Flight Simulator",purchase,1.0,0 -117022366,"Island Flight Simulator",play,0.6,0 -117022366,"Warface",purchase,1.0,0 -117022366,"Warface",play,0.6,0 -117022366,"DCS World",purchase,1.0,0 -117022366,"DCS World",play,0.5,0 -117022366,"Risen 2 - Dark Waters",purchase,1.0,0 -117022366,"Risen 2 - Dark Waters",play,0.5,0 -117022366,"Grand Theft Auto San Andreas",purchase,1.0,0 -117022366,"Grand Theft Auto San Andreas",play,0.5,0 -117022366,"Takedown Red Sabre",purchase,1.0,0 -117022366,"Takedown Red Sabre",play,0.4,0 -117022366,"Survarium",purchase,1.0,0 -117022366,"Survarium",play,0.3,0 -117022366,"Heroes & Generals",purchase,1.0,0 -117022366,"Heroes & Generals",play,0.3,0 -117022366,"Dirty Bomb",purchase,1.0,0 -117022366,"Dirty Bomb",play,0.3,0 -117022366,"ACE - Arena Cyber Evolution",purchase,1.0,0 -117022366,"ACE - Arena Cyber Evolution",play,0.2,0 -117022366,"World of Guns Gun Disassembly",purchase,1.0,0 -117022366,"World of Guns Gun Disassembly",play,0.2,0 -117022366,"GTR 2 - FIA GT Racing Game",purchase,1.0,0 -117022366,"Interstellar Marines",purchase,1.0,0 -117022366,"GTA SA German Mac",purchase,1.0,0 -173273313,"Dota 2",purchase,1.0,0 -173273313,"Dota 2",play,2.5,0 -173273313,"FreeStyle2 Street Basketball",purchase,1.0,0 -173273313,"War Thunder",purchase,1.0,0 -238150726,"Dota 2",purchase,1.0,0 -238150726,"Dota 2",play,5.2,0 -273932992,"Unturned",purchase,1.0,0 -273932992,"Warface",purchase,1.0,0 -205058166,"Undertale",purchase,1.0,0 -205058166,"Undertale",play,22.0,0 -205058166,"Hatoful Boyfriend",purchase,1.0,0 -205058166,"Hatoful Boyfriend",play,15.9,0 -205058166,"HuniePop",purchase,1.0,0 -205058166,"HuniePop",play,3.6,0 -205058166,"Garry's Mod",purchase,1.0,0 -205058166,"Garry's Mod",play,3.5,0 -205058166,"The Stanley Parable",purchase,1.0,0 -205058166,"The Stanley Parable",play,3.1,0 -205058166,"Don't Starve",purchase,1.0,0 -205058166,"Don't Starve",play,2.8,0 -205058166,"Scribblenauts Unlimited",purchase,1.0,0 -205058166,"Scribblenauts Unlimited",play,1.6,0 -205058166,"NEKOPARA Vol. 1",purchase,1.0,0 -205058166,"NEKOPARA Vol. 1",play,0.4,0 -205058166,"Sakura Clicker",purchase,1.0,0 -205058166,"Don't Starve Together Beta",purchase,1.0,0 -205058166,"The Elder Scrolls V Skyrim",purchase,1.0,0 -214412158,"Dota 2",purchase,1.0,0 -214412158,"Dota 2",play,2.2,0 -275518260,"WARMODE",purchase,1.0,0 -275518260,"WARMODE",play,12.4,0 -275518260,"Red Crucible Firestorm",purchase,1.0,0 -275518260,"Red Crucible Firestorm",play,10.6,0 -275518260,"Gear Up",purchase,1.0,0 -275518260,"Gear Up",play,7.9,0 -275518260,"Team Fortress 2",purchase,1.0,0 -275518260,"Team Fortress 2",play,7.3,0 -275518260,"CroNix",purchase,1.0,0 -275518260,"CroNix",play,3.6,0 -275518260,"Wind of Luck Arena",purchase,1.0,0 -275518260,"Wind of Luck Arena",play,2.4,0 -275518260,"Dota 2",purchase,1.0,0 -275518260,"Dota 2",play,2.0,0 -275518260,"Unturned",purchase,1.0,0 -275518260,"Unturned",play,1.8,0 -275518260,"theHunter",purchase,1.0,0 -275518260,"theHunter",play,0.3,0 -275518260,"Soccer Manager 2015",purchase,1.0,0 -275518260,"DCS World",purchase,1.0,0 -275518260,"Marvel Heroes 2015",purchase,1.0,0 -275518260,"Mortal Online",purchase,1.0,0 -275518260,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -275518260,"War Thunder",purchase,1.0,0 -115990965,"Metro 2033",purchase,1.0,0 -115990965,"Metro 2033",play,2.9,0 -115990965,"Team Fortress 2",purchase,1.0,0 -115990965,"Team Fortress 2",play,0.8,0 -181106616,"Dota 2",purchase,1.0,0 -181106616,"Dota 2",play,0.2,0 -161366228,"Counter-Strike Global Offensive",purchase,1.0,0 -161366228,"Counter-Strike Global Offensive",play,988.0,0 -161366228,"Dota 2",purchase,1.0,0 -161366228,"Dota 2",play,98.0,0 -161366228,"Insurgency",purchase,1.0,0 -161366228,"Insurgency",play,46.0,0 -161366228,"Counter-Strike Source",purchase,1.0,0 -161366228,"Counter-Strike Source",play,21.0,0 -161366228,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -161366228,"Grand Theft Auto Episodes from Liberty City",play,17.9,0 -161366228,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -161366228,"Tom Clancy's Splinter Cell Conviction",play,16.9,0 -161366228,"Max Payne 3",purchase,1.0,0 -161366228,"Max Payne 3",play,12.9,0 -161366228,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -161366228,"Call of Duty Modern Warfare 2 - Multiplayer",play,12.6,0 -161366228,"Tomb Raider",purchase,1.0,0 -161366228,"Tomb Raider",play,9.1,0 -161366228,"Outlast",purchase,1.0,0 -161366228,"Outlast",play,8.4,0 -161366228,"Sniper Elite V2",purchase,1.0,0 -161366228,"Sniper Elite V2",play,7.8,0 -161366228,"BioShock Infinite",purchase,1.0,0 -161366228,"BioShock Infinite",play,6.4,0 -161366228,"Metro 2033 Redux",purchase,1.0,0 -161366228,"Metro 2033 Redux",play,5.3,0 -161366228,"Battlefield Bad Company 2",purchase,1.0,0 -161366228,"Battlefield Bad Company 2",play,4.1,0 -161366228,"Call of Duty Modern Warfare 2",purchase,1.0,0 -161366228,"Call of Duty Modern Warfare 2",play,3.3,0 -161366228,"Warframe",purchase,1.0,0 -161366228,"Warframe",play,1.6,0 -161366228,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -161366228,"The Witcher 2 Assassins of Kings Enhanced Edition",play,1.3,0 -161366228,"Adventures of Shuggy",purchase,1.0,0 -161366228,"Adventures of Shuggy",play,1.0,0 -161366228,"PAYDAY 2",purchase,1.0,0 -161366228,"PAYDAY 2",play,0.4,0 -161366228,"Legendary",purchase,1.0,0 -161366228,"Legendary",play,0.4,0 -161366228,"Heroes & Generals",purchase,1.0,0 -161366228,"Heroes & Generals",play,0.3,0 -161366228,"Team Fortress 2",purchase,1.0,0 -161366228,"Team Fortress 2",play,0.3,0 -161366228,"Velvet Assassin",purchase,1.0,0 -161366228,"Velvet Assassin",play,0.2,0 -161366228,"Serious Sam 2",purchase,1.0,0 -161366228,"Serious Sam 2",play,0.2,0 -161366228,"Nail'd",purchase,1.0,0 -161366228,"Nail'd",play,0.2,0 -161366228,"Toribash",purchase,1.0,0 -161366228,"Toribash",play,0.1,0 -161366228,"Dead Island Epidemic",purchase,1.0,0 -161366228,"Dead Island Epidemic",play,0.1,0 -161366228,"HAWKEN",purchase,1.0,0 -161366228,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -161366228,"Unturned",purchase,1.0,0 -161366228,"Enclave",purchase,1.0,0 -161366228,"Metro Last Light",purchase,1.0,0 -161366228,"A-Train 8",purchase,1.0,0 -161366228,"Anomaly Warzone Earth",purchase,1.0,0 -161366228,"Europa Universalis III",purchase,1.0,0 -161366228,"F.E.A.R.",purchase,1.0,0 -161366228,"F.E.A.R. Extraction Point",purchase,1.0,0 -161366228,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -161366228,"Gun Metal",purchase,1.0,0 -161366228,"Hacker Evolution",purchase,1.0,0 -161366228,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",purchase,1.0,0 -161366228,"KnightShift",purchase,1.0,0 -161366228,"Offspring Fling!",purchase,1.0,0 -161366228,"Outlast Whistleblower DLC",purchase,1.0,0 -161366228,"PAYDAY The Heist",purchase,1.0,0 -161366228,"Racer 8",purchase,1.0,0 -161366228,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -161366228,"theHunter",purchase,1.0,0 -161366228,"Trove",purchase,1.0,0 -161366228,"Two Worlds Epic Edition",purchase,1.0,0 -178964139,"Warface",purchase,1.0,0 -178964139,"Warface",play,25.0,0 -178964139,"Company of Heroes 2",purchase,1.0,0 -178964139,"Company of Heroes 2",play,21.0,0 -178964139,"Aliens Colonial Marines",purchase,1.0,0 -178964139,"Aliens Colonial Marines",play,6.0,0 -178964139,"Company of Heroes (New Steam Version)",purchase,1.0,0 -178964139,"Company of Heroes (New Steam Version)",play,5.1,0 -178964139,"Pillars of Eternity",purchase,1.0,0 -178964139,"Pillars of Eternity",play,5.0,0 -178964139,"Sniper Elite V2",purchase,1.0,0 -178964139,"Sniper Elite V2",play,4.4,0 -178964139,"Wolfenstein The Old Blood ",purchase,1.0,0 -178964139,"Wolfenstein The Old Blood ",play,3.6,0 -178964139,"Wolfenstein The New Order",purchase,1.0,0 -178964139,"Wolfenstein The New Order",play,2.1,0 -178964139,"C9",purchase,1.0,0 -178964139,"C9",play,1.7,0 -178964139,"Max Payne 3",purchase,1.0,0 -178964139,"Max Payne 3",play,1.7,0 -178964139,"Heroes & Generals",purchase,1.0,0 -178964139,"Heroes & Generals",play,0.4,0 -178964139,"Guild Wars",purchase,1.0,0 -178964139,"Guild Wars",play,0.2,0 -178964139,"Company of Heroes Tales of Valor",purchase,1.0,0 -178964139,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -178964139,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -178964139,"Company of Heroes",purchase,1.0,0 -178964139,"Company of Heroes 2 - Ardennes Assault",purchase,1.0,0 -178964139,"Company of Heroes 2 - The British Forces",purchase,1.0,0 -178964139,"Company of Heroes Opposing Fronts",purchase,1.0,0 -178964139,"Guild Wars Trilogy",purchase,1.0,0 -178964139,"Max Payne 3 Season Pass",purchase,1.0,0 -178964139,"RaiderZ",purchase,1.0,0 -27944300,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -27944300,"Dark Messiah of Might & Magic Single Player",play,16.8,0 -27944300,"Alien Swarm",purchase,1.0,0 -27944300,"Alien Swarm",play,8.2,0 -27944300,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -27944300,"Dark Messiah of Might & Magic Multi-Player",play,0.7,0 -296578913,"Spooky's House of Jump Scares",purchase,1.0,0 -196707355,"Bloodline Champions",purchase,1.0,0 -196707355,"Bloodline Champions",play,0.4,0 -196707355,"Dota 2",purchase,1.0,0 -196707355,"Dota 2",play,0.3,0 -196707355,"Neverwinter",purchase,1.0,0 -196707355,"Magicka Wizard Wars",purchase,1.0,0 -196707355,"Forsaken World ",purchase,1.0,0 -196707355,"Path of Exile",purchase,1.0,0 -115494980,"Team Fortress 2",purchase,1.0,0 -115494980,"Team Fortress 2",play,0.3,0 -100096071,"The Elder Scrolls V Skyrim",purchase,1.0,0 -100096071,"The Elder Scrolls V Skyrim",play,159.0,0 -100096071,"Euro Truck Simulator 2",purchase,1.0,0 -100096071,"Euro Truck Simulator 2",play,156.0,0 -100096071,"LEGO MARVEL Super Heroes",purchase,1.0,0 -100096071,"LEGO MARVEL Super Heroes",play,152.0,0 -100096071,"Just Cause 2",purchase,1.0,0 -100096071,"Just Cause 2",play,65.0,0 -100096071,"Fallout New Vegas",purchase,1.0,0 -100096071,"Fallout New Vegas",play,64.0,0 -100096071,"Far Cry 3",purchase,1.0,0 -100096071,"Far Cry 3",play,33.0,0 -100096071,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -100096071,"Tom Clancy's Ghost Recon Phantoms - EU",play,26.0,0 -100096071,"The LEGO Movie - Videogame",purchase,1.0,0 -100096071,"The LEGO Movie - Videogame",play,14.7,0 -100096071,"Half-Life 2",purchase,1.0,0 -100096071,"Half-Life 2",play,11.0,0 -100096071,"RaceRoom Racing Experience ",purchase,1.0,0 -100096071,"RaceRoom Racing Experience ",play,5.5,0 -100096071,"Robocraft",purchase,1.0,0 -100096071,"Robocraft",play,3.6,0 -100096071,"DOOM 3",purchase,1.0,0 -100096071,"DOOM 3",play,2.8,0 -100096071,"Marvel Heroes 2015",purchase,1.0,0 -100096071,"Marvel Heroes 2015",play,2.8,0 -100096071,"Dota 2",purchase,1.0,0 -100096071,"Dota 2",play,2.6,0 -100096071,"DC Universe Online",purchase,1.0,0 -100096071,"DC Universe Online",play,2.2,0 -100096071,"Half-Life 2 Episode One",purchase,1.0,0 -100096071,"Half-Life 2 Episode One",play,1.9,0 -100096071,"King Arthur - The Role-playing Wargame",purchase,1.0,0 -100096071,"King Arthur - The Role-playing Wargame",play,1.3,0 -100096071,"Far Cry 2",purchase,1.0,0 -100096071,"Far Cry 2",play,0.9,0 -100096071,"Unturned",purchase,1.0,0 -100096071,"Unturned",play,0.9,0 -100096071,"Half-Life Opposing Force",purchase,1.0,0 -100096071,"Half-Life Opposing Force",play,0.7,0 -100096071,"Nosgoth",purchase,1.0,0 -100096071,"Nosgoth",play,0.3,0 -100096071,"APB Reloaded",purchase,1.0,0 -100096071,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -100096071,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -100096071,"Fallout New Vegas Dead Money",purchase,1.0,0 -100096071,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -100096071,"Far Cry",purchase,1.0,0 -100096071,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -100096071,"Far Cry 3 Blood Dragon",purchase,1.0,0 -100096071,"Gotham City Impostors Free To Play",purchase,1.0,0 -100096071,"Half-Life",purchase,1.0,0 -100096071,"Half-Life 2 Deathmatch",purchase,1.0,0 -100096071,"Half-Life 2 Episode Two",purchase,1.0,0 -100096071,"Half-Life 2 Lost Coast",purchase,1.0,0 -100096071,"Half-Life Blue Shift",purchase,1.0,0 -100096071,"Half-Life Source",purchase,1.0,0 -100096071,"Half-Life Deathmatch Source",purchase,1.0,0 -100096071,"Team Fortress Classic",purchase,1.0,0 -276285300,"Dota 2",purchase,1.0,0 -276285300,"Dota 2",play,86.0,0 -30239820,"Dota 2",purchase,1.0,0 -30239820,"Dota 2",play,190.0,0 -30239820,"Survarium",purchase,1.0,0 -30239820,"Survarium",play,83.0,0 -30239820,"Counter-Strike Global Offensive",purchase,1.0,0 -30239820,"Counter-Strike Global Offensive",play,32.0,0 -30239820,"7 Days to Die",purchase,1.0,0 -30239820,"7 Days to Die",play,6.4,0 -30239820,"Insurgency Modern Infantry Combat",purchase,1.0,0 -30239820,"Insurgency Modern Infantry Combat",play,5.4,0 -30239820,"Counter-Strike",purchase,1.0,0 -30239820,"Counter-Strike",play,3.5,0 -30239820,"HAWKEN",purchase,1.0,0 -30239820,"HAWKEN",play,1.0,0 -30239820,"Garry's Mod",purchase,1.0,0 -30239820,"Garry's Mod",play,0.7,0 -30239820,"Counter-Strike Condition Zero",purchase,1.0,0 -30239820,"Counter-Strike Condition Zero",play,0.2,0 -30239820,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -30239820,"Day of Defeat",purchase,1.0,0 -30239820,"Deathmatch Classic",purchase,1.0,0 -30239820,"Ricochet",purchase,1.0,0 -49832324,"Counter-Strike",purchase,1.0,0 -49832324,"Counter-Strike",play,32.0,0 -49832324,"Left 4 Dead",purchase,1.0,0 -49832324,"Left 4 Dead",play,18.9,0 -49832324,"Counter-Strike Source",purchase,1.0,0 -49832324,"Counter-Strike Source",play,14.9,0 -49832324,"Portal",purchase,1.0,0 -49832324,"Portal",play,0.7,0 -49832324,"Team Fortress 2",purchase,1.0,0 -49832324,"Team Fortress 2",play,0.2,0 -49832324,"Counter-Strike Condition Zero",purchase,1.0,0 -49832324,"Counter-Strike Condition Zero",play,0.2,0 -49832324,"Half-Life 2",purchase,1.0,0 -49832324,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -49832324,"Day of Defeat",purchase,1.0,0 -49832324,"Day of Defeat Source",purchase,1.0,0 -49832324,"Deathmatch Classic",purchase,1.0,0 -49832324,"Half-Life",purchase,1.0,0 -49832324,"Half-Life 2 Deathmatch",purchase,1.0,0 -49832324,"Half-Life 2 Episode One",purchase,1.0,0 -49832324,"Half-Life 2 Episode Two",purchase,1.0,0 -49832324,"Half-Life 2 Lost Coast",purchase,1.0,0 -49832324,"Half-Life Blue Shift",purchase,1.0,0 -49832324,"Half-Life Opposing Force",purchase,1.0,0 -49832324,"Half-Life Source",purchase,1.0,0 -49832324,"Half-Life Deathmatch Source",purchase,1.0,0 -49832324,"Ricochet",purchase,1.0,0 -49832324,"Team Fortress Classic",purchase,1.0,0 -145260456,"Dota 2",purchase,1.0,0 -145260456,"Dota 2",play,153.0,0 -145260456,"Ragnarok Online 2",purchase,1.0,0 -125369057,"Team Fortress 2",purchase,1.0,0 -125369057,"Team Fortress 2",play,0.8,0 -252308089,"Everlasting Summer",purchase,1.0,0 -252308089,"Everlasting Summer",play,8.6,0 -297143782,"Team Fortress 2",purchase,1.0,0 -297143782,"Team Fortress 2",play,0.4,0 -204443543,"Guns and Robots",purchase,1.0,0 -204443543,"Guns and Robots",play,2.8,0 -204443543,"Tactical Intervention",purchase,1.0,0 -204443543,"Warframe",purchase,1.0,0 -204208122,"Dota 2",purchase,1.0,0 -204208122,"Dota 2",play,0.2,0 -78600311,"Sniper Ghost Warrior",purchase,1.0,0 -78600311,"Sniper Ghost Warrior",play,0.4,0 -73407067,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -73407067,"Call of Duty Black Ops - Multiplayer",play,4.3,0 -73407067,"Call of Duty Black Ops",purchase,1.0,0 -73407067,"Call of Duty Black Ops",play,1.5,0 -39324546,"Counter-Strike Source",purchase,1.0,0 -39324546,"Counter-Strike Source",play,3.7,0 -39324546,"Half-Life 2 Deathmatch",purchase,1.0,0 -39324546,"Half-Life 2 Deathmatch",play,1.2,0 -39324546,"Half-Life 2 Lost Coast",purchase,1.0,0 -39324546,"Half-Life 2 Lost Coast",play,0.3,0 -39324546,"Day of Defeat Source",purchase,1.0,0 -207179295,"Cry of Fear",purchase,1.0,0 -132258726,"Football Manager 2013",purchase,1.0,0 -132258726,"Football Manager 2013",play,5.3,0 -254101561,"Dota 2",purchase,1.0,0 -254101561,"Dota 2",play,27.0,0 -254101561,"Ragnarok Online 2",purchase,1.0,0 -254101561,"Strife",purchase,1.0,0 -254101561,"TERA",purchase,1.0,0 -162661783,"Team Fortress 2",purchase,1.0,0 -162661783,"Team Fortress 2",play,1.2,0 -64319625,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -64319625,"Call of Duty Modern Warfare 2 - Multiplayer",play,152.0,0 -64319625,"Counter-Strike Source",purchase,1.0,0 -64319625,"Counter-Strike Source",play,116.0,0 -64319625,"DayZ",purchase,1.0,0 -64319625,"DayZ",play,99.0,0 -64319625,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -64319625,"Call of Duty Modern Warfare 3 - Multiplayer",play,77.0,0 -64319625,"Left 4 Dead 2",purchase,1.0,0 -64319625,"Left 4 Dead 2",play,76.0,0 -64319625,"Total War SHOGUN 2",purchase,1.0,0 -64319625,"Total War SHOGUN 2",play,62.0,0 -64319625,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -64319625,"Call of Duty Black Ops - Multiplayer",play,32.0,0 -64319625,"Napoleon Total War",purchase,1.0,0 -64319625,"Napoleon Total War",play,27.0,0 -64319625,"Space Engineers",purchase,1.0,0 -64319625,"Space Engineers",play,17.6,0 -64319625,"Call of Duty Black Ops",purchase,1.0,0 -64319625,"Call of Duty Black Ops",play,16.6,0 -64319625,"Grand Theft Auto IV",purchase,1.0,0 -64319625,"Grand Theft Auto IV",play,14.8,0 -64319625,"War Thunder",purchase,1.0,0 -64319625,"War Thunder",play,14.0,0 -64319625,"Anno 2070",purchase,1.0,0 -64319625,"Anno 2070",play,14.0,0 -64319625,"Call of Duty Modern Warfare 3",purchase,1.0,0 -64319625,"Call of Duty Modern Warfare 3",play,12.1,0 -64319625,"Team Fortress 2",purchase,1.0,0 -64319625,"Team Fortress 2",play,11.6,0 -64319625,"Duke Nukem Forever",purchase,1.0,0 -64319625,"Duke Nukem Forever",play,10.4,0 -64319625,"Metro Last Light",purchase,1.0,0 -64319625,"Metro Last Light",play,8.4,0 -64319625,"Half-Life 2 Episode Two",purchase,1.0,0 -64319625,"Half-Life 2 Episode Two",play,5.2,0 -64319625,"Call of Duty Modern Warfare 2",purchase,1.0,0 -64319625,"Call of Duty Modern Warfare 2",play,4.3,0 -64319625,"Alpha Protocol",purchase,1.0,0 -64319625,"Alpha Protocol",play,2.6,0 -64319625,"Portal 2",purchase,1.0,0 -64319625,"Portal 2",play,1.4,0 -64319625,"Homefront",purchase,1.0,0 -64319625,"Homefront",play,1.1,0 -64319625,"Aliens vs. Predator",purchase,1.0,0 -64319625,"Aliens vs. Predator",play,1.0,0 -64319625,"Empire Total War",purchase,1.0,0 -64319625,"Empire Total War",play,0.6,0 -64319625,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -64319625,"Grand Theft Auto Episodes from Liberty City",play,0.5,0 -64319625,"Arma 2",purchase,1.0,0 -64319625,"Arma 2",play,0.4,0 -64319625,"Counter-Strike",purchase,1.0,0 -64319625,"Counter-Strike",play,0.4,0 -64319625,"Day of Defeat Source",purchase,1.0,0 -64319625,"Day of Defeat Source",play,0.4,0 -64319625,"Half-Life Source",purchase,1.0,0 -64319625,"Half-Life Source",play,0.4,0 -64319625,"Half-Life 2",purchase,1.0,0 -64319625,"Half-Life 2",play,0.3,0 -64319625,"Alien Swarm",purchase,1.0,0 -64319625,"Alien Swarm",play,0.2,0 -64319625,"Left 4 Dead",purchase,1.0,0 -64319625,"Left 4 Dead",play,0.1,0 -64319625,"Half-Life 2 Episode One",purchase,1.0,0 -64319625,"Half-Life 2 Episode One",play,0.1,0 -64319625,"Half-Life 2 Deathmatch",purchase,1.0,0 -64319625,"Half-Life 2 Deathmatch",play,0.1,0 -64319625,"Half-Life Opposing Force",purchase,1.0,0 -64319625,"Team Fortress Classic",purchase,1.0,0 -64319625,"Counter-Strike Condition Zero",purchase,1.0,0 -64319625,"Alpha Prime",purchase,1.0,0 -64319625,"Arma 2 DayZ Mod",purchase,1.0,0 -64319625,"Arma 2 Operation Arrowhead",purchase,1.0,0 -64319625,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -64319625,"Arma Cold War Assault",purchase,1.0,0 -64319625,"Arma Gold Edition",purchase,1.0,0 -64319625,"Arma Tactics",purchase,1.0,0 -64319625,"Carrier Command Gaea Mission",purchase,1.0,0 -64319625,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -64319625,"Day of Defeat",purchase,1.0,0 -64319625,"Deathmatch Classic",purchase,1.0,0 -64319625,"DiRT 3",purchase,1.0,0 -64319625,"DiRT 3 Complete Edition",purchase,1.0,0 -64319625,"Half-Life",purchase,1.0,0 -64319625,"Half-Life 2 Lost Coast",purchase,1.0,0 -64319625,"Half-Life Blue Shift",purchase,1.0,0 -64319625,"Half-Life Deathmatch Source",purchase,1.0,0 -64319625,"Medieval II Total War",purchase,1.0,0 -64319625,"Medieval II Total War Kingdoms",purchase,1.0,0 -64319625,"Metro 2033",purchase,1.0,0 -64319625,"Portal",purchase,1.0,0 -64319625,"Ricochet",purchase,1.0,0 -64319625,"Robocraft",purchase,1.0,0 -64319625,"Rome Total War",purchase,1.0,0 -64319625,"Rome Total War - Alexander",purchase,1.0,0 -64319625,"Take On Helicopters",purchase,1.0,0 -64319625,"The Fish Fillets 2",purchase,1.0,0 -64319625,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -64319625,"UFO Afterlight",purchase,1.0,0 -59087317,"Call of Duty Modern Warfare 2",purchase,1.0,0 -59087317,"Call of Duty Modern Warfare 2",play,242.0,0 -59087317,"Mafia II",purchase,1.0,0 -59087317,"Mafia II",play,13.5,0 -59087317,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -59087317,"Call of Duty Modern Warfare 2 - Multiplayer",play,9.0,0 -59087317,"Serious Sam 3 BFE",purchase,1.0,0 -59087317,"Serious Sam 3 BFE",play,1.2,0 -145872177,"Team Fortress 2",purchase,1.0,0 -145872177,"Team Fortress 2",play,44.0,0 -144854157,"The Elder Scrolls V Skyrim",purchase,1.0,0 -144854157,"The Elder Scrolls V Skyrim",play,39.0,0 -144854157,"Team Fortress 2",purchase,1.0,0 -144854157,"Team Fortress 2",play,7.8,0 -144854157,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -144854157,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -144854157,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -28939171,"Counter-Strike Source",purchase,1.0,0 -28939171,"Counter-Strike Source",play,28.0,0 -28939171,"Half-Life 2 Deathmatch",purchase,1.0,0 -28939171,"Half-Life 2 Deathmatch",play,1.0,0 -28939171,"Half-Life Opposing Force",purchase,1.0,0 -28939171,"Half-Life Opposing Force",play,0.8,0 -28939171,"Day of Defeat Source",purchase,1.0,0 -28939171,"Half-Life 2 Lost Coast",purchase,1.0,0 -128593044,"Dota 2",purchase,1.0,0 -128593044,"Dota 2",play,40.0,0 -128593044,"PlanetSide 2",purchase,1.0,0 -128593044,"PlanetSide 2",play,38.0,0 -128593044,"FTL Faster Than Light",purchase,1.0,0 -128593044,"FTL Faster Than Light",play,3.2,0 -128593044,"Elsword",purchase,1.0,0 -128593044,"Elsword",play,2.2,0 -128593044,"Narcissu 1st & 2nd",purchase,1.0,0 -128593044,"Narcissu 1st & 2nd",play,0.7,0 -128593044,"The Binding of Isaac",purchase,1.0,0 -128593044,"The Binding of Isaac",play,0.6,0 -128593044,"La Tale",purchase,1.0,0 -128593044,"La Tale",play,0.6,0 -128593044,"Natural Selection 2",purchase,1.0,0 -128593044,"Natural Selection 2",play,0.2,0 -128593044,"Akane the Kunoichi",purchase,1.0,0 -128593044,"A Virus Named TOM",purchase,1.0,0 -128593044,"Bastion",purchase,1.0,0 -128593044,"BlazBlue Calamity Trigger",purchase,1.0,0 -128593044,"Brtal Legend",purchase,1.0,0 -128593044,"Danmaku Unlimited 2",purchase,1.0,0 -128593044,"Eets Munchies",purchase,1.0,0 -128593044,"FEZ",purchase,1.0,0 -128593044,"LIMBO",purchase,1.0,0 -128593044,"Magicka",purchase,1.0,0 -128593044,"Magicka Vietnam",purchase,1.0,0 -128593044,"Mark of the Ninja",purchase,1.0,0 -128593044,"Metro 2033",purchase,1.0,0 -128593044,"planetarian ~the reverie of a little planet~",purchase,1.0,0 -128593044,"Portal",purchase,1.0,0 -128593044,"QUALIA 3 Multi Agent",purchase,1.0,0 -128593044,"RefleX",purchase,1.0,0 -128593044,"Rise of Incarnates",purchase,1.0,0 -128593044,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -128593044,"Sanctum 2",purchase,1.0,0 -128593044,"Super Hexagon",purchase,1.0,0 -128593044,"Teleglitch Die More Edition",purchase,1.0,0 -128593044,"Third Eye Crime",purchase,1.0,0 -128593044,"Trine 2",purchase,1.0,0 -128593044,"Valkyria Chronicles",purchase,1.0,0 -128593044,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -128593044,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -128593044,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -128593044,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -252645851,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -252645851,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.6,0 -75134679,"Total War SHOGUN 2",purchase,1.0,0 -75134679,"Total War SHOGUN 2",play,275.0,0 -75134679,"Call of Duty Modern Warfare 3",purchase,1.0,0 -75134679,"Call of Duty Modern Warfare 3",play,123.0,0 -75134679,"Grand Theft Auto IV",purchase,1.0,0 -75134679,"Grand Theft Auto IV",play,90.0,0 -75134679,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -75134679,"Call of Duty Modern Warfare 3 - Multiplayer",play,82.0,0 -75134679,"Empire Total War",purchase,1.0,0 -75134679,"Empire Total War",play,77.0,0 -75134679,"Grand Theft Auto III",purchase,1.0,0 -75134679,"Grand Theft Auto III",play,17.3,0 -75134679,"Napoleon Total War",purchase,1.0,0 -75134679,"Napoleon Total War",play,14.8,0 -75134679,"Grand Theft Auto Vice City",purchase,1.0,0 -75134679,"Grand Theft Auto Vice City",play,3.4,0 -75134679,"Grand Theft Auto San Andreas",purchase,1.0,0 -75134679,"Grand Theft Auto San Andreas",play,0.6,0 -75134679,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -75134679,"Grand Theft Auto Episodes from Liberty City",play,0.5,0 -75134679,"Grand Theft Auto San Andreas",purchase,1.0,0 -75134679,"Grand Theft Auto Vice City",purchase,1.0,0 -75134679,"Grand Theft Auto III",purchase,1.0,0 -257319909,"Dota 2",purchase,1.0,0 -257319909,"Dota 2",play,13.0,0 -174226719,"Garry's Mod",purchase,1.0,0 -174226719,"Garry's Mod",play,528.0,0 -174226719,"Unturned",purchase,1.0,0 -174226719,"Unturned",play,138.0,0 -174226719,"Nether",purchase,1.0,0 -174226719,"Nether",play,58.0,0 -174226719,"PAYDAY 2",purchase,1.0,0 -174226719,"PAYDAY 2",play,53.0,0 -174226719,"Alien Swarm",purchase,1.0,0 -174226719,"Alien Swarm",play,11.0,0 -174226719,"APB Reloaded",purchase,1.0,0 -174226719,"APB Reloaded",play,4.9,0 -174226719,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -174226719,"Boring Man - Online Tactical Stickman Combat",play,4.5,0 -174226719,"Aftermath",purchase,1.0,0 -174226719,"Aftermath",play,3.6,0 -174226719,"Terraria",purchase,1.0,0 -174226719,"Terraria",play,3.1,0 -174226719,"sZone-Online",purchase,1.0,0 -174226719,"sZone-Online",play,2.3,0 -174226719,"Codename CURE",purchase,1.0,0 -174226719,"Codename CURE",play,2.1,0 -174226719,"No More Room in Hell",purchase,1.0,0 -174226719,"No More Room in Hell",play,1.7,0 -174226719,"Cry of Fear",purchase,1.0,0 -174226719,"Cry of Fear",play,1.1,0 -174226719,"theHunter",purchase,1.0,0 -174226719,"theHunter",play,0.7,0 -174226719,"Fallen Earth",purchase,1.0,0 -174226719,"Fallen Earth",play,0.6,0 -174226719,"World of Guns Gun Disassembly",purchase,1.0,0 -174226719,"World of Guns Gun Disassembly",play,0.6,0 -174226719,"Survarium",purchase,1.0,0 -174226719,"Survarium",play,0.4,0 -174226719,"Team Fortress 2",purchase,1.0,0 -174226719,"Team Fortress 2",play,0.4,0 -174226719,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -174226719,"S.K.I.L.L. - Special Force 2",play,0.2,0 -174226719,"BLOCKADE 3D",purchase,1.0,0 -174226719,"BLOCKADE 3D",play,0.2,0 -174226719,"Haunted Memories",purchase,1.0,0 -174226719,"Haunted Memories",play,0.2,0 -174226719,"RaceRoom Racing Experience ",purchase,1.0,0 -174226719,"RaceRoom Racing Experience ",play,0.1,0 -174226719,"Counter-Strike Nexon Zombies",purchase,1.0,0 -174226719,"Counter-Strike Nexon Zombies",play,0.1,0 -174226719,"Uncrowded",purchase,1.0,0 -174226719,"Blacklight Retribution",purchase,1.0,0 -174226719,"Modular Combat",purchase,1.0,0 -174226719,"Nether - Believer",purchase,1.0,0 -174226719,"Nether Arena",purchase,1.0,0 -174226719,"The Plan",purchase,1.0,0 -174226719,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -96784845,"F.E.A.R. 3",purchase,1.0,0 -96784845,"F.E.A.R. 3",play,9.6,0 -182734697,"Dota 2",purchase,1.0,0 -182734697,"Dota 2",play,13.2,0 -298178235,"Fallout 4",purchase,1.0,0 -298178235,"Fallout 4",play,54.0,0 -298178235,"Grand Theft Auto V",purchase,1.0,0 -298178235,"Grand Theft Auto V",play,5.9,0 -298178235,"The Elder Scrolls V Skyrim",purchase,1.0,0 -298178235,"The Elder Scrolls V Skyrim",play,4.7,0 -298178235,"Banished",purchase,1.0,0 -298178235,"Banished",play,0.9,0 -298178235,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -298178235,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -298178235,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -51938138,"Saints Row 2",purchase,1.0,0 -246342023,"Dota 2",purchase,1.0,0 -246342023,"Dota 2",play,4.7,0 -159768153,"Left 4 Dead 2",purchase,1.0,0 -196595568,"Counter-Strike Global Offensive",purchase,1.0,0 -196595568,"Counter-Strike Global Offensive",play,126.0,0 -196595568,"Call of Duty World at War",purchase,1.0,0 -196595568,"Call of Duty World at War",play,32.0,0 -196595568,"Magicite",purchase,1.0,0 -196595568,"Magicite",play,29.0,0 -196595568,"Borderlands 2",purchase,1.0,0 -196595568,"Borderlands 2",play,20.0,0 -196595568,"7 Days to Die",purchase,1.0,0 -196595568,"7 Days to Die",play,16.8,0 -196595568,"Borderlands The Pre-Sequel",purchase,1.0,0 -196595568,"Borderlands The Pre-Sequel",play,16.6,0 -196595568,"Darkest Dungeon",purchase,1.0,0 -196595568,"Darkest Dungeon",play,16.1,0 -196595568,"Robocraft",purchase,1.0,0 -196595568,"Robocraft",play,15.2,0 -196595568,"The Escapists",purchase,1.0,0 -196595568,"The Escapists",play,14.0,0 -196595568,"The Binding of Isaac Rebirth",purchase,1.0,0 -196595568,"The Binding of Isaac Rebirth",play,14.0,0 -196595568,"Team Fortress 2",purchase,1.0,0 -196595568,"Team Fortress 2",play,10.9,0 -196595568,"Garry's Mod",purchase,1.0,0 -196595568,"Garry's Mod",play,6.2,0 -196595568,"Loadout",purchase,1.0,0 -196595568,"Loadout",play,5.1,0 -196595568,"The Elder Scrolls V Skyrim",purchase,1.0,0 -196595568,"The Elder Scrolls V Skyrim",play,4.6,0 -196595568,"Unturned",purchase,1.0,0 -196595568,"Unturned",play,4.0,0 -196595568,"Five Nights at Freddy's",purchase,1.0,0 -196595568,"Five Nights at Freddy's",play,3.2,0 -196595568,"Five Nights at Freddy's 2",purchase,1.0,0 -196595568,"Five Nights at Freddy's 2",play,2.8,0 -196595568,"Super Crate Box",purchase,1.0,0 -196595568,"Super Crate Box",play,2.7,0 -196595568,"Lovely Planet",purchase,1.0,0 -196595568,"Lovely Planet",play,2.1,0 -196595568,"FTL Faster Than Light",purchase,1.0,0 -196595568,"FTL Faster Than Light",play,1.4,0 -196595568,"DayZ",purchase,1.0,0 -196595568,"DayZ",play,1.3,0 -196595568,"Depth",purchase,1.0,0 -196595568,"Depth",play,1.1,0 -196595568,"Terraria",purchase,1.0,0 -196595568,"Terraria",play,1.0,0 -196595568,"Five Nights at Freddy's 4",purchase,1.0,0 -196595568,"Five Nights at Freddy's 4",play,0.7,0 -196595568,"PlanetSide 2",purchase,1.0,0 -196595568,"PlanetSide 2",play,0.4,0 -196595568,"Happy Wars",purchase,1.0,0 -196595568,"Happy Wars",play,0.4,0 -196595568,"SMITE",purchase,1.0,0 -196595568,"Cities Skylines",purchase,1.0,0 -196595568,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -196595568,"Warframe",purchase,1.0,0 -196595568,"Heroes & Generals",purchase,1.0,0 -196595568,"Loadout Campaign Beta",purchase,1.0,0 -196595568,"No More Room in Hell",purchase,1.0,0 -196595568,"RIFT",purchase,1.0,0 -196595568,"Villagers and Heroes",purchase,1.0,0 -302111387,"Dota 2",purchase,1.0,0 -302111387,"Dota 2",play,1.0,0 -103908321,"Team Fortress 2",purchase,1.0,0 -103908321,"Team Fortress 2",play,1.1,0 -188681523,"Counter-Strike Global Offensive",purchase,1.0,0 -188681523,"Counter-Strike Global Offensive",play,962.0,0 -188681523,"PAYDAY 2",purchase,1.0,0 -188681523,"PAYDAY 2",play,330.0,0 -188681523,"Insurgency",purchase,1.0,0 -188681523,"Insurgency",play,52.0,0 -188681523,"Unturned",purchase,1.0,0 -188681523,"Unturned",play,35.0,0 -188681523,"Team Fortress 2",purchase,1.0,0 -188681523,"Team Fortress 2",play,8.6,0 -188681523,"Garry's Mod",purchase,1.0,0 -188681523,"Garry's Mod",play,8.6,0 -188681523,"Ace of Spades",purchase,1.0,0 -188681523,"Ace of Spades",play,7.1,0 -188681523,"Depth",purchase,1.0,0 -188681523,"Depth",play,5.0,0 -188681523,"Tactical Intervention",purchase,1.0,0 -188681523,"Tactical Intervention",play,2.5,0 -188681523,"theHunter",purchase,1.0,0 -188681523,"theHunter",play,0.8,0 -188681523,"Robocraft",purchase,1.0,0 -188681523,"Robocraft",play,0.2,0 -264929200,"Dota 2",purchase,1.0,0 -264929200,"Dota 2",play,2.4,0 -69953893,"Counter-Strike Global Offensive",purchase,1.0,0 -69953893,"Counter-Strike Global Offensive",play,458.0,0 -69953893,"Rocket League",purchase,1.0,0 -69953893,"Rocket League",play,39.0,0 -69953893,"Borderlands 2",purchase,1.0,0 -69953893,"Borderlands 2",play,37.0,0 -69953893,"DayZ",purchase,1.0,0 -69953893,"DayZ",play,34.0,0 -69953893,"Left 4 Dead 2",purchase,1.0,0 -69953893,"Left 4 Dead 2",play,33.0,0 -69953893,"Magic 2014 ",purchase,1.0,0 -69953893,"Magic 2014 ",play,22.0,0 -69953893,"This War of Mine",purchase,1.0,0 -69953893,"This War of Mine",play,14.9,0 -69953893,"South Park The Stick of Truth",purchase,1.0,0 -69953893,"South Park The Stick of Truth",play,12.4,0 -69953893,"Alien Swarm",purchase,1.0,0 -69953893,"Alien Swarm",play,9.9,0 -69953893,"Dota 2",purchase,1.0,0 -69953893,"Dota 2",play,7.0,0 -69953893,"The Binding of Isaac",purchase,1.0,0 -69953893,"The Binding of Isaac",play,5.4,0 -69953893,"Dungeon Defenders",purchase,1.0,0 -69953893,"Dungeon Defenders",play,4.6,0 -69953893,"Darkest Dungeon",purchase,1.0,0 -69953893,"Darkest Dungeon",play,3.1,0 -69953893,"Dying Light",purchase,1.0,0 -69953893,"Dying Light",play,3.1,0 -69953893,"Dungeon Defenders II",purchase,1.0,0 -69953893,"Dungeon Defenders II",play,2.5,0 -69953893,"Trine 2",purchase,1.0,0 -69953893,"Trine 2",play,2.2,0 -69953893,"Team Fortress 2",purchase,1.0,0 -69953893,"Team Fortress 2",play,2.0,0 -69953893,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -69953893,"Sonic & All-Stars Racing Transformed",play,1.8,0 -69953893,"Brawlhalla",purchase,1.0,0 -69953893,"Brawlhalla",play,1.3,0 -69953893,"The Binding of Isaac Rebirth",purchase,1.0,0 -69953893,"The Binding of Isaac Rebirth",play,1.2,0 -69953893,"The Expendabros",purchase,1.0,0 -69953893,"The Expendabros",play,0.8,0 -69953893,"Mount Your Friends",purchase,1.0,0 -69953893,"Mount Your Friends",play,0.7,0 -69953893,"Epic Arena",purchase,1.0,0 -69953893,"Epic Arena",play,0.3,0 -69953893,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -69953893,"Infinity Wars - Animated Trading Card Game",play,0.2,0 -69953893,"Nightbanes",purchase,1.0,0 -69953893,"Magic Duels",purchase,1.0,0 -69953893,"RIFT",purchase,1.0,0 -69953893,"War Thunder",purchase,1.0,0 -90790453,"Duke Nukem Forever ",purchase,1.0,0 -90790453,"Duke Nukem Forever ",play,0.1,0 -100208126,"Insurgency Modern Infantry Combat",purchase,1.0,0 -100208126,"Insurgency Modern Infantry Combat",play,21.0,0 -149840320,"Dota 2",purchase,1.0,0 -149840320,"Dota 2",play,225.0,0 -149840320,"Left 4 Dead 2",purchase,1.0,0 -149840320,"Left 4 Dead 2",play,5.2,0 -17135392,"Counter-Strike Source",purchase,1.0,0 -17135392,"Half-Life 2",purchase,1.0,0 -17135392,"Half-Life 2 Deathmatch",purchase,1.0,0 -17135392,"Half-Life 2 Lost Coast",purchase,1.0,0 -164097534,"Farming Simulator 2013",purchase,1.0,0 -164097534,"Farming Simulator 2013",play,72.0,0 -164097534,"Farming Simulator 15",purchase,1.0,0 -164097534,"Farming Simulator 15",play,58.0,0 -164097534,"The Crew",purchase,1.0,0 -164097534,"The Crew",play,28.0,0 -164097534,"No More Room in Hell",purchase,1.0,0 -164097534,"No More Room in Hell",play,22.0,0 -164097534,"Heroes & Generals",purchase,1.0,0 -164097534,"Heroes & Generals",play,21.0,0 -164097534,"Agricultural Simulator 2013 Steam Edition",purchase,1.0,0 -164097534,"Agricultural Simulator 2013 Steam Edition",play,16.2,0 -164097534,"Unturned",purchase,1.0,0 -164097534,"Unturned",play,16.0,0 -164097534,"Garry's Mod",purchase,1.0,0 -164097534,"Garry's Mod",play,14.9,0 -164097534,"Medieval Engineers",purchase,1.0,0 -164097534,"Medieval Engineers",play,8.0,0 -164097534,"Besiege",purchase,1.0,0 -164097534,"Besiege",play,5.4,0 -164097534,"Team Fortress 2",purchase,1.0,0 -164097534,"Team Fortress 2",play,4.9,0 -164097534,"Dota 2",purchase,1.0,0 -164097534,"Dota 2",play,0.3,0 -164097534,"theHunter",purchase,1.0,0 -164097534,"theHunter",play,0.3,0 -164097534,"Robocraft",purchase,1.0,0 -77980915,"Warframe",purchase,1.0,0 -77980915,"Warframe",play,252.0,0 -77980915,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -77980915,"Call of Duty Black Ops - Multiplayer",play,207.0,0 -77980915,"The Elder Scrolls V Skyrim",purchase,1.0,0 -77980915,"The Elder Scrolls V Skyrim",play,198.0,0 -77980915,"Call of Duty Black Ops",purchase,1.0,0 -77980915,"Call of Duty Black Ops",play,149.0,0 -77980915,"Rust",purchase,1.0,0 -77980915,"Rust",play,118.0,0 -77980915,"Infestation Survivor Stories",purchase,1.0,0 -77980915,"Infestation Survivor Stories",play,101.0,0 -77980915,"Trove",purchase,1.0,0 -77980915,"Trove",play,98.0,0 -77980915,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -77980915,"Tom Clancy's Ghost Recon Phantoms - EU",play,87.0,0 -77980915,"Life is Feudal Your Own",purchase,1.0,0 -77980915,"Life is Feudal Your Own",play,69.0,0 -77980915,"liteCam Game 100 FPS Game Capture",purchase,1.0,0 -77980915,"liteCam Game 100 FPS Game Capture",play,68.0,0 -77980915,"StarMade",purchase,1.0,0 -77980915,"StarMade",play,63.0,0 -77980915,"Counter-Strike Global Offensive",purchase,1.0,0 -77980915,"Counter-Strike Global Offensive",play,61.0,0 -77980915,"Rocket League",purchase,1.0,0 -77980915,"Rocket League",play,60.0,0 -77980915,"Epic Battle Fantasy 4",purchase,1.0,0 -77980915,"Epic Battle Fantasy 4",play,59.0,0 -77980915,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -77980915,"Call of Duty Modern Warfare 3 - Multiplayer",play,57.0,0 -77980915,"Robocraft",purchase,1.0,0 -77980915,"Robocraft",play,47.0,0 -77980915,"Dead Island Epidemic",purchase,1.0,0 -77980915,"Dead Island Epidemic",play,44.0,0 -77980915,"Banished",purchase,1.0,0 -77980915,"Banished",play,39.0,0 -77980915,"XCOM Enemy Unknown",purchase,1.0,0 -77980915,"XCOM Enemy Unknown",play,38.0,0 -77980915,"Anno 2070",purchase,1.0,0 -77980915,"Anno 2070",play,36.0,0 -77980915,"Cities Skylines",purchase,1.0,0 -77980915,"Cities Skylines",play,35.0,0 -77980915,"The Mighty Quest For Epic Loot",purchase,1.0,0 -77980915,"The Mighty Quest For Epic Loot",play,33.0,0 -77980915,"Garry's Mod",purchase,1.0,0 -77980915,"Garry's Mod",play,33.0,0 -77980915,"Game Dev Tycoon",purchase,1.0,0 -77980915,"Game Dev Tycoon",play,27.0,0 -77980915,"Valkyria Chronicles",purchase,1.0,0 -77980915,"Valkyria Chronicles",play,18.3,0 -77980915,"Geometry Dash",purchase,1.0,0 -77980915,"Geometry Dash",play,16.1,0 -77980915,"Age of Empires II HD Edition",purchase,1.0,0 -77980915,"Age of Empires II HD Edition",play,14.3,0 -77980915,"Far Cry",purchase,1.0,0 -77980915,"Far Cry",play,14.2,0 -77980915,"Call of Duty Modern Warfare 3",purchase,1.0,0 -77980915,"Call of Duty Modern Warfare 3",play,13.6,0 -77980915,"Dungeon Siege",purchase,1.0,0 -77980915,"Dungeon Siege",play,12.5,0 -77980915,"NBA 2K14",purchase,1.0,0 -77980915,"NBA 2K14",play,11.1,0 -77980915,"Far Cry 4",purchase,1.0,0 -77980915,"Far Cry 4",play,10.4,0 -77980915,"Hyperdimension Neptunia Re;Birth1",purchase,1.0,0 -77980915,"Hyperdimension Neptunia Re;Birth1",play,9.8,0 -77980915,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -77980915,"Fallout 3 - Game of the Year Edition",play,9.1,0 -77980915,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -77980915,"Call of Duty Black Ops II - Multiplayer",play,9.0,0 -77980915,"Just Cause 3",purchase,1.0,0 -77980915,"Just Cause 3",play,8.1,0 -77980915,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -77980915,"Dark Souls Prepare to Die Edition",play,7.8,0 -77980915,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -77980915,"The Witcher 2 Assassins of Kings Enhanced Edition",play,7.4,0 -77980915,"Beat Hazard",purchase,1.0,0 -77980915,"Beat Hazard",play,7.2,0 -77980915,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -77980915,"Call of Duty Black Ops II - Zombies",play,6.2,0 -77980915,"R.U.S.E",purchase,1.0,0 -77980915,"R.U.S.E",play,5.6,0 -77980915,"Bullet Heaven 2",purchase,1.0,0 -77980915,"Bullet Heaven 2",play,5.3,0 -77980915,"Saints Row IV",purchase,1.0,0 -77980915,"Saints Row IV",play,4.5,0 -77980915,"Call of Duty Black Ops III",purchase,1.0,0 -77980915,"Call of Duty Black Ops III",play,4.3,0 -77980915,"Stronghold Crusader HD",purchase,1.0,0 -77980915,"Stronghold Crusader HD",play,4.1,0 -77980915,"Cities XXL",purchase,1.0,0 -77980915,"Cities XXL",play,3.2,0 -77980915,"Just Cause 2",purchase,1.0,0 -77980915,"Just Cause 2",play,3.0,0 -77980915,"Left 4 Dead 2",purchase,1.0,0 -77980915,"Left 4 Dead 2",play,2.2,0 -77980915,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -77980915,"Call of Duty Ghosts - Multiplayer",play,2.0,0 -77980915,"Arma 3",purchase,1.0,0 -77980915,"Arma 3",play,1.9,0 -77980915,"The Crew",purchase,1.0,0 -77980915,"The Crew",play,1.8,0 -77980915,"Synergy",purchase,1.0,0 -77980915,"Synergy",play,1.8,0 -77980915,"Portal 2",purchase,1.0,0 -77980915,"Portal 2",play,1.7,0 -77980915,"FTL Faster Than Light",purchase,1.0,0 -77980915,"FTL Faster Than Light",play,1.6,0 -77980915,"Magicka",purchase,1.0,0 -77980915,"Magicka",play,1.6,0 -77980915,"Serious Sam Classic The First Encounter",purchase,1.0,0 -77980915,"Serious Sam Classic The First Encounter",play,1.3,0 -77980915,"Aftermath",purchase,1.0,0 -77980915,"Aftermath",play,1.1,0 -77980915,"TrackMania United",purchase,1.0,0 -77980915,"TrackMania United",play,1.0,0 -77980915,"Super Hexagon",purchase,1.0,0 -77980915,"Super Hexagon",play,1.0,0 -77980915,"Stronghold HD",purchase,1.0,0 -77980915,"Stronghold HD",play,0.9,0 -77980915,"Dead Space",purchase,1.0,0 -77980915,"Dead Space",play,0.9,0 -77980915,"Need for Speed SHIFT",purchase,1.0,0 -77980915,"Need for Speed SHIFT",play,0.8,0 -77980915,"Next Car Game Wreckfest",purchase,1.0,0 -77980915,"Next Car Game Wreckfest",play,0.8,0 -77980915,"Fractured Space",purchase,1.0,0 -77980915,"Fractured Space",play,0.7,0 -77980915,"TrackMania Stadium",purchase,1.0,0 -77980915,"TrackMania Stadium",play,0.7,0 -77980915,"APB Reloaded",purchase,1.0,0 -77980915,"APB Reloaded",play,0.7,0 -77980915,"The Stanley Parable",purchase,1.0,0 -77980915,"The Stanley Parable",play,0.7,0 -77980915,"TerraTech",purchase,1.0,0 -77980915,"TerraTech",play,0.6,0 -77980915,"Borderlands The Pre-Sequel",purchase,1.0,0 -77980915,"Borderlands The Pre-Sequel",play,0.5,0 -77980915,"PAYDAY 2",purchase,1.0,0 -77980915,"PAYDAY 2",play,0.5,0 -77980915,"Dota 2",purchase,1.0,0 -77980915,"Dota 2",play,0.4,0 -77980915,"Space Engineers",purchase,1.0,0 -77980915,"Space Engineers",play,0.3,0 -77980915,"Grand Theft Auto San Andreas",purchase,1.0,0 -77980915,"Grand Theft Auto San Andreas",play,0.1,0 -77980915,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -77980915,"Far Cry 3 Blood Dragon",purchase,1.0,0 -77980915,"Stronghold Crusader Extreme HD",purchase,1.0,0 -77980915,"Counter-Strike Source",purchase,1.0,0 -77980915,"Call of Duty Ghosts",purchase,1.0,0 -77980915,"Hyperdimension Neptunia Re;Birth2 Sisters Generation",purchase,1.0,0 -77980915,"Age of Empires II HD The Forgotten",purchase,1.0,0 -77980915,"Age of Empires III Complete Collection",purchase,1.0,0 -77980915,"Arma 3 Helicopters",purchase,1.0,0 -77980915,"Arma 3 Karts",purchase,1.0,0 -77980915,"Arma 3 Marksmen",purchase,1.0,0 -77980915,"Arma 3 Zeus",purchase,1.0,0 -77980915,"Arma Cold War Assault",purchase,1.0,0 -77980915,"Beat Hazard - Shadow Operations Unit",purchase,1.0,0 -77980915,"Borderlands",purchase,1.0,0 -77980915,"Borderlands 2",purchase,1.0,0 -77980915,"Bullet Heaven 2 - Soundtrack",purchase,1.0,0 -77980915,"Call of Duty Black Ops II",purchase,1.0,0 -77980915,"Castle Crashers",purchase,1.0,0 -77980915,"Counter-Strike",purchase,1.0,0 -77980915,"Counter-Strike Condition Zero",purchase,1.0,0 -77980915,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -77980915,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -77980915,"Day of Defeat",purchase,1.0,0 -77980915,"Day of Defeat Source",purchase,1.0,0 -77980915,"Dead Space 2",purchase,1.0,0 -77980915,"Deathmatch Classic",purchase,1.0,0 -77980915,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -77980915,"Dungeon Siege 2",purchase,1.0,0 -77980915,"Dungeon Siege III",purchase,1.0,0 -77980915,"Dying Light",purchase,1.0,0 -77980915,"Epic Battle Fantasy 4 - Soundtrack",purchase,1.0,0 -77980915,"Far Cry 2",purchase,1.0,0 -77980915,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -77980915,"Far Cry 3",purchase,1.0,0 -77980915,"FINAL FANTASY VII",purchase,1.0,0 -77980915,"FINAL FANTASY VIII",purchase,1.0,0 -77980915,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -77980915,"Grand Theft Auto San Andreas",purchase,1.0,0 -77980915,"Grand Theft Auto Vice City",purchase,1.0,0 -77980915,"Grand Theft Auto Vice City",purchase,1.0,0 -77980915,"Grand Theft Auto III",purchase,1.0,0 -77980915,"Grand Theft Auto III",purchase,1.0,0 -77980915,"Grand Theft Auto IV",purchase,1.0,0 -77980915,"Half-Life",purchase,1.0,0 -77980915,"Half-Life 2",purchase,1.0,0 -77980915,"Half-Life 2 Deathmatch",purchase,1.0,0 -77980915,"Half-Life 2 Episode One",purchase,1.0,0 -77980915,"Half-Life 2 Episode Two",purchase,1.0,0 -77980915,"Half-Life 2 Lost Coast",purchase,1.0,0 -77980915,"Half-Life Blue Shift",purchase,1.0,0 -77980915,"Half-Life Opposing Force",purchase,1.0,0 -77980915,"Half-Life Source",purchase,1.0,0 -77980915,"Half-Life Deathmatch Source",purchase,1.0,0 -77980915,"High Roller",purchase,1.0,0 -77980915,"Hyperdimension Neptunia Re;Birth3 V Generation",purchase,1.0,0 -77980915,"Just Cause",purchase,1.0,0 -77980915,"Left 4 Dead",purchase,1.0,0 -77980915,"Magicka Final Frontier",purchase,1.0,0 -77980915,"Magicka Frozen Lake",purchase,1.0,0 -77980915,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -77980915,"Magicka Nippon",purchase,1.0,0 -77980915,"Magicka Party Robes",purchase,1.0,0 -77980915,"Magicka The Watchtower",purchase,1.0,0 -77980915,"Magicka Vietnam",purchase,1.0,0 -77980915,"Magicka Wizard's Survival Kit",purchase,1.0,0 -77980915,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -77980915,"Particula",purchase,1.0,0 -77980915,"Portal",purchase,1.0,0 -77980915,"R.U.S.E.",purchase,1.0,0 -77980915,"Ricochet",purchase,1.0,0 -77980915,"Saints Row 2",purchase,1.0,0 -77980915,"Saints Row The Third",purchase,1.0,0 -77980915,"Serious Sam 2",purchase,1.0,0 -77980915,"Serious Sam 3 BFE",purchase,1.0,0 -77980915,"Serious Sam The Random Encounter",purchase,1.0,0 -77980915,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -77980915,"Serious Sam Classics Revolution",purchase,1.0,0 -77980915,"Serious Sam Double D XXL",purchase,1.0,0 -77980915,"Serious Sam HD The First Encounter",purchase,1.0,0 -77980915,"Shift 2 Unleashed",purchase,1.0,0 -77980915,"Star Wars - Battlefront II",purchase,1.0,0 -77980915,"Team Fortress Classic",purchase,1.0,0 -77980915,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -77980915,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -77980915,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -77980915,"The Escapists",purchase,1.0,0 -77980915,"The Witcher Enhanced Edition",purchase,1.0,0 -77980915,"Tom Clancy's Ghost Recon Phantoms - EU Support Starter Pack",purchase,1.0,0 -77980915,"TrackMania Canyon",purchase,1.0,0 -77980915,"TrackMania Valley",purchase,1.0,0 -77980915,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -77980915,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -77980915,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -77980915,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -77980915,"XCOM Enemy Within",purchase,1.0,0 -95445569,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -115671217,"Team Fortress 2",purchase,1.0,0 -115671217,"Team Fortress 2",play,184.0,0 -115671217,"Saints Row The Third",purchase,1.0,0 -115671217,"Saints Row The Third",play,17.7,0 -115671217,"Dead Island",purchase,1.0,0 -115671217,"Dead Island",play,4.1,0 -115671217,"FTL Faster Than Light",purchase,1.0,0 -115671217,"FTL Faster Than Light",play,2.0,0 -115671217,"LIMBO",purchase,1.0,0 -115671217,"LIMBO",play,1.2,0 -115671217,"Metro 2033",purchase,1.0,0 -115671217,"Metro 2033",play,1.1,0 -115671217,"Brtal Legend",purchase,1.0,0 -115671217,"Brtal Legend",play,0.9,0 -115671217,"Saints Row 2",purchase,1.0,0 -115671217,"Saints Row 2",play,0.4,0 -115671217,"Bastion",purchase,1.0,0 -115671217,"Bastion",play,0.3,0 -115671217,"Sacred Citadel",purchase,1.0,0 -115671217,"Sacred Citadel",play,0.3,0 -115671217,"Mark of the Ninja",purchase,1.0,0 -115671217,"Mark of the Ninja",play,0.3,0 -115671217,"Risen 2 - Dark Waters",purchase,1.0,0 -115671217,"Risen 2 - Dark Waters",play,0.2,0 -115671217,"A Virus Named TOM",purchase,1.0,0 -115671217,"A Virus Named TOM",play,0.1,0 -115671217,"FEZ",purchase,1.0,0 -115671217,"Eets Munchies",purchase,1.0,0 -115671217,"Risen",purchase,1.0,0 -115671217,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -115671217,"Sacred 2 Gold",purchase,1.0,0 -115671217,"Trine 2",purchase,1.0,0 -56416303,"Counter-Strike Source",purchase,1.0,0 -56416303,"Counter-Strike Source",play,76.0,0 -128995325,"Dota 2",purchase,1.0,0 -128995325,"Dota 2",play,76.0,0 -186207856,"Dota 2",purchase,1.0,0 -186207856,"Dota 2",play,0.7,0 -79111585,"Counter-Strike Source",purchase,1.0,0 -79111585,"Counter-Strike Source",play,5.5,0 -79111585,"Day of Defeat Source",purchase,1.0,0 -79111585,"Half-Life 2 Deathmatch",purchase,1.0,0 -79111585,"Half-Life 2 Lost Coast",purchase,1.0,0 -127948452,"Counter-Strike Global Offensive",purchase,1.0,0 -127948452,"Counter-Strike Global Offensive",play,12.3,0 -137334839,"Team Fortress 2",purchase,1.0,0 -137334839,"Team Fortress 2",play,778.0,0 -137334839,"Dota 2",purchase,1.0,0 -137334839,"Dota 2",play,472.0,0 -137334839,"Counter-Strike Nexon Zombies",purchase,1.0,0 -137334839,"Counter-Strike Nexon Zombies",play,65.0,0 -137334839,"R.U.S.E",purchase,1.0,0 -137334839,"R.U.S.E",play,54.0,0 -137334839,"Company of Heroes 2",purchase,1.0,0 -137334839,"Company of Heroes 2",play,25.0,0 -137334839,"Robocraft",purchase,1.0,0 -137334839,"Robocraft",play,22.0,0 -137334839,"Hazard Ops",purchase,1.0,0 -137334839,"Hazard Ops",play,21.0,0 -137334839,"The Mighty Quest For Epic Loot",purchase,1.0,0 -137334839,"The Mighty Quest For Epic Loot",play,21.0,0 -137334839,"AirMech",purchase,1.0,0 -137334839,"AirMech",play,18.3,0 -137334839,"Counter-Strike Global Offensive",purchase,1.0,0 -137334839,"Counter-Strike Global Offensive",play,13.8,0 -137334839,"Evolve",purchase,1.0,0 -137334839,"Evolve",play,12.8,0 -137334839,"Fistful of Frags",purchase,1.0,0 -137334839,"Fistful of Frags",play,10.0,0 -137334839,"Borderlands 2",purchase,1.0,0 -137334839,"Borderlands 2",play,9.1,0 -137334839,"Aura Kingdom",purchase,1.0,0 -137334839,"Aura Kingdom",play,7.1,0 -137334839,"HAWKEN",purchase,1.0,0 -137334839,"HAWKEN",play,6.8,0 -137334839,"Neverwinter",purchase,1.0,0 -137334839,"Neverwinter",play,5.1,0 -137334839,"Tribes Ascend",purchase,1.0,0 -137334839,"Tribes Ascend",play,5.0,0 -137334839,"Warframe",purchase,1.0,0 -137334839,"Warframe",play,5.0,0 -137334839,"Magicka Wizard Wars",purchase,1.0,0 -137334839,"Magicka Wizard Wars",play,4.6,0 -137334839,"Heroes & Generals",purchase,1.0,0 -137334839,"Heroes & Generals",play,4.4,0 -137334839,"Unturned",purchase,1.0,0 -137334839,"Unturned",play,3.2,0 -137334839,"Warface",purchase,1.0,0 -137334839,"Warface",play,2.8,0 -137334839,"Archeblade",purchase,1.0,0 -137334839,"Archeblade",play,1.7,0 -137334839,"Source Filmmaker",purchase,1.0,0 -137334839,"Source Filmmaker",play,1.6,0 -137334839,"Realm of the Mad God",purchase,1.0,0 -137334839,"Realm of the Mad God",play,1.5,0 -137334839,"Super Monday Night Combat",purchase,1.0,0 -137334839,"Super Monday Night Combat",play,1.2,0 -137334839,"BLOCKADE 3D",purchase,1.0,0 -137334839,"BLOCKADE 3D",play,1.1,0 -137334839,"Kingdom Wars",purchase,1.0,0 -137334839,"Kingdom Wars",play,0.9,0 -137334839,"Toribash",purchase,1.0,0 -137334839,"Toribash",play,0.6,0 -137334839,"PlanetSide 2",purchase,1.0,0 -137334839,"PlanetSide 2",play,0.5,0 -137334839,"Firefall",purchase,1.0,0 -137334839,"Dizzel",purchase,1.0,0 -137334839,"Evolve - Behemoth",purchase,1.0,0 -137334839,"Marvel Heroes 2015",purchase,1.0,0 -137334839,"R.U.S.E.",purchase,1.0,0 -297099122,"Transformice",purchase,1.0,0 -297099122,"Transformice",play,12.7,0 -297099122,"Unturned",purchase,1.0,0 -108315158,"Dota 2",purchase,1.0,0 -108315158,"Dota 2",play,3790.0,0 -108315158,"FreeStyle2 Street Basketball",purchase,1.0,0 -250642069,"Dota 2",purchase,1.0,0 -250642069,"Dota 2",play,5.2,0 -250642069,"GunZ 2 The Second Duel",purchase,1.0,0 -250642069,"Nosgoth",purchase,1.0,0 -250642069,"Strife",purchase,1.0,0 -241091767,"Dota 2",purchase,1.0,0 -241091767,"Dota 2",play,1.8,0 -241091767,"Neverwinter",purchase,1.0,0 -241091767,"RaiderZ",purchase,1.0,0 -241091767,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -241091767,"Warframe",purchase,1.0,0 -210623902,"Unturned",purchase,1.0,0 -210623902,"Unturned",play,2.4,0 -200673341,"Counter-Strike Global Offensive",purchase,1.0,0 -200673341,"Counter-Strike Global Offensive",play,298.0,0 -200673341,"Dota 2",purchase,1.0,0 -200673341,"Dota 2",play,72.0,0 -200673341,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -200673341,"Call of Duty Black Ops II - Multiplayer",play,15.9,0 -200673341,"Dead Island",purchase,1.0,0 -200673341,"Dead Island",play,15.3,0 -200673341,"Garry's Mod",purchase,1.0,0 -200673341,"Garry's Mod",play,14.4,0 -200673341,"Left 4 Dead 2",purchase,1.0,0 -200673341,"Left 4 Dead 2",play,12.5,0 -200673341,"Mount & Blade Warband",purchase,1.0,0 -200673341,"Mount & Blade Warband",play,11.5,0 -200673341,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -200673341,"Call of Duty Black Ops II - Zombies",play,10.0,0 -200673341,"Castle Crashers",purchase,1.0,0 -200673341,"Castle Crashers",play,9.3,0 -200673341,"AdVenture Capitalist",purchase,1.0,0 -200673341,"AdVenture Capitalist",play,7.6,0 -200673341,"Trove",purchase,1.0,0 -200673341,"Trove",play,5.9,0 -200673341,"BattleBlock Theater",purchase,1.0,0 -200673341,"BattleBlock Theater",play,3.1,0 -200673341,"DiggerOnline",purchase,1.0,0 -200673341,"DiggerOnline",play,2.4,0 -200673341,"Tropico 5",purchase,1.0,0 -200673341,"Tropico 5",play,2.3,0 -200673341,"Neverwinter",purchase,1.0,0 -200673341,"Neverwinter",play,2.2,0 -200673341,"War Thunder",purchase,1.0,0 -200673341,"War Thunder",play,2.2,0 -200673341,"Prison Architect",purchase,1.0,0 -200673341,"Prison Architect",play,1.8,0 -200673341,"Counter-Strike Source",purchase,1.0,0 -200673341,"Counter-Strike Source",play,1.6,0 -200673341,"Lucius",purchase,1.0,0 -200673341,"Lucius",play,1.5,0 -200673341,"Unturned",purchase,1.0,0 -200673341,"Unturned",play,1.4,0 -200673341,"Double Action Boogaloo",purchase,1.0,0 -200673341,"Double Action Boogaloo",play,1.4,0 -200673341,"Insurgency",purchase,1.0,0 -200673341,"Insurgency",play,1.2,0 -200673341,"Everlasting Summer",purchase,1.0,0 -200673341,"Everlasting Summer",play,1.1,0 -200673341,"Missing Translation",purchase,1.0,0 -200673341,"Missing Translation",play,1.1,0 -200673341,"Codename CURE",purchase,1.0,0 -200673341,"Codename CURE",play,0.9,0 -200673341,"Revolution Ace",purchase,1.0,0 -200673341,"Revolution Ace",play,0.9,0 -200673341,"Dead Island Riptide",purchase,1.0,0 -200673341,"Dead Island Riptide",play,0.7,0 -200673341,"FreeStyle2 Street Basketball",purchase,1.0,0 -200673341,"FreeStyle2 Street Basketball",play,0.7,0 -200673341,"Toribash",purchase,1.0,0 -200673341,"Toribash",play,0.6,0 -200673341,"Fistful of Frags",purchase,1.0,0 -200673341,"Fistful of Frags",play,0.6,0 -200673341,"Serious Sam HD The Second Encounter",purchase,1.0,0 -200673341,"Serious Sam HD The Second Encounter",play,0.5,0 -200673341,"Marvel Heroes 2015",purchase,1.0,0 -200673341,"Marvel Heroes 2015",play,0.5,0 -200673341,"Call of Duty Black Ops II",purchase,1.0,0 -200673341,"Call of Duty Black Ops II",play,0.5,0 -200673341,"Viridi",purchase,1.0,0 -200673341,"Viridi",play,0.5,0 -200673341,"Gravilon",purchase,1.0,0 -200673341,"Gravilon",play,0.4,0 -200673341,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -200673341,"Nosferatu The Wrath of Malachi",play,0.4,0 -200673341,"Polarity",purchase,1.0,0 -200673341,"Polarity",play,0.3,0 -200673341,"Terrorhedron",purchase,1.0,0 -200673341,"Terrorhedron",play,0.3,0 -200673341,"Fishing Planet",purchase,1.0,0 -200673341,"Fishing Planet",play,0.3,0 -200673341,"Alien Swarm",purchase,1.0,0 -200673341,"Alien Swarm",play,0.3,0 -200673341,"Spiral Knights",purchase,1.0,0 -200673341,"Spiral Knights",play,0.3,0 -200673341,"Magic Duels",purchase,1.0,0 -200673341,"Magic Duels",play,0.2,0 -200673341,"World of Goo",purchase,1.0,0 -200673341,"World of Goo",play,0.1,0 -200673341,"Quake Live",purchase,1.0,0 -200673341,"Quake Live",play,0.1,0 -200673341,"Realms of the Haunting",purchase,1.0,0 -200673341,"Realms of the Haunting",play,0.1,0 -200673341,"The Culling Of The Cows",purchase,1.0,0 -200673341,"The Culling Of The Cows",play,0.1,0 -200673341,"Fuse",purchase,1.0,0 -200673341,"Fuse",play,0.1,0 -200673341,"World of Soccer online",purchase,1.0,0 -200673341,"Anarchy Arcade",purchase,1.0,0 -200673341,"Champions Online",purchase,1.0,0 -200673341,"Cakewalk Loop Manager",purchase,1.0,0 -200673341,"Ace of Spades",purchase,1.0,0 -200673341,"Aftermath",purchase,1.0,0 -200673341,"Attrition Nuclear Domination",purchase,1.0,0 -200673341,"Aura Kingdom",purchase,1.0,0 -200673341,"BEEP",purchase,1.0,0 -200673341,"Cry of Fear",purchase,1.0,0 -200673341,"Day of Defeat Source",purchase,1.0,0 -200673341,"Dead Island Epidemic",purchase,1.0,0 -200673341,"Half-Life 2 Deathmatch",purchase,1.0,0 -200673341,"Half-Life 2 Lost Coast",purchase,1.0,0 -200673341,"Killing Floor - Toy Master",purchase,1.0,0 -200673341,"Magicka Wizard Wars",purchase,1.0,0 -200673341,"Moonbase Alpha",purchase,1.0,0 -200673341,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -200673341,"No More Room in Hell",purchase,1.0,0 -200673341,"Nosgoth",purchase,1.0,0 -200673341,"Pid ",purchase,1.0,0 -200673341,"Tactical Intervention",purchase,1.0,0 -200673341,"TERA",purchase,1.0,0 -200673341,"The Expendabros",purchase,1.0,0 -200673341,"Warframe",purchase,1.0,0 -200673341,"World of Guns Gun Disassembly",purchase,1.0,0 -200673341,"You Have to Win the Game",purchase,1.0,0 -104151931,"Team Fortress 2",purchase,1.0,0 -104151931,"Team Fortress 2",play,181.0,0 -105503045,"Fallout New Vegas",purchase,1.0,0 -105503045,"Fallout New Vegas",play,228.0,0 -105503045,"Elite Dangerous",purchase,1.0,0 -105503045,"Elite Dangerous",play,194.0,0 -105503045,"Clicker Heroes",purchase,1.0,0 -105503045,"Clicker Heroes",play,165.0,0 -105503045,"Sid Meier's Civilization V",purchase,1.0,0 -105503045,"Sid Meier's Civilization V",play,81.0,0 -105503045,"The Elder Scrolls V Skyrim",purchase,1.0,0 -105503045,"The Elder Scrolls V Skyrim",play,74.0,0 -105503045,"Kerbal Space Program",purchase,1.0,0 -105503045,"Kerbal Space Program",play,62.0,0 -105503045,"Torchlight II",purchase,1.0,0 -105503045,"Torchlight II",play,28.0,0 -105503045,"Game Dev Tycoon",purchase,1.0,0 -105503045,"Game Dev Tycoon",play,27.0,0 -105503045,"The Witcher 3 Wild Hunt",purchase,1.0,0 -105503045,"The Witcher 3 Wild Hunt",play,24.0,0 -105503045,"FTL Faster Than Light",purchase,1.0,0 -105503045,"FTL Faster Than Light",play,16.7,0 -105503045,"XCOM Enemy Unknown",purchase,1.0,0 -105503045,"XCOM Enemy Unknown",play,14.5,0 -105503045,"SimCity 4 Deluxe",purchase,1.0,0 -105503045,"SimCity 4 Deluxe",play,13.2,0 -105503045,"Rebel Galaxy",purchase,1.0,0 -105503045,"Rebel Galaxy",play,11.6,0 -105503045,"Assassin's Creed Revelations",purchase,1.0,0 -105503045,"Assassin's Creed Revelations",play,10.0,0 -105503045,"RAGE",purchase,1.0,0 -105503045,"RAGE",play,8.9,0 -105503045,"StarDrive",purchase,1.0,0 -105503045,"StarDrive",play,8.8,0 -105503045,"Monopoly",purchase,1.0,0 -105503045,"Monopoly",play,7.2,0 -105503045,"EVE Online",purchase,1.0,0 -105503045,"EVE Online",play,7.1,0 -105503045,"Fallout 4",purchase,1.0,0 -105503045,"Fallout 4",play,6.7,0 -105503045,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -105503045,"Deus Ex Human Revolution - Director's Cut",play,6.7,0 -105503045,"Hand Of Fate",purchase,1.0,0 -105503045,"Hand Of Fate",play,6.0,0 -105503045,"Universe Sandbox ",purchase,1.0,0 -105503045,"Universe Sandbox ",play,5.6,0 -105503045,"Garry's Mod",purchase,1.0,0 -105503045,"Garry's Mod",play,5.5,0 -105503045,"Metro Last Light Redux",purchase,1.0,0 -105503045,"Metro Last Light Redux",play,5.4,0 -105503045,"Space Run",purchase,1.0,0 -105503045,"Space Run",play,5.1,0 -105503045,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -105503045,"STAR WARS Knights of the Old Republic II The Sith Lords",play,4.9,0 -105503045,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -105503045,"Kingdoms of Amalur Reckoning",play,4.5,0 -105503045,"Space Engineers",purchase,1.0,0 -105503045,"Space Engineers",play,4.4,0 -105503045,"Borderlands 2",purchase,1.0,0 -105503045,"Borderlands 2",play,4.4,0 -105503045,"LEGO MARVEL Super Heroes",purchase,1.0,0 -105503045,"LEGO MARVEL Super Heroes",play,4.0,0 -105503045,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -105503045,"Sins of a Solar Empire Rebellion",play,3.9,0 -105503045,"Plague Inc Evolved",purchase,1.0,0 -105503045,"Plague Inc Evolved",play,3.9,0 -105503045,"Holy Potatoes! A Weapon Shop?!",purchase,1.0,0 -105503045,"Holy Potatoes! A Weapon Shop?!",play,3.7,0 -105503045,"God Mode",purchase,1.0,0 -105503045,"God Mode",play,3.5,0 -105503045,"Banished",purchase,1.0,0 -105503045,"Banished",play,3.3,0 -105503045,"Grow Home",purchase,1.0,0 -105503045,"Grow Home",play,3.1,0 -105503045,"The Stanley Parable",purchase,1.0,0 -105503045,"The Stanley Parable",play,3.0,0 -105503045,"Prison Architect",purchase,1.0,0 -105503045,"Prison Architect",play,3.0,0 -105503045,"Fable Anniversary",purchase,1.0,0 -105503045,"Fable Anniversary",play,3.0,0 -105503045,"Cities Skylines",purchase,1.0,0 -105503045,"Cities Skylines",play,2.9,0 -105503045,"System Shock 2",purchase,1.0,0 -105503045,"System Shock 2",play,2.8,0 -105503045,"Lego Star Wars Saga",purchase,1.0,0 -105503045,"Lego Star Wars Saga",play,2.8,0 -105503045,"Overlord II",purchase,1.0,0 -105503045,"Overlord II",play,2.7,0 -105503045,"Besiege",purchase,1.0,0 -105503045,"Besiege",play,2.7,0 -105503045,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -105503045,"Tom Clancy's Splinter Cell Blacklist",play,2.5,0 -105503045,"The Walking Dead",purchase,1.0,0 -105503045,"The Walking Dead",play,2.5,0 -105503045,"The Sims(TM) 3",purchase,1.0,0 -105503045,"The Sims(TM) 3",play,2.3,0 -105503045,"The Elder Scrolls III Morrowind",purchase,1.0,0 -105503045,"The Elder Scrolls III Morrowind",play,2.2,0 -105503045,"Planetary Annihilation",purchase,1.0,0 -105503045,"Planetary Annihilation",play,2.2,0 -105503045,"Total War ROME II - Emperor Edition",purchase,1.0,0 -105503045,"Total War ROME II - Emperor Edition",play,2.1,0 -105503045,"Supreme Commander Forged Alliance",purchase,1.0,0 -105503045,"Supreme Commander Forged Alliance",play,2.0,0 -105503045,"Star Wars Empire at War Gold",purchase,1.0,0 -105503045,"Star Wars Empire at War Gold",play,2.0,0 -105503045,"DOOM 3 BFG Edition",purchase,1.0,0 -105503045,"DOOM 3 BFG Edition",play,2.0,0 -105503045,"Terraria",purchase,1.0,0 -105503045,"Terraria",play,2.0,0 -105503045,"Just Cause 2",purchase,1.0,0 -105503045,"Just Cause 2",play,1.6,0 -105503045,"Dishonored",purchase,1.0,0 -105503045,"Dishonored",play,1.5,0 -105503045,"Reassembly",purchase,1.0,0 -105503045,"Reassembly",play,1.5,0 -105503045,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -105503045,"The Elder Scrolls IV Oblivion ",play,1.4,0 -105503045,"Team Fortress 2",purchase,1.0,0 -105503045,"Team Fortress 2",play,1.2,0 -105503045,"Singularity",purchase,1.0,0 -105503045,"Singularity",play,1.2,0 -105503045,"Cities XL Platinum",purchase,1.0,0 -105503045,"Cities XL Platinum",play,1.2,0 -105503045,"PAYDAY The Heist",purchase,1.0,0 -105503045,"PAYDAY The Heist",play,1.2,0 -105503045,"Crusaders of the Lost Idols",purchase,1.0,0 -105503045,"Crusaders of the Lost Idols",play,1.1,0 -105503045,"One Finger Death Punch",purchase,1.0,0 -105503045,"One Finger Death Punch",play,1.1,0 -105503045,"Space Pirates and Zombies",purchase,1.0,0 -105503045,"Space Pirates and Zombies",play,1.0,0 -105503045,"Don't Starve",purchase,1.0,0 -105503045,"Don't Starve",play,1.0,0 -105503045,"Sanctum",purchase,1.0,0 -105503045,"Sanctum",play,1.0,0 -105503045,"Starbound",purchase,1.0,0 -105503045,"Starbound",play,0.9,0 -105503045,"Universe Sandbox",purchase,1.0,0 -105503045,"Universe Sandbox",play,0.9,0 -105503045,"Alpha Protocol",purchase,1.0,0 -105503045,"Alpha Protocol",play,0.9,0 -105503045,"Five Nights at Freddy's",purchase,1.0,0 -105503045,"Five Nights at Freddy's",play,0.9,0 -105503045,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -105503045,"Duke Nukem 3D Megaton Edition",play,0.8,0 -105503045,"Goat Simulator",purchase,1.0,0 -105503045,"Goat Simulator",play,0.8,0 -105503045,"Counter-Strike Global Offensive",purchase,1.0,0 -105503045,"Counter-Strike Global Offensive",play,0.8,0 -105503045,"Turbo Dismount",purchase,1.0,0 -105503045,"Turbo Dismount",play,0.8,0 -105503045,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -105503045,"Dark Messiah of Might & Magic Single Player",play,0.8,0 -105503045,"Endless Space",purchase,1.0,0 -105503045,"Endless Space",play,0.7,0 -105503045,"Spore",purchase,1.0,0 -105503045,"Spore",play,0.7,0 -105503045,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -105503045,"Star Wars Jedi Knight Jedi Academy",play,0.6,0 -105503045,"Kinetic Void",purchase,1.0,0 -105503045,"Kinetic Void",play,0.6,0 -105503045,"Left 4 Dead 2",purchase,1.0,0 -105503045,"Left 4 Dead 2",play,0.6,0 -105503045,"Batman Arkham Knight",purchase,1.0,0 -105503045,"Batman Arkham Knight",play,0.6,0 -105503045,"Defense Grid 2",purchase,1.0,0 -105503045,"Defense Grid 2",play,0.6,0 -105503045,"ARK Survival Evolved",purchase,1.0,0 -105503045,"ARK Survival Evolved",play,0.6,0 -105503045,"The Binding of Isaac",purchase,1.0,0 -105503045,"The Binding of Isaac",play,0.6,0 -105503045,"Star Wars - Battlefront II",purchase,1.0,0 -105503045,"Star Wars - Battlefront II",play,0.6,0 -105503045,"Chivalry Medieval Warfare",purchase,1.0,0 -105503045,"Chivalry Medieval Warfare",play,0.5,0 -105503045,"Iron Brigade",purchase,1.0,0 -105503045,"Iron Brigade",play,0.5,0 -105503045,"Orcs Must Die! 2",purchase,1.0,0 -105503045,"Orcs Must Die! 2",play,0.5,0 -105503045,"Sparkle 2 Evo",purchase,1.0,0 -105503045,"Sparkle 2 Evo",play,0.5,0 -105503045,"StarMade",purchase,1.0,0 -105503045,"StarMade",play,0.4,0 -105503045,"Rodina",purchase,1.0,0 -105503045,"Rodina",play,0.4,0 -105503045,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -105503045,"SEGA Genesis & Mega Drive Classics",play,0.4,0 -105503045,"LEGO Worlds",purchase,1.0,0 -105503045,"LEGO Worlds",play,0.4,0 -105503045,"World of Guns Gun Disassembly",purchase,1.0,0 -105503045,"World of Guns Gun Disassembly",play,0.4,0 -105503045,"Starpoint Gemini 2",purchase,1.0,0 -105503045,"Starpoint Gemini 2",play,0.4,0 -105503045,"Psycho Starship Rampage",purchase,1.0,0 -105503045,"Psycho Starship Rampage",play,0.4,0 -105503045,"Poker Night at the Inventory",purchase,1.0,0 -105503045,"Poker Night at the Inventory",play,0.3,0 -105503045,"Towns",purchase,1.0,0 -105503045,"Towns",play,0.3,0 -105503045,"Viscera Cleanup Detail",purchase,1.0,0 -105503045,"Viscera Cleanup Detail",play,0.3,0 -105503045,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -105503045,"RollerCoaster Tycoon 3 Platinum!",play,0.3,0 -105503045,"Mark of the Ninja",purchase,1.0,0 -105503045,"Mark of the Ninja",play,0.2,0 -105503045,"Star Wars Knights of the Old Republic",purchase,1.0,0 -105503045,"Star Wars Knights of the Old Republic",play,0.2,0 -105503045,"Robocraft",purchase,1.0,0 -105503045,"Robocraft",play,0.2,0 -105503045,"Sniper Ghost Warrior 2",purchase,1.0,0 -105503045,"Sniper Ghost Warrior 2",play,0.2,0 -105503045,"Sakura Clicker",purchase,1.0,0 -105503045,"Sakura Clicker",play,0.2,0 -105503045,"From Dust",purchase,1.0,0 -105503045,"From Dust",play,0.2,0 -105503045,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -105503045,"Star Wars Jedi Knight Dark Forces II",play,0.1,0 -105503045,"Star Wars Dark Forces",purchase,1.0,0 -105503045,"Star Wars Dark Forces",play,0.1,0 -105503045,"Castle Story",purchase,1.0,0 -105503045,"Mountain",purchase,1.0,0 -105503045,"BioShock",purchase,1.0,0 -105503045,"Game Tycoon 1.5",purchase,1.0,0 -105503045,"Jade Empire Special Edition",purchase,1.0,0 -105503045,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -105503045,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -105503045,"Batman Arkham City GOTY",purchase,1.0,0 -105503045,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -105503045,"Batman Arkham Origins - Initiation",purchase,1.0,0 -105503045,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -105503045,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -105503045,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -105503045,"Batman Arkham Origins",purchase,1.0,0 -105503045,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -105503045,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -105503045,"Defense Grid 2 A Matter of Endurance",purchase,1.0,0 -105503045,"Don't Starve Together Beta",purchase,1.0,0 -105503045,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -105503045,"Fallout New Vegas Dead Money",purchase,1.0,0 -105503045,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -105503045,"Metro 2033 Redux",purchase,1.0,0 -105503045,"Natural Selection 2",purchase,1.0,0 -105503045,"Patch testing for Chivalry",purchase,1.0,0 -105503045,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -105503045,"Spore Creepy & Cute Parts Pack",purchase,1.0,0 -105503045,"Spore Galactic Adventures",purchase,1.0,0 -105503045,"Starbound - Unstable",purchase,1.0,0 -105503045,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -105503045,"Star Wars The Force Unleashed II",purchase,1.0,0 -105503045,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -105503045,"Star Wars Republic Commando",purchase,1.0,0 -105503045,"Star Wars Starfighter",purchase,1.0,0 -105503045,"Star Wars The Clone Wars Republic Heroes",purchase,1.0,0 -105503045,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -105503045,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -105503045,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -105503045,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -105503045,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -105503045,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -105503045,"XCOM Enemy Within",purchase,1.0,0 -157070205,"Dota 2",purchase,1.0,0 -157070205,"Dota 2",play,6.2,0 -50229934,"XCOM Enemy Unknown",purchase,1.0,0 -50229934,"XCOM Enemy Unknown",play,415.0,0 -50229934,"PlanetSide 2",purchase,1.0,0 -50229934,"PlanetSide 2",play,226.0,0 -50229934,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -50229934,"Galactic Civilizations II Ultimate Edition",play,155.0,0 -50229934,"Napoleon Total War",purchase,1.0,0 -50229934,"Napoleon Total War",play,122.0,0 -50229934,"Total War ROME II - Emperor Edition",purchase,1.0,0 -50229934,"Total War ROME II - Emperor Edition",play,89.0,0 -50229934,"Sid Meier's Civilization V",purchase,1.0,0 -50229934,"Sid Meier's Civilization V",play,81.0,0 -50229934,"Empire Total War",purchase,1.0,0 -50229934,"Empire Total War",play,64.0,0 -50229934,"Deus Ex Human Revolution",purchase,1.0,0 -50229934,"Deus Ex Human Revolution",play,54.0,0 -50229934,"Saints Row 2",purchase,1.0,0 -50229934,"Saints Row 2",play,47.0,0 -50229934,"Sleeping Dogs",purchase,1.0,0 -50229934,"Sleeping Dogs",play,37.0,0 -50229934,"StarDrive",purchase,1.0,0 -50229934,"StarDrive",play,37.0,0 -50229934,"Mafia II",purchase,1.0,0 -50229934,"Mafia II",play,35.0,0 -50229934,"Arma 3",purchase,1.0,0 -50229934,"Arma 3",play,31.0,0 -50229934,"Starbound",purchase,1.0,0 -50229934,"Starbound",play,28.0,0 -50229934,"Counter-Strike Global Offensive",purchase,1.0,0 -50229934,"Counter-Strike Global Offensive",play,23.0,0 -50229934,"FTL Faster Than Light",purchase,1.0,0 -50229934,"FTL Faster Than Light",play,19.2,0 -50229934,"Sid Meier's Pirates!",purchase,1.0,0 -50229934,"Sid Meier's Pirates!",play,12.3,0 -50229934,"Sniper Elite V2",purchase,1.0,0 -50229934,"Sniper Elite V2",play,9.9,0 -50229934,"Alien Swarm",purchase,1.0,0 -50229934,"Alien Swarm",play,7.5,0 -50229934,"Wargame European Escalation",purchase,1.0,0 -50229934,"Wargame European Escalation",play,3.5,0 -50229934,"Wings! Remastered Edition",purchase,1.0,0 -50229934,"Wings! Remastered Edition",play,3.3,0 -50229934,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -50229934,"Tom Clancy's Ghost Recon Phantoms - NA",play,2.8,0 -50229934,"Star Trek",purchase,1.0,0 -50229934,"Star Trek",play,2.5,0 -50229934,"X3 Terran Conflict",purchase,1.0,0 -50229934,"X3 Terran Conflict",play,1.4,0 -50229934,"Medieval II Total War",purchase,1.0,0 -50229934,"Medieval II Total War",play,0.9,0 -50229934,"Enforcer Police Crime Action",purchase,1.0,0 -50229934,"Enforcer Police Crime Action",play,0.6,0 -50229934,"Fractured Space",purchase,1.0,0 -50229934,"Fractured Space",play,0.5,0 -50229934,"Mars War Logs",purchase,1.0,0 -50229934,"Mars War Logs",play,0.4,0 -50229934,"Frontline Tactics",purchase,1.0,0 -50229934,"Frontline Tactics",play,0.4,0 -50229934,"GUN",purchase,1.0,0 -50229934,"GUN",play,0.4,0 -50229934,"Jagged Alliance Online - Steam Edition",purchase,1.0,0 -50229934,"Jagged Alliance Online - Steam Edition",play,0.2,0 -50229934,"Counter-Strike Condition Zero",purchase,1.0,0 -50229934,"GT Legends",purchase,1.0,0 -50229934,"Arma 3 Zeus",purchase,1.0,0 -50229934,"Counter-Strike",purchase,1.0,0 -50229934,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -50229934,"Counter-Strike Source",purchase,1.0,0 -50229934,"Galactic Civilizations I Ultimate Edition",purchase,1.0,0 -50229934,"Jagged Alliance Online Raven Pack",purchase,1.0,0 -50229934,"Medieval II Total War Kingdoms",purchase,1.0,0 -50229934,"Starbound - Unstable",purchase,1.0,0 -50229934,"XCOM Enemy Within",purchase,1.0,0 -181921701,"Team Fortress 2",purchase,1.0,0 -181921701,"Team Fortress 2",play,1.8,0 -131334429,"Team Fortress 2",purchase,1.0,0 -131334429,"Team Fortress 2",play,2.3,0 -161085459,"Loadout",purchase,1.0,0 -161085459,"Loadout",play,0.1,0 -161085459,"Defiance",purchase,1.0,0 -257064839,"Dota 2",purchase,1.0,0 -257064839,"Dota 2",play,7.5,0 -23918050,"SiN",purchase,1.0,0 -23918050,"SiN Episodes Emergence",purchase,1.0,0 -23918050,"SiN Multiplayer",purchase,1.0,0 -48756018,"Saints Row 2",purchase,1.0,0 -48756018,"Saints Row 2",play,40.0,0 -63263519,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -63263519,"Call of Duty Modern Warfare 2 - Multiplayer",play,12.3,0 -63263519,"Dota 2",purchase,1.0,0 -63263519,"Dota 2",play,1.7,0 -63263519,"Call of Duty Modern Warfare 2",purchase,1.0,0 -117066456,"Serious Sam HD The Second Encounter",purchase,1.0,0 -117066456,"Serious Sam HD The Second Encounter",play,46.0,0 -202465473,"Football Manager 2015",purchase,1.0,0 -202465473,"Football Manager 2015",play,497.0,0 -202465473,"Football Manager 2016",purchase,1.0,0 -202465473,"Football Manager 2016",play,42.0,0 -99157622,"Sid Meier's Civilization IV",purchase,1.0,0 -99157622,"Sid Meier's Civilization IV",play,1.3,0 -99157622,"Sid Meier's Civilization IV",purchase,1.0,0 -134641355,"Borderlands 2",purchase,1.0,0 -134641355,"Borderlands 2",play,734.0,0 -134641355,"Borderlands",purchase,1.0,0 -134641355,"Borderlands",play,94.0,0 -134641355,"March of War",purchase,1.0,0 -134641355,"March of War",play,74.0,0 -134641355,"Tomb Raider",purchase,1.0,0 -134641355,"Tomb Raider",play,62.0,0 -134641355,"Crysis 2 Maximum Edition",purchase,1.0,0 -134641355,"Crysis 2 Maximum Edition",play,49.0,0 -134641355,"Rocksmith",purchase,1.0,0 -134641355,"Rocksmith",play,40.0,0 -134641355,"BioShock Infinite",purchase,1.0,0 -134641355,"BioShock Infinite",play,31.0,0 -134641355,"BioShock",purchase,1.0,0 -134641355,"BioShock",play,25.0,0 -134641355,"Dota 2",purchase,1.0,0 -134641355,"Dota 2",play,24.0,0 -134641355,"Sid Meier's Civilization V",purchase,1.0,0 -134641355,"Sid Meier's Civilization V",play,9.7,0 -134641355,"Left 4 Dead 2",purchase,1.0,0 -134641355,"Left 4 Dead 2",play,6.0,0 -134641355,"Heroes & Generals",purchase,1.0,0 -134641355,"Heroes & Generals",play,4.8,0 -134641355,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -134641355,"Tom Clancy's Ghost Recon Phantoms - EU",play,3.7,0 -134641355,"GameMaker Studio",purchase,1.0,0 -134641355,"GameMaker Studio",play,2.7,0 -134641355,"Unturned",purchase,1.0,0 -134641355,"Unturned",play,1.4,0 -134641355,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -134641355,"Operation Flashpoint Dragon Rising",play,1.3,0 -134641355,"Really Big Sky",purchase,1.0,0 -134641355,"Really Big Sky",play,0.9,0 -134641355,"Cities in Motion",purchase,1.0,0 -134641355,"Cities in Motion",play,0.7,0 -134641355,"Loadout",purchase,1.0,0 -134641355,"Loadout",play,0.3,0 -134641355,"Free to Play",purchase,1.0,0 -134641355,"Free to Play",play,0.1,0 -134641355,"Dino D-Day",purchase,1.0,0 -134641355,"Dino D-Day",play,0.1,0 -134641355,"Super Sanctum TD",purchase,1.0,0 -134641355,"Post Apocalyptic Mayhem",purchase,1.0,0 -134641355,"Arma Cold War Assault",purchase,1.0,0 -134641355,"Rush Bros",purchase,1.0,0 -134641355,"Adventures of Shuggy",purchase,1.0,0 -134641355,"BioShock 2",purchase,1.0,0 -134641355,"Avencast",purchase,1.0,0 -134641355,"BattleSpace",purchase,1.0,0 -134641355,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -134641355,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -134641355,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -134641355,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -134641355,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -134641355,"Enclave",purchase,1.0,0 -134641355,"GTR Evolution",purchase,1.0,0 -134641355,"Gun Monkeys",purchase,1.0,0 -134641355,"Operation Flashpoint Red River",purchase,1.0,0 -134641355,"Overlord",purchase,1.0,0 -134641355,"Overlord Raising Hell",purchase,1.0,0 -134641355,"Quake Live",purchase,1.0,0 -134641355,"RACE 07",purchase,1.0,0 -134641355,"RaceRoom Racing Experience ",purchase,1.0,0 -134641355,"Rise of the Argonauts",purchase,1.0,0 -134641355,"Robocraft",purchase,1.0,0 -134641355,"Sid Meier's Ace Patrol",purchase,1.0,0 -134641355,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -134641355,"Sid Meier's Civilization III Complete",purchase,1.0,0 -134641355,"Sid Meier's Civilization IV",purchase,1.0,0 -134641355,"Sid Meier's Civilization IV",purchase,1.0,0 -134641355,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -134641355,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -134641355,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -134641355,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -134641355,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -134641355,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -134641355,"Sid Meier's Railroads!",purchase,1.0,0 -134641355,"Sniper Elite V2",purchase,1.0,0 -134641355,"Space Hack",purchase,1.0,0 -134641355,"The Fish Fillets 2",purchase,1.0,0 -134641355,"Warface",purchase,1.0,0 -212166635,"RollerCoaster Tycoon 2 Triple Thrill Pack",purchase,1.0,0 -212166635,"RollerCoaster Tycoon 2 Triple Thrill Pack",play,18.0,0 -212166635,"SimCity 4 Deluxe",purchase,1.0,0 -212166635,"SimCity 4 Deluxe",play,0.2,0 -299991818,"Dirty Bomb",purchase,1.0,0 -299991818,"Dirty Bomb",play,1.4,0 -299991818,"Warframe",purchase,1.0,0 -299991818,"Warframe",play,0.5,0 -299991818,"Team Fortress 2",purchase,1.0,0 -299991818,"Team Fortress 2",play,0.3,0 -299991818,"PlanetSide 2",purchase,1.0,0 -299991818,"Counter-Strike Nexon Zombies",purchase,1.0,0 -26027937,"Counter-Strike Global Offensive",purchase,1.0,0 -26027937,"Counter-Strike Global Offensive",play,233.0,0 -26027937,"Counter-Strike Source",purchase,1.0,0 -26027937,"Counter-Strike Source",play,127.0,0 -26027937,"Worms Revolution",purchase,1.0,0 -26027937,"Worms Revolution",play,26.0,0 -26027937,"Mark of the Ninja",purchase,1.0,0 -26027937,"Mark of the Ninja",play,25.0,0 -26027937,"The Book of Unwritten Tales The Critter Chronicles",purchase,1.0,0 -26027937,"The Book of Unwritten Tales The Critter Chronicles",play,13.0,0 -26027937,"The Basement Collection",purchase,1.0,0 -26027937,"The Basement Collection",play,12.0,0 -26027937,"Dota 2",purchase,1.0,0 -26027937,"Dota 2",play,11.6,0 -26027937,"Democracy 3",purchase,1.0,0 -26027937,"Democracy 3",play,10.7,0 -26027937,"LIMBO",purchase,1.0,0 -26027937,"LIMBO",play,9.4,0 -26027937,"Stealth Bastard Deluxe",purchase,1.0,0 -26027937,"Stealth Bastard Deluxe",play,8.4,0 -26027937,"Zeno Clash",purchase,1.0,0 -26027937,"Zeno Clash",play,5.8,0 -26027937,"Team Fortress 2",purchase,1.0,0 -26027937,"Team Fortress 2",play,5.4,0 -26027937,"Audiosurf",purchase,1.0,0 -26027937,"Audiosurf",play,4.7,0 -26027937,"Natural Selection 2",purchase,1.0,0 -26027937,"Natural Selection 2",play,2.3,0 -26027937,"Total War SHOGUN 2",purchase,1.0,0 -26027937,"Total War SHOGUN 2",play,1.7,0 -26027937,"Toki Tori",purchase,1.0,0 -26027937,"Toki Tori",play,1.5,0 -26027937,"Thirty Flights of Loving",purchase,1.0,0 -26027937,"Thirty Flights of Loving",play,0.4,0 -26027937,"Ben There, Dan That!",purchase,1.0,0 -26027937,"Ben There, Dan That!",play,0.4,0 -26027937,"B.U.T.T.O.N.",purchase,1.0,0 -26027937,"B.U.T.T.O.N.",play,0.1,0 -26027937,"Shattered Horizon",purchase,1.0,0 -26027937,"Time Gentlemen, Please!",purchase,1.0,0 -26027937,"Democracy 3 Extremism",purchase,1.0,0 -26027937,"Democracy 3 Extremism Linux",purchase,1.0,0 -26027937,"Democracy 3 Extremism Mac",purchase,1.0,0 -26027937,"Free to Play",purchase,1.0,0 -26027937,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -92436417,"The Elder Scrolls V Skyrim",purchase,1.0,0 -92436417,"The Elder Scrolls V Skyrim",play,479.0,0 -92436417,"Fallout 4",purchase,1.0,0 -92436417,"Fallout 4",play,85.0,0 -92436417,"Warframe",purchase,1.0,0 -92436417,"Warframe",play,67.0,0 -92436417,"Neverwinter",purchase,1.0,0 -92436417,"Neverwinter",play,28.0,0 -92436417,"ARK Survival Evolved",purchase,1.0,0 -92436417,"ARK Survival Evolved",play,16.5,0 -92436417,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -92436417,"The Witcher 2 Assassins of Kings Enhanced Edition",play,15.5,0 -92436417,"Dota 2",purchase,1.0,0 -92436417,"Dota 2",play,14.0,0 -92436417,"SMITE",purchase,1.0,0 -92436417,"SMITE",play,12.7,0 -92436417,"Fallout New Vegas",purchase,1.0,0 -92436417,"Fallout New Vegas",play,4.5,0 -92436417,"DC Universe Online",purchase,1.0,0 -92436417,"DC Universe Online",play,4.3,0 -92436417,"RaiderZ",purchase,1.0,0 -92436417,"RaiderZ",play,1.9,0 -92436417,"TERA",purchase,1.0,0 -92436417,"TERA",play,1.6,0 -92436417,"The Elder Scrolls III Morrowind",purchase,1.0,0 -92436417,"The Elder Scrolls III Morrowind",play,0.5,0 -92436417,"Universe Sandbox",purchase,1.0,0 -92436417,"Universe Sandbox",play,0.4,0 -92436417,"ArcheAge",purchase,1.0,0 -92436417,"ArcheAge",play,0.1,0 -92436417,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -92436417,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -92436417,"Fallout New Vegas Dead Money",purchase,1.0,0 -92436417,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -92436417,"Magic Duels",purchase,1.0,0 -92436417,"Marvel Heroes 2015",purchase,1.0,0 -92436417,"Path of Exile",purchase,1.0,0 -92436417,"PlanetSide 2",purchase,1.0,0 -92436417,"Portal",purchase,1.0,0 -92436417,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -92436417,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -92436417,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -92436417,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -92436417,"Vindictus",purchase,1.0,0 -75668947,"Sid Meier's Civilization V",purchase,1.0,0 -75668947,"Sid Meier's Civilization V",play,130.0,0 -47887890,"Counter-Strike Source",purchase,1.0,0 -47887890,"Counter-Strike Source",play,2633.0,0 -47887890,"Dota 2",purchase,1.0,0 -47887890,"Dota 2",play,365.0,0 -47887890,"Day of Defeat Source",purchase,1.0,0 -47887890,"Day of Defeat Source",play,5.8,0 -47887890,"Alien Swarm",purchase,1.0,0 -47887890,"Alien Swarm",play,3.3,0 -47887890,"Half-Life 2 Lost Coast",purchase,1.0,0 -47887890,"Half-Life 2 Lost Coast",play,0.4,0 -47887890,"Portal",purchase,1.0,0 -47887890,"Portal",play,0.4,0 -47887890,"AI War Fleet Command",purchase,1.0,0 -47887890,"AI War Fleet Command",play,0.2,0 -47887890,"Zombie Panic Source",purchase,1.0,0 -47887890,"Zombie Panic Source",play,0.2,0 -47887890,"Half-Life 2 Deathmatch",purchase,1.0,0 -47887890,"NBA 2K9",purchase,1.0,0 -116482142,"Deus Ex Human Revolution",purchase,1.0,0 -116482142,"Deus Ex Human Revolution",play,73.0,0 -116482142,"Two Worlds II",purchase,1.0,0 -116482142,"Two Worlds II",play,45.0,0 -116482142,"Medieval II Total War",purchase,1.0,0 -116482142,"Medieval II Total War",play,26.0,0 -116482142,"Alan Wake",purchase,1.0,0 -116482142,"Alan Wake",play,11.1,0 -116482142,"Call of Juarez Gunslinger",purchase,1.0,0 -116482142,"Call of Juarez Gunslinger",play,9.4,0 -116482142,"Alan Wake's American Nightmare",purchase,1.0,0 -116482142,"Alan Wake's American Nightmare",play,4.0,0 -116482142,"Car Mechanic Simulator 2014",purchase,1.0,0 -116482142,"Car Mechanic Simulator 2014",play,0.3,0 -116482142,"Lords Of The Fallen",purchase,1.0,0 -116482142,"Medieval II Total War Kingdoms",purchase,1.0,0 -58182267,"Counter-Strike Source",purchase,1.0,0 -58182267,"Counter-Strike Source",play,127.0,0 -58182267,"Day of Defeat Source",purchase,1.0,0 -58182267,"Day of Defeat Source",play,1.5,0 -58182267,"Half-Life 2 Deathmatch",purchase,1.0,0 -58182267,"Half-Life 2 Lost Coast",purchase,1.0,0 -248384252,"Pressured",purchase,1.0,0 -275764806,"Dirty Bomb",purchase,1.0,0 -275764806,"Dirty Bomb",play,40.0,0 -150102806,"Dota 2",purchase,1.0,0 -150102806,"Dota 2",play,0.3,0 -298822624,"Grand Theft Auto V",purchase,1.0,0 -298822624,"Grand Theft Auto V",play,29.0,0 -214309931,"Garry's Mod",purchase,1.0,0 -214309931,"Garry's Mod",play,5.9,0 -214309931,"Resident Evil Operation Raccoon City",purchase,1.0,0 -214309931,"Terraria",purchase,1.0,0 -159983691,"Left 4 Dead 2",purchase,1.0,0 -252099721,"Dota 2",purchase,1.0,0 -252099721,"Dota 2",play,307.0,0 -240149426,"Dota 2",purchase,1.0,0 -240149426,"Dota 2",play,0.3,0 -121573188,"Counter-Strike Global Offensive",purchase,1.0,0 -121573188,"Counter-Strike Global Offensive",play,110.0,0 -121573188,"Team Fortress 2",purchase,1.0,0 -121573188,"Team Fortress 2",play,31.0,0 -121573188,"Counter-Strike Nexon Zombies",purchase,1.0,0 -121573188,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -41847338,"Counter-Strike",purchase,1.0,0 -41847338,"Counter-Strike",play,3.8,0 -41847338,"Counter-Strike Source",purchase,1.0,0 -41847338,"Counter-Strike Source",play,0.4,0 -41847338,"Counter-Strike Global Offensive",purchase,1.0,0 -41847338,"Counter-Strike Global Offensive",play,0.2,0 -41847338,"Counter-Strike Condition Zero",purchase,1.0,0 -41847338,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -169919297,"Dota 2",purchase,1.0,0 -169919297,"Dota 2",play,4.8,0 -190817792,"Heroes & Generals",purchase,1.0,0 -256021017,"Dota 2",purchase,1.0,0 -256021017,"Dota 2",play,12.5,0 -291819440,"Counter-Strike Global Offensive",purchase,1.0,0 -291819440,"Counter-Strike Global Offensive",play,43.0,0 -291819440,"Fallen Earth",purchase,1.0,0 -291819440,"Heroes & Generals",purchase,1.0,0 -291819440,"PlanetSide 2",purchase,1.0,0 -291819440,"Unturned",purchase,1.0,0 -102219798,"Napoleon Total War",purchase,1.0,0 -102219798,"Napoleon Total War",play,0.5,0 -70327507,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -70327507,"Call of Duty Modern Warfare 2 - Multiplayer",play,98.0,0 -70327507,"America's Army 3",purchase,1.0,0 -70327507,"America's Army 3",play,92.0,0 -70327507,"Football Manager 2015",purchase,1.0,0 -70327507,"Football Manager 2015",play,55.0,0 -70327507,"Football Manager 2016",purchase,1.0,0 -70327507,"Football Manager 2016",play,33.0,0 -70327507,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -70327507,"Call of Duty Black Ops - Multiplayer",play,11.8,0 -70327507,"America's Army Proving Grounds",purchase,1.0,0 -70327507,"America's Army Proving Grounds",play,5.4,0 -70327507,"Call of Duty Black Ops",purchase,1.0,0 -70327507,"Call of Duty Black Ops",play,4.8,0 -70327507,"Call of Duty Modern Warfare 2",purchase,1.0,0 -70327507,"Call of Duty Modern Warfare 2",play,1.5,0 -246471439,"Transformice",purchase,1.0,0 -246471439,"Transformice",play,500.0,0 -87740541,"F1 2010",purchase,1.0,0 -87740541,"F1 2010",play,13.6,0 -87740541,"RACE 07",purchase,1.0,0 -87740541,"RACE 07",play,10.5,0 -87740541,"F1 2011",purchase,1.0,0 -87740541,"F1 2011",play,10.1,0 -87740541,"GT Power Expansion",purchase,1.0,0 -87740541,"The Retro Expansion",purchase,1.0,0 -87740541,"GTR Evolution",purchase,1.0,0 -87740541,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -155052784,"Dota 2",purchase,1.0,0 -155052784,"Dota 2",play,2.8,0 -168802795,"Dota 2",purchase,1.0,0 -168802795,"Dota 2",play,81.0,0 -168802795,"Dead Island Epidemic",purchase,1.0,0 -168802795,"Robocraft",purchase,1.0,0 -168802795,"Unturned",purchase,1.0,0 -220918911,"Dota 2",purchase,1.0,0 -220918911,"Dota 2",play,2.4,0 -195968966,"Warframe",purchase,1.0,0 -195968966,"Warframe",play,147.0,0 -195968966,"TERA",purchase,1.0,0 -195968966,"TERA",play,17.8,0 -195968966,"Warface",purchase,1.0,0 -195968966,"Warface",play,16.6,0 -195968966,"Karos",purchase,1.0,0 -195968966,"Kung Fury",purchase,1.0,0 -195968966,"No More Room in Hell",purchase,1.0,0 -195968966,"sZone-Online",purchase,1.0,0 -33934276,"Lost Planet Extreme Condition",purchase,1.0,0 -33755449,"Counter-Strike Source",purchase,1.0,0 -33755449,"Counter-Strike Source",play,3.7,0 -33755449,"Day of Defeat Source",purchase,1.0,0 -33755449,"Half-Life 2 Deathmatch",purchase,1.0,0 -33755449,"Half-Life 2 Lost Coast",purchase,1.0,0 -104830836,"APB Reloaded",purchase,1.0,0 -104830836,"APB Reloaded",play,809.0,0 -104830836,"Arma 2 Operation Arrowhead",purchase,1.0,0 -104830836,"Arma 2 Operation Arrowhead",play,88.0,0 -104830836,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -104830836,"Call of Duty 4 Modern Warfare",play,48.0,0 -104830836,"Team Fortress 2",purchase,1.0,0 -104830836,"Team Fortress 2",play,37.0,0 -104830836,"Insurgency",purchase,1.0,0 -104830836,"Insurgency",play,32.0,0 -104830836,"PlanetSide 2",purchase,1.0,0 -104830836,"PlanetSide 2",play,12.1,0 -104830836,"Counter-Strike Global Offensive",purchase,1.0,0 -104830836,"Counter-Strike Global Offensive",play,11.6,0 -104830836,"TERA",purchase,1.0,0 -104830836,"TERA",play,10.7,0 -104830836,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -104830836,"Call of Duty Black Ops II - Multiplayer",play,2.5,0 -104830836,"Mirror's Edge",purchase,1.0,0 -104830836,"Mirror's Edge",play,2.0,0 -104830836,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -104830836,"Burnout Paradise The Ultimate Box",play,1.8,0 -104830836,"Dota 2",purchase,1.0,0 -104830836,"Dota 2",play,1.4,0 -104830836,"Trine 2",purchase,1.0,0 -104830836,"Trine 2",play,1.2,0 -104830836,"Chivalry Medieval Warfare",purchase,1.0,0 -104830836,"Chivalry Medieval Warfare",play,1.0,0 -104830836,"PAYDAY 2",purchase,1.0,0 -104830836,"PAYDAY 2",play,0.3,0 -104830836,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -104830836,"Medal of Honor(TM) Multiplayer",play,0.3,0 -104830836,"Call of Duty Black Ops II",purchase,1.0,0 -104830836,"Call of Duty Black Ops II",play,0.2,0 -104830836,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -104830836,"Call of Duty Black Ops II - Zombies",play,0.2,0 -104830836,"Arma 2",purchase,1.0,0 -104830836,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -104830836,"Medal of Honor(TM) Single Player",purchase,1.0,0 -104830836,"Medal of Honor Pre-Order",purchase,1.0,0 -104830836,"Patch testing for Chivalry",purchase,1.0,0 -104830836,"Terraria",purchase,1.0,0 -87403553,"Team Fortress 2",purchase,1.0,0 -87403553,"Team Fortress 2",play,43.0,0 -59025651,"EVE Online",purchase,1.0,0 -239659002,"Clicker Heroes",purchase,1.0,0 -239659002,"Clicker Heroes",play,3.3,0 -239659002,"DiggerOnline",purchase,1.0,0 -239659002,"DiggerOnline",play,0.8,0 -239659002,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -239659002,"S.K.I.L.L. - Special Force 2",play,0.7,0 -174674290,"Terraria",purchase,1.0,0 -174674290,"Terraria",play,148.0,0 -174674290,"Don't Starve Together Beta",purchase,1.0,0 -174674290,"Don't Starve Together Beta",play,96.0,0 -174674290,"Starbound",purchase,1.0,0 -174674290,"Starbound",play,36.0,0 -174674290,"Portal 2",purchase,1.0,0 -174674290,"Portal 2",play,30.0,0 -174674290,"The Testament of Sherlock Holmes",purchase,1.0,0 -174674290,"The Testament of Sherlock Holmes",play,23.0,0 -174674290,"Q.U.B.E Director's Cut",purchase,1.0,0 -174674290,"Q.U.B.E Director's Cut",play,12.3,0 -174674290,"Portal Stories Mel",purchase,1.0,0 -174674290,"Portal Stories Mel",play,9.2,0 -174674290,"Dungeon Defenders",purchase,1.0,0 -174674290,"Dungeon Defenders",play,7.5,0 -174674290,"Braid",purchase,1.0,0 -174674290,"Braid",play,6.3,0 -174674290,"To the Moon",purchase,1.0,0 -174674290,"To the Moon",play,4.2,0 -174674290,"Keep Talking and Nobody Explodes",purchase,1.0,0 -174674290,"Keep Talking and Nobody Explodes",play,4.1,0 -174674290,"The Bridge",purchase,1.0,0 -174674290,"The Bridge",play,3.2,0 -174674290,"The Wolf Among Us",purchase,1.0,0 -174674290,"The Wolf Among Us",play,2.0,0 -174674290,"Monaco",purchase,1.0,0 -174674290,"Monaco",play,0.2,0 -174674290,"Starbound - Unstable",purchase,1.0,0 -212134578,"Counter-Strike Global Offensive",purchase,1.0,0 -212134578,"Counter-Strike Global Offensive",play,231.0,0 -212134578,"Gear Up",purchase,1.0,0 -212134578,"Gear Up",play,0.4,0 -212134578,"Unturned",purchase,1.0,0 -212134578,"Unturned",play,0.2,0 -212134578,"BLOCKADE 3D",purchase,1.0,0 -212134578,"Counter-Strike Nexon Zombies",purchase,1.0,0 -212134578,"Dead Island Epidemic",purchase,1.0,0 -212134578,"F.E.A.R. Online",purchase,1.0,0 -212134578,"Pinball Arcade",purchase,1.0,0 -212134578,"PlanetSide 2",purchase,1.0,0 -212134578,"Quake Live",purchase,1.0,0 -212134578,"The Mighty Quest For Epic Loot",purchase,1.0,0 -212134578,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -237721133,"Dota 2",purchase,1.0,0 -237721133,"Dota 2",play,0.2,0 -138202190,"Dota 2",purchase,1.0,0 -138202190,"Dota 2",play,88.0,0 -276101470,"Dota 2",purchase,1.0,0 -276101470,"Dota 2",play,420.0,0 -249004649,"Rust",purchase,1.0,0 -249004649,"Rust",play,1.1,0 -301230271,"GameMaker Studio",purchase,1.0,0 -301230271,"GameMaker Studio",play,1.8,0 -190568643,"Dota 2",purchase,1.0,0 -190568643,"Dota 2",play,343.0,0 -190568643,"BLOCKADE 3D",purchase,1.0,0 -190568643,"Loadout",purchase,1.0,0 -165644384,"Dota 2",purchase,1.0,0 -165644384,"Dota 2",play,0.4,0 -29081256,"Team Fortress 2",purchase,1.0,0 -29081256,"Team Fortress 2",play,5.8,0 -29081256,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -29081256,"Medal of Honor(TM) Multiplayer",play,5.4,0 -29081256,"Dota 2",purchase,1.0,0 -29081256,"Dota 2",play,0.8,0 -29081256,"Crysis 2 Maximum Edition",purchase,1.0,0 -29081256,"Crysis 2 Maximum Edition",play,0.6,0 -29081256,"Mirror's Edge",purchase,1.0,0 -29081256,"Mirror's Edge",play,0.3,0 -29081256,"Ravaged Zombie Apocalypse",purchase,1.0,0 -29081256,"Ravaged Zombie Apocalypse",play,0.2,0 -29081256,"Medal of Honor(TM) Single Player",purchase,1.0,0 -29081256,"Medal of Honor Pre-Order",purchase,1.0,0 -29081256,"No More Room in Hell",purchase,1.0,0 -42669917,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -42669917,"Dark Messiah of Might & Magic Multi-Player",play,0.2,0 -42669917,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -27579751,"Counter-Strike",purchase,1.0,0 -27579751,"Counter-Strike",play,139.0,0 -27579751,"R.U.S.E",purchase,1.0,0 -27579751,"R.U.S.E",play,4.9,0 -27579751,"Dota 2",purchase,1.0,0 -27579751,"Dota 2",play,3.0,0 -27579751,"Half-Life 2 Deathmatch",purchase,1.0,0 -27579751,"Half-Life 2 Deathmatch",play,1.8,0 -27579751,"Counter-Strike Condition Zero",purchase,1.0,0 -27579751,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -27579751,"Half-Life 2 Lost Coast",purchase,1.0,0 -27579751,"R.U.S.E.",purchase,1.0,0 -204297995,"Sid Meier's Civilization V",purchase,1.0,0 -204297995,"Sid Meier's Civilization V",play,122.0,0 -213321209,"Dota 2",purchase,1.0,0 -213321209,"Dota 2",play,4.2,0 -174633348,"Terraria",purchase,1.0,0 -174633348,"Terraria",play,208.0,0 -174633348,"The Elder Scrolls V Skyrim",purchase,1.0,0 -174633348,"The Elder Scrolls V Skyrim",play,92.0,0 -174633348,"Unturned",purchase,1.0,0 -174633348,"Unturned",play,87.0,0 -174633348,"Robocraft",purchase,1.0,0 -174633348,"Robocraft",play,59.0,0 -174633348,"Sid Meier's Civilization V",purchase,1.0,0 -174633348,"Sid Meier's Civilization V",play,56.0,0 -174633348,"Trove",purchase,1.0,0 -174633348,"Trove",play,18.7,0 -174633348,"Planetary Annihilation",purchase,1.0,0 -174633348,"Planetary Annihilation",play,7.9,0 -174633348,"Saints Row 2",purchase,1.0,0 -174633348,"Saints Row 2",play,7.1,0 -174633348,"War Thunder",purchase,1.0,0 -174633348,"War Thunder",play,6.9,0 -174633348,"RIFT",purchase,1.0,0 -174633348,"RIFT",play,2.6,0 -174633348,"Two Worlds Epic Edition",purchase,1.0,0 -174633348,"Two Worlds Epic Edition",play,1.3,0 -174633348,"Cities Skylines",purchase,1.0,0 -174633348,"Cities Skylines",play,1.0,0 -174633348,"TERA",purchase,1.0,0 -174633348,"TERA",play,0.9,0 -174633348,"Caster",purchase,1.0,0 -174633348,"Caster",play,0.9,0 -174633348,"Bad Rats",purchase,1.0,0 -174633348,"Bad Rats",play,0.7,0 -174633348,"The Forest",purchase,1.0,0 -174633348,"The Forest",play,0.7,0 -174633348,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -174633348,"Viscera Cleanup Detail Santa's Rampage",play,0.6,0 -174633348,"You Have to Win the Game",purchase,1.0,0 -174633348,"You Have to Win the Game",play,0.6,0 -174633348,"Moonbase Alpha",purchase,1.0,0 -174633348,"Moonbase Alpha",play,0.5,0 -174633348,"theHunter",purchase,1.0,0 -174633348,"theHunter",play,0.3,0 -174633348,"Radial Impact",purchase,1.0,0 -174633348,"Greyfox",purchase,1.0,0 -174633348,"Terrorhedron",purchase,1.0,0 -174633348,"ArcheAge",purchase,1.0,0 -174633348,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -174633348,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -126963965,"Dota 2",purchase,1.0,0 -126963965,"Dota 2",play,227.0,0 -77214425,"Warframe",purchase,1.0,0 -77214425,"Warframe",play,560.0,0 -77214425,"Garry's Mod",purchase,1.0,0 -77214425,"Garry's Mod",play,414.0,0 -77214425,"Killing Floor",purchase,1.0,0 -77214425,"Killing Floor",play,210.0,0 -77214425,"Dota 2",purchase,1.0,0 -77214425,"Dota 2",play,197.0,0 -77214425,"Borderlands 2",purchase,1.0,0 -77214425,"Borderlands 2",play,154.0,0 -77214425,"Counter-Strike Global Offensive",purchase,1.0,0 -77214425,"Counter-Strike Global Offensive",play,148.0,0 -77214425,"Far Cry 3",purchase,1.0,0 -77214425,"Far Cry 3",play,131.0,0 -77214425,"Counter-Strike Source",purchase,1.0,0 -77214425,"Counter-Strike Source",play,101.0,0 -77214425,"Blacklight Retribution",purchase,1.0,0 -77214425,"Blacklight Retribution",play,92.0,0 -77214425,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -77214425,"METAL GEAR SOLID V THE PHANTOM PAIN",play,82.0,0 -77214425,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -77214425,"F.E.A.R. 2 Project Origin",play,76.0,0 -77214425,"Grand Theft Auto IV",purchase,1.0,0 -77214425,"Grand Theft Auto IV",play,66.0,0 -77214425,"Chivalry Medieval Warfare",purchase,1.0,0 -77214425,"Chivalry Medieval Warfare",play,65.0,0 -77214425,"Mortal Kombat Komplete Edition",purchase,1.0,0 -77214425,"Mortal Kombat Komplete Edition",play,63.0,0 -77214425,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -77214425,"Just Cause 2 Multiplayer Mod",play,52.0,0 -77214425,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -77214425,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,51.0,0 -77214425,"The Elder Scrolls V Skyrim",purchase,1.0,0 -77214425,"The Elder Scrolls V Skyrim",play,48.0,0 -77214425,"Team Fortress 2",purchase,1.0,0 -77214425,"Team Fortress 2",play,46.0,0 -77214425,"Arma 2 Operation Arrowhead",purchase,1.0,0 -77214425,"Arma 2 Operation Arrowhead",play,44.0,0 -77214425,"Borderlands The Pre-Sequel",purchase,1.0,0 -77214425,"Borderlands The Pre-Sequel",play,43.0,0 -77214425,"Sleeping Dogs",purchase,1.0,0 -77214425,"Sleeping Dogs",play,35.0,0 -77214425,"Dead Island",purchase,1.0,0 -77214425,"Dead Island",play,35.0,0 -77214425,"Portal 2",purchase,1.0,0 -77214425,"Portal 2",play,33.0,0 -77214425,"F.E.A.R. 3",purchase,1.0,0 -77214425,"F.E.A.R. 3",play,31.0,0 -77214425,"PAYDAY 2",purchase,1.0,0 -77214425,"PAYDAY 2",play,31.0,0 -77214425,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -77214425,"Grand Theft Auto Episodes from Liberty City",play,30.0,0 -77214425,"Crysis 2 Maximum Edition",purchase,1.0,0 -77214425,"Crysis 2 Maximum Edition",play,29.0,0 -77214425,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -77214425,"Resident Evil Revelations 2 / Biohazard Revelations 2",play,29.0,0 -77214425,"No More Room in Hell",purchase,1.0,0 -77214425,"No More Room in Hell",play,27.0,0 -77214425,"Saints Row The Third",purchase,1.0,0 -77214425,"Saints Row The Third",play,25.0,0 -77214425,"PAC-MAN Championship Edition DX+",purchase,1.0,0 -77214425,"PAC-MAN Championship Edition DX+",play,24.0,0 -77214425,"Dead Island Epidemic",purchase,1.0,0 -77214425,"Dead Island Epidemic",play,24.0,0 -77214425,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -77214425,"Call of Duty Modern Warfare 3 - Multiplayer",play,24.0,0 -77214425,"Endless Legend",purchase,1.0,0 -77214425,"Endless Legend",play,24.0,0 -77214425,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",purchase,1.0,0 -77214425,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",play,24.0,0 -77214425,"Prince of Persia The Two Thrones",purchase,1.0,0 -77214425,"Prince of Persia The Two Thrones",play,22.0,0 -77214425,"Age of Empires III Complete Collection",purchase,1.0,0 -77214425,"Age of Empires III Complete Collection",play,21.0,0 -77214425,"Audiosurf 2",purchase,1.0,0 -77214425,"Audiosurf 2",play,19.4,0 -77214425,"Interstellar Marines",purchase,1.0,0 -77214425,"Interstellar Marines",play,18.8,0 -77214425,"BioShock Infinite",purchase,1.0,0 -77214425,"BioShock Infinite",play,18.7,0 -77214425,"Arma 2 DayZ Mod",purchase,1.0,0 -77214425,"Arma 2 DayZ Mod",play,17.6,0 -77214425,"Counter-Strike Nexon Zombies",purchase,1.0,0 -77214425,"Counter-Strike Nexon Zombies",play,17.2,0 -77214425,"Dust An Elysian Tail",purchase,1.0,0 -77214425,"Dust An Elysian Tail",play,17.1,0 -77214425,"Call of Duty Modern Warfare 3",purchase,1.0,0 -77214425,"Call of Duty Modern Warfare 3",play,16.9,0 -77214425,"Sonic Generations",purchase,1.0,0 -77214425,"Sonic Generations",play,16.6,0 -77214425,"Killing Floor 2",purchase,1.0,0 -77214425,"Killing Floor 2",play,16.5,0 -77214425,"Battlefield Bad Company 2",purchase,1.0,0 -77214425,"Battlefield Bad Company 2",play,16.2,0 -77214425,"Max Payne 3",purchase,1.0,0 -77214425,"Max Payne 3",play,16.1,0 -77214425,"Metro 2033",purchase,1.0,0 -77214425,"Metro 2033",play,16.1,0 -77214425,"Trials Evolution Gold Edition",purchase,1.0,0 -77214425,"Trials Evolution Gold Edition",play,15.7,0 -77214425,"Quake III Arena",purchase,1.0,0 -77214425,"Quake III Arena",play,15.1,0 -77214425,"Evolve",purchase,1.0,0 -77214425,"Evolve",play,14.4,0 -77214425,"WWE 2K15",purchase,1.0,0 -77214425,"WWE 2K15",play,14.2,0 -77214425,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -77214425,"Tom Clancy's Ghost Recon Phantoms - EU",play,14.2,0 -77214425,"Sniper Elite 3",purchase,1.0,0 -77214425,"Sniper Elite 3",play,14.0,0 -77214425,"Left 4 Dead 2",purchase,1.0,0 -77214425,"Left 4 Dead 2",play,13.9,0 -77214425,"Dishonored",purchase,1.0,0 -77214425,"Dishonored",play,13.8,0 -77214425,"Brawlhalla",purchase,1.0,0 -77214425,"Brawlhalla",play,13.2,0 -77214425,"Prince of Persia The Forgotten Sands",purchase,1.0,0 -77214425,"Prince of Persia The Forgotten Sands",play,13.0,0 -77214425,"Worms Reloaded",purchase,1.0,0 -77214425,"Worms Reloaded",play,12.5,0 -77214425,"Blade Symphony",purchase,1.0,0 -77214425,"Blade Symphony",play,11.9,0 -77214425,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -77214425,"Call of Duty Black Ops - Multiplayer",play,11.4,0 -77214425,"Rocket League",purchase,1.0,0 -77214425,"Rocket League",play,10.5,0 -77214425,"Counter-Strike",purchase,1.0,0 -77214425,"Counter-Strike",play,10.4,0 -77214425,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -77214425,"Duke Nukem 3D Megaton Edition",play,9.8,0 -77214425,"Prince of Persia The Sands of Time",purchase,1.0,0 -77214425,"Prince of Persia The Sands of Time",play,9.7,0 -77214425,"The Walking Dead Season Two",purchase,1.0,0 -77214425,"The Walking Dead Season Two",play,9.5,0 -77214425,"Call of Duty Black Ops",purchase,1.0,0 -77214425,"Call of Duty Black Ops",play,9.3,0 -77214425,"Insurgency",purchase,1.0,0 -77214425,"Insurgency",play,9.2,0 -77214425,"Hitman Absolution",purchase,1.0,0 -77214425,"Hitman Absolution",play,9.2,0 -77214425,"Bulletstorm",purchase,1.0,0 -77214425,"Bulletstorm",play,8.6,0 -77214425,"Half-Life 2 Deathmatch",purchase,1.0,0 -77214425,"Half-Life 2 Deathmatch",play,8.5,0 -77214425,"BioShock",purchase,1.0,0 -77214425,"BioShock",play,8.3,0 -77214425,"Unturned",purchase,1.0,0 -77214425,"Unturned",play,8.0,0 -77214425,"Assassin's Creed Brotherhood",purchase,1.0,0 -77214425,"Assassin's Creed Brotherhood",play,7.6,0 -77214425,"Arma 2",purchase,1.0,0 -77214425,"Arma 2",play,7.5,0 -77214425,"Audiosurf",purchase,1.0,0 -77214425,"Audiosurf",play,7.5,0 -77214425,"Castle Crashers",purchase,1.0,0 -77214425,"Castle Crashers",play,7.4,0 -77214425,"Don't Starve Together Beta",purchase,1.0,0 -77214425,"Don't Starve Together Beta",play,6.9,0 -77214425,"Trine 2",purchase,1.0,0 -77214425,"Trine 2",play,6.7,0 -77214425,"The Legend of Korra",purchase,1.0,0 -77214425,"The Legend of Korra",play,6.7,0 -77214425,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -77214425,"Rising Storm/Red Orchestra 2 Multiplayer",play,5.9,0 -77214425,"Shadow Warrior",purchase,1.0,0 -77214425,"Shadow Warrior",play,5.5,0 -77214425,"Call of Duty World at War",purchase,1.0,0 -77214425,"Call of Duty World at War",play,5.5,0 -77214425,"Scribblenauts Unlimited",purchase,1.0,0 -77214425,"Scribblenauts Unlimited",play,5.2,0 -77214425,"Dead Island Riptide",purchase,1.0,0 -77214425,"Dead Island Riptide",play,5.1,0 -77214425,"Arma 3",purchase,1.0,0 -77214425,"Arma 3",play,5.0,0 -77214425,"Crysis",purchase,1.0,0 -77214425,"Crysis",play,5.0,0 -77214425,"Gun Monkeys",purchase,1.0,0 -77214425,"Gun Monkeys",play,4.7,0 -77214425,"Prince of Persia Warrior Within",purchase,1.0,0 -77214425,"Prince of Persia Warrior Within",play,4.7,0 -77214425,"Mass Effect",purchase,1.0,0 -77214425,"Mass Effect",play,4.5,0 -77214425,"FaceRig",purchase,1.0,0 -77214425,"FaceRig",play,4.5,0 -77214425,"Skullgirls",purchase,1.0,0 -77214425,"Skullgirls",play,3.7,0 -77214425,"LEGO Pirates of the Caribbean The Video Game",purchase,1.0,0 -77214425,"LEGO Pirates of the Caribbean The Video Game",play,3.5,0 -77214425,"Trine",purchase,1.0,0 -77214425,"Trine",play,3.4,0 -77214425,"Project Zomboid",purchase,1.0,0 -77214425,"Project Zomboid",play,3.4,0 -77214425,"Devil May Cry 3 Special Edition",purchase,1.0,0 -77214425,"Devil May Cry 3 Special Edition",play,3.4,0 -77214425,"Contagion",purchase,1.0,0 -77214425,"Contagion",play,3.1,0 -77214425,"Quake Live",purchase,1.0,0 -77214425,"Quake Live",play,3.1,0 -77214425,"Guacamelee! Gold Edition",purchase,1.0,0 -77214425,"Guacamelee! Gold Edition",play,3.0,0 -77214425,"HAWKEN",purchase,1.0,0 -77214425,"HAWKEN",play,2.8,0 -77214425,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -77214425,"Viscera Cleanup Detail Santa's Rampage",play,2.8,0 -77214425,"Shattered Horizon",purchase,1.0,0 -77214425,"Shattered Horizon",play,2.7,0 -77214425,"Planet Explorers",purchase,1.0,0 -77214425,"Planet Explorers",play,2.6,0 -77214425,"Just Cause 2",purchase,1.0,0 -77214425,"Just Cause 2",play,2.5,0 -77214425,"Devil May Cry 4",purchase,1.0,0 -77214425,"Devil May Cry 4",play,2.4,0 -77214425,"Half-Life 2",purchase,1.0,0 -77214425,"Half-Life 2",play,2.3,0 -77214425,"APB Reloaded",purchase,1.0,0 -77214425,"APB Reloaded",play,2.3,0 -77214425,"Mirror's Edge",purchase,1.0,0 -77214425,"Mirror's Edge",play,2.1,0 -77214425,"Robocraft",purchase,1.0,0 -77214425,"Robocraft",play,2.0,0 -77214425,"Heroes & Generals",purchase,1.0,0 -77214425,"Heroes & Generals",play,1.6,0 -77214425,"Shadow Warrior Classic Redux",purchase,1.0,0 -77214425,"Shadow Warrior Classic Redux",play,1.6,0 -77214425,"Far Cry 2",purchase,1.0,0 -77214425,"Far Cry 2",play,1.6,0 -77214425,"The Expendabros",purchase,1.0,0 -77214425,"The Expendabros",play,1.5,0 -77214425,"F.E.A.R. Online",purchase,1.0,0 -77214425,"F.E.A.R. Online",play,1.4,0 -77214425,"The Walking Dead",purchase,1.0,0 -77214425,"The Walking Dead",play,1.4,0 -77214425,"Giana Sisters Twisted Dreams",purchase,1.0,0 -77214425,"Giana Sisters Twisted Dreams",play,1.3,0 -77214425,"Half-Life 2 Lost Coast",purchase,1.0,0 -77214425,"Half-Life 2 Lost Coast",play,1.3,0 -77214425,"Natural Selection 2",purchase,1.0,0 -77214425,"Natural Selection 2",play,1.2,0 -77214425,"Quake III Team Arena",purchase,1.0,0 -77214425,"Quake III Team Arena",play,1.1,0 -77214425,"ORION Prelude",purchase,1.0,0 -77214425,"ORION Prelude",play,1.0,0 -77214425,"Alien Swarm",purchase,1.0,0 -77214425,"Alien Swarm",play,0.9,0 -77214425,"The Swapper",purchase,1.0,0 -77214425,"The Swapper",play,0.9,0 -77214425,"Tomb Raider Legend",purchase,1.0,0 -77214425,"Tomb Raider Legend",play,0.8,0 -77214425,"DayZ",purchase,1.0,0 -77214425,"DayZ",play,0.7,0 -77214425,"Grand Theft Auto III",purchase,1.0,0 -77214425,"Grand Theft Auto III",play,0.7,0 -77214425,"Grand Theft Auto Vice City",purchase,1.0,0 -77214425,"Grand Theft Auto Vice City",play,0.4,0 -77214425,"Portal",purchase,1.0,0 -77214425,"Portal",play,0.4,0 -77214425,"Red Stone Online",purchase,1.0,0 -77214425,"Red Stone Online",play,0.3,0 -77214425,"Brothers - A Tale of Two Sons",purchase,1.0,0 -77214425,"Brothers - A Tale of Two Sons",play,0.3,0 -77214425,"The UnderGarden",purchase,1.0,0 -77214425,"The UnderGarden",play,0.3,0 -77214425,"Outlast",purchase,1.0,0 -77214425,"Outlast",play,0.3,0 -77214425,"Hitman Sniper Challenge",purchase,1.0,0 -77214425,"Hitman Sniper Challenge",play,0.3,0 -77214425,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -77214425,"Killing Floor Mod Defence Alliance 2",play,0.2,0 -77214425,"Mortal Kombat Legacy II - Ep. 1 Reunited in Macau",purchase,1.0,0 -77214425,"Mortal Kombat Legacy II - Ep. 1 Reunited in Macau",play,0.2,0 -77214425,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -77214425,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,0.2,0 -77214425,"PAYDAY The Web Series - Episode 1",purchase,1.0,0 -77214425,"PAYDAY The Web Series - Episode 1",play,0.2,0 -77214425,"Grand Theft Auto",purchase,1.0,0 -77214425,"Grand Theft Auto",play,0.1,0 -77214425,"The Plan",purchase,1.0,0 -77214425,"The Plan",play,0.1,0 -77214425,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -77214425,"Grand Theft Auto 2",purchase,1.0,0 -77214425,"BioShock 2",purchase,1.0,0 -77214425,"Relic Hunters Zero",purchase,1.0,0 -77214425,"Metal Gear Solid Legacy",purchase,1.0,0 -77214425,"Half-Life 2 Episode Two",purchase,1.0,0 -77214425,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -77214425,"Half-Life 2 Episode One",purchase,1.0,0 -77214425,"Arma 2 British Armed Forces",purchase,1.0,0 -77214425,"Grand Theft Auto San Andreas",purchase,1.0,0 -77214425,"Arma 2 Private Military Company",purchase,1.0,0 -77214425,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -77214425,"Arma 3 Zeus",purchase,1.0,0 -77214425,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -77214425,"Batman Arkham City GOTY",purchase,1.0,0 -77214425,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -77214425,"BioShock Infinite - Season Pass",purchase,1.0,0 -77214425,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -77214425,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -77214425,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -77214425,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -77214425,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -77214425,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -77214425,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -77214425,"Cities in Motion 2",purchase,1.0,0 -77214425,"Counter-Strike Condition Zero",purchase,1.0,0 -77214425,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -77214425,"Dead Space",purchase,1.0,0 -77214425,"Defy Gravity",purchase,1.0,0 -77214425,"Earth 2150 Trilogy",purchase,1.0,0 -77214425,"Earth 2150 Lost Souls",purchase,1.0,0 -77214425,"Earth 2150 The Moon Project",purchase,1.0,0 -77214425,"Evolve - Behemoth",purchase,1.0,0 -77214425,"F.E.A.R.",purchase,1.0,0 -77214425,"F.E.A.R. Extraction Point",purchase,1.0,0 -77214425,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -77214425,"FaceRig Team Fortress 2 Avatars DLC",purchase,1.0,0 -77214425,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -77214425,"Grand Theft Auto San Andreas",purchase,1.0,0 -77214425,"Grand Theft Auto Vice City",purchase,1.0,0 -77214425,"Grand Theft Auto III",purchase,1.0,0 -77214425,"Guardians of Middle-earth",purchase,1.0,0 -77214425,"Mass Effect 2",purchase,1.0,0 -77214425,"Modular Combat",purchase,1.0,0 -77214425,"Mortal Kombat Legacy II - Ep. 2 The Fall of Liu Kang",purchase,1.0,0 -77214425,"Mortal Kombat Legacy II - Ep. 3 Kenshi's Origin",purchase,1.0,0 -77214425,"Mortal Kombat Legacy II - Ep. 4 Kenshi Encounters Ermac",purchase,1.0,0 -77214425,"Mortal Kombat Legacy II - Ep. 5 Kitana and Mileena",purchase,1.0,0 -77214425,"Mortal Kombat Legacy II - Ep. 6 Johnny Cage",purchase,1.0,0 -77214425,"Mortal Kombat Legacy II - Ep. 7 Scorpion and Sub-Zero (Part 1)",purchase,1.0,0 -77214425,"Mortal Kombat Legacy II - Ep. 8 Scorpion and Sub-Zero (Part 2)",purchase,1.0,0 -77214425,"Mortal Kombat Legacy II - Ep. 9 Liu Kang",purchase,1.0,0 -77214425,"Mortal Kombat Legacy II - Ep. 10 Liu Kang and Kung Lao",purchase,1.0,0 -77214425,"Mortal Kombat Kollection",purchase,1.0,0 -77214425,"Octodad Free Avatar",purchase,1.0,0 -77214425,"Orcs Must Die! 2",purchase,1.0,0 -77214425,"Particula",purchase,1.0,0 -77214425,"Patch testing for Chivalry",purchase,1.0,0 -77214425,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -77214425,"Serious Sam HD The First Encounter",purchase,1.0,0 -77214425,"Simply Chess",purchase,1.0,0 -77214425,"Skullgirls Endless Beta",purchase,1.0,0 -77214425,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -77214425,"Starbound Free Avatars",purchase,1.0,0 -77214425,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -77214425,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -77214425,"The Lord of the Rings War in the North",purchase,1.0,0 -77214425,"The Pewdieverse DLC",purchase,1.0,0 -77214425,"The Ship",purchase,1.0,0 -77214425,"The Ship Single Player",purchase,1.0,0 -77214425,"The Ship Tutorial",purchase,1.0,0 -77214425,"Uriel's Chasm",purchase,1.0,0 -77214425,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -77214425,"War of the Roses",purchase,1.0,0 -77214425,"War of the Roses Kingmaker",purchase,1.0,0 -77214425,"War of the Roses Balance Beta",purchase,1.0,0 -169469049,"Infestation Survivor Stories",purchase,1.0,0 -169469049,"Infestation Survivor Stories",play,7.4,0 -129177552,"Dota 2",purchase,1.0,0 -129177552,"Dota 2",play,14.2,0 -58289184,"PAYDAY 2",purchase,1.0,0 -58289184,"PAYDAY 2",play,809.0,0 -58289184,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -58289184,"Call of Duty Modern Warfare 2 - Multiplayer",play,511.0,0 -58289184,"Dota 2",purchase,1.0,0 -58289184,"Dota 2",play,431.0,0 -58289184,"Terraria",purchase,1.0,0 -58289184,"Terraria",play,236.0,0 -58289184,"Fallout 4",purchase,1.0,0 -58289184,"Fallout 4",play,99.0,0 -58289184,"The Witcher Enhanced Edition",purchase,1.0,0 -58289184,"The Witcher Enhanced Edition",play,71.0,0 -58289184,"PAYDAY The Heist",purchase,1.0,0 -58289184,"PAYDAY The Heist",play,51.0,0 -58289184,"Euro Truck Simulator 2",purchase,1.0,0 -58289184,"Euro Truck Simulator 2",play,49.0,0 -58289184,"Arma 2 Operation Arrowhead",purchase,1.0,0 -58289184,"Arma 2 Operation Arrowhead",play,38.0,0 -58289184,"Call of Duty Modern Warfare 2",purchase,1.0,0 -58289184,"Call of Duty Modern Warfare 2",play,36.0,0 -58289184,"DayZ",purchase,1.0,0 -58289184,"DayZ",play,36.0,0 -58289184,"PlanetSide 2",purchase,1.0,0 -58289184,"PlanetSide 2",play,35.0,0 -58289184,"Left 4 Dead 2",purchase,1.0,0 -58289184,"Left 4 Dead 2",play,28.0,0 -58289184,"Don't Starve Together Beta",purchase,1.0,0 -58289184,"Don't Starve Together Beta",play,28.0,0 -58289184,"Path of Exile",purchase,1.0,0 -58289184,"Path of Exile",play,18.0,0 -58289184,"Company of Heroes (New Steam Version)",purchase,1.0,0 -58289184,"Company of Heroes (New Steam Version)",play,16.4,0 -58289184,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -58289184,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,8.2,0 -58289184,"Counter-Strike Global Offensive",purchase,1.0,0 -58289184,"Counter-Strike Global Offensive",play,7.7,0 -58289184,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -58289184,"The Witcher 2 Assassins of Kings Enhanced Edition",play,5.2,0 -58289184,"Unturned",purchase,1.0,0 -58289184,"Unturned",play,2.2,0 -58289184,"Company of Heroes Tales of Valor",purchase,1.0,0 -58289184,"Company of Heroes Tales of Valor",play,1.1,0 -58289184,"Serious Sam HD The Second Encounter",purchase,1.0,0 -58289184,"Serious Sam HD The Second Encounter",play,0.8,0 -58289184,"Company of Heroes Opposing Fronts",purchase,1.0,0 -58289184,"Arma 2 Free",purchase,1.0,0 -58289184,"Company of Heroes",purchase,1.0,0 -58289184,"Home",purchase,1.0,0 -58289184,"Hotline Miami",purchase,1.0,0 -58289184,"Knock-knock",purchase,1.0,0 -58289184,"PAYDAY Wolf Pack",purchase,1.0,0 -58289184,"Vertical Drop Heroes HD",purchase,1.0,0 -230625129,"Dota 2",purchase,1.0,0 -230625129,"Dota 2",play,5.1,0 -142215487,"Dota 2",purchase,1.0,0 -142215487,"Dota 2",play,15.4,0 -185518356,"Dota 2",purchase,1.0,0 -185518356,"Dota 2",play,5.4,0 -95996939,"Sid Meier's Civilization V",purchase,1.0,0 -95996939,"Sid Meier's Civilization V",play,303.0,0 -95996939,"The Elder Scrolls V Skyrim",purchase,1.0,0 -95996939,"The Elder Scrolls V Skyrim",play,230.0,0 -95996939,"Fallout New Vegas",purchase,1.0,0 -95996939,"Fallout New Vegas",play,26.0,0 -95996939,"RollerCoaster Tycoon Deluxe",purchase,1.0,0 -95996939,"RollerCoaster Tycoon Deluxe",play,1.2,0 -95996939,"Assassin's Creed Brotherhood",purchase,1.0,0 -95996939,"Assassin's Creed Brotherhood",play,0.4,0 -95996939,"The Lord of the Rings Online",purchase,1.0,0 -95996939,"The Lord of the Rings Online",play,0.2,0 -95996939,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -95996939,"STAR WARS Knights of the Old Republic II The Sith Lords",play,0.1,0 -95996939,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -95996939,"Fallout New Vegas Dead Money",purchase,1.0,0 -95996939,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -95996939,"Marvel Heroes 2015",purchase,1.0,0 -95996939,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -95996939,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -95996939,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -95996939,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -95996939,"XCOM Enemy Unknown",purchase,1.0,0 -95996939,"XCOM Enemy Within",purchase,1.0,0 -140580839,"Dota 2",purchase,1.0,0 -140580839,"Dota 2",play,583.0,0 -140580839,"Serious Sam HD The Second Encounter",purchase,1.0,0 -140580839,"Serious Sam HD The Second Encounter",play,2.0,0 -259050705,"Team Fortress 2",purchase,1.0,0 -259050705,"Team Fortress 2",play,7.6,0 -259050705,"Missing Translation",purchase,1.0,0 -259050705,"Missing Translation",play,1.9,0 -259050705,"Dirty Bomb",purchase,1.0,0 -259050705,"Dirty Bomb",play,0.9,0 -259050705,"Warframe",purchase,1.0,0 -259050705,"Warframe",play,0.3,0 -259050705,"WARMODE",purchase,1.0,0 -297973869,"Mortal Online",purchase,1.0,0 -242473079,"Trove",purchase,1.0,0 -242473079,"Trove",play,0.5,0 -242473079,"Warframe",purchase,1.0,0 -155794117,"Dota 2",purchase,1.0,0 -155794117,"Dota 2",play,2.6,0 -214658749,"Might & Magic Duel of Champions",purchase,1.0,0 -214658749,"Might & Magic Duel of Champions",play,147.0,0 -214658749,"Dragons and Titans",purchase,1.0,0 -214658749,"Dragons and Titans",play,0.9,0 -214658749,"Mortal Online",purchase,1.0,0 -214658749,"Mortal Online",play,0.8,0 -214658749,"Kingdom Wars",purchase,1.0,0 -214658749,"Kingdom Wars",play,0.2,0 -214658749,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -214658749,"Infinity Wars - Animated Trading Card Game",play,0.1,0 -214658749,"CaesarIA",purchase,1.0,0 -214658749,"CaesarIA",play,0.1,0 -214658749,"Karos",purchase,1.0,0 -214658749,"March of War",purchase,1.0,0 -214658749,"APB Reloaded",purchase,1.0,0 -214658749,"sZone-Online",purchase,1.0,0 -44370809,"Football Manager 2012",purchase,1.0,0 -44370809,"Football Manager 2012",play,94.0,0 -44370809,"Left 4 Dead 2",purchase,1.0,0 -44370809,"Left 4 Dead 2",play,27.0,0 -44370809,"Mafia II",purchase,1.0,0 -44370809,"Mafia II",play,21.0,0 -44370809,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -44370809,"S.T.A.L.K.E.R. Call of Pripyat",play,16.9,0 -44370809,"Torchlight",purchase,1.0,0 -44370809,"Torchlight",play,6.8,0 -44370809,"Battlefield Bad Company 2",purchase,1.0,0 -44370809,"Battlefield Bad Company 2",play,6.0,0 -44370809,"Assassin's Creed II",purchase,1.0,0 -44370809,"Assassin's Creed II",play,5.0,0 -44370809,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -44370809,"Unreal Tournament 3 Black Edition",play,4.4,0 -44370809,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -44370809,"Batman Arkham Asylum GOTY Edition",play,3.7,0 -44370809,"Need for Speed Hot Pursuit",purchase,1.0,0 -44370809,"Need for Speed Hot Pursuit",play,3.0,0 -44370809,"Shank",purchase,1.0,0 -44370809,"Shank",play,2.6,0 -44370809,"The Witcher Enhanced Edition",purchase,1.0,0 -44370809,"The Witcher Enhanced Edition",play,1.5,0 -44370809,"Team Fortress 2",purchase,1.0,0 -44370809,"Team Fortress 2",play,1.3,0 -44370809,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -44370809,"Tom Clancy's Splinter Cell Conviction",play,1.3,0 -44370809,"LIMBO",purchase,1.0,0 -44370809,"LIMBO",play,1.1,0 -44370809,"Lara Croft and the Guardian of Light",purchase,1.0,0 -44370809,"Lara Croft and the Guardian of Light",play,0.7,0 -44370809,"Shank 2",purchase,1.0,0 -44370809,"Shank 2",play,0.7,0 -44370809,"Aliens vs. Predator",purchase,1.0,0 -44370809,"Aliens vs. Predator",play,0.7,0 -44370809,"Metro 2033",purchase,1.0,0 -44370809,"Metro 2033",play,0.6,0 -44370809,"Trine",purchase,1.0,0 -44370809,"Trine",play,0.6,0 -44370809,"Alien Swarm",purchase,1.0,0 -44370809,"Alien Swarm",play,0.5,0 -44370809,"Titan Quest Immortal Throne",purchase,1.0,0 -44370809,"Titan Quest Immortal Throne",play,0.4,0 -44370809,"Prince of Persia The Forgotten Sands",purchase,1.0,0 -44370809,"Prince of Persia The Forgotten Sands",play,0.3,0 -44370809,"Worms Reloaded",purchase,1.0,0 -44370809,"Worms Reloaded",play,0.3,0 -44370809,"DiRT 2",purchase,1.0,0 -44370809,"DiRT 2",play,0.3,0 -44370809,"SimCity 4 Deluxe",purchase,1.0,0 -44370809,"SimCity 4 Deluxe",play,0.3,0 -44370809,"BioShock 2",purchase,1.0,0 -44370809,"BioShock 2",play,0.3,0 -44370809,"Sacred Gold",purchase,1.0,0 -44370809,"Sacred Gold",play,0.2,0 -44370809,"Portal 2",purchase,1.0,0 -44370809,"Portal 2",play,0.2,0 -44370809,"Titan Quest",purchase,1.0,0 -44370809,"Titan Quest",play,0.1,0 -44370809,"Just Cause 2",purchase,1.0,0 -44370809,"Just Cause 2",play,0.1,0 -44370809,"Portal",purchase,1.0,0 -44370809,"Counter-Strike Source",purchase,1.0,0 -44370809,"Oddworld Abe's Exoddus",purchase,1.0,0 -44370809,"Oddworld Abe's Oddysee",purchase,1.0,0 -44370809,"Oddworld Munch's Oddysee",purchase,1.0,0 -44370809,"Oddworld Stranger's Wrath HD",purchase,1.0,0 -105022811,"Sid Meier's Civilization V",purchase,1.0,0 -105022811,"Sid Meier's Civilization V",play,59.0,0 -105022811,"Napoleon Total War",purchase,1.0,0 -105022811,"Napoleon Total War",play,4.6,0 -128329207,"Serious Sam HD The Second Encounter",purchase,1.0,0 -128329207,"Serious Sam HD The Second Encounter",play,33.0,0 -167738438,"Team Fortress 2",purchase,1.0,0 -167738438,"Team Fortress 2",play,0.9,0 -19094181,"Half-Life",purchase,1.0,0 -19094181,"Half-Life",play,1.5,0 -19094181,"Half-Life Blue Shift",purchase,1.0,0 -19094181,"Half-Life Blue Shift",play,0.8,0 -19094181,"Counter-Strike",purchase,1.0,0 -19094181,"Counter-Strike",play,0.6,0 -19094181,"Deathmatch Classic",purchase,1.0,0 -19094181,"Deathmatch Classic",play,0.4,0 -19094181,"Quake Live",purchase,1.0,0 -19094181,"Quake Live",play,0.4,0 -19094181,"Day of Defeat",purchase,1.0,0 -19094181,"Day of Defeat",play,0.2,0 -19094181,"Half-Life Opposing Force",purchase,1.0,0 -19094181,"Ricochet",purchase,1.0,0 -19094181,"Team Fortress Classic",purchase,1.0,0 -37294596,"Counter-Strike",purchase,1.0,0 -37294596,"Counter-Strike",play,215.0,0 -37294596,"Counter-Strike Global Offensive",purchase,1.0,0 -37294596,"Counter-Strike Global Offensive",play,103.0,0 -37294596,"Command and Conquer 3 Kane's Wrath",purchase,1.0,0 -37294596,"Command and Conquer 3 Kane's Wrath",play,33.0,0 -37294596,"Grand Theft Auto V",purchase,1.0,0 -37294596,"Grand Theft Auto V",play,24.0,0 -37294596,"Dying Light",purchase,1.0,0 -37294596,"Dying Light",play,13.6,0 -37294596,"Command and Conquer 3 Tiberium Wars",purchase,1.0,0 -37294596,"Counter-Strike Condition Zero",purchase,1.0,0 -37294596,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -37294596,"Day of Defeat",purchase,1.0,0 -37294596,"Deathmatch Classic",purchase,1.0,0 -37294596,"Ricochet",purchase,1.0,0 -209043288,"Dota 2",purchase,1.0,0 -209043288,"Dota 2",play,3.2,0 -209043288,"Audition Online",purchase,1.0,0 -248236617,"Counter-Strike Global Offensive",purchase,1.0,0 -248236617,"Counter-Strike Global Offensive",play,0.8,0 -83758973,"Team Fortress 2",purchase,1.0,0 -83758973,"Team Fortress 2",play,0.4,0 -155342268,"Team Fortress 2",purchase,1.0,0 -155342268,"Team Fortress 2",play,320.0,0 -155342268,"Counter-Strike Global Offensive",purchase,1.0,0 -155342268,"Counter-Strike Global Offensive",play,10.8,0 -155342268,"Unturned",purchase,1.0,0 -155342268,"Unturned",play,2.7,0 -155342268,"Dota 2",purchase,1.0,0 -155342268,"Dota 2",play,0.4,0 -155342268,"Primal Carnage",purchase,1.0,0 -155342268,"Floating Point",purchase,1.0,0 -155342268,"LEGO MARVEL Super Heroes",purchase,1.0,0 -155342268,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -123939009,"Counter-Strike Source",purchase,1.0,0 -123939009,"Counter-Strike Source",play,33.0,0 -123939009,"Day of Defeat Source",purchase,1.0,0 -123939009,"Half-Life 2 Deathmatch",purchase,1.0,0 -123939009,"Half-Life 2 Lost Coast",purchase,1.0,0 -99500959,"Team Fortress 2",purchase,1.0,0 -99500959,"Team Fortress 2",play,1.1,0 -81834184,"Hacker Evolution - Untold",purchase,1.0,0 -81834184,"Hacker Evolution - Untold",play,2.4,0 -81834184,"Hacker Evolution",purchase,1.0,0 -147498227,"Dota 2",purchase,1.0,0 -147498227,"Dota 2",play,7.6,0 -159374866,"Scribblenauts Unlimited",purchase,1.0,0 -159374866,"Scribblenauts Unlimited",play,10.5,0 -88271258,"Football Manager 2012",purchase,1.0,0 -88271258,"Football Manager 2012",play,607.0,0 -88271258,"Football Manager 2013",purchase,1.0,0 -88271258,"Football Manager 2013",play,360.0,0 -88271258,"Football Manager 2014",purchase,1.0,0 -88271258,"Football Manager 2014",play,153.0,0 -88271258,"Football Manager 2011",purchase,1.0,0 -88271258,"Football Manager 2011",play,65.0,0 -88271258,"Football Manager 2015",purchase,1.0,0 -88271258,"Football Manager 2015",play,18.2,0 -70373768,"Metro 2033",purchase,1.0,0 -301477644,"Terraria",purchase,1.0,0 -301477644,"Terraria",play,2.2,0 -301477644,"Trove",purchase,1.0,0 -301477644,"Trove",play,0.2,0 -143343409,"Counter-Strike Global Offensive",purchase,1.0,0 -143343409,"Counter-Strike Global Offensive",play,86.0,0 -143343409,"Arma 3",purchase,1.0,0 -143343409,"Arma 3",play,43.0,0 -143343409,"Crysis 2 Maximum Edition",purchase,1.0,0 -143343409,"Crysis 2 Maximum Edition",play,0.9,0 -143343409,"Arma 3 Zeus",purchase,1.0,0 -46916822,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -46916822,"Warhammer 40,000 Dawn of War II Retribution",play,230.0,0 -46916822,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -46916822,"Warhammer 40,000 Dawn of War II",play,146.0,0 -46916822,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -46916822,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,137.0,0 -236374587,"Dota 2",purchase,1.0,0 -236374587,"Dota 2",play,406.0,0 -188448131,"Dota 2",purchase,1.0,0 -188448131,"Dota 2",play,731.0,0 -116955153,"DiRT Showdown",purchase,1.0,0 -116955153,"DiRT Showdown",play,13.4,0 -207009485,"Europa Universalis IV",purchase,1.0,0 -207009485,"Europa Universalis IV",play,210.0,0 -207009485,"Football Manager 2015",purchase,1.0,0 -207009485,"Football Manager 2015",play,98.0,0 -207009485,"Spore",purchase,1.0,0 -207009485,"Spore",play,6.0,0 -207009485,"Victoria II",purchase,1.0,0 -207009485,"Victoria II",play,5.5,0 -207009485,"Europa Universalis IV American Dream DLC",purchase,1.0,0 -207009485,"Europa Universalis IV Conquest of Paradise",purchase,1.0,0 -207009485,"Europa Universalis IV Conquistadors Unit pack ",purchase,1.0,0 -207009485,"Europa Universalis IV National Monuments II",purchase,1.0,0 -207009485,"Europa Universalis IVNative Americans Unit Pack",purchase,1.0,0 -207009485,"Europa Universalis IV Songs of the New World",purchase,1.0,0 -95177433,"Mafia II",purchase,1.0,0 -95177433,"Mafia II",play,0.3,0 -298592139,"Counter-Strike Global Offensive",purchase,1.0,0 -298592139,"Counter-Strike Global Offensive",play,47.0,0 -298592139,"Team Fortress 2",purchase,1.0,0 -298592139,"Team Fortress 2",play,0.4,0 -298592139,"Unturned",purchase,1.0,0 -187999074,"Marvel Heroes 2015",purchase,1.0,0 -187999074,"Marvel Heroes 2015",play,6.1,0 -187999074,"Unturned",purchase,1.0,0 -187999074,"Unturned",play,6.1,0 -187999074,"Robocraft",purchase,1.0,0 -187999074,"Robocraft",play,2.2,0 -187999074,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -187999074,"School of Dragons How to Train Your Dragon",play,0.4,0 -187999074,"Magicka Wizard Wars",purchase,1.0,0 -187999074,"Magicka Wizard Wars",play,0.2,0 -187999074,"Guns and Robots",purchase,1.0,0 -187999074,"Tribes Ascend",purchase,1.0,0 -187999074,"Cubic Castles",purchase,1.0,0 -187999074,"Warframe",purchase,1.0,0 -231406506,"Dota 2",purchase,1.0,0 -231406506,"Dota 2",play,949.0,0 -196089915,"Unturned",purchase,1.0,0 -196089915,"Unturned",play,18.2,0 -161654643,"Garry's Mod",purchase,1.0,0 -161654643,"Garry's Mod",play,4.8,0 -71486921,"Metro 2033",purchase,1.0,0 -37911248,"Verdun",purchase,1.0,0 -37911248,"Verdun",play,98.0,0 -37911248,"Rust",purchase,1.0,0 -37911248,"Rust",play,50.0,0 -79049613,"Dota 2",purchase,1.0,0 -79049613,"Dota 2",play,26.0,0 -79049613,"Team Fortress 2",purchase,1.0,0 -79049613,"Team Fortress 2",play,0.6,0 -79049613,"Aura Kingdom",purchase,1.0,0 -79049613,"Aura Kingdom",play,0.3,0 -79049613,"Dino D-Day",purchase,1.0,0 -79049613,"MLB Front Office Manager",purchase,1.0,0 -79049613,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -244100151,"Total War ATTILA",purchase,1.0,0 -244100151,"Total War ATTILA",play,3.2,0 -173799068,"HAWKEN",purchase,1.0,0 -173799068,"HAWKEN",play,105.0,0 -173799068,"Dota 2",purchase,1.0,0 -173799068,"Dota 2",play,6.3,0 -173799068,"Infinite Crisis",purchase,1.0,0 -173799068,"Infinite Crisis",play,3.3,0 -173799068,"DCS World",purchase,1.0,0 -173799068,"DCS World",play,0.7,0 -173799068,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -173799068,"Marvel Heroes 2015",purchase,1.0,0 -173799068,"PlanetSide 2",purchase,1.0,0 -173799068,"Rexaura",purchase,1.0,0 -173799068,"The Lord of the Rings Online",purchase,1.0,0 -173791228,"Dota 2",purchase,1.0,0 -173791228,"Dota 2",play,45.0,0 -185903029,"Dota 2",purchase,1.0,0 -185903029,"Dota 2",play,0.6,0 -59866729,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -59866729,"Call of Duty Modern Warfare 2 - Multiplayer",play,106.0,0 -59866729,"Call of Duty Modern Warfare 2",purchase,1.0,0 -59866729,"Call of Duty Modern Warfare 2",play,10.7,0 -135147743,"The Elder Scrolls V Skyrim",purchase,1.0,0 -135147743,"The Elder Scrolls V Skyrim",play,18.5,0 -135147743,"Garry's Mod",purchase,1.0,0 -135147743,"Garry's Mod",play,17.9,0 -135147743,"Fallout 4",purchase,1.0,0 -135147743,"Fallout 4",play,12.9,0 -135147743,"Counter-Strike Global Offensive",purchase,1.0,0 -135147743,"Counter-Strike Global Offensive",play,5.7,0 -135147743,"ARK Survival Evolved",purchase,1.0,0 -135147743,"ARK Survival Evolved",play,4.1,0 -135147743,"DayZ",purchase,1.0,0 -135147743,"DayZ",play,2.9,0 -135147743,"Don't Starve Together Beta",purchase,1.0,0 -135147743,"Don't Starve Together Beta",play,2.4,0 -135147743,"Saints Row IV",purchase,1.0,0 -135147743,"Saints Row IV",play,2.2,0 -135147743,"RIFT",purchase,1.0,0 -135147743,"RIFT",play,0.4,0 -135147743,"Dungeonland",purchase,1.0,0 -135147743,"Dungeonland",play,0.3,0 -135147743,"The Binding of Isaac",purchase,1.0,0 -135147743,"The Binding of Isaac",play,0.3,0 -135147743,"Everlasting Summer",purchase,1.0,0 -135147743,"Pool Nation FX",purchase,1.0,0 -135147743,"Counter-Strike Source",purchase,1.0,0 -135147743,"Hitman Absolution",purchase,1.0,0 -135147743,"Breath of Death VII ",purchase,1.0,0 -135147743,"Cthulhu Saves the World ",purchase,1.0,0 -135147743,"Dungeonland - All access pass",purchase,1.0,0 -135147743,"Hitman Sniper Challenge",purchase,1.0,0 -135147743,"Lilly and Sasha Curse of the Immortals",purchase,1.0,0 -135147743,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -135147743,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -135147743,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -135147743,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -177804968,"Dota 2",purchase,1.0,0 -177804968,"Dota 2",play,2.9,0 -96577636,"Empire Total War",purchase,1.0,0 -96577636,"Empire Total War",play,0.4,0 -30985722,"Half-Life 2 Deathmatch",purchase,1.0,0 -30985722,"Half-Life 2 Lost Coast",purchase,1.0,0 -189918261,"Unturned",purchase,1.0,0 -189918261,"Unturned",play,28.0,0 -89559973,"Football Manager 2013",purchase,1.0,0 -89559973,"Football Manager 2013",play,214.0,0 -89559973,"World of Guns Gun Disassembly",purchase,1.0,0 -89559973,"World of Guns Gun Disassembly",play,2.0,0 -89559973,"Heroes & Generals",purchase,1.0,0 -92030685,"Day of Defeat Source",purchase,1.0,0 -92030685,"Day of Defeat Source",play,14.3,0 -306042038,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -306042038,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.8,0 -306042038,"Unturned",purchase,1.0,0 -306042038,"Unturned",play,0.7,0 -306042038,"Red Crucible Firestorm",purchase,1.0,0 -306042038,"Red Crucible Firestorm",play,0.1,0 -306042038,"Pool Nation FX",purchase,1.0,0 -121999719,"Sid Meier's Civilization V",purchase,1.0,0 -121999719,"Sid Meier's Civilization V",play,37.0,0 -217259714,"America's Army Proving Grounds",purchase,1.0,0 -217259714,"America's Army Proving Grounds",play,5.0,0 -217259714,"Warface",purchase,1.0,0 -217259714,"Warface",play,1.4,0 -122021564,"Sleeping Dogs",purchase,1.0,0 -122021564,"Sleeping Dogs",play,28.0,0 -122021564,"Team Fortress 2",purchase,1.0,0 -122021564,"Team Fortress 2",play,26.0,0 -143590545,"Total War ROME II - Emperor Edition",purchase,1.0,0 -143590545,"Total War ROME II - Emperor Edition",play,276.0,0 -93478035,"Dota 2",purchase,1.0,0 -93478035,"Dota 2",play,1576.0,0 -93478035,"Garry's Mod",purchase,1.0,0 -93478035,"Garry's Mod",play,64.0,0 -93478035,"Counter-Strike Global Offensive",purchase,1.0,0 -93478035,"Counter-Strike Global Offensive",play,7.9,0 -93478035,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -93478035,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,2.7,0 -93478035,"Portal 2",purchase,1.0,0 -93478035,"Portal 2",play,0.7,0 -93478035,"Neverwinter",purchase,1.0,0 -93478035,"Neverwinter",play,0.4,0 -93478035,"Dead Island Epidemic",purchase,1.0,0 -93478035,"Dead Island Epidemic",play,0.2,0 -93478035,"Teeworlds",purchase,1.0,0 -93478035,"Fistful of Frags",purchase,1.0,0 -93478035,"Post Apocalyptic Mayhem",purchase,1.0,0 -93478035,"Splice",purchase,1.0,0 -181628052,"Dota 2",purchase,1.0,0 -181628052,"Dota 2",play,3.7,0 -29730534,"Counter-Strike",purchase,1.0,0 -29730534,"Counter-Strike",play,869.0,0 -29730534,"Half-Life",purchase,1.0,0 -29730534,"Day of Defeat",purchase,1.0,0 -29730534,"Deathmatch Classic",purchase,1.0,0 -29730534,"Half-Life Blue Shift",purchase,1.0,0 -29730534,"Half-Life Opposing Force",purchase,1.0,0 -29730534,"Ricochet",purchase,1.0,0 -29730534,"Team Fortress Classic",purchase,1.0,0 -307688442,"Hurtworld",purchase,1.0,0 -307688442,"Hurtworld",play,65.0,0 -307688442,"Metal War Online Retribution",purchase,1.0,0 -307688442,"Metal War Online Retribution",play,0.3,0 -307688442,"Warframe",purchase,1.0,0 -61902414,"Aliens vs. Predator",purchase,1.0,0 -61902414,"Aliens vs. Predator",play,5.7,0 -85256089,"Football Manager 2013",purchase,1.0,0 -85256089,"Football Manager 2013",play,905.0,0 -85256089,"Football Manager 2012",purchase,1.0,0 -85256089,"Football Manager 2012",play,719.0,0 -85256089,"Football Manager 2014",purchase,1.0,0 -85256089,"Football Manager 2014",play,59.0,0 -94299484,"War Thunder",purchase,1.0,0 -94299484,"War Thunder",play,184.0,0 -94299484,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -94299484,"Sid Meier's Civilization Beyond Earth",play,53.0,0 -94299484,"Life is Feudal Your Own",purchase,1.0,0 -94299484,"Life is Feudal Your Own",play,52.0,0 -94299484,"Space Engineers",purchase,1.0,0 -94299484,"Space Engineers",play,51.0,0 -94299484,"Total War ROME II - Emperor Edition",purchase,1.0,0 -94299484,"Total War ROME II - Emperor Edition",play,48.0,0 -94299484,"Terraria",purchase,1.0,0 -94299484,"Terraria",play,36.0,0 -94299484,"Just Cause 2",purchase,1.0,0 -94299484,"Just Cause 2",play,36.0,0 -94299484,"Starbound",purchase,1.0,0 -94299484,"Starbound",play,28.0,0 -94299484,"Sid Meier's Civilization V",purchase,1.0,0 -94299484,"Sid Meier's Civilization V",play,24.0,0 -94299484,"Dota 2",purchase,1.0,0 -94299484,"Dota 2",play,22.0,0 -94299484,"Gnomoria",purchase,1.0,0 -94299484,"Gnomoria",play,21.0,0 -94299484,"Sid Meier's Civilization III Complete",purchase,1.0,0 -94299484,"Sid Meier's Civilization III Complete",play,15.9,0 -94299484,"Unturned",purchase,1.0,0 -94299484,"Unturned",play,15.7,0 -94299484,"Counter-Strike Global Offensive",purchase,1.0,0 -94299484,"Counter-Strike Global Offensive",play,12.6,0 -94299484,"Wargame European Escalation",purchase,1.0,0 -94299484,"Wargame European Escalation",play,10.9,0 -94299484,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -94299484,"Just Cause 2 Multiplayer Mod",play,9.3,0 -94299484,"NEO Scavenger",purchase,1.0,0 -94299484,"NEO Scavenger",play,9.0,0 -94299484,"PlanetSide 2",purchase,1.0,0 -94299484,"PlanetSide 2",play,9.0,0 -94299484,"Team Fortress 2",purchase,1.0,0 -94299484,"Team Fortress 2",play,8.7,0 -94299484,"Far Cry 3",purchase,1.0,0 -94299484,"Far Cry 3",play,8.4,0 -94299484,"Awesomenauts",purchase,1.0,0 -94299484,"Awesomenauts",play,6.7,0 -94299484,"Rocket League",purchase,1.0,0 -94299484,"Rocket League",play,6.6,0 -94299484,"Empire Total War",purchase,1.0,0 -94299484,"Empire Total War",play,4.9,0 -94299484,"DmC Devil May Cry",purchase,1.0,0 -94299484,"DmC Devil May Cry",play,4.5,0 -94299484,"Fallout",purchase,1.0,0 -94299484,"Fallout",play,3.7,0 -94299484,"Path of Exile",purchase,1.0,0 -94299484,"Path of Exile",play,2.6,0 -94299484,"Planetary Annihilation",purchase,1.0,0 -94299484,"Planetary Annihilation",play,1.8,0 -94299484,"Firefall",purchase,1.0,0 -94299484,"Firefall",play,1.6,0 -94299484,"Clicker Heroes",purchase,1.0,0 -94299484,"Clicker Heroes",play,1.3,0 -94299484,"Star Conflict",purchase,1.0,0 -94299484,"Star Conflict",play,1.3,0 -94299484,"State of Decay",purchase,1.0,0 -94299484,"State of Decay",play,1.1,0 -94299484,"The Witcher Enhanced Edition",purchase,1.0,0 -94299484,"The Witcher Enhanced Edition",play,1.0,0 -94299484,"World of Guns Gun Disassembly",purchase,1.0,0 -94299484,"World of Guns Gun Disassembly",play,0.5,0 -94299484,"BioShock",purchase,1.0,0 -94299484,"BioShock",play,0.3,0 -94299484,"Sid Meier's Civilization IV",purchase,1.0,0 -94299484,"DCS World",purchase,1.0,0 -94299484,"Fallout 2",purchase,1.0,0 -94299484,"Sid Meier's Civilization IV",purchase,1.0,0 -94299484,"Starbound - Unstable",purchase,1.0,0 -119362603,"Team Fortress 2",purchase,1.0,0 -119362603,"Team Fortress 2",play,19.7,0 -133215334,"Dota 2",purchase,1.0,0 -133215334,"Dota 2",play,0.5,0 -73457750,"Dota 2",purchase,1.0,0 -73457750,"Dota 2",play,7.0,0 -73457750,"Half-Life 2 Deathmatch",purchase,1.0,0 -73457750,"Half-Life 2 Deathmatch",play,1.2,0 -73457750,"Strife",purchase,1.0,0 -73457750,"Half-Life 2 Lost Coast",purchase,1.0,0 -129162036,"Counter-Strike Global Offensive",purchase,1.0,0 -129162036,"Counter-Strike Global Offensive",play,1023.0,0 -129162036,"Left 4 Dead 2",purchase,1.0,0 -129162036,"Left 4 Dead 2",play,108.0,0 -129162036,"Tribes Ascend",purchase,1.0,0 -35045250,"Lost Planet Extreme Condition",purchase,1.0,0 -35045250,"Lost Planet Extreme Condition",play,0.3,0 -243324816,"Robocraft",purchase,1.0,0 -243324816,"Robocraft",play,0.9,0 -189186839,"Unturned",purchase,1.0,0 -189186839,"Unturned",play,0.3,0 -189186839,"Grand Chase",purchase,1.0,0 -189186839,"Grand Chase",play,0.1,0 -219328771,"H1Z1",purchase,1.0,0 -219328771,"H1Z1",play,43.0,0 -219328771,"H1Z1 Test Server",purchase,1.0,0 -174341713,"Team Fortress 2",purchase,1.0,0 -174341713,"Team Fortress 2",play,21.0,0 -174341713,"Dota 2",purchase,1.0,0 -174341713,"Dota 2",play,4.7,0 -151943497,"Garry's Mod",purchase,1.0,0 -151943497,"Garry's Mod",play,2.1,0 -151943497,"RIFT",purchase,1.0,0 -151943497,"RIFT",play,1.1,0 -151943497,"Pinball Arcade",purchase,1.0,0 -151943497,"Pinball Arcade",play,0.6,0 -151943497,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -151943497,"School of Dragons How to Train Your Dragon",play,0.2,0 -151943497,"Don't Starve",purchase,1.0,0 -151943497,"Don't Starve Reign of Giants",purchase,1.0,0 -151943497,"Don't Starve Together Beta",purchase,1.0,0 -85458882,"Team Fortress 2",purchase,1.0,0 -85458882,"Team Fortress 2",play,1326.0,0 -85458882,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -85458882,"Dark Souls Prepare to Die Edition",play,194.0,0 -85458882,"Mabinogi",purchase,1.0,0 -85458882,"Mabinogi",play,165.0,0 -85458882,"Dota 2",purchase,1.0,0 -85458882,"Dota 2",play,113.0,0 -85458882,"Don't Starve Together Beta",purchase,1.0,0 -85458882,"Don't Starve Together Beta",play,76.0,0 -85458882,"Portal 2",purchase,1.0,0 -85458882,"Portal 2",play,72.0,0 -85458882,"Star Wars - Battlefront II",purchase,1.0,0 -85458882,"Star Wars - Battlefront II",play,71.0,0 -85458882,"Don't Starve",purchase,1.0,0 -85458882,"Don't Starve",play,61.0,0 -85458882,"The Elder Scrolls V Skyrim",purchase,1.0,0 -85458882,"The Elder Scrolls V Skyrim",play,52.0,0 -85458882,"Portal",purchase,1.0,0 -85458882,"Portal",play,49.0,0 -85458882,"Amnesia The Dark Descent",purchase,1.0,0 -85458882,"Amnesia The Dark Descent",play,33.0,0 -85458882,"Warframe",purchase,1.0,0 -85458882,"Warframe",play,26.0,0 -85458882,"Borderlands 2",purchase,1.0,0 -85458882,"Borderlands 2",play,12.5,0 -85458882,"PlanetSide 2",purchase,1.0,0 -85458882,"PlanetSide 2",play,6.6,0 -85458882,"Garry's Mod",purchase,1.0,0 -85458882,"Garry's Mod",play,5.1,0 -85458882,"Solar 2",purchase,1.0,0 -85458882,"Solar 2",play,4.0,0 -85458882,"BioShock",purchase,1.0,0 -85458882,"BioShock",play,3.2,0 -85458882,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -85458882,"Sins of a Solar Empire Rebellion",play,2.8,0 -85458882,"Borderlands",purchase,1.0,0 -85458882,"Borderlands",play,1.9,0 -85458882,"Papers, Please",purchase,1.0,0 -85458882,"Papers, Please",play,1.9,0 -85458882,"Vindictus",purchase,1.0,0 -85458882,"Vindictus",play,1.9,0 -85458882,"Amnesia A Machine for Pigs",purchase,1.0,0 -85458882,"Amnesia A Machine for Pigs",play,0.9,0 -85458882,"Bad Rats",purchase,1.0,0 -85458882,"BioShock 2",purchase,1.0,0 -85458882,"BioShock Infinite",purchase,1.0,0 -85458882,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -85458882,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -85458882,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -85458882,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -85458882,"Cave Story+",purchase,1.0,0 -85458882,"Child of Light",purchase,1.0,0 -85458882,"City of Steam Arkadia",purchase,1.0,0 -85458882,"Dirty Bomb",purchase,1.0,0 -85458882,"Don't Starve Reign of Giants",purchase,1.0,0 -85458882,"Dragon's Prophet",purchase,1.0,0 -85458882,"EVE Online",purchase,1.0,0 -85458882,"Face of Mankind",purchase,1.0,0 -85458882,"Firefall",purchase,1.0,0 -85458882,"Free to Play",purchase,1.0,0 -85458882,"Half-Life",purchase,1.0,0 -85458882,"Half-Life 2",purchase,1.0,0 -85458882,"Half-Life 2 Deathmatch",purchase,1.0,0 -85458882,"Half-Life 2 Episode One",purchase,1.0,0 -85458882,"Half-Life 2 Episode Two",purchase,1.0,0 -85458882,"Half-Life 2 Lost Coast",purchase,1.0,0 -85458882,"Half-Life Blue Shift",purchase,1.0,0 -85458882,"Half-Life Opposing Force",purchase,1.0,0 -85458882,"Half-Life Source",purchase,1.0,0 -85458882,"Half-Life Deathmatch Source",purchase,1.0,0 -85458882,"Happy Wars",purchase,1.0,0 -85458882,"Loadout",purchase,1.0,0 -85458882,"Magic 2014 ",purchase,1.0,0 -85458882,"Path of Exile",purchase,1.0,0 -85458882,"Quake Live",purchase,1.0,0 -85458882,"Robocraft",purchase,1.0,0 -85458882,"Soldier Front 2",purchase,1.0,0 -85458882,"Spiral Knights",purchase,1.0,0 -85458882,"Star Wars Knights of the Old Republic",purchase,1.0,0 -85458882,"Team Fortress Classic",purchase,1.0,0 -85458882,"War Thunder",purchase,1.0,0 -85458882,"Zombies Monsters Robots",purchase,1.0,0 -249851563,"War Thunder",purchase,1.0,0 -82263745,"Dota 2",purchase,1.0,0 -82263745,"Dota 2",play,2634.0,0 -82263745,"H1Z1",purchase,1.0,0 -82263745,"H1Z1",play,560.0,0 -82263745,"Counter-Strike Global Offensive",purchase,1.0,0 -82263745,"Counter-Strike Global Offensive",play,472.0,0 -82263745,"Counter-Strike",purchase,1.0,0 -82263745,"Counter-Strike",play,220.0,0 -82263745,"Team Fortress 2",purchase,1.0,0 -82263745,"Team Fortress 2",play,140.0,0 -82263745,"Terraria",purchase,1.0,0 -82263745,"Terraria",play,88.0,0 -82263745,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -82263745,"Call of Duty Modern Warfare 3 - Multiplayer",play,70.0,0 -82263745,"Rocket League",purchase,1.0,0 -82263745,"Rocket League",play,64.0,0 -82263745,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -82263745,"Call of Duty Modern Warfare 2 - Multiplayer",play,45.0,0 -82263745,"Serious Sam HD The Second Encounter",purchase,1.0,0 -82263745,"Serious Sam HD The Second Encounter",play,43.0,0 -82263745,"Grand Theft Auto V",purchase,1.0,0 -82263745,"Grand Theft Auto V",play,38.0,0 -82263745,"Grand Theft Auto IV",purchase,1.0,0 -82263745,"Grand Theft Auto IV",play,34.0,0 -82263745,"Warhammer 40,000 Space Marine",purchase,1.0,0 -82263745,"Warhammer 40,000 Space Marine",play,28.0,0 -82263745,"The Binding of Isaac",purchase,1.0,0 -82263745,"The Binding of Isaac",play,23.0,0 -82263745,"Left 4 Dead 2",purchase,1.0,0 -82263745,"Left 4 Dead 2",play,17.3,0 -82263745,"Trine 2",purchase,1.0,0 -82263745,"Trine 2",play,17.2,0 -82263745,"War Thunder",purchase,1.0,0 -82263745,"War Thunder",play,17.0,0 -82263745,"Dungeons of Dredmor",purchase,1.0,0 -82263745,"Dungeons of Dredmor",play,16.9,0 -82263745,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -82263745,"Call of Duty Black Ops II - Multiplayer",play,15.8,0 -82263745,"Chivalry Medieval Warfare",purchase,1.0,0 -82263745,"Chivalry Medieval Warfare",play,15.4,0 -82263745,"McPixel",purchase,1.0,0 -82263745,"McPixel",play,14.4,0 -82263745,"Super Meat Boy",purchase,1.0,0 -82263745,"Super Meat Boy",play,12.0,0 -82263745,"Bloodline Champions",purchase,1.0,0 -82263745,"Bloodline Champions",play,10.8,0 -82263745,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -82263745,"Warhammer 40,000 Dawn of War II Retribution",play,9.8,0 -82263745,"Torchlight II",purchase,1.0,0 -82263745,"Torchlight II",play,9.8,0 -82263745,"Age of Empires II HD Edition",purchase,1.0,0 -82263745,"Age of Empires II HD Edition",play,9.0,0 -82263745,"Company of Heroes 2",purchase,1.0,0 -82263745,"Company of Heroes 2",play,6.4,0 -82263745,"LIMBO",purchase,1.0,0 -82263745,"LIMBO",play,6.4,0 -82263745,"Saints Row The Third",purchase,1.0,0 -82263745,"Saints Row The Third",play,5.9,0 -82263745,"Path of Exile",purchase,1.0,0 -82263745,"Path of Exile",play,5.9,0 -82263745,"Call of Duty Modern Warfare 2",purchase,1.0,0 -82263745,"Call of Duty Modern Warfare 2",play,3.8,0 -82263745,"From Dust",purchase,1.0,0 -82263745,"From Dust",play,3.1,0 -82263745,"Super Crate Box",purchase,1.0,0 -82263745,"Super Crate Box",play,3.0,0 -82263745,"Bastion",purchase,1.0,0 -82263745,"Bastion",play,2.9,0 -82263745,"SpeedRunners",purchase,1.0,0 -82263745,"SpeedRunners",play,2.8,0 -82263745,"PAYDAY 2",purchase,1.0,0 -82263745,"PAYDAY 2",play,2.0,0 -82263745,"Natural Selection 2",purchase,1.0,0 -82263745,"Natural Selection 2",play,1.9,0 -82263745,"Psychonauts",purchase,1.0,0 -82263745,"Psychonauts",play,1.8,0 -82263745,"A Virus Named TOM",purchase,1.0,0 -82263745,"A Virus Named TOM",play,1.6,0 -82263745,"Magicka",purchase,1.0,0 -82263745,"Magicka",play,1.5,0 -82263745,"FEZ",purchase,1.0,0 -82263745,"FEZ",play,1.5,0 -82263745,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -82263745,"Superbrothers Sword & Sworcery EP",play,1.4,0 -82263745,"Warframe",purchase,1.0,0 -82263745,"Warframe",play,1.4,0 -82263745,"Insurgency",purchase,1.0,0 -82263745,"Insurgency",play,1.3,0 -82263745,"Counter-Strike Condition Zero",purchase,1.0,0 -82263745,"Counter-Strike Condition Zero",play,1.0,0 -82263745,"Eets Munchies",purchase,1.0,0 -82263745,"Eets Munchies",play,0.9,0 -82263745,"DLC Quest",purchase,1.0,0 -82263745,"DLC Quest",play,0.8,0 -82263745,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -82263745,"Call of Duty Black Ops II - Zombies",play,0.7,0 -82263745,"FTL Faster Than Light",purchase,1.0,0 -82263745,"FTL Faster Than Light",play,0.5,0 -82263745,"Dirty Bomb",purchase,1.0,0 -82263745,"Dirty Bomb",play,0.4,0 -82263745,"Orcs Must Die! 2",purchase,1.0,0 -82263745,"Orcs Must Die! 2",play,0.4,0 -82263745,"Amnesia The Dark Descent",purchase,1.0,0 -82263745,"Amnesia The Dark Descent",play,0.4,0 -82263745,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -82263745,"Burnout Paradise The Ultimate Box",play,0.3,0 -82263745,"BioShock",purchase,1.0,0 -82263745,"BioShock",play,0.3,0 -82263745,"Robocraft",purchase,1.0,0 -82263745,"Robocraft",play,0.3,0 -82263745,"GunZ 2 The Second Duel",purchase,1.0,0 -82263745,"GunZ 2 The Second Duel",play,0.3,0 -82263745,"World of Soccer online",purchase,1.0,0 -82263745,"World of Soccer online",play,0.3,0 -82263745,"Quake Live",purchase,1.0,0 -82263745,"Quake Live",play,0.3,0 -82263745,"Unturned",purchase,1.0,0 -82263745,"Unturned",play,0.2,0 -82263745,"Mortal Kombat Kollection",purchase,1.0,0 -82263745,"Mortal Kombat Kollection",play,0.2,0 -82263745,"Brtal Legend",purchase,1.0,0 -82263745,"Brtal Legend",play,0.2,0 -82263745,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -82263745,"Medal of Honor(TM) Multiplayer",play,0.1,0 -82263745,"Infinite Crisis",purchase,1.0,0 -82263745,"Infinite Crisis",play,0.1,0 -82263745,"The Mighty Quest For Epic Loot",purchase,1.0,0 -82263745,"The Mighty Quest For Epic Loot",play,0.1,0 -82263745,"War Inc. Battlezone",purchase,1.0,0 -82263745,"Ragnarok Online - Free to Play - European Version",purchase,1.0,0 -82263745,"Mark of the Ninja",purchase,1.0,0 -82263745,"Kung Fury",purchase,1.0,0 -82263745,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -82263745,"One Way Heroics",purchase,1.0,0 -82263745,"Nosgoth",purchase,1.0,0 -82263745,"Sanctum",purchase,1.0,0 -82263745,"Call of Duty Modern Warfare 3",purchase,1.0,0 -82263745,"ACE - Arena Cyber Evolution",purchase,1.0,0 -82263745,"ArcheAge",purchase,1.0,0 -82263745,"Archeblade",purchase,1.0,0 -82263745,"Batman Arkham City GOTY",purchase,1.0,0 -82263745,"Bejeweled 3",purchase,1.0,0 -82263745,"BioShock 2",purchase,1.0,0 -82263745,"BioShock Infinite",purchase,1.0,0 -82263745,"Call of Duty Black Ops II",purchase,1.0,0 -82263745,"Call of Duty World at War",purchase,1.0,0 -82263745,"Cities in Motion 2",purchase,1.0,0 -82263745,"Company of Heroes",purchase,1.0,0 -82263745,"Company of Heroes (New Steam Version)",purchase,1.0,0 -82263745,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -82263745,"Crysis 2 Maximum Edition",purchase,1.0,0 -82263745,"DCS World",purchase,1.0,0 -82263745,"Dead Island Epidemic",purchase,1.0,0 -82263745,"Dead Island Riptide",purchase,1.0,0 -82263745,"Dead Space",purchase,1.0,0 -82263745,"Dead Space 2",purchase,1.0,0 -82263745,"Dragon Age Origins",purchase,1.0,0 -82263745,"F.E.A.R.",purchase,1.0,0 -82263745,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -82263745,"F.E.A.R. 3",purchase,1.0,0 -82263745,"F.E.A.R. Extraction Point",purchase,1.0,0 -82263745,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -82263745,"Fallen Earth",purchase,1.0,0 -82263745,"Fistful of Frags",purchase,1.0,0 -82263745,"Garry's Mod",purchase,1.0,0 -82263745,"Goat Simulator",purchase,1.0,0 -82263745,"Guardians of Middle-earth",purchase,1.0,0 -82263745,"H1Z1 Test Server",purchase,1.0,0 -82263745,"Happy Wars",purchase,1.0,0 -82263745,"Haunted Memories",purchase,1.0,0 -82263745,"Heroes & Generals",purchase,1.0,0 -82263745,"Magicka Vietnam",purchase,1.0,0 -82263745,"Magicka Wizard Wars",purchase,1.0,0 -82263745,"Mass Effect 2",purchase,1.0,0 -82263745,"Medal of Honor(TM) Single Player",purchase,1.0,0 -82263745,"Medal of Honor Pre-Order",purchase,1.0,0 -82263745,"Mirror's Edge",purchase,1.0,0 -82263745,"No More Room in Hell",purchase,1.0,0 -82263745,"Orcs Must Die!",purchase,1.0,0 -82263745,"Patch testing for Chivalry",purchase,1.0,0 -82263745,"Psychonauts Demo",purchase,1.0,0 -82263745,"Quantum Rush Online",purchase,1.0,0 -82263745,"Risen 2 - Dark Waters",purchase,1.0,0 -82263745,"Sacred 2 Gold",purchase,1.0,0 -82263745,"Saints Row 2",purchase,1.0,0 -82263745,"Sanctum 2",purchase,1.0,0 -82263745,"Scribblenauts Unlimited",purchase,1.0,0 -82263745,"Serious Sam 3 BFE",purchase,1.0,0 -82263745,"The Lord of the Rings War in the North",purchase,1.0,0 -82263745,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -82263745,"TOME Immortal Arena",purchase,1.0,0 -82263745,"Warface",purchase,1.0,0 -82263745,"Yet Another Zombie Defense",purchase,1.0,0 -159398853,"Left 4 Dead 2",purchase,1.0,0 -159398853,"Left 4 Dead 2",play,15.0,0 -213597170,"Atlantica Online",purchase,1.0,0 -213597170,"The Lord of the Rings Online",purchase,1.0,0 -181252150,"HAWKEN",purchase,1.0,0 -181252150,"HAWKEN",play,19.6,0 -181252150,"Robocraft",purchase,1.0,0 -181252150,"Robocraft",play,10.8,0 -181252150,"Hitman Absolution",purchase,1.0,0 -181252150,"Hitman Absolution",play,10.1,0 -154940708,"March of War",purchase,1.0,0 -154940708,"March of War",play,0.9,0 -154940708,"BattleSpace",purchase,1.0,0 -154940708,"Star Conflict",purchase,1.0,0 -154940708,"Toribash",purchase,1.0,0 -248040416,"8BitMMO",purchase,1.0,0 -248040416,"Blacklight Retribution",purchase,1.0,0 -248040416,"BLOCKADE 3D",purchase,1.0,0 -248040416,"Counter-Strike Nexon Zombies",purchase,1.0,0 -248040416,"Cry of Fear",purchase,1.0,0 -248040416,"Defy Gravity",purchase,1.0,0 -248040416,"Dystopia",purchase,1.0,0 -248040416,"Fistful of Frags",purchase,1.0,0 -248040416,"Forge",purchase,1.0,0 -248040416,"Free to Play",purchase,1.0,0 -248040416,"Frontline Tactics",purchase,1.0,0 -248040416,"Gear Up",purchase,1.0,0 -248040416,"Get Off My Lawn!",purchase,1.0,0 -248040416,"Heroes & Generals",purchase,1.0,0 -248040416,"No More Room in Hell",purchase,1.0,0 -248040416,"Panzar",purchase,1.0,0 -248040416,"Pirates, Vikings, & Knights II",purchase,1.0,0 -248040416,"PlanetSide 2",purchase,1.0,0 -248040416,"Quake Live",purchase,1.0,0 -248040416,"RaceRoom Racing Experience ",purchase,1.0,0 -248040416,"Robocraft",purchase,1.0,0 -248040416,"Shadow Warrior Classic (1997)",purchase,1.0,0 -248040416,"Spartans Vs Zombies Defense",purchase,1.0,0 -248040416,"Super Monday Night Combat",purchase,1.0,0 -248040416,"Tactical Intervention",purchase,1.0,0 -248040416,"The Way of Life Free Edition",purchase,1.0,0 -248040416,"Thinking with Time Machine",purchase,1.0,0 -248040416,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -248040416,"Unturned",purchase,1.0,0 -248040416,"Warface",purchase,1.0,0 -248040416,"Warframe",purchase,1.0,0 -248040416,"World of Guns Gun Disassembly",purchase,1.0,0 -177095896,"Team Fortress 2",purchase,1.0,0 -177095896,"Team Fortress 2",play,150.0,0 -238727693,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -238727693,"Tom Clancy's Ghost Recon Phantoms - EU",play,10.6,0 -166288511,"Serious Sam HD The Second Encounter",purchase,1.0,0 -166288511,"Serious Sam HD The Second Encounter",play,1.3,0 -195723035,"Dragons and Titans",purchase,1.0,0 -113570611,"Dota 2",purchase,1.0,0 -113570611,"Dota 2",play,211.0,0 -256920108,"Dota 2",purchase,1.0,0 -256920108,"Dota 2",play,0.3,0 -144387163,"Football Manager 2015",purchase,1.0,0 -144387163,"Football Manager 2015",play,268.0,0 -144387163,"Football Manager 2013",purchase,1.0,0 -144387163,"Football Manager 2013",play,110.0,0 -299315042,"Borderlands 2",purchase,1.0,0 -299315042,"Borderlands 2",play,11.8,0 -112504953,"Warface",purchase,1.0,0 -112504953,"Warface",play,4.1,0 -112504953,"Run and Fire",purchase,1.0,0 -112504953,"Run and Fire",play,0.9,0 -112504953,"theHunter",purchase,1.0,0 -112504953,"theHunter",play,0.8,0 -112504953,"Red Crucible Firestorm",purchase,1.0,0 -112504953,"Red Crucible Firestorm",play,0.2,0 -112504953,"UberStrike",purchase,1.0,0 -150362399,"The Mighty Quest For Epic Loot",purchase,1.0,0 -150362399,"The Mighty Quest For Epic Loot",play,33.0,0 -174907851,"The Witcher 3 Wild Hunt",purchase,1.0,0 -174907851,"The Witcher 3 Wild Hunt",play,54.0,0 -174907851,"FINAL FANTASY XIV A Realm Reborn",purchase,1.0,0 -174907851,"FINAL FANTASY XIV A Realm Reborn",play,43.0,0 -174907851,"Metro Last Light",purchase,1.0,0 -174907851,"Metro Last Light",play,12.5,0 -174907851,"DayZ",purchase,1.0,0 -174907851,"DayZ",play,5.5,0 -174907851,"Middle-earth Shadow of Mordor",purchase,1.0,0 -174907851,"Middle-earth Shadow of Mordor",play,3.7,0 -174907851,"F.E.A.R. 3",purchase,1.0,0 -174907851,"F.E.A.R. 3",play,1.9,0 -174907851,"Nosgoth",purchase,1.0,0 -174907851,"Nosgoth",play,1.6,0 -174907851,"FINAL FANTASY XIV Heavensward",purchase,1.0,0 -174907851,"Marvel Heroes 2015",purchase,1.0,0 -174907851,"The Witcher 3 Wild Hunt - New Finisher Animations",purchase,1.0,0 -245314153,"Counter-Strike Global Offensive",purchase,1.0,0 -245314153,"Counter-Strike Global Offensive",play,285.0,0 -245314153,"Trove",purchase,1.0,0 -245314153,"Trove",play,124.0,0 -245314153,"Terraria",purchase,1.0,0 -245314153,"Terraria",play,64.0,0 -245314153,"TERA",purchase,1.0,0 -245314153,"TERA",play,23.0,0 -245314153,"Block Story",purchase,1.0,0 -245314153,"Block Story",play,15.7,0 -245314153,"The Mighty Quest For Epic Loot",purchase,1.0,0 -245314153,"The Mighty Quest For Epic Loot",play,13.0,0 -245314153,"Call of Duty World at War",purchase,1.0,0 -245314153,"Call of Duty World at War",play,12.4,0 -245314153,"CastleMiner Z",purchase,1.0,0 -245314153,"CastleMiner Z",play,10.2,0 -245314153,"Defiance",purchase,1.0,0 -245314153,"Defiance",play,7.5,0 -245314153,"Block N Load",purchase,1.0,0 -245314153,"Block N Load",play,7.1,0 -245314153,"Neverwinter",purchase,1.0,0 -245314153,"Neverwinter",play,6.2,0 -245314153,"AdVenture Capitalist",purchase,1.0,0 -245314153,"AdVenture Capitalist",play,5.7,0 -245314153,"Castle Crashers",purchase,1.0,0 -245314153,"Castle Crashers",play,4.5,0 -245314153,"sZone-Online",purchase,1.0,0 -245314153,"sZone-Online",play,4.4,0 -245314153,"Team Fortress 2",purchase,1.0,0 -245314153,"Team Fortress 2",play,3.2,0 -245314153,"Robocraft",purchase,1.0,0 -245314153,"Robocraft",play,2.8,0 -245314153,"Zombies Monsters Robots",purchase,1.0,0 -245314153,"Zombies Monsters Robots",play,2.5,0 -245314153,"Unturned",purchase,1.0,0 -245314153,"Unturned",play,2.4,0 -245314153,"Warface",purchase,1.0,0 -245314153,"Warface",play,2.0,0 -245314153,"SMITE",purchase,1.0,0 -245314153,"SMITE",play,1.2,0 -245314153,"Dead Island Epidemic",purchase,1.0,0 -245314153,"Dead Island Epidemic",play,1.2,0 -245314153,"Dungeon Defenders II",purchase,1.0,0 -245314153,"Dungeon Defenders II",play,1.1,0 -245314153,"Counter-Strike Nexon Zombies",purchase,1.0,0 -245314153,"Counter-Strike Nexon Zombies",play,0.8,0 -245314153,"Fallen Earth",purchase,1.0,0 -245314153,"Fallen Earth",play,0.7,0 -245314153,"Dota 2",purchase,1.0,0 -245314153,"Dota 2",play,0.7,0 -245314153,"Spiral Knights",purchase,1.0,0 -245314153,"Spiral Knights",play,0.6,0 -245314153,"Aftermath",purchase,1.0,0 -245314153,"Aftermath",play,0.5,0 -245314153,"Stronghold Kingdoms",purchase,1.0,0 -245314153,"Stronghold Kingdoms",play,0.4,0 -245314153,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -245314153,"Just Cause 2 Multiplayer Mod",play,0.4,0 -245314153,"Spooky's House of Jump Scares",purchase,1.0,0 -245314153,"Spooky's House of Jump Scares",play,0.4,0 -245314153,"Codename CURE",purchase,1.0,0 -245314153,"Codename CURE",play,0.4,0 -245314153,"ArcheAge",purchase,1.0,0 -245314153,"ArcheAge",play,0.4,0 -245314153,"Nether",purchase,1.0,0 -245314153,"Nether",play,0.4,0 -245314153,"8BitMMO",purchase,1.0,0 -245314153,"8BitMMO",play,0.2,0 -245314153,"Just Cause 2",purchase,1.0,0 -245314153,"Just Cause 2",play,0.2,0 -245314153,"Heroes & Generals",purchase,1.0,0 -245314153,"Heroes & Generals",play,0.2,0 -245314153,"Clown House (Palyao Evi)",purchase,1.0,0 -245314153,"Clown House (Palyao Evi)",play,0.2,0 -245314153,"Clicker Heroes",purchase,1.0,0 -245314153,"Magic Barrage - Bitferno",purchase,1.0,0 -245314153,"Realm of the Mad God",purchase,1.0,0 -245314153,"APB Reloaded",purchase,1.0,0 -245314153,"Dirty Bomb",purchase,1.0,0 -245314153,"Guns and Robots",purchase,1.0,0 -245314153,"Haunted Memories",purchase,1.0,0 -245314153,"Mortal Online",purchase,1.0,0 -245314153,"RIFT",purchase,1.0,0 -245314153,"Survarium",purchase,1.0,0 -193671011,"Dota 2",purchase,1.0,0 -193671011,"Dota 2",play,5.6,0 -284897470,"Team Fortress 2",purchase,1.0,0 -284897470,"Team Fortress 2",play,31.0,0 -284897470,"Counter-Strike Global Offensive",purchase,1.0,0 -284897470,"Counter-Strike Global Offensive",play,15.2,0 -126877285,"Napoleon Total War",purchase,1.0,0 -126877285,"Napoleon Total War",play,1.6,0 -126877285,"SpellForce 2 - Faith in Destiny",purchase,1.0,0 -126877285,"SpellForce 2 - Faith in Destiny",play,0.8,0 -126877285,"Sonic Generations",purchase,1.0,0 -126877285,"Sonic Generations",play,0.7,0 -302472242,"Duck Game",purchase,1.0,0 -302472242,"Duck Game",play,37.0,0 -302472242,"The Binding of Isaac Rebirth",purchase,1.0,0 -302472242,"The Binding of Isaac Rebirth",play,12.0,0 -302472242,"Garry's Mod",purchase,1.0,0 -302472242,"Garry's Mod",play,1.4,0 -302472242,"Trove",purchase,1.0,0 -302472242,"Trove",play,0.3,0 -302472242,"Super Crate Box",purchase,1.0,0 -302472242,"Super Crate Box",play,0.1,0 -302472242,"Unturned",purchase,1.0,0 -302472242,"Brawlhalla",purchase,1.0,0 -194111617,"Counter-Strike Global Offensive",purchase,1.0,0 -194111617,"Counter-Strike Global Offensive",play,344.0,0 -194111617,"Counter-Strike Source",purchase,1.0,0 -194111617,"Counter-Strike Source",play,52.0,0 -194111617,"Dota 2",purchase,1.0,0 -194111617,"Dota 2",play,13.1,0 -194111617,"Garry's Mod",purchase,1.0,0 -194111617,"Garry's Mod",play,0.9,0 -194111617,"SMITE",purchase,1.0,0 -194111617,"SMITE",play,0.2,0 -194111617,"Only If",purchase,1.0,0 -50275189,"Team Fortress 2",purchase,1.0,0 -50275189,"Team Fortress 2",play,267.0,0 -50275189,"Left 4 Dead 2",purchase,1.0,0 -50275189,"Left 4 Dead 2",play,5.7,0 -50275189,"Terraria",purchase,1.0,0 -50275189,"Terraria",play,3.7,0 -50275189,"Dead Space",purchase,1.0,0 -50275189,"Dead Space",play,3.5,0 -50275189,"War Thunder",purchase,1.0,0 -50275189,"War Thunder",play,3.1,0 -50275189,"Portal 2",purchase,1.0,0 -50275189,"Portal 2",play,0.9,0 -50275189,"Gear Up",purchase,1.0,0 -50275189,"Gear Up",play,0.6,0 -50275189,"Heroes & Generals",purchase,1.0,0 -50275189,"Heroes & Generals",play,0.3,0 -120606442,"Dota 2",purchase,1.0,0 -120606442,"Dota 2",play,1.6,0 -237852834,"Alien Isolation",purchase,1.0,0 -237852834,"Alien Isolation",play,1.3,0 -237852834,"Lost Planet 3",purchase,1.0,0 -75465639,"DayZ",purchase,1.0,0 -75465639,"DayZ",play,3.3,0 -75465639,"Left 4 Dead 2",purchase,1.0,0 -75465639,"Left 4 Dead 2",play,0.3,0 -141892155,"Dota 2",purchase,1.0,0 -141892155,"Dota 2",play,3.3,0 -86943254,"Breach",purchase,1.0,0 -86943254,"Breach",play,3.1,0 -86943254,"Team Fortress 2",purchase,1.0,0 -86943254,"Team Fortress 2",play,1.4,0 -239397486,"Dota 2",purchase,1.0,0 -239397486,"Dota 2",play,29.0,0 -81574839,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -81574839,"Call of Duty Black Ops - Multiplayer",play,1.4,0 -81574839,"Call of Duty Black Ops",purchase,1.0,0 -81574839,"Call of Duty Black Ops",play,0.2,0 -102111851,"Dota 2",purchase,1.0,0 -102111851,"Dota 2",play,2268.0,0 -102111851,"Neverwinter",purchase,1.0,0 -102111851,"Neverwinter",play,72.0,0 -102111851,"Devil May Cry 4 Special Edition",purchase,1.0,0 -102111851,"Devil May Cry 4 Special Edition",play,15.3,0 -102111851,"Counter-Strike Global Offensive",purchase,1.0,0 -102111851,"Counter-Strike Global Offensive",play,15.2,0 -102111851,"RIFT",purchase,1.0,0 -102111851,"RIFT",play,8.6,0 -102111851,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -102111851,"Infinity Wars - Animated Trading Card Game",play,1.7,0 -102111851,"RaiderZ",purchase,1.0,0 -102111851,"RaiderZ",play,1.3,0 -102111851,"Archeblade",purchase,1.0,0 -102111851,"Archeblade",play,0.5,0 -102111851,"Magicka Wizard Wars",purchase,1.0,0 -102111851,"Magicka Wizard Wars",play,0.5,0 -102111851,"Happy Wars",purchase,1.0,0 -102111851,"Happy Wars",play,0.4,0 -102111851,"Dungeon Defenders II",purchase,1.0,0 -102111851,"GunZ 2 The Second Duel",purchase,1.0,0 -102111851,"Path of Exile",purchase,1.0,0 -102111851,"TERA",purchase,1.0,0 -102111851,"The Mighty Quest For Epic Loot",purchase,1.0,0 -189246258,"Dota 2",purchase,1.0,0 -189246258,"Dota 2",play,0.3,0 -84560845,"Garry's Mod",purchase,1.0,0 -84560845,"Garry's Mod",play,13.0,0 -84560845,"Half-Life Source",purchase,1.0,0 -84560845,"Half-Life Deathmatch Source",purchase,1.0,0 -117883499,"Dota 2",purchase,1.0,0 -117883499,"Dota 2",play,4.7,0 -117883499,"Metro 2033",purchase,1.0,0 -117883499,"Metro 2033",play,1.3,0 -75598925,"Left 4 Dead 2",purchase,1.0,0 -75598925,"Left 4 Dead 2",play,2055.0,0 -75598925,"Borderlands 2",purchase,1.0,0 -75598925,"Borderlands 2",play,402.0,0 -75598925,"Team Fortress 2",purchase,1.0,0 -75598925,"Team Fortress 2",play,202.0,0 -75598925,"Don't Starve Together Beta",purchase,1.0,0 -75598925,"Don't Starve Together Beta",play,60.0,0 -75598925,"Borderlands The Pre-Sequel",purchase,1.0,0 -75598925,"Borderlands The Pre-Sequel",play,52.0,0 -75598925,"The Wolf Among Us",purchase,1.0,0 -75598925,"The Wolf Among Us",play,9.6,0 -75598925,"Killing Floor",purchase,1.0,0 -75598925,"Killing Floor",play,6.7,0 -75598925,"Counter-Strike Global Offensive",purchase,1.0,0 -75598925,"Counter-Strike Global Offensive",play,4.6,0 -75598925,"Castle Crashers",purchase,1.0,0 -75598925,"Castle Crashers",play,4.4,0 -75598925,"Dota 2",purchase,1.0,0 -75598925,"Dota 2",play,0.2,0 -75598925,"The Showdown Effect",purchase,1.0,0 -75598925,"The Showdown Effect",play,0.1,0 -75598925,"Nuclear Dawn",purchase,1.0,0 -75598925,"AdVenture Capitalist",purchase,1.0,0 -75598925,"Borderlands",purchase,1.0,0 -75598925,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -75598925,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -75598925,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -75598925,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -75598925,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -75598925,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -75598925,"Dead Island Epidemic",purchase,1.0,0 -75598925,"GunZ 2 The Second Duel",purchase,1.0,0 -75598925,"HAWKEN",purchase,1.0,0 -75598925,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -75598925,"Marvel Heroes 2015",purchase,1.0,0 -75598925,"Metro 2033",purchase,1.0,0 -75598925,"PAYDAY The Heist",purchase,1.0,0 -239305859,"Dota 2",purchase,1.0,0 -239305859,"Dota 2",play,104.0,0 -169902951,"The Gate",purchase,1.0,0 -169902951,"The Gate",play,6.6,0 -169902951,"Heroes of SoulCraft",purchase,1.0,0 -169902951,"Heroes of SoulCraft",play,2.9,0 -169902951,"UberStrike",purchase,1.0,0 -169902951,"UberStrike",play,1.5,0 -169902951,"Stronghold Kingdoms",purchase,1.0,0 -169902951,"Stronghold Kingdoms",play,0.8,0 -169902951,"Unturned",purchase,1.0,0 -169902951,"Unturned",play,0.4,0 -169902951,"Deepworld",purchase,1.0,0 -169902951,"Deepworld",play,0.2,0 -169902951,"Strife",purchase,1.0,0 -205897821,"Dota 2",purchase,1.0,0 -205897821,"Dota 2",play,2.1,0 -205897821,"Aura Kingdom",purchase,1.0,0 -205897821,"Warframe",purchase,1.0,0 -82847127,"BRINK",purchase,1.0,0 -82847127,"BRINK",play,4.6,0 -163972488,"Counter-Strike Global Offensive",purchase,1.0,0 -163972488,"Counter-Strike Global Offensive",play,356.0,0 -163972488,"Rust",purchase,1.0,0 -163972488,"Rust",play,308.0,0 -163972488,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -163972488,"Just Cause 2 Multiplayer Mod",play,2.1,0 -163972488,"Don't Starve",purchase,1.0,0 -163972488,"Don't Starve",play,1.0,0 -163972488,"Tomb Raider",purchase,1.0,0 -163972488,"Tomb Raider",play,0.8,0 -163972488,"Euro Truck Simulator",purchase,1.0,0 -163972488,"Euro Truck Simulator",play,0.3,0 -163972488,"Team Fortress 2",purchase,1.0,0 -163972488,"Team Fortress 2",play,0.2,0 -163972488,"How to Survive",purchase,1.0,0 -163972488,"Don't Starve Together Beta",purchase,1.0,0 -163972488,"Nosgoth",purchase,1.0,0 -163972488,"Just Cause 2",purchase,1.0,0 -163972488,"Chaos Domain",purchase,1.0,0 -163972488,"Cobi Treasure Deluxe",purchase,1.0,0 -163972488,"Commander Conquest of the Americas Gold",purchase,1.0,0 -163972488,"Dead Island Epidemic",purchase,1.0,0 -163972488,"Defy Gravity",purchase,1.0,0 -163972488,"East India Company Gold",purchase,1.0,0 -163972488,"Enclave",purchase,1.0,0 -163972488,"Knights and Merchants",purchase,1.0,0 -163972488,"KnightShift",purchase,1.0,0 -163972488,"Litil Divil",purchase,1.0,0 -163972488,"Marine Sharpshooter II Jungle Warfare",purchase,1.0,0 -163972488,"Max Payne 3",purchase,1.0,0 -163972488,"Memories of a Vagabond",purchase,1.0,0 -163972488,"Mirror's Edge",purchase,1.0,0 -163972488,"ORION Prelude",purchase,1.0,0 -163972488,"Pirates of Black Cove Gold",purchase,1.0,0 -163972488,"Racer 8",purchase,1.0,0 -163972488,"RADical ROACH Deluxe Edition",purchase,1.0,0 -163972488,"Retention",purchase,1.0,0 -163972488,"Serena",purchase,1.0,0 -163972488,"Takedown Red Sabre",purchase,1.0,0 -163972488,"Two Worlds Epic Edition",purchase,1.0,0 -163972488,"Zombie Driver HD",purchase,1.0,0 -100894366,"Assassin's Creed III",purchase,1.0,0 -100894366,"Assassin's Creed III",play,491.0,0 -100894366,"Marvel Heroes 2015",purchase,1.0,0 -100894366,"Marvel Heroes 2015",play,230.0,0 -100894366,"LEGO MARVEL Super Heroes",purchase,1.0,0 -100894366,"LEGO MARVEL Super Heroes",play,154.0,0 -100894366,"The Elder Scrolls V Skyrim",purchase,1.0,0 -100894366,"The Elder Scrolls V Skyrim",play,47.0,0 -100894366,"Batman Arkham City GOTY",purchase,1.0,0 -100894366,"Batman Arkham City GOTY",play,16.0,0 -100894366,"Borderlands 2",purchase,1.0,0 -100894366,"Borderlands 2",play,7.8,0 -100894366,"Age of Empires Online",purchase,1.0,0 -100894366,"Age of Empires Online",play,6.3,0 -100894366,"Batman Arkham Origins",purchase,1.0,0 -100894366,"Batman Arkham Origins",play,5.5,0 -100894366,"Sniper Elite V2",purchase,1.0,0 -100894366,"Sniper Elite V2",play,5.0,0 -100894366,"Grand Theft Auto IV",purchase,1.0,0 -100894366,"Grand Theft Auto IV",play,5.0,0 -100894366,"Sid Meier's Civilization V",purchase,1.0,0 -100894366,"Sid Meier's Civilization V",play,4.4,0 -100894366,"South Park The Stick of Truth",purchase,1.0,0 -100894366,"South Park The Stick of Truth",play,2.2,0 -100894366,"The Walking Dead",purchase,1.0,0 -100894366,"The Walking Dead",play,1.9,0 -100894366,"FINAL FANTASY VIII",purchase,1.0,0 -100894366,"FINAL FANTASY VIII",play,1.4,0 -100894366,"The Witcher Enhanced Edition",purchase,1.0,0 -100894366,"The Witcher Enhanced Edition",play,1.2,0 -100894366,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -100894366,"Batman Arkham Asylum GOTY Edition",play,1.1,0 -100894366,"Fable - The Lost Chapters",purchase,1.0,0 -100894366,"Fable - The Lost Chapters",play,0.9,0 -100894366,"Tomb Raider",purchase,1.0,0 -100894366,"Tomb Raider",play,0.5,0 -100894366,"FINAL FANTASY III",purchase,1.0,0 -100894366,"FINAL FANTASY III",play,0.5,0 -100894366,"The Lord of the Rings War in the North",purchase,1.0,0 -100894366,"The Lord of the Rings War in the North",play,0.3,0 -100894366,"Dead Island",purchase,1.0,0 -100894366,"Dead Island",play,0.3,0 -100894366,"Star Wars - Battlefront II",purchase,1.0,0 -100894366,"Star Wars - Battlefront II",play,0.2,0 -100894366,"Batman Arkham Knight",purchase,1.0,0 -100894366,"Batman Arkham Knight",play,0.2,0 -100894366,"Firefly Online Cortex",purchase,1.0,0 -100894366,"Firefly Online Cortex",play,0.2,0 -100894366,"Hitman Sniper Challenge",purchase,1.0,0 -100894366,"Hitman Sniper Challenge",play,0.1,0 -100894366,"Scribblenauts Unlimited",purchase,1.0,0 -100894366,"Scribblenauts Unlimited",play,0.1,0 -100894366,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -100894366,"BioShock Infinite",purchase,1.0,0 -100894366,"Left 4 Dead",purchase,1.0,0 -100894366,"Dishonored",purchase,1.0,0 -100894366,"Star Wars Knights of the Old Republic",purchase,1.0,0 -100894366,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -100894366,"Batman Arkham Origins - Initiation",purchase,1.0,0 -100894366,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -100894366,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -100894366,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -100894366,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -100894366,"BioShock",purchase,1.0,0 -100894366,"BioShock 2",purchase,1.0,0 -100894366,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -100894366,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -100894366,"F.E.A.R. 3",purchase,1.0,0 -100894366,"FINAL FANTASY IV",purchase,1.0,0 -100894366,"FINAL FANTASY VII",purchase,1.0,0 -100894366,"FINAL FANTASY XIII",purchase,1.0,0 -100894366,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -100894366,"GRID 2",purchase,1.0,0 -100894366,"Happy Wars",purchase,1.0,0 -100894366,"Hitman Absolution",purchase,1.0,0 -100894366,"Just Cause 2",purchase,1.0,0 -100894366,"Left 4 Dead 2",purchase,1.0,0 -100894366,"Metro 2033",purchase,1.0,0 -100894366,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -100894366,"Risen 2 - Dark Waters",purchase,1.0,0 -100894366,"Sacred 2 Gold",purchase,1.0,0 -100894366,"Saints Row 2",purchase,1.0,0 -100894366,"Saints Row The Third",purchase,1.0,0 -100894366,"Saints Row IV",purchase,1.0,0 -100894366,"Sid Meier's Ace Patrol",purchase,1.0,0 -100894366,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -100894366,"Sid Meier's Civilization III Complete",purchase,1.0,0 -100894366,"Sid Meier's Civilization IV",purchase,1.0,0 -100894366,"Sid Meier's Civilization IV",purchase,1.0,0 -100894366,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -100894366,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -100894366,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -100894366,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -100894366,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -100894366,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -100894366,"Sid Meier's Railroads!",purchase,1.0,0 -100894366,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -100894366,"Sniper Elite",purchase,1.0,0 -100894366,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -100894366,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -100894366,"Star Wars Dark Forces",purchase,1.0,0 -100894366,"Star Wars Empire at War Gold",purchase,1.0,0 -100894366,"Star Wars The Force Unleashed II",purchase,1.0,0 -100894366,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -100894366,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -100894366,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -100894366,"Star Wars Republic Commando",purchase,1.0,0 -100894366,"Star Wars Starfighter",purchase,1.0,0 -100894366,"Star Wars The Clone Wars Republic Heroes",purchase,1.0,0 -100894366,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -100894366,"The Elder Scrolls III Morrowind",purchase,1.0,0 -100894366,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -100894366,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -100894366,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -100894366,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -100894366,"The Walking Dead Season Two",purchase,1.0,0 -100894366,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -100894366,"The Wolf Among Us",purchase,1.0,0 -139901528,"Dota 2",purchase,1.0,0 -139901528,"Dota 2",play,3.0,0 -54444464,"Saints Row 2",purchase,1.0,0 -54444464,"Saints Row 2",play,0.5,0 -218779858,"Dota 2",purchase,1.0,0 -218779858,"Dota 2",play,0.7,0 -241770928,"Dota 2",purchase,1.0,0 -241770928,"Dota 2",play,65.0,0 -241770928,"Marvel Heroes 2015",purchase,1.0,0 -241770928,"Prime World",purchase,1.0,0 -241770928,"RaceRoom Racing Experience ",purchase,1.0,0 -241770928,"The Lord of the Rings Online",purchase,1.0,0 -131407045,"Team Fortress 2",purchase,1.0,0 -131407045,"Team Fortress 2",play,0.1,0 -205834246,"F.E.A.R. Online",purchase,1.0,0 -166136937,"Left 4 Dead 2",purchase,1.0,0 -166136937,"Left 4 Dead 2",play,37.0,0 -166136937,"Team Fortress 2",purchase,1.0,0 -166136937,"Team Fortress 2",play,1.2,0 -201443705,"Dota 2",purchase,1.0,0 -201443705,"Dota 2",play,7.5,0 -57770056,"Dota 2",purchase,1.0,0 -57770056,"Dota 2",play,280.0,0 -57770056,"Anno 2070",purchase,1.0,0 -57770056,"Anno 2070",play,82.0,0 -57770056,"Team Fortress 2",purchase,1.0,0 -57770056,"Team Fortress 2",play,54.0,0 -57770056,"Grand Theft Auto V",purchase,1.0,0 -57770056,"Grand Theft Auto V",play,42.0,0 -57770056,"Star Trek Online",purchase,1.0,0 -57770056,"Star Trek Online",play,38.0,0 -57770056,"Torchlight II",purchase,1.0,0 -57770056,"Torchlight II",play,36.0,0 -57770056,"Darksiders II",purchase,1.0,0 -57770056,"Darksiders II",play,29.0,0 -57770056,"Company of Heroes 2",purchase,1.0,0 -57770056,"Company of Heroes 2",play,28.0,0 -57770056,"Saints Row The Third",purchase,1.0,0 -57770056,"Saints Row The Third",play,22.0,0 -57770056,"Terraria",purchase,1.0,0 -57770056,"Terraria",play,19.2,0 -57770056,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -57770056,"Call of Duty Modern Warfare 2 - Multiplayer",play,16.5,0 -57770056,"PAYDAY 2",purchase,1.0,0 -57770056,"PAYDAY 2",play,14.9,0 -57770056,"Call of Duty Modern Warfare 2",purchase,1.0,0 -57770056,"Call of Duty Modern Warfare 2",play,13.1,0 -57770056,"Sleeping Dogs",purchase,1.0,0 -57770056,"Sleeping Dogs",play,13.0,0 -57770056,"Supreme Commander 2",purchase,1.0,0 -57770056,"Supreme Commander 2",play,12.2,0 -57770056,"BioShock Infinite",purchase,1.0,0 -57770056,"BioShock Infinite",play,11.7,0 -57770056,"Marvel Heroes 2015",purchase,1.0,0 -57770056,"Marvel Heroes 2015",play,11.3,0 -57770056,"Counter-Strike Global Offensive",purchase,1.0,0 -57770056,"Counter-Strike Global Offensive",play,10.9,0 -57770056,"Rocket League",purchase,1.0,0 -57770056,"Rocket League",play,10.0,0 -57770056,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -57770056,"Warhammer 40,000 Dawn of War II Retribution",play,9.1,0 -57770056,"Godus",purchase,1.0,0 -57770056,"Godus",play,8.7,0 -57770056,"Call of Duty Black Ops",purchase,1.0,0 -57770056,"Call of Duty Black Ops",play,8.5,0 -57770056,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -57770056,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,8.3,0 -57770056,"Borderlands 2",purchase,1.0,0 -57770056,"Borderlands 2",play,7.9,0 -57770056,"Sniper Ghost Warrior",purchase,1.0,0 -57770056,"Sniper Ghost Warrior",play,7.8,0 -57770056,"Warhammer 40,000 Space Marine",purchase,1.0,0 -57770056,"Warhammer 40,000 Space Marine",play,6.7,0 -57770056,"Tomb Raider",purchase,1.0,0 -57770056,"Tomb Raider",play,6.2,0 -57770056,"The Lord of the Rings War in the North",purchase,1.0,0 -57770056,"The Lord of the Rings War in the North",play,5.7,0 -57770056,"Orcs Must Die! 2",purchase,1.0,0 -57770056,"Orcs Must Die! 2",play,4.9,0 -57770056,"Sanctum 2",purchase,1.0,0 -57770056,"Sanctum 2",play,4.0,0 -57770056,"Saints Row IV",purchase,1.0,0 -57770056,"Saints Row IV",play,4.0,0 -57770056,"Middle-earth Shadow of Mordor",purchase,1.0,0 -57770056,"Middle-earth Shadow of Mordor",play,3.2,0 -57770056,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -57770056,"Call of Duty Black Ops - Multiplayer",play,3.2,0 -57770056,"Hitman Absolution",purchase,1.0,0 -57770056,"Hitman Absolution",play,3.1,0 -57770056,"Awesomenauts",purchase,1.0,0 -57770056,"Awesomenauts",play,3.0,0 -57770056,"Castle Crashers",purchase,1.0,0 -57770056,"Castle Crashers",play,2.8,0 -57770056,"Left 4 Dead 2",purchase,1.0,0 -57770056,"Left 4 Dead 2",play,2.1,0 -57770056,"Don't Starve Together Beta",purchase,1.0,0 -57770056,"Don't Starve Together Beta",play,1.8,0 -57770056,"Warhammer End Times - Vermintide",purchase,1.0,0 -57770056,"Warhammer End Times - Vermintide",play,1.8,0 -57770056,"Magicka",purchase,1.0,0 -57770056,"Magicka",play,1.1,0 -57770056,"Hitman Sniper Challenge",purchase,1.0,0 -57770056,"Hitman Sniper Challenge",play,0.8,0 -57770056,"Age of Empires II HD Edition",purchase,1.0,0 -57770056,"Age of Empires II HD Edition",play,0.3,0 -57770056,"Garry's Mod",purchase,1.0,0 -57770056,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -57770056,"Batman Arkham City GOTY",purchase,1.0,0 -57770056,"Beyond Divinity",purchase,1.0,0 -57770056,"Cities in Motion 2",purchase,1.0,0 -57770056,"Company of Heroes",purchase,1.0,0 -57770056,"Company of Heroes (New Steam Version)",purchase,1.0,0 -57770056,"Company of Heroes Opposing Fronts",purchase,1.0,0 -57770056,"Darksiders",purchase,1.0,0 -57770056,"Divine Divinity",purchase,1.0,0 -57770056,"Divinity Original Sin",purchase,1.0,0 -57770056,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -57770056,"F.E.A.R.",purchase,1.0,0 -57770056,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -57770056,"F.E.A.R. 3",purchase,1.0,0 -57770056,"F.E.A.R. Extraction Point",purchase,1.0,0 -57770056,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -57770056,"FINAL FANTASY TYPE-0 HD",purchase,1.0,0 -57770056,"Guardians of Middle-earth",purchase,1.0,0 -57770056,"Homefront",purchase,1.0,0 -57770056,"Just Cause",purchase,1.0,0 -57770056,"Just Cause 2",purchase,1.0,0 -57770056,"Magicka Final Frontier",purchase,1.0,0 -57770056,"Magicka Frozen Lake",purchase,1.0,0 -57770056,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -57770056,"Magicka Nippon",purchase,1.0,0 -57770056,"Magicka Party Robes",purchase,1.0,0 -57770056,"Magicka The Watchtower",purchase,1.0,0 -57770056,"Magicka Vietnam",purchase,1.0,0 -57770056,"Magicka Wizard's Survival Kit",purchase,1.0,0 -57770056,"Metro 2033",purchase,1.0,0 -57770056,"Mortal Kombat Kollection",purchase,1.0,0 -57770056,"MX vs. ATV Reflex",purchase,1.0,0 -57770056,"Natural Selection 2",purchase,1.0,0 -57770056,"Nexuiz",purchase,1.0,0 -57770056,"Nexuiz Beta",purchase,1.0,0 -57770056,"Nexuiz STUPID Mode",purchase,1.0,0 -57770056,"Orcs Must Die!",purchase,1.0,0 -57770056,"Red Faction",purchase,1.0,0 -57770056,"Red Faction Armageddon",purchase,1.0,0 -57770056,"Red Faction II",purchase,1.0,0 -57770056,"Saints Row 2",purchase,1.0,0 -57770056,"Sanctum",purchase,1.0,0 -57770056,"Scribblenauts Unlimited",purchase,1.0,0 -57770056,"Serious Sam 3 BFE",purchase,1.0,0 -57770056,"Star Wars - Battlefront II",purchase,1.0,0 -57770056,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -57770056,"Star Wars Dark Forces",purchase,1.0,0 -57770056,"Star Wars Empire at War Gold",purchase,1.0,0 -57770056,"Star Wars Knights of the Old Republic",purchase,1.0,0 -57770056,"Star Wars The Force Unleashed II",purchase,1.0,0 -57770056,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -57770056,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -57770056,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -57770056,"Star Wars Republic Commando",purchase,1.0,0 -57770056,"Star Wars Starfighter",purchase,1.0,0 -57770056,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -57770056,"Super Sanctum TD",purchase,1.0,0 -57770056,"Supreme Commander",purchase,1.0,0 -57770056,"Supreme Commander Forged Alliance",purchase,1.0,0 -57770056,"Titan Quest",purchase,1.0,0 -57770056,"Titan Quest Immortal Throne",purchase,1.0,0 -57770056,"Torchlight",purchase,1.0,0 -57770056,"Warhammer End Times - Vermintide Sigmar's Blessing",purchase,1.0,0 -57770056,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -187056940,"Dota 2",purchase,1.0,0 -187056940,"Dota 2",play,1.2,0 -214018797,"Dota 2",purchase,1.0,0 -214018797,"Dota 2",play,0.4,0 -214018797,"AdVenture Capitalist",purchase,1.0,0 -214018797,"Magicka Wizard Wars",purchase,1.0,0 -249126165,"Dota 2",purchase,1.0,0 -249126165,"Dota 2",play,1.1,0 -248243108,"Unturned",purchase,1.0,0 -248243108,"Unturned",play,5.2,0 -83962500,"Team Fortress 2",purchase,1.0,0 -83962500,"Team Fortress 2",play,2.5,0 -175806657,"Cities in Motion",purchase,1.0,0 -175806657,"Cities in Motion",play,3.1,0 -153197178,"Dota 2",purchase,1.0,0 -153197178,"Dota 2",play,0.5,0 -24632218,"Team Fortress 2",purchase,1.0,0 -24632218,"Team Fortress 2",play,209.0,0 -24632218,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -24632218,"Dark Souls Prepare to Die Edition",play,134.0,0 -24632218,"Left 4 Dead 2",purchase,1.0,0 -24632218,"Left 4 Dead 2",play,115.0,0 -24632218,"DARK SOULS II",purchase,1.0,0 -24632218,"DARK SOULS II",play,92.0,0 -24632218,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -24632218,"METAL GEAR SOLID V THE PHANTOM PAIN",play,84.0,0 -24632218,"Borderlands 2",purchase,1.0,0 -24632218,"Borderlands 2",play,78.0,0 -24632218,"Dishonored",purchase,1.0,0 -24632218,"Dishonored",play,72.0,0 -24632218,"Deus Ex Game of the Year Edition",purchase,1.0,0 -24632218,"Deus Ex Game of the Year Edition",play,68.0,0 -24632218,"BioShock Infinite",purchase,1.0,0 -24632218,"BioShock Infinite",play,67.0,0 -24632218,"Starbound",purchase,1.0,0 -24632218,"Starbound",play,56.0,0 -24632218,"Assassin's Creed III",purchase,1.0,0 -24632218,"Assassin's Creed III",play,55.0,0 -24632218,"Terraria",purchase,1.0,0 -24632218,"Terraria",play,53.0,0 -24632218,"Jade Empire Special Edition",purchase,1.0,0 -24632218,"Jade Empire Special Edition",play,51.0,0 -24632218,"Fallout New Vegas",purchase,1.0,0 -24632218,"Fallout New Vegas",play,47.0,0 -24632218,"Garry's Mod",purchase,1.0,0 -24632218,"Garry's Mod",play,44.0,0 -24632218,"Watch_Dogs",purchase,1.0,0 -24632218,"Watch_Dogs",play,42.0,0 -24632218,"Sid Meier's Civilization V",purchase,1.0,0 -24632218,"Sid Meier's Civilization V",play,41.0,0 -24632218,"Deus Ex Human Revolution",purchase,1.0,0 -24632218,"Deus Ex Human Revolution",play,39.0,0 -24632218,"Batman Arkham City GOTY",purchase,1.0,0 -24632218,"Batman Arkham City GOTY",play,37.0,0 -24632218,"Tropico 4",purchase,1.0,0 -24632218,"Tropico 4",play,36.0,0 -24632218,"Dungeons of Dredmor",purchase,1.0,0 -24632218,"Dungeons of Dredmor",play,36.0,0 -24632218,"Star Wars Knights of the Old Republic",purchase,1.0,0 -24632218,"Star Wars Knights of the Old Republic",play,35.0,0 -24632218,"XCOM Enemy Unknown",purchase,1.0,0 -24632218,"XCOM Enemy Unknown",play,35.0,0 -24632218,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -24632218,"Call of Duty 4 Modern Warfare",play,33.0,0 -24632218,"Saints Row The Third",purchase,1.0,0 -24632218,"Saints Row The Third",play,32.0,0 -24632218,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -24632218,"The Witcher 2 Assassins of Kings Enhanced Edition",play,32.0,0 -24632218,"Uplink",purchase,1.0,0 -24632218,"Uplink",play,31.0,0 -24632218,"Fallout 3",purchase,1.0,0 -24632218,"Fallout 3",play,31.0,0 -24632218,"Sleeping Dogs",purchase,1.0,0 -24632218,"Sleeping Dogs",play,31.0,0 -24632218,"Half-Life 2",purchase,1.0,0 -24632218,"Half-Life 2",play,29.0,0 -24632218,"BioShock",purchase,1.0,0 -24632218,"BioShock",play,26.0,0 -24632218,"Recettear An Item Shop's Tale",purchase,1.0,0 -24632218,"Recettear An Item Shop's Tale",play,24.0,0 -24632218,"Call of Cthulhu Dark Corners of the Earth",purchase,1.0,0 -24632218,"Call of Cthulhu Dark Corners of the Earth",play,24.0,0 -24632218,"Dead Rising 2 Off the Record",purchase,1.0,0 -24632218,"Dead Rising 2 Off the Record",play,23.0,0 -24632218,"Crysis 2 Maximum Edition",purchase,1.0,0 -24632218,"Crysis 2 Maximum Edition",play,22.0,0 -24632218,"FINAL FANTASY VII",purchase,1.0,0 -24632218,"FINAL FANTASY VII",play,20.0,0 -24632218,"Mark of the Ninja",purchase,1.0,0 -24632218,"Mark of the Ninja",play,19.5,0 -24632218,"Papers, Please",purchase,1.0,0 -24632218,"Papers, Please",play,19.4,0 -24632218,"Counter-Strike Global Offensive",purchase,1.0,0 -24632218,"Counter-Strike Global Offensive",play,19.0,0 -24632218,"Undertale",purchase,1.0,0 -24632218,"Undertale",play,16.8,0 -24632218,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -24632218,"METAL GEAR RISING REVENGEANCE",play,16.1,0 -24632218,"Dungeon of the Endless",purchase,1.0,0 -24632218,"Dungeon of the Endless",play,13.5,0 -24632218,"War of the Roses",purchase,1.0,0 -24632218,"War of the Roses",play,13.4,0 -24632218,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -24632218,"Shadowrun Dragonfall - Director's Cut",play,13.3,0 -24632218,"Beyond Good & Evil",purchase,1.0,0 -24632218,"Beyond Good & Evil",play,13.1,0 -24632218,"Octodad Dadliest Catch",purchase,1.0,0 -24632218,"Octodad Dadliest Catch",play,12.6,0 -24632218,"The Wolf Among Us",purchase,1.0,0 -24632218,"The Wolf Among Us",play,12.2,0 -24632218,"Chroma Squad",purchase,1.0,0 -24632218,"Chroma Squad",play,11.8,0 -24632218,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -24632218,"Deus Ex Human Revolution - The Missing Link",play,11.6,0 -24632218,"Devil May Cry 4",purchase,1.0,0 -24632218,"Devil May Cry 4",play,11.2,0 -24632218,"Hotline Miami",purchase,1.0,0 -24632218,"Hotline Miami",play,10.6,0 -24632218,"Psychonauts",purchase,1.0,0 -24632218,"Psychonauts",play,10.6,0 -24632218,"Tom Clancy's Ghost Recon Future Soldier",purchase,1.0,0 -24632218,"Tom Clancy's Ghost Recon Future Soldier",play,9.8,0 -24632218,"Portal 2",purchase,1.0,0 -24632218,"Portal 2",play,9.7,0 -24632218,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -24632218,"METAL GEAR SOLID V GROUND ZEROES",play,9.0,0 -24632218,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -24632218,"Tom Clancy's Splinter Cell Conviction",play,8.8,0 -24632218,"Don't Starve",purchase,1.0,0 -24632218,"Don't Starve",play,8.5,0 -24632218,"Guns of Icarus Online",purchase,1.0,0 -24632218,"Guns of Icarus Online",play,7.8,0 -24632218,"LUFTRAUSERS",purchase,1.0,0 -24632218,"LUFTRAUSERS",play,7.7,0 -24632218,"This War of Mine",purchase,1.0,0 -24632218,"This War of Mine",play,7.6,0 -24632218,"Far Cry 3 Blood Dragon",purchase,1.0,0 -24632218,"Far Cry 3 Blood Dragon",play,7.5,0 -24632218,"Half-Life 2 Episode One",purchase,1.0,0 -24632218,"Half-Life 2 Episode One",play,7.0,0 -24632218,"Company of Heroes Opposing Fronts",purchase,1.0,0 -24632218,"Company of Heroes Opposing Fronts",play,6.8,0 -24632218,"resident evil 4 / biohazard 4",purchase,1.0,0 -24632218,"resident evil 4 / biohazard 4",play,6.8,0 -24632218,"Ghost in the Shell Stand Alone Complex First Assault Online",purchase,1.0,0 -24632218,"Ghost in the Shell Stand Alone Complex First Assault Online",play,6.7,0 -24632218,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",purchase,1.0,0 -24632218,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",play,6.5,0 -24632218,"Half-Life 2 Episode Two",purchase,1.0,0 -24632218,"Half-Life 2 Episode Two",play,6.1,0 -24632218,"Deadlight",purchase,1.0,0 -24632218,"Deadlight",play,5.6,0 -24632218,"Alien Swarm",purchase,1.0,0 -24632218,"Alien Swarm",play,5.5,0 -24632218,"Sonic CD",purchase,1.0,0 -24632218,"Sonic CD",play,5.5,0 -24632218,"The Stanley Parable",purchase,1.0,0 -24632218,"The Stanley Parable",play,5.5,0 -24632218,"PAYDAY 2",purchase,1.0,0 -24632218,"PAYDAY 2",play,5.3,0 -24632218,"Grand Theft Auto IV",purchase,1.0,0 -24632218,"Grand Theft Auto IV",play,5.2,0 -24632218,"Hylics",purchase,1.0,0 -24632218,"Hylics",play,5.0,0 -24632218,"Counter-Strike Source",purchase,1.0,0 -24632218,"Counter-Strike Source",play,4.8,0 -24632218,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -24632218,"Star Wars - Jedi Knight II Jedi Outcast",play,4.6,0 -24632218,"Jet Set Radio",purchase,1.0,0 -24632218,"Jet Set Radio",play,4.5,0 -24632218,"Metro 2033",purchase,1.0,0 -24632218,"Metro 2033",play,4.3,0 -24632218,"Risk of Rain",purchase,1.0,0 -24632218,"Risk of Rain",play,4.2,0 -24632218,"Killer is Dead",purchase,1.0,0 -24632218,"Killer is Dead",play,3.9,0 -24632218,"Portal",purchase,1.0,0 -24632218,"Portal",play,3.8,0 -24632218,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",purchase,1.0,0 -24632218,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",play,3.3,0 -24632218,"Homeworld Remastered Collection",purchase,1.0,0 -24632218,"Homeworld Remastered Collection",play,3.3,0 -24632218,"Left 4 Dead",purchase,1.0,0 -24632218,"Left 4 Dead",play,3.3,0 -24632218,"Zeno Clash",purchase,1.0,0 -24632218,"Zeno Clash",play,3.1,0 -24632218,"Transistor",purchase,1.0,0 -24632218,"Transistor",play,2.8,0 -24632218,"I Have No Mouth, and I Must Scream",purchase,1.0,0 -24632218,"I Have No Mouth, and I Must Scream",play,2.7,0 -24632218,"Half-Life Opposing Force",purchase,1.0,0 -24632218,"Half-Life Opposing Force",play,2.7,0 -24632218,"Titan Quest",purchase,1.0,0 -24632218,"Titan Quest",play,2.6,0 -24632218,"Retro City Rampage DX",purchase,1.0,0 -24632218,"Retro City Rampage DX",play,2.5,0 -24632218,"LISA",purchase,1.0,0 -24632218,"LISA",play,2.3,0 -24632218,"Long Live The Queen",purchase,1.0,0 -24632218,"Long Live The Queen",play,2.2,0 -24632218,"Year Walk",purchase,1.0,0 -24632218,"Year Walk",play,2.1,0 -24632218,"Darwinia",purchase,1.0,0 -24632218,"Darwinia",play,1.9,0 -24632218,"Gunpoint",purchase,1.0,0 -24632218,"Gunpoint",play,1.8,0 -24632218,"Shadowrun Returns",purchase,1.0,0 -24632218,"Shadowrun Returns",play,1.8,0 -24632218,"Company of Heroes",purchase,1.0,0 -24632218,"Company of Heroes",play,1.8,0 -24632218,"Monaco",purchase,1.0,0 -24632218,"Monaco",play,1.7,0 -24632218,"Home",purchase,1.0,0 -24632218,"Home",play,1.7,0 -24632218,"Age of Empires II HD Edition",purchase,1.0,0 -24632218,"Age of Empires II HD Edition",play,1.5,0 -24632218,"The Binding of Isaac",purchase,1.0,0 -24632218,"The Binding of Isaac",play,1.2,0 -24632218,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -24632218,"Operation Flashpoint Dragon Rising",play,1.2,0 -24632218,"Multiwinia",purchase,1.0,0 -24632218,"Multiwinia",play,1.0,0 -24632218,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -24632218,"Batman Arkham Asylum GOTY Edition",play,1.0,0 -24632218,"Super Time Force Ultra",purchase,1.0,0 -24632218,"Super Time Force Ultra",play,1.0,0 -24632218,"Oddworld Stranger's Wrath HD",purchase,1.0,0 -24632218,"Oddworld Stranger's Wrath HD",play,0.9,0 -24632218,"Deus Ex The Fall",purchase,1.0,0 -24632218,"Deus Ex The Fall",play,0.9,0 -24632218,"Mirror's Edge",purchase,1.0,0 -24632218,"Mirror's Edge",play,0.9,0 -24632218,"FEZ",purchase,1.0,0 -24632218,"FEZ",play,0.9,0 -24632218,"Age of Mythology Extended Edition",purchase,1.0,0 -24632218,"Age of Mythology Extended Edition",play,0.8,0 -24632218,"DEFCON",purchase,1.0,0 -24632218,"DEFCON",play,0.7,0 -24632218,"Mighty Gunvolt",purchase,1.0,0 -24632218,"Mighty Gunvolt",play,0.6,0 -24632218,"Darksiders",purchase,1.0,0 -24632218,"Darksiders",play,0.5,0 -24632218,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -24632218,"Star Wars Jedi Knight Jedi Academy",play,0.5,0 -24632218,"Thief Deadly Shadows",purchase,1.0,0 -24632218,"Thief Deadly Shadows",play,0.4,0 -24632218,"Portal 2 - The Final Hours",purchase,1.0,0 -24632218,"Portal 2 - The Final Hours",play,0.3,0 -24632218,"Thief Gold",purchase,1.0,0 -24632218,"Thief Gold",play,0.3,0 -24632218,"Deus Ex Revision",purchase,1.0,0 -24632218,"Deus Ex Revision",play,0.2,0 -24632218,"Deus Ex Invisible War",purchase,1.0,0 -24632218,"Deus Ex Invisible War",play,0.2,0 -24632218,"Lethal League",purchase,1.0,0 -24632218,"Lethal League",play,0.2,0 -24632218,"Super Meat Boy",purchase,1.0,0 -24632218,"Super Meat Boy",play,0.2,0 -24632218,"Thief 2",purchase,1.0,0 -24632218,"Torchlight II",purchase,1.0,0 -24632218,"LIMBO",purchase,1.0,0 -24632218,"Evil Genius",purchase,1.0,0 -24632218,"Company of Heroes Tales of Valor",purchase,1.0,0 -24632218,"SpaceChem",purchase,1.0,0 -24632218,"Nidhogg",purchase,1.0,0 -24632218,"Age of Empires II HD The Forgotten",purchase,1.0,0 -24632218,"Amnesia The Dark Descent",purchase,1.0,0 -24632218,"Bad Rats",purchase,1.0,0 -24632218,"Bastion",purchase,1.0,0 -24632218,"BioShock Infinite - Season Pass",purchase,1.0,0 -24632218,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -24632218,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -24632218,"Blackwell Convergence",purchase,1.0,0 -24632218,"Blackwell Unbound",purchase,1.0,0 -24632218,"Braid",purchase,1.0,0 -24632218,"Bridge Constructor Playground",purchase,1.0,0 -24632218,"Child of Light",purchase,1.0,0 -24632218,"Chivalry Medieval Warfare",purchase,1.0,0 -24632218,"Company of Heroes (New Steam Version)",purchase,1.0,0 -24632218,"Cubemen",purchase,1.0,0 -24632218,"Cubemen 2",purchase,1.0,0 -24632218,"Day of Defeat",purchase,1.0,0 -24632218,"Deadly Premonition The Director's Cut",purchase,1.0,0 -24632218,"Deponia",purchase,1.0,0 -24632218,"Don't Starve Together Beta",purchase,1.0,0 -24632218,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -24632218,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -24632218,"Fallout New Vegas Dead Money",purchase,1.0,0 -24632218,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -24632218,"Grand Theft Auto San Andreas",purchase,1.0,0 -24632218,"Grand Theft Auto San Andreas",purchase,1.0,0 -24632218,"Half-Life 2 Deathmatch",purchase,1.0,0 -24632218,"Half-Life 2 Lost Coast",purchase,1.0,0 -24632218,"Half-Life Blue Shift",purchase,1.0,0 -24632218,"Half-Life Source",purchase,1.0,0 -24632218,"Half-Life Deathmatch Source",purchase,1.0,0 -24632218,"Indigo Prophecy",purchase,1.0,0 -24632218,"LISA Soundtrack + Art Collection",purchase,1.0,0 -24632218,"Lone Survivor The Director's Cut",purchase,1.0,0 -24632218,"Mark of the Ninja Special Edition DLC",purchase,1.0,0 -24632218,"METAL SLUG 3",purchase,1.0,0 -24632218,"METAL SLUG X",purchase,1.0,0 -24632218,"NEOTOKYO",purchase,1.0,0 -24632218,"Patch testing for Chivalry",purchase,1.0,0 -24632218,"Psychonauts Demo",purchase,1.0,0 -24632218,"Quest of Dungeons",purchase,1.0,0 -24632218,"Red Faction Armageddon",purchase,1.0,0 -24632218,"Relic Hunters Zero",purchase,1.0,0 -24632218,"Small World 2",purchase,1.0,0 -24632218,"Starbound - Unstable",purchase,1.0,0 -24632218,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -24632218,"Team Fortress Classic",purchase,1.0,0 -24632218,"The Blackwell Legacy",purchase,1.0,0 -24632218,"The Ship",purchase,1.0,0 -24632218,"The Ship Single Player",purchase,1.0,0 -24632218,"The Ship Tutorial",purchase,1.0,0 -24632218,"Thomas Was Alone",purchase,1.0,0 -24632218,"Transistor Soundtrack",purchase,1.0,0 -24632218,"Vindictus",purchase,1.0,0 -24632218,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -24632218,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -24632218,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -24632218,"War of the Roses Kingmaker",purchase,1.0,0 -24632218,"War of the Roses Balance Beta",purchase,1.0,0 -24632218,"Zeno Clash 2",purchase,1.0,0 -189272257,"Dota 2",purchase,1.0,0 -189272257,"Dota 2",play,542.0,0 -189272257,"Warframe",purchase,1.0,0 -189272257,"Archeblade",purchase,1.0,0 -189272257,"Aura Kingdom",purchase,1.0,0 -189272257,"Battlegrounds of Eldhelm",purchase,1.0,0 -189272257,"FreeStyle2 Street Basketball",purchase,1.0,0 -189272257,"GunZ 2 The Second Duel",purchase,1.0,0 -189272257,"Heroes & Generals",purchase,1.0,0 -189272257,"Loadout",purchase,1.0,0 -189272257,"Pox Nora",purchase,1.0,0 -189272257,"Quake Live",purchase,1.0,0 -189272257,"Ragnarok",purchase,1.0,0 -189272257,"Smashmuck Champions",purchase,1.0,0 -189272257,"Strife",purchase,1.0,0 -189272257,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -189272257,"Unturned",purchase,1.0,0 -189272257,"WAKFU",purchase,1.0,0 -189272257,"War Thunder",purchase,1.0,0 -308770654,"Dota 2",purchase,1.0,0 -308770654,"Dota 2",play,0.8,0 -203459103,"Blacklight Retribution",purchase,1.0,0 -203459103,"Blacklight Retribution",play,6.7,0 -203459103,"Heroes & Generals",purchase,1.0,0 -203459103,"Heroes & Generals",play,1.4,0 -203459103,"Copa Petrobras de Marcas",purchase,1.0,0 -203459103,"Copa Petrobras de Marcas",play,0.2,0 -80341091,"Team Fortress 2",purchase,1.0,0 -80341091,"Team Fortress 2",play,2.8,0 -80341091,"Dota 2",purchase,1.0,0 -80341091,"Dota 2",play,0.2,0 -306041509,"Dota 2",purchase,1.0,0 -306041509,"Dota 2",play,1.5,0 -252304245,"Counter-Strike Global Offensive",purchase,1.0,0 -252304245,"Counter-Strike Global Offensive",play,28.0,0 -252304245,"Counter-Strike Nexon Zombies",purchase,1.0,0 -252304245,"Villagers and Heroes",purchase,1.0,0 -233218574,"Dota 2",purchase,1.0,0 -233218574,"Dota 2",play,0.6,0 -162298430,"Dota 2",purchase,1.0,0 -162298430,"Dota 2",play,3.9,0 -233904235,"Robocraft",purchase,1.0,0 -233904235,"Robocraft",play,16.5,0 -233904235,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -233904235,"Cubic Castles",purchase,1.0,0 -233904235,"Double Action Boogaloo",purchase,1.0,0 -233904235,"Gunscape",purchase,1.0,0 -233904235,"Infinite Crisis",purchase,1.0,0 -233904235,"theHunter",purchase,1.0,0 -228207337,"Team Fortress 2",purchase,1.0,0 -228207337,"Team Fortress 2",play,2.8,0 -228207337,"Infinite Crisis",purchase,1.0,0 -228207337,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -246319849,"NOBUNAGA'S AMBITION Kakushin with Power Up Kit",purchase,1.0,0 -246319849,"NOBUNAGA'S AMBITION Kakushin with Power Up Kit",play,267.0,0 -246319849,"LIGHTNING RETURNS FINAL FANTASY XIII",purchase,1.0,0 -246319849,"LIGHTNING RETURNS FINAL FANTASY XIII",play,6.6,0 -4156158,"Counter-Strike",purchase,1.0,0 -4156158,"Counter-Strike",play,9.7,0 -4156158,"Day of Defeat",purchase,1.0,0 -4156158,"Deathmatch Classic",purchase,1.0,0 -4156158,"Half-Life",purchase,1.0,0 -4156158,"Half-Life Blue Shift",purchase,1.0,0 -4156158,"Half-Life Opposing Force",purchase,1.0,0 -4156158,"Ricochet",purchase,1.0,0 -4156158,"Team Fortress Classic",purchase,1.0,0 -298360007,"Dota 2",purchase,1.0,0 -298360007,"Dota 2",play,4.6,0 -86189832,"Star Wars Knights of the Old Republic",purchase,1.0,0 -86189832,"Star Wars Knights of the Old Republic",play,41.0,0 -74772820,"The Elder Scrolls V Skyrim",purchase,1.0,0 -74772820,"The Elder Scrolls V Skyrim",play,304.0,0 -74772820,"Sword of the Stars II Enhanced Edition",purchase,1.0,0 -74772820,"Sword of the Stars II Enhanced Edition",play,248.0,0 -74772820,"Avernum 4",purchase,1.0,0 -74772820,"Avernum 4",play,228.0,0 -74772820,"Avernum 5",purchase,1.0,0 -74772820,"Avernum 5",play,222.0,0 -74772820,"Borderlands",purchase,1.0,0 -74772820,"Borderlands",play,175.0,0 -74772820,"Avernum Escape From the Pit",purchase,1.0,0 -74772820,"Avernum Escape From the Pit",play,162.0,0 -74772820,"Eschalon Book 2",purchase,1.0,0 -74772820,"Eschalon Book 2",play,128.0,0 -74772820,"Borderlands 2",purchase,1.0,0 -74772820,"Borderlands 2",play,127.0,0 -74772820,"Drakensang",purchase,1.0,0 -74772820,"Drakensang",play,119.0,0 -74772820,"Avernum 6",purchase,1.0,0 -74772820,"Avernum 6",play,80.0,0 -74772820,"Deus Ex Human Revolution",purchase,1.0,0 -74772820,"Deus Ex Human Revolution",play,69.0,0 -74772820,"Assassin's Creed",purchase,1.0,0 -74772820,"Assassin's Creed",play,69.0,0 -74772820,"Assassin's Creed II",purchase,1.0,0 -74772820,"Assassin's Creed II",play,63.0,0 -74772820,"Eschalon Book 1",purchase,1.0,0 -74772820,"Eschalon Book 1",play,57.0,0 -74772820,"Crysis",purchase,1.0,0 -74772820,"Crysis",play,44.0,0 -74772820,"XCOM Enemy Unknown",purchase,1.0,0 -74772820,"XCOM Enemy Unknown",play,38.0,0 -74772820,"Fallout New Vegas",purchase,1.0,0 -74772820,"Fallout New Vegas",play,34.0,0 -74772820,"Fallen Enchantress Legendary Heroes",purchase,1.0,0 -74772820,"Fallen Enchantress Legendary Heroes",play,34.0,0 -74772820,"Freedom Force vs. the 3rd Reich",purchase,1.0,0 -74772820,"Freedom Force vs. the 3rd Reich",play,32.0,0 -74772820,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -74772820,"Batman Arkham Asylum GOTY Edition",play,28.0,0 -74772820,"Left 4 Dead 2",purchase,1.0,0 -74772820,"Left 4 Dead 2",play,22.0,0 -74772820,"Portal 2",purchase,1.0,0 -74772820,"Portal 2",play,16.4,0 -74772820,"Elven Legacy",purchase,1.0,0 -74772820,"Elven Legacy",play,14.8,0 -74772820,"Grotesque Tactics Evil Heroes",purchase,1.0,0 -74772820,"Grotesque Tactics Evil Heroes",play,12.6,0 -74772820,"Crysis Warhead",purchase,1.0,0 -74772820,"Crysis Warhead",play,12.4,0 -74772820,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -74772820,"Deus Ex Human Revolution - The Missing Link",play,11.9,0 -74772820,"Divinity II Developer's Cut",purchase,1.0,0 -74772820,"Divinity II Developer's Cut",play,11.6,0 -74772820,"Portal",purchase,1.0,0 -74772820,"Portal",play,10.2,0 -74772820,"Sid Meier's Civilization V",purchase,1.0,0 -74772820,"Sid Meier's Civilization V",play,9.1,0 -74772820,"Titan Quest",purchase,1.0,0 -74772820,"Titan Quest",play,5.8,0 -74772820,"Magicka",purchase,1.0,0 -74772820,"Magicka",play,4.6,0 -74772820,"Dead Space",purchase,1.0,0 -74772820,"Dead Space",play,1.9,0 -74772820,"Alien Swarm",purchase,1.0,0 -74772820,"Alien Swarm",play,1.4,0 -74772820,"Monday Night Combat",purchase,1.0,0 -74772820,"Monday Night Combat",play,1.2,0 -74772820,"Driver San Francisco",purchase,1.0,0 -74772820,"Driver San Francisco",play,0.8,0 -74772820,"Darksiders",purchase,1.0,0 -74772820,"Darksiders",play,0.3,0 -74772820,"Alan Wake",purchase,1.0,0 -74772820,"Assassin's Creed Brotherhood",purchase,1.0,0 -74772820,"Assassin's Creed Revelations",purchase,1.0,0 -74772820,"Batman Arkham City GOTY",purchase,1.0,0 -74772820,"BioShock 2",purchase,1.0,0 -74772820,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -74772820,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -74772820,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -74772820,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -74772820,"Crysis Wars",purchase,1.0,0 -74772820,"Dead Space 2",purchase,1.0,0 -74772820,"Divinity II - The Dragon Knight Saga",purchase,1.0,0 -74772820,"DogFighter",purchase,1.0,0 -74772820,"Drakensang The River of Time",purchase,1.0,0 -74772820,"Elven Legacy Magic",purchase,1.0,0 -74772820,"Elven Legacy Ranger",purchase,1.0,0 -74772820,"Elven Legacy Siege",purchase,1.0,0 -74772820,"Fallen Enchantress Legendary Heroes Map Pack",purchase,1.0,0 -74772820,"Fallen Enchantress Legendary Heroes Quest Pack",purchase,1.0,0 -74772820,"Grotesque Tactics 2 - Dungeons and Donuts",purchase,1.0,0 -74772820,"Holy Avatar vs. Maidens of the Dead",purchase,1.0,0 -74772820,"Lost Planet 2",purchase,1.0,0 -74772820,"Magicka Final Frontier",purchase,1.0,0 -74772820,"Magicka Frozen Lake",purchase,1.0,0 -74772820,"Magicka Nippon",purchase,1.0,0 -74772820,"Magicka Party Robes",purchase,1.0,0 -74772820,"Magicka The Watchtower",purchase,1.0,0 -74772820,"Magicka Vietnam",purchase,1.0,0 -74772820,"Magicka Wizard's Survival Kit",purchase,1.0,0 -74772820,"Prince of Persia",purchase,1.0,0 -74772820,"Prince of Persia The Forgotten Sands",purchase,1.0,0 -74772820,"Prince of Persia The Sands of Time",purchase,1.0,0 -74772820,"Prince of Persia The Two Thrones",purchase,1.0,0 -74772820,"Prince of Persia Warrior Within",purchase,1.0,0 -74772820,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -74772820,"Risen",purchase,1.0,0 -74772820,"Risen 2 - Dark Waters",purchase,1.0,0 -74772820,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -74772820,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -74772820,"Titan Quest Immortal Throne",purchase,1.0,0 -74772820,"Torchlight",purchase,1.0,0 -111425056,"Team Fortress 2",purchase,1.0,0 -111425056,"Team Fortress 2",play,1.1,0 -240135073,"Dota 2",purchase,1.0,0 -240135073,"Dota 2",play,0.7,0 -141794556,"Sid Meier's Civilization V",purchase,1.0,0 -141794556,"Sid Meier's Civilization V",play,3.9,0 -141794556,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -64611580,"Heroes & Generals",purchase,1.0,0 -64611580,"Heroes & Generals",play,72.0,0 -64611580,"SMITE",purchase,1.0,0 -64611580,"SMITE",play,25.0,0 -64611580,"Gear Up",purchase,1.0,0 -64611580,"Gear Up",play,4.5,0 -64611580,"Defiance",purchase,1.0,0 -64611580,"Defiance",play,4.4,0 -64611580,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -64611580,"Tom Clancy's Ghost Recon Phantoms - EU",play,1.5,0 -64611580,"The Mighty Quest For Epic Loot",purchase,1.0,0 -64611580,"The Mighty Quest For Epic Loot",play,1.4,0 -64611580,"AION Free-to-Play",purchase,1.0,0 -64611580,"AION Free-to-Play",play,1.4,0 -64611580,"Neverwinter",purchase,1.0,0 -64611580,"Neverwinter",play,1.2,0 -64611580,"Loadout",purchase,1.0,0 -64611580,"Loadout",play,1.0,0 -64611580,"War Thunder",purchase,1.0,0 -64611580,"War Thunder",play,0.7,0 -64611580,"Warface",purchase,1.0,0 -64611580,"Warface",play,0.5,0 -64611580,"sZone-Online",purchase,1.0,0 -64611580,"sZone-Online",play,0.4,0 -64611580,"Aftermath",purchase,1.0,0 -64611580,"Aftermath",play,0.3,0 -64611580,"Survarium",purchase,1.0,0 -64611580,"Survarium",play,0.2,0 -64611580,"Gladiators Online Death Before Dishonor",purchase,1.0,0 -64611580,"Gladiators Online Death Before Dishonor",play,0.2,0 -64611580,"Back to Dinosaur Island ",purchase,1.0,0 -64611580,"RaceRoom Racing Experience ",purchase,1.0,0 -64611580,"Star Trek Online",purchase,1.0,0 -241210827,"Terraria",purchase,1.0,0 -241210827,"Terraria",play,203.0,0 -241210827,"ARK Survival Evolved",purchase,1.0,0 -241210827,"ARK Survival Evolved",play,74.0,0 -241210827,"Garry's Mod",purchase,1.0,0 -241210827,"Garry's Mod",play,41.0,0 -241210827,"Don't Starve Together Beta",purchase,1.0,0 -241210827,"Don't Starve Together Beta",play,14.9,0 -241210827,"Rocket League",purchase,1.0,0 -241210827,"Rocket League",play,3.8,0 -241210827,"Left 4 Dead 2",purchase,1.0,0 -241210827,"Left 4 Dead 2",play,3.7,0 -241210827,"Robocraft",purchase,1.0,0 -241210827,"Robocraft",play,2.7,0 -241210827,"Five Nights at Freddy's 4",purchase,1.0,0 -241210827,"Five Nights at Freddy's 4",play,0.9,0 -241210827,"Don't Starve",purchase,1.0,0 -187356339,"Dota 2",purchase,1.0,0 -187356339,"Dota 2",play,7.3,0 -285914210,"Realm of the Mad God",purchase,1.0,0 -285914210,"Realm of the Mad God",play,0.5,0 -285914210,"Alganon",purchase,1.0,0 -22003611,"Counter-Strike Condition Zero",purchase,1.0,0 -22003611,"Counter-Strike Condition Zero",play,333.0,0 -22003611,"Counter-Strike",purchase,1.0,0 -22003611,"Counter-Strike",play,68.0,0 -22003611,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -22003611,"Counter-Strike Condition Zero Deleted Scenes",play,0.2,0 -22003611,"Day of Defeat",purchase,1.0,0 -22003611,"Ricochet",purchase,1.0,0 -22003611,"Deathmatch Classic",purchase,1.0,0 -257184455,"Team Fortress 2",purchase,1.0,0 -257184455,"Team Fortress 2",play,0.2,0 -257184455,"PlanetSide 2",purchase,1.0,0 -165906966,"Dota 2",purchase,1.0,0 -165906966,"Dota 2",play,0.1,0 -49860185,"Empire Total War",purchase,1.0,0 -49860185,"Empire Total War",play,3.1,0 -284284114,"Unturned",purchase,1.0,0 -284284114,"Unturned",play,14.7,0 -233043005,"Robocraft",purchase,1.0,0 -233043005,"Robocraft",play,88.0,0 -94842963,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -94842963,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -46030552,"Counter-Strike Global Offensive",purchase,1.0,0 -46030552,"Counter-Strike Global Offensive",play,1945.0,0 -46030552,"Counter-Strike Source",purchase,1.0,0 -46030552,"Counter-Strike Source",play,1820.0,0 -46030552,"Team Fortress 2",purchase,1.0,0 -46030552,"Team Fortress 2",play,24.0,0 -46030552,"Day of Defeat Source",purchase,1.0,0 -46030552,"Day of Defeat Source",play,8.4,0 -46030552,"Dota 2",purchase,1.0,0 -46030552,"Dota 2",play,6.7,0 -46030552,"Counter-Strike",purchase,1.0,0 -46030552,"Counter-Strike",play,5.6,0 -46030552,"Portal 2",purchase,1.0,0 -46030552,"Portal 2",play,3.2,0 -46030552,"Sniper Elite V2",purchase,1.0,0 -46030552,"Sniper Elite V2",play,1.4,0 -46030552,"Left 4 Dead 2",purchase,1.0,0 -46030552,"Left 4 Dead 2",play,1.3,0 -46030552,"Half-Life 2 Deathmatch",purchase,1.0,0 -46030552,"Half-Life 2 Deathmatch",play,1.1,0 -46030552,"Deponia",purchase,1.0,0 -46030552,"Deponia",play,0.9,0 -46030552,"Zombie Panic Source",purchase,1.0,0 -46030552,"Zombie Panic Source",play,0.7,0 -46030552,"Half-Life 2 Lost Coast",purchase,1.0,0 -46030552,"Half-Life 2 Lost Coast",play,0.7,0 -46030552,"Mirror's Edge",purchase,1.0,0 -46030552,"Mirror's Edge",play,0.4,0 -46030552,"Tactical Intervention",purchase,1.0,0 -46030552,"Tactical Intervention",play,0.2,0 -46030552,"BLOCKADE 3D",purchase,1.0,0 -46030552,"Counter-Strike Condition Zero",purchase,1.0,0 -46030552,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -46030552,"Metro 2033",purchase,1.0,0 -46030552,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -46030552,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -46030552,"The Ship",purchase,1.0,0 -46030552,"The Ship Single Player",purchase,1.0,0 -46030552,"The Ship Tutorial",purchase,1.0,0 -46030552,"Unturned",purchase,1.0,0 -251540148,"Dota 2",purchase,1.0,0 -251540148,"Dota 2",play,0.8,0 -49882352,"Portal",purchase,1.0,0 -49882352,"Portal",play,100.0,0 -49882352,"Team Fortress 2",purchase,1.0,0 -49882352,"Team Fortress 2",play,88.0,0 -49882352,"Unturned",purchase,1.0,0 -190070011,"Unturned",purchase,1.0,0 -190070011,"Unturned",play,36.0,0 -190070011,"GunZ 2 The Second Duel",purchase,1.0,0 -190070011,"GunZ 2 The Second Duel",play,15.6,0 -190070011,"War Inc. Battlezone",purchase,1.0,0 -190070011,"War Inc. Battlezone",play,0.1,0 -110397537,"Total War SHOGUN 2",purchase,1.0,0 -110397537,"Total War SHOGUN 2",play,53.0,0 -110397537,"Call of Duty Modern Warfare 2",purchase,1.0,0 -110397537,"Call of Duty Modern Warfare 2",play,32.0,0 -110397537,"Call of Duty Modern Warfare 3",purchase,1.0,0 -110397537,"Call of Duty Modern Warfare 3",play,31.0,0 -110397537,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -110397537,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.1,0 -110397537,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -168201193,"Dota 2",purchase,1.0,0 -168201193,"Dota 2",play,0.2,0 -153156310,"Dota 2",purchase,1.0,0 -153156310,"Dota 2",play,2496.0,0 -153156310,"Counter-Strike Global Offensive",purchase,1.0,0 -153156310,"Counter-Strike Global Offensive",play,930.0,0 -153156310,"No More Room in Hell",purchase,1.0,0 -153156310,"No More Room in Hell",play,64.0,0 -153156310,"Team Fortress 2",purchase,1.0,0 -153156310,"Team Fortress 2",play,0.3,0 -153156310,"Clicker Heroes",purchase,1.0,0 -153156310,"Counter-Strike Nexon Zombies",purchase,1.0,0 -87273930,"Company of Heroes (New Steam Version)",purchase,1.0,0 -87273930,"Company of Heroes (New Steam Version)",play,24.0,0 -87273930,"Company of Heroes",purchase,1.0,0 -87273930,"Company of Heroes",play,22.0,0 -87273930,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -87273930,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,10.5,0 -87273930,"Counter-Strike Global Offensive",purchase,1.0,0 -87273930,"Counter-Strike Global Offensive",play,1.7,0 -87273930,"Company of Heroes Opposing Fronts",purchase,1.0,0 -87273930,"Company of Heroes Opposing Fronts",play,0.3,0 -87273930,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -87273930,"Warhammer 40,000 Dawn of War II",play,0.3,0 -87273930,"Company of Heroes Tales of Valor",purchase,1.0,0 -87273930,"Thunder Wolves",purchase,1.0,0 -236715286,"Dota 2",purchase,1.0,0 -236715286,"Dota 2",play,3.0,0 -299255319,"Counter-Strike Nexon Zombies",purchase,1.0,0 -299255319,"Counter-Strike Nexon Zombies",play,0.1,0 -221886106,"Dota 2",purchase,1.0,0 -221886106,"Dota 2",play,7.1,0 -281927198,"Counter-Strike Global Offensive",purchase,1.0,0 -281927198,"Counter-Strike Global Offensive",play,59.0,0 -281927198,"AdVenture Capitalist",purchase,1.0,0 -281927198,"Dirty Bomb",purchase,1.0,0 -165387305,"Dota 2",purchase,1.0,0 -165387305,"Dota 2",play,2.8,0 -165387305,"Team Fortress 2",purchase,1.0,0 -165387305,"Team Fortress 2",play,1.4,0 -165387305,"Realm of the Mad God",purchase,1.0,0 -165387305,"Realm of the Mad God",play,0.4,0 -157860100,"Dota 2",purchase,1.0,0 -157860100,"Dota 2",play,7.6,0 -288074578,"Rocket League",purchase,1.0,0 -288074578,"Rocket League",play,8.9,0 -288074578,"Nosgoth",purchase,1.0,0 -214152875,"Nosgoth",purchase,1.0,0 -214152875,"Nosgoth",play,0.4,0 -197579025,"Dota 2",purchase,1.0,0 -197579025,"Dota 2",play,969.0,0 -197579025,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -197579025,"Microsoft Flight Simulator X Steam Edition",play,0.3,0 -197579025,"Dead Island Epidemic",purchase,1.0,0 -197579025,"Magicka Wizard Wars",purchase,1.0,0 -197579025,"Neverwinter",purchase,1.0,0 -197579025,"Peggle Extreme",purchase,1.0,0 -197579025,"RaceRoom Racing Experience ",purchase,1.0,0 -197579025,"RIFT",purchase,1.0,0 -197579025,"Saira",purchase,1.0,0 -197579025,"The Expendabros",purchase,1.0,0 -197579025,"Unturned",purchase,1.0,0 -197579025,"Warframe",purchase,1.0,0 -161118595,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -14095190,"Counter-Strike",purchase,1.0,0 -14095190,"Counter-Strike Condition Zero",purchase,1.0,0 -14095190,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -197999509,"Dota 2",purchase,1.0,0 -197999509,"Dota 2",play,0.6,0 -161759944,"Firefall",purchase,1.0,0 -161759944,"Firefall",play,18.4,0 -161759944,"7 Days to Die",purchase,1.0,0 -161759944,"7 Days to Die",play,11.2,0 -161759944,"Portal",purchase,1.0,0 -161759944,"Portal",play,3.9,0 -161759944,"Defiance",purchase,1.0,0 -161759944,"Defiance",play,3.0,0 -161759944,"Heroes & Generals",purchase,1.0,0 -161759944,"Heroes & Generals",play,2.7,0 -161759944,"Neverwinter",purchase,1.0,0 -161759944,"Neverwinter",play,1.5,0 -161759944,"Garry's Mod",purchase,1.0,0 -161759944,"Garry's Mod",play,1.5,0 -161759944,"Velvet Sundown",purchase,1.0,0 -161759944,"Velvet Sundown",play,1.0,0 -161759944,"Dragon's Prophet",purchase,1.0,0 -161759944,"Dragon's Prophet",play,1.0,0 -161759944,"Dizzel",purchase,1.0,0 -161759944,"Dizzel",play,0.9,0 -161759944,"Warframe",purchase,1.0,0 -161759944,"Warframe",play,0.7,0 -161759944,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -161759944,"School of Dragons How to Train Your Dragon",play,0.4,0 -161759944,"Nosgoth",purchase,1.0,0 -161759944,"Nosgoth",play,0.4,0 -161759944,"Age of Wushu",purchase,1.0,0 -161759944,"Blacklight Retribution",purchase,1.0,0 -113661299,"Dota 2",purchase,1.0,0 -113661299,"Dota 2",play,0.1,0 -125895194,"Dota 2",purchase,1.0,0 -125895194,"Dota 2",play,5.8,0 -141701102,"Dota 2",purchase,1.0,0 -141701102,"Dota 2",play,55.0,0 -186123132,"Unturned",purchase,1.0,0 -186123132,"Unturned",play,0.1,0 -186123132,"Robocraft",purchase,1.0,0 -135148415,"Afterfall InSanity - Dirty Arena Edition",purchase,1.0,0 -135148415,"Afterfall InSanity - Dirty Arena Edition",play,0.1,0 -184314651,"The Elder Scrolls V Skyrim",purchase,1.0,0 -184314651,"The Elder Scrolls V Skyrim",play,206.0,0 -184314651,"The Witcher 3 Wild Hunt",purchase,1.0,0 -184314651,"The Witcher 3 Wild Hunt",play,127.0,0 -184314651,"Portal 2",purchase,1.0,0 -184314651,"Portal 2",play,103.0,0 -184314651,"Call of Duty Black Ops",purchase,1.0,0 -184314651,"Call of Duty Black Ops",play,94.0,0 -184314651,"Saints Row IV",purchase,1.0,0 -184314651,"Saints Row IV",play,30.0,0 -184314651,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -184314651,"Call of Duty Black Ops - Multiplayer",play,14.6,0 -184314651,"Dead Island Riptide",purchase,1.0,0 -184314651,"Dead Island Riptide",play,11.1,0 -184314651,"Far Cry 4",purchase,1.0,0 -184314651,"Far Cry 4",play,4.7,0 -184314651,"Grand Theft Auto V",purchase,1.0,0 -184314651,"Grand Theft Auto V",play,4.7,0 -184314651,"Portal",purchase,1.0,0 -184314651,"Portal",play,4.2,0 -184314651,"Fallout New Vegas",purchase,1.0,0 -184314651,"Fallout New Vegas",play,3.6,0 -184314651,"Killing Floor",purchase,1.0,0 -184314651,"Killing Floor",play,3.2,0 -184314651,"Goat Simulator",purchase,1.0,0 -184314651,"Goat Simulator",play,3.0,0 -184314651,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -184314651,"Grand Theft Auto Episodes from Liberty City",play,1.5,0 -184314651,"Secrets of Rtikon",purchase,1.0,0 -184314651,"Secrets of Rtikon",play,1.3,0 -184314651,"HuniePop",purchase,1.0,0 -184314651,"HuniePop",play,0.8,0 -184314651,"The Talos Principle",purchase,1.0,0 -184314651,"The Talos Principle",play,0.4,0 -184314651,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -184314651,"Garry's Mod",purchase,1.0,0 -184314651,"Assassins Creed Unity",purchase,1.0,0 -184314651,"Dead Island",purchase,1.0,0 -184314651,"Get Off My Lawn!",purchase,1.0,0 -184314651,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -184314651,"Saints Row 2",purchase,1.0,0 -184314651,"Saints Row The Third",purchase,1.0,0 -184314651,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -184314651,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -184314651,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -184314651,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -138581545,"Torchlight II",purchase,1.0,0 -138581545,"Torchlight II",play,65.0,0 -138581545,"Bookworm Adventures Deluxe",purchase,1.0,0 -138581545,"Bookworm Adventures Deluxe",play,25.0,0 -138581545,"Bastion",purchase,1.0,0 -138581545,"Bastion",play,17.0,0 -138581545,"BookWorm Adventures Volume 2",purchase,1.0,0 -138581545,"BookWorm Adventures Volume 2",play,13.5,0 -138581545,"Gauntlet ",purchase,1.0,0 -138581545,"Gauntlet ",play,6.0,0 -138581545,"Borderlands",purchase,1.0,0 -138581545,"Borderlands",play,4.5,0 -138581545,"Warframe",purchase,1.0,0 -138581545,"Warframe",play,3.0,0 -138581545,"Borderlands 2",purchase,1.0,0 -138581545,"Borderlands 2",play,2.5,0 -138581545,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -138581545,"Baldur's Gate Enhanced Edition",play,2.4,0 -138581545,"FTL Faster Than Light",purchase,1.0,0 -138581545,"FTL Faster Than Light",play,0.8,0 -138581545,"Trine 2",purchase,1.0,0 -138581545,"Trine 2",play,0.5,0 -138581545,"Transistor",purchase,1.0,0 -138581545,"Transistor",play,0.5,0 -138581545,"Orcs Must Die! 2",purchase,1.0,0 -138581545,"Orcs Must Die! 2",play,0.2,0 -138581545,"Oddworld Abe's Oddysee",purchase,1.0,0 -138581545,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -138581545,"Killing Floor",purchase,1.0,0 -138581545,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -138581545,"Oddworld Abe's Exoddus",purchase,1.0,0 -138581545,"Oddworld Munch's Oddysee",purchase,1.0,0 -138581545,"Oddworld Stranger's Wrath HD",purchase,1.0,0 -27152433,"Counter-Strike",purchase,1.0,0 -27152433,"Counter-Strike",play,0.5,0 -27152433,"Counter-Strike Condition Zero",purchase,1.0,0 -27152433,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -88393171,"Team Fortress 2",purchase,1.0,0 -88393171,"Team Fortress 2",play,9.2,0 -223330523,"Garry's Mod",purchase,1.0,0 -223330523,"Garry's Mod",play,158.0,0 -223330523,"Portal 2",purchase,1.0,0 -223330523,"Portal 2",play,64.0,0 -223330523,"Portal Stories Mel",purchase,1.0,0 -223330523,"Portal Stories Mel",play,5.9,0 -223330523,"Thinking with Time Machine",purchase,1.0,0 -223330523,"Thinking with Time Machine",play,3.0,0 -223330523,"World of Guns Gun Disassembly",purchase,1.0,0 -223330523,"World of Guns Gun Disassembly",play,1.1,0 -223330523,"Block N Load",purchase,1.0,0 -223330523,"Marvel Heroes 2015",purchase,1.0,0 -223330523,"Quake Live",purchase,1.0,0 -199908506,"Heroes & Generals",purchase,1.0,0 -199908506,"Heroes & Generals",play,3.7,0 -199908506,"F.E.A.R. Online",purchase,1.0,0 -199908506,"F.E.A.R. Online",play,1.7,0 -199908506,"Counter-Strike Nexon Zombies",purchase,1.0,0 -199908506,"Counter-Strike Nexon Zombies",play,1.5,0 -199908506,"Team Fortress 2",purchase,1.0,0 -199908506,"Team Fortress 2",play,0.2,0 -199908506,"Killing Floor - Toy Master",purchase,1.0,0 -68597425,"Dota 2",purchase,1.0,0 -68597425,"Dota 2",play,316.0,0 -198918504,"Dota 2",purchase,1.0,0 -198918504,"Dota 2",play,1054.0,0 -198918504,"Grand Chase",purchase,1.0,0 -182825830,"Dota 2",purchase,1.0,0 -182825830,"Dota 2",play,33.0,0 -86054951,"Half-Life 2 Deathmatch",purchase,1.0,0 -86054951,"Half-Life 2 Deathmatch",play,1.1,0 -86054951,"Half-Life 2 Lost Coast",purchase,1.0,0 -133534893,"Total War ROME II - Emperor Edition",purchase,1.0,0 -133534893,"Total War ROME II - Emperor Edition",play,11.8,0 -133534893,"Dota 2",purchase,1.0,0 -133534893,"Dota 2",play,4.4,0 -133534893,"Alien Swarm",purchase,1.0,0 -133534893,"Alien Swarm",play,0.1,0 -303456254,"Dota 2",purchase,1.0,0 -303456254,"Dota 2",play,22.0,0 -238516802,"Archeblade",purchase,1.0,0 -238516802,"Archeblade",play,3.0,0 -238516802,"Team Fortress 2",purchase,1.0,0 -238516802,"Team Fortress 2",play,0.8,0 -238516802,"Quintet",purchase,1.0,0 -238516802,"Quintet",play,0.5,0 -238516802,"Villagers and Heroes",purchase,1.0,0 -238516802,"Villagers and Heroes",play,0.4,0 -238516802,"Marvel Heroes 2015",purchase,1.0,0 -238516802,"Rise of Incarnates",purchase,1.0,0 -238516802,"Survarium",purchase,1.0,0 -238516802,"TERA",purchase,1.0,0 -238516802,"Victory Command",purchase,1.0,0 -238516802,"War of the Roses",purchase,1.0,0 -132196353,"Dota 2",purchase,1.0,0 -132196353,"Dota 2",play,970.0,0 -132196353,"Counter-Strike Global Offensive",purchase,1.0,0 -132196353,"Counter-Strike Global Offensive",play,601.0,0 -132196353,"Warframe",purchase,1.0,0 -132196353,"Warframe",play,212.0,0 -132196353,"Team Fortress 2",purchase,1.0,0 -132196353,"Team Fortress 2",play,102.0,0 -132196353,"TERA",purchase,1.0,0 -132196353,"TERA",play,31.0,0 -132196353,"Left 4 Dead 2",purchase,1.0,0 -132196353,"Left 4 Dead 2",play,21.0,0 -132196353,"ORION Prelude",purchase,1.0,0 -132196353,"ORION Prelude",play,13.8,0 -132196353,"Dead Island Epidemic",purchase,1.0,0 -132196353,"Dead Island Epidemic",play,6.5,0 -132196353,"No More Room in Hell",purchase,1.0,0 -132196353,"No More Room in Hell",play,4.3,0 -132196353,"The Binding of Isaac",purchase,1.0,0 -132196353,"The Binding of Isaac",play,3.7,0 -132196353,"Terraria",purchase,1.0,0 -132196353,"Terraria",play,3.3,0 -132196353,"Neverwinter",purchase,1.0,0 -132196353,"Neverwinter",play,2.7,0 -132196353,"Hero Siege",purchase,1.0,0 -132196353,"Hero Siege",play,2.7,0 -132196353,"Survarium",purchase,1.0,0 -132196353,"Survarium",play,2.5,0 -132196353,"Heroes & Generals",purchase,1.0,0 -132196353,"Heroes & Generals",play,2.1,0 -132196353,"Trove",purchase,1.0,0 -132196353,"Trove",play,1.7,0 -132196353,"Metro 2033",purchase,1.0,0 -132196353,"Metro 2033",play,1.6,0 -132196353,"Caster",purchase,1.0,0 -132196353,"Caster",play,1.2,0 -132196353,"Unturned",purchase,1.0,0 -132196353,"Unturned",play,1.1,0 -132196353,"Sins of a Dark Age",purchase,1.0,0 -132196353,"Sins of a Dark Age",play,1.1,0 -132196353,"Sniper Elite V2",purchase,1.0,0 -132196353,"Sniper Elite V2",play,0.5,0 -132196353,"Two Worlds Epic Edition",purchase,1.0,0 -132196353,"Two Worlds Epic Edition",play,0.5,0 -132196353,"DiggerOnline",purchase,1.0,0 -132196353,"DiggerOnline",play,0.4,0 -132196353,"Revolution Ace",purchase,1.0,0 -132196353,"Revolution Ace",play,0.3,0 -132196353,"Castle Crashers",purchase,1.0,0 -132196353,"Castle Crashers",play,0.3,0 -132196353,"Alien Swarm",purchase,1.0,0 -132196353,"Alien Swarm",play,0.1,0 -132196353,"Enclave",purchase,1.0,0 -132196353,"Enclave",play,0.1,0 -132196353,"Afterfall InSanity Extended Edition",purchase,1.0,0 -132196353,"Afterfall InSanity Extended Edition",play,0.1,0 -132196353,"Gun Monkeys",purchase,1.0,0 -132196353,"Gun Monkeys",play,0.1,0 -132196353,"Dota 2 - The International 2015 - Player Profiles",purchase,1.0,0 -132196353,"Knights and Merchants",purchase,1.0,0 -132196353,"The Hat Man Shadow Ward",purchase,1.0,0 -132196353,"Magicka Wizard Wars",purchase,1.0,0 -132196353,"Borealis",purchase,1.0,0 -132196353,"Castle Crashers - Blacksmith Pack",purchase,1.0,0 -132196353,"Castle Crashers - Pink Knight Pack",purchase,1.0,0 -132196353,"Commander Conquest of the Americas Gold",purchase,1.0,0 -132196353,"Cry of Fear",purchase,1.0,0 -132196353,"Dino D-Day",purchase,1.0,0 -132196353,"Dwarfs!?",purchase,1.0,0 -132196353,"East India Company Gold",purchase,1.0,0 -132196353,"Frozen Hearth",purchase,1.0,0 -132196353,"GTR Evolution",purchase,1.0,0 -132196353,"Into The War",purchase,1.0,0 -132196353,"KnightShift",purchase,1.0,0 -132196353,"PAYDAY The Heist",purchase,1.0,0 -132196353,"Pirates of Black Cove Gold",purchase,1.0,0 -132196353,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -132196353,"RACE 07",purchase,1.0,0 -132196353,"RaceRoom Racing Experience ",purchase,1.0,0 -132196353,"Really Big Sky",purchase,1.0,0 -132196353,"RIFT",purchase,1.0,0 -132196353,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -132196353,"Shadows on the Vatican - Act I Greed",purchase,1.0,0 -132196353,"SpaceChem",purchase,1.0,0 -132196353,"The Expendabros",purchase,1.0,0 -132196353,"TI5 - CDEC's Journey to The Majors",purchase,1.0,0 -132196353,"TI5 - EG Champions of TI5",purchase,1.0,0 -132196353,"TI5 - Player Profiles Cloud9 - NoTail",purchase,1.0,0 -132196353,"TI5 - Player Profiles Complexity - zfreek",purchase,1.0,0 -132196353,"TI5 - Player Profiles EG - Suma1L",purchase,1.0,0 -132196353,"TI5 - Player Profiles EHOME - ROTK",purchase,1.0,0 -132196353,"TI5 - Player Profiles Empire - Alohadance",purchase,1.0,0 -132196353,"TI5 - Player Profiles Fnatic - Kecik-Imba",purchase,1.0,0 -132196353,"TI5 - Player Profiles Invictus Gaming - Ferrari",purchase,1.0,0 -132196353,"TI5 - Player Profiles LGD - Xiao8",purchase,1.0,0 -132196353,"TI5 - Player Profiles MVPHot6 - HEEN",purchase,1.0,0 -132196353,"TI5 - Player Profiles NAVI - XBOCT",purchase,1.0,0 -132196353,"TI5 - Player Profiles Newbee - Mu",purchase,1.0,0 -132196353,"TI5 - Player Profiles TeamSecret - S4",purchase,1.0,0 -132196353,"TI5 - Player Profiles Vici - fy",purchase,1.0,0 -132196353,"TI5 - Player Profiles VirtusPro - FNG",purchase,1.0,0 -132196353,"Vertiginous Golf",purchase,1.0,0 -132196353,"War of the Roses",purchase,1.0,0 -45292137,"Counter-Strike Global Offensive",purchase,1.0,0 -45292137,"Counter-Strike Global Offensive",play,772.0,0 -45292137,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -45292137,"Call of Duty Black Ops II - Multiplayer",play,142.0,0 -45292137,"APB Reloaded",purchase,1.0,0 -45292137,"APB Reloaded",play,127.0,0 -45292137,"Counter-Strike",purchase,1.0,0 -45292137,"Counter-Strike",play,115.0,0 -45292137,"The Crew",purchase,1.0,0 -45292137,"The Crew",play,38.0,0 -45292137,"Grand Theft Auto V",purchase,1.0,0 -45292137,"Grand Theft Auto V",play,38.0,0 -45292137,"Rocket League",purchase,1.0,0 -45292137,"Rocket League",play,34.0,0 -45292137,"Garry's Mod",purchase,1.0,0 -45292137,"Garry's Mod",play,29.0,0 -45292137,"Clicker Heroes",purchase,1.0,0 -45292137,"Clicker Heroes",play,21.0,0 -45292137,"Unturned",purchase,1.0,0 -45292137,"Unturned",play,20.0,0 -45292137,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -45292137,"Call of Duty Black Ops II - Zombies",play,17.1,0 -45292137,"Dota 2",purchase,1.0,0 -45292137,"Dota 2",play,15.0,0 -45292137,"Loadout Campaign Beta",purchase,1.0,0 -45292137,"Loadout Campaign Beta",play,12.3,0 -45292137,"Call of Duty Black Ops II",purchase,1.0,0 -45292137,"Call of Duty Black Ops II",play,10.5,0 -45292137,"Robocraft",purchase,1.0,0 -45292137,"Robocraft",play,9.8,0 -45292137,"DC Universe Online",purchase,1.0,0 -45292137,"DC Universe Online",play,7.9,0 -45292137,"Left 4 Dead 2",purchase,1.0,0 -45292137,"Left 4 Dead 2",play,6.2,0 -45292137,"Team Fortress 2",purchase,1.0,0 -45292137,"Team Fortress 2",play,6.1,0 -45292137,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -45292137,"Viscera Cleanup Detail Santa's Rampage",play,5.7,0 -45292137,"Gear Up",purchase,1.0,0 -45292137,"Gear Up",play,4.0,0 -45292137,"Neverwinter",purchase,1.0,0 -45292137,"Neverwinter",play,3.6,0 -45292137,"AdVenture Capitalist",purchase,1.0,0 -45292137,"AdVenture Capitalist",play,2.8,0 -45292137,"The Expendabros",purchase,1.0,0 -45292137,"The Expendabros",play,2.4,0 -45292137,"Blacklight Retribution",purchase,1.0,0 -45292137,"Blacklight Retribution",play,1.1,0 -45292137,"Spiral Knights",purchase,1.0,0 -45292137,"Spiral Knights",play,0.8,0 -45292137,"No More Room in Hell",purchase,1.0,0 -45292137,"No More Room in Hell",play,0.6,0 -45292137,"Brick-Force",purchase,1.0,0 -45292137,"Brick-Force",play,0.5,0 -45292137,"RaceRoom Racing Experience ",purchase,1.0,0 -45292137,"RaceRoom Racing Experience ",play,0.4,0 -45292137,"Hazard Ops",purchase,1.0,0 -45292137,"Hazard Ops",play,0.2,0 -45292137,"Arma 2 Operation Arrowhead",purchase,1.0,0 -45292137,"Arma 2 Operation Arrowhead",play,0.2,0 -45292137,"Arma 2",purchase,1.0,0 -45292137,"Warface",purchase,1.0,0 -45292137,"Arma 2 DayZ Mod",purchase,1.0,0 -45292137,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -45292137,"Counter-Strike Condition Zero",purchase,1.0,0 -45292137,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -45292137,"Counter-Strike Nexon Zombies",purchase,1.0,0 -45292137,"Dead Island Epidemic",purchase,1.0,0 -45292137,"Loadout",purchase,1.0,0 -45292137,"Quake Live",purchase,1.0,0 -45292137,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -45292137,"Warframe",purchase,1.0,0 -89410140,"Team Fortress 2",purchase,1.0,0 -89410140,"Team Fortress 2",play,3.1,0 -196498799,"Quake Live",purchase,1.0,0 -196498799,"Quake Live",play,11.6,0 -196498799,"Unturned",purchase,1.0,0 -196498799,"Unturned",play,6.0,0 -196498799,"F.E.A.R. Online",purchase,1.0,0 -196498799,"No More Room in Hell",purchase,1.0,0 -196498799,"Zombies Monsters Robots",purchase,1.0,0 -58345543,"Spiral Knights",purchase,1.0,0 -58345543,"Spiral Knights",play,70.0,0 -58345543,"Blacklight Retribution",purchase,1.0,0 -58345543,"Blacklight Retribution",play,64.0,0 -58345543,"Dungeon Defenders",purchase,1.0,0 -58345543,"Dungeon Defenders",play,56.0,0 -58345543,"Terraria",purchase,1.0,0 -58345543,"Terraria",play,54.0,0 -58345543,"Borderlands 2",purchase,1.0,0 -58345543,"Borderlands 2",play,53.0,0 -58345543,"Unturned",purchase,1.0,0 -58345543,"Unturned",play,49.0,0 -58345543,"Defiance",purchase,1.0,0 -58345543,"Defiance",play,45.0,0 -58345543,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -58345543,"Call of Duty Modern Warfare 2 - Multiplayer",play,43.0,0 -58345543,"Saints Row The Third",purchase,1.0,0 -58345543,"Saints Row The Third",play,40.0,0 -58345543,"Dota 2",purchase,1.0,0 -58345543,"Dota 2",play,36.0,0 -58345543,"Deus Ex Human Revolution",purchase,1.0,0 -58345543,"Deus Ex Human Revolution",play,35.0,0 -58345543,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -58345543,"Call of Duty Ghosts - Multiplayer",play,34.0,0 -58345543,"Left 4 Dead 2",purchase,1.0,0 -58345543,"Left 4 Dead 2",play,30.0,0 -58345543,"Counter-Strike Global Offensive",purchase,1.0,0 -58345543,"Counter-Strike Global Offensive",play,29.0,0 -58345543,"FINAL FANTASY XIV A Realm Reborn",purchase,1.0,0 -58345543,"FINAL FANTASY XIV A Realm Reborn",play,25.0,0 -58345543,"Sid Meier's Civilization V",purchase,1.0,0 -58345543,"Sid Meier's Civilization V",play,23.0,0 -58345543,"Garry's Mod",purchase,1.0,0 -58345543,"Garry's Mod",play,21.0,0 -58345543,"Dirty Bomb",purchase,1.0,0 -58345543,"Dirty Bomb",play,17.4,0 -58345543,"Far Cry 3",purchase,1.0,0 -58345543,"Far Cry 3",play,16.7,0 -58345543,"Call of Duty Modern Warfare 2",purchase,1.0,0 -58345543,"Call of Duty Modern Warfare 2",play,16.7,0 -58345543,"Assassin's Creed",purchase,1.0,0 -58345543,"Assassin's Creed",play,16.5,0 -58345543,"Defense Grid The Awakening",purchase,1.0,0 -58345543,"Defense Grid The Awakening",play,16.3,0 -58345543,"The Elder Scrolls V Skyrim",purchase,1.0,0 -58345543,"The Elder Scrolls V Skyrim",play,16.0,0 -58345543,"Saints Row IV",purchase,1.0,0 -58345543,"Saints Row IV",play,14.4,0 -58345543,"Dragon's Prophet",purchase,1.0,0 -58345543,"Dragon's Prophet",play,14.0,0 -58345543,"Gratuitous Space Battles",purchase,1.0,0 -58345543,"Gratuitous Space Battles",play,13.3,0 -58345543,"BioShock Infinite",purchase,1.0,0 -58345543,"BioShock Infinite",play,12.3,0 -58345543,"DiRT 3",purchase,1.0,0 -58345543,"DiRT 3",play,12.2,0 -58345543,"Super Meat Boy",purchase,1.0,0 -58345543,"Super Meat Boy",play,11.8,0 -58345543,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -58345543,"Warhammer 40,000 Dawn of War II",play,11.8,0 -58345543,"Red Faction Armageddon",purchase,1.0,0 -58345543,"Red Faction Armageddon",play,11.6,0 -58345543,"1... 2... 3... KICK IT! (Drop That Beat Like an Ugly Baby)",purchase,1.0,0 -58345543,"1... 2... 3... KICK IT! (Drop That Beat Like an Ugly Baby)",play,11.2,0 -58345543,"Grand Theft Auto IV",purchase,1.0,0 -58345543,"Grand Theft Auto IV",play,10.9,0 -58345543,"Magicka",purchase,1.0,0 -58345543,"Magicka",play,10.8,0 -58345543,"Medal of Honor(TM) Single Player",purchase,1.0,0 -58345543,"Medal of Honor(TM) Single Player",play,10.7,0 -58345543,"Card Hunter",purchase,1.0,0 -58345543,"Card Hunter",play,10.5,0 -58345543,"Portal 2",purchase,1.0,0 -58345543,"Portal 2",play,10.3,0 -58345543,"Team Fortress 2",purchase,1.0,0 -58345543,"Team Fortress 2",play,10.2,0 -58345543,"Darksiders II",purchase,1.0,0 -58345543,"Darksiders II",play,9.2,0 -58345543,"VVVVVV",purchase,1.0,0 -58345543,"VVVVVV",play,8.9,0 -58345543,"Darksiders",purchase,1.0,0 -58345543,"Darksiders",play,8.3,0 -58345543,"Blocks That Matter",purchase,1.0,0 -58345543,"Blocks That Matter",play,8.0,0 -58345543,"Call of Duty Ghosts",purchase,1.0,0 -58345543,"Call of Duty Ghosts",play,7.8,0 -58345543,"The Binding of Isaac",purchase,1.0,0 -58345543,"The Binding of Isaac",play,7.4,0 -58345543,"Solar 2",purchase,1.0,0 -58345543,"Solar 2",play,7.0,0 -58345543,"Atom Zombie Smasher ",purchase,1.0,0 -58345543,"Atom Zombie Smasher ",play,6.2,0 -58345543,"SimCity 4 Deluxe",purchase,1.0,0 -58345543,"SimCity 4 Deluxe",play,6.0,0 -58345543,"Warframe",purchase,1.0,0 -58345543,"Warframe",play,5.9,0 -58345543,"Far Cry 2",purchase,1.0,0 -58345543,"Far Cry 2",play,5.8,0 -58345543,"Ultratron",purchase,1.0,0 -58345543,"Ultratron",play,5.7,0 -58345543,"DiRT 3 Complete Edition",purchase,1.0,0 -58345543,"DiRT 3 Complete Edition",play,5.7,0 -58345543,"Trine 2",purchase,1.0,0 -58345543,"Trine 2",play,5.6,0 -58345543,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -58345543,"Deus Ex Human Revolution - Director's Cut",play,5.4,0 -58345543,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -58345543,"A.V.A - Alliance of Valiant Arms",play,5.2,0 -58345543,"Dead Island",purchase,1.0,0 -58345543,"Dead Island",play,5.2,0 -58345543,"Fallout New Vegas",purchase,1.0,0 -58345543,"Fallout New Vegas",play,5.2,0 -58345543,"BIT.TRIP RUNNER",purchase,1.0,0 -58345543,"BIT.TRIP RUNNER",play,5.2,0 -58345543,"Tomb Raider",purchase,1.0,0 -58345543,"Tomb Raider",play,5.0,0 -58345543,"Krater",purchase,1.0,0 -58345543,"Krater",play,4.9,0 -58345543,"Torchlight",purchase,1.0,0 -58345543,"Torchlight",play,4.9,0 -58345543,"Two Worlds II",purchase,1.0,0 -58345543,"Two Worlds II",play,4.7,0 -58345543,"FEZ",purchase,1.0,0 -58345543,"FEZ",play,4.7,0 -58345543,"Dungeons of Dredmor",purchase,1.0,0 -58345543,"Dungeons of Dredmor",play,4.7,0 -58345543,"Forge",purchase,1.0,0 -58345543,"Forge",play,4.7,0 -58345543,"StarForge",purchase,1.0,0 -58345543,"StarForge",play,4.5,0 -58345543,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -58345543,"Burnout Paradise The Ultimate Box",play,4.5,0 -58345543,"Psychonauts",purchase,1.0,0 -58345543,"Psychonauts",play,4.5,0 -58345543,"Amnesia The Dark Descent",purchase,1.0,0 -58345543,"Amnesia The Dark Descent",play,4.4,0 -58345543,"X-Blades",purchase,1.0,0 -58345543,"X-Blades",play,4.4,0 -58345543,"Hamilton's Great Adventure",purchase,1.0,0 -58345543,"Hamilton's Great Adventure",play,4.4,0 -58345543,"Steel Storm Burning Retribution",purchase,1.0,0 -58345543,"Steel Storm Burning Retribution",play,4.4,0 -58345543,"Borderlands",purchase,1.0,0 -58345543,"Borderlands",play,4.4,0 -58345543,"Painkiller Hell & Damnation",purchase,1.0,0 -58345543,"Painkiller Hell & Damnation",play,4.3,0 -58345543,"Codename CURE",purchase,1.0,0 -58345543,"Codename CURE",play,4.3,0 -58345543,"Bastion",purchase,1.0,0 -58345543,"Bastion",play,4.2,0 -58345543,"Risen 2 - Dark Waters",purchase,1.0,0 -58345543,"Risen 2 - Dark Waters",play,4.2,0 -58345543,"ORION Prelude",purchase,1.0,0 -58345543,"ORION Prelude",play,4.2,0 -58345543,"Offspring Fling!",purchase,1.0,0 -58345543,"Offspring Fling!",play,4.2,0 -58345543,"Space Pirates and Zombies",purchase,1.0,0 -58345543,"Space Pirates and Zombies",play,4.2,0 -58345543,"AI War Fleet Command",purchase,1.0,0 -58345543,"AI War Fleet Command",play,4.2,0 -58345543,"Strike Suit Infinity",purchase,1.0,0 -58345543,"Strike Suit Infinity",play,4.2,0 -58345543,"SpaceChem",purchase,1.0,0 -58345543,"SpaceChem",play,4.1,0 -58345543,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -58345543,"Tom Clancy's Ghost Recon Phantoms - NA",play,4.1,0 -58345543,"Two Worlds Epic Edition",purchase,1.0,0 -58345543,"Two Worlds Epic Edition",play,4.1,0 -58345543,"Closure",purchase,1.0,0 -58345543,"Closure",play,4.1,0 -58345543,"Jagged Alliance 2 - Wildfire ",purchase,1.0,0 -58345543,"Jagged Alliance 2 - Wildfire ",play,4.1,0 -58345543,"Shank 2",purchase,1.0,0 -58345543,"Shank 2",play,4.1,0 -58345543,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -58345543,"Medal of Honor(TM) Multiplayer",play,4.1,0 -58345543,"Darksiders II Deathinitive Edition",purchase,1.0,0 -58345543,"Darksiders II Deathinitive Edition",play,4.1,0 -58345543,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -58345543,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,4.1,0 -58345543,"Faerie Solitaire",purchase,1.0,0 -58345543,"Faerie Solitaire",play,4.1,0 -58345543,"Anomaly Warzone Earth",purchase,1.0,0 -58345543,"Anomaly Warzone Earth",play,3.9,0 -58345543,"Portal",purchase,1.0,0 -58345543,"Portal",play,3.9,0 -58345543,"Killing Floor",purchase,1.0,0 -58345543,"Killing Floor",play,3.8,0 -58345543,"Half-Life 2",purchase,1.0,0 -58345543,"Half-Life 2",play,3.8,0 -58345543,"Tactical Intervention",purchase,1.0,0 -58345543,"Tactical Intervention",play,3.7,0 -58345543,"Audiosurf",purchase,1.0,0 -58345543,"Audiosurf",play,3.6,0 -58345543,"Counter-Strike Source",purchase,1.0,0 -58345543,"Counter-Strike Source",play,3.6,0 -58345543,"Need for Speed Hot Pursuit",purchase,1.0,0 -58345543,"Need for Speed Hot Pursuit",play,3.6,0 -58345543,"GRID",purchase,1.0,0 -58345543,"GRID",play,3.6,0 -58345543,"Section 8 Prejudice",purchase,1.0,0 -58345543,"Section 8 Prejudice",play,3.3,0 -58345543,"Indie Game The Movie",purchase,1.0,0 -58345543,"Indie Game The Movie",play,3.2,0 -58345543,"PlanetSide 2",purchase,1.0,0 -58345543,"PlanetSide 2",play,3.2,0 -58345543,"Realm of the Mad God",purchase,1.0,0 -58345543,"Realm of the Mad God",play,3.0,0 -58345543,"Cave Story+",purchase,1.0,0 -58345543,"Cave Story+",play,3.0,0 -58345543,"BIT.TRIP BEAT",purchase,1.0,0 -58345543,"BIT.TRIP BEAT",play,3.0,0 -58345543,"Devilian",purchase,1.0,0 -58345543,"Devilian",play,2.9,0 -58345543,"Beat Hazard",purchase,1.0,0 -58345543,"Beat Hazard",play,2.9,0 -58345543,"Grimm",purchase,1.0,0 -58345543,"Grimm",play,2.8,0 -58345543,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -58345543,"Dragon Age Origins - Ultimate Edition",play,2.7,0 -58345543,"Shatter",purchase,1.0,0 -58345543,"Shatter",play,2.7,0 -58345543,"Mirror's Edge",purchase,1.0,0 -58345543,"Mirror's Edge",play,2.7,0 -58345543,"Tomb Raider Underworld",purchase,1.0,0 -58345543,"Tomb Raider Underworld",play,2.6,0 -58345543,"Landmark",purchase,1.0,0 -58345543,"Landmark",play,2.6,0 -58345543,"RIFT",purchase,1.0,0 -58345543,"RIFT",play,2.4,0 -58345543,"Saints Row 2",purchase,1.0,0 -58345543,"Saints Row 2",play,2.2,0 -58345543,"Hard Reset",purchase,1.0,0 -58345543,"Hard Reset",play,2.1,0 -58345543,"BioShock",purchase,1.0,0 -58345543,"BioShock",play,2.0,0 -58345543,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -58345543,"Fallout 3 - Game of the Year Edition",play,2.0,0 -58345543,"Company of Heroes",purchase,1.0,0 -58345543,"Company of Heroes",play,1.9,0 -58345543,"Company of Heroes (New Steam Version)",purchase,1.0,0 -58345543,"Company of Heroes (New Steam Version)",play,1.9,0 -58345543,"EverQuest Free-to-Play",purchase,1.0,0 -58345543,"EverQuest Free-to-Play",play,1.9,0 -58345543,"Loadout",purchase,1.0,0 -58345543,"Loadout",play,1.7,0 -58345543,"Forsaken World ",purchase,1.0,0 -58345543,"Forsaken World ",play,1.7,0 -58345543,"Jamestown",purchase,1.0,0 -58345543,"Jamestown",play,1.7,0 -58345543,"Rusty Hearts",purchase,1.0,0 -58345543,"Rusty Hearts",play,1.5,0 -58345543,"AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome",purchase,1.0,0 -58345543,"AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome",play,1.2,0 -58345543,"Dead Space",purchase,1.0,0 -58345543,"Dead Space",play,1.1,0 -58345543,"Vindictus",purchase,1.0,0 -58345543,"Vindictus",play,1.1,0 -58345543,"NightSky",purchase,1.0,0 -58345543,"NightSky",play,1.0,0 -58345543,"Super Hexagon",purchase,1.0,0 -58345543,"Super Hexagon",play,1.0,0 -58345543,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -58345543,"S.T.A.L.K.E.R. Call of Pripyat",play,0.9,0 -58345543,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -58345543,"Deus Ex Human Revolution - The Missing Link",play,0.9,0 -58345543,"Metro 2033",purchase,1.0,0 -58345543,"Metro 2033",play,0.9,0 -58345543,"Tribes Ascend",purchase,1.0,0 -58345543,"Tribes Ascend",play,0.9,0 -58345543,"Fieldrunners",purchase,1.0,0 -58345543,"Fieldrunners",play,0.9,0 -58345543,"Crysis",purchase,1.0,0 -58345543,"Crysis",play,0.8,0 -58345543,"Shank",purchase,1.0,0 -58345543,"Shank",play,0.8,0 -58345543,"Half-Life 2 Lost Coast",purchase,1.0,0 -58345543,"Half-Life 2 Lost Coast",play,0.8,0 -58345543,"Crayon Physics Deluxe",purchase,1.0,0 -58345543,"Crayon Physics Deluxe",play,0.7,0 -58345543,"Deus Ex Game of the Year Edition",purchase,1.0,0 -58345543,"Deus Ex Game of the Year Edition",play,0.7,0 -58345543,"Gish",purchase,1.0,0 -58345543,"Gish",play,0.7,0 -58345543,"Vessel",purchase,1.0,0 -58345543,"Vessel",play,0.7,0 -58345543,"Arcadia",purchase,1.0,0 -58345543,"Arcadia",play,0.6,0 -58345543,"Super Amazing Wagon Adventure",purchase,1.0,0 -58345543,"Super Amazing Wagon Adventure",play,0.5,0 -58345543,"8BitMMO",purchase,1.0,0 -58345543,"8BitMMO",play,0.5,0 -58345543,"Alien Swarm",purchase,1.0,0 -58345543,"Alien Swarm",play,0.5,0 -58345543,"Oil Rush",purchase,1.0,0 -58345543,"Oil Rush",play,0.5,0 -58345543,"APB Reloaded",purchase,1.0,0 -58345543,"APB Reloaded",play,0.5,0 -58345543,"Alien Breed 2 Assault",purchase,1.0,0 -58345543,"Alien Breed 2 Assault",play,0.5,0 -58345543,"Legend of Grimrock",purchase,1.0,0 -58345543,"Legend of Grimrock",play,0.5,0 -58345543,"Cogs",purchase,1.0,0 -58345543,"Cogs",play,0.4,0 -58345543,"Proteus",purchase,1.0,0 -58345543,"Proteus",play,0.4,0 -58345543,"Hammerfight",purchase,1.0,0 -58345543,"Hammerfight",play,0.4,0 -58345543,"And Yet It Moves",purchase,1.0,0 -58345543,"And Yet It Moves",play,0.4,0 -58345543,"Floating Point",purchase,1.0,0 -58345543,"Floating Point",play,0.3,0 -58345543,"8BitBoy",purchase,1.0,0 -58345543,"8BitBoy",play,0.3,0 -58345543,"Tom Clancy's Ghost Recon Advanced Warfighter 2",purchase,1.0,0 -58345543,"Tom Clancy's Ghost Recon Advanced Warfighter 2",play,0.3,0 -58345543,"Zombie Panic Source",purchase,1.0,0 -58345543,"Zombie Panic Source",play,0.3,0 -58345543,"Crysis 2 Maximum Edition",purchase,1.0,0 -58345543,"Crysis 2 Maximum Edition",play,0.2,0 -58345543,"Tomb Raider I",purchase,1.0,0 -58345543,"Tomb Raider I",play,0.2,0 -58345543,"EverQuest II",purchase,1.0,0 -58345543,"EverQuest II",play,0.2,0 -58345543,"LIMBO",purchase,1.0,0 -58345543,"LIMBO",play,0.2,0 -58345543,"Osmos",purchase,1.0,0 -58345543,"Osmos",play,0.2,0 -58345543,"Altitude",purchase,1.0,0 -58345543,"Altitude",play,0.2,0 -58345543,"Codename Gordon",purchase,1.0,0 -58345543,"Codename Gordon",play,0.2,0 -58345543,"BioShock 2",purchase,1.0,0 -58345543,"Dead Space 2",purchase,1.0,0 -58345543,"Dystopia",purchase,1.0,0 -58345543,"Deus Ex Invisible War",purchase,1.0,0 -58345543,"Elsword",purchase,1.0,0 -58345543,"Renegade Ops",purchase,1.0,0 -58345543,"MapleStory",purchase,1.0,0 -58345543,"Half-Life 2 Deathmatch",purchase,1.0,0 -58345543,"16 Bit Arena",purchase,1.0,0 -58345543,"404Sight",purchase,1.0,0 -58345543,"AaAaAA!!! - A Reckless Disregard for Gravity",purchase,1.0,0 -58345543,"Aberoth",purchase,1.0,0 -58345543,"Absent",purchase,1.0,0 -58345543,"ACE - Arena Cyber Evolution",purchase,1.0,0 -58345543,"AdVenture Capitalist",purchase,1.0,0 -58345543,"Aerena",purchase,1.0,0 -58345543,"Aftermath",purchase,1.0,0 -58345543,"Age of Conan Unchained - EU version",purchase,1.0,0 -58345543,"Age of Empires Online",purchase,1.0,0 -58345543,"Aion",purchase,1.0,0 -58345543,"AirBuccaneers",purchase,1.0,0 -58345543,"AirMech",purchase,1.0,0 -58345543,"Alganon",purchase,1.0,0 -58345543,"All Is Dust",purchase,1.0,0 -58345543,"Always Sometimes Monsters Demo",purchase,1.0,0 -58345543,"Amazing World",purchase,1.0,0 -58345543,"America's Army 3",purchase,1.0,0 -58345543,"America's Army Proving Grounds",purchase,1.0,0 -58345543,"Among Ripples",purchase,1.0,0 -58345543,"Anarchy Arcade",purchase,1.0,0 -58345543,"Anno Online",purchase,1.0,0 -58345543,"Arcane Saga Online",purchase,1.0,0 -58345543,"ArcheAge",purchase,1.0,0 -58345543,"Archeblade",purchase,1.0,0 -58345543,"Arctic Combat",purchase,1.0,0 -58345543,"Arma 2 Free",purchase,1.0,0 -58345543,"Ascend Hand of Kul",purchase,1.0,0 -58345543,"Astro Lords",purchase,1.0,0 -58345543,"Atlantica Online",purchase,1.0,0 -58345543,"Audition Online",purchase,1.0,0 -58345543,"Aura Kingdom",purchase,1.0,0 -58345543,"Badland Bandits",purchase,1.0,0 -58345543,"Batla",purchase,1.0,0 -58345543,"Battle Battalions",purchase,1.0,0 -58345543,"Battle for Blood - Epic battles within 30 seconds!",purchase,1.0,0 -58345543,"Battle for Graxia",purchase,1.0,0 -58345543,"Battlegrounds of Eldhelm",purchase,1.0,0 -58345543,"Battle Islands",purchase,1.0,0 -58345543,"BattleSpace",purchase,1.0,0 -58345543,"Between IGF Demo",purchase,1.0,0 -58345543,"Bitweb",purchase,1.0,0 -58345543,"Black Fire",purchase,1.0,0 -58345543,"Blast Em!",purchase,1.0,0 -58345543,"Blender 2.76b",purchase,1.0,0 -58345543,"BLOCKADE 3D",purchase,1.0,0 -58345543,"Block N Load",purchase,1.0,0 -58345543,"Bloodline Champions",purchase,1.0,0 -58345543,"BloodRealm Battlegrounds",purchase,1.0,0 -58345543,"Bloodwood Reload",purchase,1.0,0 -58345543,"Blue Estate Digital Comic",purchase,1.0,0 -58345543,"Boring Man - Online Tactical Stickman Combat",purchase,1.0,0 -58345543,"Braid",purchase,1.0,0 -58345543,"Brawl Busters",purchase,1.0,0 -58345543,"Brawlhalla",purchase,1.0,0 -58345543,"Brick-Force",purchase,1.0,0 -58345543,"Brick-Force (US)",purchase,1.0,0 -58345543,"Bullet Run",purchase,1.0,0 -58345543,"C9",purchase,1.0,0 -58345543,"CaesarIA",purchase,1.0,0 -58345543,"Cakewalk Loop Manager",purchase,1.0,0 -58345543,"Cakewalk Sound Center",purchase,1.0,0 -58345543,"Cannons Lasers Rockets",purchase,1.0,0 -58345543,"Champions Online",purchase,1.0,0 -58345543,"Chaos Heroes Online",purchase,1.0,0 -58345543,"City of Steam Arkadia",purchase,1.0,0 -58345543,"Clicker Heroes",purchase,1.0,0 -58345543,"Close Your Eyes",purchase,1.0,0 -58345543,"Clown House (Palyao Evi)",purchase,1.0,0 -58345543,"Coil",purchase,1.0,0 -58345543,"Color Symphony",purchase,1.0,0 -58345543,"Combat Monsters",purchase,1.0,0 -58345543,"Comedy Quest",purchase,1.0,0 -58345543,"Company of Heroes Europe at War",purchase,1.0,0 -58345543,"Company of Heroes Opposing Fronts",purchase,1.0,0 -58345543,"Company of Heroes Tales of Valor",purchase,1.0,0 -58345543,"Company of Heroes The Great War 1918",purchase,1.0,0 -58345543,"Conflicks - Revolutionary Space Battles Demo",purchase,1.0,0 -58345543,"Conquest of Champions",purchase,1.0,0 -58345543,"Construct 2 Free",purchase,1.0,0 -58345543,"Copa Petrobras de Marcas",purchase,1.0,0 -58345543,"Counter-Strike Nexon Zombies",purchase,1.0,0 -58345543,"Counter-Strike Nexon Zombies - Starter Pack",purchase,1.0,0 -58345543,"Creativerse",purchase,1.0,0 -58345543,"CrimeCraft GangWars",purchase,1.0,0 -58345543,"CroNix",purchase,1.0,0 -58345543,"Crookz - The Short Movie",purchase,1.0,0 -58345543,"Crusaders of the Lost Idols",purchase,1.0,0 -58345543,"Cry of Fear",purchase,1.0,0 -58345543,"CSGO Player Profiles",purchase,1.0,0 -58345543,"CSGO Player Profiles - Device",purchase,1.0,0 -58345543,"CSGO Player Profiles - Edward",purchase,1.0,0 -58345543,"CSGO Player Profiles - Fallen",purchase,1.0,0 -58345543,"CSGO Player Profiles - Get_Right",purchase,1.0,0 -58345543,"CSGO Player Profiles - KennyS",purchase,1.0,0 -58345543,"CSGO Player Profiles - Markeloff",purchase,1.0,0 -58345543,"CSGO Player Profiles - N0thing",purchase,1.0,0 -58345543,"CSGO Player Profiles - Olofmeister",purchase,1.0,0 -58345543,"CSGO Player Profiles - Taz",purchase,1.0,0 -58345543,"CubeGun",purchase,1.0,0 -58345543,"Cubic Castles",purchase,1.0,0 -58345543,"Curse of Mermos",purchase,1.0,0 -58345543,"Darksiders II Soundtrack",purchase,1.0,0 -58345543,"Darksiders Soundtrack",purchase,1.0,0 -58345543,"Darkwind War on Wheels",purchase,1.0,0 -58345543,"DCS World",purchase,1.0,0 -58345543,"Deadbreed",purchase,1.0,0 -58345543,"Deepworld",purchase,1.0,0 -58345543,"Demise of Nations Rome",purchase,1.0,0 -58345543,"Depression Quest",purchase,1.0,0 -58345543,"Destination Sol",purchase,1.0,0 -58345543,"Dethroned!",purchase,1.0,0 -58345543,"Deus Ex Revision",purchase,1.0,0 -58345543,"Dev Guy",purchase,1.0,0 -58345543,"Disney Infinity 3.0 Play Without Limits",purchase,1.0,0 -58345543,"District 187",purchase,1.0,0 -58345543,"Divine Souls",purchase,1.0,0 -58345543,"Dizzel",purchase,1.0,0 -58345543,"Dogs of War Online - Beta",purchase,1.0,0 -58345543,"Double Action Boogaloo",purchase,1.0,0 -58345543,"Dragon's Prophet (EU)",purchase,1.0,0 -58345543,"Dragon's Prophet Free Starter Pack",purchase,1.0,0 -58345543,"Dragon Nest",purchase,1.0,0 -58345543,"Dragons and Titans",purchase,1.0,0 -58345543,"DRAKERZ-Confrontation",purchase,1.0,0 -58345543,"Dream Of Mirror Online",purchase,1.0,0 -58345543,"Driver Booster 3 for STEAM",purchase,1.0,0 -58345543,"Dungeon Defenders II",purchase,1.0,0 -58345543,"Dungeon Fighter Online",purchase,1.0,0 -58345543,"Dungeonland",purchase,1.0,0 -58345543,"Dungeon Party",purchase,1.0,0 -58345543,"Dungeons & Dragons Online",purchase,1.0,0 -58345543,"Dwarfs F2P",purchase,1.0,0 -58345543,"EasyAntiCheat eSports",purchase,1.0,0 -58345543,"Echoes+",purchase,1.0,0 -58345543,"Echo of Soul",purchase,1.0,0 -58345543,"EDGE",purchase,1.0,0 -58345543,"Eldevin",purchase,1.0,0 -58345543,"Electric Highways",purchase,1.0,0 -58345543,"Endless Sky",purchase,1.0,0 -58345543,"Endless Sky - High DPI",purchase,1.0,0 -58345543,"Epic Arena",purchase,1.0,0 -58345543,"Epic Cards Battle(TCG)",purchase,1.0,0 -58345543,"ePic Character Generator",purchase,1.0,0 -58345543,"Escape",purchase,1.0,0 -58345543,"Esenthel Engine",purchase,1.0,0 -58345543,"Eternal Fate",purchase,1.0,0 -58345543,"Eternal Senia",purchase,1.0,0 -58345543,"Everlasting Summer",purchase,1.0,0 -58345543,"Everlasting Summer DLC One pioneer's story",purchase,1.0,0 -58345543,"EVGA PrecisionX 16",purchase,1.0,0 -58345543,"Evolution RTS",purchase,1.0,0 -58345543,"F.E.A.R. Online",purchase,1.0,0 -58345543,"Face of Mankind",purchase,1.0,0 -58345543,"Fallen Earth",purchase,1.0,0 -58345543,"Famaze",purchase,1.0,0 -58345543,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -58345543,"Fiesta Online",purchase,1.0,0 -58345543,"Fiesta Online NA",purchase,1.0,0 -58345543,"FINAL FANTASY XIV Heavensward",purchase,1.0,0 -58345543,"Fingerbones",purchase,1.0,0 -58345543,"Firefall",purchase,1.0,0 -58345543,"FIREFIGHT RELOADED",purchase,1.0,0 -58345543,"Firefly Online Cortex",purchase,1.0,0 -58345543,"Fishing Planet",purchase,1.0,0 -58345543,"Fistful of Frags",purchase,1.0,0 -58345543,"Football Superstars",purchase,1.0,0 -58345543,"Fork Parker's Holiday Profit Hike",purchase,1.0,0 -58345543,"Fortress Forever",purchase,1.0,0 -58345543,"FreeStyle2 Street Basketball",purchase,1.0,0 -58345543,"Free to Play",purchase,1.0,0 -58345543,"Freshman Year",purchase,1.0,0 -58345543,"Frontline Tactics",purchase,1.0,0 -58345543,"Frozen Free Fall Snowball Fight",purchase,1.0,0 -58345543,"Fuse",purchase,1.0,0 -58345543,"Galcon 2",purchase,1.0,0 -58345543,"Games of Glory",purchase,1.0,0 -58345543,"Gear Up",purchase,1.0,0 -58345543,"Gems of War",purchase,1.0,0 -58345543,"Get Off My Lawn!",purchase,1.0,0 -58345543,"Gladiators Online Death Before Dishonor",purchase,1.0,0 -58345543,"Golden Rush",purchase,1.0,0 -58345543,"Gotham City Impostors Free To Play",purchase,1.0,0 -58345543,"Grand Chase",purchase,1.0,0 -58345543,"Guns and Robots",purchase,1.0,0 -58345543,"Gunscape",purchase,1.0,0 -58345543,"GunZ 2 The Second Duel",purchase,1.0,0 -58345543,"Half-Life 2 Update",purchase,1.0,0 -58345543,"Happy Wars",purchase,1.0,0 -58345543,"Hard Reset Exile DLC",purchase,1.0,0 -58345543,"Haunted Memories",purchase,1.0,0 -58345543,"HAWKEN",purchase,1.0,0 -58345543,"Hazard Ops",purchase,1.0,0 -58345543,"Headcrab Frenzy!",purchase,1.0,0 -58345543,"Heroes & Generals",purchase,1.0,0 -58345543,"Heroes of Scene",purchase,1.0,0 -58345543,"Heroes of SoulCraft",purchase,1.0,0 -58345543,"Heroine's Quest The Herald of Ragnarok",purchase,1.0,0 -58345543,"HIS (Heroes In the Sky)",purchase,1.0,0 -58345543,"HIT",purchase,1.0,0 -58345543,"HOMEFRONT Demo",purchase,1.0,0 -58345543,"Hotline Miami 2 Wrong Number Digital Comic",purchase,1.0,0 -58345543,"how do you Do It?",purchase,1.0,0 -58345543,"Infinite Crisis",purchase,1.0,0 -58345543,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -58345543,"InMind VR",purchase,1.0,0 -58345543,"In Search of the Most Dangerous Town on the Internet",purchase,1.0,0 -58345543,"Invisible Apartment",purchase,1.0,0 -58345543,"Jagged Alliance Online - Steam Edition",purchase,1.0,0 -58345543,"Jagged Alliance Online Raven Pack",purchase,1.0,0 -58345543,"Jigoku Kisetsukan Sense of the Seasons",purchase,1.0,0 -58345543,"Karos",purchase,1.0,0 -58345543,"Karos Returns",purchase,1.0,0 -58345543,"Killing Floor - Toy Master",purchase,1.0,0 -58345543,"Killing Floor Uncovered",purchase,1.0,0 -58345543,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -58345543,"Kingdoms CCG",purchase,1.0,0 -58345543,"Kingdom Wars",purchase,1.0,0 -58345543,"Kings Bounty Legions",purchase,1.0,0 -58345543,"Kung Fury",purchase,1.0,0 -58345543,"Lambda Wars Beta",purchase,1.0,0 -58345543,"Lamia Must Die",purchase,1.0,0 -58345543,"La Tale",purchase,1.0,0 -58345543,"Leadwerks Game Launcher",purchase,1.0,0 -58345543,"Let the Cat In",purchase,1.0,0 -58345543,"Loadout Campaign Beta",purchase,1.0,0 -58345543,"Lone Survivor The Director's Cut",purchase,1.0,0 -58345543,"Lost Lands A Hidden Object Adventure",purchase,1.0,0 -58345543,"Lost Saga North America",purchase,1.0,0 -58345543,"Mabinogi",purchase,1.0,0 -58345543,"Magic The Gathering Tactics",purchase,1.0,0 -58345543,"Magic Barrage - Bitferno",purchase,1.0,0 -58345543,"Magic Duels",purchase,1.0,0 -58345543,"Magicka Final Frontier",purchase,1.0,0 -58345543,"Magicka Frozen Lake",purchase,1.0,0 -58345543,"Magicka Nippon",purchase,1.0,0 -58345543,"Magicka Party Robes",purchase,1.0,0 -58345543,"Magicka The Watchtower",purchase,1.0,0 -58345543,"Magicka Vietnam",purchase,1.0,0 -58345543,"Magicka Wizard's Survival Kit",purchase,1.0,0 -58345543,"Magicka Wizard Wars",purchase,1.0,0 -58345543,"Mainland",purchase,1.0,0 -58345543,"March of War",purchase,1.0,0 -58345543,"Marvel Heroes 2015",purchase,1.0,0 -58345543,"Marvel Puzzle Quest",purchase,1.0,0 -58345543,"Max Gentlemen",purchase,1.0,0 -58345543,"Medal of Honor Pre-Order",purchase,1.0,0 -58345543,"Memoir '44 Online",purchase,1.0,0 -58345543,"Metal Reaper Online",purchase,1.0,0 -58345543,"METAL SLUG DEFENSE",purchase,1.0,0 -58345543,"Metro Conflict",purchase,1.0,0 -58345543,"MicroVolts Surge",purchase,1.0,0 -58345543,"Might & Magic Duel of Champions",purchase,1.0,0 -58345543,"Mightier",purchase,1.0,0 -58345543,"Missing Translation",purchase,1.0,0 -58345543,"Mitos.is The Game",purchase,1.0,0 -58345543,"Modular Combat",purchase,1.0,0 -58345543,"Moonbase Alpha",purchase,1.0,0 -58345543,"Moon Breakers",purchase,1.0,0 -58345543,"Mortal Kombat Legacy - Ep. 3 Johnny Cage",purchase,1.0,0 -58345543,"Mortal Kombat Legacy - Ep. 4 Kitana & Mileena (Part 1)",purchase,1.0,0 -58345543,"Mortal Kombat Legacy - Ep. 5 Kitana & Mileena (Part 2)",purchase,1.0,0 -58345543,"Mortal Kombat Legacy - Ep. 6 Raiden",purchase,1.0,0 -58345543,"Mortal Kombat Legacy - Ep. 7 Scorpion and Sub-Zero (Part 1)",purchase,1.0,0 -58345543,"Mortal Kombat Legacy - Ep. 8 Scorpion and Sub-Zero (Part 2)",purchase,1.0,0 -58345543,"Mortal Kombat Legacy - Ep. 9 Cyrax & Sektor",purchase,1.0,0 -58345543,"Mortal Kombat Legacy II - Ep. 1 Reunited in Macau",purchase,1.0,0 -58345543,"Mortal Kombat Legacy II - Ep. 2 The Fall of Liu Kang",purchase,1.0,0 -58345543,"Mortal Kombat Legacy II - Ep. 3 Kenshi's Origin",purchase,1.0,0 -58345543,"Mortal Kombat Legacy II - Ep. 4 Kenshi Encounters Ermac",purchase,1.0,0 -58345543,"Mortal Kombat Legacy II - Ep. 5 Kitana and Mileena",purchase,1.0,0 -58345543,"Mortal Kombat Legacy II - Ep. 6 Johnny Cage",purchase,1.0,0 -58345543,"Mortal Kombat Legacy II - Ep. 7 Scorpion and Sub-Zero (Part 1)",purchase,1.0,0 -58345543,"Mortal Kombat Legacy II - Ep. 8 Scorpion and Sub-Zero (Part 2)",purchase,1.0,0 -58345543,"Mortal Kombat Legacy II - Ep. 9 Liu Kang",purchase,1.0,0 -58345543,"Mortal Kombat Legacy II - Ep. 10 Liu Kang and Kung Lao",purchase,1.0,0 -58345543,"Mortal Online",purchase,1.0,0 -58345543,"MoW Face Off M",purchase,1.0,0 -58345543,"My Lands",purchase,1.0,0 -58345543,"Narcissu 1st & 2nd",purchase,1.0,0 -58345543,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -58345543,"NEOTOKYO",purchase,1.0,0 -58345543,"Neverwinter",purchase,1.0,0 -58345543,"Nightbanes",purchase,1.0,0 -58345543,"No More Room in Hell",purchase,1.0,0 -58345543,"Nosgoth",purchase,1.0,0 -58345543,"Nyctophilia",purchase,1.0,0 -58345543,"Odyssey Reborn",purchase,1.0,0 -58345543,"Ohm Studio",purchase,1.0,0 -58345543,"One Manga Day",purchase,1.0,0 -58345543,"One Way To Die Steam Edition",purchase,1.0,0 -58345543,"Only If",purchase,1.0,0 -58345543,"Pandora Saga Weapons of Balance",purchase,1.0,0 -58345543,"Panzar",purchase,1.0,0 -58345543,"Passing Pineview Forest",purchase,1.0,0 -58345543,"Path of Exile",purchase,1.0,0 -58345543,"PAYDAY The Web Series - Episode 1",purchase,1.0,0 -58345543,"Peggle Extreme",purchase,1.0,0 -58345543,"Penumbra Necrologue",purchase,1.0,0 -58345543,"Pinball Arcade",purchase,1.0,0 -58345543,"Pinball FX2",purchase,1.0,0 -58345543,"Pink Heaven",purchase,1.0,0 -58345543,"Pink Hour",purchase,1.0,0 -58345543,"Pirates, Vikings, & Knights II",purchase,1.0,0 -58345543,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -58345543,"Portal Stories Mel",purchase,1.0,0 -58345543,"Port of Call",purchase,1.0,0 -58345543,"Pox Nora",purchase,1.0,0 -58345543,"Prime World",purchase,1.0,0 -58345543,"ProtoGalaxy",purchase,1.0,0 -58345543,"Psychonauts Demo",purchase,1.0,0 -58345543,"Puzzle Pirates",purchase,1.0,0 -58345543,"Pyramid Raid",purchase,1.0,0 -58345543,"Quantum Rush Online",purchase,1.0,0 -58345543,"Quintet",purchase,1.0,0 -58345543,"RaceRoom Racing Experience ",purchase,1.0,0 -58345543,"Ragnarok",purchase,1.0,0 -58345543,"Ragnarok Online - Free to Play - European Version",purchase,1.0,0 -58345543,"Ragnarok Online 2",purchase,1.0,0 -58345543,"RaiderZ",purchase,1.0,0 -58345543,"Reckless Ruckus",purchase,1.0,0 -58345543,"Red Crucible Firestorm",purchase,1.0,0 -58345543,"Red Stone Online",purchase,1.0,0 -58345543,"Regimental Chess",purchase,1.0,0 -58345543,"Relic Hunters Zero",purchase,1.0,0 -58345543,"Relive",purchase,1.0,0 -58345543,"Renaissance Heroes",purchase,1.0,0 -58345543,"Requiem",purchase,1.0,0 -58345543,"Retro/Grade IGF Demo",purchase,1.0,0 -58345543,"Reversion - The Escape",purchase,1.0,0 -58345543,"Rexaura",purchase,1.0,0 -58345543,"Rise of Flight United",purchase,1.0,0 -58345543,"Rise of Incarnates",purchase,1.0,0 -58345543,"Rising Angels Reborn",purchase,1.0,0 -58345543,"Robocraft",purchase,1.0,0 -58345543,"Rochard",purchase,1.0,0 -58345543,"ROSE Online",purchase,1.0,0 -58345543,"Royal Quest",purchase,1.0,0 -58345543,"RPG MO",purchase,1.0,0 -58345543,"Run and Fire",purchase,1.0,0 -58345543,"Running Shadow",purchase,1.0,0 -58345543,"Rustbucket Rumble",purchase,1.0,0 -58345543,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -58345543,"Sacred 2 Gold",purchase,1.0,0 -58345543,"SAGA",purchase,1.0,0 -58345543,"Saints Row The Third - Initiation Station",purchase,1.0,0 -58345543,"Saints Row IV Inauguration Station",purchase,1.0,0 -58345543,"Saira",purchase,1.0,0 -58345543,"Sakura Clicker",purchase,1.0,0 -58345543,"SC2VN - The eSports Visual Novel",purchase,1.0,0 -58345543,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -58345543,"Seduce Me the Otome",purchase,1.0,0 -58345543,"Serena",purchase,1.0,0 -58345543,"Shadow Hunter",purchase,1.0,0 -58345543,"Shadow of Kingdoms",purchase,1.0,0 -58345543,"Shadow Warrior Classic (1997)",purchase,1.0,0 -58345543,"ShareX",purchase,1.0,0 -58345543,"Sigils of Elohim",purchase,1.0,0 -58345543,"Silver Creek Falls - Chapter 1",purchase,1.0,0 -58345543,"Simply Chess",purchase,1.0,0 -58345543,"Sins of a Dark Age",purchase,1.0,0 -58345543,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -58345543,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -58345543,"Smashmuck Champions",purchase,1.0,0 -58345543,"SMITE",purchase,1.0,0 -58345543,"Soccer Manager 2015",purchase,1.0,0 -58345543,"Soccer Manager 2016",purchase,1.0,0 -58345543,"Soldier Front 2",purchase,1.0,0 -58345543,"SolForge",purchase,1.0,0 -58345543,"Spartans Vs Zombies Defense",purchase,1.0,0 -58345543,"Spiral Knights Preview",purchase,1.0,0 -58345543,"Spooky's House of Jump Scares",purchase,1.0,0 -58345543,"Star Conflict",purchase,1.0,0 -58345543,"Star Trek Online",purchase,1.0,0 -58345543,"Strife",purchase,1.0,0 -58345543,"Stronghold Kingdoms",purchase,1.0,0 -58345543,"Subspace Continuum",purchase,1.0,0 -58345543,"Sunrider Mask of Arcadius",purchase,1.0,0 -58345543,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -58345543,"Super Crate Box",purchase,1.0,0 -58345543,"Super Monday Night Combat",purchase,1.0,0 -58345543,"Survarium",purchase,1.0,0 -58345543,"sZone-Online",purchase,1.0,0 -58345543,"Tactical Genius",purchase,1.0,0 -58345543,"Tales Runner",purchase,1.0,0 -58345543,"Tap Tap Infinity",purchase,1.0,0 -58345543,"TDP4Team Battle",purchase,1.0,0 -58345543,"TDP5 Arena 3D",purchase,1.0,0 -58345543,"Teeworlds",purchase,1.0,0 -58345543,"TERA",purchase,1.0,0 -58345543,"TERA",purchase,1.0,0 -58345543,"Terrain Test",purchase,1.0,0 -58345543,"The Banner Saga Factions",purchase,1.0,0 -58345543,"The Basement Collection",purchase,1.0,0 -58345543,"The Cat and the Coup",purchase,1.0,0 -58345543,"The Desolate Hope",purchase,1.0,0 -58345543,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -58345543,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -58345543,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -58345543,"The Expendabros",purchase,1.0,0 -58345543,"The Forgotten Ones",purchase,1.0,0 -58345543,"The Four Kings Casino and Slots",purchase,1.0,0 -58345543,"The Gate",purchase,1.0,0 -58345543,"theHunter",purchase,1.0,0 -58345543,"The Knobbly Crook Chapter I - The Horse You Sailed In On",purchase,1.0,0 -58345543,"The Legend of Tango",purchase,1.0,0 -58345543,"The Lord of the Rings Online",purchase,1.0,0 -58345543,"The Mighty Quest For Epic Loot",purchase,1.0,0 -58345543,"The Old Tree",purchase,1.0,0 -58345543,"The Plan",purchase,1.0,0 -58345543,"The Secret of Tremendous Corporation",purchase,1.0,0 -58345543,"The Settlers Online",purchase,1.0,0 -58345543,"the static speaks my name",purchase,1.0,0 -58345543,"The Way of Life Free Edition",purchase,1.0,0 -58345543,"The Wonderful End of the World",purchase,1.0,0 -58345543,"Thinking with Time Machine",purchase,1.0,0 -58345543,"Time Clickers",purchase,1.0,0 -58345543,"Titan Quest",purchase,1.0,0 -58345543,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -58345543,"Tomb Raider Anniversary",purchase,1.0,0 -58345543,"Tomb Raider Chronicles",purchase,1.0,0 -58345543,"Tomb Raider Legend",purchase,1.0,0 -58345543,"Tomb Raider The Last Revelation",purchase,1.0,0 -58345543,"Tomb Raider II",purchase,1.0,0 -58345543,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -58345543,"Tom Clancy's Ghost Recon",purchase,1.0,0 -58345543,"Tom Clancy's Ghost Recon Advanced Warfighter",purchase,1.0,0 -58345543,"Tom Clancy's Ghost Recon Desert Siege",purchase,1.0,0 -58345543,"Tom Clancy's Ghost Recon Island Thunder",purchase,1.0,0 -58345543,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -58345543,"Tom Clancy's Ghost Recon Phantoms - EU Looks and Power (Assault)",purchase,1.0,0 -58345543,"Tom Clancy's Ghost Recon Phantoms - EU Looks and Power (Recon)",purchase,1.0,0 -58345543,"Tom Clancy's Ghost Recon Phantoms - EU Looks and Power (Support)",purchase,1.0,0 -58345543,"Tom Clancy's Ghost Recon Phantoms - EU Substance with Style pack (Assault)",purchase,1.0,0 -58345543,"Tom Clancy's Ghost Recon Phantoms - EU Substance with Style pack (Recon)",purchase,1.0,0 -58345543,"Tom Clancy's Ghost Recon Phantoms - EU Substance with Style pack (Support)",purchase,1.0,0 -58345543,"Tom Clancy's Ghost Recon Phantoms - EU WAR Madness pack (Assault)",purchase,1.0,0 -58345543,"Tom Clancy's Ghost Recon Phantoms - EU WAR Madness pack (Recon)",purchase,1.0,0 -58345543,"Tom Clancy's Ghost Recon Phantoms - EU WAR Madness pack (Support)",purchase,1.0,0 -58345543,"Tom Clancy's Ghost Recon Phantoms - NA Looks and Power (Assault)",purchase,1.0,0 -58345543,"Tom Clancy's Ghost Recon Phantoms - NA Looks and Power (Recon)",purchase,1.0,0 -58345543,"Tom Clancy's Ghost Recon Phantoms - NA Looks and Power (Support)",purchase,1.0,0 -58345543,"Tom Clancy's Ghost Recon Phantoms - NA Substance with Style pack (Assault)",purchase,1.0,0 -58345543,"Tom Clancy's Ghost Recon Phantoms - NA Substance with Style pack (Recon)",purchase,1.0,0 -58345543,"Tom Clancy's Ghost Recon Phantoms - NA Substance with Style pack (Support)",purchase,1.0,0 -58345543,"Tom Clancy's Ghost Recon Phantoms - NA WAR Madness pack (Assault)",purchase,1.0,0 -58345543,"Tom Clancy's Ghost Recon Phantoms - NA WAR Madness pack (Recon)",purchase,1.0,0 -58345543,"Tom Clancy's Ghost Recon Phantoms - NA WAR Madness pack (Support)",purchase,1.0,0 -58345543,"TOME Immortal Arena",purchase,1.0,0 -58345543,"Toribash",purchase,1.0,0 -58345543,"Total War Battles KINGDOM",purchase,1.0,0 -58345543,"Transformice",purchase,1.0,0 -58345543,"Trove",purchase,1.0,0 -58345543,"Two Worlds 2 - Pirates of the Flying Fortress ",purchase,1.0,0 -58345543,"Two Worlds II Castle Defense",purchase,1.0,0 -58345543,"TyranoBuilder Visual Novel Studio Demo",purchase,1.0,0 -58345543,"UberStrike",purchase,1.0,0 -58345543,"Uebergame",purchase,1.0,0 -58345543,"Ultimate Tic-Tac-Toe",purchase,1.0,0 -58345543,"Uncharted Waters Online",purchase,1.0,0 -58345543,"Uncharted Waters Online Gran Atlas",purchase,1.0,0 -58345543,"Universal Combat CE",purchase,1.0,0 -58345543,"Uplink",purchase,1.0,0 -58345543,"Vanguard Saga of Heroes F2P",purchase,1.0,0 -58345543,"Velvet Sundown",purchase,1.0,0 -58345543,"Victory Command",purchase,1.0,0 -58345543,"Villagers and Heroes",purchase,1.0,0 -58345543,"Viridi",purchase,1.0,0 -58345543,"Voices from the Sea",purchase,1.0,0 -58345543,"WAKFU",purchase,1.0,0 -58345543,"Walkover",purchase,1.0,0 -58345543,"Warface",purchase,1.0,0 -58345543,"War Inc. Battlezone",purchase,1.0,0 -58345543,"Warmachine Tactics",purchase,1.0,0 -58345543,"WARMODE",purchase,1.0,0 -58345543,"War of Beach",purchase,1.0,0 -58345543,"War of the Roses",purchase,1.0,0 -58345543,"Warside",purchase,1.0,0 -58345543,"War Thunder",purchase,1.0,0 -58345543,"Who Is Mike",purchase,1.0,0 -58345543,"Wild Warfare",purchase,1.0,0 -58345543,"Wind of Luck Arena",purchase,1.0,0 -58345543,"Without Within",purchase,1.0,0 -58345543,"Wizardry Online",purchase,1.0,0 -58345543,"World of Battles",purchase,1.0,0 -58345543,"World of Guns Gun Disassembly",purchase,1.0,0 -58345543,"World of Soccer online",purchase,1.0,0 -58345543,"Wrath of Athena",purchase,1.0,0 -58345543,"WTFast Gamers Private Network (GPN)",purchase,1.0,0 -58345543,"Xam",purchase,1.0,0 -58345543,"You Have to Win the Game",purchase,1.0,0 -58345543,"Zombies Monsters Robots",purchase,1.0,0 -212887873,"Dota 2",purchase,1.0,0 -212887873,"Dota 2",play,0.7,0 -291241250,"Counter-Strike Nexon Zombies",purchase,1.0,0 -291241250,"Counter-Strike Nexon Zombies",play,1.0,0 -276745200,"No More Room in Hell",purchase,1.0,0 -276745200,"No More Room in Hell",play,7.4,0 -276745200,"Heroes & Generals",purchase,1.0,0 -276745200,"Heroes & Generals",play,0.6,0 -276745200,"APB Reloaded",purchase,1.0,0 -276745200,"APB Reloaded",play,0.6,0 -276745200,"Survarium",purchase,1.0,0 -191677626,"Dota 2",purchase,1.0,0 -191677626,"Dota 2",play,5.3,0 -191677626,"No More Room in Hell",purchase,1.0,0 -191677626,"Quake Live",purchase,1.0,0 -180210327,"Dota 2",purchase,1.0,0 -180210327,"Dota 2",play,0.5,0 -204309512,"Unturned",purchase,1.0,0 -204309512,"Unturned",play,4.9,0 -184509154,"Unturned",purchase,1.0,0 -184509154,"Unturned",play,0.3,0 -244847464,"Dota 2",purchase,1.0,0 -244847464,"Dota 2",play,1.8,0 -152639272,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -152639272,"Deus Ex Human Revolution - Director's Cut",play,1.2,0 -152639272,"Dishonored",purchase,1.0,0 -75457821,"Counter-Strike Source",purchase,1.0,0 -75457821,"Counter-Strike Source",play,226.0,0 -75457821,"Just Cause 2",purchase,1.0,0 -75457821,"Just Cause 2",play,28.0,0 -75457821,"Counter-Strike Global Offensive",purchase,1.0,0 -75457821,"Counter-Strike Global Offensive",play,26.0,0 -75457821,"PAYDAY 2",purchase,1.0,0 -75457821,"PAYDAY 2",play,23.0,0 -75457821,"The Forest",purchase,1.0,0 -75457821,"The Forest",play,18.1,0 -75457821,"Grand Theft Auto V",purchase,1.0,0 -75457821,"Grand Theft Auto V",play,11.9,0 -75457821,"Robocraft",purchase,1.0,0 -75457821,"Robocraft",play,8.1,0 -75457821,"Arma 2 Operation Arrowhead",purchase,1.0,0 -75457821,"Arma 2 Operation Arrowhead",play,5.5,0 -75457821,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -75457821,"Resident Evil 5 / Biohazard 5",play,4.9,0 -75457821,"Team Fortress 2",purchase,1.0,0 -75457821,"Team Fortress 2",play,4.0,0 -75457821,"STORM Frontline Nation",purchase,1.0,0 -75457821,"STORM Frontline Nation",play,0.8,0 -75457821,"Arma 2",purchase,1.0,0 -75457821,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -75457821,"Clicker Heroes",purchase,1.0,0 -121291260,"Prime World",purchase,1.0,0 -121291260,"Prime World",play,813.0,0 -121291260,"Deadbreed",purchase,1.0,0 -121291260,"Deadbreed",play,12.0,0 -121291260,"Dota 2",purchase,1.0,0 -121291260,"Dota 2",play,10.5,0 -121291260,"TOME Immortal Arena",purchase,1.0,0 -121291260,"TOME Immortal Arena",play,8.8,0 -121291260,"Ascend Hand of Kul",purchase,1.0,0 -121291260,"Ascend Hand of Kul",play,1.9,0 -121291260,"Sins of a Dark Age",purchase,1.0,0 -121291260,"Sins of a Dark Age",play,1.3,0 -121291260,"Running Shadow",purchase,1.0,0 -121291260,"Running Shadow",play,0.6,0 -121291260,"Nosgoth",purchase,1.0,0 -121291260,"Nosgoth",play,0.6,0 -121291260,"Bloodline Champions",purchase,1.0,0 -121291260,"Bloodline Champions",play,0.2,0 -121291260,"Neverwinter",purchase,1.0,0 -121291260,"Neverwinter",play,0.2,0 -121291260,"Survarium",purchase,1.0,0 -121291260,"Survarium",play,0.1,0 -121291260,"Solstice Arena",purchase,1.0,0 -121291260,"Strife",purchase,1.0,0 -121291260,"BloodRealm Battlegrounds",purchase,1.0,0 -121291260,"HAWKEN",purchase,1.0,0 -74874862,"Call of Duty Modern Warfare 2",purchase,1.0,0 -74874862,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -212157817,"Dota 2",purchase,1.0,0 -212157817,"Dota 2",play,27.0,0 -139404987,"Dota 2",purchase,1.0,0 -139404987,"Dota 2",play,3.0,0 -30710202,"Half-Life 2",purchase,1.0,0 -30710202,"Counter-Strike Source",purchase,1.0,0 -30710202,"Half-Life 2 Deathmatch",purchase,1.0,0 -30710202,"Half-Life 2 Lost Coast",purchase,1.0,0 -30710202,"Half-Life Source",purchase,1.0,0 -30710202,"Half-Life Deathmatch Source",purchase,1.0,0 -247853623,"Dota 2",purchase,1.0,0 -247853623,"Dota 2",play,92.0,0 -247853623,"Alganon",purchase,1.0,0 -247853623,"Aura Kingdom",purchase,1.0,0 -247853623,"Clicker Heroes",purchase,1.0,0 -247853623,"Dirty Bomb",purchase,1.0,0 -247853623,"FreeStyle2 Street Basketball",purchase,1.0,0 -247853623,"GunZ 2 The Second Duel",purchase,1.0,0 -247853623,"Heroes & Generals",purchase,1.0,0 -247853623,"Neverwinter",purchase,1.0,0 -247853623,"Trove",purchase,1.0,0 -247853623,"Unturned",purchase,1.0,0 -247853623,"Warframe",purchase,1.0,0 -58931437,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -58931437,"Plants vs. Zombies Game of the Year",play,65.0,0 -58931437,"BioShock",purchase,1.0,0 -58931437,"BioShock",play,37.0,0 -58931437,"LEGO Worlds",purchase,1.0,0 -58931437,"LEGO Worlds",play,37.0,0 -58931437,"XCOM Enemy Unknown",purchase,1.0,0 -58931437,"XCOM Enemy Unknown",play,26.0,0 -58931437,"Portal 2",purchase,1.0,0 -58931437,"Portal 2",play,11.9,0 -58931437,"Garry's Mod",purchase,1.0,0 -58931437,"Garry's Mod",play,8.8,0 -58931437,"Quake",purchase,1.0,0 -58931437,"Quake",play,7.1,0 -58931437,"Carrier Command Gaea Mission",purchase,1.0,0 -58931437,"Carrier Command Gaea Mission",play,5.9,0 -58931437,"The Elder Scrolls V Skyrim",purchase,1.0,0 -58931437,"The Elder Scrolls V Skyrim",play,4.1,0 -58931437,"LIMBO",purchase,1.0,0 -58931437,"LIMBO",play,3.8,0 -58931437,"Portal",purchase,1.0,0 -58931437,"Portal",play,3.4,0 -58931437,"Botanicula",purchase,1.0,0 -58931437,"Botanicula",play,3.3,0 -58931437,"Far Cry",purchase,1.0,0 -58931437,"Far Cry",play,1.8,0 -58931437,"Half-Life",purchase,1.0,0 -58931437,"Half-Life",play,1.3,0 -58931437,"Star Wars Knights of the Old Republic",purchase,1.0,0 -58931437,"Star Wars Knights of the Old Republic",play,1.1,0 -58931437,"Torchlight",purchase,1.0,0 -58931437,"Torchlight",play,1.0,0 -58931437,"Half-Life 2",purchase,1.0,0 -58931437,"Half-Life 2",play,0.8,0 -58931437,"Braid",purchase,1.0,0 -58931437,"Braid",play,0.8,0 -58931437,"Legend of Grimrock 2",purchase,1.0,0 -58931437,"Legend of Grimrock 2",play,0.6,0 -58931437,"Worms Armageddon",purchase,1.0,0 -58931437,"Worms Armageddon",play,0.5,0 -58931437,"Max Payne",purchase,1.0,0 -58931437,"Max Payne",play,0.4,0 -58931437,"BioShock 2",purchase,1.0,0 -58931437,"BioShock 2",play,0.4,0 -58931437,"Amnesia The Dark Descent",purchase,1.0,0 -58931437,"Amnesia The Dark Descent",play,0.2,0 -58931437,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -58931437,"Burnout Paradise The Ultimate Box",play,0.2,0 -58931437,"Dead Space",purchase,1.0,0 -58931437,"Dead Space",play,0.2,0 -58931437,"X-COM UFO Defense",purchase,1.0,0 -58931437,"X-COM UFO Defense",play,0.1,0 -58931437,"The Fish Fillets 2",purchase,1.0,0 -58931437,"The Fish Fillets 2",play,0.1,0 -58931437,"The Ultimate DOOM",purchase,1.0,0 -58931437,"The Ultimate DOOM",play,0.1,0 -58931437,"Hostile Waters Antaeus Rising",purchase,1.0,0 -58931437,"Hostile Waters Antaeus Rising",play,0.1,0 -58931437,"FTL Faster Than Light",purchase,1.0,0 -58931437,"Tom Clancy's Splinter Cell Chaos Theory",purchase,1.0,0 -58931437,"Deus Ex Game of the Year Edition",purchase,1.0,0 -58931437,"Chompy Chomp Chomp",purchase,1.0,0 -58931437,"Eets",purchase,1.0,0 -58931437,"Windosill",purchase,1.0,0 -58931437,"Worms",purchase,1.0,0 -58931437,"Super Meat Boy",purchase,1.0,0 -58931437,"Bejeweled 3",purchase,1.0,0 -58931437,"Alan Wake",purchase,1.0,0 -58931437,"Alan Wake's American Nightmare",purchase,1.0,0 -58931437,"Alien Breed 2 Assault",purchase,1.0,0 -58931437,"Alien Breed 3 Descent",purchase,1.0,0 -58931437,"Alien Breed Impact",purchase,1.0,0 -58931437,"Alpha Prime",purchase,1.0,0 -58931437,"Ampu-Tea",purchase,1.0,0 -58931437,"Arma 2",purchase,1.0,0 -58931437,"Arma 2 DayZ Mod",purchase,1.0,0 -58931437,"Arma 2 Operation Arrowhead",purchase,1.0,0 -58931437,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -58931437,"Arma Cold War Assault",purchase,1.0,0 -58931437,"Arma Gold Edition",purchase,1.0,0 -58931437,"Arma Tactics",purchase,1.0,0 -58931437,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -58931437,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -58931437,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -58931437,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -58931437,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -58931437,"Bastion",purchase,1.0,0 -58931437,"Cobi Treasure Deluxe",purchase,1.0,0 -58931437,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -58931437,"Counter-Strike",purchase,1.0,0 -58931437,"Crysis 2 Maximum Edition",purchase,1.0,0 -58931437,"Day of Defeat",purchase,1.0,0 -58931437,"Dead Space 2",purchase,1.0,0 -58931437,"Deathmatch Classic",purchase,1.0,0 -58931437,"Desert Thunder",purchase,1.0,0 -58931437,"DOOM 3",purchase,1.0,0 -58931437,"DOOM 3 Resurrection of Evil",purchase,1.0,0 -58931437,"DOOM II Hell on Earth",purchase,1.0,0 -58931437,"Dragon Age Origins",purchase,1.0,0 -58931437,"Final DOOM",purchase,1.0,0 -58931437,"Grimind",purchase,1.0,0 -58931437,"Gun Metal",purchase,1.0,0 -58931437,"Half-Life 2 Episode One",purchase,1.0,0 -58931437,"Half-Life 2 Episode Two",purchase,1.0,0 -58931437,"Half-Life 2 Lost Coast",purchase,1.0,0 -58931437,"Half-Life Blue Shift",purchase,1.0,0 -58931437,"Half-Life Opposing Force",purchase,1.0,0 -58931437,"Hector Ep 1",purchase,1.0,0 -58931437,"Hector Ep 2",purchase,1.0,0 -58931437,"Hector Ep 3",purchase,1.0,0 -58931437,"Humanity Asset",purchase,1.0,0 -58931437,"Left 4 Dead 2",purchase,1.0,0 -58931437,"Light",purchase,1.0,0 -58931437,"Lone Survivor The Director's Cut",purchase,1.0,0 -58931437,"Machinarium",purchase,1.0,0 -58931437,"Magicka",purchase,1.0,0 -58931437,"Magicka Vietnam",purchase,1.0,0 -58931437,"Manhunter",purchase,1.0,0 -58931437,"Marine Sharpshooter II Jungle Warfare",purchase,1.0,0 -58931437,"Mass Effect 2",purchase,1.0,0 -58931437,"Master Levels for DOOM II",purchase,1.0,0 -58931437,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -58931437,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -58931437,"Medal of Honor(TM) Single Player",purchase,1.0,0 -58931437,"Medal of Honor Pre-Order",purchase,1.0,0 -58931437,"Mirror's Edge",purchase,1.0,0 -58931437,"Natural Selection 2",purchase,1.0,0 -58931437,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -58931437,"Oddworld Abe's Oddysee",purchase,1.0,0 -58931437,"Orcs Must Die! 2",purchase,1.0,0 -58931437,"Overruled!",purchase,1.0,0 -58931437,"Poker Night at the Inventory",purchase,1.0,0 -58931437,"Psychonauts",purchase,1.0,0 -58931437,"Psychonauts Demo",purchase,1.0,0 -58931437,"Puzzle Agent",purchase,1.0,0 -58931437,"Puzzle Agent 2",purchase,1.0,0 -58931437,"Quake II",purchase,1.0,0 -58931437,"Quake II Ground Zero",purchase,1.0,0 -58931437,"Quake II The Reckoning",purchase,1.0,0 -58931437,"Quake III Team Arena",purchase,1.0,0 -58931437,"Quake III Arena",purchase,1.0,0 -58931437,"Quake Mission Pack 1 Scourge of Armagon",purchase,1.0,0 -58931437,"Quake Mission Pack 2 Dissolution of Eternity",purchase,1.0,0 -58931437,"RADical ROACH Deluxe Edition",purchase,1.0,0 -58931437,"Realms of the Haunting",purchase,1.0,0 -58931437,"Ricochet",purchase,1.0,0 -58931437,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -58931437,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -58931437,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -58931437,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -58931437,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -58931437,"Samorost 2",purchase,1.0,0 -58931437,"Sanctum 2",purchase,1.0,0 -58931437,"Serious Sam 3 BFE",purchase,1.0,0 -58931437,"Soulbringer",purchase,1.0,0 -58931437,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -58931437,"Superfrog HD",purchase,1.0,0 -58931437,"Take On Helicopters",purchase,1.0,0 -58931437,"Team Fortress Classic",purchase,1.0,0 -58931437,"The Bureau XCOM Declassified",purchase,1.0,0 -58931437,"The Walking Dead",purchase,1.0,0 -58931437,"UFO Afterlight",purchase,1.0,0 -58931437,"Wallace & Gromit Ep 1 Fright of the Bumblebees",purchase,1.0,0 -58931437,"Wallace & Gromit Ep 2 The Last Resort",purchase,1.0,0 -58931437,"Wallace & Gromit Ep 3 Muzzled!",purchase,1.0,0 -58931437,"Wallace & Gromit Ep 4 The Bogey Man",purchase,1.0,0 -58931437,"Worms Blast",purchase,1.0,0 -58931437,"Worms Crazy Golf",purchase,1.0,0 -58931437,"Worms Pinball",purchase,1.0,0 -58931437,"Worms Reloaded",purchase,1.0,0 -58931437,"Worms Revolution",purchase,1.0,0 -58931437,"Worms Ultimate Mayhem",purchase,1.0,0 -91895208,"Football Manager 2013",purchase,1.0,0 -91895208,"Football Manager 2013",play,1478.0,0 -91895208,"Football Manager 2012",purchase,1.0,0 -91895208,"Football Manager 2012",play,1024.0,0 -27804333,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -27804333,"Dark Messiah of Might & Magic Single Player",play,0.8,0 -27804333,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -131096906,"Team Fortress 2",purchase,1.0,0 -131096906,"Team Fortress 2",play,604.0,0 -197293813,"Dota 2",purchase,1.0,0 -197293813,"Dota 2",play,9.4,0 -197293813,"Path of Exile",purchase,1.0,0 -291967240,"Robocraft",purchase,1.0,0 -291967240,"Robocraft",play,0.8,0 -291967240,"Unturned",purchase,1.0,0 -291967240,"GunZ 2 The Second Duel",purchase,1.0,0 -291967240,"Cubic Castles",purchase,1.0,0 -291967240,"Trove",purchase,1.0,0 -159688146,"Team Fortress 2",purchase,1.0,0 -159688146,"Team Fortress 2",play,4.1,0 -159688146,"Robocraft",purchase,1.0,0 -159688146,"Robocraft",play,2.7,0 -159688146,"Left 4 Dead 2",purchase,1.0,0 -159688146,"Left 4 Dead 2",play,0.2,0 -159688146,"Unturned",purchase,1.0,0 -159688146,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -159688146,"theHunter",purchase,1.0,0 -159688146,"Warframe",purchase,1.0,0 -159688146,"War Thunder",purchase,1.0,0 -24919113,"Counter-Strike",purchase,1.0,0 -24919113,"Counter-Strike",play,2316.0,0 -24919113,"Counter-Strike Global Offensive",purchase,1.0,0 -24919113,"Counter-Strike Global Offensive",play,1262.0,0 -24919113,"Infestation Survivor Stories",purchase,1.0,0 -24919113,"Infestation Survivor Stories",play,672.0,0 -24919113,"Dota 2",purchase,1.0,0 -24919113,"Dota 2",play,49.0,0 -24919113,"H1Z1",purchase,1.0,0 -24919113,"H1Z1",play,25.0,0 -24919113,"Ori and the Blind Forest",purchase,1.0,0 -24919113,"Ori and the Blind Forest",play,15.1,0 -24919113,"Age of Mythology Extended Edition",purchase,1.0,0 -24919113,"Age of Mythology Extended Edition",play,11.7,0 -24919113,"Counter-Strike Source",purchase,1.0,0 -24919113,"Counter-Strike Source",play,10.6,0 -24919113,"Path of Exile",purchase,1.0,0 -24919113,"Path of Exile",play,6.9,0 -24919113,"Counter-Strike Condition Zero",purchase,1.0,0 -24919113,"Counter-Strike Condition Zero",play,3.2,0 -24919113,"The Witcher Enhanced Edition",purchase,1.0,0 -24919113,"The Witcher Enhanced Edition",play,1.5,0 -24919113,"Middle-earth Shadow of Mordor",purchase,1.0,0 -24919113,"Middle-earth Shadow of Mordor",play,0.6,0 -24919113,"The Witcher 3 Wild Hunt",purchase,1.0,0 -24919113,"The Witcher 3 Wild Hunt",play,0.5,0 -24919113,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -24919113,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.5,0 -24919113,"Super Meat Boy",purchase,1.0,0 -24919113,"Super Meat Boy",play,0.4,0 -24919113,"Metro Last Light Redux",purchase,1.0,0 -24919113,"Metro Last Light Redux",play,0.3,0 -24919113,"Rise of Nations Extended Edition",purchase,1.0,0 -24919113,"Rise of Nations Extended Edition",play,0.2,0 -24919113,"Portal",purchase,1.0,0 -24919113,"Portal",play,0.2,0 -24919113,"C9",purchase,1.0,0 -24919113,"C9",play,0.1,0 -24919113,"Age of Empires II HD Edition",purchase,1.0,0 -24919113,"Age of Empires II HD The Forgotten",purchase,1.0,0 -24919113,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -24919113,"Cry of Fear",purchase,1.0,0 -24919113,"Day of Defeat Source",purchase,1.0,0 -24919113,"EasyAntiCheat eSports",purchase,1.0,0 -24919113,"GunZ 2 The Second Duel",purchase,1.0,0 -24919113,"H1Z1 Test Server",purchase,1.0,0 -24919113,"Half-Life 2 Deathmatch",purchase,1.0,0 -24919113,"Half-Life 2 Lost Coast",purchase,1.0,0 -24919113,"I, Zombie",purchase,1.0,0 -24919113,"Might & Magic Duel of Champions",purchase,1.0,0 -24919113,"Out There Somewhere",purchase,1.0,0 -24919113,"Portal 2",purchase,1.0,0 -24919113,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -24919113,"SpellForce 2 - Demons of the Past",purchase,1.0,0 -24919113,"SpellForce 2 - Demons of the Past - Soundtrack",purchase,1.0,0 -24919113,"SpellForce 2 - Faith in Destiny",purchase,1.0,0 -24919113,"SpellForce 2 Gold Edition",purchase,1.0,0 -24919113,"SpellForce Platinum Edition",purchase,1.0,0 -24919113,"TERA",purchase,1.0,0 -24919113,"The Elder Scrolls V Skyrim",purchase,1.0,0 -24919113,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -24919113,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -24919113,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -24919113,"The Slaughtering Grounds",purchase,1.0,0 -24919113,"The Witcher 3 Wild Hunt - Expansion Pass",purchase,1.0,0 -24919113,"This War of Mine",purchase,1.0,0 -24919113,"Tomb Raider",purchase,1.0,0 -24919113,"Trine",purchase,1.0,0 -24919113,"Trine 2",purchase,1.0,0 -24919113,"Trine 3 The Artifacts of Power",purchase,1.0,0 -24919113,"Ultra Street Fighter IV",purchase,1.0,0 -87601937,"Half-Life 2",purchase,1.0,0 -87601937,"Half-Life 2",play,10.8,0 -87601937,"Half-Life 2 Episode One",purchase,1.0,0 -87601937,"Half-Life 2 Episode One",play,7.4,0 -87601937,"Team Fortress 2",purchase,1.0,0 -87601937,"Team Fortress 2",play,6.9,0 -87601937,"Portal",purchase,1.0,0 -87601937,"Portal",play,2.6,0 -87601937,"Half-Life 2 Episode Two",purchase,1.0,0 -87601937,"Half-Life 2 Episode Two",play,1.4,0 -87601937,"Half-Life 2 Lost Coast",purchase,1.0,0 -89527544,"Team Fortress 2",purchase,1.0,0 -89527544,"Team Fortress 2",play,0.3,0 -166880158,"The Elder Scrolls V Skyrim",purchase,1.0,0 -166880158,"The Elder Scrolls V Skyrim",play,201.0,0 -166880158,"Fallout New Vegas",purchase,1.0,0 -166880158,"Fallout New Vegas",play,121.0,0 -166880158,"Fallout 3",purchase,1.0,0 -166880158,"Fallout 3",play,104.0,0 -166880158,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -166880158,"The Elder Scrolls IV Oblivion ",play,72.0,0 -166880158,"Fallout 4",purchase,1.0,0 -166880158,"Fallout 4",play,66.0,0 -166880158,"Neverwinter",purchase,1.0,0 -166880158,"Neverwinter",play,64.0,0 -166880158,"Assassin's Creed IV Black Flag",purchase,1.0,0 -166880158,"Assassin's Creed IV Black Flag",play,62.0,0 -166880158,"Commandos 2 Men of Courage",purchase,1.0,0 -166880158,"Commandos 2 Men of Courage",play,33.0,0 -166880158,"BioShock Infinite",purchase,1.0,0 -166880158,"BioShock Infinite",play,25.0,0 -166880158,"Dishonored",purchase,1.0,0 -166880158,"Dishonored",play,20.0,0 -166880158,"Mass Effect",purchase,1.0,0 -166880158,"Mass Effect",play,18.7,0 -166880158,"South Park The Stick of Truth",purchase,1.0,0 -166880158,"South Park The Stick of Truth",play,14.0,0 -166880158,"The Stanley Parable",purchase,1.0,0 -166880158,"The Stanley Parable",play,2.1,0 -166880158,"Call of Juarez Gunslinger",purchase,1.0,0 -166880158,"Call of Juarez Gunslinger",play,1.5,0 -166880158,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -166880158,"Vampire The Masquerade - Bloodlines",play,0.6,0 -166880158,"World of Goo",purchase,1.0,0 -166880158,"World of Goo",play,0.2,0 -166880158,"Commandos 3 Destination Berlin",purchase,1.0,0 -166880158,"Commandos Behind Enemy Lines",purchase,1.0,0 -166880158,"Antichamber",purchase,1.0,0 -166880158,"Commandos Beyond the Call of Duty",purchase,1.0,0 -166880158,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -166880158,"Fallout New Vegas Dead Money",purchase,1.0,0 -166880158,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -166880158,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -166880158,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -166880158,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -77818807,"Dota 2",purchase,1.0,0 -77818807,"Dota 2",play,147.0,0 -77818807,"The Elder Scrolls V Skyrim",purchase,1.0,0 -77818807,"The Elder Scrolls V Skyrim",play,83.0,0 -77818807,"Grand Theft Auto V",purchase,1.0,0 -77818807,"Grand Theft Auto V",play,47.0,0 -77818807,"Sid Meier's Civilization V",purchase,1.0,0 -77818807,"Sid Meier's Civilization V",play,14.4,0 -77818807,"FINAL FANTASY VIII",purchase,1.0,0 -77818807,"FINAL FANTASY VIII",play,10.2,0 -77818807,"Magicka",purchase,1.0,0 -77818807,"Magicka",play,4.4,0 -77818807,"Dungeon Defenders",purchase,1.0,0 -77818807,"Dungeon Defenders",play,3.7,0 -77818807,"Baldur's Gate II Enhanced Edition",purchase,1.0,0 -77818807,"Baldur's Gate II Enhanced Edition",play,3.2,0 -77818807,"Team Fortress 2",purchase,1.0,0 -77818807,"Team Fortress 2",play,0.8,0 -77818807,"Arma 2",purchase,1.0,0 -77818807,"Arma 2 Operation Arrowhead",purchase,1.0,0 -77818807,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -77818807,"Castle Crashers",purchase,1.0,0 -77818807,"Cities Skylines",purchase,1.0,0 -77818807,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -77818807,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -202586399,"Dota 2",purchase,1.0,0 -202586399,"Dota 2",play,1.1,0 -245304695,"Dota 2",purchase,1.0,0 -245304695,"Dota 2",play,1.9,0 -245304695,"Spiral Knights",purchase,1.0,0 -140757969,"Dota 2",purchase,1.0,0 -140757969,"Dota 2",play,3.7,0 -167879489,"Dota 2",purchase,1.0,0 -167879489,"Dota 2",play,18.0,0 -937567,"Day of Defeat Source",purchase,1.0,0 -937567,"Day of Defeat Source",play,1.1,0 -937567,"Day of Defeat",purchase,1.0,0 -937567,"Day of Defeat",play,0.3,0 -937567,"Counter-Strike",purchase,1.0,0 -937567,"Counter-Strike Condition Zero",purchase,1.0,0 -937567,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -937567,"Counter-Strike Source",purchase,1.0,0 -937567,"Deathmatch Classic",purchase,1.0,0 -937567,"Half-Life",purchase,1.0,0 -937567,"Half-Life 2",purchase,1.0,0 -937567,"Half-Life 2 Deathmatch",purchase,1.0,0 -937567,"Half-Life 2 Lost Coast",purchase,1.0,0 -937567,"Half-Life Blue Shift",purchase,1.0,0 -937567,"Half-Life Opposing Force",purchase,1.0,0 -937567,"Half-Life Source",purchase,1.0,0 -937567,"Half-Life Deathmatch Source",purchase,1.0,0 -937567,"Ricochet",purchase,1.0,0 -937567,"Team Fortress Classic",purchase,1.0,0 -215571763,"Dota 2",purchase,1.0,0 -215571763,"Dota 2",play,76.0,0 -215571763,"Unturned",purchase,1.0,0 -215571763,"Unturned",play,5.6,0 -290991390,"Dota 2",purchase,1.0,0 -290991390,"Dota 2",play,1.1,0 -290991390,"AdVenture Capitalist",purchase,1.0,0 -290991390,"Deepworld",purchase,1.0,0 -166439004,"Dota 2",purchase,1.0,0 -166439004,"Dota 2",play,451.0,0 -166439004,"Neverwinter",purchase,1.0,0 -166439004,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -166439004,"Warframe",purchase,1.0,0 -134223421,"Team Fortress 2",purchase,1.0,0 -134223421,"Team Fortress 2",play,2296.0,0 -134223421,"Counter-Strike Global Offensive",purchase,1.0,0 -134223421,"Counter-Strike Global Offensive",play,41.0,0 -134223421,"PAYDAY 2",purchase,1.0,0 -134223421,"PAYDAY 2",play,32.0,0 -134223421,"Killing Floor",purchase,1.0,0 -134223421,"Killing Floor",play,30.0,0 -134223421,"Garry's Mod",purchase,1.0,0 -134223421,"Garry's Mod",play,12.9,0 -134223421,"Goat Simulator",purchase,1.0,0 -134223421,"Goat Simulator",play,5.7,0 -134223421,"Left 4 Dead 2",purchase,1.0,0 -134223421,"Left 4 Dead 2",play,1.6,0 -134223421,"Fable - The Lost Chapters",purchase,1.0,0 -134223421,"Fable - The Lost Chapters",play,1.2,0 -134223421,"Lucius",purchase,1.0,0 -134223421,"Lucius",play,1.0,0 -134223421,"Dead Island",purchase,1.0,0 -134223421,"Dead Island",play,0.4,0 -134223421,"Dota 2",purchase,1.0,0 -134223421,"Dota 2",play,0.3,0 -134223421,"Fallout New Vegas",purchase,1.0,0 -134223421,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -134223421,"Aliens vs. Predator",purchase,1.0,0 -134223421,"Counter-Strike Nexon Zombies",purchase,1.0,0 -134223421,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -134223421,"Killing Floor Uncovered",purchase,1.0,0 -134223421,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -134223421,"No More Room in Hell",purchase,1.0,0 -142750305,"Counter-Strike Global Offensive",purchase,1.0,0 -142750305,"Counter-Strike Global Offensive",play,499.0,0 -142750305,"Dota 2",purchase,1.0,0 -142750305,"Dota 2",play,109.0,0 -142750305,"Assassins Creed Unity",purchase,1.0,0 -142750305,"Assassins Creed Unity",play,108.0,0 -142750305,"DayZ",purchase,1.0,0 -142750305,"DayZ",play,83.0,0 -142750305,"Natural Selection 2",purchase,1.0,0 -142750305,"Natural Selection 2",play,67.0,0 -142750305,"PlanetSide 2",purchase,1.0,0 -142750305,"PlanetSide 2",play,56.0,0 -142750305,"ARK Survival Evolved",purchase,1.0,0 -142750305,"ARK Survival Evolved",play,54.0,0 -142750305,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -142750305,"Call of Duty Advanced Warfare - Multiplayer",play,52.0,0 -142750305,"Dirty Bomb",purchase,1.0,0 -142750305,"Dirty Bomb",play,18.8,0 -142750305,"Primal Carnage",purchase,1.0,0 -142750305,"Primal Carnage",play,15.9,0 -142750305,"Star Wars - Battlefront II",purchase,1.0,0 -142750305,"Star Wars - Battlefront II",play,11.8,0 -142750305,"Don't Starve Together Beta",purchase,1.0,0 -142750305,"Don't Starve Together Beta",play,10.2,0 -142750305,"Heroes & Generals",purchase,1.0,0 -142750305,"Heroes & Generals",play,7.8,0 -142750305,"Halo Spartan Assault",purchase,1.0,0 -142750305,"Halo Spartan Assault",play,5.2,0 -142750305,"Chivalry Medieval Warfare",purchase,1.0,0 -142750305,"Chivalry Medieval Warfare",play,3.7,0 -142750305,"Primal Carnage Extinction",purchase,1.0,0 -142750305,"Primal Carnage Extinction",play,3.4,0 -142750305,"Reign Of Kings",purchase,1.0,0 -142750305,"Reign Of Kings",play,3.3,0 -142750305,"APB Reloaded",purchase,1.0,0 -142750305,"APB Reloaded",play,3.2,0 -142750305,"Warframe",purchase,1.0,0 -142750305,"Warframe",play,2.2,0 -142750305,"MechWarrior Online",purchase,1.0,0 -142750305,"MechWarrior Online",play,1.9,0 -142750305,"ArcheAge",purchase,1.0,0 -142750305,"ArcheAge",play,0.2,0 -142750305,"Call of Duty Advanced Warfare",purchase,1.0,0 -142750305,"Call of Duty Advanced Warfare",play,0.2,0 -142750305,"BattleBlock Theater",purchase,1.0,0 -142750305,"Borderlands 2",purchase,1.0,0 -142750305,"Don't Starve",purchase,1.0,0 -142750305,"Don't Starve Reign of Giants",purchase,1.0,0 -142750305,"Dragomon Hunter",purchase,1.0,0 -142750305,"Natural Selection 2 - Kodiak Pack",purchase,1.0,0 -142750305,"Natural Selection 2 - Reaper Pack",purchase,1.0,0 -142750305,"NS2 Combat",purchase,1.0,0 -142750305,"Patch testing for Chivalry",purchase,1.0,0 -186932671,"Team Fortress 2",purchase,1.0,0 -186932671,"Team Fortress 2",play,3.8,0 -186932671,"Unturned",purchase,1.0,0 -186932671,"Unturned",play,2.9,0 -186932671,"War Thunder",purchase,1.0,0 -186932671,"War Thunder",play,2.3,0 -186932671,"World of Guns Gun Disassembly",purchase,1.0,0 -186932671,"World of Guns Gun Disassembly",play,1.4,0 -186932671,"Heroes & Generals",purchase,1.0,0 -186932671,"Heroes & Generals",play,0.3,0 -186932671,"Guns and Robots",purchase,1.0,0 -186932671,"Guns and Robots",play,0.1,0 -186932671,"Robocraft",purchase,1.0,0 -102988032,"Warhammer 40,000 Space Marine",purchase,1.0,0 -102988032,"Warhammer 40,000 Space Marine",play,8.4,0 -9065641,"Counter-Strike",purchase,1.0,0 -9065641,"Counter-Strike",play,0.4,0 -9065641,"Ricochet",purchase,1.0,0 -9065641,"Ricochet",play,0.3,0 -9065641,"Day of Defeat",purchase,1.0,0 -9065641,"Deathmatch Classic",purchase,1.0,0 -9065641,"Half-Life",purchase,1.0,0 -9065641,"Half-Life Blue Shift",purchase,1.0,0 -9065641,"Half-Life Opposing Force",purchase,1.0,0 -9065641,"Team Fortress Classic",purchase,1.0,0 -192989716,"Unturned",purchase,1.0,0 -201152238,"Team Fortress 2",purchase,1.0,0 -201152238,"Team Fortress 2",play,4.2,0 -201152238,"Unturned",purchase,1.0,0 -201152238,"Unturned",play,1.3,0 -201152238,"Double Action Boogaloo",purchase,1.0,0 -192931464,"Dota 2",purchase,1.0,0 -192931464,"Dota 2",play,1.5,0 -258858619,"Unturned",purchase,1.0,0 -206558219,"Professional Farmer 2014",purchase,1.0,0 -206558219,"Professional Farmer 2014",play,18.4,0 -162985705,"Dota 2",purchase,1.0,0 -162985705,"Dota 2",play,21.0,0 -162985705,"Unturned",purchase,1.0,0 -155673786,"Dota 2",purchase,1.0,0 -155673786,"Dota 2",play,2653.0,0 -155673786,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -155673786,"Fallout 3 - Game of the Year Edition",play,57.0,0 -155673786,"Life Is Strange",purchase,1.0,0 -155673786,"Life Is Strange",play,35.0,0 -155673786,"Fistful of Frags",purchase,1.0,0 -155673786,"Fistful of Frags",play,35.0,0 -155673786,"This War of Mine",purchase,1.0,0 -155673786,"This War of Mine",play,34.0,0 -155673786,"Team Fortress 2",purchase,1.0,0 -155673786,"Team Fortress 2",play,30.0,0 -155673786,"7 Days to Die",purchase,1.0,0 -155673786,"7 Days to Die",play,18.5,0 -155673786,"The Walking Dead",purchase,1.0,0 -155673786,"The Walking Dead",play,15.6,0 -155673786,"BioShock",purchase,1.0,0 -155673786,"BioShock",play,14.2,0 -155673786,"Left 4 Dead 2",purchase,1.0,0 -155673786,"Left 4 Dead 2",play,13.8,0 -155673786,"The Wolf Among Us",purchase,1.0,0 -155673786,"The Wolf Among Us",play,12.5,0 -155673786,"Counter-Strike Global Offensive",purchase,1.0,0 -155673786,"Counter-Strike Global Offensive",play,11.4,0 -155673786,"Loadout",purchase,1.0,0 -155673786,"Loadout",play,10.9,0 -155673786,"The Walking Dead Season Two",purchase,1.0,0 -155673786,"The Walking Dead Season Two",play,10.2,0 -155673786,"Anna's Quest",purchase,1.0,0 -155673786,"Anna's Quest",play,9.2,0 -155673786,"BioShock Infinite",purchase,1.0,0 -155673786,"BioShock Infinite",play,9.2,0 -155673786,"BioShock 2",purchase,1.0,0 -155673786,"BioShock 2",play,8.8,0 -155673786,"Chaos on Deponia",purchase,1.0,0 -155673786,"Chaos on Deponia",play,7.3,0 -155673786,"Contagion",purchase,1.0,0 -155673786,"Contagion",play,6.5,0 -155673786,"The Guild II Renaissance",purchase,1.0,0 -155673786,"The Guild II Renaissance",play,6.1,0 -155673786,"The Vanishing of Ethan Carter",purchase,1.0,0 -155673786,"The Vanishing of Ethan Carter",play,6.0,0 -155673786,"Deponia",purchase,1.0,0 -155673786,"Deponia",play,5.6,0 -155673786,"Don't Starve",purchase,1.0,0 -155673786,"Don't Starve",play,5.4,0 -155673786,"Bastion",purchase,1.0,0 -155673786,"Bastion",play,5.0,0 -155673786,"Don't Starve Together Beta",purchase,1.0,0 -155673786,"Don't Starve Together Beta",play,4.2,0 -155673786,"PAYDAY The Heist",purchase,1.0,0 -155673786,"PAYDAY The Heist",play,3.6,0 -155673786,"Never Alone (Kisima Ingitchuna)",purchase,1.0,0 -155673786,"Never Alone (Kisima Ingitchuna)",play,3.4,0 -155673786,"Dishonored (RU)",purchase,1.0,0 -155673786,"Dishonored (RU)",play,3.2,0 -155673786,"Everlasting Summer",purchase,1.0,0 -155673786,"Everlasting Summer",play,3.1,0 -155673786,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -155673786,"School of Dragons How to Train Your Dragon",play,2.6,0 -155673786,"Commandos 2 Men of Courage",purchase,1.0,0 -155673786,"Commandos 2 Men of Courage",play,2.5,0 -155673786,"Mount & Blade Warband",purchase,1.0,0 -155673786,"Mount & Blade Warband",play,1.8,0 -155673786,"The Elder Scrolls V Skyrim",purchase,1.0,0 -155673786,"The Elder Scrolls V Skyrim",play,1.7,0 -155673786,"Chivalry Medieval Warfare",purchase,1.0,0 -155673786,"Chivalry Medieval Warfare",play,1.6,0 -155673786,"DiggerOnline",purchase,1.0,0 -155673786,"DiggerOnline",play,1.3,0 -155673786,"Canyon Capers",purchase,1.0,0 -155673786,"Canyon Capers",play,1.2,0 -155673786,"Assassin's Creed III",purchase,1.0,0 -155673786,"Assassin's Creed III",play,1.2,0 -155673786,"Over the Dream",purchase,1.0,0 -155673786,"Over the Dream",play,1.2,0 -155673786,"Aftermath",purchase,1.0,0 -155673786,"Aftermath",play,1.1,0 -155673786,"Blackguards",purchase,1.0,0 -155673786,"Blackguards",play,1.0,0 -155673786,"Asteria",purchase,1.0,0 -155673786,"Asteria",play,1.0,0 -155673786,"Styx Master of Shadows",purchase,1.0,0 -155673786,"Styx Master of Shadows",play,0.8,0 -155673786,"Nuclear Dawn",purchase,1.0,0 -155673786,"Nuclear Dawn",play,0.8,0 -155673786,"Enclave",purchase,1.0,0 -155673786,"Enclave",play,0.7,0 -155673786,"How to Survive",purchase,1.0,0 -155673786,"How to Survive",play,0.6,0 -155673786,"BIT.TRIP RUNNER",purchase,1.0,0 -155673786,"BIT.TRIP RUNNER",play,0.5,0 -155673786,"Afterfall InSanity Extended Edition",purchase,1.0,0 -155673786,"Afterfall InSanity Extended Edition",play,0.5,0 -155673786,"Nosgoth",purchase,1.0,0 -155673786,"Nosgoth",play,0.5,0 -155673786,"Magicka Wizard Wars",purchase,1.0,0 -155673786,"Magicka Wizard Wars",play,0.5,0 -155673786,"Frozen Hearth",purchase,1.0,0 -155673786,"Frozen Hearth",play,0.2,0 -155673786,"LIMBO",purchase,1.0,0 -155673786,"LIMBO",play,0.2,0 -155673786,"Robocraft",purchase,1.0,0 -155673786,"Robocraft",play,0.2,0 -155673786,"Dead Island Epidemic",purchase,1.0,0 -155673786,"Dead Island Epidemic",play,0.1,0 -155673786,"Knights and Merchants",purchase,1.0,0 -155673786,"Knights and Merchants",play,0.1,0 -155673786,"Sniper Elite V2",purchase,1.0,0 -155673786,"Sniper Elite V2",play,0.1,0 -155673786,"Velvet Assassin",purchase,1.0,0 -155673786,"POSTAL",purchase,1.0,0 -155673786,"Counter-Strike Source",purchase,1.0,0 -155673786,"KnightShift",purchase,1.0,0 -155673786,"Mount & Blade With Fire and Sword",purchase,1.0,0 -155673786,"Munin",purchase,1.0,0 -155673786,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -155673786,"Wizorb",purchase,1.0,0 -155673786,"Goodbye Deponia",purchase,1.0,0 -155673786,"Jamestown",purchase,1.0,0 -155673786,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -155673786,"Patch testing for Chivalry",purchase,1.0,0 -155673786,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -155673786,"Journey of a Roach",purchase,1.0,0 -155673786,"Speedball 2 HD",purchase,1.0,0 -155673786,"AquaNox",purchase,1.0,0 -155673786,"AquaNox 2 Revelation",purchase,1.0,0 -155673786,"Arctic Combat",purchase,1.0,0 -155673786,"Assassin's Creed Freedom Cry",purchase,1.0,0 -155673786,"Assassin's Creed IV Black Flag",purchase,1.0,0 -155673786,"Blaster Shooter GunGuy!",purchase,1.0,0 -155673786,"Borderlands 2",purchase,1.0,0 -155673786,"Borderlands 2 RU",purchase,1.0,0 -155673786,"Break Into Zatwor",purchase,1.0,0 -155673786,"Break the Cube",purchase,1.0,0 -155673786,"Clans",purchase,1.0,0 -155673786,"Cobi Treasure Deluxe",purchase,1.0,0 -155673786,"Commandos 3 Destination Berlin",purchase,1.0,0 -155673786,"Commandos Behind Enemy Lines",purchase,1.0,0 -155673786,"Commandos Beyond the Call of Duty",purchase,1.0,0 -155673786,"Counter-Strike",purchase,1.0,0 -155673786,"Counter-Strike Condition Zero",purchase,1.0,0 -155673786,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -155673786,"Crash Time II",purchase,1.0,0 -155673786,"Cruel Arena",purchase,1.0,0 -155673786,"Curse The Eye of Isis",purchase,1.0,0 -155673786,"Dark Fall 2 Lights Out",purchase,1.0,0 -155673786,"Deadly Profits",purchase,1.0,0 -155673786,"Defend Your Life",purchase,1.0,0 -155673786,"Desert Thunder",purchase,1.0,0 -155673786,"Destiny Warriors",purchase,1.0,0 -155673786,"DETOUR",purchase,1.0,0 -155673786,"Disciples II Gallean's Return",purchase,1.0,0 -155673786,"Disciples II Rise of the Elves",purchase,1.0,0 -155673786,"Don't Starve Shipwrecked",purchase,1.0,0 -155673786,"Don't Starve Reign of Giants",purchase,1.0,0 -155673786,"Double Dragon Neon",purchase,1.0,0 -155673786,"East India Company Gold",purchase,1.0,0 -155673786,"Ferrum's Secrets where is grandpa?",purchase,1.0,0 -155673786,"Fractured Space",purchase,1.0,0 -155673786,"Frederic Evil Strikes Back",purchase,1.0,0 -155673786,"Frederic Resurrection of Music",purchase,1.0,0 -155673786,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -155673786,"GooCubelets",purchase,1.0,0 -155673786,"Gotham City Impostors Free To Play",purchase,1.0,0 -155673786,"Gratuitous Space Battles",purchase,1.0,0 -155673786,"Greyfox",purchase,1.0,0 -155673786,"GTR Evolution",purchase,1.0,0 -155673786,"Hacker Evolution - Untold",purchase,1.0,0 -155673786,"Happy Wars",purchase,1.0,0 -155673786,"Hard Truck Apocalypse Rise Of Clans / Ex Machina Meridian 113",purchase,1.0,0 -155673786,"Hatland Adventures",purchase,1.0,0 -155673786,"I, Zombie",purchase,1.0,0 -155673786,"KAMI",purchase,1.0,0 -155673786,"Knight of the Hamsters",purchase,1.0,0 -155673786,"Labyronia RPG",purchase,1.0,0 -155673786,"Labyronia RPG 2",purchase,1.0,0 -155673786,"Legendary",purchase,1.0,0 -155673786,"Legend of Mysteria",purchase,1.0,0 -155673786,"Make it indie!",purchase,1.0,0 -155673786,"Manhunter",purchase,1.0,0 -155673786,"Marvel Heroes 2015",purchase,1.0,0 -155673786,"Metro 2033 Redux",purchase,1.0,0 -155673786,"Metro Last Light Redux",purchase,1.0,0 -155673786,"Morphopolis",purchase,1.0,0 -155673786,"Murder Miners",purchase,1.0,0 -155673786,"Numba Deluxe",purchase,1.0,0 -155673786,"Oozi Earth Adventure",purchase,1.0,0 -155673786,"Out There Somewhere",purchase,1.0,0 -155673786,"Painkiller Redemption",purchase,1.0,0 -155673786,"Painkiller Overdose",purchase,1.0,0 -155673786,"Particula",purchase,1.0,0 -155673786,"Pirates of Black Cove Gold",purchase,1.0,0 -155673786,"Quick Slick Deadly",purchase,1.0,0 -155673786,"RACE 07",purchase,1.0,0 -155673786,"RaceRoom Racing Experience ",purchase,1.0,0 -155673786,"Revolution Ace",purchase,1.0,0 -155673786,"Ring Runner Flight of the Sages",purchase,1.0,0 -155673786,"Sacred Gold",purchase,1.0,0 -155673786,"Saviors",purchase,1.0,0 -155673786,"Secret Of Magia",purchase,1.0,0 -155673786,"Sherlock Holmes Crimes and Punishments",purchase,1.0,0 -155673786,"SpaceCorn",purchase,1.0,0 -155673786,"Sparkle 3 Genesis",purchase,1.0,0 -155673786,"Spooky Cats",purchase,1.0,0 -155673786,"Sumo Revise",purchase,1.0,0 -155673786,"SUPER DISTRO",purchase,1.0,0 -155673786,"Teddy Floppy Ear - Mountain Adventure",purchase,1.0,0 -155673786,"The Adventures of Mr. Bobley",purchase,1.0,0 -155673786,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -155673786,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -155673786,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -155673786,"The Guild Gold Edition",purchase,1.0,0 -155673786,"The Guild II",purchase,1.0,0 -155673786,"The Guild II - Pirates of the European Seas",purchase,1.0,0 -155673786,"The Hat Man Shadow Ward",purchase,1.0,0 -155673786,"The Tiny Bang Story",purchase,1.0,0 -155673786,"The Tower Of Elements",purchase,1.0,0 -155673786,"The Vanishing of Ethan Carter Redux",purchase,1.0,0 -155673786,"Thief Gold",purchase,1.0,0 -155673786,"Tick The Time Based Puzzle Game",purchase,1.0,0 -155673786,"Tinboy",purchase,1.0,0 -155673786,"Vegas Make It Big",purchase,1.0,0 -155673786,"Waveform",purchase,1.0,0 -155673786,"Why So Evil",purchase,1.0,0 -155673786,"Why So Evil 2 Dystopia",purchase,1.0,0 -155673786,"X3 Terran Conflict",purchase,1.0,0 -155673786,"Yet Another Zombie Defense",purchase,1.0,0 -205791817,"Dota 2",purchase,1.0,0 -205791817,"Dota 2",play,0.2,0 -124443679,"Counter-Strike Global Offensive",purchase,1.0,0 -124443679,"Counter-Strike Global Offensive",play,1819.0,0 -124443679,"Assassin's Creed IV Black Flag",purchase,1.0,0 -124443679,"Assassin's Creed IV Black Flag",play,333.0,0 -124443679,"Clicker Heroes",purchase,1.0,0 -124443679,"Clicker Heroes",play,240.0,0 -124443679,"The Elder Scrolls V Skyrim",purchase,1.0,0 -124443679,"The Elder Scrolls V Skyrim",play,83.0,0 -124443679,"GRID 2",purchase,1.0,0 -124443679,"GRID 2",play,44.0,0 -124443679,"Counter-Strike Source",purchase,1.0,0 -124443679,"Counter-Strike Source",play,36.0,0 -124443679,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -124443679,"Call of Duty Modern Warfare 2 - Multiplayer",play,36.0,0 -124443679,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -124443679,"Call of Duty Black Ops II - Multiplayer",play,36.0,0 -124443679,"Far Cry 4",purchase,1.0,0 -124443679,"Far Cry 4",play,30.0,0 -124443679,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -124443679,"Call of Duty Ghosts - Multiplayer",play,22.0,0 -124443679,"Counter-Strike",purchase,1.0,0 -124443679,"Counter-Strike",play,19.3,0 -124443679,"PAYDAY 2",purchase,1.0,0 -124443679,"PAYDAY 2",play,18.2,0 -124443679,"Amnesia A Machine for Pigs",purchase,1.0,0 -124443679,"Amnesia A Machine for Pigs",play,13.1,0 -124443679,"War Thunder",purchase,1.0,0 -124443679,"War Thunder",play,12.1,0 -124443679,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -124443679,"Call of Duty Advanced Warfare - Multiplayer",play,10.1,0 -124443679,"Arma 3",purchase,1.0,0 -124443679,"Arma 3",play,10.1,0 -124443679,"Rocket League",purchase,1.0,0 -124443679,"Rocket League",play,10.1,0 -124443679,"Dirty Bomb",purchase,1.0,0 -124443679,"Dirty Bomb",play,9.3,0 -124443679,"Devilian",purchase,1.0,0 -124443679,"Devilian",play,8.5,0 -124443679,"Saints Row IV",purchase,1.0,0 -124443679,"Saints Row IV",play,6.6,0 -124443679,"Call of Duty Ghosts",purchase,1.0,0 -124443679,"Call of Duty Ghosts",play,6.5,0 -124443679,"Trials 2 Second Edition",purchase,1.0,0 -124443679,"Trials 2 Second Edition",play,4.6,0 -124443679,"Portal 2",purchase,1.0,0 -124443679,"Portal 2",play,4.2,0 -124443679,"ARK Survival Evolved",purchase,1.0,0 -124443679,"ARK Survival Evolved",play,3.5,0 -124443679,"Team Fortress 2",purchase,1.0,0 -124443679,"Team Fortress 2",play,3.2,0 -124443679,"Left 4 Dead 2",purchase,1.0,0 -124443679,"Left 4 Dead 2",play,2.3,0 -124443679,"Grand Theft Auto San Andreas",purchase,1.0,0 -124443679,"Grand Theft Auto San Andreas",play,1.0,0 -124443679,"Call of Duty Advanced Warfare",purchase,1.0,0 -124443679,"Call of Duty Advanced Warfare",play,1.0,0 -124443679,"Bloons TD5",purchase,1.0,0 -124443679,"Bloons TD5",play,0.7,0 -124443679,"Heroes & Generals",purchase,1.0,0 -124443679,"Heroes & Generals",play,0.6,0 -124443679,"Counter-Strike Condition Zero",purchase,1.0,0 -124443679,"Counter-Strike Condition Zero",play,0.5,0 -124443679,"Nosgoth",purchase,1.0,0 -124443679,"Nosgoth",play,0.2,0 -124443679,"Grand Theft Auto Vice City",purchase,1.0,0 -124443679,"Grand Theft Auto Vice City",play,0.2,0 -124443679,"Sakura Clicker",purchase,1.0,0 -124443679,"Call of Duty Modern Warfare 2",purchase,1.0,0 -124443679,"APB Reloaded",purchase,1.0,0 -124443679,"Path of Exile",purchase,1.0,0 -124443679,"Arma 3 Zeus",purchase,1.0,0 -124443679,"Call of Duty Black Ops II",purchase,1.0,0 -124443679,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -124443679,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -124443679,"Counter-Strike Nexon Zombies",purchase,1.0,0 -124443679,"Dead Island Epidemic",purchase,1.0,0 -124443679,"EVGA PrecisionX 16",purchase,1.0,0 -124443679,"Grand Theft Auto San Andreas",purchase,1.0,0 -124443679,"Grand Theft Auto Vice City",purchase,1.0,0 -124443679,"RIFT",purchase,1.0,0 -124443679,"Robocraft",purchase,1.0,0 -124443679,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -124443679,"Tactical Intervention",purchase,1.0,0 -124443679,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -124443679,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -124443679,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -124443679,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -124443679,"Unturned",purchase,1.0,0 -216854441,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -181850506,"Dota 2",purchase,1.0,0 -181850506,"Dota 2",play,248.0,0 -181850506,"Marvel Heroes 2015",purchase,1.0,0 -181850506,"Marvel Puzzle Quest",purchase,1.0,0 -181850506,"PlanetSide 2",purchase,1.0,0 -181850506,"Ragnarok Online 2",purchase,1.0,0 -181850506,"ROSE Online",purchase,1.0,0 -181850506,"Warframe",purchase,1.0,0 -237881427,"Team Fortress 2",purchase,1.0,0 -237881427,"Team Fortress 2",play,0.6,0 -237881427,"Emily is Away",purchase,1.0,0 -237881427,"Emily is Away",play,0.6,0 -237881427,"Life Is Strange",purchase,1.0,0 -237881427,"War Thunder",purchase,1.0,0 -82436907,"Warframe",purchase,1.0,0 -82436907,"Warframe",play,743.0,0 -82436907,"Robocraft",purchase,1.0,0 -82436907,"Robocraft",play,60.0,0 -82436907,"The Mighty Quest For Epic Loot",purchase,1.0,0 -82436907,"The Mighty Quest For Epic Loot",play,41.0,0 -82436907,"Path of Exile",purchase,1.0,0 -82436907,"Path of Exile",play,30.0,0 -82436907,"Loadout",purchase,1.0,0 -82436907,"Loadout",play,7.9,0 -82436907,"Block N Load",purchase,1.0,0 -82436907,"Block N Load",play,3.4,0 -82436907,"TERA",purchase,1.0,0 -82436907,"TERA",play,2.5,0 -82436907,"PlanetSide 2",purchase,1.0,0 -82436907,"PlanetSide 2",play,0.9,0 -82436907,"Defiance",purchase,1.0,0 -82436907,"Fractured Space",purchase,1.0,0 -82436907,"Killing Floor Uncovered",purchase,1.0,0 -82436907,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -163432200,"Star Trek Online",purchase,1.0,0 -163432200,"Star Trek Online",play,244.0,0 -163432200,"Trove",purchase,1.0,0 -163432200,"Trove",play,226.0,0 -163432200,"Sid Meier's Civilization V",purchase,1.0,0 -163432200,"Sid Meier's Civilization V",play,221.0,0 -163432200,"War Thunder",purchase,1.0,0 -163432200,"War Thunder",play,182.0,0 -163432200,"Spore",purchase,1.0,0 -163432200,"Spore",play,181.0,0 -163432200,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -163432200,"DARK SOULS II Scholar of the First Sin",play,176.0,0 -163432200,"The Elder Scrolls V Skyrim",purchase,1.0,0 -163432200,"The Elder Scrolls V Skyrim",play,168.0,0 -163432200,"Don't Starve",purchase,1.0,0 -163432200,"Don't Starve",play,141.0,0 -163432200,"Planet Explorers",purchase,1.0,0 -163432200,"Planet Explorers",play,125.0,0 -163432200,"Borderlands 2",purchase,1.0,0 -163432200,"Borderlands 2",play,109.0,0 -163432200,"Saints Row IV",purchase,1.0,0 -163432200,"Saints Row IV",play,108.0,0 -163432200,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -163432200,"Sid Meier's Civilization Beyond Earth",play,108.0,0 -163432200,"Spore Creepy & Cute Parts Pack",purchase,1.0,0 -163432200,"Spore Creepy & Cute Parts Pack",play,66.0,0 -163432200,"Cities Skylines",purchase,1.0,0 -163432200,"Cities Skylines",play,64.0,0 -163432200,"Assassin's Creed IV Black Flag",purchase,1.0,0 -163432200,"Assassin's Creed IV Black Flag",play,62.0,0 -163432200,"Don't Starve Together Beta",purchase,1.0,0 -163432200,"Don't Starve Together Beta",play,59.0,0 -163432200,"Grand Theft Auto IV",purchase,1.0,0 -163432200,"Grand Theft Auto IV",play,47.0,0 -163432200,"South Park The Stick of Truth",purchase,1.0,0 -163432200,"South Park The Stick of Truth",play,42.0,0 -163432200,"Creativerse",purchase,1.0,0 -163432200,"Creativerse",play,36.0,0 -163432200,"PAYDAY 2",purchase,1.0,0 -163432200,"PAYDAY 2",play,29.0,0 -163432200,"ARK Survival Evolved",purchase,1.0,0 -163432200,"ARK Survival Evolved",play,27.0,0 -163432200,"Warframe",purchase,1.0,0 -163432200,"Warframe",play,23.0,0 -163432200,"TERA",purchase,1.0,0 -163432200,"TERA",play,19.9,0 -163432200,"Fallen Earth",purchase,1.0,0 -163432200,"Fallen Earth",play,19.1,0 -163432200,"Robocraft",purchase,1.0,0 -163432200,"Robocraft",play,16.7,0 -163432200,"Unturned",purchase,1.0,0 -163432200,"Unturned",play,15.2,0 -163432200,"Game Dev Tycoon",purchase,1.0,0 -163432200,"Game Dev Tycoon",play,13.0,0 -163432200,"Plague Inc Evolved",purchase,1.0,0 -163432200,"Plague Inc Evolved",play,9.8,0 -163432200,"Fractured Space",purchase,1.0,0 -163432200,"Fractured Space",play,9.7,0 -163432200,"Star Conflict",purchase,1.0,0 -163432200,"Star Conflict",play,9.7,0 -163432200,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -163432200,"Fallout 3 - Game of the Year Edition",play,8.8,0 -163432200,"ORION Prelude",purchase,1.0,0 -163432200,"ORION Prelude",play,8.6,0 -163432200,"Spore Galactic Adventures",purchase,1.0,0 -163432200,"Spore Galactic Adventures",play,7.9,0 -163432200,"Dota 2",purchase,1.0,0 -163432200,"Dota 2",play,7.9,0 -163432200,"Sid Meier's Starships",purchase,1.0,0 -163432200,"Sid Meier's Starships",play,6.3,0 -163432200,"Saints Row Gat out of Hell",purchase,1.0,0 -163432200,"Saints Row Gat out of Hell",play,5.6,0 -163432200,"Dungeon Defenders II",purchase,1.0,0 -163432200,"Dungeon Defenders II",play,4.1,0 -163432200,"Pid ",purchase,1.0,0 -163432200,"Pid ",play,3.9,0 -163432200,"The Forest",purchase,1.0,0 -163432200,"The Forest",play,3.3,0 -163432200,"The Lord of the Rings War in the North",purchase,1.0,0 -163432200,"The Lord of the Rings War in the North",play,3.2,0 -163432200,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -163432200,"Red Faction Guerrilla Steam Edition",play,3.1,0 -163432200,"Magicka",purchase,1.0,0 -163432200,"Magicka",play,2.2,0 -163432200,"PlanetSide 2",purchase,1.0,0 -163432200,"PlanetSide 2",play,2.1,0 -163432200,"Planetary Annihilation",purchase,1.0,0 -163432200,"Planetary Annihilation",play,2.1,0 -163432200,"Nosgoth",purchase,1.0,0 -163432200,"Nosgoth",play,1.6,0 -163432200,"Realm of the Mad God",purchase,1.0,0 -163432200,"Realm of the Mad God",play,1.1,0 -163432200,"Aura Kingdom",purchase,1.0,0 -163432200,"Aura Kingdom",play,1.0,0 -163432200,"Relic Hunters Zero",purchase,1.0,0 -163432200,"Relic Hunters Zero",play,0.8,0 -163432200,"Tomb Raider",purchase,1.0,0 -163432200,"Tomb Raider",play,0.7,0 -163432200,"The Settlers Online",purchase,1.0,0 -163432200,"The Settlers Online",play,0.6,0 -163432200,"Star Wars - Battlefront II",purchase,1.0,0 -163432200,"Star Wars - Battlefront II",play,0.5,0 -163432200,"Navy Field 2 Conqueror of the Ocean",purchase,1.0,0 -163432200,"Navy Field 2 Conqueror of the Ocean",play,0.4,0 -163432200,"Team Fortress 2",purchase,1.0,0 -163432200,"Team Fortress 2",play,0.3,0 -163432200,"Magicka Wizard Wars",purchase,1.0,0 -163432200,"Magicka Wizard Wars",play,0.2,0 -163432200,"Villagers and Heroes",purchase,1.0,0 -163432200,"Villagers and Heroes",play,0.2,0 -163432200,"E.Y.E Divine Cybermancy",purchase,1.0,0 -163432200,"E.Y.E Divine Cybermancy",play,0.1,0 -163432200,"Monaco",purchase,1.0,0 -163432200,"Monaco",play,0.1,0 -163432200,"Heroes & Generals",purchase,1.0,0 -163432200,"Heroes & Generals",play,0.1,0 -163432200,"Transformice",purchase,1.0,0 -163432200,"CaesarIA",purchase,1.0,0 -163432200,"Don't Starve Reign of Giants",purchase,1.0,0 -163432200,"Firefall",purchase,1.0,0 -163432200,"RIFT",purchase,1.0,0 -163432200,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -163432200,"Sid Meier's Civilization Beyond Earth - Rising Tide",purchase,1.0,0 -163432200,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -163432200,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -79155765,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -79155765,"Call of Duty Modern Warfare 3 - Multiplayer",play,160.0,0 -79155765,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -79155765,"Call of Duty Black Ops - Multiplayer",play,51.0,0 -79155765,"Just Cause 2",purchase,1.0,0 -79155765,"Just Cause 2",play,25.0,0 -79155765,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -79155765,"Call of Duty Modern Warfare 2 - Multiplayer",play,18.3,0 -79155765,"Call of Duty Modern Warfare 3",purchase,1.0,0 -79155765,"Call of Duty Modern Warfare 3",play,17.4,0 -79155765,"Call of Duty Black Ops",purchase,1.0,0 -79155765,"Call of Duty Black Ops",play,13.5,0 -79155765,"Call of Duty Modern Warfare 2",purchase,1.0,0 -79155765,"Call of Duty Modern Warfare 2",play,10.6,0 -79155765,"Portal",purchase,1.0,0 -79155765,"Portal",play,7.9,0 -79155765,"Serious Sam 3 BFE",purchase,1.0,0 -79155765,"Serious Sam 3 BFE",play,7.7,0 -79155765,"Team Fortress 2",purchase,1.0,0 -79155765,"Team Fortress 2",play,6.6,0 -79155765,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -79155765,"Rising Storm/Red Orchestra 2 Multiplayer",play,5.5,0 -79155765,"Victoria II",purchase,1.0,0 -79155765,"Victoria II",play,3.5,0 -79155765,"The Elder Scrolls V Skyrim",purchase,1.0,0 -79155765,"The Elder Scrolls V Skyrim",play,1.9,0 -79155765,"McPixel",purchase,1.0,0 -79155765,"McPixel",play,1.9,0 -79155765,"Counter-Strike Global Offensive",purchase,1.0,0 -79155765,"Counter-Strike Global Offensive",play,1.0,0 -79155765,"Serious Sam Double D XXL",purchase,1.0,0 -79155765,"Serious Sam Double D XXL",play,0.5,0 -79155765,"Serious Sam HD The Second Encounter",purchase,1.0,0 -79155765,"Serious Sam HD The Second Encounter",play,0.4,0 -79155765,"Serious Sam HD The First Encounter",purchase,1.0,0 -79155765,"Serious Sam HD The First Encounter",play,0.3,0 -79155765,"Serious Sam Classics Revolution",purchase,1.0,0 -79155765,"Serious Sam Classics Revolution",play,0.2,0 -79155765,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -79155765,"Serious Sam Classic The Second Encounter",play,0.2,0 -79155765,"Serious Sam The Random Encounter",purchase,1.0,0 -79155765,"Amnesia The Dark Descent",purchase,1.0,0 -79155765,"Portal 2",purchase,1.0,0 -79155765,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -79155765,"Serious Sam 2",purchase,1.0,0 -79155765,"Serious Sam Classic The First Encounter",purchase,1.0,0 -163293998,"Dota 2",purchase,1.0,0 -163293998,"Dota 2",play,0.7,0 -92593907,"Dota 2",purchase,1.0,0 -92593907,"Dota 2",play,3289.0,0 -92593907,"Counter-Strike Global Offensive",purchase,1.0,0 -92593907,"Counter-Strike Global Offensive",play,372.0,0 -92593907,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -92593907,"Call of Duty Modern Warfare 3 - Multiplayer",play,175.0,0 -92593907,"Garry's Mod",purchase,1.0,0 -92593907,"Garry's Mod",play,166.0,0 -92593907,"Terraria",purchase,1.0,0 -92593907,"Terraria",play,124.0,0 -92593907,"Team Fortress 2",purchase,1.0,0 -92593907,"Team Fortress 2",play,50.0,0 -92593907,"Saints Row The Third",purchase,1.0,0 -92593907,"Saints Row The Third",play,50.0,0 -92593907,"Everlasting Summer",purchase,1.0,0 -92593907,"Everlasting Summer",play,48.0,0 -92593907,"PAYDAY 2",purchase,1.0,0 -92593907,"PAYDAY 2",play,44.0,0 -92593907,"Counter-Strike Source",purchase,1.0,0 -92593907,"Counter-Strike Source",play,40.0,0 -92593907,"Borderlands 2 RU",purchase,1.0,0 -92593907,"Borderlands 2 RU",play,40.0,0 -92593907,"Sid Meier's Civilization V",purchase,1.0,0 -92593907,"Sid Meier's Civilization V",play,32.0,0 -92593907,"South Park The Stick of Truth",purchase,1.0,0 -92593907,"South Park The Stick of Truth",play,25.0,0 -92593907,"Call of Duty Modern Warfare 3",purchase,1.0,0 -92593907,"Call of Duty Modern Warfare 3",play,25.0,0 -92593907,"Unturned",purchase,1.0,0 -92593907,"Unturned",play,21.0,0 -92593907,"Starbound",purchase,1.0,0 -92593907,"Starbound",play,18.7,0 -92593907,"Castle Crashers",purchase,1.0,0 -92593907,"Castle Crashers",play,18.0,0 -92593907,"Aliens vs. Predator",purchase,1.0,0 -92593907,"Aliens vs. Predator",play,17.9,0 -92593907,"Saints Row IV",purchase,1.0,0 -92593907,"Saints Row IV",play,17.1,0 -92593907,"Max Payne 3",purchase,1.0,0 -92593907,"Max Payne 3",play,15.7,0 -92593907,"Tropico 4",purchase,1.0,0 -92593907,"Tropico 4",play,15.4,0 -92593907,"Assassin's Creed Brotherhood",purchase,1.0,0 -92593907,"Assassin's Creed Brotherhood",play,13.4,0 -92593907,"Call of Duty Black Ops II",purchase,1.0,0 -92593907,"Call of Duty Black Ops II",play,13.3,0 -92593907,"Saints Row 2",purchase,1.0,0 -92593907,"Saints Row 2",play,13.3,0 -92593907,"Just Cause 2",purchase,1.0,0 -92593907,"Just Cause 2",play,13.1,0 -92593907,"Nosgoth",purchase,1.0,0 -92593907,"Nosgoth",play,12.0,0 -92593907,"War Thunder",purchase,1.0,0 -92593907,"War Thunder",play,11.2,0 -92593907,"Fallout New Vegas",purchase,1.0,0 -92593907,"Fallout New Vegas",play,11.1,0 -92593907,"Just Cause",purchase,1.0,0 -92593907,"Just Cause",play,10.6,0 -92593907,"The Binding of Isaac",purchase,1.0,0 -92593907,"The Binding of Isaac",play,10.5,0 -92593907,"Killing Floor",purchase,1.0,0 -92593907,"Killing Floor",play,8.8,0 -92593907,"Deponia",purchase,1.0,0 -92593907,"Deponia",play,8.7,0 -92593907,"Chaos on Deponia",purchase,1.0,0 -92593907,"Chaos on Deponia",play,8.6,0 -92593907,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -92593907,"Just Cause 2 Multiplayer Mod",play,8.6,0 -92593907,"Goodbye Deponia",purchase,1.0,0 -92593907,"Goodbye Deponia",play,8.0,0 -92593907,"Counter-Strike Nexon Zombies",purchase,1.0,0 -92593907,"Counter-Strike Nexon Zombies",play,7.6,0 -92593907,"H1Z1",purchase,1.0,0 -92593907,"H1Z1",play,7.5,0 -92593907,"Sniper Elite V2",purchase,1.0,0 -92593907,"Sniper Elite V2",play,7.5,0 -92593907,"Magicka",purchase,1.0,0 -92593907,"Magicka",play,6.7,0 -92593907,"Darkspore",purchase,1.0,0 -92593907,"Darkspore",play,4.6,0 -92593907,"PAYDAY The Heist",purchase,1.0,0 -92593907,"PAYDAY The Heist",play,4.5,0 -92593907,"Trine 2",purchase,1.0,0 -92593907,"Trine 2",play,4.3,0 -92593907,"Darksiders",purchase,1.0,0 -92593907,"Darksiders",play,4.0,0 -92593907,"Magicka Wizard Wars",purchase,1.0,0 -92593907,"Magicka Wizard Wars",play,3.7,0 -92593907,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -92593907,"Call of Duty Black Ops II - Multiplayer",play,3.4,0 -92593907,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -92593907,"The Witcher 2 Assassins of Kings Enhanced Edition",play,3.1,0 -92593907,"Hell Yeah!",purchase,1.0,0 -92593907,"Hell Yeah!",play,2.9,0 -92593907,"The Treasures of Montezuma 4",purchase,1.0,0 -92593907,"The Treasures of Montezuma 4",play,2.5,0 -92593907,"theHunter",purchase,1.0,0 -92593907,"theHunter",play,2.4,0 -92593907,"Grand Theft Auto IV",purchase,1.0,0 -92593907,"Grand Theft Auto IV",play,2.2,0 -92593907,"Clicker Heroes",purchase,1.0,0 -92593907,"Clicker Heroes",play,2.1,0 -92593907,"Risk of Rain",purchase,1.0,0 -92593907,"Risk of Rain",play,2.1,0 -92593907,"DiggerOnline",purchase,1.0,0 -92593907,"DiggerOnline",play,2.0,0 -92593907,"Alan Wake",purchase,1.0,0 -92593907,"Alan Wake",play,2.0,0 -92593907,"Defy Gravity",purchase,1.0,0 -92593907,"Defy Gravity",play,1.9,0 -92593907,"PixelJunk Eden",purchase,1.0,0 -92593907,"PixelJunk Eden",play,1.9,0 -92593907,"Sanctum",purchase,1.0,0 -92593907,"Sanctum",play,1.8,0 -92593907,"Lucius",purchase,1.0,0 -92593907,"Lucius",play,1.8,0 -92593907,"Bastion",purchase,1.0,0 -92593907,"Bastion",play,1.5,0 -92593907,"The Witcher Enhanced Edition",purchase,1.0,0 -92593907,"The Witcher Enhanced Edition",play,1.5,0 -92593907,"The Hat Man Shadow Ward",purchase,1.0,0 -92593907,"The Hat Man Shadow Ward",play,1.2,0 -92593907,"Mountain",purchase,1.0,0 -92593907,"Mountain",play,1.2,0 -92593907,"AZMD! Scorepocalypse ",purchase,1.0,0 -92593907,"AZMD! Scorepocalypse ",play,1.1,0 -92593907,"Ace of Spades",purchase,1.0,0 -92593907,"Ace of Spades",play,1.1,0 -92593907,"Awesomenauts",purchase,1.0,0 -92593907,"Awesomenauts",play,1.0,0 -92593907,"Zen Bound 2",purchase,1.0,0 -92593907,"Zen Bound 2",play,0.9,0 -92593907,"The Night of the Rabbit",purchase,1.0,0 -92593907,"The Night of the Rabbit",play,0.9,0 -92593907,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -92593907,"The Incredible Adventures of Van Helsing",play,0.9,0 -92593907,"Hitman Absolution",purchase,1.0,0 -92593907,"Hitman Absolution",play,0.8,0 -92593907,"LIMBO",purchase,1.0,0 -92593907,"LIMBO",play,0.8,0 -92593907,"L.A. Noire",purchase,1.0,0 -92593907,"L.A. Noire",play,0.7,0 -92593907,"Penumbra Overture",purchase,1.0,0 -92593907,"Penumbra Overture",play,0.6,0 -92593907,"No More Room in Hell",purchase,1.0,0 -92593907,"No More Room in Hell",play,0.5,0 -92593907,"Binary Domain",purchase,1.0,0 -92593907,"Binary Domain",play,0.5,0 -92593907,"Borderlands 2",purchase,1.0,0 -92593907,"Borderlands 2",play,0.5,0 -92593907,"Moonbase Alpha",purchase,1.0,0 -92593907,"Moonbase Alpha",play,0.4,0 -92593907,"Torchlight",purchase,1.0,0 -92593907,"Torchlight",play,0.4,0 -92593907,"Trainz Simulator 12",purchase,1.0,0 -92593907,"Trainz Simulator 12",play,0.4,0 -92593907,"Source Filmmaker",purchase,1.0,0 -92593907,"Source Filmmaker",play,0.3,0 -92593907,"Fishing Planet",purchase,1.0,0 -92593907,"Fishing Planet",play,0.2,0 -92593907,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -92593907,"Call of Duty Black Ops II - Zombies",play,0.2,0 -92593907,"POSTAL 2",purchase,1.0,0 -92593907,"POSTAL 2",play,0.1,0 -92593907,"Sakura Clicker",purchase,1.0,0 -92593907,"Eets",purchase,1.0,0 -92593907,"AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome",purchase,1.0,0 -92593907,"Counter-Strike",purchase,1.0,0 -92593907,"Left 4 Dead 2",purchase,1.0,0 -92593907,"Metro 2033",purchase,1.0,0 -92593907,"FEZ",purchase,1.0,0 -92593907,"Red Faction",purchase,1.0,0 -92593907,"My Lands",purchase,1.0,0 -92593907,"Quake Live",purchase,1.0,0 -92593907,"1954 Alcatraz",purchase,1.0,0 -92593907,"Alan Wake's American Nightmare",purchase,1.0,0 -92593907,"All Zombies Must Die!",purchase,1.0,0 -92593907,"Amnesia The Dark Descent",purchase,1.0,0 -92593907,"A New Beginning - Final Cut",purchase,1.0,0 -92593907,"Broken Sword 1 - Shadow of the Templars Director's Cut",purchase,1.0,0 -92593907,"Broken Sword 2 - the Smoking Mirror Remastered",purchase,1.0,0 -92593907,"Broken Sword 3 - the Sleeping Dragon",purchase,1.0,0 -92593907,"Burn Zombie Burn",purchase,1.0,0 -92593907,"Call of Duty World at War",purchase,1.0,0 -92593907,"Castle Crashers - Blacksmith Pack",purchase,1.0,0 -92593907,"Castle Crashers - Pink Knight Pack",purchase,1.0,0 -92593907,"Company of Heroes",purchase,1.0,0 -92593907,"Company of Heroes (New Steam Version)",purchase,1.0,0 -92593907,"Company of Heroes Opposing Fronts",purchase,1.0,0 -92593907,"Counter-Strike Condition Zero",purchase,1.0,0 -92593907,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -92593907,"Darksiders II",purchase,1.0,0 -92593907,"Edna & Harvey Harvey's New Eyes",purchase,1.0,0 -92593907,"Edna & Harvey The Breakout",purchase,1.0,0 -92593907,"Firefall",purchase,1.0,0 -92593907,"H1Z1 Test Server",purchase,1.0,0 -92593907,"Hitman Sniper Challenge",purchase,1.0,0 -92593907,"Homefront",purchase,1.0,0 -92593907,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -92593907,"Magicka Final Frontier",purchase,1.0,0 -92593907,"Magicka Frozen Lake",purchase,1.0,0 -92593907,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -92593907,"Magicka Nippon",purchase,1.0,0 -92593907,"Magicka Party Robes",purchase,1.0,0 -92593907,"Magicka The Watchtower",purchase,1.0,0 -92593907,"Magicka Vietnam",purchase,1.0,0 -92593907,"Magicka Wizard's Survival Kit",purchase,1.0,0 -92593907,"Memoria",purchase,1.0,0 -92593907,"MX vs. ATV Reflex",purchase,1.0,0 -92593907,"Nexuiz",purchase,1.0,0 -92593907,"Nexuiz Beta",purchase,1.0,0 -92593907,"Nexuiz STUPID Mode",purchase,1.0,0 -92593907,"Penumbra Black Plague",purchase,1.0,0 -92593907,"Penumbra Requiem",purchase,1.0,0 -92593907,"PixelJunk Monsters Ultimate",purchase,1.0,0 -92593907,"Psychonauts",purchase,1.0,0 -92593907,"Psychonauts Demo",purchase,1.0,0 -92593907,"Red Faction Armageddon",purchase,1.0,0 -92593907,"Red Faction II",purchase,1.0,0 -92593907,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -92593907,"Starbound - Unstable",purchase,1.0,0 -92593907,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -92593907,"Supreme Commander",purchase,1.0,0 -92593907,"Supreme Commander Forged Alliance",purchase,1.0,0 -92593907,"The Dark Eye Chains of Satinav",purchase,1.0,0 -92593907,"The Whispered World Special Edition",purchase,1.0,0 -92593907,"Titan Quest",purchase,1.0,0 -92593907,"Titan Quest Immortal Throne",purchase,1.0,0 -92593907,"Tomb Raider",purchase,1.0,0 -92593907,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -92593907,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -92593907,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -92593907,"Warhammer 40,000 Space Marine",purchase,1.0,0 -171015775,"Garry's Mod",purchase,1.0,0 -171015775,"Garry's Mod",play,18.6,0 -171015775,"Team Fortress 2",purchase,1.0,0 -171015775,"Team Fortress 2",play,6.4,0 -171015775,"The Expendabros",purchase,1.0,0 -171015775,"Among Ripples",purchase,1.0,0 -171015775,"Gear Up",purchase,1.0,0 -171015775,"HAWKEN",purchase,1.0,0 -171015775,"HIT",purchase,1.0,0 -171015775,"Loadout",purchase,1.0,0 -171015775,"No More Room in Hell",purchase,1.0,0 -171015775,"Only If",purchase,1.0,0 -171015775,"Quake Live",purchase,1.0,0 -171015775,"Unturned",purchase,1.0,0 -25031952,"Counter-Strike",purchase,1.0,0 -25031952,"Day of Defeat",purchase,1.0,0 -25031952,"Deathmatch Classic",purchase,1.0,0 -25031952,"Half-Life",purchase,1.0,0 -25031952,"Half-Life Blue Shift",purchase,1.0,0 -25031952,"Half-Life Opposing Force",purchase,1.0,0 -25031952,"Ricochet",purchase,1.0,0 -25031952,"Team Fortress Classic",purchase,1.0,0 -126756731,"Dota 2",purchase,1.0,0 -126756731,"Dota 2",play,393.0,0 -126756731,"Free to Play",purchase,1.0,0 -126756731,"Path of Exile",purchase,1.0,0 -147140659,"Dota 2",purchase,1.0,0 -147140659,"Dota 2",play,307.0,0 -147140659,"Left 4 Dead 2",purchase,1.0,0 -147140659,"Left 4 Dead 2",play,0.5,0 -80650761,"Portal 2",purchase,1.0,0 -80650761,"Portal 2",play,7.9,0 -80650761,"Counter-Strike Global Offensive",purchase,1.0,0 -80650761,"Counter-Strike Global Offensive",play,1.0,0 -80650761,"Rust",purchase,1.0,0 -80650761,"Rust",play,0.5,0 -80650761,"Eets",purchase,1.0,0 -80650761,"Eets",play,0.5,0 -80650761,"Team Fortress 2",purchase,1.0,0 -80650761,"Team Fortress 2",play,0.3,0 -80650761,"Garry's Mod",purchase,1.0,0 -80650761,"Garry's Mod",play,0.2,0 -80650761,"Unturned",purchase,1.0,0 -80650761,"Unturned",play,0.2,0 -36963214,"Counter-Strike",purchase,1.0,0 -36963214,"Counter-Strike Condition Zero",purchase,1.0,0 -36963214,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -36963214,"Counter-Strike Source",purchase,1.0,0 -36963214,"Day of Defeat",purchase,1.0,0 -36963214,"Day of Defeat Source",purchase,1.0,0 -36963214,"Deathmatch Classic",purchase,1.0,0 -36963214,"Half-Life 2 Deathmatch",purchase,1.0,0 -36963214,"Half-Life 2 Lost Coast",purchase,1.0,0 -36963214,"Ricochet",purchase,1.0,0 -169929928,"Super Sanctum TD",purchase,1.0,0 -169929928,"Super Sanctum TD",play,8.1,0 -169929928,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -169929928,"Rising Storm/Red Orchestra 2 Multiplayer",play,6.1,0 -169929928,"Sniper Elite V2",purchase,1.0,0 -169929928,"Sniper Elite V2",play,5.3,0 -169929928,"Race The Sun",purchase,1.0,0 -169929928,"Race The Sun",play,3.1,0 -169929928,"Anomaly Warzone Earth",purchase,1.0,0 -169929928,"Anomaly Warzone Earth",play,3.0,0 -169929928,"Defiance",purchase,1.0,0 -169929928,"Defiance",play,1.8,0 -169929928,"Afterfall InSanity Extended Edition",purchase,1.0,0 -169929928,"Afterfall InSanity Extended Edition",play,1.8,0 -169929928,"Rush Bros",purchase,1.0,0 -169929928,"Rush Bros",play,1.5,0 -169929928,"Grimm",purchase,1.0,0 -169929928,"Grimm",play,1.2,0 -169929928,"Woodle Tree Adventures",purchase,1.0,0 -169929928,"Woodle Tree Adventures",play,0.8,0 -169929928,"Dead Island Epidemic",purchase,1.0,0 -169929928,"Fishing Planet",purchase,1.0,0 -169929928,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -208516514,"Total War ROME II - Emperor Edition",purchase,1.0,0 -208516514,"Total War ROME II - Emperor Edition",play,100.0,0 -207175903,"Dota 2",purchase,1.0,0 -207175903,"Dota 2",play,1.3,0 -175263669,"War Thunder",purchase,1.0,0 -175263669,"War Thunder",play,146.0,0 -175263669,"Warframe",purchase,1.0,0 -175263669,"Warframe",play,126.0,0 -175263669,"Unturned",purchase,1.0,0 -175263669,"Unturned",play,46.0,0 -175263669,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -175263669,"Tom Clancy's Ghost Recon Phantoms - NA",play,46.0,0 -175263669,"The Forest",purchase,1.0,0 -175263669,"The Forest",play,21.0,0 -175263669,"Starbound",purchase,1.0,0 -175263669,"Starbound",play,19.4,0 -175263669,"How to Survive",purchase,1.0,0 -175263669,"How to Survive",play,15.5,0 -175263669,"Arma 2 Operation Arrowhead",purchase,1.0,0 -175263669,"Arma 2 Operation Arrowhead",play,8.8,0 -175263669,"Awesomenauts",purchase,1.0,0 -175263669,"Awesomenauts",play,5.8,0 -175263669,"Dizzel",purchase,1.0,0 -175263669,"Dizzel",play,5.8,0 -175263669,"RIFT",purchase,1.0,0 -175263669,"RIFT",play,5.2,0 -175263669,"The Mighty Quest For Epic Loot",purchase,1.0,0 -175263669,"The Mighty Quest For Epic Loot",play,4.3,0 -175263669,"PlanetSide 2",purchase,1.0,0 -175263669,"PlanetSide 2",play,4.1,0 -175263669,"Realm of the Mad God",purchase,1.0,0 -175263669,"Realm of the Mad God",play,3.1,0 -175263669,"Don't Starve",purchase,1.0,0 -175263669,"Don't Starve",play,2.5,0 -175263669,"Heroes & Generals",purchase,1.0,0 -175263669,"Heroes & Generals",play,2.3,0 -175263669,"Robocraft",purchase,1.0,0 -175263669,"Robocraft",play,1.8,0 -175263669,"Fallen Earth",purchase,1.0,0 -175263669,"Fallen Earth",play,1.8,0 -175263669,"Dota 2",purchase,1.0,0 -175263669,"Dota 2",play,1.7,0 -175263669,"Gear Up",purchase,1.0,0 -175263669,"Gear Up",play,1.0,0 -175263669,"Firefall",purchase,1.0,0 -175263669,"Firefall",play,1.0,0 -175263669,"Haunted Memories",purchase,1.0,0 -175263669,"Haunted Memories",play,0.3,0 -175263669,"Floating Point",purchase,1.0,0 -175263669,"Floating Point",play,0.2,0 -175263669,"Arma 2",purchase,1.0,0 -175263669,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -175263669,"Amazing World",purchase,1.0,0 -175263669,"Arma 2 DayZ Mod",purchase,1.0,0 -175263669,"Aftermath",purchase,1.0,0 -175263669,"Defiance",purchase,1.0,0 -175263669,"Don't Starve Together Beta",purchase,1.0,0 -175263669,"Starbound - Unstable",purchase,1.0,0 -78079492,"Dota 2",purchase,1.0,0 -78079492,"Dota 2",play,1.4,0 -230404323,"Dota 2",purchase,1.0,0 -230404323,"Dota 2",play,58.0,0 -230404323,"APB Reloaded",purchase,1.0,0 -230404323,"Dead Island Epidemic",purchase,1.0,0 -230404323,"Survarium",purchase,1.0,0 -230404323,"Unturned",purchase,1.0,0 -230404323,"Warframe",purchase,1.0,0 -192196598,"Dizzel",purchase,1.0,0 -192196598,"Dizzel",play,0.2,0 -192196598,"Unturned",purchase,1.0,0 -192196598,"Unturned",play,0.1,0 -192196598,"Heroes & Generals",purchase,1.0,0 -192196598,"Robocraft",purchase,1.0,0 -192196598,"NEOTOKYO",purchase,1.0,0 -192196598,"Star Conflict",purchase,1.0,0 -207540690,"Half-Life 2",purchase,1.0,0 -207540690,"Half-Life 2",play,13.6,0 -207540690,"Half-Life 2 Lost Coast",purchase,1.0,0 -207540690,"Half-Life 2 Lost Coast",play,0.6,0 -290030194,"Unturned",purchase,1.0,0 -290030194,"Unturned",play,2.1,0 -190623779,"Dota 2",purchase,1.0,0 -190623779,"Dota 2",play,4.3,0 -74221955,"theHunter",purchase,1.0,0 -203153814,"Arma 2 Operation Arrowhead",purchase,1.0,0 -203153814,"Arma 2 Operation Arrowhead",play,136.0,0 -203153814,"Arma 2 DayZ Mod",purchase,1.0,0 -203153814,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -203153814,"BattleSpace",purchase,1.0,0 -203153814,"Deepworld",purchase,1.0,0 -203153814,"Marvel Heroes 2015",purchase,1.0,0 -203153814,"Quantum Rush Online",purchase,1.0,0 -203153814,"Robocraft",purchase,1.0,0 -203153814,"Run and Fire",purchase,1.0,0 -203153814,"SC2VN - The eSports Visual Novel",purchase,1.0,0 -203153814,"Spiral Knights",purchase,1.0,0 -203153814,"Unturned",purchase,1.0,0 -203153814,"Warframe",purchase,1.0,0 -224777493,"Dota 2",purchase,1.0,0 -224777493,"Dota 2",play,1.7,0 -122226149,"Dota 2",purchase,1.0,0 -122226149,"Dota 2",play,411.0,0 -140440551,"Dota 2",purchase,1.0,0 -140440551,"Dota 2",play,0.5,0 -140408017,"Dota 2",purchase,1.0,0 -140408017,"Dota 2",play,1250.0,0 -140408017,"Counter-Strike Global Offensive",purchase,1.0,0 -140408017,"Counter-Strike Global Offensive",play,265.0,0 -140408017,"DayZ",purchase,1.0,0 -140408017,"DayZ",play,146.0,0 -140408017,"Terraria",purchase,1.0,0 -140408017,"Terraria",play,22.0,0 -140408017,"The Forest",purchase,1.0,0 -140408017,"The Forest",play,16.9,0 -140408017,"Outlast",purchase,1.0,0 -140408017,"Outlast",play,8.3,0 -140408017,"Banished",purchase,1.0,0 -140408017,"Banished",play,6.2,0 -140408017,"The Elder Scrolls V Skyrim",purchase,1.0,0 -140408017,"The Elder Scrolls V Skyrim",play,5.8,0 -140408017,"Arma 3",purchase,1.0,0 -140408017,"Arma 3",play,4.7,0 -140408017,"Fallout New Vegas",purchase,1.0,0 -140408017,"Fallout New Vegas",play,3.9,0 -140408017,"State of Decay",purchase,1.0,0 -140408017,"State of Decay",play,3.4,0 -140408017,"Goat Simulator",purchase,1.0,0 -140408017,"Goat Simulator",play,2.8,0 -140408017,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -140408017,"Rising Storm/Red Orchestra 2 Multiplayer",play,2.6,0 -140408017,"Team Fortress 2",purchase,1.0,0 -140408017,"Team Fortress 2",play,2.4,0 -140408017,"Arma 2",purchase,1.0,0 -140408017,"Arma 2",play,2.2,0 -140408017,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -140408017,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,1.4,0 -140408017,"Dirty Bomb",purchase,1.0,0 -140408017,"Dirty Bomb",play,1.2,0 -140408017,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -140408017,"Just Cause 2 Multiplayer Mod",play,1.1,0 -140408017,"Unturned",purchase,1.0,0 -140408017,"Unturned",play,0.8,0 -140408017,"Counter-Strike Nexon Zombies",purchase,1.0,0 -140408017,"Counter-Strike Nexon Zombies",play,0.4,0 -140408017,"Just Cause 2",purchase,1.0,0 -140408017,"Just Cause 2",play,0.3,0 -140408017,"Realm of the Mad God",purchase,1.0,0 -140408017,"Realm of the Mad God",play,0.3,0 -140408017,"Codename CURE",purchase,1.0,0 -140408017,"Codename CURE",play,0.3,0 -140408017,"Arma 2 Operation Arrowhead",purchase,1.0,0 -140408017,"Arma 2 Operation Arrowhead",play,0.3,0 -140408017,"The Plan",purchase,1.0,0 -140408017,"The Plan",play,0.2,0 -140408017,"Fishing Planet",purchase,1.0,0 -140408017,"Fishing Planet",play,0.2,0 -140408017,"All Is Dust",purchase,1.0,0 -140408017,"All Is Dust",play,0.2,0 -140408017,"SMITE",purchase,1.0,0 -140408017,"Cry of Fear",purchase,1.0,0 -140408017,"Tactical Intervention",purchase,1.0,0 -140408017,"ArcheAge",purchase,1.0,0 -140408017,"Arma 3 Zeus",purchase,1.0,0 -140408017,"Just Cause",purchase,1.0,0 -140408017,"Neverwinter",purchase,1.0,0 -140408017,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -140408017,"Warframe",purchase,1.0,0 -175831055,"Dota 2",purchase,1.0,0 -175831055,"Dota 2",play,6.2,0 -175831055,"Project CARS",purchase,1.0,0 -175831055,"Project CARS",play,5.5,0 -175831055,"Marvel Heroes 2015",purchase,1.0,0 -175831055,"Marvel Heroes 2015",play,1.4,0 -175831055,"Warframe",purchase,1.0,0 -175831055,"Warframe",play,0.8,0 -175831055,"PlanetSide 2",purchase,1.0,0 -175831055,"PlanetSide 2",play,0.4,0 -175831055,"Nosgoth",purchase,1.0,0 -175831055,"Toribash",purchase,1.0,0 -249507435,"Dota 2",purchase,1.0,0 -249507435,"Dota 2",play,5.4,0 -37238717,"Sniper Ghost Warrior",purchase,1.0,0 -37238717,"Sniper Ghost Warrior",play,15.1,0 -1601773,"Counter-Strike",purchase,1.0,0 -1601773,"Counter-Strike Condition Zero",purchase,1.0,0 -1601773,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -1601773,"Day of Defeat",purchase,1.0,0 -1601773,"Deathmatch Classic",purchase,1.0,0 -1601773,"Half-Life",purchase,1.0,0 -1601773,"Half-Life Blue Shift",purchase,1.0,0 -1601773,"Half-Life Opposing Force",purchase,1.0,0 -1601773,"Ricochet",purchase,1.0,0 -1601773,"Team Fortress Classic",purchase,1.0,0 -245978768,"Unturned",purchase,1.0,0 -245978768,"Unturned",play,0.3,0 -235712497,"Tropico 4",purchase,1.0,0 -235712497,"Tropico 4",play,40.0,0 -235712497,"Tropico 5",purchase,1.0,0 -235712497,"Tropico 5",play,3.3,0 -235712497,"Pinball FX2",purchase,1.0,0 -233352407,"Counter-Strike Nexon Zombies",purchase,1.0,0 -233352407,"Heroes & Generals",purchase,1.0,0 -75182781,"Left 4 Dead 2",purchase,1.0,0 -75182781,"Left 4 Dead 2",play,223.0,0 -75182781,"Mafia II",purchase,1.0,0 -75182781,"Mafia II",play,21.0,0 -75182781,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -75182781,"Kane & Lynch 2 Dog Days",play,14.3,0 -75182781,"Call of Juarez The Cartel",purchase,1.0,0 -75182781,"Call of Juarez The Cartel",play,9.7,0 -75182781,"Call of Duty Modern Warfare 3",purchase,1.0,0 -75182781,"Call of Duty Modern Warfare 3",play,4.7,0 -75182781,"L.A. Noire",purchase,1.0,0 -75182781,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -75182781,"Dead Island",purchase,1.0,0 -298179648,"Dungeon Defenders II",purchase,1.0,0 -298179648,"Dungeon Defenders II",play,16.7,0 -298179648,"Warface",purchase,1.0,0 -298179648,"Warface",play,1.9,0 -298179648,"Unturned",purchase,1.0,0 -298179648,"Unturned",play,0.8,0 -298179648,"Dota 2",purchase,1.0,0 -298179648,"Dota 2",play,0.4,0 -51017857,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -51017857,"Warhammer 40,000 Dawn of War II",play,11.3,0 -139706897,"Dota 2",purchase,1.0,0 -139706897,"Dota 2",play,3.2,0 -180120471,"Infestation Survivor Stories",purchase,1.0,0 -180120471,"Infestation Survivor Stories",play,4.2,0 -120630528,"Football Manager 2013",purchase,1.0,0 -120630528,"Football Manager 2013",play,13.3,0 -99074324,"Dota 2",purchase,1.0,0 -99074324,"Dota 2",play,1996.0,0 -153821154,"Assassin's Creed II",purchase,1.0,0 -153821154,"Assassin's Creed II",play,44.0,0 -153821154,"Portal 2",purchase,1.0,0 -153821154,"Portal 2",play,19.8,0 -153821154,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -153821154,"Batman Arkham Asylum GOTY Edition",play,16.1,0 -153821154,"The Elder Scrolls V Skyrim",purchase,1.0,0 -153821154,"The Elder Scrolls V Skyrim",play,2.9,0 -153821154,"Scribblenauts Unlimited",purchase,1.0,0 -153821154,"Scribblenauts Unlimited",play,1.8,0 -153821154,"Orcs Must Die! 2",purchase,1.0,0 -153821154,"Orcs Must Die! 2",play,1.5,0 -153821154,"Antichamber",purchase,1.0,0 -153821154,"Antichamber",play,0.6,0 -153821154,"Age of Empires II HD Edition",purchase,1.0,0 -153821154,"Age of Empires II HD The Forgotten",purchase,1.0,0 -153821154,"Age of Empires III Complete Collection",purchase,1.0,0 -153821154,"Assassin's Creed Brotherhood",purchase,1.0,0 -153821154,"Assassin's Creed Revelations",purchase,1.0,0 -153821154,"Batman Arkham City GOTY",purchase,1.0,0 -153821154,"Batman Arkham Origins",purchase,1.0,0 -153821154,"Crusader Kings II",purchase,1.0,0 -153821154,"Deadlight",purchase,1.0,0 -153821154,"Deadlight Original Soundtrack",purchase,1.0,0 -153821154,"Dust An Elysian Tail",purchase,1.0,0 -153821154,"F.E.A.R.",purchase,1.0,0 -153821154,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -153821154,"F.E.A.R. 3",purchase,1.0,0 -153821154,"F.E.A.R. Extraction Point",purchase,1.0,0 -153821154,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -153821154,"Free to Play",purchase,1.0,0 -153821154,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -153821154,"Giana Sisters Twisted Dreams",purchase,1.0,0 -153821154,"Guacamelee! Gold Edition",purchase,1.0,0 -153821154,"Guardians of Middle-earth",purchase,1.0,0 -153821154,"Legend of Grimrock",purchase,1.0,0 -153821154,"Metro 2033",purchase,1.0,0 -153821154,"Middle-earth Shadow of Mordor",purchase,1.0,0 -153821154,"Monaco",purchase,1.0,0 -153821154,"Mortal Kombat Kollection",purchase,1.0,0 -153821154,"PixelJunk Eden",purchase,1.0,0 -153821154,"Portal",purchase,1.0,0 -153821154,"Star Wars - Battlefront II",purchase,1.0,0 -153821154,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -153821154,"Star Wars Dark Forces",purchase,1.0,0 -153821154,"Star Wars Empire at War Gold",purchase,1.0,0 -153821154,"Star Wars Knights of the Old Republic",purchase,1.0,0 -153821154,"Star Wars The Force Unleashed II",purchase,1.0,0 -153821154,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -153821154,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -153821154,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -153821154,"Star Wars Republic Commando",purchase,1.0,0 -153821154,"Star Wars Starfighter",purchase,1.0,0 -153821154,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -153821154,"Terraria",purchase,1.0,0 -153821154,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -153821154,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -153821154,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -153821154,"The Lord of the Rings War in the North",purchase,1.0,0 -153821154,"The Swapper",purchase,1.0,0 -299124379,"Dota 2",purchase,1.0,0 -299124379,"Dota 2",play,1.2,0 -127555883,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -127555883,"Command and Conquer Red Alert 3 - Uprising",play,98.0,0 -127555883,"Magicka",purchase,1.0,0 -127555883,"Magicka",play,33.0,0 -127555883,"Command and Conquer 3 Kane's Wrath",purchase,1.0,0 -127555883,"Command and Conquer 3 Kane's Wrath",play,20.0,0 -127555883,"War for the Overworld",purchase,1.0,0 -127555883,"War for the Overworld",play,19.9,0 -127555883,"Evil Genius",purchase,1.0,0 -127555883,"Evil Genius",play,15.7,0 -127555883,"Command and Conquer Red Alert 3",purchase,1.0,0 -127555883,"Command and Conquer Red Alert 3",play,8.7,0 -127555883,"Earth 2150 The Moon Project",purchase,1.0,0 -127555883,"Earth 2150 The Moon Project",play,8.4,0 -127555883,"Castle Crashers",purchase,1.0,0 -127555883,"Castle Crashers",play,7.7,0 -127555883,"Earth 2150 Lost Souls",purchase,1.0,0 -127555883,"Earth 2150 Lost Souls",play,5.3,0 -127555883,"Plague Inc Evolved",purchase,1.0,0 -127555883,"Plague Inc Evolved",play,4.8,0 -127555883,"Grey Goo",purchase,1.0,0 -127555883,"Grey Goo",play,2.4,0 -127555883,"Command and Conquer 3 Tiberium Wars",purchase,1.0,0 -127555883,"Command and Conquer 3 Tiberium Wars",play,2.1,0 -127555883,"Magicka Wizard Wars",purchase,1.0,0 -127555883,"Magicka Wizard Wars",play,1.0,0 -127555883,"Earth 2150 Trilogy",purchase,1.0,0 -127555883,"Earth 2150 Trilogy",play,0.3,0 -127555883,"Age of Empires II HD Edition",purchase,1.0,0 -127555883,"Age of Empires II HD The Forgotten",purchase,1.0,0 -127555883,"Age of Empires III Complete Collection",purchase,1.0,0 -127555883,"Age of Mythology Extended Edition",purchase,1.0,0 -127555883,"AquaNox",purchase,1.0,0 -127555883,"AquaNox 2 Revelation",purchase,1.0,0 -127555883,"ArcaniA",purchase,1.0,0 -127555883,"ArcaniA Fall of Setarrif",purchase,1.0,0 -127555883,"Bridge Project",purchase,1.0,0 -127555883,"Command and Conquer 4 Tiberian Twilight",purchase,1.0,0 -127555883,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -127555883,"Evolution RTS",purchase,1.0,0 -127555883,"Fallout",purchase,1.0,0 -127555883,"Fallout 2",purchase,1.0,0 -127555883,"Fallout Tactics",purchase,1.0,0 -127555883,"Gothic",purchase,1.0,0 -127555883,"Gothic 3",purchase,1.0,0 -127555883,"Gothic 3 Forsaken Gods Enhanced Edition",purchase,1.0,0 -127555883,"Gothic II Gold Edition",purchase,1.0,0 -127555883,"Homeworld Remastered Collection",purchase,1.0,0 -127555883,"Magicka Final Frontier",purchase,1.0,0 -127555883,"Magicka Frozen Lake",purchase,1.0,0 -127555883,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -127555883,"Magicka Nippon",purchase,1.0,0 -127555883,"Magicka Party Robes",purchase,1.0,0 -127555883,"Magicka The Watchtower",purchase,1.0,0 -127555883,"Magicka Vietnam",purchase,1.0,0 -127555883,"Magicka Wizard's Survival Kit",purchase,1.0,0 -127555883,"Monaco",purchase,1.0,0 -127555883,"Neighbours from Hell",purchase,1.0,0 -127555883,"Neighbours from Hell 2",purchase,1.0,0 -127555883,"Painkiller Black Edition",purchase,1.0,0 -127555883,"Painkiller Hell & Damnation",purchase,1.0,0 -127555883,"Panzer Elite Action Fields of Glory",purchase,1.0,0 -127555883,"Rise of Incarnates",purchase,1.0,0 -127555883,"Rise of Nations Extended Edition",purchase,1.0,0 -127555883,"Serious Sam 3 BFE",purchase,1.0,0 -127555883,"Silent Storm",purchase,1.0,0 -127555883,"Silent Storm Sentinels",purchase,1.0,0 -127555883,"South Park The Stick of Truth",purchase,1.0,0 -127555883,"SpellForce 2 Gold Edition",purchase,1.0,0 -127555883,"SpellForce Platinum Edition",purchase,1.0,0 -127555883,"Sunrider Mask of Arcadius",purchase,1.0,0 -127555883,"SuperPower 2 Steam Edition",purchase,1.0,0 -127555883,"The Guild II",purchase,1.0,0 -127555883,"The Guild II - Pirates of the European Seas",purchase,1.0,0 -127555883,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -127555883,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -127555883,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -127555883,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -127555883,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -127555883,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -127555883,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -182732657,"Dota 2",purchase,1.0,0 -182732657,"Dota 2",play,11.4,0 -182732657,"Team Fortress 2",purchase,1.0,0 -182732657,"Team Fortress 2",play,0.7,0 -32617936,"Half-Life 2 Deathmatch",purchase,1.0,0 -32617936,"Half-Life 2 Lost Coast",purchase,1.0,0 -31007645,"Empire Total War",purchase,1.0,0 -31007645,"Empire Total War",play,783.0,0 -31007645,"Total War SHOGUN 2",purchase,1.0,0 -31007645,"Total War SHOGUN 2",play,213.0,0 -31007645,"Napoleon Total War",purchase,1.0,0 -31007645,"Napoleon Total War",play,76.0,0 -31007645,"R.U.S.E",purchase,1.0,0 -31007645,"R.U.S.E",play,73.0,0 -31007645,"Call of Juarez Gunslinger",purchase,1.0,0 -31007645,"Call of Juarez Gunslinger",play,7.9,0 -31007645,"R.U.S.E.",purchase,1.0,0 -181831792,"Dota 2",purchase,1.0,0 -181831792,"Dota 2",play,8.5,0 -237934674,"Goat Simulator",purchase,1.0,0 -237934674,"Goat Simulator",play,0.4,0 -96836693,"Team Fortress 2",purchase,1.0,0 -96836693,"Team Fortress 2",play,12.8,0 -96836693,"Dead Island",purchase,1.0,0 -96836693,"Dead Island",play,0.4,0 -96836693,"Half-Life 2 Lost Coast",purchase,1.0,0 -96836693,"Half-Life 2 Lost Coast",play,0.4,0 -96836693,"Portal",purchase,1.0,0 -96836693,"Portal",play,0.3,0 -96836693,"Torchlight II",purchase,1.0,0 -96836693,"Torchlight II",play,0.1,0 -96836693,"Mark of the Ninja",purchase,1.0,0 -96836693,"Warhammer 40,000 Space Marine",purchase,1.0,0 -96836693,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -96836693,"Defense Grid The Awakening",purchase,1.0,0 -96836693,"Half-Life 2",purchase,1.0,0 -96836693,"Half-Life 2 Episode One",purchase,1.0,0 -96836693,"Half-Life 2 Episode Two",purchase,1.0,0 -96836693,"Terraria",purchase,1.0,0 -219262025,"Dota 2",purchase,1.0,0 -219262025,"Dota 2",play,1.8,0 -219262025,"Toribash",purchase,1.0,0 -75689918,"Counter-Strike",purchase,1.0,0 -75689918,"Counter-Strike",play,11.6,0 -75689918,"Dota 2",purchase,1.0,0 -75689918,"Dota 2",play,9.5,0 -75689918,"Counter-Strike Global Offensive",purchase,1.0,0 -75689918,"Counter-Strike Global Offensive",play,0.4,0 -75689918,"Ricochet",purchase,1.0,0 -75689918,"Ricochet",play,0.3,0 -75689918,"Counter-Strike Condition Zero",purchase,1.0,0 -75689918,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -75689918,"Day of Defeat",purchase,1.0,0 -75689918,"Deathmatch Classic",purchase,1.0,0 -155909277,"Dota 2",purchase,1.0,0 -155909277,"Dota 2",play,1.3,0 -52572702,"Empire Total War",purchase,1.0,0 -52572702,"Empire Total War",play,192.0,0 -143917036,"Dota 2",purchase,1.0,0 -143917036,"Dota 2",play,1129.0,0 -176238477,"Dota 2",purchase,1.0,0 -176238477,"Dota 2",play,4.6,0 -28815669,"Counter-Strike Source",purchase,1.0,0 -28815669,"Counter-Strike Source",play,41.0,0 -28815669,"Half-Life 2 Deathmatch",purchase,1.0,0 -28815669,"Half-Life 2 Deathmatch",play,0.2,0 -28815669,"Day of Defeat Source",purchase,1.0,0 -28815669,"Half-Life 2 Lost Coast",purchase,1.0,0 -170280436,"Dota 2",purchase,1.0,0 -170280436,"Dota 2",play,479.0,0 -140820563,"The Amazing Spider-Man 2",purchase,1.0,0 -140820563,"The Amazing Spider-Man 2",play,49.0,0 -140820563,"F1 2012",purchase,1.0,0 -140820563,"F1 2012",play,45.0,0 -140820563,"Goat Simulator",purchase,1.0,0 -140820563,"Goat Simulator",play,23.0,0 -140820563,"LEGO MARVEL Super Heroes",purchase,1.0,0 -140820563,"LEGO MARVEL Super Heroes",play,21.0,0 -140820563,"The LEGO Movie - Videogame",purchase,1.0,0 -140820563,"The LEGO Movie - Videogame",play,20.0,0 -140820563,"Hitman Absolution",purchase,1.0,0 -140820563,"Hitman Absolution",play,19.6,0 -140820563,"The Forest",purchase,1.0,0 -140820563,"The Forest",play,17.8,0 -140820563,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -140820563,"Sonic & All-Stars Racing Transformed",play,12.5,0 -140820563,"Portal 2",purchase,1.0,0 -140820563,"Portal 2",play,12.2,0 -140820563,"Sid Meier's Civilization IV",purchase,1.0,0 -140820563,"Sid Meier's Civilization IV",play,6.9,0 -140820563,"Sid Meier's Civilization V",purchase,1.0,0 -140820563,"Sid Meier's Civilization V",play,4.3,0 -140820563,"NASCAR The Game 2013",purchase,1.0,0 -140820563,"NASCAR The Game 2013",play,2.2,0 -140820563,"Car Mechanic Simulator 2014",purchase,1.0,0 -140820563,"Car Mechanic Simulator 2014",play,1.6,0 -140820563,"Insurgency Modern Infantry Combat",purchase,1.0,0 -140820563,"Insurgency Modern Infantry Combat",play,1.2,0 -140820563,"Heroes & Generals",purchase,1.0,0 -140820563,"Heroes & Generals",play,0.3,0 -140820563,"Portal 2 Sixense Perceptual Pack",purchase,1.0,0 -140820563,"Sid Meier's Civilization IV",purchase,1.0,0 -140820563,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -140820563,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -140820563,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -140820563,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -140820563,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -140820563,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -88587483,"Impire",purchase,1.0,0 -198595210,"Cry of Fear",purchase,1.0,0 -198595210,"Cry of Fear",play,1.2,0 -176554603,"Dota 2",purchase,1.0,0 -176554603,"Dota 2",play,1.8,0 -167418588,"Dota 2",purchase,1.0,0 -167418588,"Dota 2",play,7.9,0 -101892097,"Team Fortress 2",purchase,1.0,0 -101892097,"Team Fortress 2",play,0.9,0 -139013624,"Age of Empires II HD Edition",purchase,1.0,0 -139013624,"Age of Empires II HD Edition",play,176.0,0 -139013624,"Dota 2",purchase,1.0,0 -139013624,"Dota 2",play,39.0,0 -174522735,"Dota 2",purchase,1.0,0 -174522735,"Dota 2",play,9.6,0 -174522735,"Heroes & Generals",purchase,1.0,0 -174522735,"Heroes & Generals",play,0.8,0 -174522735,"Steel Ocean",purchase,1.0,0 -174522735,"Steel Ocean",play,0.2,0 -125912054,"Dota 2",purchase,1.0,0 -125912054,"Dota 2",play,4617.0,0 -125912054,"Counter-Strike Global Offensive",purchase,1.0,0 -125912054,"Counter-Strike Global Offensive",play,103.0,0 -125912054,"Grand Theft Auto V",purchase,1.0,0 -125912054,"Grand Theft Auto V",play,65.0,0 -125912054,"The Elder Scrolls V Skyrim",purchase,1.0,0 -125912054,"The Elder Scrolls V Skyrim",play,61.0,0 -125912054,"The Witcher 3 Wild Hunt",purchase,1.0,0 -125912054,"The Witcher 3 Wild Hunt",play,35.0,0 -125912054,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -125912054,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,24.0,0 -125912054,"Path of Exile",purchase,1.0,0 -125912054,"Path of Exile",play,5.3,0 -125912054,"Bulletstorm",purchase,1.0,0 -125912054,"Bulletstorm",play,4.0,0 -125912054,"Left 4 Dead 2",purchase,1.0,0 -125912054,"Left 4 Dead 2",play,3.5,0 -125912054,"PAYDAY The Heist",purchase,1.0,0 -125912054,"PAYDAY The Heist",play,2.9,0 -125912054,"Caster",purchase,1.0,0 -125912054,"Caster",play,1.7,0 -125912054,"Gothic II Gold Edition",purchase,1.0,0 -125912054,"Gothic II Gold Edition",play,0.8,0 -125912054,"BioShock 2",purchase,1.0,0 -125912054,"BioShock 2",play,0.4,0 -125912054,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -187278414,"Dota 2",purchase,1.0,0 -187278414,"Dota 2",play,0.3,0 -168355787,"Dota 2",purchase,1.0,0 -168355787,"Dota 2",play,1.0,0 -118447144,"Dota 2",purchase,1.0,0 -118447144,"Dota 2",play,18.1,0 -284164106,"War Inc. Battlezone",purchase,1.0,0 -284164106,"War Inc. Battlezone",play,0.5,0 -144153802,"Dota 2",purchase,1.0,0 -144153802,"Dota 2",play,801.0,0 -144153802,"Archeblade",purchase,1.0,0 -144153802,"BLOCKADE 3D",purchase,1.0,0 -144153802,"Dead Island Epidemic",purchase,1.0,0 -144153802,"FreeStyle2 Street Basketball",purchase,1.0,0 -144153802,"Heroes & Generals",purchase,1.0,0 -144153802,"Loadout",purchase,1.0,0 -144153802,"No More Room in Hell",purchase,1.0,0 -144153802,"Warframe",purchase,1.0,0 -163386409,"Dota 2",purchase,1.0,0 -163386409,"Dota 2",play,0.3,0 -48386574,"Company of Heroes 2",purchase,1.0,0 -48386574,"Company of Heroes 2",play,33.0,0 -48386574,"Total War ROME II - Emperor Edition",purchase,1.0,0 -48386574,"Total War ROME II - Emperor Edition",play,31.0,0 -48386574,"Cities XL 2012",purchase,1.0,0 -48386574,"Cities XL 2012",play,31.0,0 -48386574,"Cities Skylines",purchase,1.0,0 -48386574,"Cities Skylines",play,22.0,0 -48386574,"Prison Architect",purchase,1.0,0 -48386574,"Prison Architect",play,19.7,0 -48386574,"Company of Heroes",purchase,1.0,0 -48386574,"Company of Heroes",play,18.4,0 -48386574,"Age of Wonders III",purchase,1.0,0 -48386574,"Age of Wonders III",play,17.5,0 -48386574,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -48386574,"The Witcher 2 Assassins of Kings Enhanced Edition",play,14.7,0 -48386574,"Saints Row The Third",purchase,1.0,0 -48386574,"Saints Row The Third",play,9.4,0 -48386574,"Greed Corp",purchase,1.0,0 -48386574,"Greed Corp",play,9.1,0 -48386574,"Sid Meier's Civilization V",purchase,1.0,0 -48386574,"Sid Meier's Civilization V",play,8.3,0 -48386574,"Total War SHOGUN 2",purchase,1.0,0 -48386574,"Total War SHOGUN 2",play,8.0,0 -48386574,"Metro 2033",purchase,1.0,0 -48386574,"Metro 2033",play,6.4,0 -48386574,"Empire Total War",purchase,1.0,0 -48386574,"Empire Total War",play,5.7,0 -48386574,"Beat Hazard",purchase,1.0,0 -48386574,"Beat Hazard",play,4.1,0 -48386574,"Portal",purchase,1.0,0 -48386574,"Portal",play,2.3,0 -48386574,"Tropico 4",purchase,1.0,0 -48386574,"Tropico 4",play,2.2,0 -48386574,"Left 4 Dead 2",purchase,1.0,0 -48386574,"Left 4 Dead 2",play,2.0,0 -48386574,"Killing Floor",purchase,1.0,0 -48386574,"Killing Floor",play,1.5,0 -48386574,"Team Fortress 2",purchase,1.0,0 -48386574,"Team Fortress 2",play,1.4,0 -48386574,"Rock of Ages",purchase,1.0,0 -48386574,"Rock of Ages",play,1.3,0 -48386574,"XCOM Enemy Unknown",purchase,1.0,0 -48386574,"XCOM Enemy Unknown",play,1.2,0 -48386574,"Age of Empires II HD Edition",purchase,1.0,0 -48386574,"Age of Empires II HD Edition",play,1.2,0 -48386574,"FTL Faster Than Light",purchase,1.0,0 -48386574,"FTL Faster Than Light",play,1.1,0 -48386574,"World in Conflict Soviet Assault",purchase,1.0,0 -48386574,"World in Conflict Soviet Assault",play,0.9,0 -48386574,"Stronghold Crusader HD",purchase,1.0,0 -48386574,"Stronghold Crusader HD",play,0.5,0 -48386574,"The Sims(TM) 3",purchase,1.0,0 -48386574,"The Sims(TM) 3",play,0.4,0 -48386574,"Stronghold Crusader Extreme HD",purchase,1.0,0 -48386574,"Saints Row IV",purchase,1.0,0 -48386574,"Age of Empires II HD The Forgotten",purchase,1.0,0 -48386574,"Company of Heroes (New Steam Version)",purchase,1.0,0 -48386574,"Company of Heroes Opposing Fronts",purchase,1.0,0 -48386574,"Company of Heroes Tales of Valor",purchase,1.0,0 -48386574,"Darksiders",purchase,1.0,0 -48386574,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -48386574,"Portal 2",purchase,1.0,0 -48386574,"Red Faction Armageddon",purchase,1.0,0 -48386574,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -48386574,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -48386574,"The Witcher Enhanced Edition",purchase,1.0,0 -48386574,"World in Conflict",purchase,1.0,0 -48386574,"XCOM Enemy Within",purchase,1.0,0 -270843172,"Dota 2",purchase,1.0,0 -270843172,"Dota 2",play,108.0,0 -191027696,"The Expendabros",purchase,1.0,0 -191027696,"The Expendabros",play,7.8,0 -143449478,"Dota 2",purchase,1.0,0 -143449478,"Dota 2",play,265.0,0 -198874354,"Counter-Strike Nexon Zombies",purchase,1.0,0 -198874354,"Counter-Strike Nexon Zombies",play,0.8,0 -24583629,"Counter-Strike Source",purchase,1.0,0 -24583629,"Day of Defeat Source",purchase,1.0,0 -24583629,"Half-Life 2 Deathmatch",purchase,1.0,0 -24583629,"Half-Life 2 Lost Coast",purchase,1.0,0 -295216756,"Counter-Strike Global Offensive",purchase,1.0,0 -295216756,"Counter-Strike Global Offensive",play,40.0,0 -30129850,"Half-Life 2 Deathmatch",purchase,1.0,0 -30129850,"Half-Life 2 Deathmatch",play,3.4,0 -30129850,"Half-Life 2 Lost Coast",purchase,1.0,0 -292260290,"Team Fortress 2",purchase,1.0,0 -292260290,"Team Fortress 2",play,0.2,0 -56091522,"Half-Life 2 Episode One",purchase,1.0,0 -56091522,"Half-Life 2 Episode One",play,2.7,0 -56091522,"Portal",purchase,1.0,0 -56091522,"Portal",play,1.3,0 -56091522,"Half-Life 2",purchase,1.0,0 -56091522,"Half-Life 2 Episode Two",purchase,1.0,0 -56091522,"Half-Life 2 Lost Coast",purchase,1.0,0 -191760370,"Dota 2",purchase,1.0,0 -191760370,"Dota 2",play,1.1,0 -191760370,"Unturned",purchase,1.0,0 -191760370,"Unturned",play,0.9,0 -191760370,"Robocraft",purchase,1.0,0 -191760370,"Robocraft",play,0.2,0 -191760370,"AirMech",purchase,1.0,0 -191760370,"Dizzel",purchase,1.0,0 -191760370,"theHunter",purchase,1.0,0 -171049445,"Dota 2",purchase,1.0,0 -171049445,"Dota 2",play,0.5,0 -35220143,"Counter-Strike",purchase,1.0,0 -35220143,"Counter-Strike",play,1.8,0 -35220143,"Counter-Strike Condition Zero",purchase,1.0,0 -35220143,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -35220143,"Day of Defeat",purchase,1.0,0 -35220143,"Deathmatch Classic",purchase,1.0,0 -35220143,"Ricochet",purchase,1.0,0 -164873736,"Team Fortress 2",purchase,1.0,0 -164873736,"Team Fortress 2",play,22.0,0 -164873736,"Dota 2",purchase,1.0,0 -164873736,"Dota 2",play,1.0,0 -194481709,"Dota 2",purchase,1.0,0 -194481709,"Dota 2",play,1.2,0 -28453352,"Counter-Strike",purchase,1.0,0 -28453352,"Counter-Strike",play,24.0,0 -28453352,"Counter-Strike Source",purchase,1.0,0 -28453352,"Counter-Strike Source",play,12.4,0 -28453352,"Day of Defeat Source",purchase,1.0,0 -28453352,"Day of Defeat Source",play,0.6,0 -28453352,"Counter-Strike Condition Zero",purchase,1.0,0 -28453352,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -28453352,"Day of Defeat",purchase,1.0,0 -28453352,"Deathmatch Classic",purchase,1.0,0 -28453352,"Half-Life",purchase,1.0,0 -28453352,"Half-Life 2",purchase,1.0,0 -28453352,"Half-Life 2 Deathmatch",purchase,1.0,0 -28453352,"Half-Life 2 Episode One",purchase,1.0,0 -28453352,"Half-Life 2 Lost Coast",purchase,1.0,0 -28453352,"Half-Life Blue Shift",purchase,1.0,0 -28453352,"Half-Life Opposing Force",purchase,1.0,0 -28453352,"Half-Life Source",purchase,1.0,0 -28453352,"Half-Life Deathmatch Source",purchase,1.0,0 -28453352,"Ricochet",purchase,1.0,0 -28453352,"Team Fortress Classic",purchase,1.0,0 -93313267,"Rust",purchase,1.0,0 -93313267,"Rust",play,5.3,0 -93313267,"Football Manager 2013",purchase,1.0,0 -93313267,"Football Manager 2013",play,0.9,0 -249622032,"Nosgoth",purchase,1.0,0 -30402259,"Counter-Strike Source",purchase,1.0,0 -30402259,"Counter-Strike Source",play,86.0,0 -30402259,"Day of Defeat Source",purchase,1.0,0 -30402259,"Half-Life 2 Deathmatch",purchase,1.0,0 -30402259,"Half-Life 2 Lost Coast",purchase,1.0,0 -270917796,"ARK Survival Evolved",purchase,1.0,0 -270917796,"ARK Survival Evolved",play,27.0,0 -270917796,"Rocket League",purchase,1.0,0 -270917796,"Rocket League",play,23.0,0 -270917796,"Wolfenstein The New Order",purchase,1.0,0 -270917796,"Wolfenstein The New Order",play,3.3,0 -270917796,"DOOM 3 BFG Edition",purchase,1.0,0 -270917796,"DOOM 3 BFG Edition",play,0.4,0 -132840940,"Dota 2",purchase,1.0,0 -132840940,"Dota 2",play,396.0,0 -132840940,"Left 4 Dead 2",purchase,1.0,0 -132840940,"Left 4 Dead 2",play,1.2,0 -132840940,"Forge",purchase,1.0,0 -51512715,"Team Fortress 2",purchase,1.0,0 -51512715,"Team Fortress 2",play,37.0,0 -51512715,"Half-Life 2",purchase,1.0,0 -51512715,"Half-Life 2 Episode One",purchase,1.0,0 -51512715,"Half-Life 2 Episode Two",purchase,1.0,0 -51512715,"Half-Life 2 Lost Coast",purchase,1.0,0 -51512715,"Portal",purchase,1.0,0 -184507299,"Tom Clancy's Ghost Recon Phantoms - EU Support Starter Pack",purchase,1.0,0 -121989214,"Dota 2",purchase,1.0,0 -121989214,"Dota 2",play,68.0,0 -191933539,"Dota 2",purchase,1.0,0 -191933539,"Dota 2",play,5.6,0 -279552440,"Anno Online",purchase,1.0,0 -279552440,"Anno Online",play,0.6,0 -27835216,"Counter-Strike Source",purchase,1.0,0 -27835216,"Counter-Strike Source",play,0.2,0 -27835216,"Day of Defeat Source",purchase,1.0,0 -27835216,"Half-Life 2 Deathmatch",purchase,1.0,0 -27835216,"Half-Life 2 Lost Coast",purchase,1.0,0 -84908294,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -84908294,"Call of Duty Modern Warfare 3 - Multiplayer",play,69.0,0 -84908294,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -84908294,"Call of Duty Modern Warfare 2 - Multiplayer",play,44.0,0 -84908294,"Team Fortress 2",purchase,1.0,0 -84908294,"Team Fortress 2",play,3.9,0 -84908294,"Call of Duty Modern Warfare 3",purchase,1.0,0 -84908294,"Call of Duty Modern Warfare 3",play,2.5,0 -84908294,"Call of Duty Modern Warfare 2",purchase,1.0,0 -84908294,"Ticket to Ride",purchase,1.0,0 -135680230,"Sniper Elite V2",purchase,1.0,0 -94510414,"Dota 2",purchase,1.0,0 -94510414,"Dota 2",play,588.0,0 -94510414,"Team Fortress 2",purchase,1.0,0 -94510414,"Team Fortress 2",play,34.0,0 -94510414,"Happy Wars",purchase,1.0,0 -94510414,"Happy Wars",play,6.0,0 -94510414,"GunZ 2 The Second Duel",purchase,1.0,0 -94510414,"GunZ 2 The Second Duel",play,3.6,0 -94510414,"Spiral Knights",purchase,1.0,0 -94510414,"Spiral Knights",play,0.3,0 -94510414,"Unturned",purchase,1.0,0 -94510414,"Ragnarok",purchase,1.0,0 -94510414,"Dead Island Epidemic",purchase,1.0,0 -94510414,"Depression Quest",purchase,1.0,0 -94510414,"HAWKEN",purchase,1.0,0 -94510414,"The Cat and the Coup",purchase,1.0,0 -94510414,"Velvet Sundown",purchase,1.0,0 -1006880,"Counter-Strike",purchase,1.0,0 -1006880,"Day of Defeat",purchase,1.0,0 -1006880,"Deathmatch Classic",purchase,1.0,0 -1006880,"Half-Life",purchase,1.0,0 -1006880,"Half-Life Blue Shift",purchase,1.0,0 -1006880,"Half-Life Opposing Force",purchase,1.0,0 -1006880,"Ricochet",purchase,1.0,0 -1006880,"Team Fortress Classic",purchase,1.0,0 -122064686,"Dota 2",purchase,1.0,0 -122064686,"Dota 2",play,1.9,0 -279329852,"Dota 2",purchase,1.0,0 -279329852,"Dota 2",play,4.7,0 -279329852,"Clicker Heroes",purchase,1.0,0 -279329852,"Strife",purchase,1.0,0 -279329852,"Toribash",purchase,1.0,0 -264198760,"H1Z1",purchase,1.0,0 -264198760,"H1Z1",play,4.7,0 -264198760,"Survarium",purchase,1.0,0 -264198760,"Survarium",play,3.8,0 -264198760,"H1Z1 Test Server",purchase,1.0,0 -264198760,"H1Z1 Test Server",play,2.1,0 -264198760,"Unturned",purchase,1.0,0 -264198760,"Unturned",play,1.1,0 -202764759,"Counter-Strike Nexon Zombies",purchase,1.0,0 -202764759,"Counter-Strike Nexon Zombies",play,7.1,0 -202764759,"Dota 2",purchase,1.0,0 -202764759,"Dota 2",play,2.3,0 -202764759,"Heroes & Generals",purchase,1.0,0 -202764759,"Heroes & Generals",play,1.3,0 -202764759,"Deadbreed",purchase,1.0,0 -202764759,"No More Room in Hell",purchase,1.0,0 -294150681,"Mortal Kombat Komplete Edition",purchase,1.0,0 -294150681,"Mortal Kombat Komplete Edition",play,0.7,0 -137755956,"Torchlight II",purchase,1.0,0 -137755956,"Torchlight II",play,142.0,0 -137755956,"Portal",purchase,1.0,0 -80604456,"Portal 2",purchase,1.0,0 -80604456,"Portal 2",play,27.0,0 -80604456,"Terraria",purchase,1.0,0 -80604456,"Terraria",play,23.0,0 -80604456,"The Elder Scrolls V Skyrim",purchase,1.0,0 -80604456,"The Elder Scrolls V Skyrim",play,5.0,0 -80604456,"Cubic Castles",purchase,1.0,0 -80604456,"Cubic Castles",play,1.5,0 -80604456,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -80604456,"The Elder Scrolls III Morrowind",purchase,1.0,0 -80604456,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -80604456,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -80604456,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -80604456,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -52072237,"Counter-Strike Condition Zero",purchase,1.0,0 -52072237,"Counter-Strike Condition Zero",play,33.0,0 -52072237,"Counter-Strike",purchase,1.0,0 -52072237,"Counter-Strike",play,4.8,0 -52072237,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -52072237,"Day of Defeat",purchase,1.0,0 -52072237,"Deathmatch Classic",purchase,1.0,0 -52072237,"Ricochet",purchase,1.0,0 -233752770,"Magicka Wizard Wars",purchase,1.0,0 -264125600,"Unturned",purchase,1.0,0 -264125600,"Unturned",play,0.2,0 -141023389,"Dota 2",purchase,1.0,0 -141023389,"Dota 2",play,787.0,0 -141023389,"HAWKEN",purchase,1.0,0 -141023389,"Robocraft",purchase,1.0,0 -141023389,"The Expendabros",purchase,1.0,0 -141023389,"Unturned",purchase,1.0,0 -141023389,"Warframe",purchase,1.0,0 -141023389,"World of Guns Gun Disassembly",purchase,1.0,0 -87622319,"Napoleon Total War",purchase,1.0,0 -87622319,"Napoleon Total War",play,0.5,0 -109393227,"Dota 2",purchase,1.0,0 -109393227,"Dota 2",play,2857.0,0 -109393227,"Sid Meier's Civilization V",purchase,1.0,0 -109393227,"Sid Meier's Civilization V",play,32.0,0 -41979706,"Half-Life 2 Deathmatch",purchase,1.0,0 -41979706,"Half-Life 2 Deathmatch",play,0.4,0 -41979706,"Half-Life 2 Lost Coast",purchase,1.0,0 -42298912,"Borderlands",purchase,1.0,0 -42298912,"Borderlands",play,39.0,0 -42298912,"Evil Genius",purchase,1.0,0 -42298912,"Evil Genius",play,31.0,0 -42298912,"Aion",purchase,1.0,0 -42298912,"Aion",play,21.0,0 -42298912,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -42298912,"Warhammer 40,000 Dawn of War II",play,20.0,0 -42298912,"Mount & Blade",purchase,1.0,0 -42298912,"Mount & Blade",play,16.8,0 -42298912,"Left 4 Dead 2",purchase,1.0,0 -42298912,"Left 4 Dead 2",play,12.8,0 -42298912,"Killing Floor",purchase,1.0,0 -42298912,"Killing Floor",play,9.1,0 -42298912,"BioShock",purchase,1.0,0 -42298912,"BioShock",play,1.3,0 -42298912,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -104407519,"Team Fortress 2",purchase,1.0,0 -104407519,"Team Fortress 2",play,21.0,0 -238933757,"Dota 2",purchase,1.0,0 -238933757,"Dota 2",play,32.0,0 -33807030,"Half-Life 2",purchase,1.0,0 -33807030,"Half-Life 2",play,1.7,0 -33807030,"Half-Life 2 Episode One",purchase,1.0,0 -33807030,"Half-Life 2 Episode One",play,0.4,0 -33807030,"Half-Life 2 Episode Two",purchase,1.0,0 -33807030,"Half-Life 2 Lost Coast",purchase,1.0,0 -33807030,"Portal",purchase,1.0,0 -252921789,"Counter-Strike Global Offensive",purchase,1.0,0 -252921789,"Counter-Strike Global Offensive",play,75.0,0 -252921789,"Counter-Strike Nexon Zombies",purchase,1.0,0 -75767676,"Alien Swarm",purchase,1.0,0 -75767676,"Alien Swarm",play,7.0,0 -71952079,"UFO Extraterrestrials Gold",purchase,1.0,0 -71952079,"UFO Extraterrestrials Gold",play,91.0,0 -71952079,"Dota 2",purchase,1.0,0 -71952079,"Dota 2",play,2.3,0 -71952079,"Dungeons & Dragons Online",purchase,1.0,0 -71952079,"Dungeons & Dragons Online",play,0.4,0 -71952079,"Legend of Dungeon Masters",purchase,1.0,0 -71952079,"Prime World",purchase,1.0,0 -228596299,"Dota 2",purchase,1.0,0 -228596299,"Dota 2",play,0.6,0 -184858473,"Tom Clancy's Ghost Recon Phantoms - NA Recon Starter Pack",purchase,1.0,0 -245704809,"Unturned",purchase,1.0,0 -245704809,"Unturned",play,1.1,0 -245704809,"Team Fortress 2",purchase,1.0,0 -245704809,"Team Fortress 2",play,0.7,0 -245704809,"Codename CURE",purchase,1.0,0 -245704809,"Codename CURE",play,0.1,0 -245704809,"Strife",purchase,1.0,0 -245704809,"Dirty Bomb",purchase,1.0,0 -245704809,"FreeStyle2 Street Basketball",purchase,1.0,0 -150910680,"Dota 2",purchase,1.0,0 -150910680,"Dota 2",play,1.7,0 -167194020,"FINAL FANTASY XIV A Realm Reborn",purchase,1.0,0 -167194020,"FINAL FANTASY XIV A Realm Reborn",play,4835.0,0 -167194020,"PAYDAY 2",purchase,1.0,0 -167194020,"PAYDAY 2",play,380.0,0 -167194020,"Terraria",purchase,1.0,0 -167194020,"Terraria",play,153.0,0 -167194020,"The Elder Scrolls V Skyrim",purchase,1.0,0 -167194020,"The Elder Scrolls V Skyrim",play,124.0,0 -167194020,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -167194020,"Baldur's Gate Enhanced Edition",play,87.0,0 -167194020,"HuniePop",purchase,1.0,0 -167194020,"HuniePop",play,70.0,0 -167194020,"Baldur's Gate II Enhanced Edition",purchase,1.0,0 -167194020,"Baldur's Gate II Enhanced Edition",play,66.0,0 -167194020,"The Legend of Heroes Trails in the Sky",purchase,1.0,0 -167194020,"The Legend of Heroes Trails in the Sky",play,60.0,0 -167194020,"Tales of Zestiria",purchase,1.0,0 -167194020,"Tales of Zestiria",play,34.0,0 -167194020,"Magicka 2",purchase,1.0,0 -167194020,"Magicka 2",play,22.0,0 -167194020,"Garry's Mod",purchase,1.0,0 -167194020,"Garry's Mod",play,17.8,0 -167194020,"Party Hard",purchase,1.0,0 -167194020,"Party Hard",play,15.9,0 -167194020,"Life Is Strange",purchase,1.0,0 -167194020,"Life Is Strange",play,13.8,0 -167194020,"The Elder Scrolls III Morrowind",purchase,1.0,0 -167194020,"The Elder Scrolls III Morrowind",play,13.6,0 -167194020,"Sonic Adventure 2 ",purchase,1.0,0 -167194020,"Sonic Adventure 2 ",play,9.4,0 -167194020,"Child of Light",purchase,1.0,0 -167194020,"Child of Light",play,8.1,0 -167194020,"Magicka",purchase,1.0,0 -167194020,"Magicka",play,7.4,0 -167194020,"Ori and the Blind Forest",purchase,1.0,0 -167194020,"Ori and the Blind Forest",play,5.4,0 -167194020,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -167194020,"Dragon Age Origins - Ultimate Edition",play,3.8,0 -167194020,"Amnesia Memories",purchase,1.0,0 -167194020,"Amnesia Memories",play,3.8,0 -167194020,"FINAL FANTASY VIII",purchase,1.0,0 -167194020,"FINAL FANTASY XIV A Realm Reborn (PAL version)",purchase,1.0,0 -167194020,"FINAL FANTASY XIV Heavensward",purchase,1.0,0 -167194020,"Grandia II Anniversary Edition",purchase,1.0,0 -167194020,"Magicka Wizard Wars",purchase,1.0,0 -167194020,"Oddworld Abe's Oddysee",purchase,1.0,0 -167194020,"Sonic Adventure 2 Battle Mode DLC",purchase,1.0,0 -167194020,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -167194020,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -167194020,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -167194020,"The Legend of Heroes Trails in the Sky SC",purchase,1.0,0 -163813292,"Dota 2",purchase,1.0,0 -163813292,"Dota 2",play,1.6,0 -86831093,"Dota 2",purchase,1.0,0 -86831093,"Dota 2",play,2.0,0 -63702300,"Counter-Strike Source",purchase,1.0,0 -63702300,"Counter-Strike Source",play,1509.0,0 -63702300,"Counter-Strike Global Offensive",purchase,1.0,0 -63702300,"Counter-Strike Global Offensive",play,1244.0,0 -63702300,"H1Z1",purchase,1.0,0 -63702300,"H1Z1",play,4.7,0 -63702300,"Dota 2",purchase,1.0,0 -63702300,"Dota 2",play,1.2,0 -63702300,"Day of Defeat Source",purchase,1.0,0 -63702300,"H1Z1 Test Server",purchase,1.0,0 -63702300,"Half-Life 2 Deathmatch",purchase,1.0,0 -208616727,"Grand Theft Auto V",purchase,1.0,0 -208616727,"Grand Theft Auto V",play,30.0,0 -208616727,"Counter-Strike Global Offensive",purchase,1.0,0 -208616727,"Counter-Strike Global Offensive",play,10.7,0 -208616727,"Team Fortress 2",purchase,1.0,0 -208616727,"Team Fortress 2",play,2.2,0 -208616727,"Grand Theft Auto IV",purchase,1.0,0 -208616727,"Grand Theft Auto IV",play,1.4,0 -208616727,"Robocraft",purchase,1.0,0 -208616727,"Robocraft",play,0.5,0 -215492814,"Dota 2",purchase,1.0,0 -215492814,"Dota 2",play,0.9,0 -125851854,"Dota 2",purchase,1.0,0 -125851854,"Dota 2",play,47.0,0 -118920238,"Dota 2",purchase,1.0,0 -118920238,"Dota 2",play,150.0,0 -118920238,"Counter-Strike",purchase,1.0,0 -118920238,"Counter-Strike",play,56.0,0 -118920238,"Counter-Strike Condition Zero",purchase,1.0,0 -118920238,"Ricochet",purchase,1.0,0 -118920238,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -118920238,"Day of Defeat",purchase,1.0,0 -118920238,"Deathmatch Classic",purchase,1.0,0 -158260880,"Rocksmith 2014",purchase,1.0,0 -158260880,"Rocksmith 2014",play,15.8,0 -241217182,"Unturned",purchase,1.0,0 -241217182,"Unturned",play,0.2,0 -241217182,"Team Fortress 2",purchase,1.0,0 -241217182,"Team Fortress 2",play,0.2,0 -241217182,"BLOCKADE 3D",purchase,1.0,0 -241217182,"Dirty Bomb",purchase,1.0,0 -241217182,"Run and Fire",purchase,1.0,0 -192899469,"Counter-Strike Global Offensive",purchase,1.0,0 -192899469,"Counter-Strike Global Offensive",play,19.2,0 -92294160,"Zombie Panic Source",purchase,1.0,0 -92294160,"Zombie Panic Source",play,3.1,0 -92294160,"Team Fortress 2",purchase,1.0,0 -92294160,"Team Fortress 2",play,1.5,0 -92294160,"DC Universe Online",purchase,1.0,0 -92294160,"DC Universe Online",play,0.2,0 -21144204,"Team Fortress Classic",purchase,1.0,0 -21144204,"Team Fortress Classic",play,0.7,0 -21144204,"Half-Life Blue Shift",purchase,1.0,0 -21144204,"Half-Life Blue Shift",play,0.3,0 -21144204,"Half-Life Opposing Force",purchase,1.0,0 -21144204,"Half-Life",purchase,1.0,0 -128546479,"Team Fortress 2",purchase,1.0,0 -128546479,"Team Fortress 2",play,0.1,0 -140854798,"Dishonored",purchase,1.0,0 -140854798,"Dishonored",play,10.1,0 -140854798,"The Elder Scrolls V Skyrim",purchase,1.0,0 -140854798,"The Elder Scrolls V Skyrim",play,4.7,0 -140854798,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -140854798,"Medal of Honor(TM) Multiplayer",play,1.9,0 -140854798,"Medal of Honor(TM) Single Player",purchase,1.0,0 -140854798,"Medal of Honor(TM) Single Player",play,0.3,0 -140854798,"Crysis 2 Maximum Edition",purchase,1.0,0 -140854798,"Crysis 2 Maximum Edition",play,0.1,0 -140854798,"Fallout New Vegas",purchase,1.0,0 -140854798,"Borderlands 2",purchase,1.0,0 -140854798,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -140854798,"Dead Space",purchase,1.0,0 -140854798,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -140854798,"Fallout New Vegas Dead Money",purchase,1.0,0 -140854798,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -140854798,"Medal of Honor Pre-Order",purchase,1.0,0 -140854798,"Mirror's Edge",purchase,1.0,0 -140854798,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -140854798,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -168324795,"H1Z1",purchase,1.0,0 -168324795,"H1Z1",play,392.0,0 -168324795,"Counter-Strike Global Offensive",purchase,1.0,0 -168324795,"Counter-Strike Global Offensive",play,273.0,0 -168324795,"Rust",purchase,1.0,0 -168324795,"Rust",play,57.0,0 -168324795,"Call of Duty Black Ops III",purchase,1.0,0 -168324795,"Call of Duty Black Ops III",play,23.0,0 -168324795,"Ori and the Blind Forest",purchase,1.0,0 -168324795,"Ori and the Blind Forest",play,20.0,0 -168324795,"Unturned",purchase,1.0,0 -168324795,"Unturned",play,12.3,0 -168324795,"Left 4 Dead 2",purchase,1.0,0 -168324795,"Left 4 Dead 2",play,11.1,0 -168324795,"Rocket League",purchase,1.0,0 -168324795,"Rocket League",play,11.0,0 -168324795,"SpeedRunners",purchase,1.0,0 -168324795,"SpeedRunners",play,7.1,0 -168324795,"AdVenture Capitalist",purchase,1.0,0 -168324795,"AdVenture Capitalist",play,6.9,0 -168324795,"ARK Survival Evolved",purchase,1.0,0 -168324795,"ARK Survival Evolved",play,6.2,0 -168324795,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -168324795,"Call of Duty Advanced Warfare - Multiplayer",play,4.2,0 -168324795,"Mad Max",purchase,1.0,0 -168324795,"Mad Max",play,3.4,0 -168324795,"Terraria",purchase,1.0,0 -168324795,"Terraria",play,2.3,0 -168324795,"Dead Rising 3",purchase,1.0,0 -168324795,"Dead Rising 3",play,2.3,0 -168324795,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -168324795,"Call of Duty Modern Warfare 2 - Multiplayer",play,2.1,0 -168324795,"Arma 3",purchase,1.0,0 -168324795,"Arma 3",play,1.8,0 -168324795,"DayZ",purchase,1.0,0 -168324795,"DayZ",play,1.6,0 -168324795,"Life Is Strange",purchase,1.0,0 -168324795,"Life Is Strange",play,1.6,0 -168324795,"PAYDAY 2",purchase,1.0,0 -168324795,"PAYDAY 2",play,1.5,0 -168324795,"Team Fortress 2",purchase,1.0,0 -168324795,"Team Fortress 2",play,0.6,0 -168324795,"Cities Skylines",purchase,1.0,0 -168324795,"Cities Skylines",play,0.5,0 -168324795,"Haunted Memories",purchase,1.0,0 -168324795,"Haunted Memories",play,0.3,0 -168324795,"Dota 2",purchase,1.0,0 -168324795,"Dota 2",play,0.2,0 -168324795,"Fishing Planet",purchase,1.0,0 -168324795,"Fishing Planet",play,0.2,0 -168324795,"Dirty Bomb",purchase,1.0,0 -168324795,"Dirty Bomb",play,0.2,0 -168324795,"Robocraft",purchase,1.0,0 -168324795,"Robocraft",play,0.2,0 -168324795,"Call of Duty Modern Warfare 2",purchase,1.0,0 -168324795,"Call of Duty Modern Warfare 2",play,0.1,0 -168324795,"Giana Sisters Twisted Dreams",purchase,1.0,0 -168324795,"Giana Sisters Twisted Dreams",play,0.1,0 -168324795,"Only If",purchase,1.0,0 -168324795,"Call of Duty Advanced Warfare",purchase,1.0,0 -168324795,"Arma 3 Zeus",purchase,1.0,0 -168324795,"Commander Conquest of the Americas Gold",purchase,1.0,0 -168324795,"Dead Island Epidemic",purchase,1.0,0 -168324795,"Dead Rising 3 DLC1",purchase,1.0,0 -168324795,"Dead Rising 3 DLC2",purchase,1.0,0 -168324795,"Dead Rising 3 DLC3",purchase,1.0,0 -168324795,"Dead Rising 3 DLC4",purchase,1.0,0 -168324795,"East India Company Gold",purchase,1.0,0 -168324795,"Enclave",purchase,1.0,0 -168324795,"H1Z1 Test Server",purchase,1.0,0 -168324795,"Knights and Merchants",purchase,1.0,0 -168324795,"Particula",purchase,1.0,0 -168324795,"Pirates of Black Cove Gold",purchase,1.0,0 -168324795,"SMITE",purchase,1.0,0 -168324795,"Tropico 4",purchase,1.0,0 -168324795,"Two Worlds Epic Edition",purchase,1.0,0 -168324795,"Two Worlds II",purchase,1.0,0 -168324795,"X-Blades",purchase,1.0,0 -31669242,"Left 4 Dead",purchase,1.0,0 -31669242,"Left 4 Dead",play,603.0,0 -31669242,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -31669242,"Call of Duty Modern Warfare 2 - Multiplayer",play,249.0,0 -31669242,"The Binding of Isaac Rebirth",purchase,1.0,0 -31669242,"The Binding of Isaac Rebirth",play,164.0,0 -31669242,"Left 4 Dead 2",purchase,1.0,0 -31669242,"Left 4 Dead 2",play,162.0,0 -31669242,"DARK SOULS II",purchase,1.0,0 -31669242,"DARK SOULS II",play,150.0,0 -31669242,"Borderlands 2",purchase,1.0,0 -31669242,"Borderlands 2",play,88.0,0 -31669242,"Fallout New Vegas",purchase,1.0,0 -31669242,"Fallout New Vegas",play,85.0,0 -31669242,"XCOM Enemy Unknown",purchase,1.0,0 -31669242,"XCOM Enemy Unknown",play,83.0,0 -31669242,"Fallout 4",purchase,1.0,0 -31669242,"Fallout 4",play,67.0,0 -31669242,"The Elder Scrolls V Skyrim",purchase,1.0,0 -31669242,"The Elder Scrolls V Skyrim",play,63.0,0 -31669242,"Terraria",purchase,1.0,0 -31669242,"Terraria",play,62.0,0 -31669242,"FINAL FANTASY VII",purchase,1.0,0 -31669242,"FINAL FANTASY VII",play,60.0,0 -31669242,"DARK SOULS II Scholar of the First Sin",purchase,1.0,0 -31669242,"DARK SOULS II Scholar of the First Sin",play,55.0,0 -31669242,"Starbound",purchase,1.0,0 -31669242,"Starbound",play,50.0,0 -31669242,"Sid Meier's Civilization V",purchase,1.0,0 -31669242,"Sid Meier's Civilization V",play,43.0,0 -31669242,"Team Fortress 2",purchase,1.0,0 -31669242,"Team Fortress 2",play,42.0,0 -31669242,"Assassin's Creed IV Black Flag",purchase,1.0,0 -31669242,"Assassin's Creed IV Black Flag",play,37.0,0 -31669242,"Borderlands The Pre-Sequel",purchase,1.0,0 -31669242,"Borderlands The Pre-Sequel",play,34.0,0 -31669242,"FTL Faster Than Light",purchase,1.0,0 -31669242,"FTL Faster Than Light",play,33.0,0 -31669242,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -31669242,"METAL GEAR SOLID V THE PHANTOM PAIN",play,32.0,0 -31669242,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -31669242,"Injustice Gods Among Us Ultimate Edition",play,28.0,0 -31669242,"BioShock Infinite",purchase,1.0,0 -31669242,"BioShock Infinite",play,26.0,0 -31669242,"Counter-Strike Global Offensive",purchase,1.0,0 -31669242,"Counter-Strike Global Offensive",play,23.0,0 -31669242,"Rogue Legacy",purchase,1.0,0 -31669242,"Rogue Legacy",play,23.0,0 -31669242,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -31669242,"The Elder Scrolls IV Oblivion ",play,23.0,0 -31669242,"Cities Skylines",purchase,1.0,0 -31669242,"Cities Skylines",play,23.0,0 -31669242,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -31669242,"Dark Souls Prepare to Die Edition",play,22.0,0 -31669242,"Divinity Original Sin",purchase,1.0,0 -31669242,"Divinity Original Sin",play,22.0,0 -31669242,"Deus Ex Human Revolution",purchase,1.0,0 -31669242,"Deus Ex Human Revolution",play,22.0,0 -31669242,"Always Sometimes Monsters",purchase,1.0,0 -31669242,"Always Sometimes Monsters",play,21.0,0 -31669242,"Saints Row IV",purchase,1.0,0 -31669242,"Saints Row IV",play,21.0,0 -31669242,"Tomb Raider",purchase,1.0,0 -31669242,"Tomb Raider",play,19.9,0 -31669242,"Life Is Strange",purchase,1.0,0 -31669242,"Life Is Strange",play,19.5,0 -31669242,"Saints Row The Third",purchase,1.0,0 -31669242,"Saints Row The Third",play,18.4,0 -31669242,"Kerbal Space Program",purchase,1.0,0 -31669242,"Kerbal Space Program",play,18.4,0 -31669242,"Call of Duty Black Ops",purchase,1.0,0 -31669242,"Call of Duty Black Ops",play,16.2,0 -31669242,"The Walking Dead",purchase,1.0,0 -31669242,"The Walking Dead",play,15.7,0 -31669242,"Remember Me",purchase,1.0,0 -31669242,"Remember Me",play,15.1,0 -31669242,"Magicka",purchase,1.0,0 -31669242,"Magicka",play,15.1,0 -31669242,"Tales from the Borderlands",purchase,1.0,0 -31669242,"Tales from the Borderlands",play,15.1,0 -31669242,"Trials Evolution Gold Edition",purchase,1.0,0 -31669242,"Trials Evolution Gold Edition",play,14.8,0 -31669242,"Anno 2070",purchase,1.0,0 -31669242,"Anno 2070",play,14.7,0 -31669242,"Hitman Absolution",purchase,1.0,0 -31669242,"Hitman Absolution",play,14.1,0 -31669242,"DiRT 2",purchase,1.0,0 -31669242,"DiRT 2",play,13.6,0 -31669242,"Dishonored",purchase,1.0,0 -31669242,"Dishonored",play,13.5,0 -31669242,"Just Cause 3",purchase,1.0,0 -31669242,"Just Cause 3",play,13.1,0 -31669242,"Call of Duty World at War",purchase,1.0,0 -31669242,"Call of Duty World at War",play,12.7,0 -31669242,"The Book of Unwritten Tales 2",purchase,1.0,0 -31669242,"The Book of Unwritten Tales 2",play,12.5,0 -31669242,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -31669242,"Plants vs. Zombies Game of the Year",play,12.5,0 -31669242,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -31669242,"Batman Arkham Asylum GOTY Edition",play,12.4,0 -31669242,"The Walking Dead Season Two",purchase,1.0,0 -31669242,"The Walking Dead Season Two",play,11.7,0 -31669242,"Poker Night at the Inventory",purchase,1.0,0 -31669242,"Poker Night at the Inventory",play,11.7,0 -31669242,"Batman Arkham Origins",purchase,1.0,0 -31669242,"Batman Arkham Origins",play,10.8,0 -31669242,"Batman Arkham City",purchase,1.0,0 -31669242,"Batman Arkham City",play,10.2,0 -31669242,"Poker Night 2",purchase,1.0,0 -31669242,"Poker Night 2",play,9.6,0 -31669242,"South Park The Stick of Truth",purchase,1.0,0 -31669242,"South Park The Stick of Truth",play,8.6,0 -31669242,"Crysis 2 Maximum Edition",purchase,1.0,0 -31669242,"Crysis 2 Maximum Edition",play,8.6,0 -31669242,"Portal 2",purchase,1.0,0 -31669242,"Portal 2",play,8.5,0 -31669242,"Worms Revolution",purchase,1.0,0 -31669242,"Worms Revolution",play,8.4,0 -31669242,"The Wolf Among Us",purchase,1.0,0 -31669242,"The Wolf Among Us",play,7.8,0 -31669242,"Call of Duty Modern Warfare 2",purchase,1.0,0 -31669242,"Call of Duty Modern Warfare 2",play,7.4,0 -31669242,"Fallout",purchase,1.0,0 -31669242,"Fallout",play,6.6,0 -31669242,"Bastion",purchase,1.0,0 -31669242,"Bastion",play,6.2,0 -31669242,"The Stanley Parable",purchase,1.0,0 -31669242,"The Stanley Parable",play,5.9,0 -31669242,"Game Dev Tycoon",purchase,1.0,0 -31669242,"Game Dev Tycoon",play,5.9,0 -31669242,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -31669242,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,5.7,0 -31669242,"Prison Architect",purchase,1.0,0 -31669242,"Prison Architect",play,5.4,0 -31669242,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -31669242,"The Secret of Monkey Island Special Edition",play,5.3,0 -31669242,"Dungeon Defenders",purchase,1.0,0 -31669242,"Dungeon Defenders",play,5.2,0 -31669242,"GRID Autosport",purchase,1.0,0 -31669242,"GRID Autosport",play,4.7,0 -31669242,"Transistor",purchase,1.0,0 -31669242,"Transistor",play,4.6,0 -31669242,"Darkest Dungeon",purchase,1.0,0 -31669242,"Darkest Dungeon",play,4.6,0 -31669242,"Skullgirls",purchase,1.0,0 -31669242,"Skullgirls",play,4.2,0 -31669242,"Hotline Miami",purchase,1.0,0 -31669242,"Hotline Miami",play,4.1,0 -31669242,"The LEGO Movie - Videogame",purchase,1.0,0 -31669242,"The LEGO Movie - Videogame",play,3.9,0 -31669242,"LEGO MARVEL Super Heroes",purchase,1.0,0 -31669242,"LEGO MARVEL Super Heroes",play,3.8,0 -31669242,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -31669242,"Call of Duty Black Ops - Multiplayer",play,3.7,0 -31669242,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -31669242,"Deus Ex Human Revolution - Director's Cut",play,3.7,0 -31669242,"Spintires",purchase,1.0,0 -31669242,"Spintires",play,3.7,0 -31669242,"FINAL FANTASY VIII",purchase,1.0,0 -31669242,"FINAL FANTASY VIII",play,3.6,0 -31669242,"Carmageddon Reincarnation",purchase,1.0,0 -31669242,"Carmageddon Reincarnation",play,3.5,0 -31669242,"Broforce",purchase,1.0,0 -31669242,"Broforce",play,3.3,0 -31669242,"Metro Last Light",purchase,1.0,0 -31669242,"Metro Last Light",play,3.3,0 -31669242,"The Book of Unwritten Tales",purchase,1.0,0 -31669242,"The Book of Unwritten Tales",play,3.2,0 -31669242,"SC2VN - The eSports Visual Novel",purchase,1.0,0 -31669242,"SC2VN - The eSports Visual Novel",play,3.1,0 -31669242,"Long Live The Queen",purchase,1.0,0 -31669242,"Long Live The Queen",play,3.1,0 -31669242,"You Need A Budget 4 (YNAB)",purchase,1.0,0 -31669242,"You Need A Budget 4 (YNAB)",play,3.0,0 -31669242,"The Misadventures of P.B. Winterbottom",purchase,1.0,0 -31669242,"The Misadventures of P.B. Winterbottom",play,2.8,0 -31669242,"Street Fighter IV",purchase,1.0,0 -31669242,"Street Fighter IV",play,2.6,0 -31669242,"Garry's Mod",purchase,1.0,0 -31669242,"Garry's Mod",play,2.6,0 -31669242,"Star Wars Empire at War Gold",purchase,1.0,0 -31669242,"Star Wars Empire at War Gold",play,2.4,0 -31669242,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -31669242,"Dark Messiah of Might & Magic Single Player",play,2.4,0 -31669242,"Portal",purchase,1.0,0 -31669242,"Portal",play,2.0,0 -31669242,"DiRT Showdown",purchase,1.0,0 -31669242,"DiRT Showdown",play,2.0,0 -31669242,"Defense Grid The Awakening",purchase,1.0,0 -31669242,"Defense Grid The Awakening",play,1.9,0 -31669242,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -31669242,"Warhammer 40,000 Dawn of War II Retribution",play,1.9,0 -31669242,"Fallout 2",purchase,1.0,0 -31669242,"Fallout 2",play,1.8,0 -31669242,"McPixel",purchase,1.0,0 -31669242,"McPixel",play,1.6,0 -31669242,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -31669242,"Back to the Future Ep 1 - It's About Time",play,1.6,0 -31669242,"War Thunder",purchase,1.0,0 -31669242,"War Thunder",play,1.5,0 -31669242,"Dwarfs!?",purchase,1.0,0 -31669242,"Dwarfs!?",play,1.5,0 -31669242,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -31669242,"METAL GEAR RISING REVENGEANCE",play,1.5,0 -31669242,"BeamNG.drive",purchase,1.0,0 -31669242,"BeamNG.drive",play,1.4,0 -31669242,"eden*",purchase,1.0,0 -31669242,"eden*",play,1.4,0 -31669242,"Beast Boxing Turbo",purchase,1.0,0 -31669242,"Beast Boxing Turbo",play,1.4,0 -31669242,"Command and Conquer 3 Tiberium Wars",purchase,1.0,0 -31669242,"Command and Conquer 3 Tiberium Wars",play,1.3,0 -31669242,"Guacamelee! Gold Edition",purchase,1.0,0 -31669242,"Guacamelee! Gold Edition",play,1.3,0 -31669242,"Red Faction Armageddon",purchase,1.0,0 -31669242,"Red Faction Armageddon",play,1.2,0 -31669242,"Unepic",purchase,1.0,0 -31669242,"Unepic",play,1.2,0 -31669242,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -31669242,"Divinity Original Sin Enhanced Edition",play,1.2,0 -31669242,"Source Filmmaker",purchase,1.0,0 -31669242,"Source Filmmaker",play,1.1,0 -31669242,"Star Wars Knights of the Old Republic",purchase,1.0,0 -31669242,"Star Wars Knights of the Old Republic",play,1.0,0 -31669242,"Half-Life 2 Episode Two",purchase,1.0,0 -31669242,"Half-Life 2 Episode Two",play,0.9,0 -31669242,"Papers, Please",purchase,1.0,0 -31669242,"Papers, Please",play,0.9,0 -31669242,"World of Goo",purchase,1.0,0 -31669242,"World of Goo",play,0.9,0 -31669242,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -31669242,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.8,0 -31669242,"Auditorium",purchase,1.0,0 -31669242,"Auditorium",play,0.8,0 -31669242,"Kingdom",purchase,1.0,0 -31669242,"Kingdom",play,0.7,0 -31669242,"Warhammer 40,000 Space Marine",purchase,1.0,0 -31669242,"Warhammer 40,000 Space Marine",play,0.7,0 -31669242,"Overlord II",purchase,1.0,0 -31669242,"Overlord II",play,0.7,0 -31669242,"Universe Sandbox",purchase,1.0,0 -31669242,"Universe Sandbox",play,0.7,0 -31669242,"Mirror's Edge",purchase,1.0,0 -31669242,"Mirror's Edge",play,0.7,0 -31669242,"Half-Life 2",purchase,1.0,0 -31669242,"Half-Life 2",play,0.6,0 -31669242,"Project Zomboid",purchase,1.0,0 -31669242,"Project Zomboid",play,0.6,0 -31669242,"Magicka 2",purchase,1.0,0 -31669242,"Magicka 2",play,0.6,0 -31669242,"Giana Sisters Twisted Dreams",purchase,1.0,0 -31669242,"Giana Sisters Twisted Dreams",play,0.6,0 -31669242,"Monkey Island 2 Special Edition",purchase,1.0,0 -31669242,"Monkey Island 2 Special Edition",play,0.5,0 -31669242,"Car Mechanic Simulator 2014",purchase,1.0,0 -31669242,"Car Mechanic Simulator 2014",play,0.5,0 -31669242,"DmC Devil May Cry",purchase,1.0,0 -31669242,"DmC Devil May Cry",play,0.5,0 -31669242,"Trine 2",purchase,1.0,0 -31669242,"Trine 2",play,0.4,0 -31669242,"Dota 2",purchase,1.0,0 -31669242,"Dota 2",play,0.3,0 -31669242,"Gods Will Be Watching",purchase,1.0,0 -31669242,"Gods Will Be Watching",play,0.3,0 -31669242,"Star Wars The Force Unleashed II",purchase,1.0,0 -31669242,"Star Wars The Force Unleashed II",play,0.2,0 -31669242,"Crusader Kings II",purchase,1.0,0 -31669242,"Crusader Kings II",play,0.2,0 -31669242,"FlatOut 2",purchase,1.0,0 -31669242,"FlatOut 2",play,0.2,0 -31669242,"Bridge Project",purchase,1.0,0 -31669242,"Bridge Project",play,0.2,0 -31669242,"Next Car Game Wreckfest",purchase,1.0,0 -31669242,"Next Car Game Wreckfest",play,0.2,0 -31669242,"Besiege",purchase,1.0,0 -31669242,"Besiege",play,0.1,0 -31669242,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -31669242,"Next Car Game Sneak Peek 2.0",play,0.1,0 -31669242,"Swarm Arena",purchase,1.0,0 -31669242,"Swarm Arena",play,0.1,0 -31669242,"Half-Life 2 Episode One",purchase,1.0,0 -31669242,"The Banner Saga",purchase,1.0,0 -31669242,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -31669242,"STAR WARS X-Wing vs. TIE Fighter",purchase,1.0,0 -31669242,"The Cat Lady",purchase,1.0,0 -31669242,"Age of Empires II HD Edition",purchase,1.0,0 -31669242,"Age of Empires II HD The Forgotten",purchase,1.0,0 -31669242,"Age of Empires III Complete Collection",purchase,1.0,0 -31669242,"Alien Isolation",purchase,1.0,0 -31669242,"Always Sometimes Monsters - Soundtrack",purchase,1.0,0 -31669242,"Amnesia The Dark Descent",purchase,1.0,0 -31669242,"Anachronox",purchase,1.0,0 -31669242,"Antichamber",purchase,1.0,0 -31669242,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -31669242,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -31669242,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -31669242,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -31669242,"Batman Arkham City GOTY",purchase,1.0,0 -31669242,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -31669242,"Battlestations Midway",purchase,1.0,0 -31669242,"BioShock Infinite - Season Pass",purchase,1.0,0 -31669242,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -31669242,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -31669242,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -31669242,"Braid",purchase,1.0,0 -31669242,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -31669242,"Command and Conquer Red Alert 3",purchase,1.0,0 -31669242,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -31669242,"Company of Heroes",purchase,1.0,0 -31669242,"Company of Heroes (New Steam Version)",purchase,1.0,0 -31669242,"Company of Heroes Opposing Fronts",purchase,1.0,0 -31669242,"Company of Heroes Tales of Valor",purchase,1.0,0 -31669242,"Counter-Strike Source",purchase,1.0,0 -31669242,"Daikatana",purchase,1.0,0 -31669242,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -31669242,"Darksiders",purchase,1.0,0 -31669242,"DARK SOULS II - Season Pass",purchase,1.0,0 -31669242,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -31669242,"Deadlight",purchase,1.0,0 -31669242,"Deadlight Original Soundtrack",purchase,1.0,0 -31669242,"Dead Space",purchase,1.0,0 -31669242,"Deus Ex Game of the Year Edition",purchase,1.0,0 -31669242,"Deus Ex Invisible War",purchase,1.0,0 -31669242,"Deus Ex The Fall",purchase,1.0,0 -31669242,"DiRT 3",purchase,1.0,0 -31669242,"DiRT 3 Complete Edition",purchase,1.0,0 -31669242,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -31669242,"Dungeon Siege",purchase,1.0,0 -31669242,"Dungeon Siege 2",purchase,1.0,0 -31669242,"Escape Goat 2",purchase,1.0,0 -31669242,"Fallout New Vegas Dead Money",purchase,1.0,0 -31669242,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -31669242,"Fallout Tactics",purchase,1.0,0 -31669242,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -31669242,"Giana Sisters Twisted Dreams - Rise of the Owlverlord",purchase,1.0,0 -31669242,"Half-Life 2 Deathmatch",purchase,1.0,0 -31669242,"Half-Life 2 Lost Coast",purchase,1.0,0 -31669242,"Hitman 2 Silent Assassin",purchase,1.0,0 -31669242,"Hitman Blood Money",purchase,1.0,0 -31669242,"Hitman Codename 47",purchase,1.0,0 -31669242,"Hitman Contracts",purchase,1.0,0 -31669242,"Hitman Sniper Challenge",purchase,1.0,0 -31669242,"HuniePop",purchase,1.0,0 -31669242,"Just Cause",purchase,1.0,0 -31669242,"Just Cause 2",purchase,1.0,0 -31669242,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -31669242,"Lara Croft and the Guardian of Light",purchase,1.0,0 -31669242,"Legend of Grimrock",purchase,1.0,0 -31669242,"LIMBO",purchase,1.0,0 -31669242,"Lone Survivor The Director's Cut",purchase,1.0,0 -31669242,"Magicka Final Frontier",purchase,1.0,0 -31669242,"Magicka Frozen Lake",purchase,1.0,0 -31669242,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -31669242,"Magicka Nippon",purchase,1.0,0 -31669242,"Magicka Party Robes",purchase,1.0,0 -31669242,"Magicka The Watchtower",purchase,1.0,0 -31669242,"Magicka Vietnam",purchase,1.0,0 -31669242,"Magicka Wizard's Survival Kit",purchase,1.0,0 -31669242,"Make it indie!",purchase,1.0,0 -31669242,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -31669242,"Medal of Honor(TM) Single Player",purchase,1.0,0 -31669242,"Medal of Honor Pre-Order",purchase,1.0,0 -31669242,"Metro 2033",purchase,1.0,0 -31669242,"Middle-earth Shadow of Mordor",purchase,1.0,0 -31669242,"Mini Ninjas",purchase,1.0,0 -31669242,"Mortal Kombat Kollection",purchase,1.0,0 -31669242,"Nosgoth",purchase,1.0,0 -31669242,"Oddworld Abe's Oddysee",purchase,1.0,0 -31669242,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -31669242,"Operation Flashpoint Red River",purchase,1.0,0 -31669242,"Orcs Must Die! 2",purchase,1.0,0 -31669242,"Overlord",purchase,1.0,0 -31669242,"Overlord Raising Hell",purchase,1.0,0 -31669242,"PixelJunk Eden",purchase,1.0,0 -31669242,"Psychonauts",purchase,1.0,0 -31669242,"Psychonauts Demo",purchase,1.0,0 -31669242,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -31669242,"Rise of the Argonauts",purchase,1.0,0 -31669242,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -31669242,"Rocket League",purchase,1.0,0 -31669242,"Saints Row 2",purchase,1.0,0 -31669242,"Scribblenauts Unlimited",purchase,1.0,0 -31669242,"Shadowrun Returns",purchase,1.0,0 -31669242,"Shadow Warrior Classic Redux",purchase,1.0,0 -31669242,"Shantae Risky's Revenge - Director's Cut",purchase,1.0,0 -31669242,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -31669242,"Singularity",purchase,1.0,0 -31669242,"Skullgirls Endless Beta",purchase,1.0,0 -31669242,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -31669242,"Sleeping Dogs",purchase,1.0,0 -31669242,"SpeedRunners",purchase,1.0,0 -31669242,"Starbound - Unstable",purchase,1.0,0 -31669242,"Star Wars - Battlefront II",purchase,1.0,0 -31669242,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -31669242,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -31669242,"Star Wars Dark Forces",purchase,1.0,0 -31669242,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -31669242,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -31669242,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -31669242,"Star Wars Republic Commando",purchase,1.0,0 -31669242,"Star Wars Starfighter",purchase,1.0,0 -31669242,"Star Wars The Clone Wars Republic Heroes",purchase,1.0,0 -31669242,"STAR WARS TIE Fighter Special Edition",purchase,1.0,0 -31669242,"STAR WARS X-Wing Alliance",purchase,1.0,0 -31669242,"STAR WARS X-Wing Special Edition",purchase,1.0,0 -31669242,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -31669242,"Super Meat Boy",purchase,1.0,0 -31669242,"The Banner Saga - Mod Content",purchase,1.0,0 -31669242,"The Book of Unwritten Tales Extras",purchase,1.0,0 -31669242,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -31669242,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -31669242,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -31669242,"The Guild II",purchase,1.0,0 -31669242,"The Guild II - Pirates of the European Seas",purchase,1.0,0 -31669242,"The Guild II Renaissance",purchase,1.0,0 -31669242,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -31669242,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -31669242,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -31669242,"The Last Remnant",purchase,1.0,0 -31669242,"The Legend of Korra",purchase,1.0,0 -31669242,"The Lord of the Rings War in the North",purchase,1.0,0 -31669242,"Thief Gold",purchase,1.0,0 -31669242,"Thomas Was Alone",purchase,1.0,0 -31669242,"TimeShift",purchase,1.0,0 -31669242,"Transistor Soundtrack",purchase,1.0,0 -31669242,"Trine",purchase,1.0,0 -31669242,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -31669242,"Volgarr the Viking",purchase,1.0,0 -31669242,"XCOM Enemy Within",purchase,1.0,0 -80471276,"Counter-Strike Global Offensive",purchase,1.0,0 -80471276,"Counter-Strike Global Offensive",play,327.0,0 -80471276,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -80471276,"Call of Duty 4 Modern Warfare",play,19.0,0 -80471276,"Left 4 Dead 2",purchase,1.0,0 -80471276,"Left 4 Dead 2",play,13.7,0 -80471276,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -80471276,"Call of Duty Modern Warfare 2 - Multiplayer",play,1.7,0 -80471276,"Alien Swarm",purchase,1.0,0 -80471276,"Alien Swarm",play,0.9,0 -80471276,"Unturned",purchase,1.0,0 -80471276,"Unturned",play,0.4,0 -80471276,"Mount Your Friends",purchase,1.0,0 -80471276,"Mount Your Friends",play,0.4,0 -80471276,"Call of Duty Modern Warfare 2",purchase,1.0,0 -80471276,"Call of Duty Modern Warfare 2",play,0.2,0 -80471276,"Toki Tori",purchase,1.0,0 -182454639,"Dota 2",purchase,1.0,0 -182454639,"Dota 2",play,0.3,0 -134765677,"Amnesia The Dark Descent",purchase,1.0,0 -134765677,"Amnesia The Dark Descent",play,18.3,0 -134765677,"RollerCoaster Tycoon 2 Triple Thrill Pack",purchase,1.0,0 -134765677,"RollerCoaster Tycoon 2 Triple Thrill Pack",play,9.6,0 -134765677,"Amnesia A Machine for Pigs",purchase,1.0,0 -134765677,"Amnesia A Machine for Pigs",play,5.0,0 -134765677,"Riding Star",purchase,1.0,0 -134765677,"Riding Star",play,2.7,0 -134765677,"Garry's Mod",purchase,1.0,0 -134765677,"Garry's Mod",play,1.4,0 -134765677,"McPixel",purchase,1.0,0 -134765677,"Botanicula",purchase,1.0,0 -134765677,"The Showdown Effect",purchase,1.0,0 -134765677,"Thomas Was Alone",purchase,1.0,0 -123989127,"Team Fortress 2",purchase,1.0,0 -123989127,"Team Fortress 2",play,15.8,0 -85959768,"Garry's Mod",purchase,1.0,0 -85959768,"Garry's Mod",play,310.0,0 -85959768,"Team Fortress 2",purchase,1.0,0 -85959768,"Team Fortress 2",play,151.0,0 -85959768,"Counter-Strike Global Offensive",purchase,1.0,0 -85959768,"Counter-Strike Global Offensive",play,46.0,0 -85959768,"Counter-Strike Source",purchase,1.0,0 -85959768,"Counter-Strike Source",play,27.0,0 -85959768,"Blacklight Retribution",purchase,1.0,0 -85959768,"Blacklight Retribution",play,14.2,0 -85959768,"Cubemen",purchase,1.0,0 -85959768,"Cubemen",play,6.7,0 -85959768,"Magicka",purchase,1.0,0 -85959768,"Magicka",play,3.5,0 -85959768,"Terraria",purchase,1.0,0 -85959768,"Terraria",play,3.1,0 -85959768,"The Ship",purchase,1.0,0 -85959768,"The Ship",play,3.1,0 -85959768,"Portal",purchase,1.0,0 -85959768,"Portal",play,1.8,0 -85959768,"Day of Defeat Source",purchase,1.0,0 -85959768,"Day of Defeat Source",play,1.8,0 -85959768,"Saints Row The Third",purchase,1.0,0 -85959768,"Saints Row The Third",play,1.6,0 -85959768,"Just Cause 2",purchase,1.0,0 -85959768,"Just Cause 2",play,1.4,0 -85959768,"Metro 2033",purchase,1.0,0 -85959768,"Metro 2033",play,1.3,0 -85959768,"PAYDAY The Heist",purchase,1.0,0 -85959768,"PAYDAY The Heist",play,1.0,0 -85959768,"Age of Chivalry",purchase,1.0,0 -85959768,"Age of Chivalry",play,0.7,0 -85959768,"Darksiders",purchase,1.0,0 -85959768,"Darksiders",play,0.3,0 -85959768,"Red Faction Armageddon",purchase,1.0,0 -85959768,"Red Faction Armageddon",play,0.2,0 -85959768,"Company of Heroes",purchase,1.0,0 -85959768,"Company of Heroes",play,0.2,0 -85959768,"Company of Heroes Tales of Valor",purchase,1.0,0 -85959768,"Company of Heroes Tales of Valor",play,0.2,0 -85959768,"Insurgency Modern Infantry Combat",purchase,1.0,0 -85959768,"Insurgency Modern Infantry Combat",play,0.2,0 -85959768,"Source Filmmaker",purchase,1.0,0 -85959768,"Source Filmmaker",play,0.1,0 -85959768,"Company of Heroes (New Steam Version)",purchase,1.0,0 -85959768,"Company of Heroes Opposing Fronts",purchase,1.0,0 -85959768,"The Ship Single Player",purchase,1.0,0 -85959768,"The Ship Tutorial",purchase,1.0,0 -154296520,"Team Fortress 2",purchase,1.0,0 -154296520,"Team Fortress 2",play,666.0,0 -154296520,"Dragon Nest Europe",purchase,1.0,0 -154296520,"Dragon Nest Europe",play,614.0,0 -154296520,"Warframe",purchase,1.0,0 -154296520,"Warframe",play,377.0,0 -154296520,"Garry's Mod",purchase,1.0,0 -154296520,"Garry's Mod",play,134.0,0 -154296520,"AdVenture Capitalist",purchase,1.0,0 -154296520,"AdVenture Capitalist",play,81.0,0 -154296520,"Counter-Strike Global Offensive",purchase,1.0,0 -154296520,"Counter-Strike Global Offensive",play,73.0,0 -154296520,"Neverwinter",purchase,1.0,0 -154296520,"Neverwinter",play,30.0,0 -154296520,"Transformice",purchase,1.0,0 -154296520,"Transformice",play,25.0,0 -154296520,"One Finger Death Punch",purchase,1.0,0 -154296520,"One Finger Death Punch",play,18.8,0 -154296520,"Unturned",purchase,1.0,0 -154296520,"Unturned",play,17.4,0 -154296520,"Portal 2",purchase,1.0,0 -154296520,"Portal 2",play,15.1,0 -154296520,"Left 4 Dead 2",purchase,1.0,0 -154296520,"Left 4 Dead 2",play,11.2,0 -154296520,"TERA",purchase,1.0,0 -154296520,"TERA",play,5.7,0 -154296520,"BattleBlock Theater",purchase,1.0,0 -154296520,"BattleBlock Theater",play,5.6,0 -154296520,"Trove",purchase,1.0,0 -154296520,"Trove",play,4.7,0 -154296520,"Sakura Clicker",purchase,1.0,0 -154296520,"Sakura Clicker",play,2.8,0 -154296520,"Spiral Knights",purchase,1.0,0 -154296520,"Spiral Knights",play,2.6,0 -154296520,"War Thunder",purchase,1.0,0 -154296520,"War Thunder",play,2.0,0 -154296520,"Defy Gravity",purchase,1.0,0 -154296520,"Defy Gravity",play,1.5,0 -154296520,"Frozen Synapse Prime",purchase,1.0,0 -154296520,"Frozen Synapse Prime",play,1.5,0 -154296520,"Aura Kingdom",purchase,1.0,0 -154296520,"Aura Kingdom",play,1.4,0 -154296520,"Dungeon Defenders II",purchase,1.0,0 -154296520,"Dungeon Defenders II",play,1.0,0 -154296520,"Robocraft",purchase,1.0,0 -154296520,"Robocraft",play,0.7,0 -154296520,"Moonbase Alpha",purchase,1.0,0 -154296520,"Moonbase Alpha",play,0.6,0 -154296520,"PAYDAY The Heist",purchase,1.0,0 -154296520,"PAYDAY The Heist",play,0.5,0 -154296520,"Source Filmmaker",purchase,1.0,0 -154296520,"Source Filmmaker",play,0.5,0 -154296520,"Brawlhalla",purchase,1.0,0 -154296520,"Brawlhalla",play,0.4,0 -154296520,"Counter-Strike Nexon Zombies",purchase,1.0,0 -154296520,"Counter-Strike Nexon Zombies",play,0.2,0 -154296520,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -154296520,"Knights and Merchants",purchase,1.0,0 -144188136,"Dota 2",purchase,1.0,0 -144188136,"Dota 2",play,18.9,0 -144188136,"Risk of Rain",purchase,1.0,0 -144188136,"Risk of Rain",play,11.4,0 -144188136,"Left 4 Dead 2",purchase,1.0,0 -144188136,"Left 4 Dead 2",play,3.0,0 -190206592,"Dota 2",purchase,1.0,0 -190206592,"Dota 2",play,3.9,0 -305242867,"Counter-Strike Global Offensive",purchase,1.0,0 -305242867,"Counter-Strike Global Offensive",play,0.5,0 -289006222,"Loadout",purchase,1.0,0 -289006222,"Loadout",play,5.2,0 -289006222,"Warface",purchase,1.0,0 -289006222,"Warface",play,2.5,0 -98265922,"Counter-Strike",purchase,1.0,0 -98265922,"Counter-Strike",play,49.0,0 -98265922,"Garry's Mod",purchase,1.0,0 -98265922,"Garry's Mod",play,10.2,0 -98265922,"Team Fortress 2",purchase,1.0,0 -98265922,"Team Fortress 2",play,2.6,0 -98265922,"War of the Roses",purchase,1.0,0 -98265922,"War of the Roses",play,0.7,0 -98265922,"Counter-Strike Condition Zero",purchase,1.0,0 -98265922,"Counter-Strike Condition Zero",play,0.7,0 -98265922,"Loadout",purchase,1.0,0 -98265922,"Loadout",play,0.5,0 -98265922,"Dota 2",purchase,1.0,0 -98265922,"Dota 2",play,0.5,0 -98265922,"Pid ",purchase,1.0,0 -98265922,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -98265922,"Heroes & Generals",purchase,1.0,0 -206508182,"Team Fortress 2",purchase,1.0,0 -206508182,"Team Fortress 2",play,0.4,0 -206508182,"PlanetSide 2",purchase,1.0,0 -303883231,"Tomb Raider",purchase,1.0,0 -303883231,"Tomb Raider",play,41.0,0 -103943711,"Dota 2",purchase,1.0,0 -103943711,"Dota 2",play,4.9,0 -174838943,"Imperial Glory",purchase,1.0,0 -174838943,"Imperial Glory",play,170.0,0 -174838943,"Counter-Strike Global Offensive",purchase,1.0,0 -174838943,"Counter-Strike Global Offensive",play,109.0,0 -174838943,"Garry's Mod",purchase,1.0,0 -174838943,"Garry's Mod",play,44.0,0 -174838943,"Unturned",purchase,1.0,0 -174838943,"Unturned",play,22.0,0 -174838943,"Call of Duty World at War",purchase,1.0,0 -174838943,"Call of Duty World at War",play,10.7,0 -174838943,"Team Fortress 2",purchase,1.0,0 -174838943,"Team Fortress 2",play,8.2,0 -174838943,"Robocraft",purchase,1.0,0 -174838943,"Robocraft",play,7.3,0 -174838943,"Rise of Nations Extended Edition",purchase,1.0,0 -174838943,"Rise of Nations Extended Edition",play,6.1,0 -174838943,"PAYDAY 2",purchase,1.0,0 -174838943,"PAYDAY 2",play,5.9,0 -174838943,"Dizzel",purchase,1.0,0 -174838943,"Dizzel",play,4.2,0 -174838943,"Dota 2",purchase,1.0,0 -174838943,"Dota 2",play,4.0,0 -174838943,"Chivalry Medieval Warfare",purchase,1.0,0 -174838943,"Chivalry Medieval Warfare",play,2.7,0 -174838943,"Counter-Strike Source",purchase,1.0,0 -174838943,"Counter-Strike Source",play,1.8,0 -174838943,"Far Cry 3",purchase,1.0,0 -174838943,"Far Cry 3",play,1.6,0 -174838943,"Uncrowded",purchase,1.0,0 -174838943,"Uncrowded",play,0.4,0 -174838943,"Primal Carnage",purchase,1.0,0 -174838943,"Primal Carnage",play,0.3,0 -174838943,"Strife",purchase,1.0,0 -174838943,"Patch testing for Chivalry",purchase,1.0,0 -174838943,"America's Army 3",purchase,1.0,0 -174838943,"Super Hexagon",purchase,1.0,0 -174838943,"Warframe",purchase,1.0,0 -295479185,"Counter-Strike Nexon Zombies",purchase,1.0,0 -295479185,"Counter-Strike Nexon Zombies",play,42.0,0 -295479185,"Unturned",purchase,1.0,0 -295479185,"Unturned",play,35.0,0 -295479185,"Marvel Heroes 2015",purchase,1.0,0 -27115822,"Counter-Strike Source",purchase,1.0,0 -27115822,"Counter-Strike Source",play,0.1,0 -163867033,"IL-2 Sturmovik Cliffs of Dover",purchase,1.0,0 -163867033,"IL-2 Sturmovik Cliffs of Dover",play,18.3,0 -77542968,"Counter-Strike",purchase,1.0,0 -77542968,"Counter-Strike",play,503.0,0 -77542968,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -77542968,"Call of Duty Modern Warfare 2 - Multiplayer",play,128.0,0 -77542968,"Dota 2",purchase,1.0,0 -77542968,"Dota 2",play,9.1,0 -77542968,"Call of Duty Modern Warfare 2",purchase,1.0,0 -77542968,"Call of Duty Modern Warfare 2",play,8.3,0 -77542968,"The Binding of Isaac",purchase,1.0,0 -77542968,"The Binding of Isaac",play,6.7,0 -77542968,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -77542968,"Plants vs. Zombies Game of the Year",play,3.8,0 -77542968,"Portal 2",purchase,1.0,0 -77542968,"Portal 2",play,2.3,0 -77542968,"Counter-Strike Condition Zero",purchase,1.0,0 -77542968,"Counter-Strike Condition Zero",play,0.8,0 -77542968,"Team Fortress 2",purchase,1.0,0 -77542968,"Team Fortress 2",play,0.7,0 -77542968,"FlatOut",purchase,1.0,0 -77542968,"FlatOut",play,0.7,0 -77542968,"Ravaged Zombie Apocalypse",purchase,1.0,0 -77542968,"Ravaged Zombie Apocalypse",play,0.6,0 -77542968,"FlatOut Ultimate Carnage",purchase,1.0,0 -77542968,"FlatOut Ultimate Carnage",play,0.5,0 -77542968,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -77542968,"Counter-Strike Condition Zero Deleted Scenes",play,0.2,0 -77542968,"FlatOut 2",purchase,1.0,0 -77542968,"FlatOut 2",play,0.1,0 -77542968,"Portal",purchase,1.0,0 -77542968,"Day of Defeat",purchase,1.0,0 -77542968,"Deathmatch Classic",purchase,1.0,0 -77542968,"Ricochet",purchase,1.0,0 -77542968,"Flatout 3",purchase,1.0,0 -77542968,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -299312201,"Dota 2",purchase,1.0,0 -299312201,"Dota 2",play,18.8,0 -115324976,"Left 4 Dead 2",purchase,1.0,0 -115324976,"Left 4 Dead 2",play,419.0,0 -115324976,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -115324976,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,4.3,0 -115324976,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",purchase,1.0,0 -185395696,"Unturned",purchase,1.0,0 -185395696,"Unturned",play,5.6,0 -258086009,"Dota 2",purchase,1.0,0 -258086009,"Dota 2",play,0.1,0 -293959803,"Team Fortress 2",purchase,1.0,0 -293959803,"Team Fortress 2",play,9.1,0 -308459721,"Dota 2",purchase,1.0,0 -308459721,"Dota 2",play,1.3,0 -295409380,"Wolfenstein The Old Blood ",purchase,1.0,0 -295409380,"Wolfenstein The Old Blood ",play,0.9,0 -35864169,"Sonic Generations",purchase,1.0,0 -35864169,"Sonic Generations",play,276.0,0 -35864169,"Grand Theft Auto IV",purchase,1.0,0 -35864169,"Grand Theft Auto IV",play,123.0,0 -35864169,"Train Simulator",purchase,1.0,0 -35864169,"Train Simulator",play,90.0,0 -35864169,"Portal 2",purchase,1.0,0 -35864169,"Portal 2",play,41.0,0 -35864169,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -35864169,"Grand Theft Auto Episodes from Liberty City",play,40.0,0 -35864169,"Half-Life 2",purchase,1.0,0 -35864169,"Half-Life 2",play,32.0,0 -35864169,"Portal",purchase,1.0,0 -35864169,"Portal",play,24.0,0 -35864169,"Duke Nukem Forever",purchase,1.0,0 -35864169,"Duke Nukem Forever",play,13.4,0 -35864169,"Left 4 Dead",purchase,1.0,0 -35864169,"Left 4 Dead",play,12.0,0 -35864169,"Half-Life 2 Episode One",purchase,1.0,0 -35864169,"Half-Life 2 Episode One",play,10.4,0 -35864169,"Street Fighter X Tekken",purchase,1.0,0 -35864169,"Street Fighter X Tekken",play,9.5,0 -35864169,"Left 4 Dead 2",purchase,1.0,0 -35864169,"Left 4 Dead 2",play,9.1,0 -35864169,"DOOM 3",purchase,1.0,0 -35864169,"DOOM 3",play,8.8,0 -35864169,"Half-Life 2 Episode Two",purchase,1.0,0 -35864169,"Half-Life 2 Episode Two",play,7.4,0 -35864169,"Amnesia The Dark Descent",purchase,1.0,0 -35864169,"Amnesia The Dark Descent",play,5.4,0 -35864169,"Half-Life",purchase,1.0,0 -35864169,"Half-Life",play,4.6,0 -35864169,"Audiosurf",purchase,1.0,0 -35864169,"Audiosurf",play,4.4,0 -35864169,"Prey",purchase,1.0,0 -35864169,"Prey",play,3.5,0 -35864169,"Worms Reloaded",purchase,1.0,0 -35864169,"Worms Reloaded",play,3.2,0 -35864169,"Sonic CD",purchase,1.0,0 -35864169,"Sonic CD",play,3.1,0 -35864169,"Sam & Max 104 Abe Lincoln Must Die!",purchase,1.0,0 -35864169,"Sam & Max 104 Abe Lincoln Must Die!",play,2.8,0 -35864169,"Aliens versus Predator Classic 2000",purchase,1.0,0 -35864169,"Aliens versus Predator Classic 2000",play,2.5,0 -35864169,"The Ship Single Player",purchase,1.0,0 -35864169,"The Ship Single Player",play,2.3,0 -35864169,"Silent Hill Homecoming",purchase,1.0,0 -35864169,"Silent Hill Homecoming",play,2.2,0 -35864169,"Alan Wake",purchase,1.0,0 -35864169,"Alan Wake",play,1.9,0 -35864169,"Geometry Wars Retro Evolved",purchase,1.0,0 -35864169,"Geometry Wars Retro Evolved",play,1.8,0 -35864169,"LIMBO",purchase,1.0,0 -35864169,"LIMBO",play,1.7,0 -35864169,"Oddworld Abe's Oddysee",purchase,1.0,0 -35864169,"Oddworld Abe's Oddysee",play,1.4,0 -35864169,"Mafia II",purchase,1.0,0 -35864169,"Mafia II",play,1.3,0 -35864169,"Half-Life 2 Lost Coast",purchase,1.0,0 -35864169,"Half-Life 2 Lost Coast",play,1.1,0 -35864169,"World of Goo",purchase,1.0,0 -35864169,"World of Goo",play,1.0,0 -35864169,"Grand Theft Auto San Andreas",purchase,1.0,0 -35864169,"Grand Theft Auto San Andreas",play,0.9,0 -35864169,"Super Meat Boy",purchase,1.0,0 -35864169,"Super Meat Boy",play,0.9,0 -35864169,"RAGE",purchase,1.0,0 -35864169,"RAGE",play,0.8,0 -35864169,"Mensa Academy",purchase,1.0,0 -35864169,"Mensa Academy",play,0.7,0 -35864169,"Grand Theft Auto III",purchase,1.0,0 -35864169,"Grand Theft Auto III",play,0.5,0 -35864169,"Transformers Fall of Cybertron",purchase,1.0,0 -35864169,"Transformers Fall of Cybertron",play,0.5,0 -35864169,"Team Fortress 2",purchase,1.0,0 -35864169,"Team Fortress 2",play,0.4,0 -35864169,"Grand Theft Auto Vice City",purchase,1.0,0 -35864169,"Grand Theft Auto Vice City",play,0.3,0 -35864169,"Alien Swarm",purchase,1.0,0 -35864169,"Alien Swarm",play,0.3,0 -35864169,"DOOM II Hell on Earth",purchase,1.0,0 -35864169,"DOOM II Hell on Earth",play,0.1,0 -35864169,"Grand Theft Auto 2",purchase,1.0,0 -35864169,"Grand Theft Auto 2",play,0.1,0 -35864169,"The Ultimate DOOM",purchase,1.0,0 -35864169,"The Ultimate DOOM",play,0.1,0 -35864169,"Final DOOM",purchase,1.0,0 -35864169,"DOOM 3 Resurrection of Evil",purchase,1.0,0 -35864169,"The Ship",purchase,1.0,0 -35864169,"Grand Theft Auto",purchase,1.0,0 -35864169,"Master Levels for DOOM II",purchase,1.0,0 -35864169,"Team Fortress Classic",purchase,1.0,0 -35864169,"The Ship Tutorial",purchase,1.0,0 -35864169,"Grand Theft Auto San Andreas",purchase,1.0,0 -35864169,"Grand Theft Auto Vice City",purchase,1.0,0 -35864169,"Grand Theft Auto III",purchase,1.0,0 -35864169,"Half-Life 2 Deathmatch",purchase,1.0,0 -35864169,"Half-Life Blue Shift",purchase,1.0,0 -35864169,"Half-Life Opposing Force",purchase,1.0,0 -35864169,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -110546832,"Sid Meier's Civilization V",purchase,1.0,0 -110546832,"Sid Meier's Civilization V",play,30.0,0 -110546832,"Team Fortress 2",purchase,1.0,0 -110546832,"Team Fortress 2",play,16.3,0 -110546832,"Ace of Spades",purchase,1.0,0 -110546832,"Ace of Spades",play,4.7,0 -110546832,"Counter-Strike Global Offensive",purchase,1.0,0 -110546832,"Counter-Strike Global Offensive",play,2.2,0 -110546832,"Garry's Mod",purchase,1.0,0 -110546832,"Garry's Mod",play,0.9,0 -110546832,"World of Goo",purchase,1.0,0 -110546832,"World of Goo",play,0.4,0 -110546832,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -110546832,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",play,0.3,0 -110546832,"Babel Rising",purchase,1.0,0 -110546832,"Babel Rising",play,0.2,0 -110546832,"Dota 2",purchase,1.0,0 -110546832,"Dota 2",play,0.2,0 -110546832,"Castle Crashers",purchase,1.0,0 -110546832,"Castle Crashers",play,0.1,0 -110546832,"Cryostasis",purchase,1.0,0 -110546832,"Hell Yeah!",purchase,1.0,0 -110546832,"Men of War Red Tide",purchase,1.0,0 -110546832,"NecroVisioN",purchase,1.0,0 -110546832,"The Binding of Isaac",purchase,1.0,0 -52567955,"Dota 2",purchase,1.0,0 -52567955,"Dota 2",play,6964.0,0 -52567955,"Counter-Strike",purchase,1.0,0 -52567955,"Counter-Strike",play,735.0,0 -52567955,"Counter-Strike Global Offensive",purchase,1.0,0 -52567955,"Counter-Strike Global Offensive",play,131.0,0 -52567955,"Day of Defeat",purchase,1.0,0 -52567955,"Day of Defeat",play,5.6,0 -52567955,"NBA 2K9",purchase,1.0,0 -52567955,"NBA 2K9",play,0.9,0 -52567955,"Team Fortress 2",purchase,1.0,0 -52567955,"Team Fortress 2",play,0.2,0 -52567955,"Deathmatch Classic",purchase,1.0,0 -52567955,"Ricochet",purchase,1.0,0 -52567955,"America's Army Proving Grounds",purchase,1.0,0 -52567955,"Archeblade",purchase,1.0,0 -52567955,"Counter-Strike Condition Zero",purchase,1.0,0 -52567955,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -52567955,"Dizzel",purchase,1.0,0 -52567955,"Firefall",purchase,1.0,0 -52567955,"Free to Play",purchase,1.0,0 -52567955,"Global Agenda",purchase,1.0,0 -52567955,"Half-Life 2 Deathmatch",purchase,1.0,0 -52567955,"Half-Life 2 Lost Coast",purchase,1.0,0 -52567955,"Heroes & Generals",purchase,1.0,0 -52567955,"Neverwinter",purchase,1.0,0 -52567955,"Nosgoth",purchase,1.0,0 -52567955,"RIFT",purchase,1.0,0 -52567955,"Strife",purchase,1.0,0 -52567955,"Unturned",purchase,1.0,0 -52567955,"Warframe",purchase,1.0,0 -52567955,"War of the Roses",purchase,1.0,0 -52567955,"War Thunder",purchase,1.0,0 -107574541,"Dota 2",purchase,1.0,0 -107574541,"Dota 2",play,1596.0,0 -107574541,"Team Fortress 2",purchase,1.0,0 -107574541,"Team Fortress 2",play,0.7,0 -253111169,"Trove",purchase,1.0,0 -253111169,"Trove",play,0.4,0 -118066938,"Dota 2",purchase,1.0,0 -118066938,"Dota 2",play,59.0,0 -118066938,"Nosgoth",purchase,1.0,0 -118066938,"Nosgoth",play,0.9,0 -118066938,"Cry of Fear",purchase,1.0,0 -118066938,"Realm of the Mad God",purchase,1.0,0 -118066938,"Shadow Warrior Classic (1997)",purchase,1.0,0 -118066938,"Unturned",purchase,1.0,0 -54229062,"Saints Row 2",purchase,1.0,0 -54229062,"Saints Row 2",play,0.2,0 -36978196,"Counter-Strike Global Offensive",purchase,1.0,0 -36978196,"Counter-Strike Global Offensive",play,1455.0,0 -36978196,"Counter-Strike Source",purchase,1.0,0 -36978196,"Counter-Strike Source",play,326.0,0 -36978196,"Counter-Strike",purchase,1.0,0 -36978196,"Counter-Strike",play,72.0,0 -36978196,"H1Z1",purchase,1.0,0 -36978196,"H1Z1",play,65.0,0 -36978196,"Team Fortress 2",purchase,1.0,0 -36978196,"Team Fortress 2",play,57.0,0 -36978196,"Pro Cycling Manager 2015",purchase,1.0,0 -36978196,"Pro Cycling Manager 2015",play,29.0,0 -36978196,"PAYDAY 2",purchase,1.0,0 -36978196,"PAYDAY 2",play,23.0,0 -36978196,"Dota 2",purchase,1.0,0 -36978196,"Dota 2",play,9.9,0 -36978196,"Borderlands 2",purchase,1.0,0 -36978196,"Borderlands 2",play,7.1,0 -36978196,"Grand Theft Auto IV",purchase,1.0,0 -36978196,"Grand Theft Auto IV",play,6.8,0 -36978196,"Day of Defeat Source",purchase,1.0,0 -36978196,"Day of Defeat Source",play,5.6,0 -36978196,"Left 4 Dead 2",purchase,1.0,0 -36978196,"Left 4 Dead 2",play,4.0,0 -36978196,"Trine 2",purchase,1.0,0 -36978196,"Trine 2",play,3.6,0 -36978196,"Counter-Strike Condition Zero",purchase,1.0,0 -36978196,"Counter-Strike Condition Zero",play,3.3,0 -36978196,"Age of Chivalry",purchase,1.0,0 -36978196,"Age of Chivalry",play,1.8,0 -36978196,"Day of Defeat",purchase,1.0,0 -36978196,"Day of Defeat",play,1.8,0 -36978196,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -36978196,"Counter-Strike Condition Zero Deleted Scenes",play,1.1,0 -36978196,"Half-Life 2 Deathmatch",purchase,1.0,0 -36978196,"Half-Life 2 Deathmatch",play,0.9,0 -36978196,"Sniper Elite V2",purchase,1.0,0 -36978196,"Sniper Elite V2",play,0.4,0 -36978196,"Deathmatch Classic",purchase,1.0,0 -36978196,"H1Z1 Test Server",purchase,1.0,0 -36978196,"Half-Life 2 Lost Coast",purchase,1.0,0 -36978196,"Ricochet",purchase,1.0,0 -36978196,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -36978196,"Warframe",purchase,1.0,0 -202140438,"The Sims(TM) 3",purchase,1.0,0 -202140438,"The Sims(TM) 3",play,41.0,0 -202140438,"Batman Arkham Origins",purchase,1.0,0 -202140438,"Batman Arkham Origins",play,12.5,0 -202140438,"Firefall",purchase,1.0,0 -202140438,"Firefall",play,11.4,0 -202140438,"Unturned",purchase,1.0,0 -202140438,"Unturned",play,7.9,0 -202140438,"Garry's Mod",purchase,1.0,0 -202140438,"Garry's Mod",play,5.0,0 -202140438,"Dirty Bomb",purchase,1.0,0 -202140438,"Dirty Bomb",play,4.9,0 -202140438,"Team Fortress 2",purchase,1.0,0 -202140438,"Team Fortress 2",play,1.6,0 -202140438,"GRID Autosport",purchase,1.0,0 -202140438,"GRID Autosport",play,1.5,0 -202140438,"Trove",purchase,1.0,0 -202140438,"Trove",play,1.1,0 -202140438,"Fistful of Frags",purchase,1.0,0 -202140438,"Fistful of Frags",play,1.0,0 -202140438,"Gotham City Impostors Free To Play",purchase,1.0,0 -202140438,"Gotham City Impostors Free To Play",play,0.9,0 -202140438,"Modular Combat",purchase,1.0,0 -202140438,"Modular Combat",play,0.7,0 -202140438,"APB Reloaded",purchase,1.0,0 -202140438,"APB Reloaded",play,0.6,0 -202140438,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -202140438,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.5,0 -202140438,"Warface",purchase,1.0,0 -202140438,"Warface",play,0.3,0 -202140438,"Run and Fire",purchase,1.0,0 -202140438,"Run and Fire",play,0.2,0 -202140438,"Red Crucible Firestorm",purchase,1.0,0 -202140438,"Red Crucible Firestorm",play,0.1,0 -202140438,"Robocraft",purchase,1.0,0 -202140438,"Anoxemia",purchase,1.0,0 -202140438,"Clicker Heroes",purchase,1.0,0 -202140438,"Tap Tap Infinity",purchase,1.0,0 -303345566,"Dota 2",purchase,1.0,0 -303345566,"Dota 2",play,8.8,0 -286968172,"Dota 2",purchase,1.0,0 -286968172,"Dota 2",play,11.8,0 -286968172,"ACE - Arena Cyber Evolution",purchase,1.0,0 -286968172,"APB Reloaded",purchase,1.0,0 -286968172,"Archeblade",purchase,1.0,0 -286968172,"Aura Kingdom",purchase,1.0,0 -286968172,"Blacklight Retribution",purchase,1.0,0 -286968172,"BLOCKADE 3D",purchase,1.0,0 -286968172,"C9",purchase,1.0,0 -286968172,"Defiance",purchase,1.0,0 -286968172,"Face of Mankind",purchase,1.0,0 -286968172,"Fallen Earth",purchase,1.0,0 -286968172,"Firefall",purchase,1.0,0 -286968172,"FreeStyle2 Street Basketball",purchase,1.0,0 -286968172,"Gotham City Impostors Free To Play",purchase,1.0,0 -286968172,"HAWKEN",purchase,1.0,0 -286968172,"Heroes & Generals",purchase,1.0,0 -286968172,"Marvel Heroes 2015",purchase,1.0,0 -286968172,"Neverwinter",purchase,1.0,0 -286968172,"Nosgoth",purchase,1.0,0 -286968172,"PlanetSide 2",purchase,1.0,0 -286968172,"Quake Live",purchase,1.0,0 -286968172,"Realm of the Mad God",purchase,1.0,0 -286968172,"RIFT",purchase,1.0,0 -286968172,"Robocraft",purchase,1.0,0 -286968172,"Royal Quest",purchase,1.0,0 -286968172,"Spiral Knights",purchase,1.0,0 -286968172,"Star Trek Online",purchase,1.0,0 -286968172,"Tactical Intervention",purchase,1.0,0 -286968172,"TERA",purchase,1.0,0 -286968172,"theHunter",purchase,1.0,0 -286968172,"The Lord of the Rings Online",purchase,1.0,0 -286968172,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -286968172,"Unturned",purchase,1.0,0 -286968172,"Warframe",purchase,1.0,0 -286968172,"War Thunder",purchase,1.0,0 -298508104,"Dota 2",purchase,1.0,0 -298508104,"Dota 2",play,4.0,0 -77565315,"Sins of a Solar Empire Trinity",purchase,1.0,0 -77565315,"Sins of a Solar Empire Trinity",play,55.0,0 -77565315,"Rise of Nations Extended Edition",purchase,1.0,0 -77565315,"Rise of Nations Extended Edition",play,53.0,0 -77565315,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -77565315,"Warhammer 40,000 Dawn of War II",play,14.1,0 -77565315,"Command and Conquer Red Alert 3",purchase,1.0,0 -77565315,"Command and Conquer Red Alert 3",play,12.6,0 -77565315,"Dota 2",purchase,1.0,0 -77565315,"Dota 2",play,11.9,0 -77565315,"Depth",purchase,1.0,0 -77565315,"Depth",play,11.5,0 -77565315,"Space Engineers",purchase,1.0,0 -77565315,"Space Engineers",play,10.4,0 -77565315,"Homeworld Remastered Collection",purchase,1.0,0 -77565315,"Homeworld Remastered Collection",play,3.1,0 -77565315,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -77565315,"Sins of a Solar Empire Rebellion",play,1.5,0 -77565315,"Sanctum 2",purchase,1.0,0 -77565315,"Sanctum 2",play,1.5,0 -77565315,"Path of Exile",purchase,1.0,0 -186903958,"AdVenture Capitalist",purchase,1.0,0 -186903958,"AdVenture Capitalist",play,6.9,0 -186903958,"Geometry Dash",purchase,1.0,0 -186903958,"Geometry Dash",play,2.9,0 -186903958,"Counter-Strike Global Offensive",purchase,1.0,0 -186903958,"Counter-Strike Global Offensive",play,1.9,0 -186903958,"Clicker Heroes",purchase,1.0,0 -186903958,"Clicker Heroes",play,0.5,0 -186903958,"Team Fortress 2",purchase,1.0,0 -186903958,"Team Fortress 2",play,0.3,0 -279406744,"Dota 2",purchase,1.0,0 -279406744,"Dota 2",play,37.0,0 -279406744,"BLOCKADE 3D",purchase,1.0,0 -279406744,"Free to Play",purchase,1.0,0 -279406744,"Unturned",purchase,1.0,0 -279406744,"Warframe",purchase,1.0,0 -178932673,"Monochroma",purchase,1.0,0 -178932673,"Monochroma",play,6.0,0 -178932673,"The Forest",purchase,1.0,0 -178932673,"The Forest",play,2.0,0 -201022310,"Dota 2",purchase,1.0,0 -201022310,"Dota 2",play,1.5,0 -156426681,"Left 4 Dead 2",purchase,1.0,0 -156426681,"Left 4 Dead 2",play,90.0,0 -156426681,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -156426681,"Grand Theft Auto Episodes from Liberty City",play,48.0,0 -156426681,"Max Payne 3",purchase,1.0,0 -156426681,"Max Payne 3",play,30.0,0 -156426681,"Call of Duty Modern Warfare 3",purchase,1.0,0 -156426681,"Call of Duty Modern Warfare 3",play,21.0,0 -156426681,"Batman Arkham Origins",purchase,1.0,0 -156426681,"Batman Arkham Origins",play,19.8,0 -156426681,"Counter-Strike Nexon Zombies",purchase,1.0,0 -156426681,"Counter-Strike Nexon Zombies",play,18.5,0 -156426681,"Crysis 2 Maximum Edition",purchase,1.0,0 -156426681,"Crysis 2 Maximum Edition",play,16.8,0 -156426681,"Grand Theft Auto IV",purchase,1.0,0 -156426681,"Grand Theft Auto IV",play,16.8,0 -156426681,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -156426681,"Tom Clancy's Ghost Recon Phantoms - EU",play,6.8,0 -156426681,"Dead Island Riptide",purchase,1.0,0 -156426681,"Dead Island Riptide",play,2.0,0 -156426681,"The Elder Scrolls V Skyrim",purchase,1.0,0 -156426681,"The Elder Scrolls V Skyrim",play,0.7,0 -156426681,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -156426681,"Call of Duty Modern Warfare 3 - Multiplayer",play,0.4,0 -156426681,"Grand Theft Auto San Andreas",purchase,1.0,0 -156426681,"Grand Theft Auto San Andreas",play,0.2,0 -156426681,"Dead Island",purchase,1.0,0 -156426681,"Grand Theft Auto San Andreas",purchase,1.0,0 -156426681,"Grand Theft Auto Vice City",purchase,1.0,0 -156426681,"Grand Theft Auto Vice City",purchase,1.0,0 -156426681,"Grand Theft Auto III",purchase,1.0,0 -156426681,"Grand Theft Auto III",purchase,1.0,0 -156426681,"Max Payne 3 Season Pass",purchase,1.0,0 -156426681,"PAYDAY The Heist",purchase,1.0,0 -194145720,"RollerCoaster Tycoon Deluxe",purchase,1.0,0 -194145720,"RollerCoaster Tycoon Deluxe",play,68.0,0 -33457161,"Counter-Strike",purchase,1.0,0 -33457161,"Counter-Strike",play,75.0,0 -33457161,"Counter-Strike Condition Zero",purchase,1.0,0 -33457161,"Counter-Strike Condition Zero",play,0.8,0 -33457161,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -33457161,"Day of Defeat",purchase,1.0,0 -33457161,"Deathmatch Classic",purchase,1.0,0 -33457161,"Ricochet",purchase,1.0,0 -306778978,"Back to Dinosaur Island ",purchase,1.0,0 -300240653,"Dota 2",purchase,1.0,0 -300240653,"Dota 2",play,1.0,0 -258020559,"Team Fortress 2",purchase,1.0,0 -258020559,"Team Fortress 2",play,7.3,0 -258020559,"DCS World",purchase,1.0,0 -127628725,"Arma 3",purchase,1.0,0 -127628725,"Arma 3",play,740.0,0 -127628725,"Arma 2 Operation Arrowhead",purchase,1.0,0 -127628725,"Arma 2 Operation Arrowhead",play,203.0,0 -127628725,"Cities Skylines",purchase,1.0,0 -127628725,"Cities Skylines",play,45.0,0 -127628725,"Kerbal Space Program",purchase,1.0,0 -127628725,"Kerbal Space Program",play,24.0,0 -127628725,"DayZ",purchase,1.0,0 -127628725,"DayZ",play,23.0,0 -127628725,"Game Dev Tycoon",purchase,1.0,0 -127628725,"Game Dev Tycoon",play,18.5,0 -127628725,"Chivalry Medieval Warfare",purchase,1.0,0 -127628725,"Chivalry Medieval Warfare",play,11.6,0 -127628725,"Garry's Mod",purchase,1.0,0 -127628725,"Garry's Mod",play,10.0,0 -127628725,"Counter-Strike Global Offensive",purchase,1.0,0 -127628725,"Counter-Strike Global Offensive",play,9.8,0 -127628725,"Call of Duty Advanced Warfare",purchase,1.0,0 -127628725,"Call of Duty Advanced Warfare",play,8.5,0 -127628725,"BioShock Infinite",purchase,1.0,0 -127628725,"BioShock Infinite",play,6.9,0 -127628725,"Life Is Strange",purchase,1.0,0 -127628725,"Life Is Strange",play,4.2,0 -127628725,"H1Z1",purchase,1.0,0 -127628725,"H1Z1",play,3.7,0 -127628725,"Metro Last Light",purchase,1.0,0 -127628725,"Metro Last Light",play,3.5,0 -127628725,"Sid Meier's Civilization V",purchase,1.0,0 -127628725,"Sid Meier's Civilization V",play,3.4,0 -127628725,"Evolve",purchase,1.0,0 -127628725,"Evolve",play,2.8,0 -127628725,"Stronghold 3",purchase,1.0,0 -127628725,"Stronghold 3",play,2.7,0 -127628725,"The Forest",purchase,1.0,0 -127628725,"The Forest",play,2.1,0 -127628725,"Dota 2",purchase,1.0,0 -127628725,"Dota 2",play,1.9,0 -127628725,"DEFCON",purchase,1.0,0 -127628725,"DEFCON",play,1.6,0 -127628725,"Medal of Honor(TM) Single Player",purchase,1.0,0 -127628725,"Medal of Honor(TM) Single Player",play,1.6,0 -127628725,"Middle-earth Shadow of Mordor",purchase,1.0,0 -127628725,"Middle-earth Shadow of Mordor",play,1.6,0 -127628725,"Next Car Game Wreckfest",purchase,1.0,0 -127628725,"Next Car Game Wreckfest",play,1.4,0 -127628725,"Insurgency",purchase,1.0,0 -127628725,"Insurgency",play,1.3,0 -127628725,"Goat Simulator",purchase,1.0,0 -127628725,"Goat Simulator",play,1.2,0 -127628725,"Fallout 4",purchase,1.0,0 -127628725,"Fallout 4",play,1.2,0 -127628725,"Saints Row IV",purchase,1.0,0 -127628725,"Saints Row IV",play,1.2,0 -127628725,"One Finger Death Punch",purchase,1.0,0 -127628725,"One Finger Death Punch",play,1.1,0 -127628725,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -127628725,"Call of Duty Advanced Warfare - Multiplayer",play,1.1,0 -127628725,"Rust",purchase,1.0,0 -127628725,"Rust",play,1.1,0 -127628725,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -127628725,"Batman Arkham Asylum GOTY Edition",play,0.9,0 -127628725,"Wolfenstein The New Order German Edition",purchase,1.0,0 -127628725,"Wolfenstein The New Order German Edition",play,0.9,0 -127628725,"The Elder Scrolls V Skyrim",purchase,1.0,0 -127628725,"The Elder Scrolls V Skyrim",play,0.9,0 -127628725,"Hatred",purchase,1.0,0 -127628725,"Hatred",play,0.9,0 -127628725,"Strike Vector",purchase,1.0,0 -127628725,"Strike Vector",play,0.8,0 -127628725,"Contagion",purchase,1.0,0 -127628725,"Contagion",play,0.8,0 -127628725,"PAYDAY 2",purchase,1.0,0 -127628725,"PAYDAY 2",play,0.7,0 -127628725,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -127628725,"Next Car Game Sneak Peek 2.0",play,0.6,0 -127628725,"Stranded Deep",purchase,1.0,0 -127628725,"Stranded Deep",play,0.5,0 -127628725,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -127628725,"Medal of Honor(TM) Multiplayer",play,0.4,0 -127628725,"South Park The Stick of Truth",purchase,1.0,0 -127628725,"South Park The Stick of Truth",play,0.4,0 -127628725,"NASCAR '14",purchase,1.0,0 -127628725,"NASCAR '14",play,0.3,0 -127628725,"Papers, Please",purchase,1.0,0 -127628725,"Papers, Please",play,0.3,0 -127628725,"Loadout",purchase,1.0,0 -127628725,"Loadout",play,0.2,0 -127628725,"Company of Heroes 2",purchase,1.0,0 -127628725,"Company of Heroes 2",play,0.2,0 -127628725,"Path of Exile",purchase,1.0,0 -127628725,"Path of Exile",play,0.2,0 -127628725,"The Binding of Isaac Rebirth",purchase,1.0,0 -127628725,"The Binding of Isaac Rebirth",play,0.2,0 -127628725,"Counter-Strike Source",purchase,1.0,0 -127628725,"Counter-Strike Source",play,0.2,0 -127628725,"Patch testing for Chivalry",purchase,1.0,0 -127628725,"Patch testing for Chivalry",play,0.2,0 -127628725,"Grand Theft Auto San Andreas",purchase,1.0,0 -127628725,"Grand Theft Auto San Andreas",play,0.2,0 -127628725,"Banished",purchase,1.0,0 -127628725,"Banished",play,0.2,0 -127628725,"Sniper Elite 3",purchase,1.0,0 -127628725,"Sniper Elite 3",play,0.2,0 -127628725,"Endless Space",purchase,1.0,0 -127628725,"Endless Space",play,0.1,0 -127628725,"The Expendabros",purchase,1.0,0 -127628725,"EVGA PrecisionX 16",purchase,1.0,0 -127628725,"Monaco",purchase,1.0,0 -127628725,"Stronghold HD",purchase,1.0,0 -127628725,"Swipecart",purchase,1.0,0 -127628725,"Arma 2",purchase,1.0,0 -127628725,"Race The Sun",purchase,1.0,0 -127628725,"Bridge Constructor Medieval",purchase,1.0,0 -127628725,"Arma 2 DayZ Mod",purchase,1.0,0 -127628725,"Prison Architect",purchase,1.0,0 -127628725,"SteamWorld Dig",purchase,1.0,0 -127628725,"LUFTRAUSERS",purchase,1.0,0 -127628725,"Arma 2 British Armed Forces",purchase,1.0,0 -127628725,"Arma 2 Private Military Company",purchase,1.0,0 -127628725,"Coin Crypt",purchase,1.0,0 -127628725,"8BitMMO",purchase,1.0,0 -127628725,"AirMech",purchase,1.0,0 -127628725,"ARK Survival Evolved",purchase,1.0,0 -127628725,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -127628725,"Arma 3 Helicopters",purchase,1.0,0 -127628725,"Arma 3 Karts",purchase,1.0,0 -127628725,"Arma 3 Marksmen",purchase,1.0,0 -127628725,"Arma 3 Zeus",purchase,1.0,0 -127628725,"Batman Arkham City GOTY",purchase,1.0,0 -127628725,"Battle Group 2",purchase,1.0,0 -127628725,"Bloodline Champions",purchase,1.0,0 -127628725,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -127628725,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -127628725,"Commandos 2 Men of Courage",purchase,1.0,0 -127628725,"Commandos 3 Destination Berlin",purchase,1.0,0 -127628725,"Commandos Behind Enemy Lines",purchase,1.0,0 -127628725,"Commandos Beyond the Call of Duty",purchase,1.0,0 -127628725,"Company of Heroes",purchase,1.0,0 -127628725,"Company of Heroes (New Steam Version)",purchase,1.0,0 -127628725,"Company of Heroes Opposing Fronts",purchase,1.0,0 -127628725,"Company of Heroes Tales of Valor",purchase,1.0,0 -127628725,"Deadly 30",purchase,1.0,0 -127628725,"Deadly Premonition The Director's Cut",purchase,1.0,0 -127628725,"Dungeonland",purchase,1.0,0 -127628725,"Enclave",purchase,1.0,0 -127628725,"Evolve - Behemoth",purchase,1.0,0 -127628725,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -127628725,"F.E.A.R. 3",purchase,1.0,0 -127628725,"Fallen Enchantress Legendary Heroes",purchase,1.0,0 -127628725,"Freedom Planet",purchase,1.0,0 -127628725,"Gone Home",purchase,1.0,0 -127628725,"Grand Theft Auto San Andreas",purchase,1.0,0 -127628725,"Gunpoint",purchase,1.0,0 -127628725,"H1Z1 Test Server",purchase,1.0,0 -127628725,"Hammerwatch",purchase,1.0,0 -127628725,"Lexica",purchase,1.0,0 -127628725,"Medal of Honor Pre-Order",purchase,1.0,0 -127628725,"Mercenary Kings",purchase,1.0,0 -127628725,"Meridian New World",purchase,1.0,0 -127628725,"Outland",purchase,1.0,0 -127628725,"PlanetSide 2",purchase,1.0,0 -127628725,"Robocraft",purchase,1.0,0 -127628725,"Screencheat",purchase,1.0,0 -127628725,"Scribblenauts Unlimited",purchase,1.0,0 -127628725,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -127628725,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -127628725,"The Book of Legends",purchase,1.0,0 -127628725,"The Bridge",purchase,1.0,0 -127628725,"The Incredible Adventures of Van Helsing II",purchase,1.0,0 -127628725,"The Lord of the Rings War in the North",purchase,1.0,0 -127628725,"The Stanley Parable",purchase,1.0,0 -127628725,"Unturned",purchase,1.0,0 -127628725,"Wolfenstein The New Order",purchase,1.0,0 -213929581,"Unturned",purchase,1.0,0 -213929581,"Unturned",play,0.1,0 -15878832,"Counter-Strike",purchase,1.0,0 -15878832,"Counter-Strike",play,1.8,0 -15878832,"Half-Life",purchase,1.0,0 -15878832,"AdVenture Capitalist",purchase,1.0,0 -15878832,"Day of Defeat",purchase,1.0,0 -15878832,"Deathmatch Classic",purchase,1.0,0 -15878832,"Half-Life Blue Shift",purchase,1.0,0 -15878832,"Half-Life Opposing Force",purchase,1.0,0 -15878832,"Ricochet",purchase,1.0,0 -15878832,"Team Fortress Classic",purchase,1.0,0 -94250834,"Team Fortress 2",purchase,1.0,0 -94250834,"Team Fortress 2",play,0.4,0 -155945477,"Papers, Please",purchase,1.0,0 -155945477,"Papers, Please",play,1.4,0 -155945477,"War for the Overworld",purchase,1.0,0 -155945477,"War for the Overworld",play,0.7,0 -114964884,"Dota 2",purchase,1.0,0 -114964884,"Dota 2",play,36.0,0 -94712912,"Team Fortress 2",purchase,1.0,0 -94712912,"Team Fortress 2",play,188.0,0 -94712912,"Counter-Strike Global Offensive",purchase,1.0,0 -94712912,"Counter-Strike Global Offensive",play,36.0,0 -94712912,"Dota 2",purchase,1.0,0 -94712912,"Dota 2",play,1.9,0 -94712912,"Dirty Bomb",purchase,1.0,0 -211684338,"Dota 2",purchase,1.0,0 -211684338,"Dota 2",play,236.0,0 -211684338,"Aura Kingdom",purchase,1.0,0 -241292839,"Dota 2",purchase,1.0,0 -241292839,"Dota 2",play,2.9,0 -159654421,"Unturned",purchase,1.0,0 -159654421,"Left 4 Dead 2",purchase,1.0,0 -152419713,"Counter-Strike Global Offensive",purchase,1.0,0 -152419713,"Counter-Strike Global Offensive",play,803.0,0 -152419713,"Battlefield Bad Company 2",purchase,1.0,0 -152419713,"Battlefield Bad Company 2",play,58.0,0 -152419713,"NBA 2K14",purchase,1.0,0 -152419713,"NBA 2K14",play,56.0,0 -152419713,"Garry's Mod",purchase,1.0,0 -152419713,"Garry's Mod",play,50.0,0 -152419713,"PAYDAY 2",purchase,1.0,0 -152419713,"PAYDAY 2",play,43.0,0 -152419713,"Counter-Strike Source",purchase,1.0,0 -152419713,"Counter-Strike Source",play,33.0,0 -152419713,"Left 4 Dead",purchase,1.0,0 -152419713,"Left 4 Dead",play,19.4,0 -152419713,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -152419713,"Call of Duty Ghosts - Multiplayer",play,18.3,0 -152419713,"L.A. Noire",purchase,1.0,0 -152419713,"L.A. Noire",play,17.9,0 -152419713,"Mafia II",purchase,1.0,0 -152419713,"Mafia II",play,17.9,0 -152419713,"Saints Row The Third",purchase,1.0,0 -152419713,"Saints Row The Third",play,16.7,0 -152419713,"No More Room in Hell",purchase,1.0,0 -152419713,"No More Room in Hell",play,11.6,0 -152419713,"Euro Truck Simulator 2",purchase,1.0,0 -152419713,"Euro Truck Simulator 2",play,11.4,0 -152419713,"Call of Duty Modern Warfare 2",purchase,1.0,0 -152419713,"Call of Duty Modern Warfare 2",play,10.9,0 -152419713,"Stranded Deep",purchase,1.0,0 -152419713,"Stranded Deep",play,9.6,0 -152419713,"Portal 2",purchase,1.0,0 -152419713,"Portal 2",play,8.7,0 -152419713,"The LEGO Movie - Videogame",purchase,1.0,0 -152419713,"The LEGO Movie - Videogame",play,8.5,0 -152419713,"Survarium",purchase,1.0,0 -152419713,"Survarium",play,8.4,0 -152419713,"Lucius",purchase,1.0,0 -152419713,"Lucius",play,7.3,0 -152419713,"Saints Row IV",purchase,1.0,0 -152419713,"Saints Row IV",play,7.2,0 -152419713,"SteamWorld Dig",purchase,1.0,0 -152419713,"SteamWorld Dig",play,6.6,0 -152419713,"Clicker Heroes",purchase,1.0,0 -152419713,"Clicker Heroes",play,6.0,0 -152419713,"Call of Duty Ghosts",purchase,1.0,0 -152419713,"Call of Duty Ghosts",play,5.9,0 -152419713,"The Ship",purchase,1.0,0 -152419713,"The Ship",play,5.5,0 -152419713,"Monaco",purchase,1.0,0 -152419713,"Monaco",play,5.5,0 -152419713,"Nosgoth",purchase,1.0,0 -152419713,"Nosgoth",play,4.8,0 -152419713,"DiRT 3 Complete Edition",purchase,1.0,0 -152419713,"DiRT 3 Complete Edition",play,3.5,0 -152419713,"Octodad Dadliest Catch",purchase,1.0,0 -152419713,"Octodad Dadliest Catch",play,3.3,0 -152419713,"Team Fortress 2",purchase,1.0,0 -152419713,"Team Fortress 2",play,3.2,0 -152419713,"Chivalry Medieval Warfare",purchase,1.0,0 -152419713,"Chivalry Medieval Warfare",play,3.0,0 -152419713,"Hack, Slash, Loot",purchase,1.0,0 -152419713,"Hack, Slash, Loot",play,2.7,0 -152419713,"Free to Play",purchase,1.0,0 -152419713,"Free to Play",play,2.6,0 -152419713,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -152419713,"Grand Theft Auto Episodes from Liberty City",play,2.2,0 -152419713,"Bloody Trapland",purchase,1.0,0 -152419713,"Bloody Trapland",play,2.2,0 -152419713,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -152419713,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",play,1.9,0 -152419713,"Overlord II",purchase,1.0,0 -152419713,"Overlord II",play,1.3,0 -152419713,"Castle Crashers",purchase,1.0,0 -152419713,"Castle Crashers",play,1.2,0 -152419713,"ORION Prelude",purchase,1.0,0 -152419713,"ORION Prelude",play,1.2,0 -152419713,"FreeStyle2 Street Basketball",purchase,1.0,0 -152419713,"FreeStyle2 Street Basketball",play,1.1,0 -152419713,"Insurgency",purchase,1.0,0 -152419713,"Insurgency",play,1.0,0 -152419713,"theHunter",purchase,1.0,0 -152419713,"theHunter",play,0.9,0 -152419713,"Sniper Elite V2",purchase,1.0,0 -152419713,"Sniper Elite V2",play,0.6,0 -152419713,"HAWKEN",purchase,1.0,0 -152419713,"HAWKEN",play,0.5,0 -152419713,"DiggerOnline",purchase,1.0,0 -152419713,"DiggerOnline",play,0.5,0 -152419713,"Counter-Strike Nexon Zombies",purchase,1.0,0 -152419713,"Counter-Strike Nexon Zombies",play,0.4,0 -152419713,"Magicka Wizard Wars",purchase,1.0,0 -152419713,"Magicka Wizard Wars",play,0.3,0 -152419713,"Batla",purchase,1.0,0 -152419713,"Batla",play,0.3,0 -152419713,"Receiver",purchase,1.0,0 -152419713,"Receiver",play,0.2,0 -152419713,"Defy Gravity",purchase,1.0,0 -152419713,"Defy Gravity",play,0.2,0 -152419713,"Sanctum",purchase,1.0,0 -152419713,"Sanctum",play,0.2,0 -152419713,"Waking Mars",purchase,1.0,0 -152419713,"Waking Mars",play,0.2,0 -152419713,"Fishing Planet",purchase,1.0,0 -152419713,"Fishing Planet",play,0.1,0 -152419713,"Metro 2033",purchase,1.0,0 -152419713,"Metro 2033",play,0.1,0 -152419713,"Unturned",purchase,1.0,0 -152419713,"DogFighter",purchase,1.0,0 -152419713,"Gear Up",purchase,1.0,0 -152419713,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -152419713,"Saints Row 2",purchase,1.0,0 -152419713,"All Is Dust",purchase,1.0,0 -152419713,"Grand Theft Auto San Andreas",purchase,1.0,0 -152419713,"Grand Theft Auto San Andreas",purchase,1.0,0 -152419713,"Grand Theft Auto Vice City",purchase,1.0,0 -152419713,"Grand Theft Auto Vice City",purchase,1.0,0 -152419713,"Grand Theft Auto III",purchase,1.0,0 -152419713,"Grand Theft Auto III",purchase,1.0,0 -152419713,"Grand Theft Auto IV",purchase,1.0,0 -152419713,"Patch testing for Chivalry",purchase,1.0,0 -152419713,"Risen",purchase,1.0,0 -152419713,"Risen 2 - Dark Waters",purchase,1.0,0 -152419713,"Sacred 2 Gold",purchase,1.0,0 -152419713,"Sacred Citadel",purchase,1.0,0 -152419713,"SMITE",purchase,1.0,0 -152419713,"Teeworlds",purchase,1.0,0 -152419713,"The Ship Single Player",purchase,1.0,0 -152419713,"The Ship Tutorial",purchase,1.0,0 -152419713,"Trove",purchase,1.0,0 -152419713,"Voxelized",purchase,1.0,0 -152419713,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -131962554,"Altitude",purchase,1.0,0 -131962554,"Altitude",play,12.0,0 -131962554,"Unturned",purchase,1.0,0 -131962554,"Unturned",play,5.7,0 -131962554,"Left 4 Dead 2",purchase,1.0,0 -131962554,"Left 4 Dead 2",play,2.9,0 -131962554,"Quake Live",purchase,1.0,0 -131962554,"Quake Live",play,1.5,0 -131962554,"Guns and Robots",purchase,1.0,0 -131962554,"Guns and Robots",play,0.2,0 -131962554,"Toribash",purchase,1.0,0 -131962554,"Toribash",play,0.2,0 -206792560,"Dota 2",purchase,1.0,0 -206792560,"Dota 2",play,51.0,0 -256212635,"Dota 2",purchase,1.0,0 -256212635,"Dota 2",play,1.1,0 -165081137,"Napoleon Total War",purchase,1.0,0 -165081137,"Napoleon Total War",play,13.6,0 -165081137,"Empire Total War",purchase,1.0,0 -42380987,"Football Manager 2015",purchase,1.0,0 -42380987,"Football Manager 2015",play,879.0,0 -42380987,"Football Manager 2014",purchase,1.0,0 -42380987,"Football Manager 2014",play,849.0,0 -42380987,"Age of Empires II HD Edition",purchase,1.0,0 -42380987,"Age of Empires II HD Edition",play,346.0,0 -42380987,"Counter-Strike Global Offensive",purchase,1.0,0 -42380987,"Counter-Strike Global Offensive",play,89.0,0 -42380987,"Wildlife Park 2",purchase,1.0,0 -42380987,"Wildlife Park 2",play,29.0,0 -42380987,"Football Manager 2016",purchase,1.0,0 -42380987,"Football Manager 2016",play,13.0,0 -42380987,"Dota 2",purchase,1.0,0 -42380987,"Dota 2",play,2.8,0 -42380987,"Marvel Heroes 2015",purchase,1.0,0 -42380987,"Marvel Heroes 2015",play,1.5,0 -42380987,"Transformers Fall of Cybertron",purchase,1.0,0 -42380987,"Transformers Fall of Cybertron",play,0.5,0 -42380987,"FINAL FANTASY VII",purchase,1.0,0 -42380987,"FINAL FANTASY VII",play,0.2,0 -42380987,"Wildlife Park 2 - Marine World",purchase,1.0,0 -42380987,"Wildlife Park 2 - Marine World",play,0.1,0 -42380987,"Wildlife Park 2 - Dino World",purchase,1.0,0 -42380987,"PAYDAY The Heist",purchase,1.0,0 -42380987,"Age of Empires II HD The Forgotten",purchase,1.0,0 -42380987,"Football Manager 2009",purchase,1.0,0 -42380987,"Wildlife Park 2 - Crazy Zoo",purchase,1.0,0 -42380987,"Wildlife Park 2 - Domestic Animals DLC",purchase,1.0,0 -42380987,"Wildlife Park 2 - Fantasy",purchase,1.0,0 -42380987,"Wildlife Park 2 - Farm World",purchase,1.0,0 -42380987,"Wildlife Park 2 - Horses",purchase,1.0,0 -187939552,"Dota 2",purchase,1.0,0 -187939552,"Dota 2",play,0.5,0 -214913026,"No More Room in Hell",purchase,1.0,0 -214913026,"No More Room in Hell",play,4.0,0 -214913026,"Team Fortress 2",purchase,1.0,0 -214913026,"Team Fortress 2",play,1.8,0 -214913026,"Heroes & Generals",purchase,1.0,0 -214913026,"Heroes & Generals",play,0.5,0 -214913026,"Tactical Intervention",purchase,1.0,0 -214913026,"Tactical Intervention",play,0.2,0 -214913026,"Running Shadow",purchase,1.0,0 -214913026,"Running Shadow",play,0.1,0 -214913026,"Age of Empires Online",purchase,1.0,0 -214913026,"APB Reloaded",purchase,1.0,0 -214913026,"Battle Nations",purchase,1.0,0 -214913026,"Blacklight Retribution",purchase,1.0,0 -214913026,"Gotham City Impostors Free To Play",purchase,1.0,0 -214913026,"HAWKEN",purchase,1.0,0 -214913026,"Loadout",purchase,1.0,0 -214913026,"March of War",purchase,1.0,0 -214913026,"Nosgoth",purchase,1.0,0 -214913026,"PlanetSide 2",purchase,1.0,0 -214913026,"theHunter",purchase,1.0,0 -214913026,"The Mighty Quest For Epic Loot",purchase,1.0,0 -214913026,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -214913026,"Villagers and Heroes",purchase,1.0,0 -214913026,"Warframe",purchase,1.0,0 -140700995,"Time Clickers",purchase,1.0,0 -140700995,"Time Clickers",play,134.0,0 -140700995,"Loadout",purchase,1.0,0 -140700995,"Loadout",play,0.2,0 -131130328,"The Clockwork Man",purchase,1.0,0 -131130328,"The Clockwork Man",play,6.4,0 -131130328,"The Clockwork Man The Hidden World",purchase,1.0,0 -131130328,"The Clockwork Man The Hidden World",play,5.2,0 -131130328,"Mystery P.I. The Lottery Ticket",purchase,1.0,0 -131130328,"Mystery P.I. The Lottery Ticket",play,3.9,0 -131130328,"Nancy Drew Lights, Camera, Curses!",purchase,1.0,0 -131130328,"Nancy Drew Lights, Camera, Curses!",play,2.9,0 -131130328,"Season of Mystery The Cherry Blossom Murders",purchase,1.0,0 -131130328,"Season of Mystery The Cherry Blossom Murders",play,2.8,0 -131130328,"NightShift Code",purchase,1.0,0 -131130328,"NightShift Code",play,2.4,0 -131130328,"Midnight Mysteries Salem Witch Trials",purchase,1.0,0 -131130328,"Midnight Mysteries Salem Witch Trials",play,1.1,0 -131130328,"Midnight Mysteries 4 Haunted Houdini",purchase,1.0,0 -131130328,"Midnight Mysteries 4 Haunted Houdini",play,1.0,0 -131130328,"Mystery PI The Vegas Heist",purchase,1.0,0 -131130328,"Mystery PI The Vegas Heist",play,0.3,0 -131130328,"Midnight Mysteries 3 Devil on the Mississippi",purchase,1.0,0 -131130328,"Midnight Mysteries 3 Devil on the Mississippi",play,0.2,0 -131130328,"Samantha Swift and the Golden Touch",purchase,1.0,0 -131130328,"Samantha Swift and the Golden Touch",play,0.2,0 -131130328,"Mishap 2 An Intentional Haunting",purchase,1.0,0 -131130328,"Samantha Swift and the Hidden Roses of Athena",purchase,1.0,0 -131130328,"Mishap An Accidental Haunting",purchase,1.0,0 -162319568,"Dota 2",purchase,1.0,0 -162319568,"Dota 2",play,1259.0,0 -162319568,"Grand Theft Auto V",purchase,1.0,0 -162319568,"Grand Theft Auto V",play,39.0,0 -162319568,"Evolve",purchase,1.0,0 -162319568,"Evolve",play,7.8,0 -162319568,"Counter-Strike Global Offensive",purchase,1.0,0 -162319568,"Counter-Strike Global Offensive",play,2.2,0 -162319568,"Crow - Hunter (Trapper Class)",purchase,1.0,0 -162319568,"Dead Island Epidemic",purchase,1.0,0 -162319568,"Dirty Bomb",purchase,1.0,0 -162319568,"FreeStyle2 Street Basketball",purchase,1.0,0 -162319568,"GunZ 2 The Second Duel",purchase,1.0,0 -162319568,"HAWKEN",purchase,1.0,0 -162319568,"Path of Exile",purchase,1.0,0 -162319568,"Slim - Hunter (Medic Class)",purchase,1.0,0 -162319568,"Sunny - Hunter (Support Class)",purchase,1.0,0 -162319568,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -162319568,"Torvald - Hunter (Assault Class)",purchase,1.0,0 -227282237,"Dota 2",purchase,1.0,0 -227282237,"Dota 2",play,0.8,0 -227282237,"Robocraft",purchase,1.0,0 -227282237,"Unturned",purchase,1.0,0 -126595775,"Assassin's Creed IV Black Flag",purchase,1.0,0 -126595775,"Assassin's Creed IV Black Flag",play,87.0,0 -126595775,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -126595775,"Call of Duty 4 Modern Warfare",play,54.0,0 -126595775,"DayZ",purchase,1.0,0 -126595775,"DayZ",play,50.0,0 -126595775,"Rocket League",purchase,1.0,0 -126595775,"Rocket League",play,39.0,0 -126595775,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -126595775,"Call of Duty Black Ops II - Multiplayer",play,27.0,0 -126595775,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -126595775,"Call of Duty Modern Warfare 2 - Multiplayer",play,26.0,0 -126595775,"Batman Arkham City GOTY",purchase,1.0,0 -126595775,"Batman Arkham City GOTY",play,12.5,0 -126595775,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -126595775,"Call of Duty Modern Warfare 3 - Multiplayer",play,11.9,0 -126595775,"Slender The Arrival",purchase,1.0,0 -126595775,"Slender The Arrival",play,11.5,0 -126595775,"Sid Meier's Civilization V",purchase,1.0,0 -126595775,"Sid Meier's Civilization V",play,11.1,0 -126595775,"LEGO The Lord of the Rings",purchase,1.0,0 -126595775,"LEGO The Lord of the Rings",play,6.9,0 -126595775,"Left 4 Dead 2",purchase,1.0,0 -126595775,"Left 4 Dead 2",play,6.3,0 -126595775,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -126595775,"Call of Duty Ghosts - Multiplayer",play,6.3,0 -126595775,"Counter-Strike Global Offensive",purchase,1.0,0 -126595775,"Counter-Strike Global Offensive",play,4.7,0 -126595775,"Block N Load",purchase,1.0,0 -126595775,"Block N Load",play,2.5,0 -126595775,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -126595775,"Call of Duty Black Ops II - Zombies",play,1.6,0 -126595775,"Dungeon Defenders",purchase,1.0,0 -126595775,"Dungeon Defenders",play,1.5,0 -126595775,"Call of Duty Modern Warfare 2",purchase,1.0,0 -126595775,"Call of Duty Modern Warfare 2",play,1.4,0 -126595775,"Borderlands 2",purchase,1.0,0 -126595775,"Borderlands 2",play,1.4,0 -126595775,"The Lord of the Rings War in the North",purchase,1.0,0 -126595775,"The Lord of the Rings War in the North",play,0.2,0 -126595775,"Call of Duty Modern Warfare 3",purchase,1.0,0 -126595775,"Mount & Blade Warband",purchase,1.0,0 -126595775,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -126595775,"Call of Duty Black Ops II",purchase,1.0,0 -126595775,"Call of Duty Ghosts",purchase,1.0,0 -126595775,"Call of Duty Modern Warfare 2 - Resurgence Pack",purchase,1.0,0 -126595775,"Call of Duty Modern Warfare 2 Stimulus Package",purchase,1.0,0 -126595775,"F.E.A.R.",purchase,1.0,0 -126595775,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -126595775,"F.E.A.R. 3",purchase,1.0,0 -126595775,"F.E.A.R. Extraction Point",purchase,1.0,0 -126595775,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -126595775,"Guardians of Middle-earth",purchase,1.0,0 -126595775,"Middle-earth Shadow of Mordor",purchase,1.0,0 -126595775,"Mortal Kombat Kollection",purchase,1.0,0 -126595775,"Realm of the Mad God",purchase,1.0,0 -126595775,"Scribblenauts Unlimited",purchase,1.0,0 -165025638,"Dota 2",purchase,1.0,0 -165025638,"Dota 2",play,0.5,0 -125191585,"Dota 2",purchase,1.0,0 -125191585,"Dota 2",play,7.0,0 -241671581,"Dota 2",purchase,1.0,0 -241671581,"Dota 2",play,99.0,0 -241671581,"FreeStyle2 Street Basketball",purchase,1.0,0 -241671581,"Loadout",purchase,1.0,0 -9845449,"Estranged Act I",purchase,1.0,0 -9845449,"Estranged Act I",play,21.0,0 -9845449,"Portal 2",purchase,1.0,0 -9845449,"Portal 2",play,14.8,0 -9845449,"Planets Under Attack",purchase,1.0,0 -9845449,"Planets Under Attack",play,14.3,0 -9845449,"BRAINPIPE A Plunge to Unhumanity",purchase,1.0,0 -9845449,"BRAINPIPE A Plunge to Unhumanity",play,5.3,0 -9845449,"Call of Duty Black Ops - OSX",purchase,1.0,0 -9845449,"Call of Duty Black Ops - OSX",play,5.3,0 -9845449,"Half-Life 2",purchase,1.0,0 -9845449,"Half-Life 2",play,0.6,0 -9845449,"Counter-Strike Condition Zero",purchase,1.0,0 -9845449,"Counter-Strike Condition Zero",play,0.5,0 -9845449,"Star Trek Online",purchase,1.0,0 -9845449,"Star Trek Online",play,0.5,0 -9845449,"Serena",purchase,1.0,0 -9845449,"Serena",play,0.2,0 -9845449,"Counter-Strike",purchase,1.0,0 -9845449,"Counter-Strike",play,0.1,0 -9845449,"Day of Defeat Source",purchase,1.0,0 -9845449,"Day of Defeat Source",play,0.1,0 -9845449,"Ricochet",purchase,1.0,0 -9845449,"EVE Online",purchase,1.0,0 -9845449,"Call of Duty Black Ops - Multiplayer OSX",purchase,1.0,0 -9845449,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -9845449,"Counter-Strike Source",purchase,1.0,0 -9845449,"Day of Defeat",purchase,1.0,0 -9845449,"Deathmatch Classic",purchase,1.0,0 -9845449,"Half-Life",purchase,1.0,0 -9845449,"Half-Life 2 Deathmatch",purchase,1.0,0 -9845449,"Half-Life 2 Lost Coast",purchase,1.0,0 -9845449,"Half-Life Blue Shift",purchase,1.0,0 -9845449,"Half-Life Opposing Force",purchase,1.0,0 -9845449,"Half-Life Source",purchase,1.0,0 -9845449,"Half-Life Deathmatch Source",purchase,1.0,0 -9845449,"Team Fortress Classic",purchase,1.0,0 -15503746,"Counter-Strike",purchase,1.0,0 -15503746,"Counter-Strike Condition Zero",purchase,1.0,0 -15503746,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -15503746,"Counter-Strike Source",purchase,1.0,0 -15503746,"Day of Defeat Source",purchase,1.0,0 -15503746,"Half-Life 2 Deathmatch",purchase,1.0,0 -15503746,"Half-Life 2 Lost Coast",purchase,1.0,0 -245587117,"Dota 2",purchase,1.0,0 -245587117,"Dota 2",play,72.0,0 -255029668,"Robocraft",purchase,1.0,0 -255029668,"Robocraft",play,11.6,0 -255029668,"PlanetSide 2",purchase,1.0,0 -255029668,"War Thunder",purchase,1.0,0 -205731112,"Counter-Strike Global Offensive",purchase,1.0,0 -205731112,"Counter-Strike Global Offensive",play,723.0,0 -205731112,"Garry's Mod",purchase,1.0,0 -205731112,"Garry's Mod",play,53.0,0 -205731112,"APB Reloaded",purchase,1.0,0 -205731112,"APB Reloaded",play,3.1,0 -205731112,"Dirty Bomb",purchase,1.0,0 -205731112,"Dirty Bomb",play,0.3,0 -205731112,"Path of Exile",purchase,1.0,0 -205731112,"PlanetSide 2",purchase,1.0,0 -205731112,"Unturned",purchase,1.0,0 -205731112,"War Thunder",purchase,1.0,0 -149529833,"Dota 2",purchase,1.0,0 -149529833,"Dota 2",play,0.5,0 -155061850,"Dota 2",purchase,1.0,0 -155061850,"Dota 2",play,1079.0,0 -135949593,"Magicka Wizard Wars",purchase,1.0,0 -135949593,"Magicka Wizard Wars",play,3.1,0 -135949593,"Commander Conquest of the Americas Gold",purchase,1.0,0 -112962796,"Warframe",purchase,1.0,0 -112962796,"Warframe",play,197.0,0 -112962796,"H1Z1",purchase,1.0,0 -112962796,"H1Z1",play,11.8,0 -112962796,"Magic Duels",purchase,1.0,0 -112962796,"Magic Duels",play,5.8,0 -112962796,"Dota 2",purchase,1.0,0 -112962796,"Dota 2",play,3.7,0 -112962796,"Rise of Incarnates",purchase,1.0,0 -112962796,"Rise of Incarnates",play,1.0,0 -112962796,"H1Z1 Test Server",purchase,1.0,0 -112962796,"RIFT",purchase,1.0,0 -239061674,"Red Crucible Firestorm",purchase,1.0,0 -239061674,"Red Crucible Firestorm",play,0.2,0 -61823081,"XCOM Enemy Unknown",purchase,1.0,0 -61823081,"XCOM Enemy Unknown",play,279.0,0 -61823081,"Aliens vs. Predator",purchase,1.0,0 -61823081,"Aliens vs. Predator",play,4.4,0 -219551734,"Terraria",purchase,1.0,0 -219551734,"Terraria",play,122.0,0 -219551734,"Unturned",purchase,1.0,0 -219551734,"Unturned",play,105.0,0 -219551734,"Counter-Strike Global Offensive",purchase,1.0,0 -219551734,"Counter-Strike Global Offensive",play,61.0,0 -219551734,"Trove",purchase,1.0,0 -219551734,"Trove",play,0.8,0 -219551734,"BLOCKADE 3D",purchase,1.0,0 -219551734,"Destination Sol",purchase,1.0,0 -219551734,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -72164008,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -72164008,"Kane & Lynch 2 Dog Days",play,7.5,0 -212456283,"Euro Truck Simulator 2",purchase,1.0,0 -212456283,"Euro Truck Simulator 2",play,34.0,0 -212456283,"Team Fortress 2",purchase,1.0,0 -212456283,"Team Fortress 2",play,7.6,0 -212456283,"Brick-Force",purchase,1.0,0 -212456283,"Brick-Force",play,0.1,0 -146585181,"Train Simulator",purchase,1.0,0 -146585181,"Train Simulator",play,4.3,0 -45353031,"Borderlands 2",purchase,1.0,0 -45353031,"Borderlands 2",play,87.0,0 -45353031,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -45353031,"Warhammer 40,000 Dawn of War II",play,42.0,0 -45353031,"Fallout 4",purchase,1.0,0 -45353031,"Fallout 4",play,15.1,0 -45353031,"FTL Faster Than Light",purchase,1.0,0 -45353031,"FTL Faster Than Light",play,10.4,0 -45353031,"Portal 2",purchase,1.0,0 -45353031,"Portal 2",play,7.9,0 -45353031,"Team Fortress 2",purchase,1.0,0 -45353031,"Team Fortress 2",play,1.5,0 -45353031,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -45353031,"Deus Ex Game of the Year Edition",purchase,1.0,0 -45353031,"Hitman Absolution",purchase,1.0,0 -45353031,"Hitman Sniper Challenge",purchase,1.0,0 -45353031,"Just Cause",purchase,1.0,0 -45353031,"Just Cause 2",purchase,1.0,0 -45353031,"Life Is Strange",purchase,1.0,0 -18675025,"Counter-Strike Source",purchase,1.0,0 -18675025,"Half-Life 2",purchase,1.0,0 -18675025,"Half-Life 2 Deathmatch",purchase,1.0,0 -18675025,"Half-Life 2 Lost Coast",purchase,1.0,0 -159795622,"Left 4 Dead 2",purchase,1.0,0 -180464589,"Assassin's Creed Brotherhood",purchase,1.0,0 -180464589,"Assassin's Creed Brotherhood",play,71.0,0 -180464589,"Assassin's Creed Revelations",purchase,1.0,0 -180464589,"Assassin's Creed Revelations",play,3.1,0 -171308992,"FINAL FANTASY XIV A Realm Reborn",purchase,1.0,0 -171308992,"FINAL FANTASY XIV A Realm Reborn (PAL version)",purchase,1.0,0 -307186538,"Dota 2",purchase,1.0,0 -307186538,"Dota 2",play,3.1,0 -156946266,"Dota 2",purchase,1.0,0 -156946266,"Dota 2",play,3458.0,0 -156946266,"Counter-Strike Global Offensive",purchase,1.0,0 -156946266,"Counter-Strike Global Offensive",play,12.3,0 -156946266,"Left 4 Dead 2",purchase,1.0,0 -156946266,"Left 4 Dead 2",play,10.5,0 -156946266,"Sniper Elite V2",purchase,1.0,0 -156946266,"Sniper Elite V2",play,3.4,0 -156946266,"Archeblade",purchase,1.0,0 -156946266,"Archeblade",play,1.0,0 -156946266,"Counter-Strike Nexon Zombies",purchase,1.0,0 -156946266,"Counter-Strike Nexon Zombies",play,0.2,0 -49050405,"Sid Meier's Civilization V",purchase,1.0,0 -49050405,"Sid Meier's Civilization V",play,354.0,0 -49050405,"FINAL FANTASY VII",purchase,1.0,0 -49050405,"FINAL FANTASY VII",play,93.0,0 -49050405,"Age of Empires III Complete Collection",purchase,1.0,0 -49050405,"Age of Empires III Complete Collection",play,84.0,0 -49050405,"Dota 2",purchase,1.0,0 -49050405,"Dota 2",play,76.0,0 -49050405,"FINAL FANTASY XIII",purchase,1.0,0 -49050405,"FINAL FANTASY XIII",play,69.0,0 -49050405,"Left 4 Dead 2",purchase,1.0,0 -49050405,"Left 4 Dead 2",play,46.0,0 -49050405,"Grand Theft Auto IV",purchase,1.0,0 -49050405,"Grand Theft Auto IV",play,44.0,0 -49050405,"FINAL FANTASY XIII-2",purchase,1.0,0 -49050405,"FINAL FANTASY XIII-2",play,27.0,0 -49050405,"Age of Empires II HD Edition",purchase,1.0,0 -49050405,"Age of Empires II HD Edition",play,25.0,0 -49050405,"Undertale",purchase,1.0,0 -49050405,"Undertale",play,21.0,0 -49050405,"Torchlight II",purchase,1.0,0 -49050405,"Torchlight II",play,17.9,0 -49050405,"FINAL FANTASY VIII",purchase,1.0,0 -49050405,"FINAL FANTASY VIII",play,13.3,0 -49050405,"Deadpool",purchase,1.0,0 -49050405,"Deadpool",play,11.4,0 -49050405,"Team Fortress 2",purchase,1.0,0 -49050405,"Team Fortress 2",play,11.0,0 -49050405,"Sleeping Dogs",purchase,1.0,0 -49050405,"Sleeping Dogs",play,10.0,0 -49050405,"The Elder Scrolls V Skyrim",purchase,1.0,0 -49050405,"The Elder Scrolls V Skyrim",play,9.4,0 -49050405,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -49050405,"METAL GEAR RISING REVENGEANCE",play,9.2,0 -49050405,"The Raven - Legacy of a Master Thief",purchase,1.0,0 -49050405,"The Raven - Legacy of a Master Thief",play,9.0,0 -49050405,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -49050405,"The Incredible Adventures of Van Helsing",play,7.0,0 -49050405,"Grim Fandango Remastered",purchase,1.0,0 -49050405,"Grim Fandango Remastered",play,6.7,0 -49050405,"Democracy 3",purchase,1.0,0 -49050405,"Democracy 3",play,6.6,0 -49050405,"Garry's Mod",purchase,1.0,0 -49050405,"Garry's Mod",play,5.8,0 -49050405,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -49050405,"The Witcher 2 Assassins of Kings Enhanced Edition",play,5.2,0 -49050405,"The Stanley Parable",purchase,1.0,0 -49050405,"The Stanley Parable",play,4.7,0 -49050405,"Papers, Please",purchase,1.0,0 -49050405,"Papers, Please",play,4.6,0 -49050405,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -49050405,"Sid Meier's Civilization Beyond Earth",play,3.8,0 -49050405,"Alice Madness Returns",purchase,1.0,0 -49050405,"Alice Madness Returns",play,3.8,0 -49050405,"Crysis 2 Maximum Edition",purchase,1.0,0 -49050405,"Crysis 2 Maximum Edition",play,3.3,0 -49050405,"Counter-Strike Source",purchase,1.0,0 -49050405,"Counter-Strike Source",play,2.3,0 -49050405,"The Testament of Sherlock Holmes",purchase,1.0,0 -49050405,"The Testament of Sherlock Holmes",play,1.9,0 -49050405,"DARK SOULS II",purchase,1.0,0 -49050405,"DARK SOULS II",play,1.9,0 -49050405,"Scribblenauts Unlimited",purchase,1.0,0 -49050405,"Scribblenauts Unlimited",play,1.8,0 -49050405,"The Beginner's Guide",purchase,1.0,0 -49050405,"The Beginner's Guide",play,1.8,0 -49050405,"Gauntlet ",purchase,1.0,0 -49050405,"Gauntlet ",play,1.7,0 -49050405,"Shattered Horizon",purchase,1.0,0 -49050405,"Shattered Horizon",play,1.4,0 -49050405,"PAYDAY 2",purchase,1.0,0 -49050405,"PAYDAY 2",play,1.2,0 -49050405,"Portal",purchase,1.0,0 -49050405,"Portal",play,1.2,0 -49050405,"Half-Life 2",purchase,1.0,0 -49050405,"Half-Life 2",play,0.9,0 -49050405,"Counter-Strike Global Offensive",purchase,1.0,0 -49050405,"Counter-Strike Global Offensive",play,0.8,0 -49050405,"The Ship",purchase,1.0,0 -49050405,"The Ship",play,0.7,0 -49050405,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -49050405,"Grand Theft Auto Episodes from Liberty City",play,0.4,0 -49050405,"AdVenture Capitalist",purchase,1.0,0 -49050405,"AdVenture Capitalist",play,0.1,0 -49050405,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -49050405,"Batman Arkham City GOTY",purchase,1.0,0 -49050405,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -49050405,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -49050405,"Dead Space",purchase,1.0,0 -49050405,"Democracy 3 Clones and Drones",purchase,1.0,0 -49050405,"Democracy 3 Extremism",purchase,1.0,0 -49050405,"Democracy 3 Extremism Linux",purchase,1.0,0 -49050405,"Democracy 3 Extremism Mac",purchase,1.0,0 -49050405,"Democracy 3 Social Engineering",purchase,1.0,0 -49050405,"Democracy 3 Social Engineering Linux",purchase,1.0,0 -49050405,"Democracy 3 Social Engineering Mac",purchase,1.0,0 -49050405,"F.E.A.R.",purchase,1.0,0 -49050405,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -49050405,"F.E.A.R. 3",purchase,1.0,0 -49050405,"F.E.A.R. Extraction Point",purchase,1.0,0 -49050405,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -49050405,"Grand Theft Auto",purchase,1.0,0 -49050405,"Grand Theft Auto 2",purchase,1.0,0 -49050405,"Grand Theft Auto San Andreas",purchase,1.0,0 -49050405,"Grand Theft Auto San Andreas",purchase,1.0,0 -49050405,"Grand Theft Auto Vice City",purchase,1.0,0 -49050405,"Grand Theft Auto Vice City",purchase,1.0,0 -49050405,"Grand Theft Auto III",purchase,1.0,0 -49050405,"Grand Theft Auto III",purchase,1.0,0 -49050405,"Guardians of Middle-earth",purchase,1.0,0 -49050405,"Half-Life 2 Deathmatch",purchase,1.0,0 -49050405,"Half-Life 2 Episode One",purchase,1.0,0 -49050405,"Half-Life 2 Episode Two",purchase,1.0,0 -49050405,"Half-Life 2 Lost Coast",purchase,1.0,0 -49050405,"Half-Life Deathmatch Source",purchase,1.0,0 -49050405,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -49050405,"Medal of Honor(TM) Single Player",purchase,1.0,0 -49050405,"Medal of Honor Pre-Order",purchase,1.0,0 -49050405,"Metro 2033",purchase,1.0,0 -49050405,"Mirror's Edge",purchase,1.0,0 -49050405,"Mortal Kombat Kollection",purchase,1.0,0 -49050405,"Sid Meier's Ace Patrol",purchase,1.0,0 -49050405,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -49050405,"Sid Meier's Civilization III Complete",purchase,1.0,0 -49050405,"Sid Meier's Civilization IV",purchase,1.0,0 -49050405,"Sid Meier's Civilization IV",purchase,1.0,0 -49050405,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -49050405,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -49050405,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -49050405,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -49050405,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -49050405,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -49050405,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -49050405,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -49050405,"Sid Meier's Pirates!",purchase,1.0,0 -49050405,"Sid Meier's Railroads!",purchase,1.0,0 -49050405,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -49050405,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -49050405,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -49050405,"The Lord of the Rings War in the North",purchase,1.0,0 -49050405,"The Ship Single Player",purchase,1.0,0 -49050405,"The Ship Tutorial",purchase,1.0,0 -49050405,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -273437556,"Run and Fire",purchase,1.0,0 -113329678,"Team Fortress 2",purchase,1.0,0 -113329678,"Team Fortress 2",play,1.2,0 -251563912,"Dota 2",purchase,1.0,0 -251563912,"Dota 2",play,19.9,0 -63294797,"Depression Quest",purchase,1.0,0 -63294797,"Moonbase Alpha",purchase,1.0,0 -63294797,"Neverwinter",purchase,1.0,0 -118427901,"Team Fortress 2",purchase,1.0,0 -118427901,"Team Fortress 2",play,85.0,0 -302857051,"Robocraft",purchase,1.0,0 -302857051,"Robocraft",play,0.1,0 -302857051,"GASP",purchase,1.0,0 -15546726,"Team Fortress 2",purchase,1.0,0 -15546726,"Team Fortress 2",play,0.3,0 -128065805,"Sid Meier's Civilization V",purchase,1.0,0 -128065805,"Sid Meier's Civilization V",play,5002.0,0 -128065805,"Age of Empires II HD Edition",purchase,1.0,0 -128065805,"Age of Empires II HD Edition",play,364.0,0 -186820887,"Unturned",purchase,1.0,0 -186820887,"Unturned",play,0.8,0 -186820887,"Robocraft",purchase,1.0,0 -160887309,"Unturned",purchase,1.0,0 -160887309,"Unturned",play,40.0,0 -160887309,"Team Fortress 2",purchase,1.0,0 -160887309,"Team Fortress 2",play,27.0,0 -160887309,"Don't Starve",purchase,1.0,0 -160887309,"Don't Starve",play,18.4,0 -160887309,"Might & Magic Duel of Champions",purchase,1.0,0 -160887309,"Might & Magic Duel of Champions",play,3.8,0 -160887309,"Warface",purchase,1.0,0 -160887309,"Warface",play,2.9,0 -160887309,"Robocraft",purchase,1.0,0 -160887309,"Robocraft",play,2.4,0 -160887309,"Tribes Ascend",purchase,1.0,0 -160887309,"Tribes Ascend",play,1.9,0 -160887309,"Dota 2",purchase,1.0,0 -160887309,"Dota 2",play,0.9,0 -160887309,"Magicka Wizard Wars",purchase,1.0,0 -160887309,"Magicka Wizard Wars",play,0.7,0 -160887309,"Sakura Clicker",purchase,1.0,0 -160887309,"Sakura Clicker",play,0.2,0 -160887309,"Alien Swarm",purchase,1.0,0 -160887309,"Alien Swarm",play,0.1,0 -160887309,"AdVenture Capitalist",purchase,1.0,0 -160887309,"Clicker Heroes",purchase,1.0,0 -160887309,"Don't Starve Together Beta",purchase,1.0,0 -160887309,"No More Room in Hell",purchase,1.0,0 -160887309,"PlanetSide 2",purchase,1.0,0 -160887309,"War Inc. Battlezone",purchase,1.0,0 -303122483,"Dota 2",purchase,1.0,0 -303122483,"Dota 2",play,3.2,0 -303122483,"Team Fortress 2",purchase,1.0,0 -303122483,"Team Fortress 2",play,0.8,0 -114637687,"Medieval II Total War Kingdoms",purchase,1.0,0 -114637687,"Medieval II Total War Kingdoms",play,230.0,0 -114637687,"Arma 2 Operation Arrowhead",purchase,1.0,0 -114637687,"Arma 2 Operation Arrowhead",play,22.0,0 -114637687,"Team Fortress 2",purchase,1.0,0 -114637687,"Team Fortress 2",play,18.2,0 -114637687,"Medieval II Total War",purchase,1.0,0 -114637687,"Medieval II Total War",play,17.5,0 -114637687,"Arma 2",purchase,1.0,0 -114637687,"Arma 2",play,4.6,0 -114637687,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -256991827,"Dota 2",purchase,1.0,0 -256991827,"Dota 2",play,0.3,0 -256991827,"GunZ 2 The Second Duel",purchase,1.0,0 -109328586,"The Elder Scrolls V Skyrim",purchase,1.0,0 -109328586,"The Elder Scrolls V Skyrim",play,699.0,0 -77954105,"Sid Meier's Civilization V",purchase,1.0,0 -77954105,"Sid Meier's Civilization V",play,0.2,0 -35192186,"Counter-Strike",purchase,1.0,0 -35192186,"Day of Defeat",purchase,1.0,0 -35192186,"Deathmatch Classic",purchase,1.0,0 -35192186,"Half-Life",purchase,1.0,0 -35192186,"Half-Life Blue Shift",purchase,1.0,0 -35192186,"Half-Life Opposing Force",purchase,1.0,0 -35192186,"Ricochet",purchase,1.0,0 -35192186,"Team Fortress Classic",purchase,1.0,0 -169006380,"Dota 2",purchase,1.0,0 -169006380,"Dota 2",play,123.0,0 -169006380,"Warframe",purchase,1.0,0 -169006380,"Warframe",play,15.2,0 -169006380,"AirMech",purchase,1.0,0 -169006380,"AirMech",play,2.9,0 -169006380,"Divine Souls",purchase,1.0,0 -61086207,"Wargame European Escalation",purchase,1.0,0 -61086207,"Wargame European Escalation",play,206.0,0 -61086207,"Empire Total War",purchase,1.0,0 -61086207,"Empire Total War",play,82.0,0 -61086207,"Call of Duty Modern Warfare 2",purchase,1.0,0 -61086207,"Call of Duty Modern Warfare 2",play,35.0,0 -61086207,"UFO Extraterrestrials Gold",purchase,1.0,0 -61086207,"UFO Extraterrestrials Gold",play,33.0,0 -61086207,"XCOM Enemy Unknown",purchase,1.0,0 -61086207,"XCOM Enemy Unknown",play,33.0,0 -61086207,"Battlestations Pacific",purchase,1.0,0 -61086207,"Battlestations Pacific",play,16.9,0 -61086207,"Halo Spartan Assault",purchase,1.0,0 -61086207,"Halo Spartan Assault",play,2.5,0 -61086207,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -61086207,"Call of Duty Modern Warfare 2 - Multiplayer",play,1.3,0 -61086207,"Tom Clancy's EndWar",purchase,1.0,0 -61086207,"Tom Clancy's EndWar",play,1.2,0 -61086207,"HAWKEN",purchase,1.0,0 -61086207,"HAWKEN",play,1.0,0 -61086207,"Lost Planet 2",purchase,1.0,0 -61086207,"Lost Planet 2",play,0.6,0 -61086207,"Wargame AirLand Battle",purchase,1.0,0 -61086207,"Wargame AirLand Battle",play,0.5,0 -61086207,"Battle Nations",purchase,1.0,0 -61086207,"Battlestations Midway",purchase,1.0,0 -61086207,"Wargame Red Dragon",purchase,1.0,0 -10856494,"Counter-Strike Source",purchase,1.0,0 -10856494,"Counter-Strike Source",play,1423.0,0 -10856494,"Counter-Strike Global Offensive",purchase,1.0,0 -10856494,"Counter-Strike Global Offensive",play,722.0,0 -10856494,"Portal 2",purchase,1.0,0 -10856494,"Portal 2",play,470.0,0 -10856494,"Half-Life 2 Deathmatch",purchase,1.0,0 -10856494,"Half-Life 2 Deathmatch",play,7.3,0 -10856494,"Portal Stories Mel",purchase,1.0,0 -10856494,"Portal Stories Mel",play,0.4,0 -10856494,"Half-Life 2",purchase,1.0,0 -10856494,"Half-Life 2 Lost Coast",purchase,1.0,0 -124661390,"Team Fortress 2",purchase,1.0,0 -124661390,"Team Fortress 2",play,1246.0,0 -164722578,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -164722578,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,7.1,0 -256420345,"Dota 2",purchase,1.0,0 -256420345,"Dota 2",play,1.9,0 -256420345,"SMITE",purchase,1.0,0 -102454403,"The Elder Scrolls V Skyrim",purchase,1.0,0 -102454403,"The Elder Scrolls V Skyrim",play,221.0,0 -102454403,"Fallout New Vegas",purchase,1.0,0 -102454403,"Fallout New Vegas",play,61.0,0 -102454403,"Wargame European Escalation",purchase,1.0,0 -102454403,"Wargame European Escalation",play,12.6,0 -102454403,"Left 4 Dead 2",purchase,1.0,0 -102454403,"Left 4 Dead 2",play,10.1,0 -102454403,"Company of Heroes 2",purchase,1.0,0 -102454403,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -102454403,"Fallout New Vegas Dead Money",purchase,1.0,0 -102454403,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -102454403,"PAYDAY 2",purchase,1.0,0 -102454403,"Sid Meier's Civilization V",purchase,1.0,0 -102454403,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -102454403,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -102454403,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -56789999,"Garry's Mod",purchase,1.0,0 -56789999,"Garry's Mod",play,454.0,0 -56789999,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -56789999,"The Elder Scrolls IV Oblivion ",play,35.0,0 -56789999,"Counter-Strike Source",purchase,1.0,0 -56789999,"Counter-Strike Source",play,23.0,0 -56789999,"Terraria",purchase,1.0,0 -56789999,"Terraria",play,13.7,0 -56789999,"Indigo Prophecy",purchase,1.0,0 -56789999,"Indigo Prophecy",play,10.1,0 -56789999,"Amnesia The Dark Descent",purchase,1.0,0 -56789999,"Amnesia The Dark Descent",play,8.6,0 -56789999,"Portal",purchase,1.0,0 -56789999,"Portal",play,3.5,0 -56789999,"DC Universe Online",purchase,1.0,0 -56789999,"DC Universe Online",play,3.2,0 -56789999,"Magicka",purchase,1.0,0 -56789999,"Magicka",play,2.9,0 -56789999,"Alien Swarm",purchase,1.0,0 -56789999,"Alien Swarm",play,2.3,0 -56789999,"Team Fortress 2",purchase,1.0,0 -56789999,"Team Fortress 2",play,0.9,0 -126583867,"Football Manager 2013",purchase,1.0,0 -126583867,"Football Manager 2013",play,295.0,0 -126583867,"Football Manager 2014",purchase,1.0,0 -126583867,"Football Manager 2014",play,5.2,0 -57194796,"Football Manager 2010",purchase,1.0,0 -57194796,"Football Manager 2010",play,12.5,0 -110160904,"Sid Meier's Civilization V",purchase,1.0,0 -110160904,"Sid Meier's Civilization V",play,239.0,0 -110160904,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -110160904,"Deus Ex Human Revolution - Director's Cut",play,73.0,0 -110160904,"Napoleon Total War",purchase,1.0,0 -110160904,"Napoleon Total War",play,1.7,0 -110160904,"Company of Heroes 2",purchase,1.0,0 -110160904,"Company of Heroes 2",play,1.4,0 -110160904,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -215485357,"Dota 2",purchase,1.0,0 -215485357,"Dota 2",play,9.1,0 -243778123,"LEGO Worlds",purchase,1.0,0 -199463289,"Dota 2",purchase,1.0,0 -199463289,"Dota 2",play,102.0,0 -26822907,"Counter-Strike",purchase,1.0,0 -26822907,"Counter-Strike",play,6.7,0 -26822907,"Counter-Strike Condition Zero",purchase,1.0,0 -26822907,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -26822907,"Day of Defeat",purchase,1.0,0 -26822907,"Deathmatch Classic",purchase,1.0,0 -26822907,"Ricochet",purchase,1.0,0 -256276624,"Dota 2",purchase,1.0,0 -256276624,"Dota 2",play,1.0,0 -293705270,"Space Engineers",purchase,1.0,0 -293705270,"Space Engineers",play,1.0,0 -110248234,"Counter-Strike Source",purchase,1.0,0 -110248234,"Counter-Strike Source",play,191.0,0 -110248234,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -110248234,"Call of Duty Modern Warfare 3 - Multiplayer",play,50.0,0 -110248234,"Call of Duty Modern Warfare 3",purchase,1.0,0 -110248234,"Call of Duty Modern Warfare 3",play,17.0,0 -110248234,"Half-Life 2 Deathmatch",purchase,1.0,0 -110248234,"Half-Life 2 Deathmatch",play,0.6,0 -110248234,"Day of Defeat Source",purchase,1.0,0 -110248234,"Half-Life 2 Lost Coast",purchase,1.0,0 -208753102,"Dota 2",purchase,1.0,0 -208753102,"Dota 2",play,0.1,0 -120308479,"Dota 2",purchase,1.0,0 -120308479,"Dota 2",play,1115.0,0 -120308479,"Left 4 Dead 2",purchase,1.0,0 -96024806,"Call of Duty Modern Warfare 3",purchase,1.0,0 -96024806,"Call of Duty Modern Warfare 3",play,93.0,0 -96024806,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -96024806,"Call of Duty Modern Warfare 3 - Multiplayer",play,35.0,0 -146152475,"Dota 2",purchase,1.0,0 -146152475,"Dota 2",play,13.8,0 -60439399,"Grand Theft Auto V",purchase,1.0,0 -60439399,"Grand Theft Auto V",play,43.0,0 -60439399,"Team Fortress 2",purchase,1.0,0 -60439399,"Team Fortress 2",play,11.1,0 -60439399,"Unturned",purchase,1.0,0 -60439399,"Unturned",play,3.9,0 -60439399,"Dota 2",purchase,1.0,0 -60439399,"Dota 2",play,1.8,0 -92651253,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -92651253,"Call of Duty Modern Warfare 3 - Multiplayer",play,527.0,0 -92651253,"Call of Duty Modern Warfare 3",purchase,1.0,0 -92651253,"Call of Duty Modern Warfare 3",play,289.0,0 -182528494,"Age of Empires II HD Edition",purchase,1.0,0 -182528494,"Age of Empires II HD Edition",play,15.5,0 -124851136,"Jack Keane",purchase,1.0,0 -124851136,"Jack Keane",play,2.2,0 -73358928,"Sid Meier's Civilization V",purchase,1.0,0 -73358928,"Sid Meier's Civilization V",play,1.5,0 -284444506,"Dota 2",purchase,1.0,0 -284444506,"Dota 2",play,16.7,0 -7418489,"Counter-Strike Source",purchase,1.0,0 -7418489,"Counter-Strike Source",play,213.0,0 -7418489,"Counter-Strike",purchase,1.0,0 -7418489,"Counter-Strike",play,111.0,0 -7418489,"Day of Defeat",purchase,1.0,0 -7418489,"Day of Defeat",play,4.3,0 -7418489,"Half-Life 2 Deathmatch",purchase,1.0,0 -7418489,"Half-Life 2 Deathmatch",play,1.8,0 -7418489,"Half-Life 2",purchase,1.0,0 -7418489,"Half-Life 2",play,0.3,0 -7418489,"Deathmatch Classic",purchase,1.0,0 -7418489,"Half-Life",purchase,1.0,0 -7418489,"Half-Life 2 Lost Coast",purchase,1.0,0 -7418489,"Half-Life Blue Shift",purchase,1.0,0 -7418489,"Half-Life Opposing Force",purchase,1.0,0 -7418489,"Ricochet",purchase,1.0,0 -7418489,"Team Fortress Classic",purchase,1.0,0 -11414203,"Half-Life 2",purchase,1.0,0 -11414203,"Half-Life 2",play,0.7,0 -11414203,"Half-Life 2 Lost Coast",purchase,1.0,0 -11414203,"Half-Life 2 Lost Coast",play,0.2,0 -11414203,"Counter-Strike Source",purchase,1.0,0 -11414203,"Counter-Strike Source",play,0.1,0 -11414203,"Half-Life 2 Deathmatch",purchase,1.0,0 -72267852,"DiRT 2",purchase,1.0,0 -72267852,"DiRT 2",play,0.8,0 -179457413,"Dota 2",purchase,1.0,0 -179457413,"Dota 2",play,0.2,0 -229822547,"Dota 2",purchase,1.0,0 -229822547,"Dota 2",play,303.0,0 -229822547,"Unturned",purchase,1.0,0 -207619328,"Counter-Strike Global Offensive",purchase,1.0,0 -207619328,"Counter-Strike Global Offensive",play,153.0,0 -33705095,"Half-Life 2 Deathmatch",purchase,1.0,0 -33705095,"Half-Life 2 Lost Coast",purchase,1.0,0 -304358859,"ARK Survival Evolved",purchase,1.0,0 -304358859,"ARK Survival Evolved",play,14.5,0 -21861124,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -21861124,"Call of Duty Modern Warfare 2 - Multiplayer",play,968.0,0 -21861124,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -21861124,"Call of Duty Modern Warfare 3 - Multiplayer",play,262.0,0 -21861124,"Counter-Strike Source",purchase,1.0,0 -21861124,"Counter-Strike Source",play,140.0,0 -21861124,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -21861124,"Call of Duty Black Ops - Multiplayer",play,116.0,0 -21861124,"Garry's Mod",purchase,1.0,0 -21861124,"Garry's Mod",play,46.0,0 -21861124,"Call of Duty Black Ops",purchase,1.0,0 -21861124,"Call of Duty Black Ops",play,21.0,0 -21861124,"Call of Duty Modern Warfare 2",purchase,1.0,0 -21861124,"Call of Duty Modern Warfare 2",play,20.0,0 -21861124,"Team Fortress 2",purchase,1.0,0 -21861124,"Team Fortress 2",play,9.6,0 -21861124,"Call of Duty Modern Warfare 3",purchase,1.0,0 -21861124,"Call of Duty Modern Warfare 3",play,4.8,0 -21861124,"Counter-Strike",purchase,1.0,0 -21861124,"Counter-Strike",play,0.5,0 -21861124,"Call of Duty Modern Warfare 2 Stimulus Package",purchase,1.0,0 -21861124,"Counter-Strike Condition Zero",purchase,1.0,0 -21861124,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -21861124,"Day of Defeat",purchase,1.0,0 -21861124,"Deathmatch Classic",purchase,1.0,0 -21861124,"Ricochet",purchase,1.0,0 -221434031,"Dota 2",purchase,1.0,0 -221434031,"Dota 2",play,6.2,0 -114931125,"Football Manager 2013",purchase,1.0,0 -114931125,"Football Manager 2013",play,141.0,0 -154230933,"Rust",purchase,1.0,0 -154230933,"Rust",play,70.0,0 -154230933,"PAYDAY 2",purchase,1.0,0 -154230933,"PAYDAY 2",play,45.0,0 -154230933,"Left 4 Dead 2",purchase,1.0,0 -154230933,"Left 4 Dead 2",play,28.0,0 -154230933,"Interstellar Marines",purchase,1.0,0 -154230933,"Interstellar Marines",play,12.1,0 -154230933,"Team Fortress 2",purchase,1.0,0 -154230933,"Team Fortress 2",play,9.9,0 -154230933,"Assassin's Creed",purchase,1.0,0 -154230933,"Assassin's Creed",play,9.3,0 -154230933,"Portal",purchase,1.0,0 -154230933,"Portal",play,5.9,0 -154230933,"The Bridge",purchase,1.0,0 -154230933,"The Bridge",play,4.5,0 -154230933,"BioShock",purchase,1.0,0 -154230933,"BioShock",play,4.4,0 -154230933,"DayZ",purchase,1.0,0 -154230933,"DayZ",play,4.2,0 -154230933,"Counter-Strike Global Offensive",purchase,1.0,0 -154230933,"Counter-Strike Global Offensive",play,3.7,0 -154230933,"Insurgency",purchase,1.0,0 -154230933,"Insurgency",play,2.9,0 -154230933,"Batman Arkham Origins",purchase,1.0,0 -154230933,"Batman Arkham Origins",play,2.1,0 -154230933,"Stranded Deep",purchase,1.0,0 -154230933,"Stranded Deep",play,2.1,0 -154230933,"Depth",purchase,1.0,0 -154230933,"Depth",play,2.0,0 -154230933,"Primal Carnage",purchase,1.0,0 -154230933,"Primal Carnage",play,1.9,0 -154230933,"Garry's Mod",purchase,1.0,0 -154230933,"Garry's Mod",play,1.9,0 -154230933,"Slender The Arrival",purchase,1.0,0 -154230933,"Slender The Arrival",play,1.5,0 -154230933,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -154230933,"Tom Clancy's Splinter Cell Blacklist",play,1.3,0 -154230933,"Call of Duty World at War",purchase,1.0,0 -154230933,"Call of Duty World at War",play,1.0,0 -154230933,"Portal 2",purchase,1.0,0 -154230933,"Portal 2",play,0.9,0 -154230933,"Dead Island",purchase,1.0,0 -154230933,"Dead Island",play,0.6,0 -154230933,"RollerCoaster Tycoon Deluxe",purchase,1.0,0 -154230933,"Counter-Strike",purchase,1.0,0 -154230933,"Epigenesis",purchase,1.0,0 -154230933,"Left 4 Dead",purchase,1.0,0 -154230933,"Tom Clancy's Splinter Cell",purchase,1.0,0 -154230933,"Ricochet",purchase,1.0,0 -154230933,"Tomb Raider Legend",purchase,1.0,0 -154230933,"Team Fortress Classic",purchase,1.0,0 -154230933,"BioShock Infinite",purchase,1.0,0 -154230933,"BioShock 2",purchase,1.0,0 -154230933,"A-Train 8",purchase,1.0,0 -154230933,"Alan Wake",purchase,1.0,0 -154230933,"Alan Wake's American Nightmare",purchase,1.0,0 -154230933,"Alien Shooter 2 Reloaded",purchase,1.0,0 -154230933,"Aliens vs. Predator",purchase,1.0,0 -154230933,"Assassin's Creed III",purchase,1.0,0 -154230933,"Assassin's Creed Brotherhood",purchase,1.0,0 -154230933,"Assassin's Creed II",purchase,1.0,0 -154230933,"Assassin's Creed Revelations",purchase,1.0,0 -154230933,"Bang Bang Racing",purchase,1.0,0 -154230933,"Bardbarian",purchase,1.0,0 -154230933,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -154230933,"Batman Arkham Origins - Initiation",purchase,1.0,0 -154230933,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -154230933,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -154230933,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -154230933,"BeatBlasters III",purchase,1.0,0 -154230933,"BioShock Infinite - Season Pass",purchase,1.0,0 -154230933,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -154230933,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -154230933,"Borderlands",purchase,1.0,0 -154230933,"Borderlands 2",purchase,1.0,0 -154230933,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -154230933,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -154230933,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -154230933,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -154230933,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -154230933,"Borderlands The Pre-Sequel",purchase,1.0,0 -154230933,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -154230933,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -154230933,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -154230933,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -154230933,"Company of Heroes",purchase,1.0,0 -154230933,"Company of Heroes (New Steam Version)",purchase,1.0,0 -154230933,"Counter-Strike Condition Zero",purchase,1.0,0 -154230933,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -154230933,"Counter-Strike Source",purchase,1.0,0 -154230933,"Cry of Fear",purchase,1.0,0 -154230933,"Darksiders",purchase,1.0,0 -154230933,"Darksiders II",purchase,1.0,0 -154230933,"Darksiders II Deathinitive Edition",purchase,1.0,0 -154230933,"Darksiders II Soundtrack",purchase,1.0,0 -154230933,"Darksiders Soundtrack",purchase,1.0,0 -154230933,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -154230933,"Day of Defeat",purchase,1.0,0 -154230933,"Day of Defeat Source",purchase,1.0,0 -154230933,"Dead Island Epidemic",purchase,1.0,0 -154230933,"Dead Island Riptide",purchase,1.0,0 -154230933,"Dead Space",purchase,1.0,0 -154230933,"Dead Space 2",purchase,1.0,0 -154230933,"Deathmatch Classic",purchase,1.0,0 -154230933,"Dishonored",purchase,1.0,0 -154230933,"Don't Starve",purchase,1.0,0 -154230933,"Don't Starve Reign of Giants",purchase,1.0,0 -154230933,"Don't Starve Together Beta",purchase,1.0,0 -154230933,"Escape Dead Island",purchase,1.0,0 -154230933,"F.E.A.R.",purchase,1.0,0 -154230933,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -154230933,"F.E.A.R. 3",purchase,1.0,0 -154230933,"F.E.A.R. Extraction Point",purchase,1.0,0 -154230933,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -154230933,"Fallout",purchase,1.0,0 -154230933,"Fallout 2",purchase,1.0,0 -154230933,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -154230933,"Fallout New Vegas",purchase,1.0,0 -154230933,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -154230933,"Fallout New Vegas Dead Money",purchase,1.0,0 -154230933,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -154230933,"Fallout Tactics",purchase,1.0,0 -154230933,"Far Cry",purchase,1.0,0 -154230933,"Far Cry 3",purchase,1.0,0 -154230933,"Far Cry 3 Blood Dragon",purchase,1.0,0 -154230933,"Far Cry 2",purchase,1.0,0 -154230933,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -154230933,"Five Nights at Freddy's",purchase,1.0,0 -154230933,"Five Nights at Freddy's 2",purchase,1.0,0 -154230933,"Five Nights at Freddy's 3",purchase,1.0,0 -154230933,"Five Nights at Freddy's 4",purchase,1.0,0 -154230933,"Gumboy Tournament",purchase,1.0,0 -154230933,"Gun Metal",purchase,1.0,0 -154230933,"Guns of Icarus Online",purchase,1.0,0 -154230933,"Half-Life",purchase,1.0,0 -154230933,"Half-Life 2",purchase,1.0,0 -154230933,"Half-Life 2 Deathmatch",purchase,1.0,0 -154230933,"Half-Life 2 Episode One",purchase,1.0,0 -154230933,"Half-Life 2 Episode Two",purchase,1.0,0 -154230933,"Half-Life 2 Lost Coast",purchase,1.0,0 -154230933,"Half-Life Blue Shift",purchase,1.0,0 -154230933,"Half-Life Opposing Force",purchase,1.0,0 -154230933,"Half-Life Source",purchase,1.0,0 -154230933,"Half-Life Deathmatch Source",purchase,1.0,0 -154230933,"Hitman 2 Silent Assassin",purchase,1.0,0 -154230933,"Hitman Absolution",purchase,1.0,0 -154230933,"Hitman Blood Money",purchase,1.0,0 -154230933,"Hitman Codename 47",purchase,1.0,0 -154230933,"Hitman Contracts",purchase,1.0,0 -154230933,"Hitman Sniper Challenge",purchase,1.0,0 -154230933,"Jagged Alliance - Back in Action",purchase,1.0,0 -154230933,"Jagged Alliance Crossfire",purchase,1.0,0 -154230933,"Just Cause",purchase,1.0,0 -154230933,"Just Cause 2",purchase,1.0,0 -154230933,"Lara Croft and the Guardian of Light",purchase,1.0,0 -154230933,"Last Dream",purchase,1.0,0 -154230933,"Lost Planet 2",purchase,1.0,0 -154230933,"Lost Planet 3",purchase,1.0,0 -154230933,"Lost Planet Extreme Condition",purchase,1.0,0 -154230933,"Mass Effect",purchase,1.0,0 -154230933,"Mass Effect 2",purchase,1.0,0 -154230933,"Max Payne",purchase,1.0,0 -154230933,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -154230933,"Max Payne 3",purchase,1.0,0 -154230933,"Max Payne 3 Season Pass",purchase,1.0,0 -154230933,"Metro 2033",purchase,1.0,0 -154230933,"Metro 2033 Redux",purchase,1.0,0 -154230933,"Metro Last Light Redux",purchase,1.0,0 -154230933,"ORION Prelude",purchase,1.0,0 -154230933,"Outlast",purchase,1.0,0 -154230933,"Outlast Whistleblower DLC",purchase,1.0,0 -154230933,"Prototype",purchase,1.0,0 -154230933,"PROTOTYPE 2",purchase,1.0,0 -154230933,"Prototype 2 RADNET Access Pack",purchase,1.0,0 -154230933,"Psychonauts",purchase,1.0,0 -154230933,"Psychonauts Demo",purchase,1.0,0 -154230933,"Puzzle Kingdoms",purchase,1.0,0 -154230933,"RAGE",purchase,1.0,0 -154230933,"Red Faction Armageddon",purchase,1.0,0 -154230933,"RollerCoaster Tycoon 2 Triple Thrill Pack",purchase,1.0,0 -154230933,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -154230933,"Saints Row 2",purchase,1.0,0 -154230933,"Saints Row Gat out of Hell",purchase,1.0,0 -154230933,"Saints Row The Third",purchase,1.0,0 -154230933,"Saints Row IV",purchase,1.0,0 -154230933,"Sang-Froid - Tales of Werewolves",purchase,1.0,0 -154230933,"Serious Sam 2",purchase,1.0,0 -154230933,"Serious Sam 3 BFE",purchase,1.0,0 -154230933,"Serious Sam The Random Encounter",purchase,1.0,0 -154230933,"Serious Sam Classic The First Encounter",purchase,1.0,0 -154230933,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -154230933,"Serious Sam Classics Revolution",purchase,1.0,0 -154230933,"Serious Sam Double D XXL",purchase,1.0,0 -154230933,"Serious Sam HD The First Encounter",purchase,1.0,0 -154230933,"Space Pirates and Zombies",purchase,1.0,0 -154230933,"State of Decay",purchase,1.0,0 -154230933,"State of Decay - Breakdown",purchase,1.0,0 -154230933,"State of Decay - Lifeline",purchase,1.0,0 -154230933,"The Evil Within",purchase,1.0,0 -154230933,"The Forest",purchase,1.0,0 -154230933,"The Walking Dead",purchase,1.0,0 -154230933,"The Walking Dead Season Two",purchase,1.0,0 -154230933,"Thief",purchase,1.0,0 -154230933,"Thief - Ghost",purchase,1.0,0 -154230933,"Thief - Opportunist",purchase,1.0,0 -154230933,"Thief - Predator",purchase,1.0,0 -154230933,"Thief - The Bank Heist",purchase,1.0,0 -154230933,"Thief 2",purchase,1.0,0 -154230933,"Thief Deadly Shadows",purchase,1.0,0 -154230933,"Thief Gold",purchase,1.0,0 -154230933,"This War of Mine",purchase,1.0,0 -154230933,"Tomb Raider",purchase,1.0,0 -154230933,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -154230933,"Tomb Raider Anniversary",purchase,1.0,0 -154230933,"Tomb Raider Chronicles",purchase,1.0,0 -154230933,"Tomb Raider The Last Revelation",purchase,1.0,0 -154230933,"Tomb Raider Underworld",purchase,1.0,0 -154230933,"Tomb Raider I",purchase,1.0,0 -154230933,"Tomb Raider II",purchase,1.0,0 -154230933,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -154230933,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -154230933,"Tom Clancy's Rainbow Six 3 Athena Sword",purchase,1.0,0 -154230933,"Tom Clancy's Rainbow Six 3 Gold Edition",purchase,1.0,0 -154230933,"Tom Clancy's Rainbow Six Lockdown",purchase,1.0,0 -154230933,"Tom Clancy's Rainbow Six Vegas",purchase,1.0,0 -154230933,"Tom Clancy's Rainbow Six Vegas 2",purchase,1.0,0 -154230933,"Tom Clancy's Splinter Cell Chaos Theory",purchase,1.0,0 -154230933,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -154230933,"Tom Clancy's Splinter Cell Double Agent",purchase,1.0,0 -154230933,"Viscera Cleanup Detail",purchase,1.0,0 -154230933,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -154230933,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -154230933,"Warframe",purchase,1.0,0 -154230933,"Worms",purchase,1.0,0 -154230933,"Worms Armageddon",purchase,1.0,0 -154230933,"Worms Blast",purchase,1.0,0 -154230933,"Worms Clan Wars",purchase,1.0,0 -154230933,"Worms Crazy Golf",purchase,1.0,0 -154230933,"Worms Pinball",purchase,1.0,0 -154230933,"Worms Reloaded",purchase,1.0,0 -154230933,"Worms Revolution",purchase,1.0,0 -154230933,"Worms Ultimate Mayhem",purchase,1.0,0 -128319430,"Dota 2",purchase,1.0,0 -128319430,"Dota 2",play,20.0,0 -89832342,"Football Manager 2012",purchase,1.0,0 -89832342,"Football Manager 2012",play,210.0,0 -89832342,"Football Manager 2013",purchase,1.0,0 -89832342,"Football Manager 2013",play,98.0,0 -89832342,"Football Manager 2014",purchase,1.0,0 -89832342,"Football Manager 2014",play,91.0,0 -88022225,"Dungeon Defenders",purchase,1.0,0 -88022225,"Dungeon Defenders",play,55.0,0 -88022225,"Left 4 Dead",purchase,1.0,0 -88022225,"Left 4 Dead",play,14.1,0 -88022225,"Team Fortress 2",purchase,1.0,0 -88022225,"Team Fortress 2",play,9.1,0 -163712958,"Terraria",purchase,1.0,0 -163712958,"Terraria",play,206.0,0 -163712958,"The Elder Scrolls V Skyrim",purchase,1.0,0 -163712958,"The Elder Scrolls V Skyrim",play,164.0,0 -163712958,"Borderlands 2",purchase,1.0,0 -163712958,"Borderlands 2",play,132.0,0 -163712958,"Borderlands The Pre-Sequel",purchase,1.0,0 -163712958,"Borderlands The Pre-Sequel",play,68.0,0 -163712958,"Path of Exile",purchase,1.0,0 -163712958,"Path of Exile",play,39.0,0 -163712958,"Dishonored",purchase,1.0,0 -163712958,"Dishonored",play,32.0,0 -163712958,"Garry's Mod",purchase,1.0,0 -163712958,"Garry's Mod",play,13.8,0 -163712958,"Castle Crashers",purchase,1.0,0 -163712958,"Castle Crashers",play,8.3,0 -163712958,"Warframe",purchase,1.0,0 -163712958,"Warframe",play,6.1,0 -163712958,"Team Fortress 2",purchase,1.0,0 -163712958,"Team Fortress 2",play,4.2,0 -163712958,"Defiance",purchase,1.0,0 -163712958,"Defiance",play,3.5,0 -163712958,"HAWKEN",purchase,1.0,0 -163712958,"HAWKEN",play,2.5,0 -163712958,"PlanetSide 2",purchase,1.0,0 -163712958,"PlanetSide 2",play,2.4,0 -163712958,"Magic Barrage - Bitferno",purchase,1.0,0 -163712958,"Magic Barrage - Bitferno",play,2.1,0 -163712958,"BioShock",purchase,1.0,0 -163712958,"BioShock",play,1.9,0 -163712958,"Realm of the Mad God",purchase,1.0,0 -163712958,"Realm of the Mad God",play,1.7,0 -163712958,"Blacklight Retribution",purchase,1.0,0 -163712958,"Blacklight Retribution",play,1.2,0 -163712958,"WAKFU",purchase,1.0,0 -163712958,"WAKFU",play,1.0,0 -163712958,"Ascend Hand of Kul",purchase,1.0,0 -163712958,"Ascend Hand of Kul",play,0.9,0 -163712958,"Magicka",purchase,1.0,0 -163712958,"Magicka",play,0.9,0 -163712958,"Counter-Strike Source",purchase,1.0,0 -163712958,"Counter-Strike Source",play,0.8,0 -163712958,"TERA",purchase,1.0,0 -163712958,"TERA",play,0.7,0 -163712958,"PAYDAY The Heist",purchase,1.0,0 -163712958,"PAYDAY The Heist",play,0.6,0 -163712958,"Warface",purchase,1.0,0 -163712958,"Warface",play,0.5,0 -163712958,"No More Room in Hell",purchase,1.0,0 -163712958,"No More Room in Hell",play,0.4,0 -163712958,"Happy Wars",purchase,1.0,0 -163712958,"Happy Wars",play,0.4,0 -163712958,"Dota 2",purchase,1.0,0 -163712958,"Dota 2",play,0.2,0 -163712958,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -163712958,"Tom Clancy's Ghost Recon Phantoms - NA",play,0.2,0 -163712958,"Archeblade",purchase,1.0,0 -163712958,"Archeblade",play,0.2,0 -163712958,"Color Symphony",purchase,1.0,0 -163712958,"Color Symphony",play,0.2,0 -163712958,"Half-Life 2",purchase,1.0,0 -163712958,"Unturned",purchase,1.0,0 -163712958,"Enclave",purchase,1.0,0 -163712958,"Transformice",purchase,1.0,0 -163712958,"The Lord of the Rings Online",purchase,1.0,0 -163712958,"Vindictus",purchase,1.0,0 -163712958,"ArcheAge",purchase,1.0,0 -163712958,"BioShock 2",purchase,1.0,0 -163712958,"BioShock Infinite",purchase,1.0,0 -163712958,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -163712958,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -163712958,"Cry of Fear",purchase,1.0,0 -163712958,"Elsword",purchase,1.0,0 -163712958,"Gotham City Impostors Free To Play",purchase,1.0,0 -163712958,"Half-Life 2 Lost Coast",purchase,1.0,0 -163712958,"UberStrike",purchase,1.0,0 -126372451,"Dota 2",purchase,1.0,0 -126372451,"Dota 2",play,253.0,0 -139527776,"Dota 2",purchase,1.0,0 -139527776,"Dota 2",play,3.0,0 -23472549,"Darkest Hour Europe '44-'45",purchase,1.0,0 -23472549,"Darkest Hour Europe '44-'45",play,101.0,0 -23472549,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -23472549,"Red Orchestra Ostfront 41-45",play,7.9,0 -23472549,"Mare Nostrum",purchase,1.0,0 -23472549,"Mare Nostrum",play,0.5,0 -198436071,"Krater",purchase,1.0,0 -198436071,"Krater",play,1.7,0 -198436071,"Neverwinter",purchase,1.0,0 -198436071,"Red Faction Armageddon",purchase,1.0,0 -182106701,"Counter-Strike Global Offensive",purchase,1.0,0 -182106701,"Counter-Strike Global Offensive",play,280.0,0 -182106701,"Unturned",purchase,1.0,0 -182106701,"Unturned",play,0.5,0 -192168270,"Dota 2",purchase,1.0,0 -192168270,"Dota 2",play,0.3,0 -197705483,"Dota 2",purchase,1.0,0 -197705483,"Dota 2",play,13.0,0 -127697304,"Team Fortress 2",purchase,1.0,0 -127697304,"Team Fortress 2",play,48.0,0 -1971801,"Counter-Strike",purchase,1.0,0 -1971801,"Counter-Strike Condition Zero",purchase,1.0,0 -1971801,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -1971801,"Day of Defeat",purchase,1.0,0 -1971801,"Deathmatch Classic",purchase,1.0,0 -1971801,"Half-Life",purchase,1.0,0 -1971801,"Half-Life Blue Shift",purchase,1.0,0 -1971801,"Half-Life Opposing Force",purchase,1.0,0 -1971801,"Ricochet",purchase,1.0,0 -1971801,"Team Fortress Classic",purchase,1.0,0 -2110581,"Counter-Strike Global Offensive",purchase,1.0,0 -2110581,"Counter-Strike Global Offensive",play,140.0,0 -2110581,"Battlefield Bad Company 2",purchase,1.0,0 -2110581,"Battlefield Bad Company 2",play,32.0,0 -2110581,"Counter-Strike Source",purchase,1.0,0 -2110581,"Counter-Strike Source",play,30.0,0 -2110581,"Dota 2",purchase,1.0,0 -2110581,"Dota 2",play,20.0,0 -2110581,"Portal 2",purchase,1.0,0 -2110581,"Portal 2",play,12.7,0 -2110581,"Counter-Strike",purchase,1.0,0 -2110581,"Counter-Strike",play,8.8,0 -2110581,"Serious Sam HD The First Encounter",purchase,1.0,0 -2110581,"Serious Sam HD The First Encounter",play,8.5,0 -2110581,"Portal",purchase,1.0,0 -2110581,"Portal",play,6.4,0 -2110581,"DC Universe Online",purchase,1.0,0 -2110581,"DC Universe Online",play,5.7,0 -2110581,"Serious Sam HD The Second Encounter",purchase,1.0,0 -2110581,"Serious Sam HD The Second Encounter",play,5.2,0 -2110581,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -2110581,"Call of Duty Modern Warfare 2 - Multiplayer",play,5.2,0 -2110581,"DOOM II Hell on Earth",purchase,1.0,0 -2110581,"DOOM II Hell on Earth",play,2.8,0 -2110581,"Team Fortress 2",purchase,1.0,0 -2110581,"Team Fortress 2",play,2.3,0 -2110581,"Half-Life 2 Deathmatch",purchase,1.0,0 -2110581,"Half-Life 2 Deathmatch",play,2.1,0 -2110581,"Half-Life 2 Lost Coast",purchase,1.0,0 -2110581,"Half-Life 2 Lost Coast",play,1.8,0 -2110581,"South Park The Stick of Truth",purchase,1.0,0 -2110581,"South Park The Stick of Truth",play,1.7,0 -2110581,"The Elder Scrolls V Skyrim",purchase,1.0,0 -2110581,"The Elder Scrolls V Skyrim",play,1.3,0 -2110581,"Call of Duty Modern Warfare 2",purchase,1.0,0 -2110581,"Call of Duty Modern Warfare 2",play,1.2,0 -2110581,"Chivalry Medieval Warfare",purchase,1.0,0 -2110581,"Chivalry Medieval Warfare",play,1.2,0 -2110581,"Star Wars The Force Unleashed II",purchase,1.0,0 -2110581,"Star Wars The Force Unleashed II",play,0.7,0 -2110581,"Half-Life 2 Episode Two",purchase,1.0,0 -2110581,"Half-Life 2 Episode Two",play,0.6,0 -2110581,"Half-Life",purchase,1.0,0 -2110581,"Half-Life",play,0.6,0 -2110581,"Team Fortress Classic",purchase,1.0,0 -2110581,"Team Fortress Classic",play,0.5,0 -2110581,"Universe Sandbox",purchase,1.0,0 -2110581,"Universe Sandbox",play,0.4,0 -2110581,"Half-Life 2",purchase,1.0,0 -2110581,"Half-Life 2",play,0.3,0 -2110581,"Deathmatch Classic",purchase,1.0,0 -2110581,"Deathmatch Classic",play,0.3,0 -2110581,"Ricochet",purchase,1.0,0 -2110581,"Ricochet",play,0.1,0 -2110581,"Alien Swarm",purchase,1.0,0 -2110581,"Alien Swarm",play,0.1,0 -2110581,"Half-Life Blue Shift",purchase,1.0,0 -2110581,"Half-Life 2 Episode One",purchase,1.0,0 -2110581,"Master Levels for DOOM II",purchase,1.0,0 -2110581,"Day of Defeat",purchase,1.0,0 -2110581,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -2110581,"Half-Life Opposing Force",purchase,1.0,0 -2110581,"Patch testing for Chivalry",purchase,1.0,0 -66023189,"Left 4 Dead 2",purchase,1.0,0 -66023189,"Left 4 Dead 2",play,0.5,0 -66596291,"War Thunder",purchase,1.0,0 -66596291,"War Thunder",play,1126.0,0 -66596291,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -66596291,"Call of Duty Modern Warfare 2 - Multiplayer",play,536.0,0 -66596291,"Call of Duty Modern Warfare 2",purchase,1.0,0 -66596291,"Call of Duty Modern Warfare 2",play,285.0,0 -66596291,"Battlefield Bad Company 2",purchase,1.0,0 -66596291,"Battlefield Bad Company 2",play,150.0,0 -66596291,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -66596291,"Call of Duty Modern Warfare 3 - Multiplayer",play,140.0,0 -66596291,"Grand Theft Auto V",purchase,1.0,0 -66596291,"Grand Theft Auto V",play,109.0,0 -66596291,"Heroes & Generals",purchase,1.0,0 -66596291,"Heroes & Generals",play,103.0,0 -66596291,"Call of Duty Modern Warfare 3",purchase,1.0,0 -66596291,"Call of Duty Modern Warfare 3",play,90.0,0 -66596291,"Kerbal Space Program",purchase,1.0,0 -66596291,"Kerbal Space Program",play,79.0,0 -66596291,"Garry's Mod",purchase,1.0,0 -66596291,"Garry's Mod",play,64.0,0 -66596291,"Watch_Dogs",purchase,1.0,0 -66596291,"Watch_Dogs",play,46.0,0 -66596291,"Besiege",purchase,1.0,0 -66596291,"Besiege",play,36.0,0 -66596291,"Tom Clancy's Ghost Recon Future Soldier",purchase,1.0,0 -66596291,"Tom Clancy's Ghost Recon Future Soldier",play,33.0,0 -66596291,"Team Fortress 2",purchase,1.0,0 -66596291,"Team Fortress 2",play,29.0,0 -66596291,"Age of Chivalry",purchase,1.0,0 -66596291,"Age of Chivalry",play,28.0,0 -66596291,"Battlefield 2",purchase,1.0,0 -66596291,"Battlefield 2",play,27.0,0 -66596291,"Just Cause 2",purchase,1.0,0 -66596291,"Just Cause 2",play,26.0,0 -66596291,"Far Cry 3",purchase,1.0,0 -66596291,"Far Cry 3",play,22.0,0 -66596291,"Arma 2 Operation Arrowhead",purchase,1.0,0 -66596291,"Arma 2 Operation Arrowhead",play,20.0,0 -66596291,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -66596291,"Rising Storm/Red Orchestra 2 Multiplayer",play,19.4,0 -66596291,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -66596291,"Just Cause 2 Multiplayer Mod",play,18.3,0 -66596291,"Insurgency",purchase,1.0,0 -66596291,"Insurgency",play,17.9,0 -66596291,"Hitman Absolution",purchase,1.0,0 -66596291,"Hitman Absolution",play,17.7,0 -66596291,"Unturned",purchase,1.0,0 -66596291,"Unturned",play,14.1,0 -66596291,"Robocraft",purchase,1.0,0 -66596291,"Robocraft",play,13.7,0 -66596291,"Star Wars - Battlefront II",purchase,1.0,0 -66596291,"Star Wars - Battlefront II",play,13.1,0 -66596291,"Arma 2",purchase,1.0,0 -66596291,"Arma 2",play,12.8,0 -66596291,"Mount & Blade With Fire and Sword",purchase,1.0,0 -66596291,"Mount & Blade With Fire and Sword",play,9.7,0 -66596291,"Guns of Icarus Online",purchase,1.0,0 -66596291,"Guns of Icarus Online",play,9.5,0 -66596291,"Counter-Strike Global Offensive",purchase,1.0,0 -66596291,"Counter-Strike Global Offensive",play,8.3,0 -66596291,"Borderlands 2",purchase,1.0,0 -66596291,"Borderlands 2",play,8.1,0 -66596291,"Surgeon Simulator",purchase,1.0,0 -66596291,"Surgeon Simulator",play,8.1,0 -66596291,"Euro Truck Simulator 2",purchase,1.0,0 -66596291,"Euro Truck Simulator 2",play,5.4,0 -66596291,"IL-2 Sturmovik 1946",purchase,1.0,0 -66596291,"IL-2 Sturmovik 1946",play,4.2,0 -66596291,"Insurgency Modern Infantry Combat",purchase,1.0,0 -66596291,"Insurgency Modern Infantry Combat",play,3.8,0 -66596291,"EVGA PrecisionX 16",purchase,1.0,0 -66596291,"EVGA PrecisionX 16",play,3.5,0 -66596291,"Sniper Elite V2",purchase,1.0,0 -66596291,"Sniper Elite V2",play,3.5,0 -66596291,"Sniper Ghost Warrior 2",purchase,1.0,0 -66596291,"Sniper Ghost Warrior 2",play,2.9,0 -66596291,"Portal 2",purchase,1.0,0 -66596291,"Portal 2",play,2.4,0 -66596291,"Napoleon Total War",purchase,1.0,0 -66596291,"Napoleon Total War",play,2.1,0 -66596291,"The Expendabros",purchase,1.0,0 -66596291,"The Expendabros",play,1.6,0 -66596291,"DCS World",purchase,1.0,0 -66596291,"DCS World",play,1.6,0 -66596291,"Don't Starve Together Beta",purchase,1.0,0 -66596291,"Don't Starve Together Beta",play,1.5,0 -66596291,"Moonbase Alpha",purchase,1.0,0 -66596291,"Moonbase Alpha",play,1.4,0 -66596291,"The Testament of Sherlock Holmes",purchase,1.0,0 -66596291,"The Testament of Sherlock Holmes",play,1.3,0 -66596291,"Ace of Spades",purchase,1.0,0 -66596291,"Ace of Spades",play,1.1,0 -66596291,"Bloody Trapland",purchase,1.0,0 -66596291,"Bloody Trapland",play,1.0,0 -66596291,"PlanetSide 2",purchase,1.0,0 -66596291,"PlanetSide 2",play,0.9,0 -66596291,"Gear Up",purchase,1.0,0 -66596291,"Gear Up",play,0.9,0 -66596291,"Flight of the Icarus",purchase,1.0,0 -66596291,"Flight of the Icarus",play,0.8,0 -66596291,"Warface",purchase,1.0,0 -66596291,"Warface",play,0.7,0 -66596291,"Rise of Flight United",purchase,1.0,0 -66596291,"Rise of Flight United",play,0.7,0 -66596291,"Galactic Civilizations I Ultimate Edition",purchase,1.0,0 -66596291,"Galactic Civilizations I Ultimate Edition",play,0.6,0 -66596291,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -66596291,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.5,0 -66596291,"StarForge",purchase,1.0,0 -66596291,"StarForge",play,0.5,0 -66596291,"BioShock",purchase,1.0,0 -66596291,"BioShock",play,0.5,0 -66596291,"Grand Theft Auto San Andreas",purchase,1.0,0 -66596291,"Grand Theft Auto San Andreas",play,0.5,0 -66596291,"Hitman Sniper Challenge",purchase,1.0,0 -66596291,"Hitman Sniper Challenge",play,0.5,0 -66596291,"HIS (Heroes In the Sky)",purchase,1.0,0 -66596291,"HIS (Heroes In the Sky)",play,0.3,0 -66596291,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",purchase,1.0,0 -66596291,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",play,0.3,0 -66596291,"Counter-Strike",purchase,1.0,0 -66596291,"Counter-Strike",play,0.2,0 -66596291,"Arma 2 DayZ Mod",purchase,1.0,0 -66596291,"Arma 2 DayZ Mod",play,0.2,0 -66596291,"Mount & Blade Warband",purchase,1.0,0 -66596291,"Mount & Blade Warband",play,0.2,0 -66596291,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -66596291,"Galactic Civilizations II Ultimate Edition",play,0.1,0 -66596291,"Counter-Strike Condition Zero",purchase,1.0,0 -66596291,"Mount & Blade",purchase,1.0,0 -66596291,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -66596291,"Bad Rats",purchase,1.0,0 -66596291,"Biology Battle",purchase,1.0,0 -66596291,"BioShock 2",purchase,1.0,0 -66596291,"BioShock Infinite",purchase,1.0,0 -66596291,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -66596291,"Counter-Strike Source",purchase,1.0,0 -66596291,"Crystals of Time",purchase,1.0,0 -66596291,"Grand Theft Auto San Andreas",purchase,1.0,0 -66596291,"Hacker Evolution Duality",purchase,1.0,0 -66596291,"Pitiri 1977",purchase,1.0,0 -66596291,"Portal",purchase,1.0,0 -66596291,"Portal 2 Sixense MotionPack",purchase,1.0,0 -66596291,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -66596291,"Sniper Ghost Warrior 2 World Hunter Pack",purchase,1.0,0 -66596291,"Space Trader Merchant Marine",purchase,1.0,0 -66596291,"World of Guns Gun Disassembly",purchase,1.0,0 -219677174,"Dota 2",purchase,1.0,0 -219677174,"Dota 2",play,1.2,0 -219677174,"Bloodline Champions",purchase,1.0,0 -128608678,"MapleStory",purchase,1.0,0 -128608678,"MapleStory",play,130.0,0 -128608678,"Anomaly Warzone Earth",purchase,1.0,0 -128608678,"Awesomenauts",purchase,1.0,0 -128608678,"Magicka",purchase,1.0,0 -128608678,"Magicka Wizard Wars",purchase,1.0,0 -128608678,"Metro Last Light",purchase,1.0,0 -128608678,"PAYDAY 2",purchase,1.0,0 -128608678,"Strike Suit Zero",purchase,1.0,0 -159248043,"Stronghold HD",purchase,1.0,0 -159248043,"Stronghold HD",play,9.3,0 -159248043,"Age of Empires III Complete Collection",purchase,1.0,0 -159248043,"Age of Empires III Complete Collection",play,0.2,0 -159248043,"Age of Empires II HD Edition",purchase,1.0,0 -159248043,"Age of Empires II HD Edition",play,0.1,0 -159248043,"Stronghold 3",purchase,1.0,0 -159248043,"Age of Empires II HD The Forgotten",purchase,1.0,0 -38342935,"Mafia II",purchase,1.0,0 -38342935,"Mafia II",play,14.2,0 -181308056,"Dota 2",purchase,1.0,0 -181308056,"Dota 2",play,0.6,0 -277408896,"Dota 2",purchase,1.0,0 -277408896,"Dota 2",play,2.4,0 -277408896,"All Is Dust",purchase,1.0,0 -277408896,"All Is Dust",play,1.0,0 -277408896,"Blender 2.76b",purchase,1.0,0 -277408896,"FreeStyle2 Street Basketball",purchase,1.0,0 -194664022,"Dota 2",purchase,1.0,0 -194664022,"Dota 2",play,1.6,0 -29569611,"Portal 2",purchase,1.0,0 -29569611,"Portal 2",play,18.2,0 -29569611,"Day of Defeat Source",purchase,1.0,0 -29569611,"Day of Defeat Source",play,3.8,0 -29569611,"Counter-Strike Source",purchase,1.0,0 -29569611,"Counter-Strike Source",play,1.2,0 -29569611,"Half-Life 2 Deathmatch",purchase,1.0,0 -29569611,"Half-Life 2 Lost Coast",purchase,1.0,0 -29706117,"Dead Island",purchase,1.0,0 -29706117,"Dead Island",play,17.6,0 -29706117,"Counter-Strike Source",purchase,1.0,0 -29706117,"Counter-Strike Source",play,15.9,0 -29706117,"The Forest",purchase,1.0,0 -29706117,"The Forest",play,15.0,0 -29706117,"Atlantica Online",purchase,1.0,0 -29706117,"Atlantica Online",play,8.2,0 -29706117,"Portal",purchase,1.0,0 -29706117,"Portal",play,7.3,0 -29706117,"Trove",purchase,1.0,0 -29706117,"Trove",play,4.4,0 -29706117,"Left 4 Dead 2",purchase,1.0,0 -29706117,"Left 4 Dead 2",play,3.7,0 -29706117,"Team Fortress 2",purchase,1.0,0 -29706117,"Team Fortress 2",play,3.5,0 -29706117,"theHunter",purchase,1.0,0 -29706117,"theHunter",play,0.7,0 -29706117,"Unturned",purchase,1.0,0 -29706117,"Unturned",play,0.3,0 -29706117,"Dungeonland",purchase,1.0,0 -29706117,"Dungeonland",play,0.2,0 -29706117,"Day of Defeat Source",purchase,1.0,0 -29706117,"Ascend Hand of Kul",purchase,1.0,0 -29706117,"Dead Island Riptide",purchase,1.0,0 -29706117,"Half-Life 2",purchase,1.0,0 -29706117,"Half-Life 2 Deathmatch",purchase,1.0,0 -29706117,"Half-Life 2 Episode One",purchase,1.0,0 -29706117,"Half-Life 2 Episode Two",purchase,1.0,0 -29706117,"Half-Life 2 Lost Coast",purchase,1.0,0 -29706117,"Path of Exile",purchase,1.0,0 -193056678,"Dota 2",purchase,1.0,0 -193056678,"Dota 2",play,1.5,0 -234298807,"Dota 2",purchase,1.0,0 -234298807,"Dota 2",play,477.0,0 -234298807,"Warface",purchase,1.0,0 -256217287,"Might & Magic Heroes VI",purchase,1.0,0 -256217287,"Might & Magic Heroes VI",play,100.0,0 -6144819,"Left 4 Dead 2",purchase,1.0,0 -6144819,"Left 4 Dead 2",play,212.0,0 -6144819,"Team Fortress 2",purchase,1.0,0 -6144819,"Team Fortress 2",play,137.0,0 -6144819,"The Elder Scrolls V Skyrim",purchase,1.0,0 -6144819,"The Elder Scrolls V Skyrim",play,59.0,0 -6144819,"Fallout 4",purchase,1.0,0 -6144819,"Fallout 4",play,46.0,0 -6144819,"Borderlands 2",purchase,1.0,0 -6144819,"Borderlands 2",play,31.0,0 -6144819,"Counter-Strike Condition Zero",purchase,1.0,0 -6144819,"Counter-Strike Condition Zero",play,5.4,0 -6144819,"Counter-Strike Global Offensive",purchase,1.0,0 -6144819,"Counter-Strike Global Offensive",play,4.9,0 -6144819,"Borderlands The Pre-Sequel",purchase,1.0,0 -6144819,"Borderlands The Pre-Sequel",play,3.9,0 -6144819,"Borderlands",purchase,1.0,0 -6144819,"Borderlands",play,3.1,0 -6144819,"PAYDAY 2",purchase,1.0,0 -6144819,"PAYDAY 2",play,1.6,0 -6144819,"Team Fortress Classic",purchase,1.0,0 -6144819,"Team Fortress Classic",play,1.3,0 -6144819,"Arma 2 Operation Arrowhead",purchase,1.0,0 -6144819,"Arma 2 Operation Arrowhead",play,0.9,0 -6144819,"Dead Island",purchase,1.0,0 -6144819,"Dead Island",play,0.8,0 -6144819,"Counter-Strike",purchase,1.0,0 -6144819,"Counter-Strike",play,0.8,0 -6144819,"Arma 2",purchase,1.0,0 -6144819,"Arma 2 DayZ Mod",purchase,1.0,0 -6144819,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -6144819,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -6144819,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -6144819,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -6144819,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -6144819,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -6144819,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -6144819,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -6144819,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -6144819,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -6144819,"Day of Defeat",purchase,1.0,0 -6144819,"Dead Island Riptide",purchase,1.0,0 -6144819,"Deathmatch Classic",purchase,1.0,0 -6144819,"Half-Life",purchase,1.0,0 -6144819,"Half-Life Blue Shift",purchase,1.0,0 -6144819,"Half-Life Opposing Force",purchase,1.0,0 -6144819,"Ricochet",purchase,1.0,0 -142999522,"Dota 2",purchase,1.0,0 -142999522,"Dota 2",play,660.0,0 -142999522,"TERA",purchase,1.0,0 -142999522,"TERA",play,9.2,0 -142999522,"FreeStyle2 Street Basketball",purchase,1.0,0 -142999522,"Aura Kingdom",purchase,1.0,0 -142999522,"Battle Islands",purchase,1.0,0 -142999522,"BLOCKADE 3D",purchase,1.0,0 -142999522,"Cubic Castles",purchase,1.0,0 -142999522,"Deepworld",purchase,1.0,0 -142999522,"GunZ 2 The Second Duel",purchase,1.0,0 -142999522,"Heroes & Generals",purchase,1.0,0 -142999522,"La Tale",purchase,1.0,0 -142999522,"Neverwinter",purchase,1.0,0 -142999522,"Ragnarok Online 2",purchase,1.0,0 -142999522,"RIFT",purchase,1.0,0 -142999522,"Spiral Knights",purchase,1.0,0 -142999522,"The Expendabros",purchase,1.0,0 -142999522,"The Lord of the Rings Online",purchase,1.0,0 -142999522,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -142999522,"TOME Immortal Arena",purchase,1.0,0 -142999522,"Trove",purchase,1.0,0 -142999522,"Unturned",purchase,1.0,0 -142999522,"Warframe",purchase,1.0,0 -142999522,"War Thunder",purchase,1.0,0 -83992730,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -83992730,"Call of Duty Modern Warfare 2 - Multiplayer",play,109.0,0 -83992730,"Team Fortress 2",purchase,1.0,0 -83992730,"Team Fortress 2",play,99.0,0 -83992730,"BRINK",purchase,1.0,0 -83992730,"BRINK",play,10.8,0 -83992730,"RAGE",purchase,1.0,0 -83992730,"RAGE",play,2.6,0 -83992730,"Call of Duty Modern Warfare 2",purchase,1.0,0 -83992730,"Call of Duty Modern Warfare 2",play,2.2,0 -3249166,"Counter-Strike",purchase,1.0,0 -3249166,"Counter-Strike",play,23.0,0 -3249166,"Day of Defeat",purchase,1.0,0 -3249166,"Deathmatch Classic",purchase,1.0,0 -3249166,"Half-Life",purchase,1.0,0 -3249166,"Half-Life Blue Shift",purchase,1.0,0 -3249166,"Half-Life Opposing Force",purchase,1.0,0 -3249166,"Ricochet",purchase,1.0,0 -3249166,"Team Fortress Classic",purchase,1.0,0 -308118796,"The Binding of Isaac",purchase,1.0,0 -308118796,"The Binding of Isaac",play,0.9,0 -255508119,"Counter-Strike Global Offensive",purchase,1.0,0 -255508119,"Counter-Strike Global Offensive",play,0.8,0 -221548709,"Dota 2",purchase,1.0,0 -221548709,"Dota 2",play,435.0,0 -221548709,"Dead Island Epidemic",purchase,1.0,0 -259708463,"Unturned",purchase,1.0,0 -259708463,"Unturned",play,41.0,0 -259708463,"Aftermath",purchase,1.0,0 -259708463,"Aftermath",play,1.8,0 -82071844,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -82071844,"Call of Duty Modern Warfare 3 - Multiplayer",play,96.0,0 -82071844,"Call of Duty Modern Warfare 3",purchase,1.0,0 -82071844,"Call of Duty Modern Warfare 3",play,91.0,0 -82071844,"Saints Row The Third",purchase,1.0,0 -82071844,"Saints Row The Third",play,41.0,0 -82071844,"Call of Duty Modern Warfare 2",purchase,1.0,0 -82071844,"Call of Duty Modern Warfare 2",play,36.0,0 -82071844,"Dead Island",purchase,1.0,0 -82071844,"Dead Island",play,26.0,0 -82071844,"The Elder Scrolls V Skyrim",purchase,1.0,0 -82071844,"The Elder Scrolls V Skyrim",play,25.0,0 -82071844,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -82071844,"Call of Duty Modern Warfare 2 - Multiplayer",play,20.0,0 -82071844,"Left 4 Dead 2",purchase,1.0,0 -82071844,"Left 4 Dead 2",play,18.1,0 -82071844,"Homefront",purchase,1.0,0 -82071844,"Homefront",play,3.0,0 -82071844,"Enclave",purchase,1.0,0 -82071844,"Knights and Merchants",purchase,1.0,0 -82071844,"KnightShift",purchase,1.0,0 -82071844,"Two Worlds Epic Edition",purchase,1.0,0 -99216273,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -99216273,"Call of Duty Black Ops - Multiplayer",play,3.1,0 -99216273,"Call of Duty Black Ops",purchase,1.0,0 -300658566,"Dota 2",purchase,1.0,0 -300658566,"Dota 2",play,1.5,0 -189297449,"Road Not Taken",purchase,1.0,0 -189297449,"Road Not Taken",play,0.1,0 -194694340,"RECYCLE",purchase,1.0,0 -194694340,"RECYCLE",play,0.6,0 -219136646,"Unturned",purchase,1.0,0 -219136646,"Unturned",play,10.2,0 -185075395,"Bridge Project",purchase,1.0,0 -185075395,"Bridge Project",play,1.4,0 -185075395,"Kerbal Space Program",purchase,1.0,0 -185075395,"Kerbal Space Program",play,1.3,0 -185075395,"Star Wars Empire at War Gold",purchase,1.0,0 -185075395,"Star Wars Empire at War Gold",play,0.2,0 -185075395,"Sid Meier's Civilization IV",purchase,1.0,0 -185075395,"Sid Meier's Civilization IV",play,0.1,0 -185075395,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -185075395,"Sid Meier's Railroads!",purchase,1.0,0 -185075395,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -185075395,"Agricultural Simulator 2013 Steam Edition",purchase,1.0,0 -185075395,"Agricultural Simulator Historical Farming",purchase,1.0,0 -185075395,"Anachronox",purchase,1.0,0 -185075395,"Battlestations Midway",purchase,1.0,0 -185075395,"BioShock",purchase,1.0,0 -185075395,"BioShock 2",purchase,1.0,0 -185075395,"BioShock Infinite",purchase,1.0,0 -185075395,"Daikatana",purchase,1.0,0 -185075395,"Deus Ex Game of the Year Edition",purchase,1.0,0 -185075395,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -185075395,"Deus Ex Invisible War",purchase,1.0,0 -185075395,"Deus Ex The Fall",purchase,1.0,0 -185075395,"Euro Truck Simulator",purchase,1.0,0 -185075395,"Gone Home",purchase,1.0,0 -185075395,"Gunpoint",purchase,1.0,0 -185075395,"Hammerwatch",purchase,1.0,0 -185075395,"Hitman 2 Silent Assassin",purchase,1.0,0 -185075395,"Hitman Absolution",purchase,1.0,0 -185075395,"Hitman Blood Money",purchase,1.0,0 -185075395,"Hitman Codename 47",purchase,1.0,0 -185075395,"Hitman Contracts",purchase,1.0,0 -185075395,"Just Cause",purchase,1.0,0 -185075395,"Just Cause 2",purchase,1.0,0 -185075395,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -185075395,"Lara Croft and the Guardian of Light",purchase,1.0,0 -185075395,"LUFTRAUSERS",purchase,1.0,0 -185075395,"Mafia II",purchase,1.0,0 -185075395,"Mini Ninjas",purchase,1.0,0 -185075395,"Monaco",purchase,1.0,0 -185075395,"Nosgoth",purchase,1.0,0 -185075395,"Papers, Please",purchase,1.0,0 -185075395,"Pool Nation",purchase,1.0,0 -185075395,"Prison Architect",purchase,1.0,0 -185075395,"Professional Farmer 2014",purchase,1.0,0 -185075395,"Race The Sun",purchase,1.0,0 -185075395,"Sid Meier's Ace Patrol",purchase,1.0,0 -185075395,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -185075395,"Sid Meier's Civilization III Complete",purchase,1.0,0 -185075395,"Sid Meier's Civilization IV",purchase,1.0,0 -185075395,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -185075395,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -185075395,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -185075395,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -185075395,"Sid Meier's Civilization V",purchase,1.0,0 -185075395,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -185075395,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -185075395,"Sid Meier's Pirates!",purchase,1.0,0 -185075395,"Spec Ops The Line",purchase,1.0,0 -185075395,"Star Wars - Battlefront II",purchase,1.0,0 -185075395,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -185075395,"Star Wars Dark Forces",purchase,1.0,0 -185075395,"Star Wars Knights of the Old Republic",purchase,1.0,0 -185075395,"Star Wars The Force Unleashed II",purchase,1.0,0 -185075395,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -185075395,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -185075395,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -185075395,"Star Wars Republic Commando",purchase,1.0,0 -185075395,"Star Wars Starfighter",purchase,1.0,0 -185075395,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -185075395,"SteamWorld Dig",purchase,1.0,0 -185075395,"The Bridge",purchase,1.0,0 -185075395,"The Bureau XCOM Declassified",purchase,1.0,0 -185075395,"The Darkness II",purchase,1.0,0 -185075395,"The Last Remnant",purchase,1.0,0 -185075395,"Thief Gold",purchase,1.0,0 -185075395,"Torchlight II",purchase,1.0,0 -185075395,"Trainz Simulator 12",purchase,1.0,0 -185075395,"Wildlife Park 3",purchase,1.0,0 -185075395,"X-COM Apocalypse",purchase,1.0,0 -185075395,"X-COM Enforcer",purchase,1.0,0 -185075395,"X-COM Interceptor",purchase,1.0,0 -185075395,"X-COM Terror from the Deep",purchase,1.0,0 -185075395,"X-COM UFO Defense",purchase,1.0,0 -185075395,"XCOM Enemy Unknown",purchase,1.0,0 -144516443,"Dota 2",purchase,1.0,0 -144516443,"Dota 2",play,39.0,0 -143381893,"Dota 2",purchase,1.0,0 -143381893,"Dota 2",play,8.4,0 -215060251,"Dota 2",purchase,1.0,0 -215060251,"Dota 2",play,116.0,0 -249652084,"Dota 2",purchase,1.0,0 -249652084,"Dota 2",play,43.0,0 -195962272,"This War of Mine",purchase,1.0,0 -195962272,"This War of Mine",play,6.6,0 -195962272,"Decay - The Mare",purchase,1.0,0 -195962272,"Decay - The Mare",play,5.0,0 -195962272,"Alan Wake",purchase,1.0,0 -195962272,"Alan Wake",play,4.2,0 -195962272,"Gauntlet ",purchase,1.0,0 -195962272,"Gauntlet ",play,2.3,0 -195962272,"Sid Meier's Civilization V",purchase,1.0,0 -195962272,"Sid Meier's Civilization V",play,2.2,0 -195962272,"Serena",purchase,1.0,0 -195962272,"Serena",play,1.5,0 -195962272,"Alan Wake's American Nightmare",purchase,1.0,0 -195962272,"Amnesia A Machine for Pigs",purchase,1.0,0 -195962272,"Amnesia The Dark Descent",purchase,1.0,0 -195962272,"Claire",purchase,1.0,0 -195962272,"Claire - Soundtrack",purchase,1.0,0 -195962272,"FORCED",purchase,1.0,0 -195962272,"Shadowrun Returns",purchase,1.0,0 -195962272,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -195962272,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -195962272,"Worms Reloaded",purchase,1.0,0 -133378280,"Fallout 4",purchase,1.0,0 -133378280,"Fallout 4",play,173.0,0 -133378280,"DayZ",purchase,1.0,0 -133378280,"DayZ",play,148.0,0 -133378280,"Grand Theft Auto V",purchase,1.0,0 -133378280,"Grand Theft Auto V",play,144.0,0 -133378280,"Arma 3",purchase,1.0,0 -133378280,"Arma 3",play,127.0,0 -133378280,"The Elder Scrolls V Skyrim",purchase,1.0,0 -133378280,"The Elder Scrolls V Skyrim",play,72.0,0 -133378280,"Team Fortress 2",purchase,1.0,0 -133378280,"Team Fortress 2",play,0.9,0 -133378280,"Arma 3 Zeus",purchase,1.0,0 -133378280,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -133378280,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -133378280,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -133378280,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -267564972,"Dota 2",purchase,1.0,0 -267564972,"Dota 2",play,32.0,0 -267564972,"FreeStyle2 Street Basketball",purchase,1.0,0 -267564972,"GunZ 2 The Second Duel",purchase,1.0,0 -267564972,"TERA",purchase,1.0,0 -300254785,"Dota 2",purchase,1.0,0 -300254785,"Dota 2",play,12.6,0 -148073435,"Dota 2",purchase,1.0,0 -148073435,"Dota 2",play,2.9,0 -78339000,"Dota 2",purchase,1.0,0 -78339000,"Dota 2",play,82.0,0 -78339000,"Counter-Strike Nexon Zombies",purchase,1.0,0 -78339000,"Double Action Boogaloo",purchase,1.0,0 -78339000,"Quake Live",purchase,1.0,0 -228039903,"Dota 2",purchase,1.0,0 -228039903,"Dota 2",play,7.0,0 -224751217,"Cities Skylines",purchase,1.0,0 -224751217,"Cities Skylines",play,2.4,0 -47457723,"Team Fortress 2",purchase,1.0,0 -47457723,"Team Fortress 2",play,994.0,0 -47457723,"Kerbal Space Program",purchase,1.0,0 -47457723,"Kerbal Space Program",play,480.0,0 -47457723,"Gnomoria",purchase,1.0,0 -47457723,"Gnomoria",play,246.0,0 -47457723,"Left 4 Dead 2",purchase,1.0,0 -47457723,"Left 4 Dead 2",play,196.0,0 -47457723,"Sid Meier's Civilization V",purchase,1.0,0 -47457723,"Sid Meier's Civilization V",play,182.0,0 -47457723,"Saints Row The Third",purchase,1.0,0 -47457723,"Saints Row The Third",play,110.0,0 -47457723,"Fallout New Vegas",purchase,1.0,0 -47457723,"Fallout New Vegas",play,107.0,0 -47457723,"Tropico 4",purchase,1.0,0 -47457723,"Tropico 4",play,93.0,0 -47457723,"Age of Wonders III",purchase,1.0,0 -47457723,"Age of Wonders III",play,84.0,0 -47457723,"The Elder Scrolls V Skyrim",purchase,1.0,0 -47457723,"The Elder Scrolls V Skyrim",play,71.0,0 -47457723,"Dragon Age Origins",purchase,1.0,0 -47457723,"Dragon Age Origins",play,67.0,0 -47457723,"Anno 2070",purchase,1.0,0 -47457723,"Anno 2070",play,64.0,0 -47457723,"Saints Row IV",purchase,1.0,0 -47457723,"Saints Row IV",play,63.0,0 -47457723,"Prison Architect",purchase,1.0,0 -47457723,"Prison Architect",play,55.0,0 -47457723,"Tropico 5",purchase,1.0,0 -47457723,"Tropico 5",play,54.0,0 -47457723,"Cities Skylines",purchase,1.0,0 -47457723,"Cities Skylines",play,54.0,0 -47457723,"Borderlands",purchase,1.0,0 -47457723,"Borderlands",play,51.0,0 -47457723,"Awesomenauts",purchase,1.0,0 -47457723,"Awesomenauts",play,51.0,0 -47457723,"FTL Faster Than Light",purchase,1.0,0 -47457723,"FTL Faster Than Light",play,51.0,0 -47457723,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -47457723,"Tropico 3 - Steam Special Edition",play,47.0,0 -47457723,"Two Worlds Epic Edition",purchase,1.0,0 -47457723,"Two Worlds Epic Edition",play,45.0,0 -47457723,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -47457723,"Sid Meier's Civilization IV Beyond the Sword",play,43.0,0 -47457723,"FINAL FANTASY XIII-2",purchase,1.0,0 -47457723,"FINAL FANTASY XIII-2",play,43.0,0 -47457723,"Pixel Piracy",purchase,1.0,0 -47457723,"Pixel Piracy",play,39.0,0 -47457723,"Supreme Commander 2",purchase,1.0,0 -47457723,"Supreme Commander 2",play,39.0,0 -47457723,"Sid Meier's Civilization IV",purchase,1.0,0 -47457723,"Sid Meier's Civilization IV",play,39.0,0 -47457723,"Magicka",purchase,1.0,0 -47457723,"Magicka",play,38.0,0 -47457723,"Risen",purchase,1.0,0 -47457723,"Risen",play,36.0,0 -47457723,"Mass Effect 2",purchase,1.0,0 -47457723,"Mass Effect 2",play,34.0,0 -47457723,"Global Agenda",purchase,1.0,0 -47457723,"Global Agenda",play,33.0,0 -47457723,"Sins of a Solar Empire Trinity",purchase,1.0,0 -47457723,"Sins of a Solar Empire Trinity",play,33.0,0 -47457723,"Two Worlds II",purchase,1.0,0 -47457723,"Two Worlds II",play,33.0,0 -47457723,"Skyward Collapse",purchase,1.0,0 -47457723,"Skyward Collapse",play,32.0,0 -47457723,"Vampire The Masquerade - Bloodlines",purchase,1.0,0 -47457723,"Vampire The Masquerade - Bloodlines",play,30.0,0 -47457723,"Star Wolves 3 Civil War",purchase,1.0,0 -47457723,"Star Wolves 3 Civil War",play,29.0,0 -47457723,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -47457723,"Sid Meier's Civilization Beyond Earth",play,28.0,0 -47457723,"Mass Effect",purchase,1.0,0 -47457723,"Mass Effect",play,25.0,0 -47457723,"The Escapists",purchase,1.0,0 -47457723,"The Escapists",play,25.0,0 -47457723,"Defiance",purchase,1.0,0 -47457723,"Defiance",play,25.0,0 -47457723,"FINAL FANTASY VIII",purchase,1.0,0 -47457723,"FINAL FANTASY VIII",play,24.0,0 -47457723,"Saints Row 2",purchase,1.0,0 -47457723,"Saints Row 2",play,24.0,0 -47457723,"Borderlands 2",purchase,1.0,0 -47457723,"Borderlands 2",play,23.0,0 -47457723,"The Witcher Enhanced Edition",purchase,1.0,0 -47457723,"The Witcher Enhanced Edition",play,23.0,0 -47457723,"Left 4 Dead",purchase,1.0,0 -47457723,"Left 4 Dead",play,23.0,0 -47457723,"Defense Grid The Awakening",purchase,1.0,0 -47457723,"Defense Grid The Awakening",play,22.0,0 -47457723,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -47457723,"The Elder Scrolls IV Oblivion ",play,22.0,0 -47457723,"Overlord",purchase,1.0,0 -47457723,"Overlord",play,21.0,0 -47457723,"Cities in Motion",purchase,1.0,0 -47457723,"Cities in Motion",play,21.0,0 -47457723,"XCOM Enemy Unknown",purchase,1.0,0 -47457723,"XCOM Enemy Unknown",play,21.0,0 -47457723,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -47457723,"Sins of a Solar Empire Rebellion",play,20.0,0 -47457723,"Drakensang",purchase,1.0,0 -47457723,"Drakensang",play,19.9,0 -47457723,"Supreme Ruler 2020 Gold",purchase,1.0,0 -47457723,"Supreme Ruler 2020 Gold",play,19.0,0 -47457723,"Patrician IV Steam Special Edition",purchase,1.0,0 -47457723,"Patrician IV Steam Special Edition",play,19.0,0 -47457723,"Game Dev Tycoon",purchase,1.0,0 -47457723,"Game Dev Tycoon",play,18.9,0 -47457723,"Star Wars Knights of the Old Republic",purchase,1.0,0 -47457723,"Star Wars Knights of the Old Republic",play,18.0,0 -47457723,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -47457723,"The Witcher 2 Assassins of Kings Enhanced Edition",play,17.3,0 -47457723,"Gothic 3",purchase,1.0,0 -47457723,"Gothic 3",play,17.1,0 -47457723,"Rome Total War",purchase,1.0,0 -47457723,"Rome Total War",play,16.4,0 -47457723,"Shadowrun Returns",purchase,1.0,0 -47457723,"Shadowrun Returns",play,15.8,0 -47457723,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -47457723,"Red Faction Guerrilla Steam Edition",play,15.7,0 -47457723,"Command and Conquer Red Alert 3",purchase,1.0,0 -47457723,"Command and Conquer Red Alert 3",play,13.4,0 -47457723,"Starbound",purchase,1.0,0 -47457723,"Starbound",play,13.1,0 -47457723,"Robocraft",purchase,1.0,0 -47457723,"Robocraft",play,13.1,0 -47457723,"Poker Night at the Inventory",purchase,1.0,0 -47457723,"Poker Night at the Inventory",play,12.9,0 -47457723,"POSTAL 2",purchase,1.0,0 -47457723,"POSTAL 2",play,12.7,0 -47457723,"Evil Genius",purchase,1.0,0 -47457723,"Evil Genius",play,12.5,0 -47457723,"The Guild II",purchase,1.0,0 -47457723,"The Guild II",play,12.4,0 -47457723,"BioShock",purchase,1.0,0 -47457723,"BioShock",play,12.4,0 -47457723,"Mafia II",purchase,1.0,0 -47457723,"Mafia II",play,12.3,0 -47457723,"Gratuitous Space Battles",purchase,1.0,0 -47457723,"Gratuitous Space Battles",play,12.3,0 -47457723,"Dead Island",purchase,1.0,0 -47457723,"Dead Island",play,11.8,0 -47457723,"Duke Nukem Forever",purchase,1.0,0 -47457723,"Duke Nukem Forever",play,11.3,0 -47457723,"Mount & Blade Warband",purchase,1.0,0 -47457723,"Mount & Blade Warband",play,10.4,0 -47457723,"Majesty 2",purchase,1.0,0 -47457723,"Majesty 2",play,10.3,0 -47457723,"Hotline Miami",purchase,1.0,0 -47457723,"Hotline Miami",play,10.3,0 -47457723,"Axis Game Factory's AGFPRO 3.0",purchase,1.0,0 -47457723,"Axis Game Factory's AGFPRO 3.0",play,10.2,0 -47457723,"Terraria",purchase,1.0,0 -47457723,"Terraria",play,10.1,0 -47457723,"Half-Life 2",purchase,1.0,0 -47457723,"Half-Life 2",play,9.7,0 -47457723,"Monaco",purchase,1.0,0 -47457723,"Monaco",play,9.7,0 -47457723,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -47457723,"Star Wars The Force Unleashed Ultimate Sith Edition",play,9.5,0 -47457723,"Bastion",purchase,1.0,0 -47457723,"Bastion",play,9.5,0 -47457723,"Recettear An Item Shop's Tale",purchase,1.0,0 -47457723,"Recettear An Item Shop's Tale",play,9.2,0 -47457723,"Killing Floor",purchase,1.0,0 -47457723,"Killing Floor",play,9.1,0 -47457723,"Starscape",purchase,1.0,0 -47457723,"Starscape",play,8.9,0 -47457723,"Evochron Mercenary",purchase,1.0,0 -47457723,"Evochron Mercenary",play,8.7,0 -47457723,"Star Wolves",purchase,1.0,0 -47457723,"Star Wolves",play,8.3,0 -47457723,"Red Faction Armageddon",purchase,1.0,0 -47457723,"Red Faction Armageddon",play,8.1,0 -47457723,"Divinity II Developer's Cut",purchase,1.0,0 -47457723,"Divinity II Developer's Cut",play,7.6,0 -47457723,"Universe at War Earth Assault",purchase,1.0,0 -47457723,"Universe at War Earth Assault",play,7.5,0 -47457723,"Star Wars Republic Commando",purchase,1.0,0 -47457723,"Star Wars Republic Commando",play,7.3,0 -47457723,"Alien Swarm",purchase,1.0,0 -47457723,"Alien Swarm",play,7.2,0 -47457723,"Solar 2",purchase,1.0,0 -47457723,"Solar 2",play,6.9,0 -47457723,"Aliens Colonial Marines",purchase,1.0,0 -47457723,"Aliens Colonial Marines",play,6.8,0 -47457723,"Just Cause 2",purchase,1.0,0 -47457723,"Just Cause 2",play,6.6,0 -47457723,"ArcaniA",purchase,1.0,0 -47457723,"ArcaniA",play,6.4,0 -47457723,"Prey",purchase,1.0,0 -47457723,"Prey",play,6.3,0 -47457723,"Worms Reloaded",purchase,1.0,0 -47457723,"Worms Reloaded",play,6.3,0 -47457723,"System Shock 2",purchase,1.0,0 -47457723,"System Shock 2",play,6.1,0 -47457723,"Sword of the Stars Complete Collection",purchase,1.0,0 -47457723,"Sword of the Stars Complete Collection",play,6.1,0 -47457723,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -47457723,"Duke Nukem 3D Megaton Edition",play,5.9,0 -47457723,"SpaceForce Rogue Universe",purchase,1.0,0 -47457723,"SpaceForce Rogue Universe",play,5.5,0 -47457723,"X2 The Threat",purchase,1.0,0 -47457723,"X2 The Threat",play,5.4,0 -47457723,"Metro 2033",purchase,1.0,0 -47457723,"Metro 2033",play,5.4,0 -47457723,"X-Blades",purchase,1.0,0 -47457723,"X-Blades",play,5.0,0 -47457723,"Ghostbusters The Video Game",purchase,1.0,0 -47457723,"Ghostbusters The Video Game",play,4.9,0 -47457723,"From Dust",purchase,1.0,0 -47457723,"From Dust",play,4.9,0 -47457723,"Fallout 4",purchase,1.0,0 -47457723,"Fallout 4",play,4.9,0 -47457723,"The Forest",purchase,1.0,0 -47457723,"The Forest",play,4.6,0 -47457723,"Psychonauts",purchase,1.0,0 -47457723,"Psychonauts",play,4.5,0 -47457723,"Greed Corp",purchase,1.0,0 -47457723,"Greed Corp",play,4.4,0 -47457723,"Endless Space",purchase,1.0,0 -47457723,"Endless Space",play,4.2,0 -47457723,"Stronghold Crusader HD",purchase,1.0,0 -47457723,"Stronghold Crusader HD",play,4.1,0 -47457723,"Anomaly Warzone Earth",purchase,1.0,0 -47457723,"Anomaly Warzone Earth",play,4.1,0 -47457723,"Sam & Max 104 Abe Lincoln Must Die!",purchase,1.0,0 -47457723,"Sam & Max 104 Abe Lincoln Must Die!",play,4.0,0 -47457723,"Brtal Legend",purchase,1.0,0 -47457723,"Brtal Legend",play,4.0,0 -47457723,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -47457723,"Dark Messiah of Might & Magic Single Player",play,3.9,0 -47457723,"Star Wars Empire at War Gold",purchase,1.0,0 -47457723,"Star Wars Empire at War Gold",play,3.7,0 -47457723,"Dishonored",purchase,1.0,0 -47457723,"Dishonored",play,3.6,0 -47457723,"Command and Conquer 4 Tiberian Twilight",purchase,1.0,0 -47457723,"Command and Conquer 4 Tiberian Twilight",play,3.5,0 -47457723,"Battlefield 2",purchase,1.0,0 -47457723,"Battlefield 2",play,3.5,0 -47457723,"Medieval II Total War",purchase,1.0,0 -47457723,"Medieval II Total War",play,3.4,0 -47457723,"The Last Federation",purchase,1.0,0 -47457723,"The Last Federation",play,3.4,0 -47457723,"Aliens vs. Predator",purchase,1.0,0 -47457723,"Aliens vs. Predator",play,3.4,0 -47457723,"Kinetic Void",purchase,1.0,0 -47457723,"Kinetic Void",play,3.3,0 -47457723,"Space Trader Merchant Marine",purchase,1.0,0 -47457723,"Space Trader Merchant Marine",play,3.2,0 -47457723,"Nexus The Jupiter Incident",purchase,1.0,0 -47457723,"Nexus The Jupiter Incident",play,3.2,0 -47457723,"Crysis",purchase,1.0,0 -47457723,"Crysis",play,3.1,0 -47457723,"Stronghold 2",purchase,1.0,0 -47457723,"Stronghold 2",play,3.1,0 -47457723,"Heroes of Might & Magic V",purchase,1.0,0 -47457723,"Heroes of Might & Magic V",play,3.1,0 -47457723,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -47457723,"Back to the Future Ep 3 - Citizen Brown",play,3.0,0 -47457723,"Torchlight",purchase,1.0,0 -47457723,"Torchlight",play,3.0,0 -47457723,"Arma 2",purchase,1.0,0 -47457723,"Arma 2",play,3.0,0 -47457723,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -47457723,"RollerCoaster Tycoon 3 Platinum!",play,3.0,0 -47457723,"Space Engineers",purchase,1.0,0 -47457723,"Space Engineers",play,3.0,0 -47457723,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -47457723,"Back to the Future Ep 2 - Get Tannen!",play,3.0,0 -47457723,"Sanctum",purchase,1.0,0 -47457723,"Sanctum",play,2.8,0 -47457723,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -47457723,"Sid Meier's Civilization IV Warlords",play,2.8,0 -47457723,"Uplink",purchase,1.0,0 -47457723,"Uplink",play,2.7,0 -47457723,"Alien Isolation",purchase,1.0,0 -47457723,"Alien Isolation",play,2.7,0 -47457723,"Grand Theft Auto IV",purchase,1.0,0 -47457723,"Grand Theft Auto IV",play,2.7,0 -47457723,"Silent Hunter III",purchase,1.0,0 -47457723,"Silent Hunter III",play,2.7,0 -47457723,"The Chronicles of Riddick Assault on Dark Athena",purchase,1.0,0 -47457723,"The Chronicles of Riddick Assault on Dark Athena",play,2.6,0 -47457723,"Eets",purchase,1.0,0 -47457723,"Eets",play,2.6,0 -47457723,"Battle Group 2",purchase,1.0,0 -47457723,"Battle Group 2",play,2.6,0 -47457723,"Serious Sam HD The First Encounter",purchase,1.0,0 -47457723,"Serious Sam HD The First Encounter",play,2.6,0 -47457723,"Spore",purchase,1.0,0 -47457723,"Spore",play,2.5,0 -47457723,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -47457723,"Back to the Future Ep 5 - OUTATIME",play,2.4,0 -47457723,"Mount & Blade",purchase,1.0,0 -47457723,"Mount & Blade",play,2.4,0 -47457723,"Bad Rats",purchase,1.0,0 -47457723,"Bad Rats",play,2.4,0 -47457723,"The Walking Dead",purchase,1.0,0 -47457723,"The Walking Dead",play,2.4,0 -47457723,"Convoy",purchase,1.0,0 -47457723,"Convoy",play,2.2,0 -47457723,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -47457723,"Back to the Future Ep 4 - Double Visions",play,2.2,0 -47457723,"Coffin Dodgers",purchase,1.0,0 -47457723,"Coffin Dodgers",play,2.2,0 -47457723,"SimCity 4 Deluxe",purchase,1.0,0 -47457723,"SimCity 4 Deluxe",play,2.2,0 -47457723,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -47457723,"Back to the Future Ep 1 - It's About Time",play,2.2,0 -47457723,"Talisman Digital Edition",purchase,1.0,0 -47457723,"Talisman Digital Edition",play,2.1,0 -47457723,"Always Sometimes Monsters",purchase,1.0,0 -47457723,"Always Sometimes Monsters",play,1.9,0 -47457723,"Far Cry 2",purchase,1.0,0 -47457723,"Far Cry 2",play,1.9,0 -47457723,"BioShock Infinite",purchase,1.0,0 -47457723,"BioShock Infinite",play,1.9,0 -47457723,"StarDrive",purchase,1.0,0 -47457723,"StarDrive",play,1.8,0 -47457723,"Light of Altair",purchase,1.0,0 -47457723,"Light of Altair",play,1.8,0 -47457723,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -47457723,"Shadowrun Dragonfall - Director's Cut",play,1.7,0 -47457723,"Arma 2 DayZ Mod",purchase,1.0,0 -47457723,"Arma 2 DayZ Mod",play,1.6,0 -47457723,"Stacking",purchase,1.0,0 -47457723,"Stacking",play,1.5,0 -47457723,"Cities in Motion 2",purchase,1.0,0 -47457723,"Cities in Motion 2",play,1.5,0 -47457723,"Sid Meier's Railroads!",purchase,1.0,0 -47457723,"Sid Meier's Railroads!",play,1.5,0 -47457723,"Super Meat Boy",purchase,1.0,0 -47457723,"Super Meat Boy",play,1.5,0 -47457723,"Penumbra Overture",purchase,1.0,0 -47457723,"Penumbra Overture",play,1.4,0 -47457723,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -47457723,"Sonic & All-Stars Racing Transformed",play,1.4,0 -47457723,"Planet Explorers",purchase,1.0,0 -47457723,"Planet Explorers",play,1.4,0 -47457723,"Front Mission Evolved",purchase,1.0,0 -47457723,"Front Mission Evolved",play,1.4,0 -47457723,"BIT.TRIP RUNNER",purchase,1.0,0 -47457723,"BIT.TRIP RUNNER",play,1.4,0 -47457723,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -47457723,"Unreal Tournament 3 Black Edition",play,1.3,0 -47457723,"Wildlife Park 3",purchase,1.0,0 -47457723,"Wildlife Park 3",play,1.3,0 -47457723,"Batman Arkham City GOTY",purchase,1.0,0 -47457723,"Batman Arkham City GOTY",play,1.3,0 -47457723,"A Valley Without Wind",purchase,1.0,0 -47457723,"A Valley Without Wind",play,1.3,0 -47457723,"Blackguards",purchase,1.0,0 -47457723,"Blackguards",play,1.3,0 -47457723,"AI War Fleet Command",purchase,1.0,0 -47457723,"AI War Fleet Command",play,1.3,0 -47457723,"The Bard's Tale",purchase,1.0,0 -47457723,"The Bard's Tale",play,1.2,0 -47457723,"Realms of Arkania 3 - Shadows over Riva Classic",purchase,1.0,0 -47457723,"Realms of Arkania 3 - Shadows over Riva Classic",play,1.2,0 -47457723,"RPG Maker VX Ace",purchase,1.0,0 -47457723,"RPG Maker VX Ace",play,1.2,0 -47457723,"Homeworld Remastered Collection",purchase,1.0,0 -47457723,"Homeworld Remastered Collection",play,1.2,0 -47457723,"Krater",purchase,1.0,0 -47457723,"Krater",play,1.1,0 -47457723,"RAGE",purchase,1.0,0 -47457723,"RAGE",play,1.1,0 -47457723,"Dead Space",purchase,1.0,0 -47457723,"Dead Space",play,1.0,0 -47457723,"Dino D-Day",purchase,1.0,0 -47457723,"Dino D-Day",play,1.0,0 -47457723,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -47457723,"Resident Evil 5 / Biohazard 5",play,1.0,0 -47457723,"Just Cause",purchase,1.0,0 -47457723,"Just Cause",play,0.9,0 -47457723,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -47457723,"Batman Arkham Asylum GOTY Edition",play,0.9,0 -47457723,"BIT.TRIP BEAT",purchase,1.0,0 -47457723,"BIT.TRIP BEAT",play,0.9,0 -47457723,"STAR WARS X-Wing Alliance",purchase,1.0,0 -47457723,"STAR WARS X-Wing Alliance",play,0.9,0 -47457723,"Frontlines Fuel of War",purchase,1.0,0 -47457723,"Frontlines Fuel of War",play,0.9,0 -47457723,"Game of Thrones ",purchase,1.0,0 -47457723,"Game of Thrones ",play,0.9,0 -47457723,"Reus",purchase,1.0,0 -47457723,"Reus",play,0.8,0 -47457723,"Cities XL Platinum",purchase,1.0,0 -47457723,"Cities XL Platinum",play,0.8,0 -47457723,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -47457723,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,0.8,0 -47457723,"Worms Crazy Golf",purchase,1.0,0 -47457723,"Worms Crazy Golf",play,0.8,0 -47457723,"Jumpdrive",purchase,1.0,0 -47457723,"Jumpdrive",play,0.8,0 -47457723,"Digital Combat Simulator A-10C Warthog",purchase,1.0,0 -47457723,"Digital Combat Simulator A-10C Warthog",play,0.8,0 -47457723,"Imperium Romanum Gold Edition",purchase,1.0,0 -47457723,"Imperium Romanum Gold Edition",play,0.7,0 -47457723,"Overlord Raising Hell",purchase,1.0,0 -47457723,"Overlord Raising Hell",play,0.7,0 -47457723,"Planetary Annihilation",purchase,1.0,0 -47457723,"Planetary Annihilation",play,0.7,0 -47457723,"Portal",purchase,1.0,0 -47457723,"Portal",play,0.7,0 -47457723,"Cortex Command",purchase,1.0,0 -47457723,"Cortex Command",play,0.7,0 -47457723,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -47457723,"Galactic Civilizations II Ultimate Edition",play,0.7,0 -47457723,"Company of Heroes",purchase,1.0,0 -47457723,"Company of Heroes",play,0.7,0 -47457723,"BioShock 2",purchase,1.0,0 -47457723,"BioShock 2",play,0.7,0 -47457723,"Half-Life 2 Lost Coast",purchase,1.0,0 -47457723,"Half-Life 2 Lost Coast",play,0.6,0 -47457723,"Section 8",purchase,1.0,0 -47457723,"Section 8",play,0.6,0 -47457723,"Oil Rush",purchase,1.0,0 -47457723,"Oil Rush",play,0.6,0 -47457723,"1701 A.D. Sunken Dragon",purchase,1.0,0 -47457723,"1701 A.D. Sunken Dragon",play,0.6,0 -47457723,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -47457723,"Sam & Max 301 The Penal Zone",play,0.6,0 -47457723,"Wasteland 2",purchase,1.0,0 -47457723,"Wasteland 2",play,0.6,0 -47457723,"Deus Ex Game of the Year Edition",purchase,1.0,0 -47457723,"Deus Ex Game of the Year Edition",play,0.6,0 -47457723,"DCS World",purchase,1.0,0 -47457723,"DCS World",play,0.6,0 -47457723,"IL-2 Sturmovik 1946",purchase,1.0,0 -47457723,"IL-2 Sturmovik 1946",play,0.6,0 -47457723,"Tom Clancy's Splinter Cell",purchase,1.0,0 -47457723,"Tom Clancy's Splinter Cell",play,0.5,0 -47457723,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -47457723,"Star Wars Jedi Knight Jedi Academy",play,0.5,0 -47457723,"Galaxy on Fire 2 Full HD",purchase,1.0,0 -47457723,"Galaxy on Fire 2 Full HD",play,0.5,0 -47457723,"Take On Helicopters",purchase,1.0,0 -47457723,"Take On Helicopters",play,0.5,0 -47457723,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -47457723,"STAR WARS Knights of the Old Republic II The Sith Lords",play,0.5,0 -47457723,"ENSLAVED Odyssey to the West Premium Edition",purchase,1.0,0 -47457723,"ENSLAVED Odyssey to the West Premium Edition",play,0.5,0 -47457723,"Maelstrom",purchase,1.0,0 -47457723,"Maelstrom",play,0.5,0 -47457723,"Contagion",purchase,1.0,0 -47457723,"Contagion",play,0.5,0 -47457723,"Half-Life 2 Episode Two",purchase,1.0,0 -47457723,"Half-Life 2 Episode Two",play,0.5,0 -47457723,"Titan Quest",purchase,1.0,0 -47457723,"Titan Quest",play,0.5,0 -47457723,"Stranded Deep",purchase,1.0,0 -47457723,"Stranded Deep",play,0.5,0 -47457723,"Fieldrunners",purchase,1.0,0 -47457723,"Fieldrunners",play,0.4,0 -47457723,"Randal's Monday",purchase,1.0,0 -47457723,"Randal's Monday",play,0.4,0 -47457723,"Dota 2",purchase,1.0,0 -47457723,"Dota 2",play,0.4,0 -47457723,"Wargame European Escalation",purchase,1.0,0 -47457723,"Wargame European Escalation",play,0.4,0 -47457723,"Overlord II",purchase,1.0,0 -47457723,"Overlord II",play,0.4,0 -47457723,"Star Wars Starfighter",purchase,1.0,0 -47457723,"Star Wars Starfighter",play,0.4,0 -47457723,"Homefront",purchase,1.0,0 -47457723,"Homefront",play,0.4,0 -47457723,"DOOM 3",purchase,1.0,0 -47457723,"DOOM 3",play,0.4,0 -47457723,"AR-K",purchase,1.0,0 -47457723,"AR-K",play,0.4,0 -47457723,"Meridian New World",purchase,1.0,0 -47457723,"Meridian New World",play,0.4,0 -47457723,"Mount & Blade With Fire and Sword",purchase,1.0,0 -47457723,"Mount & Blade With Fire and Sword",play,0.4,0 -47457723,"Outcast 1.1",purchase,1.0,0 -47457723,"Outcast 1.1",play,0.4,0 -47457723,"Legendary",purchase,1.0,0 -47457723,"Legendary",play,0.4,0 -47457723,"Long Live The Queen",purchase,1.0,0 -47457723,"Long Live The Queen",play,0.4,0 -47457723,"Alpha Protocol",purchase,1.0,0 -47457723,"Alpha Protocol",play,0.4,0 -47457723,"Medieval II Total War Kingdoms",purchase,1.0,0 -47457723,"Medieval II Total War Kingdoms",play,0.4,0 -47457723,"Half-Life 2 Episode One",purchase,1.0,0 -47457723,"Half-Life 2 Episode One",play,0.3,0 -47457723,"Serious Sam 3 BFE",purchase,1.0,0 -47457723,"Serious Sam 3 BFE",play,0.3,0 -47457723,"Warlock - Master of the Arcane",purchase,1.0,0 -47457723,"Warlock - Master of the Arcane",play,0.3,0 -47457723,"The Void",purchase,1.0,0 -47457723,"The Void",play,0.3,0 -47457723,"Saints Row Gat out of Hell",purchase,1.0,0 -47457723,"Saints Row Gat out of Hell",play,0.3,0 -47457723,"Chrome",purchase,1.0,0 -47457723,"Chrome",play,0.3,0 -47457723,"AquaNox",purchase,1.0,0 -47457723,"AquaNox",play,0.3,0 -47457723,"Worms Revolution",purchase,1.0,0 -47457723,"Worms Revolution",play,0.3,0 -47457723,"Madballs in...Babo Invasion",purchase,1.0,0 -47457723,"Madballs in...Babo Invasion",play,0.3,0 -47457723,"Worms Armageddon",purchase,1.0,0 -47457723,"Worms Armageddon",play,0.3,0 -47457723,"Kill The Bad Guy",purchase,1.0,0 -47457723,"Kill The Bad Guy",play,0.3,0 -47457723,"Quake 4",purchase,1.0,0 -47457723,"Quake 4",play,0.3,0 -47457723,"Stormrise",purchase,1.0,0 -47457723,"Stormrise",play,0.3,0 -47457723,"Revenge of the Titans",purchase,1.0,0 -47457723,"Revenge of the Titans",play,0.3,0 -47457723,"King Arthur - The Role-playing Wargame",purchase,1.0,0 -47457723,"King Arthur - The Role-playing Wargame",play,0.2,0 -47457723,"Gothic II Gold Edition",purchase,1.0,0 -47457723,"Gothic II Gold Edition",play,0.2,0 -47457723,"Star Ruler",purchase,1.0,0 -47457723,"Star Ruler",play,0.2,0 -47457723,"Leviathan Warships",purchase,1.0,0 -47457723,"Leviathan Warships",play,0.2,0 -47457723,"Metro Last Light",purchase,1.0,0 -47457723,"Metro Last Light",play,0.2,0 -47457723,"Space Siege",purchase,1.0,0 -47457723,"Space Siege",play,0.2,0 -47457723,"X3 Reunion",purchase,1.0,0 -47457723,"X3 Reunion",play,0.2,0 -47457723,"Hammerwatch",purchase,1.0,0 -47457723,"Hammerwatch",play,0.2,0 -47457723,"King's Bounty The Legend",purchase,1.0,0 -47457723,"King's Bounty The Legend",play,0.2,0 -47457723,"Enclave",purchase,1.0,0 -47457723,"Enclave",play,0.2,0 -47457723,"7 Days to Die",purchase,1.0,0 -47457723,"7 Days to Die",play,0.2,0 -47457723,"Natural Selection 2",purchase,1.0,0 -47457723,"Natural Selection 2",play,0.2,0 -47457723,"Worms Ultimate Mayhem",purchase,1.0,0 -47457723,"Worms Ultimate Mayhem",play,0.2,0 -47457723,"Tom Clancy's Ghost Recon Advanced Warfighter 2",purchase,1.0,0 -47457723,"Tom Clancy's Ghost Recon Advanced Warfighter 2",play,0.2,0 -47457723,"Genesis Rising",purchase,1.0,0 -47457723,"Genesis Rising",play,0.2,0 -47457723,"Arma 2 Operation Arrowhead",purchase,1.0,0 -47457723,"Arma 2 Operation Arrowhead",play,0.2,0 -47457723,"Legend of Grimrock",purchase,1.0,0 -47457723,"Legend of Grimrock",play,0.2,0 -47457723,"ORION Prelude",purchase,1.0,0 -47457723,"ORION Prelude",play,0.2,0 -47457723,"East India Company Gold",purchase,1.0,0 -47457723,"East India Company Gold",play,0.2,0 -47457723,"Carrier Command Gaea Mission",purchase,1.0,0 -47457723,"Carrier Command Gaea Mission",play,0.2,0 -47457723,"Fractured Space",purchase,1.0,0 -47457723,"Fractured Space",play,0.2,0 -47457723,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -47457723,"Star Wars - Jedi Knight II Jedi Outcast",play,0.2,0 -47457723,"Spore Creepy & Cute Parts Pack",purchase,1.0,0 -47457723,"Spore Creepy & Cute Parts Pack",play,0.2,0 -47457723,"Gothic 3 Forsaken Gods Enhanced Edition",purchase,1.0,0 -47457723,"Gothic 3 Forsaken Gods Enhanced Edition",play,0.2,0 -47457723,"The 7th Guest",purchase,1.0,0 -47457723,"The 7th Guest",play,0.2,0 -47457723,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -47457723,"Grand Theft Auto Episodes from Liberty City",play,0.2,0 -47457723,"Star Wars - Battlefront II",purchase,1.0,0 -47457723,"Star Wars - Battlefront II",play,0.2,0 -47457723,"F.E.A.R.",purchase,1.0,0 -47457723,"F.E.A.R.",play,0.2,0 -47457723,"Lone Survivor The Director's Cut",purchase,1.0,0 -47457723,"Lone Survivor The Director's Cut",play,0.2,0 -47457723,"Anachronox",purchase,1.0,0 -47457723,"Anachronox",play,0.1,0 -47457723,"Habitat",purchase,1.0,0 -47457723,"Habitat",play,0.1,0 -47457723,"Supreme Commander",purchase,1.0,0 -47457723,"Supreme Commander",play,0.1,0 -47457723,"Dungeonland",purchase,1.0,0 -47457723,"Dungeonland",play,0.1,0 -47457723,"StarForge",purchase,1.0,0 -47457723,"StarForge",play,0.1,0 -47457723,"Mirror's Edge",purchase,1.0,0 -47457723,"Mirror's Edge",play,0.1,0 -47457723,"Icewind Dale Enhanced Edition",purchase,1.0,0 -47457723,"Icewind Dale Enhanced Edition",play,0.1,0 -47457723,"Europa Universalis III",purchase,1.0,0 -47457723,"Europa Universalis III",play,0.1,0 -47457723,"Chrome Specforce",purchase,1.0,0 -47457723,"Chrome Specforce",play,0.1,0 -47457723,"Deus Ex Invisible War",purchase,1.0,0 -47457723,"Deus Ex Invisible War",play,0.1,0 -47457723,"Aliens versus Predator Classic 2000",purchase,1.0,0 -47457723,"Aliens versus Predator Classic 2000",play,0.1,0 -47457723,"UFO Afterlight",purchase,1.0,0 -47457723,"UFO Afterlight",play,0.1,0 -47457723,"X Rebirth",purchase,1.0,0 -47457723,"DOOM 3 BFG Edition",purchase,1.0,0 -47457723,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -47457723,"Spore Galactic Adventures",purchase,1.0,0 -47457723,"GameGuru",purchase,1.0,0 -47457723,"Fallout",purchase,1.0,0 -47457723,"Daikatana",purchase,1.0,0 -47457723,"Interplanetary",purchase,1.0,0 -47457723,"Binary Domain",purchase,1.0,0 -47457723,"Magnifico",purchase,1.0,0 -47457723,"Avadon The Black Fortress",purchase,1.0,0 -47457723,"HOARD",purchase,1.0,0 -47457723,"DOOM 3 Resurrection of Evil",purchase,1.0,0 -47457723,"1701 A.D. Gold Edition",purchase,1.0,0 -47457723,"Banished",purchase,1.0,0 -47457723,"Beyond Good & Evil",purchase,1.0,0 -47457723,"CONSORTIUM",purchase,1.0,0 -47457723,"I Have No Mouth, and I Must Scream",purchase,1.0,0 -47457723,"Realms of Arkania 1 - Blade of Destiny Classic",purchase,1.0,0 -47457723,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -47457723,"Risen 2 - Dark Waters",purchase,1.0,0 -47457723,"Game Character Hub",purchase,1.0,0 -47457723,"The Dark Eye Chains of Satinav",purchase,1.0,0 -47457723,"Wasteland 1 - The Original Classic",purchase,1.0,0 -47457723,"X3 Terran Conflict",purchase,1.0,0 -47457723,"Dragon Age Origins - Awakening",purchase,1.0,0 -47457723,"Geneforge 1",purchase,1.0,0 -47457723,"Intrusion 2",purchase,1.0,0 -47457723,"X-COM Terror from the Deep",purchase,1.0,0 -47457723,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -47457723,"Sid Meier's Civilization III Complete",purchase,1.0,0 -47457723,"Sword of the Stars The Pit",purchase,1.0,0 -47457723,"Gothic",purchase,1.0,0 -47457723,"X-COM Apocalypse",purchase,1.0,0 -47457723,"ACE COMBAT ASSAULT HORIZON Enhanced Edition",purchase,1.0,0 -47457723,"Air Conflicts Pacific Carriers",purchase,1.0,0 -47457723,"Albedo Eyes from Outer Space",purchase,1.0,0 -47457723,"Alien Breed 2 Assault",purchase,1.0,0 -47457723,"Alien Breed 3 Descent",purchase,1.0,0 -47457723,"Alien Breed Impact",purchase,1.0,0 -47457723,"Alpha Prime",purchase,1.0,0 -47457723,"Amnesia The Dark Descent",purchase,1.0,0 -47457723,"Analogue A Hate Story",purchase,1.0,0 -47457723,"And Yet It Moves",purchase,1.0,0 -47457723,"A New Beginning - Final Cut",purchase,1.0,0 -47457723,"AquaNox 2 Revelation",purchase,1.0,0 -47457723,"ArcaniA Fall of Setarrif",purchase,1.0,0 -47457723,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -47457723,"Arma Gold Edition",purchase,1.0,0 -47457723,"Arma Tactics",purchase,1.0,0 -47457723,"Arx Fatalis",purchase,1.0,0 -47457723,"Atom Zombie Smasher ",purchase,1.0,0 -47457723,"A Valley Without Wind 2",purchase,1.0,0 -47457723,"Avernum 4",purchase,1.0,0 -47457723,"Avernum 5",purchase,1.0,0 -47457723,"Avernum 6",purchase,1.0,0 -47457723,"Avernum Escape From the Pit",purchase,1.0,0 -47457723,"Blades of Time",purchase,1.0,0 -47457723,"Blood Bowl Legendary Edition",purchase,1.0,0 -47457723,"Borderlands 2 RU",purchase,1.0,0 -47457723,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -47457723,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -47457723,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -47457723,"Braid",purchase,1.0,0 -47457723,"Bridge Project",purchase,1.0,0 -47457723,"Cogs",purchase,1.0,0 -47457723,"Commandos 2 Men of Courage",purchase,1.0,0 -47457723,"Commandos 3 Destination Berlin",purchase,1.0,0 -47457723,"Commandos Behind Enemy Lines",purchase,1.0,0 -47457723,"Commandos Beyond the Call of Duty",purchase,1.0,0 -47457723,"Company of Heroes (New Steam Version)",purchase,1.0,0 -47457723,"Company of Heroes Opposing Fronts",purchase,1.0,0 -47457723,"Company of Heroes Tales of Valor",purchase,1.0,0 -47457723,"Confrontation",purchase,1.0,0 -47457723,"Consortium Soundtrack and Discoveries",purchase,1.0,0 -47457723,"Costume Quest",purchase,1.0,0 -47457723,"Crayon Physics Deluxe",purchase,1.0,0 -47457723,"Crysis 2 Maximum Edition",purchase,1.0,0 -47457723,"Crysis Warhead",purchase,1.0,0 -47457723,"Crysis Wars",purchase,1.0,0 -47457723,"Darksiders",purchase,1.0,0 -47457723,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -47457723,"Deadly Premonition The Director's Cut",purchase,1.0,0 -47457723,"Deadly Sin 2",purchase,1.0,0 -47457723,"DeathSpank",purchase,1.0,0 -47457723,"DeathSpank Thongs Of Virtue",purchase,1.0,0 -47457723,"Defense Grid Resurgence Map Pack 1",purchase,1.0,0 -47457723,"Deponia",purchase,1.0,0 -47457723,"Dev Guy",purchase,1.0,0 -47457723,"Dismal Swamp DLC",purchase,1.0,0 -47457723,"Dungeonland - All access pass",purchase,1.0,0 -47457723,"Dungeons of Dredmor",purchase,1.0,0 -47457723,"Edna & Harvey Harvey's New Eyes",purchase,1.0,0 -47457723,"Euro Truck Simulator",purchase,1.0,0 -47457723,"Euro Truck Simulator 2",purchase,1.0,0 -47457723,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -47457723,"F.E.A.R. 3",purchase,1.0,0 -47457723,"F.E.A.R. Extraction Point",purchase,1.0,0 -47457723,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -47457723,"Fallout 2",purchase,1.0,0 -47457723,"Fallout New Vegas Dead Money",purchase,1.0,0 -47457723,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -47457723,"Fallout Tactics",purchase,1.0,0 -47457723,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -47457723,"Garry's Mod",purchase,1.0,0 -47457723,"Geneforge 2",purchase,1.0,0 -47457723,"Geneforge 3",purchase,1.0,0 -47457723,"Geneforge 4",purchase,1.0,0 -47457723,"Geneforge 5",purchase,1.0,0 -47457723,"GRID 2",purchase,1.0,0 -47457723,"Guardians of Middle-earth",purchase,1.0,0 -47457723,"Hack, Slash, Loot",purchase,1.0,0 -47457723,"Half-Life 2 Deathmatch",purchase,1.0,0 -47457723,"Hammerfight",purchase,1.0,0 -47457723,"Harvester",purchase,1.0,0 -47457723,"Hector Ep 1",purchase,1.0,0 -47457723,"Hector Ep 2",purchase,1.0,0 -47457723,"Hector Ep 3",purchase,1.0,0 -47457723,"Hitman 2 Silent Assassin",purchase,1.0,0 -47457723,"Hitman Codename 47",purchase,1.0,0 -47457723,"Insurgency",purchase,1.0,0 -47457723,"Jamestown",purchase,1.0,0 -47457723,"Journey of a Roach",purchase,1.0,0 -47457723,"Jurassic Park The Game",purchase,1.0,0 -47457723,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -47457723,"King's Bounty Armored Princess",purchase,1.0,0 -47457723,"King's Bounty Crossworlds",purchase,1.0,0 -47457723,"King Arthur The Saxons",purchase,1.0,0 -47457723,"Knights and Merchants",purchase,1.0,0 -47457723,"KnightShift",purchase,1.0,0 -47457723,"Legionwood 2 Rise of the Eternal's Realm",purchase,1.0,0 -47457723,"LIMBO",purchase,1.0,0 -47457723,"Limited Edition",purchase,1.0,0 -47457723,"Lost Planet 3",purchase,1.0,0 -47457723,"Machinarium",purchase,1.0,0 -47457723,"Magicka Vietnam",purchase,1.0,0 -47457723,"Magicka Wizard's Survival Kit",purchase,1.0,0 -47457723,"Men of War Red Tide",purchase,1.0,0 -47457723,"Microsoft Flight Simulator X Steam Edition",purchase,1.0,0 -47457723,"Mini Ninjas",purchase,1.0,0 -47457723,"Mortal Kombat Kollection",purchase,1.0,0 -47457723,"Nethergate Resurrection",purchase,1.0,0 -47457723,"On the Rain-Slick Precipice of Darkness, Episode One",purchase,1.0,0 -47457723,"On the Rain-Slick Precipice of Darkness, Episode Two",purchase,1.0,0 -47457723,"Orcs Must Die!",purchase,1.0,0 -47457723,"Orcs Must Die! 2",purchase,1.0,0 -47457723,"Osmos",purchase,1.0,0 -47457723,"Outlast",purchase,1.0,0 -47457723,"Paranautical Activity Deluxe Atonement Edition",purchase,1.0,0 -47457723,"Penumbra Black Plague",purchase,1.0,0 -47457723,"Penumbra Requiem",purchase,1.0,0 -47457723,"Project Aftermath",purchase,1.0,0 -47457723,"Psychonauts Demo",purchase,1.0,0 -47457723,"Puzzle Agent",purchase,1.0,0 -47457723,"Puzzle Agent 2",purchase,1.0,0 -47457723,"RADical ROACH Deluxe Edition",purchase,1.0,0 -47457723,"RAW - Realms of Ancient War",purchase,1.0,0 -47457723,"Realms of Arkania 2 - Star Trail Classic",purchase,1.0,0 -47457723,"Receiver",purchase,1.0,0 -47457723,"Renegade Ops",purchase,1.0,0 -47457723,"Rome Total War - Alexander",purchase,1.0,0 -47457723,"RPG Maker Futuristic Tiles Resource Pack",purchase,1.0,0 -47457723,"RPG Maker High Fantasy Main Party Pack 1",purchase,1.0,0 -47457723,"RPG Maker Royal Tiles Resource Pack",purchase,1.0,0 -47457723,"RPG Maker Rural Farm Tiles Resource Pack",purchase,1.0,0 -47457723,"RPG Maker Tyler Warren First 50 Battler Pack",purchase,1.0,0 -47457723,"RPG Maker Tyler Warren RPG Battlers 2nd 50",purchase,1.0,0 -47457723,"RPG Maker Zombie Survival Graphic Pack",purchase,1.0,0 -47457723,"RPG Maker XP",purchase,1.0,0 -47457723,"RUNNING WITH RIFLES",purchase,1.0,0 -47457723,"Rust",purchase,1.0,0 -47457723,"Sacred 2 Gold",purchase,1.0,0 -47457723,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -47457723,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -47457723,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -47457723,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -47457723,"Sanctum 2",purchase,1.0,0 -47457723,"Scribblenauts Unlimited",purchase,1.0,0 -47457723,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -47457723,"Shadow Man",purchase,1.0,0 -47457723,"Shadowrun Dragonfall",purchase,1.0,0 -47457723,"Shadow Warrior Classic Redux",purchase,1.0,0 -47457723,"Shattered Haven",purchase,1.0,0 -47457723,"Sid Meier's Ace Patrol",purchase,1.0,0 -47457723,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -47457723,"Sid Meier's Civilization IV",purchase,1.0,0 -47457723,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -47457723,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -47457723,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -47457723,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -47457723,"Sid Meier's Pirates!",purchase,1.0,0 -47457723,"Skyborn",purchase,1.0,0 -47457723,"Sniper Elite V2",purchase,1.0,0 -47457723,"SolForge",purchase,1.0,0 -47457723,"SpaceChem",purchase,1.0,0 -47457723,"Spec Ops The Line",purchase,1.0,0 -47457723,"SpellForce 2 Gold Edition",purchase,1.0,0 -47457723,"SpellForce Platinum Edition",purchase,1.0,0 -47457723,"Spirits",purchase,1.0,0 -47457723,"Starbound - Unstable",purchase,1.0,0 -47457723,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -47457723,"Star Wars Dark Forces",purchase,1.0,0 -47457723,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -47457723,"Star Wolves 2",purchase,1.0,0 -47457723,"Steel Storm Burning Retribution",purchase,1.0,0 -47457723,"Stronghold Crusader Extreme HD",purchase,1.0,0 -47457723,"Stronghold HD",purchase,1.0,0 -47457723,"Stronghold Legends",purchase,1.0,0 -47457723,"Superfrog HD",purchase,1.0,0 -47457723,"Supreme Commander 2 - Infinite War Battle Pack One",purchase,1.0,0 -47457723,"Supreme Commander Forged Alliance",purchase,1.0,0 -47457723,"Sweet Lily Dreams",purchase,1.0,0 -47457723,"Sword of the Stars The Pit - Mind Games",purchase,1.0,0 -47457723,"Sword of the Stars The Pit Gold DLC",purchase,1.0,0 -47457723,"Talisman Prologue",purchase,1.0,0 -47457723,"Teleglitch Die More Edition",purchase,1.0,0 -47457723,"Tesla Effect",purchase,1.0,0 -47457723,"The 11th Hour",purchase,1.0,0 -47457723,"The Baconing",purchase,1.0,0 -47457723,"The Binding of Isaac",purchase,1.0,0 -47457723,"The Book of Legends",purchase,1.0,0 -47457723,"The Bureau XCOM Declassified",purchase,1.0,0 -47457723,"The Darkness II",purchase,1.0,0 -47457723,"The Lord of the Rings War in the North",purchase,1.0,0 -47457723,"The Showdown Effect",purchase,1.0,0 -47457723,"The Whispered World",purchase,1.0,0 -47457723,"The Whispered World Special Edition",purchase,1.0,0 -47457723,"Thief Gold",purchase,1.0,0 -47457723,"Thunder Wolves",purchase,1.0,0 -47457723,"Tidalis",purchase,1.0,0 -47457723,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -47457723,"Titan Quest Immortal Throne",purchase,1.0,0 -47457723,"Tom Clancy's Splinter Cell Double Agent",purchase,1.0,0 -47457723,"To the Moon",purchase,1.0,0 -47457723,"Trainz Simulator 12",purchase,1.0,0 -47457723,"Trine",purchase,1.0,0 -47457723,"Two Worlds 2 - Pirates of the Flying Fortress ",purchase,1.0,0 -47457723,"Universe Sandbox",purchase,1.0,0 -47457723,"Victory At Sea",purchase,1.0,0 -47457723,"VVVVVV",purchase,1.0,0 -47457723,"Wallace & Gromit Ep 1 Fright of the Bumblebees",purchase,1.0,0 -47457723,"Wallace & Gromit Ep 2 The Last Resort",purchase,1.0,0 -47457723,"Wallace & Gromit Ep 3 Muzzled!",purchase,1.0,0 -47457723,"Wallace & Gromit Ep 4 The Bogey Man",purchase,1.0,0 -47457723,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -47457723,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -47457723,"War of the Roses",purchase,1.0,0 -47457723,"War of the Roses Kingmaker",purchase,1.0,0 -47457723,"War of the Roses Balance Beta",purchase,1.0,0 -47457723,"Wasteland 2 Director's Cut",purchase,1.0,0 -47457723,"Wizardry 6 Bane of the Cosmic Forge",purchase,1.0,0 -47457723,"Wizardry 7 Crusaders of the Dark Savant",purchase,1.0,0 -47457723,"Wizardry 8",purchase,1.0,0 -47457723,"Wizorb",purchase,1.0,0 -47457723,"Worms Blast",purchase,1.0,0 -47457723,"Worms Pinball",purchase,1.0,0 -47457723,"X-COM Enforcer",purchase,1.0,0 -47457723,"X-COM Interceptor",purchase,1.0,0 -47457723,"X-COM UFO Defense",purchase,1.0,0 -129966650,"Arma 2 Operation Arrowhead",purchase,1.0,0 -129966650,"Arma 2 Operation Arrowhead",play,563.0,0 -129966650,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -129966650,"Rising Storm/Red Orchestra 2 Multiplayer",play,32.0,0 -129966650,"Garry's Mod",purchase,1.0,0 -129966650,"Garry's Mod",play,13.8,0 -129966650,"Far Cry",purchase,1.0,0 -129966650,"Far Cry",play,13.7,0 -129966650,"Battlefield Bad Company 2",purchase,1.0,0 -129966650,"Battlefield Bad Company 2",play,12.8,0 -129966650,"Arma 2",purchase,1.0,0 -129966650,"Arma 2",play,9.7,0 -129966650,"Dead Island",purchase,1.0,0 -129966650,"Dead Island",play,9.4,0 -129966650,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -129966650,"Arma 2 Operation Arrowhead Beta (Obsolete)",play,8.5,0 -129966650,"Heroes & Generals",purchase,1.0,0 -129966650,"Heroes & Generals",play,3.2,0 -129966650,"Arma 2 DayZ Mod",purchase,1.0,0 -129966650,"Arma 2 DayZ Mod",play,0.8,0 -129966650,"Arma 2 Private Military Company",purchase,1.0,0 -129966650,"Arma 2 Private Military Company",play,0.5,0 -129966650,"Arma 2 British Armed Forces",purchase,1.0,0 -129966650,"DCS World",purchase,1.0,0 -129966650,"Dead Island Riptide",purchase,1.0,0 -129966650,"Iron Front D-Day DLC",purchase,1.0,0 -243309251,"Team Fortress 2",purchase,1.0,0 -243309251,"Team Fortress 2",play,18.8,0 -243309251,"Haunted Memories",purchase,1.0,0 -243309251,"Haunted Memories",play,1.8,0 -243309251,"BLOCKADE 3D",purchase,1.0,0 -243309251,"BLOCKADE 3D",play,1.0,0 -300454826,"WRC 5",purchase,1.0,0 -300454826,"WRC 5",play,4.3,0 -77163444,"Worms Reloaded",purchase,1.0,0 -93300963,"Dota 2",purchase,1.0,0 -93300963,"Dota 2",play,776.0,0 -93300963,"Left 4 Dead 2",purchase,1.0,0 -93300963,"Left 4 Dead 2",play,32.0,0 -93300963,"Scribblenauts Unlimited",purchase,1.0,0 -93300963,"Scribblenauts Unlimited",play,22.0,0 -93300963,"Metro 2033",purchase,1.0,0 -93300963,"Metro 2033",play,17.4,0 -93300963,"Mafia II",purchase,1.0,0 -93300963,"Mafia II",play,11.3,0 -93300963,"Team Fortress 2",purchase,1.0,0 -93300963,"Team Fortress 2",play,4.7,0 -93300963,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -93300963,"F.E.A.R. 2 Project Origin",play,1.5,0 -93300963,"Mortal Kombat Kollection",purchase,1.0,0 -93300963,"Mortal Kombat Kollection",play,1.2,0 -93300963,"Warface",purchase,1.0,0 -93300963,"Warface",play,0.7,0 -93300963,"Borderlands",purchase,1.0,0 -93300963,"Borderlands",play,0.7,0 -93300963,"Amnesia The Dark Descent",purchase,1.0,0 -93300963,"Anomaly Warzone Earth",purchase,1.0,0 -93300963,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -93300963,"Batman Arkham City GOTY",purchase,1.0,0 -93300963,"BioShock",purchase,1.0,0 -93300963,"BioShock 2",purchase,1.0,0 -93300963,"BioShock Infinite",purchase,1.0,0 -93300963,"Canyon Capers",purchase,1.0,0 -93300963,"Deadbreed",purchase,1.0,0 -93300963,"Deadbreed Undertaker Beta Pack",purchase,1.0,0 -93300963,"Dead Island Epidemic",purchase,1.0,0 -93300963,"Dead Space",purchase,1.0,0 -93300963,"Dino D-Day",purchase,1.0,0 -93300963,"Enclave",purchase,1.0,0 -93300963,"F.E.A.R.",purchase,1.0,0 -93300963,"F.E.A.R. 3",purchase,1.0,0 -93300963,"F.E.A.R. Extraction Point",purchase,1.0,0 -93300963,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -93300963,"GTR Evolution",purchase,1.0,0 -93300963,"Guardians of Middle-earth",purchase,1.0,0 -93300963,"Gun Monkeys",purchase,1.0,0 -93300963,"Loadout",purchase,1.0,0 -93300963,"NBA 2K9",purchase,1.0,0 -93300963,"Nosgoth",purchase,1.0,0 -93300963,"PAYDAY The Heist",purchase,1.0,0 -93300963,"Pid ",purchase,1.0,0 -93300963,"RACE 07",purchase,1.0,0 -93300963,"RaceRoom Racing Experience ",purchase,1.0,0 -93300963,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -93300963,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -93300963,"Sniper Elite V2",purchase,1.0,0 -93300963,"SpaceChem",purchase,1.0,0 -93300963,"Space Hack",purchase,1.0,0 -93300963,"The Lord of the Rings War in the North",purchase,1.0,0 -93300963,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -93300963,"Warlock - Master of the Arcane",purchase,1.0,0 -93300963,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -93300963,"Woodle Tree Adventures",purchase,1.0,0 -240206639,"Dota 2",purchase,1.0,0 -240206639,"Dota 2",play,112.0,0 -199134483,"The Walking Dead Season Two",purchase,1.0,0 -199134483,"The Walking Dead Season Two",play,10.7,0 -199134483,"LEGO MARVEL Super Heroes",purchase,1.0,0 -199134483,"LEGO MARVEL Super Heroes",play,7.0,0 -94689795,"Counter-Strike",purchase,1.0,0 -94689795,"Counter-Strike",play,53.0,0 -94689795,"Counter-Strike Source",purchase,1.0,0 -94689795,"Counter-Strike Source",play,5.7,0 -94689795,"Counter-Strike Condition Zero",purchase,1.0,0 -94689795,"Counter-Strike Condition Zero",play,0.4,0 -94689795,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -269708364,"Team Fortress 2",purchase,1.0,0 -269708364,"Team Fortress 2",play,6.3,0 -176261926,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -176261926,"Sid Meier's Civilization IV Beyond the Sword",play,564.0,0 -176261926,"Sid Meier's Civilization IV",purchase,1.0,0 -176261926,"Sid Meier's Civilization IV",play,14.6,0 -176261926,"SpaceChem",purchase,1.0,0 -176261926,"SpaceChem",play,2.4,0 -176261926,"South Park The Stick of Truth",purchase,1.0,0 -176261926,"South Park The Stick of Truth",play,2.0,0 -176261926,"Everlasting Summer",purchase,1.0,0 -176261926,"Everlasting Summer",play,0.5,0 -176261926,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -176261926,"Sid Meier's Civilization IV Beyond the Sword",play,0.4,0 -176261926,"Sid Meier's Civilization IV",purchase,1.0,0 -176261926,"Sid Meier's Civilization IV",play,0.2,0 -176261926,"InMind VR",purchase,1.0,0 -176261926,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -176261926,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -176261926,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -176261926,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -67238071,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -67238071,"The Secret of Monkey Island Special Edition",play,0.6,0 -206088606,"Team Fortress 2",purchase,1.0,0 -206088606,"Team Fortress 2",play,40.0,0 -206088606,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -206088606,"Tom Clancy's Ghost Recon Phantoms - EU",play,11.1,0 -206088606,"America's Army Proving Grounds",purchase,1.0,0 -206088606,"America's Army Proving Grounds",play,2.9,0 -206088606,"No More Room in Hell",purchase,1.0,0 -206088606,"No More Room in Hell",play,0.4,0 -206088606,"Path of Exile",purchase,1.0,0 -206088606,"Path of Exile",play,0.2,0 -206088606,"BLOCKADE 3D",purchase,1.0,0 -206088606,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -206088606,"sZone-Online",purchase,1.0,0 -191285966,"Dota 2",purchase,1.0,0 -191285966,"Dota 2",play,0.5,0 -81768333,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -81768333,"Call of Duty Black Ops - Multiplayer",play,13.5,0 -81768333,"Call of Duty Black Ops",purchase,1.0,0 -81768333,"Call of Duty Black Ops",play,8.6,0 -81768333,"BRINK",purchase,1.0,0 -81768333,"BRINK",play,0.8,0 -277377524,"Terraria",purchase,1.0,0 -277377524,"Terraria",play,2.7,0 -277377524,"Fractured Space",purchase,1.0,0 -203813088,"Dota 2",purchase,1.0,0 -203813088,"Dota 2",play,0.3,0 -221773178,"Dota 2",purchase,1.0,0 -221773178,"Dota 2",play,1.8,0 -53957543,"Counter-Strike Source",purchase,1.0,0 -53957543,"Counter-Strike Source",play,43.0,0 -835015,"Counter-Strike",purchase,1.0,0 -835015,"Day of Defeat",purchase,1.0,0 -835015,"Deathmatch Classic",purchase,1.0,0 -835015,"Half-Life",purchase,1.0,0 -835015,"Half-Life Blue Shift",purchase,1.0,0 -835015,"Half-Life Opposing Force",purchase,1.0,0 -835015,"Ricochet",purchase,1.0,0 -835015,"Team Fortress Classic",purchase,1.0,0 -75864605,"Counter-Strike Source",purchase,1.0,0 -75864605,"Counter-Strike Source",play,720.0,0 -75864605,"Team Fortress 2",purchase,1.0,0 -75864605,"Team Fortress 2",play,41.0,0 -75864605,"DC Universe Online",purchase,1.0,0 -75864605,"DC Universe Online",play,28.0,0 -75864605,"Half-Life 2 Deathmatch",purchase,1.0,0 -75864605,"Half-Life 2 Deathmatch",play,10.1,0 -75864605,"Day of Defeat Source",purchase,1.0,0 -75864605,"Day of Defeat Source",play,7.8,0 -75864605,"Alien Swarm",purchase,1.0,0 -75864605,"Alien Swarm",play,2.2,0 -75864605,"Half-Life 2 Lost Coast",purchase,1.0,0 -75864605,"Half-Life 2 Lost Coast",play,1.3,0 -128956830,"BioShock Infinite",purchase,1.0,0 -128956830,"BioShock Infinite",play,271.0,0 -128956830,"Tomb Raider",purchase,1.0,0 -128956830,"Tomb Raider",play,229.0,0 -128956830,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -128956830,"Resident Evil 6 / Biohazard 6",play,13.0,0 -164183599,"Mafia II",purchase,1.0,0 -164183599,"Mafia II",play,0.2,0 -59332369,"FreeStyle2 Street Basketball",purchase,1.0,0 -59332369,"FreeStyle2 Street Basketball",play,63.0,0 -59332369,"PAYDAY 2",purchase,1.0,0 -59332369,"PAYDAY 2",play,27.0,0 -59332369,"Serious Sam HD The Second Encounter",purchase,1.0,0 -59332369,"Serious Sam HD The Second Encounter",play,17.9,0 -59332369,"FINAL FANTASY XIII",purchase,1.0,0 -59332369,"FINAL FANTASY XIII",play,10.6,0 -59332369,"Saints Row IV",purchase,1.0,0 -59332369,"Saints Row IV",play,7.5,0 -59332369,"Surgeon Simulator",purchase,1.0,0 -59332369,"Surgeon Simulator",play,5.9,0 -59332369,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -59332369,"Tom Clancy's Ghost Recon Phantoms - NA",play,5.5,0 -59332369,"Dota 2",purchase,1.0,0 -59332369,"Dota 2",play,5.0,0 -59332369,"Left 4 Dead 2",purchase,1.0,0 -59332369,"Left 4 Dead 2",play,2.7,0 -59332369,"Unturned",purchase,1.0,0 -59332369,"Unturned",play,2.4,0 -59332369,"FINAL FANTASY XIII-2",purchase,1.0,0 -59332369,"FINAL FANTASY XIII-2",play,2.0,0 -59332369,"Torchlight II",purchase,1.0,0 -59332369,"Torchlight II",play,2.0,0 -59332369,"Borderlands 2",purchase,1.0,0 -59332369,"Borderlands 2",play,1.9,0 -59332369,"Counter-Strike Global Offensive",purchase,1.0,0 -59332369,"Counter-Strike Global Offensive",play,1.9,0 -59332369,"Warframe",purchase,1.0,0 -59332369,"Warframe",play,1.4,0 -59332369,"Fairy Fencer F",purchase,1.0,0 -59332369,"Fairy Fencer F",play,1.2,0 -59332369,"BattleBlock Theater",purchase,1.0,0 -59332369,"BattleBlock Theater",play,1.1,0 -59332369,"The Darkness II",purchase,1.0,0 -59332369,"The Darkness II",play,0.9,0 -59332369,"The Last Remnant",purchase,1.0,0 -59332369,"The Last Remnant",play,0.6,0 -59332369,"Darksiders II",purchase,1.0,0 -59332369,"Darksiders II",play,0.5,0 -59332369,"Tomb Raider",purchase,1.0,0 -59332369,"Tomb Raider",play,0.3,0 -59332369,"Sleeping Dogs Definitive Edition",purchase,1.0,0 -59332369,"Sleeping Dogs Definitive Edition",play,0.3,0 -59332369,"Sniper Elite V2",purchase,1.0,0 -59332369,"Sniper Elite V2",play,0.2,0 -59332369,"Alan Wake",purchase,1.0,0 -59332369,"Alan Wake",play,0.2,0 -59332369,"Team Fortress 2",purchase,1.0,0 -59332369,"Team Fortress 2",play,0.1,0 -59332369,"Afterfall InSanity Extended Edition",purchase,1.0,0 -59332369,"Alan Wake's American Nightmare",purchase,1.0,0 -59332369,"AquaNox",purchase,1.0,0 -59332369,"AquaNox 2 Revelation",purchase,1.0,0 -59332369,"Bejeweled 3",purchase,1.0,0 -59332369,"BioShock",purchase,1.0,0 -59332369,"Black Mirror",purchase,1.0,0 -59332369,"Darksiders",purchase,1.0,0 -59332369,"Deadfall Adventures",purchase,1.0,0 -59332369,"Dead Space 2",purchase,1.0,0 -59332369,"Dragon Age Origins",purchase,1.0,0 -59332369,"Dungeon Defenders II",purchase,1.0,0 -59332369,"Marvel Heroes 2015",purchase,1.0,0 -59332369,"Mass Effect 2",purchase,1.0,0 -59332369,"MX vs. ATV Reflex",purchase,1.0,0 -59332369,"Red Faction Armageddon",purchase,1.0,0 -59332369,"Serious Sam 3 BFE",purchase,1.0,0 -59332369,"SpellForce 2 - Demons of the Past",purchase,1.0,0 -59332369,"Summoner",purchase,1.0,0 -59332369,"Supreme Commander",purchase,1.0,0 -59332369,"Supreme Commander Forged Alliance",purchase,1.0,0 -59332369,"The Bureau XCOM Declassified",purchase,1.0,0 -59332369,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -59332369,"Titan Quest",purchase,1.0,0 -59332369,"Titan Quest Immortal Throne",purchase,1.0,0 -59332369,"Tom Clancy's Ghost Recon Phantoms - NA Assault Starter Pack",purchase,1.0,0 -59332369,"Valkyria Chronicles",purchase,1.0,0 -59332369,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -59332369,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -59332369,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -59332369,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -72329360,"Sid Meier's Civilization V",purchase,1.0,0 -72329360,"Sid Meier's Civilization V",play,2589.0,0 -72329360,"Napoleon Total War",purchase,1.0,0 -72329360,"Napoleon Total War",play,0.8,0 -72329360,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -72329360,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -15701750,"Counter-Strike Source",purchase,1.0,0 -15701750,"Counter-Strike Source",play,46.0,0 -15701750,"Half-Life 2 Deathmatch",purchase,1.0,0 -15701750,"Half-Life 2 Deathmatch",play,3.2,0 -15701750,"FlatOut 2",purchase,1.0,0 -15701750,"FlatOut 2",play,0.6,0 -15701750,"Company of Heroes Opposing Fronts",purchase,1.0,0 -15701750,"Company of Heroes Opposing Fronts",play,0.4,0 -15701750,"Alien Swarm",purchase,1.0,0 -15701750,"Alien Swarm",play,0.2,0 -15701750,"FlatOut",purchase,1.0,0 -15701750,"FlatOut",play,0.1,0 -15701750,"Half-Life 2",purchase,1.0,0 -15701750,"Company of Heroes",purchase,1.0,0 -15701750,"Company of Heroes (New Steam Version)",purchase,1.0,0 -15701750,"Half-Life 2 Episode One",purchase,1.0,0 -15701750,"Half-Life 2 Episode Two",purchase,1.0,0 -15701750,"Half-Life 2 Lost Coast",purchase,1.0,0 -15701750,"Portal",purchase,1.0,0 -47524459,"Empire Total War",purchase,1.0,0 -47524459,"Empire Total War",play,268.0,0 -47524459,"The Elder Scrolls V Skyrim",purchase,1.0,0 -47524459,"The Elder Scrolls V Skyrim",play,124.0,0 -47524459,"XCOM Enemy Unknown",purchase,1.0,0 -47524459,"XCOM Enemy Unknown",play,29.0,0 -47524459,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -47524459,"Warhammer 40,000 Dawn of War II",play,16.8,0 -47524459,"Magic Duels",purchase,1.0,0 -47524459,"Magic Duels",play,13.9,0 -47524459,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -47524459,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -47524459,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -291880806,"Dota 2",purchase,1.0,0 -291880806,"Dota 2",play,1.2,0 -257989791,"Unturned",purchase,1.0,0 -257989791,"Unturned",play,14.5,0 -257989791,"Transformice",purchase,1.0,0 -257989791,"Transformice",play,11.9,0 -257989791,"Soccer Manager 2016",purchase,1.0,0 -257989791,"Soccer Manager 2016",play,0.5,0 -257989791,"Counter-Strike Nexon Zombies",purchase,1.0,0 -56413349,"Warframe",purchase,1.0,0 -56413349,"Warframe",play,19.9,0 -56413349,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -56413349,"Tom Clancy's Ghost Recon Phantoms - NA",play,3.7,0 -56413349,"APB Reloaded",purchase,1.0,0 -56413349,"APB Reloaded",play,1.8,0 -56413349,"Dota 2",purchase,1.0,0 -56413349,"Dota 2",play,1.0,0 -56413349,"theHunter",purchase,1.0,0 -56413349,"theHunter",play,0.3,0 -56413349,"Metro Conflict",purchase,1.0,0 -56413349,"Codename CURE",purchase,1.0,0 -56413349,"Defiance",purchase,1.0,0 -56413349,"PlanetSide 2",purchase,1.0,0 -56413349,"Rise of Incarnates",purchase,1.0,0 -295571494,"Unturned",purchase,1.0,0 -295571494,"Unturned",play,8.9,0 -195484725,"Dota 2",purchase,1.0,0 -195484725,"Dota 2",play,4.2,0 -139236825,"Dota 2",purchase,1.0,0 -139236825,"Dota 2",play,316.0,0 -203117866,"RaceRoom Racing Experience ",purchase,1.0,0 -203117866,"RaceRoom Racing Experience ",play,10.6,0 -203117866,"Warface",purchase,1.0,0 -203117866,"Warface",play,1.2,0 -203117866,"America's Army Proving Grounds",purchase,1.0,0 -203117866,"America's Army Proving Grounds",play,0.4,0 -153382649,"Team Fortress 2",purchase,1.0,0 -153382649,"Team Fortress 2",play,9640.0,0 -153382649,"Garry's Mod",purchase,1.0,0 -4318904,"Counter-Strike",purchase,1.0,0 -4318904,"Day of Defeat",purchase,1.0,0 -4318904,"Deathmatch Classic",purchase,1.0,0 -4318904,"Half-Life",purchase,1.0,0 -4318904,"Half-Life Blue Shift",purchase,1.0,0 -4318904,"Half-Life Opposing Force",purchase,1.0,0 -4318904,"Ricochet",purchase,1.0,0 -4318904,"Team Fortress Classic",purchase,1.0,0 -257200031,"Dragons and Titans",purchase,1.0,0 -257200031,"Dragons and Titans",play,2.8,0 -80984802,"Napoleon Total War",purchase,1.0,0 -168244631,"Marvel Heroes 2015",purchase,1.0,0 -168244631,"Marvel Heroes 2015",play,97.0,0 -168244631,"Team Fortress 2",purchase,1.0,0 -168244631,"Team Fortress 2",play,47.0,0 -168244631,"Block N Load",purchase,1.0,0 -168244631,"Block N Load",play,40.0,0 -168244631,"Killing Floor",purchase,1.0,0 -168244631,"Killing Floor",play,30.0,0 -168244631,"Hotline Miami",purchase,1.0,0 -168244631,"Hotline Miami",play,21.0,0 -168244631,"Warframe",purchase,1.0,0 -168244631,"Warframe",play,15.5,0 -168244631,"The Binding of Isaac",purchase,1.0,0 -168244631,"The Binding of Isaac",play,13.8,0 -168244631,"Painkiller Black Edition",purchase,1.0,0 -168244631,"Painkiller Black Edition",play,13.4,0 -168244631,"Lakeview Cabin Collection",purchase,1.0,0 -168244631,"Lakeview Cabin Collection",play,12.2,0 -168244631,"NOT A HERO",purchase,1.0,0 -168244631,"NOT A HERO",play,12.2,0 -168244631,"Unturned",purchase,1.0,0 -168244631,"Unturned",play,10.7,0 -168244631,"Road Redemption",purchase,1.0,0 -168244631,"Road Redemption",play,9.8,0 -168244631,"Broforce",purchase,1.0,0 -168244631,"Broforce",play,9.6,0 -168244631,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -168244631,"Star Wars Jedi Knight Jedi Academy",play,9.6,0 -168244631,"Hitman Codename 47",purchase,1.0,0 -168244631,"Hitman Codename 47",play,8.2,0 -168244631,"Loadout",purchase,1.0,0 -168244631,"Loadout",play,7.7,0 -168244631,"No More Room in Hell",purchase,1.0,0 -168244631,"No More Room in Hell",play,6.5,0 -168244631,"POSTAL",purchase,1.0,0 -168244631,"POSTAL",play,6.1,0 -168244631,"Rise of the Triad",purchase,1.0,0 -168244631,"Rise of the Triad",play,4.7,0 -168244631,"Bleed",purchase,1.0,0 -168244631,"Bleed",play,3.9,0 -168244631,"Robocraft",purchase,1.0,0 -168244631,"Robocraft",play,3.7,0 -168244631,"Super Monday Night Combat",purchase,1.0,0 -168244631,"Super Monday Night Combat",play,3.6,0 -168244631,"HAWKEN",purchase,1.0,0 -168244631,"HAWKEN",play,3.2,0 -168244631,"Double Action Boogaloo",purchase,1.0,0 -168244631,"Double Action Boogaloo",play,3.2,0 -168244631,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -168244631,"The Incredible Adventures of Van Helsing",play,3.1,0 -168244631,"Blood One Unit Whole Blood",purchase,1.0,0 -168244631,"Blood One Unit Whole Blood",play,2.4,0 -168244631,"Quake Live",purchase,1.0,0 -168244631,"Quake Live",play,1.6,0 -168244631,"Ubersoldier II",purchase,1.0,0 -168244631,"Ubersoldier II",play,1.5,0 -168244631,"Cry of Fear",purchase,1.0,0 -168244631,"Cry of Fear",play,1.3,0 -168244631,"Nosgoth",purchase,1.0,0 -168244631,"Nosgoth",play,1.3,0 -168244631,"The Binding of Isaac Rebirth",purchase,1.0,0 -168244631,"The Binding of Isaac Rebirth",play,1.2,0 -168244631,"The Expendabros",purchase,1.0,0 -168244631,"The Expendabros",play,1.2,0 -168244631,"Paranautical Activity Deluxe Atonement Edition",purchase,1.0,0 -168244631,"Paranautical Activity Deluxe Atonement Edition",play,1.0,0 -168244631,"Fallen Earth",purchase,1.0,0 -168244631,"Fallen Earth",play,0.9,0 -168244631,"Kung Fury Street Rage",purchase,1.0,0 -168244631,"Kung Fury Street Rage",play,0.9,0 -168244631,"Paint the Town Red",purchase,1.0,0 -168244631,"Paint the Town Red",play,0.9,0 -168244631,"Trove",purchase,1.0,0 -168244631,"Trove",play,0.6,0 -168244631,"Survarium",purchase,1.0,0 -168244631,"Survarium",play,0.6,0 -168244631,"Yet Another Zombie Defense",purchase,1.0,0 -168244631,"Yet Another Zombie Defense",play,0.4,0 -168244631,"Dirty Bomb",purchase,1.0,0 -168244631,"Dirty Bomb",play,0.4,0 -168244631,"The Way of Life Free Edition",purchase,1.0,0 -168244631,"The Way of Life Free Edition",play,0.4,0 -168244631,"404Sight",purchase,1.0,0 -168244631,"404Sight",play,0.3,0 -168244631,"Ghost Master",purchase,1.0,0 -168244631,"Ghost Master",play,0.3,0 -168244631,"Hatred",purchase,1.0,0 -168244631,"Hatred",play,0.2,0 -168244631,"The Ultimate DOOM",purchase,1.0,0 -168244631,"Fallout",purchase,1.0,0 -168244631,"Shadow Warrior Classic (1997)",purchase,1.0,0 -168244631,"Killing Floor 2",purchase,1.0,0 -168244631,"PlanetSide 2",purchase,1.0,0 -168244631,"DOOM II Hell on Earth",purchase,1.0,0 -168244631,"Final DOOM",purchase,1.0,0 -168244631,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -168244631,"Master Levels for DOOM II",purchase,1.0,0 -168244631,"POSTAL 2",purchase,1.0,0 -168244631,"Realm of the Mad God",purchase,1.0,0 -168244631,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -216857326,"Dota 2",purchase,1.0,0 -216857326,"Dota 2",play,0.8,0 -179348465,"Call of Duty Ghosts",purchase,1.0,0 -179348465,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -169223140,"Driver San Francisco",purchase,1.0,0 -193349394,"No More Room in Hell",purchase,1.0,0 -193349394,"No More Room in Hell",play,1.4,0 -193349394,"Team Fortress 2",purchase,1.0,0 -193349394,"Team Fortress 2",play,0.3,0 -126339247,"Team Fortress 2",purchase,1.0,0 -126339247,"Team Fortress 2",play,124.0,0 -69880609,"Lost Planet Extreme Condition",purchase,1.0,0 -125721073,"Serious Sam HD The Second Encounter",purchase,1.0,0 -125721073,"Serious Sam HD The Second Encounter",play,0.3,0 -190504638,"Robocraft",purchase,1.0,0 -126887624,"Disciples III Reincarnation",purchase,1.0,0 -126887624,"Disciples III Reincarnation",play,620.0,0 -126887624,"Might & Magic Heroes VI",purchase,1.0,0 -126887624,"Might & Magic Heroes VI",play,4.8,0 -126887624,"Cossacks Back to War",purchase,1.0,0 -126887624,"Cossacks Back to War",play,4.5,0 -126887624,"Heroes of Might & Magic V",purchase,1.0,0 -126887624,"Heroes of Might & Magic V",play,1.3,0 -126887624,"Fallout New Vegas",purchase,1.0,0 -126887624,"Fallout New Vegas",play,0.5,0 -126887624,"Heroes of Might & Magic V Tribes of the East",purchase,1.0,0 -126887624,"Heroes of Might & Magic V Tribes of the East",play,0.2,0 -126887624,"Dishonored (RU)",purchase,1.0,0 -132593770,"Sniper Ghost Warrior 2",purchase,1.0,0 -132593770,"Sniper Ghost Warrior 2",play,30.0,0 -132593770,"Tomb Raider",purchase,1.0,0 -132593770,"Tomb Raider",play,28.0,0 -132593770,"Call of Duty Modern Warfare 3",purchase,1.0,0 -132593770,"Call of Duty Modern Warfare 3",play,10.5,0 -132593770,"Sniper Elite 3",purchase,1.0,0 -132593770,"Sniper Elite 3",play,6.3,0 -132593770,"Assassin's Creed III",purchase,1.0,0 -132593770,"Assassin's Creed III",play,3.2,0 -132593770,"BioShock Infinite",purchase,1.0,0 -132593770,"BioShock Infinite",play,1.9,0 -132593770,"Spintires",purchase,1.0,0 -132593770,"Spintires",play,0.7,0 -132593770,"Sniper Elite V2",purchase,1.0,0 -132593770,"Sniper Elite V2",play,0.6,0 -132593770,"MX vs. ATV Reflex",purchase,1.0,0 -132593770,"MX vs. ATV Reflex",play,0.5,0 -132593770,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -132593770,"Call of Duty Modern Warfare 3 - Multiplayer",play,0.2,0 -132593770,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -211270134,"Counter-Strike Global Offensive",purchase,1.0,0 -211270134,"Counter-Strike Global Offensive",play,295.0,0 -211270134,"Nosgoth",purchase,1.0,0 -211270134,"Nosgoth",play,2.7,0 -211270134,"Robocraft",purchase,1.0,0 -211270134,"Robocraft",play,0.5,0 -211270134,"ArcheAge",purchase,1.0,0 -211270134,"ArcheAge",play,0.5,0 -211270134,"Heroes & Generals",purchase,1.0,0 -211270134,"Heroes & Generals",play,0.4,0 -211270134,"Gotham City Impostors Free To Play",purchase,1.0,0 -211270134,"Insurgency",purchase,1.0,0 -211270134,"Loadout",purchase,1.0,0 -211270134,"PAYDAY The Web Series - Episode 1",purchase,1.0,0 -211270134,"Strife",purchase,1.0,0 -211270134,"Unturned",purchase,1.0,0 -211270134,"War Thunder",purchase,1.0,0 -166654761,"LEGO MARVEL Super Heroes",purchase,1.0,0 -166654761,"LEGO MARVEL Super Heroes",play,113.0,0 -166654761,"The LEGO Movie - Videogame",purchase,1.0,0 -166654761,"The LEGO Movie - Videogame",play,28.0,0 -166654761,"LEGO Jurassic World",purchase,1.0,0 -166654761,"LEGO Jurassic World",play,12.1,0 -301478904,"Dota 2",purchase,1.0,0 -301478904,"Dota 2",play,0.2,0 -207477282,"The Elder Scrolls V Skyrim",purchase,1.0,0 -207477282,"The Elder Scrolls V Skyrim",play,62.0,0 -207477282,"ARK Survival Evolved",purchase,1.0,0 -207477282,"ARK Survival Evolved",play,37.0,0 -207477282,"Trine 3 The Artifacts of Power",purchase,1.0,0 -207477282,"Trine 3 The Artifacts of Power",play,12.5,0 -207477282,"How to Survive",purchase,1.0,0 -207477282,"How to Survive",play,3.3,0 -207477282,"AKIBA'S TRIP Undead & Undressed",purchase,1.0,0 -207477282,"AKIBA'S TRIP Undead & Undressed",play,2.0,0 -207477282,"Trine 2",purchase,1.0,0 -207477282,"Trine 2",play,1.9,0 -207477282,"Saints Row IV",purchase,1.0,0 -207477282,"Saints Row IV",play,1.5,0 -207477282,"GRAV",purchase,1.0,0 -207477282,"GRAV",play,0.7,0 -207477282,"Chantelise",purchase,1.0,0 -207477282,"Chantelise",play,0.7,0 -207477282,"Terraria",purchase,1.0,0 -207477282,"Terraria",play,0.6,0 -207477282,"FRONTIERS",purchase,1.0,0 -207477282,"FRONTIERS",play,0.5,0 -207477282,"Shadowgrounds",purchase,1.0,0 -207477282,"Shadowgrounds",play,0.3,0 -207477282,"Narcissu 1st & 2nd",purchase,1.0,0 -207477282,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -207477282,"Recettear An Item Shop's Tale",purchase,1.0,0 -207477282,"Devil's Workshop pack",purchase,1.0,0 -207477282,"Saints Row 2",purchase,1.0,0 -207477282,"Saints Row Gat out of Hell",purchase,1.0,0 -207477282,"Saints Row The Third",purchase,1.0,0 -207477282,"Shadowgrounds Survivor",purchase,1.0,0 -207477282,"Sid Meier's Civilization IV",purchase,1.0,0 -207477282,"Sid Meier's Civilization IV",purchase,1.0,0 -207477282,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -207477282,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -207477282,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -207477282,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -207477282,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -207477282,"Sid Meier's Civilization V",purchase,1.0,0 -207477282,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -207477282,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -207477282,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -207477282,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -207477282,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -207477282,"Trine",purchase,1.0,0 -155772849,"Call of Duty Modern Warfare 2",purchase,1.0,0 -155772849,"Call of Duty Modern Warfare 2",play,2.7,0 -155772849,"Call of Duty Modern Warfare 3",purchase,1.0,0 -155772849,"Call of Duty Modern Warfare 3",play,1.8,0 -155772849,"Counter-Strike Global Offensive",purchase,1.0,0 -155772849,"Counter-Strike Global Offensive",play,1.4,0 -155772849,"Team Fortress 2",purchase,1.0,0 -155772849,"Team Fortress 2",play,0.8,0 -155772849,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -155772849,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.5,0 -155772849,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -155772849,"Call of Duty Ghosts - Multiplayer",play,0.3,0 -155772849,"Counter-Strike",purchase,1.0,0 -155772849,"Counter-Strike",play,0.2,0 -155772849,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -155772849,"Call of Duty Ghosts",purchase,1.0,0 -155772849,"Counter-Strike Source",purchase,1.0,0 -155772849,"AdVenture Capitalist",purchase,1.0,0 -155772849,"Counter-Strike Condition Zero",purchase,1.0,0 -155772849,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -155772849,"DCS World",purchase,1.0,0 -155772849,"Unturned",purchase,1.0,0 -155772849,"Warface",purchase,1.0,0 -199075040,"Dota 2",purchase,1.0,0 -199075040,"Dota 2",play,17.6,0 -199075040,"Solstice Arena",purchase,1.0,0 -237789323,"Blender 2.76b",purchase,1.0,0 -237789323,"Blender 2.76b",play,0.2,0 -237789323,"Age of Empires II HD Edition",purchase,1.0,0 -48525807,"Dota 2",purchase,1.0,0 -48525807,"Dota 2",play,1870.0,0 -48525807,"Europa Universalis IV",purchase,1.0,0 -48525807,"Europa Universalis IV",play,635.0,0 -48525807,"Garry's Mod",purchase,1.0,0 -48525807,"Garry's Mod",play,470.0,0 -48525807,"Crusader Kings II",purchase,1.0,0 -48525807,"Crusader Kings II",play,225.0,0 -48525807,"Champions Online",purchase,1.0,0 -48525807,"Champions Online",play,214.0,0 -48525807,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -48525807,"Warhammer 40,000 Dawn of War II Retribution",play,187.0,0 -48525807,"Terraria",purchase,1.0,0 -48525807,"Terraria",play,184.0,0 -48525807,"Team Fortress 2",purchase,1.0,0 -48525807,"Team Fortress 2",play,141.0,0 -48525807,"Sid Meier's Civilization V",purchase,1.0,0 -48525807,"Sid Meier's Civilization V",play,138.0,0 -48525807,"The Elder Scrolls V Skyrim",purchase,1.0,0 -48525807,"The Elder Scrolls V Skyrim",play,133.0,0 -48525807,"Portal 2",purchase,1.0,0 -48525807,"Portal 2",play,88.0,0 -48525807,"Magicka",purchase,1.0,0 -48525807,"Magicka",play,63.0,0 -48525807,"Mount & Blade Warband",purchase,1.0,0 -48525807,"Mount & Blade Warband",play,57.0,0 -48525807,"Assassin's Creed IV Black Flag",purchase,1.0,0 -48525807,"Assassin's Creed IV Black Flag",play,48.0,0 -48525807,"Neverwinter Nights 2 Platinum",purchase,1.0,0 -48525807,"Neverwinter Nights 2 Platinum",play,46.0,0 -48525807,"Dungeon Defenders",purchase,1.0,0 -48525807,"Dungeon Defenders",play,46.0,0 -48525807,"Rust",purchase,1.0,0 -48525807,"Rust",play,38.0,0 -48525807,"Trine 2",purchase,1.0,0 -48525807,"Trine 2",play,37.0,0 -48525807,"Borderlands",purchase,1.0,0 -48525807,"Borderlands",play,30.0,0 -48525807,"Batman Arkham City",purchase,1.0,0 -48525807,"Batman Arkham City",play,28.0,0 -48525807,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -48525807,"Rising Storm/Red Orchestra 2 Multiplayer",play,27.0,0 -48525807,"Post Apocalyptic Mayhem",purchase,1.0,0 -48525807,"Post Apocalyptic Mayhem",play,26.0,0 -48525807,"Torchlight II",purchase,1.0,0 -48525807,"Torchlight II",play,23.0,0 -48525807,"Sleeping Dogs",purchase,1.0,0 -48525807,"Sleeping Dogs",play,19.9,0 -48525807,"Dungeons of Dredmor",purchase,1.0,0 -48525807,"Dungeons of Dredmor",play,19.5,0 -48525807,"Watch_Dogs",purchase,1.0,0 -48525807,"Watch_Dogs",play,19.4,0 -48525807,"Pirates, Vikings, & Knights II",purchase,1.0,0 -48525807,"Pirates, Vikings, & Knights II",play,19.2,0 -48525807,"Command and Conquer 3 Kane's Wrath",purchase,1.0,0 -48525807,"Command and Conquer 3 Kane's Wrath",play,18.2,0 -48525807,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -48525807,"Injustice Gods Among Us Ultimate Edition",play,17.8,0 -48525807,"Borderlands 2",purchase,1.0,0 -48525807,"Borderlands 2",play,17.7,0 -48525807,"Magic 2014 ",purchase,1.0,0 -48525807,"Magic 2014 ",play,17.2,0 -48525807,"Batman Arkham City GOTY",purchase,1.0,0 -48525807,"Batman Arkham City GOTY",play,16.5,0 -48525807,"Endless Space",purchase,1.0,0 -48525807,"Endless Space",play,16.0,0 -48525807,"Section 8 Prejudice",purchase,1.0,0 -48525807,"Section 8 Prejudice",play,15.6,0 -48525807,"Half-Life 2",purchase,1.0,0 -48525807,"Half-Life 2",play,14.8,0 -48525807,"Counter-Strike Source",purchase,1.0,0 -48525807,"Counter-Strike Source",play,13.8,0 -48525807,"E.Y.E Divine Cybermancy",purchase,1.0,0 -48525807,"E.Y.E Divine Cybermancy",play,13.7,0 -48525807,"Alien Swarm",purchase,1.0,0 -48525807,"Alien Swarm",play,13.7,0 -48525807,"Gotham City Impostors",purchase,1.0,0 -48525807,"Gotham City Impostors",play,13.2,0 -48525807,"Portal",purchase,1.0,0 -48525807,"Portal",play,13.2,0 -48525807,"FTL Faster Than Light",purchase,1.0,0 -48525807,"FTL Faster Than Light",play,13.2,0 -48525807,"XCOM Enemy Unknown",purchase,1.0,0 -48525807,"XCOM Enemy Unknown",play,12.8,0 -48525807,"Clicker Heroes",purchase,1.0,0 -48525807,"Clicker Heroes",play,12.3,0 -48525807,"Far Cry 3",purchase,1.0,0 -48525807,"Far Cry 3",play,11.6,0 -48525807,"Warframe",purchase,1.0,0 -48525807,"Warframe",play,11.5,0 -48525807,"Audiosurf",purchase,1.0,0 -48525807,"Audiosurf",play,11.4,0 -48525807,"Mount & Blade With Fire and Sword",purchase,1.0,0 -48525807,"Mount & Blade With Fire and Sword",play,9.8,0 -48525807,"Pixel Piracy",purchase,1.0,0 -48525807,"Pixel Piracy",play,9.3,0 -48525807,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -48525807,"Dark Souls Prepare to Die Edition",play,8.2,0 -48525807,"Command and Conquer 4 Tiberian Twilight",purchase,1.0,0 -48525807,"Command and Conquer 4 Tiberian Twilight",play,8.0,0 -48525807,"Dead Island Epidemic",purchase,1.0,0 -48525807,"Dead Island Epidemic",play,7.6,0 -48525807,"Don't Starve",purchase,1.0,0 -48525807,"Don't Starve",play,7.5,0 -48525807,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -48525807,"Red Faction Guerrilla Steam Edition",play,6.8,0 -48525807,"From Dust",purchase,1.0,0 -48525807,"From Dust",play,6.5,0 -48525807,"Godus",purchase,1.0,0 -48525807,"Godus",play,5.8,0 -48525807,"The Lord of the Rings War in the North",purchase,1.0,0 -48525807,"The Lord of the Rings War in the North",play,5.6,0 -48525807,"DC Universe Online",purchase,1.0,0 -48525807,"DC Universe Online",play,5.5,0 -48525807,"Monaco",purchase,1.0,0 -48525807,"Monaco",play,5.2,0 -48525807,"HOARD",purchase,1.0,0 -48525807,"HOARD",play,5.1,0 -48525807,"Rogue Legacy",purchase,1.0,0 -48525807,"Rogue Legacy",play,5.0,0 -48525807,"Assetto Corsa",purchase,1.0,0 -48525807,"Assetto Corsa",play,4.6,0 -48525807,"Nuclear Dawn",purchase,1.0,0 -48525807,"Nuclear Dawn",play,4.4,0 -48525807,"Half-Life 2 Episode One",purchase,1.0,0 -48525807,"Half-Life 2 Episode One",play,4.2,0 -48525807,"Blood Bowl Chaos Edition",purchase,1.0,0 -48525807,"Blood Bowl Chaos Edition",play,3.6,0 -48525807,"Gunpoint",purchase,1.0,0 -48525807,"Gunpoint",play,3.5,0 -48525807,"Westerado Double Barreled",purchase,1.0,0 -48525807,"Westerado Double Barreled",play,3.2,0 -48525807,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -48525807,"The Incredible Adventures of Van Helsing",play,3.0,0 -48525807,"Star Wars Empire at War Gold",purchase,1.0,0 -48525807,"Star Wars Empire at War Gold",play,2.8,0 -48525807,"Poker Night at the Inventory",purchase,1.0,0 -48525807,"Poker Night at the Inventory",play,2.2,0 -48525807,"Serious Sam HD The Second Encounter",purchase,1.0,0 -48525807,"Serious Sam HD The Second Encounter",play,2.2,0 -48525807,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -48525807,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,2.0,0 -48525807,"Universe Sandbox",purchase,1.0,0 -48525807,"Universe Sandbox",play,2.0,0 -48525807,"Synergy",purchase,1.0,0 -48525807,"Synergy",play,2.0,0 -48525807,"Trials Evolution Gold Edition",purchase,1.0,0 -48525807,"Trials Evolution Gold Edition",play,1.9,0 -48525807,"Dishonored (RU)",purchase,1.0,0 -48525807,"Dishonored (RU)",play,1.9,0 -48525807,"Swords and Soldiers HD",purchase,1.0,0 -48525807,"Swords and Soldiers HD",play,1.8,0 -48525807,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -48525807,"THE KING OF FIGHTERS XIII STEAM EDITION",play,1.5,0 -48525807,"StarForge",purchase,1.0,0 -48525807,"StarForge",play,1.4,0 -48525807,"Red Faction Armageddon",purchase,1.0,0 -48525807,"Red Faction Armageddon",play,1.2,0 -48525807,"FORCED",purchase,1.0,0 -48525807,"FORCED",play,1.1,0 -48525807,"Beat Hazard",purchase,1.0,0 -48525807,"Beat Hazard",play,0.9,0 -48525807,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -48525807,"Galactic Civilizations II Ultimate Edition",play,0.9,0 -48525807,"Age of Chivalry",purchase,1.0,0 -48525807,"Age of Chivalry",play,0.8,0 -48525807,"Command and Conquer 3 Tiberium Wars",purchase,1.0,0 -48525807,"Command and Conquer 3 Tiberium Wars",play,0.7,0 -48525807,"Zeno Clash",purchase,1.0,0 -48525807,"Zeno Clash",play,0.7,0 -48525807,"Legend of Grimrock",purchase,1.0,0 -48525807,"Legend of Grimrock",play,0.6,0 -48525807,"Smashball",purchase,1.0,0 -48525807,"Smashball",play,0.6,0 -48525807,"Deadlight",purchase,1.0,0 -48525807,"Deadlight",play,0.5,0 -48525807,"Borderlands 2 RU",purchase,1.0,0 -48525807,"Borderlands 2 RU",play,0.5,0 -48525807,"PixelJunk Eden",purchase,1.0,0 -48525807,"PixelJunk Eden",play,0.3,0 -48525807,"Zombie Panic Source",purchase,1.0,0 -48525807,"Zombie Panic Source",play,0.3,0 -48525807,"D.I.P.R.I.P. Warm Up",purchase,1.0,0 -48525807,"D.I.P.R.I.P. Warm Up",play,0.3,0 -48525807,"Half-Life 2 Episode Two",purchase,1.0,0 -48525807,"Half-Life 2 Episode Two",play,0.2,0 -48525807,"AdVenture Capitalist",purchase,1.0,0 -48525807,"AdVenture Capitalist",play,0.1,0 -48525807,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -48525807,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -48525807,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -48525807,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -48525807,"Crusader Kings II Hymns of Abraham",purchase,1.0,0 -48525807,"Crusader Kings II Military Orders Unit Pack",purchase,1.0,0 -48525807,"Crusader Kings II Sons of Abraham",purchase,1.0,0 -48525807,"Crusader Kings II Warriors of Faith Unit Pack",purchase,1.0,0 -48525807,"Damned",purchase,1.0,0 -48525807,"Deadlight Original Soundtrack",purchase,1.0,0 -48525807,"Don't Starve Together Beta",purchase,1.0,0 -48525807,"Europa Universalis IV American Dream DLC",purchase,1.0,0 -48525807,"Europa Universalis IV Conquest of Paradise",purchase,1.0,0 -48525807,"EverQuest Free-to-Play",purchase,1.0,0 -48525807,"Gotham City Impostors Free To Play",purchase,1.0,0 -48525807,"Half-Life 2 Lost Coast",purchase,1.0,0 -48525807,"Magicka Final Frontier",purchase,1.0,0 -48525807,"Magicka Frozen Lake",purchase,1.0,0 -48525807,"Magicka Nippon",purchase,1.0,0 -48525807,"Magicka Party Robes",purchase,1.0,0 -48525807,"Magicka The Watchtower",purchase,1.0,0 -48525807,"Magicka Vietnam",purchase,1.0,0 -48525807,"Magicka Wizard's Survival Kit",purchase,1.0,0 -48525807,"Mount & Blade",purchase,1.0,0 -48525807,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -48525807,"Orcs Must Die! 2",purchase,1.0,0 -48525807,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -48525807,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -48525807,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -48525807,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -48525807,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -48525807,"XCOM Enemy Within",purchase,1.0,0 -43455427,"The Witcher Enhanced Edition",purchase,1.0,0 -43455427,"The Witcher Enhanced Edition",play,19.5,0 -43455427,"Left 4 Dead",purchase,1.0,0 -43455427,"Left 4 Dead",play,2.7,0 -43455427,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -42648631,"Football Manager 2013",purchase,1.0,0 -42648631,"Football Manager 2013",play,1339.0,0 -42648631,"Football Manager 2009",purchase,1.0,0 -42648631,"Football Manager 2009",play,362.0,0 -43462452,"Counter-Strike Source",purchase,1.0,0 -43462452,"Counter-Strike Source",play,103.0,0 -43462452,"Day of Defeat Source",purchase,1.0,0 -43462452,"Half-Life 2 Deathmatch",purchase,1.0,0 -43462452,"Half-Life 2 Lost Coast",purchase,1.0,0 -158655503,"The Elder Scrolls V Skyrim",purchase,1.0,0 -158655503,"The Elder Scrolls V Skyrim",play,42.0,0 -158655503,"Starbound",purchase,1.0,0 -158655503,"Starbound",play,10.1,0 -158655503,"Team Fortress 2",purchase,1.0,0 -158655503,"Team Fortress 2",play,3.2,0 -158655503,"Trove",purchase,1.0,0 -158655503,"Trove",play,2.5,0 -158655503,"Robocraft",purchase,1.0,0 -158655503,"Robocraft",play,0.9,0 -158655503,"Unturned",purchase,1.0,0 -158655503,"Unturned",play,0.1,0 -158655503,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -158655503,"Starbound - Unstable",purchase,1.0,0 -94690589,"Dota 2",purchase,1.0,0 -94690589,"Dota 2",play,1.3,0 -94690589,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -94690589,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -94690589,"theHunter",purchase,1.0,0 -295480706,"Dota 2",purchase,1.0,0 -295480706,"Dota 2",play,1.6,0 -292070264,"Counter-Strike Global Offensive",purchase,1.0,0 -292070264,"Counter-Strike Global Offensive",play,136.0,0 -292070264,"Aftermath",purchase,1.0,0 -292070264,"Aftermath",play,46.0,0 -292070264,"Unturned",purchase,1.0,0 -292070264,"Unturned",play,9.4,0 -292070264,"America's Army Proving Grounds",purchase,1.0,0 -292070264,"America's Army Proving Grounds",play,0.8,0 -292070264,"MechWarrior Online",purchase,1.0,0 -292070264,"Codename CURE",purchase,1.0,0 -216456878,"No More Room in Hell",purchase,1.0,0 -216456878,"No More Room in Hell",play,0.7,0 -85046830,"The Elder Scrolls V Skyrim",purchase,1.0,0 -85046830,"The Elder Scrolls V Skyrim",play,454.0,0 -85046830,"The Walking Dead",purchase,1.0,0 -85046830,"The Walking Dead",play,54.0,0 -85046830,"Metro 2033",purchase,1.0,0 -85046830,"Metro 2033",play,51.0,0 -85046830,"State of Decay",purchase,1.0,0 -85046830,"State of Decay",play,39.0,0 -85046830,"Metro Last Light",purchase,1.0,0 -85046830,"Metro Last Light",play,35.0,0 -85046830,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -85046830,"S.T.A.L.K.E.R. Call of Pripyat",play,25.0,0 -85046830,"Sniper Elite V2",purchase,1.0,0 -85046830,"Sniper Elite V2",play,15.9,0 -85046830,"Deadlight",purchase,1.0,0 -85046830,"Deadlight",play,7.5,0 -85046830,"Arma 2 Operation Arrowhead",purchase,1.0,0 -85046830,"Arma 2 Operation Arrowhead",play,6.1,0 -85046830,"Star Conflict",purchase,1.0,0 -85046830,"Star Conflict",play,6.0,0 -85046830,"The Walking Dead Season Two",purchase,1.0,0 -85046830,"The Walking Dead Season Two",play,5.1,0 -85046830,"PAYDAY The Heist",purchase,1.0,0 -85046830,"PAYDAY The Heist",play,2.6,0 -85046830,"Counter-Strike Global Offensive",purchase,1.0,0 -85046830,"Counter-Strike Global Offensive",play,2.0,0 -85046830,"Infestation Survivor Stories",purchase,1.0,0 -85046830,"Counter-Strike Condition Zero",purchase,1.0,0 -85046830,"Arma 2",purchase,1.0,0 -85046830,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -85046830,"Counter-Strike",purchase,1.0,0 -85046830,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -85046830,"Counter-Strike Source",purchase,1.0,0 -85046830,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -85046830,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -292967736,"Warframe",purchase,1.0,0 -163769277,"Dota 2",purchase,1.0,0 -163769277,"Dota 2",play,2.2,0 -163769277,"Robocraft",purchase,1.0,0 -80067793,"Uncharted Waters Online Gran Atlas",purchase,1.0,0 -80067793,"Uncharted Waters Online Gran Atlas",play,209.0,0 -80067793,"Dungeon Defenders",purchase,1.0,0 -80067793,"Dungeon Defenders",play,151.0,0 -80067793,"War Thunder",purchase,1.0,0 -80067793,"War Thunder",play,56.0,0 -80067793,"The Lord of the Rings Online",purchase,1.0,0 -80067793,"The Lord of the Rings Online",play,41.0,0 -80067793,"XCOM Enemy Unknown",purchase,1.0,0 -80067793,"XCOM Enemy Unknown",play,33.0,0 -80067793,"Robocraft",purchase,1.0,0 -80067793,"Robocraft",play,10.9,0 -80067793,"TOME Immortal Arena",purchase,1.0,0 -80067793,"TOME Immortal Arena",play,8.6,0 -80067793,"Democracy 3",purchase,1.0,0 -80067793,"Democracy 3",play,2.0,0 -80067793,"Tropico 3 Absolute Power",purchase,1.0,0 -80067793,"Tropico 3 Absolute Power",play,1.8,0 -80067793,"Alien Swarm",purchase,1.0,0 -80067793,"Alien Swarm",play,1.7,0 -80067793,"Nosgoth",purchase,1.0,0 -80067793,"Nosgoth",play,0.6,0 -80067793,"Dead Island",purchase,1.0,0 -80067793,"Dead Island",play,0.3,0 -80067793,"Goat Simulator",purchase,1.0,0 -80067793,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -80067793,"XCOM Enemy Within",purchase,1.0,0 -48688347,"Counter-Strike Source",purchase,1.0,0 -48688347,"Day of Defeat Source",purchase,1.0,0 -48688347,"Half-Life 2 Deathmatch",purchase,1.0,0 -48688347,"Half-Life 2 Lost Coast",purchase,1.0,0 -41100002,"Counter-Strike Source",purchase,1.0,0 -41100002,"Counter-Strike Source",play,51.0,0 -201713909,"Dota 2",purchase,1.0,0 -201713909,"Dota 2",play,401.0,0 -201713909,"The Expendabros",purchase,1.0,0 -201713909,"Archeblade",purchase,1.0,0 -201713909,"Aura Kingdom",purchase,1.0,0 -201713909,"BLOCKADE 3D",purchase,1.0,0 -201713909,"C9",purchase,1.0,0 -201713909,"Clicker Heroes",purchase,1.0,0 -201713909,"Dizzel",purchase,1.0,0 -201713909,"FreeStyle2 Street Basketball",purchase,1.0,0 -201713909,"Free to Play",purchase,1.0,0 -201713909,"Gunscape",purchase,1.0,0 -201713909,"Neverwinter",purchase,1.0,0 -201713909,"Quake Live",purchase,1.0,0 -201713909,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -201713909,"The Four Kings Casino and Slots",purchase,1.0,0 -201713909,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -201713909,"Transformice",purchase,1.0,0 -201713909,"UberStrike",purchase,1.0,0 -201713909,"Unturned",purchase,1.0,0 -201713909,"Warframe",purchase,1.0,0 -201713909,"War Thunder",purchase,1.0,0 -234539285,"PAYDAY 2",purchase,1.0,0 -234539285,"Warface",purchase,1.0,0 -149451413,"Dota 2",purchase,1.0,0 -149451413,"Dota 2",play,2.5,0 -128491811,"Dota 2",purchase,1.0,0 -128491811,"Dota 2",play,0.8,0 -139171297,"Dota 2",purchase,1.0,0 -139171297,"Dota 2",play,926.0,0 -139171297,"Team Fortress 2",purchase,1.0,0 -139171297,"Team Fortress 2",play,103.0,0 -139171297,"Warface",purchase,1.0,0 -232021495,"Dota 2",purchase,1.0,0 -232021495,"Dota 2",play,60.0,0 -232021495,"FreeStyle2 Street Basketball",purchase,1.0,0 -232021495,"FreeStyle2 Street Basketball",play,2.6,0 -232021495,"Aura Kingdom",purchase,1.0,0 -232021495,"GunZ 2 The Second Duel",purchase,1.0,0 -304312065,"Dota 2",purchase,1.0,0 -304312065,"Dota 2",play,0.6,0 -251093449,"Dota 2",purchase,1.0,0 -251093449,"Dota 2",play,0.3,0 -43989530,"Half-Life 2 Episode Two",purchase,1.0,0 -43989530,"Half-Life 2 Episode One",purchase,1.0,0 -43989530,"Half-Life 2",purchase,1.0,0 -43989530,"Half-Life 2 Lost Coast",purchase,1.0,0 -43989530,"Portal",purchase,1.0,0 -163296745,"Dota 2",purchase,1.0,0 -163296745,"Dota 2",play,0.2,0 -288038138,"Warframe",purchase,1.0,0 -15927737,"Counter-Strike Source",purchase,1.0,0 -15927737,"Counter-Strike Source",play,29.0,0 -15927737,"Half-Life 2",purchase,1.0,0 -15927737,"Half-Life 2 Deathmatch",purchase,1.0,0 -15927737,"Half-Life 2 Lost Coast",purchase,1.0,0 -162370266,"This War of Mine",purchase,1.0,0 -162370266,"This War of Mine",play,5.6,0 -162370266,"Don't Starve Together Beta",purchase,1.0,0 -162370266,"Don't Starve Together Beta",play,5.4,0 -162370266,"Dragons and Titans",purchase,1.0,0 -162370266,"Dragons and Titans",play,5.3,0 -162370266,"Project Zomboid",purchase,1.0,0 -162370266,"Project Zomboid",play,2.4,0 -162370266,"ARK Survival Evolved",purchase,1.0,0 -162370266,"ARK Survival Evolved",play,1.7,0 -162370266,"Neverwinter",purchase,1.0,0 -110650041,"Team Fortress 2",purchase,1.0,0 -110650041,"Team Fortress 2",play,3.3,0 -110650041,"Warframe",purchase,1.0,0 -110650041,"Warframe",play,0.6,0 -110650041,"DC Universe Online",purchase,1.0,0 -110650041,"DC Universe Online",play,0.1,0 -110650041,"Seduce Me the Otome",purchase,1.0,0 -110650041,"Seduce Me the Otome",play,0.1,0 -110650041,"Defiance",purchase,1.0,0 -110650041,"Dev Guy",purchase,1.0,0 -110650041,"Happy Wars",purchase,1.0,0 -110650041,"Heroes & Generals",purchase,1.0,0 -110650041,"Kingdom Wars",purchase,1.0,0 -110650041,"TERA",purchase,1.0,0 -110650041,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -212834407,"Dota 2",purchase,1.0,0 -212834407,"Dota 2",play,0.3,0 -46179654,"Team Fortress 2",purchase,1.0,0 -46179654,"Team Fortress 2",play,17.4,0 -160065494,"Dota 2",purchase,1.0,0 -160065494,"Dota 2",play,114.0,0 -203377807,"Dota 2",purchase,1.0,0 -203377807,"Dota 2",play,0.7,0 -179355520,"Unturned",purchase,1.0,0 -179355520,"Unturned",play,5.4,0 -179355520,"Reversion - The Escape",purchase,1.0,0 -179355520,"Warface",purchase,1.0,0 -138044624,"Garry's Mod",purchase,1.0,0 -138044624,"Garry's Mod",play,130.0,0 -138044624,"Dota 2",purchase,1.0,0 -138044624,"Dota 2",play,24.0,0 -138044624,"Archeblade",purchase,1.0,0 -138044624,"Archeblade",play,12.3,0 -138044624,"Left 4 Dead 2",purchase,1.0,0 -138044624,"Left 4 Dead 2",play,9.6,0 -138044624,"GunZ 2 The Second Duel",purchase,1.0,0 -138044624,"GunZ 2 The Second Duel",play,9.5,0 -138044624,"Team Fortress 2",purchase,1.0,0 -138044624,"Team Fortress 2",play,1.6,0 -114924461,"Garry's Mod",purchase,1.0,0 -114924461,"Garry's Mod",play,40.0,0 -114924461,"Minecraft Story Mode - A Telltale Games Series",purchase,1.0,0 -114924461,"Minecraft Story Mode - A Telltale Games Series",play,11.8,0 -114924461,"Five Nights at Freddy's",purchase,1.0,0 -114924461,"Five Nights at Freddy's",play,9.0,0 -114924461,"Five Nights at Freddy's 2",purchase,1.0,0 -114924461,"Five Nights at Freddy's 2",play,5.5,0 -114924461,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -114924461,"Burnout Paradise The Ultimate Box",play,3.5,0 -114924461,"Outlast",purchase,1.0,0 -114924461,"Outlast",play,3.4,0 -114924461,"Unturned",purchase,1.0,0 -114924461,"Unturned",play,3.0,0 -114924461,"Five Nights at Freddy's 3",purchase,1.0,0 -114924461,"Five Nights at Freddy's 3",play,3.0,0 -114924461,"Five Nights at Freddy's 4",purchase,1.0,0 -114924461,"Five Nights at Freddy's 4",play,2.3,0 -114924461,"Clicker Heroes",purchase,1.0,0 -114924461,"Clicker Heroes",play,0.7,0 -114924461,"Mitos.is The Game",purchase,1.0,0 -114924461,"Mitos.is The Game",play,0.6,0 -114924461,"Dead Space",purchase,1.0,0 -114924461,"Dead Space",play,0.6,0 -114924461,"Emily is Away",purchase,1.0,0 -114924461,"Emily is Away",play,0.4,0 -114924461,"Marvel Heroes 2015",purchase,1.0,0 -272404736,"Heroes & Generals",purchase,1.0,0 -272404736,"Heroes & Generals",play,0.5,0 -117210908,"Dota 2",purchase,1.0,0 -117210908,"Dota 2",play,2.8,0 -133676441,"Dota 2",purchase,1.0,0 -133676441,"Dota 2",play,127.0,0 -241655996,"Pirates of Black Cove Gold",purchase,1.0,0 -15564408,"Half-Life 2",purchase,1.0,0 -15564408,"Half-Life 2",play,10.9,0 -15564408,"Counter-Strike Source",purchase,1.0,0 -15564408,"Counter-Strike Source",play,6.8,0 -15564408,"Counter-Strike",purchase,1.0,0 -15564408,"Counter-Strike",play,0.3,0 -15564408,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -15564408,"Counter-Strike Condition Zero",purchase,1.0,0 -15564408,"Half-Life 2 Deathmatch",purchase,1.0,0 -15564408,"Half-Life 2 Lost Coast",purchase,1.0,0 -14702137,"Counter-Strike",purchase,1.0,0 -14702137,"Counter-Strike",play,240.0,0 -14702137,"Left 4 Dead 2",purchase,1.0,0 -14702137,"Left 4 Dead 2",play,30.0,0 -14702137,"Team Fortress 2",purchase,1.0,0 -14702137,"Team Fortress 2",play,0.2,0 -14702137,"Arma 2 Operation Arrowhead",purchase,1.0,0 -14702137,"Arma 2",purchase,1.0,0 -14702137,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -14702137,"Darkest Hour Europe '44-'45",purchase,1.0,0 -14702137,"Day of Defeat",purchase,1.0,0 -14702137,"Deathmatch Classic",purchase,1.0,0 -14702137,"Half-Life",purchase,1.0,0 -14702137,"Half-Life Blue Shift",purchase,1.0,0 -14702137,"Half-Life Opposing Force",purchase,1.0,0 -14702137,"Mare Nostrum",purchase,1.0,0 -14702137,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -14702137,"Ricochet",purchase,1.0,0 -14702137,"Team Fortress Classic",purchase,1.0,0 -240416489,"Team Fortress 2",purchase,1.0,0 -240416489,"Team Fortress 2",play,3.5,0 -240416489,"AirMech",purchase,1.0,0 -240416489,"AirMech",play,2.9,0 -240416489,"AdVenture Capitalist",purchase,1.0,0 -246169824,"Unturned",purchase,1.0,0 -201761030,"Dota 2",purchase,1.0,0 -201761030,"Dota 2",play,7.6,0 -76373413,"Counter-Strike Source",purchase,1.0,0 -76373413,"Counter-Strike Source",play,825.0,0 -76373413,"Counter-Strike",purchase,1.0,0 -76373413,"Counter-Strike",play,0.7,0 -76373413,"Counter-Strike Condition Zero",purchase,1.0,0 -76373413,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -172842461,"Team Fortress 2",purchase,1.0,0 -172842461,"Team Fortress 2",play,134.0,0 -172842461,"Nosgoth",purchase,1.0,0 -172842461,"Nosgoth",play,16.1,0 -172842461,"La Tale",purchase,1.0,0 -172842461,"La Tale",play,11.4,0 -172842461,"Garry's Mod",purchase,1.0,0 -172842461,"Garry's Mod",play,6.2,0 -172842461,"Transistor",purchase,1.0,0 -172842461,"Transistor",play,4.5,0 -172842461,"Dota 2",purchase,1.0,0 -172842461,"Dota 2",play,1.6,0 -172842461,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -172842461,"School of Dragons How to Train Your Dragon",play,1.0,0 -172842461,"Emily is Away",purchase,1.0,0 -172842461,"Emily is Away",play,0.8,0 -172842461,"Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald A Whirlwind Heist",purchase,1.0,0 -172842461,"Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald A Whirlwind Heist",play,0.3,0 -172842461,"Left 4 Dead 2",purchase,1.0,0 -74764496,"Grand Theft Auto V",purchase,1.0,0 -74764496,"Grand Theft Auto V",play,82.0,0 -74764496,"Assetto Corsa",purchase,1.0,0 -74764496,"Assetto Corsa",play,48.0,0 -74764496,"Project CARS",purchase,1.0,0 -74764496,"Project CARS",play,23.0,0 -74764496,"DiRT Rally",purchase,1.0,0 -74764496,"DiRT Rally",play,8.9,0 -74764496,"Euro Truck Simulator 2",purchase,1.0,0 -74764496,"Euro Truck Simulator 2",play,7.8,0 -74764496,"RaceRoom Racing Experience ",purchase,1.0,0 -74764496,"RaceRoom Racing Experience ",play,3.8,0 -74764496,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -74764496,"Call of Duty Modern Warfare 3 - Multiplayer",play,3.5,0 -74764496,"rFactor 2",purchase,1.0,0 -74764496,"rFactor 2",play,1.8,0 -74764496,"Call of Duty Black Ops",purchase,1.0,0 -74764496,"Call of Duty Black Ops",play,0.4,0 -74764496,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -74764496,"Call of Duty Black Ops - Multiplayer",play,0.3,0 -74764496,"Call of Duty Modern Warfare 3",purchase,1.0,0 -74764496,"Call of Duty Modern Warfare 3",play,0.1,0 -74764496,"Trucks & Trailers",purchase,1.0,0 -74764496,"Bus Driver",purchase,1.0,0 -74764496,"Euro Truck Simulator",purchase,1.0,0 -74764496,"Assetto Corsa - Dream Pack 1",purchase,1.0,0 -74764496,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -74764496,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -74764496,"Lifetime Access to Online Services for rFactor 2",purchase,1.0,0 -74764496,"Project CARS - Audi Ruapuna Speedway Expansion Pack",purchase,1.0,0 -74764496,"Project CARS - Old Vs New Car Pack",purchase,1.0,0 -74764496,"Scania Truck Driving Simulator",purchase,1.0,0 -281657804,"Dota 2",purchase,1.0,0 -281657804,"Dota 2",play,2.3,0 -83928705,"Fallout New Vegas",purchase,1.0,0 -83928705,"Fallout New Vegas",play,20.0,0 -83928705,"Team Fortress 2",purchase,1.0,0 -83928705,"Team Fortress 2",play,7.8,0 -83928705,"Fallout",purchase,1.0,0 -83928705,"Fallout",play,0.2,0 -83928705,"Fallout 2",purchase,1.0,0 -83928705,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -83928705,"Fallout New Vegas Dead Money",purchase,1.0,0 -83928705,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -83928705,"Fallout Tactics",purchase,1.0,0 -301037405,"Mitos.is The Game",purchase,1.0,0 -301037405,"Mitos.is The Game",play,3.2,0 -138963130,"Dota 2",purchase,1.0,0 -138963130,"Dota 2",play,7.8,0 -206588234,"DARK SOULS II",purchase,1.0,0 -206588234,"DARK SOULS II",play,258.0,0 -206588234,"Dota 2",purchase,1.0,0 -206588234,"Dota 2",play,21.0,0 -206588234,"DARK SOULS II - Season Pass",purchase,1.0,0 -206588234,"DARK SOULS II Crown of the Old Iron King",purchase,1.0,0 -239646878,"Counter-Strike Global Offensive",purchase,1.0,0 -239646878,"Counter-Strike Global Offensive",play,2.0,0 -14477878,"Counter-Strike",purchase,1.0,0 -14477878,"Counter-Strike",play,0.6,0 -14477878,"Day of Defeat",purchase,1.0,0 -14477878,"Deathmatch Classic",purchase,1.0,0 -14477878,"Half-Life",purchase,1.0,0 -14477878,"Half-Life Blue Shift",purchase,1.0,0 -14477878,"Half-Life Opposing Force",purchase,1.0,0 -14477878,"Ricochet",purchase,1.0,0 -14477878,"Team Fortress Classic",purchase,1.0,0 -85018813,"Team Fortress 2",purchase,1.0,0 -85018813,"Team Fortress 2",play,0.3,0 -31889811,"FlatOut 2",purchase,1.0,0 -31889811,"FlatOut 2",play,0.7,0 -31889811,"Half-Life 2 Deathmatch",purchase,1.0,0 -31889811,"Half-Life 2 Deathmatch",play,0.4,0 -31889811,"FlatOut",purchase,1.0,0 -31889811,"Half-Life 2",purchase,1.0,0 -31889811,"Half-Life 2 Lost Coast",purchase,1.0,0 -86499586,"Terraria",purchase,1.0,0 -86499586,"Terraria",play,73.0,0 -86499586,"Sid Meier's Civilization V",purchase,1.0,0 -86499586,"Sid Meier's Civilization V",play,37.0,0 -86499586,"Garry's Mod",purchase,1.0,0 -86499586,"Garry's Mod",play,33.0,0 -86499586,"Counter-Strike Global Offensive",purchase,1.0,0 -86499586,"Counter-Strike Global Offensive",play,26.0,0 -86499586,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -86499586,"STAR WARS Knights of the Old Republic II The Sith Lords",play,22.0,0 -86499586,"Space Engineers",purchase,1.0,0 -86499586,"Space Engineers",play,16.1,0 -86499586,"FTL Faster Than Light",purchase,1.0,0 -86499586,"FTL Faster Than Light",play,14.5,0 -86499586,"Risk of Rain",purchase,1.0,0 -86499586,"Risk of Rain",play,7.6,0 -86499586,"Mount & Blade",purchase,1.0,0 -86499586,"Mount & Blade",play,7.2,0 -86499586,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -86499586,"Sid Meier's Civilization Beyond Earth",play,6.9,0 -86499586,"Unturned",purchase,1.0,0 -86499586,"Unturned",play,5.7,0 -86499586,"Guns of Icarus Online",purchase,1.0,0 -86499586,"Guns of Icarus Online",play,5.0,0 -86499586,"Viscera Cleanup Detail",purchase,1.0,0 -86499586,"Viscera Cleanup Detail",play,4.6,0 -86499586,"Starbound",purchase,1.0,0 -86499586,"Starbound",play,4.2,0 -86499586,"Counter-Strike Source",purchase,1.0,0 -86499586,"Counter-Strike Source",play,3.8,0 -86499586,"Age of Empires II HD Edition",purchase,1.0,0 -86499586,"Age of Empires II HD Edition",play,3.5,0 -86499586,"Team Fortress 2",purchase,1.0,0 -86499586,"Team Fortress 2",play,2.6,0 -86499586,"Robocraft",purchase,1.0,0 -86499586,"Robocraft",play,1.4,0 -86499586,"Chivalry Medieval Warfare",purchase,1.0,0 -86499586,"Chivalry Medieval Warfare",play,1.3,0 -86499586,"Nosgoth",purchase,1.0,0 -86499586,"Nosgoth",play,1.0,0 -86499586,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -86499586,"Viscera Cleanup Detail Santa's Rampage",play,0.9,0 -86499586,"Dota 2",purchase,1.0,0 -86499586,"Dota 2",play,0.8,0 -86499586,"Heroes & Generals",purchase,1.0,0 -86499586,"Heroes & Generals",play,0.3,0 -86499586,"Patch testing for Chivalry",purchase,1.0,0 -86499586,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -86499586,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -86499586,"Starbound - Unstable",purchase,1.0,0 -86499586,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -102687513,"Dota 2",purchase,1.0,0 -102687513,"Dota 2",play,591.0,0 -102687513,"FreeStyle2 Street Basketball",purchase,1.0,0 -102687513,"FreeStyle2 Street Basketball",play,1.0,0 -102687513,"Anno Online",purchase,1.0,0 -102687513,"Copa Petrobras de Marcas",purchase,1.0,0 -102687513,"Demise of Nations Rome",purchase,1.0,0 -102687513,"Dirty Bomb",purchase,1.0,0 -102687513,"GunZ 2 The Second Duel",purchase,1.0,0 -102687513,"HAWKEN",purchase,1.0,0 -102687513,"Heroes of SoulCraft",purchase,1.0,0 -102687513,"Neverwinter",purchase,1.0,0 -102687513,"Rise of Incarnates",purchase,1.0,0 -102687513,"Robocraft",purchase,1.0,0 -102687513,"TERA",purchase,1.0,0 -102687513,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -102687513,"Unturned",purchase,1.0,0 -102687513,"Warframe",purchase,1.0,0 -102687513,"War Thunder",purchase,1.0,0 -281082462,"Dota 2",purchase,1.0,0 -281082462,"Dota 2",play,241.0,0 -281082462,"Amnesia The Dark Descent",purchase,1.0,0 -281082462,"Amnesia The Dark Descent",play,1.5,0 -39941720,"Zombie Panic Source",purchase,1.0,0 -39941720,"Zombie Panic Source",play,216.0,0 -39941720,"Left 4 Dead 2",purchase,1.0,0 -39941720,"Left 4 Dead 2",play,42.0,0 -39941720,"Killing Floor",purchase,1.0,0 -39941720,"Killing Floor",play,33.0,0 -39941720,"Nosgoth",purchase,1.0,0 -39941720,"Nosgoth",play,16.4,0 -39941720,"Infestation Survivor Stories",purchase,1.0,0 -39941720,"Infestation Survivor Stories",play,13.8,0 -39941720,"Contagion",purchase,1.0,0 -39941720,"Contagion",play,13.4,0 -39941720,"Grand Theft Auto San Andreas",purchase,1.0,0 -39941720,"Grand Theft Auto San Andreas",play,11.0,0 -39941720,"State of Decay",purchase,1.0,0 -39941720,"State of Decay",play,9.9,0 -39941720,"Portal 2",purchase,1.0,0 -39941720,"Portal 2",play,9.5,0 -39941720,"Left 4 Dead",purchase,1.0,0 -39941720,"Left 4 Dead",play,8.0,0 -39941720,"Dead Island Riptide",purchase,1.0,0 -39941720,"Dead Island Riptide",play,7.7,0 -39941720,"Trine",purchase,1.0,0 -39941720,"Trine",play,7.0,0 -39941720,"God Mode",purchase,1.0,0 -39941720,"God Mode",play,5.3,0 -39941720,"Batman Arkham City GOTY",purchase,1.0,0 -39941720,"Batman Arkham City GOTY",play,5.0,0 -39941720,"Magicka",purchase,1.0,0 -39941720,"Magicka",play,3.6,0 -39941720,"Orcs Must Die!",purchase,1.0,0 -39941720,"Orcs Must Die!",play,2.8,0 -39941720,"Defiance",purchase,1.0,0 -39941720,"Defiance",play,2.3,0 -39941720,"Age of Empires II HD Edition",purchase,1.0,0 -39941720,"Age of Empires II HD Edition",play,2.2,0 -39941720,"Warframe",purchase,1.0,0 -39941720,"Warframe",play,1.9,0 -39941720,"Just Cause 2",purchase,1.0,0 -39941720,"Just Cause 2",play,1.2,0 -39941720,"Firefall",purchase,1.0,0 -39941720,"Firefall",play,1.0,0 -39941720,"Sniper Elite Nazi Zombie Army 2",purchase,1.0,0 -39941720,"Sniper Elite Nazi Zombie Army 2",play,1.0,0 -39941720,"Orcs Must Die! 2",purchase,1.0,0 -39941720,"Orcs Must Die! 2",play,0.8,0 -39941720,"Zombies Monsters Robots",purchase,1.0,0 -39941720,"Zombies Monsters Robots",play,0.7,0 -39941720,"Natural Selection 2",purchase,1.0,0 -39941720,"Natural Selection 2",play,0.7,0 -39941720,"Grand Theft Auto Vice City",purchase,1.0,0 -39941720,"Grand Theft Auto Vice City",play,0.6,0 -39941720,"Forge",purchase,1.0,0 -39941720,"Forge",play,0.6,0 -39941720,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -39941720,"Star Wars Jedi Knight Jedi Academy",play,0.5,0 -39941720,"No More Room in Hell",purchase,1.0,0 -39941720,"No More Room in Hell",play,0.4,0 -39941720,"Counter-Strike Nexon Zombies",purchase,1.0,0 -39941720,"Counter-Strike Nexon Zombies",play,0.4,0 -39941720,"Tom Clancy's Splinter Cell Chaos Theory",purchase,1.0,0 -39941720,"Tom Clancy's Splinter Cell Chaos Theory",play,0.3,0 -39941720,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -39941720,"Killing Floor Mod Defence Alliance 2",play,0.3,0 -39941720,"Rise of Incarnates",purchase,1.0,0 -39941720,"Rise of Incarnates",play,0.3,0 -39941720,"Two Worlds II",purchase,1.0,0 -39941720,"Two Worlds II",play,0.3,0 -39941720,"Dead Island",purchase,1.0,0 -39941720,"Grand Theft Auto San Andreas",purchase,1.0,0 -39941720,"Grand Theft Auto Vice City",purchase,1.0,0 -39941720,"Half-Life 2",purchase,1.0,0 -39941720,"Half-Life 2 Lost Coast",purchase,1.0,0 -39941720,"State of Decay - Breakdown",purchase,1.0,0 -39941720,"State of Decay - Lifeline",purchase,1.0,0 -39941720,"Two Worlds 2 - Pirates of the Flying Fortress ",purchase,1.0,0 -117974875,"Zombie Panic Source",purchase,1.0,0 -117974875,"Zombie Panic Source",play,0.8,0 -200012511,"Dota 2",purchase,1.0,0 -200012511,"Dota 2",play,3.2,0 -205751714,"Dota 2",purchase,1.0,0 -205751714,"Dota 2",play,0.3,0 -150225672,"Dota 2",purchase,1.0,0 -150225672,"Dota 2",play,31.0,0 -34281672,"The Walking Dead",purchase,1.0,0 -34281672,"The Walking Dead",play,185.0,0 -34281672,"Kerbal Space Program",purchase,1.0,0 -34281672,"Kerbal Space Program",play,42.0,0 -34281672,"Borderlands 2",purchase,1.0,0 -34281672,"Borderlands 2",play,38.0,0 -34281672,"Gauntlet ",purchase,1.0,0 -34281672,"Gauntlet ",play,20.0,0 -34281672,"The Elder Scrolls V Skyrim",purchase,1.0,0 -34281672,"The Elder Scrolls V Skyrim",play,18.2,0 -34281672,"Tropico 4",purchase,1.0,0 -34281672,"Tropico 4",play,16.2,0 -34281672,"Torchlight II",purchase,1.0,0 -34281672,"Torchlight II",play,9.3,0 -34281672,"Saints Row The Third",purchase,1.0,0 -34281672,"Saints Row The Third",play,8.6,0 -34281672,"F.E.A.R.",purchase,1.0,0 -34281672,"F.E.A.R.",play,7.8,0 -34281672,"PAYDAY 2",purchase,1.0,0 -34281672,"PAYDAY 2",play,4.6,0 -34281672,"Borderlands",purchase,1.0,0 -34281672,"Borderlands",play,4.5,0 -34281672,"Nancy Drew Ransom of the Seven Ships ",purchase,1.0,0 -34281672,"Nancy Drew Ransom of the Seven Ships ",play,4.5,0 -34281672,"Nancy Drew Ghost Dogs of Moon Lake ",purchase,1.0,0 -34281672,"Nancy Drew Ghost Dogs of Moon Lake ",play,4.3,0 -34281672,"Garry's Mod",purchase,1.0,0 -34281672,"Garry's Mod",play,3.0,0 -34281672,"Left 4 Dead",purchase,1.0,0 -34281672,"Left 4 Dead",play,2.6,0 -34281672,"Counter-Strike Source",purchase,1.0,0 -34281672,"Counter-Strike Source",play,2.5,0 -34281672,"SimCity 4 Deluxe",purchase,1.0,0 -34281672,"SimCity 4 Deluxe",play,2.4,0 -34281672,"Goat Simulator",purchase,1.0,0 -34281672,"Goat Simulator",play,2.3,0 -34281672,"Rust",purchase,1.0,0 -34281672,"Rust",play,1.2,0 -34281672,"Trine 2",purchase,1.0,0 -34281672,"Trine 2",play,1.0,0 -34281672,"Fallout New Vegas",purchase,1.0,0 -34281672,"Fallout New Vegas",play,0.9,0 -34281672,"State of Decay",purchase,1.0,0 -34281672,"State of Decay",play,0.8,0 -34281672,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -34281672,"Dark Souls Prepare to Die Edition",play,0.7,0 -34281672,"Just Cause 2",purchase,1.0,0 -34281672,"Just Cause 2",play,0.6,0 -34281672,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -34281672,"Batman Arkham Asylum GOTY Edition",play,0.6,0 -34281672,"Sacred 2 Gold",purchase,1.0,0 -34281672,"Sacred 2 Gold",play,0.6,0 -34281672,"Space Engineers",purchase,1.0,0 -34281672,"Space Engineers",play,0.5,0 -34281672,"BioShock",purchase,1.0,0 -34281672,"BioShock",play,0.4,0 -34281672,"Grand Theft Auto V",purchase,1.0,0 -34281672,"Grand Theft Auto V",play,0.2,0 -34281672,"Arma 2 Operation Arrowhead",purchase,1.0,0 -34281672,"Arma 2 Operation Arrowhead",play,0.2,0 -34281672,"Risen 2 - Dark Waters",purchase,1.0,0 -34281672,"Risen 2 - Dark Waters",play,0.1,0 -34281672,"ARK Survival Evolved",purchase,1.0,0 -34281672,"Arma 2",purchase,1.0,0 -34281672,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -34281672,"Batman Arkham City GOTY",purchase,1.0,0 -34281672,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -34281672,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -34281672,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -34281672,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -34281672,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -34281672,"F.E.A.R. 3",purchase,1.0,0 -34281672,"F.E.A.R. Extraction Point",purchase,1.0,0 -34281672,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -34281672,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -34281672,"Fallout New Vegas Dead Money",purchase,1.0,0 -34281672,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -34281672,"Guardians of Middle-earth",purchase,1.0,0 -34281672,"Mortal Kombat Kollection",purchase,1.0,0 -34281672,"Saints Row 2",purchase,1.0,0 -34281672,"Scribblenauts Unlimited",purchase,1.0,0 -34281672,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -34281672,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -34281672,"The Lord of the Rings War in the North",purchase,1.0,0 -24817862,"X3 Reunion",purchase,1.0,0 -134832575,"Dota 2",purchase,1.0,0 -134832575,"Dota 2",play,489.0,0 -134832575,"GunZ 2 The Second Duel",purchase,1.0,0 -134832575,"GunZ 2 The Second Duel",play,7.9,0 -134832575,"FreeStyle2 Street Basketball",purchase,1.0,0 -134832575,"FreeStyle2 Street Basketball",play,3.3,0 -134832575,"Team Fortress 2",purchase,1.0,0 -134832575,"Team Fortress 2",play,1.3,0 -134832575,"Loadout",purchase,1.0,0 -173606939,"Team Fortress 2",purchase,1.0,0 -173606939,"Team Fortress 2",play,1.1,0 -168828396,"Dota 2",purchase,1.0,0 -168828396,"Dota 2",play,503.0,0 -160732832,"Counter-Strike Nexon Zombies",purchase,1.0,0 -160732832,"Heroes & Generals",purchase,1.0,0 -160732832,"Robocraft",purchase,1.0,0 -160732832,"Warframe",purchase,1.0,0 -209623250,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -209623250,"METAL GEAR RISING REVENGEANCE",play,5.4,0 -209623250,"Sid Meier's Civilization V",purchase,1.0,0 -209623250,"Sid Meier's Civilization V",play,2.1,0 -209623250,"Torchlight II",purchase,1.0,0 -209623250,"Torchlight II",play,0.2,0 -209623250,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -209623250,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.2,0 -209623250,"Bastion",purchase,1.0,0 -209623250,"Bastion",play,0.1,0 -209623250,"FINAL FANTASY VII",purchase,1.0,0 -209623250,"PAYDAY 2",purchase,1.0,0 -209623250,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -209623250,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -209623250,"Tomb Raider",purchase,1.0,0 -210124834,"The Elder Scrolls V Skyrim",purchase,1.0,0 -210124834,"The Elder Scrolls V Skyrim",play,38.0,0 -221166146,"Larva Mortus",purchase,1.0,0 -192832691,"GunZ 2 The Second Duel",purchase,1.0,0 -124739366,"Team Fortress 2",purchase,1.0,0 -124739366,"Team Fortress 2",play,1156.0,0 -170845790,"Dota 2",purchase,1.0,0 -170845790,"Dota 2",play,1.4,0 -123186310,"The Binding of Isaac",purchase,1.0,0 -123186310,"The Binding of Isaac",play,19.1,0 -212078557,"Grand Theft Auto V",purchase,1.0,0 -212078557,"Grand Theft Auto V",play,21.0,0 -212078557,"Euro Truck Simulator 2",purchase,1.0,0 -212078557,"Euro Truck Simulator 2",play,21.0,0 -212078557,"Clicker Heroes",purchase,1.0,0 -212078557,"Clicker Heroes",play,3.4,0 -212078557,"Borderlands 2",purchase,1.0,0 -212078557,"Borderlands 2",play,3.4,0 -212078557,"Magic Duels",purchase,1.0,0 -212078557,"Magic Duels",play,1.8,0 -212078557,"Scania Truck Driving Simulator",purchase,1.0,0 -212078557,"Scania Truck Driving Simulator",play,0.9,0 -212078557,"Team Fortress 2",purchase,1.0,0 -212078557,"Team Fortress 2",play,0.7,0 -212078557,"Dirty Bomb",purchase,1.0,0 -212078557,"Dirty Bomb",play,0.5,0 -212078557,"Warframe",purchase,1.0,0 -212078557,"Warframe",play,0.5,0 -212078557,"Passing Pineview Forest",purchase,1.0,0 -212078557,"Passing Pineview Forest",play,0.4,0 -212078557,"Steel Ocean",purchase,1.0,0 -212078557,"Steel Ocean",play,0.4,0 -212078557,"HAWKEN",purchase,1.0,0 -212078557,"HAWKEN",play,0.2,0 -212078557,"Super Crate Box",purchase,1.0,0 -212078557,"Super Crate Box",play,0.1,0 -212078557,"Bus Driver",purchase,1.0,0 -212078557,"Bus Driver",play,0.1,0 -212078557,"Neverwinter",purchase,1.0,0 -212078557,"Neverwinter",play,0.1,0 -212078557,"No More Room in Hell",purchase,1.0,0 -212078557,"No More Room in Hell",play,0.1,0 -212078557,"Endless Sky",purchase,1.0,0 -212078557,"Euro Truck Simulator",purchase,1.0,0 -212078557,"Time Clickers",purchase,1.0,0 -212078557,"Trucks & Trailers",purchase,1.0,0 -212078557,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -212078557,"APB Reloaded",purchase,1.0,0 -212078557,"BEEP",purchase,1.0,0 -212078557,"Camera Obscura",purchase,1.0,0 -212078557,"Codename CURE",purchase,1.0,0 -212078557,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -212078557,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -212078557,"Grand Theft Auto San Andreas",purchase,1.0,0 -212078557,"Grand Theft Auto San Andreas",purchase,1.0,0 -212078557,"Grand Theft Auto Vice City",purchase,1.0,0 -212078557,"Grand Theft Auto Vice City",purchase,1.0,0 -212078557,"Grand Theft Auto III",purchase,1.0,0 -212078557,"Grand Theft Auto III",purchase,1.0,0 -212078557,"Grand Theft Auto IV",purchase,1.0,0 -212078557,"Out There Somewhere",purchase,1.0,0 -212078557,"Polarity",purchase,1.0,0 -212078557,"War Thunder",purchase,1.0,0 -246627895,"Counter-Strike Global Offensive",purchase,1.0,0 -246627895,"Counter-Strike Global Offensive",play,10.8,0 -246627895,"Defiance",purchase,1.0,0 -246627895,"MapleStory",purchase,1.0,0 -246627895,"PlanetSide 2",purchase,1.0,0 -246627895,"Ragnarok Online 2",purchase,1.0,0 -246627895,"Robocraft",purchase,1.0,0 -246627895,"Unturned",purchase,1.0,0 -246627895,"Warframe",purchase,1.0,0 -296636469,"Trove",purchase,1.0,0 -296636469,"WARMODE",purchase,1.0,0 -296636469,"Teeworlds",purchase,1.0,0 -296636469,"Clicker Heroes",purchase,1.0,0 -234526381,"Dota 2",purchase,1.0,0 -234526381,"Dota 2",play,1.6,0 -175526319,"Dota 2",purchase,1.0,0 -175526319,"Dota 2",play,1.8,0 -174874492,"Team Fortress 2",purchase,1.0,0 -174874492,"Team Fortress 2",play,5.0,0 -123483924,"Dota 2",purchase,1.0,0 -123483924,"Dota 2",play,1622.0,0 -123483924,"Neverwinter",purchase,1.0,0 -123483924,"Neverwinter",play,26.0,0 -123483924,"Guns and Robots",purchase,1.0,0 -123483924,"Guns and Robots",play,9.3,0 -123483924,"Warframe",purchase,1.0,0 -123483924,"Warframe",play,6.2,0 -123483924,"Robocraft",purchase,1.0,0 -123483924,"Robocraft",play,4.5,0 -123483924,"Forge",purchase,1.0,0 -123483924,"Forge",play,2.4,0 -123483924,"Magicka Wizard Wars",purchase,1.0,0 -123483924,"Magicka Wizard Wars",play,1.2,0 -123483924,"Team Fortress 2",purchase,1.0,0 -123483924,"Team Fortress 2",play,0.8,0 -123483924,"Nosgoth",purchase,1.0,0 -123483924,"Nosgoth",play,0.8,0 -123483924,"Happy Wars",purchase,1.0,0 -123483924,"Happy Wars",play,0.5,0 -123483924,"DCS World",purchase,1.0,0 -123483924,"APB Reloaded",purchase,1.0,0 -123483924,"Loadout",purchase,1.0,0 -123483924,"TOME Immortal Arena",purchase,1.0,0 -122274197,"Dota 2",purchase,1.0,0 -122274197,"Dota 2",play,1806.0,0 -122274197,"Garry's Mod",purchase,1.0,0 -122274197,"Garry's Mod",play,1.0,0 -151330875,"Dota 2",purchase,1.0,0 -151330875,"Dota 2",play,10.7,0 -245434963,"Nosgoth",purchase,1.0,0 -165851788,"Wolfenstein The New Order",purchase,1.0,0 -165851788,"Wolfenstein The New Order",play,42.0,0 -165851788,"Call of Duty Black Ops II",purchase,1.0,0 -165851788,"Call of Duty Black Ops II",play,16.8,0 -165851788,"Call of Duty Modern Warfare 3",purchase,1.0,0 -165851788,"Call of Duty Modern Warfare 3",play,10.7,0 -165851788,"DOOM 3 BFG Edition",purchase,1.0,0 -165851788,"DOOM 3 BFG Edition",play,6.1,0 -165851788,"Project CARS",purchase,1.0,0 -165851788,"Project CARS",play,4.5,0 -165851788,"Next Car Game Wreckfest",purchase,1.0,0 -165851788,"Next Car Game Wreckfest",play,2.0,0 -165851788,"BioShock Infinite",purchase,1.0,0 -165851788,"BioShock Infinite",play,1.0,0 -165851788,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -165851788,"Next Car Game Sneak Peek 2.0",play,0.2,0 -165851788,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -165851788,"Call of Duty Black Ops II - Zombies",play,0.1,0 -165851788,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -165851788,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -165851788,"Project CARS - Old Vs New Car Pack",purchase,1.0,0 -219145315,"Darkest Dungeon",purchase,1.0,0 -219145315,"Darkest Dungeon",play,5.7,0 -219145315,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -219145315,"Baldur's Gate Enhanced Edition",play,4.0,0 -219145315,"Dungeons & Dragons Online",purchase,1.0,0 -219145315,"Dungeons & Dragons Online",play,3.7,0 -219145315,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -245255545,"Dota 2",purchase,1.0,0 -245255545,"Dota 2",play,51.0,0 -245255545,"AdVenture Capitalist",purchase,1.0,0 -245255545,"Heroes & Generals",purchase,1.0,0 -245255545,"Loadout",purchase,1.0,0 -245255545,"PlanetSide 2",purchase,1.0,0 -245255545,"Quake Live",purchase,1.0,0 -245255545,"The Four Kings Casino and Slots",purchase,1.0,0 -245255545,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -240981203,"Warframe",purchase,1.0,0 -26813952,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -26813952,"Dark Messiah of Might & Magic Multi-Player",play,2.7,0 -26813952,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -67708331,"Sid Meier's Civilization V",purchase,1.0,0 -67708331,"Sid Meier's Civilization V",play,1122.0,0 -67708331,"Terraria",purchase,1.0,0 -67708331,"Terraria",play,162.0,0 -67708331,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -67708331,"Sid Meier's Civilization IV Beyond the Sword",play,134.0,0 -67708331,"Counter-Strike Global Offensive",purchase,1.0,0 -67708331,"Counter-Strike Global Offensive",play,13.8,0 -67708331,"Team Fortress 2",purchase,1.0,0 -67708331,"Team Fortress 2",play,13.3,0 -67708331,"Cities XL 2012",purchase,1.0,0 -67708331,"Cities XL 2012",play,8.5,0 -67708331,"Killing Floor",purchase,1.0,0 -67708331,"Killing Floor",play,6.4,0 -67708331,"Universe Sandbox ",purchase,1.0,0 -67708331,"Universe Sandbox ",play,6.0,0 -67708331,"Super Meat Boy",purchase,1.0,0 -67708331,"Super Meat Boy",play,4.5,0 -67708331,"Garry's Mod",purchase,1.0,0 -67708331,"Garry's Mod",play,3.6,0 -67708331,"The Binding of Isaac",purchase,1.0,0 -67708331,"The Binding of Isaac",play,1.4,0 -67708331,"Unturned",purchase,1.0,0 -67708331,"Unturned",play,1.0,0 -67708331,"Sid Meier's Civilization IV",purchase,1.0,0 -67708331,"Sid Meier's Civilization IV",play,0.7,0 -67708331,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -67708331,"Sid Meier's Civilization IV Colonization",play,0.6,0 -67708331,"Alien Swarm",purchase,1.0,0 -67708331,"Alien Swarm",play,0.2,0 -67708331,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -67708331,"Elegy For A Dead World",purchase,1.0,0 -67708331,"Sid Meier's Civilization IV",purchase,1.0,0 -67708331,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -67708331,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -67708331,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -67708331,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -67708331,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -67708331,"SMITE",purchase,1.0,0 -67708331,"Steel Storm Burning Retribution",purchase,1.0,0 -218164433,"Dota 2",purchase,1.0,0 -218164433,"Dota 2",play,0.1,0 -243905347,"Audition Online",purchase,1.0,0 -243905347,"Unturned",purchase,1.0,0 -258225013,"Dota 2",purchase,1.0,0 -258225013,"Dota 2",play,2.1,0 -302665353,"Unturned",purchase,1.0,0 -160937329,"Team Fortress 2",purchase,1.0,0 -160937329,"Team Fortress 2",play,2.4,0 -306547522,"Warface",purchase,1.0,0 -306547522,"Warface",play,3.6,0 -306547522,"Dota 2",purchase,1.0,0 -306547522,"Dota 2",play,2.8,0 -306547522,"Strife",purchase,1.0,0 -306547522,"Strife",play,1.2,0 -306547522,"Team Fortress 2",purchase,1.0,0 -306547522,"Team Fortress 2",play,0.5,0 -306547522,"Path of Exile",purchase,1.0,0 -306547522,"Smashmuck Champions",purchase,1.0,0 -306547522,"Warframe",purchase,1.0,0 -175918089,"The Elder Scrolls V Skyrim",purchase,1.0,0 -175918089,"The Elder Scrolls V Skyrim",play,49.0,0 -175918089,"Dead Island Riptide",purchase,1.0,0 -175918089,"Dead Island Riptide",play,35.0,0 -175918089,"Wolfenstein The New Order",purchase,1.0,0 -175918089,"Wolfenstein The New Order",play,21.0,0 -175918089,"Thief",purchase,1.0,0 -175918089,"Thief",play,2.2,0 -175918089,"Tomb Raider",purchase,1.0,0 -175918089,"Tomb Raider",play,1.7,0 -175918089,"Arma Cold War Assault",purchase,1.0,0 -175918089,"The Elder Scrolls III Morrowind",purchase,1.0,0 -175918089,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -175918089,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -175918089,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -175918089,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -162653477,"Fast & Furious Showdown",purchase,1.0,0 -162653477,"Fast & Furious Showdown",play,3.4,0 -112699561,"Dota 2",purchase,1.0,0 -112699561,"Dota 2",play,194.0,0 -129449377,"Serious Sam HD The Second Encounter",purchase,1.0,0 -129449377,"Serious Sam HD The Second Encounter",play,10.4,0 -231283521,"Dota 2",purchase,1.0,0 -231283521,"Dota 2",play,0.3,0 -297043863,"Team Fortress 2",purchase,1.0,0 -297043863,"Team Fortress 2",play,0.2,0 -279166226,"Elsword",purchase,1.0,0 -279166226,"Elsword",play,18.3,0 -73883045,"Call of Duty Black Ops",purchase,1.0,0 -73883045,"Call of Duty Black Ops",play,36.0,0 -73883045,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -73883045,"Call of Duty Black Ops - Multiplayer",play,24.0,0 -56788879,"Left 4 Dead",purchase,1.0,0 -56788879,"Left 4 Dead",play,1.8,0 -56788879,"ArcheAge",purchase,1.0,0 -250237388,"Unturned",purchase,1.0,0 -250237388,"Unturned",play,1.8,0 -167013261,"Portal 2",purchase,1.0,0 -167013261,"Portal 2",play,10.6,0 -167013261,"Portal",purchase,1.0,0 -167013261,"Portal",play,7.4,0 -167013261,"Half-Life 2",purchase,1.0,0 -167013261,"Half-Life 2",play,2.9,0 -167013261,"Mortal Kombat Kollection",purchase,1.0,0 -167013261,"Mortal Kombat Kollection",play,2.0,0 -167013261,"DOOM 3 BFG Edition",purchase,1.0,0 -167013261,"DOOM 3 BFG Edition",play,1.6,0 -167013261,"BioShock",purchase,1.0,0 -167013261,"BioShock",play,1.5,0 -167013261,"Dragon's Lair 2 Time Warp",purchase,1.0,0 -167013261,"Dragon's Lair 2 Time Warp",play,1.3,0 -167013261,"Dragon's Lair",purchase,1.0,0 -167013261,"Dragon's Lair",play,0.9,0 -167013261,"Mortal Kombat X",purchase,1.0,0 -167013261,"Mortal Kombat X",play,0.6,0 -167013261,"Space Ace",purchase,1.0,0 -167013261,"Space Ace",play,0.4,0 -167013261,"The Plan",purchase,1.0,0 -167013261,"Half-Life",purchase,1.0,0 -167013261,"Half-Life 2 Episode Two",purchase,1.0,0 -167013261,"Half-Life 2 Episode One",purchase,1.0,0 -167013261,"BioShock 2",purchase,1.0,0 -167013261,"BioShock Infinite",purchase,1.0,0 -167013261,"Dead Space",purchase,1.0,0 -167013261,"Dead Space 2",purchase,1.0,0 -167013261,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -167013261,"Fallout New Vegas",purchase,1.0,0 -167013261,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -167013261,"Fallout New Vegas Dead Money",purchase,1.0,0 -167013261,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -167013261,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -167013261,"Grand Theft Auto IV",purchase,1.0,0 -167013261,"Half-Life 2 Deathmatch",purchase,1.0,0 -167013261,"Half-Life 2 Lost Coast",purchase,1.0,0 -167013261,"Half-Life Blue Shift",purchase,1.0,0 -167013261,"Half-Life Opposing Force",purchase,1.0,0 -167013261,"Half-Life Source",purchase,1.0,0 -167013261,"Half-Life Deathmatch Source",purchase,1.0,0 -167013261,"Left 4 Dead",purchase,1.0,0 -167013261,"Left 4 Dead 2",purchase,1.0,0 -167013261,"Missing Translation",purchase,1.0,0 -167013261,"resident evil 4 / biohazard 4",purchase,1.0,0 -167013261,"Team Fortress Classic",purchase,1.0,0 -167013261,"The Elder Scrolls V Skyrim",purchase,1.0,0 -167013261,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -167013261,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -167013261,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -167013261,"The Evil Within",purchase,1.0,0 -167013261,"Transistor",purchase,1.0,0 -254084123,"Piercing Blow",purchase,1.0,0 -83559372,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -83559372,"Warhammer 40,000 Dawn of War II Retribution",play,64.0,0 -78900428,"Magicka",purchase,1.0,0 -78900428,"Magicka",play,6.5,0 -42507653,"Football Manager 2015",purchase,1.0,0 -42507653,"Football Manager 2015",play,136.0,0 -42507653,"Football Manager 2013",purchase,1.0,0 -42507653,"Football Manager 2013",play,22.0,0 -129478138,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -129478138,"Warhammer 40,000 Dawn of War Dark Crusade",play,22.0,0 -129478138,"Age of Empires II HD Edition",purchase,1.0,0 -129478138,"Age of Empires II HD Edition",play,7.2,0 -129478138,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -129478138,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,5.0,0 -129478138,"Fallout New Vegas",purchase,1.0,0 -129478138,"Fallout New Vegas",play,3.1,0 -129478138,"Dota 2",purchase,1.0,0 -129478138,"Dota 2",play,2.6,0 -129478138,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -129478138,"Warhammer 40,000 Dawn of War Soulstorm",play,1.9,0 -129478138,"Antichamber",purchase,1.0,0 -129478138,"Antichamber",play,1.8,0 -129478138,"Borderlands 2",purchase,1.0,0 -129478138,"Borderlands 2",play,1.1,0 -129478138,"Left 4 Dead 2",purchase,1.0,0 -129478138,"Left 4 Dead 2",play,0.8,0 -129478138,"Super Hexagon",purchase,1.0,0 -129478138,"Super Hexagon",play,0.8,0 -129478138,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -129478138,"Warhammer 40,000 Dawn of War Winter Assault",play,0.7,0 -129478138,"Age of Empires III Complete Collection",purchase,1.0,0 -129478138,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -129478138,"Batman Arkham City GOTY",purchase,1.0,0 -129478138,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -129478138,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -129478138,"Crysis 2 Maximum Edition",purchase,1.0,0 -129478138,"Dead Space",purchase,1.0,0 -129478138,"F.E.A.R.",purchase,1.0,0 -129478138,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -129478138,"F.E.A.R. 3",purchase,1.0,0 -129478138,"F.E.A.R. Extraction Point",purchase,1.0,0 -129478138,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -129478138,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -129478138,"Fallout New Vegas Dead Money",purchase,1.0,0 -129478138,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -129478138,"Guardians of Middle-earth",purchase,1.0,0 -129478138,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -129478138,"Medal of Honor(TM) Single Player",purchase,1.0,0 -129478138,"Medal of Honor Pre-Order",purchase,1.0,0 -129478138,"Mirror's Edge",purchase,1.0,0 -129478138,"Mortal Kombat Kollection",purchase,1.0,0 -129478138,"Saints Row The Third",purchase,1.0,0 -129478138,"Scribblenauts Unlimited",purchase,1.0,0 -129478138,"The Lord of the Rings War in the North",purchase,1.0,0 -129478138,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -129478138,"The Witcher Enhanced Edition",purchase,1.0,0 -129478138,"Tomb Raider",purchase,1.0,0 -129478138,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -129478138,"Tomb Raider Anniversary",purchase,1.0,0 -129478138,"Tomb Raider Chronicles",purchase,1.0,0 -129478138,"Tomb Raider Legend",purchase,1.0,0 -129478138,"Tomb Raider The Last Revelation",purchase,1.0,0 -129478138,"Tomb Raider Underworld",purchase,1.0,0 -129478138,"Tomb Raider I",purchase,1.0,0 -129478138,"Tomb Raider II",purchase,1.0,0 -129478138,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -186989053,"Dota 2",purchase,1.0,0 -186989053,"Dota 2",play,2.1,0 -161103820,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -161103820,"Call of Duty Black Ops II - Multiplayer",play,73.0,0 -161103820,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -161103820,"Call of Duty Black Ops II - Zombies",play,57.0,0 -161103820,"Call of Duty Black Ops II",purchase,1.0,0 -161103820,"Call of Duty Black Ops II",play,37.0,0 -165608075,"Counter-Strike Global Offensive",purchase,1.0,0 -165608075,"Counter-Strike Global Offensive",play,5.2,0 -165608075,"Jets'n'Guns Gold",purchase,1.0,0 -165608075,"Jets'n'Guns Gold",play,2.6,0 -165608075,"Homefront",purchase,1.0,0 -165608075,"Homefront",play,2.0,0 -165608075,"Dizzel",purchase,1.0,0 -165608075,"Dizzel",play,0.6,0 -165608075,"Anomaly Warzone Earth",purchase,1.0,0 -165608075,"Anomaly Warzone Earth",play,0.2,0 -165608075,"Half Minute Hero Super Mega Neo Climax Ultimate Boy",purchase,1.0,0 -165608075,"Quake Live",purchase,1.0,0 -165608075,"Ship Simulator Extremes",purchase,1.0,0 -180981964,"Age of Empires II HD Edition",purchase,1.0,0 -180981964,"Age of Empires II HD Edition",play,33.0,0 -180981964,"Age of Empires II HD The Forgotten",purchase,1.0,0 -166545912,"The Room",purchase,1.0,0 -166545912,"The Room",play,1.3,0 -166545912,"The Way of Life Free Edition",purchase,1.0,0 -166545912,"The Way of Life Free Edition",play,0.5,0 -166545912,"Heroes & Generals",purchase,1.0,0 -166545912,"Heroes & Generals",play,0.2,0 -166545912,"Five Nights at Freddy's",purchase,1.0,0 -166545912,"Five Nights at Freddy's",play,0.1,0 -166545912,"The Old Tree",purchase,1.0,0 -166545912,"Only If",purchase,1.0,0 -166545912,"No More Room in Hell",purchase,1.0,0 -166545912,"Warface",purchase,1.0,0 -208985864,"Dota 2",purchase,1.0,0 -208985864,"Dota 2",play,45.0,0 -190650796,"XCOM Enemy Unknown",purchase,1.0,0 -190650796,"XCOM Enemy Unknown",play,27.0,0 -190650796,"Doodle God",purchase,1.0,0 -190650796,"Doodle God",play,6.4,0 -190650796,"Besiege",purchase,1.0,0 -190650796,"Besiege",play,6.2,0 -190650796,"Star Wars Knights of the Old Republic",purchase,1.0,0 -190650796,"Star Wars Knights of the Old Republic",play,6.0,0 -190650796,"Grim Fandango Remastered",purchase,1.0,0 -190650796,"Grim Fandango Remastered",play,2.7,0 -190650796,"RollerCoaster Tycoon Deluxe",purchase,1.0,0 -190650796,"RollerCoaster Tycoon Deluxe",play,2.2,0 -190650796,"Fractured Space",purchase,1.0,0 -190650796,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -190650796,"XCOM Enemy Within",purchase,1.0,0 -108264287,"Arma 3",purchase,1.0,0 -108264287,"Arma 3",play,230.0,0 -108264287,"Company of Heroes 2",purchase,1.0,0 -108264287,"Company of Heroes 2",play,87.0,0 -108264287,"Rust",purchase,1.0,0 -108264287,"Rust",play,45.0,0 -108264287,"DayZ",purchase,1.0,0 -108264287,"DayZ",play,41.0,0 -108264287,"Terraria",purchase,1.0,0 -108264287,"Terraria",play,34.0,0 -108264287,"Fallout 4",purchase,1.0,0 -108264287,"Fallout 4",play,34.0,0 -108264287,"Age of Empires II HD Edition",purchase,1.0,0 -108264287,"Age of Empires II HD Edition",play,34.0,0 -108264287,"Supreme Commander Forged Alliance",purchase,1.0,0 -108264287,"Supreme Commander Forged Alliance",play,33.0,0 -108264287,"Counter-Strike Global Offensive",purchase,1.0,0 -108264287,"Counter-Strike Global Offensive",play,30.0,0 -108264287,"Garry's Mod",purchase,1.0,0 -108264287,"Garry's Mod",play,26.0,0 -108264287,"The Forest",purchase,1.0,0 -108264287,"The Forest",play,25.0,0 -108264287,"Don't Starve Together Beta",purchase,1.0,0 -108264287,"Don't Starve Together Beta",play,17.8,0 -108264287,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -108264287,"Sins of a Solar Empire Rebellion",play,17.4,0 -108264287,"Fallout New Vegas",purchase,1.0,0 -108264287,"Fallout New Vegas",play,16.6,0 -108264287,"Stronghold HD",purchase,1.0,0 -108264287,"Stronghold HD",play,12.5,0 -108264287,"Stronghold Crusader HD",purchase,1.0,0 -108264287,"Stronghold Crusader HD",play,11.9,0 -108264287,"Rise of Nations Extended Edition",purchase,1.0,0 -108264287,"Rise of Nations Extended Edition",play,11.8,0 -108264287,"Stronghold Crusader 2",purchase,1.0,0 -108264287,"Stronghold Crusader 2",play,10.5,0 -108264287,"Planetary Annihilation TITANS",purchase,1.0,0 -108264287,"Planetary Annihilation TITANS",play,10.2,0 -108264287,"RollerCoaster Tycoon Deluxe",purchase,1.0,0 -108264287,"RollerCoaster Tycoon Deluxe",play,9.9,0 -108264287,"King Arthur's Gold",purchase,1.0,0 -108264287,"King Arthur's Gold",play,9.2,0 -108264287,"AdVenture Capitalist",purchase,1.0,0 -108264287,"AdVenture Capitalist",play,8.7,0 -108264287,"Brawlhalla",purchase,1.0,0 -108264287,"Brawlhalla",play,7.0,0 -108264287,"The Elder Scrolls V Skyrim",purchase,1.0,0 -108264287,"The Elder Scrolls V Skyrim",play,7.0,0 -108264287,"Don't Starve",purchase,1.0,0 -108264287,"Don't Starve",play,6.8,0 -108264287,"Mad Max",purchase,1.0,0 -108264287,"Mad Max",play,6.7,0 -108264287,"Warface",purchase,1.0,0 -108264287,"Warface",play,5.7,0 -108264287,"Rome Total War",purchase,1.0,0 -108264287,"Rome Total War",play,5.3,0 -108264287,"Unturned",purchase,1.0,0 -108264287,"Unturned",play,5.3,0 -108264287,"Mass Effect",purchase,1.0,0 -108264287,"Mass Effect",play,3.6,0 -108264287,"Trove",purchase,1.0,0 -108264287,"Trove",play,3.5,0 -108264287,"Company of Heroes (New Steam Version)",purchase,1.0,0 -108264287,"Company of Heroes (New Steam Version)",play,2.7,0 -108264287,"Dirty Bomb",purchase,1.0,0 -108264287,"Dirty Bomb",play,2.4,0 -108264287,"Insurgency",purchase,1.0,0 -108264287,"Insurgency",play,2.0,0 -108264287,"No More Room in Hell",purchase,1.0,0 -108264287,"No More Room in Hell",play,1.8,0 -108264287,"RollerCoaster Tycoon 2 Triple Thrill Pack",purchase,1.0,0 -108264287,"RollerCoaster Tycoon 2 Triple Thrill Pack",play,1.5,0 -108264287,"Left 4 Dead 2",purchase,1.0,0 -108264287,"Left 4 Dead 2",play,1.5,0 -108264287,"Stronghold 3",purchase,1.0,0 -108264287,"Stronghold 3",play,1.3,0 -108264287,"Stronghold Legends",purchase,1.0,0 -108264287,"Stronghold Legends",play,1.2,0 -108264287,"America's Army Proving Grounds",purchase,1.0,0 -108264287,"America's Army Proving Grounds",play,1.1,0 -108264287,"Stronghold 2",purchase,1.0,0 -108264287,"Stronghold 2",play,0.8,0 -108264287,"Dungeon Defenders II",purchase,1.0,0 -108264287,"Dungeon Defenders II",play,0.6,0 -108264287,"Counter-Strike Source",purchase,1.0,0 -108264287,"Counter-Strike Source",play,0.4,0 -108264287,"Arma 2 Operation Arrowhead",purchase,1.0,0 -108264287,"Arma 2 Operation Arrowhead",play,0.4,0 -108264287,"Emily is Away",purchase,1.0,0 -108264287,"Emily is Away",play,0.4,0 -108264287,"Fallen Earth",purchase,1.0,0 -108264287,"Fallen Earth",play,0.3,0 -108264287,"Planetary Annihilation",purchase,1.0,0 -108264287,"Planetary Annihilation",play,0.2,0 -108264287,"Robocraft",purchase,1.0,0 -108264287,"Arma 2",purchase,1.0,0 -108264287,"Arma 2 DayZ Mod",purchase,1.0,0 -108264287,"Age of Empires II HD The Forgotten",purchase,1.0,0 -108264287,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -108264287,"Arma 3 Zeus",purchase,1.0,0 -108264287,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -108264287,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -108264287,"Company of Heroes",purchase,1.0,0 -108264287,"Don't Starve Shipwrecked",purchase,1.0,0 -108264287,"Don't Starve Reign of Giants",purchase,1.0,0 -108264287,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -108264287,"Fallout New Vegas Dead Money",purchase,1.0,0 -108264287,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -108264287,"Mass Effect 2",purchase,1.0,0 -108264287,"Rome Total War - Alexander",purchase,1.0,0 -108264287,"Sins of a Solar Empire Rebellion - Stellar Phenomena DLC",purchase,1.0,0 -108264287,"Sins of a Solar Empire Rebellion Forbidden Worlds",purchase,1.0,0 -108264287,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -108264287,"Stronghold Crusader Extreme HD",purchase,1.0,0 -108264287,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -108264287,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -108264287,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -141706846,"Dota 2",purchase,1.0,0 -141706846,"Dota 2",play,4067.0,0 -139574808,"Dota 2",purchase,1.0,0 -139574808,"Dota 2",play,0.8,0 -71462210,"Napoleon Total War",purchase,1.0,0 -71462210,"Napoleon Total War",play,4.1,0 -230507451,"Counter-Strike Global Offensive",purchase,1.0,0 -230507451,"Counter-Strike Global Offensive",play,294.0,0 -230507451,"War of Beach",purchase,1.0,0 -230507451,"Counter-Strike Nexon Zombies",purchase,1.0,0 -230507451,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -230507451,"Warface",purchase,1.0,0 -185059222,"Dota 2",purchase,1.0,0 -185059222,"Dota 2",play,0.5,0 -228347295,"Runestone Keeper",purchase,1.0,0 -228347295,"Runestone Keeper",play,109.0,0 -122824133,"Ace of Spades",purchase,1.0,0 -122824133,"Ace of Spades",play,48.0,0 -122824133,"Team Fortress 2",purchase,1.0,0 -122824133,"Team Fortress 2",play,30.0,0 -240328249,"Dota 2",purchase,1.0,0 -240328249,"Dota 2",play,115.0,0 -240328249,"Unturned",purchase,1.0,0 -240328249,"Unturned",play,0.5,0 -240328249,"The Binding of Isaac",purchase,1.0,0 -240328249,"The Binding of Isaac",play,0.1,0 -170534098,"Dota 2",purchase,1.0,0 -170534098,"Dota 2",play,1.7,0 -162288536,"Arma 3",purchase,1.0,0 -162288536,"Arma 3",play,865.0,0 -162288536,"Crusader Kings II",purchase,1.0,0 -162288536,"Crusader Kings II",play,505.0,0 -162288536,"The Elder Scrolls V Skyrim",purchase,1.0,0 -162288536,"The Elder Scrolls V Skyrim",play,218.0,0 -162288536,"Rust",purchase,1.0,0 -162288536,"Rust",play,209.0,0 -162288536,"Age of Empires III Complete Collection",purchase,1.0,0 -162288536,"Age of Empires III Complete Collection",play,176.0,0 -162288536,"Reign Of Kings",purchase,1.0,0 -162288536,"Reign Of Kings",play,137.0,0 -162288536,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -162288536,"Rising Storm/Red Orchestra 2 Multiplayer",play,108.0,0 -162288536,"Tropico 4",purchase,1.0,0 -162288536,"Tropico 4",play,88.0,0 -162288536,"Sid Meier's Civilization V",purchase,1.0,0 -162288536,"Sid Meier's Civilization V",play,72.0,0 -162288536,"DayZ",purchase,1.0,0 -162288536,"DayZ",play,62.0,0 -162288536,"Star Wars Knights of the Old Republic",purchase,1.0,0 -162288536,"Star Wars Knights of the Old Republic",play,53.0,0 -162288536,"Life is Feudal Your Own",purchase,1.0,0 -162288536,"Life is Feudal Your Own",play,53.0,0 -162288536,"The Forest",purchase,1.0,0 -162288536,"The Forest",play,51.0,0 -162288536,"Combat Arms",purchase,1.0,0 -162288536,"Combat Arms",play,50.0,0 -162288536,"State of Decay",purchase,1.0,0 -162288536,"State of Decay",play,44.0,0 -162288536,"BioShock Infinite",purchase,1.0,0 -162288536,"BioShock Infinite",play,25.0,0 -162288536,"This War of Mine",purchase,1.0,0 -162288536,"This War of Mine",play,24.0,0 -162288536,"Grand Theft Auto IV",purchase,1.0,0 -162288536,"Grand Theft Auto IV",play,22.0,0 -162288536,"Assassin's Creed IV Black Flag",purchase,1.0,0 -162288536,"Assassin's Creed IV Black Flag",play,21.0,0 -162288536,"Hitman Absolution",purchase,1.0,0 -162288536,"Hitman Absolution",play,15.2,0 -162288536,"Assassin's Creed Brotherhood",purchase,1.0,0 -162288536,"Assassin's Creed Brotherhood",play,14.3,0 -162288536,"Empire Total War",purchase,1.0,0 -162288536,"Empire Total War",play,14.1,0 -162288536,"PlanetSide 2",purchase,1.0,0 -162288536,"PlanetSide 2",play,13.7,0 -162288536,"Thief",purchase,1.0,0 -162288536,"Thief",play,10.8,0 -162288536,"Cabela's Big Game Hunter Pro Hunts",purchase,1.0,0 -162288536,"Cabela's Big Game Hunter Pro Hunts",play,10.6,0 -162288536,"Grand Theft Auto San Andreas",purchase,1.0,0 -162288536,"Grand Theft Auto San Andreas",play,10.2,0 -162288536,"Assassin's Creed Revelations",purchase,1.0,0 -162288536,"Assassin's Creed Revelations",play,10.1,0 -162288536,"Mount & Blade Warband",purchase,1.0,0 -162288536,"Mount & Blade Warband",play,9.8,0 -162288536,"Napoleon Total War",purchase,1.0,0 -162288536,"Napoleon Total War",play,9.4,0 -162288536,"Assassin's Creed II",purchase,1.0,0 -162288536,"Assassin's Creed II",play,8.1,0 -162288536,"Mount & Blade With Fire and Sword",purchase,1.0,0 -162288536,"Mount & Blade With Fire and Sword",play,7.8,0 -162288536,"Far Cry 3",purchase,1.0,0 -162288536,"Far Cry 3",play,6.3,0 -162288536,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -162288536,"RollerCoaster Tycoon 3 Platinum!",play,5.1,0 -162288536,"Assassin's Creed",purchase,1.0,0 -162288536,"Assassin's Creed",play,4.4,0 -162288536,"Grand Theft Auto Vice City",purchase,1.0,0 -162288536,"Grand Theft Auto Vice City",play,4.2,0 -162288536,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -162288536,"Star Wars - Jedi Knight II Jedi Outcast",play,4.0,0 -162288536,"The Sims(TM) 3",purchase,1.0,0 -162288536,"The Sims(TM) 3",play,3.8,0 -162288536,"Arma 2 Operation Arrowhead",purchase,1.0,0 -162288536,"Arma 2 Operation Arrowhead",play,3.2,0 -162288536,"Assassin's Creed III",purchase,1.0,0 -162288536,"Assassin's Creed III",play,3.1,0 -162288536,"Fallout New Vegas",purchase,1.0,0 -162288536,"Fallout New Vegas",play,2.7,0 -162288536,"Grand Theft Auto III",purchase,1.0,0 -162288536,"Grand Theft Auto III",play,2.6,0 -162288536,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -162288536,"Fallout 3 - Game of the Year Edition",play,1.7,0 -162288536,"BioShock 2",purchase,1.0,0 -162288536,"BioShock 2",play,1.6,0 -162288536,"DOOM 3",purchase,1.0,0 -162288536,"DOOM 3",play,1.4,0 -162288536,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -162288536,"The Elder Scrolls IV Oblivion ",play,1.3,0 -162288536,"The Lord of the Rings Online",purchase,1.0,0 -162288536,"The Lord of the Rings Online",play,1.2,0 -162288536,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -162288536,"STAR WARS Knights of the Old Republic II The Sith Lords",play,1.1,0 -162288536,"Star Wars - Battlefront II",purchase,1.0,0 -162288536,"Star Wars - Battlefront II",play,1.1,0 -162288536,"Medieval II Total War",purchase,1.0,0 -162288536,"Medieval II Total War",play,1.0,0 -162288536,"ARK Survival Evolved",purchase,1.0,0 -162288536,"ARK Survival Evolved",play,0.9,0 -162288536,"Mafia II",purchase,1.0,0 -162288536,"Mafia II",play,0.8,0 -162288536,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -162288536,"Star Wars Jedi Knight Jedi Academy",play,0.7,0 -162288536,"Total War SHOGUN 2",purchase,1.0,0 -162288536,"Total War SHOGUN 2",play,0.7,0 -162288536,"BioShock",purchase,1.0,0 -162288536,"BioShock",play,0.7,0 -162288536,"SimCity 4 Deluxe",purchase,1.0,0 -162288536,"SimCity 4 Deluxe",play,0.6,0 -162288536,"Men of War Assault Squad",purchase,1.0,0 -162288536,"Men of War Assault Squad",play,0.3,0 -162288536,"Banished",purchase,1.0,0 -162288536,"Banished",play,0.3,0 -162288536,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -162288536,"Infinity Wars - Animated Trading Card Game",play,0.3,0 -162288536,"RAGE",purchase,1.0,0 -162288536,"RAGE",play,0.3,0 -162288536,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -162288536,"Grand Theft Auto Episodes from Liberty City",play,0.3,0 -162288536,"DOOM 3 Resurrection of Evil",purchase,1.0,0 -162288536,"DOOM 3 Resurrection of Evil",play,0.2,0 -162288536,"Depth",purchase,1.0,0 -162288536,"Depth",play,0.1,0 -162288536,"Verdun",purchase,1.0,0 -162288536,"Age of Empires II HD Edition",purchase,1.0,0 -162288536,"Stranded Deep",purchase,1.0,0 -162288536,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -162288536,"Arma 2",purchase,1.0,0 -162288536,"Arma 2 British Armed Forces",purchase,1.0,0 -162288536,"Arma 2 Private Military Company",purchase,1.0,0 -162288536,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -162288536,"Arma 3 Helicopters",purchase,1.0,0 -162288536,"Arma 3 Karts",purchase,1.0,0 -162288536,"Arma 3 Marksmen",purchase,1.0,0 -162288536,"Arma 3 Zeus",purchase,1.0,0 -162288536,"Arma Cold War Assault",purchase,1.0,0 -162288536,"Borderlands 2",purchase,1.0,0 -162288536,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -162288536,"Fallout New Vegas Dead Money",purchase,1.0,0 -162288536,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -162288536,"Grand Theft Auto San Andreas",purchase,1.0,0 -162288536,"Grand Theft Auto Vice City",purchase,1.0,0 -162288536,"Grand Theft Auto III",purchase,1.0,0 -162288536,"Hitman Blood Money",purchase,1.0,0 -162288536,"Hitman Sniper Challenge",purchase,1.0,0 -162288536,"Lego Harry Potter",purchase,1.0,0 -162288536,"LEGO Harry Potter Years 5-7",purchase,1.0,0 -162288536,"Lego Star Wars Saga",purchase,1.0,0 -162288536,"LEGO The Lord of the Rings",purchase,1.0,0 -162288536,"Medieval II Total War Kingdoms",purchase,1.0,0 -162288536,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -162288536,"Rome Total War",purchase,1.0,0 -162288536,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -162288536,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -162288536,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -162288536,"State of Decay - Breakdown",purchase,1.0,0 -162288536,"State of Decay - Lifeline",purchase,1.0,0 -162288536,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -162288536,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -162288536,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -162288536,"Thief - Opportunist",purchase,1.0,0 -162288536,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -162288536,"Tropico 5",purchase,1.0,0 -300271429,"Fishing Planet",purchase,1.0,0 -300271429,"Fishing Planet",play,0.4,0 -180236782,"Team Fortress 2",purchase,1.0,0 -180236782,"Team Fortress 2",play,1645.0,0 -180236782,"Counter-Strike Global Offensive",purchase,1.0,0 -180236782,"Counter-Strike Global Offensive",play,26.0,0 -180236782,"Spiral Knights",purchase,1.0,0 -180236782,"Spiral Knights",play,8.3,0 -180236782,"Warface",purchase,1.0,0 -180236782,"Warface",play,2.1,0 -180236782,"Alien Swarm",purchase,1.0,0 -180236782,"Alien Swarm",play,1.8,0 -180236782,"Five Nights at Freddy's 2",purchase,1.0,0 -180236782,"Five Nights at Freddy's 2",play,0.7,0 -180236782,"Five Nights at Freddy's",purchase,1.0,0 -180236782,"Five Nights at Freddy's",play,0.5,0 -180236782,"Portal 2 - The Final Hours",purchase,1.0,0 -180236782,"Portal 2 - The Final Hours",play,0.4,0 -180236782,"Super Monday Night Combat",purchase,1.0,0 -180236782,"Super Monday Night Combat",play,0.3,0 -180236782,"Source Filmmaker",purchase,1.0,0 -180236782,"Source Filmmaker",play,0.2,0 -180236782,"CrimeCraft GangWars",purchase,1.0,0 -180236782,"Running Shadow",purchase,1.0,0 -180236782,"Tribes Ascend",purchase,1.0,0 -232357353,"Infinite Crisis",purchase,1.0,0 -232357353,"Strife",purchase,1.0,0 -152019326,"Dota 2",purchase,1.0,0 -152019326,"Dota 2",play,5.8,0 -244294064,"Team Fortress 2",purchase,1.0,0 -244294064,"Team Fortress 2",play,3.1,0 -244294064,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",purchase,1.0,0 -244294064,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",play,2.2,0 -244294064,"Warframe",purchase,1.0,0 -244294064,"Warframe",play,0.2,0 -244294064,"Nosgoth",purchase,1.0,0 -244294064,"Nosgoth",play,0.1,0 -77113494,"Sniper Elite V2",purchase,1.0,0 -77113494,"Sniper Elite V2",play,0.5,0 -77113494,"Arma Cold War Assault",purchase,1.0,0 -77113494,"Arma Cold War Assault",play,0.1,0 -77113494,"AirMech",purchase,1.0,0 -308970742,"Counter-Strike Nexon Zombies",purchase,1.0,0 -308970742,"Counter-Strike Nexon Zombies",play,0.6,0 -39044050,"Half-Life 2 Lost Coast",purchase,1.0,0 -39044050,"Half-Life 2 Lost Coast",play,1.4,0 -39044050,"Half-Life 2 Deathmatch",purchase,1.0,0 -39044050,"Half-Life 2 Deathmatch",play,0.3,0 -146607430,"Dota 2",purchase,1.0,0 -146607430,"Dota 2",play,78.0,0 -72629386,"Counter-Strike",purchase,1.0,0 -72629386,"Counter-Strike",play,164.0,0 -72629386,"Counter-Strike Condition Zero",purchase,1.0,0 -72629386,"Counter-Strike Condition Zero",play,0.1,0 -72629386,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -72629386,"Counter-Strike Condition Zero Deleted Scenes",play,0.1,0 -72629386,"Day of Defeat",purchase,1.0,0 -72629386,"Deathmatch Classic",purchase,1.0,0 -72629386,"Ricochet",purchase,1.0,0 -115602674,"Dota 2",purchase,1.0,0 -115602674,"Dota 2",play,2.0,0 -229610569,"Counter-Strike Global Offensive",purchase,1.0,0 -229610569,"Counter-Strike Global Offensive",play,213.0,0 -229610569,"Rocket League",purchase,1.0,0 -229610569,"Rocket League",play,4.6,0 -57333945,"Counter-Strike Nexon Zombies",purchase,1.0,0 -57333945,"Gems of War",purchase,1.0,0 -57333945,"Loadout",purchase,1.0,0 -57333945,"Prime World",purchase,1.0,0 -57333945,"Robocraft",purchase,1.0,0 -57333945,"Run and Fire",purchase,1.0,0 -57333945,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -57333945,"Star Conflict",purchase,1.0,0 -57333945,"The Expendabros",purchase,1.0,0 -57333945,"Trove",purchase,1.0,0 -57333945,"UberStrike",purchase,1.0,0 -57333945,"Unturned",purchase,1.0,0 -57333945,"Warframe",purchase,1.0,0 -125355604,"Dota 2",purchase,1.0,0 -125355604,"Dota 2",play,16.1,0 -39869522,"Counter-Strike Source",purchase,1.0,0 -39869522,"Counter-Strike Source",play,32.0,0 -39869522,"Day of Defeat Source",purchase,1.0,0 -39869522,"Half-Life 2 Deathmatch",purchase,1.0,0 -39869522,"Half-Life 2 Lost Coast",purchase,1.0,0 -139110840,"Dota 2",purchase,1.0,0 -139110840,"Dota 2",play,4.9,0 -219035059,"Heroes & Generals",purchase,1.0,0 -219035059,"Heroes & Generals",play,89.0,0 -158383365,"Dota 2",purchase,1.0,0 -158383365,"Dota 2",play,2.7,0 -58481977,"Dota 2",purchase,1.0,0 -58481977,"Dota 2",play,3735.0,0 -58481977,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -58481977,"Call of Duty Modern Warfare 2 - Multiplayer",play,107.0,0 -58481977,"7 Days to Die",purchase,1.0,0 -58481977,"7 Days to Die",play,29.0,0 -58481977,"Counter-Strike Global Offensive",purchase,1.0,0 -58481977,"Counter-Strike Global Offensive",play,28.0,0 -58481977,"Counter-Strike Source",purchase,1.0,0 -58481977,"Counter-Strike Source",play,21.0,0 -58481977,"Free to Play",purchase,1.0,0 -58481977,"Free to Play",play,2.2,0 -58481977,"Half-Life 2 Deathmatch",purchase,1.0,0 -58481977,"Half-Life 2 Deathmatch",play,0.6,0 -58481977,"Call of Duty Modern Warfare 2",purchase,1.0,0 -58481977,"Call of Duty Modern Warfare 2",play,0.5,0 -58481977,"Call of Duty Ghosts",purchase,1.0,0 -58481977,"Call of Duty Ghosts",play,0.3,0 -58481977,"Counter-Strike Nexon Zombies",purchase,1.0,0 -58481977,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -58481977,"Day of Defeat Source",purchase,1.0,0 -58481977,"Half-Life 2 Lost Coast",purchase,1.0,0 -185169394,"Warface",purchase,1.0,0 -60549077,"The Maw",purchase,1.0,0 -60549077,"The Maw",play,5.6,0 -60549077,"Cloudy with a Chance of Meatballs",purchase,1.0,0 -60549077,"Cloudy with a Chance of Meatballs",play,4.9,0 -60549077,"Titan Quest",purchase,1.0,0 -60549077,"Titan Quest",play,2.9,0 -60549077,"Dungeons of Dredmor",purchase,1.0,0 -60549077,"Dungeons of Dredmor",play,2.7,0 -60549077,"Portal",purchase,1.0,0 -60549077,"Portal",play,2.5,0 -60549077,"Eets",purchase,1.0,0 -60549077,"Eets",play,2.1,0 -60549077,"Toki Tori",purchase,1.0,0 -60549077,"Toki Tori",play,1.7,0 -60549077,"Portal 2",purchase,1.0,0 -60549077,"Portal 2",play,1.2,0 -60549077,"Max and the Magic Marker",purchase,1.0,0 -60549077,"Max and the Magic Marker",play,1.2,0 -60549077,"Rag Doll Kung Fu",purchase,1.0,0 -60549077,"Rag Doll Kung Fu",play,1.1,0 -60549077,"Fortix",purchase,1.0,0 -60549077,"Fortix",play,0.7,0 -60549077,"Bob Came in Pieces",purchase,1.0,0 -60549077,"Bob Came in Pieces",play,0.7,0 -60549077,"Evil Genius",purchase,1.0,0 -60549077,"Evil Genius",play,0.5,0 -60549077,"Delve Deeper",purchase,1.0,0 -60549077,"Delve Deeper",play,0.4,0 -60549077,"Gumboy Crazy Adventures",purchase,1.0,0 -60549077,"Gumboy Crazy Adventures",play,0.3,0 -60549077,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -60549077,"SEGA Genesis & Mega Drive Classics",play,0.2,0 -60549077,"Gumboy Crazy Features",purchase,1.0,0 -60549077,"Gumboy Crazy Features",play,0.2,0 -60549077,"Crayon Physics Deluxe",purchase,1.0,0 -60549077,"The Polynomial",purchase,1.0,0 -60549077,"Ziro",purchase,1.0,0 -60549077,"Blockland",purchase,1.0,0 -60549077,"Cthulhu Saves the World ",purchase,1.0,0 -60549077,"Faerie Solitaire",purchase,1.0,0 -60549077,"Geometry Wars Retro Evolved",purchase,1.0,0 -60549077,"NyxQuest",purchase,1.0,0 -60549077,"Puzzle Kingdoms",purchase,1.0,0 -60549077,"Puzzle Quest",purchase,1.0,0 -60549077,"Secret of the Magic Crystal",purchase,1.0,0 -60549077,"Spectromancer",purchase,1.0,0 -60549077,"Ticket to Ride",purchase,1.0,0 -60549077,"Titan Quest Immortal Throne",purchase,1.0,0 -236023531,"Dota 2",purchase,1.0,0 -236023531,"Dota 2",play,125.0,0 -138110654,"Team Fortress 2",purchase,1.0,0 -138110654,"Team Fortress 2",play,68.0,0 -204916406,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -204916406,"Tom Clancy's Ghost Recon Phantoms - NA",play,390.0,0 -204916406,"Dirty Bomb",purchase,1.0,0 -204916406,"Dirty Bomb",play,23.0,0 -204916406,"Legend of Dungeon Masters",purchase,1.0,0 -201660033,"Insecticide Part 1",purchase,1.0,0 -255846501,"Dota 2",purchase,1.0,0 -255846501,"Dota 2",play,1.1,0 -124651043,"Total War ROME II - Emperor Edition",purchase,1.0,0 -124651043,"Total War ROME II - Emperor Edition",play,246.0,0 -124651043,"The Elder Scrolls V Skyrim",purchase,1.0,0 -124651043,"The Elder Scrolls V Skyrim",play,170.0,0 -124651043,"Empire Total War",purchase,1.0,0 -124651043,"Empire Total War",play,131.0,0 -124651043,"FINAL FANTASY VIII",purchase,1.0,0 -124651043,"FINAL FANTASY VIII",play,126.0,0 -124651043,"Fallout New Vegas",purchase,1.0,0 -124651043,"Fallout New Vegas",play,85.0,0 -124651043,"Total War SHOGUN 2",purchase,1.0,0 -124651043,"Total War SHOGUN 2",play,77.0,0 -124651043,"Sid Meier's Civilization V",purchase,1.0,0 -124651043,"Sid Meier's Civilization V",play,28.0,0 -124651043,"Stronghold Crusader 2",purchase,1.0,0 -124651043,"Stronghold Crusader 2",play,23.0,0 -124651043,"Age of Mythology Extended Edition",purchase,1.0,0 -124651043,"Age of Mythology Extended Edition",play,22.0,0 -124651043,"Total War ATTILA",purchase,1.0,0 -124651043,"Total War ATTILA",play,18.0,0 -124651043,"Stronghold 3",purchase,1.0,0 -124651043,"Stronghold 3",play,17.8,0 -124651043,"Stronghold HD",purchase,1.0,0 -124651043,"Stronghold HD",play,12.3,0 -124651043,"Spore Galactic Adventures",purchase,1.0,0 -124651043,"Spore Galactic Adventures",play,12.0,0 -124651043,"Spore",purchase,1.0,0 -124651043,"Spore",play,4.9,0 -124651043,"Oddworld Abe's Oddysee",purchase,1.0,0 -124651043,"Oddworld Abe's Oddysee",play,0.8,0 -124651043,"Oddworld Abe's Exoddus",purchase,1.0,0 -124651043,"Oddworld Abe's Exoddus",play,0.3,0 -124651043,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -124651043,"Fallout 3 - Game of the Year Edition",play,0.1,0 -124651043,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -124651043,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -124651043,"Fallout New Vegas Dead Money",purchase,1.0,0 -124651043,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -124651043,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -124651043,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -186069406,"Dota 2",purchase,1.0,0 -186069406,"Dota 2",play,1971.0,0 -186069406,"Counter-Strike Global Offensive",purchase,1.0,0 -186069406,"Counter-Strike Global Offensive",play,84.0,0 -186069406,"Unturned",purchase,1.0,0 -186069406,"Unturned",play,26.0,0 -186069406,"Counter-Strike Source",purchase,1.0,0 -186069406,"Counter-Strike Source",play,22.0,0 -186069406,"BLOCKADE 3D",purchase,1.0,0 -186069406,"BLOCKADE 3D",play,8.1,0 -186069406,"Counter-Strike",purchase,1.0,0 -186069406,"Counter-Strike",play,7.2,0 -186069406,"Trove",purchase,1.0,0 -186069406,"Trove",play,1.4,0 -186069406,"Counter-Strike Condition Zero",purchase,1.0,0 -186069406,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -186069406,"Heroes & Generals",purchase,1.0,0 -85298989,"Duke Nukem Forever",purchase,1.0,0 -85298989,"Duke Nukem Forever",play,16.8,0 -233209749,"Team Fortress 2",purchase,1.0,0 -233209749,"Team Fortress 2",play,7.4,0 -233209749,"War Thunder",purchase,1.0,0 -233209749,"War Thunder",play,0.1,0 -233209749,"Marvel Heroes 2015",purchase,1.0,0 -296207877,"Dota 2",purchase,1.0,0 -296207877,"Dota 2",play,32.0,0 -230275942,"Dota 2",purchase,1.0,0 -230275942,"Dota 2",play,341.0,0 -152701541,"Dota 2",purchase,1.0,0 -152701541,"Dota 2",play,0.7,0 -114479142,"Counter-Strike Global Offensive",purchase,1.0,0 -114479142,"Counter-Strike Global Offensive",play,0.2,0 -114479142,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -114479142,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -119971648,"Team Fortress 2",purchase,1.0,0 -119971648,"Team Fortress 2",play,54.0,0 -153076975,"Pinball FX2",purchase,1.0,0 -153076975,"Pinball FX2",play,79.0,0 -153076975,"Train Simulator",purchase,1.0,0 -153076975,"Train Simulator",play,66.0,0 -153076975,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -153076975,"Deus Ex Human Revolution - Director's Cut",play,54.0,0 -153076975,"The Talos Principle",purchase,1.0,0 -153076975,"The Talos Principle",play,34.0,0 -153076975,"Sniper Elite V2",purchase,1.0,0 -153076975,"Sniper Elite V2",play,25.0,0 -153076975,"Prototype",purchase,1.0,0 -153076975,"Prototype",play,23.0,0 -153076975,"Singularity",purchase,1.0,0 -153076975,"Singularity",play,22.0,0 -153076975,"Metro 2033",purchase,1.0,0 -153076975,"Metro 2033",play,18.9,0 -153076975,"Nostradamus The Last Prophecy",purchase,1.0,0 -153076975,"Nostradamus The Last Prophecy",play,14.4,0 -153076975,"Trine",purchase,1.0,0 -153076975,"Trine",play,14.1,0 -153076975,"Silent Hunter III",purchase,1.0,0 -153076975,"Silent Hunter III",play,13.1,0 -153076975,"Sniper Elite 3",purchase,1.0,0 -153076975,"Sniper Elite 3",play,9.6,0 -153076975,"Airport Madness World Edition",purchase,1.0,0 -153076975,"Airport Madness World Edition",play,9.0,0 -153076975,"Enigmatis The Ghosts of Maple Creek",purchase,1.0,0 -153076975,"Enigmatis The Ghosts of Maple Creek",play,6.7,0 -153076975,"The Room",purchase,1.0,0 -153076975,"The Room",play,6.0,0 -153076975,"Dragon Age Origins",purchase,1.0,0 -153076975,"Dragon Age Origins",play,4.3,0 -153076975,"Deus Ex The Fall",purchase,1.0,0 -153076975,"Deus Ex The Fall",play,4.3,0 -153076975,"How to Survive",purchase,1.0,0 -153076975,"How to Survive",play,2.4,0 -153076975,"Takedown Red Sabre",purchase,1.0,0 -153076975,"Takedown Red Sabre",play,2.0,0 -153076975,"Euro Truck Simulator 2",purchase,1.0,0 -153076975,"Euro Truck Simulator 2",play,1.8,0 -153076975,"Men of War Assault Squad",purchase,1.0,0 -153076975,"Men of War Assault Squad",play,0.9,0 -153076975,"Counter-Strike Condition Zero",purchase,1.0,0 -153076975,"Counter-Strike Condition Zero",play,0.8,0 -153076975,"Time Mysteries 3 The Final Enigma",purchase,1.0,0 -153076975,"Time Mysteries 3 The Final Enigma",play,0.6,0 -153076975,"Counter-Strike",purchase,1.0,0 -153076975,"Counter-Strike",play,0.3,0 -153076975,"Counter-Strike Source",purchase,1.0,0 -153076975,"Counter-Strike Source",play,0.3,0 -153076975,"Just Cause 2",purchase,1.0,0 -153076975,"Just Cause 2",play,0.2,0 -153076975,"Counter-Strike Global Offensive",purchase,1.0,0 -153076975,"Counter-Strike Global Offensive",play,0.1,0 -153076975,"Dishonored",purchase,1.0,0 -153076975,"America's Army Proving Grounds",purchase,1.0,0 -153076975,"Ascend Hand of Kul",purchase,1.0,0 -153076975,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -153076975,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -153076975,"Euro Truck Simulator 2 - Ice Cold Paint Jobs Pack",purchase,1.0,0 -153076975,"Metro Last Light",purchase,1.0,0 -153076975,"Path of Exile",purchase,1.0,0 -153076975,"Pinball FX2 - Star Wars Pinball Balance of the Force Pack",purchase,1.0,0 -153076975,"Pinball FX2 - Super League - Zen Studios F.C. Table",purchase,1.0,0 -153076975,"Portal 2",purchase,1.0,0 -153076975,"PROTOTYPE 2",purchase,1.0,0 -153076975,"Prototype 2 RADNET Access Pack",purchase,1.0,0 -153076975,"Trine 2",purchase,1.0,0 -153076975,"Warframe",purchase,1.0,0 -203455698,"Gear Up",purchase,1.0,0 -203455698,"Gear Up",play,0.4,0 -40652120,"Counter-Strike Source",purchase,1.0,0 -40652120,"Counter-Strike Source",play,51.0,0 -40652120,"Team Fortress 2",purchase,1.0,0 -40652120,"Team Fortress 2",play,10.8,0 -40652120,"Left 4 Dead 2",purchase,1.0,0 -40652120,"Left 4 Dead 2",play,8.0,0 -40652120,"Half-Life 2 Deathmatch",purchase,1.0,0 -40652120,"Half-Life 2 Deathmatch",play,2.7,0 -40652120,"Day of Defeat Source",purchase,1.0,0 -40652120,"Half-Life 2 Lost Coast",purchase,1.0,0 -182726567,"Unturned",purchase,1.0,0 -182726567,"Unturned",play,377.0,0 -182726567,"Garry's Mod",purchase,1.0,0 -182726567,"Garry's Mod",play,87.0,0 -182726567,"War Thunder",purchase,1.0,0 -182726567,"War Thunder",play,8.5,0 -182726567,"F.E.A.R. Online",purchase,1.0,0 -182726567,"F.E.A.R. Online",play,4.6,0 -182726567,"Team Fortress 2",purchase,1.0,0 -182726567,"Team Fortress 2",play,4.4,0 -182726567,"Fallen Earth",purchase,1.0,0 -182726567,"Fallen Earth",play,1.7,0 -182726567,"Left 4 Dead 2",purchase,1.0,0 -182726567,"Left 4 Dead 2",play,1.4,0 -182726567,"Combat Arms",purchase,1.0,0 -182726567,"Combat Arms",play,1.1,0 -182726567,"Counter-Strike Nexon Zombies",purchase,1.0,0 -182726567,"Counter-Strike Nexon Zombies",play,0.8,0 -182726567,"Killing Floor",purchase,1.0,0 -182726567,"Killing Floor",play,0.6,0 -182726567,"Loadout Campaign Beta",purchase,1.0,0 -182726567,"Loadout Campaign Beta",play,0.6,0 -182726567,"Loadout",purchase,1.0,0 -182726567,"Loadout",play,0.6,0 -182726567,"BLOCKADE 3D",purchase,1.0,0 -182726567,"BLOCKADE 3D",play,0.6,0 -182726567,"Warface",purchase,1.0,0 -182726567,"Warface",play,0.5,0 -182726567,"Eldevin",purchase,1.0,0 -182726567,"Eldevin",play,0.5,0 -182726567,"Quake Live",purchase,1.0,0 -182726567,"Quake Live",play,0.4,0 -182726567,"Thief Gold",purchase,1.0,0 -182726567,"Thief Gold",play,0.3,0 -182726567,"Heroes & Generals",purchase,1.0,0 -182726567,"Heroes & Generals",play,0.3,0 -182726567,"Among Ripples",purchase,1.0,0 -182726567,"Among Ripples",play,0.2,0 -182726567,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -182726567,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -182726567,"Zombies Monsters Robots",purchase,1.0,0 -58330533,"Left 4 Dead 2",purchase,1.0,0 -58330533,"Left 4 Dead 2",play,26.0,0 -58330533,"Team Fortress 2",purchase,1.0,0 -58330533,"Team Fortress 2",play,0.3,0 -211059621,"Dota 2",purchase,1.0,0 -211059621,"Dota 2",play,606.0,0 -211059621,"FreeStyle2 Street Basketball",purchase,1.0,0 -211059621,"FreeStyle2 Street Basketball",play,0.6,0 -211059621,"TERA",purchase,1.0,0 -211059621,"Chaos Heroes Online",purchase,1.0,0 -211059621,"Combat Monsters",purchase,1.0,0 -211059621,"GunZ 2 The Second Duel",purchase,1.0,0 -211059621,"March of War",purchase,1.0,0 -211059621,"theHunter",purchase,1.0,0 -166669789,"ARK Survival Evolved",purchase,1.0,0 -166669789,"ARK Survival Evolved",play,368.0,0 -166669789,"Team Fortress 2",purchase,1.0,0 -166669789,"Team Fortress 2",play,285.0,0 -166669789,"Terraria",purchase,1.0,0 -166669789,"Terraria",play,189.0,0 -166669789,"Primal Carnage Extinction",purchase,1.0,0 -166669789,"Primal Carnage Extinction",play,167.0,0 -166669789,"Goat Simulator",purchase,1.0,0 -166669789,"Goat Simulator",play,138.0,0 -166669789,"Trove",purchase,1.0,0 -166669789,"Trove",play,79.0,0 -166669789,"Bloons TD5",purchase,1.0,0 -166669789,"Bloons TD5",play,73.0,0 -166669789,"Garry's Mod",purchase,1.0,0 -166669789,"Garry's Mod",play,51.0,0 -166669789,"Unturned",purchase,1.0,0 -166669789,"Unturned",play,49.0,0 -166669789,"Robocraft",purchase,1.0,0 -166669789,"Robocraft",play,44.0,0 -166669789,"Primal Carnage",purchase,1.0,0 -166669789,"Primal Carnage",play,40.0,0 -166669789,"Prison Architect",purchase,1.0,0 -166669789,"Prison Architect",play,35.0,0 -166669789,"Counter-Strike Global Offensive",purchase,1.0,0 -166669789,"Counter-Strike Global Offensive",play,23.0,0 -166669789,"Castle Crashers",purchase,1.0,0 -166669789,"Castle Crashers",play,21.0,0 -166669789,"Warframe",purchase,1.0,0 -166669789,"Warframe",play,14.8,0 -166669789,"Left 4 Dead 2",purchase,1.0,0 -166669789,"Left 4 Dead 2",play,12.8,0 -166669789,"War Thunder",purchase,1.0,0 -166669789,"War Thunder",play,10.5,0 -166669789,"Spore",purchase,1.0,0 -166669789,"Spore",play,9.3,0 -166669789,"Magicka",purchase,1.0,0 -166669789,"Magicka",play,9.3,0 -166669789,"Heroes & Generals",purchase,1.0,0 -166669789,"Heroes & Generals",play,8.9,0 -166669789,"Dino D-Day",purchase,1.0,0 -166669789,"Dino D-Day",play,8.2,0 -166669789,"Wildlife Park 3",purchase,1.0,0 -166669789,"Wildlife Park 3",play,7.9,0 -166669789,"Don't Starve Together Beta",purchase,1.0,0 -166669789,"Don't Starve Together Beta",play,7.7,0 -166669789,"Source Filmmaker",purchase,1.0,0 -166669789,"Source Filmmaker",play,7.7,0 -166669789,"Tomb Raider",purchase,1.0,0 -166669789,"Tomb Raider",play,6.0,0 -166669789,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -166669789,"School of Dragons How to Train Your Dragon",play,5.7,0 -166669789,"Toribash",purchase,1.0,0 -166669789,"Toribash",play,5.2,0 -166669789,"Plague Inc Evolved",purchase,1.0,0 -166669789,"Plague Inc Evolved",play,4.2,0 -166669789,"BattleBlock Theater",purchase,1.0,0 -166669789,"BattleBlock Theater",play,4.1,0 -166669789,"Clicker Heroes",purchase,1.0,0 -166669789,"Clicker Heroes",play,3.5,0 -166669789,"Beasts of Prey",purchase,1.0,0 -166669789,"Beasts of Prey",play,3.2,0 -166669789,"Dungeon Defenders II",purchase,1.0,0 -166669789,"Dungeon Defenders II",play,3.1,0 -166669789,"BLOCKADE 3D",purchase,1.0,0 -166669789,"BLOCKADE 3D",play,2.7,0 -166669789,"Five Nights at Freddy's",purchase,1.0,0 -166669789,"Five Nights at Freddy's",play,2.1,0 -166669789,"Subnautica",purchase,1.0,0 -166669789,"Subnautica",play,2.0,0 -166669789,"Get Off My Lawn!",purchase,1.0,0 -166669789,"Get Off My Lawn!",play,1.9,0 -166669789,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -166669789,"Burnout Paradise The Ultimate Box",play,1.8,0 -166669789,"Wildlife Park 2 - Dino World",purchase,1.0,0 -166669789,"Wildlife Park 2 - Dino World",play,1.8,0 -166669789,"Fistful of Frags",purchase,1.0,0 -166669789,"Fistful of Frags",play,1.7,0 -166669789,"Wildlife Park 2",purchase,1.0,0 -166669789,"Wildlife Park 2",play,1.6,0 -166669789,"Chivalry Medieval Warfare",purchase,1.0,0 -166669789,"Chivalry Medieval Warfare",play,1.6,0 -166669789,"Card Hunter",purchase,1.0,0 -166669789,"Card Hunter",play,1.3,0 -166669789,"Portal 2",purchase,1.0,0 -166669789,"Portal 2",play,1.1,0 -166669789,"Alien Swarm",purchase,1.0,0 -166669789,"Alien Swarm",play,1.1,0 -166669789,"Potatoman Seeks the Troof",purchase,1.0,0 -166669789,"Potatoman Seeks the Troof",play,1.0,0 -166669789,"Realm of the Mad God",purchase,1.0,0 -166669789,"Realm of the Mad God",play,0.9,0 -166669789,"Project Zomboid",purchase,1.0,0 -166669789,"Project Zomboid",play,0.9,0 -166669789,"Caster",purchase,1.0,0 -166669789,"Caster",play,0.9,0 -166669789,"Lunch Truck Tycoon",purchase,1.0,0 -166669789,"Lunch Truck Tycoon",play,0.8,0 -166669789,"SpeedRunners",purchase,1.0,0 -166669789,"SpeedRunners",play,0.6,0 -166669789,"Metal Reaper Online",purchase,1.0,0 -166669789,"Metal Reaper Online",play,0.6,0 -166669789,"Dragon's Prophet (EU)",purchase,1.0,0 -166669789,"Dragon's Prophet (EU)",play,0.6,0 -166669789,"Teeworlds",purchase,1.0,0 -166669789,"Teeworlds",play,0.5,0 -166669789,"Dota 2",purchase,1.0,0 -166669789,"Dota 2",play,0.4,0 -166669789,"Battle Nations",purchase,1.0,0 -166669789,"Battle Nations",play,0.4,0 -166669789,"ORION Prelude",purchase,1.0,0 -166669789,"ORION Prelude",play,0.3,0 -166669789,"Strife",purchase,1.0,0 -166669789,"Strife",play,0.2,0 -166669789,"Plug & Play",purchase,1.0,0 -166669789,"Plug & Play",play,0.2,0 -166669789,"Among Ripples",purchase,1.0,0 -166669789,"Among Ripples",play,0.1,0 -166669789,"Spiral Knights",purchase,1.0,0 -166669789,"Cannons Lasers Rockets",purchase,1.0,0 -166669789,"Transformice",purchase,1.0,0 -166669789,"The Plan",purchase,1.0,0 -166669789,"Gear Up",purchase,1.0,0 -166669789,"Battle Islands",purchase,1.0,0 -166669789,"Castle Crashers - Blacksmith Pack",purchase,1.0,0 -166669789,"Castle Crashers - Pink Knight Pack",purchase,1.0,0 -166669789,"Counter-Strike",purchase,1.0,0 -166669789,"Counter-Strike Condition Zero",purchase,1.0,0 -166669789,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -166669789,"Counter-Strike Source",purchase,1.0,0 -166669789,"Day of Defeat",purchase,1.0,0 -166669789,"Day of Defeat Source",purchase,1.0,0 -166669789,"Deathmatch Classic",purchase,1.0,0 -166669789,"Defy Gravity",purchase,1.0,0 -166669789,"Dig or Die",purchase,1.0,0 -166669789,"Dizzel",purchase,1.0,0 -166669789,"Half-Life",purchase,1.0,0 -166669789,"Half-Life 2",purchase,1.0,0 -166669789,"Half-Life 2 Deathmatch",purchase,1.0,0 -166669789,"Half-Life 2 Episode One",purchase,1.0,0 -166669789,"Half-Life 2 Episode Two",purchase,1.0,0 -166669789,"Half-Life 2 Lost Coast",purchase,1.0,0 -166669789,"Half-Life Blue Shift",purchase,1.0,0 -166669789,"Half-Life Opposing Force",purchase,1.0,0 -166669789,"Half-Life Source",purchase,1.0,0 -166669789,"Half-Life Deathmatch Source",purchase,1.0,0 -166669789,"Left 4 Dead",purchase,1.0,0 -166669789,"Mortal Online",purchase,1.0,0 -166669789,"Nosgoth",purchase,1.0,0 -166669789,"Patch testing for Chivalry",purchase,1.0,0 -166669789,"Portal",purchase,1.0,0 -166669789,"Ricochet",purchase,1.0,0 -166669789,"Squishy the Suicidal Pig",purchase,1.0,0 -166669789,"Team Fortress Classic",purchase,1.0,0 -166669789,"Terrorhedron",purchase,1.0,0 -166669789,"The Elder Scrolls V Skyrim",purchase,1.0,0 -166669789,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -166669789,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -166669789,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -166669789,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -166669789,"Villagers and Heroes",purchase,1.0,0 -166669789,"Wildlife Park 2 - Crazy Zoo",purchase,1.0,0 -166669789,"Wildlife Park 2 - Domestic Animals DLC",purchase,1.0,0 -166669789,"Wildlife Park 2 - Fantasy",purchase,1.0,0 -166669789,"Wildlife Park 2 - Farm World",purchase,1.0,0 -166669789,"Wildlife Park 2 - Horses",purchase,1.0,0 -166669789,"Wildlife Park 2 - Marine World",purchase,1.0,0 -221999937,"BLOCKADE 3D",purchase,1.0,0 -221999937,"BLOCKADE 3D",play,0.5,0 -221999937,"AdVenture Capitalist",purchase,1.0,0 -221999937,"AdVenture Capitalist",play,0.5,0 -77736587,"Sid Meier's Civilization V",purchase,1.0,0 -77736587,"Sid Meier's Civilization V",play,207.0,0 -36714440,"Half-Life 2",purchase,1.0,0 -36714440,"Half-Life 2",play,15.6,0 -36714440,"Half-Life 2 Episode One",purchase,1.0,0 -36714440,"Half-Life 2 Episode Two",purchase,1.0,0 -36714440,"Half-Life 2 Lost Coast",purchase,1.0,0 -36714440,"Portal",purchase,1.0,0 -127724511,"Team Fortress 2",purchase,1.0,0 -127724511,"Team Fortress 2",play,2.2,0 -47431457,"Football Manager 2009",purchase,1.0,0 -47431457,"Football Manager 2009",play,7.7,0 -92501792,"Football Manager 2012",purchase,1.0,0 -92501792,"Football Manager 2012",play,36.0,0 -76585538,"The Ship Single Player",purchase,1.0,0 -76585538,"The Ship Single Player",play,3.1,0 -76585538,"The Ship",purchase,1.0,0 -76585538,"The Ship",play,0.2,0 -76585538,"The Ship Tutorial",purchase,1.0,0 -166554789,"Dota 2",purchase,1.0,0 -166554789,"Dota 2",play,539.0,0 -10162301,"Sid Meier's Civilization V",purchase,1.0,0 -10162301,"Sid Meier's Civilization V",play,41.0,0 -10162301,"Counter-Strike Source",purchase,1.0,0 -10162301,"Counter-Strike Source",play,37.0,0 -10162301,"XCOM Enemy Unknown",purchase,1.0,0 -10162301,"XCOM Enemy Unknown",play,35.0,0 -10162301,"Counter-Strike Global Offensive",purchase,1.0,0 -10162301,"Counter-Strike Global Offensive",play,34.0,0 -10162301,"Dota 2",purchase,1.0,0 -10162301,"Dota 2",play,30.0,0 -10162301,"Path of Exile",purchase,1.0,0 -10162301,"Path of Exile",play,28.0,0 -10162301,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -10162301,"Warhammer 40,000 Dawn of War II",play,27.0,0 -10162301,"Batman Arkham City GOTY",purchase,1.0,0 -10162301,"Batman Arkham City GOTY",play,26.0,0 -10162301,"South Park The Stick of Truth",purchase,1.0,0 -10162301,"South Park The Stick of Truth",play,20.0,0 -10162301,"Wasteland 2",purchase,1.0,0 -10162301,"Wasteland 2",play,19.6,0 -10162301,"Borderlands 2",purchase,1.0,0 -10162301,"Borderlands 2",play,17.2,0 -10162301,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -10162301,"The Incredible Adventures of Van Helsing",play,17.1,0 -10162301,"This War of Mine",purchase,1.0,0 -10162301,"This War of Mine",play,14.0,0 -10162301,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -10162301,"Batman Arkham Asylum GOTY Edition",play,11.8,0 -10162301,"Alien Swarm",purchase,1.0,0 -10162301,"Alien Swarm",play,11.5,0 -10162301,"Portal 2",purchase,1.0,0 -10162301,"Portal 2",play,9.6,0 -10162301,"Divinity Original Sin",purchase,1.0,0 -10162301,"Divinity Original Sin",play,9.4,0 -10162301,"Krater",purchase,1.0,0 -10162301,"Krater",play,5.9,0 -10162301,"Natural Selection 2",purchase,1.0,0 -10162301,"Natural Selection 2",play,4.7,0 -10162301,"Chivalry Medieval Warfare",purchase,1.0,0 -10162301,"Chivalry Medieval Warfare",play,4.4,0 -10162301,"Shadowrun Returns",purchase,1.0,0 -10162301,"Shadowrun Returns",play,3.9,0 -10162301,"Arma 2",purchase,1.0,0 -10162301,"Arma 2",play,0.4,0 -10162301,"F.E.A.R. 3",purchase,1.0,0 -10162301,"F.E.A.R. 3",play,0.4,0 -10162301,"Age of Wonders III",purchase,1.0,0 -10162301,"Arma 2 DayZ Mod",purchase,1.0,0 -10162301,"Arma 2 Operation Arrowhead",purchase,1.0,0 -10162301,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -10162301,"Borderlands 2 RU",purchase,1.0,0 -10162301,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -10162301,"Don't Starve Together Beta",purchase,1.0,0 -10162301,"Half-Life 2",purchase,1.0,0 -10162301,"Half-Life 2 Deathmatch",purchase,1.0,0 -10162301,"Half-Life 2 Lost Coast",purchase,1.0,0 -10162301,"Left 4 Dead 2",purchase,1.0,0 -10162301,"Patch testing for Chivalry",purchase,1.0,0 -10162301,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -10162301,"South Park The Stick of Truth - Ultimate Fellowship Pack",purchase,1.0,0 -10162301,"Wasteland 2 Director's Cut",purchase,1.0,0 -219944270,"The Expendabros",purchase,1.0,0 -994489,"Counter-Strike",purchase,1.0,0 -994489,"Counter-Strike",play,1087.0,0 -994489,"Counter-Strike Global Offensive",purchase,1.0,0 -994489,"Counter-Strike Global Offensive",play,290.0,0 -994489,"Dota 2",purchase,1.0,0 -994489,"Dota 2",play,18.7,0 -994489,"Scourge Outbreak",purchase,1.0,0 -994489,"Scourge Outbreak",play,0.3,0 -994489,"Half-Life",purchase,1.0,0 -994489,"Half-Life",play,0.1,0 -994489,"Loadout",purchase,1.0,0 -994489,"Loadout",play,0.1,0 -994489,"Cthulhu Saves the World ",purchase,1.0,0 -994489,"AI War Fleet Command",purchase,1.0,0 -994489,"Huntsman - The Orphanage Halloween Edition",purchase,1.0,0 -994489,"Breath of Death VII ",purchase,1.0,0 -994489,"Chernobyl Commando",purchase,1.0,0 -994489,"Day of Defeat",purchase,1.0,0 -994489,"Deathmatch Classic",purchase,1.0,0 -994489,"Dizzel",purchase,1.0,0 -994489,"Hacker Evolution",purchase,1.0,0 -994489,"Half-Life Blue Shift",purchase,1.0,0 -994489,"Half-Life Opposing Force",purchase,1.0,0 -994489,"RaceRoom Racing Experience ",purchase,1.0,0 -994489,"Ricochet",purchase,1.0,0 -994489,"Scourge Outbreak - Blindside",purchase,1.0,0 -994489,"Scourge Outbreak Fan Pack",purchase,1.0,0 -994489,"Team Fortress Classic",purchase,1.0,0 -994489,"The Scourge Project Episode 1 and 2",purchase,1.0,0 -70678758,"Sid Meier's Civilization V",purchase,1.0,0 -70678758,"Sid Meier's Civilization V",play,47.0,0 -98561727,"Counter-Strike Global Offensive",purchase,1.0,0 -98561727,"Counter-Strike Global Offensive",play,38.0,0 -98561727,"Counter-Strike Nexon Zombies",purchase,1.0,0 -98561727,"Counter-Strike Nexon Zombies",play,13.6,0 -98561727,"PAYDAY 2",purchase,1.0,0 -98561727,"PAYDAY 2",play,6.6,0 -98561727,"Dota 2",purchase,1.0,0 -98561727,"Dota 2",play,5.7,0 -98561727,"Spore Galactic Adventures",purchase,1.0,0 -98561727,"Spore Galactic Adventures",play,5.1,0 -98561727,"How to Survive",purchase,1.0,0 -98561727,"How to Survive",play,4.1,0 -98561727,"Unturned",purchase,1.0,0 -98561727,"Unturned",play,3.5,0 -98561727,"Magicka",purchase,1.0,0 -98561727,"Magicka",play,2.6,0 -98561727,"Audiosurf 2",purchase,1.0,0 -98561727,"Audiosurf 2",play,2.0,0 -98561727,"DayZ",purchase,1.0,0 -98561727,"DayZ",play,1.0,0 -98561727,"Contagion",purchase,1.0,0 -98561727,"Contagion",play,0.9,0 -98561727,"La Tale",purchase,1.0,0 -98561727,"La Tale",play,0.9,0 -98561727,"Everlasting Summer",purchase,1.0,0 -98561727,"Everlasting Summer",play,0.6,0 -98561727,"Stronghold Kingdoms",purchase,1.0,0 -98561727,"Stronghold Kingdoms",play,0.4,0 -98561727,"sZone-Online",purchase,1.0,0 -98561727,"sZone-Online",play,0.3,0 -98561727,"Metrocide",purchase,1.0,0 -98561727,"Metrocide",play,0.3,0 -98561727,"Defiance",purchase,1.0,0 -98561727,"Defiance",play,0.3,0 -98561727,"CastleStorm",purchase,1.0,0 -98561727,"CastleStorm",play,0.2,0 -98561727,"No More Room in Hell",purchase,1.0,0 -98561727,"No More Room in Hell",play,0.2,0 -98561727,"Train Simulator",purchase,1.0,0 -98561727,"Train Simulator",play,0.2,0 -98561727,"Only If",purchase,1.0,0 -98561727,"Only If",play,0.1,0 -98561727,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -98561727,"Nosgoth",purchase,1.0,0 -98561727,"Spore",purchase,1.0,0 -98561727,"Ben There, Dan That!",purchase,1.0,0 -98561727,"Fallen Earth",purchase,1.0,0 -98561727,"Spore Creepy & Cute Parts Pack",purchase,1.0,0 -98561727,"Survarium",purchase,1.0,0 -98561727,"Time Gentlemen, Please!",purchase,1.0,0 -82688906,"Team Fortress 2",purchase,1.0,0 -82688906,"Team Fortress 2",play,35.0,0 -86540,"The Elder Scrolls V Skyrim",purchase,1.0,0 -86540,"The Elder Scrolls V Skyrim",play,113.0,0 -86540,"Audiosurf",purchase,1.0,0 -86540,"Audiosurf",play,57.0,0 -86540,"XCOM Enemy Unknown",purchase,1.0,0 -86540,"XCOM Enemy Unknown",play,37.0,0 -86540,"Far Cry 3",purchase,1.0,0 -86540,"Far Cry 3",play,17.8,0 -86540,"Left 4 Dead 2",purchase,1.0,0 -86540,"Left 4 Dead 2",play,16.4,0 -86540,"Killer is Dead",purchase,1.0,0 -86540,"Killer is Dead",play,5.3,0 -86540,"Torchlight II",purchase,1.0,0 -86540,"Torchlight II",play,3.6,0 -86540,"The Walking Dead",purchase,1.0,0 -86540,"The Walking Dead",play,1.8,0 -86540,"Max Payne 3",purchase,1.0,0 -86540,"Max Payne 3",play,0.9,0 -86540,"Borderlands 2",purchase,1.0,0 -86540,"Borderlands 2",play,0.7,0 -86540,"Age of Empires II HD Edition",purchase,1.0,0 -86540,"Age of Empires II HD Edition",play,0.7,0 -86540,"Serious Sam HD The First Encounter",purchase,1.0,0 -86540,"Serious Sam HD The First Encounter",play,0.2,0 -86540,"Portal",purchase,1.0,0 -86540,"Portal",play,0.2,0 -86540,"Tom Clancy's Ghost Recon Advanced Warfighter",purchase,1.0,0 -86540,"Tom Clancy's Ghost Recon Advanced Warfighter",play,0.2,0 -86540,"Alan Wake",purchase,1.0,0 -86540,"Alan Wake",play,0.2,0 -86540,"Tropico 4",purchase,1.0,0 -86540,"Half-Life 2",purchase,1.0,0 -86540,"Age of Empires II HD The Forgotten",purchase,1.0,0 -86540,"Alan Wake's American Nightmare",purchase,1.0,0 -86540,"Arma 2",purchase,1.0,0 -86540,"Arma 2 Operation Arrowhead",purchase,1.0,0 -86540,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -86540,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -86540,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -86540,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -86540,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -86540,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -86540,"Counter-Strike",purchase,1.0,0 -86540,"Day of Defeat",purchase,1.0,0 -86540,"Deathmatch Classic",purchase,1.0,0 -86540,"Deus Ex Game of the Year Edition",purchase,1.0,0 -86540,"Deus Ex Human Revolution",purchase,1.0,0 -86540,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -86540,"Deus Ex Invisible War",purchase,1.0,0 -86540,"DiRT 3",purchase,1.0,0 -86540,"DiRT 3 Complete Edition",purchase,1.0,0 -86540,"DiRT Showdown",purchase,1.0,0 -86540,"FTL Faster Than Light",purchase,1.0,0 -86540,"Half-Life",purchase,1.0,0 -86540,"Half-Life 2 Episode One",purchase,1.0,0 -86540,"Half-Life Blue Shift",purchase,1.0,0 -86540,"Half-Life Opposing Force",purchase,1.0,0 -86540,"Hector Ep 1",purchase,1.0,0 -86540,"Hector Ep 2",purchase,1.0,0 -86540,"Hector Ep 3",purchase,1.0,0 -86540,"L.A. Noire",purchase,1.0,0 -86540,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -86540,"Operation Flashpoint Red River",purchase,1.0,0 -86540,"Overlord",purchase,1.0,0 -86540,"Overlord Raising Hell",purchase,1.0,0 -86540,"Overlord II",purchase,1.0,0 -86540,"Poker Night at the Inventory",purchase,1.0,0 -86540,"Portal 2",purchase,1.0,0 -86540,"Puzzle Agent",purchase,1.0,0 -86540,"Puzzle Agent 2",purchase,1.0,0 -86540,"Ricochet",purchase,1.0,0 -86540,"Rise of the Argonauts",purchase,1.0,0 -86540,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -86540,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -86540,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -86540,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -86540,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -86540,"Serious Sam 2",purchase,1.0,0 -86540,"Serious Sam 3 BFE",purchase,1.0,0 -86540,"Serious Sam The Random Encounter",purchase,1.0,0 -86540,"Serious Sam Classic The First Encounter",purchase,1.0,0 -86540,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -86540,"Serious Sam Classics Revolution",purchase,1.0,0 -86540,"Serious Sam Double D XXL",purchase,1.0,0 -86540,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -86540,"Team Fortress Classic",purchase,1.0,0 -86540,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -86540,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -86540,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -86540,"Tom Clancy's Ghost Recon Advanced Warfighter 2",purchase,1.0,0 -86540,"Tom Clancy's Ghost Recon Future Soldier",purchase,1.0,0 -86540,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -86540,"Universe Sandbox",purchase,1.0,0 -86540,"Wallace & Gromit Ep 1 Fright of the Bumblebees",purchase,1.0,0 -86540,"Wallace & Gromit Ep 2 The Last Resort",purchase,1.0,0 -86540,"Wallace & Gromit Ep 3 Muzzled!",purchase,1.0,0 -86540,"Wallace & Gromit Ep 4 The Bogey Man",purchase,1.0,0 -113399673,"Dota 2",purchase,1.0,0 -113399673,"Dota 2",play,0.2,0 -85426082,"Team Fortress 2",purchase,1.0,0 -85426082,"Team Fortress 2",play,3.0,0 -85426082,"HAWKEN",purchase,1.0,0 -85426082,"HAWKEN",play,0.9,0 -85426082,"Warframe",purchase,1.0,0 -85426082,"Warframe",play,0.7,0 -85426082,"Left 4 Dead 2",purchase,1.0,0 -85426082,"Left 4 Dead 2",play,0.4,0 -85426082,"Rise of Incarnates",purchase,1.0,0 -85426082,"Heroes & Generals",purchase,1.0,0 -302341431,"The Elder Scrolls V Skyrim",purchase,1.0,0 -302341431,"The Elder Scrolls V Skyrim",play,0.6,0 -302341431,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -302341431,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -302341431,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -117573012,"Dota 2",purchase,1.0,0 -117573012,"Dota 2",play,29.0,0 -117573012,"Team Fortress 2",purchase,1.0,0 -117573012,"Team Fortress 2",play,3.0,0 -117573012,"Loadout",purchase,1.0,0 -221617645,"Sid Meier's Civilization V",purchase,1.0,0 -221617645,"Sid Meier's Civilization V",play,11.6,0 -266416340,"Dota 2",purchase,1.0,0 -266416340,"Dota 2",play,1.7,0 -287824954,"Team Fortress 2",purchase,1.0,0 -287824954,"Team Fortress 2",play,31.0,0 -287824954,"Only If",purchase,1.0,0 -287824954,"Only If",play,5.9,0 -287824954,"Doorways Prelude",purchase,1.0,0 -287824954,"Doorways Prelude",play,3.9,0 -287824954,"Close Your Eyes",purchase,1.0,0 -287824954,"Close Your Eyes",play,2.2,0 -287824954,"You Have to Win the Game",purchase,1.0,0 -287824954,"You Have to Win the Game",play,1.9,0 -287824954,"Doorways The Underworld",purchase,1.0,0 -287824954,"Doorways The Underworld",play,1.2,0 -287824954,"Cry of Fear",purchase,1.0,0 -287824954,"Cry of Fear",play,1.0,0 -287824954,"Toribash",purchase,1.0,0 -287824954,"Toribash",play,0.5,0 -287824954,"Haunted Memories",purchase,1.0,0 -287824954,"Haunted Memories",play,0.5,0 -131732878,"Team Fortress 2",purchase,1.0,0 -131732878,"Team Fortress 2",play,4.2,0 -259614031,"AdVenture Capitalist",purchase,1.0,0 -259614031,"AdVenture Capitalist",play,37.0,0 -259614031,"Fishing Planet",purchase,1.0,0 -259614031,"Fishing Planet",play,0.6,0 -188284694,"Dota 2",purchase,1.0,0 -188284694,"Dota 2",play,7.2,0 -74695086,"Left 4 Dead",purchase,1.0,0 -74695086,"Left 4 Dead",play,4.1,0 -137451490,"ARK Survival Evolved",purchase,1.0,0 -137451490,"ARK Survival Evolved",play,184.0,0 -137451490,"The Binding of Isaac Rebirth",purchase,1.0,0 -137451490,"The Binding of Isaac Rebirth",play,147.0,0 -137451490,"Chivalry Medieval Warfare",purchase,1.0,0 -137451490,"Chivalry Medieval Warfare",play,23.0,0 -137451490,"Garry's Mod",purchase,1.0,0 -137451490,"Garry's Mod",play,22.0,0 -137451490,"Portal 2",purchase,1.0,0 -137451490,"Portal 2",play,13.6,0 -137451490,"Don't Starve",purchase,1.0,0 -137451490,"Don't Starve",play,7.2,0 -137451490,"Marvel Heroes 2015",purchase,1.0,0 -137451490,"Marvel Heroes 2015",play,7.1,0 -137451490,"Team Fortress 2",purchase,1.0,0 -137451490,"Team Fortress 2",play,4.5,0 -137451490,"Antichamber",purchase,1.0,0 -137451490,"Antichamber",play,2.5,0 -137451490,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -137451490,"Dark Souls Prepare to Die Edition",play,0.9,0 -137451490,"Castle Crashers",purchase,1.0,0 -137451490,"Castle Crashers",play,0.9,0 -137451490,"Amnesia The Dark Descent",purchase,1.0,0 -137451490,"Patch testing for Chivalry",purchase,1.0,0 -214662323,"Fork Parker's Holiday Profit Hike",purchase,1.0,0 -214662323,"Heroine's Quest The Herald of Ragnarok",purchase,1.0,0 -105725769,"DayZ",purchase,1.0,0 -105725769,"DayZ",play,144.0,0 -105725769,"Just Cause 2",purchase,1.0,0 -105725769,"Just Cause 2",play,42.0,0 -105725769,"Starbound",purchase,1.0,0 -105725769,"Starbound",play,37.0,0 -105725769,"Banished",purchase,1.0,0 -105725769,"Banished",play,14.6,0 -105725769,"Surgeon Simulator",purchase,1.0,0 -105725769,"Surgeon Simulator",play,9.6,0 -105725769,"Space Engineers",purchase,1.0,0 -105725769,"Space Engineers",play,4.8,0 -105725769,"War Thunder",purchase,1.0,0 -105725769,"War Thunder",play,3.6,0 -105725769,"Arma 2 DayZ Mod",purchase,1.0,0 -105725769,"Arma 2 DayZ Mod",play,0.3,0 -105725769,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -105725769,"Just Cause 2 Multiplayer Mod",play,0.3,0 -105725769,"Arma 2",purchase,1.0,0 -105725769,"Arma 2 Operation Arrowhead",purchase,1.0,0 -105725769,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -105725769,"ORION Prelude",purchase,1.0,0 -105725769,"Starbound - Unstable",purchase,1.0,0 -294864233,"Dota 2",purchase,1.0,0 -294864233,"Dota 2",play,1.9,0 -294864233,"FreeStyle2 Street Basketball",purchase,1.0,0 -294864233,"FreeStyle2 Street Basketball",play,1.3,0 -176643508,"Team Fortress 2",purchase,1.0,0 -176643508,"Team Fortress 2",play,0.2,0 -22898075,"Counter-Strike Source",purchase,1.0,0 -22898075,"Counter-Strike Source",play,7.3,0 -22898075,"Day of Defeat Source",purchase,1.0,0 -22898075,"Half-Life 2 Deathmatch",purchase,1.0,0 -22898075,"Half-Life 2 Lost Coast",purchase,1.0,0 -190000212,"F1 2012",purchase,1.0,0 -190000212,"F1 2012",play,0.8,0 -216002631,"Nosgoth",purchase,1.0,0 -216002631,"Nosgoth",play,0.1,0 -88248085,"Crysis Wars",purchase,1.0,0 -88248085,"Crysis Wars",play,4.7,0 -88248085,"DayZ",purchase,1.0,0 -88248085,"DayZ",play,3.1,0 -88248085,"Arma 2 Operation Arrowhead",purchase,1.0,0 -88248085,"Arma 2 Operation Arrowhead",play,2.0,0 -88248085,"Arma 2 DayZ Mod",purchase,1.0,0 -88248085,"Arma 2 DayZ Mod",play,0.8,0 -88248085,"Arma 2",purchase,1.0,0 -88248085,"Arma 2",play,0.2,0 -88248085,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -88248085,"Crysis Warhead",purchase,1.0,0 -142790708,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -142790708,"Tom Clancy's Ghost Recon Phantoms - NA",play,2047.0,0 -142790708,"Neverwinter",purchase,1.0,0 -142790708,"Neverwinter",play,275.0,0 -142790708,"Soldier Front 2",purchase,1.0,0 -142790708,"Soldier Front 2",play,61.0,0 -142790708,"Dishonored",purchase,1.0,0 -142790708,"Dishonored",play,32.0,0 -142790708,"DiRT 3",purchase,1.0,0 -142790708,"DiRT 3",play,2.0,0 -142790708,"E.Y.E Divine Cybermancy",purchase,1.0,0 -142790708,"E.Y.E Divine Cybermancy",play,1.1,0 -142790708,"DiRT 3 Complete Edition",purchase,1.0,0 -140596673,"Dota 2",purchase,1.0,0 -140596673,"Dota 2",play,0.2,0 -80117330,"Mafia II",purchase,1.0,0 -80117330,"Mafia II",play,14.8,0 -167129487,"Dota 2",purchase,1.0,0 -167129487,"Dota 2",play,0.5,0 -983600,"Counter-Strike Source",purchase,1.0,0 -983600,"Counter-Strike Source",play,55.0,0 -983600,"Counter-Strike",purchase,1.0,0 -983600,"Day of Defeat",purchase,1.0,0 -983600,"Deathmatch Classic",purchase,1.0,0 -983600,"Half-Life",purchase,1.0,0 -983600,"Half-Life 2",purchase,1.0,0 -983600,"Half-Life 2 Deathmatch",purchase,1.0,0 -983600,"Half-Life 2 Lost Coast",purchase,1.0,0 -983600,"Half-Life Blue Shift",purchase,1.0,0 -983600,"Half-Life Opposing Force",purchase,1.0,0 -983600,"Ricochet",purchase,1.0,0 -983600,"Team Fortress Classic",purchase,1.0,0 -68685708,"Counter-Strike Global Offensive",purchase,1.0,0 -68685708,"Counter-Strike Global Offensive",play,533.0,0 -68685708,"GRID 2",purchase,1.0,0 -68685708,"GRID 2",play,25.0,0 -68685708,"Mafia II",purchase,1.0,0 -68685708,"Mafia II",play,13.2,0 -68685708,"Call of Duty Modern Warfare 3",purchase,1.0,0 -68685708,"Call of Duty Modern Warfare 3",play,6.5,0 -68685708,"Age of Empires II HD Edition",purchase,1.0,0 -68685708,"Age of Empires II HD Edition",play,1.0,0 -68685708,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -68685708,"Tom Clancy's Splinter Cell Blacklist",play,0.9,0 -68685708,"GRID Autosport",purchase,1.0,0 -68685708,"GRID Autosport",play,0.8,0 -68685708,"Counter-Strike",purchase,1.0,0 -68685708,"Counter-Strike",play,0.7,0 -68685708,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -68685708,"Call of Duty Modern Warfare 3 - Multiplayer",play,0.4,0 -68685708,"aerofly RC 7",purchase,1.0,0 -68685708,"aerofly RC 7",play,0.2,0 -68685708,"Counter-Strike Condition Zero",purchase,1.0,0 -68685708,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -116478374,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -116478374,"Call of Duty Black Ops II - Multiplayer",play,22.0,0 -116478374,"Call of Duty Black Ops II",purchase,1.0,0 -116478374,"Call of Duty Black Ops II",play,0.3,0 -116478374,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -116478374,"Call of Duty Black Ops II - Zombies",play,0.2,0 -116478374,"Call of Duty World at War",purchase,1.0,0 -10478285,"Counter-Strike Source",purchase,1.0,0 -10478285,"Counter-Strike Source",play,188.0,0 -10478285,"Half-Life 2",purchase,1.0,0 -10478285,"Half-Life 2",play,12.5,0 -10478285,"Alien Swarm",purchase,1.0,0 -10478285,"Alien Swarm",play,0.5,0 -10478285,"Half-Life 2 Deathmatch",purchase,1.0,0 -10478285,"Half-Life 2 Lost Coast",purchase,1.0,0 -162081645,"Garry's Mod",purchase,1.0,0 -162081645,"Garry's Mod",play,364.0,0 -162081645,"Counter-Strike Global Offensive",purchase,1.0,0 -162081645,"Counter-Strike Global Offensive",play,285.0,0 -162081645,"Town of Salem",purchase,1.0,0 -162081645,"Town of Salem",play,50.0,0 -162081645,"Team Fortress 2",purchase,1.0,0 -162081645,"Team Fortress 2",play,45.0,0 -162081645,"Unturned",purchase,1.0,0 -162081645,"Unturned",play,43.0,0 -162081645,"Borderlands 2",purchase,1.0,0 -162081645,"Borderlands 2",play,23.0,0 -162081645,"Broforce",purchase,1.0,0 -162081645,"Broforce",play,17.3,0 -162081645,"Gang Beasts",purchase,1.0,0 -162081645,"Gang Beasts",play,15.0,0 -162081645,"Left 4 Dead 2",purchase,1.0,0 -162081645,"Left 4 Dead 2",play,7.0,0 -162081645,"This War of Mine",purchase,1.0,0 -162081645,"This War of Mine",play,6.8,0 -162081645,"Portal 2",purchase,1.0,0 -162081645,"Portal 2",play,6.3,0 -162081645,"Hotline Miami 2 Wrong Number",purchase,1.0,0 -162081645,"Hotline Miami 2 Wrong Number",play,5.3,0 -162081645,"Double Action Boogaloo",purchase,1.0,0 -162081645,"Double Action Boogaloo",play,4.0,0 -162081645,"Goat Simulator",purchase,1.0,0 -162081645,"Goat Simulator",play,3.6,0 -162081645,"BattleBlock Theater",purchase,1.0,0 -162081645,"BattleBlock Theater",play,3.6,0 -162081645,"Retro City Rampage DX",purchase,1.0,0 -162081645,"Retro City Rampage DX",play,2.1,0 -162081645,"Haunt the House Terrortown",purchase,1.0,0 -162081645,"Haunt the House Terrortown",play,1.3,0 -162081645,"Robocraft",purchase,1.0,0 -162081645,"Robocraft",play,0.8,0 -162081645,"Magicite",purchase,1.0,0 -162081645,"Magicite",play,0.8,0 -162081645,"Max Payne 3",purchase,1.0,0 -162081645,"Max Payne 3",play,0.7,0 -162081645,"The Expendabros",purchase,1.0,0 -162081645,"The Expendabros",play,0.4,0 -162081645,"Dota 2",purchase,1.0,0 -162081645,"Dota 2",play,0.4,0 -162081645,"Fistful of Frags",purchase,1.0,0 -162081645,"Fistful of Frags",play,0.4,0 -162081645,"Shadow Warrior Classic (1997)",purchase,1.0,0 -162081645,"Shadow Warrior Classic (1997)",play,0.3,0 -162081645,"Terraria",purchase,1.0,0 -162081645,"Terraria",play,0.3,0 -162081645,"Kung Fury Street Rage",purchase,1.0,0 -162081645,"Kung Fury Street Rage",play,0.2,0 -162081645,"Wild Warfare",purchase,1.0,0 -162081645,"Wild Warfare",play,0.1,0 -162081645,"Organ Trail Director's Cut",purchase,1.0,0 -162081645,"Organ Trail Director's Cut",play,0.1,0 -162081645,"Mitos.is The Game",purchase,1.0,0 -162081645,"Loadout",purchase,1.0,0 -162081645,"Brawlhalla",purchase,1.0,0 -162081645,"Dirty Bomb",purchase,1.0,0 -162081645,"Heroes & Generals",purchase,1.0,0 -162081645,"Path of Exile",purchase,1.0,0 -279290604,"Dota 2",purchase,1.0,0 -279290604,"Dota 2",play,0.3,0 -73091698,"Football Manager 2011",purchase,1.0,0 -73091698,"Football Manager 2011",play,234.0,0 -149741997,"Dota 2",purchase,1.0,0 -149741997,"Dota 2",play,181.0,0 -149741997,"The Walking Dead",purchase,1.0,0 -149741997,"The Walking Dead",play,10.2,0 -149741997,"Spiral Knights",purchase,1.0,0 -149741997,"Spiral Knights",play,7.3,0 -149741997,"WAKFU",purchase,1.0,0 -149741997,"WAKFU",play,7.2,0 -149741997,"Magic Duels",purchase,1.0,0 -241988111,"Spiral Knights",purchase,1.0,0 -275935324,"Dota 2",purchase,1.0,0 -275935324,"Dota 2",play,1.8,0 -258140547,"Simply Chess",purchase,1.0,0 -258140547,"Left 4 Dead 2",purchase,1.0,0 -258140547,"Mortal Online",purchase,1.0,0 -129885479,"Sniper Elite V2",purchase,1.0,0 -129885479,"Sniper Elite V2",play,0.8,0 -40997928,"Counter-Strike Source",purchase,1.0,0 -40997928,"Counter-Strike Source",play,0.3,0 -40997928,"Day of Defeat Source",purchase,1.0,0 -40997928,"Half-Life 2 Deathmatch",purchase,1.0,0 -40997928,"Half-Life 2 Lost Coast",purchase,1.0,0 -159922493,"Dead Island",purchase,1.0,0 -159922493,"Dead Island",play,10.1,0 -159922493,"Counter-Strike Global Offensive",purchase,1.0,0 -159922493,"Counter-Strike Global Offensive",play,9.6,0 -159922493,"Left 4 Dead 2",purchase,1.0,0 -159922493,"Left 4 Dead 2",play,7.2,0 -159922493,"Heroes & Generals",purchase,1.0,0 -159922493,"Heroes & Generals",play,6.4,0 -159922493,"PAYDAY 2",purchase,1.0,0 -159922493,"PAYDAY 2",play,0.2,0 -255473549,"Dota 2",purchase,1.0,0 -255473549,"Dota 2",play,4.7,0 -195743633,"Unturned",purchase,1.0,0 -195743633,"Unturned",play,3.5,0 -195743633,"Robocraft",purchase,1.0,0 -195743633,"Robocraft",play,0.1,0 -195743633,"Heroes & Generals",purchase,1.0,0 -195743633,"Tactical Intervention",purchase,1.0,0 -55457113,"Counter-Strike Source",purchase,1.0,0 -55457113,"Counter-Strike Source",play,777.0,0 -55457113,"DayZ",purchase,1.0,0 -55457113,"DayZ",play,67.0,0 -55457113,"Counter-Strike Global Offensive",purchase,1.0,0 -55457113,"Counter-Strike Global Offensive",play,66.0,0 -55457113,"Day of Defeat Source",purchase,1.0,0 -55457113,"Half-Life 2 Deathmatch",purchase,1.0,0 -55457113,"Half-Life 2 Lost Coast",purchase,1.0,0 -248769067,"Codename CURE",purchase,1.0,0 -248769067,"Codename CURE",play,0.6,0 -248769067,"Modular Combat",purchase,1.0,0 -248769067,"Modular Combat",play,0.1,0 -248769067,"RaceRoom Racing Experience ",purchase,1.0,0 -198735293,"Clicker Heroes",purchase,1.0,0 -198735293,"Clicker Heroes",play,345.0,0 -198735293,"Garry's Mod",purchase,1.0,0 -198735293,"Garry's Mod",play,238.0,0 -198735293,"RIFT",purchase,1.0,0 -198735293,"RIFT",play,137.0,0 -198735293,"FINAL FANTASY VIII",purchase,1.0,0 -198735293,"FINAL FANTASY VIII",play,121.0,0 -198735293,"Path of Exile",purchase,1.0,0 -198735293,"Path of Exile",play,109.0,0 -198735293,"Risk of Rain",purchase,1.0,0 -198735293,"Risk of Rain",play,75.0,0 -198735293,"Hero Siege",purchase,1.0,0 -198735293,"Hero Siege",play,67.0,0 -198735293,"Terraria",purchase,1.0,0 -198735293,"Terraria",play,63.0,0 -198735293,"Dungeon Defenders Eternity",purchase,1.0,0 -198735293,"Dungeon Defenders Eternity",play,44.0,0 -198735293,"Dead Rising 3",purchase,1.0,0 -198735293,"Dead Rising 3",play,37.0,0 -198735293,"Starbound",purchase,1.0,0 -198735293,"Starbound",play,30.0,0 -198735293,"Borderlands The Pre-Sequel",purchase,1.0,0 -198735293,"Borderlands The Pre-Sequel",play,25.0,0 -198735293,"How to Survive",purchase,1.0,0 -198735293,"How to Survive",play,25.0,0 -198735293,"Craft The World",purchase,1.0,0 -198735293,"Craft The World",play,14.0,0 -198735293,"Goat Simulator",purchase,1.0,0 -198735293,"Goat Simulator",play,14.0,0 -198735293,"Awesomenauts",purchase,1.0,0 -198735293,"Awesomenauts",play,13.5,0 -198735293,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -198735293,"RollerCoaster Tycoon 3 Platinum!",play,12.0,0 -198735293,"Carmageddon Reincarnation",purchase,1.0,0 -198735293,"Carmageddon Reincarnation",play,10.8,0 -198735293,"Dungeon Defenders II",purchase,1.0,0 -198735293,"Dungeon Defenders II",play,9.0,0 -198735293,"Tap Tap Infinity",purchase,1.0,0 -198735293,"Tap Tap Infinity",play,8.8,0 -198735293,"Torchlight II",purchase,1.0,0 -198735293,"Torchlight II",play,8.7,0 -198735293,"METAL SLUG DEFENSE",purchase,1.0,0 -198735293,"METAL SLUG DEFENSE",play,8.4,0 -198735293,"Time Clickers",purchase,1.0,0 -198735293,"Time Clickers",play,7.7,0 -198735293,"Castle Crashers",purchase,1.0,0 -198735293,"Castle Crashers",play,7.5,0 -198735293,"Magicite",purchase,1.0,0 -198735293,"Magicite",play,7.1,0 -198735293,"Serious Sam HD The First Encounter",purchase,1.0,0 -198735293,"Serious Sam HD The First Encounter",play,6.8,0 -198735293,"LEGO Worlds",purchase,1.0,0 -198735293,"LEGO Worlds",play,5.8,0 -198735293,"Gauntlet ",purchase,1.0,0 -198735293,"Gauntlet ",play,5.6,0 -198735293,"Lichdom Battlemage",purchase,1.0,0 -198735293,"Lichdom Battlemage",play,5.6,0 -198735293,"The Binding of Isaac",purchase,1.0,0 -198735293,"The Binding of Isaac",play,5.2,0 -198735293,"Command and Conquer 3 Tiberium Wars",purchase,1.0,0 -198735293,"Command and Conquer 3 Tiberium Wars",play,3.9,0 -198735293,"Starbound - Unstable",purchase,1.0,0 -198735293,"Starbound - Unstable",play,3.6,0 -198735293,"Super Meat Boy",purchase,1.0,0 -198735293,"Super Meat Boy",play,3.3,0 -198735293,"Nuclear Throne",purchase,1.0,0 -198735293,"Nuclear Throne",play,3.0,0 -198735293,"HeXen II",purchase,1.0,0 -198735293,"HeXen II",play,2.8,0 -198735293,"I am Bread",purchase,1.0,0 -198735293,"I am Bread",play,2.7,0 -198735293,"Serious Sam 3 BFE",purchase,1.0,0 -198735293,"Serious Sam 3 BFE",play,2.5,0 -198735293,"Viscera Cleanup Detail",purchase,1.0,0 -198735293,"Viscera Cleanup Detail",play,2.4,0 -198735293,"Deathtrap",purchase,1.0,0 -198735293,"Deathtrap",play,2.3,0 -198735293,"Portal 2",purchase,1.0,0 -198735293,"Portal 2",play,1.8,0 -198735293,"Endless Legend",purchase,1.0,0 -198735293,"Endless Legend",play,1.7,0 -198735293,"Dungeonland",purchase,1.0,0 -198735293,"Dungeonland",play,1.6,0 -198735293,"Trine 2",purchase,1.0,0 -198735293,"Trine 2",play,1.5,0 -198735293,"Anomaly 2",purchase,1.0,0 -198735293,"Anomaly 2",play,1.5,0 -198735293,"Defend Your Life",purchase,1.0,0 -198735293,"Defend Your Life",play,1.5,0 -198735293,"FortressCraft Evolved",purchase,1.0,0 -198735293,"FortressCraft Evolved",play,1.3,0 -198735293,"Zombies Monsters Robots",purchase,1.0,0 -198735293,"Zombies Monsters Robots",play,1.2,0 -198735293,"The Incredible Adventures of Van Helsing II",purchase,1.0,0 -198735293,"The Incredible Adventures of Van Helsing II",play,1.2,0 -198735293,"Yet Another Zombie Defense",purchase,1.0,0 -198735293,"Yet Another Zombie Defense",play,1.1,0 -198735293,"Divinity II Developer's Cut",purchase,1.0,0 -198735293,"Divinity II Developer's Cut",play,1.1,0 -198735293,"Painkiller Hell & Damnation",purchase,1.0,0 -198735293,"Painkiller Hell & Damnation",play,1.0,0 -198735293,"Dead Island Epidemic",purchase,1.0,0 -198735293,"Dead Island Epidemic",play,1.0,0 -198735293,"E.Y.E Divine Cybermancy",purchase,1.0,0 -198735293,"E.Y.E Divine Cybermancy",play,1.0,0 -198735293,"Viscera Cleanup Detail Santa's Rampage",purchase,1.0,0 -198735293,"Viscera Cleanup Detail Santa's Rampage",play,1.0,0 -198735293,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -198735293,"Duke Nukem 3D Megaton Edition",play,0.9,0 -198735293,"Full Mojo Rampage",purchase,1.0,0 -198735293,"Full Mojo Rampage",play,0.8,0 -198735293,"Squishy the Suicidal Pig",purchase,1.0,0 -198735293,"Squishy the Suicidal Pig",play,0.7,0 -198735293,"CastleMiner Z",purchase,1.0,0 -198735293,"CastleMiner Z",play,0.7,0 -198735293,"Counter-Strike Nexon Zombies",purchase,1.0,0 -198735293,"Counter-Strike Nexon Zombies",play,0.7,0 -198735293,"Five Nights at Freddy's 2",purchase,1.0,0 -198735293,"Five Nights at Freddy's 2",play,0.6,0 -198735293,"ArcheAge",purchase,1.0,0 -198735293,"ArcheAge",play,0.4,0 -198735293,"Painkiller Recurring Evil",purchase,1.0,0 -198735293,"Painkiller Recurring Evil",play,0.3,0 -198735293,"Blood One Unit Whole Blood",purchase,1.0,0 -198735293,"Blood One Unit Whole Blood",play,0.3,0 -198735293,"Team Fortress 2",purchase,1.0,0 -198735293,"Team Fortress 2",play,0.3,0 -198735293,"One Way Heroics",purchase,1.0,0 -198735293,"One Way Heroics",play,0.2,0 -198735293,"I, Zombie",purchase,1.0,0 -198735293,"I, Zombie",play,0.1,0 -198735293,"Might & Magic Heroes VI",purchase,1.0,0 -198735293,"Amazon's Jungle Bundle",purchase,1.0,0 -198735293,"Blood Omen 2 Legacy of Kain",purchase,1.0,0 -198735293,"Castle Crashers - Blacksmith Pack",purchase,1.0,0 -198735293,"Castle Crashers - Pink Knight Pack",purchase,1.0,0 -198735293,"Command and Conquer Red Alert 3",purchase,1.0,0 -198735293,"Counter-Strike Source",purchase,1.0,0 -198735293,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -198735293,"Dead Island Riptide",purchase,1.0,0 -198735293,"Dead Rising 3 DLC1",purchase,1.0,0 -198735293,"Dead Rising 3 DLC2",purchase,1.0,0 -198735293,"Dead Rising 3 DLC3",purchase,1.0,0 -198735293,"Dead Rising 3 DLC4",purchase,1.0,0 -198735293,"Hero Siege - The Depths of Hell",purchase,1.0,0 -198735293,"Hero Siege - The Karp of Doom",purchase,1.0,0 -198735293,"Legacy of Kain Defiance",purchase,1.0,0 -198735293,"Legacy of Kain Soul Reaver",purchase,1.0,0 -198735293,"Legacy of Kain Soul Reaver 2",purchase,1.0,0 -198735293,"Natural Selection 2",purchase,1.0,0 -198735293,"Nosgoth",purchase,1.0,0 -198735293,"Painkiller Black Edition",purchase,1.0,0 -198735293,"Painkiller Redemption",purchase,1.0,0 -198735293,"Painkiller Resurrection",purchase,1.0,0 -198735293,"Painkiller Hell & Damnation - The Clock Strikes Meat Night",purchase,1.0,0 -198735293,"Painkiller Overdose",purchase,1.0,0 -198735293,"Red Faction Armageddon",purchase,1.0,0 -198735293,"RIFT Typhoon Edition",purchase,1.0,0 -198735293,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -198735293,"Tower Wars",purchase,1.0,0 -198735293,"Van Helsing II Ink Hunt",purchase,1.0,0 -198735293,"Van Helsing II Pigasus",purchase,1.0,0 -198735293,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -300093855,"Rust",purchase,1.0,0 -300093855,"Rust",play,180.0,0 -184815970,"Unturned",purchase,1.0,0 -102376253,"Dota 2",purchase,1.0,0 -102376253,"Dota 2",play,4785.0,0 -152812792,"Football Manager 2014",purchase,1.0,0 -152812792,"Football Manager 2014",play,65.0,0 -83878895,"Age of Chivalry",purchase,1.0,0 -83878895,"Age of Chivalry",play,0.6,0 -83878895,"Team Fortress 2",purchase,1.0,0 -83878895,"Team Fortress 2",play,0.1,0 -11300897,"The Elder Scrolls V Skyrim",purchase,1.0,0 -11300897,"The Elder Scrolls V Skyrim",play,78.0,0 -11300897,"Call of Duty Modern Warfare 2",purchase,1.0,0 -11300897,"Call of Duty Modern Warfare 2",play,35.0,0 -11300897,"Darksiders",purchase,1.0,0 -11300897,"Darksiders",play,23.0,0 -11300897,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -11300897,"Call of Duty Modern Warfare 2 - Multiplayer",play,10.6,0 -11300897,"XCOM Enemy Unknown",purchase,1.0,0 -11300897,"XCOM Enemy Unknown",play,9.4,0 -11300897,"Half-Life 2",purchase,1.0,0 -11300897,"Half-Life 2",play,9.2,0 -11300897,"HAWKEN",purchase,1.0,0 -11300897,"HAWKEN",play,6.9,0 -11300897,"Dead Island Epidemic",purchase,1.0,0 -11300897,"Dead Island Epidemic",play,4.9,0 -11300897,"Path of Exile",purchase,1.0,0 -11300897,"Path of Exile",play,4.7,0 -11300897,"Warframe",purchase,1.0,0 -11300897,"Warframe",play,2.4,0 -11300897,"Team Fortress 2",purchase,1.0,0 -11300897,"Team Fortress 2",play,2.2,0 -11300897,"Blacklight Retribution",purchase,1.0,0 -11300897,"Blacklight Retribution",play,1.9,0 -11300897,"PlanetSide 2",purchase,1.0,0 -11300897,"PlanetSide 2",play,1.6,0 -11300897,"Darksiders II",purchase,1.0,0 -11300897,"Darksiders II",play,1.0,0 -11300897,"The Expendabros",purchase,1.0,0 -11300897,"The Expendabros",play,0.2,0 -11300897,"Neverwinter",purchase,1.0,0 -11300897,"RIFT",purchase,1.0,0 -11300897,"Free to Play",purchase,1.0,0 -11300897,"Counter-Strike Source",purchase,1.0,0 -11300897,"Half-Life 2 Deathmatch",purchase,1.0,0 -11300897,"Half-Life 2 Lost Coast",purchase,1.0,0 -11300897,"Narcissu 1st & 2nd",purchase,1.0,0 -11300897,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -11300897,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -11300897,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -11300897,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -303442756,"CSGO Player Profiles",purchase,1.0,0 -303442756,"CSGO Player Profiles - Device",purchase,1.0,0 -303442756,"CSGO Player Profiles - Edward",purchase,1.0,0 -303442756,"CSGO Player Profiles - Fallen",purchase,1.0,0 -303442756,"CSGO Player Profiles - Get_Right",purchase,1.0,0 -303442756,"CSGO Player Profiles - KennyS",purchase,1.0,0 -303442756,"CSGO Player Profiles - Markeloff",purchase,1.0,0 -303442756,"CSGO Player Profiles - N0thing",purchase,1.0,0 -303442756,"CSGO Player Profiles - Olofmeister",purchase,1.0,0 -303442756,"CSGO Player Profiles - Taz",purchase,1.0,0 -220428551,"Dota 2",purchase,1.0,0 -220428551,"Dota 2",play,1.7,0 -43395122,"Counter-Strike Source",purchase,1.0,0 -43395122,"Counter-Strike Source",play,2.0,0 -43395122,"Day of Defeat Source",purchase,1.0,0 -43395122,"Half-Life 2 Deathmatch",purchase,1.0,0 -43395122,"Half-Life 2 Lost Coast",purchase,1.0,0 -45575299,"Saints Row 2",purchase,1.0,0 -45575299,"Saints Row 2",play,20.0,0 -19062398,"Dota 2",purchase,1.0,0 -19062398,"Dota 2",play,1319.0,0 -19062398,"Counter-Strike",purchase,1.0,0 -19062398,"Counter-Strike",play,33.0,0 -19062398,"Counter-Strike Condition Zero",purchase,1.0,0 -19062398,"Counter-Strike Condition Zero",play,13.6,0 -19062398,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -19062398,"Day of Defeat",purchase,1.0,0 -19062398,"Deathmatch Classic",purchase,1.0,0 -19062398,"Portal",purchase,1.0,0 -19062398,"Ricochet",purchase,1.0,0 -119185179,"The Elder Scrolls V Skyrim",purchase,1.0,0 -119185179,"The Elder Scrolls V Skyrim",play,13.5,0 -156039980,"Left 4 Dead 2",purchase,1.0,0 -156039980,"Left 4 Dead 2",play,8.3,0 -37941785,"Counter-Strike Source",purchase,1.0,0 -37941785,"Counter-Strike Source",play,2.2,0 -37941785,"Day of Defeat Source",purchase,1.0,0 -37941785,"Half-Life 2 Deathmatch",purchase,1.0,0 -37941785,"Half-Life 2 Lost Coast",purchase,1.0,0 -184444733,"Dota 2",purchase,1.0,0 -184444733,"Dota 2",play,8.8,0 -121796986,"Team Fortress 2",purchase,1.0,0 -121796986,"Team Fortress 2",play,5.6,0 -179902428,"Dota 2",purchase,1.0,0 -179902428,"Dota 2",play,13.7,0 -235322374,"Dota 2",purchase,1.0,0 -235322374,"Dota 2",play,0.6,0 -151213607,"Dota 2",purchase,1.0,0 -151213607,"Dota 2",play,0.4,0 -145672760,"Dota 2",purchase,1.0,0 -145672760,"Dota 2",play,4.4,0 -306993682,"Warface",purchase,1.0,0 -306993682,"Warface",play,14.7,0 -306993682,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -306993682,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.9,0 -306993682,"Heroes & Generals",purchase,1.0,0 -306993682,"RaceRoom Racing Experience ",purchase,1.0,0 -157235483,"Dota 2",purchase,1.0,0 -157235483,"Dota 2",play,322.0,0 -157235483,"Counter-Strike Global Offensive",purchase,1.0,0 -157235483,"Counter-Strike Global Offensive",play,278.0,0 -157235483,"The Elder Scrolls V Skyrim",purchase,1.0,0 -157235483,"The Elder Scrolls V Skyrim",play,61.0,0 -157235483,"Company of Heroes (New Steam Version)",purchase,1.0,0 -157235483,"Company of Heroes (New Steam Version)",play,39.0,0 -157235483,"Counter-Strike Source",purchase,1.0,0 -157235483,"Counter-Strike Source",play,15.9,0 -157235483,"Trove",purchase,1.0,0 -157235483,"Trove",play,7.8,0 -157235483,"Counter-Strike",purchase,1.0,0 -157235483,"Counter-Strike",play,7.6,0 -157235483,"Unturned",purchase,1.0,0 -157235483,"Unturned",play,0.8,0 -157235483,"Infinite Crisis",purchase,1.0,0 -157235483,"Infinite Crisis",play,0.8,0 -157235483,"PAYDAY 2",purchase,1.0,0 -157235483,"PAYDAY 2",play,0.4,0 -157235483,"BLOCKADE 3D",purchase,1.0,0 -157235483,"BLOCKADE 3D",play,0.2,0 -157235483,"AdVenture Capitalist",purchase,1.0,0 -157235483,"Clicker Heroes",purchase,1.0,0 -157235483,"Company of Heroes",purchase,1.0,0 -157235483,"Counter-Strike Condition Zero",purchase,1.0,0 -157235483,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -157235483,"Firefall",purchase,1.0,0 -157235483,"Forge",purchase,1.0,0 -157235483,"Free to Play",purchase,1.0,0 -157235483,"Heroes & Generals",purchase,1.0,0 -157235483,"Heroes of SoulCraft",purchase,1.0,0 -157235483,"Loadout",purchase,1.0,0 -157235483,"Neverwinter",purchase,1.0,0 -157235483,"No More Room in Hell",purchase,1.0,0 -157235483,"Prime World",purchase,1.0,0 -157235483,"Stronghold Kingdoms",purchase,1.0,0 -157235483,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -157235483,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -157235483,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -157235483,"The Expendabros",purchase,1.0,0 -157235483,"The Mighty Quest For Epic Loot",purchase,1.0,0 -157235483,"War Thunder",purchase,1.0,0 -308691324,"Team Fortress 2",purchase,1.0,0 -308691324,"Team Fortress 2",play,3.1,0 -165188589,"Team Fortress 2",purchase,1.0,0 -165188589,"Team Fortress 2",play,17.8,0 -71335402,"Torchlight II",purchase,1.0,0 -71335402,"Torchlight II",play,116.0,0 -71335402,"Counter-Strike Global Offensive",purchase,1.0,0 -71335402,"Counter-Strike Global Offensive",play,88.0,0 -71335402,"Arma 3",purchase,1.0,0 -71335402,"Arma 3",play,66.0,0 -71335402,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -71335402,"Call of Duty Black Ops - Multiplayer",play,55.0,0 -71335402,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -71335402,"Call of Duty 4 Modern Warfare",play,48.0,0 -71335402,"Team Fortress 2",purchase,1.0,0 -71335402,"Team Fortress 2",play,44.0,0 -71335402,"Dungeon Defenders",purchase,1.0,0 -71335402,"Dungeon Defenders",play,43.0,0 -71335402,"PAYDAY 2",purchase,1.0,0 -71335402,"PAYDAY 2",play,36.0,0 -71335402,"Call of Duty Black Ops",purchase,1.0,0 -71335402,"Call of Duty Black Ops",play,29.0,0 -71335402,"DayZ",purchase,1.0,0 -71335402,"DayZ",play,22.0,0 -71335402,"Left 4 Dead 2",purchase,1.0,0 -71335402,"Left 4 Dead 2",play,18.9,0 -71335402,"Counter-Strike Source",purchase,1.0,0 -71335402,"Counter-Strike Source",play,17.5,0 -71335402,"Terraria",purchase,1.0,0 -71335402,"Terraria",play,13.8,0 -71335402,"The Secret World",purchase,1.0,0 -71335402,"The Secret World",play,10.4,0 -71335402,"Killing Floor",purchase,1.0,0 -71335402,"Killing Floor",play,10.1,0 -71335402,"Arma 2",purchase,1.0,0 -71335402,"Arma 2",play,9.5,0 -71335402,"Magicka",purchase,1.0,0 -71335402,"Magicka",play,8.2,0 -71335402,"7 Days to Die",purchase,1.0,0 -71335402,"7 Days to Die",play,8.2,0 -71335402,"Company of Heroes 2",purchase,1.0,0 -71335402,"Company of Heroes 2",play,7.7,0 -71335402,"Path of Exile",purchase,1.0,0 -71335402,"Path of Exile",play,7.2,0 -71335402,"Contagion",purchase,1.0,0 -71335402,"Contagion",play,5.4,0 -71335402,"RIFT",purchase,1.0,0 -71335402,"RIFT",play,3.8,0 -71335402,"Arma 2 Operation Arrowhead",purchase,1.0,0 -71335402,"Arma 2 Operation Arrowhead",play,3.4,0 -71335402,"Rust",purchase,1.0,0 -71335402,"Rust",play,3.3,0 -71335402,"Half-Life 2 Deathmatch",purchase,1.0,0 -71335402,"Half-Life 2 Deathmatch",play,2.8,0 -71335402,"Insurgency Modern Infantry Combat",purchase,1.0,0 -71335402,"Insurgency Modern Infantry Combat",play,2.7,0 -71335402,"Insurgency",purchase,1.0,0 -71335402,"Insurgency",play,2.7,0 -71335402,"Infestation Survivor Stories",purchase,1.0,0 -71335402,"Infestation Survivor Stories",play,1.9,0 -71335402,"StarForge",purchase,1.0,0 -71335402,"StarForge",play,0.3,0 -71335402,"Surgeon Simulator",purchase,1.0,0 -71335402,"Surgeon Simulator",play,0.1,0 -71335402,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -71335402,"Arma 3 Zeus",purchase,1.0,0 -71335402,"Clicker Heroes",purchase,1.0,0 -71335402,"Half-Life 2 Lost Coast",purchase,1.0,0 -71335402,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -71335402,"Left 4 Dead",purchase,1.0,0 -71335402,"Magicka Vietnam",purchase,1.0,0 -71335402,"Magicka Wizard's Survival Kit",purchase,1.0,0 -71335402,"Metal Reaper Online",purchase,1.0,0 -71335402,"Unturned",purchase,1.0,0 -71335402,"War Thunder",purchase,1.0,0 -208321471,"Rocksmith 2014",purchase,1.0,0 -247443969,"Unturned",purchase,1.0,0 -247443969,"Unturned",play,30.0,0 -247443969,"Counter-Strike Nexon Zombies",purchase,1.0,0 -247443969,"Counter-Strike Nexon Zombies",play,1.3,0 -247443969,"Team Fortress 2",purchase,1.0,0 -247443969,"Team Fortress 2",play,0.6,0 -247443969,"theHunter",purchase,1.0,0 -247443969,"theHunter",play,0.2,0 -247443969,"BLOCKADE 3D",purchase,1.0,0 -236026990,"Dota 2",purchase,1.0,0 -236026990,"Dota 2",play,81.0,0 -28165186,"Day of Defeat",purchase,1.0,0 -28165186,"Counter-Strike",purchase,1.0,0 -28165186,"Counter-Strike Condition Zero",purchase,1.0,0 -28165186,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -28165186,"Deathmatch Classic",purchase,1.0,0 -28165186,"Ricochet",purchase,1.0,0 -240177990,"Counter-Strike Nexon Zombies",purchase,1.0,0 -240177990,"Heroes & Generals",purchase,1.0,0 -282180040,"Unturned",purchase,1.0,0 -117970761,"F.E.A.R. Online",purchase,1.0,0 -94521606,"TERA",purchase,1.0,0 -94521606,"TERA",play,20.0,0 -94521606,"Terraria",purchase,1.0,0 -94521606,"Terraria",play,18.6,0 -94521606,"The Walking Dead",purchase,1.0,0 -94521606,"The Walking Dead",play,12.5,0 -94521606,"Left 4 Dead 2",purchase,1.0,0 -94521606,"Left 4 Dead 2",play,9.1,0 -94521606,"Don't Starve",purchase,1.0,0 -94521606,"Don't Starve",play,7.4,0 -94521606,"Atom Zombie Smasher ",purchase,1.0,0 -94521606,"Atom Zombie Smasher ",play,6.0,0 -94521606,"Monaco",purchase,1.0,0 -94521606,"Monaco",play,3.0,0 -94521606,"RPG Maker VX Ace",purchase,1.0,0 -94521606,"RPG Maker VX Ace",play,2.4,0 -94521606,"The Elder Scrolls V Skyrim",purchase,1.0,0 -94521606,"The Elder Scrolls V Skyrim",play,2.1,0 -94521606,"Little Inferno",purchase,1.0,0 -94521606,"Little Inferno",play,1.8,0 -94521606,"Organ Trail Director's Cut",purchase,1.0,0 -94521606,"Organ Trail Director's Cut",play,1.5,0 -94521606,"Garry's Mod",purchase,1.0,0 -94521606,"Garry's Mod",play,1.4,0 -94521606,"Left 4 Dead",purchase,1.0,0 -94521606,"Left 4 Dead",play,1.0,0 -94521606,"Prison Architect",purchase,1.0,0 -94521606,"Prison Architect",play,0.6,0 -94521606,"Game Character Hub",purchase,1.0,0 -94521606,"Game Character Hub",play,0.4,0 -94521606,"Viridi",purchase,1.0,0 -94521606,"Viridi",play,0.3,0 -94521606,"ORION Prelude",purchase,1.0,0 -94521606,"Don't Starve Together Beta",purchase,1.0,0 -94521606,"Brothers - A Tale of Two Sons",purchase,1.0,0 -94521606,"Counter-Strike Source",purchase,1.0,0 -94521606,"Dragon Age Origins",purchase,1.0,0 -94521606,"Half-Life",purchase,1.0,0 -160819372,"Dota 2",purchase,1.0,0 -160819372,"Dota 2",play,8.4,0 -182470295,"Dota 2",purchase,1.0,0 -182470295,"Dota 2",play,0.5,0 -243801291,"War Inc. Battlezone",purchase,1.0,0 -243801291,"War Inc. Battlezone",play,1.4,0 -243801291,"Red Crucible Firestorm",purchase,1.0,0 -243801291,"Red Crucible Firestorm",play,0.3,0 -243801291,"Bloodline Champions",purchase,1.0,0 -243801291,"Bloodline Champions",play,0.1,0 -243801291,"CrimeCraft GangWars",purchase,1.0,0 -243801291,"War of the Roses",purchase,1.0,0 -145202608,"Dota 2",purchase,1.0,0 -145202608,"Dota 2",play,1207.0,0 -145202608,"Codename CURE",purchase,1.0,0 -145202608,"Heroes & Generals",purchase,1.0,0 -145202608,"Left 4 Dead 2",purchase,1.0,0 -145202608,"Sniper Elite V2",purchase,1.0,0 -145202608,"Unturned",purchase,1.0,0 -103034870,"Fallout New Vegas",purchase,1.0,0 -103034870,"Fallout New Vegas",play,0.4,0 -21406272,"Counter-Strike Source",purchase,1.0,0 -21406272,"Counter-Strike Source",play,474.0,0 -21406272,"Left 4 Dead 2",purchase,1.0,0 -21406272,"Left 4 Dead 2",play,10.2,0 -21406272,"Day of Defeat Source",purchase,1.0,0 -21406272,"Day of Defeat Source",play,4.8,0 -21406272,"Counter-Strike",purchase,1.0,0 -21406272,"Counter-Strike",play,2.2,0 -21406272,"Counter-Strike Condition Zero",purchase,1.0,0 -21406272,"Counter-Strike Condition Zero",play,1.5,0 -21406272,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -21406272,"Day of Defeat",purchase,1.0,0 -21406272,"Deathmatch Classic",purchase,1.0,0 -21406272,"Half-Life 2 Deathmatch",purchase,1.0,0 -21406272,"Half-Life 2 Lost Coast",purchase,1.0,0 -21406272,"Ricochet",purchase,1.0,0 -142793906,"ARK Survival Evolved",purchase,1.0,0 -142793906,"ARK Survival Evolved",play,506.0,0 -142793906,"Terraria",purchase,1.0,0 -142793906,"Terraria",play,99.0,0 -142793906,"H1Z1",purchase,1.0,0 -142793906,"H1Z1",play,52.0,0 -142793906,"Warframe",purchase,1.0,0 -142793906,"Warframe",play,28.0,0 -142793906,"Killing Floor",purchase,1.0,0 -142793906,"Killing Floor",play,28.0,0 -142793906,"Clicker Heroes",purchase,1.0,0 -142793906,"Clicker Heroes",play,25.0,0 -142793906,"The Forest",purchase,1.0,0 -142793906,"The Forest",play,18.2,0 -142793906,"Nosgoth",purchase,1.0,0 -142793906,"Nosgoth",play,13.1,0 -142793906,"Deadlight",purchase,1.0,0 -142793906,"Deadlight",play,12.9,0 -142793906,"Garry's Mod",purchase,1.0,0 -142793906,"Garry's Mod",play,12.7,0 -142793906,"Awesomenauts",purchase,1.0,0 -142793906,"Awesomenauts",play,11.9,0 -142793906,"Outlast",purchase,1.0,0 -142793906,"Outlast",play,10.5,0 -142793906,"Rise of Incarnates",purchase,1.0,0 -142793906,"Rise of Incarnates",play,10.3,0 -142793906,"DayZ",purchase,1.0,0 -142793906,"DayZ",play,7.4,0 -142793906,"Hammerwatch",purchase,1.0,0 -142793906,"Hammerwatch",play,5.0,0 -142793906,"Command and Conquer Red Alert 3",purchase,1.0,0 -142793906,"Command and Conquer Red Alert 3",play,4.2,0 -142793906,"Dirty Bomb",purchase,1.0,0 -142793906,"Dirty Bomb",play,3.8,0 -142793906,"Fairy Bloom Freesia",purchase,1.0,0 -142793906,"Fairy Bloom Freesia",play,3.5,0 -142793906,"Orcs Must Die! 2",purchase,1.0,0 -142793906,"Orcs Must Die! 2",play,3.5,0 -142793906,"Alan Wake",purchase,1.0,0 -142793906,"Alan Wake",play,3.4,0 -142793906,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -142793906,"Rocketbirds Hardboiled Chicken",play,2.3,0 -142793906,"Sanctum 2",purchase,1.0,0 -142793906,"Sanctum 2",play,2.1,0 -142793906,"Aura Kingdom",purchase,1.0,0 -142793906,"Aura Kingdom",play,2.0,0 -142793906,"Counter-Strike Global Offensive",purchase,1.0,0 -142793906,"Counter-Strike Global Offensive",play,1.7,0 -142793906,"Contagion",purchase,1.0,0 -142793906,"Contagion",play,1.6,0 -142793906,"How to Survive",purchase,1.0,0 -142793906,"How to Survive",play,1.5,0 -142793906,"Dota 2",purchase,1.0,0 -142793906,"Dota 2",play,1.3,0 -142793906,"The Binding of Isaac",purchase,1.0,0 -142793906,"The Binding of Isaac",play,1.1,0 -142793906,"Yet Another Zombie Defense",purchase,1.0,0 -142793906,"Yet Another Zombie Defense",play,0.9,0 -142793906,"Aces Wild Manic Brawling Action!",purchase,1.0,0 -142793906,"Aces Wild Manic Brawling Action!",play,0.5,0 -142793906,"Sakura Clicker",purchase,1.0,0 -142793906,"Sakura Clicker",play,0.3,0 -142793906,"Risk of Rain",purchase,1.0,0 -142793906,"Risk of Rain",play,0.3,0 -142793906,"Wanderlust Rebirth",purchase,1.0,0 -142793906,"Wanderlust Rebirth",play,0.1,0 -142793906,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -142793906,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -142793906,"Alan Wake's American Nightmare",purchase,1.0,0 -142793906,"Counter-Strike Source",purchase,1.0,0 -142793906,"Crusader Kings II",purchase,1.0,0 -142793906,"Deadlight Original Soundtrack",purchase,1.0,0 -142793906,"Dino D-Day",purchase,1.0,0 -142793906,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -142793906,"H1Z1 Test Server",purchase,1.0,0 -142793906,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -142793906,"Legend of Grimrock",purchase,1.0,0 -142793906,"Outlast Whistleblower DLC",purchase,1.0,0 -142793906,"PixelJunk Eden",purchase,1.0,0 -142793906,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -185174122,"Team Fortress 2",purchase,1.0,0 -185174122,"Team Fortress 2",play,29.0,0 -158799099,"Dota 2",purchase,1.0,0 -158799099,"Dota 2",play,37.0,0 -111953639,"Team Fortress 2",purchase,1.0,0 -111953639,"Team Fortress 2",play,40.0,0 -84514126,"Portal",purchase,1.0,0 -84514126,"Portal",play,10.0,0 -84514126,"Half-Life 2",purchase,1.0,0 -84514126,"Half-Life 2 Episode One",purchase,1.0,0 -84514126,"Half-Life 2 Episode Two",purchase,1.0,0 -84514126,"Half-Life 2 Lost Coast",purchase,1.0,0 -123696203,"Counter-Strike Global Offensive",purchase,1.0,0 -123696203,"Counter-Strike Global Offensive",play,1806.0,0 -123696203,"Counter-Strike",purchase,1.0,0 -123696203,"Counter-Strike",play,318.0,0 -123696203,"PAYDAY 2",purchase,1.0,0 -123696203,"PAYDAY 2",play,184.0,0 -123696203,"GRID 2",purchase,1.0,0 -123696203,"GRID 2",play,60.0,0 -123696203,"Grand Theft Auto IV",purchase,1.0,0 -123696203,"Grand Theft Auto IV",play,55.0,0 -123696203,"War Thunder",purchase,1.0,0 -123696203,"War Thunder",play,44.0,0 -123696203,"Mount & Blade With Fire and Sword",purchase,1.0,0 -123696203,"Mount & Blade With Fire and Sword",play,18.5,0 -123696203,"Age of Empires III Complete Collection",purchase,1.0,0 -123696203,"Age of Empires III Complete Collection",play,16.8,0 -123696203,"Dead Island",purchase,1.0,0 -123696203,"Dead Island",play,13.7,0 -123696203,"War of the Roses",purchase,1.0,0 -123696203,"War of the Roses",play,10.9,0 -123696203,"Dungeon Defenders II",purchase,1.0,0 -123696203,"Dungeon Defenders II",play,9.4,0 -123696203,"SpeedRunners",purchase,1.0,0 -123696203,"SpeedRunners",play,8.6,0 -123696203,"Left 4 Dead 2",purchase,1.0,0 -123696203,"Left 4 Dead 2",play,5.5,0 -123696203,"Defiance",purchase,1.0,0 -123696203,"Defiance",play,3.9,0 -123696203,"SMITE",purchase,1.0,0 -123696203,"SMITE",play,3.6,0 -123696203,"Team Fortress 2",purchase,1.0,0 -123696203,"Team Fortress 2",play,2.9,0 -123696203,"Trove",purchase,1.0,0 -123696203,"Trove",play,2.4,0 -123696203,"Dota 2",purchase,1.0,0 -123696203,"Dota 2",play,2.0,0 -123696203,"Nosgoth",purchase,1.0,0 -123696203,"Nosgoth",play,0.9,0 -123696203,"Yet Another Zombie Defense",purchase,1.0,0 -123696203,"Yet Another Zombie Defense",play,0.7,0 -123696203,"Borderlands 2",purchase,1.0,0 -123696203,"Borderlands 2",play,0.5,0 -123696203,"Grand Theft Auto San Andreas",purchase,1.0,0 -123696203,"Grand Theft Auto San Andreas",play,0.3,0 -123696203,"Far Cry 3",purchase,1.0,0 -123696203,"Far Cry 3",play,0.1,0 -123696203,"Euro Truck Simulator",purchase,1.0,0 -123696203,"Counter-Strike Condition Zero",purchase,1.0,0 -123696203,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -123696203,"Cry of Fear",purchase,1.0,0 -123696203,"Day of Defeat",purchase,1.0,0 -123696203,"Deathmatch Classic",purchase,1.0,0 -123696203,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -123696203,"Grand Theft Auto San Andreas",purchase,1.0,0 -123696203,"Grand Theft Auto Vice City",purchase,1.0,0 -123696203,"Grand Theft Auto Vice City",purchase,1.0,0 -123696203,"Grand Theft Auto III",purchase,1.0,0 -123696203,"Grand Theft Auto III",purchase,1.0,0 -123696203,"Happy Wars",purchase,1.0,0 -123696203,"Heroes & Generals",purchase,1.0,0 -123696203,"PAYDAY The Heist",purchase,1.0,0 -123696203,"Ricochet",purchase,1.0,0 -123696203,"Warface",purchase,1.0,0 -146785235,"Dota 2",purchase,1.0,0 -146785235,"Dota 2",play,0.8,0 -248009721,"Total War ATTILA",purchase,1.0,0 -248009721,"Total War ATTILA",play,59.0,0 -220695363,"Team Fortress 2",purchase,1.0,0 -220695363,"Team Fortress 2",play,1.9,0 -220695363,"Dota 2",purchase,1.0,0 -220695363,"Dota 2",play,0.7,0 -150828477,"Dota 2",purchase,1.0,0 -150828477,"Dota 2",play,2.9,0 -131360546,"Dota 2",purchase,1.0,0 -131360546,"Dota 2",play,2.0,0 -303870889,"Dota 2",purchase,1.0,0 -303870889,"Dota 2",play,29.0,0 -188469466,"Dota 2",purchase,1.0,0 -188469466,"Dota 2",play,0.6,0 -131948270,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -131948270,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,1.9,0 -131948270,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -131948270,"Total War SHOGUN 2",purchase,1.0,0 -257056644,"Dota 2",purchase,1.0,0 -257056644,"Dota 2",play,8.7,0 -70844556,"XCOM Enemy Unknown",purchase,1.0,0 -70844556,"XCOM Enemy Unknown",play,509.0,0 -70844556,"Sid Meier's Civilization V",purchase,1.0,0 -70844556,"Sid Meier's Civilization V",play,478.0,0 -70844556,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -70844556,"Sid Meier's Civilization Beyond Earth",play,181.0,0 -70844556,"Might & Magic Heroes VI",purchase,1.0,0 -70844556,"Might & Magic Heroes VI",play,3.8,0 -70844556,"Sid Meier's Civilization Beyond Earth - Rising Tide",purchase,1.0,0 -70844556,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -70844556,"XCOM Enemy Within",purchase,1.0,0 -295073214,"Dota 2",purchase,1.0,0 -295073214,"Dota 2",play,19.4,0 -34383588,"Counter-Strike",purchase,1.0,0 -34383588,"Counter-Strike",play,9.6,0 -34383588,"Counter-Strike Condition Zero",purchase,1.0,0 -34383588,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -146584740,"Dota 2",purchase,1.0,0 -146584740,"Dota 2",play,4.7,0 -242886720,"Transformice",purchase,1.0,0 -242886720,"Transformice",play,6.9,0 -242886720,"Clicker Heroes",purchase,1.0,0 -242886720,"Clicker Heroes",play,1.4,0 -242886720,"FreeStyle2 Street Basketball",purchase,1.0,0 -242886720,"FreeStyle2 Street Basketball",play,0.5,0 -242886720,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -242886720,"Unturned",purchase,1.0,0 -242886720,"BLOCKADE 3D",purchase,1.0,0 -242886720,"The Way of Life Free Edition",purchase,1.0,0 -242886720,"War Thunder",purchase,1.0,0 -173774528,"Garry's Mod",purchase,1.0,0 -173774528,"Garry's Mod",play,35.0,0 -173774528,"Unturned",purchase,1.0,0 -173774528,"Unturned",play,0.6,0 -173774528,"Heroes & Generals",purchase,1.0,0 -300412433,"Team Fortress 2",purchase,1.0,0 -300412433,"Team Fortress 2",play,1.0,0 -134258069,"Serious Sam 2",purchase,1.0,0 -134258069,"Serious Sam 2",play,3.8,0 -164047422,"Sniper Elite Nazi Zombie Army",purchase,1.0,0 -164047422,"Sniper Elite Nazi Zombie Army",play,0.6,0 -308114190,"Dota 2",purchase,1.0,0 -308114190,"Dota 2",play,2.5,0 -129922806,"Dota 2",purchase,1.0,0 -129922806,"Dota 2",play,11.8,0 -196816850,"Dota 2",purchase,1.0,0 -196816850,"Dota 2",play,0.3,0 -196816850,"Color Symphony",purchase,1.0,0 -196816850,"Free to Play",purchase,1.0,0 -196816850,"Quake Live",purchase,1.0,0 -196816850,"Robocraft",purchase,1.0,0 -196816850,"theHunter",purchase,1.0,0 -196816850,"Tribes Ascend",purchase,1.0,0 -196816850,"Unturned",purchase,1.0,0 -195311349,"Dota 2",purchase,1.0,0 -195311349,"Dota 2",play,0.2,0 -35640500,"Counter-Strike Source",purchase,1.0,0 -35640500,"Counter-Strike Source",play,78.0,0 -35640500,"Day of Defeat Source",purchase,1.0,0 -35640500,"Half-Life 2 Deathmatch",purchase,1.0,0 -35640500,"Half-Life 2 Lost Coast",purchase,1.0,0 -136137921,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -136137921,"Call of Duty Modern Warfare 2 - Multiplayer",play,351.0,0 -136137921,"Call of Duty World at War",purchase,1.0,0 -136137921,"Call of Duty World at War",play,338.0,0 -136137921,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -136137921,"Call of Duty Black Ops - Multiplayer",play,51.0,0 -136137921,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -136137921,"Call of Duty Black Ops II - Multiplayer",play,9.9,0 -136137921,"Blazing Angels 2 Secret Missions of WWII",purchase,1.0,0 -136137921,"Blazing Angels 2 Secret Missions of WWII",play,6.7,0 -136137921,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -136137921,"Rising Storm/Red Orchestra 2 Multiplayer",play,5.9,0 -136137921,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -136137921,"Call of Duty 4 Modern Warfare",play,4.9,0 -136137921,"Call of Duty Modern Warfare 2",purchase,1.0,0 -136137921,"Call of Duty Modern Warfare 2",play,4.7,0 -136137921,"Call of Duty Black Ops III",purchase,1.0,0 -136137921,"Call of Duty Black Ops III",play,4.0,0 -136137921,"Call of Duty Black Ops II",purchase,1.0,0 -136137921,"Call of Duty Black Ops II",play,3.5,0 -136137921,"Call of Duty Black Ops",purchase,1.0,0 -136137921,"Call of Duty Black Ops",play,3.2,0 -136137921,"Tom Clancy's Ghost Recon Advanced Warfighter 2",purchase,1.0,0 -136137921,"Tom Clancy's Ghost Recon Advanced Warfighter 2",play,0.6,0 -136137921,"Day of Defeat Source",purchase,1.0,0 -136137921,"Day of Defeat Source",play,0.5,0 -136137921,"Verdun",purchase,1.0,0 -136137921,"Verdun",play,0.4,0 -136137921,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -136137921,"Call of Duty Modern Warfare 2 - Resurgence Pack",purchase,1.0,0 -136137921,"Call of Duty Modern Warfare 2 Stimulus Package",purchase,1.0,0 -227929763,"Euro Truck Simulator 2",purchase,1.0,0 -227929763,"Euro Truck Simulator 2",play,39.0,0 -92940732,"Counter-Strike",purchase,1.0,0 -92940732,"Counter-Strike",play,1899.0,0 -92940732,"Counter-Strike Global Offensive",purchase,1.0,0 -92940732,"Counter-Strike Global Offensive",play,221.0,0 -92940732,"Counter-Strike Source",purchase,1.0,0 -92940732,"Counter-Strike Source",play,5.8,0 -92940732,"The Elder Scrolls V Skyrim",purchase,1.0,0 -92940732,"The Elder Scrolls V Skyrim",play,4.6,0 -92940732,"Team Fortress 2",purchase,1.0,0 -92940732,"Team Fortress 2",play,0.2,0 -92940732,"Counter-Strike Condition Zero",purchase,1.0,0 -92940732,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -92940732,"Day of Defeat",purchase,1.0,0 -92940732,"Deathmatch Classic",purchase,1.0,0 -92940732,"Ricochet",purchase,1.0,0 -163968268,"Rust",purchase,1.0,0 -163968268,"Rust",play,107.0,0 -163968268,"theHunter",purchase,1.0,0 -163968268,"theHunter",play,8.6,0 -163968268,"Life is Feudal Your Own",purchase,1.0,0 -163968268,"Life is Feudal Your Own",play,1.5,0 -163968268,"Heroes & Generals",purchase,1.0,0 -163968268,"Heroes & Generals",play,1.1,0 -163968268,"Dota 2",purchase,1.0,0 -163968268,"Dota 2",play,0.9,0 -163968268,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -163968268,"School of Dragons How to Train Your Dragon",play,0.1,0 -163968268,"Dead Island Epidemic",purchase,1.0,0 -163968268,"RaceRoom Racing Experience ",purchase,1.0,0 -89106156,"Darkest Hour Europe '44-'45",purchase,1.0,0 -89106156,"Darkest Hour Europe '44-'45",play,138.0,0 -89106156,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -89106156,"Red Orchestra Ostfront 41-45",play,85.0,0 -89106156,"Mare Nostrum",purchase,1.0,0 -18066817,"Counter-Strike Source",purchase,1.0,0 -18066817,"Counter-Strike Source",play,58.0,0 -18066817,"Audiosurf",purchase,1.0,0 -18066817,"Audiosurf",play,10.8,0 -18066817,"Portal",purchase,1.0,0 -18066817,"Portal",play,10.6,0 -18066817,"Garry's Mod",purchase,1.0,0 -18066817,"Garry's Mod",play,9.9,0 -18066817,"Day of Defeat Source",purchase,1.0,0 -18066817,"Day of Defeat Source",play,6.2,0 -18066817,"Half-Life 2 Episode One",purchase,1.0,0 -18066817,"Half-Life 2 Episode One",play,2.9,0 -18066817,"Team Fortress 2",purchase,1.0,0 -18066817,"Team Fortress 2",play,1.3,0 -18066817,"Counter-Strike",purchase,1.0,0 -18066817,"Counter-Strike",play,0.7,0 -18066817,"Half-Life 2",purchase,1.0,0 -18066817,"Half-Life 2",play,0.5,0 -18066817,"Counter-Strike Condition Zero",purchase,1.0,0 -18066817,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -18066817,"Day of Defeat",purchase,1.0,0 -18066817,"Deathmatch Classic",purchase,1.0,0 -18066817,"Half-Life",purchase,1.0,0 -18066817,"Half-Life 2 Deathmatch",purchase,1.0,0 -18066817,"Half-Life 2 Episode Two",purchase,1.0,0 -18066817,"Half-Life 2 Lost Coast",purchase,1.0,0 -18066817,"Half-Life Blue Shift",purchase,1.0,0 -18066817,"Half-Life Opposing Force",purchase,1.0,0 -18066817,"Half-Life Source",purchase,1.0,0 -18066817,"Half-Life Deathmatch Source",purchase,1.0,0 -18066817,"Ricochet",purchase,1.0,0 -18066817,"Team Fortress Classic",purchase,1.0,0 -200190961,"Dota 2",purchase,1.0,0 -200190961,"Dota 2",play,1.7,0 -200190961,"PAYDAY The Heist",purchase,1.0,0 -200190961,"PAYDAY The Heist",play,0.2,0 -165510738,"Dota 2",purchase,1.0,0 -165510738,"Dota 2",play,35.0,0 -181385269,"Counter-Strike Global Offensive",purchase,1.0,0 -181385269,"Counter-Strike Global Offensive",play,1160.0,0 -181385269,"Team Fortress 2",purchase,1.0,0 -181385269,"Team Fortress 2",play,442.0,0 -181385269,"Unturned",purchase,1.0,0 -181385269,"Unturned",play,66.0,0 -181385269,"Robocraft",purchase,1.0,0 -181385269,"Robocraft",play,24.0,0 -181385269,"Insurgency",purchase,1.0,0 -181385269,"Insurgency",play,20.0,0 -181385269,"Left 4 Dead 2",purchase,1.0,0 -181385269,"Left 4 Dead 2",play,19.8,0 -181385269,"AdVenture Capitalist",purchase,1.0,0 -181385269,"AdVenture Capitalist",play,4.5,0 -181385269,"Garry's Mod",purchase,1.0,0 -181385269,"Garry's Mod",play,1.6,0 -181385269,"Dota 2",purchase,1.0,0 -181385269,"Dota 2",play,1.4,0 -181385269,"Heroes & Generals",purchase,1.0,0 -181385269,"Heroes & Generals",play,0.3,0 -181385269,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -181385269,"Warframe",purchase,1.0,0 -181385269,"Counter-Strike Nexon Zombies",purchase,1.0,0 -181385269,"FreeStyle2 Street Basketball",purchase,1.0,0 -181385269,"Tactical Intervention",purchase,1.0,0 -181385269,"Transformice",purchase,1.0,0 -178228113,"Dota 2",purchase,1.0,0 -178228113,"Dota 2",play,0.8,0 -301168432,"Counter-Strike Nexon Zombies",purchase,1.0,0 -301168432,"Counter-Strike Nexon Zombies - Starter Pack",purchase,1.0,0 -301168432,"Piercing Blow",purchase,1.0,0 -237610173,"School of Dragons How to Train Your Dragon",purchase,1.0,0 -237610173,"School of Dragons How to Train Your Dragon",play,17.1,0 -237610173,"Robocraft",purchase,1.0,0 -237610173,"Robocraft",play,5.2,0 -237610173,"Gotham City Impostors Free To Play",purchase,1.0,0 -200574126,"Dota 2",purchase,1.0,0 -200574126,"Dota 2",play,9.0,0 -200574126,"Robocraft",purchase,1.0,0 -200574126,"Robocraft",play,0.8,0 -200574126,"Team Fortress 2",purchase,1.0,0 -200574126,"Team Fortress 2",play,0.7,0 -200574126,"Gotham City Impostors Free To Play",purchase,1.0,0 -200574126,"Gotham City Impostors Free To Play",play,0.5,0 -200574126,"Evolution RTS",purchase,1.0,0 -200574126,"Evolution RTS",play,0.3,0 -19594216,"Half-Life 2",purchase,1.0,0 -19594216,"Half-Life 2",play,0.3,0 -19594216,"Counter-Strike Source",purchase,1.0,0 -19594216,"Half-Life 2 Deathmatch",purchase,1.0,0 -19594216,"Half-Life 2 Lost Coast",purchase,1.0,0 -19594216,"Half-Life Source",purchase,1.0,0 -19594216,"Half-Life Deathmatch Source",purchase,1.0,0 -201977954,"Dota 2",purchase,1.0,0 -201977954,"Dota 2",play,13.1,0 -221901510,"Dota 2",purchase,1.0,0 -221901510,"Dota 2",play,0.2,0 -121884238,"Garry's Mod",purchase,1.0,0 -121884238,"Garry's Mod",play,26.0,0 -121884238,"Dead Rising 3",purchase,1.0,0 -121884238,"Dead Rising 3",play,16.6,0 -121884238,"ARK Survival Evolved",purchase,1.0,0 -121884238,"ARK Survival Evolved",play,15.1,0 -121884238,"Counter-Strike Global Offensive",purchase,1.0,0 -121884238,"Counter-Strike Global Offensive",play,13.1,0 -121884238,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -121884238,"Call of Duty Modern Warfare 3 - Multiplayer",play,10.0,0 -121884238,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -121884238,"Tom Clancy's Ghost Recon Phantoms - EU",play,9.2,0 -121884238,"Borderlands 2",purchase,1.0,0 -121884238,"Borderlands 2",play,9.1,0 -121884238,"Blacklight Retribution",purchase,1.0,0 -121884238,"Blacklight Retribution",play,4.8,0 -121884238,"BLOCKADE 3D",purchase,1.0,0 -121884238,"BLOCKADE 3D",play,2.3,0 -121884238,"Unturned",purchase,1.0,0 -121884238,"Unturned",play,1.8,0 -121884238,"Call of Duty Modern Warfare 3",purchase,1.0,0 -121884238,"Call of Duty Modern Warfare 3",play,1.7,0 -121884238,"ArcheAge",purchase,1.0,0 -121884238,"Dead Rising 3 DLC1",purchase,1.0,0 -121884238,"Dead Rising 3 DLC2",purchase,1.0,0 -121884238,"Dead Rising 3 DLC3",purchase,1.0,0 -121884238,"Dead Rising 3 DLC4",purchase,1.0,0 -60820884,"Counter-Strike Global Offensive",purchase,1.0,0 -60820884,"Counter-Strike Global Offensive",play,68.0,0 -60820884,"Dota 2",purchase,1.0,0 -60820884,"Dota 2",play,1.5,0 -110824765,"Counter-Strike Global Offensive",purchase,1.0,0 -110824765,"Counter-Strike Global Offensive",play,624.0,0 -110824765,"Arma 2 Operation Arrowhead",purchase,1.0,0 -110824765,"Arma 2 Operation Arrowhead",play,209.0,0 -110824765,"Insurgency",purchase,1.0,0 -110824765,"Insurgency",play,60.0,0 -110824765,"Mount & Blade Warband",purchase,1.0,0 -110824765,"Mount & Blade Warband",play,47.0,0 -110824765,"Terraria",purchase,1.0,0 -110824765,"Terraria",play,37.0,0 -110824765,"Unturned",purchase,1.0,0 -110824765,"Unturned",play,33.0,0 -110824765,"Team Fortress 2",purchase,1.0,0 -110824765,"Team Fortress 2",play,17.6,0 -110824765,"Rust",purchase,1.0,0 -110824765,"Rust",play,17.3,0 -110824765,"AdVenture Capitalist",purchase,1.0,0 -110824765,"AdVenture Capitalist",play,17.0,0 -110824765,"America's Army Proving Grounds",purchase,1.0,0 -110824765,"America's Army Proving Grounds",play,16.5,0 -110824765,"Call of Duty World at War",purchase,1.0,0 -110824765,"Call of Duty World at War",play,13.8,0 -110824765,"Path of Exile",purchase,1.0,0 -110824765,"Path of Exile",play,13.6,0 -110824765,"Counter-Strike Nexon Zombies",purchase,1.0,0 -110824765,"Counter-Strike Nexon Zombies",play,6.0,0 -110824765,"Arma 2",purchase,1.0,0 -110824765,"Arma 2",play,4.1,0 -110824765,"Trove",purchase,1.0,0 -110824765,"Trove",play,1.7,0 -110824765,"Chivalry Medieval Warfare",purchase,1.0,0 -110824765,"Chivalry Medieval Warfare",play,1.5,0 -110824765,"Warframe",purchase,1.0,0 -110824765,"Warframe",play,1.2,0 -110824765,"Survarium",purchase,1.0,0 -110824765,"Survarium",play,1.1,0 -110824765,"Dirty Bomb",purchase,1.0,0 -110824765,"Dirty Bomb",play,1.0,0 -110824765,"Warface",purchase,1.0,0 -110824765,"Warface",play,0.7,0 -110824765,"Red Crucible Firestorm",purchase,1.0,0 -110824765,"Red Crucible Firestorm",play,0.4,0 -110824765,"Blacklight Retribution",purchase,1.0,0 -110824765,"Blacklight Retribution",play,0.3,0 -110824765,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -110824765,"Heroes & Generals",purchase,1.0,0 -110824765,"Aftermath",purchase,1.0,0 -110824765,"Clicker Heroes",purchase,1.0,0 -110824765,"Heroes of SoulCraft",purchase,1.0,0 -110824765,"No More Room in Hell",purchase,1.0,0 -110824765,"Patch testing for Chivalry",purchase,1.0,0 -110824765,"Quake Live",purchase,1.0,0 -110824765,"You Have to Win the Game",purchase,1.0,0 -155464938,"Garry's Mod",purchase,1.0,0 -155464938,"Garry's Mod",play,61.0,0 -183574382,"PAYDAY The Heist",purchase,1.0,0 -183574382,"PAYDAY The Heist",play,4.1,0 -183574382,"Dino D-Day",purchase,1.0,0 -183574382,"Dino D-Day",play,3.7,0 -183574382,"Really Big Sky",purchase,1.0,0 -183574382,"Really Big Sky",play,1.3,0 -183574382,"Woodle Tree Adventures",purchase,1.0,0 -183574382,"Woodle Tree Adventures",play,1.0,0 -183574382,"Gun Monkeys",purchase,1.0,0 -183574382,"Gun Monkeys",play,0.9,0 -183574382,"Altitude",purchase,1.0,0 -183574382,"Aura Kingdom",purchase,1.0,0 -183574382,"Battlegrounds of Eldhelm",purchase,1.0,0 -183574382,"Battle Nations",purchase,1.0,0 -183574382,"Eldevin",purchase,1.0,0 -183574382,"Fistful of Frags",purchase,1.0,0 -183574382,"Frontline Tactics",purchase,1.0,0 -183574382,"Get Off My Lawn!",purchase,1.0,0 -183574382,"Guns and Robots",purchase,1.0,0 -183574382,"Happy Wars",purchase,1.0,0 -183574382,"Haunted Memories",purchase,1.0,0 -183574382,"La Tale",purchase,1.0,0 -183574382,"Might & Magic Duel of Champions",purchase,1.0,0 -183574382,"My Lands",purchase,1.0,0 -183574382,"Only If",purchase,1.0,0 -183574382,"Puzzle Pirates",purchase,1.0,0 -183574382,"Realm of the Mad God",purchase,1.0,0 -183574382,"Reversion - The Escape",purchase,1.0,0 -183574382,"Spiral Knights",purchase,1.0,0 -183574382,"Toribash",purchase,1.0,0 -183574382,"Unturned",purchase,1.0,0 -183574382,"WAKFU",purchase,1.0,0 -183574382,"Warframe",purchase,1.0,0 -183574382,"World of Guns Gun Disassembly",purchase,1.0,0 -170181678,"Tactical Intervention",purchase,1.0,0 -170181678,"Tactical Intervention",play,8.1,0 -170181678,"Spiral Knights",purchase,1.0,0 -170181678,"Spiral Knights",play,1.5,0 -170181678,"Dragons and Titans",purchase,1.0,0 -250977044,"Dota 2",purchase,1.0,0 -250977044,"Dota 2",play,17.0,0 -39671216,"Half-Life 2 Deathmatch",purchase,1.0,0 -39671216,"Half-Life 2 Lost Coast",purchase,1.0,0 -156021358,"Garry's Mod",purchase,1.0,0 -156021358,"Garry's Mod",play,6.4,0 -156021358,"Dota 2",purchase,1.0,0 -156021358,"Dota 2",play,1.1,0 -100993239,"Divinity Original Sin",purchase,1.0,0 -100993239,"Divinity Original Sin",play,75.0,0 -100993239,"The Elder Scrolls V Skyrim",purchase,1.0,0 -100993239,"The Elder Scrolls V Skyrim",play,70.0,0 -100993239,"Thief",purchase,1.0,0 -100993239,"Thief",play,32.0,0 -100993239,"The Secret World",purchase,1.0,0 -100993239,"The Secret World",play,32.0,0 -100993239,"Trine 2",purchase,1.0,0 -100993239,"Trine 2",play,15.3,0 -100993239,"Borderlands 2",purchase,1.0,0 -100993239,"Borderlands 2",play,12.0,0 -100993239,"Torchlight II",purchase,1.0,0 -100993239,"Torchlight II",play,8.2,0 -100993239,"Marvel Heroes 2015",purchase,1.0,0 -100993239,"Marvel Heroes 2015",play,5.4,0 -100993239,"The Banner Saga",purchase,1.0,0 -100993239,"The Banner Saga",play,4.4,0 -100993239,"Orcs Must Die! 2",purchase,1.0,0 -100993239,"Orcs Must Die! 2",play,3.0,0 -100993239,"Path of Exile",purchase,1.0,0 -100993239,"Path of Exile",play,2.1,0 -100993239,"Portal 2",purchase,1.0,0 -100993239,"Portal 2",play,2.0,0 -100993239,"Nosgoth",purchase,1.0,0 -100993239,"Nosgoth",play,1.7,0 -100993239,"The Elder Scrolls III Morrowind",purchase,1.0,0 -100993239,"The Elder Scrolls III Morrowind",play,0.6,0 -100993239,"Trine",purchase,1.0,0 -100993239,"Trine",play,0.5,0 -100993239,"Spiral Knights",purchase,1.0,0 -100993239,"Spiral Knights",play,0.3,0 -100993239,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -100993239,"RaiderZ",purchase,1.0,0 -100993239,"Beyond Divinity",purchase,1.0,0 -100993239,"Divine Divinity",purchase,1.0,0 -100993239,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -100993239,"Neverwinter",purchase,1.0,0 -100993239,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -100993239,"The Banner Saga - Mod Content",purchase,1.0,0 -100993239,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -100993239,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -100993239,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -100993239,"Thief - Opportunist",purchase,1.0,0 -100993239,"Thief - The Bank Heist",purchase,1.0,0 -100993239,"Warframe",purchase,1.0,0 -168163793,"Trove",purchase,1.0,0 -168163793,"Trove",play,110.0,0 -168163793,"Unturned",purchase,1.0,0 -168163793,"Unturned",play,47.0,0 -168163793,"Robocraft",purchase,1.0,0 -168163793,"Robocraft",play,40.0,0 -168163793,"Relic Hunters Zero",purchase,1.0,0 -168163793,"Relic Hunters Zero",play,3.6,0 -168163793,"Dota 2",purchase,1.0,0 -168163793,"Dota 2",play,3.1,0 -168163793,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -168163793,"Age of Empires Online",purchase,1.0,0 -168163793,"Amazing World",purchase,1.0,0 -168163793,"America's Army 3",purchase,1.0,0 -168163793,"America's Army Proving Grounds",purchase,1.0,0 -168163793,"APB Reloaded",purchase,1.0,0 -168163793,"Arcane Saga Online",purchase,1.0,0 -168163793,"Archeblade",purchase,1.0,0 -168163793,"Arctic Combat",purchase,1.0,0 -168163793,"Atlantica Online",purchase,1.0,0 -168163793,"Aura Kingdom",purchase,1.0,0 -168163793,"Bloodline Champions",purchase,1.0,0 -168163793,"Brawl Busters",purchase,1.0,0 -168163793,"Bullet Run",purchase,1.0,0 -168163793,"C9",purchase,1.0,0 -168163793,"Cakewalk Loop Manager",purchase,1.0,0 -168163793,"Champions Online",purchase,1.0,0 -168163793,"Combat Arms",purchase,1.0,0 -168163793,"Construct 2 Free",purchase,1.0,0 -168163793,"CrimeCraft GangWars",purchase,1.0,0 -168163793,"Dead Island Epidemic",purchase,1.0,0 -168163793,"Defiance",purchase,1.0,0 -168163793,"District 187",purchase,1.0,0 -168163793,"Dragon Nest",purchase,1.0,0 -168163793,"Dragon Nest Europe",purchase,1.0,0 -168163793,"Dragons and Titans",purchase,1.0,0 -168163793,"Dungeon Fighter Online",purchase,1.0,0 -168163793,"Dungeonland",purchase,1.0,0 -168163793,"Dungeon Party",purchase,1.0,0 -168163793,"Dwarfs F2P",purchase,1.0,0 -168163793,"EverQuest Free-to-Play",purchase,1.0,0 -168163793,"EverQuest II",purchase,1.0,0 -168163793,"EVGA PrecisionX 16",purchase,1.0,0 -168163793,"Face of Mankind",purchase,1.0,0 -168163793,"Fallen Earth",purchase,1.0,0 -168163793,"Fiesta Online",purchase,1.0,0 -168163793,"Fiesta Online NA",purchase,1.0,0 -168163793,"Firefall",purchase,1.0,0 -168163793,"Floating Point",purchase,1.0,0 -168163793,"Football Superstars",purchase,1.0,0 -168163793,"Forsaken World ",purchase,1.0,0 -168163793,"Frontline Tactics",purchase,1.0,0 -168163793,"Global Agenda",purchase,1.0,0 -168163793,"Gotham City Impostors Free To Play",purchase,1.0,0 -168163793,"Grand Chase",purchase,1.0,0 -168163793,"Guns and Robots",purchase,1.0,0 -168163793,"Heroes & Generals",purchase,1.0,0 -168163793,"HOMEFRONT Demo",purchase,1.0,0 -168163793,"La Tale",purchase,1.0,0 -168163793,"Loadout",purchase,1.0,0 -168163793,"Mabinogi",purchase,1.0,0 -168163793,"Magic The Gathering Tactics",purchase,1.0,0 -168163793,"March of War",purchase,1.0,0 -168163793,"Marvel Heroes 2015",purchase,1.0,0 -168163793,"Memoir '44 Online",purchase,1.0,0 -168163793,"MicroVolts Surge",purchase,1.0,0 -168163793,"Moon Breakers",purchase,1.0,0 -168163793,"NEOTOKYO",purchase,1.0,0 -168163793,"Neverwinter",purchase,1.0,0 -168163793,"Nosgoth",purchase,1.0,0 -168163793,"Only If",purchase,1.0,0 -168163793,"Pandora Saga Weapons of Balance",purchase,1.0,0 -168163793,"Panzar",purchase,1.0,0 -168163793,"Path of Exile",purchase,1.0,0 -168163793,"Pinball Arcade",purchase,1.0,0 -168163793,"PlanetSide 2",purchase,1.0,0 -168163793,"Pox Nora",purchase,1.0,0 -168163793,"Puzzle Pirates",purchase,1.0,0 -168163793,"Quantum Rush Online",purchase,1.0,0 -168163793,"RaceRoom Racing Experience ",purchase,1.0,0 -168163793,"Ragnarok Online 2",purchase,1.0,0 -168163793,"Realm of the Mad God",purchase,1.0,0 -168163793,"Reversion - The Escape",purchase,1.0,0 -168163793,"Rise of Incarnates",purchase,1.0,0 -168163793,"ROSE Online",purchase,1.0,0 -168163793,"Royal Quest",purchase,1.0,0 -168163793,"Rusty Hearts",purchase,1.0,0 -168163793,"Saira",purchase,1.0,0 -168163793,"Shadow Warrior Classic (1997)",purchase,1.0,0 -168163793,"Spiral Knights",purchase,1.0,0 -168163793,"Star Conflict",purchase,1.0,0 -168163793,"Star Trek Online",purchase,1.0,0 -168163793,"Stronghold Kingdoms",purchase,1.0,0 -168163793,"Sunrider Mask of Arcadius",purchase,1.0,0 -168163793,"Super Crate Box",purchase,1.0,0 -168163793,"Super Monday Night Combat",purchase,1.0,0 -168163793,"Tactical Intervention",purchase,1.0,0 -168163793,"The Banner Saga Factions",purchase,1.0,0 -168163793,"The Expendabros",purchase,1.0,0 -168163793,"The Forgotten Ones",purchase,1.0,0 -168163793,"The Lord of the Rings Online",purchase,1.0,0 -168163793,"Thinking with Time Machine",purchase,1.0,0 -168163793,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -168163793,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -168163793,"Tribes Ascend",purchase,1.0,0 -168163793,"Uncharted Waters Online",purchase,1.0,0 -168163793,"Velvet Sundown",purchase,1.0,0 -168163793,"Vindictus",purchase,1.0,0 -168163793,"Warface",purchase,1.0,0 -168163793,"Warframe",purchase,1.0,0 -168163793,"War Inc. Battlezone",purchase,1.0,0 -168163793,"War Thunder",purchase,1.0,0 -168163793,"World of Battles",purchase,1.0,0 -168163793,"World of Guns Gun Disassembly",purchase,1.0,0 -168163793,"Xam",purchase,1.0,0 -194854693,"Grand Theft Auto V",purchase,1.0,0 -194854693,"Grand Theft Auto V",play,74.0,0 -194854693,"Call of Duty Advanced Warfare",purchase,1.0,0 -194854693,"Call of Duty Advanced Warfare",play,7.3,0 -194854693,"Dota 2",purchase,1.0,0 -194854693,"Dota 2",play,2.6,0 -194854693,"Worms Reloaded",purchase,1.0,0 -194854693,"Worms Reloaded",play,1.7,0 -194854693,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -194854693,"Call of Duty Advanced Warfare - Multiplayer",play,0.3,0 -194854693,"Warframe",purchase,1.0,0 -194854693,"Worms",purchase,1.0,0 -194854693,"Worms Armageddon",purchase,1.0,0 -194854693,"Worms Blast",purchase,1.0,0 -194854693,"Worms Clan Wars",purchase,1.0,0 -194854693,"Worms Crazy Golf",purchase,1.0,0 -194854693,"Worms Pinball",purchase,1.0,0 -194854693,"Worms Revolution",purchase,1.0,0 -194854693,"Worms Ultimate Mayhem",purchase,1.0,0 -36257313,"Lost Planet Extreme Condition",purchase,1.0,0 -36257313,"Prey",purchase,1.0,0 -32577778,"RaceRoom Racing Experience ",purchase,1.0,0 -32577778,"RaceRoom Racing Experience ",play,201.0,0 -32577778,"Assetto Corsa",purchase,1.0,0 -32577778,"Assetto Corsa",play,33.0,0 -32577778,"GRID 2",purchase,1.0,0 -32577778,"GRID 2",play,24.0,0 -32577778,"RACE 07",purchase,1.0,0 -32577778,"RACE 07",play,15.2,0 -32577778,"Counter-Strike Global Offensive",purchase,1.0,0 -32577778,"Counter-Strike Global Offensive",play,12.4,0 -32577778,"Project CARS",purchase,1.0,0 -32577778,"Project CARS",play,10.0,0 -32577778,"DiRT Rally",purchase,1.0,0 -32577778,"DiRT Rally",play,5.1,0 -32577778,"Garry's Mod",purchase,1.0,0 -32577778,"Garry's Mod",play,1.2,0 -32577778,"DiRT 3 Complete Edition",purchase,1.0,0 -32577778,"DiRT 3 Complete Edition",play,0.7,0 -32577778,"GTR Evolution",purchase,1.0,0 -32577778,"GT Power Expansion",purchase,1.0,0 -32577778,"Assetto Corsa - Dream Pack 1",purchase,1.0,0 -32577778,"RACE 07 - Formula RaceRoom Add-On",purchase,1.0,0 -112763045,"Left 4 Dead 2",purchase,1.0,0 -112763045,"Left 4 Dead 2",play,130.0,0 -112763045,"Counter-Strike Global Offensive",purchase,1.0,0 -112763045,"Counter-Strike Global Offensive",play,129.0,0 -112763045,"Portal 2",purchase,1.0,0 -112763045,"Portal 2",play,31.0,0 -112763045,"Half-Life 2",purchase,1.0,0 -112763045,"Half-Life 2",play,23.0,0 -112763045,"Half-Life",purchase,1.0,0 -112763045,"Half-Life",play,20.0,0 -112763045,"Half-Life 2 Episode Two",purchase,1.0,0 -112763045,"Half-Life 2 Episode Two",play,11.9,0 -112763045,"World of Guns Gun Disassembly",purchase,1.0,0 -112763045,"World of Guns Gun Disassembly",play,10.3,0 -112763045,"Portal",purchase,1.0,0 -112763045,"Portal",play,7.4,0 -112763045,"Half-Life 2 Episode One",purchase,1.0,0 -112763045,"Half-Life 2 Episode One",play,4.8,0 -112763045,"Half-Life 2 Lost Coast",purchase,1.0,0 -112763045,"Half-Life 2 Lost Coast",play,0.6,0 -112763045,"PAYDAY The Heist",purchase,1.0,0 -112763045,"PAYDAY The Heist",play,0.2,0 -112763045,"Gorky 17",purchase,1.0,0 -112763045,"Counter-Strike",purchase,1.0,0 -112763045,"Counter-Strike Condition Zero",purchase,1.0,0 -112763045,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -112763045,"Counter-Strike Source",purchase,1.0,0 -112763045,"Day of Defeat",purchase,1.0,0 -112763045,"Day of Defeat Source",purchase,1.0,0 -112763045,"Deathmatch Classic",purchase,1.0,0 -112763045,"Half-Life 2 Deathmatch",purchase,1.0,0 -112763045,"Half-Life Blue Shift",purchase,1.0,0 -112763045,"Half-Life Opposing Force",purchase,1.0,0 -112763045,"Half-Life Source",purchase,1.0,0 -112763045,"Half-Life Deathmatch Source",purchase,1.0,0 -112763045,"Left 4 Dead",purchase,1.0,0 -112763045,"Ricochet",purchase,1.0,0 -112763045,"Team Fortress Classic",purchase,1.0,0 -141737874,"Dota 2",purchase,1.0,0 -141737874,"Dota 2",play,3.4,0 -53901705,"Team Fortress 2",purchase,1.0,0 -53901705,"Team Fortress 2",play,1545.0,0 -53901705,"Anno Online",purchase,1.0,0 -53901705,"Anno Online",play,657.0,0 -53901705,"Far Cry 3",purchase,1.0,0 -53901705,"Far Cry 3",play,54.0,0 -53901705,"Half-Life 2",purchase,1.0,0 -53901705,"Half-Life 2",play,27.0,0 -53901705,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -53901705,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,18.2,0 -53901705,"D.I.P.R.I.P. Warm Up",purchase,1.0,0 -53901705,"D.I.P.R.I.P. Warm Up",play,15.1,0 -53901705,"Half-Life 2 Episode One",purchase,1.0,0 -53901705,"Half-Life 2 Episode One",play,11.2,0 -53901705,"Portal",purchase,1.0,0 -53901705,"Portal",play,6.9,0 -53901705,"Half-Life 2 Episode Two",purchase,1.0,0 -53901705,"Half-Life 2 Episode Two",play,1.5,0 -53901705,"Insurgency Modern Infantry Combat",purchase,1.0,0 -53901705,"Insurgency Modern Infantry Combat",play,0.7,0 -53901705,"Half-Life 2 Lost Coast",purchase,1.0,0 -53901705,"Half-Life 2 Lost Coast",play,0.7,0 -53901705,"Far Cry 3 Blood Dragon",purchase,1.0,0 -53901705,"LIMBO",purchase,1.0,0 -53901705,"Portal 2",purchase,1.0,0 -53901705,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -53901705,"War Thunder",purchase,1.0,0 -175087399,"Dota 2",purchase,1.0,0 -175087399,"Dota 2",play,1.8,0 -175087399,"Team Fortress 2",purchase,1.0,0 -175087399,"Team Fortress 2",play,0.9,0 -175087399,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -175087399,"Warframe",purchase,1.0,0 -282004804,"Everlasting Summer",purchase,1.0,0 -282004804,"Neverwinter",purchase,1.0,0 -282004804,"Trove",purchase,1.0,0 -282004804,"World of Guns Gun Disassembly",purchase,1.0,0 -17495098,"Football Manager 2013",purchase,1.0,0 -17495098,"Football Manager 2013",play,323.0,0 -17495098,"The Binding of Isaac Rebirth",purchase,1.0,0 -17495098,"The Binding of Isaac Rebirth",play,250.0,0 -17495098,"Counter-Strike",purchase,1.0,0 -17495098,"Counter-Strike",play,189.0,0 -17495098,"Counter-Strike Global Offensive",purchase,1.0,0 -17495098,"Counter-Strike Global Offensive",play,182.0,0 -17495098,"Football Manager 2014",purchase,1.0,0 -17495098,"Football Manager 2014",play,132.0,0 -17495098,"Path of Exile",purchase,1.0,0 -17495098,"Path of Exile",play,77.0,0 -17495098,"Football Manager 2015",purchase,1.0,0 -17495098,"Football Manager 2015",play,45.0,0 -17495098,"TowerFall Ascension",purchase,1.0,0 -17495098,"TowerFall Ascension",play,36.0,0 -17495098,"Counter-Strike Source",purchase,1.0,0 -17495098,"Counter-Strike Source",play,28.0,0 -17495098,"Team Fortress 2",purchase,1.0,0 -17495098,"Team Fortress 2",play,22.0,0 -17495098,"Crusader Kings II",purchase,1.0,0 -17495098,"Crusader Kings II",play,19.6,0 -17495098,"Torchlight II",purchase,1.0,0 -17495098,"Torchlight II",play,17.4,0 -17495098,"The Binding of Isaac",purchase,1.0,0 -17495098,"The Binding of Isaac",play,15.0,0 -17495098,"Grim Dawn",purchase,1.0,0 -17495098,"Grim Dawn",play,7.4,0 -17495098,"Global Agenda",purchase,1.0,0 -17495098,"Global Agenda",play,7.1,0 -17495098,"Ultra Street Fighter IV",purchase,1.0,0 -17495098,"Ultra Street Fighter IV",play,6.3,0 -17495098,"Super Meat Boy",purchase,1.0,0 -17495098,"Super Meat Boy",play,6.2,0 -17495098,"Lethal League",purchase,1.0,0 -17495098,"Lethal League",play,5.2,0 -17495098,"FINAL FANTASY III",purchase,1.0,0 -17495098,"FINAL FANTASY III",play,4.5,0 -17495098,"Jamestown",purchase,1.0,0 -17495098,"Jamestown",play,4.4,0 -17495098,"TrackMania Stadium",purchase,1.0,0 -17495098,"TrackMania Stadium",play,3.5,0 -17495098,"Risk of Rain",purchase,1.0,0 -17495098,"Risk of Rain",play,3.5,0 -17495098,"Dota 2",purchase,1.0,0 -17495098,"Dota 2",play,2.4,0 -17495098,"Mount & Blade Warband",purchase,1.0,0 -17495098,"Mount & Blade Warband",play,2.2,0 -17495098,"Counter-Strike Condition Zero",purchase,1.0,0 -17495098,"Counter-Strike Condition Zero",play,1.4,0 -17495098,"Realm of the Mad God",purchase,1.0,0 -17495098,"Realm of the Mad God",play,1.3,0 -17495098,"Day of Defeat",purchase,1.0,0 -17495098,"Day of Defeat",play,1.1,0 -17495098,"Don't Starve",purchase,1.0,0 -17495098,"Don't Starve",play,0.9,0 -17495098,"They Bleed Pixels",purchase,1.0,0 -17495098,"They Bleed Pixels",play,0.7,0 -17495098,"Chivalry Medieval Warfare",purchase,1.0,0 -17495098,"Chivalry Medieval Warfare",play,0.7,0 -17495098,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -17495098,"Rising Storm/Red Orchestra 2 Multiplayer",play,0.5,0 -17495098,"Half-Life",purchase,1.0,0 -17495098,"Half-Life",play,0.4,0 -17495098,"Before the Echo",purchase,1.0,0 -17495098,"Before the Echo",play,0.4,0 -17495098,"Aerena",purchase,1.0,0 -17495098,"Aerena",play,0.1,0 -17495098,"Football Manager 2016 Demo",purchase,1.0,0 -17495098,"Football Manager 2016 Demo",play,0.1,0 -17495098,"Hack, Slash, Loot",purchase,1.0,0 -17495098,"1953 - KGB Unleashed",purchase,1.0,0 -17495098,"Age of Empires II HD Edition",purchase,1.0,0 -17495098,"Age of Empires II HD The Forgotten",purchase,1.0,0 -17495098,"Assetto Corsa",purchase,1.0,0 -17495098,"BIT.TRIP RUNNER",purchase,1.0,0 -17495098,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -17495098,"Deathmatch Classic",purchase,1.0,0 -17495098,"Don't Starve Reign of Giants",purchase,1.0,0 -17495098,"Don't Starve Together Beta",purchase,1.0,0 -17495098,"Dungeons of Dredmor",purchase,1.0,0 -17495098,"Firefall",purchase,1.0,0 -17495098,"Grimm",purchase,1.0,0 -17495098,"Half-Life 2 Deathmatch",purchase,1.0,0 -17495098,"Half-Life 2 Lost Coast",purchase,1.0,0 -17495098,"Half-Life Blue Shift",purchase,1.0,0 -17495098,"Half-Life Opposing Force",purchase,1.0,0 -17495098,"IL-2 Sturmovik 1946",purchase,1.0,0 -17495098,"Infected The Twin Vaccine - Collector's Edition",purchase,1.0,0 -17495098,"NightSky",purchase,1.0,0 -17495098,"Paranautical Activity Deluxe Atonement Edition",purchase,1.0,0 -17495098,"Patch testing for Chivalry",purchase,1.0,0 -17495098,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -17495098,"Redshirt",purchase,1.0,0 -17495098,"Ricochet",purchase,1.0,0 -17495098,"Shank",purchase,1.0,0 -17495098,"Shufflepuck Cantina Deluxe VR",purchase,1.0,0 -17495098,"SpaceChem",purchase,1.0,0 -17495098,"Team Fortress Classic",purchase,1.0,0 -52038938,"Empire Total War",purchase,1.0,0 -52038938,"Empire Total War",play,351.0,0 -52038938,"Sid Meier's Civilization V",purchase,1.0,0 -52038938,"Sid Meier's Civilization V",play,45.0,0 -235898222,"Dota 2",purchase,1.0,0 -235898222,"Dota 2",play,191.0,0 -235898222,"War Thunder",purchase,1.0,0 -219229413,"Dota 2",purchase,1.0,0 -219229413,"Dota 2",play,691.0,0 -211240306,"Dota 2",purchase,1.0,0 -211240306,"Dota 2",play,9.0,0 -211240306,"Free to Play",purchase,1.0,0 -21551002,"Counter-Strike",purchase,1.0,0 -21551002,"Counter-Strike Condition Zero",purchase,1.0,0 -21551002,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -21551002,"Day of Defeat",purchase,1.0,0 -21551002,"Deathmatch Classic",purchase,1.0,0 -21551002,"Ricochet",purchase,1.0,0 -220434034,"Warframe",purchase,1.0,0 -220434034,"Warframe",play,484.0,0 -220434034,"Warface",purchase,1.0,0 -220434034,"Warface",play,17.1,0 -220434034,"Heroes & Generals",purchase,1.0,0 -220434034,"Heroes & Generals",play,8.2,0 -220434034,"America's Army Proving Grounds",purchase,1.0,0 -220434034,"America's Army Proving Grounds",play,8.0,0 -220434034,"Aftermath",purchase,1.0,0 -220434034,"Aftermath",play,4.2,0 -220434034,"Blacklight Retribution",purchase,1.0,0 -220434034,"Blacklight Retribution",play,4.2,0 -220434034,"Survarium",purchase,1.0,0 -220434034,"Survarium",play,3.8,0 -220434034,"PlanetSide 2",purchase,1.0,0 -220434034,"PlanetSide 2",play,1.9,0 -220434034,"theHunter",purchase,1.0,0 -220434034,"theHunter",play,1.0,0 -220434034,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -220434034,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.9,0 -220434034,"Rise of Incarnates",purchase,1.0,0 -220434034,"Rise of Incarnates",play,0.8,0 -220434034,"ArcheAge",purchase,1.0,0 -220434034,"ArcheAge",play,0.8,0 -220434034,"All Is Dust",purchase,1.0,0 -220434034,"All Is Dust",play,0.4,0 -220434034,"Robocraft",purchase,1.0,0 -220434034,"Robocraft",play,0.1,0 -220434034,"BloodRealm Battlegrounds",purchase,1.0,0 -220434034,"Running Shadow",purchase,1.0,0 -220434034,"Counter-Strike Nexon Zombies",purchase,1.0,0 -220434034,"Defiance",purchase,1.0,0 -140050187,"Left 4 Dead 2",purchase,1.0,0 -140050187,"Left 4 Dead 2",play,7.3,0 -140050187,"Team Fortress 2",purchase,1.0,0 -140050187,"Team Fortress 2",play,5.4,0 -140050187,"PAYDAY 2",purchase,1.0,0 -140050187,"PAYDAY 2",play,4.0,0 -140050187,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -140050187,"Call of Duty Modern Warfare 2 - Multiplayer",play,2.9,0 -140050187,"ORION Prelude",purchase,1.0,0 -140050187,"Call of Duty Modern Warfare 2",purchase,1.0,0 -104109817,"The Elder Scrolls V Skyrim",purchase,1.0,0 -104109817,"The Elder Scrolls V Skyrim",play,259.0,0 -104109817,"Age of Wonders III",purchase,1.0,0 -104109817,"Age of Wonders III",play,57.0,0 -104109817,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -104109817,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -104109817,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -104109817,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -285596456,"Dota 2",purchase,1.0,0 -285596456,"Dota 2",play,1.6,0 -285596456,"FreeStyle2 Street Basketball",purchase,1.0,0 -285596456,"Ragnarok Online 2",purchase,1.0,0 -285596456,"Stronghold Kingdoms",purchase,1.0,0 -64350487,"Call of Duty Modern Warfare 2",purchase,1.0,0 -64350487,"Call of Duty Modern Warfare 2",play,17.2,0 -64350487,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -64350487,"Call of Duty Modern Warfare 2 - Multiplayer",play,16.9,0 -64350487,"Portal",purchase,1.0,0 -64350487,"Portal",play,0.4,0 -175959715,"Dota 2",purchase,1.0,0 -175959715,"Dota 2",play,0.3,0 -245910880,"Dota 2",purchase,1.0,0 -245910880,"Dota 2",play,16.4,0 -65935023,"Clicker Heroes",purchase,1.0,0 -65935023,"Clicker Heroes",play,87.0,0 -65935023,"AdVenture Capitalist",purchase,1.0,0 -65935023,"AdVenture Capitalist",play,16.5,0 -65935023,"Counter-Strike Source",purchase,1.0,0 -65935023,"Counter-Strike Source",play,5.6,0 -65935023,"Counter-Strike Global Offensive",purchase,1.0,0 -65935023,"Counter-Strike Global Offensive",play,3.7,0 -65935023,"Elite Dangerous",purchase,1.0,0 -65935023,"Elite Dangerous",play,1.6,0 -65935023,"Heroes of Might & Magic III - HD Edition",purchase,1.0,0 -65935023,"Heroes of Might & Magic III - HD Edition",play,1.5,0 -65935023,"Portal",purchase,1.0,0 -65935023,"Portal",play,0.2,0 -65935023,"Team Fortress 2",purchase,1.0,0 -65935023,"Team Fortress 2",play,0.1,0 -65935023,"Counter-Strike",purchase,1.0,0 -65935023,"Counter-Strike",play,0.1,0 -65935023,"Counter-Strike Condition Zero",purchase,1.0,0 -65935023,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -65935023,"Day of Defeat",purchase,1.0,0 -65935023,"Dead Space",purchase,1.0,0 -65935023,"Deathmatch Classic",purchase,1.0,0 -65935023,"Defense Grid Resurgence Map Pack 1",purchase,1.0,0 -65935023,"Defense Grid Resurgence Map Pack 2 ",purchase,1.0,0 -65935023,"Defense Grid Resurgence Map Pack 3",purchase,1.0,0 -65935023,"Defense Grid Resurgence Map Pack 4",purchase,1.0,0 -65935023,"Defense Grid The Awakening",purchase,1.0,0 -65935023,"Left 4 Dead 2",purchase,1.0,0 -65935023,"Mirror's Edge",purchase,1.0,0 -65935023,"Ricochet",purchase,1.0,0 -65935023,"Skyborn",purchase,1.0,0 -152137140,"Dota 2",purchase,1.0,0 -152137140,"Dota 2",play,1.4,0 -220617471,"Dota 2",purchase,1.0,0 -220617471,"Dota 2",play,4.0,0 -220711709,"Robocraft",purchase,1.0,0 -220711709,"Robocraft",play,0.3,0 -220711709,"Running Shadow",purchase,1.0,0 -60062528,"Call of Duty Modern Warfare 2",purchase,1.0,0 -60062528,"Call of Duty Modern Warfare 2",play,58.0,0 -60062528,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -60062528,"Call of Duty Modern Warfare 2 - Multiplayer",play,0.9,0 -296769824,"Robocraft",purchase,1.0,0 -296769824,"Robocraft",play,23.0,0 -296769824,"Unturned",purchase,1.0,0 -296769824,"Unturned",play,1.0,0 -296769824,"Team Fortress 2",purchase,1.0,0 -296769824,"Team Fortress 2",play,0.4,0 -294750703,"Warframe",purchase,1.0,0 -150033540,"Fallout New Vegas",purchase,1.0,0 -150033540,"Fallout New Vegas",play,110.0,0 -150033540,"The Elder Scrolls V Skyrim",purchase,1.0,0 -150033540,"The Elder Scrolls V Skyrim",play,102.0,0 -150033540,"Dishonored (RU)",purchase,1.0,0 -150033540,"Dishonored (RU)",play,49.0,0 -150033540,"Sid Meier's Civilization V",purchase,1.0,0 -150033540,"Sid Meier's Civilization V",play,36.0,0 -150033540,"Grand Theft Auto San Andreas",purchase,1.0,0 -150033540,"Grand Theft Auto San Andreas",play,26.0,0 -150033540,"Terraria",purchase,1.0,0 -150033540,"Terraria",play,26.0,0 -150033540,"Counter-Strike Global Offensive",purchase,1.0,0 -150033540,"Counter-Strike Global Offensive",play,26.0,0 -150033540,"Far Cry 3",purchase,1.0,0 -150033540,"Far Cry 3",play,25.0,0 -150033540,"Garry's Mod",purchase,1.0,0 -150033540,"Garry's Mod",play,24.0,0 -150033540,"PAYDAY 2",purchase,1.0,0 -150033540,"PAYDAY 2",play,21.0,0 -150033540,"Just Cause 2",purchase,1.0,0 -150033540,"Just Cause 2",play,18.8,0 -150033540,"Half-Life 2",purchase,1.0,0 -150033540,"Half-Life 2",play,16.1,0 -150033540,"Dota 2",purchase,1.0,0 -150033540,"Dota 2",play,14.9,0 -150033540,"War Thunder",purchase,1.0,0 -150033540,"War Thunder",play,13.5,0 -150033540,"Ace of Spades",purchase,1.0,0 -150033540,"Ace of Spades",play,13.3,0 -150033540,"Grand Theft Auto IV",purchase,1.0,0 -150033540,"Grand Theft Auto IV",play,12.5,0 -150033540,"The Witcher Enhanced Edition",purchase,1.0,0 -150033540,"The Witcher Enhanced Edition",play,11.8,0 -150033540,"BioShock Infinite",purchase,1.0,0 -150033540,"BioShock Infinite",play,11.3,0 -150033540,"Max Payne 3",purchase,1.0,0 -150033540,"Max Payne 3",play,10.6,0 -150033540,"Team Fortress 2",purchase,1.0,0 -150033540,"Team Fortress 2",play,10.4,0 -150033540,"Counter-Strike Source",purchase,1.0,0 -150033540,"Counter-Strike Source",play,8.1,0 -150033540,"Metro Last Light Redux",purchase,1.0,0 -150033540,"Metro Last Light Redux",play,8.1,0 -150033540,"Spec Ops The Line",purchase,1.0,0 -150033540,"Spec Ops The Line",play,7.9,0 -150033540,"Assassin's Creed Brotherhood",purchase,1.0,0 -150033540,"Assassin's Creed Brotherhood",play,7.7,0 -150033540,"Bulletstorm",purchase,1.0,0 -150033540,"Bulletstorm",play,7.6,0 -150033540,"King Arthur's Gold",purchase,1.0,0 -150033540,"King Arthur's Gold",play,7.3,0 -150033540,"FortressCraft Evolved",purchase,1.0,0 -150033540,"FortressCraft Evolved",play,6.8,0 -150033540,"Grow Home",purchase,1.0,0 -150033540,"Grow Home",play,6.4,0 -150033540,"Scribblenauts Unlimited",purchase,1.0,0 -150033540,"Scribblenauts Unlimited",play,6.1,0 -150033540,"Portal 2",purchase,1.0,0 -150033540,"Portal 2",play,6.1,0 -150033540,"How to Survive",purchase,1.0,0 -150033540,"How to Survive",play,5.8,0 -150033540,"Gunpoint",purchase,1.0,0 -150033540,"Gunpoint",play,5.7,0 -150033540,"Euro Truck Simulator 2",purchase,1.0,0 -150033540,"Euro Truck Simulator 2",play,5.4,0 -150033540,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -150033540,"Just Cause 2 Multiplayer Mod",play,5.0,0 -150033540,"Worms Revolution",purchase,1.0,0 -150033540,"Worms Revolution",play,4.8,0 -150033540,"Styx Master of Shadows",purchase,1.0,0 -150033540,"Styx Master of Shadows",play,4.5,0 -150033540,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -150033540,"Tom Clancy's Splinter Cell Conviction",play,4.4,0 -150033540,"Saints Row The Third",purchase,1.0,0 -150033540,"Saints Row The Third",play,4.3,0 -150033540,"Guns of Icarus Online",purchase,1.0,0 -150033540,"Guns of Icarus Online",play,4.3,0 -150033540,"Nidhogg",purchase,1.0,0 -150033540,"Nidhogg",play,4.3,0 -150033540,"BattleBlock Theater",purchase,1.0,0 -150033540,"BattleBlock Theater",play,4.2,0 -150033540,"Hotline Miami",purchase,1.0,0 -150033540,"Hotline Miami",play,3.5,0 -150033540,"Chivalry Medieval Warfare",purchase,1.0,0 -150033540,"Chivalry Medieval Warfare",play,3.2,0 -150033540,"Thief",purchase,1.0,0 -150033540,"Thief",play,3.2,0 -150033540,"Surgeon Simulator",purchase,1.0,0 -150033540,"Surgeon Simulator",play,3.1,0 -150033540,"Call of Juarez Gunslinger",purchase,1.0,0 -150033540,"Call of Juarez Gunslinger",play,2.6,0 -150033540,"Rogue Legacy",purchase,1.0,0 -150033540,"Rogue Legacy",play,2.6,0 -150033540,"Portal",purchase,1.0,0 -150033540,"Portal",play,2.4,0 -150033540,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -150033540,"Dark Souls Prepare to Die Edition",play,2.3,0 -150033540,"Halo Spartan Assault",purchase,1.0,0 -150033540,"Halo Spartan Assault",play,2.3,0 -150033540,"Dead Island",purchase,1.0,0 -150033540,"Dead Island",play,2.2,0 -150033540,"Magicka",purchase,1.0,0 -150033540,"Magicka",play,2.2,0 -150033540,"Goat Simulator",purchase,1.0,0 -150033540,"Goat Simulator",play,2.1,0 -150033540,"Reus",purchase,1.0,0 -150033540,"Reus",play,2.0,0 -150033540,"Stealth Bastard Deluxe",purchase,1.0,0 -150033540,"Stealth Bastard Deluxe",play,2.0,0 -150033540,"Tomb Raider",purchase,1.0,0 -150033540,"Tomb Raider",play,2.0,0 -150033540,"Retro City Rampage DX",purchase,1.0,0 -150033540,"Retro City Rampage DX",play,1.9,0 -150033540,"Mortal Kombat Komplete Edition",purchase,1.0,0 -150033540,"Mortal Kombat Komplete Edition",play,1.8,0 -150033540,"Command and Conquer Red Alert 3",purchase,1.0,0 -150033540,"Command and Conquer Red Alert 3",play,1.5,0 -150033540,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -150033540,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,0.9,0 -150033540,"Half-Life Blue Shift",purchase,1.0,0 -150033540,"Half-Life Blue Shift",play,0.9,0 -150033540,"Insurgency",purchase,1.0,0 -150033540,"Insurgency",play,0.9,0 -150033540,"Counter-Strike",purchase,1.0,0 -150033540,"Counter-Strike",play,0.7,0 -150033540,"No Time to Explain",purchase,1.0,0 -150033540,"No Time to Explain",play,0.6,0 -150033540,"Gunman Clive",purchase,1.0,0 -150033540,"Gunman Clive",play,0.5,0 -150033540,"Far Cry 3 Blood Dragon",purchase,1.0,0 -150033540,"Far Cry 3 Blood Dragon",play,0.4,0 -150033540,"BioShock",purchase,1.0,0 -150033540,"BioShock",play,0.4,0 -150033540,"Wargame AirLand Battle",purchase,1.0,0 -150033540,"Wargame AirLand Battle",play,0.4,0 -150033540,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -150033540,"Sonic & All-Stars Racing Transformed",play,0.3,0 -150033540,"McPixel",purchase,1.0,0 -150033540,"McPixel",play,0.3,0 -150033540,"Train Simulator",purchase,1.0,0 -150033540,"Train Simulator",play,0.2,0 -150033540,"TimeShift",purchase,1.0,0 -150033540,"TimeShift",play,0.2,0 -150033540,"Beat Hazard",purchase,1.0,0 -150033540,"Just Cause",purchase,1.0,0 -150033540,"Betrayer",purchase,1.0,0 -150033540,"BioShock 2",purchase,1.0,0 -150033540,"Counter-Strike Condition Zero",purchase,1.0,0 -150033540,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -150033540,"Deadlings - Rotten Edition",purchase,1.0,0 -150033540,"Fallout 2",purchase,1.0,0 -150033540,"Far Cry",purchase,1.0,0 -150033540,"Far Cry 2",purchase,1.0,0 -150033540,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -150033540,"Fractured Space",purchase,1.0,0 -150033540,"Gas Guzzlers Extreme",purchase,1.0,0 -150033540,"Grand Theft Auto San Andreas",purchase,1.0,0 -150033540,"GRID 2",purchase,1.0,0 -150033540,"Grow Home Soundtrack DLC",purchase,1.0,0 -150033540,"Half-Life 2 Lost Coast",purchase,1.0,0 -150033540,"Hotline Miami 2 Wrong Number",purchase,1.0,0 -150033540,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -150033540,"No Time To Explain Remastered",purchase,1.0,0 -150033540,"Patch testing for Chivalry",purchase,1.0,0 -150033540,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -150033540,"RUSH",purchase,1.0,0 -150033540,"Saints Row IV",purchase,1.0,0 -150033540,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -150033540,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -150033540,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -150033540,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -150033540,"Wargame European Escalation",purchase,1.0,0 -150033540,"Wargame Red Dragon",purchase,1.0,0 -33260507,"Counter-Strike",purchase,1.0,0 -33260507,"Counter-Strike",play,1.4,0 -33260507,"Counter-Strike Condition Zero",purchase,1.0,0 -33260507,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -33260507,"Day of Defeat",purchase,1.0,0 -33260507,"Deathmatch Classic",purchase,1.0,0 -33260507,"Ricochet",purchase,1.0,0 -184182861,"Dota 2",purchase,1.0,0 -184182861,"Dota 2",play,2.9,0 -257278221,"Dota 2",purchase,1.0,0 -257278221,"Dota 2",play,1.8,0 -20566124,"Counter-Strike Source",purchase,1.0,0 -20566124,"Counter-Strike Source",play,9.3,0 -20566124,"Half-Life 2",purchase,1.0,0 -20566124,"Half-Life 2",play,7.1,0 -20566124,"Half-Life",purchase,1.0,0 -20566124,"Half-Life",play,5.7,0 -20566124,"Day of Defeat",purchase,1.0,0 -20566124,"Day of Defeat",play,0.2,0 -20566124,"Counter-Strike",purchase,1.0,0 -20566124,"Counter-Strike Condition Zero",purchase,1.0,0 -20566124,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -20566124,"Deathmatch Classic",purchase,1.0,0 -20566124,"Half-Life 2 Deathmatch",purchase,1.0,0 -20566124,"Half-Life 2 Lost Coast",purchase,1.0,0 -20566124,"Half-Life Blue Shift",purchase,1.0,0 -20566124,"Half-Life Opposing Force",purchase,1.0,0 -20566124,"Half-Life Source",purchase,1.0,0 -20566124,"Half-Life Deathmatch Source",purchase,1.0,0 -20566124,"Ricochet",purchase,1.0,0 -20566124,"Team Fortress Classic",purchase,1.0,0 -91085389,"The Elder Scrolls V Skyrim",purchase,1.0,0 -91085389,"The Elder Scrolls V Skyrim",play,5.2,0 -91085389,"The Sims(TM) 3",purchase,1.0,0 -91085389,"The Sims(TM) 3",play,4.5,0 -91085389,"Fallout New Vegas",purchase,1.0,0 -91085389,"Fallout New Vegas",play,3.1,0 -91085389,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -91085389,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -91085389,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -167206594,"Dota 2",purchase,1.0,0 -167206594,"Dota 2",play,1.6,0 -176215721,"Dota 2",purchase,1.0,0 -176215721,"Dota 2",play,523.0,0 -238607775,"Dota 2",purchase,1.0,0 -238607775,"Dota 2",play,1.7,0 -247466533,"Dota 2",purchase,1.0,0 -247466533,"Dota 2",play,0.7,0 -164475918,"Counter-Strike Global Offensive",purchase,1.0,0 -164475918,"Counter-Strike Global Offensive",play,140.0,0 -164475918,"Garry's Mod",purchase,1.0,0 -164475918,"Garry's Mod",play,88.0,0 -164475918,"Counter-Strike Source",purchase,1.0,0 -164475918,"Counter-Strike Source",play,87.0,0 -164475918,"DayZ",purchase,1.0,0 -164475918,"DayZ",play,54.0,0 -164475918,"Watch_Dogs",purchase,1.0,0 -164475918,"Watch_Dogs",play,28.0,0 -164475918,"Dota 2",purchase,1.0,0 -164475918,"Dota 2",play,26.0,0 -164475918,"Left 4 Dead 2",purchase,1.0,0 -164475918,"Left 4 Dead 2",play,17.4,0 -164475918,"Rust",purchase,1.0,0 -164475918,"Rust",play,16.4,0 -164475918,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -164475918,"S.T.A.L.K.E.R. Shadow of Chernobyl",play,11.4,0 -164475918,"Saints Row IV",purchase,1.0,0 -164475918,"Saints Row IV",play,10.5,0 -164475918,"Grand Theft Auto IV",purchase,1.0,0 -164475918,"Grand Theft Auto IV",play,6.9,0 -164475918,"7 Days to Die",purchase,1.0,0 -164475918,"7 Days to Die",play,6.7,0 -164475918,"Arma 2",purchase,1.0,0 -164475918,"Arma 2",play,6.4,0 -164475918,"Unturned",purchase,1.0,0 -164475918,"Unturned",play,5.0,0 -164475918,"Saints Row The Third",purchase,1.0,0 -164475918,"Saints Row The Third",play,4.5,0 -164475918,"Loadout",purchase,1.0,0 -164475918,"Loadout",play,4.4,0 -164475918,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -164475918,"Just Cause 2 Multiplayer Mod",play,3.5,0 -164475918,"Tomb Raider",purchase,1.0,0 -164475918,"Tomb Raider",play,2.8,0 -164475918,"Just Cause 2",purchase,1.0,0 -164475918,"Just Cause 2",play,2.7,0 -164475918,"Fistful of Frags",purchase,1.0,0 -164475918,"Fistful of Frags",play,2.6,0 -164475918,"Tribes Ascend",purchase,1.0,0 -164475918,"Tribes Ascend",play,2.3,0 -164475918,"Terraria",purchase,1.0,0 -164475918,"Terraria",play,1.9,0 -164475918,"Takedown Red Sabre",purchase,1.0,0 -164475918,"Takedown Red Sabre",play,1.7,0 -164475918,"Warframe",purchase,1.0,0 -164475918,"Warframe",play,1.6,0 -164475918,"Sniper Elite Nazi Zombie Army 2",purchase,1.0,0 -164475918,"Sniper Elite Nazi Zombie Army 2",play,1.4,0 -164475918,"BioShock Infinite",purchase,1.0,0 -164475918,"BioShock Infinite",play,0.9,0 -164475918,"Killing Floor",purchase,1.0,0 -164475918,"Killing Floor",play,0.9,0 -164475918,"Alpha Prime",purchase,1.0,0 -164475918,"Alpha Prime",play,0.8,0 -164475918,"Serious Sam 2",purchase,1.0,0 -164475918,"Serious Sam 2",play,0.4,0 -164475918,"Serious Sam Classic The First Encounter",purchase,1.0,0 -164475918,"Serious Sam Classic The First Encounter",play,0.3,0 -164475918,"BLOCKADE 3D",purchase,1.0,0 -164475918,"BLOCKADE 3D",play,0.2,0 -164475918,"Synergy",purchase,1.0,0 -164475918,"Synergy",play,0.2,0 -164475918,"HAWKEN",purchase,1.0,0 -164475918,"Block N Load",purchase,1.0,0 -164475918,"Codename CURE",purchase,1.0,0 -164475918,"Frankenstein Master of Death",purchase,1.0,0 -164475918,"Heroes & Generals",purchase,1.0,0 -164475918,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -164475918,"Neverwinter",purchase,1.0,0 -164475918,"No More Room in Hell",purchase,1.0,0 -164475918,"Nosgoth",purchase,1.0,0 -164475918,"Panzar",purchase,1.0,0 -164475918,"Sanctum 2",purchase,1.0,0 -164475918,"Serious Sam 3 BFE",purchase,1.0,0 -164475918,"Serious Sam The Random Encounter",purchase,1.0,0 -164475918,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -164475918,"Serious Sam Classics Revolution",purchase,1.0,0 -164475918,"Serious Sam Double D XXL",purchase,1.0,0 -164475918,"Serious Sam HD The First Encounter",purchase,1.0,0 -164475918,"Terra Incognita ~ Chapter One The Descendant",purchase,1.0,0 -164475918,"Trove",purchase,1.0,0 -285972122,"AdVenture Capitalist",purchase,1.0,0 -285972122,"AdVenture Capitalist",play,2.6,0 -285972122,"AirMech",purchase,1.0,0 -285972122,"Spiral Knights",purchase,1.0,0 -285972122,"Defiance",purchase,1.0,0 -285972122,"PlanetSide 2",purchase,1.0,0 -285972122,"War Thunder",purchase,1.0,0 -186786074,"Dota 2",purchase,1.0,0 -186786074,"Dota 2",play,0.6,0 -209000748,"Team Fortress 2",purchase,1.0,0 -209000748,"Team Fortress 2",play,20.0,0 -249804337,"Dota 2",purchase,1.0,0 -249804337,"Dota 2",play,1.1,0 -71871620,"Counter-Strike",purchase,1.0,0 -71871620,"Counter-Strike",play,3169.0,0 -71871620,"Counter-Strike Source",purchase,1.0,0 -71871620,"Counter-Strike Source",play,65.0,0 -71871620,"Half-Life 2",purchase,1.0,0 -71871620,"Half-Life 2",play,6.6,0 -71871620,"Counter-Strike Condition Zero",purchase,1.0,0 -71871620,"Counter-Strike Condition Zero",play,6.1,0 -71871620,"Day of Defeat",purchase,1.0,0 -71871620,"Day of Defeat",play,5.4,0 -71871620,"Counter-Strike Global Offensive",purchase,1.0,0 -71871620,"Counter-Strike Global Offensive",play,4.3,0 -71871620,"Dota 2",purchase,1.0,0 -71871620,"Dota 2",play,2.3,0 -71871620,"Far Cry",purchase,1.0,0 -71871620,"Far Cry",play,0.8,0 -71871620,"Deathmatch Classic",purchase,1.0,0 -71871620,"Deathmatch Classic",play,0.4,0 -71871620,"Call of Duty",purchase,1.0,0 -71871620,"Ricochet",purchase,1.0,0 -71871620,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -71871620,"Day of Defeat Source",purchase,1.0,0 -71871620,"Far Cry 2",purchase,1.0,0 -71871620,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -71871620,"Far Cry 3",purchase,1.0,0 -71871620,"Far Cry 3 Blood Dragon",purchase,1.0,0 -71871620,"Half-Life 2 Deathmatch",purchase,1.0,0 -71871620,"Half-Life 2 Lost Coast",purchase,1.0,0 -71871620,"Warface",purchase,1.0,0 -199659716,"Garry's Mod",purchase,1.0,0 -199659716,"Garry's Mod",play,160.0,0 -199659716,"Robocraft",purchase,1.0,0 -199659716,"Robocraft",play,62.0,0 -199659716,"The Elder Scrolls V Skyrim",purchase,1.0,0 -199659716,"The Elder Scrolls V Skyrim",play,55.0,0 -199659716,"Counter-Strike Global Offensive",purchase,1.0,0 -199659716,"Counter-Strike Global Offensive",play,13.8,0 -199659716,"BLOCKADE 3D",purchase,1.0,0 -199659716,"BLOCKADE 3D",play,12.1,0 -199659716,"Terraria",purchase,1.0,0 -199659716,"Terraria",play,10.3,0 -199659716,"Team Fortress 2",purchase,1.0,0 -199659716,"Team Fortress 2",play,7.2,0 -199659716,"PlanetSide 2",purchase,1.0,0 -199659716,"PlanetSide 2",play,5.9,0 -199659716,"Chivalry Medieval Warfare",purchase,1.0,0 -199659716,"Chivalry Medieval Warfare",play,4.0,0 -199659716,"Besiege",purchase,1.0,0 -199659716,"Besiege",play,2.4,0 -199659716,"Double Action Boogaloo",purchase,1.0,0 -199659716,"Double Action Boogaloo",play,1.6,0 -199659716,"Unturned",purchase,1.0,0 -199659716,"Unturned",play,0.9,0 -199659716,"Emily is Away",purchase,1.0,0 -199659716,"Emily is Away",play,0.7,0 -199659716,"Loadout",purchase,1.0,0 -199659716,"Loadout",play,0.1,0 -199659716,"You Have to Win the Game",purchase,1.0,0 -199659716,"Patch testing for Chivalry",purchase,1.0,0 -199659716,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -199659716,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -199659716,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -199659716,"The Expendabros",purchase,1.0,0 -91807066,"Dota 2",purchase,1.0,0 -91807066,"Dota 2",play,1039.0,0 -91807066,"The Elder Scrolls V Skyrim",purchase,1.0,0 -91807066,"The Elder Scrolls V Skyrim",play,223.0,0 -91807066,"Max Payne 3",purchase,1.0,0 -91807066,"Max Payne 3",play,167.0,0 -91807066,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -91807066,"The Witcher 2 Assassins of Kings Enhanced Edition",play,51.0,0 -91807066,"Might & Magic Heroes VI",purchase,1.0,0 -91807066,"Might & Magic Heroes VI",play,40.0,0 -91807066,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -91807066,"Fallout 3 - Game of the Year Edition",play,40.0,0 -91807066,"Saints Row The Third",purchase,1.0,0 -91807066,"Saints Row The Third",play,29.0,0 -91807066,"Middle-earth Shadow of Mordor",purchase,1.0,0 -91807066,"Middle-earth Shadow of Mordor",play,16.5,0 -91807066,"Dragon Age Origins",purchase,1.0,0 -91807066,"Dragon Age Origins",play,14.9,0 -91807066,"Batman Arkham City",purchase,1.0,0 -91807066,"Batman Arkham City",play,13.2,0 -91807066,"Metro Last Light",purchase,1.0,0 -91807066,"Metro Last Light",play,9.5,0 -91807066,"XCOM Enemy Unknown",purchase,1.0,0 -91807066,"XCOM Enemy Unknown",play,9.4,0 -91807066,"Far Cry 3",purchase,1.0,0 -91807066,"Far Cry 3",play,9.1,0 -91807066,"Torchlight II",purchase,1.0,0 -91807066,"Torchlight II",play,7.8,0 -91807066,"Dead Space 2",purchase,1.0,0 -91807066,"Dead Space 2",play,6.0,0 -91807066,"BioShock Infinite",purchase,1.0,0 -91807066,"BioShock Infinite",play,5.8,0 -91807066,"Sid Meier's Civilization V",purchase,1.0,0 -91807066,"Sid Meier's Civilization V",play,5.0,0 -91807066,"DmC Devil May Cry",purchase,1.0,0 -91807066,"DmC Devil May Cry",play,4.9,0 -91807066,"Borderlands",purchase,1.0,0 -91807066,"Borderlands",play,4.5,0 -91807066,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -91807066,"Dark Souls Prepare to Die Edition",play,4.2,0 -91807066,"Ultra Street Fighter IV",purchase,1.0,0 -91807066,"Ultra Street Fighter IV",play,3.7,0 -91807066,"Grand Theft Auto IV",purchase,1.0,0 -91807066,"Grand Theft Auto IV",play,3.5,0 -91807066,"Alan Wake",purchase,1.0,0 -91807066,"Alan Wake",play,2.9,0 -91807066,"The Witcher Enhanced Edition",purchase,1.0,0 -91807066,"The Witcher Enhanced Edition",play,1.8,0 -91807066,"PROTOTYPE 2",purchase,1.0,0 -91807066,"PROTOTYPE 2",play,1.8,0 -91807066,"DiRT 3",purchase,1.0,0 -91807066,"DiRT 3",play,1.5,0 -91807066,"Tomb Raider",purchase,1.0,0 -91807066,"Tomb Raider",play,1.1,0 -91807066,"Dead Island",purchase,1.0,0 -91807066,"Dead Island",play,0.3,0 -91807066,"Dragon Age Origins - Awakening",purchase,1.0,0 -91807066,"Alan Wake's American Nightmare",purchase,1.0,0 -91807066,"Batman Arkham City GOTY",purchase,1.0,0 -91807066,"BioShock",purchase,1.0,0 -91807066,"BioShock 2",purchase,1.0,0 -91807066,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -91807066,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -91807066,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -91807066,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -91807066,"DiRT 3 Complete Edition",purchase,1.0,0 -91807066,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -91807066,"Left 4 Dead 2",purchase,1.0,0 -91807066,"Prototype",purchase,1.0,0 -91807066,"Prototype 2 RADNET Access Pack",purchase,1.0,0 -91807066,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -91807066,"Spec Ops The Line",purchase,1.0,0 -220999682,"Dota 2",purchase,1.0,0 -220999682,"Dota 2",play,0.2,0 -136190090,"Dota 2",purchase,1.0,0 -136190090,"Dota 2",play,1786.0,0 -125472731,"Mafia II",purchase,1.0,0 -125472731,"Mafia II",play,4.7,0 -125472731,"8BitMMO",purchase,1.0,0 -125472731,"APB Reloaded",purchase,1.0,0 -125472731,"Ascend Hand of Kul",purchase,1.0,0 -125472731,"Dragon's Prophet (EU)",purchase,1.0,0 -125472731,"Neverwinter",purchase,1.0,0 -125472731,"No More Room in Hell",purchase,1.0,0 -125472731,"PlanetSide 2",purchase,1.0,0 -125472731,"The Bureau XCOM Declassified",purchase,1.0,0 -125472731,"Unturned",purchase,1.0,0 -125472731,"Warframe",purchase,1.0,0 -125472731,"War of the Roses",purchase,1.0,0 -125472731,"War Thunder",purchase,1.0,0 -156303898,"Red Faction Armageddon",purchase,1.0,0 -156303898,"Red Faction Armageddon",play,39.0,0 -156303898,"Call of Duty Ghosts",purchase,1.0,0 -156303898,"Call of Duty Ghosts",play,0.8,0 -156303898,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -224844255,"Cities Skylines",purchase,1.0,0 -224844255,"Cities Skylines",play,0.5,0 -92965596,"Sins of a Solar Empire Trinity",purchase,1.0,0 -92965596,"Sins of a Solar Empire Trinity",play,4.7,0 -92965596,"Stronghold 2",purchase,1.0,0 -92965596,"Stronghold 2",play,3.2,0 -92965596,"Sid Meier's Civilization V",purchase,1.0,0 -92965596,"Sid Meier's Civilization V",play,2.3,0 -92965596,"Realm of the Mad God",purchase,1.0,0 -92965596,"Realm of the Mad God",play,0.7,0 -92965596,"Starbound",purchase,1.0,0 -92965596,"Starbound",play,0.7,0 -92965596,"Starbound - Unstable",purchase,1.0,0 -92965596,"Stronghold Crusader Extreme HD",purchase,1.0,0 -92965596,"Stronghold Crusader HD",purchase,1.0,0 -92965596,"Stronghold HD",purchase,1.0,0 -92965596,"Stronghold Legends",purchase,1.0,0 -195442852,"Dota 2",purchase,1.0,0 -195442852,"Dota 2",play,2.3,0 -180064841,"Dota 2",purchase,1.0,0 -180064841,"Dota 2",play,413.0,0 -180064841,"Unturned",purchase,1.0,0 -274538592,"Dota 2",purchase,1.0,0 -274538592,"Dota 2",play,0.2,0 -105071117,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -105071117,"Call of Duty Black Ops - Multiplayer",play,1.6,0 -105071117,"Call of Duty Black Ops",purchase,1.0,0 -105071117,"Combat Arms",purchase,1.0,0 -105071117,"Construct 2 Free",purchase,1.0,0 -86073747,"Empire Total War",purchase,1.0,0 -86073747,"Empire Total War",play,51.0,0 -72098561,"Sid Meier's Civilization V",purchase,1.0,0 -72098561,"Sid Meier's Civilization V",play,170.0,0 -14671378,"Counter-Strike Source",purchase,1.0,0 -14671378,"Counter-Strike Source",play,348.0,0 -14671378,"Counter-Strike Global Offensive",purchase,1.0,0 -14671378,"Counter-Strike Global Offensive",play,260.0,0 -14671378,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -14671378,"Tom Clancy's Ghost Recon Phantoms - EU",play,48.0,0 -14671378,"Portal 2",purchase,1.0,0 -14671378,"Portal 2",play,29.0,0 -14671378,"Portal",purchase,1.0,0 -14671378,"Portal",play,11.6,0 -14671378,"Call of Duty Modern Warfare 2",purchase,1.0,0 -14671378,"Call of Duty Modern Warfare 2",play,9.7,0 -14671378,"Counter-Strike",purchase,1.0,0 -14671378,"Counter-Strike",play,7.5,0 -14671378,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -14671378,"Call of Duty Modern Warfare 2 - Multiplayer",play,5.8,0 -14671378,"Call of Duty Black Ops",purchase,1.0,0 -14671378,"Call of Duty Black Ops",play,4.2,0 -14671378,"Team Fortress 2",purchase,1.0,0 -14671378,"Team Fortress 2",play,1.1,0 -14671378,"RIFT",purchase,1.0,0 -14671378,"RIFT",play,0.7,0 -14671378,"Half-Life Blue Shift",purchase,1.0,0 -14671378,"Half-Life Blue Shift",play,0.6,0 -14671378,"Moonbase Alpha",purchase,1.0,0 -14671378,"Moonbase Alpha",play,0.6,0 -14671378,"Half-Life 2 Deathmatch",purchase,1.0,0 -14671378,"Half-Life 2 Deathmatch",play,0.4,0 -14671378,"Smashball",purchase,1.0,0 -14671378,"Smashball",play,0.4,0 -14671378,"Half-Life 2",purchase,1.0,0 -14671378,"Half-Life 2",play,0.4,0 -14671378,"Amnesia The Dark Descent",purchase,1.0,0 -14671378,"Amnesia The Dark Descent",play,0.3,0 -14671378,"Half-Life 2 Lost Coast",purchase,1.0,0 -14671378,"Half-Life 2 Lost Coast",play,0.3,0 -14671378,"Ricochet",purchase,1.0,0 -14671378,"Ricochet",play,0.3,0 -14671378,"Alien Swarm",purchase,1.0,0 -14671378,"Alien Swarm",play,0.1,0 -14671378,"Day of Defeat",purchase,1.0,0 -14671378,"Half-Life Opposing Force",purchase,1.0,0 -14671378,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -14671378,"Deathmatch Classic",purchase,1.0,0 -14671378,"Half-Life",purchase,1.0,0 -14671378,"Team Fortress Classic",purchase,1.0,0 -14671378,"Tom Clancy's Ghost Recon Phantoms - EU Substance with Style pack (Recon)",purchase,1.0,0 -287500646,"Napoleon Total War",purchase,1.0,0 -287500646,"Napoleon Total War",play,0.7,0 -130678525,"Dota 2",purchase,1.0,0 -130678525,"Dota 2",play,905.0,0 -130678525,"Audition Online",purchase,1.0,0 -130678525,"Audition Online",play,0.1,0 -130678525,"Grand Chase",purchase,1.0,0 -125682446,"Grand Theft Auto V",purchase,1.0,0 -125682446,"Grand Theft Auto V",play,823.0,0 -125682446,"Counter-Strike Global Offensive",purchase,1.0,0 -125682446,"Counter-Strike Global Offensive",play,223.0,0 -125682446,"PAYDAY 2",purchase,1.0,0 -125682446,"PAYDAY 2",play,186.0,0 -125682446,"GRID",purchase,1.0,0 -125682446,"GRID",play,99.0,0 -125682446,"GRID 2",purchase,1.0,0 -125682446,"GRID 2",play,90.0,0 -125682446,"Heroes & Generals",purchase,1.0,0 -125682446,"Heroes & Generals",play,79.0,0 -125682446,"Team Fortress 2",purchase,1.0,0 -125682446,"Team Fortress 2",play,72.0,0 -125682446,"PlanetSide 2",purchase,1.0,0 -125682446,"PlanetSide 2",play,61.0,0 -125682446,"Fallout New Vegas",purchase,1.0,0 -125682446,"Fallout New Vegas",play,56.0,0 -125682446,"RIDE Game",purchase,1.0,0 -125682446,"RIDE Game",play,52.0,0 -125682446,"Warframe",purchase,1.0,0 -125682446,"Warframe",play,51.0,0 -125682446,"HAWKEN",purchase,1.0,0 -125682446,"HAWKEN",play,45.0,0 -125682446,"Dirty Bomb",purchase,1.0,0 -125682446,"Dirty Bomb",play,43.0,0 -125682446,"BioShock Infinite",purchase,1.0,0 -125682446,"BioShock Infinite",play,40.0,0 -125682446,"Metro Conflict",purchase,1.0,0 -125682446,"Metro Conflict",play,36.0,0 -125682446,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -125682446,"Call of Duty Ghosts - Multiplayer",play,35.0,0 -125682446,"Left 4 Dead 2",purchase,1.0,0 -125682446,"Left 4 Dead 2",play,7.8,0 -125682446,"RaceRoom Racing Experience ",purchase,1.0,0 -125682446,"RaceRoom Racing Experience ",play,5.6,0 -125682446,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -125682446,"Burnout Paradise The Ultimate Box",play,4.9,0 -125682446,"Loadout Campaign Beta",purchase,1.0,0 -125682446,"Loadout Campaign Beta",play,4.7,0 -125682446,"Call of Duty Ghosts",purchase,1.0,0 -125682446,"Call of Duty Ghosts",play,4.6,0 -125682446,"Mirror's Edge",purchase,1.0,0 -125682446,"Mirror's Edge",play,2.8,0 -125682446,"Medal of Honor(TM) Single Player",purchase,1.0,0 -125682446,"Medal of Honor(TM) Single Player",play,2.8,0 -125682446,"Unturned",purchase,1.0,0 -125682446,"Unturned",play,2.6,0 -125682446,"Crysis 2 Maximum Edition",purchase,1.0,0 -125682446,"Crysis 2 Maximum Edition",play,1.3,0 -125682446,"Infestation Survivor Stories",purchase,1.0,0 -125682446,"Infestation Survivor Stories",play,0.9,0 -125682446,"Serious Sam HD The Second Encounter",purchase,1.0,0 -125682446,"Serious Sam HD The Second Encounter",play,0.8,0 -125682446,"Dead Space",purchase,1.0,0 -125682446,"Dead Space",play,0.7,0 -125682446,"Metro 2033",purchase,1.0,0 -125682446,"Block N Load",purchase,1.0,0 -125682446,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -125682446,"Fallout New Vegas Dead Money",purchase,1.0,0 -125682446,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -125682446,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -125682446,"Medal of Honor Pre-Order",purchase,1.0,0 -125682446,"RIDE - 2015 Top Bikes Pack 1",purchase,1.0,0 -125682446,"RIDE - 2015 Top Bikes Pack 2",purchase,1.0,0 -125682446,"RIDE Season Pass",purchase,1.0,0 -125682446,"RIDE Yamaha 2015 Bike Models",purchase,1.0,0 -125682446,"RIDE Yamaha Historical Bikes",purchase,1.0,0 -125682446,"SMITE",purchase,1.0,0 -125682446,"War Thunder",purchase,1.0,0 -293288238,"Dota 2",purchase,1.0,0 -293288238,"Dota 2",play,2.3,0 -260140697,"Dota 2",purchase,1.0,0 -260140697,"Dota 2",play,102.0,0 -190687978,"Dota 2",purchase,1.0,0 -190687978,"Dota 2",play,6.6,0 -16231773,"Counter-Strike",purchase,1.0,0 -16231773,"Counter-Strike",play,802.0,0 -16231773,"Warframe",purchase,1.0,0 -16231773,"Warframe",play,539.0,0 -16231773,"Dota 2",purchase,1.0,0 -16231773,"Dota 2",play,310.0,0 -16231773,"Counter-Strike Condition Zero",purchase,1.0,0 -16231773,"Counter-Strike Condition Zero",play,133.0,0 -16231773,"PAYDAY The Heist",purchase,1.0,0 -16231773,"PAYDAY The Heist",play,26.0,0 -16231773,"Archeblade",purchase,1.0,0 -16231773,"Archeblade",play,1.1,0 -16231773,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -16231773,"Counter-Strike Condition Zero Deleted Scenes",play,0.4,0 -16231773,"APB Reloaded",purchase,1.0,0 -16231773,"APB Reloaded",play,0.4,0 -16231773,"Unturned",purchase,1.0,0 -16231773,"Dizzel",purchase,1.0,0 -16231773,"Forge",purchase,1.0,0 -16231773,"SMITE",purchase,1.0,0 -16231773,"Survarium",purchase,1.0,0 -210109243,"Left 4 Dead 2",purchase,1.0,0 -210109243,"Left 4 Dead 2",play,21.0,0 -210109243,"Alien Swarm",purchase,1.0,0 -210109243,"Alien Swarm",play,4.6,0 -80821544,"Age of Chivalry",purchase,1.0,0 -80821544,"Age of Chivalry",play,69.0,0 -242973261,"Garry's Mod",purchase,1.0,0 -242973261,"Garry's Mod",play,8.3,0 -237704278,"ARK Survival Evolved",purchase,1.0,0 -237704278,"ARK Survival Evolved",play,14.2,0 -237704278,"The Witcher 3 Wild Hunt",purchase,1.0,0 -237704278,"The Witcher 3 Wild Hunt",play,7.5,0 -237704278,"Fallout New Vegas",purchase,1.0,0 -237704278,"Fallout New Vegas",play,1.6,0 -237704278,"Unturned",purchase,1.0,0 -237704278,"Unturned",play,0.2,0 -237704278,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -237704278,"Fallout New Vegas Dead Money",purchase,1.0,0 -237704278,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -237704278,"No More Room in Hell",purchase,1.0,0 -237704278,"Star Conflict",purchase,1.0,0 -237704278,"War Thunder",purchase,1.0,0 -240368610,"New kind of adventure",purchase,1.0,0 -137747562,"Team Fortress 2",purchase,1.0,0 -137747562,"Team Fortress 2",play,0.2,0 -132708032,"Spec Ops The Line",purchase,1.0,0 -132708032,"Spec Ops The Line",play,28.0,0 -193456517,"Dota 2",purchase,1.0,0 -193456517,"Dota 2",play,1.4,0 -301737953,"Emily is Away",purchase,1.0,0 -301737953,"Emily is Away",play,0.2,0 -73532539,"Call of Duty Black Ops",purchase,1.0,0 -73532539,"Call of Duty Black Ops",play,3.5,0 -73532539,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -191576449,"Dota 2",purchase,1.0,0 -191576449,"Dota 2",play,1121.0,0 -191576449,"Warframe",purchase,1.0,0 -191576449,"Warframe",play,659.0,0 -191576449,"Assassin's Creed III",purchase,1.0,0 -191576449,"Assassin's Creed III",play,26.0,0 -191576449,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -191576449,"Tom Clancy's Ghost Recon Phantoms - EU",play,24.0,0 -191576449,"Assassin's Creed Brotherhood",purchase,1.0,0 -191576449,"Assassin's Creed Brotherhood",play,24.0,0 -191576449,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -191576449,"Deus Ex Human Revolution - Director's Cut",play,9.6,0 -191576449,"Portal 2",purchase,1.0,0 -191576449,"Portal 2",play,7.8,0 -191576449,"Thief",purchase,1.0,0 -191576449,"Thief",play,3.7,0 -191576449,"L.A. Noire",purchase,1.0,0 -191576449,"L.A. Noire",play,2.4,0 -191576449,"Hitman Absolution",purchase,1.0,0 -191576449,"Hitman Absolution",play,2.0,0 -191576449,"Pirates of Black Cove Gold",purchase,1.0,0 -191576449,"Pirates of Black Cove Gold",play,0.8,0 -191576449,"Tomb Raider",purchase,1.0,0 -191576449,"Tomb Raider",play,0.8,0 -191576449,"Grand Theft Auto IV",purchase,1.0,0 -191576449,"Grand Theft Auto IV",play,0.4,0 -191576449,"Anoxemia",purchase,1.0,0 -191576449,"Brothers - A Tale of Two Sons",purchase,1.0,0 -191576449,"Deponia",purchase,1.0,0 -191576449,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -191576449,"Hitman Sniper Challenge",purchase,1.0,0 -191576449,"Metro 2033",purchase,1.0,0 -191576449,"Two Worlds II",purchase,1.0,0 -191576449,"X-Blades",purchase,1.0,0 -22865756,"Counter-Strike Global Offensive",purchase,1.0,0 -22865756,"Counter-Strike Global Offensive",play,207.0,0 -22865756,"AirMech",purchase,1.0,0 -22865756,"AirMech",play,196.0,0 -22865756,"RIFT",purchase,1.0,0 -22865756,"RIFT",play,173.0,0 -22865756,"Command and Conquer Red Alert 3",purchase,1.0,0 -22865756,"Command and Conquer Red Alert 3",play,172.0,0 -22865756,"Counter-Strike Source",purchase,1.0,0 -22865756,"Counter-Strike Source",play,143.0,0 -22865756,"Torchlight II",purchase,1.0,0 -22865756,"Torchlight II",play,39.0,0 -22865756,"Primal Carnage",purchase,1.0,0 -22865756,"Primal Carnage",play,19.5,0 -22865756,"Day of Defeat Source",purchase,1.0,0 -22865756,"Day of Defeat Source",play,1.1,0 -22865756,"Half-Life 2 Deathmatch",purchase,1.0,0 -22865756,"Half-Life 2 Deathmatch",play,0.3,0 -22865756,"Half-Life 2 Lost Coast",purchase,1.0,0 -176684532,"Cube & Star An Arbitrary Love",purchase,1.0,0 -176684532,"Hotline Miami",purchase,1.0,0 -176684532,"Natural Selection 2",purchase,1.0,0 -176684532,"Not The Robots",purchase,1.0,0 -176684532,"Orcs Must Die! 2",purchase,1.0,0 -176684532,"Sacraboar",purchase,1.0,0 -176684532,"Syder Arcade",purchase,1.0,0 -176684532,"UFO Afterlight",purchase,1.0,0 -178003047,"Dota 2",purchase,1.0,0 -178003047,"Dota 2",play,968.0,0 -178003047,"Counter-Strike Global Offensive",purchase,1.0,0 -178003047,"Counter-Strike Global Offensive",play,502.0,0 -178003047,"The Elder Scrolls V Skyrim",purchase,1.0,0 -178003047,"The Elder Scrolls V Skyrim",play,50.0,0 -178003047,"Sid Meier's Civilization V",purchase,1.0,0 -178003047,"Sid Meier's Civilization V",play,29.0,0 -178003047,"Euro Truck Simulator 2",purchase,1.0,0 -178003047,"Euro Truck Simulator 2",play,16.1,0 -178003047,"GRID 2",purchase,1.0,0 -178003047,"GRID 2",play,15.9,0 -178003047,"PAYDAY The Heist",purchase,1.0,0 -178003047,"PAYDAY The Heist",play,11.7,0 -178003047,"War Thunder",purchase,1.0,0 -178003047,"War Thunder",play,7.6,0 -178003047,"BattleBlock Theater",purchase,1.0,0 -178003047,"BattleBlock Theater",play,5.0,0 -178003047,"DiRT 3 Complete Edition",purchase,1.0,0 -178003047,"DiRT 3 Complete Edition",play,4.8,0 -178003047,"Unturned",purchase,1.0,0 -178003047,"Unturned",play,3.2,0 -178003047,"Real Boxing",purchase,1.0,0 -178003047,"Real Boxing",play,2.5,0 -178003047,"Team Fortress 2",purchase,1.0,0 -178003047,"Team Fortress 2",play,1.4,0 -178003047,"Alien Swarm",purchase,1.0,0 -178003047,"Alien Swarm",play,0.4,0 -178003047,"Block N Load",purchase,1.0,0 -178003047,"Block N Load",play,0.1,0 -178003047,"SMITE",purchase,1.0,0 -178003047,"RaceRoom Racing Experience ",purchase,1.0,0 -56818301,"Call of Duty Modern Warfare 2",purchase,1.0,0 -56818301,"Call of Duty Modern Warfare 2",play,4.4,0 -56818301,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -199931153,"Dota 2",purchase,1.0,0 -199931153,"Dota 2",play,3.0,0 -199931153,"Dead Island Epidemic",purchase,1.0,0 -199931153,"Defiance",purchase,1.0,0 -199931153,"Gotham City Impostors Free To Play",purchase,1.0,0 -199931153,"GunZ 2 The Second Duel",purchase,1.0,0 -199931153,"Loadout",purchase,1.0,0 -199931153,"Panzar",purchase,1.0,0 -199931153,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -199931153,"Warframe",purchase,1.0,0 -199931153,"War Inc. Battlezone",purchase,1.0,0 -199931153,"War Thunder",purchase,1.0,0 -117720079,"Dota 2",purchase,1.0,0 -117720079,"Dota 2",play,50.0,0 -117720079,"Left 4 Dead 2",purchase,1.0,0 -122118929,"Football Manager 2013",purchase,1.0,0 -122118929,"Football Manager 2013",play,17.4,0 -302166520,"Team Fortress 2",purchase,1.0,0 -302166520,"Team Fortress 2",play,1.0,0 -147066117,"Garry's Mod",purchase,1.0,0 -147066117,"Surgeon Simulator",purchase,1.0,0 -195354965,"Dota 2",purchase,1.0,0 -195354965,"Dota 2",play,0.6,0 -36404933,"Kerbal Space Program",purchase,1.0,0 -36404933,"Kerbal Space Program",play,315.0,0 -36404933,"Starbound",purchase,1.0,0 -36404933,"Starbound",play,173.0,0 -36404933,"Terraria",purchase,1.0,0 -36404933,"Terraria",play,123.0,0 -36404933,"Fallout New Vegas",purchase,1.0,0 -36404933,"Fallout New Vegas",play,82.0,0 -36404933,"Fallout 4",purchase,1.0,0 -36404933,"Fallout 4",play,62.0,0 -36404933,"Grand Theft Auto IV",purchase,1.0,0 -36404933,"Grand Theft Auto IV",play,55.0,0 -36404933,"Assassin's Creed II",purchase,1.0,0 -36404933,"Assassin's Creed II",play,40.0,0 -36404933,"Assassin's Creed Brotherhood",purchase,1.0,0 -36404933,"Assassin's Creed Brotherhood",play,40.0,0 -36404933,"The Binding of Isaac Rebirth",purchase,1.0,0 -36404933,"The Binding of Isaac Rebirth",play,31.0,0 -36404933,"Borderlands",purchase,1.0,0 -36404933,"Borderlands",play,28.0,0 -36404933,"The Witcher Enhanced Edition",purchase,1.0,0 -36404933,"The Witcher Enhanced Edition",play,25.0,0 -36404933,"Counter-Strike Global Offensive",purchase,1.0,0 -36404933,"Counter-Strike Global Offensive",play,24.0,0 -36404933,"Legend of Grimrock",purchase,1.0,0 -36404933,"Legend of Grimrock",play,22.0,0 -36404933,"Just Cause 2",purchase,1.0,0 -36404933,"Just Cause 2",play,19.9,0 -36404933,"Portal 2",purchase,1.0,0 -36404933,"Portal 2",play,19.5,0 -36404933,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -36404933,"Warhammer 40,000 Dawn of War Dark Crusade",play,18.9,0 -36404933,"L.A. Noire",purchase,1.0,0 -36404933,"L.A. Noire",play,18.3,0 -36404933,"Half-Life 2",purchase,1.0,0 -36404933,"Half-Life 2",play,17.3,0 -36404933,"Borderlands 2",purchase,1.0,0 -36404933,"Borderlands 2",play,16.3,0 -36404933,"Assassin's Creed Revelations",purchase,1.0,0 -36404933,"Assassin's Creed Revelations",play,16.0,0 -36404933,"Magicka",purchase,1.0,0 -36404933,"Magicka",play,15.5,0 -36404933,"BioShock Infinite",purchase,1.0,0 -36404933,"BioShock Infinite",play,15.0,0 -36404933,"Half-Life 2 Episode Two",purchase,1.0,0 -36404933,"Half-Life 2 Episode Two",play,14.2,0 -36404933,"Saints Row The Third",purchase,1.0,0 -36404933,"Saints Row The Third",play,14.0,0 -36404933,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -36404933,"Batman Arkham Asylum GOTY Edition",play,13.3,0 -36404933,"Far Cry 3",purchase,1.0,0 -36404933,"Far Cry 3",play,13.0,0 -36404933,"Left 4 Dead 2",purchase,1.0,0 -36404933,"Left 4 Dead 2",play,11.6,0 -36404933,"Alan Wake",purchase,1.0,0 -36404933,"Alan Wake",play,10.7,0 -36404933,"Dishonored",purchase,1.0,0 -36404933,"Dishonored",play,8.1,0 -36404933,"Starbound - Unstable",purchase,1.0,0 -36404933,"Starbound - Unstable",play,6.8,0 -36404933,"Infestation Survivor Stories",purchase,1.0,0 -36404933,"Infestation Survivor Stories",play,6.6,0 -36404933,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -36404933,"The Witcher 2 Assassins of Kings Enhanced Edition",play,6.3,0 -36404933,"Tomb Raider",purchase,1.0,0 -36404933,"Tomb Raider",play,6.0,0 -36404933,"Brtal Legend",purchase,1.0,0 -36404933,"Brtal Legend",play,5.8,0 -36404933,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -36404933,"Warhammer 40,000 Dawn of War Soulstorm",play,5.8,0 -36404933,"Garry's Mod",purchase,1.0,0 -36404933,"Garry's Mod",play,5.5,0 -36404933,"FTL Faster Than Light",purchase,1.0,0 -36404933,"FTL Faster Than Light",play,5.4,0 -36404933,"Lunar Flight",purchase,1.0,0 -36404933,"Lunar Flight",play,4.6,0 -36404933,"Dungeon Defenders",purchase,1.0,0 -36404933,"Dungeon Defenders",play,4.6,0 -36404933,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -36404933,"Grand Theft Auto Episodes from Liberty City",play,4.6,0 -36404933,"Indie Game The Movie",purchase,1.0,0 -36404933,"Indie Game The Movie",play,4.4,0 -36404933,"Hitman Absolution",purchase,1.0,0 -36404933,"Hitman Absolution",play,4.1,0 -36404933,"Amnesia The Dark Descent",purchase,1.0,0 -36404933,"Amnesia The Dark Descent",play,4.0,0 -36404933,"Super Meat Boy",purchase,1.0,0 -36404933,"Super Meat Boy",play,3.7,0 -36404933,"Half-Life 2 Deathmatch",purchase,1.0,0 -36404933,"Half-Life 2 Deathmatch",play,3.6,0 -36404933,"Team Fortress 2",purchase,1.0,0 -36404933,"Team Fortress 2",play,3.2,0 -36404933,"Psychonauts",purchase,1.0,0 -36404933,"Psychonauts",play,3.1,0 -36404933,"Solar 2",purchase,1.0,0 -36404933,"Solar 2",play,3.1,0 -36404933,"Dead Space",purchase,1.0,0 -36404933,"Dead Space",play,3.1,0 -36404933,"Portal",purchase,1.0,0 -36404933,"Portal",play,3.1,0 -36404933,"Half-Life 2 Episode One",purchase,1.0,0 -36404933,"Half-Life 2 Episode One",play,3.0,0 -36404933,"Portal Stories Mel",purchase,1.0,0 -36404933,"Portal Stories Mel",play,3.0,0 -36404933,"SkyDrift",purchase,1.0,0 -36404933,"SkyDrift",play,2.8,0 -36404933,"The Walking Dead",purchase,1.0,0 -36404933,"The Walking Dead",play,2.8,0 -36404933,"Orcs Must Die! 2",purchase,1.0,0 -36404933,"Orcs Must Die! 2",play,2.6,0 -36404933,"Ace of Spades",purchase,1.0,0 -36404933,"Ace of Spades",play,2.3,0 -36404933,"Wizorb",purchase,1.0,0 -36404933,"Wizorb",play,2.2,0 -36404933,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -36404933,"Back to the Future Ep 1 - It's About Time",play,2.2,0 -36404933,"Bastion",purchase,1.0,0 -36404933,"Bastion",play,2.1,0 -36404933,"Darksiders",purchase,1.0,0 -36404933,"Darksiders",play,2.0,0 -36404933,"The Binding of Isaac",purchase,1.0,0 -36404933,"The Binding of Isaac",play,1.9,0 -36404933,"The Elder Scrolls V Skyrim",purchase,1.0,0 -36404933,"The Elder Scrolls V Skyrim",play,1.7,0 -36404933,"Offspring Fling!",purchase,1.0,0 -36404933,"Offspring Fling!",play,1.7,0 -36404933,"MURDERED SOUL SUSPECT",purchase,1.0,0 -36404933,"MURDERED SOUL SUSPECT",play,1.7,0 -36404933,"Cities in Motion 2",purchase,1.0,0 -36404933,"Cities in Motion 2",play,1.6,0 -36404933,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -36404933,"Star Wars Jedi Knight Jedi Academy",play,1.5,0 -36404933,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -36404933,"Warhammer 40,000 Dawn of War II",play,1.5,0 -36404933,"Little Inferno",purchase,1.0,0 -36404933,"Little Inferno",play,1.5,0 -36404933,"McPixel",purchase,1.0,0 -36404933,"McPixel",play,1.4,0 -36404933,"Trine 2",purchase,1.0,0 -36404933,"Trine 2",play,1.4,0 -36404933,"Game of Thrones ",purchase,1.0,0 -36404933,"Game of Thrones ",play,1.2,0 -36404933,"War Thunder",purchase,1.0,0 -36404933,"War Thunder",play,1.1,0 -36404933,"Osmos",purchase,1.0,0 -36404933,"Osmos",play,1.1,0 -36404933,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -36404933,"Deus Ex Human Revolution - Director's Cut",play,1.0,0 -36404933,"Castle Crashers",purchase,1.0,0 -36404933,"Castle Crashers",play,0.9,0 -36404933,"Oddworld Abe's Oddysee",purchase,1.0,0 -36404933,"Oddworld Abe's Oddysee",play,0.9,0 -36404933,"Deus Ex Human Revolution",purchase,1.0,0 -36404933,"Deus Ex Human Revolution",play,0.9,0 -36404933,"Spore",purchase,1.0,0 -36404933,"Spore",play,0.9,0 -36404933,"Half-Life 2 Lost Coast",purchase,1.0,0 -36404933,"Half-Life 2 Lost Coast",play,0.9,0 -36404933,"From Dust",purchase,1.0,0 -36404933,"From Dust",play,0.8,0 -36404933,"Mirror's Edge",purchase,1.0,0 -36404933,"Mirror's Edge",play,0.8,0 -36404933,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -36404933,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",play,0.8,0 -36404933,"Grand Theft Auto San Andreas",purchase,1.0,0 -36404933,"Grand Theft Auto San Andreas",play,0.7,0 -36404933,"Magicka Wizard Wars",purchase,1.0,0 -36404933,"Magicka Wizard Wars",play,0.7,0 -36404933,"LIMBO",purchase,1.0,0 -36404933,"LIMBO",play,0.7,0 -36404933,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -36404933,"Star Wars The Force Unleashed Ultimate Sith Edition",play,0.7,0 -36404933,"BioShock",purchase,1.0,0 -36404933,"BioShock",play,0.7,0 -36404933,"World of Goo",purchase,1.0,0 -36404933,"World of Goo",play,0.7,0 -36404933,"Batman Arkham City GOTY",purchase,1.0,0 -36404933,"Batman Arkham City GOTY",play,0.6,0 -36404933,"Red Faction Armageddon",purchase,1.0,0 -36404933,"Red Faction Armageddon",play,0.6,0 -36404933,"Shatter",purchase,1.0,0 -36404933,"Shatter",play,0.6,0 -36404933,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -36404933,"STAR WARS Knights of the Old Republic II The Sith Lords",play,0.6,0 -36404933,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -36404933,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,0.6,0 -36404933,"Machinarium",purchase,1.0,0 -36404933,"Machinarium",play,0.5,0 -36404933,"Scribblenauts Unlimited",purchase,1.0,0 -36404933,"Scribblenauts Unlimited",play,0.5,0 -36404933,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -36404933,"Fallout 3 - Game of the Year Edition",play,0.4,0 -36404933,"PAYDAY The Heist",purchase,1.0,0 -36404933,"PAYDAY The Heist",play,0.4,0 -36404933,"Vessel",purchase,1.0,0 -36404933,"Vessel",play,0.4,0 -36404933,"To the Moon",purchase,1.0,0 -36404933,"To the Moon",play,0.4,0 -36404933,"Pid ",purchase,1.0,0 -36404933,"Pid ",play,0.4,0 -36404933,"Pinball FX2",purchase,1.0,0 -36404933,"Pinball FX2",play,0.3,0 -36404933,"Anomaly Warzone Earth",purchase,1.0,0 -36404933,"Anomaly Warzone Earth",play,0.3,0 -36404933,"Snuggle Truck",purchase,1.0,0 -36404933,"Snuggle Truck",play,0.3,0 -36404933,"The Testament of Sherlock Holmes",purchase,1.0,0 -36404933,"The Testament of Sherlock Holmes",play,0.3,0 -36404933,"Home",purchase,1.0,0 -36404933,"Home",play,0.3,0 -36404933,"BIT.TRIP BEAT",purchase,1.0,0 -36404933,"BIT.TRIP BEAT",play,0.3,0 -36404933,"EDGE",purchase,1.0,0 -36404933,"EDGE",play,0.3,0 -36404933,"Lone Survivor The Director's Cut",purchase,1.0,0 -36404933,"Lone Survivor The Director's Cut",play,0.3,0 -36404933,"XCOM Enemy Unknown",purchase,1.0,0 -36404933,"XCOM Enemy Unknown",play,0.2,0 -36404933,"Startopia",purchase,1.0,0 -36404933,"Startopia",play,0.2,0 -36404933,"Arma 2 DayZ Mod",purchase,1.0,0 -36404933,"Arma 2 DayZ Mod",play,0.2,0 -36404933,"Antichamber",purchase,1.0,0 -36404933,"Antichamber",play,0.2,0 -36404933,"Metro 2033",purchase,1.0,0 -36404933,"Metro 2033",play,0.2,0 -36404933,"Toki Tori",purchase,1.0,0 -36404933,"Toki Tori",play,0.2,0 -36404933,"Oddworld Stranger's Wrath HD",purchase,1.0,0 -36404933,"Oddworld Stranger's Wrath HD",play,0.2,0 -36404933,"Torchlight",purchase,1.0,0 -36404933,"Torchlight",play,0.2,0 -36404933,"War of the Roses",purchase,1.0,0 -36404933,"War of the Roses",play,0.2,0 -36404933,"Oddworld Abe's Exoddus",purchase,1.0,0 -36404933,"Oddworld Abe's Exoddus",play,0.2,0 -36404933,"Space Pirates and Zombies",purchase,1.0,0 -36404933,"Space Pirates and Zombies",play,0.2,0 -36404933,"Retro/Grade",purchase,1.0,0 -36404933,"Retro/Grade",play,0.2,0 -36404933,"Audiosurf",purchase,1.0,0 -36404933,"Audiosurf",play,0.2,0 -36404933,"Magic 2014 ",purchase,1.0,0 -36404933,"Magic 2014 ",play,0.2,0 -36404933,"BIT.TRIP RUNNER",purchase,1.0,0 -36404933,"BIT.TRIP RUNNER",play,0.1,0 -36404933,"Windosill",purchase,1.0,0 -36404933,"Windosill",play,0.1,0 -36404933,"Anna - Extended Edition",purchase,1.0,0 -36404933,"Anna - Extended Edition",play,0.1,0 -36404933,"Jamestown",purchase,1.0,0 -36404933,"Jamestown",play,0.1,0 -36404933,"Braid",purchase,1.0,0 -36404933,"Braid",play,0.1,0 -36404933,"Symphony",purchase,1.0,0 -36404933,"Symphony",play,0.1,0 -36404933,"Alan Wake's American Nightmare",purchase,1.0,0 -36404933,"Alan Wake's American Nightmare",play,0.1,0 -36404933,"Killing Floor",purchase,1.0,0 -36404933,"Killing Floor",play,0.1,0 -36404933,"The Swapper",purchase,1.0,0 -36404933,"The Swapper",play,0.1,0 -36404933,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -36404933,"Superbrothers Sword & Sworcery EP",play,0.1,0 -36404933,"FEZ",purchase,1.0,0 -36404933,"Zen Bound 2",purchase,1.0,0 -36404933,"Leviathan Warships",purchase,1.0,0 -36404933,"Dustforce",purchase,1.0,0 -36404933,"Gratuitous Space Battles",purchase,1.0,0 -36404933,"Peggle Extreme",purchase,1.0,0 -36404933,"Cave Story+",purchase,1.0,0 -36404933,"Portal 2 - The Final Hours",purchase,1.0,0 -36404933,"Fractured Space",purchase,1.0,0 -36404933,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -36404933,"Botanicula",purchase,1.0,0 -36404933,"Serious Sam Classic The Second Encounter",purchase,1.0,0 -36404933,"Serious Sam Double D XXL",purchase,1.0,0 -36404933,"Stealth Bastard Deluxe",purchase,1.0,0 -36404933,"Ragnarok Online - Free to Play - European Version",purchase,1.0,0 -36404933,"Broken Sword 1 - Shadow of the Templars Director's Cut",purchase,1.0,0 -36404933,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -36404933,"Grand Theft Auto",purchase,1.0,0 -36404933,"Guacamelee! Gold Edition",purchase,1.0,0 -36404933,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -36404933,"Intrusion 2",purchase,1.0,0 -36404933,"Arma 2 Operation Arrowhead",purchase,1.0,0 -36404933,"Arma 2",purchase,1.0,0 -36404933,"Spore Galactic Adventures",purchase,1.0,0 -36404933,"Super Hexagon",purchase,1.0,0 -36404933,"Reus",purchase,1.0,0 -36404933,"Uplink",purchase,1.0,0 -36404933,"Papo & Yo",purchase,1.0,0 -36404933,"Giana Sisters Twisted Dreams",purchase,1.0,0 -36404933,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -36404933,"Alpha Prime",purchase,1.0,0 -36404933,"Aquaria",purchase,1.0,0 -36404933,"ArcaniA",purchase,1.0,0 -36404933,"Arma Gold Edition",purchase,1.0,0 -36404933,"Arma Tactics",purchase,1.0,0 -36404933,"Assassin's Creed III",purchase,1.0,0 -36404933,"Avadon The Black Fortress",purchase,1.0,0 -36404933,"A Virus Named TOM",purchase,1.0,0 -36404933,"Awesomenauts",purchase,1.0,0 -36404933,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -36404933,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -36404933,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -36404933,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -36404933,"Batman Arkham Origins",purchase,1.0,0 -36404933,"Beat Hazard",purchase,1.0,0 -36404933,"Before the Echo",purchase,1.0,0 -36404933,"BioShock Infinite - Season Pass",purchase,1.0,0 -36404933,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -36404933,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -36404933,"Blood Bowl Legendary Edition",purchase,1.0,0 -36404933,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -36404933,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -36404933,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -36404933,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -36404933,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -36404933,"Capsized",purchase,1.0,0 -36404933,"Carrier Command Gaea Mission",purchase,1.0,0 -36404933,"Cities XL Platinum",purchase,1.0,0 -36404933,"Closure",purchase,1.0,0 -36404933,"Cogs",purchase,1.0,0 -36404933,"Commandos 2 Men of Courage",purchase,1.0,0 -36404933,"Commandos 3 Destination Berlin",purchase,1.0,0 -36404933,"Commandos Behind Enemy Lines",purchase,1.0,0 -36404933,"Commandos Beyond the Call of Duty",purchase,1.0,0 -36404933,"Company of Heroes",purchase,1.0,0 -36404933,"Company of Heroes (New Steam Version)",purchase,1.0,0 -36404933,"Company of Heroes Opposing Fronts",purchase,1.0,0 -36404933,"Company of Heroes Tales of Valor",purchase,1.0,0 -36404933,"Confrontation",purchase,1.0,0 -36404933,"Costume Quest",purchase,1.0,0 -36404933,"Crayon Physics Deluxe",purchase,1.0,0 -36404933,"Crysis 2 Maximum Edition",purchase,1.0,0 -36404933,"Darkest Hour Europe '44-'45",purchase,1.0,0 -36404933,"Darksiders II",purchase,1.0,0 -36404933,"Dead Space 2",purchase,1.0,0 -36404933,"Dear Esther",purchase,1.0,0 -36404933,"Divinity II Developer's Cut",purchase,1.0,0 -36404933,"Dungeon Defenders II",purchase,1.0,0 -36404933,"Dungeonland",purchase,1.0,0 -36404933,"Dungeonland - All access pass",purchase,1.0,0 -36404933,"Dust An Elysian Tail",purchase,1.0,0 -36404933,"Dynamite Jack",purchase,1.0,0 -36404933,"Eets Munchies",purchase,1.0,0 -36404933,"English Country Tune",purchase,1.0,0 -36404933,"Eufloria",purchase,1.0,0 -36404933,"Eufloria HD",purchase,1.0,0 -36404933,"Eufloria HD Original Soundtrack",purchase,1.0,0 -36404933,"Europa Universalis III",purchase,1.0,0 -36404933,"F.E.A.R.",purchase,1.0,0 -36404933,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -36404933,"F.E.A.R. 3",purchase,1.0,0 -36404933,"F.E.A.R. Extraction Point",purchase,1.0,0 -36404933,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -36404933,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -36404933,"Fallout New Vegas Dead Money",purchase,1.0,0 -36404933,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -36404933,"Far Cry 3 Blood Dragon",purchase,1.0,0 -36404933,"Fieldrunners",purchase,1.0,0 -36404933,"Fractal Make Blooms Not War",purchase,1.0,0 -36404933,"Frozen Synapse",purchase,1.0,0 -36404933,"Grand Theft Auto 2",purchase,1.0,0 -36404933,"Grand Theft Auto San Andreas",purchase,1.0,0 -36404933,"Grand Theft Auto Vice City",purchase,1.0,0 -36404933,"Grand Theft Auto Vice City",purchase,1.0,0 -36404933,"Grand Theft Auto III",purchase,1.0,0 -36404933,"Grand Theft Auto III",purchase,1.0,0 -36404933,"Guardians of Middle-earth",purchase,1.0,0 -36404933,"Hector Ep 1",purchase,1.0,0 -36404933,"Hector Ep 2",purchase,1.0,0 -36404933,"Hector Ep 3",purchase,1.0,0 -36404933,"HOARD",purchase,1.0,0 -36404933,"Hotline Miami",purchase,1.0,0 -36404933,"Joe Danger 2 The Movie",purchase,1.0,0 -36404933,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -36404933,"Kane & Lynch Dead Men",purchase,1.0,0 -36404933,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -36404933,"Lara Croft and the Guardian of Light",purchase,1.0,0 -36404933,"Legacy of Kain Defiance",purchase,1.0,0 -36404933,"Legacy of Kain Soul Reaver",purchase,1.0,0 -36404933,"Legacy of Kain Soul Reaver 2",purchase,1.0,0 -36404933,"Mafia II",purchase,1.0,0 -36404933,"Magicka Final Frontier",purchase,1.0,0 -36404933,"Magicka Frozen Lake",purchase,1.0,0 -36404933,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -36404933,"Magicka Nippon",purchase,1.0,0 -36404933,"Magicka Party Robes",purchase,1.0,0 -36404933,"Magicka The Watchtower",purchase,1.0,0 -36404933,"Magicka Vietnam",purchase,1.0,0 -36404933,"Magicka Wizard's Survival Kit",purchase,1.0,0 -36404933,"Mare Nostrum",purchase,1.0,0 -36404933,"Mark of the Ninja",purchase,1.0,0 -36404933,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -36404933,"Medal of Honor(TM) Single Player",purchase,1.0,0 -36404933,"Medal of Honor Pre-Order",purchase,1.0,0 -36404933,"Monaco",purchase,1.0,0 -36404933,"Mortal Kombat Kollection",purchase,1.0,0 -36404933,"Natural Selection 2",purchase,1.0,0 -36404933,"NightSky",purchase,1.0,0 -36404933,"Oddworld Munch's Oddysee",purchase,1.0,0 -36404933,"Oil Rush",purchase,1.0,0 -36404933,"Operation Flashpoint Dragon Rising",purchase,1.0,0 -36404933,"Operation Flashpoint Red River",purchase,1.0,0 -36404933,"Orcs Must Die!",purchase,1.0,0 -36404933,"Organ Trail Director's Cut",purchase,1.0,0 -36404933,"ORION Prelude",purchase,1.0,0 -36404933,"Overlord",purchase,1.0,0 -36404933,"Overlord Raising Hell",purchase,1.0,0 -36404933,"Painkiller Hell & Damnation",purchase,1.0,0 -36404933,"Penny Arcade's On the Rain-Slick Precipice of Darkness 3",purchase,1.0,0 -36404933,"Pinball FX2 - Portal Pinball",purchase,1.0,0 -36404933,"Poker Night at the Inventory",purchase,1.0,0 -36404933,"Proteus",purchase,1.0,0 -36404933,"Psychonauts Demo",purchase,1.0,0 -36404933,"Puzzle Agent",purchase,1.0,0 -36404933,"Puzzle Agent 2",purchase,1.0,0 -36404933,"RAW - Realms of Ancient War",purchase,1.0,0 -36404933,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -36404933,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -36404933,"Rise of the Argonauts",purchase,1.0,0 -36404933,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -36404933,"Rochard",purchase,1.0,0 -36404933,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -36404933,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -36404933,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -36404933,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -36404933,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -36404933,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -36404933,"Samorost 2",purchase,1.0,0 -36404933,"Sanctum",purchase,1.0,0 -36404933,"Sanctum 2",purchase,1.0,0 -36404933,"Serious Sam 3 BFE",purchase,1.0,0 -36404933,"Serious Sam The Random Encounter",purchase,1.0,0 -36404933,"Serious Sam Classic The First Encounter",purchase,1.0,0 -36404933,"Serious Sam Classics Revolution",purchase,1.0,0 -36404933,"Shank 2",purchase,1.0,0 -36404933,"Sid Meier's Ace Patrol",purchase,1.0,0 -36404933,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -36404933,"Sid Meier's Civilization III Complete",purchase,1.0,0 -36404933,"Sid Meier's Civilization IV",purchase,1.0,0 -36404933,"Sid Meier's Civilization IV",purchase,1.0,0 -36404933,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -36404933,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -36404933,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -36404933,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -36404933,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -36404933,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -36404933,"Sid Meier's Railroads!",purchase,1.0,0 -36404933,"Sine Mora",purchase,1.0,0 -36404933,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -36404933,"Snapshot",purchase,1.0,0 -36404933,"SpaceChem",purchase,1.0,0 -36404933,"SpellForce 2 - Faith in Destiny",purchase,1.0,0 -36404933,"Spirits",purchase,1.0,0 -36404933,"Splice",purchase,1.0,0 -36404933,"Spore Creepy & Cute Parts Pack",purchase,1.0,0 -36404933,"Stacking",purchase,1.0,0 -36404933,"Star Trek Online",purchase,1.0,0 -36404933,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -36404933,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -36404933,"Star Wars Dark Forces",purchase,1.0,0 -36404933,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -36404933,"Strike Suit Zero",purchase,1.0,0 -36404933,"Supreme Commander",purchase,1.0,0 -36404933,"Supreme Commander 2",purchase,1.0,0 -36404933,"Supreme Commander Forged Alliance",purchase,1.0,0 -36404933,"Surgeon Simulator",purchase,1.0,0 -36404933,"Swords and Soldiers HD",purchase,1.0,0 -36404933,"Take On Helicopters",purchase,1.0,0 -36404933,"The Basement Collection",purchase,1.0,0 -36404933,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -36404933,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -36404933,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -36404933,"The Guild II",purchase,1.0,0 -36404933,"The Lord of the Rings War in the North",purchase,1.0,0 -36404933,"The Showdown Effect",purchase,1.0,0 -36404933,"Thief",purchase,1.0,0 -36404933,"Thief Gold",purchase,1.0,0 -36404933,"Thomas Was Alone",purchase,1.0,0 -36404933,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -36404933,"Titan Quest",purchase,1.0,0 -36404933,"Toki Tori 2+",purchase,1.0,0 -36404933,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -36404933,"UFO Afterlight",purchase,1.0,0 -36404933,"Waking Mars",purchase,1.0,0 -36404933,"Wallace & Gromit Ep 1 Fright of the Bumblebees",purchase,1.0,0 -36404933,"Wallace & Gromit Ep 2 The Last Resort",purchase,1.0,0 -36404933,"Wallace & Gromit Ep 3 Muzzled!",purchase,1.0,0 -36404933,"Wallace & Gromit Ep 4 The Bogey Man",purchase,1.0,0 -36404933,"Wargame European Escalation",purchase,1.0,0 -36404933,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -36404933,"Warlock - Master of the Arcane",purchase,1.0,0 -36404933,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -36404933,"War of the Roses Kingmaker",purchase,1.0,0 -36404933,"War of the Roses Balance Beta",purchase,1.0,0 -209023275,"Shadowgate",purchase,1.0,0 -209023275,"Shadowgate",play,87.0,0 -209023275,"Portal",purchase,1.0,0 -209023275,"Portal",play,7.5,0 -209023275,"Magic Duels",purchase,1.0,0 -209023275,"Magic Duels",play,0.2,0 -209023275,"The Elder Scrolls III Morrowind",purchase,1.0,0 -209023275,"The Elder Scrolls III Morrowind",play,0.2,0 -209023275,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -209023275,"Deja Vu MacVenture Series",purchase,1.0,0 -209023275,"Five Nights at Freddy's 2",purchase,1.0,0 -209023275,"L.A. Noire",purchase,1.0,0 -209023275,"Portal 2",purchase,1.0,0 -209023275,"Shadowgate MacVenture Series",purchase,1.0,0 -209023275,"Spore",purchase,1.0,0 -209023275,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -209023275,"The Elder Scrolls V Skyrim",purchase,1.0,0 -209023275,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -209023275,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -209023275,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -179347474,"Dota 2",purchase,1.0,0 -179347474,"Dota 2",play,423.0,0 -179347474,"Robocraft",purchase,1.0,0 -179347474,"Robocraft",play,53.0,0 -179347474,"Team Fortress 2",purchase,1.0,0 -179347474,"Team Fortress 2",play,48.0,0 -179347474,"Unturned",purchase,1.0,0 -179347474,"Unturned",play,34.0,0 -179347474,"Gotham City Impostors Free To Play",purchase,1.0,0 -179347474,"Gotham City Impostors Free To Play",play,28.0,0 -179347474,"Counter-Strike Nexon Zombies",purchase,1.0,0 -179347474,"Counter-Strike Nexon Zombies",play,25.0,0 -179347474,"Villagers and Heroes",purchase,1.0,0 -179347474,"Villagers and Heroes",play,12.6,0 -179347474,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -179347474,"S.K.I.L.L. - Special Force 2",play,5.0,0 -179347474,"AdVenture Capitalist",purchase,1.0,0 -179347474,"AdVenture Capitalist",play,4.8,0 -179347474,"Gear Up",purchase,1.0,0 -179347474,"Gear Up",play,4.0,0 -179347474,"Heroes & Generals",purchase,1.0,0 -179347474,"Heroes & Generals",play,2.5,0 -179347474,"Warframe",purchase,1.0,0 -179347474,"Warframe",play,2.5,0 -179347474,"GunZ 2 The Second Duel",purchase,1.0,0 -179347474,"GunZ 2 The Second Duel",play,1.3,0 -179347474,"APB Reloaded",purchase,1.0,0 -179347474,"APB Reloaded",play,0.9,0 -179347474,"Wild Warfare",purchase,1.0,0 -179347474,"Wild Warfare",play,0.7,0 -179347474,"CroNix",purchase,1.0,0 -179347474,"CroNix",play,0.7,0 -179347474,"Rise of Incarnates",purchase,1.0,0 -179347474,"Rise of Incarnates",play,0.5,0 -179347474,"HIS (Heroes In the Sky)",purchase,1.0,0 -179347474,"HIS (Heroes In the Sky)",play,0.4,0 -179347474,"Firefall",purchase,1.0,0 -179347474,"Firefall",play,0.1,0 -179347474,"Loadout",purchase,1.0,0 -179347474,"BLOCKADE 3D",purchase,1.0,0 -179347474,"America's Army Proving Grounds",purchase,1.0,0 -179347474,"Karos",purchase,1.0,0 -179347474,"Arma 2 Free",purchase,1.0,0 -179347474,"Chip",purchase,1.0,0 -179347474,"Defiance",purchase,1.0,0 -179347474,"Star Trek Online",purchase,1.0,0 -179347474,"Tribes Ascend",purchase,1.0,0 -33658023,"Half-Life 2 Deathmatch",purchase,1.0,0 -33658023,"Half-Life 2 Lost Coast",purchase,1.0,0 -104198014,"DC Universe Online",purchase,1.0,0 -104198014,"DC Universe Online",play,11.0,0 -104198014,"Team Fortress 2",purchase,1.0,0 -104198014,"Team Fortress 2",play,1.0,0 -182464505,"Counter-Strike Global Offensive",purchase,1.0,0 -182464505,"Counter-Strike Global Offensive",play,106.0,0 -182464505,"No More Room in Hell",purchase,1.0,0 -182464505,"No More Room in Hell",play,2.2,0 -182464505,"SMITE",purchase,1.0,0 -182464505,"SMITE",play,0.2,0 -99711581,"Garry's Mod",purchase,1.0,0 -99711581,"Garry's Mod",play,24.0,0 -99711581,"APB Reloaded",purchase,1.0,0 -99711581,"APB Reloaded",play,10.4,0 -99711581,"PlanetSide 2",purchase,1.0,0 -99711581,"PlanetSide 2",play,8.0,0 -99711581,"The Elder Scrolls V Skyrim",purchase,1.0,0 -99711581,"The Elder Scrolls V Skyrim",play,4.8,0 -99711581,"Chivalry Medieval Warfare",purchase,1.0,0 -99711581,"Chivalry Medieval Warfare",play,3.2,0 -99711581,"Team Fortress 2",purchase,1.0,0 -99711581,"Team Fortress 2",play,3.1,0 -99711581,"Warframe",purchase,1.0,0 -99711581,"Warframe",play,1.9,0 -99711581,"Robocraft",purchase,1.0,0 -99711581,"Robocraft",play,1.5,0 -99711581,"Guns of Icarus Online",purchase,1.0,0 -99711581,"Guns of Icarus Online",play,1.2,0 -99711581,"Floating Point",purchase,1.0,0 -99711581,"Floating Point",play,0.1,0 -99711581,"Patch testing for Chivalry",purchase,1.0,0 -44085899,"Football Manager 2009",purchase,1.0,0 -44085899,"Football Manager 2009",play,4.7,0 -303918601,"Team Fortress 2",purchase,1.0,0 -303918601,"Team Fortress 2",play,22.0,0 -303918601,"Trove",purchase,1.0,0 -306931395,"Team Fortress 2",purchase,1.0,0 -306931395,"Team Fortress 2",play,0.5,0 -194101597,"Sniper Ghost Warrior 2",purchase,1.0,0 -194101597,"Sniper Ghost Warrior 2",play,1.5,0 -194101597,"Sniper Ghost Warrior 2 Multiplayer Expansion Pack",purchase,1.0,0 -243783947,"Dota 2",purchase,1.0,0 -243783947,"Dota 2",play,0.2,0 -222182106,"Dota 2",purchase,1.0,0 -222182106,"Dota 2",play,452.0,0 -235901589,"FreeStyle2 Street Basketball",purchase,1.0,0 -235901589,"FreeStyle2 Street Basketball",play,13.0,0 -165073598,"Sid Meier's Civilization V",purchase,1.0,0 -165073598,"Sid Meier's Civilization V",play,115.0,0 -165073598,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -165073598,"Sid Meier's Civilization IV Beyond the Sword",play,112.0,0 -165073598,"Terraria",purchase,1.0,0 -165073598,"Terraria",play,22.0,0 -165073598,"Sid Meier's Railroads!",purchase,1.0,0 -165073598,"Sid Meier's Railroads!",play,21.0,0 -165073598,"Grand Theft Auto San Andreas",purchase,1.0,0 -165073598,"Grand Theft Auto San Andreas",play,21.0,0 -165073598,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -165073598,"Galactic Civilizations II Ultimate Edition",play,12.2,0 -165073598,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -165073598,"Sid Meier's Civilization IV Colonization",play,11.8,0 -165073598,"The Guild Gold Edition",purchase,1.0,0 -165073598,"The Guild Gold Edition",play,6.3,0 -165073598,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -165073598,"The Incredible Adventures of Van Helsing",play,4.4,0 -165073598,"MEDIEVAL Total War - Gold Edition",purchase,1.0,0 -165073598,"MEDIEVAL Total War - Gold Edition",play,3.7,0 -165073598,"Crusader Kings II",purchase,1.0,0 -165073598,"Crusader Kings II",play,1.0,0 -165073598,"Sid Meier's Civilization III Complete",purchase,1.0,0 -165073598,"Sid Meier's Civilization III Complete",play,0.9,0 -165073598,"Grand Theft Auto IV",purchase,1.0,0 -165073598,"Grand Theft Auto IV",play,0.4,0 -165073598,"The Guild II",purchase,1.0,0 -165073598,"The Guild II",play,0.3,0 -165073598,"Deadlight",purchase,1.0,0 -165073598,"Deadlight",play,0.3,0 -165073598,"The Guild II Renaissance",purchase,1.0,0 -165073598,"The Guild II Renaissance",play,0.2,0 -165073598,"Medieval II Total War",purchase,1.0,0 -165073598,"Medieval II Total War",play,0.1,0 -165073598,"Sid Meier's Ace Patrol",purchase,1.0,0 -165073598,"Sid Meier's Ace Patrol",play,0.1,0 -165073598,"Sid Meier's Pirates!",purchase,1.0,0 -165073598,"Sid Meier's Pirates!",play,0.1,0 -165073598,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -165073598,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -165073598,"Sid Meier's Civilization IV",purchase,1.0,0 -165073598,"Grand Theft Auto III",purchase,1.0,0 -165073598,"Deadlight Original Soundtrack",purchase,1.0,0 -165073598,"Empire Total War",purchase,1.0,0 -165073598,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -165073598,"Grand Theft Auto San Andreas",purchase,1.0,0 -165073598,"Grand Theft Auto Vice City",purchase,1.0,0 -165073598,"Grand Theft Auto Vice City",purchase,1.0,0 -165073598,"Grand Theft Auto III",purchase,1.0,0 -165073598,"Medieval II Total War Kingdoms",purchase,1.0,0 -165073598,"Napoleon Total War",purchase,1.0,0 -165073598,"SHOGUN Total War - Gold Edition",purchase,1.0,0 -165073598,"Sid Meier's Civilization IV",purchase,1.0,0 -165073598,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -165073598,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -165073598,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -165073598,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -165073598,"The Guild II - Pirates of the European Seas",purchase,1.0,0 -165073598,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -165073598,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -165073598,"Total War ROME II - Emperor Edition",purchase,1.0,0 -165073598,"Total War SHOGUN 2",purchase,1.0,0 -165073598,"Viking Battle for Asgard",purchase,1.0,0 -141103096,"Dota 2",purchase,1.0,0 -141103096,"Dota 2",play,1.4,0 -154533830,"Dota 2",purchase,1.0,0 -154533830,"Dota 2",play,539.0,0 -154533830,"Counter-Strike Global Offensive",purchase,1.0,0 -154533830,"Counter-Strike Global Offensive",play,250.0,0 -154533830,"Warframe",purchase,1.0,0 -154533830,"Warframe",play,87.0,0 -154533830,"Unturned",purchase,1.0,0 -154533830,"Unturned",play,11.2,0 -154533830,"Loadout Campaign Beta",purchase,1.0,0 -154533830,"Loadout Campaign Beta",play,10.9,0 -154533830,"Team Fortress 2",purchase,1.0,0 -154533830,"Team Fortress 2",play,6.6,0 -154533830,"War Thunder",purchase,1.0,0 -154533830,"War Thunder",play,5.5,0 -154533830,"Counter-Strike Source",purchase,1.0,0 -154533830,"Counter-Strike Source",play,3.8,0 -154533830,"Castle Crashers",purchase,1.0,0 -154533830,"Castle Crashers",play,3.4,0 -154533830,"Crash Time II",purchase,1.0,0 -154533830,"Crash Time II",play,2.7,0 -154533830,"Counter-Strike",purchase,1.0,0 -154533830,"Counter-Strike",play,1.4,0 -154533830,"Terraria",purchase,1.0,0 -154533830,"Terraria",play,1.2,0 -154533830,"Football Superstars",purchase,1.0,0 -154533830,"Football Superstars",play,0.9,0 -154533830,"Loadout",purchase,1.0,0 -154533830,"Loadout",play,0.7,0 -154533830,"Heroes & Generals",purchase,1.0,0 -154533830,"Heroes & Generals",play,0.6,0 -154533830,"Portal 2",purchase,1.0,0 -154533830,"Portal 2",play,0.4,0 -154533830,"Dizzel",purchase,1.0,0 -154533830,"Robocraft",purchase,1.0,0 -154533830,"S.K.I.L.L. - Special Force 2",purchase,1.0,0 -154533830,"Canyon Capers",purchase,1.0,0 -154533830,"Counter-Strike Condition Zero",purchase,1.0,0 -154533830,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -154533830,"Dragons and Titans",purchase,1.0,0 -154533830,"Dream Pinball 3D",purchase,1.0,0 -154533830,"Gotham City Impostors Free To Play",purchase,1.0,0 -154533830,"Marvel Heroes 2015",purchase,1.0,0 -154533830,"No More Room in Hell",purchase,1.0,0 -154533830,"RaceRoom Racing Experience ",purchase,1.0,0 -154533830,"Time Clickers",purchase,1.0,0 -154533830,"Trove",purchase,1.0,0 -130299876,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -130299876,"Call of Duty Black Ops - Multiplayer",play,54.0,0 -130299876,"Call of Duty Black Ops",purchase,1.0,0 -130299876,"Call of Duty Black Ops",play,47.0,0 -44231506,"Counter-Strike Source",purchase,1.0,0 -44231506,"Counter-Strike Source",play,123.0,0 -44231506,"Day of Defeat Source",purchase,1.0,0 -44231506,"Day of Defeat Source",play,0.2,0 -44231506,"Half-Life 2 Deathmatch",purchase,1.0,0 -44231506,"Half-Life 2 Lost Coast",purchase,1.0,0 -222867863,"War Inc. Battlezone",purchase,1.0,0 -222867863,"War Inc. Battlezone",play,1.7,0 -222867863,"Soldier Front 2",purchase,1.0,0 -222867863,"Soldier Front 2",play,0.4,0 -222867863,"Guns and Robots",purchase,1.0,0 -222867863,"Warframe",purchase,1.0,0 -203643703,"Counter-Strike Global Offensive",purchase,1.0,0 -203643703,"Counter-Strike Global Offensive",play,15.0,0 -203643703,"Loadout",purchase,1.0,0 -203643703,"Loadout",play,5.3,0 -203643703,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -203643703,"Call of Duty Black Ops II - Zombies",play,1.1,0 -203643703,"Metro Conflict",purchase,1.0,0 -203643703,"Metro Conflict",play,0.9,0 -203643703,"Call of Duty Black Ops II",purchase,1.0,0 -203643703,"Call of Duty Black Ops II",play,0.4,0 -203643703,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -110104315,"Dota 2",purchase,1.0,0 -110104315,"Dota 2",play,2.6,0 -10064100,"Half-Life 2",purchase,1.0,0 -10064100,"Half-Life 2",play,1.7,0 -10064100,"Counter-Strike Source",purchase,1.0,0 -10064100,"Counter-Strike Source",play,0.2,0 -10064100,"Half-Life 2 Lost Coast",purchase,1.0,0 -10064100,"Half-Life 2 Deathmatch",purchase,1.0,0 -11718802,"Counter-Strike Source",purchase,1.0,0 -11718802,"Counter-Strike Source",play,87.0,0 -11718802,"Counter-Strike",purchase,1.0,0 -11718802,"Counter-Strike Condition Zero",purchase,1.0,0 -11718802,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -11718802,"Half-Life 2",purchase,1.0,0 -11718802,"Half-Life 2 Deathmatch",purchase,1.0,0 -11718802,"Half-Life 2 Lost Coast",purchase,1.0,0 -299450273,"Dota 2",purchase,1.0,0 -299450273,"Dota 2",play,1.4,0 -173841416,"Dota 2",purchase,1.0,0 -173841416,"Dota 2",play,26.0,0 -268934736,"Dota 2",purchase,1.0,0 -268934736,"Dota 2",play,53.0,0 -268934736,"HAWKEN",purchase,1.0,0 -268934736,"War Thunder",purchase,1.0,0 -179798677,"Dota 2",purchase,1.0,0 -179798677,"Dota 2",play,2.4,0 -281437808,"Dota 2",purchase,1.0,0 -281437808,"Dota 2",play,3.7,0 -79319075,"Grand Theft Auto V",purchase,1.0,0 -79319075,"Grand Theft Auto V",play,347.0,0 -79319075,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -79319075,"Resident Evil 6 / Biohazard 6",play,50.0,0 -79319075,"Total War ATTILA",purchase,1.0,0 -79319075,"Total War ATTILA",play,33.0,0 -79319075,"Dota 2",purchase,1.0,0 -79319075,"Dota 2",play,29.0,0 -79319075,"Supreme Commander 2",purchase,1.0,0 -79319075,"Supreme Commander 2",play,25.0,0 -79319075,"Total War ROME II - Emperor Edition",purchase,1.0,0 -79319075,"Total War ROME II - Emperor Edition",play,16.9,0 -79319075,"Total War SHOGUN 2",purchase,1.0,0 -79319075,"Total War SHOGUN 2",play,14.8,0 -79319075,"Mortal Kombat X",purchase,1.0,0 -79319075,"Mortal Kombat X",play,11.9,0 -79319075,"The Elder Scrolls V Skyrim",purchase,1.0,0 -79319075,"The Elder Scrolls V Skyrim",play,5.8,0 -79319075,"Earth 2160",purchase,1.0,0 -79319075,"Earth 2160",play,2.5,0 -79319075,"Euro Truck Simulator 2",purchase,1.0,0 -79319075,"Euro Truck Simulator 2",play,2.1,0 -79319075,"Lords Of The Fallen",purchase,1.0,0 -79319075,"Lords Of The Fallen",play,1.6,0 -79319075,"Left 4 Dead 2",purchase,1.0,0 -79319075,"Left 4 Dead 2",play,1.4,0 -79319075,"DC Universe Online",purchase,1.0,0 -79319075,"DC Universe Online",play,1.3,0 -79319075,"Everlasting Summer",purchase,1.0,0 -79319075,"Frozen Hearth",purchase,1.0,0 -79319075,"Resident Evil 6 Mercenaries No Mercy",purchase,1.0,0 -79319075,"Rome Total War",purchase,1.0,0 -79319075,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -79319075,"Sniper Elite V2",purchase,1.0,0 -79319075,"Supreme Commander 2 - Infinite War Battle Pack One",purchase,1.0,0 -72293974,"Mafia II",purchase,1.0,0 -72293974,"Mafia II",play,55.0,0 -120668831,"War Thunder",purchase,1.0,0 -120668831,"War Thunder",play,47.0,0 -120668831,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -120668831,"Rising Storm/Red Orchestra 2 Multiplayer",play,1.1,0 -120668831,"Team Fortress 2",purchase,1.0,0 -120668831,"Team Fortress 2",play,0.9,0 -120668831,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -34972055,"F1 2013",purchase,1.0,0 -34972055,"F1 2013",play,389.0,0 -231416829,"Ori and the Blind Forest",purchase,1.0,0 -231416829,"Ori and the Blind Forest",play,7.3,0 -231416829,"Castle Crashers",purchase,1.0,0 -231416829,"Castle Crashers",play,6.8,0 -231416829,"Indie Game The Movie",purchase,1.0,0 -231416829,"Indie Game The Movie",play,5.5,0 -231416829,"Braid",purchase,1.0,0 -231416829,"Braid",play,4.7,0 -231416829,"BattleBlock Theater",purchase,1.0,0 -231416829,"BattleBlock Theater",play,4.5,0 -231416829,"The Evil Within",purchase,1.0,0 -231416829,"The Evil Within",play,3.5,0 -231416829,"Bastion",purchase,1.0,0 -231416829,"Bastion",play,3.2,0 -231416829,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -231416829,"Resident Evil 6 / Biohazard 6",play,3.0,0 -231416829,"Killer is Dead",purchase,1.0,0 -231416829,"Killer is Dead",play,2.5,0 -231416829,"The Banner Saga",purchase,1.0,0 -231416829,"The Banner Saga",play,1.6,0 -231416829,"Super Meat Boy",purchase,1.0,0 -231416829,"Super Meat Boy",play,1.5,0 -231416829,"The Witcher 3 Wild Hunt",purchase,1.0,0 -231416829,"The Witcher 3 Wild Hunt",play,1.3,0 -231416829,"Magicka 2",purchase,1.0,0 -231416829,"Magicka 2",play,0.8,0 -231416829,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -231416829,"METAL GEAR RISING REVENGEANCE",play,0.7,0 -231416829,"MURDERED SOUL SUSPECT",purchase,1.0,0 -231416829,"MURDERED SOUL SUSPECT",play,0.7,0 -231416829,"D4 Dark Dreams Don't Die",purchase,1.0,0 -231416829,"D4 Dark Dreams Don't Die",play,0.5,0 -231416829,"The Ship Single Player",purchase,1.0,0 -231416829,"The Ship Single Player",play,0.2,0 -231416829,"The Ship",purchase,1.0,0 -231416829,"Amnesia The Dark Descent",purchase,1.0,0 -231416829,"FEZ",purchase,1.0,0 -231416829,"Ghost Master",purchase,1.0,0 -231416829,"Hydrophobia Prophecy",purchase,1.0,0 -231416829,"Resident Evil 6 Mercenaries No Mercy",purchase,1.0,0 -231416829,"Strife",purchase,1.0,0 -231416829,"The Banner Saga - Mod Content",purchase,1.0,0 -231416829,"The Ship Tutorial",purchase,1.0,0 -185484994,"Dota 2",purchase,1.0,0 -185484994,"Dota 2",play,665.0,0 -171900219,"Dota 2",purchase,1.0,0 -171900219,"Dota 2",play,19.5,0 -96634230,"Neverwinter",purchase,1.0,0 -96634230,"Neverwinter",play,10.6,0 -131473057,"Robocraft",purchase,1.0,0 -131473057,"Robocraft",play,343.0,0 -131473057,"Blade Symphony",purchase,1.0,0 -131473057,"Blade Symphony",play,93.0,0 -131473057,"Dota 2",purchase,1.0,0 -131473057,"Dota 2",play,5.8,0 -131473057,"Everlasting Summer",purchase,1.0,0 -131473057,"Everlasting Summer",play,3.1,0 -131473057,"War Thunder",purchase,1.0,0 -131473057,"War Thunder",play,2.5,0 -131473057,"Mortal Kombat Komplete Edition",purchase,1.0,0 -131473057,"Mortal Kombat Komplete Edition",play,1.5,0 -131473057,"Nosgoth",purchase,1.0,0 -131473057,"Nosgoth",play,0.9,0 -131473057,"Rise of Incarnates",purchase,1.0,0 -186090773,"Dota 2",purchase,1.0,0 -186090773,"Dota 2",play,0.3,0 -976129,"Counter-Strike",purchase,1.0,0 -976129,"Counter-Strike",play,0.5,0 -976129,"Day of Defeat",purchase,1.0,0 -976129,"Deathmatch Classic",purchase,1.0,0 -976129,"Half-Life",purchase,1.0,0 -976129,"Half-Life Blue Shift",purchase,1.0,0 -976129,"Half-Life Opposing Force",purchase,1.0,0 -976129,"Ricochet",purchase,1.0,0 -976129,"Team Fortress Classic",purchase,1.0,0 -93030550,"Empire Total War",purchase,1.0,0 -93030550,"Empire Total War",play,202.0,0 -93030550,"Total War SHOGUN 2",purchase,1.0,0 -93030550,"Total War SHOGUN 2",play,26.0,0 -93030550,"Tropico 5",purchase,1.0,0 -93030550,"Tropico 5",play,16.6,0 -93030550,"Just Cause 2",purchase,1.0,0 -93030550,"Just Cause 2",play,9.2,0 -93030550,"Godus",purchase,1.0,0 -93030550,"Godus",play,9.1,0 -93030550,"From Dust",purchase,1.0,0 -93030550,"From Dust",play,6.8,0 -93030550,"Democracy 3",purchase,1.0,0 -93030550,"Democracy 3",play,6.3,0 -93030550,"Hearts of Iron III",purchase,1.0,0 -93030550,"Hearts of Iron III",play,5.8,0 -93030550,"Terraria",purchase,1.0,0 -93030550,"Terraria",play,4.7,0 -93030550,"Dota 2",purchase,1.0,0 -93030550,"Dota 2",play,2.5,0 -93030550,"Wargame European Escalation",purchase,1.0,0 -93030550,"Wargame European Escalation",play,1.1,0 -93030550,"Tropico 4",purchase,1.0,0 -93030550,"Tropico 4",play,0.3,0 -93030550,"0RBITALIS",purchase,1.0,0 -93030550,"0RBITALIS",play,0.3,0 -93030550,"Hearts of Iron III German II Sprite Pack",purchase,1.0,0 -93030550,"Omerta - City of Gangsters",purchase,1.0,0 -93405380,"Two Worlds II",purchase,1.0,0 -93405380,"Two Worlds II",play,0.6,0 -33452361,"Dead Island",purchase,1.0,0 -33452361,"Dead Island",play,58.0,0 -33452361,"Dead Space",purchase,1.0,0 -33452361,"Dead Space",play,28.0,0 -33452361,"Portal 2",purchase,1.0,0 -33452361,"Portal 2",play,18.5,0 -33452361,"BioShock 2",purchase,1.0,0 -33452361,"BioShock 2",play,14.8,0 -33452361,"BioShock",purchase,1.0,0 -33452361,"BioShock",play,12.3,0 -33452361,"Half-Life 2",purchase,1.0,0 -33452361,"Half-Life 2",play,7.0,0 -33452361,"Half-Life Opposing Force",purchase,1.0,0 -33452361,"Half-Life Opposing Force",play,4.7,0 -33452361,"Half-Life 2 Episode Two",purchase,1.0,0 -33452361,"Half-Life 2 Episode Two",play,3.8,0 -33452361,"Half-Life Blue Shift",purchase,1.0,0 -33452361,"Half-Life Blue Shift",play,3.1,0 -33452361,"Left 4 Dead",purchase,1.0,0 -33452361,"Left 4 Dead",play,1.4,0 -33452361,"Left 4 Dead 2",purchase,1.0,0 -33452361,"Left 4 Dead 2",play,0.9,0 -33452361,"Portal",purchase,1.0,0 -33452361,"Portal",play,0.5,0 -33452361,"Dead Space 2",purchase,1.0,0 -33452361,"Half-Life 2 Episode One",purchase,1.0,0 -33452361,"Half-Life 2 Lost Coast",purchase,1.0,0 -33452361,"Hitman 2 Silent Assassin",purchase,1.0,0 -33452361,"Hitman Blood Money",purchase,1.0,0 -33452361,"Hitman Codename 47",purchase,1.0,0 -56840402,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -56840402,"Call of Duty Modern Warfare 2 - Multiplayer",play,269.0,0 -56840402,"Call of Duty Modern Warfare 2",purchase,1.0,0 -56840402,"Call of Duty Modern Warfare 2",play,28.0,0 -56840402,"Call of Duty Ghosts",purchase,1.0,0 -56840402,"Call of Duty Ghosts",play,12.5,0 -56840402,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -56840402,"RollerCoaster Tycoon 3 Platinum!",play,4.8,0 -56840402,"Call of Duty Ghosts - Multiplayer",purchase,1.0,0 -56840402,"Call of Duty Ghosts - Multiplayer",play,1.6,0 -259311761,"Dota 2",purchase,1.0,0 -259311761,"Dota 2",play,0.4,0 -259311761,"FreeStyle2 Street Basketball",purchase,1.0,0 -259311761,"TERA",purchase,1.0,0 -175941533,"Counter-Strike Global Offensive",purchase,1.0,0 -175941533,"Counter-Strike Global Offensive",play,993.0,0 -175941533,"Grand Theft Auto V",purchase,1.0,0 -175941533,"Grand Theft Auto V",play,64.0,0 -175941533,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -175941533,"Tom Clancy's Ghost Recon Phantoms - NA",play,2.2,0 -175941533,"Free to Play",purchase,1.0,0 -175941533,"Free to Play",play,1.4,0 -175941533,"Plague Inc Evolved",purchase,1.0,0 -175941533,"Plague Inc Evolved",play,1.0,0 -175941533,"Team Fortress 2",purchase,1.0,0 -175941533,"Team Fortress 2",play,0.4,0 -175941533,"Metro 2033",purchase,1.0,0 -175941533,"Metro 2033",play,0.3,0 -175941533,"Tactical Intervention",purchase,1.0,0 -175941533,"Tactical Intervention",play,0.2,0 -175941533,"Warface",purchase,1.0,0 -171893056,"Dota 2",purchase,1.0,0 -171893056,"Dota 2",play,92.0,0 -89691468,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -89691468,"Dark Souls Prepare to Die Edition",play,100.0,0 -89691468,"Terraria",purchase,1.0,0 -89691468,"Terraria",play,50.0,0 -89691468,"Sid Meier's Civilization V",purchase,1.0,0 -89691468,"Sid Meier's Civilization V",play,34.0,0 -89691468,"Garry's Mod",purchase,1.0,0 -89691468,"Garry's Mod",play,17.6,0 -89691468,"Portal",purchase,1.0,0 -89691468,"Portal",play,16.1,0 -89691468,"Mount & Blade Warband",purchase,1.0,0 -89691468,"Mount & Blade Warband",play,16.0,0 -89691468,"Don't Starve",purchase,1.0,0 -89691468,"Don't Starve",play,14.5,0 -89691468,"Arma 2 Operation Arrowhead",purchase,1.0,0 -89691468,"Arma 2 Operation Arrowhead",play,11.7,0 -89691468,"Team Fortress 2",purchase,1.0,0 -89691468,"Team Fortress 2",play,9.2,0 -89691468,"Counter-Strike Source",purchase,1.0,0 -89691468,"Counter-Strike Source",play,9.0,0 -89691468,"Half-Life 2 Episode Two",purchase,1.0,0 -89691468,"Half-Life 2 Episode Two",play,9.0,0 -89691468,"DC Universe Online",purchase,1.0,0 -89691468,"DC Universe Online",play,6.9,0 -89691468,"Castle Crashers",purchase,1.0,0 -89691468,"Castle Crashers",play,2.7,0 -89691468,"Arma 2",purchase,1.0,0 -89691468,"Arma 2",play,2.4,0 -89691468,"Arma 2 DayZ Mod",purchase,1.0,0 -89691468,"Arma 2 DayZ Mod",play,2.3,0 -89691468,"Half-Life",purchase,1.0,0 -89691468,"Half-Life",play,1.4,0 -89691468,"Left 4 Dead",purchase,1.0,0 -89691468,"Left 4 Dead",play,1.2,0 -89691468,"Half-Life 2 Episode One",purchase,1.0,0 -89691468,"Half-Life 2 Episode One",play,1.0,0 -89691468,"PAYDAY The Heist",purchase,1.0,0 -89691468,"PAYDAY The Heist",play,0.5,0 -89691468,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -89691468,"Counter-Strike",purchase,1.0,0 -89691468,"Counter-Strike Condition Zero",purchase,1.0,0 -89691468,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -89691468,"Day of Defeat",purchase,1.0,0 -89691468,"Day of Defeat Source",purchase,1.0,0 -89691468,"Deathmatch Classic",purchase,1.0,0 -89691468,"Don't Starve Together Beta",purchase,1.0,0 -89691468,"Half-Life 2",purchase,1.0,0 -89691468,"Half-Life 2 Deathmatch",purchase,1.0,0 -89691468,"Half-Life 2 Lost Coast",purchase,1.0,0 -89691468,"Half-Life Blue Shift",purchase,1.0,0 -89691468,"Half-Life Opposing Force",purchase,1.0,0 -89691468,"Half-Life Source",purchase,1.0,0 -89691468,"Half-Life Deathmatch Source",purchase,1.0,0 -89691468,"Left 4 Dead 2",purchase,1.0,0 -89691468,"Portal 2",purchase,1.0,0 -89691468,"Ricochet",purchase,1.0,0 -89691468,"Team Fortress Classic",purchase,1.0,0 -251085489,"Dota 2",purchase,1.0,0 -251085489,"Dota 2",play,65.0,0 -42454699,"Football Manager 2009",purchase,1.0,0 -42454699,"Football Manager 2009",play,35.0,0 -53097340,"Arma 3",purchase,1.0,0 -53097340,"Arma 3",play,215.0,0 -53097340,"DayZ",purchase,1.0,0 -53097340,"DayZ",play,195.0,0 -53097340,"Star Trek Online",purchase,1.0,0 -53097340,"Star Trek Online",play,138.0,0 -53097340,"Counter-Strike Global Offensive",purchase,1.0,0 -53097340,"Counter-Strike Global Offensive",play,82.0,0 -53097340,"RIFT",purchase,1.0,0 -53097340,"RIFT",play,62.0,0 -53097340,"Counter-Strike Source",purchase,1.0,0 -53097340,"Counter-Strike Source",play,35.0,0 -53097340,"PAYDAY 2",purchase,1.0,0 -53097340,"PAYDAY 2",play,33.0,0 -53097340,"Torchlight II",purchase,1.0,0 -53097340,"Torchlight II",play,30.0,0 -53097340,"SMITE",purchase,1.0,0 -53097340,"SMITE",play,25.0,0 -53097340,"Team Fortress 2",purchase,1.0,0 -53097340,"Team Fortress 2",play,22.0,0 -53097340,"Left 4 Dead 2",purchase,1.0,0 -53097340,"Left 4 Dead 2",play,20.0,0 -53097340,"Sid Meier's Civilization V",purchase,1.0,0 -53097340,"Sid Meier's Civilization V",play,14.6,0 -53097340,"Rocket League",purchase,1.0,0 -53097340,"Rocket League",play,14.3,0 -53097340,"Rust",purchase,1.0,0 -53097340,"Rust",play,13.1,0 -53097340,"Heroes & Generals",purchase,1.0,0 -53097340,"Heroes & Generals",play,11.7,0 -53097340,"Portal",purchase,1.0,0 -53097340,"Portal",play,11.4,0 -53097340,"Awesomenauts",purchase,1.0,0 -53097340,"Awesomenauts",play,10.3,0 -53097340,"H1Z1",purchase,1.0,0 -53097340,"H1Z1",play,9.2,0 -53097340,"Worms Revolution",purchase,1.0,0 -53097340,"Worms Revolution",play,7.9,0 -53097340,"Don't Starve Together Beta",purchase,1.0,0 -53097340,"Don't Starve Together Beta",play,7.4,0 -53097340,"DC Universe Online",purchase,1.0,0 -53097340,"DC Universe Online",play,6.8,0 -53097340,"Borderlands 2",purchase,1.0,0 -53097340,"Borderlands 2",play,5.8,0 -53097340,"Alien Swarm",purchase,1.0,0 -53097340,"Alien Swarm",play,5.5,0 -53097340,"Papers, Please",purchase,1.0,0 -53097340,"Papers, Please",play,5.3,0 -53097340,"Carrier Command Gaea Mission",purchase,1.0,0 -53097340,"Carrier Command Gaea Mission",play,4.9,0 -53097340,"HAWKEN",purchase,1.0,0 -53097340,"HAWKEN",play,4.6,0 -53097340,"Don't Starve",purchase,1.0,0 -53097340,"Don't Starve",play,4.5,0 -53097340,"Star Wars - Battlefront II",purchase,1.0,0 -53097340,"Star Wars - Battlefront II",play,4.5,0 -53097340,"Garry's Mod",purchase,1.0,0 -53097340,"Garry's Mod",play,4.1,0 -53097340,"Deadpool",purchase,1.0,0 -53097340,"Deadpool",play,3.7,0 -53097340,"Killing Floor",purchase,1.0,0 -53097340,"Killing Floor",play,3.2,0 -53097340,"BattleBlock Theater",purchase,1.0,0 -53097340,"BattleBlock Theater",play,2.6,0 -53097340,"Vindictus",purchase,1.0,0 -53097340,"Vindictus",play,2.4,0 -53097340,"Battlefield Bad Company 2",purchase,1.0,0 -53097340,"Battlefield Bad Company 2",play,2.0,0 -53097340,"Grand Theft Auto San Andreas",purchase,1.0,0 -53097340,"Grand Theft Auto San Andreas",play,1.6,0 -53097340,"Counter-Strike",purchase,1.0,0 -53097340,"Counter-Strike",play,1.4,0 -53097340,"Unturned",purchase,1.0,0 -53097340,"Unturned",play,1.1,0 -53097340,"Space Engineers",purchase,1.0,0 -53097340,"Space Engineers",play,1.0,0 -53097340,"Day of Defeat Source",purchase,1.0,0 -53097340,"Day of Defeat Source",play,1.0,0 -53097340,"Arma 2 Operation Arrowhead",purchase,1.0,0 -53097340,"Arma 2 Operation Arrowhead",play,0.8,0 -53097340,"Star Wars Republic Commando",purchase,1.0,0 -53097340,"Star Wars Republic Commando",play,0.5,0 -53097340,"Arma 2",purchase,1.0,0 -53097340,"Arma 2",play,0.5,0 -53097340,"Dying Light",purchase,1.0,0 -53097340,"Dying Light",play,0.2,0 -53097340,"Guns of Icarus Online",purchase,1.0,0 -53097340,"Guns of Icarus Online",play,0.2,0 -53097340,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -53097340,"Alpha Prime",purchase,1.0,0 -53097340,"Arma 2 DayZ Mod",purchase,1.0,0 -53097340,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -53097340,"Arma 3 Helicopters",purchase,1.0,0 -53097340,"Arma 3 Karts",purchase,1.0,0 -53097340,"Arma 3 Marksmen",purchase,1.0,0 -53097340,"Arma 3 Zeus",purchase,1.0,0 -53097340,"Arma Gold Edition",purchase,1.0,0 -53097340,"Arma Tactics",purchase,1.0,0 -53097340,"Bastion",purchase,1.0,0 -53097340,"Batman Arkham City GOTY",purchase,1.0,0 -53097340,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -53097340,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -53097340,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -53097340,"Contagion",purchase,1.0,0 -53097340,"Counter-Strike Condition Zero",purchase,1.0,0 -53097340,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -53097340,"Crysis 2 Maximum Edition",purchase,1.0,0 -53097340,"Day of Defeat",purchase,1.0,0 -53097340,"Dead Island",purchase,1.0,0 -53097340,"Deadlight",purchase,1.0,0 -53097340,"Dead Space",purchase,1.0,0 -53097340,"Deathmatch Classic",purchase,1.0,0 -53097340,"F.E.A.R.",purchase,1.0,0 -53097340,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -53097340,"F.E.A.R. 3",purchase,1.0,0 -53097340,"F.E.A.R. Extraction Point",purchase,1.0,0 -53097340,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -53097340,"Far Cry 3",purchase,1.0,0 -53097340,"Free to Play",purchase,1.0,0 -53097340,"Grand Theft Auto San Andreas",purchase,1.0,0 -53097340,"Guardians of Middle-earth",purchase,1.0,0 -53097340,"H1Z1 Test Server",purchase,1.0,0 -53097340,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -53097340,"LEGO The Lord of the Rings",purchase,1.0,0 -53097340,"Loadout",purchase,1.0,0 -53097340,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -53097340,"Medal of Honor(TM) Single Player",purchase,1.0,0 -53097340,"Medal of Honor Pre-Order",purchase,1.0,0 -53097340,"Mirror's Edge",purchase,1.0,0 -53097340,"Mortal Kombat Kollection",purchase,1.0,0 -53097340,"Mount Your Friends",purchase,1.0,0 -53097340,"No More Room in Hell",purchase,1.0,0 -53097340,"PlanetSide 2",purchase,1.0,0 -53097340,"Ricochet",purchase,1.0,0 -53097340,"Risen 2 - Dark Waters",purchase,1.0,0 -53097340,"Sacred 2 Gold",purchase,1.0,0 -53097340,"Saints Row 2",purchase,1.0,0 -53097340,"Saints Row The Third",purchase,1.0,0 -53097340,"Scribblenauts Unlimited",purchase,1.0,0 -53097340,"Serious Sam 3 BFE",purchase,1.0,0 -53097340,"Sid Meier's Ace Patrol",purchase,1.0,0 -53097340,"Sid Meier's Ace Patrol Pacific Skies",purchase,1.0,0 -53097340,"Sid Meier's Civilization III Complete",purchase,1.0,0 -53097340,"Sid Meier's Civilization IV",purchase,1.0,0 -53097340,"Sid Meier's Civilization IV",purchase,1.0,0 -53097340,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -53097340,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -53097340,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -53097340,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -53097340,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -53097340,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -53097340,"Sid Meier's Railroads!",purchase,1.0,0 -53097340,"Star Wars Dark Forces",purchase,1.0,0 -53097340,"Star Wars Empire at War Gold",purchase,1.0,0 -53097340,"Star Wars Knights of the Old Republic",purchase,1.0,0 -53097340,"Star Wars The Force Unleashed II",purchase,1.0,0 -53097340,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -53097340,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -53097340,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -53097340,"Take On Helicopters",purchase,1.0,0 -53097340,"The Lord of the Rings War in the North",purchase,1.0,0 -53097340,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -53097340,"Toribash",purchase,1.0,0 -53097340,"Trove",purchase,1.0,0 -53097340,"UFO Afterlight",purchase,1.0,0 -224493107,"Counter-Strike Nexon Zombies",purchase,1.0,0 -224493107,"Counter-Strike Nexon Zombies",play,83.0,0 -245023643,"Dota 2",purchase,1.0,0 -245023643,"Dota 2",play,0.3,0 -245023643,"Warframe",purchase,1.0,0 -112509160,"Total War SHOGUN 2",purchase,1.0,0 -112509160,"Total War SHOGUN 2",play,1.4,0 -95519970,"RAGE",purchase,1.0,0 -95519970,"RAGE",play,0.9,0 -156831526,"Wasteland 2",purchase,1.0,0 -156831526,"Wasteland 2",play,29.0,0 -156831526,"Hotline Miami",purchase,1.0,0 -156831526,"Hotline Miami",play,7.5,0 -156831526,"Wasteland 1 - The Original Classic",purchase,1.0,0 -156831526,"Wasteland 2 Director's Cut",purchase,1.0,0 -47144509,"Empire Total War",purchase,1.0,0 -47144509,"Empire Total War",play,126.0,0 -47144509,"Napoleon Total War",purchase,1.0,0 -47144509,"Napoleon Total War",play,61.0,0 -208838704,"Mitos.is The Game",purchase,1.0,0 -208838704,"Mitos.is The Game",play,3.3,0 -208838704,"APB Reloaded",purchase,1.0,0 -208838704,"GunZ 2 The Second Duel",purchase,1.0,0 -208838704,"Path of Exile",purchase,1.0,0 -208838704,"PlanetSide 2",purchase,1.0,0 -118360669,"Dota 2",purchase,1.0,0 -118360669,"Dota 2",play,63.0,0 -139074732,"Dota 2",purchase,1.0,0 -139074732,"Dota 2",play,2228.0,0 -20772968,"GRID",purchase,1.0,0 -20772968,"GRID",play,312.0,0 -20772968,"Counter-Strike Source",purchase,1.0,0 -20772968,"Counter-Strike Source",play,222.0,0 -20772968,"Borderlands",purchase,1.0,0 -20772968,"Borderlands",play,149.0,0 -20772968,"The Elder Scrolls V Skyrim",purchase,1.0,0 -20772968,"The Elder Scrolls V Skyrim",play,48.0,0 -20772968,"Grand Theft Auto IV",purchase,1.0,0 -20772968,"Grand Theft Auto IV",play,38.0,0 -20772968,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -20772968,"Fallout 3 - Game of the Year Edition",play,38.0,0 -20772968,"Grand Theft Auto San Andreas",purchase,1.0,0 -20772968,"Grand Theft Auto San Andreas",play,34.0,0 -20772968,"Mass Effect 2",purchase,1.0,0 -20772968,"Mass Effect 2",play,34.0,0 -20772968,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -20772968,"Plants vs. Zombies Game of the Year",play,29.0,0 -20772968,"Fallout 2",purchase,1.0,0 -20772968,"Fallout 2",play,26.0,0 -20772968,"FTL Faster Than Light",purchase,1.0,0 -20772968,"FTL Faster Than Light",play,25.0,0 -20772968,"Portal 2",purchase,1.0,0 -20772968,"Portal 2",play,25.0,0 -20772968,"S.T.A.L.K.E.R. Call of Pripyat",purchase,1.0,0 -20772968,"S.T.A.L.K.E.R. Call of Pripyat",play,24.0,0 -20772968,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -20772968,"Warhammer 40,000 Dawn of War II",play,23.0,0 -20772968,"X-COM Terror from the Deep",purchase,1.0,0 -20772968,"X-COM Terror from the Deep",play,23.0,0 -20772968,"Need for Speed Hot Pursuit",purchase,1.0,0 -20772968,"Need for Speed Hot Pursuit",play,21.0,0 -20772968,"FlatOut Ultimate Carnage",purchase,1.0,0 -20772968,"FlatOut Ultimate Carnage",play,21.0,0 -20772968,"Jagged Alliance 2 - Wildfire ",purchase,1.0,0 -20772968,"Jagged Alliance 2 - Wildfire ",play,14.8,0 -20772968,"Duke Nukem Forever",purchase,1.0,0 -20772968,"Duke Nukem Forever",play,14.4,0 -20772968,"Dota 2",purchase,1.0,0 -20772968,"Dota 2",play,14.4,0 -20772968,"Torchlight",purchase,1.0,0 -20772968,"Torchlight",play,13.8,0 -20772968,"Street Fighter IV",purchase,1.0,0 -20772968,"Street Fighter IV",play,9.0,0 -20772968,"Indigo Prophecy",purchase,1.0,0 -20772968,"Indigo Prophecy",play,8.6,0 -20772968,"Death Rally",purchase,1.0,0 -20772968,"Death Rally",play,8.5,0 -20772968,"Defense Grid The Awakening",purchase,1.0,0 -20772968,"Defense Grid The Awakening",play,8.1,0 -20772968,"Midnight Club II",purchase,1.0,0 -20772968,"Midnight Club II",play,8.1,0 -20772968,"Left 4 Dead",purchase,1.0,0 -20772968,"Left 4 Dead",play,8.1,0 -20772968,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -20772968,"Deus Ex Human Revolution - The Missing Link",play,7.8,0 -20772968,"Counter-Strike Global Offensive",purchase,1.0,0 -20772968,"Counter-Strike Global Offensive",play,7.6,0 -20772968,"XCOM Enemy Unknown",purchase,1.0,0 -20772968,"XCOM Enemy Unknown",play,7.6,0 -20772968,"Battlefield Bad Company 2",purchase,1.0,0 -20772968,"Battlefield Bad Company 2",play,7.5,0 -20772968,"Shatter",purchase,1.0,0 -20772968,"Shatter",play,7.4,0 -20772968,"DiRT",purchase,1.0,0 -20772968,"DiRT",play,7.4,0 -20772968,"Space Empires IV Deluxe",purchase,1.0,0 -20772968,"Space Empires IV Deluxe",play,6.9,0 -20772968,"BloodRayne",purchase,1.0,0 -20772968,"BloodRayne",play,6.6,0 -20772968,"Torchlight II",purchase,1.0,0 -20772968,"Torchlight II",play,6.4,0 -20772968,"Call of Duty 4 Modern Warfare",purchase,1.0,0 -20772968,"Call of Duty 4 Modern Warfare",play,6.4,0 -20772968,"Dead Island",purchase,1.0,0 -20772968,"Dead Island",play,6.4,0 -20772968,"Beat Hazard",purchase,1.0,0 -20772968,"Beat Hazard",play,6.2,0 -20772968,"Carmageddon 2 Carpocalypse Now",purchase,1.0,0 -20772968,"Carmageddon 2 Carpocalypse Now",play,5.4,0 -20772968,"Tomb Raider Underworld",purchase,1.0,0 -20772968,"Tomb Raider Underworld",play,5.2,0 -20772968,"Age of Mythology Extended Edition",purchase,1.0,0 -20772968,"Age of Mythology Extended Edition",play,5.1,0 -20772968,"Trine",purchase,1.0,0 -20772968,"Trine",play,5.0,0 -20772968,"Half-Life 2 Episode Two",purchase,1.0,0 -20772968,"Half-Life 2 Episode Two",play,4.8,0 -20772968,"Brtal Legend",purchase,1.0,0 -20772968,"Brtal Legend",play,4.2,0 -20772968,"BloodRayne 2",purchase,1.0,0 -20772968,"BloodRayne 2",play,3.9,0 -20772968,"Synergy",purchase,1.0,0 -20772968,"Synergy",play,3.7,0 -20772968,"Unreal Tournament 2004",purchase,1.0,0 -20772968,"Unreal Tournament 2004",play,3.2,0 -20772968,"Trine 2",purchase,1.0,0 -20772968,"Trine 2",play,3.1,0 -20772968,"Aperture Tag The Paint Gun Testing Initiative",purchase,1.0,0 -20772968,"Aperture Tag The Paint Gun Testing Initiative",play,3.1,0 -20772968,"Carmageddon Max Pack",purchase,1.0,0 -20772968,"Carmageddon Max Pack",play,2.8,0 -20772968,"TrackMania United",purchase,1.0,0 -20772968,"TrackMania United",play,2.7,0 -20772968,"Wasteland 2",purchase,1.0,0 -20772968,"Wasteland 2",play,2.7,0 -20772968,"Left 4 Dead 2",purchase,1.0,0 -20772968,"Left 4 Dead 2",play,2.7,0 -20772968,"Killing Floor",purchase,1.0,0 -20772968,"Killing Floor",play,2.7,0 -20772968,"Bastion",purchase,1.0,0 -20772968,"Bastion",play,2.6,0 -20772968,"Command and Conquer 3 Kane's Wrath",purchase,1.0,0 -20772968,"Command and Conquer 3 Kane's Wrath",play,2.5,0 -20772968,"Age of Empires II HD Edition",purchase,1.0,0 -20772968,"Age of Empires II HD Edition",play,2.5,0 -20772968,"Post Apocalyptic Mayhem",purchase,1.0,0 -20772968,"Post Apocalyptic Mayhem",play,2.4,0 -20772968,"Afterfall InSanity Extended Edition",purchase,1.0,0 -20772968,"Afterfall InSanity Extended Edition",play,2.2,0 -20772968,"4 Elements",purchase,1.0,0 -20772968,"4 Elements",play,2.1,0 -20772968,"Devil May Cry 4",purchase,1.0,0 -20772968,"Devil May Cry 4",play,2.0,0 -20772968,"Cthulhu Saves the World ",purchase,1.0,0 -20772968,"Cthulhu Saves the World ",play,2.0,0 -20772968,"The Binding of Isaac",purchase,1.0,0 -20772968,"The Binding of Isaac",play,1.9,0 -20772968,"A Story About My Uncle",purchase,1.0,0 -20772968,"A Story About My Uncle",play,1.9,0 -20772968,"Zuma's Revenge! - Adventure",purchase,1.0,0 -20772968,"Zuma's Revenge! - Adventure",play,1.7,0 -20772968,"The Culling Of The Cows",purchase,1.0,0 -20772968,"The Culling Of The Cows",play,1.6,0 -20772968,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -20772968,"Unreal Tournament 3 Black Edition",play,1.6,0 -20772968,"Frozen Synapse",purchase,1.0,0 -20772968,"Frozen Synapse",play,1.5,0 -20772968,"Portal",purchase,1.0,0 -20772968,"Portal",play,1.4,0 -20772968,"From Dust",purchase,1.0,0 -20772968,"From Dust",play,1.4,0 -20772968,"Anomaly Warzone Earth",purchase,1.0,0 -20772968,"Anomaly Warzone Earth",play,1.4,0 -20772968,"World of Goo",purchase,1.0,0 -20772968,"World of Goo",play,1.4,0 -20772968,"Dust An Elysian Tail",purchase,1.0,0 -20772968,"Dust An Elysian Tail",play,1.2,0 -20772968,"Hero Siege",purchase,1.0,0 -20772968,"Hero Siege",play,1.1,0 -20772968,"War for the Overworld",purchase,1.0,0 -20772968,"War for the Overworld",play,1.1,0 -20772968,"Worms Reloaded",purchase,1.0,0 -20772968,"Worms Reloaded",play,1.1,0 -20772968,"Osmos",purchase,1.0,0 -20772968,"Osmos",play,1.0,0 -20772968,"Plain Sight",purchase,1.0,0 -20772968,"Plain Sight",play,0.9,0 -20772968,"Zombie Panic Source",purchase,1.0,0 -20772968,"Zombie Panic Source",play,0.9,0 -20772968,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -20772968,"The Secret of Monkey Island Special Edition",play,0.9,0 -20772968,"SpaceChem",purchase,1.0,0 -20772968,"SpaceChem",play,0.8,0 -20772968,"Team Fortress 2",purchase,1.0,0 -20772968,"Team Fortress 2",play,0.8,0 -20772968,"Mirror's Edge",purchase,1.0,0 -20772968,"Mirror's Edge",play,0.7,0 -20772968,"Audiosurf",purchase,1.0,0 -20772968,"Audiosurf",play,0.6,0 -20772968,"Lost Planet Extreme Condition - Colonies Edition",purchase,1.0,0 -20772968,"Lost Planet Extreme Condition - Colonies Edition",play,0.6,0 -20772968,"Half-Life 2 Lost Coast",purchase,1.0,0 -20772968,"Half-Life 2 Lost Coast",play,0.5,0 -20772968,"BioShock",purchase,1.0,0 -20772968,"BioShock",play,0.5,0 -20772968,"Sonic Generations",purchase,1.0,0 -20772968,"Sonic Generations",play,0.5,0 -20772968,"Half-Life 2",purchase,1.0,0 -20772968,"Half-Life 2",play,0.3,0 -20772968,"Terraria",purchase,1.0,0 -20772968,"Terraria",play,0.3,0 -20772968,"Alien Swarm",purchase,1.0,0 -20772968,"Alien Swarm",play,0.3,0 -20772968,"Fallout New Vegas",purchase,1.0,0 -20772968,"Fallout New Vegas",play,0.3,0 -20772968,"Coniclysm",purchase,1.0,0 -20772968,"Coniclysm",play,0.3,0 -20772968,"Crysis 2 Maximum Edition",purchase,1.0,0 -20772968,"Crysis 2 Maximum Edition",play,0.3,0 -20772968,"Tidalis",purchase,1.0,0 -20772968,"Tidalis",play,0.3,0 -20772968,"Max Payne",purchase,1.0,0 -20772968,"Max Payne",play,0.2,0 -20772968,"Counter-Strike",purchase,1.0,0 -20772968,"Counter-Strike",play,0.2,0 -20772968,"Wasteland 1 - The Original Classic",purchase,1.0,0 -20772968,"Wasteland 1 - The Original Classic",play,0.2,0 -20772968,"SiN Episodes Emergence",purchase,1.0,0 -20772968,"SiN Episodes Emergence",play,0.2,0 -20772968,"Booster Trooper",purchase,1.0,0 -20772968,"Booster Trooper",play,0.2,0 -20772968,"The Polynomial",purchase,1.0,0 -20772968,"The Polynomial",play,0.1,0 -20772968,"Alien Shooter Revisited",purchase,1.0,0 -20772968,"Alien Shooter Revisited",play,0.1,0 -20772968,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -20772968,"Burnout Paradise The Ultimate Box",play,0.1,0 -20772968,"Garry's Mod",purchase,1.0,0 -20772968,"Serious Sam HD The First Encounter",purchase,1.0,0 -20772968,"Heroes of Might & Magic V",purchase,1.0,0 -20772968,"Spore",purchase,1.0,0 -20772968,"Day of Defeat Source",purchase,1.0,0 -20772968,"The Chronicles of Riddick Assault on Dark Athena",purchase,1.0,0 -20772968,"QuantZ",purchase,1.0,0 -20772968,"Painkiller Gold Edition",purchase,1.0,0 -20772968,"Counter-Strike Condition Zero",purchase,1.0,0 -20772968,"The Ship",purchase,1.0,0 -20772968,"SiN",purchase,1.0,0 -20772968,"Team Fortress Classic",purchase,1.0,0 -20772968,"Orcs Must Die!",purchase,1.0,0 -20772968,"X-COM UFO Defense",purchase,1.0,0 -20772968,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -20772968,"Star Wars Knights of the Old Republic",purchase,1.0,0 -20772968,"Command and Conquer 3 Tiberium Wars",purchase,1.0,0 -20772968,"Trials 2 Second Edition",purchase,1.0,0 -20772968,"7 Wonders Ancient Alien Makeover",purchase,1.0,0 -20772968,"8BitBoy",purchase,1.0,0 -20772968,"Age of Empires II HD The Forgotten",purchase,1.0,0 -20772968,"Age of Empires III Complete Collection",purchase,1.0,0 -20772968,"Age of Wonders III",purchase,1.0,0 -20772968,"Alice Madness Returns",purchase,1.0,0 -20772968,"Alien Breed Impact",purchase,1.0,0 -20772968,"Aliens Colonial Marines",purchase,1.0,0 -20772968,"Alien Shooter",purchase,1.0,0 -20772968,"Alien Shooter 2 Reloaded",purchase,1.0,0 -20772968,"Aliens versus Predator Classic 2000",purchase,1.0,0 -20772968,"Aliens vs. Predator",purchase,1.0,0 -20772968,"Alpha Protocol",purchase,1.0,0 -20772968,"Anno 2070",purchase,1.0,0 -20772968,"Anomaly 2",purchase,1.0,0 -20772968,"Anomaly 2 Soundtrack",purchase,1.0,0 -20772968,"Anomaly Defenders",purchase,1.0,0 -20772968,"Anomaly Korea",purchase,1.0,0 -20772968,"Anomaly Warzone Earth Mobile Campaign",purchase,1.0,0 -20772968,"AquaNox",purchase,1.0,0 -20772968,"AquaNox 2 Revelation",purchase,1.0,0 -20772968,"Assassin's Creed",purchase,1.0,0 -20772968,"Assassin's Creed Brotherhood",purchase,1.0,0 -20772968,"Assassin's Creed Freedom Cry",purchase,1.0,0 -20772968,"Assassin's Creed II",purchase,1.0,0 -20772968,"Assassin's Creed IV Black Flag",purchase,1.0,0 -20772968,"Assassin's Creed Revelations",purchase,1.0,0 -20772968,"Assassin's Creed III",purchase,1.0,0 -20772968,"A Vampyre Story",purchase,1.0,0 -20772968,"Avencast",purchase,1.0,0 -20772968,"Aveyond 3-2 Gates of Night",purchase,1.0,0 -20772968,"Awesomenauts",purchase,1.0,0 -20772968,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -20772968,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -20772968,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -20772968,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -20772968,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -20772968,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -20772968,"Baldur's Gate II Enhanced Edition",purchase,1.0,0 -20772968,"Batman Arkham Asylum",purchase,1.0,0 -20772968,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -20772968,"Batman Arkham City GOTY",purchase,1.0,0 -20772968,"Batman Arkham City",purchase,1.0,0 -20772968,"Batman Arkham Origins",purchase,1.0,0 -20772968,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -20772968,"Bejeweled 3",purchase,1.0,0 -20772968,"Ben There, Dan That!",purchase,1.0,0 -20772968,"Beyond Divinity",purchase,1.0,0 -20772968,"Beyond Good & Evil",purchase,1.0,0 -20772968,"Bionic Dues",purchase,1.0,0 -20772968,"BioShock 2",purchase,1.0,0 -20772968,"BioShock Infinite",purchase,1.0,0 -20772968,"Blood Omen 2 Legacy of Kain",purchase,1.0,0 -20772968,"BloodRayne Betrayal",purchase,1.0,0 -20772968,"Blur",purchase,1.0,0 -20772968,"Borderlands 2",purchase,1.0,0 -20772968,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -20772968,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -20772968,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -20772968,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -20772968,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -20772968,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -20772968,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -20772968,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -20772968,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -20772968,"Breath of Death VII ",purchase,1.0,0 -20772968,"Brothers - A Tale of Two Sons",purchase,1.0,0 -20772968,"Bulletstorm",purchase,1.0,0 -20772968,"Bully Scholarship Edition",purchase,1.0,0 -20772968,"Call of Juarez Bound in Blood",purchase,1.0,0 -20772968,"Call of Juarez Gunslinger",purchase,1.0,0 -20772968,"Carmageddon Reincarnation",purchase,1.0,0 -20772968,"Carmageddon TDR 2000",purchase,1.0,0 -20772968,"Chains",purchase,1.0,0 -20772968,"Chaser",purchase,1.0,0 -20772968,"Child of Light",purchase,1.0,0 -20772968,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -20772968,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -20772968,"Command and Conquer Red Alert 3",purchase,1.0,0 -20772968,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -20772968,"Commander Keen Complete Pack",purchase,1.0,0 -20772968,"Commandos 2 Men of Courage",purchase,1.0,0 -20772968,"Commandos 3 Destination Berlin",purchase,1.0,0 -20772968,"Commandos Behind Enemy Lines",purchase,1.0,0 -20772968,"Commandos Beyond the Call of Duty",purchase,1.0,0 -20772968,"Company of Heroes",purchase,1.0,0 -20772968,"Company of Heroes (New Steam Version)",purchase,1.0,0 -20772968,"Company of Heroes 2",purchase,1.0,0 -20772968,"Company of Heroes 2 - Ardennes Assault",purchase,1.0,0 -20772968,"Company of Heroes Opposing Fronts",purchase,1.0,0 -20772968,"Company of Heroes Tales of Valor",purchase,1.0,0 -20772968,"Cook, Serve, Delicious!",purchase,1.0,0 -20772968,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -20772968,"Crash Time II",purchase,1.0,0 -20772968,"Crimsonland",purchase,1.0,0 -20772968,"Crusader Kings II",purchase,1.0,0 -20772968,"Crysis",purchase,1.0,0 -20772968,"Crysis Warhead",purchase,1.0,0 -20772968,"Crysis Wars",purchase,1.0,0 -20772968,"Cult of the Wind",purchase,1.0,0 -20772968,"Darkest Hour Europe '44-'45",purchase,1.0,0 -20772968,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -20772968,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -20772968,"Darksiders",purchase,1.0,0 -20772968,"Darksiders II",purchase,1.0,0 -20772968,"Darksiders II Deathinitive Edition",purchase,1.0,0 -20772968,"DarkStar One",purchase,1.0,0 -20772968,"Darwinia",purchase,1.0,0 -20772968,"Dead Island Riptide",purchase,1.0,0 -20772968,"Dead Rising 2",purchase,1.0,0 -20772968,"Dead Space",purchase,1.0,0 -20772968,"Dead Space 2",purchase,1.0,0 -20772968,"Deathmatch Classic",purchase,1.0,0 -20772968,"DEFCON",purchase,1.0,0 -20772968,"Defender's Quest Valley of the Forgotten",purchase,1.0,0 -20772968,"Defense Grid 2",purchase,1.0,0 -20772968,"Defense Grid 2 A Matter of Endurance",purchase,1.0,0 -20772968,"Deus Ex Game of the Year Edition",purchase,1.0,0 -20772968,"Deus Ex Human Revolution",purchase,1.0,0 -20772968,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -20772968,"Deus Ex Invisible War",purchase,1.0,0 -20772968,"Deus Ex Revision",purchase,1.0,0 -20772968,"Dino D-Day",purchase,1.0,0 -20772968,"DiRT 2",purchase,1.0,0 -20772968,"DiRT Showdown",purchase,1.0,0 -20772968,"Dishonored",purchase,1.0,0 -20772968,"Divine Divinity",purchase,1.0,0 -20772968,"Divinity II - The Dragon Knight Saga",purchase,1.0,0 -20772968,"Divinity II Developer's Cut",purchase,1.0,0 -20772968,"DogFighter",purchase,1.0,0 -20772968,"DOOM 3",purchase,1.0,0 -20772968,"DOOM 3 Resurrection of Evil",purchase,1.0,0 -20772968,"DOOM II Hell on Earth",purchase,1.0,0 -20772968,"Dragon Age Origins",purchase,1.0,0 -20772968,"Dragon Age Origins - Ultimate Edition",purchase,1.0,0 -20772968,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -20772968,"DUNGEONS - Steam Special Edition",purchase,1.0,0 -20772968,"DUNGEONS - The Dark Lord (Steam Special Edition)",purchase,1.0,0 -20772968,"Eador. Masters of the Broken World",purchase,1.0,0 -20772968,"Earth 2150 Trilogy",purchase,1.0,0 -20772968,"Earth 2150 Lost Souls",purchase,1.0,0 -20772968,"Earth 2150 The Moon Project",purchase,1.0,0 -20772968,"Earth 2160",purchase,1.0,0 -20772968,"EDGE",purchase,1.0,0 -20772968,"Eets Munchies",purchase,1.0,0 -20772968,"Endless Space",purchase,1.0,0 -20772968,"Enemy Mind",purchase,1.0,0 -20772968,"F.E.A.R.",purchase,1.0,0 -20772968,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -20772968,"F.E.A.R. 3",purchase,1.0,0 -20772968,"F.E.A.R. Extraction Point",purchase,1.0,0 -20772968,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -20772968,"Fable - The Lost Chapters",purchase,1.0,0 -20772968,"Fable Anniversary",purchase,1.0,0 -20772968,"Fable III",purchase,1.0,0 -20772968,"Fallen Enchantress Legendary Heroes",purchase,1.0,0 -20772968,"Fallout",purchase,1.0,0 -20772968,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -20772968,"Fallout New Vegas Dead Money",purchase,1.0,0 -20772968,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -20772968,"Fallout Tactics",purchase,1.0,0 -20772968,"Far Cry",purchase,1.0,0 -20772968,"Far Cry 2",purchase,1.0,0 -20772968,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -20772968,"Far Cry 3",purchase,1.0,0 -20772968,"Far Cry 3 Blood Dragon",purchase,1.0,0 -20772968,"Final DOOM",purchase,1.0,0 -20772968,"FINAL FANTASY VII",purchase,1.0,0 -20772968,"FINAL FANTASY VIII",purchase,1.0,0 -20772968,"FlatOut",purchase,1.0,0 -20772968,"FlatOut 2",purchase,1.0,0 -20772968,"Flight Control HD",purchase,1.0,0 -20772968,"Freedom Force",purchase,1.0,0 -20772968,"Freedom Force vs. the 3rd Reich",purchase,1.0,0 -20772968,"Frontlines Fuel of War",purchase,1.0,0 -20772968,"FUEL",purchase,1.0,0 -20772968,"Ghostbusters The Video Game",purchase,1.0,0 -20772968,"Goat Simulator",purchase,1.0,0 -20772968,"Gothic",purchase,1.0,0 -20772968,"Gothic 3",purchase,1.0,0 -20772968,"Gothic II Gold Edition",purchase,1.0,0 -20772968,"Grand Theft Auto",purchase,1.0,0 -20772968,"Grand Theft Auto 2",purchase,1.0,0 -20772968,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -20772968,"Grand Theft Auto San Andreas",purchase,1.0,0 -20772968,"Grand Theft Auto Vice City",purchase,1.0,0 -20772968,"Grand Theft Auto Vice City",purchase,1.0,0 -20772968,"Grand Theft Auto III",purchase,1.0,0 -20772968,"Grand Theft Auto III",purchase,1.0,0 -20772968,"GRID 2",purchase,1.0,0 -20772968,"GRID 2 GTR Racing Pack",purchase,1.0,0 -20772968,"GRID Autosport",purchase,1.0,0 -20772968,"GTR Evolution",purchase,1.0,0 -20772968,"Guild Wars",purchase,1.0,0 -20772968,"Guild Wars Trilogy",purchase,1.0,0 -20772968,"GUN",purchase,1.0,0 -20772968,"Gun Monkeys",purchase,1.0,0 -20772968,"Half-Life",purchase,1.0,0 -20772968,"Half-Life 2 Deathmatch",purchase,1.0,0 -20772968,"Half-Life 2 Episode One",purchase,1.0,0 -20772968,"Half-Life Blue Shift",purchase,1.0,0 -20772968,"Half-Life Opposing Force",purchase,1.0,0 -20772968,"Half-Life Source",purchase,1.0,0 -20772968,"Half-Life Deathmatch Source",purchase,1.0,0 -20772968,"Halo Spartan Assault",purchase,1.0,0 -20772968,"Halo Spartan Strike",purchase,1.0,0 -20772968,"Heretic Shadow of the Serpent Riders",purchase,1.0,0 -20772968,"Heroes of Might & Magic V Hammers of Fate",purchase,1.0,0 -20772968,"Heroes of Might & Magic V Tribes of the East",purchase,1.0,0 -20772968,"Hero Siege - The Karp of Doom (Digital Collector's Edition)",purchase,1.0,0 -20772968,"HeXen Beyond Heretic",purchase,1.0,0 -20772968,"HeXen Deathkings of the Dark Citadel",purchase,1.0,0 -20772968,"HeXen II",purchase,1.0,0 -20772968,"HOARD",purchase,1.0,0 -20772968,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -20772968,"Jade Empire Special Edition",purchase,1.0,0 -20772968,"Jagged Alliance 2 Gold Unfinished Business",purchase,1.0,0 -20772968,"Jagged Alliance 2 Gold Pack",purchase,1.0,0 -20772968,"Jagged Alliance Gold",purchase,1.0,0 -20772968,"Just Cause",purchase,1.0,0 -20772968,"Just Cause 2",purchase,1.0,0 -20772968,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -20772968,"Kane & Lynch Dead Men",purchase,1.0,0 -20772968,"King's Bounty Armored Princess",purchase,1.0,0 -20772968,"King's Bounty Crossworlds",purchase,1.0,0 -20772968,"King's Bounty The Legend",purchase,1.0,0 -20772968,"King Arthur - The Role-playing Wargame",purchase,1.0,0 -20772968,"Lara Croft and the Guardian of Light",purchase,1.0,0 -20772968,"Legacy of Kain Defiance",purchase,1.0,0 -20772968,"Legacy of Kain Soul Reaver",purchase,1.0,0 -20772968,"Legacy of Kain Soul Reaver 2",purchase,1.0,0 -20772968,"Legend of Grimrock",purchase,1.0,0 -20772968,"Legend of Grimrock 2",purchase,1.0,0 -20772968,"Lego Star Wars Saga",purchase,1.0,0 -20772968,"LIMBO",purchase,1.0,0 -20772968,"Madballs in...Babo Invasion",purchase,1.0,0 -20772968,"Maelstrom",purchase,1.0,0 -20772968,"Mafia II",purchase,1.0,0 -20772968,"Manhunt",purchase,1.0,0 -20772968,"Mare Nostrum",purchase,1.0,0 -20772968,"Mark of the Ninja",purchase,1.0,0 -20772968,"Mark of the Ninja Special Edition DLC",purchase,1.0,0 -20772968,"Master Levels for DOOM II",purchase,1.0,0 -20772968,"Max Payne 2 The Fall of Max Payne",purchase,1.0,0 -20772968,"Max Payne 3",purchase,1.0,0 -20772968,"Medal of Honor Airborne",purchase,1.0,0 -20772968,"Meridian New World",purchase,1.0,0 -20772968,"Meridian Video and Soundtrack",purchase,1.0,0 -20772968,"Metal Drift",purchase,1.0,0 -20772968,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -20772968,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -20772968,"Metro 2033",purchase,1.0,0 -20772968,"Metro 2033 Redux",purchase,1.0,0 -20772968,"Metro Last Light Redux",purchase,1.0,0 -20772968,"Might & Magic Heroes VI",purchase,1.0,0 -20772968,"Mini Ninjas",purchase,1.0,0 -20772968,"Monkey Island 2 Special Edition",purchase,1.0,0 -20772968,"Mortal Kombat Kollection",purchase,1.0,0 -20772968,"Mortal Kombat Komplete Edition",purchase,1.0,0 -20772968,"Mount & Blade Warband",purchase,1.0,0 -20772968,"Mount & Blade Warband - Napoleonic Wars",purchase,1.0,0 -20772968,"Multiwinia",purchase,1.0,0 -20772968,"Nation Red",purchase,1.0,0 -20772968,"Natural Selection 2",purchase,1.0,0 -20772968,"Neverwinter Nights 2 Platinum",purchase,1.0,0 -20772968,"Nexus The Jupiter Incident",purchase,1.0,0 -20772968,"Nosgoth",purchase,1.0,0 -20772968,"Nuclear Dawn",purchase,1.0,0 -20772968,"Oddworld Abe's Exoddus",purchase,1.0,0 -20772968,"Oddworld Abe's Oddysee",purchase,1.0,0 -20772968,"Oddworld Munch's Oddysee",purchase,1.0,0 -20772968,"Oddworld New 'n' Tasty",purchase,1.0,0 -20772968,"Oddworld Stranger's Wrath HD",purchase,1.0,0 -20772968,"One Way Heroics",purchase,1.0,0 -20772968,"Orcs Must Die! 2",purchase,1.0,0 -20772968,"ORION Prelude",purchase,1.0,0 -20772968,"Outlast",purchase,1.0,0 -20772968,"Outlast Whistleblower DLC",purchase,1.0,0 -20772968,"OutRun 2006 Coast 2 Coast",purchase,1.0,0 -20772968,"Overlord",purchase,1.0,0 -20772968,"Overlord Raising Hell",purchase,1.0,0 -20772968,"Overlord II",purchase,1.0,0 -20772968,"PAYDAY The Heist",purchase,1.0,0 -20772968,"Pid ",purchase,1.0,0 -20772968,"Portal Stories Mel",purchase,1.0,0 -20772968,"POSTAL 2",purchase,1.0,0 -20772968,"Prince of Persia",purchase,1.0,0 -20772968,"Prince of Persia The Forgotten Sands",purchase,1.0,0 -20772968,"Prince of Persia The Sands of Time",purchase,1.0,0 -20772968,"Prince of Persia The Two Thrones",purchase,1.0,0 -20772968,"Prince of Persia Warrior Within",purchase,1.0,0 -20772968,"Prototype",purchase,1.0,0 -20772968,"PROTOTYPE 2",purchase,1.0,0 -20772968,"Prototype 2 RADNET Access Pack",purchase,1.0,0 -20772968,"Psychonauts",purchase,1.0,0 -20772968,"Psychonauts Demo",purchase,1.0,0 -20772968,"Quake",purchase,1.0,0 -20772968,"Quake 4",purchase,1.0,0 -20772968,"Quake II",purchase,1.0,0 -20772968,"Quake II Ground Zero",purchase,1.0,0 -20772968,"Quake II The Reckoning",purchase,1.0,0 -20772968,"Quake III Team Arena",purchase,1.0,0 -20772968,"Quake III Arena",purchase,1.0,0 -20772968,"Quake Mission Pack 1 Scourge of Armagon",purchase,1.0,0 -20772968,"Quake Mission Pack 2 Dissolution of Eternity",purchase,1.0,0 -20772968,"RACE 07",purchase,1.0,0 -20772968,"RaceRoom Racing Experience ",purchase,1.0,0 -20772968,"RAGE",purchase,1.0,0 -20772968,"Rayman Origins",purchase,1.0,0 -20772968,"Really Big Sky",purchase,1.0,0 -20772968,"Red Faction",purchase,1.0,0 -20772968,"Red Faction Armageddon",purchase,1.0,0 -20772968,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -20772968,"Red Faction II",purchase,1.0,0 -20772968,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -20772968,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -20772968,"Return to Castle Wolfenstein",purchase,1.0,0 -20772968,"Ricochet",purchase,1.0,0 -20772968,"Risen",purchase,1.0,0 -20772968,"Risen 2 - Dark Waters",purchase,1.0,0 -20772968,"Risen 3 - Titan Lords",purchase,1.0,0 -20772968,"Rise of Nations Extended Edition",purchase,1.0,0 -20772968,"Rise of the Triad",purchase,1.0,0 -20772968,"Rome Total War",purchase,1.0,0 -20772968,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -20772968,"Sacred 2 Gold",purchase,1.0,0 -20772968,"Sacred Gold",purchase,1.0,0 -20772968,"Saints Row The Third",purchase,1.0,0 -20772968,"Samorost 2",purchase,1.0,0 -20772968,"Sanctum",purchase,1.0,0 -20772968,"Scraps Modular Vehicle Combat",purchase,1.0,0 -20772968,"Section 8",purchase,1.0,0 -20772968,"Section 8 Prejudice",purchase,1.0,0 -20772968,"Serious Sam 3 BFE",purchase,1.0,0 -20772968,"Shadowgrounds",purchase,1.0,0 -20772968,"Shadowgrounds Survivor",purchase,1.0,0 -20772968,"Shadowrun Dragonfall",purchase,1.0,0 -20772968,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -20772968,"Shadowrun Returns",purchase,1.0,0 -20772968,"Shadow Warrior",purchase,1.0,0 -20772968,"Shadow Warrior Classic Redux",purchase,1.0,0 -20772968,"Shank",purchase,1.0,0 -20772968,"Shank 2",purchase,1.0,0 -20772968,"Shattered Haven",purchase,1.0,0 -20772968,"Shift 2 Unleashed",purchase,1.0,0 -20772968,"Sid Meier's Civilization III Complete",purchase,1.0,0 -20772968,"Sid Meier's Civilization V",purchase,1.0,0 -20772968,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -20772968,"Sine Mora",purchase,1.0,0 -20772968,"Singularity",purchase,1.0,0 -20772968,"SiN Multiplayer",purchase,1.0,0 -20772968,"Skullgirls",purchase,1.0,0 -20772968,"Skullgirls Endless Beta",purchase,1.0,0 -20772968,"Skyborn",purchase,1.0,0 -20772968,"Sleeping Dogs Definitive Edition",purchase,1.0,0 -20772968,"Sleeping Dogs",purchase,1.0,0 -20772968,"Space Hack",purchase,1.0,0 -20772968,"Space Siege",purchase,1.0,0 -20772968,"SpellForce 2 - Demons of the Past",purchase,1.0,0 -20772968,"SpellForce 2 - Demons of the Past - Soundtrack",purchase,1.0,0 -20772968,"SpellForce 2 - Faith in Destiny",purchase,1.0,0 -20772968,"SpellForce 2 Gold Edition",purchase,1.0,0 -20772968,"SpellForce Platinum Edition",purchase,1.0,0 -20772968,"Spelunky",purchase,1.0,0 -20772968,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -20772968,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -20772968,"Star Wars Dark Forces",purchase,1.0,0 -20772968,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -20772968,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -20772968,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -20772968,"Star Wars Republic Commando",purchase,1.0,0 -20772968,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -20772968,"Street Racing Syndicate",purchase,1.0,0 -20772968,"Strike Suit Infinity",purchase,1.0,0 -20772968,"Strike Suit Zero",purchase,1.0,0 -20772968,"Stronghold Crusader Extreme HD",purchase,1.0,0 -20772968,"Stronghold Crusader HD",purchase,1.0,0 -20772968,"Summoner",purchase,1.0,0 -20772968,"Super Laser Racer",purchase,1.0,0 -20772968,"Supreme Commander",purchase,1.0,0 -20772968,"Supreme Commander 2",purchase,1.0,0 -20772968,"Supreme Commander 2 - Infinite War Battle Pack One",purchase,1.0,0 -20772968,"Supreme Commander Forged Alliance",purchase,1.0,0 -20772968,"Swarm Arena",purchase,1.0,0 -20772968,"System Shock 2",purchase,1.0,0 -20772968,"Tales of Monkey Island Chapter 1 - Launch of the Screaming Narwhal",purchase,1.0,0 -20772968,"Tales of Monkey Island Chapter 2 - The Siege of Spinner Cay ",purchase,1.0,0 -20772968,"Tales of Monkey Island Chapter 3 - Lair of the Leviathan ",purchase,1.0,0 -20772968,"Tales of Monkey Island Chapter 4 - The Trial and Execution of Guybrush Threepwood ",purchase,1.0,0 -20772968,"Tales of Monkey Island Chapter 5 - Rise of the Pirate God",purchase,1.0,0 -20772968,"The Ball",purchase,1.0,0 -20772968,"The Bard's Tale",purchase,1.0,0 -20772968,"The Book of Unwritten Tales",purchase,1.0,0 -20772968,"The Book of Unwritten Tales Extras",purchase,1.0,0 -20772968,"The Bureau XCOM Declassified",purchase,1.0,0 -20772968,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -20772968,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -20772968,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -20772968,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -20772968,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -20772968,"The Incredible Adventures of Van Helsing II",purchase,1.0,0 -20772968,"The Last Remnant",purchase,1.0,0 -20772968,"The Ship Tutorial",purchase,1.0,0 -20772968,"The Ultimate DOOM",purchase,1.0,0 -20772968,"The Whispered World",purchase,1.0,0 -20772968,"The Whispered World Special Edition",purchase,1.0,0 -20772968,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -20772968,"The Witcher Enhanced Edition",purchase,1.0,0 -20772968,"The Witcher Adventure Game",purchase,1.0,0 -20772968,"Time Gentlemen, Please!",purchase,1.0,0 -20772968,"TimeShift",purchase,1.0,0 -20772968,"Titan Quest",purchase,1.0,0 -20772968,"Titan Quest Immortal Throne",purchase,1.0,0 -20772968,"ToCA Race Driver 3",purchase,1.0,0 -20772968,"Toki Tori",purchase,1.0,0 -20772968,"Tomb Raider",purchase,1.0,0 -20772968,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -20772968,"Tomb Raider Anniversary",purchase,1.0,0 -20772968,"Tomb Raider Chronicles",purchase,1.0,0 -20772968,"Tomb Raider Legend",purchase,1.0,0 -20772968,"Tomb Raider The Last Revelation",purchase,1.0,0 -20772968,"Tomb Raider I",purchase,1.0,0 -20772968,"Tomb Raider II",purchase,1.0,0 -20772968,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -20772968,"Tom Clancy's Rainbow Six Vegas 2",purchase,1.0,0 -20772968,"Tom Clancy's Splinter Cell",purchase,1.0,0 -20772968,"Tom Clancy's Splinter Cell Chaos Theory",purchase,1.0,0 -20772968,"Tom Clancy's Splinter Cell Conviction",purchase,1.0,0 -20772968,"Tom Clancy's Splinter Cell Double Agent",purchase,1.0,0 -20772968,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -20772968,"Total War ROME II - Emperor Edition",purchase,1.0,0 -20772968,"Total War SHOGUN 2",purchase,1.0,0 -20772968,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -20772968,"To the Moon",purchase,1.0,0 -20772968,"Transformers War for Cybertron",purchase,1.0,0 -20772968,"Transistor",purchase,1.0,0 -20772968,"Tribes Ascend - Steam Starter Pack",purchase,1.0,0 -20772968,"Tropico 4",purchase,1.0,0 -20772968,"Two Worlds 2 - Pirates of the Flying Fortress ",purchase,1.0,0 -20772968,"Two Worlds II",purchase,1.0,0 -20772968,"UFO Extraterrestrials Gold",purchase,1.0,0 -20772968,"Unepic",purchase,1.0,0 -20772968,"Unreal Gold",purchase,1.0,0 -20772968,"Unreal II The Awakening",purchase,1.0,0 -20772968,"Unreal Tournament Game of the Year Edition",purchase,1.0,0 -20772968,"Uplink",purchase,1.0,0 -20772968,"Van Helsing II Ink Hunt",purchase,1.0,0 -20772968,"Van Helsing II Pigasus",purchase,1.0,0 -20772968,"Viscera Cleanup Detail Shadow Warrior",purchase,1.0,0 -20772968,"Volgarr the Viking",purchase,1.0,0 -20772968,"VVVVVV",purchase,1.0,0 -20772968,"Warhammer 40,000 Space Marine",purchase,1.0,0 -20772968,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -20772968,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -20772968,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -20772968,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -20772968,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -20772968,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -20772968,"Wasteland 2 Director's Cut",purchase,1.0,0 -20772968,"Wild Metal Country",purchase,1.0,0 -20772968,"Wizardry 6 Bane of the Cosmic Forge",purchase,1.0,0 -20772968,"Wizardry 7 Crusaders of the Dark Savant",purchase,1.0,0 -20772968,"Wizardry 8",purchase,1.0,0 -20772968,"Wolfenstein",purchase,1.0,0 -20772968,"Wolfenstein 3D",purchase,1.0,0 -20772968,"Wolfenstein 3D Spear of Destiny",purchase,1.0,0 -20772968,"Wolfenstein The New Order",purchase,1.0,0 -20772968,"Worms Armageddon",purchase,1.0,0 -20772968,"X-COM Apocalypse",purchase,1.0,0 -20772968,"X-COM Enforcer",purchase,1.0,0 -20772968,"X-COM Interceptor",purchase,1.0,0 -20772968,"XCOM Enemy Within",purchase,1.0,0 -20772968,"Zombie Shooter",purchase,1.0,0 -205633878,"Dota 2",purchase,1.0,0 -205633878,"Dota 2",play,2.8,0 -163073929,"Dota 2",purchase,1.0,0 -163073929,"Dota 2",play,15.8,0 -28608870,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -28608870,"Dark Messiah of Might & Magic Multi-Player",play,13.4,0 -28608870,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -180407911,"Commander Keen Complete Pack",purchase,1.0,0 -180407911,"Commander Keen Complete Pack",play,3.5,0 -159651274,"Left 4 Dead 2",purchase,1.0,0 -213854339,"Eastside Hockey Manager",purchase,1.0,0 -213854339,"Eastside Hockey Manager",play,1295.0,0 -213854339,"Franchise Hockey Manager 2014",purchase,1.0,0 -213854339,"Franchise Hockey Manager 2014",play,51.0,0 -213854339,"SimCity 4 Deluxe",purchase,1.0,0 -213854339,"SimCity 4 Deluxe",play,12.0,0 -213854339,"Franchise Hockey Manager 2",purchase,1.0,0 -213854339,"Franchise Hockey Manager 2",play,11.2,0 -39146470,"Far Cry 2",purchase,1.0,0 -39146470,"Far Cry 2",play,25.0,0 -39146470,"Half-Life 2 Episode One",purchase,1.0,0 -39146470,"Half-Life 2 Episode One",play,20.0,0 -39146470,"Half-Life 2 Episode Two",purchase,1.0,0 -39146470,"Half-Life 2 Episode Two",play,14.4,0 -39146470,"Battlefield Bad Company 2",purchase,1.0,0 -39146470,"Battlefield Bad Company 2",play,14.0,0 -39146470,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -39146470,"Plants vs. Zombies Game of the Year",play,6.3,0 -39146470,"Metro 2033",purchase,1.0,0 -39146470,"Metro 2033",play,2.4,0 -39146470,"Left 4 Dead",purchase,1.0,0 -39146470,"Left 4 Dead",play,1.8,0 -39146470,"Star Wars Knights of the Old Republic",purchase,1.0,0 -39146470,"Star Wars Knights of the Old Republic",play,0.3,0 -39146470,"Tom Clancy's Rainbow Six Vegas 2",purchase,1.0,0 -39146470,"Tom Clancy's Rainbow Six Vegas 2",play,0.3,0 -39146470,"BioShock",purchase,1.0,0 -39146470,"BioShock",play,0.3,0 -39146470,"Aliens vs. Predator",purchase,1.0,0 -39146470,"Assassin's Creed",purchase,1.0,0 -39146470,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -39146470,"Borderlands",purchase,1.0,0 -39146470,"Call of Juarez Bound in Blood",purchase,1.0,0 -39146470,"Crazy Taxi",purchase,1.0,0 -39146470,"Dead Space",purchase,1.0,0 -39146470,"DogFighter",purchase,1.0,0 -39146470,"F.E.A.R.",purchase,1.0,0 -39146470,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -39146470,"F.E.A.R. Extraction Point",purchase,1.0,0 -39146470,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -39146470,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -39146470,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -39146470,"Half-Life 2",purchase,1.0,0 -39146470,"Half-Life 2 Lost Coast",purchase,1.0,0 -39146470,"Left 4 Dead 2",purchase,1.0,0 -39146470,"Mass Effect",purchase,1.0,0 -39146470,"Medieval II Total War",purchase,1.0,0 -39146470,"Neverwinter Nights 2 Platinum",purchase,1.0,0 -39146470,"Portal",purchase,1.0,0 -39146470,"S.T.A.L.K.E.R. Shadow of Chernobyl",purchase,1.0,0 -39146470,"SEGA Bass Fishing",purchase,1.0,0 -39146470,"Sid Meier's Civilization IV",purchase,1.0,0 -39146470,"Sid Meier's Civilization IV",purchase,1.0,0 -39146470,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -39146470,"Sid Meier's Civilization IV Beyond the Sword",purchase,1.0,0 -39146470,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -39146470,"Sid Meier's Civilization IV Colonization",purchase,1.0,0 -39146470,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -39146470,"Sid Meier's Civilization IV Warlords",purchase,1.0,0 -39146470,"Sid Meier's Civilization V",purchase,1.0,0 -39146470,"Sonic Adventure DX",purchase,1.0,0 -39146470,"Space Channel 5 Part 2",purchase,1.0,0 -39146470,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -39146470,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -39146470,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -39146470,"Tom Clancy's Splinter Cell Chaos Theory",purchase,1.0,0 -39146470,"To the Moon",purchase,1.0,0 -39146470,"Trine",purchase,1.0,0 -39146470,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -39146470,"Tropico 3 Absolute Power",purchase,1.0,0 -39146470,"You Need A Budget 4 (YNAB)",purchase,1.0,0 -27925556,"Counter-Strike",purchase,1.0,0 -27925556,"Counter-Strike",play,1.6,0 -27925556,"Ricochet",purchase,1.0,0 -27925556,"Counter-Strike Condition Zero",purchase,1.0,0 -27925556,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -27925556,"Day of Defeat",purchase,1.0,0 -27925556,"Deathmatch Classic",purchase,1.0,0 -130931340,"Team Fortress 2",purchase,1.0,0 -130931340,"Team Fortress 2",play,4.1,0 -129647095,"Dota 2",purchase,1.0,0 -129647095,"Dota 2",play,0.8,0 -245352892,"Dota 2",purchase,1.0,0 -245352892,"Dota 2",play,30.0,0 -245352892,"Unturned",purchase,1.0,0 -245352892,"Warframe",purchase,1.0,0 -251197403,"DiRT Rally",purchase,1.0,0 -251197403,"DiRT Rally",play,13.5,0 -251197403,"DCS World",purchase,1.0,0 -47384303,"Mount & Blade",purchase,1.0,0 -47384303,"Mount & Blade",play,163.0,0 -47384303,"Fallout New Vegas",purchase,1.0,0 -47384303,"Fallout New Vegas",play,114.0,0 -47384303,"The Elder Scrolls V Skyrim",purchase,1.0,0 -47384303,"The Elder Scrolls V Skyrim",play,100.0,0 -47384303,"Dota 2",purchase,1.0,0 -47384303,"Dota 2",play,99.0,0 -47384303,"Total War ROME II - Emperor Edition",purchase,1.0,0 -47384303,"Total War ROME II - Emperor Edition",play,93.0,0 -47384303,"Age of Empires Online",purchase,1.0,0 -47384303,"Age of Empires Online",play,76.0,0 -47384303,"Mount & Blade Warband",purchase,1.0,0 -47384303,"Mount & Blade Warband",play,74.0,0 -47384303,"X3 Terran Conflict",purchase,1.0,0 -47384303,"X3 Terran Conflict",play,72.0,0 -47384303,"Sid Meier's Civilization V",purchase,1.0,0 -47384303,"Sid Meier's Civilization V",play,67.0,0 -47384303,"Majesty 2 Collection",purchase,1.0,0 -47384303,"Majesty 2 Collection",play,55.0,0 -47384303,"Blackguards",purchase,1.0,0 -47384303,"Blackguards",play,54.0,0 -47384303,"Champions Online",purchase,1.0,0 -47384303,"Champions Online",play,53.0,0 -47384303,"Anno 2070",purchase,1.0,0 -47384303,"Anno 2070",play,50.0,0 -47384303,"Might & Magic X - Legacy ",purchase,1.0,0 -47384303,"Might & Magic X - Legacy ",play,47.0,0 -47384303,"Tropico 4",purchase,1.0,0 -47384303,"Tropico 4",play,46.0,0 -47384303,"Dawn of Discovery - Venice",purchase,1.0,0 -47384303,"Dawn of Discovery - Venice",play,44.0,0 -47384303,"StarDrive",purchase,1.0,0 -47384303,"StarDrive",play,39.0,0 -47384303,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -47384303,"Kingdoms of Amalur Reckoning",play,38.0,0 -47384303,"XCOM Enemy Unknown",purchase,1.0,0 -47384303,"XCOM Enemy Unknown",play,37.0,0 -47384303,"Legends of Eisenwald",purchase,1.0,0 -47384303,"Legends of Eisenwald",play,36.0,0 -47384303,"Might & Magic Clash of Heroes",purchase,1.0,0 -47384303,"Might & Magic Clash of Heroes",play,34.0,0 -47384303,"Omerta - City of Gangsters",purchase,1.0,0 -47384303,"Omerta - City of Gangsters",play,31.0,0 -47384303,"Risen",purchase,1.0,0 -47384303,"Risen",play,29.0,0 -47384303,"Total War SHOGUN 2",purchase,1.0,0 -47384303,"Total War SHOGUN 2",play,27.0,0 -47384303,"Fallen Enchantress",purchase,1.0,0 -47384303,"Fallen Enchantress",play,26.0,0 -47384303,"Far Cry 4",purchase,1.0,0 -47384303,"Far Cry 4",play,25.0,0 -47384303,"Fallout 4",purchase,1.0,0 -47384303,"Fallout 4",play,23.0,0 -47384303,"Magic Duels",purchase,1.0,0 -47384303,"Magic Duels",play,22.0,0 -47384303,"War of the Roses",purchase,1.0,0 -47384303,"War of the Roses",play,18.2,0 -47384303,"Orcs Must Die!",purchase,1.0,0 -47384303,"Orcs Must Die!",play,16.7,0 -47384303,"Magicka",purchase,1.0,0 -47384303,"Magicka",play,16.2,0 -47384303,"The Banner Saga",purchase,1.0,0 -47384303,"The Banner Saga",play,15.6,0 -47384303,"Mount & Blade With Fire and Sword",purchase,1.0,0 -47384303,"Mount & Blade With Fire and Sword",play,15.5,0 -47384303,"Wolfenstein The New Order",purchase,1.0,0 -47384303,"Wolfenstein The New Order",play,15.0,0 -47384303,"King's Bounty The Legend",purchase,1.0,0 -47384303,"King's Bounty The Legend",play,15.0,0 -47384303,"War for the Overworld",purchase,1.0,0 -47384303,"War for the Overworld",play,14.7,0 -47384303,"Age of Wonders III",purchase,1.0,0 -47384303,"Age of Wonders III",play,14.4,0 -47384303,"Max Payne 3",purchase,1.0,0 -47384303,"Max Payne 3",play,14.4,0 -47384303,"Crusader Kings II",purchase,1.0,0 -47384303,"Crusader Kings II",play,14.2,0 -47384303,"Mafia II",purchase,1.0,0 -47384303,"Mafia II",play,12.2,0 -47384303,"CastleStorm",purchase,1.0,0 -47384303,"CastleStorm",play,12.0,0 -47384303,"King Arthur - The Role-playing Wargame",purchase,1.0,0 -47384303,"King Arthur - The Role-playing Wargame",play,11.8,0 -47384303,"Empire Total War",purchase,1.0,0 -47384303,"Empire Total War",play,11.6,0 -47384303,"Savage Lands",purchase,1.0,0 -47384303,"Savage Lands",play,11.6,0 -47384303,"Might & Magic Heroes VI",purchase,1.0,0 -47384303,"Might & Magic Heroes VI",play,11.3,0 -47384303,"Mass Effect",purchase,1.0,0 -47384303,"Mass Effect",play,11.1,0 -47384303,"Total War ATTILA",purchase,1.0,0 -47384303,"Total War ATTILA",play,10.7,0 -47384303,"Wargame AirLand Battle",purchase,1.0,0 -47384303,"Wargame AirLand Battle",play,9.9,0 -47384303,"Ryse Son of Rome",purchase,1.0,0 -47384303,"Ryse Son of Rome",play,9.8,0 -47384303,"Trine",purchase,1.0,0 -47384303,"Trine",play,9.7,0 -47384303,"Command and Conquer 3 Tiberium Wars",purchase,1.0,0 -47384303,"Command and Conquer 3 Tiberium Wars",play,9.1,0 -47384303,"Terraria",purchase,1.0,0 -47384303,"Terraria",play,8.9,0 -47384303,"Divinity II - Ego Draconis",purchase,1.0,0 -47384303,"Divinity II - Ego Draconis",play,8.9,0 -47384303,"Warlock - Master of the Arcane",purchase,1.0,0 -47384303,"Warlock - Master of the Arcane",play,8.5,0 -47384303,"The Settlers 7 Paths to a Kingdom",purchase,1.0,0 -47384303,"The Settlers 7 Paths to a Kingdom",play,8.4,0 -47384303,"Torchlight II",purchase,1.0,0 -47384303,"Torchlight II",play,8.4,0 -47384303,"Sid Meier's Civilization Beyond Earth",purchase,1.0,0 -47384303,"Sid Meier's Civilization Beyond Earth",play,7.9,0 -47384303,"Kohan Immortal Sovereigns",purchase,1.0,0 -47384303,"Kohan Immortal Sovereigns",play,7.9,0 -47384303,"Legend of Grimrock",purchase,1.0,0 -47384303,"Legend of Grimrock",play,7.7,0 -47384303,"Banished",purchase,1.0,0 -47384303,"Banished",play,7.6,0 -47384303,"Overlord",purchase,1.0,0 -47384303,"Overlord",play,6.1,0 -47384303,"Total War Battles SHOGUN",purchase,1.0,0 -47384303,"Total War Battles SHOGUN",play,4.5,0 -47384303,"Crysis Warhead",purchase,1.0,0 -47384303,"Crysis Warhead",play,4.4,0 -47384303,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -47384303,"SEGA Genesis & Mega Drive Classics",play,4.1,0 -47384303,"Assassin's Creed II",purchase,1.0,0 -47384303,"Assassin's Creed II",play,4.1,0 -47384303,"Grand Ages Medieval",purchase,1.0,0 -47384303,"Grand Ages Medieval",play,3.8,0 -47384303,"Age of Empires II HD Edition",purchase,1.0,0 -47384303,"Age of Empires II HD Edition",play,3.4,0 -47384303,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -47384303,"Warhammer 40,000 Dawn of War II",play,3.0,0 -47384303,"Wasteland 2",purchase,1.0,0 -47384303,"Wasteland 2",play,3.0,0 -47384303,"Dungeon Defenders",purchase,1.0,0 -47384303,"Dungeon Defenders",play,3.0,0 -47384303,"Avadon 2 The Corruption",purchase,1.0,0 -47384303,"Avadon 2 The Corruption",play,2.9,0 -47384303,"Disciples III Renaissance",purchase,1.0,0 -47384303,"Disciples III Renaissance",play,2.5,0 -47384303,"Borderlands",purchase,1.0,0 -47384303,"Borderlands",play,2.5,0 -47384303,"World of Goo",purchase,1.0,0 -47384303,"World of Goo",play,2.4,0 -47384303,"X3 Albion Prelude",purchase,1.0,0 -47384303,"X3 Albion Prelude",play,2.2,0 -47384303,"RAGE",purchase,1.0,0 -47384303,"RAGE",play,2.1,0 -47384303,"The Witcher Enhanced Edition",purchase,1.0,0 -47384303,"The Witcher Enhanced Edition",play,2.1,0 -47384303,"From Dust",purchase,1.0,0 -47384303,"From Dust",play,2.1,0 -47384303,"Drakensang The River of Time",purchase,1.0,0 -47384303,"Drakensang The River of Time",play,1.8,0 -47384303,"Orcs Must Die! 2",purchase,1.0,0 -47384303,"Orcs Must Die! 2",play,1.8,0 -47384303,"Warmachine Tactics",purchase,1.0,0 -47384303,"Warmachine Tactics",play,1.6,0 -47384303,"RISK Factions",purchase,1.0,0 -47384303,"RISK Factions",play,1.5,0 -47384303,"Fallout Tactics",purchase,1.0,0 -47384303,"Fallout Tactics",play,1.5,0 -47384303,"Chivalry Medieval Warfare",purchase,1.0,0 -47384303,"Chivalry Medieval Warfare",play,1.4,0 -47384303,"Fallout 2",purchase,1.0,0 -47384303,"Fallout 2",play,1.3,0 -47384303,"BioShock",purchase,1.0,0 -47384303,"BioShock",play,0.8,0 -47384303,"Towns",purchase,1.0,0 -47384303,"Towns",play,0.7,0 -47384303,"The Lord of the Rings War in the North",purchase,1.0,0 -47384303,"The Lord of the Rings War in the North",play,0.5,0 -47384303,"Call of Duty Black Ops",purchase,1.0,0 -47384303,"Call of Duty Black Ops",play,0.5,0 -47384303,"Command and Conquer Red Alert 3",purchase,1.0,0 -47384303,"Command and Conquer Red Alert 3",play,0.4,0 -47384303,"ArcaniA",purchase,1.0,0 -47384303,"ArcaniA",play,0.4,0 -47384303,"Battlefield Bad Company 2",purchase,1.0,0 -47384303,"Battlefield Bad Company 2",play,0.4,0 -47384303,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -47384303,"Sins of a Solar Empire Rebellion",play,0.4,0 -47384303,"Kenshi",purchase,1.0,0 -47384303,"Kenshi",play,0.4,0 -47384303,"Dragon Age Origins Character Creator",purchase,1.0,0 -47384303,"Dragon Age Origins Character Creator",play,0.3,0 -47384303,"Disciples II Gallean's Return",purchase,1.0,0 -47384303,"Disciples II Gallean's Return",play,0.2,0 -47384303,"The Walking Dead",purchase,1.0,0 -47384303,"The Walking Dead",play,0.2,0 -47384303,"Disciples II Rise of the Elves",purchase,1.0,0 -47384303,"Disciples II Rise of the Elves",play,0.2,0 -47384303,"SimCity 4 Deluxe",purchase,1.0,0 -47384303,"SimCity 4 Deluxe",play,0.2,0 -47384303,"Breath of Death VII ",purchase,1.0,0 -47384303,"Breath of Death VII ",play,0.2,0 -47384303,"Wolfenstein 3D",purchase,1.0,0 -47384303,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -47384303,"DOOM II Hell on Earth",purchase,1.0,0 -47384303,"Stronghold 2",purchase,1.0,0 -47384303,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -47384303,"Beyond Divinity",purchase,1.0,0 -47384303,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -47384303,"Crysis",purchase,1.0,0 -47384303,"Crysis Wars",purchase,1.0,0 -47384303,"Cthulhu Saves the World ",purchase,1.0,0 -47384303,"Dawn of Discovery",purchase,1.0,0 -47384303,"Dawn of Discovery - Demo",purchase,1.0,0 -47384303,"Divinity II Developer's Cut",purchase,1.0,0 -47384303,"Fallout",purchase,1.0,0 -47384303,"Magicka Wizard's Survival Kit",purchase,1.0,0 -47384303,"Master Levels for DOOM II",purchase,1.0,0 -47384303,"Mortal Kombat Legacy - Ep. 3 Johnny Cage",purchase,1.0,0 -47384303,"Mortal Kombat Legacy - Ep. 4 Kitana & Mileena (Part 1)",purchase,1.0,0 -47384303,"Mortal Kombat Legacy - Ep. 5 Kitana & Mileena (Part 2)",purchase,1.0,0 -47384303,"Mortal Kombat Legacy - Ep. 6 Raiden",purchase,1.0,0 -47384303,"Mortal Kombat Legacy - Ep. 7 Scorpion and Sub-Zero (Part 1)",purchase,1.0,0 -47384303,"Mortal Kombat Legacy - Ep. 8 Scorpion and Sub-Zero (Part 2)",purchase,1.0,0 -47384303,"Mortal Kombat Legacy - Ep. 9 Cyrax & Sektor",purchase,1.0,0 -47384303,"Mortal Kombat Legacy II - Ep. 1 Reunited in Macau",purchase,1.0,0 -47384303,"Mortal Kombat Legacy II - Ep. 2 The Fall of Liu Kang",purchase,1.0,0 -47384303,"Mortal Kombat Legacy II - Ep. 3 Kenshi's Origin",purchase,1.0,0 -47384303,"Mortal Kombat Legacy II - Ep. 4 Kenshi Encounters Ermac",purchase,1.0,0 -47384303,"Mortal Kombat Legacy II - Ep. 5 Kitana and Mileena",purchase,1.0,0 -47384303,"Mortal Kombat Legacy II - Ep. 6 Johnny Cage",purchase,1.0,0 -47384303,"Mortal Kombat Legacy II - Ep. 7 Scorpion and Sub-Zero (Part 1)",purchase,1.0,0 -47384303,"Mortal Kombat Legacy II - Ep. 8 Scorpion and Sub-Zero (Part 2)",purchase,1.0,0 -47384303,"Mortal Kombat Legacy II - Ep. 9 Liu Kang",purchase,1.0,0 -47384303,"Mortal Kombat Legacy II - Ep. 10 Liu Kang and Kung Lao",purchase,1.0,0 -47384303,"Overlord Raising Hell",purchase,1.0,0 -47384303,"Overlord II",purchase,1.0,0 -47384303,"Patch testing for Chivalry",purchase,1.0,0 -47384303,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -47384303,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -47384303,"Stronghold Crusader Extreme HD",purchase,1.0,0 -47384303,"Stronghold Crusader HD",purchase,1.0,0 -47384303,"Stronghold HD",purchase,1.0,0 -47384303,"Stronghold Legends",purchase,1.0,0 -47384303,"The Banner Saga - Mod Content",purchase,1.0,0 -47384303,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -47384303,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -47384303,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -47384303,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -47384303,"War of the Roses Kingmaker",purchase,1.0,0 -47384303,"War of the Roses Balance Beta",purchase,1.0,0 -47384303,"Wasteland 1 - The Original Classic",purchase,1.0,0 -47384303,"Wasteland 2 Director's Cut",purchase,1.0,0 -47384303,"XCOM Enemy Within",purchase,1.0,0 -110174573,"Team Fortress 2",purchase,1.0,0 -110174573,"Team Fortress 2",play,32.0,0 -110174573,"Dota 2",purchase,1.0,0 -110174573,"Dota 2",play,10.7,0 -132191842,"Team Fortress 2",purchase,1.0,0 -132191842,"Team Fortress 2",play,36.0,0 -181576759,"Dota 2",purchase,1.0,0 -181576759,"Dota 2",play,1.1,0 -250159880,"Dota 2",purchase,1.0,0 -250159880,"Dota 2",play,7.6,0 -177213985,"Grand Theft Auto V",purchase,1.0,0 -177213985,"Grand Theft Auto V",play,177.0,0 -177213985,"Warframe",purchase,1.0,0 -177213985,"Warframe",play,140.0,0 -177213985,"Dead Island Epidemic",purchase,1.0,0 -177213985,"Dead Island Epidemic",play,8.2,0 -177213985,"Defiance",purchase,1.0,0 -177213985,"Defiance",play,5.3,0 -177213985,"Serious Sam HD The Second Encounter",purchase,1.0,0 -177213985,"Serious Sam HD The Second Encounter",play,1.9,0 -177213985,"APB Reloaded",purchase,1.0,0 -177213985,"APB Reloaded",play,1.7,0 -177213985,"NEOTOKYO",purchase,1.0,0 -177213985,"NEOTOKYO",play,0.9,0 -177213985,"Rise of Incarnates",purchase,1.0,0 -177213985,"Rise of Incarnates",play,0.5,0 -177213985,"Loadout Campaign Beta",purchase,1.0,0 -177213985,"Loadout Campaign Beta",play,0.3,0 -177213985,"Team Fortress 2",purchase,1.0,0 -177213985,"Team Fortress 2",play,0.3,0 -177213985,"Unturned",purchase,1.0,0 -177213985,"Unturned",play,0.3,0 -177213985,"Divine Souls",purchase,1.0,0 -177213985,"Divine Souls",play,0.2,0 -177213985,"Dizzel",purchase,1.0,0 -177213985,"HIT",purchase,1.0,0 -177213985,"Marvel Heroes 2015",purchase,1.0,0 -177213985,"Neverwinter",purchase,1.0,0 -177213985,"PlanetSide 2",purchase,1.0,0 -114838001,"The Elder Scrolls V Skyrim",purchase,1.0,0 -114838001,"The Elder Scrolls V Skyrim",play,508.0,0 -114838001,"Star Wars The Force Unleashed Ultimate Sith Edition",purchase,1.0,0 -114838001,"Star Wars The Force Unleashed Ultimate Sith Edition",play,32.0,0 -114838001,"Star Wars Jedi Knight Jedi Academy",purchase,1.0,0 -114838001,"Star Wars Jedi Knight Jedi Academy",play,30.0,0 -114838001,"Star Wars The Force Unleashed II",purchase,1.0,0 -114838001,"Star Wars The Force Unleashed II",play,17.7,0 -114838001,"Assassin's Creed",purchase,1.0,0 -114838001,"Assassin's Creed",play,7.3,0 -114838001,"The Witcher Enhanced Edition",purchase,1.0,0 -114838001,"The Witcher Enhanced Edition",play,0.8,0 -114838001,"Medieval II Total War",purchase,1.0,0 -114838001,"Medieval II Total War",play,0.8,0 -114838001,"Star Wars Empire at War Gold",purchase,1.0,0 -114838001,"Star Wars Empire at War Gold",play,0.6,0 -114838001,"Crusader Kings II",purchase,1.0,0 -114838001,"Crusader Kings II",play,0.6,0 -114838001,"Star Wars Starfighter",purchase,1.0,0 -114838001,"Star Wars Starfighter",play,0.1,0 -114838001,"Deus Ex Game of the Year Edition",purchase,1.0,0 -114838001,"Deus Ex Game of the Year Edition",play,0.1,0 -114838001,"Star Wars Knights of the Old Republic",purchase,1.0,0 -114838001,"Assassin's Creed Brotherhood",purchase,1.0,0 -114838001,"Assassin's Creed II",purchase,1.0,0 -114838001,"Assassin's Creed IV Black Flag",purchase,1.0,0 -114838001,"Assassin's Creed Revelations",purchase,1.0,0 -114838001,"Assassin's Creed III",purchase,1.0,0 -114838001,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -114838001,"Deus Ex Invisible War",purchase,1.0,0 -114838001,"Deus Ex The Fall",purchase,1.0,0 -114838001,"Empire Total War",purchase,1.0,0 -114838001,"Napoleon Total War",purchase,1.0,0 -114838001,"Rome Total War",purchase,1.0,0 -114838001,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -114838001,"Star Wars - Battlefront II",purchase,1.0,0 -114838001,"Star Wars - Jedi Knight Mysteries of the Sith",purchase,1.0,0 -114838001,"Star Wars - Jedi Knight II Jedi Outcast",purchase,1.0,0 -114838001,"Star Wars Dark Forces",purchase,1.0,0 -114838001,"Star Wars Jedi Knight Dark Forces II",purchase,1.0,0 -114838001,"Star Wars Republic Commando",purchase,1.0,0 -114838001,"Star Wars The Clone Wars Republic Heroes",purchase,1.0,0 -114838001,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -114838001,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -114838001,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -114838001,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -114838001,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -114838001,"Total War ROME II - Emperor Edition",purchase,1.0,0 -114838001,"Total War SHOGUN 2",purchase,1.0,0 -114838001,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -114838001,"Total War Battles SHOGUN",purchase,1.0,0 -114838001,"Viking Battle for Asgard",purchase,1.0,0 -240046261,"Counter-Strike Global Offensive",purchase,1.0,0 -240046261,"Counter-Strike Global Offensive",play,26.0,0 -208519728,"The Lord of the Rings War in the North",purchase,1.0,0 -208519728,"The Lord of the Rings War in the North",play,8.8,0 -276090576,"Unturned",purchase,1.0,0 -276090576,"Unturned",play,12.5,0 -276090576,"Rocket League",purchase,1.0,0 -276090576,"Rocket League",play,10.5,0 -276090576,"Counter-Strike Global Offensive",purchase,1.0,0 -276090576,"Counter-Strike Global Offensive",play,7.7,0 -276090576,"Dirty Bomb",purchase,1.0,0 -276090576,"Dirty Bomb",play,4.4,0 -276090576,"Block N Load",purchase,1.0,0 -276090576,"Block N Load",play,4.0,0 -276090576,"Aftermath",purchase,1.0,0 -276090576,"Aftermath",play,2.2,0 -276090576,"Trove",purchase,1.0,0 -276090576,"Trove",play,1.4,0 -276090576,"Counter-Strike",purchase,1.0,0 -276090576,"Counter-Strike",play,0.9,0 -276090576,"Dota 2",purchase,1.0,0 -276090576,"Dota 2",play,0.5,0 -276090576,"Team Fortress 2",purchase,1.0,0 -276090576,"Team Fortress 2",play,0.5,0 -276090576,"Heroes of Scene",purchase,1.0,0 -276090576,"Heroes of Scene",play,0.2,0 -276090576,"Soccer Manager 2016",purchase,1.0,0 -276090576,"AdVenture Capitalist",purchase,1.0,0 -276090576,"Robocraft",purchase,1.0,0 -276090576,"Counter-Strike Condition Zero",purchase,1.0,0 -276090576,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -276090576,"Counter-Strike Source",purchase,1.0,0 -276090576,"Warface",purchase,1.0,0 -250988060,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -250988060,"Tom Clancy's Ghost Recon Phantoms - EU",play,8.9,0 -250988060,"World of Guns Gun Disassembly",purchase,1.0,0 -250988060,"World of Guns Gun Disassembly",play,0.8,0 -250988060,"HIT",purchase,1.0,0 -250988060,"RaceRoom Racing Experience ",purchase,1.0,0 -12897088,"Counter-Strike Source",purchase,1.0,0 -12897088,"Counter-Strike Source",play,0.4,0 -12897088,"Half-Life 2",purchase,1.0,0 -12897088,"Half-Life 2 Deathmatch",purchase,1.0,0 -12897088,"Half-Life 2 Lost Coast",purchase,1.0,0 -25831175,"Counter-Strike Source",purchase,1.0,0 -25831175,"Half-Life 2",purchase,1.0,0 -25831175,"Half-Life 2 Deathmatch",purchase,1.0,0 -25831175,"Half-Life 2 Lost Coast",purchase,1.0,0 -25831175,"Half-Life Source",purchase,1.0,0 -25831175,"Half-Life Deathmatch Source",purchase,1.0,0 -238511591,"Dota 2",purchase,1.0,0 -238511591,"Dota 2",play,1.1,0 -269123804,"Nosgoth",purchase,1.0,0 -38885272,"Counter-Strike",purchase,1.0,0 -38885272,"Counter-Strike",play,3.8,0 -38885272,"Counter-Strike Condition Zero",purchase,1.0,0 -38885272,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -186134916,"Unturned",purchase,1.0,0 -186134916,"Warface",purchase,1.0,0 -142409681,"PlanetSide 2",purchase,1.0,0 -142409681,"PlanetSide 2",play,254.0,0 -142409681,"Dota 2",purchase,1.0,0 -142409681,"Dota 2",play,5.1,0 -142409681,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -142409681,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -259854084,"Counter-Strike Global Offensive",purchase,1.0,0 -259854084,"Counter-Strike Global Offensive",play,206.0,0 -259854084,"Dirty Bomb",purchase,1.0,0 -259854084,"Heroes & Generals",purchase,1.0,0 -107417121,"Grand Theft Auto IV",purchase,1.0,0 -107417121,"Grand Theft Auto IV",play,25.0,0 -107417121,"Alan Wake",purchase,1.0,0 -107417121,"Alan Wake",play,11.6,0 -107417121,"Team Fortress 2",purchase,1.0,0 -107417121,"Team Fortress 2",play,5.0,0 -107417121,"Alan Wake's American Nightmare",purchase,1.0,0 -107417121,"Alan Wake's American Nightmare",play,2.6,0 -225637918,"Dota 2",purchase,1.0,0 -225637918,"Dota 2",play,78.0,0 -160965612,"FINAL FANTASY VII",purchase,1.0,0 -160965612,"FINAL FANTASY VII",play,13.5,0 -160965612,"To the Moon",purchase,1.0,0 -160965612,"To the Moon",play,4.1,0 -160965612,"FEZ",purchase,1.0,0 -160965612,"FEZ",play,3.0,0 -160965612,"Braid",purchase,1.0,0 -160965612,"Braid",play,2.7,0 -160965612,"POSTAL 2",purchase,1.0,0 -160965612,"POSTAL 2",play,2.7,0 -160965612,"Super Meat Boy",purchase,1.0,0 -160965612,"Super Meat Boy",play,2.2,0 -160965612,"Stealth Bastard Deluxe",purchase,1.0,0 -160965612,"Stealth Bastard Deluxe",play,1.0,0 -160965612,"Castle Crashers",purchase,1.0,0 -160965612,"Castle Crashers",play,0.2,0 -160965612,"Stealth Bastard Deluxe - The Teleporter Chambers",purchase,1.0,0 -66755246,"Zombie Panic Source",purchase,1.0,0 -66755246,"Zombie Panic Source",play,127.0,0 -66755246,"Synergy",purchase,1.0,0 -66755246,"Synergy",play,22.0,0 -66755246,"Alien Swarm",purchase,1.0,0 -66755246,"Alien Swarm",play,11.9,0 -66755246,"Age of Chivalry",purchase,1.0,0 -66755246,"Age of Chivalry",play,9.7,0 -66755246,"Half-Life 2 Deathmatch",purchase,1.0,0 -66755246,"Half-Life 2 Deathmatch",play,1.4,0 -66755246,"Half-Life 2 Lost Coast",purchase,1.0,0 -66755246,"Archeblade",purchase,1.0,0 -66755246,"C9",purchase,1.0,0 -66755246,"Dead Island Epidemic",purchase,1.0,0 -66755246,"Fallen Earth",purchase,1.0,0 -66755246,"Fistful of Frags",purchase,1.0,0 -66755246,"No More Room in Hell",purchase,1.0,0 -66755246,"Ragnarok Online 2",purchase,1.0,0 -66755246,"Realm of the Mad God",purchase,1.0,0 -66755246,"Royal Quest",purchase,1.0,0 -66755246,"The Expendabros",purchase,1.0,0 -66755246,"The Four Kings Casino and Slots",purchase,1.0,0 -66755246,"Unturned",purchase,1.0,0 -66755246,"WAKFU",purchase,1.0,0 -66755246,"Zombies Monsters Robots",purchase,1.0,0 -76211030,"Half-Life 2 Deathmatch",purchase,1.0,0 -76211030,"Half-Life 2 Deathmatch",play,7.1,0 -76211030,"Call of Duty Black Ops",purchase,1.0,0 -76211030,"Call of Duty Black Ops",play,1.2,0 -76211030,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -76211030,"Call of Duty Black Ops - Multiplayer",play,0.2,0 -76211030,"Football Manager 2012",purchase,1.0,0 -76211030,"Half-Life 2 Lost Coast",purchase,1.0,0 -120514307,"AirMech",purchase,1.0,0 -120514307,"AirMech",play,56.0,0 -120514307,"Infinity Wars - Animated Trading Card Game",purchase,1.0,0 -120514307,"Infinity Wars - Animated Trading Card Game",play,50.0,0 -120514307,"Dota 2",purchase,1.0,0 -120514307,"Dota 2",play,43.0,0 -120514307,"Awesomenauts",purchase,1.0,0 -120514307,"Awesomenauts",play,21.0,0 -120514307,"Magic Duels",purchase,1.0,0 -120514307,"Magic Duels",play,13.5,0 -120514307,"Magicka Wizard Wars",purchase,1.0,0 -120514307,"Magicka Wizard Wars",play,10.6,0 -120514307,"Team Fortress 2",purchase,1.0,0 -120514307,"Team Fortress 2",play,6.9,0 -120514307,"Dungeon Defenders II",purchase,1.0,0 -120514307,"Dungeon Defenders II",play,5.2,0 -120514307,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -120514307,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,0.2,0 -120514307,"Card Hunter",purchase,1.0,0 -120514307,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -244335912,"Transformice",purchase,1.0,0 -244335912,"Transformice",play,474.0,0 -244335912,"Team Fortress 2",purchase,1.0,0 -244335912,"Team Fortress 2",play,80.0,0 -244335912,"AdVenture Capitalist",purchase,1.0,0 -244335912,"AdVenture Capitalist",play,3.0,0 -244335912,"Robocraft",purchase,1.0,0 -244335912,"Robocraft",play,0.8,0 -244335912,"Heroes of SoulCraft",purchase,1.0,0 -244335912,"Heroes of SoulCraft",play,0.3,0 -244335912,"FreeStyle2 Street Basketball",purchase,1.0,0 -244335912,"FreeStyle2 Street Basketball",play,0.2,0 -244335912,"ArcheAge",purchase,1.0,0 -244335912,"ArcheAge",play,0.2,0 -244335912,"Block N Load",purchase,1.0,0 -244335912,"Marvel Heroes 2015",purchase,1.0,0 -203332508,"APB Reloaded",purchase,1.0,0 -203332508,"APB Reloaded",play,1.8,0 -268245436,"Dota 2",purchase,1.0,0 -268245436,"Dota 2",play,1.9,0 -39227796,"Half-Life 2 Deathmatch",purchase,1.0,0 -39227796,"Half-Life 2 Deathmatch",play,0.6,0 -39227796,"Half-Life 2 Lost Coast",purchase,1.0,0 -194872360,"Dota 2",purchase,1.0,0 -194872360,"Dota 2",play,869.0,0 -194872360,"Counter-Strike Global Offensive",purchase,1.0,0 -194872360,"Counter-Strike Global Offensive",play,47.0,0 -194872360,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -194872360,"Tom Clancy's Ghost Recon Phantoms - EU",play,7.2,0 -194872360,"Warframe",purchase,1.0,0 -194872360,"Warframe",play,2.8,0 -194872360,"Team Fortress 2",purchase,1.0,0 -194872360,"Team Fortress 2",play,0.6,0 -194872360,"Gotham City Impostors Free To Play",purchase,1.0,0 -194872360,"Gotham City Impostors Free To Play",play,0.4,0 -194872360,"Heroes & Generals",purchase,1.0,0 -194872360,"theHunter",purchase,1.0,0 -142591675,"Insurgency Modern Infantry Combat",purchase,1.0,0 -142591675,"Insurgency Modern Infantry Combat",play,18.8,0 -142591675,"Team Fortress 2",purchase,1.0,0 -142591675,"Team Fortress 2",play,2.8,0 -142591675,"Serious Sam HD The Second Encounter",purchase,1.0,0 -142591675,"Serious Sam HD The Second Encounter",play,0.2,0 -210656814,"Dota 2",purchase,1.0,0 -210656814,"Dota 2",play,0.9,0 -257081520,"Counter-Strike Global Offensive",purchase,1.0,0 -257081520,"Counter-Strike Global Offensive",play,654.0,0 -274420264,"Realm of the Mad God",purchase,1.0,0 -245306716,"Total War ROME II - Emperor Edition",purchase,1.0,0 -245306716,"Total War ROME II - Emperor Edition",play,7.7,0 -107124497,"Sid Meier's Civilization V",purchase,1.0,0 -107124497,"Sid Meier's Civilization V",play,10.8,0 -107124497,"Warmachine Tactics",purchase,1.0,0 -107124497,"Warmachine Tactics",play,8.2,0 -107124497,"BattleBlock Theater",purchase,1.0,0 -107124497,"BattleBlock Theater",play,3.9,0 -107124497,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -107124497,"The Witcher 2 Assassins of Kings Enhanced Edition",play,2.1,0 -107124497,"Brothers - A Tale of Two Sons",purchase,1.0,0 -107124497,"Brothers - A Tale of Two Sons",play,0.4,0 -107124497,"Trine 2",purchase,1.0,0 -107124497,"Trine 2",play,0.3,0 -107124497,"GRID Autosport",purchase,1.0,0 -107124497,"GRID Autosport",play,0.2,0 -107124497,"Magicka Wizard Wars",purchase,1.0,0 -107124497,"Magicka Wizard Wars",play,0.2,0 -107124497,"Amnesia The Dark Descent",purchase,1.0,0 -107124497,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -107124497,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -204014532,"Dota 2",purchase,1.0,0 -204014532,"Dota 2",play,192.0,0 -204014532,"AirMech",purchase,1.0,0 -204014532,"FreeStyle2 Street Basketball",purchase,1.0,0 -204014532,"GunZ 2 The Second Duel",purchase,1.0,0 -204014532,"Marvel Heroes 2015",purchase,1.0,0 -204014532,"No More Room in Hell",purchase,1.0,0 -204014532,"Ragnarok Online 2",purchase,1.0,0 -204014532,"RIFT",purchase,1.0,0 -204014532,"Robocraft",purchase,1.0,0 -204014532,"theHunter",purchase,1.0,0 -204014532,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -204014532,"Warframe",purchase,1.0,0 -283382726,"Mitos.is The Game",purchase,1.0,0 -283382726,"Mitos.is The Game",play,0.2,0 -283382726,"Codename CURE",purchase,1.0,0 -283382726,"Counter-Strike Nexon Zombies",purchase,1.0,0 -283382726,"Infinite Crisis",purchase,1.0,0 -283382726,"Unturned",purchase,1.0,0 -80511960,"Garry's Mod",purchase,1.0,0 -80511960,"Garry's Mod",play,1418.0,0 -80511960,"Battlefield Bad Company 2",purchase,1.0,0 -80511960,"Battlefield Bad Company 2",play,392.0,0 -80511960,"Counter-Strike Source",purchase,1.0,0 -80511960,"Counter-Strike Source",play,364.0,0 -80511960,"Team Fortress 2",purchase,1.0,0 -80511960,"Team Fortress 2",play,254.0,0 -80511960,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -80511960,"Call of Duty Modern Warfare 3 - Multiplayer",play,228.0,0 -80511960,"Counter-Strike Global Offensive",purchase,1.0,0 -80511960,"Counter-Strike Global Offensive",play,82.0,0 -80511960,"Insurgency",purchase,1.0,0 -80511960,"Insurgency",play,65.0,0 -80511960,"Alien Swarm",purchase,1.0,0 -80511960,"Alien Swarm",play,64.0,0 -80511960,"No More Room in Hell",purchase,1.0,0 -80511960,"No More Room in Hell",play,48.0,0 -80511960,"Left 4 Dead 2",purchase,1.0,0 -80511960,"Left 4 Dead 2",play,43.0,0 -80511960,"Spiral Knights",purchase,1.0,0 -80511960,"Spiral Knights",play,41.0,0 -80511960,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -80511960,"Grand Theft Auto Episodes from Liberty City",play,36.0,0 -80511960,"Call of Duty Modern Warfare 3",purchase,1.0,0 -80511960,"Call of Duty Modern Warfare 3",play,31.0,0 -80511960,"Chivalry Medieval Warfare",purchase,1.0,0 -80511960,"Chivalry Medieval Warfare",play,26.0,0 -80511960,"Tactical Intervention",purchase,1.0,0 -80511960,"Tactical Intervention",play,13.3,0 -80511960,"Day of Defeat Source",purchase,1.0,0 -80511960,"Day of Defeat Source",play,11.6,0 -80511960,"Killing Floor",purchase,1.0,0 -80511960,"Killing Floor",play,11.4,0 -80511960,"Warframe",purchase,1.0,0 -80511960,"Warframe",play,9.9,0 -80511960,"War Thunder",purchase,1.0,0 -80511960,"War Thunder",play,9.4,0 -80511960,"Robocraft",purchase,1.0,0 -80511960,"Robocraft",play,7.3,0 -80511960,"Heroes & Generals",purchase,1.0,0 -80511960,"Heroes & Generals",play,6.8,0 -80511960,"Dragon Nest Europe",purchase,1.0,0 -80511960,"Dragon Nest Europe",play,6.3,0 -80511960,"Unturned",purchase,1.0,0 -80511960,"Unturned",play,5.6,0 -80511960,"Insurgency Modern Infantry Combat",purchase,1.0,0 -80511960,"Insurgency Modern Infantry Combat",play,4.9,0 -80511960,"Loadout",purchase,1.0,0 -80511960,"Loadout",play,4.0,0 -80511960,"Sakura Clicker",purchase,1.0,0 -80511960,"Sakura Clicker",play,4.0,0 -80511960,"Dota 2",purchase,1.0,0 -80511960,"Dota 2",play,3.1,0 -80511960,"Defiance",purchase,1.0,0 -80511960,"Defiance",play,2.9,0 -80511960,"Velvet Sundown",purchase,1.0,0 -80511960,"Velvet Sundown",play,2.8,0 -80511960,"Trapped Dead",purchase,1.0,0 -80511960,"Trapped Dead",play,2.0,0 -80511960,"Eldevin",purchase,1.0,0 -80511960,"Eldevin",play,1.9,0 -80511960,"March of War",purchase,1.0,0 -80511960,"March of War",play,1.8,0 -80511960,"Enemy Front",purchase,1.0,0 -80511960,"Enemy Front",play,1.8,0 -80511960,"Zombie Panic Source",purchase,1.0,0 -80511960,"Zombie Panic Source",play,1.6,0 -80511960,"DC Universe Online",purchase,1.0,0 -80511960,"DC Universe Online",play,1.3,0 -80511960,"War of the Roses",purchase,1.0,0 -80511960,"War of the Roses",play,1.1,0 -80511960,"Pirates, Vikings, & Knights II",purchase,1.0,0 -80511960,"Pirates, Vikings, & Knights II",play,1.0,0 -80511960,"Fallen Earth",purchase,1.0,0 -80511960,"Fallen Earth",play,0.9,0 -80511960,"Frontline Tactics",purchase,1.0,0 -80511960,"Frontline Tactics",play,0.9,0 -80511960,"Dirty Bomb",purchase,1.0,0 -80511960,"Dirty Bomb",play,0.8,0 -80511960,"The Lord of the Rings Online",purchase,1.0,0 -80511960,"The Lord of the Rings Online",play,0.6,0 -80511960,"sZone-Online",purchase,1.0,0 -80511960,"sZone-Online",play,0.6,0 -80511960,"Block N Load",purchase,1.0,0 -80511960,"Block N Load",play,0.4,0 -80511960,"Kings Bounty Legions",purchase,1.0,0 -80511960,"Kings Bounty Legions",play,0.4,0 -80511960,"Everlasting Summer",purchase,1.0,0 -80511960,"Everlasting Summer",play,0.4,0 -80511960,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -80511960,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.4,0 -80511960,"America's Army Proving Grounds",purchase,1.0,0 -80511960,"America's Army Proving Grounds",play,0.4,0 -80511960,"theHunter",purchase,1.0,0 -80511960,"theHunter",play,0.3,0 -80511960,"Fistful of Frags",purchase,1.0,0 -80511960,"Fistful of Frags",play,0.3,0 -80511960,"Haunted Memories",purchase,1.0,0 -80511960,"Haunted Memories",play,0.2,0 -80511960,"Survarium",purchase,1.0,0 -80511960,"Survarium",play,0.1,0 -80511960,"Aftermath",purchase,1.0,0 -80511960,"Aftermath",play,0.1,0 -80511960,"8BitMMO",purchase,1.0,0 -80511960,"8BitMMO",play,0.1,0 -80511960,"Red Crucible Firestorm",purchase,1.0,0 -80511960,"Red Crucible Firestorm",play,0.1,0 -80511960,"Gunscape",purchase,1.0,0 -80511960,"Gunscape",play,0.1,0 -80511960,"Double Action Boogaloo",purchase,1.0,0 -80511960,"Ragnarok",purchase,1.0,0 -80511960,"Wild Warfare",purchase,1.0,0 -80511960,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -80511960,"Blender 2.76b",purchase,1.0,0 -80511960,"Counter-Strike Nexon Zombies",purchase,1.0,0 -80511960,"Gear Up",purchase,1.0,0 -80511960,"Guns and Robots",purchase,1.0,0 -80511960,"Dungeons & Dragons Online",purchase,1.0,0 -80511960,"Marvel Heroes 2015",purchase,1.0,0 -80511960,"WARMODE",purchase,1.0,0 -80511960,"Battlefield Bad Company 2 Vietnam",purchase,1.0,0 -80511960,"Patch testing for Chivalry",purchase,1.0,0 -80511960,"Run and Fire",purchase,1.0,0 -80511960,"Trove",purchase,1.0,0 -17284266,"Team Fortress 2",purchase,1.0,0 -17284266,"Team Fortress 2",play,19.0,0 -17284266,"Counter-Strike Source",purchase,1.0,0 -17284266,"Counter-Strike Source",play,12.3,0 -17284266,"Half-Life 2",purchase,1.0,0 -17284266,"Half-Life 2",play,1.8,0 -17284266,"APB Reloaded",purchase,1.0,0 -17284266,"Half-Life 2 Deathmatch",purchase,1.0,0 -17284266,"Half-Life 2 Lost Coast",purchase,1.0,0 -17284266,"Heroes & Generals",purchase,1.0,0 -17284266,"Magicka Wizard Wars",purchase,1.0,0 -17284266,"March of War",purchase,1.0,0 -17284266,"Nosgoth",purchase,1.0,0 -17284266,"PlanetSide 2",purchase,1.0,0 -17284266,"Ragnarok Online 2",purchase,1.0,0 -17284266,"Sunrider Mask of Arcadius",purchase,1.0,0 -17284266,"Toribash",purchase,1.0,0 -17284266,"Unturned",purchase,1.0,0 -17284266,"Warframe",purchase,1.0,0 -210771203,"GEARCRACK Arena",purchase,1.0,0 -198962605,"Dota 2",purchase,1.0,0 -198962605,"Dota 2",play,183.0,0 -55944717,"Call of Duty Modern Warfare 2",purchase,1.0,0 -55944717,"Call of Duty Modern Warfare 2",play,16.0,0 -55944717,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -55944717,"Call of Duty Modern Warfare 2 - Multiplayer",play,1.3,0 -302394761,"WARMODE",purchase,1.0,0 -302394761,"WARMODE",play,4.5,0 -302394761,"Estranged Act I",purchase,1.0,0 -302394761,"Estranged Act I",play,2.6,0 -302394761,"Codename CURE",purchase,1.0,0 -302394761,"Codename CURE",play,1.5,0 -302394761,"No More Room in Hell",purchase,1.0,0 -302394761,"No More Room in Hell",play,0.9,0 -302394761,"Dirty Bomb",purchase,1.0,0 -302394761,"Dirty Bomb",play,0.4,0 -302394761,"Dota 2",purchase,1.0,0 -302394761,"Dota 2",play,0.1,0 -302394761,"Copa Petrobras de Marcas",purchase,1.0,0 -302394761,"Red Crucible Firestorm",purchase,1.0,0 -302394761,"Heroes & Generals",purchase,1.0,0 -302394761,"World of Guns Gun Disassembly",purchase,1.0,0 -302394761,"America's Army Proving Grounds",purchase,1.0,0 -302394761,"Steel Ocean",purchase,1.0,0 -161411713,"Train Simulator",purchase,1.0,0 -161411713,"Train Simulator",play,60.0,0 -216154835,"Path of Exile",purchase,1.0,0 -216154835,"Path of Exile",play,0.3,0 -216154835,"Unturned",purchase,1.0,0 -216154835,"Unturned",play,0.1,0 -68240622,"Team Fortress 2",purchase,1.0,0 -68240622,"Team Fortress 2",play,214.0,0 -68240622,"Dying Light",purchase,1.0,0 -68240622,"Dying Light",play,50.0,0 -68240622,"Wolfenstein The New Order",purchase,1.0,0 -68240622,"Wolfenstein The New Order",play,27.0,0 -68240622,"Left 4 Dead 2",purchase,1.0,0 -68240622,"Left 4 Dead 2",play,23.0,0 -68240622,"Tomb Raider",purchase,1.0,0 -68240622,"Tomb Raider",play,19.8,0 -68240622,"BioShock Infinite",purchase,1.0,0 -68240622,"BioShock Infinite",play,16.9,0 -68240622,"Metro Last Light",purchase,1.0,0 -68240622,"Metro Last Light",play,13.2,0 -68240622,"Garry's Mod",purchase,1.0,0 -68240622,"Garry's Mod",play,10.0,0 -68240622,"Counter-Strike Global Offensive",purchase,1.0,0 -68240622,"Counter-Strike Global Offensive",play,7.7,0 -68240622,"H1Z1",purchase,1.0,0 -68240622,"H1Z1",play,5.4,0 -68240622,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -68240622,"Call of Duty Advanced Warfare - Multiplayer",play,4.9,0 -68240622,"Call of Duty Advanced Warfare",purchase,1.0,0 -68240622,"Call of Duty Advanced Warfare",play,4.0,0 -68240622,"Sniper Elite V2",purchase,1.0,0 -68240622,"Sniper Elite V2",play,1.1,0 -68240622,"No More Room in Hell",purchase,1.0,0 -68240622,"No More Room in Hell",play,1.0,0 -68240622,"Heroes & Generals",purchase,1.0,0 -68240622,"Heroes & Generals",play,0.2,0 -68240622,"H1Z1 Test Server",purchase,1.0,0 -214425734,"Dota 2",purchase,1.0,0 -214425734,"Dota 2",play,226.0,0 -120342002,"Fallout New Vegas",purchase,1.0,0 -120342002,"Fallout New Vegas",play,45.0,0 -120342002,"Metro 2033",purchase,1.0,0 -181900480,"Tower Wars",purchase,1.0,0 -181900480,"Tower Wars",play,19.1,0 -181900480,"Left 4 Dead 2",purchase,1.0,0 -181900480,"Left 4 Dead 2",play,2.6,0 -181900480,"ORION Prelude",purchase,1.0,0 -181900480,"ORION Prelude",play,1.6,0 -181900480,"Castle Crashers",purchase,1.0,0 -181900480,"Castle Crashers",play,1.4,0 -98663937,"Team Fortress 2",purchase,1.0,0 -98663937,"Team Fortress 2",play,0.8,0 -193103684,"The Elder Scrolls V Skyrim",purchase,1.0,0 -193103684,"The Elder Scrolls V Skyrim",play,164.0,0 -193103684,"Rust",purchase,1.0,0 -193103684,"Rust",play,71.0,0 -193103684,"Neverwinter",purchase,1.0,0 -193103684,"Neverwinter",play,70.0,0 -193103684,"Terraria",purchase,1.0,0 -193103684,"Terraria",play,67.0,0 -193103684,"Counter-Strike Global Offensive",purchase,1.0,0 -193103684,"Counter-Strike Global Offensive",play,58.0,0 -193103684,"Garry's Mod",purchase,1.0,0 -193103684,"Garry's Mod",play,29.0,0 -193103684,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -193103684,"The Elder Scrolls IV Oblivion ",play,15.4,0 -193103684,"Path of Exile",purchase,1.0,0 -193103684,"Path of Exile",play,13.5,0 -193103684,"Unturned",purchase,1.0,0 -193103684,"Unturned",play,5.3,0 -193103684,"Fistful of Frags",purchase,1.0,0 -193103684,"Fistful of Frags",play,4.8,0 -193103684,"Dead Realm",purchase,1.0,0 -193103684,"Dead Realm",play,3.9,0 -193103684,"Game Dev Tycoon",purchase,1.0,0 -193103684,"Game Dev Tycoon",play,3.7,0 -193103684,"Fallout New Vegas",purchase,1.0,0 -193103684,"Fallout New Vegas",play,3.6,0 -193103684,"Primal Carnage",purchase,1.0,0 -193103684,"Primal Carnage",play,2.8,0 -193103684,"Chivalry Medieval Warfare",purchase,1.0,0 -193103684,"Chivalry Medieval Warfare",play,2.4,0 -193103684,"Trove",purchase,1.0,0 -193103684,"Trove",play,1.8,0 -193103684,"Left 4 Dead 2",purchase,1.0,0 -193103684,"Left 4 Dead 2",play,1.6,0 -193103684,"Realm of the Mad God",purchase,1.0,0 -193103684,"Realm of the Mad God",play,0.9,0 -193103684,"Planet Explorers",purchase,1.0,0 -193103684,"Planet Explorers",play,0.9,0 -193103684,"Mortal Online",purchase,1.0,0 -193103684,"Mortal Online",play,0.7,0 -193103684,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -193103684,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.7,0 -193103684,"SMITE",purchase,1.0,0 -193103684,"SMITE",play,0.5,0 -193103684,"The Expendabros",purchase,1.0,0 -193103684,"The Expendabros",play,0.3,0 -193103684,"World of Guns Gun Disassembly",purchase,1.0,0 -193103684,"World of Guns Gun Disassembly",play,0.3,0 -193103684,"Jacob Jones and the Bigfoot Mystery Episode 2",purchase,1.0,0 -193103684,"Jacob Jones and the Bigfoot Mystery Episode 2",play,0.2,0 -193103684,"Transistor",purchase,1.0,0 -193103684,"Transistor",play,0.2,0 -193103684,"Transformice",purchase,1.0,0 -193103684,"Color Symphony",purchase,1.0,0 -193103684,"No More Room in Hell",purchase,1.0,0 -193103684,"8BitMMO",purchase,1.0,0 -193103684,"404Sight",purchase,1.0,0 -193103684,"Alganon",purchase,1.0,0 -193103684,"America's Army 3",purchase,1.0,0 -193103684,"APB Reloaded",purchase,1.0,0 -193103684,"Archeblade",purchase,1.0,0 -193103684,"Aura Kingdom",purchase,1.0,0 -193103684,"Blender 2.76b",purchase,1.0,0 -193103684,"CroNix",purchase,1.0,0 -193103684,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -193103684,"Dead Island Epidemic",purchase,1.0,0 -193103684,"Deepworld",purchase,1.0,0 -193103684,"Defiance",purchase,1.0,0 -193103684,"Dev Guy",purchase,1.0,0 -193103684,"Dragons and Titans",purchase,1.0,0 -193103684,"Dungeon Party",purchase,1.0,0 -193103684,"Dungeons & Dragons Online",purchase,1.0,0 -193103684,"Elsword",purchase,1.0,0 -193103684,"Eternal Senia",purchase,1.0,0 -193103684,"EverQuest Free-to-Play",purchase,1.0,0 -193103684,"Fallen Earth",purchase,1.0,0 -193103684,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -193103684,"Fallout New Vegas Dead Money",purchase,1.0,0 -193103684,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -193103684,"Firefall",purchase,1.0,0 -193103684,"Gotham City Impostors Free To Play",purchase,1.0,0 -193103684,"Guns and Robots",purchase,1.0,0 -193103684,"GunZ 2 The Second Duel",purchase,1.0,0 -193103684,"Happy Wars",purchase,1.0,0 -193103684,"Haunted Memories",purchase,1.0,0 -193103684,"HAWKEN",purchase,1.0,0 -193103684,"Heroes & Generals",purchase,1.0,0 -193103684,"HIT",purchase,1.0,0 -193103684,"Loadout",purchase,1.0,0 -193103684,"Magicka Wizard Wars",purchase,1.0,0 -193103684,"Modular Combat",purchase,1.0,0 -193103684,"Nosgoth",purchase,1.0,0 -193103684,"Patch testing for Chivalry",purchase,1.0,0 -193103684,"PlanetSide 2",purchase,1.0,0 -193103684,"Portal 2",purchase,1.0,0 -193103684,"Pox Nora",purchase,1.0,0 -193103684,"RIFT",purchase,1.0,0 -193103684,"Rise of Incarnates",purchase,1.0,0 -193103684,"Shadow Warrior Classic (1997)",purchase,1.0,0 -193103684,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -193103684,"Strife",purchase,1.0,0 -193103684,"Super Crate Box",purchase,1.0,0 -193103684,"Survarium",purchase,1.0,0 -193103684,"sZone-Online",purchase,1.0,0 -193103684,"Tactical Intervention",purchase,1.0,0 -193103684,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -193103684,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -193103684,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -193103684,"theHunter",purchase,1.0,0 -193103684,"The Lord of the Rings Online",purchase,1.0,0 -193103684,"The Mighty Quest For Epic Loot",purchase,1.0,0 -193103684,"The Plan",purchase,1.0,0 -193103684,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -193103684,"The Witcher Enhanced Edition",purchase,1.0,0 -193103684,"Toribash",purchase,1.0,0 -193103684,"Transistor Soundtrack",purchase,1.0,0 -193103684,"Uncharted Waters Online Gran Atlas",purchase,1.0,0 -193103684,"Undertale",purchase,1.0,0 -193103684,"WAKFU",purchase,1.0,0 -193103684,"Warframe",purchase,1.0,0 -193103684,"Wrath of Athena",purchase,1.0,0 -254739428,"Dota 2",purchase,1.0,0 -254739428,"Dota 2",play,10.2,0 -254739428,"Ragnarok Online 2",purchase,1.0,0 -272300684,"Dota 2",purchase,1.0,0 -272300684,"Dota 2",play,1.1,0 -272300684,"GunZ 2 The Second Duel",purchase,1.0,0 -205995905,"Mount Your Friends",purchase,1.0,0 -205995905,"Don't Starve Together Beta",purchase,1.0,0 -205995905,"Don't Starve",purchase,1.0,0 -192861545,"Guns and Robots",purchase,1.0,0 -192861545,"Guns and Robots",play,8.2,0 -192861545,"Team Fortress 2",purchase,1.0,0 -192861545,"Team Fortress 2",play,7.5,0 -192861545,"Dizzel",purchase,1.0,0 -192861545,"Robocraft",purchase,1.0,0 -192861545,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -192861545,"Unturned",purchase,1.0,0 -192861545,"Warface",purchase,1.0,0 -191377488,"War Thunder",purchase,1.0,0 -191377488,"War Thunder",play,0.6,0 -191377488,"Team Fortress 2",purchase,1.0,0 -191377488,"Team Fortress 2",play,0.6,0 -191377488,"Slender The Arrival",purchase,1.0,0 -191377488,"Slender The Arrival",play,0.2,0 -191377488,"Dota 2",purchase,1.0,0 -191377488,"Dota 2",play,0.2,0 -33023846,"Half-Life 2 Deathmatch",purchase,1.0,0 -33023846,"Half-Life 2 Lost Coast",purchase,1.0,0 -238858519,"Dota 2",purchase,1.0,0 -238858519,"Dota 2",play,29.0,0 -238858519,"FreeStyle2 Street Basketball",purchase,1.0,0 -238858519,"FreeStyle2 Street Basketball",play,0.1,0 -218668551,"Dota 2",purchase,1.0,0 -218668551,"Dota 2",play,2.2,0 -92904111,"Empire Total War",purchase,1.0,0 -92904111,"Empire Total War",play,18.0,0 -92904111,"Total War SHOGUN 2",purchase,1.0,0 -92904111,"Total War SHOGUN 2",play,3.1,0 -92904111,"Day of Defeat",purchase,1.0,0 -92904111,"Day of Defeat",play,1.9,0 -92904111,"Borderlands 2",purchase,1.0,0 -92904111,"Borderlands 2",play,0.3,0 -92904111,"Path of Exile",purchase,1.0,0 -92904111,"Path of Exile",play,0.2,0 -92276000,"Crusader Kings II",purchase,1.0,0 -92276000,"Crusader Kings II",play,208.0,0 -92276000,"Terraria",purchase,1.0,0 -92276000,"Terraria",play,208.0,0 -92276000,"The Elder Scrolls V Skyrim",purchase,1.0,0 -92276000,"The Elder Scrolls V Skyrim",play,165.0,0 -92276000,"Sid Meier's Civilization V",purchase,1.0,0 -92276000,"Sid Meier's Civilization V",play,164.0,0 -92276000,"Europa Universalis IV",purchase,1.0,0 -92276000,"Europa Universalis IV",play,84.0,0 -92276000,"Counter-Strike Global Offensive",purchase,1.0,0 -92276000,"Counter-Strike Global Offensive",play,84.0,0 -92276000,"Starbound",purchase,1.0,0 -92276000,"Starbound",play,61.0,0 -92276000,"Grand Theft Auto V",purchase,1.0,0 -92276000,"Grand Theft Auto V",play,48.0,0 -92276000,"Fallout New Vegas",purchase,1.0,0 -92276000,"Fallout New Vegas",play,25.0,0 -92276000,"Far Cry 3",purchase,1.0,0 -92276000,"Far Cry 3",play,24.0,0 -92276000,"The Witcher Enhanced Edition",purchase,1.0,0 -92276000,"The Witcher Enhanced Edition",play,18.5,0 -92276000,"Saints Row 2",purchase,1.0,0 -92276000,"Saints Row 2",play,17.8,0 -92276000,"Fallout 4",purchase,1.0,0 -92276000,"Fallout 4",play,12.2,0 -92276000,"Knights of Pen and Paper +1",purchase,1.0,0 -92276000,"Knights of Pen and Paper +1",play,10.4,0 -92276000,"Path of Exile",purchase,1.0,0 -92276000,"Path of Exile",play,10.3,0 -92276000,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -92276000,"Baldur's Gate Enhanced Edition",play,10.2,0 -92276000,"Wolfenstein The New Order",purchase,1.0,0 -92276000,"Wolfenstein The New Order",play,4.7,0 -92276000,"The Elder Scrolls III Morrowind",purchase,1.0,0 -92276000,"The Elder Scrolls III Morrowind",play,4.1,0 -92276000,"Age of Wonders III",purchase,1.0,0 -92276000,"Age of Wonders III",play,2.5,0 -92276000,"Shadowrun Returns",purchase,1.0,0 -92276000,"Shadowrun Returns",play,1.7,0 -92276000,"Battle Brothers",purchase,1.0,0 -92276000,"Battle Brothers",play,1.5,0 -92276000,"Left 4 Dead 2",purchase,1.0,0 -92276000,"Left 4 Dead 2",play,0.9,0 -92276000,"Don't Starve",purchase,1.0,0 -92276000,"Don't Starve",play,0.7,0 -92276000,"Crusader Kings II Sons of Abraham",purchase,1.0,0 -92276000,"Don't Starve Reign of Giants",purchase,1.0,0 -92276000,"Don't Starve Together Beta",purchase,1.0,0 -92276000,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -92276000,"Fallout New Vegas Dead Money",purchase,1.0,0 -92276000,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -92276000,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -92276000,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -92276000,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -92276000,"Starbound - Unstable",purchase,1.0,0 -92276000,"The Age of Decadence",purchase,1.0,0 -92276000,"The Witcher 3 Wild Hunt",purchase,1.0,0 -94675519,"Team Fortress 2",purchase,1.0,0 -94675519,"Team Fortress 2",play,0.3,0 -48666962,"Left 4 Dead",purchase,1.0,0 -48666962,"Left 4 Dead",play,259.0,0 -48666962,"Counter-Strike Source",purchase,1.0,0 -48666962,"Counter-Strike Source",play,182.0,0 -48666962,"Assassin's Creed Brotherhood",purchase,1.0,0 -48666962,"Assassin's Creed Brotherhood",play,63.0,0 -48666962,"Garry's Mod",purchase,1.0,0 -48666962,"Garry's Mod",play,61.0,0 -48666962,"Left 4 Dead 2",purchase,1.0,0 -48666962,"Left 4 Dead 2",play,52.0,0 -48666962,"Assassin's Creed II",purchase,1.0,0 -48666962,"Assassin's Creed II",play,45.0,0 -48666962,"Half-Life 2",purchase,1.0,0 -48666962,"Half-Life 2",play,45.0,0 -48666962,"Prototype",purchase,1.0,0 -48666962,"Prototype",play,44.0,0 -48666962,"The Last Remnant",purchase,1.0,0 -48666962,"The Last Remnant",play,32.0,0 -48666962,"Half-Life 2 Episode Two",purchase,1.0,0 -48666962,"Half-Life 2 Episode Two",play,19.5,0 -48666962,"Beat Hazard",purchase,1.0,0 -48666962,"Beat Hazard",play,17.3,0 -48666962,"Medal of Honor Airborne",purchase,1.0,0 -48666962,"Medal of Honor Airborne",play,13.2,0 -48666962,"Age of Empires II HD Edition",purchase,1.0,0 -48666962,"Age of Empires II HD Edition",play,11.1,0 -48666962,"Rust",purchase,1.0,0 -48666962,"Rust",play,9.9,0 -48666962,"Half-Life 2 Episode One",purchase,1.0,0 -48666962,"Half-Life 2 Episode One",play,9.8,0 -48666962,"Plants vs. Zombies Game of the Year",purchase,1.0,0 -48666962,"Plants vs. Zombies Game of the Year",play,9.5,0 -48666962,"Mirror's Edge",purchase,1.0,0 -48666962,"Mirror's Edge",play,8.0,0 -48666962,"Cities XL 2011",purchase,1.0,0 -48666962,"Cities XL 2011",play,7.8,0 -48666962,"Team Fortress 2",purchase,1.0,0 -48666962,"Team Fortress 2",play,6.8,0 -48666962,"Portal",purchase,1.0,0 -48666962,"Portal",play,6.7,0 -48666962,"Alien Swarm",purchase,1.0,0 -48666962,"Alien Swarm",play,3.8,0 -48666962,"Unturned",purchase,1.0,0 -48666962,"Unturned",play,2.3,0 -48666962,"Crysis 2",purchase,1.0,0 -48666962,"Crysis 2",play,2.0,0 -48666962,"No More Room in Hell",purchase,1.0,0 -48666962,"No More Room in Hell",play,2.0,0 -48666962,"EasyAntiCheat eSports",purchase,1.0,0 -48666962,"EasyAntiCheat eSports",play,1.3,0 -48666962,"Half-Life 2 Lost Coast",purchase,1.0,0 -48666962,"Half-Life 2 Lost Coast",play,1.2,0 -48666962,"The Misadventures of P.B. Winterbottom",purchase,1.0,0 -48666962,"The Misadventures of P.B. Winterbottom",play,1.1,0 -48666962,"Fallen Earth",purchase,1.0,0 -48666962,"Fallen Earth",play,0.9,0 -48666962,"Dota 2",purchase,1.0,0 -48666962,"Dota 2",play,0.7,0 -48666962,"Magic Duels",purchase,1.0,0 -48666962,"Magic Duels",play,0.6,0 -48666962,"Zombie Panic Source",purchase,1.0,0 -48666962,"Zombie Panic Source",play,0.4,0 -48666962,"Tiny Bridge Ratventure",purchase,1.0,0 -48666962,"Tiny Bridge Ratventure",play,0.3,0 -48666962,"Half-Life 2 Deathmatch",purchase,1.0,0 -48666962,"Half-Life 2 Deathmatch",play,0.2,0 -48666962,"Age of Empires II HD The Forgotten",purchase,1.0,0 -48666962,"Aliens versus Predator Classic 2000",purchase,1.0,0 -48666962,"Crysis 2",purchase,1.0,0 -199500064,"Dota 2",purchase,1.0,0 -199500064,"Dota 2",play,403.0,0 -199500064,"Aura Kingdom",purchase,1.0,0 -199500064,"Lost Saga North America",purchase,1.0,0 -199500064,"Strife",purchase,1.0,0 -178144284,"Terraria",purchase,1.0,0 -178144284,"Terraria",play,1.5,0 -178144284,"Phantom Breaker Battle Grounds",purchase,1.0,0 -178144284,"Phantom Breaker Battle Grounds",play,0.3,0 -178144284,"Phantom Breaker Battle Grounds - Kurisu Makise + Level 99 Pack",purchase,1.0,0 -234286554,"Dota 2",purchase,1.0,0 -234286554,"Dota 2",play,0.4,0 -234286554,"BLOCKADE 3D",purchase,1.0,0 -234286554,"Eldevin",purchase,1.0,0 -234286554,"The Expendabros",purchase,1.0,0 -234286554,"Toribash",purchase,1.0,0 -234286554,"Unturned",purchase,1.0,0 -100818860,"Killing Floor",purchase,1.0,0 -100818860,"Killing Floor",play,14.9,0 -100818860,"Dota 2",purchase,1.0,0 -100818860,"Dota 2",play,8.2,0 -100818860,"Left 4 Dead 2",purchase,1.0,0 -100818860,"Left 4 Dead 2",play,7.7,0 -100818860,"Saints Row The Third",purchase,1.0,0 -100818860,"Saints Row The Third",play,5.3,0 -100818860,"Team Fortress 2",purchase,1.0,0 -100818860,"Team Fortress 2",play,4.5,0 -100818860,"Dead Island",purchase,1.0,0 -100818860,"Dead Island",play,4.5,0 -100818860,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -100818860,"Burnout Paradise The Ultimate Box",play,2.2,0 -100818860,"Sniper Ghost Warrior",purchase,1.0,0 -100818860,"Sniper Ghost Warrior",play,0.2,0 -100818860,"Arma 2",purchase,1.0,0 -100818860,"Arma 2 Operation Arrowhead",purchase,1.0,0 -100818860,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -100818860,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -45459546,"Counter-Strike",purchase,1.0,0 -45459546,"Counter-Strike",play,71.0,0 -45459546,"Counter-Strike Source",purchase,1.0,0 -45459546,"Counter-Strike Source",play,6.0,0 -45459546,"Counter-Strike Condition Zero",purchase,1.0,0 -45459546,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -209783211,"Counter-Strike Global Offensive",purchase,1.0,0 -209783211,"Counter-Strike Global Offensive",play,14.4,0 -209783211,"Star Conflict",purchase,1.0,0 -209783211,"Unturned",purchase,1.0,0 -139574442,"Dota 2",purchase,1.0,0 -139574442,"Dota 2",play,23.0,0 -215769135,"Jagged Alliance Flashback",purchase,1.0,0 -215769135,"Jagged Alliance Flashback",play,8.2,0 -59773143,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -59773143,"Call of Duty Modern Warfare 2 - Multiplayer",play,235.0,0 -59773143,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -59773143,"Call of Duty Black Ops - Multiplayer",play,137.0,0 -59773143,"Team Fortress 2",purchase,1.0,0 -59773143,"Team Fortress 2",play,17.1,0 -59773143,"Call of Duty Modern Warfare 2",purchase,1.0,0 -59773143,"Call of Duty Modern Warfare 2",play,7.8,0 -59773143,"Half-Life 2",purchase,1.0,0 -59773143,"Half-Life 2",play,0.4,0 -59773143,"Call of Duty Black Ops",purchase,1.0,0 -59773143,"Call of Duty Black Ops",play,0.2,0 -59773143,"Football Manager 2011",purchase,1.0,0 -59773143,"Half-Life 2 Episode One",purchase,1.0,0 -59773143,"Half-Life 2 Episode Two",purchase,1.0,0 -59773143,"Half-Life 2 Lost Coast",purchase,1.0,0 -59773143,"Portal",purchase,1.0,0 -219775534,"Don't Starve",purchase,1.0,0 -219775534,"Don't Starve",play,140.0,0 -219775534,"Five Nights at Freddy's",purchase,1.0,0 -219775534,"Five Nights at Freddy's",play,2.7,0 -219775534,"Don't Starve Reign of Giants",purchase,1.0,0 -219775534,"Don't Starve Together Beta",purchase,1.0,0 -62666911,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -62666911,"Call of Duty Modern Warfare 3 - Multiplayer",play,218.0,0 -62666911,"Call of Duty Modern Warfare 3",purchase,1.0,0 -62666911,"Call of Duty Modern Warfare 3",play,7.4,0 -140086587,"Dota 2",purchase,1.0,0 -140086587,"Dota 2",play,198.0,0 -140086587,"Fiesta Online NA",purchase,1.0,0 -140086587,"Free to Play",purchase,1.0,0 -140086587,"GunZ 2 The Second Duel",purchase,1.0,0 -140086587,"Marvel Heroes 2015",purchase,1.0,0 -140086587,"Ragnarok Online 2",purchase,1.0,0 -140086587,"ROSE Online",purchase,1.0,0 -140086587,"Warframe",purchase,1.0,0 -14421986,"Counter-Strike",purchase,1.0,0 -14421986,"Day of Defeat",purchase,1.0,0 -14421986,"Deathmatch Classic",purchase,1.0,0 -14421986,"Half-Life",purchase,1.0,0 -14421986,"Half-Life Blue Shift",purchase,1.0,0 -14421986,"Half-Life Opposing Force",purchase,1.0,0 -14421986,"Ricochet",purchase,1.0,0 -14421986,"Team Fortress Classic",purchase,1.0,0 -198605042,"Counter-Strike Global Offensive",purchase,1.0,0 -198605042,"Counter-Strike Global Offensive",play,232.0,0 -198605042,"Team Fortress 2",purchase,1.0,0 -198605042,"Team Fortress 2",play,2.2,0 -198605042,"Fistful of Frags",purchase,1.0,0 -198605042,"Golden Rush",purchase,1.0,0 -198605042,"Just Cause",purchase,1.0,0 -198605042,"Just Cause 2",purchase,1.0,0 -198605042,"March of War",purchase,1.0,0 -198605042,"Marvel Heroes 2015",purchase,1.0,0 -198605042,"Red Crucible Firestorm",purchase,1.0,0 -198605042,"Robocraft",purchase,1.0,0 -198605042,"Tactical Intervention",purchase,1.0,0 -198605042,"Toribash",purchase,1.0,0 -198605042,"Warframe",purchase,1.0,0 -198605042,"War Thunder",purchase,1.0,0 -209218938,"Maszyny Rolnicze 2015",purchase,1.0,0 -209218938,"Maszyny Rolnicze 2015",play,0.3,0 -295726552,"Mitos.is The Game",purchase,1.0,0 -295726552,"Mitos.is The Game",play,3.7,0 -106340092,"Team Fortress 2",purchase,1.0,0 -106340092,"Team Fortress 2",play,209.0,0 -208799740,"This War of Mine",purchase,1.0,0 -208799740,"This War of Mine",play,12.5,0 -226657630,"Dota 2",purchase,1.0,0 -226657630,"Dota 2",play,0.4,0 -83148759,"The Elder Scrolls V Skyrim",purchase,1.0,0 -83148759,"The Elder Scrolls V Skyrim",play,224.0,0 -83148759,"Might & Magic Heroes VI",purchase,1.0,0 -83148759,"Might & Magic Heroes VI",play,173.0,0 -83148759,"Torchlight II",purchase,1.0,0 -83148759,"Torchlight II",play,28.0,0 -83148759,"Might & Magic Duel of Champions",purchase,1.0,0 -83148759,"Might & Magic Duel of Champions",play,3.3,0 -83148759,"Left 4 Dead 2",purchase,1.0,0 -83148759,"Left 4 Dead 2",play,1.6,0 -83148759,"Dota 2",purchase,1.0,0 -83148759,"Dota 2",play,1.5,0 -83148759,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -83148759,"Deus Ex Human Revolution - Director's Cut",play,0.9,0 -83148759,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -83148759,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -59854456,"Call of Duty Modern Warfare 2",purchase,1.0,0 -59854456,"Call of Duty Modern Warfare 2",play,15.7,0 -59854456,"Call of Duty Black Ops",purchase,1.0,0 -59854456,"Call of Duty Black Ops",play,7.4,0 -59854456,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -59854456,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -186287462,"Dungeon Siege III",purchase,1.0,0 -186287462,"Dungeon Siege III",play,22.0,0 -186287462,"F1 2015",purchase,1.0,0 -186287462,"F1 2015",play,6.5,0 -186287462,"Wolfenstein The Old Blood German Edition",purchase,1.0,0 -186287462,"Wolfenstein The Old Blood German Edition",play,5.0,0 -186287462,"Sniper Elite 3",purchase,1.0,0 -186287462,"Sniper Elite 3",play,0.3,0 -186287462,"RaceRoom Racing Experience ",purchase,1.0,0 -294123013,"Dota 2",purchase,1.0,0 -294123013,"Dota 2",play,81.0,0 -294123013,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -294123013,"Tom Clancy's Ghost Recon Phantoms - EU",play,19.5,0 -221325014,"Dota 2",purchase,1.0,0 -221325014,"Dota 2",play,1.9,0 -234779342,"Dota 2",purchase,1.0,0 -234779342,"Dota 2",play,1.0,0 -185959000,"No More Room in Hell",purchase,1.0,0 -185959000,"No More Room in Hell",play,8.5,0 -185959000,"theHunter",purchase,1.0,0 -185959000,"theHunter",play,0.9,0 -193553590,"Dota 2",purchase,1.0,0 -193553590,"Dota 2",play,19.2,0 -237799851,"Dota 2",purchase,1.0,0 -237799851,"Dota 2",play,1.6,0 -285869008,"Counter-Strike Global Offensive",purchase,1.0,0 -285869008,"Counter-Strike Global Offensive",play,42.0,0 -285869008,"Cossacks Back to War",purchase,1.0,0 -285869008,"Cossacks Back to War",play,31.0,0 -285869008,"Pro Cycling Manager 2015",purchase,1.0,0 -285869008,"Pro Cycling Manager 2015",play,5.7,0 -285869008,"Cossacks European Wars",purchase,1.0,0 -285869008,"Cossacks European Wars",play,5.5,0 -285869008,"PlanetSide 2",purchase,1.0,0 -285869008,"PlanetSide 2",play,3.5,0 -285869008,"Euro Truck Simulator 2",purchase,1.0,0 -285869008,"Euro Truck Simulator 2",play,3.0,0 -285869008,"Cossacks Art of War",purchase,1.0,0 -285869008,"Cossacks Art of War",play,2.0,0 -285869008,"Cossacks II Battle for Europe",purchase,1.0,0 -285869008,"Cossacks II Battle for Europe",play,1.1,0 -285869008,"American Conquest",purchase,1.0,0 -285869008,"American Conquest",play,0.3,0 -285869008,"Block N Load",purchase,1.0,0 -285869008,"Block N Load",play,0.3,0 -285869008,"Cossacks II Napoleonic Wars",purchase,1.0,0 -285869008,"Cossacks II Napoleonic Wars",play,0.1,0 -285869008,"American Conquest - Fight Back",purchase,1.0,0 -285869008,"Counter-Strike Nexon Zombies",purchase,1.0,0 -92669869,"The Elder Scrolls V Skyrim",purchase,1.0,0 -92669869,"The Elder Scrolls V Skyrim",play,21.0,0 -92669869,"Terraria",purchase,1.0,0 -92669869,"Terraria",play,5.4,0 -92669869,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -183294889,"Dota 2",purchase,1.0,0 -183294889,"Dota 2",play,537.0,0 -183294889,"Warframe",purchase,1.0,0 -183294889,"Warframe",play,4.1,0 -183294889,"Zombies Monsters Robots",purchase,1.0,0 -183294889,"Zombies Monsters Robots",play,2.4,0 -183294889,"Counter-Strike Nexon Zombies",purchase,1.0,0 -183294889,"Counter-Strike Nexon Zombies",play,1.5,0 -183294889,"Infinite Crisis",purchase,1.0,0 -183294889,"Infinite Crisis",play,0.5,0 -183294889,"Fallen Earth",purchase,1.0,0 -183294889,"Fallen Earth",play,0.2,0 -183294889,"Rise of Incarnates",purchase,1.0,0 -183294889,"CrimeCraft GangWars",purchase,1.0,0 -183294889,"Defiance",purchase,1.0,0 -183294889,"GunZ 2 The Second Duel",purchase,1.0,0 -183294889,"No More Room in Hell",purchase,1.0,0 -183294889,"Quake Live",purchase,1.0,0 -177406869,"Dota 2",purchase,1.0,0 -177406869,"Dota 2",play,1.1,0 -158429732,"Cities Skylines",purchase,1.0,0 -158429732,"Cities Skylines",play,38.0,0 -158429732,"Garry's Mod",purchase,1.0,0 -158429732,"Garry's Mod",play,32.0,0 -158429732,"Terraria",purchase,1.0,0 -158429732,"Terraria",play,30.0,0 -158429732,"Don't Starve",purchase,1.0,0 -158429732,"Don't Starve",play,14.4,0 -158429732,"Rust",purchase,1.0,0 -158429732,"Rust",play,9.7,0 -158429732,"AdVenture Capitalist",purchase,1.0,0 -158429732,"AdVenture Capitalist",play,8.3,0 -158429732,"Space Engineers",purchase,1.0,0 -158429732,"Space Engineers",play,1.3,0 -158429732,"Don't Starve Together Beta",purchase,1.0,0 -158429732,"Don't Starve Together Beta",play,0.6,0 -158429732,"Counter-Strike Source",purchase,1.0,0 -158429732,"Counter-Strike Source",play,0.1,0 -295809791,"Dota 2",purchase,1.0,0 -295809791,"Dota 2",play,3.3,0 -273624636,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -273624636,"RollerCoaster Tycoon 3 Platinum!",play,8.2,0 -56470008,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -56470008,"Call of Duty Modern Warfare 2 - Multiplayer",play,275.0,0 -56470008,"Call of Duty Modern Warfare 2",purchase,1.0,0 -56470008,"Call of Duty Modern Warfare 2",play,8.2,0 -240832135,"Dota 2",purchase,1.0,0 -240832135,"Dota 2",play,0.3,0 -112845094,"Dota 2",purchase,1.0,0 -112845094,"Dota 2",play,1918.0,0 -112845094,"Counter-Strike Global Offensive",purchase,1.0,0 -112845094,"Counter-Strike Global Offensive",play,1437.0,0 -112845094,"DayZ",purchase,1.0,0 -112845094,"DayZ",play,765.0,0 -112845094,"Team Fortress 2",purchase,1.0,0 -112845094,"Team Fortress 2",play,246.0,0 -112845094,"Unturned",purchase,1.0,0 -112845094,"Unturned",play,172.0,0 -112845094,"Left 4 Dead 2",purchase,1.0,0 -112845094,"Left 4 Dead 2",play,146.0,0 -112845094,"Counter-Strike Nexon Zombies",purchase,1.0,0 -112845094,"Counter-Strike Nexon Zombies",play,129.0,0 -112845094,"Grand Theft Auto V",purchase,1.0,0 -112845094,"Grand Theft Auto V",play,116.0,0 -112845094,"Arma 3",purchase,1.0,0 -112845094,"Arma 3",play,76.0,0 -112845094,"Garry's Mod",purchase,1.0,0 -112845094,"Garry's Mod",play,60.0,0 -112845094,"Arma 2 Operation Arrowhead",purchase,1.0,0 -112845094,"Arma 2 Operation Arrowhead",play,56.0,0 -112845094,"Robocraft",purchase,1.0,0 -112845094,"Robocraft",play,40.0,0 -112845094,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -112845094,"Grand Theft Auto Episodes from Liberty City",play,31.0,0 -112845094,"Command and Conquer Red Alert 3",purchase,1.0,0 -112845094,"Command and Conquer Red Alert 3",play,14.3,0 -112845094,"Spec Ops The Line",purchase,1.0,0 -112845094,"Spec Ops The Line",play,7.5,0 -112845094,"World of Guns Gun Disassembly",purchase,1.0,0 -112845094,"World of Guns Gun Disassembly",play,6.2,0 -112845094,"No More Room in Hell",purchase,1.0,0 -112845094,"No More Room in Hell",play,5.1,0 -112845094,"Trove",purchase,1.0,0 -112845094,"Trove",play,4.7,0 -112845094,"Sniper Elite V2",purchase,1.0,0 -112845094,"Sniper Elite V2",play,4.5,0 -112845094,"Watch_Dogs",purchase,1.0,0 -112845094,"Watch_Dogs",play,3.5,0 -112845094,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -112845094,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,1.6,0 -112845094,"War Thunder",purchase,1.0,0 -112845094,"War Thunder",play,0.8,0 -112845094,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -112845094,"Rising Storm/Red Orchestra 2 Multiplayer",play,0.4,0 -112845094,"Grand Theft Auto San Andreas",purchase,1.0,0 -112845094,"Grand Theft Auto San Andreas",play,0.2,0 -112845094,"PAYDAY The Heist",purchase,1.0,0 -112845094,"Heroes & Generals",purchase,1.0,0 -112845094,"Arma 2 DayZ Mod",purchase,1.0,0 -112845094,"Grand Theft Auto IV",purchase,1.0,0 -112845094,"Grand Theft Auto III",purchase,1.0,0 -112845094,"8BitBoy",purchase,1.0,0 -112845094,"Arma 2",purchase,1.0,0 -112845094,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -112845094,"Arma 3 Zeus",purchase,1.0,0 -112845094,"Arma Cold War Assault",purchase,1.0,0 -112845094,"Grand Theft Auto San Andreas",purchase,1.0,0 -112845094,"Grand Theft Auto Vice City",purchase,1.0,0 -112845094,"Grand Theft Auto Vice City",purchase,1.0,0 -112845094,"Grand Theft Auto III",purchase,1.0,0 -112845094,"Metro 2033",purchase,1.0,0 -112845094,"Survarium",purchase,1.0,0 -228412369,"Dota 2",purchase,1.0,0 -228412369,"Dota 2",play,175.0,0 -228412369,"Dead Space",purchase,1.0,0 -225566535,"Dota 2",purchase,1.0,0 -225566535,"Dota 2",play,1.2,0 -238016355,"Dota 2",purchase,1.0,0 -238016355,"Dota 2",play,0.4,0 -265619532,"Besiege",purchase,1.0,0 -265619532,"Besiege",play,28.0,0 -265619532,"BeamNG.drive",purchase,1.0,0 -265619532,"Call of Juarez Gunslinger",purchase,1.0,0 -158876958,"Team Fortress 2",purchase,1.0,0 -158876958,"Team Fortress 2",play,0.2,0 -255615919,"Resident Evil Revelations 2 / Biohazard Revelations 2",purchase,1.0,0 -255615919,"Resident Evil Revelations 2 / Biohazard Revelations 2",play,22.0,0 -299510506,"Brawlhalla",purchase,1.0,0 -299510506,"Brawlhalla",play,16.5,0 -299510506,"Trove",purchase,1.0,0 -299510506,"Trove",play,0.1,0 -299510506,"Double Action Boogaloo",purchase,1.0,0 -137651115,"Heroes & Generals",purchase,1.0,0 -137651115,"Heroes & Generals",play,340.0,0 -137651115,"Fishing Planet",purchase,1.0,0 -137651115,"Fishing Planet",play,22.0,0 -137651115,"Dota 2",purchase,1.0,0 -137651115,"Dota 2",play,12.8,0 -137651115,"AdVenture Capitalist",purchase,1.0,0 -137651115,"AdVenture Capitalist",play,8.1,0 -137651115,"PlanetSide 2",purchase,1.0,0 -137651115,"PlanetSide 2",play,2.2,0 -137651115,"Team Fortress 2",purchase,1.0,0 -137651115,"Team Fortress 2",play,1.0,0 -137651115,"DCS World",purchase,1.0,0 -91597624,"The Binding of Isaac Rebirth",purchase,1.0,0 -91597624,"The Binding of Isaac Rebirth",play,1.3,0 -91597624,"Unturned",purchase,1.0,0 -16261218,"Counter-Strike Source",purchase,1.0,0 -16261218,"Half-Life 2",purchase,1.0,0 -16261218,"Half-Life 2 Deathmatch",purchase,1.0,0 -16261218,"Half-Life 2 Lost Coast",purchase,1.0,0 -249540800,"Dota 2",purchase,1.0,0 -249540800,"Dota 2",play,0.2,0 -254550709,"Counter-Strike Global Offensive",purchase,1.0,0 -254550709,"Counter-Strike Global Offensive",play,295.0,0 -254550709,"Rocket League",purchase,1.0,0 -254550709,"Rocket League",play,21.0,0 -254550709,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -254550709,"METAL GEAR SOLID V THE PHANTOM PAIN",play,5.7,0 -254550709,"Trove",purchase,1.0,0 -254550709,"Trove",play,5.0,0 -254550709,"Aftermath",purchase,1.0,0 -254550709,"Aftermath",play,3.4,0 -254550709,"Block N Load",purchase,1.0,0 -254550709,"Block N Load",play,1.6,0 -254550709,"Unturned",purchase,1.0,0 -254550709,"Unturned",play,1.3,0 -254550709,"Warframe",purchase,1.0,0 -254550709,"Warframe",play,1.2,0 -254550709,"Marvel Heroes 2015",purchase,1.0,0 -254550709,"Marvel Heroes 2015",play,0.9,0 -254550709,"Dirty Bomb",purchase,1.0,0 -254550709,"Dirty Bomb",play,0.5,0 -254550709,"Genesis Online",purchase,1.0,0 -254550709,"Genesis Online",play,0.3,0 -254550709,"Clicker Heroes",purchase,1.0,0 -254550709,"Clicker Heroes",play,0.2,0 -254550709,"Team Fortress 2",purchase,1.0,0 -254550709,"Team Fortress 2",play,0.2,0 -254550709,"Time Clickers",purchase,1.0,0 -254550709,"Time Clickers",play,0.1,0 -254550709,"PlanetSide 2",purchase,1.0,0 -254550709,"PlanetSide 2",play,0.1,0 -254550709,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -254550709,"Tom Clancy's Ghost Recon Phantoms - EU",play,0.1,0 -254550709,"how do you Do It?",purchase,1.0,0 -254550709,"SMITE",purchase,1.0,0 -254550709,"Blacklight Retribution",purchase,1.0,0 -254550709,"Brick-Force",purchase,1.0,0 -254550709,"Fistful of Frags",purchase,1.0,0 -254550709,"Pool Nation FX",purchase,1.0,0 -254550709,"World of Soccer online",purchase,1.0,0 -622362,"Counter-Strike Global Offensive",purchase,1.0,0 -622362,"Counter-Strike Global Offensive",play,35.0,0 -622362,"Counter-Strike",purchase,1.0,0 -622362,"Counter-Strike",play,22.0,0 -622362,"Team Fortress 2",purchase,1.0,0 -622362,"Team Fortress 2",play,12.7,0 -622362,"Day of Defeat",purchase,1.0,0 -622362,"Day of Defeat",play,1.3,0 -622362,"Deathmatch Classic",purchase,1.0,0 -622362,"Half-Life",purchase,1.0,0 -622362,"Half-Life Blue Shift",purchase,1.0,0 -622362,"Half-Life Opposing Force",purchase,1.0,0 -622362,"Ricochet",purchase,1.0,0 -622362,"Team Fortress Classic",purchase,1.0,0 -158828239,"Age of Empires II HD Edition",purchase,1.0,0 -158828239,"Age of Empires II HD Edition",play,222.0,0 -158828239,"War Thunder",purchase,1.0,0 -158828239,"War Thunder",play,19.5,0 -158828239,"Age of Empires II HD The Forgotten",purchase,1.0,0 -158828239,"Dead Island Epidemic",purchase,1.0,0 -157314597,"Dota 2",purchase,1.0,0 -157314597,"Dota 2",play,2691.0,0 -157314597,"Fable - The Lost Chapters",purchase,1.0,0 -157314597,"Fable - The Lost Chapters",play,8.8,0 -157314597,"Stronghold Kingdoms",purchase,1.0,0 -157314597,"Stronghold Kingdoms",play,0.5,0 -157314597,"Magicka Wizard Wars",purchase,1.0,0 -157314597,"Magicka Wizard Wars",play,0.1,0 -157314597,"Construct 2 Free",purchase,1.0,0 -157314597,"Free to Play",purchase,1.0,0 -209126665,"CaesarIA",purchase,1.0,0 -209126665,"BLOCKADE 3D",purchase,1.0,0 -209126665,"War Thunder",purchase,1.0,0 -238640566,"Clicker Heroes",purchase,1.0,0 -238640566,"Clicker Heroes",play,4.7,0 -44043970,"Half-Life 2 Deathmatch",purchase,1.0,0 -44043970,"Half-Life 2 Episode One",purchase,1.0,0 -44043970,"Half-Life 2 Lost Coast",purchase,1.0,0 -44043970,"Half-Life Deathmatch Source",purchase,1.0,0 -247042500,"Arma 3",purchase,1.0,0 -247042500,"Arma 3",play,64.0,0 -247042500,"Arma 3 Zeus",purchase,1.0,0 -101530848,"Counter-Strike Global Offensive",purchase,1.0,0 -101530848,"Counter-Strike Global Offensive",play,554.0,0 -101530848,"Dota 2",purchase,1.0,0 -101530848,"Dota 2",play,108.0,0 -101530848,"Neverwinter",purchase,1.0,0 -101530848,"Neverwinter",play,52.0,0 -101530848,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -101530848,"Tom Clancy's Ghost Recon Phantoms - EU",play,44.0,0 -101530848,"Deus Ex Human Revolution",purchase,1.0,0 -101530848,"Deus Ex Human Revolution",play,31.0,0 -101530848,"Elite Dangerous",purchase,1.0,0 -101530848,"Elite Dangerous",play,24.0,0 -101530848,"Dishonored",purchase,1.0,0 -101530848,"Dishonored",play,18.1,0 -101530848,"Warframe",purchase,1.0,0 -101530848,"Warframe",play,18.0,0 -101530848,"Unturned",purchase,1.0,0 -101530848,"Unturned",play,17.2,0 -101530848,"Terraria",purchase,1.0,0 -101530848,"Terraria",play,12.3,0 -101530848,"BLOCKADE 3D",purchase,1.0,0 -101530848,"BLOCKADE 3D",play,11.2,0 -101530848,"Borderlands 2",purchase,1.0,0 -101530848,"Borderlands 2",play,11.0,0 -101530848,"America's Army Proving Grounds",purchase,1.0,0 -101530848,"America's Army Proving Grounds",play,10.8,0 -101530848,"Sniper Elite V2",purchase,1.0,0 -101530848,"Sniper Elite V2",play,9.2,0 -101530848,"Loadout",purchase,1.0,0 -101530848,"Loadout",play,7.3,0 -101530848,"Nosgoth",purchase,1.0,0 -101530848,"Nosgoth",play,6.9,0 -101530848,"Metro Last Light Redux",purchase,1.0,0 -101530848,"Metro Last Light Redux",play,6.2,0 -101530848,"Quake Live",purchase,1.0,0 -101530848,"Quake Live",play,5.8,0 -101530848,"Serious Sam HD The Second Encounter",purchase,1.0,0 -101530848,"Serious Sam HD The Second Encounter",play,3.9,0 -101530848,"Dirty Bomb",purchase,1.0,0 -101530848,"Dirty Bomb",play,2.8,0 -101530848,"Firefall",purchase,1.0,0 -101530848,"Firefall",play,2.7,0 -101530848,"Defiance",purchase,1.0,0 -101530848,"Defiance",play,1.6,0 -101530848,"Happy Wars",purchase,1.0,0 -101530848,"Happy Wars",play,1.0,0 -101530848,"Survarium",purchase,1.0,0 -101530848,"Survarium",play,0.9,0 -101530848,"Gear Up",purchase,1.0,0 -101530848,"Gear Up",play,0.8,0 -101530848,"Path of Exile",purchase,1.0,0 -101530848,"Path of Exile",play,0.8,0 -101530848,"The Mighty Quest For Epic Loot",purchase,1.0,0 -101530848,"The Mighty Quest For Epic Loot",play,0.6,0 -101530848,"War Thunder",purchase,1.0,0 -101530848,"War Thunder",play,0.4,0 -101530848,"Spiral Knights",purchase,1.0,0 -101530848,"Spiral Knights",play,0.3,0 -101530848,"Call of Juarez The Cartel",purchase,1.0,0 -101530848,"Call of Juarez The Cartel",play,0.2,0 -101530848,"Villagers and Heroes",purchase,1.0,0 -101530848,"Villagers and Heroes",play,0.2,0 -101530848,"Amazing World",purchase,1.0,0 -101530848,"HAWKEN",purchase,1.0,0 -101530848,"Metro 2033 Redux",purchase,1.0,0 -101530848,"Strife",purchase,1.0,0 -101530848,"Warface",purchase,1.0,0 -186867770,"Dota 2",purchase,1.0,0 -186867770,"Dota 2",play,0.2,0 -106147639,"PROTOTYPE 2",purchase,1.0,0 -106147639,"Prototype 2 RADNET Access Pack",purchase,1.0,0 -264626784,"Counter-Strike Global Offensive",purchase,1.0,0 -264626784,"Counter-Strike Global Offensive",play,262.0,0 -264626784,"Dota 2",purchase,1.0,0 -264626784,"Dota 2",play,149.0,0 -264626784,"Counter-Strike",purchase,1.0,0 -264626784,"Counter-Strike",play,17.1,0 -264626784,"Far Cry 3",purchase,1.0,0 -264626784,"Far Cry 3",play,11.9,0 -264626784,"Outlast",purchase,1.0,0 -264626784,"Outlast",play,6.2,0 -264626784,"Batla",purchase,1.0,0 -264626784,"Batla",play,5.3,0 -264626784,"Team Fortress 2",purchase,1.0,0 -264626784,"Team Fortress 2",play,3.9,0 -264626784,"TERA",purchase,1.0,0 -264626784,"TERA",play,2.1,0 -264626784,"BLOCKADE 3D",purchase,1.0,0 -264626784,"BLOCKADE 3D",play,1.2,0 -264626784,"7 Days to Die",purchase,1.0,0 -264626784,"7 Days to Die",play,1.0,0 -264626784,"BeamNG.drive",purchase,1.0,0 -264626784,"BeamNG.drive",play,1.0,0 -264626784,"Kerbal Space Program",purchase,1.0,0 -264626784,"Kerbal Space Program",play,0.3,0 -264626784,"Garry's Mod",purchase,1.0,0 -264626784,"Garry's Mod",play,0.2,0 -264626784,"Insurgency",purchase,1.0,0 -264626784,"Insurgency",play,0.1,0 -264626784,"Counter-Strike Condition Zero",purchase,1.0,0 -264626784,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -264626784,"Fishing Planet",purchase,1.0,0 -264626784,"HAWKEN",purchase,1.0,0 -264626784,"Streets of Chaos",purchase,1.0,0 -95924900,"BIT.TRIP RUNNER",purchase,1.0,0 -95924900,"Jamestown",purchase,1.0,0 -95924900,"NightSky",purchase,1.0,0 -95924900,"Shank",purchase,1.0,0 -95924900,"Super Meat Boy",purchase,1.0,0 -107273897,"Dota 2",purchase,1.0,0 -107273897,"Dota 2",play,1020.0,0 -107273897,"Counter-Strike Global Offensive",purchase,1.0,0 -107273897,"Counter-Strike Global Offensive",play,370.0,0 -107273897,"Killing Floor",purchase,1.0,0 -107273897,"Killing Floor",play,105.0,0 -107273897,"Counter-Strike Source",purchase,1.0,0 -107273897,"Counter-Strike Source",play,25.0,0 -107273897,"Team Fortress 2",purchase,1.0,0 -107273897,"Team Fortress 2",play,10.4,0 -107273897,"Warframe",purchase,1.0,0 -107273897,"Warframe",play,0.6,0 -107273897,"Source Filmmaker",purchase,1.0,0 -107273897,"Source Filmmaker",play,0.4,0 -107273897,"Unturned",purchase,1.0,0 -107273897,"Unturned",play,0.2,0 -107273897,"Counter-Strike",purchase,1.0,0 -107273897,"Counter-Strike Condition Zero",purchase,1.0,0 -107273897,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -107273897,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -107273897,"Mortal Kombat Legacy - Ep. 3 Johnny Cage",purchase,1.0,0 -107273897,"Mortal Kombat Legacy - Ep. 4 Kitana & Mileena (Part 1)",purchase,1.0,0 -107273897,"Mortal Kombat Legacy - Ep. 5 Kitana & Mileena (Part 2)",purchase,1.0,0 -107273897,"Mortal Kombat Legacy - Ep. 6 Raiden",purchase,1.0,0 -107273897,"Mortal Kombat Legacy - Ep. 7 Scorpion and Sub-Zero (Part 1)",purchase,1.0,0 -107273897,"Mortal Kombat Legacy - Ep. 8 Scorpion and Sub-Zero (Part 2)",purchase,1.0,0 -107273897,"Mortal Kombat Legacy - Ep. 9 Cyrax & Sektor",purchase,1.0,0 -107273897,"Star Conflict",purchase,1.0,0 -96355913,"Team Fortress 2",purchase,1.0,0 -96355913,"Team Fortress 2",play,1.7,0 -178698811,"Counter-Strike Global Offensive",purchase,1.0,0 -178698811,"Counter-Strike Global Offensive",play,12.3,0 -178698811,"Unturned",purchase,1.0,0 -117345810,"Dota 2",purchase,1.0,0 -117345810,"Dota 2",play,482.0,0 -117345810,"Awesomenauts",purchase,1.0,0 -117345810,"Awesomenauts",play,331.0,0 -117345810,"Counter-Strike Global Offensive",purchase,1.0,0 -117345810,"Counter-Strike Global Offensive",play,8.8,0 -117345810,"Borderlands 2",purchase,1.0,0 -117345810,"Borderlands 2",play,5.6,0 -117345810,"WAKFU",purchase,1.0,0 -117345810,"WAKFU",play,4.0,0 -117345810,"Team Fortress 2",purchase,1.0,0 -117345810,"Team Fortress 2",play,2.9,0 -117345810,"PAYDAY The Heist",purchase,1.0,0 -117345810,"PAYDAY The Heist",play,2.4,0 -117345810,"FINAL FANTASY XIII",purchase,1.0,0 -117345810,"FINAL FANTASY XIII",play,1.4,0 -117345810,"Half-Life 2",purchase,1.0,0 -117345810,"Half-Life 2",play,1.3,0 -117345810,"XCOM Enemy Unknown",purchase,1.0,0 -117345810,"XCOM Enemy Unknown",play,1.1,0 -117345810,"Spooky's House of Jump Scares",purchase,1.0,0 -117345810,"Spooky's House of Jump Scares",play,0.9,0 -117345810,"Half-Life Source",purchase,1.0,0 -117345810,"Half-Life Source",play,0.7,0 -117345810,"Darksiders II",purchase,1.0,0 -117345810,"Darksiders II",play,0.4,0 -117345810,"Borealis",purchase,1.0,0 -117345810,"Borealis",play,0.4,0 -117345810,"PAYDAY 2",purchase,1.0,0 -117345810,"PAYDAY 2",play,0.4,0 -117345810,"Gun Monkeys",purchase,1.0,0 -117345810,"Gun Monkeys",play,0.3,0 -117345810,"Really Big Sky",purchase,1.0,0 -117345810,"Really Big Sky",play,0.3,0 -117345810,"Magicka Wizard Wars",purchase,1.0,0 -117345810,"Magicka Wizard Wars",play,0.2,0 -117345810,"Dino D-Day",purchase,1.0,0 -117345810,"Dino D-Day",play,0.2,0 -117345810,"L.A. Noire",purchase,1.0,0 -117345810,"L.A. Noire",play,0.2,0 -117345810,"Sanctum",purchase,1.0,0 -117345810,"Sanctum",play,0.2,0 -117345810,"The Elder Scrolls V Skyrim",purchase,1.0,0 -117345810,"The Elder Scrolls V Skyrim",play,0.1,0 -117345810,"Teleglitch Die More Edition",purchase,1.0,0 -117345810,"Teleglitch Die More Edition",play,0.1,0 -117345810,"Victim of Xen",purchase,1.0,0 -117345810,"Victim of Xen",play,0.1,0 -117345810,"Dungeon Defenders II",purchase,1.0,0 -117345810,"Darksiders II Deathinitive Edition",purchase,1.0,0 -117345810,"Counter-Strike Source",purchase,1.0,0 -117345810,"Afterfall InSanity Extended Edition",purchase,1.0,0 -117345810,"Anomaly Warzone Earth",purchase,1.0,0 -117345810,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -117345810,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -117345810,"Canyon Capers",purchase,1.0,0 -117345810,"Chaos Domain",purchase,1.0,0 -117345810,"Cobi Treasure Deluxe",purchase,1.0,0 -117345810,"Counter-Strike",purchase,1.0,0 -117345810,"Counter-Strike Condition Zero",purchase,1.0,0 -117345810,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -117345810,"Crash Time II",purchase,1.0,0 -117345810,"Darksiders",purchase,1.0,0 -117345810,"Darksiders II Soundtrack",purchase,1.0,0 -117345810,"Darksiders Soundtrack",purchase,1.0,0 -117345810,"East India Company Gold",purchase,1.0,0 -117345810,"Frozen Hearth",purchase,1.0,0 -117345810,"GTR Evolution",purchase,1.0,0 -117345810,"Half-Life",purchase,1.0,0 -117345810,"Half-Life 2 Deathmatch",purchase,1.0,0 -117345810,"Half-Life 2 Episode One",purchase,1.0,0 -117345810,"Half-Life 2 Episode Two",purchase,1.0,0 -117345810,"Half-Life 2 Lost Coast",purchase,1.0,0 -117345810,"Half-Life Blue Shift",purchase,1.0,0 -117345810,"Half-Life Opposing Force",purchase,1.0,0 -117345810,"Half-Life Deathmatch Source",purchase,1.0,0 -117345810,"Ionball 2 Ionstorm",purchase,1.0,0 -117345810,"Kung Fu Strike The Warrior's Rise",purchase,1.0,0 -117345810,"Metro 2033",purchase,1.0,0 -117345810,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -117345810,"Nosgoth",purchase,1.0,0 -117345810,"Numba Deluxe",purchase,1.0,0 -117345810,"Pirates of Black Cove Gold",purchase,1.0,0 -117345810,"PixelJunk Monsters Ultimate",purchase,1.0,0 -117345810,"POSTAL",purchase,1.0,0 -117345810,"RACE 07",purchase,1.0,0 -117345810,"RaceRoom Racing Experience ",purchase,1.0,0 -117345810,"Realms of the Haunting",purchase,1.0,0 -117345810,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -117345810,"SpaceChem",purchase,1.0,0 -117345810,"Space Hack",purchase,1.0,0 -117345810,"Speedball 2 HD",purchase,1.0,0 -117345810,"Team Fortress Classic",purchase,1.0,0 -117345810,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -117345810,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -117345810,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -117345810,"The Journey Down Chapter One",purchase,1.0,0 -117345810,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -117345810,"Warlock - Master of the Arcane",purchase,1.0,0 -117345810,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -117345810,"Weird Worlds Return to Infinite Space",purchase,1.0,0 -33614428,"Counter-Strike Condition Zero",purchase,1.0,0 -33614428,"Counter-Strike Condition Zero",play,9.3,0 -33614428,"Counter-Strike",purchase,1.0,0 -33614428,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -33614428,"Day of Defeat",purchase,1.0,0 -33614428,"Deathmatch Classic",purchase,1.0,0 -33614428,"Ricochet",purchase,1.0,0 -99133844,"Counter-Strike Global Offensive",purchase,1.0,0 -99133844,"Counter-Strike Global Offensive",play,471.0,0 -99133844,"Dota 2",purchase,1.0,0 -99133844,"Dota 2",play,74.0,0 -99133844,"Unturned",purchase,1.0,0 -99133844,"Unturned",play,50.0,0 -99133844,"Team Fortress 2",purchase,1.0,0 -99133844,"Team Fortress 2",play,36.0,0 -99133844,"Counter-Strike Nexon Zombies",purchase,1.0,0 -99133844,"Counter-Strike Nexon Zombies",play,20.0,0 -99133844,"Trove",purchase,1.0,0 -99133844,"Trove",play,15.1,0 -99133844,"Codename CURE",purchase,1.0,0 -99133844,"Codename CURE",play,1.3,0 -99133844,"Moonbase Alpha",purchase,1.0,0 -99133844,"Moonbase Alpha",play,0.4,0 -99133844,"Dungeon Defenders II",purchase,1.0,0 -99133844,"Dungeon Defenders II",play,0.3,0 -99133844,"Amnesia The Dark Descent",purchase,1.0,0 -99133844,"Amnesia The Dark Descent",play,0.2,0 -99133844,"Fortress Forever",purchase,1.0,0 -99133844,"Aftermath",purchase,1.0,0 -99133844,"Heroes & Generals",purchase,1.0,0 -99133844,"Super Monday Night Combat",purchase,1.0,0 -99133844,"WARMODE",purchase,1.0,0 -290582378,"Team Fortress 2",purchase,1.0,0 -290582378,"Team Fortress 2",play,152.0,0 -290582378,"Dota 2",purchase,1.0,0 -290582378,"Dota 2",play,0.5,0 -290582378,"Gorky 17",purchase,1.0,0 -28731346,"Counter-Strike Source",purchase,1.0,0 -28731346,"Counter-Strike Source",play,16.2,0 -28731346,"Dead Space",purchase,1.0,0 -28731346,"Dead Space",play,1.2,0 -28731346,"Echoes+",purchase,1.0,0 -28731346,"Echoes+",play,0.5,0 -28731346,"GunZ 2 The Second Duel",purchase,1.0,0 -28731346,"GunZ 2 The Second Duel",play,0.2,0 -28731346,"Day of Defeat Source",purchase,1.0,0 -28731346,"Half-Life 2 Deathmatch",purchase,1.0,0 -28731346,"Half-Life 2 Lost Coast",purchase,1.0,0 -33362395,"Counter-Strike",purchase,1.0,0 -33362395,"Counter-Strike",play,1445.0,0 -33362395,"Counter-Strike Condition Zero",purchase,1.0,0 -33362395,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -81943620,"Terraria",purchase,1.0,0 -81943620,"Terraria",play,280.0,0 -81943620,"Assassin's Creed Revelations",purchase,1.0,0 -81943620,"Assassin's Creed Revelations",play,174.0,0 -81943620,"APB Reloaded",purchase,1.0,0 -81943620,"APB Reloaded",play,103.0,0 -81943620,"Assassin's Creed IV Black Flag",purchase,1.0,0 -81943620,"Assassin's Creed IV Black Flag",play,89.0,0 -81943620,"Assassin's Creed III",purchase,1.0,0 -81943620,"Assassin's Creed III",play,82.0,0 -81943620,"Dishonored",purchase,1.0,0 -81943620,"Dishonored",play,71.0,0 -81943620,"Sid Meier's Civilization V",purchase,1.0,0 -81943620,"Sid Meier's Civilization V",play,67.0,0 -81943620,"Dungeon Defenders II",purchase,1.0,0 -81943620,"Dungeon Defenders II",play,58.0,0 -81943620,"Saints Row The Third",purchase,1.0,0 -81943620,"Saints Row The Third",play,57.0,0 -81943620,"Borderlands 2",purchase,1.0,0 -81943620,"Borderlands 2",play,52.0,0 -81943620,"Magicka",purchase,1.0,0 -81943620,"Magicka",play,52.0,0 -81943620,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -81943620,"STAR WARS Knights of the Old Republic II The Sith Lords",play,43.0,0 -81943620,"Risk of Rain",purchase,1.0,0 -81943620,"Risk of Rain",play,36.0,0 -81943620,"Batman Arkham City GOTY",purchase,1.0,0 -81943620,"Batman Arkham City GOTY",play,34.0,0 -81943620,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",purchase,1.0,0 -81943620,"NARUTO SHIPPUDEN Ultimate Ninja STORM Revolution",play,31.0,0 -81943620,"LEGO MARVEL Super Heroes",purchase,1.0,0 -81943620,"LEGO MARVEL Super Heroes",play,31.0,0 -81943620,"Saints Row IV",purchase,1.0,0 -81943620,"Saints Row IV",play,27.0,0 -81943620,"Just Cause 2",purchase,1.0,0 -81943620,"Just Cause 2",play,24.0,0 -81943620,"Darksiders",purchase,1.0,0 -81943620,"Darksiders",play,23.0,0 -81943620,"Torchlight II",purchase,1.0,0 -81943620,"Torchlight II",play,23.0,0 -81943620,"Amnesia The Dark Descent",purchase,1.0,0 -81943620,"Amnesia The Dark Descent",play,22.0,0 -81943620,"The Walking Dead",purchase,1.0,0 -81943620,"The Walking Dead",play,22.0,0 -81943620,"PlanetSide 2",purchase,1.0,0 -81943620,"PlanetSide 2",play,21.0,0 -81943620,"Titan Quest",purchase,1.0,0 -81943620,"Titan Quest",play,17.9,0 -81943620,"Assassin's Creed Brotherhood",purchase,1.0,0 -81943620,"Assassin's Creed Brotherhood",play,16.9,0 -81943620,"BioShock 2",purchase,1.0,0 -81943620,"BioShock 2",play,16.5,0 -81943620,"BioShock",purchase,1.0,0 -81943620,"BioShock",play,16.2,0 -81943620,"FEZ",purchase,1.0,0 -81943620,"FEZ",play,16.0,0 -81943620,"Don't Starve Together Beta",purchase,1.0,0 -81943620,"Don't Starve Together Beta",play,15.6,0 -81943620,"Rogue Legacy",purchase,1.0,0 -81943620,"Rogue Legacy",play,15.1,0 -81943620,"SOMA",purchase,1.0,0 -81943620,"SOMA",play,14.5,0 -81943620,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -81943620,"Burnout Paradise The Ultimate Box",play,14.3,0 -81943620,"Awesomenauts",purchase,1.0,0 -81943620,"Awesomenauts",play,13.6,0 -81943620,"The Walking Dead Season Two",purchase,1.0,0 -81943620,"The Walking Dead Season Two",play,12.1,0 -81943620,"Dungeon Defenders Eternity",purchase,1.0,0 -81943620,"Dungeon Defenders Eternity",play,11.9,0 -81943620,"Guacamelee! Gold Edition",purchase,1.0,0 -81943620,"Guacamelee! Gold Edition",play,10.9,0 -81943620,"BattleBlock Theater",purchase,1.0,0 -81943620,"BattleBlock Theater",play,10.0,0 -81943620,"Transistor",purchase,1.0,0 -81943620,"Transistor",play,9.4,0 -81943620,"Darksiders II",purchase,1.0,0 -81943620,"Darksiders II",play,9.3,0 -81943620,"Brawlhalla",purchase,1.0,0 -81943620,"Brawlhalla",play,9.3,0 -81943620,"The Wolf Among Us",purchase,1.0,0 -81943620,"The Wolf Among Us",play,9.1,0 -81943620,"Bastion",purchase,1.0,0 -81943620,"Bastion",play,9.0,0 -81943620,"Borderlands",purchase,1.0,0 -81943620,"Borderlands",play,8.7,0 -81943620,"BioShock Infinite",purchase,1.0,0 -81943620,"BioShock Infinite",play,8.3,0 -81943620,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -81943620,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",play,8.3,0 -81943620,"Portal 2",purchase,1.0,0 -81943620,"Portal 2",play,7.9,0 -81943620,"Portal",purchase,1.0,0 -81943620,"Portal",play,7.5,0 -81943620,"Stacking",purchase,1.0,0 -81943620,"Stacking",play,7.5,0 -81943620,"The Binding of Isaac Rebirth",purchase,1.0,0 -81943620,"The Binding of Isaac Rebirth",play,7.4,0 -81943620,"Pinball FX2",purchase,1.0,0 -81943620,"Pinball FX2",play,7.2,0 -81943620,"Team Fortress 2",purchase,1.0,0 -81943620,"Team Fortress 2",play,6.7,0 -81943620,"Antichamber",purchase,1.0,0 -81943620,"Antichamber",play,6.4,0 -81943620,"Long Live The Queen",purchase,1.0,0 -81943620,"Long Live The Queen",play,5.5,0 -81943620,"Organ Trail Director's Cut",purchase,1.0,0 -81943620,"Organ Trail Director's Cut",play,5.0,0 -81943620,"Don't Starve",purchase,1.0,0 -81943620,"Don't Starve",play,4.9,0 -81943620,"BIT.TRIP BEAT",purchase,1.0,0 -81943620,"BIT.TRIP BEAT",play,4.5,0 -81943620,"Jazzpunk",purchase,1.0,0 -81943620,"Jazzpunk",play,4.4,0 -81943620,"Braid",purchase,1.0,0 -81943620,"Braid",play,4.0,0 -81943620,"Costume Quest",purchase,1.0,0 -81943620,"Costume Quest",play,4.0,0 -81943620,"Hotline Miami",purchase,1.0,0 -81943620,"Hotline Miami",play,3.8,0 -81943620,"Little Inferno",purchase,1.0,0 -81943620,"Little Inferno",play,3.3,0 -81943620,"Blood Bowl Legendary Edition",purchase,1.0,0 -81943620,"Blood Bowl Legendary Edition",play,3.3,0 -81943620,"Strong Bad Episode 3 Baddest of the Bands",purchase,1.0,0 -81943620,"Strong Bad Episode 3 Baddest of the Bands",play,3.2,0 -81943620,"The Binding of Isaac",purchase,1.0,0 -81943620,"The Binding of Isaac",play,3.2,0 -81943620,"The Elder Scrolls IV Oblivion ",purchase,1.0,0 -81943620,"The Elder Scrolls IV Oblivion ",play,3.0,0 -81943620,"Strong Bad Episode 1 Homestar Ruiner",purchase,1.0,0 -81943620,"Strong Bad Episode 1 Homestar Ruiner",play,2.9,0 -81943620,"Papo & Yo",purchase,1.0,0 -81943620,"Papo & Yo",play,2.9,0 -81943620,"Trine 2",purchase,1.0,0 -81943620,"Trine 2",play,2.8,0 -81943620,"Strong Bad Episode 2 Strong Badia the Free",purchase,1.0,0 -81943620,"Strong Bad Episode 2 Strong Badia the Free",play,2.7,0 -81943620,"Metro 2033",purchase,1.0,0 -81943620,"Metro 2033",play,2.2,0 -81943620,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -81943620,"Warhammer 40,000 Dawn of War - Game of the Year Edition",play,2.1,0 -81943620,"Garry's Mod",purchase,1.0,0 -81943620,"Garry's Mod",play,2.0,0 -81943620,"Atom Zombie Smasher ",purchase,1.0,0 -81943620,"Atom Zombie Smasher ",play,1.9,0 -81943620,"Surgeon Simulator",purchase,1.0,0 -81943620,"Surgeon Simulator",play,1.8,0 -81943620,"Poker Night at the Inventory",purchase,1.0,0 -81943620,"Poker Night at the Inventory",play,1.8,0 -81943620,"Dead Island",purchase,1.0,0 -81943620,"Dead Island",play,1.8,0 -81943620,"Lone Survivor The Director's Cut",purchase,1.0,0 -81943620,"Lone Survivor The Director's Cut",play,1.6,0 -81943620,"Emily is Away",purchase,1.0,0 -81943620,"Emily is Away",play,1.5,0 -81943620,"Worms Reloaded",purchase,1.0,0 -81943620,"Worms Reloaded",play,1.4,0 -81943620,"War of the Roses",purchase,1.0,0 -81943620,"War of the Roses",play,1.3,0 -81943620,"Hitman Absolution",purchase,1.0,0 -81943620,"Hitman Absolution",play,1.1,0 -81943620,"Strong Bad Episode 4 Dangeresque 3",purchase,1.0,0 -81943620,"Strong Bad Episode 4 Dangeresque 3",play,1.1,0 -81943620,"Thirty Flights of Loving",purchase,1.0,0 -81943620,"Thirty Flights of Loving",play,1.0,0 -81943620,"Super Meat Boy",purchase,1.0,0 -81943620,"Super Meat Boy",play,1.0,0 -81943620,"Mass Effect 2",purchase,1.0,0 -81943620,"Mass Effect 2",play,0.9,0 -81943620,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -81943620,"Unreal Tournament 3 Black Edition",play,0.9,0 -81943620,"Dungeonland",purchase,1.0,0 -81943620,"Dungeonland",play,0.6,0 -81943620,"Reus",purchase,1.0,0 -81943620,"Reus",play,0.5,0 -81943620,"Dear Esther",purchase,1.0,0 -81943620,"Dear Esther",play,0.4,0 -81943620,"BIT.TRIP VOID",purchase,1.0,0 -81943620,"BIT.TRIP VOID",play,0.4,0 -81943620,"Tower of Guns",purchase,1.0,0 -81943620,"Tower of Guns",play,0.4,0 -81943620,"Strike Suit Zero",purchase,1.0,0 -81943620,"Strike Suit Zero",play,0.4,0 -81943620,"Sanctum 2",purchase,1.0,0 -81943620,"Sanctum 2",play,0.4,0 -81943620,"Shank 2",purchase,1.0,0 -81943620,"Shank 2",play,0.2,0 -81943620,"BIT.TRIP CORE",purchase,1.0,0 -81943620,"BIT.TRIP CORE",play,0.1,0 -81943620,"Proteus",purchase,1.0,0 -81943620,"Proteus",play,0.1,0 -81943620,"Sam & Max 301 The Penal Zone",purchase,1.0,0 -81943620,"Flotilla",purchase,1.0,0 -81943620,"Red Faction Armageddon",purchase,1.0,0 -81943620,"Air Forte ",purchase,1.0,0 -81943620,"Alan Wake",purchase,1.0,0 -81943620,"Alan Wake's American Nightmare",purchase,1.0,0 -81943620,"Amnesia A Machine for Pigs",purchase,1.0,0 -81943620,"Anna - Extended Edition",purchase,1.0,0 -81943620,"Anodyne",purchase,1.0,0 -81943620,"Aquaria",purchase,1.0,0 -81943620,"Assassin's Creed",purchase,1.0,0 -81943620,"Assassin's Creed II",purchase,1.0,0 -81943620,"Assassins Creed Unity",purchase,1.0,0 -81943620,"Avadon The Black Fortress",purchase,1.0,0 -81943620,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -81943620,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -81943620,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -81943620,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -81943620,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -81943620,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -81943620,"Batman Arkham Origins - Initiation",purchase,1.0,0 -81943620,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -81943620,"Batman Arkham Origins",purchase,1.0,0 -81943620,"BIT.TRIP FATE",purchase,1.0,0 -81943620,"BIT.TRIP FATE Original Soundtrack",purchase,1.0,0 -81943620,"BIT.TRIP FLUX",purchase,1.0,0 -81943620,"BIT.TRIP FLUX Soundtrack",purchase,1.0,0 -81943620,"BIT.TRIP RUNNER",purchase,1.0,0 -81943620,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -81943620,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -81943620,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -81943620,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -81943620,"Broken Sword 1 - Shadow of the Templars Director's Cut",purchase,1.0,0 -81943620,"Brtal Legend",purchase,1.0,0 -81943620,"Capsized",purchase,1.0,0 -81943620,"Castle Crashers",purchase,1.0,0 -81943620,"Cave Story+",purchase,1.0,0 -81943620,"Cities in Motion 2",purchase,1.0,0 -81943620,"Cities XL Platinum",purchase,1.0,0 -81943620,"Closure",purchase,1.0,0 -81943620,"Cogs",purchase,1.0,0 -81943620,"Company of Heroes",purchase,1.0,0 -81943620,"Company of Heroes (New Steam Version)",purchase,1.0,0 -81943620,"Company of Heroes Opposing Fronts",purchase,1.0,0 -81943620,"Company of Heroes Tales of Valor",purchase,1.0,0 -81943620,"Confrontation",purchase,1.0,0 -81943620,"Crayon Physics Deluxe",purchase,1.0,0 -81943620,"Crusader Kings II",purchase,1.0,0 -81943620,"Crysis 2 Maximum Edition",purchase,1.0,0 -81943620,"Darkest Hour Europe '44-'45",purchase,1.0,0 -81943620,"Dead Space",purchase,1.0,0 -81943620,"Defender's Quest Valley of the Forgotten",purchase,1.0,0 -81943620,"Deus Ex Game of the Year Edition",purchase,1.0,0 -81943620,"Deus Ex Human Revolution",purchase,1.0,0 -81943620,"Deus Ex Human Revolution - The Missing Link",purchase,1.0,0 -81943620,"Deus Ex Invisible War",purchase,1.0,0 -81943620,"Divinity II Developer's Cut",purchase,1.0,0 -81943620,"Dragon Age Origins",purchase,1.0,0 -81943620,"Dungeonland - All access pass",purchase,1.0,0 -81943620,"Dust An Elysian Tail",purchase,1.0,0 -81943620,"Dustforce",purchase,1.0,0 -81943620,"Eets Munchies",purchase,1.0,0 -81943620,"Eldritch",purchase,1.0,0 -81943620,"Eufloria",purchase,1.0,0 -81943620,"Eufloria HD",purchase,1.0,0 -81943620,"Eufloria HD Original Soundtrack",purchase,1.0,0 -81943620,"Europa Universalis III",purchase,1.0,0 -81943620,"Fallout New Vegas",purchase,1.0,0 -81943620,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -81943620,"Fallout New Vegas Dead Money",purchase,1.0,0 -81943620,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -81943620,"Fractal Make Blooms Not War",purchase,1.0,0 -81943620,"Frozen Synapse",purchase,1.0,0 -81943620,"FTL Faster Than Light",purchase,1.0,0 -81943620,"Game of Thrones ",purchase,1.0,0 -81943620,"Giana Sisters Twisted Dreams",purchase,1.0,0 -81943620,"Gratuitous Space Battles",purchase,1.0,0 -81943620,"Greed Corp",purchase,1.0,0 -81943620,"Hector Ep 1",purchase,1.0,0 -81943620,"Hector Ep 2",purchase,1.0,0 -81943620,"Hector Ep 3",purchase,1.0,0 -81943620,"Hitman 2 Silent Assassin",purchase,1.0,0 -81943620,"Hitman Blood Money",purchase,1.0,0 -81943620,"Hitman Codename 47",purchase,1.0,0 -81943620,"Hitman Sniper Challenge",purchase,1.0,0 -81943620,"HOARD",purchase,1.0,0 -81943620,"Incredipede",purchase,1.0,0 -81943620,"Indie Game The Movie",purchase,1.0,0 -81943620,"Insanely Twisted Shadow Planet",purchase,1.0,0 -81943620,"Jagged Alliance - Back in Action",purchase,1.0,0 -81943620,"Jamestown",purchase,1.0,0 -81943620,"Joe Danger 2 The Movie",purchase,1.0,0 -81943620,"Killing Floor",purchase,1.0,0 -81943620,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -81943620,"King's Bounty Armored Princess",purchase,1.0,0 -81943620,"King's Bounty Crossworlds",purchase,1.0,0 -81943620,"King's Bounty The Legend",purchase,1.0,0 -81943620,"Legend of Grimrock",purchase,1.0,0 -81943620,"Leviathan Warships",purchase,1.0,0 -81943620,"Lilly Looking Through",purchase,1.0,0 -81943620,"Machinarium",purchase,1.0,0 -81943620,"Magicka Final Frontier",purchase,1.0,0 -81943620,"Magicka Frozen Lake",purchase,1.0,0 -81943620,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -81943620,"Magicka Nippon",purchase,1.0,0 -81943620,"Magicka Party Robes",purchase,1.0,0 -81943620,"Magicka The Watchtower",purchase,1.0,0 -81943620,"Magicka Vietnam",purchase,1.0,0 -81943620,"Magicka Wizard's Survival Kit",purchase,1.0,0 -81943620,"Mare Nostrum",purchase,1.0,0 -81943620,"Mark of the Ninja",purchase,1.0,0 -81943620,"Mass Effect",purchase,1.0,0 -81943620,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -81943620,"Medal of Honor(TM) Single Player",purchase,1.0,0 -81943620,"Medal of Honor Pre-Order",purchase,1.0,0 -81943620,"Men of War",purchase,1.0,0 -81943620,"Men of War Assault Squad",purchase,1.0,0 -81943620,"Men of War Red Tide",purchase,1.0,0 -81943620,"Mirror's Edge",purchase,1.0,0 -81943620,"Monaco",purchase,1.0,0 -81943620,"Ms. Splosion Man",purchase,1.0,0 -81943620,"Natural Selection 2",purchase,1.0,0 -81943620,"Offspring Fling!",purchase,1.0,0 -81943620,"OlliOlli",purchase,1.0,0 -81943620,"Orcs Must Die!",purchase,1.0,0 -81943620,"Orcs Must Die! 2",purchase,1.0,0 -81943620,"Pinball FX2 - Core pack",purchase,1.0,0 -81943620,"Pinball FX2 - Earth Defense Table",purchase,1.0,0 -81943620,"Pinball FX2 - Epic Quest Table",purchase,1.0,0 -81943620,"Pinball FX2 - Marvel Pinball Avengers Chronicles pack",purchase,1.0,0 -81943620,"Pinball FX2 - Marvel Pinball Original Pack",purchase,1.0,0 -81943620,"Pinball FX2 - Paranormal Table",purchase,1.0,0 -81943620,"Pinball FX2 - Star Wars Pack",purchase,1.0,0 -81943620,"Pinball FX2 - Zen Classics Pack",purchase,1.0,0 -81943620,"Psychonauts",purchase,1.0,0 -81943620,"Psychonauts Demo",purchase,1.0,0 -81943620,"Puzzle Agent",purchase,1.0,0 -81943620,"Puzzle Agent 2",purchase,1.0,0 -81943620,"RAW - Realms of Ancient War",purchase,1.0,0 -81943620,"Red Faction Guerrilla Steam Edition",purchase,1.0,0 -81943620,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -81943620,"Red Orchestra Ostfront 41-45",purchase,1.0,0 -81943620,"Risen",purchase,1.0,0 -81943620,"Risen 2 - Dark Waters",purchase,1.0,0 -81943620,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -81943620,"Rochard",purchase,1.0,0 -81943620,"Sacred 2 Gold",purchase,1.0,0 -81943620,"Sacred Citadel",purchase,1.0,0 -81943620,"Saints Row 2",purchase,1.0,0 -81943620,"Sam & Max 302 The Tomb of Sammun-Mak",purchase,1.0,0 -81943620,"Sam & Max 303 They Stole Max's Brain!",purchase,1.0,0 -81943620,"Sam & Max 304 Beyond the Alley of the Dolls",purchase,1.0,0 -81943620,"Sam & Max 305 The City that Dares not Sleep",purchase,1.0,0 -81943620,"Sanctum",purchase,1.0,0 -81943620,"Serious Sam 3 BFE",purchase,1.0,0 -81943620,"Shadowgrounds",purchase,1.0,0 -81943620,"Shadowgrounds Survivor",purchase,1.0,0 -81943620,"Shatter",purchase,1.0,0 -81943620,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -81943620,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -81943620,"Sine Mora",purchase,1.0,0 -81943620,"SkyDrift",purchase,1.0,0 -81943620,"Snapshot",purchase,1.0,0 -81943620,"Space Pirates and Zombies",purchase,1.0,0 -81943620,"Splice",purchase,1.0,0 -81943620,"Star Wars Knights of the Old Republic",purchase,1.0,0 -81943620,"Stealth Bastard Deluxe",purchase,1.0,0 -81943620,"Strong Bad Episode 5 8-Bit Is Enough",purchase,1.0,0 -81943620,"Superbrothers Sword & Sworcery EP",purchase,1.0,0 -81943620,"Swords and Soldiers HD",purchase,1.0,0 -81943620,"Tales from Space Mutant Blobs Attack",purchase,1.0,0 -81943620,"Tales from the Borderlands",purchase,1.0,0 -81943620,"Teleglitch Die More Edition",purchase,1.0,0 -81943620,"The Bard's Tale",purchase,1.0,0 -81943620,"The Basement Collection",purchase,1.0,0 -81943620,"The Cat Lady",purchase,1.0,0 -81943620,"The Novelist",purchase,1.0,0 -81943620,"The Showdown Effect",purchase,1.0,0 -81943620,"The Swapper",purchase,1.0,0 -81943620,"The Yawhg",purchase,1.0,0 -81943620,"Thomas Was Alone",purchase,1.0,0 -81943620,"Ticket to Ride",purchase,1.0,0 -81943620,"Ticket to Ride - USA 1910",purchase,1.0,0 -81943620,"Toki Tori 2+",purchase,1.0,0 -81943620,"Torchlight",purchase,1.0,0 -81943620,"To the Moon",purchase,1.0,0 -81943620,"Trine",purchase,1.0,0 -81943620,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -81943620,"Tropico 4",purchase,1.0,0 -81943620,"Unreal Gold",purchase,1.0,0 -81943620,"Unreal II The Awakening",purchase,1.0,0 -81943620,"Unreal Tournament 2004",purchase,1.0,0 -81943620,"Unreal Tournament Game of the Year Edition",purchase,1.0,0 -81943620,"Vessel",purchase,1.0,0 -81943620,"Waking Mars",purchase,1.0,0 -81943620,"Wallace & Gromit Ep 1 Fright of the Bumblebees",purchase,1.0,0 -81943620,"Wallace & Gromit Ep 2 The Last Resort",purchase,1.0,0 -81943620,"Wallace & Gromit Ep 3 Muzzled!",purchase,1.0,0 -81943620,"Wallace & Gromit Ep 4 The Bogey Man",purchase,1.0,0 -81943620,"Warlock - Master of the Arcane",purchase,1.0,0 -81943620,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -81943620,"War of the Roses Kingmaker",purchase,1.0,0 -81943620,"War of the Roses Balance Beta",purchase,1.0,0 -81943620,"Wizorb",purchase,1.0,0 -81943620,"Zen Bound 2",purchase,1.0,0 -80265154,"Medieval II Total War Kingdoms",purchase,1.0,0 -80265154,"Medieval II Total War Kingdoms",play,284.0,0 -80265154,"Empire Total War",purchase,1.0,0 -80265154,"Empire Total War",play,149.0,0 -80265154,"Total War ROME II - Emperor Edition",purchase,1.0,0 -80265154,"Total War ROME II - Emperor Edition",play,25.0,0 -80265154,"Medieval II Total War",purchase,1.0,0 -80265154,"Medieval II Total War",play,23.0,0 -80265154,"Napoleon Total War",purchase,1.0,0 -80265154,"Napoleon Total War",play,21.0,0 -193581345,"Unturned",purchase,1.0,0 -193581345,"Unturned",play,15.0,0 -65076545,"Call of Duty Modern Warfare 2",purchase,1.0,0 -65076545,"Call of Duty Modern Warfare 2",play,27.0,0 -65076545,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -65076545,"Call of Duty Modern Warfare 2 - Multiplayer",play,1.2,0 -237022317,"Dota 2",purchase,1.0,0 -237022317,"Dota 2",play,10.4,0 -237022317,"Dead Island Epidemic",purchase,1.0,0 -237022317,"FreeStyle2 Street Basketball",purchase,1.0,0 -237022317,"Happy Wars",purchase,1.0,0 -237022317,"Marvel Heroes 2015",purchase,1.0,0 -237022317,"Neverwinter",purchase,1.0,0 -237022317,"Quake Live",purchase,1.0,0 -237022317,"Super Monday Night Combat",purchase,1.0,0 -237022317,"theHunter",purchase,1.0,0 -237022317,"Warframe",purchase,1.0,0 -238220798,"Robocraft",purchase,1.0,0 -238220798,"Warside",purchase,1.0,0 -293101422,"Team Fortress 2",purchase,1.0,0 -293101422,"Team Fortress 2",play,79.0,0 -94396146,"The Elder Scrolls V Skyrim",purchase,1.0,0 -94396146,"The Elder Scrolls V Skyrim",play,24.0,0 -70180527,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -70180527,"Call of Duty Black Ops - Multiplayer",play,1902.0,0 -70180527,"Call of Duty Black Ops",purchase,1.0,0 -70180527,"Call of Duty Black Ops",play,66.0,0 -70180527,"Aliens vs. Predator",purchase,1.0,0 -70180527,"Aliens vs. Predator",play,10.6,0 -70180527,"Mafia II",purchase,1.0,0 -70180527,"Mafia II",play,3.1,0 -70180527,"Super Meat Boy",purchase,1.0,0 -70180527,"Super Meat Boy",play,1.1,0 -70180527,"Sniper Ghost Warrior",purchase,1.0,0 -70180527,"Sniper Ghost Warrior",play,1.0,0 -70180527,"FEZ",purchase,1.0,0 -70180527,"FEZ",play,0.9,0 -70180527,"Braid",purchase,1.0,0 -70180527,"Braid",play,0.2,0 -70180527,"Indie Game The Movie",purchase,1.0,0 -53784377,"Counter-Strike",purchase,1.0,0 -53784377,"Counter-Strike",play,848.0,0 -53784377,"Counter-Strike Source",purchase,1.0,0 -53784377,"Counter-Strike Source",play,42.0,0 -53784377,"Alien Swarm",purchase,1.0,0 -53784377,"Alien Swarm",play,2.3,0 -53784377,"Team Fortress 2",purchase,1.0,0 -53784377,"Team Fortress 2",play,0.6,0 -53784377,"Counter-Strike Condition Zero",purchase,1.0,0 -53784377,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -138958592,"Dota 2",purchase,1.0,0 -138958592,"Dota 2",play,208.0,0 -138958592,"Grand Theft Auto V",purchase,1.0,0 -138958592,"Grand Theft Auto V",play,23.0,0 -138958592,"Borderlands 2",purchase,1.0,0 -138958592,"Borderlands 2",play,13.5,0 -73761548,"Sid Meier's Civilization V",purchase,1.0,0 -73761548,"Sid Meier's Civilization V",play,92.0,0 -94931090,"Dark Messiah of Might & Magic Multi-Player",purchase,1.0,0 -94931090,"Dark Messiah of Might & Magic Single Player",purchase,1.0,0 -156407373,"Counter-Strike Global Offensive",purchase,1.0,0 -156407373,"Counter-Strike Global Offensive",play,493.0,0 -156407373,"Euro Truck Simulator 2",purchase,1.0,0 -156407373,"Euro Truck Simulator 2",play,80.0,0 -156407373,"Garry's Mod",purchase,1.0,0 -156407373,"Garry's Mod",play,37.0,0 -156407373,"Assassin's Creed IV Black Flag",purchase,1.0,0 -156407373,"Assassin's Creed IV Black Flag",play,30.0,0 -156407373,"The Forest",purchase,1.0,0 -156407373,"The Forest",play,13.3,0 -156407373,"APB Reloaded",purchase,1.0,0 -156407373,"APB Reloaded",play,9.5,0 -156407373,"Left 4 Dead 2",purchase,1.0,0 -156407373,"Left 4 Dead 2",play,8.0,0 -156407373,"Far Cry 3",purchase,1.0,0 -156407373,"Far Cry 3",play,7.9,0 -156407373,"NBA 2K15",purchase,1.0,0 -156407373,"NBA 2K15",play,7.5,0 -156407373,"Game Dev Tycoon",purchase,1.0,0 -156407373,"Game Dev Tycoon",play,4.9,0 -156407373,"Cry of Fear",purchase,1.0,0 -156407373,"Cry of Fear",play,4.0,0 -156407373,"Terraria",purchase,1.0,0 -156407373,"Terraria",play,2.6,0 -156407373,"Fishing Planet",purchase,1.0,0 -156407373,"Fishing Planet",play,1.7,0 -156407373,"Unturned",purchase,1.0,0 -156407373,"Unturned",play,1.6,0 -156407373,"Outlast",purchase,1.0,0 -156407373,"Outlast",play,1.5,0 -156407373,"RollerCoaster Tycoon 3 Platinum!",purchase,1.0,0 -156407373,"RollerCoaster Tycoon 3 Platinum!",play,1.1,0 -156407373,"The Stanley Parable",purchase,1.0,0 -156407373,"The Stanley Parable",play,1.1,0 -156407373,"SMITE",purchase,1.0,0 -156407373,"SMITE",play,0.9,0 -156407373,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -156407373,"Call of Duty Black Ops II - Multiplayer",play,0.9,0 -156407373,"Counter-Strike Source",purchase,1.0,0 -156407373,"Counter-Strike Source",play,0.9,0 -156407373,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -156407373,"Call of Duty Black Ops II - Zombies",play,0.8,0 -156407373,"PAYDAY 2",purchase,1.0,0 -156407373,"PAYDAY 2",play,0.4,0 -156407373,"South Park The Stick of Truth",purchase,1.0,0 -156407373,"South Park The Stick of Truth",play,0.4,0 -156407373,"Five Nights at Freddy's",purchase,1.0,0 -156407373,"Five Nights at Freddy's",play,0.2,0 -156407373,"Bloodline Champions",purchase,1.0,0 -156407373,"Bloodline Champions",play,0.2,0 -156407373,"Teeworlds",purchase,1.0,0 -156407373,"Teeworlds",play,0.1,0 -156407373,"F.E.A.R. Online",purchase,1.0,0 -156407373,"I, Zombie",purchase,1.0,0 -156407373,"Counter-Strike",purchase,1.0,0 -156407373,"Call of Duty Black Ops II",purchase,1.0,0 -156407373,"Counter-Strike Condition Zero",purchase,1.0,0 -156407373,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -156407373,"Heroes of Scene",purchase,1.0,0 -156407373,"Transformice",purchase,1.0,0 -283111528,"Codename CURE",purchase,1.0,0 -283111528,"Codename CURE",play,5.3,0 -283111528,"Aberoth",purchase,1.0,0 -283111528,"Aberoth",play,0.4,0 -202700087,"Insurgency",purchase,1.0,0 -202700087,"Insurgency",play,29.0,0 -202700087,"Metro 2033",purchase,1.0,0 -213422095,"Counter-Strike Global Offensive",purchase,1.0,0 -213422095,"Counter-Strike Global Offensive",play,1.9,0 -217485443,"Dota 2",purchase,1.0,0 -217485443,"Dota 2",play,4.6,0 -210076971,"Dizzel",purchase,1.0,0 -305130721,"Might & Magic Heroes Online",purchase,1.0,0 -305130721,"Might & Magic Heroes Online",play,0.1,0 -305130721,"Heroes & Generals",purchase,1.0,0 -85673716,"The Elder Scrolls V Skyrim",purchase,1.0,0 -85673716,"The Elder Scrolls V Skyrim",play,520.0,0 -85673716,"Crusader Kings II",purchase,1.0,0 -85673716,"Crusader Kings II",play,364.0,0 -85673716,"Deus Ex Human Revolution",purchase,1.0,0 -85673716,"Deus Ex Human Revolution",play,50.0,0 -85673716,"Borderlands",purchase,1.0,0 -85673716,"Borderlands",play,49.0,0 -85673716,"Borderlands 2",purchase,1.0,0 -85673716,"Borderlands 2",play,40.0,0 -85673716,"Cradle",purchase,1.0,0 -85673716,"Cradle",play,25.0,0 -85673716,"Toy Soldiers",purchase,1.0,0 -85673716,"Toy Soldiers",play,20.0,0 -85673716,"Alien Isolation",purchase,1.0,0 -85673716,"Alien Isolation",play,16.6,0 -85673716,"Company of Heroes (New Steam Version)",purchase,1.0,0 -85673716,"Company of Heroes (New Steam Version)",play,14.6,0 -85673716,"The Walking Dead",purchase,1.0,0 -85673716,"The Walking Dead",play,9.2,0 -85673716,"Deadlight",purchase,1.0,0 -85673716,"Deadlight",play,6.7,0 -85673716,"Dead Island",purchase,1.0,0 -85673716,"Dead Island",play,5.3,0 -85673716,"Left 4 Dead",purchase,1.0,0 -85673716,"Left 4 Dead",play,5.2,0 -85673716,"Deus Ex Game of the Year Edition",purchase,1.0,0 -85673716,"Deus Ex Game of the Year Edition",play,4.3,0 -85673716,"Iron Brigade",purchase,1.0,0 -85673716,"Iron Brigade",play,4.0,0 -85673716,"Insanely Twisted Shadow Planet",purchase,1.0,0 -85673716,"Insanely Twisted Shadow Planet",play,2.2,0 -85673716,"Company of Heroes",purchase,1.0,0 -85673716,"Company of Heroes",play,1.6,0 -85673716,"HAWKEN",purchase,1.0,0 -85673716,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -85673716,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -85673716,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -85673716,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -85673716,"Dead Island Riptide",purchase,1.0,0 -85673716,"Deadlight Original Soundtrack",purchase,1.0,0 -85673716,"Mark of the Ninja",purchase,1.0,0 -281084246,"Spooky's House of Jump Scares",purchase,1.0,0 -281084246,"Spooky's House of Jump Scares",play,0.5,0 -281084246,"Soccer Manager 2015",purchase,1.0,0 -281084246,"Soccer Manager 2015",play,0.4,0 -281084246,"Trove",purchase,1.0,0 -281084246,"Trove",play,0.4,0 -231591025,"Dota 2",purchase,1.0,0 -231591025,"Dota 2",play,0.6,0 -171216006,"Dota 2",purchase,1.0,0 -171216006,"Dota 2",play,0.6,0 -206896748,"Garry's Mod",purchase,1.0,0 -206896748,"Garry's Mod",play,59.0,0 -206896748,"Grand Theft Auto V",purchase,1.0,0 -206896748,"Grand Theft Auto V",play,11.9,0 -206896748,"Surgeon Simulator",purchase,1.0,0 -206896748,"Surgeon Simulator",play,1.3,0 -195559468,"Dota 2",purchase,1.0,0 -195559468,"Dota 2",play,0.1,0 -230626371,"Dota 2",purchase,1.0,0 -230626371,"Dota 2",play,1.2,0 -126690600,"Dota 2",purchase,1.0,0 -126690600,"Dota 2",play,0.2,0 -269853648,"Dragon Age Origins",purchase,1.0,0 -269853648,"Dragon Age Origins",play,21.0,0 -158762452,"Dota 2",purchase,1.0,0 -158762452,"Dota 2",play,1.5,0 -129364343,"Counter-Strike Global Offensive",purchase,1.0,0 -129364343,"Counter-Strike Global Offensive",play,45.0,0 -129364343,"Ace of Spades",purchase,1.0,0 -129364343,"Ace of Spades",play,21.0,0 -129364343,"Dota 2",purchase,1.0,0 -129364343,"Dota 2",play,2.8,0 -129364343,"South Park The Stick of Truth",purchase,1.0,0 -129364343,"South Park The Stick of Truth",play,2.4,0 -129364343,"Warframe",purchase,1.0,0 -129364343,"Warframe",play,1.1,0 -129364343,"Trove",purchase,1.0,0 -129364343,"Trove",play,0.9,0 -129364343,"Heroes & Generals",purchase,1.0,0 -129364343,"Heroes & Generals",play,0.2,0 -129364343,"No More Room in Hell",purchase,1.0,0 -129364343,"No More Room in Hell",play,0.2,0 -129364343,"Brawlhalla",purchase,1.0,0 -129364343,"Brawlhalla",play,0.2,0 -129364343,"War Inc. Battlezone",purchase,1.0,0 -129364343,"Heroes of SoulCraft",purchase,1.0,0 -129364343,"FINAL FANTASY XIII",purchase,1.0,0 -129364343,"FINAL FANTASY XIII-2",purchase,1.0,0 -213256245,"Dota 2",purchase,1.0,0 -213256245,"Dota 2",play,3.1,0 -173026047,"Dota 2",purchase,1.0,0 -173026047,"Dota 2",play,1.0,0 -309265377,"Brawlhalla",purchase,1.0,0 -309265377,"Brawlhalla",play,2.0,0 -309265377,"MicroVolts Surge",purchase,1.0,0 -309265377,"MicroVolts Surge",play,0.8,0 -111202525,"Counter-Strike Source",purchase,1.0,0 -111202525,"Counter-Strike Source",play,239.0,0 -111202525,"Day of Defeat Source",purchase,1.0,0 -111202525,"Day of Defeat Source",play,25.0,0 -111202525,"Hitman Absolution",purchase,1.0,0 -111202525,"Hitman Absolution",play,6.8,0 -111202525,"Half-Life 2 Deathmatch",purchase,1.0,0 -111202525,"Half-Life 2 Deathmatch",play,0.9,0 -111202525,"Half-Life 2 Lost Coast",purchase,1.0,0 -203370502,"Dota 2",purchase,1.0,0 -203370502,"Dota 2",play,2.4,0 -137398114,"Need for Speed Hot Pursuit",purchase,1.0,0 -137398114,"Need for Speed Hot Pursuit",play,0.8,0 -90277291,"Team Fortress 2",purchase,1.0,0 -90277291,"Team Fortress 2",play,0.6,0 -152581137,"Dota 2",purchase,1.0,0 -152581137,"Dota 2",play,0.3,0 -25411448,"Counter-Strike",purchase,1.0,0 -25411448,"Counter-Strike",play,20.0,0 -25411448,"Age of Chivalry",purchase,1.0,0 -25411448,"Age of Chivalry",play,0.6,0 -25411448,"Call of Duty",purchase,1.0,0 -25411448,"Counter-Strike Condition Zero",purchase,1.0,0 -25411448,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -25411448,"Day of Defeat Source",purchase,1.0,0 -248376475,"Unturned",purchase,1.0,0 -248376475,"Unturned",play,7.8,0 -248376475,"Heroes & Generals",purchase,1.0,0 -248507053,"Five Nights at Freddy's 4",purchase,1.0,0 -248507053,"Five Nights at Freddy's 4",play,0.7,0 -202843172,"BioShock Infinite",purchase,1.0,0 -202843172,"BioShock Infinite",play,11.1,0 -202843172,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -202843172,"Fallout 3 - Game of the Year Edition",play,10.4,0 -202843172,"Besiege",purchase,1.0,0 -202843172,"Besiege",play,6.1,0 -202843172,"Secrets of Grindea",purchase,1.0,0 -202843172,"Secrets of Grindea",play,5.3,0 -202843172,"The Elder Scrolls V Skyrim",purchase,1.0,0 -202843172,"The Elder Scrolls V Skyrim",play,1.7,0 -202843172,"FINAL FANTASY VII",purchase,1.0,0 -202843172,"FINAL FANTASY VII",play,1.0,0 -202843172,"Path of Exile",purchase,1.0,0 -202843172,"Rise of Incarnates",purchase,1.0,0 -202843172,"Warframe",purchase,1.0,0 -100412579,"Order of War",purchase,1.0,0 -100412579,"Order of War",play,2.2,0 -237696689,"Dota 2",purchase,1.0,0 -237696689,"Dota 2",play,0.4,0 -222180483,"Counter-Strike Global Offensive",purchase,1.0,0 -222180483,"Counter-Strike Global Offensive",play,655.0,0 -222180483,"Rocket League",purchase,1.0,0 -222180483,"Rocket League",play,10.9,0 -222180483,"Team Fortress 2",purchase,1.0,0 -222180483,"Team Fortress 2",play,4.3,0 -222180483,"Dota 2",purchase,1.0,0 -222180483,"Dota 2",play,4.0,0 -222180483,"Warframe",purchase,1.0,0 -222180483,"Warframe",play,3.6,0 -222180483,"Unturned",purchase,1.0,0 -222180483,"Unturned",play,2.9,0 -222180483,"Loadout",purchase,1.0,0 -222180483,"Loadout",play,2.7,0 -222180483,"War Thunder",purchase,1.0,0 -222180483,"War Thunder",play,2.3,0 -222180483,"Caster",purchase,1.0,0 -222180483,"Caster",play,1.2,0 -222180483,"BEEP",purchase,1.0,0 -222180483,"BEEP",play,0.7,0 -222180483,"DiggerOnline",purchase,1.0,0 -222180483,"DiggerOnline",play,0.5,0 -222180483,"HAWKEN",purchase,1.0,0 -222180483,"HAWKEN",play,0.5,0 -222180483,"Nosgoth",purchase,1.0,0 -222180483,"Nosgoth",play,0.4,0 -222180483,"Fishing Planet",purchase,1.0,0 -222180483,"Fishing Planet",play,0.3,0 -222180483,"Trove",purchase,1.0,0 -222180483,"Trove",play,0.3,0 -222180483,"BLOCKADE 3D",purchase,1.0,0 -222180483,"BLOCKADE 3D",play,0.3,0 -222180483,"404Sight",purchase,1.0,0 -222180483,"Tribes Ascend",purchase,1.0,0 -222180483,"Batla",purchase,1.0,0 -222180483,"Counter-Strike Nexon Zombies",purchase,1.0,0 -222180483,"Fractured Space",purchase,1.0,0 -222180483,"Modular Combat",purchase,1.0,0 -222180483,"Pirates of Black Cove Gold",purchase,1.0,0 -222180483,"Warside",purchase,1.0,0 -170198088,"Warframe",purchase,1.0,0 -170198088,"Warframe",play,93.0,0 -170198088,"Team Fortress 2",purchase,1.0,0 -170198088,"Team Fortress 2",play,29.0,0 -170198088,"Garry's Mod",purchase,1.0,0 -170198088,"Garry's Mod",play,18.7,0 -170198088,"Echo of Soul",purchase,1.0,0 -170198088,"Echo of Soul",play,3.7,0 -170198088,"Survarium",purchase,1.0,0 -170198088,"Survarium",play,3.0,0 -170198088,"HAWKEN",purchase,1.0,0 -170198088,"HAWKEN",play,2.3,0 -170198088,"TERA",purchase,1.0,0 -170198088,"TERA",play,1.7,0 -170198088,"Path of Exile",purchase,1.0,0 -170198088,"Path of Exile",play,1.7,0 -170198088,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -170198088,"Tom Clancy's Ghost Recon Phantoms - NA",play,1.4,0 -170198088,"Heroes & Generals",purchase,1.0,0 -170198088,"Heroes & Generals",play,0.9,0 -170198088,"Marvel Heroes 2015",purchase,1.0,0 -170198088,"PlanetSide 2",purchase,1.0,0 -174507916,"Team Fortress 2",purchase,1.0,0 -174507916,"Team Fortress 2",play,306.0,0 -174507916,"Counter-Strike Global Offensive",purchase,1.0,0 -174507916,"Counter-Strike Global Offensive",play,296.0,0 -174507916,"PAYDAY The Heist",purchase,1.0,0 -174507916,"PAYDAY The Heist",play,9.0,0 -174507916,"Sniper Elite V2",purchase,1.0,0 -174507916,"Sniper Elite V2",play,8.2,0 -174507916,"Left 4 Dead 2",purchase,1.0,0 -174507916,"Left 4 Dead 2",play,7.4,0 -174507916,"The Witcher Enhanced Edition",purchase,1.0,0 -174507916,"The Witcher Enhanced Edition",play,5.0,0 -174507916,"Fallout 3",purchase,1.0,0 -174507916,"Fallout 3",play,4.2,0 -174507916,"Heroes & Generals",purchase,1.0,0 -174507916,"Heroes & Generals",play,3.5,0 -174507916,"Warface",purchase,1.0,0 -174507916,"Warface",play,3.1,0 -174507916,"Alien Swarm",purchase,1.0,0 -174507916,"Alien Swarm",play,1.3,0 -174507916,"Arma Cold War Assault",purchase,1.0,0 -174507916,"Arma Cold War Assault",play,0.3,0 -174507916,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -174507916,"Arma 2 Operation Arrowhead",purchase,1.0,0 -3979930,"FTL Faster Than Light",purchase,1.0,0 -3979930,"FTL Faster Than Light",play,145.0,0 -3979930,"Day of Defeat",purchase,1.0,0 -3979930,"Day of Defeat",play,115.0,0 -3979930,"Fallout New Vegas",purchase,1.0,0 -3979930,"Fallout New Vegas",play,46.0,0 -3979930,"Arma 2",purchase,1.0,0 -3979930,"Arma 2",play,38.0,0 -3979930,"Arma 2 Operation Arrowhead",purchase,1.0,0 -3979930,"Arma 2 Operation Arrowhead",play,18.9,0 -3979930,"Wargame European Escalation",purchase,1.0,0 -3979930,"Wargame European Escalation",play,10.1,0 -3979930,"Papers, Please",purchase,1.0,0 -3979930,"Papers, Please",play,5.9,0 -3979930,"Fallout Tactics",purchase,1.0,0 -3979930,"Fallout Tactics",play,4.7,0 -3979930,"Wargame AirLand Battle",purchase,1.0,0 -3979930,"Wargame AirLand Battle",play,4.2,0 -3979930,"Left 4 Dead",purchase,1.0,0 -3979930,"Left 4 Dead",play,3.1,0 -3979930,"Borderlands 2",purchase,1.0,0 -3979930,"Borderlands 2",play,1.5,0 -3979930,"theHunter",purchase,1.0,0 -3979930,"theHunter",play,1.0,0 -3979930,"Fallout",purchase,1.0,0 -3979930,"Fallout",play,0.9,0 -3979930,"Fallout 2",purchase,1.0,0 -3979930,"Fallout 2",play,0.4,0 -3979930,"Half-Life",purchase,1.0,0 -3979930,"Half-Life",play,0.4,0 -3979930,"Counter-Strike Source",purchase,1.0,0 -3979930,"Counter-Strike Source",play,0.3,0 -3979930,"Robocraft",purchase,1.0,0 -3979930,"Robocraft",play,0.2,0 -3979930,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -3979930,"Counter-Strike",purchase,1.0,0 -3979930,"Deathmatch Classic",purchase,1.0,0 -3979930,"Half-Life 2",purchase,1.0,0 -3979930,"Half-Life 2 Deathmatch",purchase,1.0,0 -3979930,"Half-Life 2 Lost Coast",purchase,1.0,0 -3979930,"Half-Life Blue Shift",purchase,1.0,0 -3979930,"Half-Life Opposing Force",purchase,1.0,0 -3979930,"Ricochet",purchase,1.0,0 -3979930,"Team Fortress Classic",purchase,1.0,0 -182593346,"Dota 2",purchase,1.0,0 -182593346,"Dota 2",play,0.5,0 -283651572,"Unturned",purchase,1.0,0 -283651572,"Unturned",play,9.0,0 -283651572,"Robocraft",purchase,1.0,0 -283651572,"Robocraft",play,3.0,0 -160767652,"The Elder Scrolls V Skyrim",purchase,1.0,0 -160767652,"The Elder Scrolls V Skyrim",play,227.0,0 -160767652,"Borderlands 2",purchase,1.0,0 -160767652,"Borderlands 2",play,93.0,0 -160767652,"Rocket League",purchase,1.0,0 -160767652,"Rocket League",play,11.0,0 -160767652,"The Mighty Quest For Epic Loot",purchase,1.0,0 -160767652,"The Mighty Quest For Epic Loot",play,9.3,0 -160767652,"Magic 2014 ",purchase,1.0,0 -160767652,"Magic 2014 ",play,7.9,0 -160767652,"Worms Ultimate Mayhem",purchase,1.0,0 -160767652,"Worms Ultimate Mayhem",play,5.7,0 -160767652,"Skyrim Script Extender (SKSE)",purchase,1.0,0 -160767652,"Neverwinter",purchase,1.0,0 -160767652,"Nosgoth",purchase,1.0,0 -160767652,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -160767652,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -160767652,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -107623882,"Total War SHOGUN 2",purchase,1.0,0 -107623882,"Total War SHOGUN 2",play,201.0,0 -107623882,"Empire Total War",purchase,1.0,0 -107623882,"Empire Total War",play,181.0,0 -107623882,"Napoleon Total War",purchase,1.0,0 -107623882,"Napoleon Total War",play,71.0,0 -107623882,"Total War ROME II - Emperor Edition",purchase,1.0,0 -107623882,"Total War ROME II - Emperor Edition",play,12.1,0 -107623882,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -280457098,"Team Fortress 2",purchase,1.0,0 -280457098,"Team Fortress 2",play,0.7,0 -94229851,"Euro Truck Simulator 2",purchase,1.0,0 -94229851,"Euro Truck Simulator 2",play,75.0,0 -94229851,"DayZ",purchase,1.0,0 -94229851,"DayZ",play,65.0,0 -94229851,"Next Car Game Wreckfest",purchase,1.0,0 -94229851,"Next Car Game Wreckfest",play,41.0,0 -94229851,"Need for Speed Hot Pursuit",purchase,1.0,0 -94229851,"Need for Speed Hot Pursuit",play,40.0,0 -94229851,"Terraria",purchase,1.0,0 -94229851,"Terraria",play,5.1,0 -94229851,"No More Room in Hell",purchase,1.0,0 -94229851,"No More Room in Hell",play,1.9,0 -94229851,"Heroes & Generals",purchase,1.0,0 -94229851,"Heroes & Generals",play,1.1,0 -94229851,"Counter-Strike Global Offensive",purchase,1.0,0 -94229851,"Counter-Strike Global Offensive",play,1.0,0 -94229851,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -94229851,"Next Car Game Sneak Peek 2.0",purchase,1.0,0 -135698781,"Magic 2014 ",purchase,1.0,0 -135698781,"Magic 2014 ",play,217.0,0 -135698781,"Magic Duels",purchase,1.0,0 -135698781,"Magic Duels",play,146.0,0 -135698781,"Magic 2015",purchase,1.0,0 -135698781,"Magic 2015",play,64.0,0 -20266830,"Counter-Strike Source",purchase,1.0,0 -20266830,"Half-Life 2",purchase,1.0,0 -20266830,"Half-Life 2 Deathmatch",purchase,1.0,0 -20266830,"Half-Life 2 Lost Coast",purchase,1.0,0 -20266830,"Half-Life Source",purchase,1.0,0 -20266830,"Half-Life Deathmatch Source",purchase,1.0,0 -126294907,"The Elder Scrolls V Skyrim",purchase,1.0,0 -126294907,"The Elder Scrolls V Skyrim",play,190.0,0 -298008741,"Rust",purchase,1.0,0 -298008741,"Rust",play,42.0,0 -70395325,"Portal",purchase,1.0,0 -133313288,"Sniper Elite Nazi Zombie Army",purchase,1.0,0 -133313288,"Sniper Elite Nazi Zombie Army",play,4.6,0 -60859695,"Don't Starve",purchase,1.0,0 -60859695,"Don't Starve",play,148.0,0 -60859695,"Terraria",purchase,1.0,0 -60859695,"Terraria",play,73.0,0 -60859695,"Don't Starve Together Beta",purchase,1.0,0 -60859695,"Don't Starve Together Beta",play,63.0,0 -60859695,"Starbound",purchase,1.0,0 -60859695,"Starbound",play,39.0,0 -60859695,"Dust An Elysian Tail",purchase,1.0,0 -60859695,"Dust An Elysian Tail",play,29.0,0 -60859695,"Portal 2",purchase,1.0,0 -60859695,"Portal 2",play,25.0,0 -60859695,"Undertale",purchase,1.0,0 -60859695,"Undertale",play,24.0,0 -60859695,"HuniePop",purchase,1.0,0 -60859695,"HuniePop",play,23.0,0 -60859695,"The Sims(TM) 3",purchase,1.0,0 -60859695,"The Sims(TM) 3",play,21.0,0 -60859695,"Crypt of the NecroDancer",purchase,1.0,0 -60859695,"Crypt of the NecroDancer",play,21.0,0 -60859695,"War for the Overworld",purchase,1.0,0 -60859695,"War for the Overworld",play,21.0,0 -60859695,"SOMA",purchase,1.0,0 -60859695,"SOMA",play,18.2,0 -60859695,"Left 4 Dead 2",purchase,1.0,0 -60859695,"Left 4 Dead 2",play,17.7,0 -60859695,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -60859695,"Resident Evil 6 / Biohazard 6",play,17.3,0 -60859695,"Dead Island",purchase,1.0,0 -60859695,"Dead Island",play,16.1,0 -60859695,"Ether One",purchase,1.0,0 -60859695,"Ether One",play,14.2,0 -60859695,"Portal Stories Mel",purchase,1.0,0 -60859695,"Portal Stories Mel",play,13.8,0 -60859695,"Amnesia A Machine for Pigs",purchase,1.0,0 -60859695,"Amnesia A Machine for Pigs",play,13.6,0 -60859695,"The Wolf Among Us",purchase,1.0,0 -60859695,"The Wolf Among Us",play,12.5,0 -60859695,"The Sims(TM) Medieval",purchase,1.0,0 -60859695,"The Sims(TM) Medieval",play,12.3,0 -60859695,"Magicka",purchase,1.0,0 -60859695,"Magicka",play,12.2,0 -60859695,"Mount Your Friends",purchase,1.0,0 -60859695,"Mount Your Friends",play,12.0,0 -60859695,"Nancy Drew The Deadly Device",purchase,1.0,0 -60859695,"Nancy Drew The Deadly Device",play,10.5,0 -60859695,"DayZ",purchase,1.0,0 -60859695,"DayZ",play,10.3,0 -60859695,"Dota 2",purchase,1.0,0 -60859695,"Dota 2",play,9.8,0 -60859695,"Parcel",purchase,1.0,0 -60859695,"Parcel",play,9.2,0 -60859695,"Long Live The Queen",purchase,1.0,0 -60859695,"Long Live The Queen",play,8.9,0 -60859695,"Amnesia The Dark Descent",purchase,1.0,0 -60859695,"Amnesia The Dark Descent",play,8.2,0 -60859695,"The Vanishing of Ethan Carter",purchase,1.0,0 -60859695,"The Vanishing of Ethan Carter",play,7.8,0 -60859695,"Nancy Drew Ghost of Thornton Hall",purchase,1.0,0 -60859695,"Nancy Drew Ghost of Thornton Hall",play,6.2,0 -60859695,"Edna & Harvey Harvey's New Eyes",purchase,1.0,0 -60859695,"Edna & Harvey Harvey's New Eyes",play,6.2,0 -60859695,"Tales of Monkey Island Chapter 4 - The Trial and Execution of Guybrush Threepwood ",purchase,1.0,0 -60859695,"Tales of Monkey Island Chapter 4 - The Trial and Execution of Guybrush Threepwood ",play,6.0,0 -60859695,"Nancy Drew Ghost Dogs of Moon Lake ",purchase,1.0,0 -60859695,"Nancy Drew Ghost Dogs of Moon Lake ",play,5.9,0 -60859695,"Nancy Drew The Haunted Carousel",purchase,1.0,0 -60859695,"Nancy Drew The Haunted Carousel",play,5.9,0 -60859695,"Alchemy Mysteries Prague Legends",purchase,1.0,0 -60859695,"Alchemy Mysteries Prague Legends",play,5.7,0 -60859695,"Abandoned Chestnut Lodge Asylum",purchase,1.0,0 -60859695,"Abandoned Chestnut Lodge Asylum",play,5.7,0 -60859695,"Tales of Monkey Island Chapter 3 - Lair of the Leviathan ",purchase,1.0,0 -60859695,"Tales of Monkey Island Chapter 3 - Lair of the Leviathan ",play,5.5,0 -60859695,"Brothers - A Tale of Two Sons",purchase,1.0,0 -60859695,"Brothers - A Tale of Two Sons",play,5.2,0 -60859695,"Season of Mystery The Cherry Blossom Murders",purchase,1.0,0 -60859695,"Season of Mystery The Cherry Blossom Murders",play,5.1,0 -60859695,"Hector Ep 2",purchase,1.0,0 -60859695,"Hector Ep 2",play,5.0,0 -60859695,"The Otherside",purchase,1.0,0 -60859695,"The Otherside",play,4.8,0 -60859695,"Midnight Mysteries 4 Haunted Houdini",purchase,1.0,0 -60859695,"Midnight Mysteries 4 Haunted Houdini",play,4.4,0 -60859695,"Outlast",purchase,1.0,0 -60859695,"Outlast",play,4.3,0 -60859695,"Reus",purchase,1.0,0 -60859695,"Reus",play,4.2,0 -60859695,"Arma 2 DayZ Mod",purchase,1.0,0 -60859695,"Arma 2 DayZ Mod",play,4.2,0 -60859695,"The Silent Age",purchase,1.0,0 -60859695,"The Silent Age",play,4.1,0 -60859695,"Midnight Mysteries 3 Devil on the Mississippi",purchase,1.0,0 -60859695,"Midnight Mysteries 3 Devil on the Mississippi",play,4.1,0 -60859695,"Dungeon Defenders",purchase,1.0,0 -60859695,"Dungeon Defenders",play,3.9,0 -60859695,"Tales of Monkey Island Chapter 5 - Rise of the Pirate God",purchase,1.0,0 -60859695,"Tales of Monkey Island Chapter 5 - Rise of the Pirate God",play,3.9,0 -60859695,"Drawn The Painted Tower",purchase,1.0,0 -60859695,"Drawn The Painted Tower",play,3.9,0 -60859695,"Tales of Monkey Island Chapter 1 - Launch of the Screaming Narwhal",purchase,1.0,0 -60859695,"Tales of Monkey Island Chapter 1 - Launch of the Screaming Narwhal",play,3.8,0 -60859695,"The Tiny Bang Story",purchase,1.0,0 -60859695,"The Tiny Bang Story",play,3.6,0 -60859695,"The Stanley Parable",purchase,1.0,0 -60859695,"The Stanley Parable",play,3.6,0 -60859695,"Dracula's Legacy",purchase,1.0,0 -60859695,"Dracula's Legacy",play,3.4,0 -60859695,"Mind Path to Thalamus Enhanced Edition",purchase,1.0,0 -60859695,"Mind Path to Thalamus Enhanced Edition",play,3.4,0 -60859695,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -60859695,"The Secret of Monkey Island Special Edition",play,3.2,0 -60859695,"Fire",purchase,1.0,0 -60859695,"Fire",play,3.1,0 -60859695,"Frankenstein Master of Death",purchase,1.0,0 -60859695,"Frankenstein Master of Death",play,3.0,0 -60859695,"Midnight Mysteries Salem Witch Trials",purchase,1.0,0 -60859695,"Midnight Mysteries Salem Witch Trials",play,2.9,0 -60859695,"Tales of Monkey Island Chapter 2 - The Siege of Spinner Cay ",purchase,1.0,0 -60859695,"Tales of Monkey Island Chapter 2 - The Siege of Spinner Cay ",play,2.8,0 -60859695,"Armello",purchase,1.0,0 -60859695,"Armello",play,2.7,0 -60859695,"Kuros",purchase,1.0,0 -60859695,"Kuros",play,2.5,0 -60859695,"Dark Arcana The Carnival",purchase,1.0,0 -60859695,"Dark Arcana The Carnival",play,2.5,0 -60859695,"Hector Ep 1",purchase,1.0,0 -60859695,"Hector Ep 1",play,2.4,0 -60859695,"Keep Talking and Nobody Explodes",purchase,1.0,0 -60859695,"Keep Talking and Nobody Explodes",play,1.9,0 -60859695,"Gone Home",purchase,1.0,0 -60859695,"Gone Home",play,1.8,0 -60859695,"FEZ",purchase,1.0,0 -60859695,"FEZ",play,1.7,0 -60859695,"Borderlands 2",purchase,1.0,0 -60859695,"Borderlands 2",play,1.7,0 -60859695,"Back to Bed",purchase,1.0,0 -60859695,"Back to Bed",play,1.6,0 -60859695,"Nancy Drew The Creature of Kapu Cave",purchase,1.0,0 -60859695,"Nancy Drew The Creature of Kapu Cave",play,1.6,0 -60859695,"Bloody Good Time",purchase,1.0,0 -60859695,"Bloody Good Time",play,1.5,0 -60859695,"Year Walk",purchase,1.0,0 -60859695,"Year Walk",play,1.4,0 -60859695,"The Whispered World",purchase,1.0,0 -60859695,"The Whispered World",play,1.4,0 -60859695,"Electronic Super Joy",purchase,1.0,0 -60859695,"Electronic Super Joy",play,1.2,0 -60859695,"realMyst",purchase,1.0,0 -60859695,"realMyst",play,1.2,0 -60859695,"PixelJunk Monsters Ultimate",purchase,1.0,0 -60859695,"PixelJunk Monsters Ultimate",play,1.1,0 -60859695,"Shelter",purchase,1.0,0 -60859695,"Shelter",play,1.0,0 -60859695,"Lume",purchase,1.0,0 -60859695,"Lume",play,1.0,0 -60859695,"Ys I",purchase,1.0,0 -60859695,"Ys I",play,0.9,0 -60859695,"Scribblenauts Unlimited",purchase,1.0,0 -60859695,"Scribblenauts Unlimited",play,0.9,0 -60859695,"Fading Hearts",purchase,1.0,0 -60859695,"Fading Hearts",play,0.8,0 -60859695,"Influent",purchase,1.0,0 -60859695,"Influent",play,0.8,0 -60859695,"Kentucky Route Zero",purchase,1.0,0 -60859695,"Kentucky Route Zero",play,0.8,0 -60859695,"Narcissu 1st & 2nd",purchase,1.0,0 -60859695,"Narcissu 1st & 2nd",play,0.7,0 -60859695,"Aqua Kitty - Milk Mine Defender",purchase,1.0,0 -60859695,"Aqua Kitty - Milk Mine Defender",play,0.4,0 -60859695,"The Misadventures of P.B. Winterbottom",purchase,1.0,0 -60859695,"The Misadventures of P.B. Winterbottom",play,0.3,0 -60859695,"Legend of Fae",purchase,1.0,0 -60859695,"Legend of Fae",play,0.3,0 -60859695,"Five Nights at Freddy's 2",purchase,1.0,0 -60859695,"Five Nights at Freddy's 2",play,0.3,0 -60859695,"Serena",purchase,1.0,0 -60859695,"Serena",play,0.3,0 -60859695,"Big Brain Wolf",purchase,1.0,0 -60859695,"Big Brain Wolf",play,0.2,0 -60859695,"Puzzle Agent 2",purchase,1.0,0 -60859695,"Puzzle Agent 2",play,0.2,0 -60859695,"Windosill",purchase,1.0,0 -60859695,"Windosill",play,0.2,0 -60859695,"Fester Mudd Curse of the Gold - Episode 1",purchase,1.0,0 -60859695,"Fester Mudd Curse of the Gold - Episode 1",play,0.2,0 -60859695,"Team Fortress 2",purchase,1.0,0 -60859695,"Team Fortress 2",play,0.2,0 -60859695,"Arma 2 Operation Arrowhead",purchase,1.0,0 -60859695,"Arma 2 Operation Arrowhead",play,0.1,0 -60859695,"Ben There, Dan That!",purchase,1.0,0 -60859695,"Arma 2",purchase,1.0,0 -60859695,"A Bird Story",purchase,1.0,0 -60859695,"Alice Madness Returns",purchase,1.0,0 -60859695,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -60859695,"Awesomenauts",purchase,1.0,0 -60859695,"Bastion",purchase,1.0,0 -60859695,"BattleBlock Theater",purchase,1.0,0 -60859695,"Belladonna",purchase,1.0,0 -60859695,"Braid",purchase,1.0,0 -60859695,"Brtal Legend",purchase,1.0,0 -60859695,"Castle Crashers",purchase,1.0,0 -60859695,"Cosmic Osmo",purchase,1.0,0 -60859695,"Crypt of the NecroDancer Extended Soundtrack",purchase,1.0,0 -60859695,"Crypt of the Necrodancer Soundtrack",purchase,1.0,0 -60859695,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -60859695,"Deponia",purchase,1.0,0 -60859695,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -60859695,"Don't Starve Shipwrecked",purchase,1.0,0 -60859695,"Don't Starve Reign of Giants",purchase,1.0,0 -60859695,"Dream Chronicles The Chosen Child",purchase,1.0,0 -60859695,"Enigmatis 2 The Mists of Ravenwood",purchase,1.0,0 -60859695,"Eternal Senia",purchase,1.0,0 -60859695,"Ether One Redux",purchase,1.0,0 -60859695,"Evoland",purchase,1.0,0 -60859695,"Garry's Mod",purchase,1.0,0 -60859695,"Giana Sisters Twisted Dreams",purchase,1.0,0 -60859695,"Half-Life 2",purchase,1.0,0 -60859695,"Half-Life 2 Episode One",purchase,1.0,0 -60859695,"Half-Life 2 Episode Two",purchase,1.0,0 -60859695,"Half-Life 2 Lost Coast",purchase,1.0,0 -60859695,"Hector Ep 3",purchase,1.0,0 -60859695,"Influent DLC - [Learn Japanese]",purchase,1.0,0 -60859695,"Jolly Rover",purchase,1.0,0 -60859695,"King's Bounty Warriors of the North",purchase,1.0,0 -60859695,"Legend of Dungeon",purchase,1.0,0 -60859695,"LIMBO",purchase,1.0,0 -60859695,"Lone Survivor The Director's Cut",purchase,1.0,0 -60859695,"Magicka Wizard's Survival Kit",purchase,1.0,0 -60859695,"Manhole",purchase,1.0,0 -60859695,"Metro 2033",purchase,1.0,0 -60859695,"Miasmata",purchase,1.0,0 -60859695,"MURDERED SOUL SUSPECT",purchase,1.0,0 -60859695,"Myst Masterpiece Edition",purchase,1.0,0 -60859695,"Nancy Drew Curse of Blackmoor Manor ",purchase,1.0,0 -60859695,"Nancy Drew Danger By Design",purchase,1.0,0 -60859695,"Nancy Drew Danger on Deception Island ",purchase,1.0,0 -60859695,"Nancy Drew Last Train to Blue Moon Canyon",purchase,1.0,0 -60859695,"Nancy Drew Legend of the Crystal Skull ",purchase,1.0,0 -60859695,"Nancy Drew Lights, Camera, Curses!",purchase,1.0,0 -60859695,"Nancy Drew Ransom of the Seven Ships ",purchase,1.0,0 -60859695,"Nancy Drew Secret of the Old Clock",purchase,1.0,0 -60859695,"Nancy Drew Secret of the Scarlet Hand ",purchase,1.0,0 -60859695,"Nancy Drew Secrets can Kill",purchase,1.0,0 -60859695,"Nancy Drew Shadow at the Water's Edge",purchase,1.0,0 -60859695,"Nancy Drew The Haunting of Castle Malloy",purchase,1.0,0 -60859695,"Nancy Drew The Phantom of Venice",purchase,1.0,0 -60859695,"Nancy Drew The White Wolf of Icicle Creek",purchase,1.0,0 -60859695,"Nancy Drew Trail of the Twister",purchase,1.0,0 -60859695,"Nancy Drew Warnings at Waverly Academy",purchase,1.0,0 -60859695,"Nancy Drew Dossier Resorting to Danger!",purchase,1.0,0 -60859695,"Ori and the Blind Forest",purchase,1.0,0 -60859695,"Outland",purchase,1.0,0 -60859695,"Path of Exile",purchase,1.0,0 -60859695,"Portal",purchase,1.0,0 -60859695,"Psychonauts",purchase,1.0,0 -60859695,"Psychonauts Demo",purchase,1.0,0 -60859695,"Risen",purchase,1.0,0 -60859695,"Risen 2 - Dark Waters",purchase,1.0,0 -60859695,"Riven",purchase,1.0,0 -60859695,"Sacred 2 Gold",purchase,1.0,0 -60859695,"Sacred Citadel",purchase,1.0,0 -60859695,"Saints Row 2",purchase,1.0,0 -60859695,"Saints Row The Third",purchase,1.0,0 -60859695,"Samantha Swift and the Hidden Roses of Athena",purchase,1.0,0 -60859695,"Schein",purchase,1.0,0 -60859695,"Serious Sam The Random Encounter",purchase,1.0,0 -60859695,"Shadowrun Returns",purchase,1.0,0 -60859695,"Sherlock Holmes and The Hound of The Baskervilles",purchase,1.0,0 -60859695,"Sid Meier's Pirates!",purchase,1.0,0 -60859695,"Silence of the Sleep",purchase,1.0,0 -60859695,"Spelunx",purchase,1.0,0 -60859695,"Starbound - Unstable",purchase,1.0,0 -60859695,"Super Meat Boy",purchase,1.0,0 -60859695,"Syberia",purchase,1.0,0 -60859695,"Talisman Digital Edition",purchase,1.0,0 -60859695,"The Fall",purchase,1.0,0 -60859695,"The Long Dark",purchase,1.0,0 -60859695,"The Vanishing of Ethan Carter Redux",purchase,1.0,0 -60859695,"The Whispered World Special Edition",purchase,1.0,0 -60859695,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -60859695,"Time Gentlemen, Please!",purchase,1.0,0 -60859695,"Titan Quest",purchase,1.0,0 -60859695,"Titan Quest Immortal Throne",purchase,1.0,0 -60859695,"To the Moon",purchase,1.0,0 -60859695,"Trine 2",purchase,1.0,0 -60859695,"Two Worlds II",purchase,1.0,0 -60859695,"Uru Complete Chronicles",purchase,1.0,0 -60859695,"Warframe",purchase,1.0,0 -60859695,"Ys II",purchase,1.0,0 -159531216,"Left 4 Dead 2",purchase,1.0,0 -159531216,"Left 4 Dead 2",play,13.9,0 -159531216,"Dota 2",purchase,1.0,0 -159531216,"Dota 2",play,4.1,0 -122529449,"Dota 2",purchase,1.0,0 -122529449,"Dota 2",play,2.2,0 -75970863,"Get Off My Lawn!",purchase,1.0,0 -75970863,"Get Off My Lawn!",play,18.8,0 -75970863,"Hotel Dash",purchase,1.0,0 -75970863,"Hotel Dash",play,9.0,0 -75970863,"Diner Dash Hometown Hero",purchase,1.0,0 -75970863,"Diner Dash Hometown Hero",play,5.1,0 -75970863,"Terraria",purchase,1.0,0 -75970863,"Terraria",play,1.8,0 -75970863,"Toki Tori",purchase,1.0,0 -75970863,"Toki Tori",play,1.7,0 -75970863,"DinerTown Tycoon",purchase,1.0,0 -75970863,"DinerTown Tycoon",play,1.0,0 -75970863,"Robocraft",purchase,1.0,0 -75970863,"Robocraft",play,0.6,0 -75970863,"Team Fortress 2",purchase,1.0,0 -75970863,"Team Fortress 2",play,0.5,0 -75970863,"The Four Kings Casino and Slots",purchase,1.0,0 -75970863,"The Four Kings Casino and Slots",play,0.4,0 -71331921,"Dota 2",purchase,1.0,0 -71331921,"Dota 2",play,85.0,0 -71331921,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -71331921,"Tom Clancy's Ghost Recon Phantoms - EU",play,66.0,0 -71331921,"Magic Duels",purchase,1.0,0 -71331921,"Magic Duels",play,11.7,0 -71331921,"Warframe",purchase,1.0,0 -71331921,"Warframe",play,8.3,0 -71331921,"Nosgoth",purchase,1.0,0 -71331921,"Nosgoth",play,6.6,0 -71331921,"Insurgency",purchase,1.0,0 -71331921,"Insurgency",play,6.1,0 -71331921,"Neverwinter",purchase,1.0,0 -71331921,"Neverwinter",play,5.8,0 -71331921,"SMITE",purchase,1.0,0 -71331921,"SMITE",play,2.7,0 -71331921,"Sins of a Dark Age",purchase,1.0,0 -71331921,"Sins of a Dark Age",play,2.1,0 -71331921,"Dead Island Riptide",purchase,1.0,0 -71331921,"Dead Island Riptide",play,2.0,0 -71331921,"Heroes & Generals",purchase,1.0,0 -71331921,"Heroes & Generals",play,1.9,0 -71331921,"Team Fortress 2",purchase,1.0,0 -71331921,"Team Fortress 2",play,1.8,0 -71331921,"Dead Island",purchase,1.0,0 -71331921,"Dead Island",play,1.2,0 -71331921,"Might & Magic Heroes Online",purchase,1.0,0 -71331921,"Might & Magic Heroes Online",play,1.1,0 -71331921,"War Thunder",purchase,1.0,0 -71331921,"War Thunder",play,0.8,0 -71331921,"Fallen Earth",purchase,1.0,0 -71331921,"Fallen Earth",play,0.7,0 -71331921,"Dungeon Defenders II",purchase,1.0,0 -71331921,"Dungeon Defenders II",play,0.7,0 -71331921,"ORION Prelude",purchase,1.0,0 -71331921,"ORION Prelude",play,0.4,0 -71331921,"Ragnarok Online 2",purchase,1.0,0 -71331921,"Ragnarok Online 2",play,0.3,0 -71331921,"Magicka Wizard Wars",purchase,1.0,0 -71331921,"Magicka Wizard Wars",play,0.3,0 -71331921,"Dead Island Epidemic",purchase,1.0,0 -71331921,"Dead Island Epidemic",play,0.3,0 -71331921,"Eador. Masters of the Broken World",purchase,1.0,0 -71331921,"Eador. Masters of the Broken World",play,0.2,0 -71331921,"Gladiators Online Death Before Dishonor",purchase,1.0,0 -71331921,"Gladiators Online Death Before Dishonor",play,0.2,0 -71331921,"Defiance",purchase,1.0,0 -71331921,"TERA",purchase,1.0,0 -42657809,"Football Manager 2010",purchase,1.0,0 -42657809,"Football Manager 2010",play,1000.0,0 -42657809,"Football Manager 2011",purchase,1.0,0 -42657809,"Football Manager 2011",play,953.0,0 -42657809,"Football Manager 2012",purchase,1.0,0 -42657809,"Football Manager 2012",play,644.0,0 -42657809,"NBA 2K14",purchase,1.0,0 -42657809,"NBA 2K14",play,346.0,0 -42657809,"Football Manager 2013",purchase,1.0,0 -42657809,"Football Manager 2013",play,327.0,0 -42657809,"Worldwide Soccer Manager 2009",purchase,1.0,0 -42657809,"Worldwide Soccer Manager 2009",play,295.0,0 -42657809,"Football Manager 2014",purchase,1.0,0 -42657809,"Football Manager 2014",play,289.0,0 -42657809,"MLB 2K10",purchase,1.0,0 -42657809,"MLB 2K10",play,228.0,0 -42657809,"NBA 2K12",purchase,1.0,0 -42657809,"NBA 2K12",play,181.0,0 -42657809,"MLB 2K12",purchase,1.0,0 -42657809,"MLB 2K12",play,153.0,0 -42657809,"The Elder Scrolls V Skyrim",purchase,1.0,0 -42657809,"The Elder Scrolls V Skyrim",play,148.0,0 -42657809,"MLB 2K11",purchase,1.0,0 -42657809,"MLB 2K11",play,107.0,0 -42657809,"NBA 2K15",purchase,1.0,0 -42657809,"NBA 2K15",play,104.0,0 -42657809,"Out of the Park Baseball 14",purchase,1.0,0 -42657809,"Out of the Park Baseball 14",play,103.0,0 -42657809,"NBA 2K13",purchase,1.0,0 -42657809,"NBA 2K13",play,77.0,0 -42657809,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -42657809,"Fallout 3 - Game of the Year Edition",play,65.0,0 -42657809,"Mass Effect 2",purchase,1.0,0 -42657809,"Mass Effect 2",play,61.0,0 -42657809,"Sleeping Dogs",purchase,1.0,0 -42657809,"Sleeping Dogs",play,50.0,0 -42657809,"Batman Arkham City",purchase,1.0,0 -42657809,"Batman Arkham City",play,48.0,0 -42657809,"Total War SHOGUN 2",purchase,1.0,0 -42657809,"Total War SHOGUN 2",play,48.0,0 -42657809,"Fallout 4",purchase,1.0,0 -42657809,"Fallout 4",play,44.0,0 -42657809,"Fallout New Vegas",purchase,1.0,0 -42657809,"Fallout New Vegas",play,37.0,0 -42657809,"XCOM Enemy Unknown",purchase,1.0,0 -42657809,"XCOM Enemy Unknown",play,36.0,0 -42657809,"Divinity Original Sin",purchase,1.0,0 -42657809,"Divinity Original Sin",play,35.0,0 -42657809,"Far Cry 3",purchase,1.0,0 -42657809,"Far Cry 3",play,32.0,0 -42657809,"Borderlands 2",purchase,1.0,0 -42657809,"Borderlands 2",play,32.0,0 -42657809,"L.A. Noire",purchase,1.0,0 -42657809,"L.A. Noire",play,31.0,0 -42657809,"Torchlight II",purchase,1.0,0 -42657809,"Torchlight II",play,28.0,0 -42657809,"Assassin's Creed II",purchase,1.0,0 -42657809,"Assassin's Creed II",play,25.0,0 -42657809,"Might & Magic Clash of Heroes",purchase,1.0,0 -42657809,"Might & Magic Clash of Heroes",play,25.0,0 -42657809,"Batman Arkham Origins",purchase,1.0,0 -42657809,"Batman Arkham Origins",play,24.0,0 -42657809,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -42657809,"Sonic & All-Stars Racing Transformed",play,23.0,0 -42657809,"Assassin's Creed Brotherhood",purchase,1.0,0 -42657809,"Assassin's Creed Brotherhood",play,22.0,0 -42657809,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -42657809,"Injustice Gods Among Us Ultimate Edition",play,21.0,0 -42657809,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -42657809,"Warhammer 40,000 Dawn of War II",play,20.0,0 -42657809,"Divinity Dragon Commander",purchase,1.0,0 -42657809,"Divinity Dragon Commander",play,19.7,0 -42657809,"Game of Thrones - A Telltale Games Series",purchase,1.0,0 -42657809,"Game of Thrones - A Telltale Games Series",play,16.0,0 -42657809,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -42657809,"Kingdoms of Amalur Reckoning",play,16.0,0 -42657809,"Company of Heroes",purchase,1.0,0 -42657809,"Company of Heroes",play,15.9,0 -42657809,"Assassin's Creed",purchase,1.0,0 -42657809,"Assassin's Creed",play,15.5,0 -42657809,"Grand Theft Auto V",purchase,1.0,0 -42657809,"Grand Theft Auto V",play,14.8,0 -42657809,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -42657809,"Grand Theft Auto Episodes from Liberty City",play,14.0,0 -42657809,"The Walking Dead",purchase,1.0,0 -42657809,"The Walking Dead",play,13.5,0 -42657809,"Portal 2",purchase,1.0,0 -42657809,"Portal 2",play,13.5,0 -42657809,"LEGO MARVEL Super Heroes",purchase,1.0,0 -42657809,"LEGO MARVEL Super Heroes",play,13.1,0 -42657809,"The Wolf Among Us",purchase,1.0,0 -42657809,"The Wolf Among Us",play,13.0,0 -42657809,"The Golf Club",purchase,1.0,0 -42657809,"The Golf Club",play,12.5,0 -42657809,"Lego Star Wars Saga",purchase,1.0,0 -42657809,"Lego Star Wars Saga",play,12.2,0 -42657809,"The Witcher Enhanced Edition",purchase,1.0,0 -42657809,"The Witcher Enhanced Edition",play,12.0,0 -42657809,"Dota 2",purchase,1.0,0 -42657809,"Dota 2",play,11.8,0 -42657809,"Life Is Strange",purchase,1.0,0 -42657809,"Life Is Strange",play,10.9,0 -42657809,"Saints Row The Third",purchase,1.0,0 -42657809,"Saints Row The Third",play,10.6,0 -42657809,"BioShock Infinite",purchase,1.0,0 -42657809,"BioShock Infinite",play,10.6,0 -42657809,"The Book of Unwritten Tales",purchase,1.0,0 -42657809,"The Book of Unwritten Tales",play,10.3,0 -42657809,"Burnout Paradise The Ultimate Box",purchase,1.0,0 -42657809,"Burnout Paradise The Ultimate Box",play,10.0,0 -42657809,"Half-Life 2",purchase,1.0,0 -42657809,"Half-Life 2",play,9.9,0 -42657809,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -42657809,"Batman Arkham Asylum GOTY Edition",play,9.5,0 -42657809,"DYNASTY WARRIORS 8 Xtreme Legends Complete Edition",purchase,1.0,0 -42657809,"DYNASTY WARRIORS 8 Xtreme Legends Complete Edition",play,8.6,0 -42657809,"The Walking Dead Season Two",purchase,1.0,0 -42657809,"The Walking Dead Season Two",play,8.5,0 -42657809,"The Lord of the Rings War in the North",purchase,1.0,0 -42657809,"The Lord of the Rings War in the North",play,7.3,0 -42657809,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -42657809,"The Witcher 2 Assassins of Kings Enhanced Edition",play,7.1,0 -42657809,"Ys I",purchase,1.0,0 -42657809,"Ys I",play,6.9,0 -42657809,"RPG Maker VX Ace",purchase,1.0,0 -42657809,"RPG Maker VX Ace",play,6.4,0 -42657809,"Borderlands",purchase,1.0,0 -42657809,"Borderlands",play,5.1,0 -42657809,"Half-Life 2 Episode Two",purchase,1.0,0 -42657809,"Half-Life 2 Episode Two",play,5.0,0 -42657809,"Assassin's Creed Revelations",purchase,1.0,0 -42657809,"Assassin's Creed Revelations",play,5.0,0 -42657809,"LEGO The Lord of the Rings",purchase,1.0,0 -42657809,"LEGO The Lord of the Rings",play,4.9,0 -42657809,"Darksiders",purchase,1.0,0 -42657809,"Darksiders",play,4.8,0 -42657809,"Dishonored",purchase,1.0,0 -42657809,"Dishonored",play,4.7,0 -42657809,"Just Cause 2",purchase,1.0,0 -42657809,"Just Cause 2",play,4.2,0 -42657809,"Mortal Kombat Kollection",purchase,1.0,0 -42657809,"Mortal Kombat Kollection",play,4.0,0 -42657809,"Left 4 Dead 2",purchase,1.0,0 -42657809,"Left 4 Dead 2",play,3.9,0 -42657809,"Portal",purchase,1.0,0 -42657809,"Portal",play,3.9,0 -42657809,"Way of the Samurai 4",purchase,1.0,0 -42657809,"Way of the Samurai 4",play,3.7,0 -42657809,"Back to the Future Ep 1 - It's About Time",purchase,1.0,0 -42657809,"Back to the Future Ep 1 - It's About Time",play,3.6,0 -42657809,"Alan Wake",purchase,1.0,0 -42657809,"Alan Wake",play,3.4,0 -42657809,"Mark of the Ninja",purchase,1.0,0 -42657809,"Mark of the Ninja",play,3.3,0 -42657809,"Baldur's Gate Enhanced Edition",purchase,1.0,0 -42657809,"Baldur's Gate Enhanced Edition",play,3.0,0 -42657809,"Back to the Future Ep 3 - Citizen Brown",purchase,1.0,0 -42657809,"Back to the Future Ep 3 - Citizen Brown",play,2.7,0 -42657809,"Broken Age",purchase,1.0,0 -42657809,"Broken Age",play,2.6,0 -42657809,"SimCity 4 Deluxe",purchase,1.0,0 -42657809,"SimCity 4 Deluxe",play,2.5,0 -42657809,"Back to the Future Ep 2 - Get Tannen!",purchase,1.0,0 -42657809,"Back to the Future Ep 2 - Get Tannen!",play,2.4,0 -42657809,"Teenage Mutant Ninja Turtles Out of the Shadows",purchase,1.0,0 -42657809,"Teenage Mutant Ninja Turtles Out of the Shadows",play,2.4,0 -42657809,"Deus Ex Game of the Year Edition",purchase,1.0,0 -42657809,"Deus Ex Game of the Year Edition",play,2.4,0 -42657809,"Company of Heroes (New Steam Version)",purchase,1.0,0 -42657809,"Company of Heroes (New Steam Version)",play,2.3,0 -42657809,"Kohan II Kings of War",purchase,1.0,0 -42657809,"Kohan II Kings of War",play,2.3,0 -42657809,"Crysis 2 Maximum Edition",purchase,1.0,0 -42657809,"Crysis 2 Maximum Edition",play,2.2,0 -42657809,"Kentucky Route Zero",purchase,1.0,0 -42657809,"Kentucky Route Zero",play,2.1,0 -42657809,"The Banner Saga",purchase,1.0,0 -42657809,"The Banner Saga",play,2.0,0 -42657809,"Fable - The Lost Chapters",purchase,1.0,0 -42657809,"Fable - The Lost Chapters",play,1.9,0 -42657809,"Little Inferno",purchase,1.0,0 -42657809,"Little Inferno",play,1.8,0 -42657809,"Legend of Grimrock",purchase,1.0,0 -42657809,"Legend of Grimrock",play,1.2,0 -42657809,"Gemini Rue",purchase,1.0,0 -42657809,"Gemini Rue",play,1.2,0 -42657809,"Trine",purchase,1.0,0 -42657809,"Trine",play,1.2,0 -42657809,"Dead Space",purchase,1.0,0 -42657809,"Dead Space",play,1.2,0 -42657809,"Deus Ex Human Revolution",purchase,1.0,0 -42657809,"Deus Ex Human Revolution",play,1.0,0 -42657809,"Trine 2",purchase,1.0,0 -42657809,"Trine 2",play,0.8,0 -42657809,"Marvel Heroes 2015",purchase,1.0,0 -42657809,"Marvel Heroes 2015",play,0.7,0 -42657809,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -42657809,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,0.7,0 -42657809,"Far Cry",purchase,1.0,0 -42657809,"Far Cry",play,0.4,0 -42657809,"Metro 2033",purchase,1.0,0 -42657809,"Metro 2033",play,0.4,0 -42657809,"Titan Quest",purchase,1.0,0 -42657809,"Titan Quest",play,0.2,0 -42657809,"Orcs Must Die!",purchase,1.0,0 -42657809,"Orcs Must Die!",play,0.2,0 -42657809,"King's Quest Collection",purchase,1.0,0 -42657809,"Bad Hotel",purchase,1.0,0 -42657809,"Hero Academy",purchase,1.0,0 -42657809,"Company of Heroes Tales of Valor",purchase,1.0,0 -42657809,"Deus Ex Invisible War",purchase,1.0,0 -42657809,"AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome",purchase,1.0,0 -42657809,"Alan Wake's American Nightmare",purchase,1.0,0 -42657809,"Amnesia The Dark Descent",purchase,1.0,0 -42657809,"Anomaly 2",purchase,1.0,0 -42657809,"Back to the Future Ep 4 - Double Visions",purchase,1.0,0 -42657809,"Back to the Future Ep 5 - OUTATIME",purchase,1.0,0 -42657809,"Batman Arkham City GOTY",purchase,1.0,0 -42657809,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -42657809,"Batman Arkham Origins - Initiation",purchase,1.0,0 -42657809,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -42657809,"Borderlands DLC Claptraps New Robot Revolution",purchase,1.0,0 -42657809,"Borderlands DLC Mad Moxxi's Underdome Riot",purchase,1.0,0 -42657809,"Borderlands DLC The Secret Armory of General Knoxx",purchase,1.0,0 -42657809,"Borderlands DLC The Zombie Island of Dr. Ned",purchase,1.0,0 -42657809,"Command and Conquer Red Alert 3 - Uprising",purchase,1.0,0 -42657809,"Company of Heroes Opposing Fronts",purchase,1.0,0 -42657809,"Dead Space 2",purchase,1.0,0 -42657809,"Divinity Dragon Commander Beta",purchase,1.0,0 -42657809,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -42657809,"F.E.A.R.",purchase,1.0,0 -42657809,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -42657809,"F.E.A.R. 3",purchase,1.0,0 -42657809,"F.E.A.R. Extraction Point",purchase,1.0,0 -42657809,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -42657809,"Fallout New Vegas Courier's Stash",purchase,1.0,0 -42657809,"Fallout New Vegas Dead Money",purchase,1.0,0 -42657809,"Fallout New Vegas Honest Hearts",purchase,1.0,0 -42657809,"Far Cry 2",purchase,1.0,0 -42657809,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -42657809,"Flame Over",purchase,1.0,0 -42657809,"Guardians of Middle-earth",purchase,1.0,0 -42657809,"Half-Life 2 Deathmatch",purchase,1.0,0 -42657809,"Half-Life 2 Episode One",purchase,1.0,0 -42657809,"Half-Life 2 Lost Coast",purchase,1.0,0 -42657809,"Half-Life Deathmatch Source",purchase,1.0,0 -42657809,"Jack Lumber",purchase,1.0,0 -42657809,"Medal of Honor(TM) Multiplayer",purchase,1.0,0 -42657809,"Medal of Honor(TM) Single Player",purchase,1.0,0 -42657809,"Medal of Honor Pre-Order",purchase,1.0,0 -42657809,"Mirror's Edge",purchase,1.0,0 -42657809,"Red Faction Armageddon",purchase,1.0,0 -42657809,"Scribblenauts Unlimited",purchase,1.0,0 -42657809,"Skyrim High Resolution Texture Pack",purchase,1.0,0 -42657809,"Solar 2",purchase,1.0,0 -42657809,"The Banner Saga - Mod Content",purchase,1.0,0 -42657809,"The Bard's Tale",purchase,1.0,0 -42657809,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -42657809,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -42657809,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -42657809,"Ys II",purchase,1.0,0 -168686827,"Dota 2",purchase,1.0,0 -168686827,"Dota 2",play,747.0,0 -154230723,"Counter-Strike Global Offensive",purchase,1.0,0 -154230723,"Counter-Strike Global Offensive",play,968.0,0 -154230723,"Team Fortress 2",purchase,1.0,0 -154230723,"Team Fortress 2",play,736.0,0 -154230723,"Garry's Mod",purchase,1.0,0 -154230723,"Garry's Mod",play,51.0,0 -154230723,"Awesomenauts",purchase,1.0,0 -154230723,"Awesomenauts",play,29.0,0 -154230723,"The Impossible Game",purchase,1.0,0 -154230723,"The Impossible Game",play,14.4,0 -154230723,"BattleBlock Theater",purchase,1.0,0 -154230723,"BattleBlock Theater",play,14.4,0 -154230723,"Mountain",purchase,1.0,0 -154230723,"Mountain",play,14.3,0 -154230723,"The Binding of Isaac",purchase,1.0,0 -154230723,"The Binding of Isaac",play,12.7,0 -154230723,"Alien Swarm",purchase,1.0,0 -154230723,"Alien Swarm",play,11.2,0 -154230723,"The Binding of Isaac Rebirth",purchase,1.0,0 -154230723,"The Binding of Isaac Rebirth",play,10.6,0 -154230723,"Cave Story+",purchase,1.0,0 -154230723,"Cave Story+",play,8.2,0 -154230723,"Hammerwatch",purchase,1.0,0 -154230723,"Hammerwatch",play,6.7,0 -154230723,"Fallout 4",purchase,1.0,0 -154230723,"Fallout 4",play,5.4,0 -154230723,"Kingdom Rush",purchase,1.0,0 -154230723,"Kingdom Rush",play,4.8,0 -154230723,"Hotline Miami",purchase,1.0,0 -154230723,"Hotline Miami",play,3.9,0 -154230723,"Goat Simulator",purchase,1.0,0 -154230723,"Goat Simulator",play,3.6,0 -154230723,"Batman Arkham Origins",purchase,1.0,0 -154230723,"Batman Arkham Origins",play,3.5,0 -154230723,"Mark of the Ninja",purchase,1.0,0 -154230723,"Mark of the Ninja",play,3.3,0 -154230723,"ibb & obb",purchase,1.0,0 -154230723,"ibb & obb",play,3.3,0 -154230723,"SpeedRunners",purchase,1.0,0 -154230723,"SpeedRunners",play,3.2,0 -154230723,"LYNE",purchase,1.0,0 -154230723,"LYNE",play,2.8,0 -154230723,"Unturned",purchase,1.0,0 -154230723,"Unturned",play,2.8,0 -154230723,"Among the Sleep",purchase,1.0,0 -154230723,"Among the Sleep",play,2.4,0 -154230723,"Grand Theft Auto IV",purchase,1.0,0 -154230723,"Grand Theft Auto IV",play,2.2,0 -154230723,"Bridge Constructor",purchase,1.0,0 -154230723,"Bridge Constructor",play,2.1,0 -154230723,"Surgeon Simulator",purchase,1.0,0 -154230723,"Surgeon Simulator",play,2.1,0 -154230723,"Super Hexagon",purchase,1.0,0 -154230723,"Super Hexagon",play,2.1,0 -154230723,"Dungeon Defenders",purchase,1.0,0 -154230723,"Dungeon Defenders",play,2.0,0 -154230723,"Khet 2.0",purchase,1.0,0 -154230723,"Khet 2.0",play,1.9,0 -154230723,"Monaco",purchase,1.0,0 -154230723,"Monaco",play,1.9,0 -154230723,"Beatbuddy Tale of the Guardians",purchase,1.0,0 -154230723,"Beatbuddy Tale of the Guardians",play,1.8,0 -154230723,"Teslagrad",purchase,1.0,0 -154230723,"Teslagrad",play,1.7,0 -154230723,"Counter-Strike Source",purchase,1.0,0 -154230723,"Counter-Strike Source",play,1.7,0 -154230723,"Rayman Legends",purchase,1.0,0 -154230723,"Rayman Legends",play,1.6,0 -154230723,"Warframe",purchase,1.0,0 -154230723,"Warframe",play,1.6,0 -154230723,"140",purchase,1.0,0 -154230723,"140",play,1.5,0 -154230723,"Antichamber",purchase,1.0,0 -154230723,"Antichamber",play,1.3,0 -154230723,"Space Farmers",purchase,1.0,0 -154230723,"Space Farmers",play,1.3,0 -154230723,"Source Filmmaker",purchase,1.0,0 -154230723,"Source Filmmaker",play,1.2,0 -154230723,"TypeRider",purchase,1.0,0 -154230723,"TypeRider",play,1.2,0 -154230723,"Dust An Elysian Tail",purchase,1.0,0 -154230723,"Dust An Elysian Tail",play,1.2,0 -154230723,"Octodad Dadliest Catch",purchase,1.0,0 -154230723,"Octodad Dadliest Catch",play,1.2,0 -154230723,"AdVenture Capitalist",purchase,1.0,0 -154230723,"AdVenture Capitalist",play,1.2,0 -154230723,"Trine 2",purchase,1.0,0 -154230723,"Trine 2",play,1.1,0 -154230723,"You Have to Win the Game",purchase,1.0,0 -154230723,"You Have to Win the Game",play,1.1,0 -154230723,"Thomas Was Alone",purchase,1.0,0 -154230723,"Thomas Was Alone",play,0.9,0 -154230723,"Bastion",purchase,1.0,0 -154230723,"Bastion",play,0.9,0 -154230723,"Risk of Rain",purchase,1.0,0 -154230723,"Risk of Rain",play,0.9,0 -154230723,"Haunt the House Terrortown",purchase,1.0,0 -154230723,"Haunt the House Terrortown",play,0.8,0 -154230723,"Sanctum 2",purchase,1.0,0 -154230723,"Sanctum 2",play,0.8,0 -154230723,"Castle Crashers",purchase,1.0,0 -154230723,"Castle Crashers",play,0.8,0 -154230723,"Super Meat Boy",purchase,1.0,0 -154230723,"Super Meat Boy",play,0.8,0 -154230723,"Blocks That Matter",purchase,1.0,0 -154230723,"Blocks That Matter",play,0.8,0 -154230723,"Race The Sun",purchase,1.0,0 -154230723,"Race The Sun",play,0.8,0 -154230723,"Magicka",purchase,1.0,0 -154230723,"Magicka",play,0.8,0 -154230723,"Draw a Stickman EPIC",purchase,1.0,0 -154230723,"Draw a Stickman EPIC",play,0.8,0 -154230723,"Euro Truck Simulator 2",purchase,1.0,0 -154230723,"Euro Truck Simulator 2",play,0.7,0 -154230723,"Dustforce",purchase,1.0,0 -154230723,"Dustforce",play,0.7,0 -154230723,"Worms Ultimate Mayhem",purchase,1.0,0 -154230723,"Worms Ultimate Mayhem",play,0.7,0 -154230723,"Terraria",purchase,1.0,0 -154230723,"Terraria",play,0.7,0 -154230723,"McPixel",purchase,1.0,0 -154230723,"McPixel",play,0.7,0 -154230723,"Scribblenauts Unmasked",purchase,1.0,0 -154230723,"Scribblenauts Unmasked",play,0.6,0 -154230723,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",purchase,1.0,0 -154230723,"BIT.TRIP Presents... Runner2 Future Legend of Rhythm Alien",play,0.6,0 -154230723,"Audiosurf",purchase,1.0,0 -154230723,"Audiosurf",play,0.4,0 -154230723,"Outlast",purchase,1.0,0 -154230723,"Outlast",play,0.4,0 -154230723,"Akane the Kunoichi",purchase,1.0,0 -154230723,"Akane the Kunoichi",play,0.4,0 -154230723,"Before the Echo",purchase,1.0,0 -154230723,"Before the Echo",play,0.4,0 -154230723,"Dota 2",purchase,1.0,0 -154230723,"Dota 2",play,0.4,0 -154230723,"Breach & Clear",purchase,1.0,0 -154230723,"Breach & Clear",play,0.4,0 -154230723,"Worms Clan Wars",purchase,1.0,0 -154230723,"Worms Clan Wars",play,0.4,0 -154230723,"Beat Hazard",purchase,1.0,0 -154230723,"Beat Hazard",play,0.3,0 -154230723,"Prison Architect",purchase,1.0,0 -154230723,"Prison Architect",play,0.3,0 -154230723,"Fieldrunners 2",purchase,1.0,0 -154230723,"Fieldrunners 2",play,0.3,0 -154230723,"Adventure Time Explore the Dungeon Because I DONT KNOW!",purchase,1.0,0 -154230723,"Adventure Time Explore the Dungeon Because I DONT KNOW!",play,0.3,0 -154230723,"FEZ",purchase,1.0,0 -154230723,"FEZ",play,0.3,0 -154230723,"BIT.TRIP RUNNER",purchase,1.0,0 -154230723,"BIT.TRIP RUNNER",play,0.2,0 -154230723,"Home",purchase,1.0,0 -154230723,"Home",play,0.2,0 -154230723,"Gone Home",purchase,1.0,0 -154230723,"Gone Home",play,0.2,0 -154230723,"VVVVVV",purchase,1.0,0 -154230723,"VVVVVV",play,0.2,0 -154230723,"Escape Goat",purchase,1.0,0 -154230723,"Escape Goat",play,0.2,0 -154230723,"Aces Wild Manic Brawling Action!",purchase,1.0,0 -154230723,"Aces Wild Manic Brawling Action!",play,0.2,0 -154230723,"Slender The Arrival",purchase,1.0,0 -154230723,"Slender The Arrival",play,0.2,0 -154230723,"Stealth Bastard Deluxe",purchase,1.0,0 -154230723,"Stealth Bastard Deluxe",play,0.2,0 -154230723,"Age of Empires III Complete Collection",purchase,1.0,0 -154230723,"Age of Empires III Complete Collection",play,0.2,0 -154230723,"METAL SLUG 3",purchase,1.0,0 -154230723,"METAL SLUG 3",play,0.2,0 -154230723,"Five Nights at Freddy's",purchase,1.0,0 -154230723,"Five Nights at Freddy's",play,0.2,0 -154230723,"Not The Robots",purchase,1.0,0 -154230723,"Not The Robots",play,0.1,0 -154230723,"YOU DON'T KNOW JACK SPORTS",purchase,1.0,0 -154230723,"Nimble Quest",purchase,1.0,0 -154230723,"PAYDAY 2",purchase,1.0,0 -154230723,"World of Goo",purchase,1.0,0 -154230723,"AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome",purchase,1.0,0 -154230723,"Symphony",purchase,1.0,0 -154230723,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -154230723,"Gunpoint",purchase,1.0,0 -154230723,"Mechanic Escape",purchase,1.0,0 -154230723,"Retro/Grade",purchase,1.0,0 -154230723,"RIFT",purchase,1.0,0 -154230723,"About Love, Hate and the other ones",purchase,1.0,0 -154230723,"Alice Madness Returns",purchase,1.0,0 -154230723,"Alien Spidy",purchase,1.0,0 -154230723,"Anachronox",purchase,1.0,0 -154230723,"AquaNox",purchase,1.0,0 -154230723,"AquaNox 2 Revelation",purchase,1.0,0 -154230723,"Artemis Spaceship Bridge Simulator",purchase,1.0,0 -154230723,"Ascendant",purchase,1.0,0 -154230723,"A Story About My Uncle",purchase,1.0,0 -154230723,"Aveyond 3-2 Gates of Night",purchase,1.0,0 -154230723,"Ballpoint Universe Infinite",purchase,1.0,0 -154230723,"Bardbarian",purchase,1.0,0 -154230723,"Battlestations Midway",purchase,1.0,0 -154230723,"Betrayer",purchase,1.0,0 -154230723,"Black Mirror",purchase,1.0,0 -154230723,"Blades of Time",purchase,1.0,0 -154230723,"Bridge Project",purchase,1.0,0 -154230723,"Broken Sword 2 - the Smoking Mirror Remastered",purchase,1.0,0 -154230723,"Capsized",purchase,1.0,0 -154230723,"Chaos Domain",purchase,1.0,0 -154230723,"Chernobyl Commando",purchase,1.0,0 -154230723,"Clicker Heroes",purchase,1.0,0 -154230723,"Commando Jack",purchase,1.0,0 -154230723,"Contraption Maker",purchase,1.0,0 -154230723,"Cook, Serve, Delicious!",purchase,1.0,0 -154230723,"Cosmic DJ",purchase,1.0,0 -154230723,"Crash Time II",purchase,1.0,0 -154230723,"Crazy Machines 2",purchase,1.0,0 -154230723,"Crazy Plant Shop",purchase,1.0,0 -154230723,"Crouching Pony Hidden Dragon",purchase,1.0,0 -154230723,"CT Special Forces Fire for Effect",purchase,1.0,0 -154230723,"Cube & Star An Arbitrary Love",purchase,1.0,0 -154230723,"Daikatana",purchase,1.0,0 -154230723,"Darkout",purchase,1.0,0 -154230723,"Darksiders",purchase,1.0,0 -154230723,"Darksiders II",purchase,1.0,0 -154230723,"Deadfall Adventures",purchase,1.0,0 -154230723,"Deadlight",purchase,1.0,0 -154230723,"Deadlight Original Soundtrack",purchase,1.0,0 -154230723,"Dear Esther",purchase,1.0,0 -154230723,"Deponia",purchase,1.0,0 -154230723,"Desert Thunder",purchase,1.0,0 -154230723,"Deus Ex Human Revolution - Director's Cut",purchase,1.0,0 -154230723,"Deus Ex Invisible War",purchase,1.0,0 -154230723,"Deus Ex The Fall",purchase,1.0,0 -154230723,"Dino D-Day",purchase,1.0,0 -154230723,"Disciples III Resurrection",purchase,1.0,0 -154230723,"Dismal Swamp DLC",purchase,1.0,0 -154230723,"DogFighter",purchase,1.0,0 -154230723,"Dollar Dash",purchase,1.0,0 -154230723,"Dollar Dash DLC1 More Ways to Win",purchase,1.0,0 -154230723,"Dollar Dash DLC2 Robbers Tool-Kit",purchase,1.0,0 -154230723,"Dream",purchase,1.0,0 -154230723,"DUNGEONS - Steam Special Edition",purchase,1.0,0 -154230723,"Enemy Mind",purchase,1.0,0 -154230723,"English Country Tune",purchase,1.0,0 -154230723,"Ethan Meteor Hunter",purchase,1.0,0 -154230723,"Ether One",purchase,1.0,0 -154230723,"Ether One Deluxe Edition Upgrade",purchase,1.0,0 -154230723,"Ether One Redux",purchase,1.0,0 -154230723,"Eurofighter Typhoon",purchase,1.0,0 -154230723,"Euro Truck Simulator",purchase,1.0,0 -154230723,"Euro Truck Simulator 2 - Going East!",purchase,1.0,0 -154230723,"Finding Teddy",purchase,1.0,0 -154230723,"Finding Teddy Soundtrack",purchase,1.0,0 -154230723,"FIST OF AWESOME",purchase,1.0,0 -154230723,"Fist of Jesus",purchase,1.0,0 -154230723,"FLY'N",purchase,1.0,0 -154230723,"FORCED",purchase,1.0,0 -154230723,"FORCED Original Soundtrack",purchase,1.0,0 -154230723,"Foul Play",purchase,1.0,0 -154230723,"Freaking Meatbags",purchase,1.0,0 -154230723,"Full Bore",purchase,1.0,0 -154230723,"Full Mojo Rampage",purchase,1.0,0 -154230723,"Galactic Civilizations II Ultimate Edition",purchase,1.0,0 -154230723,"Galaxy on Fire 2 Full HD",purchase,1.0,0 -154230723,"Galcon Fusion",purchase,1.0,0 -154230723,"Galcon Legends",purchase,1.0,0 -154230723,"GAUGE",purchase,1.0,0 -154230723,"GEARCRACK Arena",purchase,1.0,0 -154230723,"Gigantic Army",purchase,1.0,0 -154230723,"Glacier 3 The Meltdown",purchase,1.0,0 -154230723,"Godus",purchase,1.0,0 -154230723,"Gomo",purchase,1.0,0 -154230723,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -154230723,"Great Permutator",purchase,1.0,0 -154230723,"Guacamelee! Gold Edition",purchase,1.0,0 -154230723,"Guncraft",purchase,1.0,0 -154230723,"Guns of Icarus Online",purchase,1.0,0 -154230723,"Hammerfight",purchase,1.0,0 -154230723,"Hand Of Fate",purchase,1.0,0 -154230723,"Hell Yeah!",purchase,1.0,0 -154230723,"Hitman 2 Silent Assassin",purchase,1.0,0 -154230723,"Hitman Absolution",purchase,1.0,0 -154230723,"Hitman Blood Money",purchase,1.0,0 -154230723,"Hitman Codename 47",purchase,1.0,0 -154230723,"Hitman Contracts",purchase,1.0,0 -154230723,"Hostile Waters Antaeus Rising",purchase,1.0,0 -154230723,"Hyper Fighters",purchase,1.0,0 -154230723,"I, Zombie",purchase,1.0,0 -154230723,"Ichi",purchase,1.0,0 -154230723,"Incoming Forces",purchase,1.0,0 -154230723,"Influent",purchase,1.0,0 -154230723,"Influent DLC - English [Learn English]",purchase,1.0,0 -154230723,"Insanely Twisted Shadow Planet",purchase,1.0,0 -154230723,"Insurgency",purchase,1.0,0 -154230723,"Intrusion 2",purchase,1.0,0 -154230723,"Ittle Dew",purchase,1.0,0 -154230723,"Jagged Alliance - Back in Action",purchase,1.0,0 -154230723,"Jagged Alliance Crossfire",purchase,1.0,0 -154230723,"Jamsouls",purchase,1.0,0 -154230723,"Just Cause",purchase,1.0,0 -154230723,"KAMI",purchase,1.0,0 -154230723,"Kane & Lynch 2 Dog Days",purchase,1.0,0 -154230723,"Kane & Lynch Dead Men",purchase,1.0,0 -154230723,"Kill The Bad Guy",purchase,1.0,0 -154230723,"King Arthur's Gold",purchase,1.0,0 -154230723,"Knights of Pen and Paper +1",purchase,1.0,0 -154230723,"Knock-knock",purchase,1.0,0 -154230723,"La-Mulana",purchase,1.0,0 -154230723,"Lara Croft and the Guardian of Light",purchase,1.0,0 -154230723,"Legends of Persia",purchase,1.0,0 -154230723,"Lexica",purchase,1.0,0 -154230723,"Lifeless Planet",purchase,1.0,0 -154230723,"Limited Edition",purchase,1.0,0 -154230723,"Little Inferno",purchase,1.0,0 -154230723,"LUDWIG",purchase,1.0,0 -154230723,"LUFTRAUSERS",purchase,1.0,0 -154230723,"Mark of the Ninja Special Edition DLC",purchase,1.0,0 -154230723,"Master Reboot",purchase,1.0,0 -154230723,"Megabyte Punch",purchase,1.0,0 -154230723,"Meltdown",purchase,1.0,0 -154230723,"Metro 2033",purchase,1.0,0 -154230723,"Metrocide",purchase,1.0,0 -154230723,"Mini Metro",purchase,1.0,0 -154230723,"Mini Motor Racing EVO",purchase,1.0,0 -154230723,"Mini Ninjas",purchase,1.0,0 -154230723,"MirrorMoon EP",purchase,1.0,0 -154230723,"Mount & Blade With Fire and Sword",purchase,1.0,0 -154230723,"MURDERED SOUL SUSPECT",purchase,1.0,0 -154230723,"MX vs. ATV Reflex",purchase,1.0,0 -154230723,"Neverwinter",purchase,1.0,0 -154230723,"Nihilumbra",purchase,1.0,0 -154230723,"Nosferatu The Wrath of Malachi",purchase,1.0,0 -154230723,"Nosgoth",purchase,1.0,0 -154230723,"Nuclear Dawn",purchase,1.0,0 -154230723,"Oil Rush",purchase,1.0,0 -154230723,"Oknytt",purchase,1.0,0 -154230723,"One Finger Death Punch",purchase,1.0,0 -154230723,"One Way Heroics",purchase,1.0,0 -154230723,"On the Rain-Slick Precipice of Darkness, Episode One",purchase,1.0,0 -154230723,"On the Rain-Slick Precipice of Darkness, Episode Two",purchase,1.0,0 -154230723,"Oozi Earth Adventure",purchase,1.0,0 -154230723,"Orcs Must Die! 2",purchase,1.0,0 -154230723,"ORION Prelude",purchase,1.0,0 -154230723,"Oscura Lost Light",purchase,1.0,0 -154230723,"Osmos",purchase,1.0,0 -154230723,"OTTTD",purchase,1.0,0 -154230723,"Our Darker Purpose",purchase,1.0,0 -154230723,"Out of the Park Baseball 14",purchase,1.0,0 -154230723,"Papers, Please",purchase,1.0,0 -154230723,"Paranautical Activity Deluxe Atonement Edition",purchase,1.0,0 -154230723,"Path of Exile",purchase,1.0,0 -154230723,"PAYDAY The Heist",purchase,1.0,0 -154230723,"Penguins Arena Sedna's World",purchase,1.0,0 -154230723,"PixelJunk Monsters Ultimate",purchase,1.0,0 -154230723,"PixelJunk Shooter",purchase,1.0,0 -154230723,"Pixel Piracy",purchase,1.0,0 -154230723,"Platypus",purchase,1.0,0 -154230723,"Poof",purchase,1.0,0 -154230723,"Prime World Defenders",purchase,1.0,0 -154230723,"Project Temporality",purchase,1.0,0 -154230723,"Proteus",purchase,1.0,0 -154230723,"Puddle",purchase,1.0,0 -154230723,"Pulstar",purchase,1.0,0 -154230723,"Puzzler World 2",purchase,1.0,0 -154230723,"Q.U.B.E.",purchase,1.0,0 -154230723,"Racer 8",purchase,1.0,0 -154230723,"Ravaged Zombie Apocalypse",purchase,1.0,0 -154230723,"Ravensword Shadowlands",purchase,1.0,0 -154230723,"Receiver",purchase,1.0,0 -154230723,"Red Faction Armageddon",purchase,1.0,0 -154230723,"ReignMaker",purchase,1.0,0 -154230723,"Rhythm Destruction",purchase,1.0,0 -154230723,"Risen 2 - Dark Waters",purchase,1.0,0 -154230723,"Rocketbirds Hardboiled Chicken",purchase,1.0,0 -154230723,"RPG Maker Royal Tiles Resource Pack",purchase,1.0,0 -154230723,"RPG Maker Tyler Warren First 50 Battler Pack",purchase,1.0,0 -154230723,"RPG Maker VX Ace",purchase,1.0,0 -154230723,"S.T.A.L.K.E.R. Clear Sky",purchase,1.0,0 -154230723,"Sacred 2 Gold",purchase,1.0,0 -154230723,"Saints Row 2",purchase,1.0,0 -154230723,"Saints Row The Third",purchase,1.0,0 -154230723,"Saints Row IV",purchase,1.0,0 -154230723,"Savant - Ascent",purchase,1.0,0 -154230723,"Scribblenauts Unlimited",purchase,1.0,0 -154230723,"Secrets of Rtikon",purchase,1.0,0 -154230723,"SEGA Genesis & Mega Drive Classics",purchase,1.0,0 -154230723,"Serious Sam 2",purchase,1.0,0 -154230723,"Shank",purchase,1.0,0 -154230723,"Shank 2",purchase,1.0,0 -154230723,"Showtime!",purchase,1.0,0 -154230723,"Sid Meier's Civilization III Complete",purchase,1.0,0 -154230723,"Sine Mora",purchase,1.0,0 -154230723,"Skulls of the Shogun",purchase,1.0,0 -154230723,"Skyborn",purchase,1.0,0 -154230723,"SkyDrift",purchase,1.0,0 -154230723,"Sleeping Dogs",purchase,1.0,0 -154230723,"Slip",purchase,1.0,0 -154230723,"Sokobond",purchase,1.0,0 -154230723,"SOL Exodus",purchase,1.0,0 -154230723,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -154230723,"Sonic Adventure DX",purchase,1.0,0 -154230723,"Sonic Adventure 2 ",purchase,1.0,0 -154230723,"Sonic Adventure 2 Battle Mode DLC",purchase,1.0,0 -154230723,"Sonic and SEGA All Stars Racing",purchase,1.0,0 -154230723,"Sonic CD",purchase,1.0,0 -154230723,"Sonic Generations",purchase,1.0,0 -154230723,"SONIC THE HEDGEHOG 4 Episode I",purchase,1.0,0 -154230723,"SONIC THE HEDGEHOG 4 Episode II",purchase,1.0,0 -154230723,"SpaceChem",purchase,1.0,0 -154230723,"Spec Ops The Line",purchase,1.0,0 -154230723,"SpellForce 2 - Demons of the Past",purchase,1.0,0 -154230723,"Spirits",purchase,1.0,0 -154230723,"Stacking",purchase,1.0,0 -154230723,"Star Ruler",purchase,1.0,0 -154230723,"Starter Pack",purchase,1.0,0 -154230723,"Startopia",purchase,1.0,0 -154230723,"SteamWorld Dig",purchase,1.0,0 -154230723,"Stick It To The Man!",purchase,1.0,0 -154230723,"Storm",purchase,1.0,0 -154230723,"Summoner",purchase,1.0,0 -154230723,"Super Amazing Wagon Adventure",purchase,1.0,0 -154230723,"Super Comboman",purchase,1.0,0 -154230723,"Superfrog HD",purchase,1.0,0 -154230723,"Super Killer Hornet Resurrection",purchase,1.0,0 -154230723,"Super Panda Adventures",purchase,1.0,0 -154230723,"Super Splatters",purchase,1.0,0 -154230723,"Supreme Commander",purchase,1.0,0 -154230723,"Supreme Commander 2",purchase,1.0,0 -154230723,"Supreme Commander Forged Alliance",purchase,1.0,0 -154230723,"Sweet Lily Dreams",purchase,1.0,0 -154230723,"Syder Arcade",purchase,1.0,0 -154230723,"System Shock 2",purchase,1.0,0 -154230723,"Tank Operations European Campaign",purchase,1.0,0 -154230723,"Teleglitch Die More Edition",purchase,1.0,0 -154230723,"Tesla Breaks the World!",purchase,1.0,0 -154230723,"Tesla Breaks the World! Official Soundtrack",purchase,1.0,0 -154230723,"The 39 Steps",purchase,1.0,0 -154230723,"The Baconing",purchase,1.0,0 -154230723,"The Bridge",purchase,1.0,0 -154230723,"The Counting Kingdom",purchase,1.0,0 -154230723,"The Culling Of The Cows",purchase,1.0,0 -154230723,"The Fish Fillets 2",purchase,1.0,0 -154230723,"The Great Jitters Pudding Panic",purchase,1.0,0 -154230723,"The Guild II",purchase,1.0,0 -154230723,"The Guild II - Pirates of the European Seas",purchase,1.0,0 -154230723,"The Guild II Renaissance",purchase,1.0,0 -154230723,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -154230723,"The Incredible Adventures of Van Helsing Thaumaturge",purchase,1.0,0 -154230723,"The Inner World",purchase,1.0,0 -154230723,"The Last Remnant",purchase,1.0,0 -154230723,"The Lost Crown",purchase,1.0,0 -154230723,"The Mysterious Cities of Gold - Secret Paths",purchase,1.0,0 -154230723,"The Shivah",purchase,1.0,0 -154230723,"The Swapper",purchase,1.0,0 -154230723,"They Breathe",purchase,1.0,0 -154230723,"Thief",purchase,1.0,0 -154230723,"Thief Gold",purchase,1.0,0 -154230723,"Tiny and Big Grandpa's Leftovers",purchase,1.0,0 -154230723,"Tiny Barbarian DX",purchase,1.0,0 -154230723,"Titan Quest",purchase,1.0,0 -154230723,"Titan Quest Immortal Throne",purchase,1.0,0 -154230723,"Tomb Raider",purchase,1.0,0 -154230723,"Torchlight II",purchase,1.0,0 -154230723,"To the Moon",purchase,1.0,0 -154230723,"Trainz Simulator 12",purchase,1.0,0 -154230723,"Transformice",purchase,1.0,0 -154230723,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -154230723,"Tropico 3 Absolute Power",purchase,1.0,0 -154230723,"Tropico 4",purchase,1.0,0 -154230723,"Trove",purchase,1.0,0 -154230723,"Turbo Dismount",purchase,1.0,0 -154230723,"Two Brothers",purchase,1.0,0 -154230723,"Unepic",purchase,1.0,0 -154230723,"Unholy Heights",purchase,1.0,0 -154230723,"Universe Sandbox",purchase,1.0,0 -154230723,"Unrest",purchase,1.0,0 -154230723,"Vangers",purchase,1.0,0 -154230723,"Velocibox",purchase,1.0,0 -154230723,"VelocityUltra",purchase,1.0,0 -154230723,"Vertical Drop Heroes HD",purchase,1.0,0 -154230723,"Wanderlust Rebirth",purchase,1.0,0 -154230723,"Warlock - Master of the Arcane",purchase,1.0,0 -154230723,"Warlock - Master of the Arcane Powerful Lords",purchase,1.0,0 -154230723,"Wildlife Park 3",purchase,1.0,0 -154230723,"Windforge",purchase,1.0,0 -154230723,"Wooden Sen'SeY",purchase,1.0,0 -154230723,"Worms",purchase,1.0,0 -154230723,"Worms Armageddon",purchase,1.0,0 -154230723,"Worms Blast",purchase,1.0,0 -154230723,"Worms Crazy Golf",purchase,1.0,0 -154230723,"Worms Pinball",purchase,1.0,0 -154230723,"Worms Reloaded",purchase,1.0,0 -154230723,"Worms Revolution",purchase,1.0,0 -154230723,"X3 Terran Conflict",purchase,1.0,0 -154230723,"Xotic",purchase,1.0,0 -154230723,"YOU DON'T KNOW JACK HEADRUSH",purchase,1.0,0 -154230723,"YOU DON'T KNOW JACK MOVIES",purchase,1.0,0 -154230723,"YOU DON'T KNOW JACK TELEVISION",purchase,1.0,0 -154230723,"YOU DON'T KNOW JACK Vol. 1 XL",purchase,1.0,0 -154230723,"YOU DON'T KNOW JACK Vol. 2",purchase,1.0,0 -154230723,"YOU DON'T KNOW JACK Vol. 3",purchase,1.0,0 -154230723,"YOU DON'T KNOW JACK Vol. 4 The Ride",purchase,1.0,0 -154230723,"Zen Bound 2",purchase,1.0,0 -149434889,"Dota 2",purchase,1.0,0 -149434889,"Dota 2",play,19.4,0 -87201181,"Dota 2",purchase,1.0,0 -87201181,"Dota 2",play,1526.0,0 -87201181,"Counter-Strike Source",purchase,1.0,0 -87201181,"Counter-Strike Source",play,1276.0,0 -87201181,"Counter-Strike Global Offensive",purchase,1.0,0 -87201181,"Counter-Strike Global Offensive",play,1220.0,0 -87201181,"Team Fortress 2",purchase,1.0,0 -87201181,"Team Fortress 2",play,728.0,0 -87201181,"The Elder Scrolls V Skyrim",purchase,1.0,0 -87201181,"The Elder Scrolls V Skyrim",play,257.0,0 -87201181,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -87201181,"Call of Duty Black Ops - Multiplayer",play,118.0,0 -87201181,"Call of Duty Modern Warfare 3 - Multiplayer",purchase,1.0,0 -87201181,"Call of Duty Modern Warfare 3 - Multiplayer",play,101.0,0 -87201181,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -87201181,"Call of Duty Black Ops II - Multiplayer",play,74.0,0 -87201181,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -87201181,"Warhammer 40,000 Dawn of War II Retribution",play,48.0,0 -87201181,"Battlefield Bad Company 2",purchase,1.0,0 -87201181,"Battlefield Bad Company 2",play,41.0,0 -87201181,"Call of Duty Black Ops",purchase,1.0,0 -87201181,"Call of Duty Black Ops",play,40.0,0 -87201181,"Killing Floor",purchase,1.0,0 -87201181,"Killing Floor",play,39.0,0 -87201181,"Left 4 Dead 2",purchase,1.0,0 -87201181,"Left 4 Dead 2",play,37.0,0 -87201181,"Mortal Kombat Komplete Edition",purchase,1.0,0 -87201181,"Mortal Kombat Komplete Edition",play,37.0,0 -87201181,"Warhammer 40,000 Dawn of War Dark Crusade",purchase,1.0,0 -87201181,"Warhammer 40,000 Dawn of War Dark Crusade",play,33.0,0 -87201181,"Saints Row The Third",purchase,1.0,0 -87201181,"Saints Row The Third",play,31.0,0 -87201181,"Alien Swarm",purchase,1.0,0 -87201181,"Alien Swarm",play,30.0,0 -87201181,"Town of Salem",purchase,1.0,0 -87201181,"Town of Salem",play,25.0,0 -87201181,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -87201181,"Warhammer 40,000 Dawn of War Soulstorm",play,24.0,0 -87201181,"Dead Island",purchase,1.0,0 -87201181,"Dead Island",play,17.6,0 -87201181,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -87201181,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,16.0,0 -87201181,"Garry's Mod",purchase,1.0,0 -87201181,"Garry's Mod",play,14.6,0 -87201181,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -87201181,"Call of Duty Black Ops II - Zombies",play,12.3,0 -87201181,"Call of Duty Modern Warfare 3",purchase,1.0,0 -87201181,"Call of Duty Modern Warfare 3",play,11.8,0 -87201181,"Call of Duty Black Ops II",purchase,1.0,0 -87201181,"Call of Duty Black Ops II",play,9.0,0 -87201181,"No More Room in Hell",purchase,1.0,0 -87201181,"No More Room in Hell",play,8.0,0 -87201181,"Batman Arkham Origins",purchase,1.0,0 -87201181,"Batman Arkham Origins",play,6.9,0 -87201181,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -87201181,"Call of Duty Modern Warfare 2 - Multiplayer",play,4.4,0 -87201181,"Dead Island Riptide",purchase,1.0,0 -87201181,"Dead Island Riptide",play,2.9,0 -87201181,"Survarium",purchase,1.0,0 -87201181,"Survarium",play,1.5,0 -87201181,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -87201181,"Warhammer 40,000 Dawn of War II",play,1.0,0 -87201181,"7 Days to Die",purchase,1.0,0 -87201181,"7 Days to Die",play,0.9,0 -87201181,"Call of Duty Modern Warfare 2",purchase,1.0,0 -87201181,"Call of Duty Modern Warfare 2",play,0.5,0 -87201181,"Call of Duty Modern Warfare 2 - Resurgence Pack",purchase,1.0,0 -87201181,"Call of Duty Modern Warfare 2 Stimulus Package",purchase,1.0,0 -87201181,"Call of Duty World at War",purchase,1.0,0 -87201181,"Chivalry Medieval Warfare",purchase,1.0,0 -87201181,"Dead Island Epidemic",purchase,1.0,0 -87201181,"Eets",purchase,1.0,0 -87201181,"Insurgency",purchase,1.0,0 -87201181,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -87201181,"Patch testing for Chivalry",purchase,1.0,0 -87201181,"The Binding of Isaac",purchase,1.0,0 -87201181,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -87201181,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -87201181,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -87201181,"Tropico 4",purchase,1.0,0 -87201181,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",purchase,1.0,0 -87201181,"Warhammer 40,000 Dawn of War - Game of the Year Edition",purchase,1.0,0 -87201181,"Warhammer 40,000 Dawn of War Winter Assault",purchase,1.0,0 -253245972,"Unturned",purchase,1.0,0 -253245972,"Unturned",play,5.1,0 -192616228,"Terraria",purchase,1.0,0 -232257053,"Robocraft",purchase,1.0,0 -232257053,"Robocraft",play,0.5,0 -23181958,"Dear Esther",purchase,1.0,0 -23181958,"Dear Esther",play,2.8,0 -23181958,"Gone Home",purchase,1.0,0 -23181958,"Gone Home",play,2.7,0 -23181958,"The Stanley Parable",purchase,1.0,0 -23181958,"The Stanley Parable",play,1.2,0 -23181958,"Half-Life 2 Episode One",purchase,1.0,0 -23181958,"Half-Life 2 Lost Coast",purchase,1.0,0 -23181958,"Half-Life 2 Deathmatch",purchase,1.0,0 -23181958,"Half-Life Deathmatch Source",purchase,1.0,0 -258673767,"Garry's Mod",purchase,1.0,0 -258673767,"Garry's Mod",play,11.1,0 -258673767,"Mortal Online",purchase,1.0,0 -258673767,"Mortal Online",play,0.8,0 -258673767,"WARMODE",purchase,1.0,0 -258673767,"WARMODE",play,0.3,0 -258673767,"Clown House (Palyao Evi)",purchase,1.0,0 -258673767,"Clown House (Palyao Evi)",play,0.2,0 -161013852,"Dota 2",purchase,1.0,0 -161013852,"Dota 2",play,718.0,0 -161013852,"FreeStyle2 Street Basketball",purchase,1.0,0 -161013852,"FreeStyle2 Street Basketball",play,4.0,0 -161013852,"ACE - Arena Cyber Evolution",purchase,1.0,0 -161013852,"APB Reloaded",purchase,1.0,0 -161013852,"Archeblade",purchase,1.0,0 -161013852,"Aura Kingdom",purchase,1.0,0 -161013852,"Blacklight Retribution",purchase,1.0,0 -161013852,"C9",purchase,1.0,0 -161013852,"Dead Island Epidemic",purchase,1.0,0 -161013852,"Defiance",purchase,1.0,0 -161013852,"Dirty Bomb",purchase,1.0,0 -161013852,"Double Action Boogaloo",purchase,1.0,0 -161013852,"Face of Mankind",purchase,1.0,0 -161013852,"Fallen Earth",purchase,1.0,0 -161013852,"Firefall",purchase,1.0,0 -161013852,"Free to Play",purchase,1.0,0 -161013852,"Gotham City Impostors Free To Play",purchase,1.0,0 -161013852,"GunZ 2 The Second Duel",purchase,1.0,0 -161013852,"HAWKEN",purchase,1.0,0 -161013852,"Heroes & Generals",purchase,1.0,0 -161013852,"Loadout",purchase,1.0,0 -161013852,"Magicka Wizard Wars",purchase,1.0,0 -161013852,"Marvel Heroes 2015",purchase,1.0,0 -161013852,"Neverwinter",purchase,1.0,0 -161013852,"Nosgoth",purchase,1.0,0 -161013852,"PlanetSide 2",purchase,1.0,0 -161013852,"Quake Live",purchase,1.0,0 -161013852,"Realm of the Mad God",purchase,1.0,0 -161013852,"RIFT",purchase,1.0,0 -161013852,"Rise of Incarnates",purchase,1.0,0 -161013852,"Robocraft",purchase,1.0,0 -161013852,"Royal Quest",purchase,1.0,0 -161013852,"Spiral Knights",purchase,1.0,0 -161013852,"Star Trek Online",purchase,1.0,0 -161013852,"Tactical Intervention",purchase,1.0,0 -161013852,"theHunter",purchase,1.0,0 -161013852,"The Lord of the Rings Online",purchase,1.0,0 -161013852,"The Mighty Quest For Epic Loot",purchase,1.0,0 -161013852,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -161013852,"Transformice",purchase,1.0,0 -161013852,"Unturned",purchase,1.0,0 -161013852,"Warframe",purchase,1.0,0 -161013852,"War Thunder",purchase,1.0,0 -147879598,"H1Z1",purchase,1.0,0 -147879598,"H1Z1",play,73.0,0 -147879598,"Team Fortress 2",purchase,1.0,0 -147879598,"Team Fortress 2",play,50.0,0 -147879598,"Borderlands 2",purchase,1.0,0 -147879598,"Borderlands 2",play,30.0,0 -147879598,"Grand Theft Auto IV",purchase,1.0,0 -147879598,"Grand Theft Auto IV",play,25.0,0 -147879598,"Scribblenauts Unlimited",purchase,1.0,0 -147879598,"Scribblenauts Unlimited",play,10.7,0 -147879598,"Loadout",purchase,1.0,0 -147879598,"Loadout",play,4.0,0 -147879598,"Unturned",purchase,1.0,0 -147879598,"Unturned",play,3.6,0 -147879598,"H1Z1 Test Server",purchase,1.0,0 -147879598,"Counter-Strike Nexon Zombies",purchase,1.0,0 -147879598,"Survarium",purchase,1.0,0 -212090589,"Dota 2",purchase,1.0,0 -212090589,"Dota 2",play,77.0,0 -31385451,"Day of Defeat Source",purchase,1.0,0 -31385451,"Day of Defeat Source",play,250.0,0 -31385451,"Counter-Strike Source",purchase,1.0,0 -31385451,"Counter-Strike Source",play,4.2,0 -31385451,"Counter-Strike",purchase,1.0,0 -31385451,"Counter-Strike Condition Zero",purchase,1.0,0 -31385451,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -31385451,"Half-Life 2 Deathmatch",purchase,1.0,0 -31385451,"Half-Life 2 Lost Coast",purchase,1.0,0 -138590829,"Dota 2",purchase,1.0,0 -138590829,"Dota 2",play,1026.0,0 -190460990,"Dota 2",purchase,1.0,0 -190460990,"Dota 2",play,1.5,0 -84026704,"Team Fortress 2",purchase,1.0,0 -84026704,"Team Fortress 2",play,3.6,0 -30503921,"Left 4 Dead",purchase,1.0,0 -30503921,"Left 4 Dead",play,5.3,0 -112739159,"Ride! Carnival Tycoon",purchase,1.0,0 -112739159,"Ride! Carnival Tycoon",play,0.3,0 -7519923,"Counter-Strike",purchase,1.0,0 -7519923,"Counter-Strike",play,35.0,0 -7519923,"Counter-Strike Condition Zero",purchase,1.0,0 -7519923,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -308997600,"Call of Duty Black Ops III",purchase,1.0,0 -308997600,"Call of Duty Black Ops III",play,5.1,0 -97578013,"Counter-Strike Source",purchase,1.0,0 -97578013,"Counter-Strike Source",play,92.0,0 -138542725,"Sid Meier's Civilization V",purchase,1.0,0 -138542725,"Sid Meier's Civilization V",play,972.0,0 -138542725,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -42326526,"Football Manager 2009",purchase,1.0,0 -42326526,"Football Manager 2009",play,52.0,0 -294006204,"Grand Theft Auto V",purchase,1.0,0 -294006204,"Grand Theft Auto V",play,114.0,0 -294006204,"Team Fortress 2",purchase,1.0,0 -294006204,"Team Fortress 2",play,0.3,0 -294006204,"Warframe",purchase,1.0,0 -294006204,"Warframe",play,0.2,0 -98653215,"Football Manager 2012",purchase,1.0,0 -98653215,"Football Manager 2012",play,3.3,0 -245839900,"Unturned",purchase,1.0,0 -245839900,"Unturned",play,3.4,0 -245839900,"Realm of the Mad God",purchase,1.0,0 -144319593,"Counter-Strike Global Offensive",purchase,1.0,0 -144319593,"Counter-Strike Global Offensive",play,0.4,0 -224601141,"World of Guns Gun Disassembly",purchase,1.0,0 -224601141,"World of Guns Gun Disassembly",play,0.8,0 -116564064,"Torchlight II",purchase,1.0,0 -116564064,"Torchlight II",play,69.0,0 -116564064,"Terraria",purchase,1.0,0 -116564064,"Terraria",play,53.0,0 -116564064,"The Binding of Isaac",purchase,1.0,0 -116564064,"The Binding of Isaac",play,52.0,0 -116564064,"Orcs Must Die! 2",purchase,1.0,0 -116564064,"Orcs Must Die! 2",play,45.0,0 -116564064,"The Binding of Isaac Rebirth",purchase,1.0,0 -116564064,"The Binding of Isaac Rebirth",play,32.0,0 -116564064,"Counter-Strike Global Offensive",purchase,1.0,0 -116564064,"Counter-Strike Global Offensive",play,32.0,0 -116564064,"Dota 2",purchase,1.0,0 -116564064,"Dota 2",play,32.0,0 -116564064,"Alice Madness Returns",purchase,1.0,0 -116564064,"Alice Madness Returns",play,29.0,0 -116564064,"Super Meat Boy",purchase,1.0,0 -116564064,"Super Meat Boy",play,29.0,0 -116564064,"Rampage Knights",purchase,1.0,0 -116564064,"Rampage Knights",play,26.0,0 -116564064,"Mirror's Edge",purchase,1.0,0 -116564064,"Mirror's Edge",play,24.0,0 -116564064,"Trine 2",purchase,1.0,0 -116564064,"Trine 2",play,21.0,0 -116564064,"Rogue Legacy",purchase,1.0,0 -116564064,"Rogue Legacy",play,21.0,0 -116564064,"Fable III",purchase,1.0,0 -116564064,"Fable III",play,18.5,0 -116564064,"Magicka",purchase,1.0,0 -116564064,"Magicka",play,18.4,0 -116564064,"Prince of Persia The Forgotten Sands",purchase,1.0,0 -116564064,"Prince of Persia The Forgotten Sands",play,17.3,0 -116564064,"BioShock Infinite",purchase,1.0,0 -116564064,"BioShock Infinite",play,15.9,0 -116564064,"HuniePop",purchase,1.0,0 -116564064,"HuniePop",play,15.7,0 -116564064,"Dead Island",purchase,1.0,0 -116564064,"Dead Island",play,12.6,0 -116564064,"Age of Empires II HD Edition",purchase,1.0,0 -116564064,"Age of Empires II HD Edition",play,11.9,0 -116564064,"Full Mojo Rampage",purchase,1.0,0 -116564064,"Full Mojo Rampage",play,11.6,0 -116564064,"Resident Evil 6 / Biohazard 6",purchase,1.0,0 -116564064,"Resident Evil 6 / Biohazard 6",play,11.2,0 -116564064,"Ori and the Blind Forest",purchase,1.0,0 -116564064,"Ori and the Blind Forest",play,11.0,0 -116564064,"Sonic & All-Stars Racing Transformed",purchase,1.0,0 -116564064,"Sonic & All-Stars Racing Transformed",play,10.9,0 -116564064,"Ace of Spades",purchase,1.0,0 -116564064,"Ace of Spades",play,10.9,0 -116564064,"Portal 2",purchase,1.0,0 -116564064,"Portal 2",play,10.0,0 -116564064,"DYNASTY WARRIORS 8 Xtreme Legends Complete Edition",purchase,1.0,0 -116564064,"DYNASTY WARRIORS 8 Xtreme Legends Complete Edition",play,8.9,0 -116564064,"The Elder Scrolls V Skyrim",purchase,1.0,0 -116564064,"The Elder Scrolls V Skyrim",play,8.2,0 -116564064,"Spore",purchase,1.0,0 -116564064,"Spore",play,7.3,0 -116564064,"Left 4 Dead 2",purchase,1.0,0 -116564064,"Left 4 Dead 2",play,7.1,0 -116564064,"Castlevania Lords of Shadow 2",purchase,1.0,0 -116564064,"Castlevania Lords of Shadow 2",play,6.8,0 -116564064,"THE KING OF FIGHTERS XIII STEAM EDITION",purchase,1.0,0 -116564064,"THE KING OF FIGHTERS XIII STEAM EDITION",play,5.9,0 -116564064,"bit Dungeon II",purchase,1.0,0 -116564064,"bit Dungeon II",play,5.9,0 -116564064,"Scribblenauts Unlimited",purchase,1.0,0 -116564064,"Scribblenauts Unlimited",play,5.8,0 -116564064,"Mark of the Ninja",purchase,1.0,0 -116564064,"Mark of the Ninja",play,5.3,0 -116564064,"Shantae and the Pirate's Curse",purchase,1.0,0 -116564064,"Shantae and the Pirate's Curse",play,5.1,0 -116564064,"DARK SOULS II",purchase,1.0,0 -116564064,"DARK SOULS II",play,4.7,0 -116564064,"I Am Alive",purchase,1.0,0 -116564064,"I Am Alive",play,4.3,0 -116564064,"Sniper Elite V2",purchase,1.0,0 -116564064,"Sniper Elite V2",play,4.2,0 -116564064,"Lara Croft and the Guardian of Light",purchase,1.0,0 -116564064,"Lara Croft and the Guardian of Light",play,4.0,0 -116564064,"Dustforce",purchase,1.0,0 -116564064,"Dustforce",play,3.9,0 -116564064,"Bleed",purchase,1.0,0 -116564064,"Bleed",play,3.1,0 -116564064,"LIMBO",purchase,1.0,0 -116564064,"LIMBO",play,2.6,0 -116564064,"Assassin's Creed III",purchase,1.0,0 -116564064,"Assassin's Creed III",play,2.4,0 -116564064,"Unreal Tournament 3 Black Edition",purchase,1.0,0 -116564064,"Unreal Tournament 3 Black Edition",play,2.3,0 -116564064,"Disciples III Renaissance",purchase,1.0,0 -116564064,"Disciples III Renaissance",play,2.2,0 -116564064,"SAMURAI WARRIORS 4-II",purchase,1.0,0 -116564064,"SAMURAI WARRIORS 4-II",play,2.2,0 -116564064,"BattleBlock Theater",purchase,1.0,0 -116564064,"BattleBlock Theater",play,2.2,0 -116564064,"Metro 2033",purchase,1.0,0 -116564064,"Metro 2033",play,2.0,0 -116564064,"Ys Origin",purchase,1.0,0 -116564064,"Ys Origin",play,1.8,0 -116564064,"A.R.E.S.",purchase,1.0,0 -116564064,"A.R.E.S.",play,1.7,0 -116564064,"Poly Bridge",purchase,1.0,0 -116564064,"Poly Bridge",play,1.7,0 -116564064,"Closure",purchase,1.0,0 -116564064,"Closure",play,1.4,0 -116564064,"Darksiders",purchase,1.0,0 -116564064,"Darksiders",play,1.4,0 -116564064,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",purchase,1.0,0 -116564064,"NARUTO SHIPPUDEN Ultimate Ninja STORM 3 Full Burst",play,1.2,0 -116564064,"Spirits",purchase,1.0,0 -116564064,"Spirits",play,1.0,0 -116564064,"Spelunky",purchase,1.0,0 -116564064,"Spelunky",play,0.9,0 -116564064,"Sonic Adventure 2 ",purchase,1.0,0 -116564064,"Sonic Adventure 2 ",play,0.9,0 -116564064,"Prince of Persia The Sands of Time",purchase,1.0,0 -116564064,"Prince of Persia The Sands of Time",play,0.9,0 -116564064,"Team Fortress 2",purchase,1.0,0 -116564064,"Team Fortress 2",play,0.8,0 -116564064,"Intrusion 2",purchase,1.0,0 -116564064,"Intrusion 2",play,0.8,0 -116564064,"Magicka 2",purchase,1.0,0 -116564064,"Magicka 2",play,0.8,0 -116564064,"METAL SLUG 3",purchase,1.0,0 -116564064,"METAL SLUG 3",play,0.7,0 -116564064,"Castle Crashers",purchase,1.0,0 -116564064,"Castle Crashers",play,0.7,0 -116564064,"Afterfall InSanity Extended Edition",purchase,1.0,0 -116564064,"Afterfall InSanity Extended Edition",play,0.6,0 -116564064,"Rust",purchase,1.0,0 -116564064,"Rust",play,0.6,0 -116564064,"Edge of Space",purchase,1.0,0 -116564064,"Edge of Space",play,0.6,0 -116564064,"Magicite",purchase,1.0,0 -116564064,"Magicite",play,0.5,0 -116564064,"The Incredible Adventures of Van Helsing",purchase,1.0,0 -116564064,"The Incredible Adventures of Van Helsing",play,0.5,0 -116564064,"Magicka Wizard Wars",purchase,1.0,0 -116564064,"Magicka Wizard Wars",play,0.4,0 -116564064,"Mass Effect",purchase,1.0,0 -116564064,"Mass Effect",play,0.4,0 -116564064,"Dust An Elysian Tail",purchase,1.0,0 -116564064,"Dust An Elysian Tail",play,0.4,0 -116564064,"Bastion",purchase,1.0,0 -116564064,"Bastion",play,0.4,0 -116564064,"VVVVVV",purchase,1.0,0 -116564064,"VVVVVV",play,0.3,0 -116564064,"The Bug Butcher",purchase,1.0,0 -116564064,"The Bug Butcher",play,0.3,0 -116564064,"Geometry Dash",purchase,1.0,0 -116564064,"Geometry Dash",play,0.3,0 -116564064,"Don't Starve Together Beta",purchase,1.0,0 -116564064,"Don't Starve Together Beta",play,0.3,0 -116564064,"Monkey Island 2 Special Edition",purchase,1.0,0 -116564064,"Monkey Island 2 Special Edition",play,0.3,0 -116564064,"Reus",purchase,1.0,0 -116564064,"Reus",play,0.2,0 -116564064,"Velvet Assassin",purchase,1.0,0 -116564064,"Velvet Assassin",play,0.1,0 -116564064,"Pixel Piracy",purchase,1.0,0 -116564064,"Orcs Must Die!",purchase,1.0,0 -116564064,"STAR WARS Knights of the Old Republic II The Sith Lords",purchase,1.0,0 -116564064,"Nexuiz",purchase,1.0,0 -116564064,"Bulletstorm",purchase,1.0,0 -116564064,"Star Wars Knights of the Old Republic",purchase,1.0,0 -116564064,"Prince of Persia",purchase,1.0,0 -116564064,"Alan Wake",purchase,1.0,0 -116564064,"Amnesia The Dark Descent",purchase,1.0,0 -116564064,"Assassin's Creed II",purchase,1.0,0 -116564064,"Assassin's Creed IV Black Flag",purchase,1.0,0 -116564064,"Assassin's Creed Rogue",purchase,1.0,0 -116564064,"Assassins Creed Unity",purchase,1.0,0 -116564064,"A Wizard's Lizard",purchase,1.0,0 -116564064,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -116564064,"Batman Arkham City GOTY",purchase,1.0,0 -116564064,"Beat Hazard",purchase,1.0,0 -116564064,"Ben There, Dan That!",purchase,1.0,0 -116564064,"Brothers - A Tale of Two Sons",purchase,1.0,0 -116564064,"Castlevania Lords of Shadow - Ultimate Edition",purchase,1.0,0 -116564064,"Child of Light",purchase,1.0,0 -116564064,"Company of Heroes",purchase,1.0,0 -116564064,"Company of Heroes (New Steam Version)",purchase,1.0,0 -116564064,"Company of Heroes Opposing Fronts",purchase,1.0,0 -116564064,"Cry of Fear",purchase,1.0,0 -116564064,"Darksiders II",purchase,1.0,0 -116564064,"Disciples III Resurrection",purchase,1.0,0 -116564064,"Dungeon Defenders",purchase,1.0,0 -116564064,"Far Cry 3",purchase,1.0,0 -116564064,"Fight The Dragon",purchase,1.0,0 -116564064,"FORCED",purchase,1.0,0 -116564064,"Gun Metal",purchase,1.0,0 -116564064,"Half-Life 2",purchase,1.0,0 -116564064,"Half-Life 2 Lost Coast",purchase,1.0,0 -116564064,"Homefront",purchase,1.0,0 -116564064,"HuniePop Official Digital Art Collection",purchase,1.0,0 -116564064,"HuniePop Original Soundtrack",purchase,1.0,0 -116564064,"King Arthur's Gold",purchase,1.0,0 -116564064,"Kingdoms of Amalur Reckoning",purchase,1.0,0 -116564064,"Left 4 Dead",purchase,1.0,0 -116564064,"Magicka Final Frontier",purchase,1.0,0 -116564064,"Magicka Frozen Lake",purchase,1.0,0 -116564064,"Magicka Holiday Spirit Item Pack ",purchase,1.0,0 -116564064,"Magicka Nippon",purchase,1.0,0 -116564064,"Magicka Party Robes",purchase,1.0,0 -116564064,"Magicka The Watchtower",purchase,1.0,0 -116564064,"Magicka Vietnam",purchase,1.0,0 -116564064,"Magicka Wizard's Survival Kit",purchase,1.0,0 -116564064,"Mass Effect 2",purchase,1.0,0 -116564064,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -116564064,"Middle-earth Shadow of Mordor",purchase,1.0,0 -116564064,"MX vs. ATV Reflex",purchase,1.0,0 -116564064,"NBA 2K15",purchase,1.0,0 -116564064,"Nexuiz Beta",purchase,1.0,0 -116564064,"Nexuiz STUPID Mode",purchase,1.0,0 -116564064,"Nihilumbra",purchase,1.0,0 -116564064,"Our Darker Purpose",purchase,1.0,0 -116564064,"PAYDAY The Heist",purchase,1.0,0 -116564064,"Prince of Persia The Two Thrones",purchase,1.0,0 -116564064,"Prince of Persia Warrior Within",purchase,1.0,0 -116564064,"Red Faction",purchase,1.0,0 -116564064,"Red Faction Armageddon",purchase,1.0,0 -116564064,"Red Faction II",purchase,1.0,0 -116564064,"Resident Evil 6 Mercenaries No Mercy",purchase,1.0,0 -116564064,"Saints Row 2",purchase,1.0,0 -116564064,"Saints Row The Third",purchase,1.0,0 -116564064,"Snapshot",purchase,1.0,0 -116564064,"SteamWorld Dig",purchase,1.0,0 -116564064,"Supreme Commander",purchase,1.0,0 -116564064,"Supreme Commander Forged Alliance",purchase,1.0,0 -116564064,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -116564064,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -116564064,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -116564064,"The Secret of Monkey Island Special Edition",purchase,1.0,0 -116564064,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -116564064,"The Witcher Enhanced Edition",purchase,1.0,0 -116564064,"Time Gentlemen, Please!",purchase,1.0,0 -116564064,"Titan Quest",purchase,1.0,0 -116564064,"Titan Quest Immortal Throne",purchase,1.0,0 -116564064,"Tomb Raider",purchase,1.0,0 -116564064,"Tomb Raider (VI) The Angel of Darkness",purchase,1.0,0 -116564064,"Tomb Raider Anniversary",purchase,1.0,0 -116564064,"Tomb Raider Chronicles",purchase,1.0,0 -116564064,"Tomb Raider Legend",purchase,1.0,0 -116564064,"Tomb Raider The Last Revelation",purchase,1.0,0 -116564064,"Tomb Raider Underworld",purchase,1.0,0 -116564064,"Tomb Raider I",purchase,1.0,0 -116564064,"Tomb Raider II",purchase,1.0,0 -116564064,"Tomb Raider III Adventures of Lara Croft",purchase,1.0,0 -116564064,"Unreal Gold",purchase,1.0,0 -116564064,"Unreal II The Awakening",purchase,1.0,0 -116564064,"Unreal Tournament 2004",purchase,1.0,0 -116564064,"Unreal Tournament Game of the Year Edition",purchase,1.0,0 -116564064,"Valiant Hearts The Great War / Soldats Inconnus Mmoires de la Grande Guerre",purchase,1.0,0 -116564064,"Warhammer 40,000 Space Marine",purchase,1.0,0 -116564064,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -116564064,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -116564064,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -116564064,"Warriors & Castles",purchase,1.0,0 -116564064,"X-Blades",purchase,1.0,0 -41124938,"Dota 2",purchase,1.0,0 -41124938,"Dota 2",play,0.2,0 -210045073,"Loadout",purchase,1.0,0 -210045073,"Loadout",play,5.0,0 -251065129,"Dota 2",purchase,1.0,0 -251065129,"Dota 2",play,33.0,0 -251065129,"GunZ 2 The Second Duel",purchase,1.0,0 -251065129,"Heroes & Generals",purchase,1.0,0 -55162535,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -55162535,"Call of Duty Modern Warfare 2 - Multiplayer",play,1079.0,0 -55162535,"Call of Duty Modern Warfare 2",purchase,1.0,0 -55162535,"Call of Duty Modern Warfare 2",play,59.0,0 -172752250,"Dota 2",purchase,1.0,0 -172752250,"Dota 2",play,1.1,0 -58794630,"Call of Duty Modern Warfare 2 - Multiplayer",purchase,1.0,0 -58794630,"Call of Duty Modern Warfare 2 - Multiplayer",play,338.0,0 -58794630,"Counter-Strike Source",purchase,1.0,0 -58794630,"Counter-Strike Source",play,26.0,0 -58794630,"Call of Duty Modern Warfare 2",purchase,1.0,0 -58794630,"Call of Duty Modern Warfare 2",play,10.6,0 -58794630,"Left 4 Dead 2",purchase,1.0,0 -58794630,"Left 4 Dead 2",play,5.7,0 -103963922,"Team Fortress 2",purchase,1.0,0 -103963922,"Team Fortress 2",play,0.4,0 -229229843,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -229229843,"A.V.A - Alliance of Valiant Arms",play,5.4,0 -127475581,"Order of War",purchase,1.0,0 -127475581,"Order of War",play,3.0,0 -147444403,"Dota 2",purchase,1.0,0 -147444403,"Dota 2",play,0.7,0 -112148863,"Spec Ops The Line",purchase,1.0,0 -112148863,"Spec Ops The Line",play,10.8,0 -112148863,"Castlevania Lords of Shadow 2",purchase,1.0,0 -112148863,"Castlevania Lords of Shadow 2",play,0.9,0 -106806354,"Team Fortress 2",purchase,1.0,0 -106806354,"Team Fortress 2",play,59.0,0 -34901647,"Sid Meier's Civilization V",purchase,1.0,0 -34901647,"Sid Meier's Civilization V",play,212.0,0 -34901647,"Team Fortress 2",purchase,1.0,0 -34901647,"Team Fortress 2",play,88.0,0 -34901647,"XCOM Enemy Unknown",purchase,1.0,0 -34901647,"XCOM Enemy Unknown",play,87.0,0 -34901647,"Kerbal Space Program",purchase,1.0,0 -34901647,"Kerbal Space Program",play,83.0,0 -34901647,"Nosgoth",purchase,1.0,0 -34901647,"Nosgoth",play,74.0,0 -34901647,"Borderlands 2",purchase,1.0,0 -34901647,"Borderlands 2",play,61.0,0 -34901647,"Dota 2",purchase,1.0,0 -34901647,"Dota 2",play,61.0,0 -34901647,"Divinity Original Sin",purchase,1.0,0 -34901647,"Divinity Original Sin",play,59.0,0 -34901647,"Batman Arkham Knight",purchase,1.0,0 -34901647,"Batman Arkham Knight",play,55.0,0 -34901647,"Dead Island",purchase,1.0,0 -34901647,"Dead Island",play,47.0,0 -34901647,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -34901647,"Warhammer 40,000 Dawn of War II",play,46.0,0 -34901647,"Tropico 5",purchase,1.0,0 -34901647,"Tropico 5",play,40.0,0 -34901647,"Left 4 Dead 2",purchase,1.0,0 -34901647,"Left 4 Dead 2",play,40.0,0 -34901647,"Orcs Must Die! 2",purchase,1.0,0 -34901647,"Orcs Must Die! 2",play,36.0,0 -34901647,"Warhammer End Times - Vermintide",purchase,1.0,0 -34901647,"Warhammer End Times - Vermintide",play,33.0,0 -34901647,"Prison Architect",purchase,1.0,0 -34901647,"Prison Architect",play,27.0,0 -34901647,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -34901647,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,27.0,0 -34901647,"Garry's Mod",purchase,1.0,0 -34901647,"Garry's Mod",play,26.0,0 -34901647,"METAL GEAR RISING REVENGEANCE",purchase,1.0,0 -34901647,"METAL GEAR RISING REVENGEANCE",play,24.0,0 -34901647,"Resident Evil 5 / Biohazard 5",purchase,1.0,0 -34901647,"Resident Evil 5 / Biohazard 5",play,24.0,0 -34901647,"Tom Clancy's Splinter Cell Blacklist",purchase,1.0,0 -34901647,"Tom Clancy's Splinter Cell Blacklist",play,23.0,0 -34901647,"Anno 2070",purchase,1.0,0 -34901647,"Anno 2070",play,21.0,0 -34901647,"Left 4 Dead",purchase,1.0,0 -34901647,"Left 4 Dead",play,19.1,0 -34901647,"Chivalry Medieval Warfare",purchase,1.0,0 -34901647,"Chivalry Medieval Warfare",play,18.4,0 -34901647,"Overlord II",purchase,1.0,0 -34901647,"Overlord II",play,17.5,0 -34901647,"Invisible, Inc.",purchase,1.0,0 -34901647,"Invisible, Inc.",play,16.8,0 -34901647,"Warhammer 40,000 Dawn of War Soulstorm",purchase,1.0,0 -34901647,"Warhammer 40,000 Dawn of War Soulstorm",play,15.4,0 -34901647,"Evil Genius",purchase,1.0,0 -34901647,"Evil Genius",play,15.3,0 -34901647,"BioShock Infinite",purchase,1.0,0 -34901647,"BioShock Infinite",play,15.1,0 -34901647,"The Lord of the Rings War in the North",purchase,1.0,0 -34901647,"The Lord of the Rings War in the North",play,14.8,0 -34901647,"Brtal Legend",purchase,1.0,0 -34901647,"Brtal Legend",play,14.7,0 -34901647,"Portal 2",purchase,1.0,0 -34901647,"Portal 2",play,14.6,0 -34901647,"Game Dev Tycoon",purchase,1.0,0 -34901647,"Game Dev Tycoon",play,14.5,0 -34901647,"South Park The Stick of Truth",purchase,1.0,0 -34901647,"South Park The Stick of Truth",play,14.5,0 -34901647,"Cities Skylines",purchase,1.0,0 -34901647,"Cities Skylines",play,14.4,0 -34901647,"Worms Revolution",purchase,1.0,0 -34901647,"Worms Revolution",play,14.2,0 -34901647,"PAYDAY 2",purchase,1.0,0 -34901647,"PAYDAY 2",play,13.3,0 -34901647,"BioShock",purchase,1.0,0 -34901647,"BioShock",play,12.0,0 -34901647,"DayZ",purchase,1.0,0 -34901647,"DayZ",play,12.0,0 -34901647,"Dishonored",purchase,1.0,0 -34901647,"Dishonored",play,11.6,0 -34901647,"Costume Quest",purchase,1.0,0 -34901647,"Costume Quest",play,11.4,0 -34901647,"Killing Floor 2",purchase,1.0,0 -34901647,"Killing Floor 2",play,11.4,0 -34901647,"BioShock 2",purchase,1.0,0 -34901647,"BioShock 2",play,11.3,0 -34901647,"Alice Madness Returns",purchase,1.0,0 -34901647,"Alice Madness Returns",play,9.9,0 -34901647,"METAL GEAR SOLID V GROUND ZEROES",purchase,1.0,0 -34901647,"METAL GEAR SOLID V GROUND ZEROES",play,9.8,0 -34901647,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -34901647,"Fallout 3 - Game of the Year Edition",play,8.9,0 -34901647,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -34901647,"Injustice Gods Among Us Ultimate Edition",play,8.2,0 -34901647,"The Forest",purchase,1.0,0 -34901647,"The Forest",play,7.9,0 -34901647,"Company of Heroes (New Steam Version)",purchase,1.0,0 -34901647,"Company of Heroes (New Steam Version)",play,7.9,0 -34901647,"Synergy",purchase,1.0,0 -34901647,"Synergy",play,7.1,0 -34901647,"The Bureau XCOM Declassified",purchase,1.0,0 -34901647,"The Bureau XCOM Declassified",play,7.1,0 -34901647,"Torchlight II",purchase,1.0,0 -34901647,"Torchlight II",play,6.5,0 -34901647,"Oddworld New 'n' Tasty",purchase,1.0,0 -34901647,"Oddworld New 'n' Tasty",play,5.0,0 -34901647,"Psychonauts",purchase,1.0,0 -34901647,"Psychonauts",play,4.8,0 -34901647,"Scribblenauts Unlimited",purchase,1.0,0 -34901647,"Scribblenauts Unlimited",play,4.6,0 -34901647,"Divinity Original Sin Enhanced Edition",purchase,1.0,0 -34901647,"Divinity Original Sin Enhanced Edition",play,4.3,0 -34901647,"Stacking",purchase,1.0,0 -34901647,"Stacking",play,4.0,0 -34901647,"The Swapper",purchase,1.0,0 -34901647,"The Swapper",play,3.8,0 -34901647,"Brothers - A Tale of Two Sons",purchase,1.0,0 -34901647,"Brothers - A Tale of Two Sons",play,3.7,0 -34901647,"The Walking Dead",purchase,1.0,0 -34901647,"The Walking Dead",play,3.4,0 -34901647,"The Walking Dead Season Two",purchase,1.0,0 -34901647,"The Walking Dead Season Two",play,3.0,0 -34901647,"Company of Heroes 2",purchase,1.0,0 -34901647,"Company of Heroes 2",play,2.6,0 -34901647,"Natural Selection 2",purchase,1.0,0 -34901647,"Natural Selection 2",play,1.7,0 -34901647,"Unturned",purchase,1.0,0 -34901647,"Unturned",play,1.7,0 -34901647,"From Dust",purchase,1.0,0 -34901647,"From Dust",play,1.4,0 -34901647,"Sins of a Solar Empire Rebellion",purchase,1.0,0 -34901647,"Sins of a Solar Empire Rebellion",play,1.3,0 -34901647,"Space Hulk Ascension",purchase,1.0,0 -34901647,"Space Hulk Ascension",play,1.3,0 -34901647,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -34901647,"Warhammer 40,000 Dawn of War II Retribution",play,0.9,0 -34901647,"Tropico 3 - Steam Special Edition",purchase,1.0,0 -34901647,"Tropico 3 - Steam Special Edition",play,0.6,0 -34901647,"Car Mechanic Simulator 2014",purchase,1.0,0 -34901647,"Car Mechanic Simulator 2014",play,0.1,0 -34901647,"Arma 2 Operation Arrowhead",purchase,1.0,0 -34901647,"Arma 2 Operation Arrowhead",play,0.1,0 -34901647,"Half-Life 2",purchase,1.0,0 -34901647,"Arma 2",purchase,1.0,0 -34901647,"Amnesia The Dark Descent",purchase,1.0,0 -34901647,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -34901647,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -34901647,"Batman Arkham City GOTY",purchase,1.0,0 -34901647,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -34901647,"Batman Arkham Origins - Initiation",purchase,1.0,0 -34901647,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -34901647,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -34901647,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -34901647,"Batman Arkham Origins",purchase,1.0,0 -34901647,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -34901647,"Beyond Divinity",purchase,1.0,0 -34901647,"Company of Heroes",purchase,1.0,0 -34901647,"Company of Heroes Opposing Fronts",purchase,1.0,0 -34901647,"Company of Heroes Tales of Valor",purchase,1.0,0 -34901647,"Counter-Strike Source",purchase,1.0,0 -34901647,"Day of Defeat Source",purchase,1.0,0 -34901647,"Divine Divinity",purchase,1.0,0 -34901647,"F.E.A.R.",purchase,1.0,0 -34901647,"F.E.A.R. 2 Project Origin",purchase,1.0,0 -34901647,"F.E.A.R. 3",purchase,1.0,0 -34901647,"F.E.A.R. Extraction Point",purchase,1.0,0 -34901647,"F.E.A.R. Perseus Mandate",purchase,1.0,0 -34901647,"Guardians of Middle-earth",purchase,1.0,0 -34901647,"Half-Life 2 Episode One",purchase,1.0,0 -34901647,"Half-Life 2 Episode Two",purchase,1.0,0 -34901647,"Half-Life 2 Lost Coast",purchase,1.0,0 -34901647,"Iron Brigade",purchase,1.0,0 -34901647,"Mafia II",purchase,1.0,0 -34901647,"Mortal Kombat Kollection",purchase,1.0,0 -34901647,"Patch testing for Chivalry",purchase,1.0,0 -34901647,"Portal",purchase,1.0,0 -34901647,"Psychonauts Demo",purchase,1.0,0 -34901647,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -34901647,"Spec Ops The Line",purchase,1.0,0 -34901647,"The Darkness II",purchase,1.0,0 -34901647,"Warhammer End Times - Vermintide Sigmar's Blessing",purchase,1.0,0 -34901647,"Worms Clan Wars",purchase,1.0,0 -34901647,"X-COM Apocalypse",purchase,1.0,0 -34901647,"X-COM Enforcer",purchase,1.0,0 -34901647,"X-COM Interceptor",purchase,1.0,0 -34901647,"X-COM Terror from the Deep",purchase,1.0,0 -34901647,"X-COM UFO Defense",purchase,1.0,0 -34901647,"XCOM Enemy Within",purchase,1.0,0 -65729155,"Counter-Strike",purchase,1.0,0 -65729155,"Counter-Strike",play,25.0,0 -65729155,"Counter-Strike Condition Zero",purchase,1.0,0 -65729155,"Counter-Strike Condition Zero",play,0.1,0 -65729155,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -65729155,"Day of Defeat",purchase,1.0,0 -65729155,"Deathmatch Classic",purchase,1.0,0 -65729155,"Ricochet",purchase,1.0,0 -25889289,"Half-Life 2 Deathmatch",purchase,1.0,0 -25889289,"Half-Life 2 Episode One",purchase,1.0,0 -25889289,"Half-Life 2 Lost Coast",purchase,1.0,0 -25889289,"Half-Life Deathmatch Source",purchase,1.0,0 -191721546,"theHunter",purchase,1.0,0 -191721546,"theHunter",play,3.4,0 -191721546,"Robocraft",purchase,1.0,0 -191721546,"Robocraft",play,0.4,0 -191721546,"Unturned",purchase,1.0,0 -90878103,"Left 4 Dead",purchase,1.0,0 -90878103,"Left 4 Dead",play,281.0,0 -90878103,"Left 4 Dead 2",purchase,1.0,0 -90878103,"Left 4 Dead 2",play,240.0,0 -90878103,"Team Fortress 2",purchase,1.0,0 -90878103,"Team Fortress 2",play,9.6,0 -246925775,"Trove",purchase,1.0,0 -246925775,"Trove",play,1.0,0 -246925775,"Soccer Manager 2015",purchase,1.0,0 -72417734,"Left 4 Dead 2",purchase,1.0,0 -72417734,"Left 4 Dead 2",play,348.0,0 -72417734,"PAYDAY 2",purchase,1.0,0 -72417734,"PAYDAY 2",play,76.0,0 -72417734,"Spelunky",purchase,1.0,0 -72417734,"Spelunky",play,30.0,0 -72417734,"Borderlands 2",purchase,1.0,0 -72417734,"Borderlands 2",play,15.9,0 -72417734,"Killing Floor 2",purchase,1.0,0 -72417734,"Killing Floor 2",play,13.0,0 -72417734,"Papers, Please",purchase,1.0,0 -72417734,"Papers, Please",play,12.7,0 -72417734,"Unturned",purchase,1.0,0 -72417734,"Unturned",play,11.4,0 -72417734,"Terraria",purchase,1.0,0 -72417734,"Terraria",play,10.0,0 -72417734,"Sniper Elite V2",purchase,1.0,0 -72417734,"Sniper Elite V2",play,7.9,0 -72417734,"Sid Meier's Civilization V",purchase,1.0,0 -72417734,"Sid Meier's Civilization V",play,7.7,0 -72417734,"METAL SLUG 3",purchase,1.0,0 -72417734,"METAL SLUG 3",play,6.6,0 -72417734,"Skullgirls",purchase,1.0,0 -72417734,"Skullgirls",play,6.4,0 -72417734,"Risk of Rain",purchase,1.0,0 -72417734,"Risk of Rain",play,4.6,0 -72417734,"Batman Arkham Origins",purchase,1.0,0 -72417734,"Batman Arkham Origins",play,4.3,0 -72417734,"Prototype",purchase,1.0,0 -72417734,"Prototype",play,3.1,0 -72417734,"Killing Floor",purchase,1.0,0 -72417734,"Killing Floor",play,1.7,0 -72417734,"Romance of the Three Kingdoms Maker",purchase,1.0,0 -72417734,"Romance of the Three Kingdoms Maker",play,0.3,0 -72417734,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -72417734,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -72417734,"Sid Meier's Civilization V Scrambled Continents Map Pack",purchase,1.0,0 -72417734,"Skullgirls Endless Beta",purchase,1.0,0 -72417734,"The Last Remnant",purchase,1.0,0 -235723933,"Dota 2",purchase,1.0,0 -235723933,"Dota 2",play,8.5,0 -235723933,"Quake Live",purchase,1.0,0 -164796966,"Dota 2",purchase,1.0,0 -164796966,"Dota 2",play,15.0,0 -105080654,"Dota 2",purchase,1.0,0 -105080654,"Dota 2",play,15.7,0 -204041850,"Team Fortress 2",purchase,1.0,0 -204041850,"Team Fortress 2",play,0.6,0 -233568555,"Dota 2",purchase,1.0,0 -233568555,"Dota 2",play,23.0,0 -233568555,"Rise of Incarnates",purchase,1.0,0 -83965474,"Call of Duty Black Ops",purchase,1.0,0 -83965474,"Call of Duty Black Ops",play,91.0,0 -83965474,"Call of Duty Black Ops - Multiplayer",purchase,1.0,0 -83965474,"Call of Duty Black Ops - Multiplayer",play,13.8,0 -156423928,"Dota 2",purchase,1.0,0 -156423928,"Dota 2",play,5.6,0 -205897759,"Counter-Strike Nexon Zombies",purchase,1.0,0 -304834885,"Fallout New Vegas",purchase,1.0,0 -304834885,"Fallout New Vegas",play,13.9,0 -304834885,"TERA",purchase,1.0,0 -304834885,"TERA",play,1.4,0 -304834885,"AirMech",purchase,1.0,0 -262752300,"Football Manager 2015",purchase,1.0,0 -262752300,"Football Manager 2015",play,532.0,0 -262752300,"Football Manager 2016",purchase,1.0,0 -262752300,"Football Manager 2016",play,109.0,0 -227863398,"Dota 2",purchase,1.0,0 -227863398,"Dota 2",play,17.6,0 -227863398,"C9",purchase,1.0,0 -227863398,"Neverwinter",purchase,1.0,0 -273293320,"APB Reloaded",purchase,1.0,0 -273293320,"Gear Up",purchase,1.0,0 -273293320,"GunZ 2 The Second Duel",purchase,1.0,0 -273293320,"TERA",purchase,1.0,0 -273293320,"Unturned",purchase,1.0,0 -122189475,"Team Fortress 2",purchase,1.0,0 -122189475,"Team Fortress 2",play,2.2,0 -49759696,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -49759696,"Warhammer 40,000 Dawn of War II",play,62.0,0 -154145611,"Garry's Mod",purchase,1.0,0 -154145611,"Garry's Mod",play,1216.0,0 -154145611,"Counter-Strike Global Offensive",purchase,1.0,0 -154145611,"Counter-Strike Global Offensive",play,964.0,0 -154145611,"Starbound",purchase,1.0,0 -154145611,"Starbound",play,61.0,0 -154145611,"TerraTech",purchase,1.0,0 -154145611,"TerraTech",play,12.0,0 -154145611,"No More Room in Hell",purchase,1.0,0 -154145611,"No More Room in Hell",play,6.7,0 -154145611,"Heroes & Generals",purchase,1.0,0 -154145611,"Heroes & Generals",play,4.9,0 -154145611,"Path of Exile",purchase,1.0,0 -154145611,"Path of Exile",play,4.9,0 -154145611,"Loadout",purchase,1.0,0 -154145611,"Loadout",play,4.9,0 -154145611,"Team Fortress 2",purchase,1.0,0 -154145611,"Team Fortress 2",play,3.2,0 -154145611,"Just Cause 2 Multiplayer Mod",purchase,1.0,0 -154145611,"Just Cause 2 Multiplayer Mod",play,1.6,0 -154145611,"Unturned",purchase,1.0,0 -154145611,"Unturned",play,0.7,0 -154145611,"Fishing Planet",purchase,1.0,0 -154145611,"Fishing Planet",play,0.2,0 -154145611,"Cry of Fear",purchase,1.0,0 -154145611,"Cry of Fear",play,0.1,0 -154145611,"Just Cause 2",purchase,1.0,0 -154145611,"Just Cause 2",play,0.1,0 -154145611,"Red Crucible Firestorm",purchase,1.0,0 -154145611,"Dizzel",purchase,1.0,0 -154145611,"Defiance",purchase,1.0,0 -154145611,"Dirty Bomb",purchase,1.0,0 -154145611,"Fallen Earth",purchase,1.0,0 -154145611,"Starbound - Unstable",purchase,1.0,0 -111362598,"Dota 2",purchase,1.0,0 -111362598,"Dota 2",play,3252.0,0 -111362598,"Counter-Strike Global Offensive",purchase,1.0,0 -111362598,"Counter-Strike Global Offensive",play,1067.0,0 -111362598,"Arma 3",purchase,1.0,0 -111362598,"Arma 3",play,371.0,0 -111362598,"Arma 2 Operation Arrowhead",purchase,1.0,0 -111362598,"Arma 2 Operation Arrowhead",play,146.0,0 -111362598,"War Thunder",purchase,1.0,0 -111362598,"War Thunder",play,78.0,0 -111362598,"DayZ",purchase,1.0,0 -111362598,"DayZ",play,77.0,0 -111362598,"Arma 2",purchase,1.0,0 -111362598,"Arma 2",play,51.0,0 -111362598,"Garry's Mod",purchase,1.0,0 -111362598,"Garry's Mod",play,48.0,0 -111362598,"Grand Theft Auto V",purchase,1.0,0 -111362598,"Grand Theft Auto V",play,20.0,0 -111362598,"Counter-Strike Source",purchase,1.0,0 -111362598,"Counter-Strike Source",play,19.5,0 -111362598,"Men of War Assault Squad 2",purchase,1.0,0 -111362598,"Men of War Assault Squad 2",play,18.7,0 -111362598,"Stronghold 3",purchase,1.0,0 -111362598,"Stronghold 3",play,15.4,0 -111362598,"Trove",purchase,1.0,0 -111362598,"Trove",play,14.8,0 -111362598,"Men of War Assault Squad",purchase,1.0,0 -111362598,"Men of War Assault Squad",play,13.9,0 -111362598,"Team Fortress 2",purchase,1.0,0 -111362598,"Team Fortress 2",play,8.9,0 -111362598,"Portal 2",purchase,1.0,0 -111362598,"Portal 2",play,3.4,0 -111362598,"Stronghold HD",purchase,1.0,0 -111362598,"Stronghold HD",play,0.4,0 -111362598,"Terraria",purchase,1.0,0 -111362598,"Terraria",play,0.3,0 -111362598,"Arma 2 Operation Arrowhead Beta (Obsolete)",purchase,1.0,0 -111362598,"AirBuccaneers",purchase,1.0,0 -111362598,"America's Army Proving Grounds",purchase,1.0,0 -111362598,"Arma 3 Zeus",purchase,1.0,0 -111362598,"Bloodline Champions",purchase,1.0,0 -111362598,"Dead Island",purchase,1.0,0 -111362598,"Dead Island Epidemic",purchase,1.0,0 -111362598,"Dead Rising 3",purchase,1.0,0 -111362598,"Dead Rising 3 DLC1",purchase,1.0,0 -111362598,"Dead Rising 3 DLC2",purchase,1.0,0 -111362598,"Dead Rising 3 DLC3",purchase,1.0,0 -111362598,"Dead Rising 3 DLC4",purchase,1.0,0 -111362598,"Gang Beasts",purchase,1.0,0 -111362598,"Gear Up",purchase,1.0,0 -111362598,"Heroes & Generals",purchase,1.0,0 -111362598,"Loadout",purchase,1.0,0 -111362598,"Marvel Heroes 2015",purchase,1.0,0 -111362598,"Nosgoth",purchase,1.0,0 -111362598,"Quake Live",purchase,1.0,0 -111362598,"Robocraft",purchase,1.0,0 -111362598,"Survarium",purchase,1.0,0 -111362598,"sZone-Online",purchase,1.0,0 -111362598,"theHunter",purchase,1.0,0 -111362598,"Toribash",purchase,1.0,0 -111362598,"Transformice",purchase,1.0,0 -111362598,"Unturned",purchase,1.0,0 -111362598,"Warframe",purchase,1.0,0 -34442062,"Portal 2",purchase,1.0,0 -34442062,"Portal 2",play,725.0,0 -34442062,"Rocket League",purchase,1.0,0 -34442062,"Rocket League",play,369.0,0 -34442062,"Sid Meier's Civilization V",purchase,1.0,0 -34442062,"Sid Meier's Civilization V",play,177.0,0 -34442062,"Portal",purchase,1.0,0 -34442062,"Portal",play,50.0,0 -34442062,"Half-Life 2",purchase,1.0,0 -34442062,"Half-Life 2",play,32.0,0 -34442062,"Half-Life 2 Deathmatch",purchase,1.0,0 -34442062,"Half-Life 2 Deathmatch",play,32.0,0 -34442062,"Portal Stories Mel",purchase,1.0,0 -34442062,"Portal Stories Mel",play,9.9,0 -34442062,"Half-Life 2 Episode Two",purchase,1.0,0 -34442062,"Half-Life 2 Episode Two",play,8.1,0 -34442062,"Borderlands 2",purchase,1.0,0 -34442062,"Borderlands 2",play,6.7,0 -34442062,"Half-Life 2 Episode One",purchase,1.0,0 -34442062,"Half-Life 2 Episode One",play,3.8,0 -34442062,"Trove",purchase,1.0,0 -34442062,"Trove",play,1.1,0 -34442062,"Unturned",purchase,1.0,0 -34442062,"Unturned",play,0.3,0 -34442062,"Portal 2 - The Final Hours",purchase,1.0,0 -34442062,"Portal 2 - The Final Hours",play,0.3,0 -34442062,"Double Action Boogaloo",purchase,1.0,0 -34442062,"Half-Life 2 Lost Coast",purchase,1.0,0 -34442062,"Half-Life Deathmatch Source",purchase,1.0,0 -34442062,"Modular Combat",purchase,1.0,0 -233726801,"Dota 2",purchase,1.0,0 -233726801,"Dota 2",play,2.9,0 -233726801,"Guns and Robots",purchase,1.0,0 -233726801,"Infinite Crisis",purchase,1.0,0 -233726801,"Loadout",purchase,1.0,0 -233726801,"Marvel Heroes 2015",purchase,1.0,0 -233726801,"No More Room in Hell",purchase,1.0,0 -233726801,"Nosgoth",purchase,1.0,0 -233726801,"Robocraft",purchase,1.0,0 -233726801,"Survarium",purchase,1.0,0 -233726801,"The Forgotten Ones",purchase,1.0,0 -233726801,"Unturned",purchase,1.0,0 -151600301,"Counter-Strike Global Offensive",purchase,1.0,0 -151600301,"Counter-Strike Global Offensive",play,877.0,0 -151600301,"Unturned",purchase,1.0,0 -151600301,"Unturned",play,850.0,0 -151600301,"Garry's Mod",purchase,1.0,0 -151600301,"Garry's Mod",play,309.0,0 -151600301,"Terraria",purchase,1.0,0 -151600301,"Terraria",play,245.0,0 -151600301,"Rust",purchase,1.0,0 -151600301,"Rust",play,154.0,0 -151600301,"Blacklight Retribution",purchase,1.0,0 -151600301,"Blacklight Retribution",play,100.0,0 -151600301,"Trove",purchase,1.0,0 -151600301,"Trove",play,73.0,0 -151600301,"Warframe",purchase,1.0,0 -151600301,"Warframe",play,61.0,0 -151600301,"PAYDAY 2",purchase,1.0,0 -151600301,"PAYDAY 2",play,39.0,0 -151600301,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -151600301,"Tom Clancy's Ghost Recon Phantoms - NA",play,27.0,0 -151600301,"Insurgency",purchase,1.0,0 -151600301,"Insurgency",play,23.0,0 -151600301,"Firefall",purchase,1.0,0 -151600301,"Firefall",play,19.9,0 -151600301,"Nosgoth",purchase,1.0,0 -151600301,"Nosgoth",play,17.8,0 -151600301,"DayZ",purchase,1.0,0 -151600301,"DayZ",play,16.4,0 -151600301,"Dirty Bomb",purchase,1.0,0 -151600301,"Dirty Bomb",play,16.3,0 -151600301,"Heroes & Generals",purchase,1.0,0 -151600301,"Heroes & Generals",play,14.2,0 -151600301,"Don't Starve",purchase,1.0,0 -151600301,"Don't Starve",play,13.7,0 -151600301,"Dungeon Defenders II",purchase,1.0,0 -151600301,"Dungeon Defenders II",play,10.1,0 -151600301,"Zombies Monsters Robots",purchase,1.0,0 -151600301,"Zombies Monsters Robots",play,6.8,0 -151600301,"Don't Starve Together Beta",purchase,1.0,0 -151600301,"Don't Starve Together Beta",play,3.6,0 -151600301,"Pirates, Vikings, & Knights II",purchase,1.0,0 -151600301,"Pirates, Vikings, & Knights II",play,2.9,0 -151600301,"Team Fortress 2",purchase,1.0,0 -151600301,"Team Fortress 2",play,1.3,0 -151600301,"Dota 2",purchase,1.0,0 -151600301,"Dota 2",play,1.2,0 -151600301,"Block N Load",purchase,1.0,0 -151600301,"Block N Load",play,0.7,0 -151600301,"Arma 2",purchase,1.0,0 -151600301,"Arma 2",play,0.6,0 -151600301,"No More Room in Hell",purchase,1.0,0 -151600301,"No More Room in Hell",play,0.5,0 -151600301,"Infestation Survivor Stories",purchase,1.0,0 -151600301,"Infestation Survivor Stories",play,0.4,0 -151600301,"Just Cause 2",purchase,1.0,0 -151600301,"Just Cause 2",play,0.4,0 -151600301,"Uncrowded",purchase,1.0,0 -151600301,"Uncrowded",play,0.4,0 -151600301,"Among Ripples",purchase,1.0,0 -151600301,"Left 4 Dead 2",purchase,1.0,0 -151600301,"National Zombie Park",purchase,1.0,0 -151600301,"Unturned - Permanent Gold Upgrade",purchase,1.0,0 -151600301,"ZMR Free Quick-Start Pack",purchase,1.0,0 -184620075,"Happy Wars",purchase,1.0,0 -154531790,"Dota 2",purchase,1.0,0 -154531790,"Dota 2",play,0.1,0 -73726855,"Dota 2",purchase,1.0,0 -73726855,"Dota 2",play,773.0,0 -73726855,"Time Clickers",purchase,1.0,0 -73726855,"Time Clickers",play,14.1,0 -73726855,"Left 4 Dead 2",purchase,1.0,0 -73726855,"Left 4 Dead 2",play,10.9,0 -73726855,"GameMaker Studio",purchase,1.0,0 -73726855,"GameMaker Studio",play,5.0,0 -73726855,"DC Universe Online",purchase,1.0,0 -73726855,"DC Universe Online",play,1.7,0 -73726855,"Blender 2.76b",purchase,1.0,0 -73726855,"Blender 2.76b",play,1.5,0 -73726855,"Super Killer Hornet Resurrection",purchase,1.0,0 -73726855,"Super Killer Hornet Resurrection",play,1.4,0 -73726855,"Golden Rush",purchase,1.0,0 -73726855,"Golden Rush",play,0.9,0 -73726855,"Everlasting Summer",purchase,1.0,0 -73726855,"Everlasting Summer",play,0.9,0 -73726855,"Team Fortress 2",purchase,1.0,0 -73726855,"Team Fortress 2",play,0.8,0 -73726855,"CaesarIA",purchase,1.0,0 -73726855,"CaesarIA",play,0.7,0 -73726855,"War Thunder",purchase,1.0,0 -73726855,"War Thunder",play,0.6,0 -73726855,"Astro Lords",purchase,1.0,0 -73726855,"Astro Lords",play,0.1,0 -73726855,"Esenthel Engine",purchase,1.0,0 -73726855,"Dragons and Titans",purchase,1.0,0 -73726855,"A.V.A - Alliance of Valiant Arms",purchase,1.0,0 -73726855,"Age of Empires Online",purchase,1.0,0 -73726855,"Amazing World",purchase,1.0,0 -73726855,"America's Army 3",purchase,1.0,0 -73726855,"America's Army Proving Grounds",purchase,1.0,0 -73726855,"APB Reloaded",purchase,1.0,0 -73726855,"Arcane Saga Online",purchase,1.0,0 -73726855,"Archeblade",purchase,1.0,0 -73726855,"Arctic Combat",purchase,1.0,0 -73726855,"Atlantica Online",purchase,1.0,0 -73726855,"Aura Kingdom",purchase,1.0,0 -73726855,"Bloodline Champions",purchase,1.0,0 -73726855,"Brawl Busters",purchase,1.0,0 -73726855,"Bullet Run",purchase,1.0,0 -73726855,"C9",purchase,1.0,0 -73726855,"Cakewalk Loop Manager",purchase,1.0,0 -73726855,"Champions Online",purchase,1.0,0 -73726855,"Clicker Heroes",purchase,1.0,0 -73726855,"Combat Arms",purchase,1.0,0 -73726855,"Construct 2 Free",purchase,1.0,0 -73726855,"CrimeCraft GangWars",purchase,1.0,0 -73726855,"Dark Matter",purchase,1.0,0 -73726855,"Dead Island Epidemic",purchase,1.0,0 -73726855,"Defiance",purchase,1.0,0 -73726855,"District 187",purchase,1.0,0 -73726855,"Dragon Nest",purchase,1.0,0 -73726855,"Dragon Nest Europe",purchase,1.0,0 -73726855,"Dungeon Fighter Online",purchase,1.0,0 -73726855,"Dungeonland",purchase,1.0,0 -73726855,"Dungeon Party",purchase,1.0,0 -73726855,"Dwarfs F2P",purchase,1.0,0 -73726855,"East India Company Gold",purchase,1.0,0 -73726855,"Enclave",purchase,1.0,0 -73726855,"EverQuest Free-to-Play",purchase,1.0,0 -73726855,"EverQuest II",purchase,1.0,0 -73726855,"EVGA PrecisionX 16",purchase,1.0,0 -73726855,"F.E.A.R. Online",purchase,1.0,0 -73726855,"Face of Mankind",purchase,1.0,0 -73726855,"Fallen Earth",purchase,1.0,0 -73726855,"Fiesta Online",purchase,1.0,0 -73726855,"Fiesta Online NA",purchase,1.0,0 -73726855,"Firefall",purchase,1.0,0 -73726855,"Floating Point",purchase,1.0,0 -73726855,"Football Superstars",purchase,1.0,0 -73726855,"Forsaken World ",purchase,1.0,0 -73726855,"Frontline Tactics",purchase,1.0,0 -73726855,"Global Agenda",purchase,1.0,0 -73726855,"Gotham City Impostors Free To Play",purchase,1.0,0 -73726855,"Grand Chase",purchase,1.0,0 -73726855,"Guns and Robots",purchase,1.0,0 -73726855,"Heroes & Generals",purchase,1.0,0 -73726855,"HOMEFRONT Demo",purchase,1.0,0 -73726855,"Knights and Merchants",purchase,1.0,0 -73726855,"KnightShift",purchase,1.0,0 -73726855,"La Tale",purchase,1.0,0 -73726855,"Loadout",purchase,1.0,0 -73726855,"Mabinogi",purchase,1.0,0 -73726855,"Magic The Gathering Tactics",purchase,1.0,0 -73726855,"March of War",purchase,1.0,0 -73726855,"Marvel Heroes 2015",purchase,1.0,0 -73726855,"Memoir '44 Online",purchase,1.0,0 -73726855,"MicroVolts Surge",purchase,1.0,0 -73726855,"Moon Breakers",purchase,1.0,0 -73726855,"NEOTOKYO",purchase,1.0,0 -73726855,"Neverwinter",purchase,1.0,0 -73726855,"Nosgoth",purchase,1.0,0 -73726855,"Only If",purchase,1.0,0 -73726855,"Pandora Saga Weapons of Balance",purchase,1.0,0 -73726855,"Panzar",purchase,1.0,0 -73726855,"Path of Exile",purchase,1.0,0 -73726855,"Pinball Arcade",purchase,1.0,0 -73726855,"PlanetSide 2",purchase,1.0,0 -73726855,"Pox Nora",purchase,1.0,0 -73726855,"Puzzle Pirates",purchase,1.0,0 -73726855,"Quantum Rush Online",purchase,1.0,0 -73726855,"RaceRoom Racing Experience ",purchase,1.0,0 -73726855,"Ragnarok Online 2",purchase,1.0,0 -73726855,"Realm of the Mad God",purchase,1.0,0 -73726855,"Realms of the Haunting",purchase,1.0,0 -73726855,"Reversion - The Escape",purchase,1.0,0 -73726855,"Rise of Incarnates",purchase,1.0,0 -73726855,"Robocraft",purchase,1.0,0 -73726855,"ROSE Online",purchase,1.0,0 -73726855,"Royal Quest",purchase,1.0,0 -73726855,"Rusty Hearts",purchase,1.0,0 -73726855,"Saira",purchase,1.0,0 -73726855,"Sakura Clicker",purchase,1.0,0 -73726855,"Shadow Warrior Classic (1997)",purchase,1.0,0 -73726855,"Spiral Knights",purchase,1.0,0 -73726855,"Star Conflict",purchase,1.0,0 -73726855,"Star Trek Online",purchase,1.0,0 -73726855,"Stronghold Kingdoms",purchase,1.0,0 -73726855,"Sunrider Mask of Arcadius",purchase,1.0,0 -73726855,"Super Crate Box",purchase,1.0,0 -73726855,"Super Monday Night Combat",purchase,1.0,0 -73726855,"Tactical Intervention",purchase,1.0,0 -73726855,"The Banner Saga Factions",purchase,1.0,0 -73726855,"The Expendabros",purchase,1.0,0 -73726855,"The Forgotten Ones",purchase,1.0,0 -73726855,"The Lord of the Rings Online",purchase,1.0,0 -73726855,"Thinking with Time Machine",purchase,1.0,0 -73726855,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -73726855,"Tom Clancy's Ghost Recon Phantoms - NA",purchase,1.0,0 -73726855,"Tompi Jones",purchase,1.0,0 -73726855,"Tribes Ascend",purchase,1.0,0 -73726855,"Uncharted Waters Online",purchase,1.0,0 -73726855,"Unturned",purchase,1.0,0 -73726855,"Velvet Sundown",purchase,1.0,0 -73726855,"Vindictus",purchase,1.0,0 -73726855,"Warface",purchase,1.0,0 -73726855,"Warframe",purchase,1.0,0 -73726855,"War Inc. Battlezone",purchase,1.0,0 -73726855,"World of Battles",purchase,1.0,0 -73726855,"World of Guns Gun Disassembly",purchase,1.0,0 -73726855,"Xam",purchase,1.0,0 -204967665,"Path of Exile",purchase,1.0,0 -204967665,"Robocraft",purchase,1.0,0 -161896440,"Football Manager 2015",purchase,1.0,0 -161896440,"Football Manager 2015",play,198.0,0 -161896440,"Grand Theft Auto V",purchase,1.0,0 -161896440,"Grand Theft Auto V",play,105.0,0 -161896440,"NBA 2K15",purchase,1.0,0 -161896440,"NBA 2K15",play,67.0,0 -161896440,"Call of Duty Advanced Warfare",purchase,1.0,0 -161896440,"Call of Duty Advanced Warfare",play,44.0,0 -161896440,"Far Cry 3",purchase,1.0,0 -161896440,"Far Cry 3",play,30.0,0 -161896440,"Metro Last Light",purchase,1.0,0 -161896440,"Metro Last Light",play,24.0,0 -161896440,"Metro 2033 Redux",purchase,1.0,0 -161896440,"Metro 2033 Redux",play,22.0,0 -161896440,"BioShock Infinite",purchase,1.0,0 -161896440,"BioShock Infinite",play,19.3,0 -161896440,"METAL GEAR SOLID V THE PHANTOM PAIN",purchase,1.0,0 -161896440,"METAL GEAR SOLID V THE PHANTOM PAIN",play,17.3,0 -161896440,"Batman Arkham Knight",purchase,1.0,0 -161896440,"Batman Arkham Knight",play,14.2,0 -161896440,"Metro Last Light Redux",purchase,1.0,0 -161896440,"Metro Last Light Redux",play,13.4,0 -161896440,"Max Payne 3",purchase,1.0,0 -161896440,"Max Payne 3",play,7.5,0 -161896440,"BioShock",purchase,1.0,0 -161896440,"BioShock",play,7.2,0 -161896440,"Metro 2033",purchase,1.0,0 -161896440,"Metro 2033",play,4.9,0 -161896440,"BioShock 2",purchase,1.0,0 -161896440,"BioShock 2",play,4.5,0 -161896440,"Wolfenstein The New Order",purchase,1.0,0 -161896440,"Wolfenstein The New Order",play,2.3,0 -161896440,"Fallout 4",purchase,1.0,0 -161896440,"Fallout 4",play,2.2,0 -161896440,"Batman Arkham Asylum GOTY Edition",purchase,1.0,0 -161896440,"Batman Arkham Asylum GOTY Edition",play,1.8,0 -161896440,"Grand Theft Auto IV",purchase,1.0,0 -161896440,"Grand Theft Auto IV",play,0.9,0 -161896440,"The Witcher 2 Assassins of Kings Enhanced Edition",purchase,1.0,0 -161896440,"The Witcher 2 Assassins of Kings Enhanced Edition",play,0.6,0 -161896440,"Alien Isolation",purchase,1.0,0 -161896440,"Alien Isolation",play,0.5,0 -161896440,"The Witcher Enhanced Edition",purchase,1.0,0 -161896440,"The Witcher Enhanced Edition",play,0.4,0 -161896440,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -161896440,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,0.4,0 -161896440,"Call of Duty Advanced Warfare - Multiplayer",purchase,1.0,0 -161896440,"Call of Duty Advanced Warfare - Multiplayer",play,0.2,0 -161896440,"Grand Theft Auto Episodes from Liberty City",purchase,1.0,0 -161896440,"Batman Arkham City GOTY",purchase,1.0,0 -161896440,"Batman Arkham Origins - Infinite Earths Skins Pack",purchase,1.0,0 -161896440,"Batman Arkham Origins - Initiation",purchase,1.0,0 -161896440,"Batman Arkham Origins - New Millennium Skins Pack",purchase,1.0,0 -161896440,"Batman Arkham Origins - Online Supply Drop 1",purchase,1.0,0 -161896440,"Batman Arkham Origins - Online Supply Drop 2",purchase,1.0,0 -161896440,"Batman Arkham Origins",purchase,1.0,0 -161896440,"Batman Arkham Origins Blackgate - Deluxe Edition",purchase,1.0,0 -161896440,"BioShock Infinite - Season Pass",purchase,1.0,0 -161896440,"BioShock Infinite Burial at Sea - Episode 1",purchase,1.0,0 -161896440,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -161896440,"Far Cry",purchase,1.0,0 -161896440,"Far Cry 2",purchase,1.0,0 -161896440,"Far Cry 2 Fortunes Pack",purchase,1.0,0 -161896440,"Far Cry 3 Blood Dragon",purchase,1.0,0 -161896440,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -161896440,"Saints Row IV",purchase,1.0,0 -161896440,"Sniper Elite V2",purchase,1.0,0 -161896440,"Total War SHOGUN 2",purchase,1.0,0 -215721461,"Gotham City Impostors Free To Play",purchase,1.0,0 -215721461,"Gotham City Impostors Free To Play",play,46.0,0 -215721461,"Town of Salem",purchase,1.0,0 -215721461,"Town of Salem",play,6.7,0 -215721461,"DC Universe Online",purchase,1.0,0 -215721461,"DC Universe Online",play,2.3,0 -215721461,"Pressured",purchase,1.0,0 -289760650,"Blacklight Retribution",purchase,1.0,0 -289760650,"Cry of Fear",purchase,1.0,0 -294201005,"Team Fortress 2",purchase,1.0,0 -294201005,"Team Fortress 2",play,0.3,0 -169427688,"Dota 2",purchase,1.0,0 -169427688,"Dota 2",play,10.5,0 -295386628,"Dota 2",purchase,1.0,0 -295386628,"Dota 2",play,3.5,0 -300991661,"Dota 2",purchase,1.0,0 -300991661,"Dota 2",play,0.3,0 -135400225,"Starbound",purchase,1.0,0 -135400225,"Starbound",play,217.0,0 -135400225,"Kerbal Space Program",purchase,1.0,0 -135400225,"Kerbal Space Program",play,140.0,0 -135400225,"Terraria",purchase,1.0,0 -135400225,"Terraria",play,105.0,0 -135400225,"Space Engineers",purchase,1.0,0 -135400225,"Space Engineers",play,104.0,0 -135400225,"Total War ROME II - Emperor Edition",purchase,1.0,0 -135400225,"Total War ROME II - Emperor Edition",play,103.0,0 -135400225,"Sid Meier's Civilization V",purchase,1.0,0 -135400225,"Sid Meier's Civilization V",play,99.0,0 -135400225,"Cities Skylines",purchase,1.0,0 -135400225,"Cities Skylines",play,95.0,0 -135400225,"Planetary Annihilation",purchase,1.0,0 -135400225,"Planetary Annihilation",play,89.0,0 -135400225,"PAYDAY 2",purchase,1.0,0 -135400225,"PAYDAY 2",play,66.0,0 -135400225,"Dying Light",purchase,1.0,0 -135400225,"Dying Light",play,50.0,0 -135400225,"War Thunder",purchase,1.0,0 -135400225,"War Thunder",play,43.0,0 -135400225,"Prison Architect",purchase,1.0,0 -135400225,"Prison Architect",play,42.0,0 -135400225,"Wasteland 2",purchase,1.0,0 -135400225,"Wasteland 2",play,40.0,0 -135400225,"Xenonauts",purchase,1.0,0 -135400225,"Xenonauts",play,39.0,0 -135400225,"Borderlands 2 RU",purchase,1.0,0 -135400225,"Borderlands 2 RU",play,38.0,0 -135400225,"Tropico 4",purchase,1.0,0 -135400225,"Tropico 4",play,37.0,0 -135400225,"The Witcher 3 Wild Hunt",purchase,1.0,0 -135400225,"The Witcher 3 Wild Hunt",play,36.0,0 -135400225,"Anno 2070",purchase,1.0,0 -135400225,"Anno 2070",play,36.0,0 -135400225,"7 Days to Die",purchase,1.0,0 -135400225,"7 Days to Die",play,34.0,0 -135400225,"Endless Legend",purchase,1.0,0 -135400225,"Endless Legend",play,31.0,0 -135400225,"Darkest Dungeon",purchase,1.0,0 -135400225,"Darkest Dungeon",play,27.0,0 -135400225,"H1Z1",purchase,1.0,0 -135400225,"H1Z1",play,26.0,0 -135400225,"Killing Floor",purchase,1.0,0 -135400225,"Killing Floor",play,25.0,0 -135400225,"Tropico 5",purchase,1.0,0 -135400225,"Tropico 5",play,25.0,0 -135400225,"Company of Heroes 2",purchase,1.0,0 -135400225,"Company of Heroes 2",play,24.0,0 -135400225,"Age of Empires II HD Edition",purchase,1.0,0 -135400225,"Age of Empires II HD Edition",play,23.0,0 -135400225,"Endless Space",purchase,1.0,0 -135400225,"Endless Space",play,22.0,0 -135400225,"Empire Total War",purchase,1.0,0 -135400225,"Empire Total War",play,21.0,0 -135400225,"Watch_Dogs",purchase,1.0,0 -135400225,"Watch_Dogs",play,19.8,0 -135400225,"Planetary Annihilation TITANS",purchase,1.0,0 -135400225,"Planetary Annihilation TITANS",play,17.1,0 -135400225,"State of Decay",purchase,1.0,0 -135400225,"State of Decay",play,16.3,0 -135400225,"Duke Nukem 3D Megaton Edition",purchase,1.0,0 -135400225,"Duke Nukem 3D Megaton Edition",play,16.3,0 -135400225,"Fallout New Vegas",purchase,1.0,0 -135400225,"Fallout New Vegas",play,15.7,0 -135400225,"Dungeon of the Endless",purchase,1.0,0 -135400225,"Dungeon of the Endless",play,15.3,0 -135400225,"Pandora First Contact",purchase,1.0,0 -135400225,"Pandora First Contact",play,15.3,0 -135400225,"Amnesia A Machine for Pigs",purchase,1.0,0 -135400225,"Amnesia A Machine for Pigs",play,15.2,0 -135400225,"Hitman Absolution",purchase,1.0,0 -135400225,"Hitman Absolution",play,15.0,0 -135400225,"Risk of Rain",purchase,1.0,0 -135400225,"Risk of Rain",play,12.9,0 -135400225,"Grand Theft Auto IV",purchase,1.0,0 -135400225,"Grand Theft Auto IV",play,12.3,0 -135400225,"Space Colony",purchase,1.0,0 -135400225,"Space Colony",play,12.0,0 -135400225,"Napoleon Total War",purchase,1.0,0 -135400225,"Napoleon Total War",play,11.7,0 -135400225,"Project Zomboid",purchase,1.0,0 -135400225,"Project Zomboid",play,11.6,0 -135400225,"The Forest",purchase,1.0,0 -135400225,"The Forest",play,11.1,0 -135400225,"Crusader Kings II",purchase,1.0,0 -135400225,"Crusader Kings II",play,11.0,0 -135400225,"Warhammer 40,000 Dawn of War II - Chaos Rising",purchase,1.0,0 -135400225,"Warhammer 40,000 Dawn of War II - Chaos Rising",play,11.0,0 -135400225,"Homeworld Remastered Collection",purchase,1.0,0 -135400225,"Homeworld Remastered Collection",play,10.5,0 -135400225,"Insurgency",purchase,1.0,0 -135400225,"Insurgency",play,10.2,0 -135400225,"Unturned",purchase,1.0,0 -135400225,"Unturned",play,9.5,0 -135400225,"SOMA",purchase,1.0,0 -135400225,"SOMA",play,8.8,0 -135400225,"Holy Potatoes! A Weapon Shop?!",purchase,1.0,0 -135400225,"Holy Potatoes! A Weapon Shop?!",play,8.6,0 -135400225,"Convoy",purchase,1.0,0 -135400225,"Convoy",play,8.3,0 -135400225,"Sunless Sea",purchase,1.0,0 -135400225,"Sunless Sea",play,8.0,0 -135400225,"Don't Starve",purchase,1.0,0 -135400225,"Don't Starve",play,8.0,0 -135400225,"The Long Dark",purchase,1.0,0 -135400225,"The Long Dark",play,7.9,0 -135400225,"Natural Selection 2",purchase,1.0,0 -135400225,"Natural Selection 2",play,7.7,0 -135400225,"Borderlands 2",purchase,1.0,0 -135400225,"Borderlands 2",play,7.5,0 -135400225,"Project CARS",purchase,1.0,0 -135400225,"Project CARS",play,7.3,0 -135400225,"Lambda Wars Beta",purchase,1.0,0 -135400225,"Lambda Wars Beta",play,7.0,0 -135400225,"Leviathan Warships",purchase,1.0,0 -135400225,"Leviathan Warships",play,6.3,0 -135400225,"Out There Edition",purchase,1.0,0 -135400225,"Out There Edition",play,6.3,0 -135400225,"Space Hulk Ascension",purchase,1.0,0 -135400225,"Space Hulk Ascension",play,5.8,0 -135400225,"Rogue Legacy",purchase,1.0,0 -135400225,"Rogue Legacy",play,5.7,0 -135400225,"Killing Floor 2",purchase,1.0,0 -135400225,"Killing Floor 2",play,5.5,0 -135400225,"Invisible, Inc.",purchase,1.0,0 -135400225,"Invisible, Inc.",play,5.4,0 -135400225,"Contagion",purchase,1.0,0 -135400225,"Contagion",play,4.8,0 -135400225,"Wargame Red Dragon",purchase,1.0,0 -135400225,"Wargame Red Dragon",play,4.7,0 -135400225,"Injustice Gods Among Us Ultimate Edition",purchase,1.0,0 -135400225,"Injustice Gods Among Us Ultimate Edition",play,4.6,0 -135400225,"Total War SHOGUN 2",purchase,1.0,0 -135400225,"Total War SHOGUN 2",play,4.4,0 -135400225,"Half-Life 2",purchase,1.0,0 -135400225,"Half-Life 2",play,4.4,0 -135400225,"Command and Conquer 3 Kane's Wrath",purchase,1.0,0 -135400225,"Command and Conquer 3 Kane's Wrath",play,4.2,0 -135400225,"Wargame European Escalation",purchase,1.0,0 -135400225,"Wargame European Escalation",play,3.6,0 -135400225,"Just Cause 2",purchase,1.0,0 -135400225,"Just Cause 2",play,3.6,0 -135400225,"Door Kickers",purchase,1.0,0 -135400225,"Door Kickers",play,3.3,0 -135400225,"Hearts of Iron III",purchase,1.0,0 -135400225,"Hearts of Iron III",play,3.3,0 -135400225,"Pid ",purchase,1.0,0 -135400225,"Pid ",play,3.2,0 -135400225,"Mortal Kombat Komplete Edition",purchase,1.0,0 -135400225,"Mortal Kombat Komplete Edition",play,3.2,0 -135400225,"Kingdom",purchase,1.0,0 -135400225,"Kingdom",play,3.2,0 -135400225,"Rising Storm/Red Orchestra 2 Multiplayer",purchase,1.0,0 -135400225,"Rising Storm/Red Orchestra 2 Multiplayer",play,3.2,0 -135400225,"Life is Hard",purchase,1.0,0 -135400225,"Life is Hard",play,3.1,0 -135400225,"Sniper Elite V2",purchase,1.0,0 -135400225,"Sniper Elite V2",play,3.0,0 -135400225,"Executive Assault",purchase,1.0,0 -135400225,"Executive Assault",play,2.7,0 -135400225,"Game Dev Tycoon",purchase,1.0,0 -135400225,"Game Dev Tycoon",play,2.6,0 -135400225,"Space Run",purchase,1.0,0 -135400225,"Space Run",play,2.6,0 -135400225,"Arma 3",purchase,1.0,0 -135400225,"Arma 3",play,2.5,0 -135400225,"FTL Faster Than Light",purchase,1.0,0 -135400225,"FTL Faster Than Light",play,2.5,0 -135400225,"Left 4 Dead 2",purchase,1.0,0 -135400225,"Left 4 Dead 2",play,2.4,0 -135400225,"Aliens vs. Predator",purchase,1.0,0 -135400225,"Aliens vs. Predator",play,2.3,0 -135400225,"Modular Combat",purchase,1.0,0 -135400225,"Modular Combat",play,2.3,0 -135400225,"The Stanley Parable",purchase,1.0,0 -135400225,"The Stanley Parable",play,2.2,0 -135400225,"Don't Starve Together Beta",purchase,1.0,0 -135400225,"Don't Starve Together Beta",play,2.1,0 -135400225,"Commando Jack",purchase,1.0,0 -135400225,"Commando Jack",play,2.1,0 -135400225,"The Binding of Isaac Rebirth",purchase,1.0,0 -135400225,"The Binding of Isaac Rebirth",play,2.0,0 -135400225,"Steam Marines",purchase,1.0,0 -135400225,"Steam Marines",play,1.8,0 -135400225,"Fractured Space",purchase,1.0,0 -135400225,"Fractured Space",play,1.6,0 -135400225,"Penumbra Overture",purchase,1.0,0 -135400225,"Penumbra Overture",play,1.5,0 -135400225,"Heroes & Generals",purchase,1.0,0 -135400225,"Heroes & Generals",play,1.4,0 -135400225,"Dead Island Epidemic",purchase,1.0,0 -135400225,"Dead Island Epidemic",play,1.4,0 -135400225,"Dark Souls Prepare to Die Edition",purchase,1.0,0 -135400225,"Dark Souls Prepare to Die Edition",play,1.3,0 -135400225,"War of the Roses",purchase,1.0,0 -135400225,"War of the Roses",play,1.3,0 -135400225,"Mount & Blade Warband",purchase,1.0,0 -135400225,"Mount & Blade Warband",play,1.2,0 -135400225,"Dig or Die",purchase,1.0,0 -135400225,"Dig or Die",play,1.2,0 -135400225,"Legend of Dungeon",purchase,1.0,0 -135400225,"Legend of Dungeon",play,1.1,0 -135400225,"Star Wars - Battlefront II",purchase,1.0,0 -135400225,"Star Wars - Battlefront II",play,1.1,0 -135400225,"Painkiller Hell & Damnation",purchase,1.0,0 -135400225,"Painkiller Hell & Damnation",play,1.0,0 -135400225,"SimCity 4 Deluxe",purchase,1.0,0 -135400225,"SimCity 4 Deluxe",play,1.0,0 -135400225,"Disciples II Gallean's Return",purchase,1.0,0 -135400225,"Disciples II Gallean's Return",play,0.9,0 -135400225,"Gnomoria",purchase,1.0,0 -135400225,"Gnomoria",play,0.9,0 -135400225,"Starbound - Unstable",purchase,1.0,0 -135400225,"Starbound - Unstable",play,0.9,0 -135400225,"Closure",purchase,1.0,0 -135400225,"Closure",play,0.9,0 -135400225,"Garry's Mod",purchase,1.0,0 -135400225,"Garry's Mod",play,0.8,0 -135400225,"Besiege",purchase,1.0,0 -135400225,"Besiege",play,0.8,0 -135400225,"Loadout",purchase,1.0,0 -135400225,"Loadout",play,0.8,0 -135400225,"Really Big Sky",purchase,1.0,0 -135400225,"Really Big Sky",play,0.8,0 -135400225,"Valkyria Chronicles",purchase,1.0,0 -135400225,"Valkyria Chronicles",play,0.7,0 -135400225,"O.R.B.",purchase,1.0,0 -135400225,"O.R.B.",play,0.7,0 -135400225,"MirrorMoon EP",purchase,1.0,0 -135400225,"MirrorMoon EP",play,0.6,0 -135400225,"Shift 2 Unleashed",purchase,1.0,0 -135400225,"Shift 2 Unleashed",play,0.5,0 -135400225,"Resident Evil / biohazard HD REMASTER",purchase,1.0,0 -135400225,"Resident Evil / biohazard HD REMASTER",play,0.5,0 -135400225,"Red Orchestra 2 Heroes of Stalingrad - Single Player",purchase,1.0,0 -135400225,"Red Orchestra 2 Heroes of Stalingrad - Single Player",play,0.5,0 -135400225,"Knights and Merchants",purchase,1.0,0 -135400225,"Knights and Merchants",play,0.4,0 -135400225,"LISA",purchase,1.0,0 -135400225,"LISA",play,0.4,0 -135400225,"Sunrider Mask of Arcadius",purchase,1.0,0 -135400225,"Sunrider Mask of Arcadius",play,0.4,0 -135400225,"Stronghold Crusader Extreme HD",purchase,1.0,0 -135400225,"Stronghold Crusader Extreme HD",play,0.3,0 -135400225,"Elite Dangerous",purchase,1.0,0 -135400225,"Elite Dangerous",play,0.3,0 -135400225,"Fallout 3 - Game of the Year Edition",purchase,1.0,0 -135400225,"Fallout 3 - Game of the Year Edition",play,0.3,0 -135400225,"Stronghold Crusader HD",purchase,1.0,0 -135400225,"Stronghold Crusader HD",play,0.3,0 -135400225,"Race The Sun",purchase,1.0,0 -135400225,"Race The Sun",play,0.2,0 -135400225,"The Old Tree",purchase,1.0,0 -135400225,"The Old Tree",play,0.2,0 -135400225,"Super Meat Boy",purchase,1.0,0 -135400225,"Arma Cold War Assault",purchase,1.0,0 -135400225,"Company of Heroes (New Steam Version)",purchase,1.0,0 -135400225,"Commander Conquest of the Americas Gold",purchase,1.0,0 -135400225,"Warhammer 40,000 Dawn of War II Retribution",purchase,1.0,0 -135400225,"HAWKEN",purchase,1.0,0 -135400225,"Age of Empires II HD The Forgotten",purchase,1.0,0 -135400225,"APB Reloaded",purchase,1.0,0 -135400225,"Arma 3 Zeus",purchase,1.0,0 -135400225,"Borderlands 2 Headhunter 1 Bloody Harvest",purchase,1.0,0 -135400225,"Borderlands 2 Headhunter 2 Wattle Gobbler",purchase,1.0,0 -135400225,"Borderlands 2 Headhunter 3 Mercenary Day",purchase,1.0,0 -135400225,"Borderlands 2 Headhunter 4 Wedding Day Massacre",purchase,1.0,0 -135400225,"Borderlands 2 Headhunter 5 Son of Crawmerax",purchase,1.0,0 -135400225,"COH2 - The Western Front Armies Oberkommando West",purchase,1.0,0 -135400225,"COH2 - The Western Front Armies US Forces",purchase,1.0,0 -135400225,"Command and Conquer 3 Tiberium Wars",purchase,1.0,0 -135400225,"Company of Heroes",purchase,1.0,0 -135400225,"Company of Heroes Opposing Fronts",purchase,1.0,0 -135400225,"Company of Heroes Tales of Valor",purchase,1.0,0 -135400225,"Disciples II Rise of the Elves",purchase,1.0,0 -135400225,"Don't Starve Reign of Giants",purchase,1.0,0 -135400225,"East India Company Gold",purchase,1.0,0 -135400225,"Enclave",purchase,1.0,0 -135400225,"H1Z1 Test Server",purchase,1.0,0 -135400225,"Half-Life 2 Episode One",purchase,1.0,0 -135400225,"Half-Life 2 Episode Two",purchase,1.0,0 -135400225,"Half-Life 2 Lost Coast",purchase,1.0,0 -135400225,"Hitman Sniper Challenge",purchase,1.0,0 -135400225,"Just Cause",purchase,1.0,0 -135400225,"Killing Floor Mod Defence Alliance 2",purchase,1.0,0 -135400225,"KnightShift",purchase,1.0,0 -135400225,"Kung Fury",purchase,1.0,0 -135400225,"No More Room in Hell",purchase,1.0,0 -135400225,"Pandora Eclipse of Nashira",purchase,1.0,0 -135400225,"PAYDAY The Heist",purchase,1.0,0 -135400225,"PAYDAY The Web Series - Episode 1",purchase,1.0,0 -135400225,"Penumbra Black Plague",purchase,1.0,0 -135400225,"Penumbra Requiem",purchase,1.0,0 -135400225,"Portal",purchase,1.0,0 -135400225,"Rise of Flight United",purchase,1.0,0 -135400225,"Robocraft",purchase,1.0,0 -135400225,"Shadowrun Dragonfall - Director's Cut",purchase,1.0,0 -135400225,"Sid Meier's Civilization V Brave New World",purchase,1.0,0 -135400225,"SpaceChem",purchase,1.0,0 -135400225,"State of Decay - Breakdown",purchase,1.0,0 -135400225,"Total War SHOGUN 2 - Fall of the Samurai",purchase,1.0,0 -135400225,"Valkyria Chronicles Challenge of the Edy Detachment",purchase,1.0,0 -135400225,"Valkyria Chronicles Edy's Mission Enter the Edy Detachment",purchase,1.0,0 -135400225,"Valkyria Chronicles Hard EX Mode",purchase,1.0,0 -135400225,"Valkyria Chronicles Selveria's Mission Behind Her Blue Flame",purchase,1.0,0 -135400225,"Wargame AirLand Battle",purchase,1.0,0 -135400225,"Warhammer 40,000 Dawn of War II",purchase,1.0,0 -135400225,"War of the Roses Kingmaker",purchase,1.0,0 -135400225,"War of the Roses Balance Beta",purchase,1.0,0 -135400225,"Wasteland 1 - The Original Classic",purchase,1.0,0 -135400225,"Wasteland 2 Director's Cut",purchase,1.0,0 -131377772,"Call of Duty Black Ops II - Multiplayer",purchase,1.0,0 -131377772,"Call of Duty Black Ops II - Multiplayer",play,63.0,0 -131377772,"Call of Duty Black Ops II",purchase,1.0,0 -131377772,"Call of Duty Black Ops II",play,2.3,0 -131377772,"Call of Duty Black Ops II - Zombies",purchase,1.0,0 -131377772,"Call of Duty Black Ops II - Zombies",play,1.4,0 -131377772,"Team Fortress 2",purchase,1.0,0 -131377772,"Team Fortress 2",play,0.6,0 -88705345,"PAYDAY 2",purchase,1.0,0 -88705345,"PAYDAY 2",play,65.0,0 -88705345,"Terraria",purchase,1.0,0 -88705345,"Terraria",play,58.0,0 -88705345,"Unturned",purchase,1.0,0 -88705345,"Unturned",play,42.0,0 -88705345,"Robocraft",purchase,1.0,0 -88705345,"Robocraft",play,7.8,0 -88705345,"TERA",purchase,1.0,0 -88705345,"TERA",play,4.9,0 -88705345,"Defiance",purchase,1.0,0 -88705345,"Defiance",play,1.9,0 -88705345,"Aura Kingdom",purchase,1.0,0 -88705345,"Aura Kingdom",play,1.7,0 -88705345,"Warface",purchase,1.0,0 -88705345,"Warface",play,1.0,0 -88705345,"Chivalry Medieval Warfare",purchase,1.0,0 -88705345,"Chivalry Medieval Warfare",play,0.6,0 -88705345,"Mitos.is The Game",purchase,1.0,0 -88705345,"Mitos.is The Game",play,0.6,0 -88705345,"Dirty Bomb",purchase,1.0,0 -88705345,"Dirty Bomb",play,0.5,0 -88705345,"Carpe Diem",purchase,1.0,0 -88705345,"Carpe Diem",play,0.3,0 -88705345,"Moonbase Alpha",purchase,1.0,0 -88705345,"Moonbase Alpha",play,0.2,0 -88705345,"Patch testing for Chivalry",purchase,1.0,0 -88705345,"Portal",purchase,1.0,0 -88705345,"Aura Kingdom - Winter Gift",purchase,1.0,0 -88705345,"Magicite",purchase,1.0,0 -88705345,"Neverwinter",purchase,1.0,0 -88705345,"RIFT",purchase,1.0,0 -274261412,"The Forgotten Ones",purchase,1.0,0 -274261412,"The Forgotten Ones",play,0.4,0 -274261412,"All Is Dust",purchase,1.0,0 -274261412,"All Is Dust",play,0.3,0 -274261412,"Cry of Fear",purchase,1.0,0 -274261412,"Cry of Fear",play,0.2,0 -231947531,"Train Simulator",purchase,1.0,0 -231947531,"Train Simulator",play,12.2,0 -188089669,"Unturned",purchase,1.0,0 -68081395,"iBomber Defense Pacific",purchase,1.0,0 -205881130,"Team Fortress 2",purchase,1.0,0 -205881130,"Team Fortress 2",play,3.5,0 -288160158,"Marvel Heroes 2015",purchase,1.0,0 -125424716,"Terraria",purchase,1.0,0 -125424716,"Terraria",play,81.0,0 -125424716,"Team Fortress 2",purchase,1.0,0 -125424716,"Team Fortress 2",play,59.0,0 -125424716,"Don't Starve",purchase,1.0,0 -125424716,"Don't Starve",play,47.0,0 -125424716,"Left 4 Dead 2",purchase,1.0,0 -125424716,"Left 4 Dead 2",play,25.0,0 -125424716,"Magicka",purchase,1.0,0 -125424716,"Magicka",play,20.0,0 -125424716,"Darksiders II",purchase,1.0,0 -125424716,"Darksiders II",play,19.7,0 -125424716,"Dungeon Defenders II",purchase,1.0,0 -125424716,"Dungeon Defenders II",play,18.0,0 -125424716,"Natural Selection 2",purchase,1.0,0 -125424716,"Natural Selection 2",play,11.4,0 -125424716,"Sanctum 2",purchase,1.0,0 -125424716,"Sanctum 2",play,2.9,0 -125424716,"Nosgoth",purchase,1.0,0 -125424716,"Nosgoth",play,1.7,0 -125424716,"Magicka Wizard Wars",purchase,1.0,0 -125424716,"Magicka Wizard Wars",play,1.0,0 -125424716,"Don't Starve Together Beta",purchase,1.0,0 -125424716,"Don't Starve Together Beta",play,0.7,0 -125424716,"Magicka Vietnam",purchase,1.0,0 -99096740,"Dota 2",purchase,1.0,0 -99096740,"Dota 2",play,1704.0,0 -99096740,"Warframe",purchase,1.0,0 -99096740,"Warframe",play,186.0,0 -99096740,"Far Cry 3",purchase,1.0,0 -99096740,"Far Cry 3",play,80.0,0 -99096740,"Grand Theft Auto V",purchase,1.0,0 -99096740,"Grand Theft Auto V",play,68.0,0 -99096740,"DayZ",purchase,1.0,0 -99096740,"DayZ",play,59.0,0 -99096740,"Cities Skylines",purchase,1.0,0 -99096740,"Cities Skylines",play,54.0,0 -99096740,"The Elder Scrolls V Skyrim",purchase,1.0,0 -99096740,"The Elder Scrolls V Skyrim",play,45.0,0 -99096740,"The Witcher 3 Wild Hunt",purchase,1.0,0 -99096740,"The Witcher 3 Wild Hunt",play,40.0,0 -99096740,"BioShock Infinite",purchase,1.0,0 -99096740,"BioShock Infinite",play,35.0,0 -99096740,"Defiance",purchase,1.0,0 -99096740,"Defiance",play,29.0,0 -99096740,"Counter-Strike Global Offensive",purchase,1.0,0 -99096740,"Counter-Strike Global Offensive",play,26.0,0 -99096740,"Max Payne 3",purchase,1.0,0 -99096740,"Max Payne 3",play,19.3,0 -99096740,"Tomb Raider",purchase,1.0,0 -99096740,"Tomb Raider",play,16.8,0 -99096740,"APB Reloaded",purchase,1.0,0 -99096740,"APB Reloaded",play,16.6,0 -99096740,"Dead Space",purchase,1.0,0 -99096740,"Dead Space",play,15.4,0 -99096740,"Ori and the Blind Forest",purchase,1.0,0 -99096740,"Ori and the Blind Forest",play,13.5,0 -99096740,"The Forest",purchase,1.0,0 -99096740,"The Forest",play,13.1,0 -99096740,"Assassin's Creed",purchase,1.0,0 -99096740,"Assassin's Creed",play,10.5,0 -99096740,"Darkest Dungeon",purchase,1.0,0 -99096740,"Darkest Dungeon",play,6.4,0 -99096740,"Crysis",purchase,1.0,0 -99096740,"Crysis",play,5.3,0 -99096740,"Assassin's Creed II",purchase,1.0,0 -99096740,"Assassin's Creed II",play,2.7,0 -99096740,"Hitman Blood Money",purchase,1.0,0 -99096740,"Hitman Blood Money",play,1.3,0 -99096740,"The Binding of Isaac Rebirth",purchase,1.0,0 -99096740,"The Binding of Isaac Rebirth",play,0.7,0 -99096740,"SimCity 4 Deluxe",purchase,1.0,0 -99096740,"SimCity 4 Deluxe",play,0.2,0 -99096740,"BioShock Infinite Burial at Sea - Episode 2",purchase,1.0,0 -99096740,"The Elder Scrolls V Skyrim - Dawnguard",purchase,1.0,0 -99096740,"The Elder Scrolls V Skyrim - Dragonborn",purchase,1.0,0 -99096740,"The Elder Scrolls V Skyrim - Hearthfire",purchase,1.0,0 -176449171,"Dota 2",purchase,1.0,0 -176449171,"Dota 2",play,1310.0,0 -176449171,"Counter-Strike Global Offensive",purchase,1.0,0 -176449171,"Counter-Strike Global Offensive",play,704.0,0 -176449171,"PAYDAY 2",purchase,1.0,0 -176449171,"PAYDAY 2",play,1.8,0 -176449171,"Team Fortress 2",purchase,1.0,0 -176449171,"Team Fortress 2",play,0.9,0 -176449171,"Counter-Strike",purchase,1.0,0 -176449171,"Counter-Strike Condition Zero",purchase,1.0,0 -176449171,"Counter-Strike Condition Zero Deleted Scenes",purchase,1.0,0 -176449171,"Counter-Strike Source",purchase,1.0,0 -221315846,"Dota 2",purchase,1.0,0 -221315846,"Dota 2",play,9.0,0 -221315846,"Team Fortress 2",purchase,1.0,0 -221315846,"Team Fortress 2",play,6.0,0 -221315846,"Tom Clancy's Ghost Recon Phantoms - EU",purchase,1.0,0 -221315846,"Tom Clancy's Ghost Recon Phantoms - EU",play,3.1,0 -221315846,"Quake Live",purchase,1.0,0 -221315846,"Quake Live",play,0.9,0 -128470551,"The Binding of Isaac Rebirth",purchase,1.0,0 -128470551,"The Binding of Isaac Rebirth",play,291.0,0 -128470551,"Path of Exile",purchase,1.0,0 -128470551,"Path of Exile",play,42.0,0 -128470551,"Arma 2 DayZ Mod",purchase,1.0,0 -128470551,"Arma 2 DayZ Mod",play,22.0,0 -128470551,"Antichamber",purchase,1.0,0 -128470551,"Antichamber",play,16.8,0 -128470551,"Risk of Rain",purchase,1.0,0 -128470551,"Risk of Rain",play,15.4,0 -128470551,"OlliOlli",purchase,1.0,0 -128470551,"OlliOlli",play,10.8,0 -128470551,"Hammerwatch",purchase,1.0,0 -128470551,"Hammerwatch",play,9.1,0 -128470551,"Torchlight II",purchase,1.0,0 -128470551,"Torchlight II",play,2.9,0 -128470551,"Nether",purchase,1.0,0 -128470551,"Nether",play,2.8,0 -128470551,"Rogue Legacy",purchase,1.0,0 -128470551,"Rogue Legacy",play,2.6,0 -128470551,"Mortal Kombat Komplete Edition",purchase,1.0,0 -128470551,"Mortal Kombat Komplete Edition",play,2.5,0 -128470551,"Fallen Earth",purchase,1.0,0 -128470551,"Fallen Earth",play,2.4,0 -128470551,"Magic Duels",purchase,1.0,0 -128470551,"Magic Duels",play,2.2,0 -128470551,"Titan Souls",purchase,1.0,0 -128470551,"Titan Souls",play,1.5,0 -128470551,"Grand Theft Auto Vice City",purchase,1.0,0 -128470551,"Grand Theft Auto Vice City",play,1.5,0 -128470551,"RUSH",purchase,1.0,0 -128470551,"RUSH",play,1.4,0